From d6e69ebb56fe6890bd6ec587295ff1d67e2849fe Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Thu, 1 Sep 2022 13:50:30 +0400 Subject: [PATCH 0001/2686] Added Unit documentation --- unit/README-short.txt | 1 + unit/content.md | 15 +++++++++++++++ unit/get-help.md | 1 + unit/github-repo | 1 + unit/license.md | 1 + unit/logo.svg | 1 + unit/maintainer.md | 1 + 7 files changed, 21 insertions(+) create mode 100644 unit/README-short.txt create mode 100644 unit/content.md create mode 100644 unit/get-help.md create mode 100644 unit/github-repo create mode 100644 unit/license.md create mode 100644 unit/logo.svg create mode 100644 unit/maintainer.md diff --git a/unit/README-short.txt b/unit/README-short.txt new file mode 100644 index 000000000000..a2b0e0e34480 --- /dev/null +++ b/unit/README-short.txt @@ -0,0 +1 @@ +Official build of NGINX Unit: a polyglot app server, a reverse proxy, and a static file server diff --git a/unit/content.md b/unit/content.md new file mode 100644 index 000000000000..fce102d06fee --- /dev/null +++ b/unit/content.md @@ -0,0 +1,15 @@ +# What is Unit? + +NGINX Unit is a polyglot app server, a reverse proxy, and a static file server, available for UNIX-like systems. It was built by nginx team members from scratch to be highly efficient and fully configurable at runtime. It is licensed under the Apache 2.0 license. The supported application languages are Go, JavaScript, Java, Perl, PHP, Python, Ruby, and more. + +> [Key Features](https://unit.nginx.org/#key-features) + +%%LOGO%% + +# Available tags + +Please see [Unit's website](http://unit.nginx.org/installation/#docker-images) for details. + +# How to use this image + +Please check the [Initial Configuration](http://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](http://unit.nginx.org/howto/docker/) can be of help. diff --git a/unit/get-help.md b/unit/get-help.md new file mode 100644 index 000000000000..877f2c47e568 --- /dev/null +++ b/unit/get-help.md @@ -0,0 +1 @@ +the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX community](https://nginxcommunity.slack.com/) diff --git a/unit/github-repo b/unit/github-repo new file mode 100644 index 000000000000..18f0d0ef59c8 --- /dev/null +++ b/unit/github-repo @@ -0,0 +1 @@ +https://github.com/nginx/unit diff --git a/unit/license.md b/unit/license.md new file mode 100644 index 000000000000..d7cd7032647e --- /dev/null +++ b/unit/license.md @@ -0,0 +1 @@ +View [license information](https://raw.githubusercontent.com/nginx/unit/master/LICENSE) for the software contained in this image. diff --git a/unit/logo.svg b/unit/logo.svg new file mode 100644 index 000000000000..e25d3667c4da --- /dev/null +++ b/unit/logo.svg @@ -0,0 +1 @@ + diff --git a/unit/maintainer.md b/unit/maintainer.md new file mode 100644 index 000000000000..dd92020606b6 --- /dev/null +++ b/unit/maintainer.md @@ -0,0 +1 @@ +[the Unit Docker Maintainers](%%GITHUB-REPO%%) From a16cd1ae80c04193c029a686d3006c95edb81594 Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Fri, 16 Sep 2022 23:10:36 +0800 Subject: [PATCH 0002/2686] Add spark doc --- spark/README-short.txt | 1 + spark/content.md | 49 +++++++++++++++++++++++++++++++++++++++++ spark/get-help.md | 1 + spark/github-repo | 1 + spark/issues.md | 1 + spark/license.md | 3 +++ spark/logo.png | Bin 0 -> 11306 bytes spark/maintainer.md | 1 + 8 files changed, 57 insertions(+) create mode 100644 spark/README-short.txt create mode 100644 spark/content.md create mode 100644 spark/get-help.md create mode 100644 spark/github-repo create mode 100644 spark/issues.md create mode 100644 spark/license.md create mode 100644 spark/logo.png create mode 100644 spark/maintainer.md diff --git a/spark/README-short.txt b/spark/README-short.txt new file mode 100644 index 000000000000..109840a851c7 --- /dev/null +++ b/spark/README-short.txt @@ -0,0 +1 @@ +Apache Spark™ is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters. \ No newline at end of file diff --git a/spark/content.md b/spark/content.md new file mode 100644 index 000000000000..c905ba1eec0c --- /dev/null +++ b/spark/content.md @@ -0,0 +1,49 @@ +# What is Apache Spark™? + +Apache Spark™ is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters. It provides high-level APIs in Scala, Java, Python, and R, and an optimized engine that supports general computation graphs for data analysis. It also supports a rich set of higher-level tools including Spark SQL for SQL and DataFrames, pandas API on Spark for pandas workloads, MLlib for machine learning, GraphX for graph processing, and Structured Streaming for stream processing. + +%%LOGO%% + +## Online Documentation +You can find the latest Spark documentation, including a programming guide, on the [project web page](https://spark.apache.org/documentation.html). This README file only contains basic setup instructions. + +## Interactive Scala Shell + +The easiest way to start using Spark is through the Scala shell: + +``` +docker run -it spark /opt/spark/bin/spark-shell +``` + +Try the following command, which should return 1,000,000,000: + +``` +scala> spark.range(1000 * 1000 * 1000).count() +``` + +## Interactive Python Shell + +The easiest way to start using PySpark is through the Python shell: + +``` +docker run -it spark:python3 /opt/spark/bin/pyspark +``` + +And run the following command, which should also return 1,000,000,000: + +``` +>>> spark.range(1000 * 1000 * 1000).count() +``` + +## Interactive R Shell + +The easiest way to start using R on Spark is through the R shell: + +``` +docker run -it apache/spark-r /opt/spark/bin/sparkR +``` + +## Running Spark on Kubernetes + +https://spark.apache.org/docs/latest/running-on-kubernetes.html + diff --git a/spark/get-help.md b/spark/get-help.md new file mode 100644 index 000000000000..f4569f26217e --- /dev/null +++ b/spark/get-help.md @@ -0,0 +1 @@ +[Apache Spark™ community](https://spark.apache.org/community.html) diff --git a/spark/github-repo b/spark/github-repo new file mode 100644 index 000000000000..56646b9d2bad --- /dev/null +++ b/spark/github-repo @@ -0,0 +1 @@ +https://github.com/apache/spark-docker diff --git a/spark/issues.md b/spark/issues.md new file mode 100644 index 000000000000..09392138dd92 --- /dev/null +++ b/spark/issues.md @@ -0,0 +1 @@ +https://issues.apache.org/jira/browse/SPARK \ No newline at end of file diff --git a/spark/license.md b/spark/license.md new file mode 100644 index 000000000000..4170f253279c --- /dev/null +++ b/spark/license.md @@ -0,0 +1,3 @@ +Apache Spark, Spark, Apache, the Apache feather logo, and the Apache Spark project logo are trademarks of The Apache Software Foundation. + +Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). diff --git a/spark/logo.png b/spark/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..464eda547ba913899655c14d8d5f4d5093aea01d GIT binary patch literal 11306 zcmcI~Wl$VG&^Ikkaf)+DacJRi=L)n~4=?UsytqrzQrwDjxEFW#!;hi|w9w*k*x_=( z+yBRR=6OCo$s{}3%_f;-C$qcri&j@vAi$%+LqkI&P*QxS`Hw#SYehI%|N6?vBA zO}?9niu~nu8zb-o3|NhY@$RL*6-i{~Q(&hm-+L|NKviu|*ub?E%ooe1vPvyieEs(7 znwyLCe=G+d1iK$YYDJdFA-_IS29~z-oEcO~`vu7zg)oec0NSz-#>OD4T9*~mn0G4h4;@h1dFAKUeIw>w8Hj!6?!1%i*T8H!B`&Yo^~Fu50yN3ygM(= z2(y9WW?t1$Ns6ZV;p1Fw5#TEqBgL<=AaOqho&@QI0IMCq_nsc%yBj(cg?#NHvU_8= zyR+1J{*$7)v}njk*qEtvO3V#~QVd2NYtdtg$4eWv;@Mxz$n4yV>^ z55i^f&-!W0Ex$w{vH{e?TL@P3J(rbutx^>q@S}jOWoE*zOxeRwbF=f{*!;w_lKaw0 z!L;m4Q3B@>fzYr*y(r7xpGies~`Q>V-&M9ffNwN~h8FUD8w?yjUBZRB0>mv)qhJoAV=KPNU3q?A}T&YlN# z8{QRI0QhdR@IGN`yF@p>8^I4+6%_YlkzQRZ9&_}#5Q^n^1R0iyOPzSub17cXx+b&& z7f%_LR`(Y#3xFMl)UI+W7i_-wvJy3crj(tp(=B*W z=6MCViW#&dr1t)J3(w=Xt&BcoL04$y0RiQ!yM|EuCeVO217hV@%R843 z0)EwuvB!lwt>QvNOa*{%;!w(?c|Eeg+J!+?UHk`&6LyT1Y#Cc?C+L_;>)Li^(Ub4JvDN-^tRg>>xCg zcd?z}9@+WVh@7?|;-wMFOTYQ6*u-Vm+7i_b z7XCdeW^2jD9>O+W@}}40BpQ}ud$8xAskyAW*njegzlo9cT6$|CAtU0TWBTAA7mzjn zrX!zeKMeh^obRfv?ECQ|Q`+3$$=uqlY~sP34Hq6K64zairmQ1DJa&`nCfRsL6&6`U zjKdH|8Lp$rj?q66`oKGC8TEr69?}_8aS2Sax1X@txfi_5#HdczKGIML=oZE9y%@>D zaI~YN$536n1Rmi>365UPU&EwT=$>ZezS?CuM=_Hf>=u8uo+sFjby#-EH1H8@o4Hj0a>|- zZn0@J_FX@O61J;CfJOoe|BQ>U+E;wK>w6P6s3SHlu;E3x7mj^p!s85=Wt`+hA|-Xi zBw}eIFLLwwYh96SHd83w+Wb%Tn;bKgr_U8+)S398@m-mArL#JQ@MUe5gQZr5Dr`9m zn?X`35-n%$+0e2vtZXJ2GBZY?UjIlq5H>bVeBh3Odt;qC_=q$4*!gkACf+$CCF(#} zTS>&yzKhDzsw{X7@6@x4JIOdMUZ$X!1!C(Wy)egj+6W3wqGpF z(dY2k{4Q%$^mkSOIcY%tTv6Uz#quR}ygWz8y=S~pm0OIjqhTk$ zjh*(3{TI*z>~;C0IzXSWh7a@UvTS$W--J++M_->I5f}lr7uOuMe3||#+~dZ9d~*%R zFs&9BjemGpDo=G%^ce@-E6eU!HknN!542jsxwN={_|u&~4ocS4ck(s&N~5W2SeG8S zq2=F^=d)Tof(6@b-J5NR-I;g7&!~%-!>o33E^Rp18ED(1;V0(&UB;&t4umtWC|-F# z1cjqig;fg2*z5P@-JQ0C0JijVf#%<;qm(|U9?}(Ccx$Tkt= z@&zv#JL943oP_ek4h9>2))cRxGT_x{&wSb79_}Z^Bymite3zehvuymHH~aMIy8m#A zpQi4n@TNxU_EuwFpr5$tNqkvIw)UMe{`3;{-y>V; zYo{o)jYh-C0WTtzYMvE+uXy#^Qek2L>bRP-lz@~5s>nEYd6+y;0Pnm<{IfZi8DFo( zg|K~7bM80)7GG6wMz1btotaDuyM~UKAYzb+*&oF##CM(HzIWXR?awCSCMAE=8FL+_ z#!kx>zkokeSG6d~5p-5oR(W2^r6)@1Yud>t$c@+wcR$MWw$`q$VmQJ*V|SRG+&bqz zc$410O>!MrgIn9*9JQ?%192nhTpXZ5NlM@Qt3ekBZ*$& zqv?|PE!INtr{vGnE4`xKa6`FQj*Bj#8q($E94A|SHpW;x%f=^-$hk?<$ed_+Bj?Srcy6yd8B9mNCtXPYV z4&koR?&XQ;rFOcn@mQ}ROv@k*L4A{(>0tgFlqYc1%!iRU?y-|Qei)X!9_gx58Fd{R z7405X!_JV^@Ar;15^pK;)zODw^yrZ(2z~TBRLr+;vtgH1AlDxjZt>ex3>J<%PYX=R zjb_i2`6Cfa%j;?*{eir5=6;ix(m_O2pa-#lN9I_z*bm@8u$(}e{iPom3iy21qwZx;zsgyxRo~4jvYe3{tyc@*Px8pq zdoe!tD*g6uSdtnIFf+JcN$(GdTfBy@U%Sm}+=V)T8Z)HpE32!EC!cW!Z*ZT*u#%UtQSa8A_o$KUw!e|KJBTA@`UiGR6=WkDsC z?Ug^H?me5ofCjs+kv2IuRIO7rI}+L0axE|&-8t~rUZ)TKbk1c0;Zf_xKQAYdj%W!F zec%)Ld2y-v9jdO~d(d{bO3o$5jmIW_>cH5s0PA}glELGKQ@9*Pk!weOAHjG8ahG`3;hNrcO<}2iw*m_y_KCsq%(QXFrp0Yu2$N$i(;<^2#%wde!*3M1M%ZWK zA6ly84SY0QKpK;*Wmlwh{IVCiQ@qTezxGh(Yl*Gr;TW_f97efw)T09*%u^ejxoWgR zH#_d=D$hRHHwN!*BfZW;HrL*?s2q|$wK`pM(nn1j8^^cb1UknS4JnvL|s5Jq_gnJgIuut34_pPvv((`*!8&^0$UY z8QO9t4c($uW|~6Mr|LttobHi3y=LdBP`s1exg)TtzSs?|*$unLg74EL#OND=*!+6I zOURCBBK^pR9?afO?T3KE7-X`yb@238<^b~GqR~EKEAZ-HL!YQ5%pedpz&W+fKIlc` zt?);|{NI1oI~fjc{(2C9PiLRTnv*`Ue*Q5|%NANDM5)8?@#~?vSqNrOWY(h(*~UdX3Qdx3UdYK&G?RoP&K!`}xE}2n z?>v!c*-u*hNZaw2u8&*~{v#=RTsaRlmJZ0<=pxAGE6<|NVqg~oC$t&~BOjYI(pUmn z6>jW{{1!p9@I|Ad_utI_T5`~Cl`561v?aAaYwtQEw6(C+-B7nkN~ahIlQnM5J7}9Y ze}FIIWOVNy@kT?O8H!bVV>_O@Dl1Xq`5Bqm41GUNr+MAa(e=Cn90dX}gR@M6|Fi8@UWAW?QM<*m zNBtg4Id^-*qG$$(Y&7HFA$$Tw?cryj?&H$T%D_v+u@wsWcKkhZ`utzKYcCEA{N9hh z()cIE>To6V%Anjlu*_rtNBF$;R5th-uC|J{V9f88gab|%SD_k-`ZoA)*XJX*1)eJU zo;)YL=WCUTtPkyHXJ_3FK+Pf7lSdj@glvJ;o4KfZirx~1ELhecw!7eo+F0Ip9^WJ2 zTAVe#XqIcMzQ&XAva>(JhGyqk$g*10))RK!eGOYq+WDz&)b^d@BRjc9#j$f^rixTW z#h%v?>!FVf`zT&*U9L|geX!rK!b@CS-z=6Ag+KY(1@*cT&EzTDpZK`3%Uc&%ge za-iQD$(p}1Q84cjRBu_GL-P6SnFOk;%gxb7fR;>d$T*>sD>pYesbheK1Ofp2P9Dl@Io*$0PY3iaFXTD5ZaUT0jl~NKE5lX-8i6-dK>@8sP^IoG& z`TJ@G{x7@pS8vrqw~;UMNMy0rv1v*BD(mBGTx$~b)pu@^*JZkb@8#~h9+S{ zl@}R8_;%mC?R3PXjK8~wuZ}XcC3U0Q#ENf8Z^sQ#t| zDt$AqPDimLkva=@u-?NC&K^aV5vfYxl9n@5pkJ0Fr3&|B;maA#!N?69rg@=5c}MaJ zK1c~)FF1RvTK|M)1DP)!aJLKp#kbmoFo|4Ok@Yz%{C>9~M`_x0BAlO3P=t+-rd9j% zs2siG$t9=c{ns&1W5P^uuEodeuDfObhoqO%A zo<++m`>3#kqf4k+8Uc)2`bzAE28t=j7=S0XxJDr;3n^F3ex@lM#VxOB+*Ny z|8ig$T0tvDlv9Sju4_^#ib>6YFEwP-E+r|-ZGW%9&pye^AZIh1LixfoJS+d~@nlfF z+w;vCQ@(llO)+Yn6D^9~jc4J9$2XS{t)RD5G>Q+lV(O@orS}`flVfE&b&2)Oe)Vu= z6wUBd^o7h%ASK=H{Owo|JiUVM`uD&Vn+e1@VK|cMvOW~pqipD$No&(Bt;Y9yhrQ!~ zOgnI^k6}0E8PU)NdGRI5`9}XFC8-KFxDGxt)tKbWANAnBGr#FR^?G6$c2<}OM3>cc z_b#i9aV^8_blNs*lS*)hV+%X*0(tmYPFpun$$)@7n|&uiQ&!Za zDvdYMdSN{GmrCeI9`AXWtZ|En4BL+@CL@1DTZ2dJXbp{sM|87>E7kdKaB<&X{tiJ_ zT!BxbafMUo%WWhu&;8?@Pubow>7S8hTwYeq93yZ=2>aSH<#UyIh97RDJ3T zfaQAeAvmbktTU^ni0GS^6*}aLbKmPww<4f;ipC>QffhKmw|-OUZ$0b+chGc9TDqas zeO5>o6aV9GfiRVZ=*0)Ha59%C%0UCB)WF0)W9JjOPuNxqoQM=NxzG})Q+L=;i1QVZ zkvbgjPMj?~`Z~^KfwHbL$1!)&o(;D0)2l%2*iKK(`j9>e<7}%Sfv&x&Uj$PHie6rK zt}r3h9{%LW*nvYzB?W>ic>qi|<(D~O1A{-BvP6ey!6Io~L2X^w<-MQ*A3n!Om>U}K z;k+TBwYgAisF`(Am{p~xj+hP`&7J?%-{Xp{g|;WkAOX?L_gS2Jd$bm6Xy^%#f%HA0 zs~)>H%&!|)<{l**E_yH%?p407itwAL?bkB)%Gm~R>vISTdEm=D*SYbP!T(tw)G0xg zm;GVEwD!$MjifLQdUxm0#O}qg#Z>7T7`jf#M~PZsU;H*Mtb;fY1$54whns@#5}Bfk>6S zzpu7%#+rx!ybTD;7wm9AyU0QROdR`s4)jIN%+BFKc)zPh*7rs%PUyLB18WKd8xCZk z9Di)?x{TJ3z`#W|Fb#&{*)l83gF7}ECq94uaVGn6xjAR@zg_CE1a(*aW&3(#}^D;?!8m4e!1W} z5Sq<08xunP2^Q^WsrWI+JLJ>%Gru1%DDE##f2OIi?{(Q4Xas#gxAo|5#o1E&i@A&j`M%B?$Q%QO!YG%6sbv-`%ip1+fGzFjY zYP9LG>;bboAVf*&7p2D+p#;e@#g)q`CVTGe48`qNIVQlbe}fh4^qRd1r?g*xXWBn+ zNl>a@$KGU!bz2jUy=VHnKJaO~@5xl|+p$xlyu$c5y!RMc_|MzZ5>hl-gARvl>K{?W zxV8!maTzV(Vgy%>>alni^(k*|$xw9^;LDm!PZos8${g#J`5B5{CYZ~u^ zrN+5&o<2q?5I38EA6&-$1xv4aOEUMi;?m$Plh!9&A*Y)zIPy-laVUq8SK|%+#{Q!d zGkb;2_Y{@gEyV%-INPkDprG)omec36oL%cpkH(rIk>$Y6~Mk1uy?_4EniZ@#L0>DM^F0! zQ5N+bgE7gW0*otaKOe^>m(op6MCNICRKU98*PH^JYxdnM8Wz{>B`0VGo3p?t;z$}% zy*g_mE0f2`9|#S8F~N>4 z_tQXm_aJ+YSYeuc(2t>qC`w#?y+fH?A+Hg#Tu|xydT;PktwlET-okqNF;^aZHpiro}@HFuJutqY|%{H5^Qm2gmx-sLTQjMu;AqP$#d&T9EGFO1VRUE z%-LUKP=N}In1#KLa-Zez^XtQF$>TgD$8}O%5$Bau=))+)YX-Wf2hSM3W+?I>Sc>b zV=Rs$ErCpD--Mg1|2_WI!i2aoeKCMK7@oRx`$)p2q%ctFA83T5$my8s+7X)o;k9Xp zreH-u(=b1;5jLW!H8+w4Z@4kad#@QjziPL{pENvACqy~qY>*SVN8Chr&P`vxyYLMcPO%J^% zsILeJF??X?Dq-!|Zj(NH=}bPon1aH_7(3RQZi6*k3J8os*Ah<(86jLpvEY0{{y3g6 znIApfpEa^?UP`?QKdC+xrF>Jm_BKWgb|Oh#c$pNOf5eQJ%up{!;=gL%|NTb0`=jL~ zw=oOO7ozl?j@lIrmx5mfjG{i@y+I<%NpZc>L8z8<{rFKG{ zzp7;7L9s>idHBpwUVtMmOXrw7JUmw>mf%dxm5d7qgc=N=gvt0uT`EodjSSn%1AX$o zcU5a&QX^yezgHWRTOTX(`X=A3U?&^Khs%8ZA@!9xt}P5JwwK~d24v3HHiH)l?qOQE z!>=F|qYYGkJlg08FvqIgtcdVaHKsM5a?p&VXygWDWf@FXVFm>++4Ik1rE|!Ea*xNo zL}%143kOlzj_UFENe6bpJ$43yAZDWx_w2;Tn=Kg`uKh$W^ue%G?=;J$qv^mp-VMju;j%txfPN zH+BAZZ3d>~olrGQV;fTe)T8;-y`v3B#b=s9 z@6b%%9(+%xxawwo)NKr#ta3I;)W)qK#|vOY z+jIcr#CL>t3P=Y>w~w2)jVhbgUrS6<^;Rve7VC#%Hjse2h+&x8?xp~3sciRn)i>x^ zx3yPJh%zBi+!9%xDfQVJ=bFtUgGh&~#5#!Ot?v7cVo1Ecc z@Oif=mzHaE(Am`0u&j|T@R3VJ#YR9d(>%fl`I@0c*3>|=X=E7HuEjp6DdtM_;`6DA zQwaKU62bc@Kq6Q>=(t{*a$|F%udt_&QXs(R{bCJsxEIjhU8&boZ^Z1 z8dAGo`kCFc`pYQz`t*47aV~oz9Be{8Qe0n^g<3_lJH`rti$e)V*_g_}B%VkxWyId7 z+>ZH~wQT``lZVQP%XD~0>A|$4w2BQ%0qw^-?%T16_JbDPHyC^TgIqmB5Wkr4sB^YQ ziBjN!uudIfESkd7iwm)8ZciVRW8cG*90T3)!={J7y^@~z$eFqC55#Ba&gJHg8x?4K zM3>uHr;7}%Nc@&vP5f!>E%xS8asE0r70y73 zop=L9ydvdJ>sku|1tE&&uLossOhZ>Z?)NH{^ou!8|B^EE0|Zj1C*|k(7#fuB!P)hN zp@GO`+6UmnRcvxV{1~MI-QT#AkzI?)bhb##l^@8 z@Q0f=C4jNFPc7T(qRuDftZmq;m98^67Zx8X1^pBEZuX~SHsJDj@M%0z)YCE#FWhfS0f4fNdzR=k|cb4|IK-c${*=w9^SvFb!KUF=LTO-vT!2XNx4=shZ@;+ zr2B!lbm5yj=ePO{%>_?JR&Z8bk*lKx!dS+f)GZ?g9S)0Fv)C0s(7u=cQRay}U<-EN z_;a%i8?I|eC5)fnyk=8pk_|?PytaaDiO-F2dc0I|@VBPMJyqS-y= zw~Y^7%QI7SU-hWnP{F z_x4xC;PFj&-hZAASmurRIsT2YAR@rT+TvlLeofaQ@{GdT+1YqKX_kNOqEkLL99S{Q zNOLKR7OXc=tYAq+67w%WV%R4f(F7-~+|DM6?TGwf7wECbiGD^SYvp{vd!AeVeI|km zp!$bYXLTPaEq$)4fkh#WydGabVaE_DT9m&Rre+HcD|MdrWjxxE6sV{GVXGN1~gFCc~2vbCQP9fDkn$|)P5Jyfv z)_6*0qp@KCe5|h=^8cZ1Uuf9|S>TtfU*SF%*pn|3Z)_mOx5@3Zj!79yF7l)^!7_*P z;<@^`^621;i%F2tzXod-{LBV0wRTCqNQpWeA+ezf8Ot^jzVOBJys<>t=8ULa8}3sN zQLExBF_7d1Tan@4tXdWO;kOJdlHZfehcn60y=|9#qxb5ZLPVPuNCu)&2owW3y zMV_CuTTI7CP*)d;S5gJOp;a<= zH;-k;p4^%$xb_?RLRxKZ5LMysTF$o0_{z(`UbocX7$0=+w{U-C?3gp**_;|cdcL1_ z*V`wimV27Hnd@QD{4Cl(f15QIn{TofavD-J598Bm^Wd^rTB*1}*}wQS7g+wT2vg=z zM_daj=}_%&%^=CK93eV6lcjl^&RN|{Kx0`{2@d2v&-7JiOBtNC?v4U@!KEc}=DorB zCyL9ry!1gnW7l|`);$WvhG4&MPPT^Gw)b1a&Kyvz;>yt!1Pu_ZM4U=m`e@G|8iOOg1S1Tm@>`e|09s}|A5K$@*#MMx;inL!+rE0n3mP!y`G1a zxrep5rJMCXg2oTz6Mh2}e!~a+$j>j%Cm_xz%njrd2Lfw)L+}4T1t%9PI~(8sU15Dg ST;ZPrn$mmKcQvwRq5ltl>JQ8S literal 0 HcmV?d00001 diff --git a/spark/maintainer.md b/spark/maintainer.md new file mode 100644 index 000000000000..e4ef7ed7aebd --- /dev/null +++ b/spark/maintainer.md @@ -0,0 +1 @@ +[Apache Spark](https://spark.apache.org/committers.html) From f528ddab3310590b87273e2dbb75b96e081cadbe Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 17 Jan 2023 09:22:41 +0100 Subject: [PATCH 0003/2686] Update logo, claim, key features, managed service --- arangodb/README-short.txt | 2 +- arangodb/content.md | 20 +++++++------------- arangodb/logo.png | Bin 13011 -> 5326 bytes 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/arangodb/README-short.txt b/arangodb/README-short.txt index 181d22d45f85..7ad1401b89d5 100644 --- a/arangodb/README-short.txt +++ b/arangodb/README-short.txt @@ -1 +1 @@ -ArangoDB - a distributed database with a flexible data model for documents, graphs, and key-values. +ArangoDB - a scalable graph database system to drive value from connected data, faster. diff --git a/arangodb/content.md b/arangodb/content.md index 935d90487510..7eb489a897bf 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -1,10 +1,8 @@ # What is ArangoDB? -ArangoDB is a multi-model, open-source database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions. Use ACID transactions if you require them. Scale horizontally and vertically with a few mouse clicks. +ArangoDB is a scalable graph database system to drive value from connected data, faster. Native graphs, an integrated search engine, and JSON support, via a single query language. -ArangoDB runs everywhere: On-prem, in the cloud and also on [ArangoDB's Cloud Service Oasis](https://cloud.arangodb.com/home). - -The supported data models can be mixed in queries and allow ArangoDB to be the aggregation point for your data. +ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: [ArangoGraph Insights Platform](https://cloud.arangodb.com/home). > [arangodb.com](https://arangodb.com) @@ -12,20 +10,16 @@ The supported data models can be mixed in queries and allow ArangoDB to be the a ## Key Features in ArangoDB -**Multi-Model** Documents, graphs and key-value pairs — model your data as you see fit for your application. - -**Joins** Conveniently join what belongs together for flexible ad-hoc querying, less data redundancy. - -**Transactions** Easy application development keeping your data consistent and safe. No hassle in your client. +**Native Graph** Store both data and relationships, for faster queries even with multiple levels of joins and deeper insights that simply aren't possible with traditional relational and document database systems. -Joins and Transactions are key features for flexible, secure data designs, widely used in RDBMSs that you won't want to miss in NoSQL products. You decide how and when to use Joins and strong consistency guarantees, keeping all the power for scaling and performance as choice. +**Document Store** Every node in your graph is a JSON document: flexible, extensible, and easily imported from your existing document database. -Furthermore, ArangoDB offers a microservice framework called [Foxx](https://www.arangodb.com/why-arangodb/foxx) to build your own Rest API with a few lines of code. +**ArangoSearch** Natively integrated cross-platform indexing, text-search and ranking engine for information retrieval, optimized for speed and memory. #### ArangoDB Documentation -- [ArangoDB Documentation](https://www.arangodb.com/documentation) -- [ArangoDB Tutorials](https://www.arangodb.com/tutorials) +- [Learn ArangoDB](https://www.arangodb.com/learn/) +- [Documentation](https://www.arangodb.com/docs/) ## How to use this image diff --git a/arangodb/logo.png b/arangodb/logo.png index e821e334ce9bbee5aab48cf300a3bd02260b6363..778ee4a38d73c70476ba1b8a76ecdf07daf1360f 100644 GIT binary patch literal 5326 zcmV;<6fx_GP)kwz00001b5ch_0Itp) z=>Px$Tu@9@MF0Q*ATSUhC=eSe5F9KN9VrtXDia3?k&!lv zkVJuxHI0cgfsQqSiaVEnI+1@jeuO@GhBA1DGK+gNj&wDIbuDmyFLQe~a(Ov`aw~>u zFlcryXmu=nYA9!OE`DArU~MX2Z7Ex6C|6}CSz<0%WF~f0B~M%=YfBw&NgqvDC`VKw zMpPkYLmFm28e}~gK}#Y&OddW<9$qvRHbWaVKpieS7%e&&C^Z))G8G*v63hy6+5i9m z5p+^cQveVkFhEdXaCCr>ps>Ku;P4?L^IiY|69Y*^K~#9!?418|+ej6_wfZ{xveGJb zdl)yJ$z3J{UueecFu3#}#{@VoPy!{#)H8)McPWL`!83mU|IB6OIA7MQ-IZ2ue%a5D zt+Te|kKcQG`y|I=u~;k?i^XEGSS%Kc#bU8oEEbE!VzF3saf3L)*CcW1I~L1B;6)h$ zo+1rh$71=Icu4_u6p80pEFXz5hZ`==CuheMCzHwf<+YCyax9jOgJJ?p7UyS2l;`N| zd;wRaHeFjbO-P_({`Q#GaWb_!S~iZK17k704T+=S?#`g!?+MA-*aklV;v%Y(@`iOaK&Uy8N=(I3mYlAft>dFp`l$xHUS}U_u!?TcrkD zd)GFS4s9%eBX=wYGRi4JGZ`5qMjLT)aZ;6vy;76GsB0TN0Gp@HWz?q#Ol4#`ZXic5 zj#!2sl=}1zI<_$ZuzA`@#>QY|C?i*?nd7fqJm{58*cwvGT0A-GEKA!w{c&Xk5*W(} zBy>6hk!u(Cx5|d>Q9A9+#sCD^sSGn2)kKCeGP<)70|0YzuWZgfr56B@IvtRL0NZNZ zw2Y9N%Lswf4G{pGvbb2bVC#U6yXt-u5KuT4T>@-sql*c&g1Al>xCCIz>cy?Ht&NLL z0(Agj^K=Kp`3j#@>BsfstboQ~rwcNG`IypCuWZMY5j|RTaY>y5*gX9}={ht|_|EOGJYeea#VcCG74&qphWmFgFZo?H2Z)4U$V4SmnSC-{fDE$8axA$Pt z6-TGj1-!eBk3SQXj(u8PQWMuGOWQoXIT_XGJ8imx*LBdqti|}npZ@w!rs3uJb;`R9iL%2HQZlc#+1=XDn%Vxw!5`2J5YjA{BmWEFxLIxtu`~SEcU# z_r)8GE?_3PJv`STxt@l(k*%PyOwy^W2Z z3(Llr*JY!5mgWLwrYGaAxM9sH3NjE=2xdfOUC&_Mp+pwHQ3^cRa~PnM5ygdiHdZa8 zI?V=#vDI%Y;^Ja*OzCg_@$cCkzWwTHS;KZUNqbW_ekv>*&j0{-k)`?LMEWwu>?{jU z5sC_^heTR3LbXyRl*5zWUnKtBcuE;VBAJaflF^0xq)k`AW-_86EdZ8}iumR0|IF6- z`)BpLesubdt`L-s2g?DT(0r`cuV7U{_N{HwPiaQytxUl@=&uL>Odb z$UsIuG!`FK#xMi8WD&7aaVF-~(^?zHi!UUJx;I)TYGgWATde(RGkqCTzOLr-ss!R| z$mlvA0cd1n3U$P?!k6I@kW+XDG6wvyHC%zTzM6Iu0vD$*X~pQ*|DDzG{zXlurgZuZ zT`>^6p!F5C$N98YkGR@0Vsu}-oXe|HLbZ%Ol4wm(!?A@RmC6_pP(i%*GV+HQG+V)K zJ4E1TFrQqTIDGcx)l9~l$EAovdh&s;I22FXUNUnGvvjb2IwE};xqrso)|DJjEu(a; zR1to7NFkHa0}Y7RUPjElu-OVxyKP$^!^H_@jP?dw<>PN>a^4Fo$6fkzL2uX=ChB7V zNX@b|5quH3wv0JhKSeG9O$buSsPNhq+|$tqY*96)qF-2|%G0jaL~_V2ravPZCK#H7 zOm0L@uRUz|nd7!H`UWzl&F{%V@k+&hc@1+>%^RhRd!_It)8<>|gv-*BJk8@rDbbND z=N<(e`d0)=p$KhW5ZCo_a4wNwzT1~$5aTN}CKzJ^>v-MBSm>|d=gsda_VUGPl~eoW zidQo|z7!i$SS%mEpXu^uJ?c&F$@pXOZT&|8fZC7MBJr6jn#f49*slm;t^~_m)fbYgWQ^r= zfrvXa;o@qi3jQyp1sm>MMhPulJf-||BEFjG!%t3(=p~F*GWM!oW6*l6Hmhs!d-^iQ zsOEJfPzGkeiZ3iu6!N~r)EvpDxcu68%@haiJ*14pcT{*w7kA4$Jf1Pyg~mQB2dPTN za-W_7q^4P#k?Q4XtXaMwf|1Uq82^PS3UyB+YbML4f(EExr#NvHLk`IU%9tWYN&a@d zH~r1em>rh)p{x4nS zXsq{Okui^cXz%=g+s3T`PEp?`QIzE1S}f?bThK1oW(VXl4Ml+bkYf2^n1`Ym7GUSC z*o>jT;fxvC`ThUE!HRsgUuiv3gcPUd=hw)xEPe7Ql8=wHj>XM#baAxBcmFfu-FCzq z1N^gE^M_H5x}8p$F8S^^GC^2IM3-S?#1Agp`4`Z>cKpel&TNhQlhMAR4(}Af>%E1H z=hY0>ooN(wx2?Sf$UD}Q&*cUMY*IcB8RgEVG}FI!38r}>S${IxS7;Qs*caSN)4bhM z>;{1BOgH`M1%PMTO4EdoO-6~N(7$%vv7tpO2A9#`?WnjyfsyD-6CIeNIxx;FGy$XJ zqWYxoL=M`B$0j3e6KG$%2iq82_V6;&HhPQYvQuQq8#5RGvo-rN27rH8syqqR;5Z~E zX|?A0UG_5i!HS_|^yq7EiF#Bo-tTn=29X;Ld|}7aDv*!OL96@3$K1PXMskXr%Gd zX*|*>jnisrG7A~e3gjMTB!|oCYmd?I-a{D~%{!P@ilP$g zR5K{eTWK24LPnJDGQ5mZ} zOkyb`(_E7^Ymy`|PtYt3xpMk+<>F7j9%*t>P4o(x3NR$@D5ICdmo8&S$w=S-)c6dk z-f`tRdkpb4rQ`dJuz2)(fG#I3Xl6cn9$q?imIvy7sz-gJ%*w5>@YnHqVG zCP_4P{9&uS$&C?&M`kh#<5oJ*_}}B5WQ+lm#evTn_D{xv#u+(m6BwT%(33G) z&P_iZ?b7kxf7Sh#w@1>Ez^NSmq}14z@f+EQomC+;F6FO@lX1It)g%81FW zXJ8`O#Y3`jXLuYm_OW67tR4cQtR`-~}&rSiG765RJ5jjFDDXOyB@uE@O$} z;?Ri_=C2qUqshKu-C26bJMB$ImQPV=G~=tYs=8f3!%x2%>2qAmD7v)L^owO`E+f9_ z-cT}@utnH8pE1%XO=2#i1dE2AcoRXSaD|2%32@!y>lysQA4f(qqTaMkD~%s%VIU*X zHyt{kF{NcBDl!qP9n4e;!9F80(%iDmhh?tB`O%0*)k0rRV9nn~CY)4SXeb%6QiZ;ZA(=eq!8U=ZO1uR7g$qJcMpnSM+b+`2&#UUg0@nOEGU7~c1}4Xi zr&&8q%Sas1zl*^M15JESr zaCNVOZl@oQjQCke{rv(m6jZ6QkHU7dHAu)a&~pi4+tZ#eZ9Fkm@oEZNd^0j^rM2=I zW9UJE%3}=m&HaD?PFQNiZIzx?YHpgGptDxk!voP!}oD^RTq|T ziH=9lPA``GvCW`CspI(z%IIeAqN{~QU%F5lVBSs#F*=h7Ik~n$Mgj9s;aauLJQR47 zG>*1;lIVcgSD1{K+7&>3b*%VgmZ)tC@y-?mRH@HEfEGmjR0fUdbuH7YX9}B+pTGLH z-d6hK0zT(gVpGTJ^jO2i%XxcX^nxhKB;Y5ML_SjxM5!!sF=3H}!Tq+TumYE7^g8F0 z%OnbF;euUZL^MM3NaUbGrXfe6QH!A4it=oIYm+PobHc5<)aGZv;kkWabAEeO)k2<~ zp8Ue;+1W)^GyZtDE0>jvveEIf36F$}by06l#A`K12M0{*K34&zNTN2pBu$ejDx1sb zm!|8<6X-^SZg)3)gYlF3$8jwr;__xPYcCSuHLt3R$z^+ZJUUsPZ(9Gly^@hXoQy2( zEF+7wKV>Cj8KK*4YqV~S;n{35xxHz)olIv7oq`o!^Rm5|Hu3fOkwV4gxKMR9uRpk7 zGBWXSGJ3hWjAn90=y;p=#h@=2ai`2`y-A}Ze7dPBRez}N0yVRUg6*4(?RTN*Q%1(i z&N4EgWr3B9nTKw-MRXsTj|i4*nj>$fCB;AbXLKwlVkUT+EW% z;nzmSl-Tsfz-Ut&?Za*;p=L21V-u%~)&Iy|%ERtIIh%GeA@AQ`xRH4L8QL|Jzu z8KsDQ>ew6iL7whNxEo9tc4JI>^Tm;Jy@atH=(APy$5}GRJTv zIMv{g@I~3)OJ|NDDRB19ff0%V)MOEJAck$F4>1<_pQo%z*993K4~K<=eO>p1D7hyJ z4)!Jt1Q&r$snnb~9DNg`#RxTC2CkKM3{KWeorQd@Vq7W`wjGYXDc8cuEJ=1Ou1lE1 z(KkM*Ipje`#{&_Al0%&ebUY*y6u91t;~@YI1amn0CvYx0_JsttaUE&LgCT*SbW^d8 zf$-u2+DP4Cw__OavLTFci2;tG3DX<^BV!j89S?#RCYjur7Yv+<4u`|xa5x+ehr{7; gI2;a#!?BZ}0p?0eB?+P4Jpcdz07*qoM6N<$g3Iv-$N&HU literal 13011 zcmbWeWmjBH7cGjrG;YBO?!jFe3qcxpLh#`3?ry=M@!*i)!QG*8m*DQMIsLqM+#hhx z8e>bJXCVVhgr@&J14AL zm(Nw3Rt@(lX$QXjoyfH9Ctv)vU2d3Rqo>VhFU!B*+RXC4o*CC(RCMnLOGJPI!Dcjd z>r`h_8*+O@>8CgX`#4MzO{@sK`5(?h$(Uv)37bt5XbW(gV(CaHJKH%L{W zqx_5-%@pLZw+&GCCf7<!9q@+7UUZLA zp7nr@%mkT%%Q=c49&rxXY?C z&sq7ttI18!j(9MWy%1R%4OBWy^|Y}*NF_j=6B%X>wxdJC+&hxQ|BhN&0p5@h*Eabp6E2>**0|V{R!d%N=rThKNcsv-5l*w| zOyfyIk#`s6SP&@_Ic#f|G?wv^E-(#0@ux;-k6URk{4-{4G`pULL~nUil(mh2<_yH5 z{!QE{cL(09=HBq{hMx*SNvbAKjs~Xm!|7Pavi{5M0iT-8wY`;cSnO#ia@$R~I#%Hj zXQ=jFOK5=0eI_{YS)o`JNGp;GvC&?c++Y4k=Rad53Og+y?p3;O&V6&-53EF$k5t}M z1&?Vst&OMSrqD zKGz>_YfmncfD}3Ob4#jkBiZ0>R8?tQR^|MIEl=q+7jW01{dkCgib699u0U?LTuw_c z_TyCwa>wG~^5UNG7l*&1|2}+^N@AmlvsgiO63|h#B@JPg@#8RQ$pexvt{RTY$#2?9 zyD4%*3fAJ78^M^rg;({hLPcMD&N=rkzw;v7 z%r+@{rRQPFU2Gc7ykEcK-sqr=!h&><=#RbgyQD#$6MBSA*JH{uh(`itgiiH}Udd|VM^iZ~`+@47lmH>@~z(2dQ`IMF`3&l5M@KWzOh zp%I>_yr+nZY?PXjk3xEx(MgboryMb(uc1N{ML$5)??#TOT!Qp)SN;nF7CmR*(o<89 z(2*oYHHenSwL~e4f4BQFfsoXhCJNq;aIMacRln^Dsp)lKYy4pi(B!!MHO~LlkbGEL z_nWD1J&)XKYA5aF8*PKOnZK#{y@Y036Gzx_EafSoKUp;vihReRf85kgGyB#6)a!@# z?2mKOP+i>Ya!GDrPTcLc{g9J!dIg6187PC1IB1yVC8*q6;l6S3x$WqF3qH;=UU`3T zFJ+=)E+xqw<#%-u@frI%oXB3fNU%;xLiHW~^UEa%$+4YulHWy@ZAWv@@ly z%*Y!$um1H5^;4~Bd|MmWfv904X26c6yQPPSZ*`MHh`?5XO{2mim%32B{>8s+T1%rmUJH}TEyfwn6W``^4NF(9R$sg2{H7#AXMDR{5pW}f zB5zNnT>upoHC_Wv9z}Ae3PYyT0k|iVNPmZXT?I-y;5Pp885XsmtbIMxJ-zO;h8Ep) z!Ff-8BZi|SI=gS^wyLO5Eq1n8DN(j&?iju3m*3^BRyb~o)JVt7SvcELitb^XPOW}~3>@bzFs61Z&u`0?T5~It z_f>~pTHI}4%c}+lt7gG9+5wV#I7F<&!XdwRTrBMd_6yae-256A?r&CB()1lDzq2@) zE^s6?s^6ljeb&~se7o?J_wu}N0d=;HK}5h{%P@aAZ$4(`=o$A(6(NMsqUs3~(s=NT zBq(z$w7E{2gD;OSbdUQ4O|2bHDloT`)M%C(JgREv8U8RTzESqbEHP5WF zQj@bQKP}c3T^g_0$Wl#Ql=vobL&Q_ic|MBF!j;l%*9$-H^~>hc&nPHzd zp0oy0na)(a@@E1)O#>IF8jz6{ZJ-}FDlC$RQfhBf_nQgrIf_z6wqLa%r4&nf?*&sb zMVEQgszWBnGdr+hY}8DeK;xNp|8rMkfQT!{$jI(8@6$sMzXu-;gjam zyT>`A3ever5#29|JvR%L0d6n#$lh}gIsr=w(!uhuMgq3b& z%w;c8+5^QzvH|53z0nA^YZf4{tp>r=C=st?iPa6J_|M=^^&I%e_tZPWwtucBl{eQ# zI!+4OD9#5dJX`Rx{S%^;aveXmRh~M#Yai{|j<&EYos#70_%()A`_&|#t!c9I?0eIJ zypHB^PBYElcqD0RgTnKAF&UC*9tS`Dp~%4=nJ;`yhAF&??+*Jg+UO@G z%>`4Ar->$aa^Zy(kmSXN^x0@UMhV5UfT;J9JUYT`&Fh|z6E`3*;t#^!2mD2@HgOeZ zI1Ht(n9A2>S|<*ULIYx!JI-s8C88pVpL_`Ey{Z-*I_Z{HF8DxZZC4dQ+2-&Y}5J_moni`%U)lC)c1@l!M8GBM97tBQWg(=*gV#NKT(CRV){c-D0ILFR0HZzxI8x{H-+Khhwl`7nCL2D6E%?E_JnV*%Aec`R*PiBGZm?Y`3z}Hu~c4f@~y8k51kvW4mtX zt++hl(pG6MKIV8Pi4|-mjtZR!dZKpWmZ0KnreA);3+7L(m)EGldH@+gqSw&B>TGm( z6_KK;gfJU0%ir*qz0m$8qC+ZdA1r@IF@3IT26e;|Q4#>M{kOSY59{&O{JHzjy$O(r z7x7DCq_~r zgGF8o;u)qs27?>rqYlG>_O|U-T6}ME>{!0d%Z6s6wzqIaUJwcqIxQX7pNV(md)tn< zvvs0>?}<~)6(lY`zkTwK=TC!ZXSj_)8&<`r|3-yUp;g48>cTf#7J4;AQs*AU>*PZt zDd4L1_3j~?9%1xMXe5!lI(MHAXQ&f8%5hg$Z=N4LhHmcRi=!-7L3be7P}8!5#N1c5 zLj?o|M!CNflWw4N{QyLvp&aYief8R?z4Cd)t>th38ECE-+@-A_>4bXhBw^4bw(f5e zV(D~_ST^KScwx$w7TA5M&J&h#<8}pDd|sIS%EYYV*jf1zfeuno#wh23>?>*gQZ}TB za3FEZu$KZz+$+59RR|*Va^4wc?%d@uI~6M%e|^nh%Jt6xWx5sDO-c>QlaUruMM7#R zdwmG*iV;Lg~O}^1MH`ZG`x5d-(d7g4h*J!NL zlz86X#-DpzvbeP=mC5(v)fzqY5{W96R{qZ$fyWv?7W;dzh0mlX29j zeXp81BV-2S=vKmc&@3m$Czeeanh#4xU1Nh~DEU^+OZWe9JEISocWUr;oCFQ+KNJ{6 zEsPnrTIBO_DfzHj=~!*e>e`w`7^5IkqsPLZo%!wX2DjPqUrygi-^-S3xWHOttcAaRc zVXvl_nq)kXMKQW9{7EnY5aXUmJE9V$kL&(p;(11M2MMorN{NpELZ!qZ@CD~*4+%eB zu)CH=BP!H;z^nLPpsLz$GWaTo|5*hFTK;xf2j2Ubv>OV#b zS^*?kin68d9_<9Tu?tgnjCp|r?>-WTc&J+gzIuLtG>?aqJ<>DSQ3O4s_(!<@19mhO zOf=a93{At!buu{qvFOm&OOC#v2t;9*F*K69crs>u$S;d^#aX1So&H4>jMcAR=sY7M z;-J5FcU*QH?jKMbbrl`$UJCSv<9$E9xm>fu+e?rY!CnbQnD&^KzY)DU_xR2PJK~Y$ z8WDM_d;>4y^{KcIo0##-cit-4ntzwU|z-YBOYvdkU!H2E(cbn%1@%P+MuWVqLs#uF(+m@E2{icTGI zA^r-A)+T?|xWSkvt?9-zAM8v3Lo>dCjMy#M55kS!<#*9THh+J6qCse8g5i7@QNz1H zpSri(%58tW5#F`SX~^@ zfrlHW53zJGtNjZIv^fhmqedg?YW@+#+F_o*c@zJeG|DrFSvleIeb6#n$+$gO8{(iO zV0=(8*+3~|NA8wY32{R>HeJ|&71;rlf4n7&x(4D>ln8?hSZU#cHy(UMym|vCG8ouj zh|iSqayMy#(fblBSWd2j3=s29n%aI5xZuY5;dku06Owfh(aKLFPsRP@sQMbwFVu2} zL-}uj+6zDg`SPFojP;d&4^n-3pEstCY@4k6P)x{a6nv!R1<;1vruax@#SExt&{#n4 zI>mu8*j_#n?qva)=YSzIRT($&&s}%=4yN|?E|5x6mv@XEK>b4;QA(lBPXs`5g3My1 z?A#gpB_?sIb|fc2|LcbhD(S%(+u-@iv4H(M8Rd=H4b(A1^fcp#6P>}ry1KEWmb3zt zLHm%aUeyg^(7U|U(q95yio!oR!%>dc>^9o>0%Tn#jf}N{m5kUB3IeN?qu}<5NcT-i z9}XIR&KX{-Lx8o#wpiSR-yzEIn#86eNNapPi1h8a^zhfd?Z%q#EETE%W=uhjN2pg{ zZa=jh_xXfd7B`WTsgXHD1|=+gpD9|M*`d`vg+@6CF{K+_af+h#R>JaWh9<0 zSboo^XJkF`TF7@I*P6)4b_;FC656%iYwh8Jr_fTqVC8u{`dfv17UmX7N8%N2&ij~# z)f>SA#3lVtftp6UVN>A)U;CPxFZUG%4`l|&uCvO{skdc1FORjqGb#-Ta(!4oldO6sy{K>yGCCd z(iIka-8SvC@=#jgk1@a>=~dHUVW+iJ*NdC`+MVwbXQy?2bPWc%wzG`Y^uS6e-h@+P zZNR6#C?4Z(^(SL!PX&LCF4i$5=nzFd6&6Gbf#0w-?$~TtvHTMrs;eO@aAiNfqwDH4 zgDO8-_MuKtDF!KFL?B(8S_tj4(!<7!2FIBRHSHhwn@IYb4@t!%XTL=!@kn1>6Zdua zx^P!*^1U#HE_~Nw?N^p5lCU)ec5>yhr@LAuR?FluG0X`u{}dz43HOhY*)7Qy4OvE! z9{#Qnd%*&MO*OE!x6OA)Qi5?{gQlM=yseep3l-T=F9EIH!`KNQd8T1Pu3O5Clu$S# z7!puv;kNJf#dw7vyVk=@xT!b_9lzg>ks3d(EO$HR{+7YtYiv?CS-N`&><0kQQs5j8 z;7vL?w;#%RwoQ_{^F>H4@Y3*TMqg$QagdJIqA22hOP@k<0BwB@pEi@MS=c*)T`3AX zCMC12z6lX3Hm?W#7$!c5gP(HT&TR_{R2YaLXS7v{k=Yw9LDsQxq9Lvkj2NAOb6IsyAV@13I`jG5AQ3Np$nF>TursgE}3(U(n~Oc??yqDG1$!p+o4>+D7`ZtiTrKk<7!eyWvKpCbL6T%K!ft83$`H$cao zv*mkY$Iw=8b4`Y{W4_bt-}?;U?*tWxagp$Ck!l5!l@gdGVQWOX!lagA6dBabOxpWV z5pRSR+Fk$rLbB%O7k9VP!1J4NboR&mdrmPVfS-m6EU^g(Zr5}aL6^5<8wjm?SA-g> z^4qBs6-XjND&W1(vLnWl3!y<@4KDblf?yw&wuUQ)fgj@)$s=YIjiKgEM1=y6AsTt+ z+J$N;@@3P;#kD0_dyg0?{^GGxA;F+>;HV%lRQ6u3O8*lb@#^QVyR!pai{LT$Gs256 zrBUx6S?o^lBSJQia~b8o;XX;=FmZFpyb`3E{=gUXTsb`n#ysH^@6YBocYLWzh&~2m zZSPh8O;;kWW~1V%l`=hR#Psu5RCKa=UH-RYKm4RGV9omjYLKPx6!O$c*C%L^%{|`^ zbh8Qyn}(Jz^-R5UNc{vsV*qLe>|(ag#a!ti523VDevIp1GUj1;XICXS4ku>Wz-GbJ z165-oJ5Iubo;Ist59ZnfvJZsyZQ~dCu`xPv<}PLiB++Dz+a-S`RlE(3>iN-QGn8kH z5@lSx(NCnLwaum|%g_6e5LIyIdI#mizEID|%7X;2615yBj55f-&&{_psl(mMs@y$S zzX07-kVRqdMA7<(Ir0E{(h`j0t!6f0>VSJiXFo-_k8C96;zVn2R38Dz(Tj z>MjdhiV^N7M~~^%k_4WIMfPJnM)HX7{~4zTD`jVJO+>0oZ1|V{(40IRm(2)Z=X++N z!AubqIA?A$9nvuowVEeTvQl5GoWjH+z%ZVk+2G9%mlTPO07l8I=qT*PXU!#1R5=`} z`fcPWz>5Oki1-G+xD!LGvCwVdEun;>8vHB~QMgq-IH|US6oSOT_OVbe8sdv55(RIn z((O)HBIJDd*(gh{*eqzAUl*&a37m4IhuVXUFUtP!l8%9;kje&zEW>0Qd7I!)^Q?t&>74;s-=kydYqUJx5rl*7D;_$BMPKS1`beDNq>1K(he_K5 zPeP8OVl01`S5cGkUQ_0JWA0W#woetkw(#<$xpH(|qfPDAVVkTxOG^b=mF?+|Nxjff zjq3iHU}U7KJYXln5xvp1L$Y871GMfo(H8MX&o#)ffSe-SOJJbM%gEekio{UUaZqWk z*URG)0=hIkbgo-)01H3aMm-fZ+y$rsTp>)PxB%^MQ0y-P#LE0B2heLL2VpC4@njHP zk^ZE|gTuz1@mn5Q0whu;jPw?TIVPaah;-#>w$HKTXUbtowtz(dMwN1*;6dIBJCGzp z>KicaKg(S@SsmgVOZkq37%D(I5h54ehpE&TP)aH zQ(RRKpBN``6amq!MqC*F;WDXgT%Lwp2J{#mu9SuIj|1xP7`g&gbqK%%faFZzV)(Du zWAQMr-oq&1+V>m9#HMuW0@l)jd0c_q;g`Qs0+*{ZDI5((AGhza$FKFI$TZEFbWn z2F#!kWI)P)I(5V;%!_cw#n0(d#UJyoCW)CUCmk z`W_CbDhv}v|9hJX!7QX9R5AuHiG6=i_96>~MC4tl@dF_aXDV_VlQ+8l zcnS#+A*GCFCVd5o22~aXRFu2nIO4f1nJaSZSa&5I3C2VEetrHAU8RzZSFGW%(<4&Z zM{Z46v!D9wfnhkXBP!e(G~Q>3+s=LR;j0C&ahBHMX#jvTBb96G&;@i`X7&EE+UIp%J09u{Fck2dS+q!1n;goZB@|dhvO3CAtg<%ckkybjp(00 zrEJj2l`eX@L9TxJrw&J#qXpc1ab9!L?r)pF=7djqrnLmNKf|d}b_IGi)MCC?Y_?JR z-3ff9<6b^H0yzw2Wb1423bU)0_rIC(jG;o(Aef&KVl2ptUg&n=LZO=4o>Re!snInZF8FFWuq5_H_U|?!9HM)bM=N3 zy)jI z#>{||+03K8%2`U3%CAY6urtr^Fo*Rks~%{c0>Va9z}0in>ZWtZV_ zjvM3N&c_MS4xO}x_)dm*P4Y(g|n`W?3D|W zT0kb4aUayZQEZ1r2eCfJx{&JfjkuPok0)e8)41#i;o}wVcylrVc0&1CfR_Flu?rMuI=+f3 zYqxM^Y`$q%GI3$@P=gaX`PLh<-nduSV31n4*x5w;%v|pI2f0v^B~z=5TSH&>ZjJ^$ z``Ju|4@#jh+(Jp(7dsqJ7|J^u+vne}+p|HoKFApolH}6u3=*1cEHez>aK}6@@conz z{PTm~Sn6`2GJR|BN%9sq6dL><)K3|}A5F$FZ`(8+jDn8U{;(b||CK71mS~UD?E)IQ zCTO_5u#xQ}pR59JhnF-EpN)3!bs2j95--6QULi^k4gOq%SMVp$LNUslXB#JzT!Xh8 zZ)nlp&mrSpxz+u%;vL^S{p}u!)xVgF>hEt+0Nk0Vr0zw`HDAHzGdvhlZXa+@*-Ip= z+R+Z(Ww&#dn{f%M=kWgx3Jisgi{MZk78bX0jD}816O@d1NHbEGMqX9s36a^MA zhCPt49c|2{Q&I!sNGO2+5sH$#M_6+o|H`~~j~tDr3*BFZEy>)T$jl;w(~iSUrlxdy z;k6xHW94gBo-bUQxx~e^0VU)C18E-4{Yw87l$dZ_qeRjP?V6uTP@uuqIj`T@PS^7t zBU%ssTR?8Lk=B$AgXe#y@P?-hA0$9`7@6Bw09Q>c^xKcPxHr8wCar*zG`v3wt8Nrp z-ZXfpI9|0*Rg|?vq%!jn z5*j?%WH|&SwGrOU7*790<&}x8*8ca|MLVe!Z^o$?JRr(ZcCGsk`uMp0&*u*Ri(~ZDI7UH%g{*r<7N0vv zb`iBVV<+7szP?eNy9upWkQ_g;pKm7SQ+KpPe32Lm)*{^_@DRzvFzK9iC2whnio=<< z7K3ZMk>+uBpuIkJ2usY%~Q9`1;%YlP^0%>UB6|yJY;c@F|<+$<9 zGF466fhP)LrMBd-^(j>?ENCwdhv`M;3}ZYM8Qv$PIdXu3@g5~$@u*&xlZX!=W$sG4 z!(ctx-6~JB(j{G(U8Y$Z>Je zY<1j?wa-2PxUbRE9u|)!3ce)YeU^W;Qp+3dxS6KNiU_y)*EVIofH_AGXEeibSISr}8%ycL0^h3(gG72>@ag_zZ=GL^Aq z&GFCdxCcsjm?*>W=;ICJOWmLQ=%Oq?X(1Rzi^Y3*kP8L8e6{Kdl@$4YqL)=>#m-h__fhmtVyK>crp9g?Md{GdC~TmgMHIlK@Yrgia@fvP<$M0!dfCwW{@L?}3M1zH zeC=@j>gF2;yzFNW+)t#`R2SFZc&5B?3tgRNO9Lo*B(aL{T;R=G56iVrym+lR`dtcn zu6~W?y`gX@!=KyKG8&2iNp3uyl=2((CG7rWd`ChE{cAMy!m+D>GA0juW#lJc`S7?G zN|gXVC|qOYQGp72oP+X-4%wD|38r#D<9Eof-;_(xUoGw5e-}*L3s3j}5oMAwn3dX7 z_(3Qf5<4weE6X3EqGjl)v4pP;v}MlD4q`_H7WdWA6y&8SQ0JrWsn|BcIonB;ki7GrU>g=k$cwdl6otsRRYClGKcjM@D#c%dzS z#~C^t7-9QG0>voce7;P3R0iShm0!#)guCfyU}CeWOV+|I2k1Sh;t2{-{fsit2PZi> zyJ0N1g7DY0L0V8=7s)b1KJx8pG5~N#hXdGoxGHnEXz>=uP&Pmc&odW8R4;a3 zgB{B)bfx*}i&EKX4vnGJjFr}^K2+kLf+v53449Y3Xjm=@ zrC;+M`)P~2uBDJzPfHAu7yi{OC@3H-nDvD@exa+D_&YC;qC22lnskDQ zGiTRu!30b7*)2+I$m<|&u1J#Iqt(KbUir0s+OdYRR=nGQJFpmAE}oK`Dv_8Af>8f= z`8Y?=TZaKM9EzF#TRzqlIXj@>Nzg7YojY3okkdZu%k2L8ObwQsoAEQ^EI|{UO59phe4GAdGQ^a zc%G$Tlko0|ba6GRb>j?m_nkwOs9iw%SGu`txM+TAj%Ty_sD}xI`_7Gdq0lFC+=A7W zf1MKd1qY6em(Y+!ldd42{6?mMmkN=V#oJ0B#-V?oQyeM8#p8VaM*zGy$Q(o$hOPshL?n=q$XrvG=IKtNYQ zYU{52A`C+;H1uBC7s1IB^>${Iz8Rv2!C@}&&R&jHmaz4Yf7`*dhZv;1cTC-C>G>bk zUq0t6itKY-$7=R{Kq3RqD}E^s4$VzRX;1P1$46?YIC1x!Xe-JLit9>=VEK?%@i+H7 z`#?FBs8L!l7;oQ_VCdx7a$Zdv8@J=K{&)I-L4YwdhJm<1iwX{P#^J5!Oxq!S`+pU{QoBgFoZ^1R`O<7ceE?lVDIqk zu7&d{qIs=r{D|=5YN;hoD&W3Tv}65oQ2b9}rD#Hn>nD)O%el%BD!M&Dve%>U^iH#F zglcelQVuKkfL+ML@P8_1z|xZ$(0K}&Mv|gAlQ=L|_@5&FuWmW`R Date: Tue, 17 Jan 2023 19:16:22 +0100 Subject: [PATCH 0004/2686] Update content.md Fix typo --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index 9762a34459c7..7a8acc40b03e 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -111,7 +111,7 @@ $ docker exec -w /etc/caddy $caddy_container_id caddy reload ### Docker Compose example -If you prefer to use `docker-compoose` to run your stack, here's a sample service definition. +If you prefer to use `docker-compose` to run your stack, here's a sample service definition. ```yaml version: "3.7" From 8683b0f174e67ce990bb5efc75281e9686e159a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jan 2023 12:08:49 -0800 Subject: [PATCH 0005/2686] Run update.sh --- archlinux/README.md | 4 ++-- bash/README.md | 2 +- clearlinux/README.md | 2 +- crate/README.md | 2 +- elixir/README.md | 12 ++++++------ erlang/README.md | 6 +++--- friendica/README.md | 6 +++--- ghost/README.md | 4 ++-- mysql/README.md | 8 ++++---- photon/README.md | 4 ++-- redis/README.md | 12 ++++++------ 11 files changed, 31 insertions(+), 31 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 571f17fc0cc2..b277483bbe03 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230108.0.116909`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9df32909737706d518425cc08d092074a4223314/Dockerfile.base) -- [`base-devel`, `base-devel-20230108.0.116909`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9df32909737706d518425cc08d092074a4223314/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230115.0.118859`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f7624de21a4eef6c4695832c8da04b7cafa29a28/Dockerfile.base) +- [`base-devel`, `base-devel-20230115.0.118859`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f7624de21a4eef6c4695832c8da04b7cafa29a28/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 517e650943dd..a32d249f9fa0 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230107`, `devel`, `devel-20230107-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/b4511227e84d5a41ae8134422418e208bc9fb3b5/devel/Dockerfile) +- [`devel-20230110`, `devel`, `devel-20230110-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/4f5e0a1e965211b264bfae36ed77b6701b28fd7a/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index 8c6e97fb3f8d..1ad3c8de3182 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/cf0b677798f83a0d241f6c3c32e8a6e96e008049/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4b176ef9a0f34cab866035286830a2fad0139b0f/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 3b3d78d4c7f0..18c7236e0300 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.2`, `5.1`, `latest`](https://github.com/crate/docker-crate/blob/88e4f9a14bef02c996c5b657633ef78e05274418/Dockerfile) +- [`5.1.3`, `5.1`, `latest`](https://github.com/crate/docker-crate/blob/443d1748b19f6135209ea0c86d7dd13effcfae75/Dockerfile) - [`5.0.3`, `5.0`](https://github.com/crate/docker-crate/blob/0b872eae2e0300879907405a8177be4418fe2a15/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/elixir/README.md b/elixir/README.md index f4029a6a8aac..35fc78e8780f 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.14.2`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/e9f961e5daf4b9b9dd85798e020c0a69c0425804/1.14/Dockerfile) -- [`1.14.2-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/e9f961e5daf4b9b9dd85798e020c0a69c0425804/1.14/slim/Dockerfile) -- [`1.14.2-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/e9f961e5daf4b9b9dd85798e020c0a69c0425804/1.14/alpine/Dockerfile) -- [`1.14.2-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/145f51ac30dab13ebdecf75dc82bef754ed617d5/1.14/otp-24/Dockerfile) -- [`1.14.2-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/145f51ac30dab13ebdecf75dc82bef754ed617d5/1.14/otp-24-alpine/Dockerfile) -- [`1.14.2-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/145f51ac30dab13ebdecf75dc82bef754ed617d5/1.14/otp-24-slim/Dockerfile) +- [`1.14.3`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/Dockerfile) +- [`1.14.3-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/slim/Dockerfile) +- [`1.14.3-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/alpine/Dockerfile) +- [`1.14.3-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24/Dockerfile) +- [`1.14.3-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24-alpine/Dockerfile) +- [`1.14.3-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24-slim/Dockerfile) - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 049d3f494e3d..61a32a5a0652 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,9 +27,9 @@ WARNING: - [`25.2.0.0`, `25.2.0`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/Dockerfile) - [`25.2.0.0-slim`, `25.2.0-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/slim/Dockerfile) - [`25.2.0.0-alpine`, `25.2.0-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/alpine/Dockerfile) -- [`24.3.4.6`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/ae880ebdea91a9a7ce87634f8750526d3ee3a851/24/Dockerfile) -- [`24.3.4.6-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/ae880ebdea91a9a7ce87634f8750526d3ee3a851/24/slim/Dockerfile) -- [`24.3.4.6-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ae880ebdea91a9a7ce87634f8750526d3ee3a851/24/alpine/Dockerfile) +- [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) +- [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) +- [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/alpine/Dockerfile) - [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/Dockerfile) - [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/slim/Dockerfile) - [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/alpine/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 5fd47a833f4d..52b89f06d65d 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2022.12-apache`, `apache`, `stable-apache`, `2022.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2022.12/apache/Dockerfile) -- [`2022.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2022.12/fpm/Dockerfile) -- [`2022.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2022.12/fpm-alpine/Dockerfile) +- [`2023.01-apache`, `apache`, `stable-apache`, `2023.01`, `latest`, `stable`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/apache/Dockerfile) +- [`2023.01-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/fpm/Dockerfile) +- [`2023.01-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/fpm-alpine/Dockerfile) - [`2023.03-dev-apache`, `dev-apache`, `2023.03-dev`, `dev`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/apache/Dockerfile) - [`2023.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/fpm/Dockerfile) - [`2023.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/fpm-alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 6f6462ba5504..78d0af31c935 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.30.0`, `5.30`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6b51b1413dc7303993dec2200532cf1ff9d14cf0/5/debian/Dockerfile) -- [`5.30.0-alpine`, `5.30-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6b51b1413dc7303993dec2200532cf1ff9d14cf0/5/alpine/Dockerfile) +- [`5.30.1`, `5.30`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a9fb573779ed7fc5ad7a2480f1eccaa80fa68518/5/debian/Dockerfile) +- [`5.30.1-alpine`, `5.30-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a9fb573779ed7fc5ad7a2480f1eccaa80fa68518/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index e67f93378d89..f03234f42973 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.31`, `8.0`, `8`, `latest`, `8.0.31-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/e0d43b2a29867c5b7d5c01a8fea30a086861df2b/8.0/Dockerfile.oracle) -- [`8.0.31-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/e0d43b2a29867c5b7d5c01a8fea30a086861df2b/8.0/Dockerfile.debian) -- [`5.7.40`, `5.7`, `5`, `5.7.40-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/e0d43b2a29867c5b7d5c01a8fea30a086861df2b/5.7/Dockerfile.oracle) -- [`5.7.40-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/e0d43b2a29867c5b7d5c01a8fea30a086861df2b/5.7/Dockerfile.debian) +- [`8.0.32`, `8.0`, `8`, `latest`, `8.0.32-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/b3dc453ce1a149ad698e29715d818cf042605163/8.0/Dockerfile.oracle) +- [`8.0.32-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/b3dc453ce1a149ad698e29715d818cf042605163/8.0/Dockerfile.debian) +- [`5.7.41`, `5.7`, `5`, `5.7.41-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/77d590d7d141caa3280ff2d838f70c6581a9d704/5.7/Dockerfile.oracle) +- [`5.7.41-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/77d590d7d141caa3280ff2d838f70c6581a9d704/5.7/Dockerfile.debian) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index eadcc028bf62..95fc62913086 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0`, `4.0-20230109`, `latest`](https://github.com/vmware/photon-docker-image/blob/e68ca5632dc2024988b06919cb9d38701331e0e5/docker/Dockerfile) -- [`3.0`, `3.0-20221224`](https://github.com/vmware/photon-docker-image/blob/7c169ad02494a1007e048757a55fb6f4f704449f/docker/Dockerfile) +- [`4.0`, `4.0-20230114`, `latest`](https://github.com/vmware/photon-docker-image/blob/54f4923365597c2fef4456667f8ad2ac51d15ec9/docker/Dockerfile) +- [`3.0`, `3.0-20230114`](https://github.com/vmware/photon-docker-image/blob/ef84a418b533fbb49cb811909076ce3091ee8580/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index b5511e0df734..0af426729a99 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.7`, `7.0`, `7`, `latest`, `7.0.7-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/fba559d5d2ac21c7c07e0bfeba6c29cceb346689/7.0/Dockerfile) -- [`7.0.7-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.7-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/fba559d5d2ac21c7c07e0bfeba6c29cceb346689/7.0/alpine/Dockerfile) -- [`6.2.8`, `6.2`, `6`, `6.2.8-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/e85942db00480a10a51be0971acd4b849223132d/6.2/Dockerfile) -- [`6.2.8-alpine`, `6.2-alpine`, `6-alpine`, `6.2.8-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/e85942db00480a10a51be0971acd4b849223132d/6.2/alpine/Dockerfile) -- [`6.0.16`, `6.0`, `6.0.16-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/0f2bb676ab5153905089537230a732a77d26e438/6.0/Dockerfile) -- [`6.0.16-alpine`, `6.0-alpine`, `6.0.16-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/268eb1aee47ca9c7dc8913b4e8007a2c7391f5b6/6.0/alpine/Dockerfile) +- [`7.0.8`, `7.0`, `7`, `latest`, `7.0.8-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/787f47c4bda6943e29d85fa45e080bd55b2c08fa/7.0/Dockerfile) +- [`7.0.8-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.8-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/787f47c4bda6943e29d85fa45e080bd55b2c08fa/7.0/alpine/Dockerfile) +- [`6.2.10`, `6.2`, `6`, `6.2.10-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/8b463859e24cfeea54e7a323e530f254e74075f6/6.2/Dockerfile) +- [`6.2.10-alpine`, `6.2-alpine`, `6-alpine`, `6.2.10-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/8b463859e24cfeea54e7a323e530f254e74075f6/6.2/alpine/Dockerfile) +- [`6.0.17`, `6.0`, `6.0.17-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/e608c4a20201d43672d6f045d4fc4c523e0473ad/6.0/Dockerfile) +- [`6.0.17-alpine`, `6.0-alpine`, `6.0.17-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e608c4a20201d43672d6f045d4fc4c523e0473ad/6.0/alpine/Dockerfile) # Quick reference (cont.) From dbc8989a94f3e60d1accf28288524d90a6adf256 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jan 2023 13:16:19 -0800 Subject: [PATCH 0006/2686] Run update.sh --- caddy/README.md | 2 +- matomo/README.md | 6 ++-- nextcloud/README.md | 12 +++---- oraclelinux/README.md | 12 +++---- python/README.md | 84 +++++++++++++++++++++---------------------- rabbitmq/README.md | 16 ++++----- 6 files changed, 66 insertions(+), 66 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 65b8c9ddb182..ef437f7b9bd2 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -181,7 +181,7 @@ $ docker exec -w /etc/caddy $caddy_container_id caddy reload ### Docker Compose example -If you prefer to use `docker-compoose` to run your stack, here's a sample service definition. +If you prefer to use `docker-compose` to run your stack, here's a sample service definition. ```yaml version: "3.7" diff --git a/matomo/README.md b/matomo/README.md index 8a995a71052e..eae5cf80b903 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.13.0-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.0`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/278f4cf9d5c53fecef5e102e75367c2159f671f8/apache/Dockerfile) -- [`4.13.0-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/278f4cf9d5c53fecef5e102e75367c2159f671f8/fpm/Dockerfile) -- [`4.13.0-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/278f4cf9d5c53fecef5e102e75367c2159f671f8/fpm-alpine/Dockerfile) +- [`4.13.1-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.1`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/apache/Dockerfile) +- [`4.13.1-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/fpm/Dockerfile) +- [`4.13.1-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 71e0d37a71ce..ae4bdebe20b7 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -27,12 +27,12 @@ WARNING: - [`23.0.12-apache`, `23.0-apache`, `23-apache`, `23.0.12`, `23.0`, `23`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/apache/Dockerfile) - [`23.0.12-fpm`, `23.0-fpm`, `23-fpm`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/fpm/Dockerfile) - [`23.0.12-fpm-alpine`, `23.0-fpm-alpine`, `23-fpm-alpine`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/fpm-alpine/Dockerfile) -- [`24.0.8-apache`, `24.0-apache`, `24-apache`, `24.0.8`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/24/apache/Dockerfile) -- [`24.0.8-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/24/fpm/Dockerfile) -- [`24.0.8-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/24/fpm-alpine/Dockerfile) -- [`25.0.2-apache`, `25.0-apache`, `25-apache`, `apache`, `stable-apache`, `production-apache`, `25.0.2`, `25.0`, `25`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/25/apache/Dockerfile) -- [`25.0.2-fpm`, `25.0-fpm`, `25-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/25/fpm/Dockerfile) -- [`25.0.2-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/25/fpm-alpine/Dockerfile) +- [`24.0.9-apache`, `24.0-apache`, `24-apache`, `24.0.9`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/apache/Dockerfile) +- [`24.0.9-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/fpm/Dockerfile) +- [`24.0.9-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/fpm-alpine/Dockerfile) +- [`25.0.3-apache`, `25.0-apache`, `25-apache`, `apache`, `stable-apache`, `production-apache`, `25.0.3`, `25.0`, `25`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/apache/Dockerfile) +- [`25.0.3-fpm`, `25.0-fpm`, `25-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/fpm/Dockerfile) +- [`25.0.3-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 068c265fb465..3633888622bb 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/4205dc2e387076df43d84c44bd2617d8d0770873/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 32c3c09499fa..bca1e13978a8 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/buster/Dockerfile) -- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/buster/Dockerfile) +- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/alpine3.16/Dockerfile) - [`3.12.0a4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/bullseye/Dockerfile) -- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/slim-bullseye/Dockerfile) -- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/buster/Dockerfile) -- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/slim-buster/Dockerfile) -- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/alpine3.17/Dockerfile) -- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/alpine3.16/Dockerfile) +- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/bullseye/Dockerfile) +- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/slim-bullseye/Dockerfile) +- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/buster/Dockerfile) +- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/slim-buster/Dockerfile) +- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/alpine3.17/Dockerfile) +- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/alpine3.16/Dockerfile) - [`3.11.1-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/bullseye/Dockerfile) -- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/slim-bullseye/Dockerfile) -- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/buster/Dockerfile) -- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/slim-buster/Dockerfile) -- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/alpine3.17/Dockerfile) -- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/alpine3.16/Dockerfile) +- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/bullseye/Dockerfile) +- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/slim-bullseye/Dockerfile) +- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/buster/Dockerfile) +- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/slim-buster/Dockerfile) +- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/alpine3.17/Dockerfile) +- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/alpine3.16/Dockerfile) - [`3.10.9-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/alpine3.16/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a4`, `3.12-rc`: - - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/bullseye/Dockerfile) - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a4-windowsservercore`, `3.12-rc-windowsservercore`: - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.1`, `3.11`, `3`, `latest`: - - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/bullseye/Dockerfile) + - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/bullseye/Dockerfile) - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.1-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.9`, `3.10`: - - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/bullseye/Dockerfile) + - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/bullseye/Dockerfile) - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.9-windowsservercore`, `3.10-windowsservercore`: - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/c65e0664a7a18ca566a744c6921eb66539337b0c/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/f5b7b5a332bd4d2c1518325ab9647b09bf07412f/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/9dacd07bff4576c2ae58c8d9302c6a43560f723d/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 961c858707be..7d244b1591bc 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.6`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/a74a786356f12d59b2b19cfe0b1c9d1c78bb6f9c/3.11/ubuntu/Dockerfile) -- [`3.11.6-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.6-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/a74a786356f12d59b2b19cfe0b1c9d1c78bb6f9c/3.11/alpine/Dockerfile) -- [`3.11.6-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.13`, `3.10`](https://github.com/docker-library/rabbitmq/blob/5d66324218c46b8e2f80487086972d24ccfae9bb/3.10/ubuntu/Dockerfile) -- [`3.10.13-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/5d66324218c46b8e2f80487086972d24ccfae9bb/3.10/alpine/Dockerfile) -- [`3.10.13-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) +- [`3.11.7`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/70e0e165e3b69f52f7db4e9eab256550400572f2/3.11/ubuntu/Dockerfile) +- [`3.11.7-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) +- [`3.11.7-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/70e0e165e3b69f52f7db4e9eab256550400572f2/3.11/alpine/Dockerfile) +- [`3.11.7-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) +- [`3.10.14`, `3.10`](https://github.com/docker-library/rabbitmq/blob/4da43c25d8b01a3c17ae3000f2389d1e8d1c2bcb/3.10/ubuntu/Dockerfile) +- [`3.10.14-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) +- [`3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/4da43c25d8b01a3c17ae3000f2389d1e8d1c2bcb/3.10/alpine/Dockerfile) +- [`3.10.14-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) - [`3.9.27`, `3.9`](https://github.com/docker-library/rabbitmq/blob/878cc31eaf717b98193d8a45113720ecd667a486/3.9/ubuntu/Dockerfile) - [`3.9.27-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) - [`3.9.27-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/878cc31eaf717b98193d8a45113720ecd667a486/3.9/alpine/Dockerfile) From 3371b3ca49e7aacd1286dadca10f40cd3340f745 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jan 2023 18:08:49 -0800 Subject: [PATCH 0007/2686] Run update.sh --- httpd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index 2c3e6dea9415..6721abd61911 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.54`, `2.4`, `2`, `latest`, `2.4.54-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/f3b7fd9c8ef59d1ad46c8b2a27df3e02d822834f/2.4/Dockerfile) -- [`2.4.54-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.54-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/a8768519be284075c5cafd0ed6645d3bedaad6b1/2.4/alpine/Dockerfile) +- [`2.4.55`, `2.4`, `2`, `latest`, `2.4.55-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/8bee4e1d12ad36ee34a40ae82746bc04a858e220/2.4/Dockerfile) +- [`2.4.55-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.55-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/8bee4e1d12ad36ee34a40ae82746bc04a858e220/2.4/alpine/Dockerfile) # Quick reference (cont.) From 2e0bbef62fa46178e51e3a8b5ebcf7b046838030 Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Wed, 18 Jan 2023 17:27:25 +0100 Subject: [PATCH 0008/2686] update emqx docs --- emqx/content.md | 135 ++++-------------------------------------------- 1 file changed, 11 insertions(+), 124 deletions(-) diff --git a/emqx/content.md b/emqx/content.md index 5c1f4b0a9541..97327c0cf034 100644 --- a/emqx/content.md +++ b/emqx/content.md @@ -30,7 +30,7 @@ The EMQX broker runs as Linux user `emqx` in the docker container. ### Configuration -Use the environment variable to configure the EMQX docker container. +All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. By default, the environment variables with `EMQX_` prefix are mapped to key-value pairs in configuration files. @@ -52,142 +52,27 @@ If `HOCON_ENV_OVERRIDE_PREFIX=DEV_` is set: ```bash DEV_LISTENER__SSL__EXTERNAL__ACCEPTORS <--> listener.ssl.external.acceptors DEV_MQTT__MAX_PACKET_SIZE <--> mqtt.max_packet_size +DEV_LISTENERS__TCP__DEFAULT__BIND <--> listeners.tcp.default.bind ``` -Non mapped environment variables: +For example, set MQTT TCP port to 1883 -```bash -EMQX_NAME -EMQX_HOST +```console +$ docker run -d --name emqx -e DEV_LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 %%IMAGE%%:latest ``` -These environment variables will ignore for configuration file. - -#### EMQX Configuration +Please read more about EMQX configuration in the [official documentation](https://www.emqx.io/docs/en/v5.0/admin/cfg.html). -> NOTE: All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. The following list is just an example, not a complete configuration. +#### EMQX node name configuration | Options | Default | Mapped | Description | |-------------|----------------|--------|----------------------------| | `EMQX_NAME` | container name | none | EMQX node short name | | `EMQX_HOST` | container IP | none | EMQX node host, IP or FQDN | -The list is incomplete and may be changed with [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) and plugin configuration files. But the mapping rule is similar. - -If set `EMQX_NAME` and `EMQX_HOST`, and unset `EMQX_NODE_NAME`, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. - -For example, set MQTT TCP port to 1883 - -```console -$ docker run -d --name emqx -e EMQX__LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 %%IMAGE%%:latest -``` - -#### EMQX Loaded Modules Configuration - -| Options | Default | Description | -|-----------------------|-------------------|-----------------------------| -| `EMQX_LOADED_MODULES` | see content below | default EMQX loaded modules | - -Default environment variable `EMQX_LOADED_MODULES`, including - -- `emqx_mod_presence` - -```bash -# The default EMQX_LOADED_MODULES env -EMQX_LOADED_MODULES="emqx_mod_presence" -``` - -For example, set `EMQX_LOADED_MODULES=emqx_mod_delayed,emqx_mod_rewrite` to load these two modules. - -You can use comma, space or other separator that you want. - -All the modules defined in env `EMQX_LOADED_MODULES` will be loaded. - -```bash -EMQX_LOADED_MODULES="emqx_mod_delayed,emqx_mod_rewrite" -EMQX_LOADED_MODULES="emqx_mod_delayed emqx_mod_rewrite" -EMQX_LOADED_MODULES="emqx_mod_delayed | emqx_mod_rewrite" -``` - -#### EMQX Loaded Plugins Configuration - -| Options | Default | Description | -|-----------------------|-------------------|-----------------------------| -| `EMQX_LOADED_PLUGINS` | see content below | default EMQX loaded plugins | - -Default environment variable `EMQX_LOADED_PLUGINS`, including - -- `emqx_recon` -- `emqx_retainer` -- `emqx_rule_engine` -- `emqx_management` -- `emqx_dashboard` - -```bash -# The default EMQX_LOADED_PLUGINS env -EMQX_LOADED_PLUGINS="emqx_recon,emqx_retainer,emqx_management,emqx_dashboard" -``` +These environment variables are used during container startup phase only in [docker-entrypoint.sh](./docker-entrypoint.sh). -For example, set `EMQX_LOADED_PLUGINS= emqx_retainer,emqx_rule_engine` to load these two plugins. - -You can use comma, space or other separator that you want. - -All the plugins defined in `EMQX_LOADED_PLUGINS` will be loaded. - -```bash -EMQX_LOADED_PLUGINS="emqx_retainer,emqx_rule_engine" -EMQX_LOADED_PLUGINS="emqx_retainer emqx_rule_engine" -EMQX_LOADED_PLUGINS="emqx_retainer | emqx_rule_engine" -``` - -#### EMQX Plugins Configuration - -The environment variables which with `EMQX_` prefix are mapped to all EMQX plugins' configuration file, `.` get replaced by `__`. - -Example: - -```bash -EMQX_RETAINER__STORAGE_TYPE <--> retainer.storage_type -EMQX_RETAINER__MAX_PAYLOAD_SIZE <--> retainer.max_payload_size -``` - -Don't worry about where to find the configuration file of EMQX plugins, this docker image will find and configure them automatically using some magic. - -All EMQX plugins can be configured this way, following the environment variables mapping rule above. - -Assume you are using Redis auth plugin, for example: - -```bash -#EMQX_RETAINER__STORAGE_TYPE = "ram" -#EMQX_RETAINER.MAX_PAYLOAD_SIZE = 1MB - -docker run -d --name emqx -p 18083:18083 -p 1883:1883 \ - -e EMQX_LISTENERS__TCP__DEFAULT=1883 \ - -e EMQX_LOADED_PLUGINS="emqx_retainer" \ - -e EMQX_RETAINER__STORAGE_TYPE = "ram" \ - -e EMQX_RETAINER__MAX_PAYLOAD_SIZE = 1MB \ - %%IMAGE%%:latest -``` - -For numbered configuration options where the number is next to a `.` such as: - -- backend.redis.pool1.server -- backend.redis.hook.message.publish.1 - -You can configure an arbitrary number of them as long as each has a unique number for its own configuration option: - -```bash -docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \ - -e EMQX_BACKEND_REDIS_POOL1__SERVER=127.0.0.1:6379 \ - [...] - -e EMQX_BACKEND__REDIS__POOL5__SERVER=127.0.0.5:6379 \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__1='{"topic": "persistent/topic1", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__2='{"topic": "persistent/topic2", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__3='{"topic": "persistent/topic3", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - [...] - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__13='{"topic": "persistent/topic13", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - %%IMAGE%%:latest -``` +If `EMQX_NAME` and `EMQX_HOST` are set, and `EMQX_NODE_NAME` is not set, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. Otherwise `EMQX_NODE_NAME` is taken verbatim. ### Cluster @@ -278,6 +163,8 @@ services: - vol-emqx-log:/opt/emqx/log ``` +Note that `/opt/emqx/etc` contains some essential configuration files. If you want to mount a host directory in the container to persist configuration overrides, you will need to bootstrap it with [default configuration files](https://github.com/emqx/emqx/tree/master/apps/emqx/etc). + ### Kernel Tuning Under Linux host machine, the easiest way is [Tuning guide](https://www.emqx.io/docs/en/latest/deploy/tune.html). From a091f6f3a05c5f21c714bb0a28565c9ac2bc79c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Jan 2023 11:08:47 -0800 Subject: [PATCH 0009/2686] Run update.sh --- zookeeper/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zookeeper/README.md b/zookeeper/README.md index 0e92437ec62e..90683e423433 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.9`, `3.5`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.5.9/Dockerfile) -- [`3.5.9-temurin`, `3.5-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.5.9/Dockerfile) -- [`3.6.3`, `3.6`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.6.3/Dockerfile) -- [`3.6.3-temurin`, `3.6-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.6.3/Dockerfile) -- [`3.7.1`, `3.7`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.7.1/Dockerfile) +- [`3.5.10`, `3.5`, `3.5.10-temurin`, `3.5-temurin`](https://github.com/31z4/zookeeper-docker/blob/80d975e5c07f2f1e981fd2d61c9e1dfc3f980b80/3.5.10/Dockerfile) +- [`3.5.9-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.5.9/Dockerfile) +- [`3.6.4`, `3.6`, `3.6.4-temurin`, `3.6-temurin`](https://github.com/31z4/zookeeper-docker/blob/80d975e5c07f2f1e981fd2d61c9e1dfc3f980b80/3.6.4/Dockerfile) +- [`3.6.3-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.6.3/Dockerfile) +- [`3.7.1`, `3.7`, `3.7.1-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.7.1/Dockerfile) - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) -- [`3.8.0`, `3.8`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.8.0/Dockerfile) +- [`3.8.0`, `3.8`, `3.8.0-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.8.0/Dockerfile) - [`3.8.0-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.8.0/Dockerfile) # Quick reference (cont.) From 9f618abaca1bff65ebed06d7ded77facfa6b92b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Jan 2023 12:08:47 -0800 Subject: [PATCH 0010/2686] Run update.sh --- amazoncorretto/README.md | 62 +++++++++--------- emqx/README.md | 135 ++++----------------------------------- sapmachine/README.md | 4 +- 3 files changed, 44 insertions(+), 157 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 7ec2862c3d75..0614d0d30786 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u352`, `8u352-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/al2/Dockerfile) -- [`8-al2022-RC`, `8u352-al2022-RC`, `8-al2022-jdk`, `8-al2022-RC-jre`, `8u352-al2022-RC-jre`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/al2022/Dockerfile) -- [`8-alpine3.13`, `8u352-alpine3.13`, `8-alpine3.13-full`, `8-alpine3.13-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/alpine/3.13/Dockerfile) -- [`8-alpine3.13-jre`, `8u352-alpine3.13-jre`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jre/alpine/3.13/Dockerfile) -- [`8-alpine3.14`, `8u352-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u352-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u352-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u352-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u352-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`, `8-alpine`, `8u352-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u352-alpine3.16-jre`, `8-alpine-jre`, `8u352-alpine-jre`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/8/jre/alpine/3.16/Dockerfile) -- [`11`, `11.0.17`, `11.0.17-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/al2/Dockerfile) -- [`11-al2022-RC`, `11.0.17-al2022-RC`, `11-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/al2022/Dockerfile) -- [`11-al2022-RC-headless`, `11.0.17-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/headless/al2022/Dockerfile) -- [`11-al2022-RC-headful`, `11.0.17-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/headful/al2022/Dockerfile) -- [`11-alpine3.13`, `11.0.17-alpine3.13`, `11-alpine3.13-full`, `11-alpine3.13-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/alpine/3.13/Dockerfile) -- [`11-alpine3.14`, `11.0.17-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.17-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.17-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`, `11-alpine`, `11.0.17-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/11/jdk/alpine/3.16/Dockerfile) -- [`17`, `17.0.5`, `17.0.5-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/al2/Dockerfile) -- [`17-al2022-RC`, `17.0.5-al2022-RC`, `17-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/al2022/Dockerfile) -- [`17-al2022-RC-headless`, `17.0.5-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/headless/al2022/Dockerfile) -- [`17-al2022-RC-headful`, `17.0.5-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/headful/al2022/Dockerfile) -- [`17-alpine3.13`, `17.0.5-alpine3.13`, `17-alpine3.13-full`, `17-alpine3.13-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/alpine/3.13/Dockerfile) -- [`17-alpine3.14`, `17.0.5-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.5-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.5-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`, `17-alpine`, `17.0.5-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/17/jdk/alpine/3.16/Dockerfile) -- [`19`, `19.0.1`, `19.0.1-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/19/jdk/al2/Dockerfile) -- [`19-alpine3.13`, `19.0.1-alpine3.13`, `19-alpine3.13-full`, `19-alpine3.13-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/19/jdk/alpine/3.13/Dockerfile) -- [`19-alpine3.14`, `19.0.1-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.1-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.1-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`, `19-alpine`, `19.0.1-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7996710c56ef95dba20bb0d5784b0e941dfdaa5b/19/jdk/alpine/3.16/Dockerfile) +- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/al2/Dockerfile) +- [`8-al2022-RC`, `8u362-al2022-RC`, `8-al2022-jdk`, `8-al2022-RC-jre`, `8u362-al2022-RC-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/al2022/Dockerfile) +- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/al2/Dockerfile) +- [`11-al2022-RC`, `11.0.18-al2022-RC`, `11-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/al2022/Dockerfile) +- [`11-al2022-RC-headless`, `11.0.18-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/headless/al2022/Dockerfile) +- [`11-al2022-RC-headful`, `11.0.18-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/headful/al2022/Dockerfile) +- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/al2/Dockerfile) +- [`17-al2022-RC`, `17.0.6-al2022-RC`, `17-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/al2022/Dockerfile) +- [`17-al2022-RC-headless`, `17.0.6-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/headless/al2022/Dockerfile) +- [`17-al2022-RC-headful`, `17.0.6-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/headful/al2022/Dockerfile) +- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.17/Dockerfile) +- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/al2/Dockerfile) +- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.14/Dockerfile) +- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.15/Dockerfile) +- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.16/Dockerfile) +- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 19d5d5deb3cd..ec1d08452d8c 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -79,7 +79,7 @@ The EMQX broker runs as Linux user `emqx` in the docker container. ### Configuration -Use the environment variable to configure the EMQX docker container. +All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. By default, the environment variables with `EMQX_` prefix are mapped to key-value pairs in configuration files. @@ -101,142 +101,27 @@ If `HOCON_ENV_OVERRIDE_PREFIX=DEV_` is set: ```bash DEV_LISTENER__SSL__EXTERNAL__ACCEPTORS <--> listener.ssl.external.acceptors DEV_MQTT__MAX_PACKET_SIZE <--> mqtt.max_packet_size +DEV_LISTENERS__TCP__DEFAULT__BIND <--> listeners.tcp.default.bind ``` -Non mapped environment variables: +For example, set MQTT TCP port to 1883 -```bash -EMQX_NAME -EMQX_HOST +```console +$ docker run -d --name emqx -e DEV_LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 emqx:latest ``` -These environment variables will ignore for configuration file. - -#### EMQX Configuration +Please read more about EMQX configuration in the [official documentation](https://www.emqx.io/docs/en/v5.0/admin/cfg.html). -> NOTE: All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. The following list is just an example, not a complete configuration. +#### EMQX node name configuration | Options | Default | Mapped | Description | |-------------|----------------|--------|----------------------------| | `EMQX_NAME` | container name | none | EMQX node short name | | `EMQX_HOST` | container IP | none | EMQX node host, IP or FQDN | -The list is incomplete and may be changed with [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) and plugin configuration files. But the mapping rule is similar. - -If set `EMQX_NAME` and `EMQX_HOST`, and unset `EMQX_NODE_NAME`, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. - -For example, set MQTT TCP port to 1883 - -```console -$ docker run -d --name emqx -e EMQX__LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 emqx:latest -``` - -#### EMQX Loaded Modules Configuration - -| Options | Default | Description | -|-----------------------|-------------------|-----------------------------| -| `EMQX_LOADED_MODULES` | see content below | default EMQX loaded modules | - -Default environment variable `EMQX_LOADED_MODULES`, including - -- `emqx_mod_presence` - -```bash -# The default EMQX_LOADED_MODULES env -EMQX_LOADED_MODULES="emqx_mod_presence" -``` - -For example, set `EMQX_LOADED_MODULES=emqx_mod_delayed,emqx_mod_rewrite` to load these two modules. - -You can use comma, space or other separator that you want. - -All the modules defined in env `EMQX_LOADED_MODULES` will be loaded. - -```bash -EMQX_LOADED_MODULES="emqx_mod_delayed,emqx_mod_rewrite" -EMQX_LOADED_MODULES="emqx_mod_delayed emqx_mod_rewrite" -EMQX_LOADED_MODULES="emqx_mod_delayed | emqx_mod_rewrite" -``` - -#### EMQX Loaded Plugins Configuration - -| Options | Default | Description | -|-----------------------|-------------------|-----------------------------| -| `EMQX_LOADED_PLUGINS` | see content below | default EMQX loaded plugins | - -Default environment variable `EMQX_LOADED_PLUGINS`, including - -- `emqx_recon` -- `emqx_retainer` -- `emqx_rule_engine` -- `emqx_management` -- `emqx_dashboard` - -```bash -# The default EMQX_LOADED_PLUGINS env -EMQX_LOADED_PLUGINS="emqx_recon,emqx_retainer,emqx_management,emqx_dashboard" -``` +These environment variables are used during container startup phase only in [docker-entrypoint.sh](./docker-entrypoint.sh). -For example, set `EMQX_LOADED_PLUGINS= emqx_retainer,emqx_rule_engine` to load these two plugins. - -You can use comma, space or other separator that you want. - -All the plugins defined in `EMQX_LOADED_PLUGINS` will be loaded. - -```bash -EMQX_LOADED_PLUGINS="emqx_retainer,emqx_rule_engine" -EMQX_LOADED_PLUGINS="emqx_retainer emqx_rule_engine" -EMQX_LOADED_PLUGINS="emqx_retainer | emqx_rule_engine" -``` - -#### EMQX Plugins Configuration - -The environment variables which with `EMQX_` prefix are mapped to all EMQX plugins' configuration file, `.` get replaced by `__`. - -Example: - -```bash -EMQX_RETAINER__STORAGE_TYPE <--> retainer.storage_type -EMQX_RETAINER__MAX_PAYLOAD_SIZE <--> retainer.max_payload_size -``` - -Don't worry about where to find the configuration file of EMQX plugins, this docker image will find and configure them automatically using some magic. - -All EMQX plugins can be configured this way, following the environment variables mapping rule above. - -Assume you are using Redis auth plugin, for example: - -```bash -#EMQX_RETAINER__STORAGE_TYPE = "ram" -#EMQX_RETAINER.MAX_PAYLOAD_SIZE = 1MB - -docker run -d --name emqx -p 18083:18083 -p 1883:1883 \ - -e EMQX_LISTENERS__TCP__DEFAULT=1883 \ - -e EMQX_LOADED_PLUGINS="emqx_retainer" \ - -e EMQX_RETAINER__STORAGE_TYPE = "ram" \ - -e EMQX_RETAINER__MAX_PAYLOAD_SIZE = 1MB \ - emqx:latest -``` - -For numbered configuration options where the number is next to a `.` such as: - -- backend.redis.pool1.server -- backend.redis.hook.message.publish.1 - -You can configure an arbitrary number of them as long as each has a unique number for its own configuration option: - -```bash -docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \ - -e EMQX_BACKEND_REDIS_POOL1__SERVER=127.0.0.1:6379 \ - [...] - -e EMQX_BACKEND__REDIS__POOL5__SERVER=127.0.0.5:6379 \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__1='{"topic": "persistent/topic1", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__2='{"topic": "persistent/topic2", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__3='{"topic": "persistent/topic3", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - [...] - -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__13='{"topic": "persistent/topic13", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \ - emqx:latest -``` +If `EMQX_NAME` and `EMQX_HOST` are set, and `EMQX_NODE_NAME` is not set, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. Otherwise `EMQX_NODE_NAME` is taken verbatim. ### Cluster @@ -327,6 +212,8 @@ services: - vol-emqx-log:/opt/emqx/log ``` +Note that `/opt/emqx/etc` contains some essential configuration files. If you want to mount a host directory in the container to persist configuration overrides, you will need to bootstrap it with [default configuration files](https://github.com/emqx/emqx/tree/master/apps/emqx/etc). + ### Kernel Tuning Under Linux host machine, the easiest way is [Tuning guide](https://www.emqx.io/docs/en/latest/deploy/tune.html). diff --git a/sapmachine/README.md b/sapmachine/README.md index bedcb849a74b..69b224ef2ebd 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11`, `11.0.17`](https://github.com/SAP/SapMachine-infrastructure/blob/936dab0baa76e5db609e4c0dffc632dc4f42eca8/dockerfiles/official/11/Dockerfile) +- [`11`, `11.0.18`](https://github.com/SAP/SapMachine-infrastructure/blob/1d9a8aa21f4cb661656e617b0133b7d154c3992b/dockerfiles/official/11/Dockerfile) - [`17`, `17.0.5`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/fb4f1fe1d5cb453891a95bfdec43c0196a09e324/dockerfiles/official/17/Dockerfile) -- [`19`, `19.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/e2320c79758f23b60d17726185c9ede2a5622f54/dockerfiles/official/19/Dockerfile) +- [`19`, `19.0.2`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/c515da6c71d27d6bbf8fca4c0e782a50e9f8319c/dockerfiles/official/19/Dockerfile) # Quick reference (cont.) From 51e2146024315c253b5e4ea88fff4eff28d07440 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Jan 2023 14:08:48 -0800 Subject: [PATCH 0011/2686] Run update.sh --- rabbitmq/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7d244b1591bc..1e206e057fc7 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.7`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/70e0e165e3b69f52f7db4e9eab256550400572f2/3.11/ubuntu/Dockerfile) +- [`3.11.7`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/951163e34b4d4fd5f033ebcd6eebeb4c46f53db9/3.11/ubuntu/Dockerfile) - [`3.11.7-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.7-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/70e0e165e3b69f52f7db4e9eab256550400572f2/3.11/alpine/Dockerfile) +- [`3.11.7-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/951163e34b4d4fd5f033ebcd6eebeb4c46f53db9/3.11/alpine/Dockerfile) - [`3.11.7-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.14`, `3.10`](https://github.com/docker-library/rabbitmq/blob/4da43c25d8b01a3c17ae3000f2389d1e8d1c2bcb/3.10/ubuntu/Dockerfile) +- [`3.10.14`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2667503316c08b40e10b0c43d54d71bfe5f194b8/3.10/ubuntu/Dockerfile) - [`3.10.14-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/4da43c25d8b01a3c17ae3000f2389d1e8d1c2bcb/3.10/alpine/Dockerfile) +- [`3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2667503316c08b40e10b0c43d54d71bfe5f194b8/3.10/alpine/Dockerfile) - [`3.10.14-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.27`, `3.9`](https://github.com/docker-library/rabbitmq/blob/878cc31eaf717b98193d8a45113720ecd667a486/3.9/ubuntu/Dockerfile) +- [`3.9.27`, `3.9`](https://github.com/docker-library/rabbitmq/blob/83e0a9443ab2b30c3121acd2d6ae0190962d7ba5/3.9/ubuntu/Dockerfile) - [`3.9.27-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.27-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/878cc31eaf717b98193d8a45113720ecd667a486/3.9/alpine/Dockerfile) +- [`3.9.27-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/83e0a9443ab2b30c3121acd2d6ae0190962d7ba5/3.9/alpine/Dockerfile) - [`3.9.27-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 509d275e28cb6b0fb631a7e68c69890ee09e0111 Mon Sep 17 00:00:00 2001 From: Sumit Tomer Date: Wed, 18 Jan 2023 14:12:28 -0800 Subject: [PATCH 0012/2686] Update content.md Update the EOL dates for AL2 container images. --- amazonlinux/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/content.md b/amazonlinux/content.md index e71ac1c4486f..08d08e38edba 100644 --- a/amazonlinux/content.md +++ b/amazonlinux/content.md @@ -26,7 +26,7 @@ There are three major differences in Amazon Linux 2 from its predecessors: ## Is Amazon Linux 2 build an official LTS build? -Yes. Amazon Linux 2 is supported by AWS for five years after release (June 2018). +Yes. Amazon Linux 2 end of support date (End of Life, or EOL) has been extended by two years from 2023-06-30 to 2025-06-30 to provide customers with ample time to migrate to the next version. ## What packages are available in the Amazon Linux containers? From 285e7dcb19887fb6ff15789a1ce97a39c9127444 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Jan 2023 15:08:46 -0800 Subject: [PATCH 0013/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 22e03c32da20..b705c9a5d6d9 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -78,7 +78,7 @@ There are three major differences in Amazon Linux 2 from its predecessors: ## Is Amazon Linux 2 build an official LTS build? -Yes. Amazon Linux 2 is supported by AWS for five years after release (June 2018). +Yes. Amazon Linux 2 end of support date (End of Life, or EOL) has been extended by two years from 2023-06-30 to 2025-06-30 to provide customers with ample time to migrate to the next version. ## What packages are available in the Amazon Linux containers? From 2ba605d11149669983bcf6258fec66b631ff2273 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Jan 2023 10:14:29 -0800 Subject: [PATCH 0014/2686] Run update.sh --- sapmachine/README.md | 2 +- swift/README.md | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/sapmachine/README.md b/sapmachine/README.md index 69b224ef2ebd..21a21bb733ac 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`11`, `11.0.18`](https://github.com/SAP/SapMachine-infrastructure/blob/1d9a8aa21f4cb661656e617b0133b7d154c3992b/dockerfiles/official/11/Dockerfile) -- [`17`, `17.0.5`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/fb4f1fe1d5cb453891a95bfdec43c0196a09e324/dockerfiles/official/17/Dockerfile) +- [`17`, `17.0.6`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/8d5fd07f2e40428a2027de2abf78ac9be0e3bc9d/dockerfiles/official/17/Dockerfile) - [`19`, `19.0.2`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/c515da6c71d27d6bbf8fca4c0e782a50e9f8319c/dockerfiles/official/19/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index 20c25758d4a7..157485f9b08b 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.2`, `5.7`, `5.7.2-jammy`, `5.7-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/22.04/Dockerfile) -- [`5.7.2-slim`, `5.7-slim`, `5.7.2-jammy-slim`, `5.7-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/22.04/slim/Dockerfile) -- [`5.7.2-bionic`, `5.7-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/18.04/Dockerfile) -- [`5.7.2-bionic-slim`, `5.7-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/18.04/slim/Dockerfile) -- [`5.7.2-focal-slim`, `5.7-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/20.04/slim/Dockerfile) -- [`5.7.2-focal`, `5.7-focal`, `focal`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/ubuntu/20.04/Dockerfile) -- [`5.7.2-amazonlinux2`, `5.7-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/amazonlinux/2/Dockerfile) -- [`5.7.2-amazonlinux2-slim`, `5.7-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/amazonlinux/2/slim/Dockerfile) -- [`5.7.2-centos7`, `5.7-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/centos/7/Dockerfile) -- [`5.7.2-centos7-slim`, `5.7-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/59e3cc2532e57bb75b406bb9c589b62bd12edd5c/5.7/centos/7/slim/Dockerfile) +- [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) +- [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) +- [`5.7.3-bionic`, `5.7-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/Dockerfile) +- [`5.7.3-bionic-slim`, `5.7-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/slim/Dockerfile) +- [`5.7.3-focal-slim`, `5.7-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) +- [`5.7.3-focal`, `5.7-focal`, `focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) +- [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) +- [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) +- [`5.7.3-centos7`, `5.7-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) +- [`5.7.3-centos7-slim`, `5.7-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) - [`5.6.3`, `5.6`, `5.6.3-bionic`, `5.6-bionic`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/Dockerfile) - [`5.6.3-slim`, `5.6-slim`, `5.6.3-bionic-slim`, `5.6-bionic-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/slim/Dockerfile) - [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) From b6b993452f7ab807cbc542c6e9a2b74db673abc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Jan 2023 17:08:48 -0800 Subject: [PATCH 0015/2686] Run update.sh --- docker/README.md | 20 +++++++------- drupal/README.md | 68 ++++++++++++++++++++++++------------------------ julia/README.md | 34 ++++++++++++------------ php/README.md | 14 ++++++++++ tomcat/README.md | 30 ++++++++++----------- 5 files changed, 90 insertions(+), 76 deletions(-) diff --git a/docker/README.md b/docker/README.md index 8db5904ef2dd..c85a3f58b656 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.1-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/0997ca7ad1d7892324d84951d55192d5ef629bcc/23.0-rc/cli/Dockerfile) -- [`23.0.0-rc.1-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.1-dind-alpine3.17`, `23.0.0-rc.1`, `23.0-rc`, `rc`, `23.0.0-rc.1-alpine3.17`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/dind/Dockerfile) -- [`23.0.0-rc.1-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/dind-rootless/Dockerfile) -- [`23.0.0-rc.1-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) -- [`23.0.0-rc.1-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.0-rc.1-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`20.10.22-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.22-cli-alpine3.17`, `20.10.22`, `20.10`, `20`, `latest`, `20.10.22-alpine3.17`](https://github.com/docker-library/docker/blob/95414fb25c65f77412e44dac9949c12e73dc58dc/20.10/cli/Dockerfile) +- [`23.0.0-rc.2-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/6b2478f8067b8896a2597a658363dbd794412dc2/23.0-rc/cli/Dockerfile) +- [`23.0.0-rc.2-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.2-dind-alpine3.17`, `23.0.0-rc.2`, `23.0-rc`, `rc`, `23.0.0-rc.2-alpine3.17`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/dind/Dockerfile) +- [`23.0.0-rc.2-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/dind-rootless/Dockerfile) +- [`23.0.0-rc.2-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) +- [`23.0.0-rc.2-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.0-rc.2-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`20.10.22-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.22-cli-alpine3.17`, `20.10.22`, `20.10`, `20`, `latest`, `20.10.22-alpine3.17`](https://github.com/docker-library/docker/blob/03089085068a23c0c5c423331093640dfeecac63/20.10/cli/Dockerfile) - [`20.10.22-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.22-dind-alpine3.17`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/dind/Dockerfile) - [`20.10.22-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/dind-rootless/Dockerfile) - [`20.10.22-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `23.0.0-rc.1-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: - - [`23.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/023a45d6e2a9009fdf01da87499c6f9ca6e27bef/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- `23.0.0-rc.2-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: + - [`23.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-1809/Dockerfile) - `20.10.22-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`, `windowsservercore`: - [`20.10.22-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.22-windowsservercore-1809`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 949c0f62533d..6d5485b693d5 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,40 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.1-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.1-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.1-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.1-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.1-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.1`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.1-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.1-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.1-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.1-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.1-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.1-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.1-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.1-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.1-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.1-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.1-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.1-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.1-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.1-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.1-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.1-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.1-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.1-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.1-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.1-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.1-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.1-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.1-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.1-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/b3f06944e851a3fb63773b230c103c3966ce7414/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.1-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.1-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.1-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.1-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.1-apache`, `9.5-apache`, `9-apache`, `9.5.1`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.1-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.1-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.1-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.1-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.1-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.1-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.1-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.1-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.1-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.1-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.1-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.1-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.1-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.1-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.1-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.1-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.1-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.1-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.1-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.1-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.1-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.1-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31babf9557e7073927d12e8c80b834a9a3aba7e3/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.9-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.9-php8.1-apache`, `9.4-php8.1-apache`, `9.4.9-php8.1`, `9.4-php8.1`, `9.4.9-apache-bullseye`, `9.4-apache-bullseye`, `9.4.9-apache`, `9.4-apache`, `9.4.9`, `9.4`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.9-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.9-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.9-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.9-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.9-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.9-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.9-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.9-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.9-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.9-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.9-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.9-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.9-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.9-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.9-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.9-php8.0-apache`, `9.4-php8.0-apache`, `9.4.9-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.9-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.9-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.9-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.9-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.9-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ad07ccc7b65f7139dce3f1ad77a5c27d6bbe1cd0/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.2-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.2-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.2-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.2-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.2-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.2`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.2-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.2-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.2-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.2-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.2-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.2-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.2-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.2-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.2-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.2-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.2-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.2-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.2-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.2-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.2-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.2-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.2-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.2-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.2-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.2-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.2-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.2-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.2-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.2-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.2-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.2-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.2-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.2-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.2-apache`, `9.5-apache`, `9-apache`, `9.5.2`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.2-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.2-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.2-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.2-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.2-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.2-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.2-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.2-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.2-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.2-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.2-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.2-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.2-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.2-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.2-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.2-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.2-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.2-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.2-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.2-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.2-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.2-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.10-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.10-php8.1-apache`, `9.4-php8.1-apache`, `9.4.10-php8.1`, `9.4-php8.1`, `9.4.10-apache-bullseye`, `9.4-apache-bullseye`, `9.4.10-apache`, `9.4-apache`, `9.4.10`, `9.4`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.10-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.10-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.10-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.10-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.10-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.10-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.10-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.10-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.10-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.10-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.10-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.10-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.10-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.10-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.10-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.10-php8.0-apache`, `9.4-php8.0-apache`, `9.4.10-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.10-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.10-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.10-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.10-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.10-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-alpine3.16/Dockerfile) - [`7.94-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.94-php8.0-apache`, `7-php8.0-apache`, `7.94-php8.0`, `7-php8.0`, `7.94-apache-bullseye`, `7-apache-bullseye`, `7.94-apache`, `7-apache`, `7.94`, `7`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/apache-bullseye/Dockerfile) - [`7.94-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.94-php8.0-fpm`, `7-php8.0-fpm`, `7.94-fpm-bullseye`, `7-fpm-bullseye`, `7.94-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/fpm-bullseye/Dockerfile) - [`7.94-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.94-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/apache-buster/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 7a7f350f7139..ad53f96eddae 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`1.9.0-beta2-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-beta2-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/buster/Dockerfile) -- [`1.9.0-beta2-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-beta2-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-beta2-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-beta2-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-beta2-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/bullseye/Dockerfile) -- [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/buster/Dockerfile) +- [`1.9.0-beta3-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/bullseye/Dockerfile) +- [`1.9.0-beta3-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/buster/Dockerfile) +- [`1.9.0-beta3-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-beta3-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/alpine3.17/Dockerfile) +- [`1.9.0-beta3-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/alpine3.16/Dockerfile) +- [`1.9.0-beta3-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-beta3-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) +- [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/buster/Dockerfile) - [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.17/Dockerfile) - [`1.8.5-alpine3.16`, `1.8-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.16/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`, `1.8-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) @@ -49,15 +49,15 @@ WARNING: ## Shared Tags -- `1.9.0-beta2`, `1.9-rc`, `rc`: - - [`1.9.0-beta2-bullseye`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-beta2-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a60827b1feb946f2701759eb0dceb33c44c24ed3/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-beta3`, `1.9-rc`, `rc`: + - [`1.9.0-beta3-bullseye`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/bullseye/Dockerfile) + - [`1.9.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-beta3-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.9.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) - `1.8.5`, `1.8`, `1`, `latest`: - - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/bullseye/Dockerfile) + - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.8.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) - `1.8.5-windowsservercore`, `1.8-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -77,7 +77,7 @@ WARNING: [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) + [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) - **Published image artifact details**: [repo-info repo's `repos/julia/` directory](https://github.com/docker-library/repo-info/blob/master/repos/julia) ([history](https://github.com/docker-library/repo-info/commits/master/repos/julia)) diff --git a/php/README.md b/php/README.md index 8e9c80ee9eaf..c36a68a99316 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2.2RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.2RC1-bullseye`, `8.2-rc-bullseye`, `8.2.2RC1-cli`, `8.2-rc-cli`, `8.2.2RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.2RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.2RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.2RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.2RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.2RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.2RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.2RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.2RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/cli/Dockerfile) +- [`8.2.2RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/apache/Dockerfile) +- [`8.2.2RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.2RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/zts/Dockerfile) +- [`8.2.2RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.2RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.2RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.2RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.2RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.2RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.2RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.2RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/zts/Dockerfile) +- [`8.2.2RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.2RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/cli/Dockerfile) +- [`8.2.2RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/fpm/Dockerfile) +- [`8.2.2RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/zts/Dockerfile) - [`8.2.1-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.1-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.1-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.1`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/cli/Dockerfile) - [`8.2.1-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.1-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/apache/Dockerfile) - [`8.2.1-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.1-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/fpm/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 936013036483..b125d56c6320 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -47,21 +47,21 @@ WARNING: - [`9.0.71-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.71-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.71-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.71-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.84-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.84-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.84-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.84`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.84-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.84-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.84-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.84-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.84-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.84-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.84-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.84-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.84-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.84-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.84-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.84-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.84-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.84-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.84-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.84-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.84-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.84-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.84-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.84-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.84-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.84-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.84-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.84-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.84-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.84-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.84-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9cad4b1a880782d3504d7c8723fccc667965cf29/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.85-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.85-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.85-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.85`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.85-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.85-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.85-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.85-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.85-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.85-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.85-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.85-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.85-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.85-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.85-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.85-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.85-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.85-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.85-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.85-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.85-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.85-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.85-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.85-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.85-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.85-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.85-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.85-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.85-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.85-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.85-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 51474593b92057f9f0e5b1bcf465cc17185d21b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jan 2023 13:14:30 -0800 Subject: [PATCH 0016/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++----------------------- orientdb/README.md | 4 +-- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 877c15110afb..0005a15ba473 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,24 +42,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-5-jdk-oraclelinux8`, `21-ea-5-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-5-jdk-oracle`, `21-ea-5-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-5-jdk-oraclelinux7`, `21-ea-5-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-5-jdk-bullseye`, `21-ea-5-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/bullseye/Dockerfile) -- [`21-ea-5-jdk-slim-bullseye`, `21-ea-5-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-5-jdk-slim`, `21-ea-5-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-5-jdk-buster`, `21-ea-5-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/buster/Dockerfile) -- [`21-ea-5-jdk-slim-buster`, `21-ea-5-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/slim-buster/Dockerfile) -- [`21-ea-5-jdk-windowsservercore-ltsc2022`, `21-ea-5-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-5-jdk-windowsservercore-1809`, `21-ea-5-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-5-jdk-nanoserver-1809`, `21-ea-5-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-ea-31-jdk-oraclelinux8`, `20-ea-31-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-31-jdk-oracle`, `20-ea-31-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/oraclelinux8/Dockerfile) -- [`20-ea-31-jdk-oraclelinux7`, `20-ea-31-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/oraclelinux7/Dockerfile) -- [`20-ea-31-jdk-bullseye`, `20-ea-31-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/bullseye/Dockerfile) -- [`20-ea-31-jdk-slim-bullseye`, `20-ea-31-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-31-jdk-slim`, `20-ea-31-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/slim-bullseye/Dockerfile) -- [`20-ea-31-jdk-buster`, `20-ea-31-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/buster/Dockerfile) -- [`20-ea-31-jdk-slim-buster`, `20-ea-31-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/slim-buster/Dockerfile) -- [`20-ea-31-jdk-windowsservercore-ltsc2022`, `20-ea-31-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-ea-31-jdk-windowsservercore-1809`, `20-ea-31-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-ea-31-jdk-nanoserver-1809`, `20-ea-31-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-6-jdk-oraclelinux8`, `21-ea-6-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-6-jdk-oracle`, `21-ea-6-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-6-jdk-oraclelinux7`, `21-ea-6-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-6-jdk-bullseye`, `21-ea-6-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/bullseye/Dockerfile) +- [`21-ea-6-jdk-slim-bullseye`, `21-ea-6-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-6-jdk-slim`, `21-ea-6-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-6-jdk-buster`, `21-ea-6-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/buster/Dockerfile) +- [`21-ea-6-jdk-slim-buster`, `21-ea-6-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/slim-buster/Dockerfile) +- [`21-ea-6-jdk-windowsservercore-ltsc2022`, `21-ea-6-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-6-jdk-windowsservercore-1809`, `21-ea-6-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-6-jdk-nanoserver-1809`, `21-ea-6-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`20-ea-32-jdk-oraclelinux8`, `20-ea-32-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-32-jdk-oracle`, `20-ea-32-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux8/Dockerfile) +- [`20-ea-32-jdk-oraclelinux7`, `20-ea-32-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux7/Dockerfile) +- [`20-ea-32-jdk-bullseye`, `20-ea-32-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/bullseye/Dockerfile) +- [`20-ea-32-jdk-slim-bullseye`, `20-ea-32-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-32-jdk-slim`, `20-ea-32-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/slim-bullseye/Dockerfile) +- [`20-ea-32-jdk-buster`, `20-ea-32-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/buster/Dockerfile) +- [`20-ea-32-jdk-slim-buster`, `20-ea-32-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/slim-buster/Dockerfile) +- [`20-ea-32-jdk-windowsservercore-ltsc2022`, `20-ea-32-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20-ea-32-jdk-windowsservercore-1809`, `20-ea-32-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) +- [`20-ea-32-jdk-nanoserver-1809`, `20-ea-32-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/nanoserver-1809/Dockerfile) - [`18.0.2.1-jdk-oraclelinux8`, `18.0.2.1-oraclelinux8`, `18.0.2-jdk-oraclelinux8`, `18.0.2-oraclelinux8`, `18.0-jdk-oraclelinux8`, `18.0-oraclelinux8`, `18-jdk-oraclelinux8`, `18-oraclelinux8`, `jdk-oraclelinux8`, `oraclelinux8`, `18.0.2.1-jdk-oracle`, `18.0.2.1-oracle`, `18.0.2-jdk-oracle`, `18.0.2-oracle`, `18.0-jdk-oracle`, `18.0-oracle`, `18-jdk-oracle`, `18-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-oraclelinux7`, `18.0.2.1-oraclelinux7`, `18.0.2-jdk-oraclelinux7`, `18.0.2-oraclelinux7`, `18.0-jdk-oraclelinux7`, `18.0-oraclelinux7`, `18-jdk-oraclelinux7`, `18-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux7/Dockerfile) - [`18.0.2.1-jdk-bullseye`, `18.0.2.1-bullseye`, `18.0.2-jdk-bullseye`, `18.0.2-bullseye`, `18.0-jdk-bullseye`, `18.0-bullseye`, `18-jdk-bullseye`, `18-bullseye`, `jdk-bullseye`, `bullseye`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/bullseye/Dockerfile) @@ -72,24 +72,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-5-jdk`, `21-ea-5`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-5-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-5-jdk-windowsservercore`, `21-ea-5-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-5-jdk-nanoserver`, `21-ea-5-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bd86423db3e426763148dff5994388bfae7b98c6/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-ea-31-jdk`, `20-ea-31`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: - - [`20-ea-31-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/oraclelinux8/Dockerfile) - - [`20-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-31-jdk-windowsservercore`, `20-ea-31-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-31-jdk-nanoserver`, `20-ea-31-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/144d02bdeaa6b86a548d156e40638445a1836164/20/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-6-jdk`, `21-ea-6`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-6-jdk-windowsservercore`, `21-ea-6-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-6-jdk-nanoserver`, `21-ea-6-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/nanoserver-1809/Dockerfile) +- `20-ea-32-jdk`, `20-ea-32`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: + - [`20-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux8/Dockerfile) + - [`20-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-32-jdk-windowsservercore`, `20-ea-32-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-32-jdk-nanoserver`, `20-ea-32-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/nanoserver-1809/Dockerfile) - `18.0.2.1-jdk`, `18.0.2.1`, `18.0.2-jdk`, `18.0.2`, `18.0-jdk`, `18.0`, `18-jdk`, `18`, `jdk`, `latest`: - [`18.0.2.1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index 914ed0593d71..443cbf95e045 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.14`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/8f7ae4b76aa72cccdb849a1d8988e15a12d875c0/release/3.2.x/3.2.14/Dockerfile) -- [`3.2.14-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/8f7ae4b76aa72cccdb849a1d8988e15a12d875c0/release/3.2.x/3.2.14-tp3/Dockerfile) +- [`3.2.15`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/6bb69d8c2a33ac2b4148a0c9445236ba6fc56160/release/3.2.x/3.2.15/Dockerfile) +- [`3.2.15-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/6bb69d8c2a33ac2b4148a0c9445236ba6fc56160/release/3.2.x/3.2.15-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From b4732e47487b2cd66a5eb93b02a2d5f5479709c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jan 2023 16:08:53 -0800 Subject: [PATCH 0017/2686] Run update.sh --- docker/README.md | 36 ++++++++++++++++++------------------ ghost/README.md | 4 ++-- haproxy/README.md | 28 ++++++++++++++-------------- php/README.md | 14 ++++++++++++++ 4 files changed, 48 insertions(+), 34 deletions(-) diff --git a/docker/README.md b/docker/README.md index c85a3f58b656..958551752dd9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.2-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/6b2478f8067b8896a2597a658363dbd794412dc2/23.0-rc/cli/Dockerfile) -- [`23.0.0-rc.2-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.2-dind-alpine3.17`, `23.0.0-rc.2`, `23.0-rc`, `rc`, `23.0.0-rc.2-alpine3.17`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/dind/Dockerfile) -- [`23.0.0-rc.2-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/dind-rootless/Dockerfile) -- [`23.0.0-rc.2-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) -- [`23.0.0-rc.2-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.0-rc.2-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`20.10.22-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.22-cli-alpine3.17`, `20.10.22`, `20.10`, `20`, `latest`, `20.10.22-alpine3.17`](https://github.com/docker-library/docker/blob/03089085068a23c0c5c423331093640dfeecac63/20.10/cli/Dockerfile) -- [`20.10.22-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.22-dind-alpine3.17`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/dind/Dockerfile) -- [`20.10.22-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/dind-rootless/Dockerfile) -- [`20.10.22-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.22-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.22-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-1809/Dockerfile) +- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/cli/Dockerfile) +- [`23.0.0-rc.3-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.3-dind-alpine3.17`, `23.0.0-rc.3`, `23.0-rc`, `rc`, `23.0.0-rc.3-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind/Dockerfile) +- [`23.0.0-rc.3-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind-rootless/Dockerfile) +- [`23.0.0-rc.3-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) +- [`23.0.0-rc.3-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.0-rc.3-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/cli/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) +- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) +- [`20.10.23-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) +- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `23.0.0-rc.2-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: - - [`23.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ecac9af14c03e24685e478f1c8ddd7f156883d4/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- `20.10.22-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`, `windowsservercore`: - - [`20.10.22-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.22-windowsservercore-1809`](https://github.com/docker-library/docker/blob/32a92d275e8aa2edd2a99ad55e56a106e48601d6/20.10/windows/windowsservercore-1809/Dockerfile) +- `23.0.0-rc.3-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: + - [`23.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`, `windowsservercore`: + - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 78d0af31c935..02b518b87ef6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.30.1`, `5.30`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a9fb573779ed7fc5ad7a2480f1eccaa80fa68518/5/debian/Dockerfile) -- [`5.30.1-alpine`, `5.30-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a9fb573779ed7fc5ad7a2480f1eccaa80fa68518/5/alpine/Dockerfile) +- [`5.31.0`, `5.31`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6f8c7d789bf0634cacf9b60b907c854acce23b17/5/debian/Dockerfile) +- [`5.31.0-alpine`, `5.31-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6f8c7d789bf0634cacf9b60b907c854acce23b17/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index bbbc263407da..2487566ecdcf 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev1`, `2.8-dev`, `2.8-dev1-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/817555017600e0dac39d93a75ef920adac450958/2.8/Dockerfile) -- [`2.8-dev1-alpine`, `2.8-dev-alpine`, `2.8-dev1-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/817555017600e0dac39d93a75ef920adac450958/2.8/alpine/Dockerfile) -- [`2.7.1`, `2.7`, `latest`, `2.7.1-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/eccea371bf2c3d5744a8ad1b2f5861825161052f/2.7/Dockerfile) -- [`2.7.1-alpine`, `2.7-alpine`, `alpine`, `2.7.1-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/eccea371bf2c3d5744a8ad1b2f5861825161052f/2.7/alpine/Dockerfile) -- [`2.6.7`, `2.6`, `lts`, `2.6.7-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/9ae13c91cf82c4042360a0363b4d3fa190a51341/2.6/Dockerfile) -- [`2.6.7-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.7-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/9ae13c91cf82c4042360a0363b4d3fa190a51341/2.6/alpine/Dockerfile) -- [`2.5.10`, `2.5`, `2.5.10-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/541751988360a0ee55b6bee53c2d41acafaee35d/2.5/Dockerfile) -- [`2.5.10-alpine`, `2.5-alpine`, `2.5.10-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/541751988360a0ee55b6bee53c2d41acafaee35d/2.5/alpine/Dockerfile) -- [`2.4.20`, `2.4`, `2.4.20-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/6a15b45320ff96bb7548248596ac0ee3d38d8fab/2.4/Dockerfile) -- [`2.4.20-alpine`, `2.4-alpine`, `2.4.20-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/6a15b45320ff96bb7548248596ac0ee3d38d8fab/2.4/alpine/Dockerfile) -- [`2.2.26`, `2.2`, `2.2.26-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/509852454b03fd3aeaad66d46b5f6655275646bb/2.2/Dockerfile) -- [`2.2.26-alpine`, `2.2-alpine`, `2.2.26-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/509852454b03fd3aeaad66d46b5f6655275646bb/2.2/alpine/Dockerfile) -- [`2.0.30`, `2.0`, `2.0.30-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/c845b04087b9d388d60f3158670c37c31e7e6fbb/2.0/Dockerfile) -- [`2.0.30-alpine`, `2.0-alpine`, `2.0.30-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/c845b04087b9d388d60f3158670c37c31e7e6fbb/2.0/alpine/Dockerfile) +- [`2.8-dev1`, `2.8-dev`, `2.8-dev1-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.8/Dockerfile) +- [`2.8-dev1-alpine`, `2.8-dev-alpine`, `2.8-dev1-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.8/alpine/Dockerfile) +- [`2.7.2`, `2.7`, `latest`, `2.7.2-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/Dockerfile) +- [`2.7.2-alpine`, `2.7-alpine`, `alpine`, `2.7.2-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/alpine/Dockerfile) +- [`2.6.7`, `2.6`, `lts`, `2.6.7-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.6/Dockerfile) +- [`2.6.7-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.7-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.6/alpine/Dockerfile) +- [`2.5.10`, `2.5`, `2.5.10-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.5/Dockerfile) +- [`2.5.10-alpine`, `2.5-alpine`, `2.5.10-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.5/alpine/Dockerfile) +- [`2.4.20`, `2.4`, `2.4.20-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/Dockerfile) +- [`2.4.20-alpine`, `2.4-alpine`, `2.4.20-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/alpine/Dockerfile) +- [`2.2.26`, `2.2`, `2.2.26-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.2/Dockerfile) +- [`2.2.26-alpine`, `2.2-alpine`, `2.2.26-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.2/alpine/Dockerfile) +- [`2.0.30`, `2.0`, `2.0.30-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/Dockerfile) +- [`2.0.30-alpine`, `2.0-alpine`, `2.0.30-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index c36a68a99316..f84c0ec15a59 100644 --- a/php/README.md +++ b/php/README.md @@ -52,6 +52,20 @@ WARNING: - [`8.2.1-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.1-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/cli/Dockerfile) - [`8.2.1-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.1-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.15RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.15RC1-bullseye`, `8.1-rc-bullseye`, `8.1.15RC1-cli`, `8.1-rc-cli`, `8.1.15RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.15RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.15RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.15RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.15RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.15RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.15RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.15RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.15RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/cli/Dockerfile) +- [`8.1.15RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/apache/Dockerfile) +- [`8.1.15RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.15RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/zts/Dockerfile) +- [`8.1.15RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.15RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.15RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.15RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.15RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.15RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.15RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.15RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.15RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.15RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.15RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.15RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.14-cli-bullseye`, `8.1-cli-bullseye`, `8.1.14-bullseye`, `8.1-bullseye`, `8.1.14-cli`, `8.1-cli`, `8.1.14`, `8.1`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/cli/Dockerfile) - [`8.1.14-apache-bullseye`, `8.1-apache-bullseye`, `8.1.14-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/apache/Dockerfile) - [`8.1.14-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.14-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/fpm/Dockerfile) From 5f15318e4b3dbe3f447df713e7e50eeb340eb2d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jan 2023 11:08:51 -0800 Subject: [PATCH 0018/2686] Run update.sh --- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- photon/README.md | 4 +-- python/README.md | 84 ++++++++++++++++++++++---------------------- 4 files changed, 47 insertions(+), 47 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b277483bbe03..4b64c864ba17 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230115.0.118859`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f7624de21a4eef6c4695832c8da04b7cafa29a28/Dockerfile.base) -- [`base-devel`, `base-devel-20230115.0.118859`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f7624de21a4eef6c4695832c8da04b7cafa29a28/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230122.0.120412`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e338afb69df3895a2615b9f81370676e2dad45bc/Dockerfile.base) +- [`base-devel`, `base-devel-20230122.0.120412`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e338afb69df3895a2615b9f81370676e2dad45bc/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 1ad3c8de3182..65251c2412e5 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4b176ef9a0f34cab866035286830a2fad0139b0f/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/83dc1ce6db0daaca096b4df440c27bd9ab21566f/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 95fc62913086..7edb01ea42f0 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0`, `4.0-20230114`, `latest`](https://github.com/vmware/photon-docker-image/blob/54f4923365597c2fef4456667f8ad2ac51d15ec9/docker/Dockerfile) -- [`3.0`, `3.0-20230114`](https://github.com/vmware/photon-docker-image/blob/ef84a418b533fbb49cb811909076ce3091ee8580/docker/Dockerfile) +- [`4.0`, `4.0-20230121`, `latest`](https://github.com/vmware/photon-docker-image/blob/0cf696e9b1457497028f8115c9e682c84e8a331d/docker/Dockerfile) +- [`3.0`, `3.0-20230121`](https://github.com/vmware/photon-docker-image/blob/686e03294ecb49ae3b68838de4e2066b48f39aec/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index bca1e13978a8..5ddc53926403 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/buster/Dockerfile) -- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/buster/Dockerfile) +- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/alpine3.16/Dockerfile) - [`3.12.0a4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/bullseye/Dockerfile) -- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/slim-bullseye/Dockerfile) -- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/buster/Dockerfile) -- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/slim-buster/Dockerfile) -- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/alpine3.17/Dockerfile) -- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/alpine3.16/Dockerfile) +- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/bullseye/Dockerfile) +- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/slim-bullseye/Dockerfile) +- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/buster/Dockerfile) +- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/slim-buster/Dockerfile) +- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/alpine3.17/Dockerfile) +- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/alpine3.16/Dockerfile) - [`3.11.1-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/bullseye/Dockerfile) -- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/slim-bullseye/Dockerfile) -- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/buster/Dockerfile) -- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/slim-buster/Dockerfile) -- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/alpine3.17/Dockerfile) -- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/alpine3.16/Dockerfile) +- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/bullseye/Dockerfile) +- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/slim-bullseye/Dockerfile) +- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/buster/Dockerfile) +- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/slim-buster/Dockerfile) +- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/alpine3.17/Dockerfile) +- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/alpine3.16/Dockerfile) - [`3.10.9-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/alpine3.16/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a4`, `3.12-rc`: - - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/bullseye/Dockerfile) - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a4-windowsservercore`, `3.12-rc-windowsservercore`: - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.1`, `3.11`, `3`, `latest`: - - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.11/bullseye/Dockerfile) + - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/bullseye/Dockerfile) - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.1-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.9`, `3.10`: - - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.10/bullseye/Dockerfile) + - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/bullseye/Dockerfile) - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.9-windowsservercore`, `3.10-windowsservercore`: - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/0db1a5b346aab9304d0cfc4bf33268e1818ecc42/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/bullseye/Dockerfile) # Quick reference (cont.) From 587737cf5933d25404dc2adc80069908172822c9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jan 2023 12:08:47 -0800 Subject: [PATCH 0019/2686] Run update.sh --- emqx/README.md | 6 +-- tomee/README.md | 119 +++++++++++++++++++++++++----------------------- 2 files changed, 66 insertions(+), 59 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index ec1d08452d8c..37bbc5c1fc18 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/dd291f55ea33fd2567a31b712b504f7df5438021/4.3/Dockerfile) -- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/dd291f55ea33fd2567a31b712b504f7df5438021/4.4/Dockerfile) -- [`5.0.14`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/dd291f55ea33fd2567a31b712b504f7df5438021/5.0/Dockerfile) +- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/4.3/Dockerfile) +- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/4.4/Dockerfile) +- [`5.0.15`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/5.0/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 37f23153294d..839642b8343c 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,62 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.13-jre17-Temurin-ubuntu-webprofile`, `8.0.13-Temurin-ubuntu-webprofile`, `8.0.13-jre17-ubuntu-webprofile`, `8.0.13-ubuntu-webprofile`, `8.0.13-jre17-Temurin-webprofile`, `8.0.13-Temurin-webprofile`, `8.0.13-jre17-webprofile`, `8.0.13-webprofile`, `8.0.13-jre17-Temurin-ubuntu`, `8.0.13-Temurin-ubuntu`, `8.0.13-jre17-ubuntu`, `8.0.13-ubuntu`, `8.0.13-jre17-Temurin`, `8.0.13-Temurin`, `8.0.13-jre17`, `8.0.13`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.13-jre17-Temurin-ubuntu-microprofile`, `8.0.13-Temurin-ubuntu-microprofile`, `8.0.13-jre17-ubuntu-microprofile`, `8.0.13-ubuntu-microprofile`, `8.0.13-jre17-Temurin-microprofile`, `8.0.13-Temurin-microprofile`, `8.0.13-jre17-microprofile`, `8.0.13-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.13-jre17-Temurin-ubuntu-plume`, `8.0.13-Temurin-ubuntu-plume`, `8.0.13-jre17-ubuntu-plume`, `8.0.13-ubuntu-plume`, `8.0.13-jre17-Temurin-plume`, `8.0.13-Temurin-plume`, `8.0.13-jre17-plume`, `8.0.13-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.13-jre17-Temurin-ubuntu-plus`, `8.0.13-Temurin-ubuntu-plus`, `8.0.13-jre17-ubuntu-plus`, `8.0.13-ubuntu-plus`, `8.0.13-jre17-Temurin-plus`, `8.0.13-Temurin-plus`, `8.0.13-jre17-plus`, `8.0.13-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.13-jre17-Temurin-alpine-webprofile`, `8.0.13-Temurin-alpine-webprofile`, `8.0.13-jre17-alpine-webprofile`, `8.0.13-alpine-webprofile`, `8.0.13-jre17-Temurin-alpine`, `8.0.13-Temurin-alpine`, `8.0.13-jre17-alpine`, `8.0.13-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.13-jre17-Temurin-alpine-microprofile`, `8.0.13-Temurin-alpine-microprofile`, `8.0.13-jre17-alpine-microprofile`, `8.0.13-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.13-jre17-Temurin-alpine-plume`, `8.0.13-Temurin-alpine-plume`, `8.0.13-jre17-alpine-plume`, `8.0.13-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.13-jre17-Temurin-alpine-plus`, `8.0.13-Temurin-alpine-plus`, `8.0.13-jre17-alpine-plus`, `8.0.13-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.13-jre11-Temurin-ubuntu-webprofile`, `8.0.13-jre11-ubuntu-webprofile`, `8.0.13-jre11-Temurin-webprofile`, `8.0.13-jre11-webprofile`, `8.0.13-jre11-Temurin-ubuntu`, `8.0.13-jre11-ubuntu`, `8.0.13-jre11-Temurin`, `8.0.13-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.13-jre11-Temurin-ubuntu-microprofile`, `8.0.13-jre11-ubuntu-microprofile`, `8.0.13-jre11-Temurin-microprofile`, `8.0.13-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.13-jre11-Temurin-ubuntu-plume`, `8.0.13-jre11-ubuntu-plume`, `8.0.13-jre11-Temurin-plume`, `8.0.13-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.13-jre11-Temurin-ubuntu-plus`, `8.0.13-jre11-ubuntu-plus`, `8.0.13-jre11-Temurin-plus`, `8.0.13-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.13-jre11-Temurin-alpine-webprofile`, `8.0.13-jre11-alpine-webprofile`, `8.0.13-jre11-Temurin-alpine`, `8.0.13-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.13-jre11-Temurin-alpine-microprofile`, `8.0.13-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.13-jre11-Temurin-alpine-plume`, `8.0.13-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.13-jre11-Temurin-alpine-plus`, `8.0.13-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.13-jre8-Temurin-ubuntu-webprofile`, `8.0.13-jre8-ubuntu-webprofile`, `8.0.13-jre8-Temurin-webprofile`, `8.0.13-jre8-webprofile`, `8.0.13-jre8-Temurin-ubuntu`, `8.0.13-jre8-ubuntu`, `8.0.13-jre8-Temurin`, `8.0.13-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.13-jre8-Temurin-ubuntu-microprofile`, `8.0.13-jre8-ubuntu-microprofile`, `8.0.13-jre8-Temurin-microprofile`, `8.0.13-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.13-jre8-Temurin-ubuntu-plume`, `8.0.13-jre8-ubuntu-plume`, `8.0.13-jre8-Temurin-plume`, `8.0.13-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.13-jre8-Temurin-ubuntu-plus`, `8.0.13-jre8-ubuntu-plus`, `8.0.13-jre8-Temurin-plus`, `8.0.13-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.13-jre8-Temurin-alpine-webprofile`, `8.0.13-jre8-alpine-webprofile`, `8.0.13-jre8-Temurin-alpine`, `8.0.13-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.13-jre8-Temurin-alpine-microprofile`, `8.0.13-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.13-jre8-Temurin-alpine-plume`, `8.0.13-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.13-jre8-Temurin-alpine-plus`, `8.0.13-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.13-jre17-Semeru-ubuntu-webprofile`, `8.0.13-Semeru-ubuntu-webprofile`, `8.0.13-jre17-Semeru-webprofile`, `8.0.13-Semeru-webprofile`, `8.0.13-jre17-Semeru-ubuntu`, `8.0.13-Semeru-ubuntu`, `8.0.13-jre17-Semeru`, `8.0.13-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.13-jre17-Semeru-ubuntu-microprofile`, `8.0.13-Semeru-ubuntu-microprofile`, `8.0.13-jre17-Semeru-microprofile`, `8.0.13-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.13-jre17-Semeru-ubuntu-plume`, `8.0.13-Semeru-ubuntu-plume`, `8.0.13-jre17-Semeru-plume`, `8.0.13-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.13-jre17-Semeru-ubuntu-plus`, `8.0.13-Semeru-ubuntu-plus`, `8.0.13-jre17-Semeru-plus`, `8.0.13-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.13-jre11-Semeru-ubuntu-webprofile`, `8.0.13-jre11-Semeru-webprofile`, `8.0.13-jre11-Semeru-ubuntu`, `8.0.13-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.13-jre11-Semeru-ubuntu-microprofile`, `8.0.13-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.13-jre11-Semeru-ubuntu-plume`, `8.0.13-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.13-jre11-Semeru-ubuntu-plus`, `8.0.13-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-ubuntu-webprofile`, `9.0.0.RC1-Temurin-ubuntu-webprofile`, `9.0.0.RC1-jre17-ubuntu-webprofile`, `9.0.0.RC1-ubuntu-webprofile`, `9.0.0.RC1-jre17-Temurin-webprofile`, `9.0.0.RC1-Temurin-webprofile`, `9.0.0.RC1-jre17-webprofile`, `9.0.0.RC1-webprofile`, `9.0.0.RC1-jre17-Temurin-ubuntu`, `9.0.0.RC1-Temurin-ubuntu`, `9.0.0.RC1-jre17-ubuntu`, `9.0.0.RC1-ubuntu`, `9.0.0.RC1-jre17-Temurin`, `9.0.0.RC1-Temurin`, `9.0.0.RC1-jre17`, `9.0.0.RC1`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-ubuntu-microprofile`, `9.0.0.RC1-Temurin-ubuntu-microprofile`, `9.0.0.RC1-jre17-ubuntu-microprofile`, `9.0.0.RC1-ubuntu-microprofile`, `9.0.0.RC1-jre17-Temurin-microprofile`, `9.0.0.RC1-Temurin-microprofile`, `9.0.0.RC1-jre17-microprofile`, `9.0.0.RC1-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-ubuntu-plume`, `9.0.0.RC1-Temurin-ubuntu-plume`, `9.0.0.RC1-jre17-ubuntu-plume`, `9.0.0.RC1-ubuntu-plume`, `9.0.0.RC1-jre17-Temurin-plume`, `9.0.0.RC1-Temurin-plume`, `9.0.0.RC1-jre17-plume`, `9.0.0.RC1-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-ubuntu-plus`, `9.0.0.RC1-Temurin-ubuntu-plus`, `9.0.0.RC1-jre17-ubuntu-plus`, `9.0.0.RC1-ubuntu-plus`, `9.0.0.RC1-jre17-Temurin-plus`, `9.0.0.RC1-Temurin-plus`, `9.0.0.RC1-jre17-plus`, `9.0.0.RC1-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-alpine-webprofile`, `9.0.0.RC1-Temurin-alpine-webprofile`, `9.0.0.RC1-jre17-alpine-webprofile`, `9.0.0.RC1-alpine-webprofile`, `9.0.0.RC1-jre17-Temurin-alpine`, `9.0.0.RC1-Temurin-alpine`, `9.0.0.RC1-jre17-alpine`, `9.0.0.RC1-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-alpine-microprofile`, `9.0.0.RC1-Temurin-alpine-microprofile`, `9.0.0.RC1-jre17-alpine-microprofile`, `9.0.0.RC1-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-alpine-plume`, `9.0.0.RC1-Temurin-alpine-plume`, `9.0.0.RC1-jre17-alpine-plume`, `9.0.0.RC1-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.0.0.RC1-jre17-Temurin-alpine-plus`, `9.0.0.RC1-Temurin-alpine-plus`, `9.0.0.RC1-jre17-alpine-plus`, `9.0.0.RC1-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-ubuntu-webprofile`, `9.0.0.RC1-jre11-ubuntu-webprofile`, `9.0.0.RC1-jre11-Temurin-webprofile`, `9.0.0.RC1-jre11-webprofile`, `9.0.0.RC1-jre11-Temurin-ubuntu`, `9.0.0.RC1-jre11-ubuntu`, `9.0.0.RC1-jre11-Temurin`, `9.0.0.RC1-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-ubuntu-microprofile`, `9.0.0.RC1-jre11-ubuntu-microprofile`, `9.0.0.RC1-jre11-Temurin-microprofile`, `9.0.0.RC1-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-ubuntu-plume`, `9.0.0.RC1-jre11-ubuntu-plume`, `9.0.0.RC1-jre11-Temurin-plume`, `9.0.0.RC1-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-ubuntu-plus`, `9.0.0.RC1-jre11-ubuntu-plus`, `9.0.0.RC1-jre11-Temurin-plus`, `9.0.0.RC1-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-alpine-webprofile`, `9.0.0.RC1-jre11-alpine-webprofile`, `9.0.0.RC1-jre11-Temurin-alpine`, `9.0.0.RC1-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-alpine-microprofile`, `9.0.0.RC1-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-alpine-plume`, `9.0.0.RC1-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.0.0.RC1-jre11-Temurin-alpine-plus`, `9.0.0.RC1-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.0.0.RC1-jre17-Semeru-ubuntu-webprofile`, `9.0.0.RC1-Semeru-ubuntu-webprofile`, `9.0.0.RC1-jre17-Semeru-webprofile`, `9.0.0.RC1-Semeru-webprofile`, `9.0.0.RC1-jre17-Semeru-ubuntu`, `9.0.0.RC1-Semeru-ubuntu`, `9.0.0.RC1-jre17-Semeru`, `9.0.0.RC1-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Semeru-ubuntu-microprofile`, `9.0.0.RC1-Semeru-ubuntu-microprofile`, `9.0.0.RC1-jre17-Semeru-microprofile`, `9.0.0.RC1-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0.RC1-jre17-Semeru-ubuntu-plume`, `9.0.0.RC1-Semeru-ubuntu-plume`, `9.0.0.RC1-jre17-Semeru-plume`, `9.0.0.RC1-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0.RC1-jre17-Semeru-ubuntu-plus`, `9.0.0.RC1-Semeru-ubuntu-plus`, `9.0.0.RC1-jre17-Semeru-plus`, `9.0.0.RC1-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0.RC1-jre11-Semeru-ubuntu-webprofile`, `9.0.0.RC1-jre11-Semeru-webprofile`, `9.0.0.RC1-jre11-Semeru-ubuntu`, `9.0.0.RC1-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Semeru-ubuntu-microprofile`, `9.0.0.RC1-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0.RC1-jre11-Semeru-ubuntu-plume`, `9.0.0.RC1-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0.RC1-jre11-Semeru-ubuntu-plus`, `9.0.0.RC1-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3ca8b3bbd8e7c1c6762a6786241144b424b58573/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-webprofile`, `8.0.14-Temurin-ubuntu-webprofile`, `8.0.14-jre17-ubuntu-webprofile`, `8.0.14-ubuntu-webprofile`, `8.0.14-jre17-Temurin-webprofile`, `8.0.14-Temurin-webprofile`, `8.0.14-jre17-webprofile`, `8.0.14-webprofile`, `8.0.14-jre17-Temurin-ubuntu`, `8.0.14-Temurin-ubuntu`, `8.0.14-jre17-ubuntu`, `8.0.14-ubuntu`, `8.0.14-jre17-Temurin`, `8.0.14-Temurin`, `8.0.14-jre17`, `8.0.14`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-microprofile`, `8.0.14-Temurin-ubuntu-microprofile`, `8.0.14-jre17-ubuntu-microprofile`, `8.0.14-ubuntu-microprofile`, `8.0.14-jre17-Temurin-microprofile`, `8.0.14-Temurin-microprofile`, `8.0.14-jre17-microprofile`, `8.0.14-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-plume`, `8.0.14-Temurin-ubuntu-plume`, `8.0.14-jre17-ubuntu-plume`, `8.0.14-ubuntu-plume`, `8.0.14-jre17-Temurin-plume`, `8.0.14-Temurin-plume`, `8.0.14-jre17-plume`, `8.0.14-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-plus`, `8.0.14-Temurin-ubuntu-plus`, `8.0.14-jre17-ubuntu-plus`, `8.0.14-ubuntu-plus`, `8.0.14-jre17-Temurin-plus`, `8.0.14-Temurin-plus`, `8.0.14-jre17-plus`, `8.0.14-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-webprofile`, `8.0.14-Temurin-alpine-webprofile`, `8.0.14-jre17-alpine-webprofile`, `8.0.14-alpine-webprofile`, `8.0.14-jre17-Temurin-alpine`, `8.0.14-Temurin-alpine`, `8.0.14-jre17-alpine`, `8.0.14-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-microprofile`, `8.0.14-Temurin-alpine-microprofile`, `8.0.14-jre17-alpine-microprofile`, `8.0.14-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-plume`, `8.0.14-Temurin-alpine-plume`, `8.0.14-jre17-alpine-plume`, `8.0.14-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-plus`, `8.0.14-Temurin-alpine-plus`, `8.0.14-jre17-alpine-plus`, `8.0.14-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-webprofile`, `8.0.14-jre11-ubuntu-webprofile`, `8.0.14-jre11-Temurin-webprofile`, `8.0.14-jre11-webprofile`, `8.0.14-jre11-Temurin-ubuntu`, `8.0.14-jre11-ubuntu`, `8.0.14-jre11-Temurin`, `8.0.14-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-microprofile`, `8.0.14-jre11-ubuntu-microprofile`, `8.0.14-jre11-Temurin-microprofile`, `8.0.14-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-plume`, `8.0.14-jre11-ubuntu-plume`, `8.0.14-jre11-Temurin-plume`, `8.0.14-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-plus`, `8.0.14-jre11-ubuntu-plus`, `8.0.14-jre11-Temurin-plus`, `8.0.14-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-webprofile`, `8.0.14-jre11-alpine-webprofile`, `8.0.14-jre11-Temurin-alpine`, `8.0.14-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-microprofile`, `8.0.14-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-plume`, `8.0.14-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-plus`, `8.0.14-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-webprofile`, `8.0.14-jre8-ubuntu-webprofile`, `8.0.14-jre8-Temurin-webprofile`, `8.0.14-jre8-webprofile`, `8.0.14-jre8-Temurin-ubuntu`, `8.0.14-jre8-ubuntu`, `8.0.14-jre8-Temurin`, `8.0.14-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-microprofile`, `8.0.14-jre8-ubuntu-microprofile`, `8.0.14-jre8-Temurin-microprofile`, `8.0.14-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-plume`, `8.0.14-jre8-ubuntu-plume`, `8.0.14-jre8-Temurin-plume`, `8.0.14-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-plus`, `8.0.14-jre8-ubuntu-plus`, `8.0.14-jre8-Temurin-plus`, `8.0.14-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-webprofile`, `8.0.14-jre8-alpine-webprofile`, `8.0.14-jre8-Temurin-alpine`, `8.0.14-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-microprofile`, `8.0.14-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-plume`, `8.0.14-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-plus`, `8.0.14-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-webprofile`, `8.0.14-Semeru-ubuntu-webprofile`, `8.0.14-jre17-Semeru-webprofile`, `8.0.14-Semeru-webprofile`, `8.0.14-jre17-Semeru-ubuntu`, `8.0.14-Semeru-ubuntu`, `8.0.14-jre17-Semeru`, `8.0.14-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-microprofile`, `8.0.14-Semeru-ubuntu-microprofile`, `8.0.14-jre17-Semeru-microprofile`, `8.0.14-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-plume`, `8.0.14-Semeru-ubuntu-plume`, `8.0.14-jre17-Semeru-plume`, `8.0.14-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-plus`, `8.0.14-Semeru-ubuntu-plus`, `8.0.14-jre17-Semeru-plus`, `8.0.14-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-webprofile`, `8.0.14-jre11-Semeru-webprofile`, `8.0.14-jre11-Semeru-ubuntu`, `8.0.14-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-microprofile`, `8.0.14-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-plume`, `8.0.14-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-plus`, `8.0.14-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 0b78da6b2a94a90b79051690dab3201cbbd1cb15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jan 2023 14:08:49 -0800 Subject: [PATCH 0020/2686] Run update.sh --- couchbase/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index 9a11223011b2..8b9fa2ecbc85 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -28,7 +28,7 @@ WARNING: - [`community-7.1.1`, `community`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) -- [`6.6.5`, `enterprise-6.6.5`](https://github.com/couchbase/docker/blob/aad4aa9714578906c0c993121654eaeba0bd907c/enterprise/couchbase-server/6.6.5/Dockerfile) +- [`6.6.6`, `enterprise-6.6.6`](https://github.com/couchbase/docker/blob/8398e79a15da9eef613d0a781ec136a458ea128c/enterprise/couchbase-server/6.6.6/Dockerfile) - [`community-6.6.0`](https://github.com/couchbase/docker/blob/aad4aa9714578906c0c993121654eaeba0bd907c/community/couchbase-server/6.6.0/Dockerfile) # Quick reference (cont.) From ffbaa3e0d563fc3ef81051a2eb0843e0276e5904 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jan 2023 17:08:48 -0800 Subject: [PATCH 0021/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 2487566ecdcf..afb9a46bcb36 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev1`, `2.8-dev`, `2.8-dev1-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.8/Dockerfile) -- [`2.8-dev1-alpine`, `2.8-dev-alpine`, `2.8-dev1-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.8/alpine/Dockerfile) +- [`2.8-dev2`, `2.8-dev`, `2.8-dev2-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/90d3b5fa57f474d0c91dccd0a6185a6e23eec72a/2.8/Dockerfile) +- [`2.8-dev2-alpine`, `2.8-dev-alpine`, `2.8-dev2-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/90d3b5fa57f474d0c91dccd0a6185a6e23eec72a/2.8/alpine/Dockerfile) - [`2.7.2`, `2.7`, `latest`, `2.7.2-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/Dockerfile) - [`2.7.2-alpine`, `2.7-alpine`, `alpine`, `2.7.2-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/alpine/Dockerfile) - [`2.6.7`, `2.6`, `lts`, `2.6.7-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.6/Dockerfile) From e1aeb986ed86136d626c8ea18f24f0e65ae608f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Jan 2023 09:08:49 -0800 Subject: [PATCH 0022/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 61a32a5a0652..f485f238ce3d 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.2.0.0`, `25.2.0`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/Dockerfile) -- [`25.2.0.0-slim`, `25.2.0-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/slim/Dockerfile) -- [`25.2.0.0-alpine`, `25.2.0-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/e9ce9f226c50a8cf186258d9f571f24dd4096bbf/25/alpine/Dockerfile) +- [`25.2.1.0`, `25.2.1`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/Dockerfile) +- [`25.2.1.0-slim`, `25.2.1-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/slim/Dockerfile) +- [`25.2.1.0-alpine`, `25.2.1-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/alpine/Dockerfile) - [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) - [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) - [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/alpine/Dockerfile) From b88d38bdce89a7dceb7609bb1672bd7dc2cdfd35 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Jan 2023 10:14:49 -0800 Subject: [PATCH 0023/2686] Run update.sh --- dart/README.md | 3 +- eclipse-temurin/README.md | 152 +++++++++++++++++++------------------- perl/README.md | 56 ++++++++------ 3 files changed, 109 insertions(+), 102 deletions(-) diff --git a/dart/README.md b/dart/README.md index 2c8c729cdcbd..f6fa997cefa5 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.18.7-sdk`, `2.18-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.18.7`, `2.18`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/fec666b5fef77a0419f2f3cb730f76a58679eec4/stable/bullseye/Dockerfile) -- [`2.19.0-444.4.beta-sdk`, `beta-sdk`, `2.19.0-444.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/fec666b5fef77a0419f2f3cb730f76a58679eec4/beta/bullseye/Dockerfile) +- [`2.19.0-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.0`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/aea99ca1f5848eddf1dc5087573663b8bc3e102d/stable/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 78f64aabf6f5..47a1e3d6b31d 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -46,42 +46,42 @@ WARNING: - [`8u352-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u352-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u352-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.17_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.17_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.17_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.17_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.17_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.17_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.17_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.17_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.17_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.17_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.17_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.17_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.17_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/centos/Dockerfile.releases.full) -- [`11.0.17_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.17_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.17_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.17_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.17_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.5_8-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.5_8-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.5_8-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.5_8-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.5_8-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.5_8-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.5_8-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.5_8-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.5_8-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.5_8-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.5_8-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.5_8-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.5_8-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/centos/Dockerfile.releases.full) -- [`17.0.5_8-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.5_8-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.5_8-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.5_8-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.5_8-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.18_10-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.18_10-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.18_10-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.18_10-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.18_10-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.18_10-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.18_10-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.18_10-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.18_10-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.18_10-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.18_10-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.18_10-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.18_10-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/centos/Dockerfile.releases.full) +- [`11.0.18_10-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.18_10-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.18_10-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.18_10-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.18_10-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.6_10-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.6_10-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.6_10-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.6_10-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.6_10-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.6_10-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.6_10-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.6_10-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.6_10-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.6_10-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.6_10-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.6_10-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.6_10-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/centos/Dockerfile.releases.full) +- [`17.0.6_10-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.6_10-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.6_10-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.6_10-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.6_10-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`19.0.1_10-jdk-alpine`, `19-jdk-alpine`, `19-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/19/jdk/alpine/Dockerfile.releases.full) - [`19.0.1_10-jdk-focal`, `19-jdk-focal`, `19-focal`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/focal/Dockerfile.releases.full) - [`19.0.1_10-jdk-jammy`, `19-jdk-jammy`, `19-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/jammy/Dockerfile.releases.full) @@ -123,46 +123,46 @@ WARNING: - `8u352-b08-jre-nanoserver`, `8-jre-nanoserver`: - [`8u352-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u352-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.17_8-jdk`, `11-jdk`, `11`: - - [`11.0.17_8-jdk-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.17_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.17_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.17_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.17_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.17_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.17_8-jre`, `11-jre`: - - [`11.0.17_8-jre-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.17_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.17_8-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.17_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.17_8-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.17_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.17_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.5_8-jdk`, `17-jdk`, `17`: - - [`17.0.5_8-jdk-jammy`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.5_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.5_8-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.5_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.5_8-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.5_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.5_8-jre`, `17-jre`: - - [`17.0.5_8-jre-jammy`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.5_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.5_8-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.5_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.5_8-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.5_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.5_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d3c9617e83eb706aff74c095fd531fe31e359674/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.18_10-jdk`, `11-jdk`, `11`: + - [`11.0.18_10-jdk-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.18_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.18_10-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.18_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.18_10-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.18_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.18_10-jre`, `11-jre`: + - [`11.0.18_10-jre-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.18_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.18_10-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.18_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.18_10-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.18_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.18_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.6_10-jdk`, `17-jdk`, `17`: + - [`17.0.6_10-jdk-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.6_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.6_10-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.6_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.6_10-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.6_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.6_10-jre`, `17-jre`: + - [`17.0.6_10-jre-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.6_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.6_10-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.6_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.6_10-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.6_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.6_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `19.0.1_10-jdk`, `19-jdk`, `19`, `latest`: - [`19.0.1_10-jdk-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`19.0.1_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) diff --git a/perl/README.md b/perl/README.md index 3e9acea8271d..87363e2e2cb5 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,30 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-main-bullseye/Dockerfile) -- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-main-buster/Dockerfile) -- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-slim-bullseye/Dockerfile) -- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-slim-buster/Dockerfile) -- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-main,threaded-bullseye/Dockerfile) -- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-main,threaded-buster/Dockerfile) -- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-slim,threaded-bullseye/Dockerfile) -- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.036.000-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f70e8ace49994efef8e90cbf730554a3e3201da7/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main-bullseye/Dockerfile) +- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main-buster/Dockerfile) +- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim-bullseye/Dockerfile) +- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim-buster/Dockerfile) +- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main,threaded-bullseye/Dockerfile) +- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main,threaded-buster/Dockerfile) +- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim,threaded-bullseye/Dockerfile) +- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main-bullseye/Dockerfile) +- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main-buster/Dockerfile) +- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim-bullseye/Dockerfile) +- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim-buster/Dockerfile) +- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main,threaded-bullseye/Dockerfile) +- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main,threaded-buster/Dockerfile) +- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim,threaded-bullseye/Dockerfile) +- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.37.8`, `5.37`, `devel`, `5.37.8-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main-bullseye/Dockerfile) +- [`5.37.8-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main-buster/Dockerfile) +- [`5.37.8-slim`, `5.37-slim`, `devel-slim`, `5.37.8-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim-bullseye/Dockerfile) +- [`5.37.8-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim-buster/Dockerfile) +- [`5.37.8-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.8-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main,threaded-bullseye/Dockerfile) +- [`5.37.8-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main,threaded-buster/Dockerfile) +- [`5.37.8-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.8-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim,threaded-bullseye/Dockerfile) +- [`5.37.8-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim,threaded-buster/Dockerfile) # Quick reference (cont.) From aa695a64c8291e892ab7bd4b37359e7d76c549ed Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Jan 2023 12:08:48 -0800 Subject: [PATCH 0024/2686] Run update.sh --- bash/README.md | 2 +- haproxy/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bash/README.md b/bash/README.md index a32d249f9fa0..260abbc2ee11 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230110`, `devel`, `devel-20230110-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/4f5e0a1e965211b264bfae36ed77b6701b28fd7a/devel/Dockerfile) +- [`devel-20230120`, `devel`, `devel-20230120-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/2f54d82b708da1c2601973bf2b250476bc7253b5/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index afb9a46bcb36..866b19278d18 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,10 +28,10 @@ WARNING: - [`2.8-dev2-alpine`, `2.8-dev-alpine`, `2.8-dev2-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/90d3b5fa57f474d0c91dccd0a6185a6e23eec72a/2.8/alpine/Dockerfile) - [`2.7.2`, `2.7`, `latest`, `2.7.2-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/Dockerfile) - [`2.7.2-alpine`, `2.7-alpine`, `alpine`, `2.7.2-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/alpine/Dockerfile) -- [`2.6.7`, `2.6`, `lts`, `2.6.7-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.6/Dockerfile) -- [`2.6.7-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.7-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.6/alpine/Dockerfile) -- [`2.5.10`, `2.5`, `2.5.10-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.5/Dockerfile) -- [`2.5.10-alpine`, `2.5-alpine`, `2.5.10-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.5/alpine/Dockerfile) +- [`2.6.8`, `2.6`, `lts`, `2.6.8-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/Dockerfile) +- [`2.6.8-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.8-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/alpine/Dockerfile) +- [`2.5.11`, `2.5`, `2.5.11-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/Dockerfile) +- [`2.5.11-alpine`, `2.5-alpine`, `2.5.11-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/alpine/Dockerfile) - [`2.4.20`, `2.4`, `2.4.20-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/Dockerfile) - [`2.4.20-alpine`, `2.4-alpine`, `2.4.20-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/alpine/Dockerfile) - [`2.2.26`, `2.2`, `2.2.26-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.2/Dockerfile) From 83c856b434e04acde6f0fb2004a075960deeddc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jan 2023 10:14:40 -0800 Subject: [PATCH 0025/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 57565d8f4bbf..69fcb479117e 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.4-alpine3.16`, `19.4.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.4-alpine`, `19.4-alpine3.17`, `19.4.0-alpine`, `19.4.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.4`, `19.4-bullseye`, `19.4.0`, `19.4.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.4-bullseye-slim`, `19.4-slim`, `19.4.0-bullseye-slim`, `19.4.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.4-buster`, `19.4.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/buster/Dockerfile) -- [`19-buster-slim`, `19.4-buster-slim`, `19.4.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/28ad5e0e5d0e80df44d897c9057ffd6419a3c7a5/19/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.5-alpine3.16`, `19.5.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.5-alpine`, `19.5-alpine3.17`, `19.5.0-alpine`, `19.5.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.5`, `19.5-bullseye`, `19.5.0`, `19.5.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.5-bullseye-slim`, `19.5-slim`, `19.5.0-bullseye-slim`, `19.5.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.5-buster`, `19.5.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/buster/Dockerfile) +- [`19-buster-slim`, `19.5-buster-slim`, `19.5.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/buster-slim/Dockerfile) - [`18-alpine3.16`, `18.13-alpine3.16`, `18.13.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/alpine3.16/Dockerfile) - [`18-alpine`, `18-alpine3.17`, `18.13-alpine`, `18.13-alpine3.17`, `18.13.0-alpine`, `18.13.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/alpine3.17/Dockerfile) - [`18`, `18-bullseye`, `18.13`, `18.13-bullseye`, `18.13.0`, `18.13.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/bullseye/Dockerfile) From 94f25a1ea232fabf717d8871e9d30e691dd06c3a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jan 2023 11:08:48 -0800 Subject: [PATCH 0026/2686] Run update.sh --- eclipse-temurin/README.md | 152 +++++++++++++++++++------------------- solr/README.md | 8 +- 2 files changed, 80 insertions(+), 80 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 47a1e3d6b31d..eb4a3c00fea1 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,24 +28,24 @@ WARNING: ## Simple Tags -- [`8u352-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/8/jdk/alpine/Dockerfile.releases.full) -- [`8u352-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u352-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u352-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/centos/Dockerfile.releases.full) -- [`8u352-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u352-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u352-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u352-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u352-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u352-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/8/jre/alpine/Dockerfile.releases.full) -- [`8u352-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u352-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u352-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/centos/Dockerfile.releases.full) -- [`8u352-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u352-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u352-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u352-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u352-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u362-b09-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/alpine/Dockerfile.releases.full) +- [`8u362-b09-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u362-b09-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u362-b09-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/centos/Dockerfile.releases.full) +- [`8u362-b09-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u362-b09-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u362-b09-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u362-b09-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u362-b09-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u362-b09-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/alpine/Dockerfile.releases.full) +- [`8u362-b09-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u362-b09-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u362-b09-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/centos/Dockerfile.releases.full) +- [`8u362-b09-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u362-b09-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u362-b09-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u362-b09-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u362-b09-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`11.0.18_10-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/alpine/Dockerfile.releases.full) - [`11.0.18_10-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/focal/Dockerfile.releases.full) - [`11.0.18_10-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) @@ -82,47 +82,47 @@ WARNING: - [`17.0.6_10-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.6_10-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.6_10-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`19.0.1_10-jdk-alpine`, `19-jdk-alpine`, `19-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/19/jdk/alpine/Dockerfile.releases.full) -- [`19.0.1_10-jdk-focal`, `19-jdk-focal`, `19-focal`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`19.0.1_10-jdk-jammy`, `19-jdk-jammy`, `19-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`19.0.1_10-jdk-centos7`, `19-jdk-centos7`, `19-centos7`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/centos/Dockerfile.releases.full) -- [`19.0.1_10-jdk-ubi9-minimal`, `19-jdk-ubi9-minimal`, `19-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/19/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`19.0.1_10-jdk-windowsservercore-ltsc2022`, `19-jdk-windowsservercore-ltsc2022`, `19-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`19.0.1_10-jdk-nanoserver-ltsc2022`, `19-jdk-nanoserver-ltsc2022`, `19-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`19.0.1_10-jdk-windowsservercore-1809`, `19-jdk-windowsservercore-1809`, `19-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`19.0.1_10-jdk-nanoserver-1809`, `19-jdk-nanoserver-1809`, `19-nanoserver-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`19.0.1_10-jre-alpine`, `19-jre-alpine`](https://github.com/adoptium/containers/blob/3bab86587b3f3af5f67f9a6e5d33c50fdaecd4db/19/jre/alpine/Dockerfile.releases.full) -- [`19.0.1_10-jre-focal`, `19-jre-focal`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/ubuntu/focal/Dockerfile.releases.full) -- [`19.0.1_10-jre-jammy`, `19-jre-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`19.0.1_10-jre-centos7`, `19-jre-centos7`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/centos/Dockerfile.releases.full) -- [`19.0.1_10-jre-ubi9-minimal`, `19-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/910222e9f290871048016f4e0afd0c203d4a80d5/19/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`19.0.1_10-jre-windowsservercore-ltsc2022`, `19-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`19.0.1_10-jre-nanoserver-ltsc2022`, `19-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`19.0.1_10-jre-windowsservercore-1809`, `19-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`19.0.1_10-jre-nanoserver-1809`, `19-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`19.0.2_7-jdk-alpine`, `19-jdk-alpine`, `19-alpine`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/alpine/Dockerfile.releases.full) +- [`19.0.2_7-jdk-focal`, `19-jdk-focal`, `19-focal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`19.0.2_7-jdk-jammy`, `19-jdk-jammy`, `19-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`19.0.2_7-jdk-centos7`, `19-jdk-centos7`, `19-centos7`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/centos/Dockerfile.releases.full) +- [`19.0.2_7-jdk-ubi9-minimal`, `19-jdk-ubi9-minimal`, `19-ubi9-minimal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`19.0.2_7-jdk-windowsservercore-ltsc2022`, `19-jdk-windowsservercore-ltsc2022`, `19-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`19.0.2_7-jdk-nanoserver-ltsc2022`, `19-jdk-nanoserver-ltsc2022`, `19-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`19.0.2_7-jdk-windowsservercore-1809`, `19-jdk-windowsservercore-1809`, `19-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`19.0.2_7-jdk-nanoserver-1809`, `19-jdk-nanoserver-1809`, `19-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`19.0.2_7-jre-alpine`, `19-jre-alpine`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/alpine/Dockerfile.releases.full) +- [`19.0.2_7-jre-focal`, `19-jre-focal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/focal/Dockerfile.releases.full) +- [`19.0.2_7-jre-jammy`, `19-jre-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`19.0.2_7-jre-centos7`, `19-jre-centos7`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/centos/Dockerfile.releases.full) +- [`19.0.2_7-jre-ubi9-minimal`, `19-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`19.0.2_7-jre-windowsservercore-ltsc2022`, `19-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`19.0.2_7-jre-nanoserver-ltsc2022`, `19-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`19.0.2_7-jre-windowsservercore-1809`, `19-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`19.0.2_7-jre-nanoserver-1809`, `19-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags -- `8u352-b08-jdk`, `8-jdk`, `8`: - - [`8u352-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`8u352-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u352-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u352-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u352-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u352-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `8u352-b08-jre`, `8-jre`: - - [`8u352-b08-jre-jammy`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`8u352-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u352-b08-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u352-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u352-b08-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u352-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u352-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/fa65b46d19f4db0e1c8736c3d7b2a8392dd58b1b/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u362-b09-jdk`, `8-jdk`, `8`: + - [`8u362-b09-jdk-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u362-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u362-b09-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u362-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u362-b09-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u362-b09-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u362-b09-jre`, `8-jre`: + - [`8u362-b09-jre-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u362-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u362-b09-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u362-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u362-b09-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u362-b09-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u362-b09-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.18_10-jdk`, `11-jdk`, `11`: - [`11.0.18_10-jdk-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.18_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) @@ -163,26 +163,26 @@ WARNING: - `17.0.6_10-jre-nanoserver`, `17-jre-nanoserver`: - [`17.0.6_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.6_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `19.0.1_10-jdk`, `19-jdk`, `19`, `latest`: - - [`19.0.1_10-jdk-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`19.0.1_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.1_10-jdk-windowsservercore`, `19-jdk-windowsservercore`, `19-windowsservercore`: - - [`19.0.1_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.1_10-jdk-nanoserver`, `19-jdk-nanoserver`, `19-nanoserver`: - - [`19.0.1_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `19.0.1_10-jre`, `19-jre`: - - [`19.0.1_10-jre-jammy`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`19.0.1_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.1_10-jre-windowsservercore`, `19-jre-windowsservercore`: - - [`19.0.1_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.1_10-jre-nanoserver`, `19-jre-nanoserver`: - - [`19.0.1_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`19.0.1_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/e37c219c8f2aef0c0028a627b1e372a046138dea/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `19.0.2_7-jdk`, `19-jdk`, `19`, `latest`: + - [`19.0.2_7-jdk-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`19.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `19.0.2_7-jdk-windowsservercore`, `19-jdk-windowsservercore`, `19-windowsservercore`: + - [`19.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `19.0.2_7-jdk-nanoserver`, `19-jdk-nanoserver`, `19-nanoserver`: + - [`19.0.2_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `19.0.2_7-jre`, `19-jre`: + - [`19.0.2_7-jre-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`19.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `19.0.2_7-jre-windowsservercore`, `19-jre-windowsservercore`: + - [`19.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `19.0.2_7-jre-nanoserver`, `19-jre-nanoserver`: + - [`19.0.2_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`19.0.2_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 79751eae676f..2b69dcfa8948 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.0`, `9.1`, `9`, `latest`](https://github.com/apache/solr-docker/blob/c07ee789c60dd4be20d63e8172180ac8a2bd919e/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/c07ee789c60dd4be20d63e8172180ac8a2bd919e/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/c07ee789c60dd4be20d63e8172180ac8a2bd919e/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/c07ee789c60dd4be20d63e8172180ac8a2bd919e/8.11-slim/Dockerfile) +- [`9.1.1`, `9.1`, `9`, `latest`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/8.11-slim/Dockerfile) # Quick reference (cont.) From 87a3449caef5b3afb624ad44f688c989a3ec3459 Mon Sep 17 00:00:00 2001 From: Joe Ferguson Date: Wed, 25 Jan 2023 13:17:28 -0800 Subject: [PATCH 0027/2686] Adjust ghost persistent storage examples --- ghost/content.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/ghost/content.md b/ghost/content.md index d475b3ea12e2..0b42e0b5622a 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -32,18 +32,32 @@ For upgrading your Ghost container you will want to mount your data to the appro ## Stateful -Mount your existing content. In this example we also use the Alpine base image. +Mount your existing content. In this example we also use the Alpine Linux based image. ```console -$ docker run -d --name some-ghost -e NODE_ENV=development -p 3001:2368 -v /path/to/ghost/blog:/var/lib/ghost/content %%IMAGE%%:alpine +$ docker run -d \ + --name some-ghost \ + -e NODE_ENV=development \ + -e database__connection__filename='/var/lib/ghost/content/data/ghost.db' \ + -p 3001:2368 \ + -v /path/to/ghost/blog:/var/lib/ghost/content \ + %%IMAGE%%:alpine ``` +Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the `docker-compose` example below). + ### Docker Volume Alternatively you can use a named [docker volume](https://docs.docker.com/storage/volumes/) instead of a direct host path for `/var/lib/ghost/content`: ```console -$ docker run -d --name some-ghost -e NODE_ENV=development -v some-ghost-data:/var/lib/ghost/content %%IMAGE%% +$ docker run -d \ + --name some-ghost \ + -e NODE_ENV=development \ + -e database__connection__filename='/var/lib/ghost/content/data/ghost.db' \ + -p 3001:2368 \ + -v some-ghost-data:/var/lib/ghost/content \ + %%IMAGE%% ``` ## Configuration From 27b7c7e6a132add840bda44f0cd4e5d17f262c40 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jan 2023 14:08:49 -0800 Subject: [PATCH 0028/2686] Run update.sh --- ghost/README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 02b518b87ef6..11e200350b2e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -82,18 +82,32 @@ For upgrading your Ghost container you will want to mount your data to the appro ## Stateful -Mount your existing content. In this example we also use the Alpine base image. +Mount your existing content. In this example we also use the Alpine Linux based image. ```console -$ docker run -d --name some-ghost -e NODE_ENV=development -p 3001:2368 -v /path/to/ghost/blog:/var/lib/ghost/content ghost:alpine +$ docker run -d \ + --name some-ghost \ + -e NODE_ENV=development \ + -e database__connection__filename='/var/lib/ghost/content/data/ghost.db' \ + -p 3001:2368 \ + -v /path/to/ghost/blog:/var/lib/ghost/content \ + ghost:alpine ``` +Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the `docker-compose` example below). + ### Docker Volume Alternatively you can use a named [docker volume](https://docs.docker.com/storage/volumes/) instead of a direct host path for `/var/lib/ghost/content`: ```console -$ docker run -d --name some-ghost -e NODE_ENV=development -v some-ghost-data:/var/lib/ghost/content ghost +$ docker run -d \ + --name some-ghost \ + -e NODE_ENV=development \ + -e database__connection__filename='/var/lib/ghost/content/data/ghost.db' \ + -p 3001:2368 \ + -v some-ghost-data:/var/lib/ghost/content \ + ghost ``` ## Configuration From f76659ca40d5673f542c2fe712dc62d6757ab49a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jan 2023 17:08:48 -0800 Subject: [PATCH 0029/2686] Run update.sh --- ghost/README.md | 4 ++-- mongo/README.md | 30 +++++++++++++++--------------- redmine/README.md | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 11e200350b2e..8027f42eab49 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.31.0`, `5.31`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6f8c7d789bf0634cacf9b60b907c854acce23b17/5/debian/Dockerfile) -- [`5.31.0-alpine`, `5.31-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6f8c7d789bf0634cacf9b60b907c854acce23b17/5/alpine/Dockerfile) +- [`5.32.0`, `5.32`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef413dd33d2387127b48539e6e41e5436034413f/5/debian/Dockerfile) +- [`5.32.0-alpine`, `5.32-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef413dd33d2387127b48539e6e41e5436034413f/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 8d3541d21b09..241f3ebc8892 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`6.0.3-focal`, `6.0-focal`, `6-focal`, `focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/6.0/Dockerfile) -- [`6.0.3-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.3-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.3-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.3-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.4-focal`, `6.0-focal`, `6-focal`, `focal`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/Dockerfile) +- [`6.0.4-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.4-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.14-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/5.0/Dockerfile) - [`5.0.14-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) @@ -51,16 +51,16 @@ WARNING: ## Shared Tags -- `6.0.3`, `6.0`, `6`, `latest`: - - [`6.0.3-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/6.0/Dockerfile) - - [`6.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.3-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.3-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b828cbca8f06a7c2bc88c7700bb781c6ca13479f/6.0/windows/nanoserver-1809/Dockerfile) +- `6.0.4`, `6.0`, `6`, `latest`: + - [`6.0.4-focal`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/Dockerfile) + - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.4-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.4-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.14`, `5.0`, `5`: - [`5.0.14-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/5.0/Dockerfile) - [`5.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index de195e471616..77e829300e80 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -27,7 +27,7 @@ WARNING: - [`5.0.4`, `5.0`, `5`, `latest`, `5.0.4-bullseye`, `5.0-bullseye`, `5-bullseye`, `bullseye`](https://github.com/docker-library/redmine/blob/8749011cf59188062efd880e64cd69e800e1d447/5.0/Dockerfile) - [`5.0.4-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.4-alpine3.16`, `5.0-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/docker-library/redmine/blob/8749011cf59188062efd880e64cd69e800e1d447/5.0/alpine/Dockerfile) - [`4.2.9`, `4.2`, `4`, `4.2.9-bullseye`, `4.2-bullseye`, `4-bullseye`](https://github.com/docker-library/redmine/blob/6ba68a3fdcc615faab7fa8e32e7b3bf8247a5fb8/4.2/Dockerfile) -- [`4.2.9-passenger`, `4.2-passenger`, `4-passenger`](https://github.com/docker-library/redmine/blob/79ca73df39c04878fb0d1e00401d3e790e1973b6/4.2/passenger/Dockerfile) +- [`4.2.9-passenger`, `4.2-passenger`, `4-passenger`](https://github.com/docker-library/redmine/blob/ec4ba2df717b0c0adbbf34dc3a1a0e65f93a11e7/4.2/passenger/Dockerfile) - [`4.2.9-alpine`, `4.2-alpine`, `4-alpine`, `4.2.9-alpine3.16`, `4.2-alpine3.16`, `4-alpine3.16`](https://github.com/docker-library/redmine/blob/6ba68a3fdcc615faab7fa8e32e7b3bf8247a5fb8/4.2/alpine/Dockerfile) # Quick reference (cont.) From 4da223936dac41dde092d68df7ebef4049c0b965 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jan 2023 14:08:49 -0800 Subject: [PATCH 0030/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index b705c9a5d6d9..49dfcaaea556 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.20221210.0`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/9025e0ce9166d150ef8c28dd0d88465a250cf79d/Dockerfile) -- [`2.0.20221210.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/2040b2eb2433e45f0f20ab4d8475bf122580a6f5/Dockerfile) +- [`2.0.20230119.1`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/8cd3a1d4d2516e33d3b26247120ecfc8d9d01d07/Dockerfile) +- [`2.0.20230119.1-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/b5c54379aea40f6d9a0d50af4677399d0defff7b/Dockerfile) - [`2018.03.0.20221209.1`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/a55f337ad62fc1e1a0c06843ecd0b8f5b10347bb/Dockerfile) - [`2018.03.0.20221209.1-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/6bb52a2cc2d7899405098cff4373bfa397b6c4a8/Dockerfile) - [`2022.0.20221207.4`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/423528b1be8f280af50b6fe8c2cfa296b05e995f/Dockerfile) From 3e93e67162415e6025f8e169684be716c0413265 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jan 2023 15:08:48 -0800 Subject: [PATCH 0031/2686] Run update.sh --- rust/README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/rust/README.md b/rust/README.md index 1409f19e4f48..c35847e0dedc 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,12 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.66-buster`, `1.66.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/buster/Dockerfile) -- [`1-slim-buster`, `1.66-slim-buster`, `1.66.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.66-bullseye`, `1.66.1-bullseye`, `bullseye`, `1`, `1.66`, `1.66.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.66-slim-bullseye`, `1.66.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.66-slim`, `1.66.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/bullseye/slim/Dockerfile) -- [`1-alpine3.16`, `1.66-alpine3.16`, `1.66.1-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.66-alpine3.17`, `1.66.1-alpine3.17`, `alpine3.17`, `1-alpine`, `1.66-alpine`, `1.66.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/86cc84d5a8559719aaee3cfbdaf828815ef675d8/1.66.1/alpine3.17/Dockerfile) +- [`1-buster`, `1.67-buster`, `1.67.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/buster/Dockerfile) +- [`1-slim-buster`, `1.67-slim-buster`, `1.67.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.67-bullseye`, `1.67.0-bullseye`, `bullseye`, `1`, `1.67`, `1.67.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.67-slim-bullseye`, `1.67.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.67-slim`, `1.67.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.67-bookworm`, `1.67.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.67-slim-bookworm`, `1.67.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.67-alpine3.16`, `1.67.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.67-alpine3.17`, `1.67.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.67-alpine`, `1.67.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/alpine3.17/Dockerfile) # Quick reference (cont.) @@ -120,7 +122,7 @@ The `rust` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From 2996d001bec77b0e6a187aae62a86cf10219cdd3 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Fri, 27 Jan 2023 13:25:50 +0100 Subject: [PATCH 0032/2686] Update Rust versions in examples --- rust/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/content.md b/rust/content.md index ce3595d6b517..7900c61eefdf 100644 --- a/rust/content.md +++ b/rust/content.md @@ -13,7 +13,7 @@ Rust is a systems programming language sponsored by Mozilla Research. It is desi The most straightforward way to use this image is to use a Rust container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project: ```dockerfile -FROM %%IMAGE%%:1.31 +FROM %%IMAGE%%:1.67 WORKDIR /usr/src/myapp COPY . . @@ -33,12 +33,12 @@ $ docker run -it --rm --name my-running-app my-rust-app This creates an image that has all of the rust tooling for the image, which is 1.8gb. If you just want the compiled application: ```dockerfile -FROM rust:1.40 as builder +FROM rust:1.67 as builder WORKDIR /usr/src/myapp COPY . . RUN cargo install --path . -FROM debian:buster-slim +FROM debian:bullseye-slim RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/myapp /usr/local/bin/myapp CMD ["myapp"] From 244d4199128c8a717e2b71ef9ae9adfa7999d774 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Jan 2023 12:08:48 -0800 Subject: [PATCH 0033/2686] Run update.sh --- neo4j/README.md | 6 ++---- swipl/README.md | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 192f685b504a..c9ca3f6c7716 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0`, `5.3.0-community`, `5.3`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/2318e8788222c303a84b819f190271a531ef92ea/5.3.0/community/Dockerfile) -- [`5.3.0-enterprise`, `5.3-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/2318e8788222c303a84b819f190271a531ef92ea/5.3.0/enterprise/Dockerfile) +- [`5.4.0`, `5.4.0-community`, `5.4`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/community/Dockerfile) +- [`5.4.0-enterprise`, `5.4-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/enterprise/Dockerfile) - [`4.4.16`, `4.4.16-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.4.16/community/Dockerfile) - [`4.4.16-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.4.16/enterprise/Dockerfile) -- [`4.3.23`, `4.3.23-community`, `4.3`, `4.3-community`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.3.23/community/Dockerfile) -- [`4.3.23-enterprise`, `4.3-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.3.23/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 627edbde2ec6..e58b7b208c57 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.1`](https://github.com/SWI-Prolog/docker-swipl/blob/d74a1b64f53d54d7ed6e74b3c36e5c6799e8964e/9.1.1/bullseye/Dockerfile) -- [`stable`, `9.0.2`](https://github.com/SWI-Prolog/docker-swipl/blob/d74a1b64f53d54d7ed6e74b3c36e5c6799e8964e/9.0.2/bullseye/Dockerfile) +- [`latest`, `9.1.4`](https://github.com/SWI-Prolog/docker-swipl/blob/366d912cf8e9c8ba3783a76acf57380d7a281883/9.1.4/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/366d912cf8e9c8ba3783a76acf57380d7a281883/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 667ff1f44729459208b9bf479c2d1005c010193a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Jan 2023 15:08:51 -0800 Subject: [PATCH 0034/2686] Run update.sh --- arangodb/README.md | 4 ++-- consul/README.md | 6 +++--- docker/README.md | 4 ++-- haproxy/README.md | 8 ++++---- mongo/README.md | 15 +++++++++++++++ oraclelinux/README.md | 12 ++++++------ rust/README.md | 6 +++--- 7 files changed, 35 insertions(+), 20 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 64b51426e61b..3d4bd698d6f1 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.8`, `3.8.8`](https://github.com/arangodb/arangodb-docker/blob/6e5a02cd7f5106076a1faf24360218c3e2ca3003/alpine/3.8.8/Dockerfile) -- [`3.9`, `3.9.7`](https://github.com/arangodb/arangodb-docker/blob/7e84f26b857856a5350c5c636f6bedc43ee95ab0/alpine/3.9.7/Dockerfile) -- [`3.10`, `3.10.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/71fda53ef666d8c85fbd70748a26e7c86bcf3fbf/alpine/3.10.2/Dockerfile) +- [`3.9`, `3.9.8`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.9.8/Dockerfile) +- [`3.10`, `3.10.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.10.3/Dockerfile) # Quick reference (cont.) diff --git a/consul/README.md b/consul/README.md index 75b9089706bf..37bccb0800e9 100644 --- a/consul/README.md +++ b/consul/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.14.3`, `1.14`, `latest`](https://github.com/hashicorp/docker-consul/blob/8dd04b12354ab019a6e96b5f7597bb326659507f/0.X/Dockerfile) -- [`1.13.5`, `1.13`](https://github.com/hashicorp/docker-consul/blob/795461990fe29f494ec0c06bb27088bbd8ca40f4/0.X/Dockerfile) -- [`1.12.8`, `1.12`](https://github.com/hashicorp/docker-consul/blob/a91ee4fadf7500dfdfe1f6abd405b31442cd1745/0.X/Dockerfile) +- [`1.14.4`, `1.14`, `latest`](https://github.com/hashicorp/docker-consul/blob/c82013e7547a80e3f665a92c2e708a6e717aeaef/0.X/Dockerfile) +- [`1.13.6`, `1.13`](https://github.com/hashicorp/docker-consul/blob/763f155f091b9aac1015adc9f7a28818ee1eb3f0/0.X/Dockerfile) +- [`1.12.9`, `1.12`](https://github.com/hashicorp/docker-consul/blob/49a5ec3b58813906bab24a055d23194736905b63/0.X/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 958551752dd9..aef4c28b53eb 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/cli/Dockerfile) +- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/4904d1d77c6a11cf526f01ccdf6729e3e8c547ec/23.0-rc/cli/Dockerfile) - [`23.0.0-rc.3-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.3-dind-alpine3.17`, `23.0.0-rc.3`, `23.0-rc`, `rc`, `23.0.0-rc.3-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind/Dockerfile) - [`23.0.0-rc.3-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind-rootless/Dockerfile) - [`23.0.0-rc.3-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) - [`23.0.0-rc.3-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.0-rc.3-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/cli/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/01890140c36e50cb3d035cba6765800f8e3295b8/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 866b19278d18..9d20193abcd1 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,10 +32,10 @@ WARNING: - [`2.6.8-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.8-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/alpine/Dockerfile) - [`2.5.11`, `2.5`, `2.5.11-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/Dockerfile) - [`2.5.11-alpine`, `2.5-alpine`, `2.5.11-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/alpine/Dockerfile) -- [`2.4.20`, `2.4`, `2.4.20-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/Dockerfile) -- [`2.4.20-alpine`, `2.4-alpine`, `2.4.20-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.4/alpine/Dockerfile) -- [`2.2.26`, `2.2`, `2.2.26-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.2/Dockerfile) -- [`2.2.26-alpine`, `2.2-alpine`, `2.2.26-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.2/alpine/Dockerfile) +- [`2.4.21`, `2.4`, `2.4.21-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/Dockerfile) +- [`2.4.21-alpine`, `2.4-alpine`, `2.4.21-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/alpine/Dockerfile) +- [`2.2.27`, `2.2`, `2.2.27-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/eef0f5eb78c5477243d51b9b1d426a1774b2e029/2.2/Dockerfile) +- [`2.2.27-alpine`, `2.2-alpine`, `2.2.27-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/eef0f5eb78c5477243d51b9b1d426a1774b2e029/2.2/alpine/Dockerfile) - [`2.0.30`, `2.0`, `2.0.30-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/Dockerfile) - [`2.0.30-alpine`, `2.0-alpine`, `2.0.30-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 241f3ebc8892..9588ab5e6997 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,6 +38,11 @@ WARNING: - [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.14-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.19-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/Dockerfile) +- [`4.4.19-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.19-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.19-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.19-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.18-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) @@ -71,6 +76,16 @@ WARNING: - `5.0.14-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.19-rc0`, `4.4-rc`: + - [`4.4.19-rc0-focal`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/Dockerfile) + - [`4.4.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.19-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.19-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.18`, `4.4`, `4`: - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 3633888622bb..9908ec22d37a 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/0c48214d49bc1e2e1498ded618a6f898fd3af2b4/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index c35847e0dedc..dad44d4e0632 100644 --- a/rust/README.md +++ b/rust/README.md @@ -67,7 +67,7 @@ Rust is a systems programming language sponsored by Mozilla Research. It is desi The most straightforward way to use this image is to use a Rust container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project: ```dockerfile -FROM rust:1.31 +FROM rust:1.67 WORKDIR /usr/src/myapp COPY . . @@ -87,12 +87,12 @@ $ docker run -it --rm --name my-running-app my-rust-app This creates an image that has all of the rust tooling for the image, which is 1.8gb. If you just want the compiled application: ```dockerfile -FROM rust:1.40 as builder +FROM rust:1.67 as builder WORKDIR /usr/src/myapp COPY . . RUN cargo install --path . -FROM debian:buster-slim +FROM debian:bullseye-slim RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/myapp /usr/local/bin/myapp CMD ["myapp"] From 3f3032018fa2439f5854097f93c79710c416f87a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jan 2023 11:08:48 -0800 Subject: [PATCH 0035/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 0005a15ba473..16703f94b340 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,24 +42,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-6-jdk-oraclelinux8`, `21-ea-6-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-6-jdk-oracle`, `21-ea-6-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-6-jdk-oraclelinux7`, `21-ea-6-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-6-jdk-bullseye`, `21-ea-6-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/bullseye/Dockerfile) -- [`21-ea-6-jdk-slim-bullseye`, `21-ea-6-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-6-jdk-slim`, `21-ea-6-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-6-jdk-buster`, `21-ea-6-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/buster/Dockerfile) -- [`21-ea-6-jdk-slim-buster`, `21-ea-6-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/slim-buster/Dockerfile) -- [`21-ea-6-jdk-windowsservercore-ltsc2022`, `21-ea-6-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-6-jdk-windowsservercore-1809`, `21-ea-6-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-6-jdk-nanoserver-1809`, `21-ea-6-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-ea-32-jdk-oraclelinux8`, `20-ea-32-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-32-jdk-oracle`, `20-ea-32-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux8/Dockerfile) -- [`20-ea-32-jdk-oraclelinux7`, `20-ea-32-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux7/Dockerfile) -- [`20-ea-32-jdk-bullseye`, `20-ea-32-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/bullseye/Dockerfile) -- [`20-ea-32-jdk-slim-bullseye`, `20-ea-32-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-32-jdk-slim`, `20-ea-32-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/slim-bullseye/Dockerfile) -- [`20-ea-32-jdk-buster`, `20-ea-32-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/buster/Dockerfile) -- [`20-ea-32-jdk-slim-buster`, `20-ea-32-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/slim-buster/Dockerfile) -- [`20-ea-32-jdk-windowsservercore-ltsc2022`, `20-ea-32-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-ea-32-jdk-windowsservercore-1809`, `20-ea-32-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-ea-32-jdk-nanoserver-1809`, `20-ea-32-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-7-jdk-oraclelinux8`, `21-ea-7-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-7-jdk-oracle`, `21-ea-7-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-7-jdk-oraclelinux7`, `21-ea-7-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-7-jdk-bullseye`, `21-ea-7-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/bullseye/Dockerfile) +- [`21-ea-7-jdk-slim-bullseye`, `21-ea-7-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-7-jdk-slim`, `21-ea-7-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-7-jdk-buster`, `21-ea-7-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/buster/Dockerfile) +- [`21-ea-7-jdk-slim-buster`, `21-ea-7-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/slim-buster/Dockerfile) +- [`21-ea-7-jdk-windowsservercore-ltsc2022`, `21-ea-7-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-7-jdk-windowsservercore-1809`, `21-ea-7-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-7-jdk-nanoserver-1809`, `21-ea-7-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`20-ea-33-jdk-oraclelinux8`, `20-ea-33-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-33-jdk-oracle`, `20-ea-33-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux8/Dockerfile) +- [`20-ea-33-jdk-oraclelinux7`, `20-ea-33-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux7/Dockerfile) +- [`20-ea-33-jdk-bullseye`, `20-ea-33-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/bullseye/Dockerfile) +- [`20-ea-33-jdk-slim-bullseye`, `20-ea-33-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-33-jdk-slim`, `20-ea-33-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/slim-bullseye/Dockerfile) +- [`20-ea-33-jdk-buster`, `20-ea-33-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/buster/Dockerfile) +- [`20-ea-33-jdk-slim-buster`, `20-ea-33-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/slim-buster/Dockerfile) +- [`20-ea-33-jdk-windowsservercore-ltsc2022`, `20-ea-33-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20-ea-33-jdk-windowsservercore-1809`, `20-ea-33-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) +- [`20-ea-33-jdk-nanoserver-1809`, `20-ea-33-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/nanoserver-1809/Dockerfile) - [`18.0.2.1-jdk-oraclelinux8`, `18.0.2.1-oraclelinux8`, `18.0.2-jdk-oraclelinux8`, `18.0.2-oraclelinux8`, `18.0-jdk-oraclelinux8`, `18.0-oraclelinux8`, `18-jdk-oraclelinux8`, `18-oraclelinux8`, `jdk-oraclelinux8`, `oraclelinux8`, `18.0.2.1-jdk-oracle`, `18.0.2.1-oracle`, `18.0.2-jdk-oracle`, `18.0.2-oracle`, `18.0-jdk-oracle`, `18.0-oracle`, `18-jdk-oracle`, `18-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-oraclelinux7`, `18.0.2.1-oraclelinux7`, `18.0.2-jdk-oraclelinux7`, `18.0.2-oraclelinux7`, `18.0-jdk-oraclelinux7`, `18.0-oraclelinux7`, `18-jdk-oraclelinux7`, `18-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux7/Dockerfile) - [`18.0.2.1-jdk-bullseye`, `18.0.2.1-bullseye`, `18.0.2-jdk-bullseye`, `18.0.2-bullseye`, `18.0-jdk-bullseye`, `18.0-bullseye`, `18-jdk-bullseye`, `18-bullseye`, `jdk-bullseye`, `bullseye`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/bullseye/Dockerfile) @@ -72,24 +72,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-6-jdk`, `21-ea-6`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-6-jdk-windowsservercore`, `21-ea-6-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-6-jdk-nanoserver`, `21-ea-6-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ed61be5f5ef7ed1ee0393b0bd67caacd049aa3f/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-ea-32-jdk`, `20-ea-32`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: - - [`20-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/oraclelinux8/Dockerfile) - - [`20-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-32-jdk-windowsservercore`, `20-ea-32-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-32-jdk-nanoserver`, `20-ea-32-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8e682cce923bc1fc60604708a1cc4976f18f10d6/20/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-7-jdk`, `21-ea-7`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-7-jdk-windowsservercore`, `21-ea-7-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-7-jdk-nanoserver`, `21-ea-7-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/nanoserver-1809/Dockerfile) +- `20-ea-33-jdk`, `20-ea-33`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: + - [`20-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux8/Dockerfile) + - [`20-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-33-jdk-windowsservercore`, `20-ea-33-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-33-jdk-nanoserver`, `20-ea-33-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/nanoserver-1809/Dockerfile) - `18.0.2.1-jdk`, `18.0.2.1`, `18.0.2-jdk`, `18.0.2`, `18.0-jdk`, `18.0`, `18-jdk`, `18`, `jdk`, `latest`: - [`18.0.2.1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From ee536c32d39119a3cec753f1db4dce531d995702 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jan 2023 12:08:50 -0800 Subject: [PATCH 0036/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- matomo/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 4b64c864ba17..cc22dfe1d537 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230122.0.120412`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e338afb69df3895a2615b9f81370676e2dad45bc/Dockerfile.base) -- [`base-devel`, `base-devel-20230122.0.120412`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e338afb69df3895a2615b9f81370676e2dad45bc/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230129.0.122153`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/75dd5eff9d3bf9fdeb3201d33baa4fae53fbc5e7/Dockerfile.base) +- [`base-devel`, `base-devel-20230129.0.122153`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/75dd5eff9d3bf9fdeb3201d33baa4fae53fbc5e7/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 65251c2412e5..317a0563ca0b 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/83dc1ce6db0daaca096b4df440c27bd9ab21566f/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/9f0f421fa2e4d90764b9f0555417f22c356e9bea/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index eae5cf80b903..7ae6be064cfc 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.13.1-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.1`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/apache/Dockerfile) -- [`4.13.1-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/fpm/Dockerfile) -- [`4.13.1-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/441f2e293b3f405f4f41fb74eb90b712d8964c62/fpm-alpine/Dockerfile) +- [`4.13.2-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.2`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/apache/Dockerfile) +- [`4.13.2-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/fpm/Dockerfile) +- [`4.13.2-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 8376f813582d5eb7f12e71f9aef06616fffc37bf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jan 2023 15:08:50 -0800 Subject: [PATCH 0037/2686] Run update.sh --- monica/README.md | 6 +++--- photon/README.md | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/monica/README.md b/monica/README.md index d84fefda154c..531b0deb6eb4 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.0-apache`, `3.7-apache`, `3-apache`, `apache`, `3.7.0`, `3.7`, `3`, `latest`](https://github.com/monicahq/docker/blob/c0340b2017890e6a465d1d4ee03331d2effc0335/apache/Dockerfile) -- [`3.7.0-fpm-alpine`, `3.7-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/c0340b2017890e6a465d1d4ee03331d2effc0335/fpm-alpine/Dockerfile) -- [`3.7.0-fpm`, `3.7-fpm`, `3-fpm`, `fpm`](https://github.com/monicahq/docker/blob/c0340b2017890e6a465d1d4ee03331d2effc0335/fpm/Dockerfile) +- [`4.0.0-apache`, `4.0-apache`, `4-apache`, `apache`, `4.0.0`, `4.0`, `4`, `latest`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/apache/Dockerfile) +- [`4.0.0-fpm-alpine`, `4.0-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/fpm-alpine/Dockerfile) +- [`4.0.0-fpm`, `4.0-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/fpm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 7edb01ea42f0..a7723d7bbaf6 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) - [`4.0`, `4.0-20230121`, `latest`](https://github.com/vmware/photon-docker-image/blob/0cf696e9b1457497028f8115c9e682c84e8a331d/docker/Dockerfile) -- [`3.0`, `3.0-20230121`](https://github.com/vmware/photon-docker-image/blob/686e03294ecb49ae3b68838de4e2066b48f39aec/docker/Dockerfile) +- [`3.0`, `3.0-20230128`](https://github.com/vmware/photon-docker-image/blob/48b8de1e99610ea45573ac6e1e02dc5568f562fe/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) # Quick reference (cont.) From e53f9967ba4ccd5d9e3c8a8dd31d736e80b26701 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jan 2023 16:14:22 -0800 Subject: [PATCH 0038/2686] Run update.sh --- xwiki/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index eabbdcf4c373..0aff71236357 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`14`, `14.10`, `14.10.3`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.3-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.3-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.3-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mariadb-tomcat/Dockerfile) +- [`15`, `15.0`, `15.0.0`, `15-mysql-tomcat`, `15.0-mysql-tomcat`, `15.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.0-postgres-tomcat`, `15.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.0-mariadb-tomcat`, `15.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.3`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.3-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.3-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.3-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mariadb-tomcat/Dockerfile) - [`14.4`, `14.4.7`, `14.4-mysql-tomcat`, `14.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mysql-tomcat/Dockerfile) - [`14.4-postgres-tomcat`, `14.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/postgres-tomcat/Dockerfile) - [`14.4-mariadb-tomcat`, `14.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mariadb-tomcat/Dockerfile) -- [`13`, `13.10`, `13.10.11`, `13-mysql-tomcat`, `13.10-mysql-tomcat`, `13.10.11-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/cd1487dfd967742d686a60f48f07e984b8f263a3/13/mysql-tomcat/Dockerfile) -- [`13-postgres-tomcat`, `13.10-postgres-tomcat`, `13.10.11-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/cd1487dfd967742d686a60f48f07e984b8f263a3/13/postgres-tomcat/Dockerfile) -- [`13-mariadb-tomcat`, `13.10-mariadb-tomcat`, `13.10.11-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/cd1487dfd967742d686a60f48f07e984b8f263a3/13/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 54617b9e5298e9b8325c59081dcd9bd30cb229d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jan 2023 17:08:51 -0800 Subject: [PATCH 0039/2686] Run update.sh --- swift/README.md | 2 +- ubuntu/README.md | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/swift/README.md b/swift/README.md index 157485f9b08b..7d1a3783f763 100644 --- a/swift/README.md +++ b/swift/README.md @@ -168,7 +168,7 @@ The `swift` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bionic, focal, jammy, or xenial in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like bionic, focal, or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `swift:-slim` diff --git a/ubuntu/README.md b/ubuntu/README.md index baf7ec070f12..da42b8e8a3e6 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20221215`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-bionic-amd64-20221215&id=0ae8196fe7299a6f6954b5f0208f57f170f12c35) -- [`20.04`, `focal-20221130`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-focal-amd64-20221130&id=0373f3064197249345734f2db985a32bced5c541) -- [`22.04`, `jammy-20221130`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-jammy-amd64-20221130&id=5107d90663ceb24789a9fa19136b0753c5651aa0) -- [`22.10`, `kinetic-20221130`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-kinetic-amd64-20221130&id=28c4e64ea84b6e9bcd1352e81cf71dbb47f259cc) -- [`23.04`, `lunar-20221216`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-lunar-amd64-20221216&id=cbaec25db5166d7e31cf418cc5efb5000ffaaf88) -- [`14.04`, `trusty-20191217`, `trusty`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-trusty-amd64-20191217&id=131f6d8ad3ff6875f210766c88b463f96992b5ab) -- [`16.04`, `xenial-20210804`, `xenial`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/Dockerfile?h=refs/tags/dist-xenial-amd64-20210804&id=45e83e2e11f641ba2fea381e705ededbd2778f16) +- [`18.04`, `bionic-20230126`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230126&id=4dd8c0973fccaf8699bac0a666f007b9d05c95fd) +- [`20.04`, `focal-20230126`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230126&id=51f5b41f106b8b1e926fcfd2382813801c571233) +- [`22.04`, `jammy-20230126`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230126&id=c59419b8a85cb1d938e73e83af8f8e6ff4110444) +- [`22.10`, `kinetic-20230126`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230126&id=a806765a4285f4a19789ade917f91d2b878955d8) +- [`23.04`, `lunar-20230124.1`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230124.1&id=407671a226ede7401c411693e77fb4b8bf0adf75) # Quick reference (cont.) @@ -38,7 +36,7 @@ WARNING: [the cloud-images bug tracker](https://bugs.launchpad.net/cloud-images) (include the `docker` tag) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`i386`](https://hub.docker.com/r/i386/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`riscv64`](https://hub.docker.com/r/riscv64/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) + [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`i386`](https://hub.docker.com/r/i386/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) - **Published image artifact details**: [repo-info repo's `repos/ubuntu/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ubuntu) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ubuntu)) From 1cd5616bbfdca812dbd39fade4a84f8ac59bf224 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 31 Jan 2023 11:08:50 -0800 Subject: [PATCH 0040/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 8 ++++---- docker/README.md | 4 ++-- ghost/README.md | 6 +++--- haproxy/README.md | 4 ++-- mongo/README.md | 35 +++++++++++++++++++++++++---------- mysql/README.md | 8 ++++---- postgres/README.md | 10 +++++----- redis/README.md | 6 +++--- 9 files changed, 49 insertions(+), 34 deletions(-) diff --git a/bash/README.md b/bash/README.md index 260abbc2ee11..1c4e5d36f81d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230120`, `devel`, `devel-20230120-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/2f54d82b708da1c2601973bf2b250476bc7253b5/devel/Dockerfile) +- [`devel-20230124`, `devel`, `devel-20230124-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ec76a852138fa7e8a84be2b598da01f9302c7b4b/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 61211ed6d1bd..34220a8136f9 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/835052698f299c06e09ed49c972d6ab7bd2ef223/4.1/Dockerfile) -- [`4.0.7`, `4.0`](https://github.com/docker-library/cassandra/blob/08fa5553ad2dde684ca5337c7fedd173cbc41f39/4.0/Dockerfile) -- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/13e3d6ca1ff1b6c9d780e5f018887c1d28318d50/3.11/Dockerfile) -- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/e92196fdba778656678a9bc9bcb724b8a3584149/3.0/Dockerfile) +- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/4.1/Dockerfile) +- [`4.0.7`, `4.0`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/4.0/Dockerfile) +- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/3.11/Dockerfile) +- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/3.0/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index aef4c28b53eb..ca3f7c98fbb5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/4904d1d77c6a11cf526f01ccdf6729e3e8c547ec/23.0-rc/cli/Dockerfile) +- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/219095a5df21d96ea80078ef748196b9420e293a/23.0-rc/cli/Dockerfile) - [`23.0.0-rc.3-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.3-dind-alpine3.17`, `23.0.0-rc.3`, `23.0-rc`, `rc`, `23.0.0-rc.3-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind/Dockerfile) - [`23.0.0-rc.3-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind-rootless/Dockerfile) - [`23.0.0-rc.3-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) - [`23.0.0-rc.3-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.0-rc.3-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/01890140c36e50cb3d035cba6765800f8e3295b8/20.10/cli/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 8027f42eab49..068753f0dcd3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.32.0`, `5.32`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef413dd33d2387127b48539e6e41e5436034413f/5/debian/Dockerfile) -- [`5.32.0-alpine`, `5.32-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef413dd33d2387127b48539e6e41e5436034413f/5/alpine/Dockerfile) -- [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/debian/Dockerfile) +- [`5.33.2`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dd4d0fbbca6b21399152d57ec71f976e41bc4c8d/5/debian/Dockerfile) +- [`5.33.2-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dd4d0fbbca6b21399152d57ec71f976e41bc4c8d/5/alpine/Dockerfile) +- [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 9d20193abcd1..f07c84384743 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -34,8 +34,8 @@ WARNING: - [`2.5.11-alpine`, `2.5-alpine`, `2.5.11-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/alpine/Dockerfile) - [`2.4.21`, `2.4`, `2.4.21-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/Dockerfile) - [`2.4.21-alpine`, `2.4-alpine`, `2.4.21-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/alpine/Dockerfile) -- [`2.2.27`, `2.2`, `2.2.27-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/eef0f5eb78c5477243d51b9b1d426a1774b2e029/2.2/Dockerfile) -- [`2.2.27-alpine`, `2.2-alpine`, `2.2.27-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/eef0f5eb78c5477243d51b9b1d426a1774b2e029/2.2/alpine/Dockerfile) +- [`2.2.28`, `2.2`, `2.2.28-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/7b38ae30f782f574772f1a4b2dafbea73a77f6a0/2.2/Dockerfile) +- [`2.2.28-alpine`, `2.2-alpine`, `2.2.28-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/7b38ae30f782f574772f1a4b2dafbea73a77f6a0/2.2/alpine/Dockerfile) - [`2.0.30`, `2.0`, `2.0.30-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/Dockerfile) - [`2.0.30-alpine`, `2.0-alpine`, `2.0.30-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 9588ab5e6997..26821a0b0052 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,27 +28,32 @@ WARNING: ## Simple Tags -- [`6.0.4-focal`, `6.0-focal`, `6-focal`, `focal`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/Dockerfile) +- [`6.0.4-focal`, `6.0-focal`, `6-focal`, `focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.14-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/5.0/Dockerfile) +- [`5.0.14-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/5.0/Dockerfile) - [`5.0.14-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.14-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/Dockerfile) +- [`4.4.19-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4-rc/Dockerfile) - [`4.4.19-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.19-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) - [`4.4.19-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.19-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.4/Dockerfile) +- [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.18-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.18-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.23-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.2/Dockerfile) +- [`4.2.24-rc0-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/9b9fc4449c96f1c477a406ebd95771b27f498992/4.2-rc/Dockerfile) +- [`4.2.24-rc0-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.2.24-rc0-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.2.24-rc0-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.2.24-rc0-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-1809/Dockerfile) +- [`4.2.23-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.23-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) - [`4.2.23-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/nanoserver-ltsc2022/Dockerfile) @@ -57,7 +62,7 @@ WARNING: ## Shared Tags - `6.0.4`, `6.0`, `6`, `latest`: - - [`6.0.4-focal`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/Dockerfile) + - [`6.0.4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.4-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: @@ -67,7 +72,7 @@ WARNING: - [`6.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.14`, `5.0`, `5`: - - [`5.0.14-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/5.0/Dockerfile) + - [`5.0.14-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/5.0/Dockerfile) - [`5.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.14-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -77,7 +82,7 @@ WARNING: - [`5.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.19-rc0`, `4.4-rc`: - - [`4.4.19-rc0-focal`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/Dockerfile) + - [`4.4.19-rc0-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4-rc/Dockerfile) - [`4.4.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) - `4.4.19-rc0-windowsservercore`, `4.4-rc-windowsservercore`: @@ -87,7 +92,7 @@ WARNING: - [`4.4.19-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.19-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.18`, `4.4`, `4`: - - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.4/Dockerfile) + - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.18-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: @@ -96,8 +101,18 @@ WARNING: - `4.4.18-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - [`4.4.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) +- `4.2.24-rc0`, `4.2-rc`: + - [`4.2.24-rc0-bionic`](https://github.com/docker-library/mongo/blob/9b9fc4449c96f1c477a406ebd95771b27f498992/4.2-rc/Dockerfile) + - [`4.2.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc0-windowsservercore`, `4.2-rc-windowsservercore`: + - [`4.2.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc0-nanoserver`, `4.2-rc-nanoserver`: + - [`4.2.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.2.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-1809/Dockerfile) - `4.2.23`, `4.2`: - - [`4.2.23-bionic`](https://github.com/docker-library/mongo/blob/fe7b66f65c5169d86c17c8d26789c8f868fa82c9/4.2/Dockerfile) + - [`4.2.23-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) - `4.2.23-windowsservercore`, `4.2-windowsservercore`: diff --git a/mysql/README.md b/mysql/README.md index f03234f42973..d92a8291fc82 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.32`, `8.0`, `8`, `latest`, `8.0.32-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/b3dc453ce1a149ad698e29715d818cf042605163/8.0/Dockerfile.oracle) -- [`8.0.32-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/b3dc453ce1a149ad698e29715d818cf042605163/8.0/Dockerfile.debian) -- [`5.7.41`, `5.7`, `5`, `5.7.41-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/77d590d7d141caa3280ff2d838f70c6581a9d704/5.7/Dockerfile.oracle) -- [`5.7.41-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/77d590d7d141caa3280ff2d838f70c6581a9d704/5.7/Dockerfile.debian) +- [`8.0.32`, `8.0`, `8`, `latest`, `8.0.32-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/8.0/Dockerfile.oracle) +- [`8.0.32-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/8.0/Dockerfile.debian) +- [`5.7.41`, `5.7`, `5`, `5.7.41-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/5.7/Dockerfile.oracle) +- [`5.7.41-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/5.7/Dockerfile.debian) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 7071521969c1..275102d4ce81 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.1`, `15`, `latest`, `15.1-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/41bd7bf3f487e6dc0036fd73efaff6ccb6fbbacd/15/bullseye/Dockerfile) +- [`15.1`, `15`, `latest`, `15.1-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/15/bullseye/Dockerfile) - [`15.1-alpine`, `15-alpine`, `alpine`, `15.1-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/15/alpine/Dockerfile) -- [`14.6`, `14`, `14.6-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/41bd7bf3f487e6dc0036fd73efaff6ccb6fbbacd/14/bullseye/Dockerfile) +- [`14.6`, `14`, `14.6-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/14/bullseye/Dockerfile) - [`14.6-alpine`, `14-alpine`, `14.6-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/14/alpine/Dockerfile) -- [`13.9`, `13`, `13.9-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/41bd7bf3f487e6dc0036fd73efaff6ccb6fbbacd/13/bullseye/Dockerfile) +- [`13.9`, `13`, `13.9-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/13/bullseye/Dockerfile) - [`13.9-alpine`, `13-alpine`, `13.9-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/13/alpine/Dockerfile) -- [`12.13`, `12`, `12.13-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/41bd7bf3f487e6dc0036fd73efaff6ccb6fbbacd/12/bullseye/Dockerfile) +- [`12.13`, `12`, `12.13-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/12/bullseye/Dockerfile) - [`12.13-alpine`, `12-alpine`, `12.13-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/12/alpine/Dockerfile) -- [`11.18-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/41bd7bf3f487e6dc0036fd73efaff6ccb6fbbacd/11/bullseye/Dockerfile) +- [`11.18-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/11/bullseye/Dockerfile) - [`11.18-alpine`, `11-alpine`, `11.18-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 0af426729a99..00e7fa4cb38a 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.8`, `7.0`, `7`, `latest`, `7.0.8-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/787f47c4bda6943e29d85fa45e080bd55b2c08fa/7.0/Dockerfile) +- [`7.0.8`, `7.0`, `7`, `latest`, `7.0.8-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/7.0/Dockerfile) - [`7.0.8-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.8-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/787f47c4bda6943e29d85fa45e080bd55b2c08fa/7.0/alpine/Dockerfile) -- [`6.2.10`, `6.2`, `6`, `6.2.10-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/8b463859e24cfeea54e7a323e530f254e74075f6/6.2/Dockerfile) +- [`6.2.10`, `6.2`, `6`, `6.2.10-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/6.2/Dockerfile) - [`6.2.10-alpine`, `6.2-alpine`, `6-alpine`, `6.2.10-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/8b463859e24cfeea54e7a323e530f254e74075f6/6.2/alpine/Dockerfile) -- [`6.0.17`, `6.0`, `6.0.17-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/e608c4a20201d43672d6f045d4fc4c523e0473ad/6.0/Dockerfile) +- [`6.0.17`, `6.0`, `6.0.17-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/6.0/Dockerfile) - [`6.0.17-alpine`, `6.0-alpine`, `6.0.17-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e608c4a20201d43672d6f045d4fc4c523e0473ad/6.0/alpine/Dockerfile) # Quick reference (cont.) From 6e3c970f702ba04dbce4c2182f4b4883a3ed75ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 31 Jan 2023 16:08:51 -0800 Subject: [PATCH 0041/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- matomo/README.md | 6 +++--- rabbitmq/README.md | 26 +++++++++++++------------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 49dfcaaea556..a99e6305b1a2 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -26,8 +26,8 @@ WARNING: - [`2.0.20230119.1`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/8cd3a1d4d2516e33d3b26247120ecfc8d9d01d07/Dockerfile) - [`2.0.20230119.1-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/b5c54379aea40f6d9a0d50af4677399d0defff7b/Dockerfile) -- [`2018.03.0.20221209.1`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/a55f337ad62fc1e1a0c06843ecd0b8f5b10347bb/Dockerfile) -- [`2018.03.0.20221209.1-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/6bb52a2cc2d7899405098cff4373bfa397b6c4a8/Dockerfile) +- [`2018.03.0.20230124.1`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/8f0a44d2878669df6eea31379d796061d82c89c8/Dockerfile) +- [`2018.03.0.20230124.1-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/f44a38a72435f94e02fa53a30d46d7f20852b619/Dockerfile) - [`2022.0.20221207.4`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/423528b1be8f280af50b6fe8c2cfa296b05e995f/Dockerfile) - [`2022.0.20221207.4-with-sources`, `2022-with-sources`, `devel-with-sources`](https://github.com/amazonlinux/container-images/blob/8b3c53739a3853a701caa4ff99732c3b8325c5b4/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index 7ae6be064cfc..8b4ba0570671 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.13.2-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.2`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/apache/Dockerfile) -- [`4.13.2-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/fpm/Dockerfile) -- [`4.13.2-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/be3ce201c8e5849695ed62f02c66436be1db3bd4/fpm-alpine/Dockerfile) +- [`4.13.3-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.3`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/apache/Dockerfile) +- [`4.13.3-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/fpm/Dockerfile) +- [`4.13.3-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 1e206e057fc7..474e6405fbbf 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.7`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/951163e34b4d4fd5f033ebcd6eebeb4c46f53db9/3.11/ubuntu/Dockerfile) -- [`3.11.7-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.7-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/951163e34b4d4fd5f033ebcd6eebeb4c46f53db9/3.11/alpine/Dockerfile) -- [`3.11.7-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.14`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2667503316c08b40e10b0c43d54d71bfe5f194b8/3.10/ubuntu/Dockerfile) -- [`3.10.14-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2667503316c08b40e10b0c43d54d71bfe5f194b8/3.10/alpine/Dockerfile) -- [`3.10.14-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.27`, `3.9`](https://github.com/docker-library/rabbitmq/blob/83e0a9443ab2b30c3121acd2d6ae0190962d7ba5/3.9/ubuntu/Dockerfile) -- [`3.9.27-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.27-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/83e0a9443ab2b30c3121acd2d6ae0190962d7ba5/3.9/alpine/Dockerfile) -- [`3.9.27-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) +- [`3.11.8`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e08fa77bc1b1601b3bd5638ff5f25d4d2ced724d/3.11/ubuntu/Dockerfile) +- [`3.11.8-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) +- [`3.11.8-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e08fa77bc1b1601b3bd5638ff5f25d4d2ced724d/3.11/alpine/Dockerfile) +- [`3.11.8-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) +- [`3.10.17`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ca404c1cb4030dc2db04829df101b2063f1a8649/3.10/ubuntu/Dockerfile) +- [`3.10.17-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) +- [`3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ca404c1cb4030dc2db04829df101b2063f1a8649/3.10/alpine/Dockerfile) +- [`3.10.17-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) +- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/8f13e19291937c94fe0d8f12b03f8cd728903422/3.9/ubuntu/Dockerfile) +- [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) +- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/8f13e19291937c94fe0d8f12b03f8cd728903422/3.9/alpine/Dockerfile) +- [`3.9.28-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) @@ -43,7 +43,7 @@ WARNING: [https://github.com/docker-library/rabbitmq/issues](https://github.com/docker-library/rabbitmq/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`riscv64`](https://hub.docker.com/r/riscv64/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/) + [`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/) - **Published image artifact details**: [repo-info repo's `repos/rabbitmq/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rabbitmq) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rabbitmq)) From bf708b3d3bf5922d8aa88e55e0e93e65b459c1d4 Mon Sep 17 00:00:00 2001 From: Nicolas Albert Date: Wed, 1 Feb 2023 11:00:06 +0100 Subject: [PATCH 0042/2686] minor changes --- convertigo/README-short.txt | 2 +- convertigo/content.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/convertigo/README-short.txt b/convertigo/README-short.txt index 3d2df5140a57..c61df8fe4bb8 100644 --- a/convertigo/README-short.txt +++ b/convertigo/README-short.txt @@ -1 +1 @@ -Open source Low Code & No Code Application Platform featuring MXDP/MBaaS for full-stack development. \ No newline at end of file +Enterprise grade full-stack Open source Low Code & No Code Platform for web & mobile application \ No newline at end of file diff --git a/convertigo/content.md b/convertigo/content.md index dbcff92d7603..c2d19a0f86aa 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -4,8 +4,7 @@ Convertigo is an open source fullstack Low Code & No Code platform. The platform 1. **Convertigo Server**: The back-end server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Web & Mobile Web apps. Runs as a Docker container with the `convertigo` image 2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) -3. **Convertigo SDKs**: Can be used with third party Client Web & Mobile development tools such as Xcode (iOS) Android Studio (Android) Angualr, Vue.js or plain js . SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET) -4. **Convertigo Forms**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) +3. **Convertigo NoCode Studio**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps. From 28f7d938a0f139a35a6ca0b3e279246c75c8316c Mon Sep 17 00:00:00 2001 From: Nicolas Albert Date: Wed, 1 Feb 2023 18:57:09 +0100 Subject: [PATCH 0043/2686] typo --- convertigo/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convertigo/content.md b/convertigo/content.md index c2d19a0f86aa..e42e41696eef 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -69,7 +69,7 @@ $ docker run -d --name C8O --link [mysql-container]:mysql -p 28080:28080 ## Where is Convertigo Low Code server storing deployed projects -Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using : +Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using: ```console $ docker run --name C8O -v $(pwd):/workspace -d -p 28080:28080 %%IMAGE%% @@ -247,7 +247,7 @@ $ docker run -d --name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 %%IMAGE%% ## `DISABLE_SUDO` Environment variable -The image include **sudo** command line, configured to allow the **convertigo** user to use it without password and to perform some **root** action inside the container. This variable allows to disable this permission. +The image includes **sudo** command line, configured to allow the **convertigo** user to use it without password and to perform some **root** action inside the container. This variable allows to disable this permission. The default `DISABLE_SUDO` value is **empty** and can be defined this way: From 1d9c65d456f62807861612c5fd95863fb0c43ec8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 10:14:24 -0800 Subject: [PATCH 0044/2686] Run update.sh --- flink/README.md | 4 ++-- ubuntu/README.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flink/README.md b/flink/README.md index 87a7432f0b61..8db9fd1a032a 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.0-scala_2.12-java8`, `1.16-scala_2.12-java8`, `scala_2.12-java8`, `1.16.0-java8`, `1.16-java8`, `java8`](https://github.com/apache/flink-docker/blob/51ea69cc52e6a759c5b5e463d3920fd7ed8caebc/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.0-scala_2.12-java11`, `1.16-scala_2.12-java11`, `scala_2.12-java11`, `1.16.0-scala_2.12`, `1.16-scala_2.12`, `scala_2.12`, `1.16.0-java11`, `1.16-java11`, `java11`, `1.16.0`, `1.16`, `latest`](https://github.com/apache/flink-docker/blob/51ea69cc52e6a759c5b5e463d3920fd7ed8caebc/1.16/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.16.1-scala_2.12-java8`, `1.16-scala_2.12-java8`, `scala_2.12-java8`, `1.16.1-java8`, `1.16-java8`, `java8`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.16.1-scala_2.12-java11`, `1.16-scala_2.12-java11`, `scala_2.12-java11`, `1.16.1-scala_2.12`, `1.16-scala_2.12`, `scala_2.12`, `1.16.1-java11`, `1.16-java11`, `java11`, `1.16.1`, `1.16`, `latest`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java11-ubuntu/Dockerfile) - [`1.15.3-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.3-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/a22c0f04972a1d8539d9213b52fc0728eac8c1fa/1.15/scala_2.12-java8-ubuntu/Dockerfile) - [`1.15.3-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.3-scala_2.12`, `1.15-scala_2.12`, `1.15.3-java11`, `1.15-java11`, `1.15.3`, `1.15`](https://github.com/apache/flink-docker/blob/a22c0f04972a1d8539d9213b52fc0728eac8c1fa/1.15/scala_2.12-java11-ubuntu/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index da42b8e8a3e6..945dc87c1a91 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230126`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230126&id=4dd8c0973fccaf8699bac0a666f007b9d05c95fd) -- [`20.04`, `focal-20230126`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230126&id=51f5b41f106b8b1e926fcfd2382813801c571233) -- [`22.04`, `jammy-20230126`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230126&id=c59419b8a85cb1d938e73e83af8f8e6ff4110444) -- [`22.10`, `kinetic-20230126`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230126&id=a806765a4285f4a19789ade917f91d2b878955d8) -- [`23.04`, `lunar-20230124.1`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230124.1&id=407671a226ede7401c411693e77fb4b8bf0adf75) +- [`18.04`, `bionic-20230126`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230126&id=f127810992c0981574cc137b9c83937ca1a304dc) +- [`20.04`, `focal-20230126`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230126&id=e21c3f62fbbe0afd5ac89aa149e36f08a7debeb8) +- [`22.04`, `jammy-20230126`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230126&id=d4e91f86e34e0de683c46f08178d93fcf83a515d) +- [`22.10`, `kinetic-20230126`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230126&id=5ad3fc123e02cbb835b34898b42729fcbbdb6097) +- [`23.04`, `lunar-20230128`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230128&id=edd50e68967994c3b3f2fd08b5013190f1776a3f) # Quick reference (cont.) From 8ff2371df7b35fadcf2c9a83162edd40e6c51721 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 11:08:51 -0800 Subject: [PATCH 0045/2686] Run update.sh --- convertigo/README.md | 7 +++---- dart/README.md | 2 +- elasticsearch/README.md | 2 +- erlang/README.md | 6 +++--- kibana/README.md | 2 +- logstash/README.md | 2 +- sl/README.md | 2 +- 7 files changed, 11 insertions(+), 12 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 218bfcf3d880..710ec80593c0 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -51,8 +51,7 @@ Convertigo is an open source fullstack Low Code & No Code platform. The platform 1. **Convertigo Server**: The back-end server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Web & Mobile Web apps. Runs as a Docker container with the `convertigo` image 2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) -3. **Convertigo SDKs**: Can be used with third party Client Web & Mobile development tools such as Xcode (iOS) Android Studio (Android) Angualr, Vue.js or plain js . SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET) -4. **Convertigo Forms**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) +3. **Convertigo NoCode Studio**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps. @@ -117,7 +116,7 @@ convertigo ## Where is Convertigo Low Code server storing deployed projects -Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using : +Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using: ```console $ docker run --name C8O -v $(pwd):/workspace -d -p 28080:28080 convertigo @@ -295,7 +294,7 @@ $ docker run -d --name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 convertigo ## `DISABLE_SUDO` Environment variable -The image include **sudo** command line, configured to allow the **convertigo** user to use it without password and to perform some **root** action inside the container. This variable allows to disable this permission. +The image includes **sudo** command line, configured to allow the **convertigo** user to use it without password and to perform some **root** action inside the container. This variable allows to disable this permission. The default `DISABLE_SUDO` value is **empty** and can be defined this way: diff --git a/dart/README.md b/dart/README.md index f6fa997cefa5..50a53c415106 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.0-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.0`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/aea99ca1f5848eddf1dc5087573663b8bc3e102d/stable/bullseye/Dockerfile) +- [`2.19.1-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.1`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/2c4fd37c2a7352f7533ad1283fabf42c6dc3e3c6/stable/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index cc013e81db4c..837baeef5e83 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.0`](https://github.com/docker-library/elasticsearch/blob/06dbd87db84a477d0814e343cbf970c7abf69649/8/Dockerfile) +- [`8.6.1`](https://github.com/docker-library/elasticsearch/blob/8001c62c84bb3fa9f19a2725d20d4e5f404dda5e/8/Dockerfile) - [`7.17.8`](https://github.com/docker-library/elasticsearch/blob/4ae79746e02c947ff9dae92f7011399f9c809f18/7/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index f485f238ce3d..69e333920e9d 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.2.1.0`, `25.2.1`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/Dockerfile) -- [`25.2.1.0-slim`, `25.2.1-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/slim/Dockerfile) -- [`25.2.1.0-alpine`, `25.2.1-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/09ece3942fc2ce525fedf20adfce08933a63792c/25/alpine/Dockerfile) +- [`25.2.2.0`, `25.2.2`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/Dockerfile) +- [`25.2.2.0-slim`, `25.2.2-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/slim/Dockerfile) +- [`25.2.2.0-alpine`, `25.2.2-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/alpine/Dockerfile) - [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) - [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) - [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/alpine/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 8bc1951938a9..5d9aee88c6c3 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.0`](https://github.com/docker-library/kibana/blob/34ba6504a0b63a5f0f9d39564c0bfd47114d94f8/8/Dockerfile) +- [`8.6.1`](https://github.com/docker-library/kibana/blob/99dfd6ecee59bd6e72c85c2f6b4ded17e3180c5e/8/Dockerfile) - [`7.17.8`](https://github.com/docker-library/kibana/blob/c98bb27941c6b2dafd6d963aab2b0cc9f0876315/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index e75935250777..d90bb0b4c4ef 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.0`](https://github.com/docker-library/logstash/blob/4fabc6ecfad4f4d760c3f1a53cbcf9abca905543/8/Dockerfile) +- [`8.6.1`](https://github.com/docker-library/logstash/blob/9061b36c4de1baca7642d05c31111515873ab7cb/8/Dockerfile) - [`7.17.8`](https://github.com/docker-library/logstash/blob/e0450c99e0d55edb3a548a10466153bb42f6eb91/7/Dockerfile) # Quick reference (cont.) diff --git a/sl/README.md b/sl/README.md index 981fa5d96c59..ffefd54afa2b 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/b2ec52ef8c9e9a11d1bb4ea5441552c21f0b523b/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/67ed8dc3079a48c8eb14b5a9c27e654a058ca850/sl7/Dockerfile) # Quick reference (cont.) From 43f294f370d63c7a1edc6e21253a80284ffbf520 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 12:08:48 -0800 Subject: [PATCH 0046/2686] Run update.sh --- buildpack-deps/README.md | 3 --- docker/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- telegraf/README.md | 12 ++++++------ xwiki/README.md | 6 +++--- 5 files changed, 20 insertions(+), 23 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 1a3300509b49..adc427194c31 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -51,9 +51,6 @@ WARNING: - [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/curl/Dockerfile) - [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) - [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) -- [`xenial-curl`, `16.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d2a6f64abe6787b7dd25c7d5322af1fa2e3f55/ubuntu/xenial/curl/Dockerfile) -- [`xenial-scm`, `16.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/xenial/scm/Dockerfile) -- [`xenial`, `16.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/xenial/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index ca3f7c98fbb5..bf92140a2b1d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.3-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/219095a5df21d96ea80078ef748196b9420e293a/23.0-rc/cli/Dockerfile) -- [`23.0.0-rc.3-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.3-dind-alpine3.17`, `23.0.0-rc.3`, `23.0-rc`, `rc`, `23.0.0-rc.3-alpine3.17`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind/Dockerfile) -- [`23.0.0-rc.3-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/dind-rootless/Dockerfile) -- [`23.0.0-rc.3-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) -- [`23.0.0-rc.3-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.0-rc.3-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`23.0.0-rc.4-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/cli/Dockerfile) +- [`23.0.0-rc.4-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.4-dind-alpine3.17`, `23.0.0-rc.4`, `23.0-rc`, `rc`, `23.0.0-rc.4-alpine3.17`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/dind/Dockerfile) +- [`23.0.0-rc.4-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/dind-rootless/Dockerfile) +- [`23.0.0-rc.4-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) +- [`23.0.0-rc.4-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.0-rc.4-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `23.0.0-rc.3-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: - - [`23.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a7c807686f54b67646bc75d2c81a68f9a906dbd/23.0-rc/windows/windowsservercore-1809/Dockerfile) +- `23.0.0-rc.4-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: + - [`23.0.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`, `windowsservercore`: - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 068753f0dcd3..53ddc3039923 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.2`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dd4d0fbbca6b21399152d57ec71f976e41bc4c8d/5/debian/Dockerfile) -- [`5.33.2-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dd4d0fbbca6b21399152d57ec71f976e41bc4c8d/5/alpine/Dockerfile) +- [`5.33.3`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9bf75ba0e8755e84ec1b3c9d54d3c302be8ebdc2/5/debian/Dockerfile) +- [`5.33.3-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9bf75ba0e8755e84ec1b3c9d54d3c302be8ebdc2/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 9b4a5366015a..5f659a6d6ba5 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.23/Dockerfile) -- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.23/alpine/Dockerfile) -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/dbc42012042db536190ddd0686327a3a9e59a0e3/telegraf/1.25/alpine/Dockerfile) +- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.23/Dockerfile) +- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.23/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.25/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 0aff71236357..d5c578ec0655 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.0`, `15.0.0`, `15-mysql-tomcat`, `15.0-mysql-tomcat`, `15.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.0-postgres-tomcat`, `15.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.0-mariadb-tomcat`, `15.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.3`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.3-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.3-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.3-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/572e93824b7c86ad545db1460c70fca7c9203e4a/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.4`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.4-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.4-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.4-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/mariadb-tomcat/Dockerfile) - [`14.4`, `14.4.7`, `14.4-mysql-tomcat`, `14.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mysql-tomcat/Dockerfile) - [`14.4-postgres-tomcat`, `14.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/postgres-tomcat/Dockerfile) - [`14.4-mariadb-tomcat`, `14.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mariadb-tomcat/Dockerfile) From d722bca0b425ba84e534d6c0f0e90607084eb41b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 14:08:49 -0800 Subject: [PATCH 0047/2686] Run update.sh --- golang/README.md | 76 ++++++++++++++++++------------------------------ 1 file changed, 29 insertions(+), 47 deletions(-) diff --git a/golang/README.md b/golang/README.md index 642ff5b72fd6..9a1d01859b52 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,63 +28,45 @@ WARNING: ## Simple Tags -- [`1.20rc3-bullseye`, `1.20-rc-bullseye`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/bullseye/Dockerfile) -- [`1.20rc3-buster`, `1.20-rc-buster`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/buster/Dockerfile) -- [`1.20rc3-alpine3.17`, `1.20-rc-alpine3.17`, `1.20rc3-alpine`, `1.20-rc-alpine`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/alpine3.17/Dockerfile) -- [`1.20rc3-alpine3.16`, `1.20-rc-alpine3.16`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/alpine3.16/Dockerfile) -- [`1.20rc3-windowsservercore-ltsc2022`, `1.20-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20rc3-windowsservercore-1809`, `1.20-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.20rc3-nanoserver-ltsc2022`, `1.20-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20rc3-nanoserver-1809`, `1.20-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/nanoserver-1809/Dockerfile) -- [`1.19.5-bullseye`, `1.19-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/bullseye/Dockerfile) -- [`1.19.5-buster`, `1.19-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/buster/Dockerfile) -- [`1.19.5-alpine3.17`, `1.19-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.19.5-alpine`, `1.19-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.17/Dockerfile) -- [`1.19.5-alpine3.16`, `1.19-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.16/Dockerfile) -- [`1.19.5-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.5-windowsservercore-1809`, `1.19-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.5-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.5-nanoserver-1809`, `1.19-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-1809/Dockerfile) -- [`1.18.10-bullseye`, `1.18-bullseye`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/bullseye/Dockerfile) -- [`1.18.10-buster`, `1.18-buster`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/buster/Dockerfile) -- [`1.18.10-alpine3.17`, `1.18-alpine3.17`, `1.18.10-alpine`, `1.18-alpine`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/alpine3.17/Dockerfile) -- [`1.18.10-alpine3.16`, `1.18-alpine3.16`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/alpine3.16/Dockerfile) -- [`1.18.10-windowsservercore-ltsc2022`, `1.18-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.18.10-windowsservercore-1809`, `1.18-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-1809/Dockerfile) -- [`1.18.10-nanoserver-ltsc2022`, `1.18-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.18.10-nanoserver-1809`, `1.18-nanoserver-1809`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/nanoserver-1809/Dockerfile) +- [`1.20.0-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/bullseye/Dockerfile) +- [`1.20.0-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/buster/Dockerfile) +- [`1.20.0-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.0-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/alpine3.17/Dockerfile) +- [`1.20.0-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/alpine3.16/Dockerfile) +- [`1.20.0-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.0-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.0-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.0-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.5-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/bullseye/Dockerfile) +- [`1.19.5-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/buster/Dockerfile) +- [`1.19.5-alpine3.17`, `1.19-alpine3.17`, `1.19.5-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.17/Dockerfile) +- [`1.19.5-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.16/Dockerfile) +- [`1.19.5-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.5-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.5-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.5-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20rc3`, `1.20-rc`: - - [`1.20rc3-bullseye`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/bullseye/Dockerfile) - - [`1.20rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-1809/Dockerfile) -- `1.20rc3-windowsservercore`, `1.20-rc-windowsservercore`: - - [`1.20rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/windowsservercore-1809/Dockerfile) -- `1.20rc3-nanoserver`, `1.20-rc-nanoserver`: - - [`1.20rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a135136dcd3d56a39e1f40c5b264938eac0c7ee/1.20-rc/windows/nanoserver-1809/Dockerfile) -- `1.19.5`, `1.19`, `1`, `latest`: +- `1.20.0`, `1.20`, `1`, `latest`: + - [`1.20.0-bullseye`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/bullseye/Dockerfile) + - [`1.20.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.0-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.0-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.5`, `1.19`: - [`1.19.5-bullseye`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/bullseye/Dockerfile) - [`1.19.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.5-windowsservercore`, `1.19-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.19.5-windowsservercore`, `1.19-windowsservercore`: - [`1.19.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.5-nanoserver`, `1.19-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.19.5-nanoserver`, `1.19-nanoserver`: - [`1.19.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-ltsc2022/Dockerfile) - [`1.19.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-1809/Dockerfile) -- `1.18.10`, `1.18`: - - [`1.18.10-bullseye`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/bullseye/Dockerfile) - - [`1.18.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.18.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-1809/Dockerfile) -- `1.18.10-windowsservercore`, `1.18-windowsservercore`: - - [`1.18.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.18.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/windowsservercore-1809/Dockerfile) -- `1.18.10-nanoserver`, `1.18-nanoserver`: - - [`1.18.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.18.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/f28358ce7460e4b8fe0c5ef7c1c4cc54f0f6ea15/1.18/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 52ed4915a68b99d07dd169bda7b788dc304617a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 15:08:49 -0800 Subject: [PATCH 0048/2686] Run update.sh --- jruby/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 6bb743a1b9b4..a59c22e1ccfa 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.0`, `9.4-jre`, `9.4-jre8`, `9.4.0-jre`, `9.4.0-jre8`, `9.4.0.0`, `9.4.0.0-jre`, `9.4.0.0-jre8`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.0-jdk`, `9.4.0-jdk8`, `9.4.0.0-jdk`, `9.4.0.0-jdk8`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.0-jre11`, `9.4.0.0-jre11`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.0-jdk11`, `9.4.0.0-jdk11`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.0-jdk17`, `9.4.0.0-jdk17`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.4/jdk17/Dockerfile) -- [`9.3`, `9.3.9`, `9.3-jre`, `9.3-jre8`, `9.3.9-jre`, `9.3.9-jre8`, `9.3.9.0`, `9.3.9.0-jre`, `9.3.9.0-jre8`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.9-jdk`, `9.3.9-jdk8`, `9.3.9.0-jdk`, `9.3.9.0-jdk8`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.9-jre11`, `9.3.9.0-jre11`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.9-jdk11`, `9.3.9.0-jdk11`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.9-jdk17`, `9.3.9.0-jdk17`](https://github.com/jruby/docker-jruby/blob/500a1f58e7ad2be7d2af67f1b480b80ff6517314/9.3/jdk17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.0`, `9.4-jre`, `9.4-jre8`, `9.4.0-jre`, `9.4.0-jre8`, `9.4.0.0`, `9.4.0.0-jre`, `9.4.0.0-jre8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.0-jdk`, `9.4.0-jdk8`, `9.4.0.0-jdk`, `9.4.0.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.0-jre11`, `9.4.0.0-jre11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.0-jdk11`, `9.4.0.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.0-jdk17`, `9.4.0.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk17/Dockerfile) +- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk17/Dockerfile) # Quick reference (cont.) From de7c33e21a4a988b03840faa20bebe40645c6d55 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Feb 2023 17:08:49 -0800 Subject: [PATCH 0049/2686] Run update.sh --- drupal/README.md | 78 ++++++++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 6d5485b693d5..87f6297c77be 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.2-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.2-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.2-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.2-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.2-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.2`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.2-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.2-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.2-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.2-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.2-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.2-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.2-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.2-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.2-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.2-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.2-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.2-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.2-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.2-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.2-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.2-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.2-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.2-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.2-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.2-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.2-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.2-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.2-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.2-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5a7b9ddd0655f44b1e9b05efa91bf06307beb58a/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.2-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.2-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.2-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.2-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.2-apache`, `9.5-apache`, `9-apache`, `9.5.2`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.2-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.2-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.2-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.2-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.2-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.2-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.2-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.2-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.2-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.2-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.2-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.2-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.2-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.2-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.2-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.2-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.2-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.2-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.2-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.2-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.2-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.2-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/717c4e342cf382d057690de0f833abdc0ff99f1a/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.10-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.10-php8.1-apache`, `9.4-php8.1-apache`, `9.4.10-php8.1`, `9.4-php8.1`, `9.4.10-apache-bullseye`, `9.4-apache-bullseye`, `9.4.10-apache`, `9.4-apache`, `9.4.10`, `9.4`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.10-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.10-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.10-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.10-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.10-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.10-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.10-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.10-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.10-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.10-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.10-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.10-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.10-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.10-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.10-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.10-php8.0-apache`, `9.4-php8.0-apache`, `9.4.10-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.10-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.10-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.10-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.10-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.10-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0e543b998098e4418608255959f225e05fef3844/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.94-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.94-php8.0-apache`, `7-php8.0-apache`, `7.94-php8.0`, `7-php8.0`, `7.94-apache-bullseye`, `7-apache-bullseye`, `7.94-apache`, `7-apache`, `7.94`, `7`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/apache-bullseye/Dockerfile) -- [`7.94-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.94-php8.0-fpm`, `7-php8.0-fpm`, `7.94-fpm-bullseye`, `7-fpm-bullseye`, `7.94-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.94-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.94-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/apache-buster/Dockerfile) -- [`7.94-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.94-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/fpm-buster/Dockerfile) -- [`7.94-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.94-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/4047dd908101831960003f5671b9b51592f3f789/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.3-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.3-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.3-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.3-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.3-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.3`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.3-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.3-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.3-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.3-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.3-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.3-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.3-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.3-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.3-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.3-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.3-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.3-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.3-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.3-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.3-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.3-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.3-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.3-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.3-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.3-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.3-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.3-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.3-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.3-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.3-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.3-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.3-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.3-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.3-apache`, `9.5-apache`, `9-apache`, `9.5.3`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.3-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.3-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.3-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.3-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.3-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.3-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.3-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.3-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.3-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.3-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.3-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.3-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.3-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.3-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.3-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.3-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.3-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.3-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.3-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.3-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.3-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.3-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.11-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.11-php8.1-apache`, `9.4-php8.1-apache`, `9.4.11-php8.1`, `9.4-php8.1`, `9.4.11-apache-bullseye`, `9.4-apache-bullseye`, `9.4.11-apache`, `9.4-apache`, `9.4.11`, `9.4`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.11-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.11-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.11-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.11-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.11-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.11-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.11-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.11-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.11-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.11-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.11-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.11-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.11-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.11-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.11-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.11-php8.0-apache`, `9.4-php8.0-apache`, `9.4.11-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.11-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.11-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.11-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.11-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.11-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.94-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.94-php8.0-apache`, `7-php8.0-apache`, `7.94-php8.0`, `7-php8.0`, `7.94-apache-bullseye`, `7-apache-bullseye`, `7.94-apache`, `7-apache`, `7.94`, `7`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/apache-bullseye/Dockerfile) +- [`7.94-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.94-php8.0-fpm`, `7-php8.0-fpm`, `7.94-fpm-bullseye`, `7-fpm-bullseye`, `7.94-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.94-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.94-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/apache-buster/Dockerfile) +- [`7.94-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.94-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-buster/Dockerfile) +- [`7.94-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.94-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) From 99bf20dc08798574ba406b253a31ec5e5b441657 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Feb 2023 12:09:15 -0800 Subject: [PATCH 0050/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- joomla/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index a99e6305b1a2..2611c87828a3 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -28,8 +28,8 @@ WARNING: - [`2.0.20230119.1-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/b5c54379aea40f6d9a0d50af4677399d0defff7b/Dockerfile) - [`2018.03.0.20230124.1`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/8f0a44d2878669df6eea31379d796061d82c89c8/Dockerfile) - [`2018.03.0.20230124.1-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/f44a38a72435f94e02fa53a30d46d7f20852b619/Dockerfile) -- [`2022.0.20221207.4`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/423528b1be8f280af50b6fe8c2cfa296b05e995f/Dockerfile) -- [`2022.0.20221207.4-with-sources`, `2022-with-sources`, `devel-with-sources`](https://github.com/amazonlinux/container-images/blob/8b3c53739a3853a701caa4ff99732c3b8325c5b4/Dockerfile) +- [`2022.0.20230118.3`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/8f394a73f3747b9f1c80e98b65d1f845b2c36e36/Dockerfile) +- [`2022.0.20230118.3-with-sources`, `2022-with-sources`, `devel-with-sources`](https://github.com/amazonlinux/container-images/blob/87e3b7a4ed4bbdeba86d64cd68fbefe3f5d7acc2/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 717db1267d7c..4b1c045fd4a4 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.6`, `4.2`, `4`, `latest`, `4.2.6-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.6-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.6-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.0/apache/Dockerfile) -- [`4.2.6-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.0/fpm-alpine/Dockerfile) -- [`4.2.6-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.0/fpm/Dockerfile) -- [`4.2.6-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.1/apache/Dockerfile) -- [`4.2.6-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.1/fpm-alpine/Dockerfile) -- [`4.2.6-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/935f419c927c2403f587565cda1576a66d52a451/4.2/php8.1/fpm/Dockerfile) +- [`4.2.7`, `4.2`, `4`, `latest`, `4.2.7-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.7-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.7-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/apache/Dockerfile) +- [`4.2.7-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/fpm-alpine/Dockerfile) +- [`4.2.7-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/fpm/Dockerfile) +- [`4.2.7-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/apache/Dockerfile) +- [`4.2.7-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/fpm-alpine/Dockerfile) +- [`4.2.7-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/fpm/Dockerfile) - [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/apache/Dockerfile) - [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm/Dockerfile) From ecfc9268600c4e80c6ddfc8787ff78c6912d3696 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Feb 2023 13:14:24 -0800 Subject: [PATCH 0051/2686] Run update.sh --- groovy/README.md | 15 +++++---------- nats/README.md | 22 +++++++++++----------- neo4j/README.md | 4 ++-- neurodebian/README.md | 30 ++++++++++++++---------------- 4 files changed, 32 insertions(+), 39 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index d77c96b418e6..1a26bbc90a2c 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,16 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.14-jdk8`, `3.0-jdk8`, `jdk8`, `3.0.14-jdk8-jammy`, `3.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/bc4c3ee2a4e26f14458b121f238bb862c9de6b27/jdk8/Dockerfile) -- [`3.0.14-jdk11`, `3.0-jdk11`, `jdk11`, `3.0.14-jdk11-jammy`, `3.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/bc4c3ee2a4e26f14458b121f238bb862c9de6b27/jdk11/Dockerfile) -- [`3.0.14-jdk11-alpine`, `3.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/bc4c3ee2a4e26f14458b121f238bb862c9de6b27/jdk11-alpine/Dockerfile) -- [`3.0.14-jdk17`, `3.0-jdk17`, `jdk17`, `3.0.14-jdk`, `3.0-jdk`, `3.0.14`, `3.0`, `3`, `jdk`, `latest`, `3.0.14-jdk17-jammy`, `3.0-jdk17-jammy`, `jdk17-jammy`, `3.0.14-jdk-jammy`, `3.0-jdk-jammy`, `3.0.14-jammy`, `3.0-jammy`, `3-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/bc4c3ee2a4e26f14458b121f238bb862c9de6b27/jdk17/Dockerfile) -- [`3.0.14-jdk17-alpine`, `3.0-jdk17-alpine`, `jdk17-alpine`, `3.0.14-jdk-alpine`, `3.0-jdk-alpine`, `3.0.14-alpine`, `3.0-alpine`, `3-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/bc4c3ee2a4e26f14458b121f238bb862c9de6b27/jdk17-alpine/Dockerfile) -- [`4.0.7-jdk8`, `4.0-jdk8`, `4.0.7-jdk8-jammy`, `4.0-jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/085e0eb9a0611dd84c16efdcad26f352157d6f79/jdk8/Dockerfile) -- [`4.0.7-jdk11`, `4.0-jdk11`, `4.0.7-jdk11-jammy`, `4.0-jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/085e0eb9a0611dd84c16efdcad26f352157d6f79/jdk11/Dockerfile) -- [`4.0.7-jdk11-alpine`, `4.0-jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/085e0eb9a0611dd84c16efdcad26f352157d6f79/jdk11-alpine/Dockerfile) -- [`4.0.7-jdk17`, `4.0-jdk17`, `4.0.7-jdk`, `4.0.7`, `4.0`, `4`, `4.0.7-jdk17-jammy`, `4.0-jdk17-jammy`, `4.0.7-jdk-jammy`, `4.0.7-jammy`, `4.0-jammy`, `4-jammy`](https://github.com/groovy/docker-groovy/blob/085e0eb9a0611dd84c16efdcad26f352157d6f79/jdk17/Dockerfile) -- [`4.0.7-jdk17-alpine`, `4.0-jdk17-alpine`, `4.0.7-jdk-alpine`, `4.0.7-alpine`, `4.0-alpine`, `4-alpine`](https://github.com/groovy/docker-groovy/blob/085e0eb9a0611dd84c16efdcad26f352157d6f79/jdk17-alpine/Dockerfile) +- [`4.0.8-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.8-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk8/Dockerfile) +- [`4.0.8-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.8-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk11/Dockerfile) +- [`4.0.8-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk11-alpine/Dockerfile) +- [`4.0.8-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.8-jdk`, `4.0-jdk`, `4.0.8`, `4.0`, `4`, `jdk`, `latest`, `4.0.8-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.8-jdk-jammy`, `4.0-jdk-jammy`, `4.0.8-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk17/Dockerfile) +- [`4.0.8-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.8-jdk-alpine`, `4.0-jdk-alpine`, `4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 6fc68b71b404..95329db40f23 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.11-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.11-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/alpine3.17/Dockerfile) -- [`2.9.11-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.11-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/scratch/Dockerfile) -- [`2.9.11-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/windowsservercore-1809/Dockerfile) -- [`2.9.11-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/nanoserver-1809/Dockerfile) +- [`2.9.12-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.12-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/alpine3.17/Dockerfile) +- [`2.9.12-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.12-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/scratch/Dockerfile) +- [`2.9.12-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/windowsservercore-1809/Dockerfile) +- [`2.9.12-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.11`, `2.9`, `2`, `latest`: - - [`2.9.11-scratch`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/scratch/Dockerfile) - - [`2.9.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/nanoserver-1809/Dockerfile) -- `2.9.11-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.11-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/windowsservercore-1809/Dockerfile) -- `2.9.11-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c17a8a1db7e3c98687bfacb1a2ba7a92753d5127/2.9.11/nanoserver-1809/Dockerfile) +- `2.9.12`, `2.9`, `2`, `latest`: + - [`2.9.12-scratch`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/scratch/Dockerfile) + - [`2.9.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) +- `2.9.12-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.12-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/windowsservercore-1809/Dockerfile) +- `2.9.12-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index c9ca3f6c7716..3d068659c9c2 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.4.0`, `5.4.0-community`, `5.4`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/community/Dockerfile) - [`5.4.0-enterprise`, `5.4-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/enterprise/Dockerfile) -- [`4.4.16`, `4.4.16-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.4.16/community/Dockerfile) -- [`4.4.16-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/082867e61a5947ba35fc954a192a438f2238e868/4.4.16/enterprise/Dockerfile) +- [`4.4.17`, `4.4.17-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/community/Dockerfile) +- [`4.4.17-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/neurodebian/README.md b/neurodebian/README.md index b89cf95d9b67..351fc4fc14a5 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -24,22 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`xenial`, `nd16.04`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/xenial/Dockerfile) -- [`xenial-non-free`, `nd16.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/xenial-non-free/Dockerfile) -- [`bionic`, `nd18.04`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bionic/Dockerfile) -- [`bionic-non-free`, `nd18.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bionic-non-free/Dockerfile) -- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/focal/Dockerfile) -- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/focal-non-free/Dockerfile) -- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/jammy/Dockerfile) -- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/jammy-non-free/Dockerfile) -- [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/buster/Dockerfile) -- [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/buster-non-free/Dockerfile) -- [`bullseye`, `nd110`, `latest`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bullseye/Dockerfile) -- [`bullseye-non-free`, `nd110-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bullseye-non-free/Dockerfile) -- [`bookworm`, `nd120`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bookworm/Dockerfile) -- [`bookworm-non-free`, `nd120-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/bookworm-non-free/Dockerfile) -- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/sid/Dockerfile) -- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/53a254d17e6c1c21787ed44b6e848c1af46ea9be/dockerfiles/sid-non-free/Dockerfile) +- [`bionic`, `nd18.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bionic/Dockerfile) +- [`bionic-non-free`, `nd18.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bionic-non-free/Dockerfile) +- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/focal/Dockerfile) +- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/focal-non-free/Dockerfile) +- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/jammy/Dockerfile) +- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/jammy-non-free/Dockerfile) +- [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/buster/Dockerfile) +- [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/buster-non-free/Dockerfile) +- [`bullseye`, `nd110`, `latest`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bullseye/Dockerfile) +- [`bullseye-non-free`, `nd110-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bullseye-non-free/Dockerfile) +- [`bookworm`, `nd120`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bookworm/Dockerfile) +- [`bookworm-non-free`, `nd120-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bookworm-non-free/Dockerfile) +- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/sid/Dockerfile) +- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/sid-non-free/Dockerfile) # Quick reference (cont.) From b23dd339992a0173a7e0db1a8ec4809b6cb0e64c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Feb 2023 15:08:48 -0800 Subject: [PATCH 0052/2686] Run update.sh --- docker/README.md | 32 ++++++++++----------- ghost/README.md | 4 +-- mongo/README.md | 6 ++-- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ php/README.md | 42 +++++++++------------------ 5 files changed, 71 insertions(+), 85 deletions(-) diff --git a/docker/README.md b/docker/README.md index bf92140a2b1d..96bed0f4c1d3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`23.0.0-rc.4-cli`, `23.0-rc-cli`, `rc-cli`, `23.0.0-rc.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/cli/Dockerfile) -- [`23.0.0-rc.4-dind`, `23.0-rc-dind`, `rc-dind`, `23.0.0-rc.4-dind-alpine3.17`, `23.0.0-rc.4`, `23.0-rc`, `rc`, `23.0.0-rc.4-alpine3.17`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/dind/Dockerfile) -- [`23.0.0-rc.4-dind-rootless`, `23.0-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/dind-rootless/Dockerfile) -- [`23.0.0-rc.4-git`, `23.0-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/c608944bf9422f7cd70951b9519866495b81e76d/23.0-rc/git/Dockerfile) -- [`23.0.0-rc.4-windowsservercore-ltsc2022`, `23.0-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.0-rc.4-windowsservercore-1809`, `23.0-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `latest`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) -- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) -- [`20.10.23-git`, `20.10-git`, `20-git`, `git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) +- [`23.0.0-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.0-cli-alpine3.17`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/cli/Dockerfile) +- [`23.0.0-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.0-dind-alpine3.17`, `23.0.0`, `23.0`, `23`, `latest`, `23.0.0-alpine3.17`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind/Dockerfile) +- [`23.0.0-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind-rootless/Dockerfile) +- [`23.0.0-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) +- [`23.0.0-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.0-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) +- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) +- [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) +- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `23.0.0-rc.4-windowsservercore`, `23.0-rc-windowsservercore`, `rc-windowsservercore`: - - [`23.0.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb39cb27e89ff8ae2a30cf24acac5c1a385e62d8/23.0-rc/windows/windowsservercore-1809/Dockerfile) -- `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`, `windowsservercore`: +- `23.0.0-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) +- `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 53ddc3039923..5e66d34957da 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.3`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9bf75ba0e8755e84ec1b3c9d54d3c302be8ebdc2/5/debian/Dockerfile) -- [`5.33.3-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9bf75ba0e8755e84ec1b3c9d54d3c302be8ebdc2/5/alpine/Dockerfile) +- [`5.33.5`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8ec93219dcebea9909e5805b4554f8dc8de6af72/5/debian/Dockerfile) +- [`5.33.5-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8ec93219dcebea9909e5805b4554f8dc8de6af72/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 26821a0b0052..2d335ca81a93 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`6.0.4-focal`, `6.0-focal`, `6-focal`, `focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/6.0/Dockerfile) +- [`6.0.4-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/840d7ed246dc72ae9e84ce92b9f5a6f9dfa4d6e1/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) @@ -62,7 +62,7 @@ WARNING: ## Shared Tags - `6.0.4`, `6.0`, `6`, `latest`: - - [`6.0.4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/6.0/Dockerfile) + - [`6.0.4-jammy`](https://github.com/docker-library/mongo/blob/840d7ed246dc72ae9e84ce92b9f5a6f9dfa4d6e1/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.4-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: @@ -367,7 +367,7 @@ The `mongo` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bionic or focal in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like bionic, focal, or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `mongo:-windowsservercore` diff --git a/openjdk/README.md b/openjdk/README.md index 16703f94b340..b3e1b0ac45b3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,24 +42,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-7-jdk-oraclelinux8`, `21-ea-7-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-7-jdk-oracle`, `21-ea-7-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-7-jdk-oraclelinux7`, `21-ea-7-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-7-jdk-bullseye`, `21-ea-7-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/bullseye/Dockerfile) -- [`21-ea-7-jdk-slim-bullseye`, `21-ea-7-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-7-jdk-slim`, `21-ea-7-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-7-jdk-buster`, `21-ea-7-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/buster/Dockerfile) -- [`21-ea-7-jdk-slim-buster`, `21-ea-7-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/slim-buster/Dockerfile) -- [`21-ea-7-jdk-windowsservercore-ltsc2022`, `21-ea-7-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-7-jdk-windowsservercore-1809`, `21-ea-7-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-7-jdk-nanoserver-1809`, `21-ea-7-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-ea-33-jdk-oraclelinux8`, `20-ea-33-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-33-jdk-oracle`, `20-ea-33-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux8/Dockerfile) -- [`20-ea-33-jdk-oraclelinux7`, `20-ea-33-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux7/Dockerfile) -- [`20-ea-33-jdk-bullseye`, `20-ea-33-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/bullseye/Dockerfile) -- [`20-ea-33-jdk-slim-bullseye`, `20-ea-33-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-33-jdk-slim`, `20-ea-33-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/slim-bullseye/Dockerfile) -- [`20-ea-33-jdk-buster`, `20-ea-33-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/buster/Dockerfile) -- [`20-ea-33-jdk-slim-buster`, `20-ea-33-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/slim-buster/Dockerfile) -- [`20-ea-33-jdk-windowsservercore-ltsc2022`, `20-ea-33-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-ea-33-jdk-windowsservercore-1809`, `20-ea-33-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-ea-33-jdk-nanoserver-1809`, `20-ea-33-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-8-jdk-oraclelinux8`, `21-ea-8-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-8-jdk-oracle`, `21-ea-8-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-8-jdk-oraclelinux7`, `21-ea-8-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-8-jdk-bullseye`, `21-ea-8-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/bullseye/Dockerfile) +- [`21-ea-8-jdk-slim-bullseye`, `21-ea-8-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-8-jdk-slim`, `21-ea-8-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-8-jdk-buster`, `21-ea-8-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/buster/Dockerfile) +- [`21-ea-8-jdk-slim-buster`, `21-ea-8-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/slim-buster/Dockerfile) +- [`21-ea-8-jdk-windowsservercore-ltsc2022`, `21-ea-8-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-8-jdk-windowsservercore-1809`, `21-ea-8-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-8-jdk-nanoserver-1809`, `21-ea-8-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`20-ea-34-jdk-oraclelinux8`, `20-ea-34-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-34-jdk-oracle`, `20-ea-34-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux8/Dockerfile) +- [`20-ea-34-jdk-oraclelinux7`, `20-ea-34-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux7/Dockerfile) +- [`20-ea-34-jdk-bullseye`, `20-ea-34-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/bullseye/Dockerfile) +- [`20-ea-34-jdk-slim-bullseye`, `20-ea-34-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-34-jdk-slim`, `20-ea-34-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/slim-bullseye/Dockerfile) +- [`20-ea-34-jdk-buster`, `20-ea-34-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/buster/Dockerfile) +- [`20-ea-34-jdk-slim-buster`, `20-ea-34-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/slim-buster/Dockerfile) +- [`20-ea-34-jdk-windowsservercore-ltsc2022`, `20-ea-34-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20-ea-34-jdk-windowsservercore-1809`, `20-ea-34-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) +- [`20-ea-34-jdk-nanoserver-1809`, `20-ea-34-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/nanoserver-1809/Dockerfile) - [`18.0.2.1-jdk-oraclelinux8`, `18.0.2.1-oraclelinux8`, `18.0.2-jdk-oraclelinux8`, `18.0.2-oraclelinux8`, `18.0-jdk-oraclelinux8`, `18.0-oraclelinux8`, `18-jdk-oraclelinux8`, `18-oraclelinux8`, `jdk-oraclelinux8`, `oraclelinux8`, `18.0.2.1-jdk-oracle`, `18.0.2.1-oracle`, `18.0.2-jdk-oracle`, `18.0.2-oracle`, `18.0-jdk-oracle`, `18.0-oracle`, `18-jdk-oracle`, `18-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-oraclelinux7`, `18.0.2.1-oraclelinux7`, `18.0.2-jdk-oraclelinux7`, `18.0.2-oraclelinux7`, `18.0-jdk-oraclelinux7`, `18.0-oraclelinux7`, `18-jdk-oraclelinux7`, `18-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux7/Dockerfile) - [`18.0.2.1-jdk-bullseye`, `18.0.2.1-bullseye`, `18.0.2-jdk-bullseye`, `18.0.2-bullseye`, `18.0-jdk-bullseye`, `18.0-bullseye`, `18-jdk-bullseye`, `18-bullseye`, `jdk-bullseye`, `bullseye`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/bullseye/Dockerfile) @@ -72,24 +72,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-7-jdk`, `21-ea-7`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-7-jdk-windowsservercore`, `21-ea-7-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-7-jdk-nanoserver`, `21-ea-7-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/88f5a13685e1f2ca14f196e48f38ed6bb9fbb098/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-ea-33-jdk`, `20-ea-33`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: - - [`20-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/oraclelinux8/Dockerfile) - - [`20-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-33-jdk-windowsservercore`, `20-ea-33-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-33-jdk-nanoserver`, `20-ea-33-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b3b8f97a0f02f76e9c537fa34e56eb8f6fb34d2d/20/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-8-jdk`, `21-ea-8`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-8-jdk-windowsservercore`, `21-ea-8-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-8-jdk-nanoserver`, `21-ea-8-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/nanoserver-1809/Dockerfile) +- `20-ea-34-jdk`, `20-ea-34`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: + - [`20-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux8/Dockerfile) + - [`20-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-34-jdk-windowsservercore`, `20-ea-34-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-34-jdk-nanoserver`, `20-ea-34-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/nanoserver-1809/Dockerfile) - `18.0.2.1-jdk`, `18.0.2.1`, `18.0.2-jdk`, `18.0.2`, `18.0-jdk`, `18.0`, `18-jdk`, `18`, `jdk`, `latest`: - [`18.0.2.1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index f84c0ec15a59..6227cd128cd6 100644 --- a/php/README.md +++ b/php/README.md @@ -24,34 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.2RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.2RC1-bullseye`, `8.2-rc-bullseye`, `8.2.2RC1-cli`, `8.2-rc-cli`, `8.2.2RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.2RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.2RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.2RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.2RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.2RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.2RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.2RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.2RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/cli/Dockerfile) -- [`8.2.2RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/apache/Dockerfile) -- [`8.2.2RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.2RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/buster/zts/Dockerfile) -- [`8.2.2RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.2RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.2RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.2RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.2RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.2RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.2RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.2RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.2RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.2RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/cli/Dockerfile) -- [`8.2.2RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/fpm/Dockerfile) -- [`8.2.2RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/34e7b0d8ec9c8ec53d733a49407deaab3abe8066/8.2-rc/alpine3.16/zts/Dockerfile) -- [`8.2.1-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.1-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.1-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.1`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/cli/Dockerfile) -- [`8.2.1-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.1-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/apache/Dockerfile) -- [`8.2.1-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.1-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/fpm/Dockerfile) -- [`8.2.1-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.1-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/bullseye/zts/Dockerfile) -- [`8.2.1-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.1-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/buster/cli/Dockerfile) -- [`8.2.1-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/buster/apache/Dockerfile) -- [`8.2.1-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/buster/fpm/Dockerfile) -- [`8.2.1-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/buster/zts/Dockerfile) -- [`8.2.1-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.1-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.1-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.1-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.1-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.1-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.1-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.1-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.1-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.1-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.1-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/fdf3f68e6132f2a339897f3a5a3e118a5bf40ded/8.2/alpine3.16/zts/Dockerfile) +- [`8.2.2-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.2-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.2-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.2`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/cli/Dockerfile) +- [`8.2.2-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.2-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/apache/Dockerfile) +- [`8.2.2-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.2-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/fpm/Dockerfile) +- [`8.2.2-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.2-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/zts/Dockerfile) +- [`8.2.2-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.2-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/cli/Dockerfile) +- [`8.2.2-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/apache/Dockerfile) +- [`8.2.2-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/fpm/Dockerfile) +- [`8.2.2-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/zts/Dockerfile) +- [`8.2.2-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.2-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.2-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.2-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.2-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.2-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.2-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.2-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.2-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.2-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/cli/Dockerfile) +- [`8.2.2-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.2-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/zts/Dockerfile) - [`8.1.15RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.15RC1-bullseye`, `8.1-rc-bullseye`, `8.1.15RC1-cli`, `8.1-rc-cli`, `8.1.15RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/cli/Dockerfile) - [`8.1.15RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.15RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/apache/Dockerfile) - [`8.1.15RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.15RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/fpm/Dockerfile) From a7679fdc88314b5f72db5fafdaf00d5c552c19ad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Feb 2023 17:08:48 -0800 Subject: [PATCH 0053/2686] Run update.sh --- node/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/node/README.md b/node/README.md index 69fcb479117e..dbacfef17f02 100644 --- a/node/README.md +++ b/node/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.5-alpine3.16`, `19.5.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.5-alpine`, `19.5-alpine3.17`, `19.5.0-alpine`, `19.5.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.5`, `19.5-bullseye`, `19.5.0`, `19.5.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.5-bullseye-slim`, `19.5-slim`, `19.5.0-bullseye-slim`, `19.5.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.5-buster`, `19.5.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/buster/Dockerfile) -- [`19-buster-slim`, `19.5-buster-slim`, `19.5.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/18a65fa8f56063a42381aa94923ce07f00375d7d/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.13-alpine3.16`, `18.13.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.13-alpine`, `18.13-alpine3.17`, `18.13.0-alpine`, `18.13.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/alpine3.17/Dockerfile) -- [`18`, `18-bullseye`, `18.13`, `18.13-bullseye`, `18.13.0`, `18.13.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.13-bullseye-slim`, `18.13-slim`, `18.13.0-bullseye-slim`, `18.13.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.13-buster`, `18.13.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/buster/Dockerfile) -- [`18-buster-slim`, `18.13-buster-slim`, `18.13.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/86d8b5dbad62b7c58d2146dafaa7b35086ae2eb8/18/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.6-alpine3.16`, `19.6.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.6-alpine`, `19.6-alpine3.17`, `19.6.0-alpine`, `19.6.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.6`, `19.6-bullseye`, `19.6.0`, `19.6.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.6-bullseye-slim`, `19.6-slim`, `19.6.0-bullseye-slim`, `19.6.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.6-buster`, `19.6.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/buster/Dockerfile) +- [`19-buster-slim`, `19.6-buster-slim`, `19.6.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/buster-slim/Dockerfile) +- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.0-alpine`, `18.14.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/alpine3.17/Dockerfile) +- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.0`, `18.14.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.0-bullseye-slim`, `18.14.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.14-buster`, `18.14.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/buster/Dockerfile) +- [`18-buster-slim`, `18.14-buster-slim`, `18.14.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/buster-slim/Dockerfile) - [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.0-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/2a15356c778b366621aa370a4294c59ac1df9c6a/16/alpine3.16/Dockerfile) - [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.0-alpine`, `16.19.0-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/2a15356c778b366621aa370a4294c59ac1df9c6a/16/alpine3.17/Dockerfile) - [`16-bullseye`, `16.19-bullseye`, `16.19.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/16/bullseye/Dockerfile) From f345a90560fb7b1c28e0a1090872c50d226e6a85 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Feb 2023 12:08:48 -0800 Subject: [PATCH 0054/2686] Run update.sh --- emqx/README.md | 6 +++--- gazebo/README.md | 4 ---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 37bbc5c1fc18..697b5dd86a1c 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/4.3/Dockerfile) -- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/4.4/Dockerfile) -- [`5.0.15`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/26fbd6165d43d3f2f2d6ab55267425cbdc2aa176/5.0/Dockerfile) +- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/4.3/Dockerfile) +- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/4.4/Dockerfile) +- [`5.0.16`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/5.0/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 8be1ff5a804a..b728b11f0137 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,10 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver9-xenial`](https://github.com/osrf/docker_images/blob/96c8fa210caaeebd50e067ade05d5fc9a4a60c84/gazebo/9/ubuntu/xenial/gzserver9/Dockerfile) -- [`libgazebo9-xenial`](https://github.com/osrf/docker_images/blob/96c8fa210caaeebd50e067ade05d5fc9a4a60c84/gazebo/9/ubuntu/xenial/libgazebo9/Dockerfile) -- [`gzserver9`, `gzserver9-bionic`](https://github.com/osrf/docker_images/blob/212f7553882e8f3e96af773ede6ef1848277c09e/gazebo/9/ubuntu/bionic/gzserver9/Dockerfile) -- [`libgazebo9`, `libgazebo9-bionic`](https://github.com/osrf/docker_images/blob/212f7553882e8f3e96af773ede6ef1848277c09e/gazebo/9/ubuntu/bionic/libgazebo9/Dockerfile) - [`gzserver11-bionic`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/bionic/gzserver11/Dockerfile) - [`libgazebo11-bionic`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/bionic/libgazebo11/Dockerfile) - [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) From e2b24aea265f7b310feafe8d748674c647f8623a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Feb 2023 14:08:51 -0800 Subject: [PATCH 0055/2686] Run update.sh --- docker/README.md | 4 +- ghost/README.md | 4 +- php/README.md | 42 ++++++----------- python/README.md | 120 +++++++++++++++++++++++------------------------ 4 files changed, 78 insertions(+), 92 deletions(-) diff --git a/docker/README.md b/docker/README.md index 96bed0f4c1d3..b8389e8aead9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,13 +29,13 @@ WARNING: ## Simple Tags - [`23.0.0-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.0-cli-alpine3.17`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/cli/Dockerfile) -- [`23.0.0-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.0-dind-alpine3.17`, `23.0.0`, `23.0`, `23`, `latest`, `23.0.0-alpine3.17`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind/Dockerfile) +- [`23.0.0-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.0-dind-alpine3.17`, `23.0.0`, `23.0`, `23`, `latest`, `23.0.0-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/23.0/dind/Dockerfile) - [`23.0.0-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind-rootless/Dockerfile) - [`23.0.0-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.0-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.0-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) - [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5e66d34957da..7cf2a9625a01 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.5`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8ec93219dcebea9909e5805b4554f8dc8de6af72/5/debian/Dockerfile) -- [`5.33.5-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8ec93219dcebea9909e5805b4554f8dc8de6af72/5/alpine/Dockerfile) +- [`5.33.6`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/eb14ce218f7970e4e01ee32fd6568c45850cf4cb/5/debian/Dockerfile) +- [`5.33.6-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/eb14ce218f7970e4e01ee32fd6568c45850cf4cb/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/php/README.md b/php/README.md index 6227cd128cd6..4bfdf100d68a 100644 --- a/php/README.md +++ b/php/README.md @@ -38,34 +38,20 @@ WARNING: - [`8.2.2-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.2-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/cli/Dockerfile) - [`8.2.2-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.2-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.15RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.15RC1-bullseye`, `8.1-rc-bullseye`, `8.1.15RC1-cli`, `8.1-rc-cli`, `8.1.15RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.15RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.15RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.15RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.15RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.15RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.15RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.15RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.15RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/cli/Dockerfile) -- [`8.1.15RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/apache/Dockerfile) -- [`8.1.15RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.15RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/buster/zts/Dockerfile) -- [`8.1.15RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.15RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.15RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.15RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.15RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.15RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.15RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.15RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.15RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.15RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.15RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.15RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/55fa5b74a6dc5e579eb4122b2e895f1d18becce0/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.14-cli-bullseye`, `8.1-cli-bullseye`, `8.1.14-bullseye`, `8.1-bullseye`, `8.1.14-cli`, `8.1-cli`, `8.1.14`, `8.1`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/cli/Dockerfile) -- [`8.1.14-apache-bullseye`, `8.1-apache-bullseye`, `8.1.14-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/apache/Dockerfile) -- [`8.1.14-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.14-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/fpm/Dockerfile) -- [`8.1.14-zts-bullseye`, `8.1-zts-bullseye`, `8.1.14-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/bullseye/zts/Dockerfile) -- [`8.1.14-cli-buster`, `8.1-cli-buster`, `8.1.14-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/buster/cli/Dockerfile) -- [`8.1.14-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/buster/apache/Dockerfile) -- [`8.1.14-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/buster/fpm/Dockerfile) -- [`8.1.14-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/buster/zts/Dockerfile) -- [`8.1.14-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.14-alpine3.17`, `8.1-alpine3.17`, `8.1.14-cli-alpine`, `8.1-cli-alpine`, `8.1.14-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.14-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.14-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.14-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.14-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.14-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.14-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.14-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.14-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/a4b05a8f2b992ca2e14032713b12c72cc7f545f3/8.1/alpine3.16/zts/Dockerfile) +- [`8.1.15-cli-bullseye`, `8.1-cli-bullseye`, `8.1.15-bullseye`, `8.1-bullseye`, `8.1.15-cli`, `8.1-cli`, `8.1.15`, `8.1`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/cli/Dockerfile) +- [`8.1.15-apache-bullseye`, `8.1-apache-bullseye`, `8.1.15-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/apache/Dockerfile) +- [`8.1.15-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.15-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/fpm/Dockerfile) +- [`8.1.15-zts-bullseye`, `8.1-zts-bullseye`, `8.1.15-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/zts/Dockerfile) +- [`8.1.15-cli-buster`, `8.1-cli-buster`, `8.1.15-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/cli/Dockerfile) +- [`8.1.15-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/apache/Dockerfile) +- [`8.1.15-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/fpm/Dockerfile) +- [`8.1.15-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/zts/Dockerfile) +- [`8.1.15-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.15-alpine3.17`, `8.1-alpine3.17`, `8.1.15-cli-alpine`, `8.1-cli-alpine`, `8.1.15-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.15-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.15-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.15-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.15-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.15-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.15-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.15-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.15-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/zts/Dockerfile) - [`8.0.27-cli-bullseye`, `8.0-cli-bullseye`, `8.0.27-bullseye`, `8.0-bullseye`, `8.0.27-cli`, `8.0-cli`, `8.0.27`, `8.0`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/cli/Dockerfile) - [`8.0.27-apache-bullseye`, `8.0-apache-bullseye`, `8.0.27-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/apache/Dockerfile) - [`8.0.27-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.27-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/fpm/Dockerfile) diff --git a/python/README.md b/python/README.md index 5ddc53926403..4319d615e75f 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/buster/Dockerfile) -- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/bullseye/Dockerfile) -- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/slim-bullseye/Dockerfile) -- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/buster/Dockerfile) -- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/slim-buster/Dockerfile) -- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/alpine3.17/Dockerfile) -- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/alpine3.16/Dockerfile) -- [`3.11.1-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.1-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/bullseye/Dockerfile) -- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/slim-bullseye/Dockerfile) -- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/buster/Dockerfile) -- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/slim-buster/Dockerfile) -- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/alpine3.17/Dockerfile) -- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/alpine3.16/Dockerfile) -- [`3.10.9-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.9-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/alpine3.16/Dockerfile) +- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/buster/Dockerfile) +- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/bullseye/Dockerfile) +- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/slim-bullseye/Dockerfile) +- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/buster/Dockerfile) +- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/slim-buster/Dockerfile) +- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/alpine3.17/Dockerfile) +- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/alpine3.16/Dockerfile) +- [`3.11.1-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.1-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/bullseye/Dockerfile) +- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/slim-bullseye/Dockerfile) +- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/buster/Dockerfile) +- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/slim-buster/Dockerfile) +- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/alpine3.17/Dockerfile) +- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/alpine3.16/Dockerfile) +- [`3.10.9-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.9-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a4`, `3.12-rc`: - - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a4-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/bff32fbfdbd737838c16c6b01ac910fb889e0767/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.1`, `3.11`, `3`, `latest`: - - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.11/bullseye/Dockerfile) - - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/bullseye/Dockerfile) + - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.1-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.9`, `3.10`: - - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.10/bullseye/Dockerfile) - - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/bullseye/Dockerfile) + - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.9-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/046374fd6a8186a58ef8099e8b5f43946487f5fa/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/a1af335ee34324b2f40d7e90345f9468328f6a00/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/bullseye/Dockerfile) # Quick reference (cont.) From bb6b29b9a31fe8fe9e083c989b3091914e301fd6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Feb 2023 16:14:39 -0800 Subject: [PATCH 0056/2686] Run update.sh --- debian/README.md | 50 ++++++++++++++++++++++----------------------- sonarqube/README.md | 17 ++++++--------- 2 files changed, 31 insertions(+), 36 deletions(-) diff --git a/debian/README.md b/debian/README.md index 1ba424887637..a920888665e3 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230109`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230109-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230109`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230109-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/rc-buggy/Dockerfile) -- [`sid`, `sid-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/sid/Dockerfile) -- [`sid-slim`, `sid-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/sid/slim/Dockerfile) -- [`stable`, `stable-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/stable/slim/Dockerfile) -- [`testing`, `testing-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230109`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230109-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b13cf5860ac15c1d909abd7239516db9748fea/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230202`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230202-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230202`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230202-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/rc-buggy/Dockerfile) +- [`sid`, `sid-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/sid/Dockerfile) +- [`sid-slim`, `sid-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/sid/slim/Dockerfile) +- [`stable`, `stable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/slim/Dockerfile) +- [`testing`, `testing-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/unstable/slim/Dockerfile) # Quick reference (cont.) @@ -55,7 +55,7 @@ WARNING: [https://github.com/debuerreotype/docker-debian-artifacts/issues](https://github.com/debuerreotype/docker-debian-artifacts/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/debian/), [`arm32v5`](https://hub.docker.com/r/arm32v5/debian/), [`arm32v7`](https://hub.docker.com/r/arm32v7/debian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/debian/), [`i386`](https://hub.docker.com/r/i386/debian/), [`mips64le`](https://hub.docker.com/r/mips64le/debian/), [`ppc64le`](https://hub.docker.com/r/ppc64le/debian/), [`riscv64`](https://hub.docker.com/r/riscv64/debian/), [`s390x`](https://hub.docker.com/r/s390x/debian/) + [`amd64`](https://hub.docker.com/r/amd64/debian/), [`arm32v5`](https://hub.docker.com/r/arm32v5/debian/), [`arm32v7`](https://hub.docker.com/r/arm32v7/debian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/debian/), [`i386`](https://hub.docker.com/r/i386/debian/), [`mips64le`](https://hub.docker.com/r/mips64le/debian/), [`ppc64le`](https://hub.docker.com/r/ppc64le/debian/), [`s390x`](https://hub.docker.com/r/s390x/debian/) - **Published image artifact details**: [repo-info repo's `repos/debian/` directory](https://github.com/docker-library/repo-info/blob/master/repos/debian) ([history](https://github.com/docker-library/repo-info/commits/master/repos/debian)) diff --git a/sonarqube/README.md b/sonarqube/README.md index cf4d06ef3cb6..ed9985ede841 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.10-community`, `8.9-community`, `8-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/8/community/Dockerfile) -- [`8.9.10-developer`, `8.9-developer`, `8-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/8/developer/Dockerfile) -- [`8.9.10-enterprise`, `8.9-enterprise`, `8-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/8/enterprise/Dockerfile) -- [`8.9.10-datacenter-app`, `8.9-datacenter-app`, `8-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/8/datacenter/app/Dockerfile) -- [`8.9.10-datacenter-search`, `8.9-datacenter-search`, `8-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/8/datacenter/search/Dockerfile) -- [`9.8.0-community`, `9.8-community`, `9-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/9/community/Dockerfile) -- [`9.8.0-developer`, `9.8-developer`, `9-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/9/developer/Dockerfile) -- [`9.8.0-enterprise`, `9.8-enterprise`, `9-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/9/enterprise/Dockerfile) -- [`9.8.0-datacenter-app`, `9.8-datacenter-app`, `9-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/9/datacenter/app/Dockerfile) -- [`9.8.0-datacenter-search`, `9.8-datacenter-search`, `9-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/6e6bd428f38d5ba5b6169fd15d29ce8dbe00921f/9/datacenter/search/Dockerfile) +- [`9.9.0-community`, `9.9-community`, `9-community`, `community`, `lts`, `lts-community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/community/Dockerfile) +- [`9.9.0-developer`, `9.9-developer`, `9-developer`, `developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/developer/Dockerfile) +- [`9.9.0-enterprise`, `9.9-enterprise`, `9-enterprise`, `enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/enterprise/Dockerfile) +- [`9.9.0-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/datacenter/app/Dockerfile) +- [`9.9.0-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/datacenter/search/Dockerfile) # Quick reference (cont.) @@ -41,7 +36,7 @@ WARNING: [https://github.com/SonarSource/docker-sonarqube/issues](https://github.com/SonarSource/docker-sonarqube/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/sonarqube/) + [`amd64`](https://hub.docker.com/r/amd64/sonarqube/), [`arm64v8`](https://hub.docker.com/r/arm64v8/sonarqube/) - **Published image artifact details**: [repo-info repo's `repos/sonarqube/` directory](https://github.com/docker-library/repo-info/blob/master/repos/sonarqube) ([history](https://github.com/docker-library/repo-info/commits/master/repos/sonarqube)) From 1c8ff47a8bc387df34086cde16016da1a533b330 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Feb 2023 17:08:52 -0800 Subject: [PATCH 0057/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- composer/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index cc22dfe1d537..bb78b406ff86 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230129.0.122153`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/75dd5eff9d3bf9fdeb3201d33baa4fae53fbc5e7/Dockerfile.base) -- [`base-devel`, `base-devel-20230129.0.122153`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/75dd5eff9d3bf9fdeb3201d33baa4fae53fbc5e7/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230205.0.123931`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f1a975aac18bd08475fc7d1b13812f836f7ed5d4/Dockerfile.base) +- [`base-devel`, `base-devel-20230205.0.123931`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f1a975aac18bd08475fc7d1b13812f836f7ed5d4/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 317a0563ca0b..0cca357cb594 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/9f0f421fa2e4d90764b9f0555417f22c356e9bea/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a7ece1816a38bf46d0360cebf4bb625207f2c75/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 784ffabddb36..942b0836aece 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.1`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/4753480775709ab437330892f5c7fcf03f0d4344/2.5/Dockerfile) +- [`2.5.2`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/53b9a443e90aed4b23cffe34b6db2875e9fcaa61/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.18`, `2.2`, `lts`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.2/Dockerfile) +- [`2.2.19`, `2.2`, `lts`](https://github.com/composer/docker/blob/3b520a066792b9ae146ac0cb44b5e7103a79ed63/2.2/Dockerfile) - [`1.10.26`, `1.10`, `1`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/1.10/Dockerfile) # Quick reference (cont.) From 2e294339081a731ccdd536b3229e4ba8f1cc8130 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Feb 2023 18:08:48 -0800 Subject: [PATCH 0058/2686] Run update.sh --- crate/README.md | 2 +- mariadb/README.md | 18 +++++++++--------- nats/README.md | 22 +++++++++++----------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/crate/README.md b/crate/README.md index 18c7236e0300..c46afdef814a 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.3`, `5.1`, `latest`](https://github.com/crate/docker-crate/blob/443d1748b19f6135209ea0c86d7dd13effcfae75/Dockerfile) +- [`5.1.4`, `5.1`, `latest`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) - [`5.0.3`, `5.0`](https://github.com/crate/docker-crate/blob/0b872eae2e0300879907405a8177be4418fe2a15/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index d4bf2b45f2bc..b1586ee3ca73 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,15 +26,15 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`10.11.1-rc-jammy`, `10.11-rc-jammy`, `10.11.1-rc`, `10.11-rc`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.11/Dockerfile) -- [`10.10.2-jammy`, `10.10-jammy`, `10-jammy`, `jammy`, `10.10.2`, `10.10`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.10/Dockerfile) -- [`10.9.4-jammy`, `10.9-jammy`, `10.9.4`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.9/Dockerfile) -- [`10.8.6-jammy`, `10.8-jammy`, `10.8.6`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.8/Dockerfile) -- [`10.7.7-focal`, `10.7-focal`, `10.7.7`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.7/Dockerfile) -- [`10.6.11-focal`, `10.6-focal`, `10.6.11`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.6/Dockerfile) -- [`10.5.18-focal`, `10.5-focal`, `10.5.18`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.5/Dockerfile) -- [`10.4.27-focal`, `10.4-focal`, `10.4.27`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.4/Dockerfile) -- [`10.3.37-focal`, `10.3-focal`, `10.3.37`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/56ef6d9f842e1ddf50e4359625a6e5cef1748c38/10.3/Dockerfile) +- [`10.11.1-rc-jammy`, `10.11-rc-jammy`, `10.11.1-rc`, `10.11-rc`](https://github.com/MariaDB/mariadb-docker/blob/ac276eb82f0535ff1849018f46be5e5ed396bda1/10.11/Dockerfile) +- [`10.10.3-jammy`, `10.10-jammy`, `10-jammy`, `jammy`, `10.10.3`, `10.10`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.10/Dockerfile) +- [`10.9.5-jammy`, `10.9-jammy`, `10.9.5`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.9/Dockerfile) +- [`10.8.7-jammy`, `10.8-jammy`, `10.8.7`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.8/Dockerfile) +- [`10.7.8-focal`, `10.7-focal`, `10.7.8`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.7/Dockerfile) +- [`10.6.12-focal`, `10.6-focal`, `10.6.12`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.6/Dockerfile) +- [`10.5.19-focal`, `10.5-focal`, `10.5.19`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.5/Dockerfile) +- [`10.4.28-focal`, `10.4-focal`, `10.4.28`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.4/Dockerfile) +- [`10.3.38-focal`, `10.3-focal`, `10.3.38`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.3/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 95329db40f23..b46ed169ef80 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.12-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.12-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/alpine3.17/Dockerfile) -- [`2.9.12-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.12-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/scratch/Dockerfile) -- [`2.9.12-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/windowsservercore-1809/Dockerfile) -- [`2.9.12-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) +- [`2.9.14-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.14-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/alpine3.17/Dockerfile) +- [`2.9.14-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.14-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/scratch/Dockerfile) +- [`2.9.14-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/windowsservercore-1809/Dockerfile) +- [`2.9.14-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.12`, `2.9`, `2`, `latest`: - - [`2.9.12-scratch`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/scratch/Dockerfile) - - [`2.9.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) -- `2.9.12-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.12-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/windowsservercore-1809/Dockerfile) -- `2.9.12-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/03452e5483a7f09c4e9ceb290997f5d71cadab77/2.9.12/nanoserver-1809/Dockerfile) +- `2.9.14`, `2.9`, `2`, `latest`: + - [`2.9.14-scratch`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/scratch/Dockerfile) + - [`2.9.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) +- `2.9.14-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.14-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/windowsservercore-1809/Dockerfile) +- `2.9.14-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) # Quick reference (cont.) From ea66bc282348115ae7267326d2d432a88f12fb0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Feb 2023 12:08:48 -0800 Subject: [PATCH 0059/2686] Run update.sh --- aerospike/README.md | 4 ++-- jruby/README.md | 20 ++++++++++---------- neo4j/README.md | 4 ++-- zookeeper/README.md | 7 +------ 4 files changed, 15 insertions(+), 20 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 1412be72a97b..7c5fb980846d 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.2.0.2`](https://github.com/aerospike/aerospike-server.docker/blob/26089140713466195470d5d246fdd2bda5b82180/enterprise/debian11/Dockerfile) -- [`ce-6.2.0.2`](https://github.com/aerospike/aerospike-server.docker/blob/26089140713466195470d5d246fdd2bda5b82180/community/debian11/Dockerfile) +- [`ee-6.2.0.3`, `ee-6.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/7aac053d7ed9d2ee32f83edea7e31fdf65e10617/enterprise/debian11/Dockerfile) +- [`ce-6.2.0.3`, `ce-6.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/7aac053d7ed9d2ee32f83edea7e31fdf65e10617/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index a59c22e1ccfa..84974d3f7194 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.0`, `9.4-jre`, `9.4-jre8`, `9.4.0-jre`, `9.4.0-jre8`, `9.4.0.0`, `9.4.0.0-jre`, `9.4.0.0-jre8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.0-jdk`, `9.4.0-jdk8`, `9.4.0.0-jdk`, `9.4.0.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.0-jre11`, `9.4.0.0-jre11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.0-jdk11`, `9.4.0.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.0-jdk17`, `9.4.0.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.4/jdk17/Dockerfile) -- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bd7d67cc63089c1aa63df4c37dc19ccb9b5a6dbe/9.3/jdk17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.1`, `9.4-jre`, `9.4-jre8`, `9.4.1-jre`, `9.4.1-jre8`, `9.4.1.0`, `9.4.1.0-jre`, `9.4.1.0-jre8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.1-jdk`, `9.4.1-jdk8`, `9.4.1.0-jdk`, `9.4.1.0-jdk8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.1-jre11`, `9.4.1.0-jre11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.1-jdk11`, `9.4.1.0-jdk11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.1-jdk17`, `9.4.1.0-jdk17`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk17/Dockerfile) +- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk17/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 3d068659c9c2..54763f44e21d 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0`, `5.4.0-community`, `5.4`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/community/Dockerfile) -- [`5.4.0-enterprise`, `5.4-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/77b1e4cd57fd08148938ff39ea22a393df0cd8c2/5.4.0/enterprise/Dockerfile) +- [`5.4.0`, `5.4.0-community`, `5.4`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/3aea9c3039e2db1a5adfb994f6b6d8c315f3f867/5.4.0/community/Dockerfile) +- [`5.4.0-enterprise`, `5.4-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/3aea9c3039e2db1a5adfb994f6b6d8c315f3f867/5.4.0/enterprise/Dockerfile) - [`4.4.17`, `4.4.17-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/community/Dockerfile) - [`4.4.17-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/enterprise/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index 90683e423433..bae6b74d2e17 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,14 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.10`, `3.5`, `3.5.10-temurin`, `3.5-temurin`](https://github.com/31z4/zookeeper-docker/blob/80d975e5c07f2f1e981fd2d61c9e1dfc3f980b80/3.5.10/Dockerfile) -- [`3.5.9-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.5.9/Dockerfile) - [`3.6.4`, `3.6`, `3.6.4-temurin`, `3.6-temurin`](https://github.com/31z4/zookeeper-docker/blob/80d975e5c07f2f1e981fd2d61c9e1dfc3f980b80/3.6.4/Dockerfile) -- [`3.6.3-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.6.3/Dockerfile) -- [`3.7.1`, `3.7`, `3.7.1-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.7.1/Dockerfile) - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) -- [`3.8.0`, `3.8`, `3.8.0-openjdk`](https://github.com/31z4/zookeeper-docker/blob/060f64d28d1780373f90ac152bd2538abcf1924c/3.8.0/Dockerfile) -- [`3.8.0-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.8.0/Dockerfile) +- [`3.8.1`, `3.8`, `3.8.1-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/b078affda60681e71b71760740e795328c9d1ab5/3.8.1/Dockerfile) # Quick reference (cont.) From b53ecd77840d495703dfa23a0e94d74ec7ac9866 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Feb 2023 13:14:13 -0800 Subject: [PATCH 0060/2686] Run update.sh --- vault/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vault/README.md b/vault/README.md index bb41736f1ebe..83ee9e1f0a5b 100644 --- a/vault/README.md +++ b/vault/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12.2`, `latest`](https://github.com/hashicorp/docker-vault/blob/2cba27a16dc7bea0857561ab0424de1bb6e0ffd3/0.X/Dockerfile) -- [`1.11.6`](https://github.com/hashicorp/docker-vault/blob/a7bb73b2f1c8ed40ca8baf5ba2a4c2191e70d506/0.X/Dockerfile) -- [`1.10.9`](https://github.com/hashicorp/docker-vault/blob/cfafe61e0b2679ca8aa24d8ea457767acccb3e1d/0.X/Dockerfile) +- [`1.12.3`, `latest`](https://github.com/hashicorp/docker-vault/blob/79972dce1c4487ae46ba37dc629aa15d09d0410b/0.X/Dockerfile) +- [`1.11.7`](https://github.com/hashicorp/docker-vault/blob/056fdf2cf0f61b008057f480d1ab2be9efc16416/0.X/Dockerfile) +- [`1.10.10`](https://github.com/hashicorp/docker-vault/blob/1314eec7432841d038cbd435f9d2fa97a7dfd3f5/0.X/Dockerfile) - [`1.9.10`](https://github.com/hashicorp/docker-vault/blob/62322ee96a690b07cdc669eb9876fc05e073ff2c/0.X/Dockerfile) # Quick reference (cont.) From 52d9b072c66dff4a9c47292b34d21a11e908db49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Feb 2023 14:08:51 -0800 Subject: [PATCH 0061/2686] Run update.sh --- ghost/README.md | 4 ++-- rabbitmq/README.md | 12 ++++++------ wordpress/README.md | 33 +++++++++++++++++++++------------ 3 files changed, 29 insertions(+), 20 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 7cf2a9625a01..51f6a94c79d1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.6`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/eb14ce218f7970e4e01ee32fd6568c45850cf4cb/5/debian/Dockerfile) -- [`5.33.6-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/eb14ce218f7970e4e01ee32fd6568c45850cf4cb/5/alpine/Dockerfile) +- [`5.33.7`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/08360e9fb2c04aefcf3bf29e5b2e3390d49d8719/5/debian/Dockerfile) +- [`5.33.7-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/08360e9fb2c04aefcf3bf29e5b2e3390d49d8719/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 474e6405fbbf..f8af359ac968 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.8`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e08fa77bc1b1601b3bd5638ff5f25d4d2ced724d/3.11/ubuntu/Dockerfile) +- [`3.11.8`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/5c961954162b5e6ecb0e173e34a8c7bbcdc9d3d3/3.11/ubuntu/Dockerfile) - [`3.11.8-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.8-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e08fa77bc1b1601b3bd5638ff5f25d4d2ced724d/3.11/alpine/Dockerfile) +- [`3.11.8-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5c961954162b5e6ecb0e173e34a8c7bbcdc9d3d3/3.11/alpine/Dockerfile) - [`3.11.8-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.17`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ca404c1cb4030dc2db04829df101b2063f1a8649/3.10/ubuntu/Dockerfile) +- [`3.10.17`, `3.10`](https://github.com/docker-library/rabbitmq/blob/019574ecad13805af60bba9fe60861c89a8ec162/3.10/ubuntu/Dockerfile) - [`3.10.17-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ca404c1cb4030dc2db04829df101b2063f1a8649/3.10/alpine/Dockerfile) +- [`3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/019574ecad13805af60bba9fe60861c89a8ec162/3.10/alpine/Dockerfile) - [`3.10.17-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/8f13e19291937c94fe0d8f12b03f8cd728903422/3.9/ubuntu/Dockerfile) +- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/ubuntu/Dockerfile) - [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/8f13e19291937c94fe0d8f12b03f8cd728903422/3.9/alpine/Dockerfile) +- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/alpine/Dockerfile) - [`3.9.28-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index afbb28f10ae4..519f0ac9b885 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,18 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.0/apache/Dockerfile) -- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.0/fpm/Dockerfile) -- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.1/apache/Dockerfile) -- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.1/fpm/Dockerfile) -- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/97f75b51f909fbd9894d128ea6893120cfd23979/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6569609b4db94cdf0c2eac852456049ac7eacea5/latest/php8.2/apache/Dockerfile) -- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6569609b4db94cdf0c2eac852456049ac7eacea5/latest/php8.2/fpm/Dockerfile) -- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6569609b4db94cdf0c2eac852456049ac7eacea5/latest/php8.2/fpm-alpine/Dockerfile) -- [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/b95184001fd181d86d4a409a4ae26b23795bb0d4/cli/php8.0/alpine/Dockerfile) -- [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/b95184001fd181d86d4a409a4ae26b23795bb0d4/cli/php8.1/alpine/Dockerfile) -- [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6569609b4db94cdf0c2eac852456049ac7eacea5/cli/php8.2/alpine/Dockerfile) +- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/apache/Dockerfile) +- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/fpm/Dockerfile) +- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/apache/Dockerfile) +- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/fpm/Dockerfile) +- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/apache/Dockerfile) +- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/fpm/Dockerfile) +- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/fpm-alpine/Dockerfile) +- [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) +- [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) +- [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) +- [`beta-6.2-beta1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-beta1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-beta1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-beta1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-beta1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-beta1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-beta1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-beta1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-beta1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 60aff8a1bfadd602e0751f1d7cc1b4c6d75f58e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Cotineau?= Date: Tue, 7 Feb 2023 23:17:24 +0100 Subject: [PATCH 0062/2686] SonarQube document the LTS tag and Arm64 support (#2279) --- sonarqube/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sonarqube/content.md b/sonarqube/content.md index 03386a25d96a..4d9138ff2d90 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -27,10 +27,14 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http ## Installation +> **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). + For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. To run a cluster with the Data Center Edition, please refer to Installing SonarQube from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +> The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. + ## Configuration ### Database From b917aa388b801e278d30efb3d5ca6cdbafc6262c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Feb 2023 15:08:55 -0800 Subject: [PATCH 0063/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- haproxy/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- sonarqube/README.md | 4 ++++ 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bash/README.md b/bash/README.md index 1c4e5d36f81d..be0cef6bd7fa 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230124`, `devel`, `devel-20230124-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ec76a852138fa7e8a84be2b598da01f9302c7b4b/devel/Dockerfile) +- [`devel-20230206`, `devel`, `devel-20230206-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/31563604d3c9e621a828d61c6c297c2ba964f455/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 837baeef5e83..4d8a31acbf96 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.6.1`](https://github.com/docker-library/elasticsearch/blob/8001c62c84bb3fa9f19a2725d20d4e5f404dda5e/8/Dockerfile) -- [`7.17.8`](https://github.com/docker-library/elasticsearch/blob/4ae79746e02c947ff9dae92f7011399f9c809f18/7/Dockerfile) +- [`7.17.9`](https://github.com/docker-library/elasticsearch/blob/584687331345cc631249925517b78b2f1058914c/7/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index f07c84384743..74a2fcc6d70f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev2`, `2.8-dev`, `2.8-dev2-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/90d3b5fa57f474d0c91dccd0a6185a6e23eec72a/2.8/Dockerfile) -- [`2.8-dev2-alpine`, `2.8-dev-alpine`, `2.8-dev2-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/90d3b5fa57f474d0c91dccd0a6185a6e23eec72a/2.8/alpine/Dockerfile) +- [`2.8-dev3`, `2.8-dev`, `2.8-dev3-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/09db530687ce9142df90e3dbad7dc5a5c2ce152e/2.8/Dockerfile) +- [`2.8-dev3-alpine`, `2.8-dev-alpine`, `2.8-dev3-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/09db530687ce9142df90e3dbad7dc5a5c2ce152e/2.8/alpine/Dockerfile) - [`2.7.2`, `2.7`, `latest`, `2.7.2-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/Dockerfile) - [`2.7.2-alpine`, `2.7-alpine`, `alpine`, `2.7.2-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/alpine/Dockerfile) - [`2.6.8`, `2.6`, `lts`, `2.6.8-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 5d9aee88c6c3..3bb13b5633ba 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.6.1`](https://github.com/docker-library/kibana/blob/99dfd6ecee59bd6e72c85c2f6b4ded17e3180c5e/8/Dockerfile) -- [`7.17.8`](https://github.com/docker-library/kibana/blob/c98bb27941c6b2dafd6d963aab2b0cc9f0876315/7/Dockerfile) +- [`7.17.9`](https://github.com/docker-library/kibana/blob/fd40461903be40051a19f81fc7a1630e8049343f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index d90bb0b4c4ef..0aef37bd436f 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.6.1`](https://github.com/docker-library/logstash/blob/9061b36c4de1baca7642d05c31111515873ab7cb/8/Dockerfile) -- [`7.17.8`](https://github.com/docker-library/logstash/blob/e0450c99e0d55edb3a548a10466153bb42f6eb91/7/Dockerfile) +- [`7.17.9`](https://github.com/docker-library/logstash/blob/19eccdc220a6c1d80ddb3a0e48e2bf5d2414682e/7/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index ed9985ede841..72e4694a3b3a 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -78,10 +78,14 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http ## Installation +> **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). + For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. To run a cluster with the Data Center Edition, please refer to Installing SonarQube from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +> The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. + ## Configuration ### Database From d9a9f142121491b0c43968548bb76eba9e6b15b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Feb 2023 11:08:53 -0800 Subject: [PATCH 0064/2686] Run update.sh --- buildpack-deps/README.md | 2 +- dart/README.md | 2 +- fedora/README.md | 7 +++---- oraclelinux/README.md | 12 ++++++------ orientdb/README.md | 4 ++-- phpmyadmin/README.md | 6 +++--- storm/README.md | 4 +--- 7 files changed, 17 insertions(+), 20 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index adc427194c31..1485408afa60 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -58,7 +58,7 @@ WARNING: [https://github.com/docker-library/buildpack-deps/issues](https://github.com/docker-library/buildpack-deps/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`mips64le`](https://hub.docker.com/r/mips64le/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`riscv64`](https://hub.docker.com/r/riscv64/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/) + [`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`mips64le`](https://hub.docker.com/r/mips64le/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/) - **Published image artifact details**: [repo-info repo's `repos/buildpack-deps/` directory](https://github.com/docker-library/repo-info/blob/master/repos/buildpack-deps) ([history](https://github.com/docker-library/repo-info/commits/master/repos/buildpack-deps)) diff --git a/dart/README.md b/dart/README.md index 50a53c415106..954155a42452 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.1-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.1`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/2c4fd37c2a7352f7533ad1283fabf42c6dc3e3c6/stable/bullseye/Dockerfile) +- [`2.19.2-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.2`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/32a1cd0d9e9a012933e30517a15f9b02169daf4b/stable/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index ccdf4896f1c9..e2ddcb9fb3fe 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`35`](https://github.com/fedora-cloud/docker-brew-fedora/blob/493d6eda2434bfdac64d61016aa6b9dc33cf4bc5/x86_64/Dockerfile) -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/6c310b8b652eb03e5e895b0d47a6d1fde84d5e26/x86_64/Dockerfile) -- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1853328a811b98a580c4d3ca50d10cd788ba9d64/x86_64/Dockerfile) -- [`38`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e7136a4190768fa604776d6535269a6b52189a4c/x86_64/Dockerfile) +- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3f975633c8a42e4ef23d4171b8c7099807f06861/x86_64/Dockerfile) +- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7ce19eafa9a8336d467ab74c20bd414b658228be/x86_64/Dockerfile) +- [`38`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3126e73eb4689d071d894d882e3419b9fbc1548b/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 9908ec22d37a..13b52374cb09 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ad17dede93fdaec2315c283a64ed47621e1d4a6d/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 443cbf95e045..0bc9a023fc63 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.15`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/6bb69d8c2a33ac2b4148a0c9445236ba6fc56160/release/3.2.x/3.2.15/Dockerfile) -- [`3.2.15-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/6bb69d8c2a33ac2b4148a0c9445236ba6fc56160/release/3.2.x/3.2.15-tp3/Dockerfile) +- [`3.2.16`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/16d976b040d235855d1bfd9da20f744fe17ef986/release/3.2.x/3.2.16/Dockerfile) +- [`3.2.16-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/16d976b040d235855d1bfd9da20f744fe17ef986/release/3.2.x/3.2.16-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 22d73f2cea93..ac5dcdf892f9 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.0`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/71d54acc9309c04ed53a148ca1979b6cdc10c5b9/apache/Dockerfile) -- [`5.2.0-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/71d54acc9309c04ed53a148ca1979b6cdc10c5b9/fpm/Dockerfile) -- [`5.2.0-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/71d54acc9309c04ed53a148ca1979b6cdc10c5b9/fpm-alpine/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/apache/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/fpm/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index d121c280c7c3..55158282f409 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.2.4`, `1.2`](https://github.com/31z4/storm-docker/blob/f72658afa5e9c4ee4d4d5ef5cf9b32b226d0ed19/1.2.4/Dockerfile) - [`1.2.4-temurin`, `1.2-temurin`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) -- [`2.4.0`, `2.4`](https://github.com/31z4/storm-docker/blob/f72658afa5e9c4ee4d4d5ef5cf9b32b226d0ed19/2.4.0/Dockerfile) - [`2.4.0-temurin`, `2.4-temurin`, `latest`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/2.4.0/Dockerfile) # Quick reference (cont.) @@ -35,7 +33,7 @@ WARNING: [https://github.com/31z4/storm-docker/issues](https://github.com/31z4/storm-docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/storm/) + [`amd64`](https://hub.docker.com/r/amd64/storm/), [`arm64v8`](https://hub.docker.com/r/arm64v8/storm/) - **Published image artifact details**: [repo-info repo's `repos/storm/` directory](https://github.com/docker-library/repo-info/blob/master/repos/storm) ([history](https://github.com/docker-library/repo-info/commits/master/repos/storm)) From 9f76cf55ad9d3b3592f1dd736052e0c9df0cc6c9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Feb 2023 15:08:49 -0800 Subject: [PATCH 0065/2686] Run update.sh --- docker/README.md | 4 +-- python/README.md | 90 ++++++++++++++++++++++++------------------------ ruby/README.md | 12 +++---- 3 files changed, 53 insertions(+), 53 deletions(-) diff --git a/docker/README.md b/docker/README.md index b8389e8aead9..d15cb114c2e5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.0-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.0-cli-alpine3.17`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/cli/Dockerfile) +- [`23.0.0-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.0-cli-alpine3.17`](https://github.com/docker-library/docker/blob/f7c1eb20c9898f56999cb594a99418e93e772d5d/23.0/cli/Dockerfile) - [`23.0.0-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.0-dind-alpine3.17`, `23.0.0`, `23.0`, `23`, `latest`, `23.0.0-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/23.0/dind/Dockerfile) - [`23.0.0-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind-rootless/Dockerfile) - [`23.0.0-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.0-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.0-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/4855ede4876923c0c5a663cd23e1d314d3e3d5e5/20.10/cli/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/dbd6b97c257242d05f1ade073acd1b3195ac2c75/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) diff --git a/python/README.md b/python/README.md index 4319d615e75f..887f63ffda96 100644 --- a/python/README.md +++ b/python/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`3.12.0a4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a4-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a4-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/buster/Dockerfile) -- [`3.12.0a4-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a4-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a4-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.1-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/bullseye/Dockerfile) -- [`3.11.1-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.1-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/slim-bullseye/Dockerfile) -- [`3.11.1-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/buster/Dockerfile) -- [`3.11.1-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/slim-buster/Dockerfile) -- [`3.11.1-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.1-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/alpine3.17/Dockerfile) -- [`3.11.1-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/alpine3.16/Dockerfile) -- [`3.11.1-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.1-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.9-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/bullseye/Dockerfile) -- [`3.10.9-slim-bullseye`, `3.10-slim-bullseye`, `3.10.9-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/slim-bullseye/Dockerfile) -- [`3.10.9-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/buster/Dockerfile) -- [`3.10.9-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/slim-buster/Dockerfile) -- [`3.10.9-alpine3.17`, `3.10-alpine3.17`, `3.10.9-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/alpine3.17/Dockerfile) -- [`3.10.9-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/alpine3.16/Dockerfile) -- [`3.10.9-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.9-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0a5-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a5-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a5-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a5-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/buster/Dockerfile) +- [`3.12.0a5-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a5-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a5-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a5-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a5-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/bullseye/Dockerfile) +- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/slim-bullseye/Dockerfile) +- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/buster/Dockerfile) +- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/slim-buster/Dockerfile) +- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/alpine3.17/Dockerfile) +- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/alpine3.16/Dockerfile) +- [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/bullseye/Dockerfile) +- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/slim-bullseye/Dockerfile) +- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/buster/Dockerfile) +- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/slim-buster/Dockerfile) +- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/alpine3.17/Dockerfile) +- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/alpine3.16/Dockerfile) +- [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) - [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) - [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/slim-bullseye/Dockerfile) - [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/buster/Dockerfile) @@ -73,27 +73,27 @@ WARNING: ## Shared Tags -- `3.12.0a4`, `3.12-rc`: - - [`3.12.0a4-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0a4-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b871ae197773dc798f3c2ba9eb380f1e592ae57f/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.11.1`, `3.11`, `3`, `latest`: - - [`3.11.1-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.11/bullseye/Dockerfile) - - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.1-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/adfcf639f0debfc3d091371e0ecc58699738df2a/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10.9`, `3.10`: - - [`3.10.9-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.10/bullseye/Dockerfile) - - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10.9-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/48f998b400941776398896c05e10b4e79ee74d9b/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a5`, `3.12-rc`: + - [`3.12.0a5-bullseye`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a5-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.11.2`, `3.11`, `3`, `latest`: + - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/bullseye/Dockerfile) + - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.2-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.10.10`, `3.10`: + - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/bullseye/Dockerfile) + - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10.10-windowsservercore`, `3.10-windowsservercore`: + - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: diff --git a/ruby/README.md b/ruby/README.md index 1db0cd70ddb9..7fca9b610984 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.0-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.0`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/bullseye/Dockerfile) -- [`3.2.0-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.0-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/slim-bullseye/Dockerfile) -- [`3.2.0-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/buster/Dockerfile) -- [`3.2.0-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/slim-buster/Dockerfile) -- [`3.2.0-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.0-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/alpine3.17/Dockerfile) -- [`3.2.0-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/c756b06f8cc771fb54f629d51217aa1802ba6ec2/3.2/alpine3.16/Dockerfile) +- [`3.2.1-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.1`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/bullseye/Dockerfile) +- [`3.2.1-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.1-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/slim-bullseye/Dockerfile) +- [`3.2.1-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/buster/Dockerfile) +- [`3.2.1-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/slim-buster/Dockerfile) +- [`3.2.1-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.1-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/alpine3.17/Dockerfile) +- [`3.2.1-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/alpine3.16/Dockerfile) - [`3.1.3-bullseye`, `3.1-bullseye`, `3.1.3`, `3.1`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/bullseye/Dockerfile) - [`3.1.3-slim-bullseye`, `3.1-slim-bullseye`, `3.1.3-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/slim-bullseye/Dockerfile) - [`3.1.3-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/buster/Dockerfile) From 8882e2f91d85d670d6f257d73122fe9c4cdda07f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Feb 2023 16:14:06 -0800 Subject: [PATCH 0066/2686] Run update.sh --- caddy/README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index ef437f7b9bd2..bcbad71e17b4 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.6.2-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/alpine/Dockerfile) -- [`2.6.2-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/builder/Dockerfile) -- [`2.6.2-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/1809/Dockerfile) -- [`2.6.2-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/ltsc2022/Dockerfile) -- [`2.6.2-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows-builder/1809/Dockerfile) -- [`2.6.2-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows-builder/ltsc2022/Dockerfile) +- [`2.6.3-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/alpine/Dockerfile) +- [`2.6.3-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/builder/Dockerfile) +- [`2.6.3-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) +- [`2.6.3-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) +- [`2.6.3-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/1809/Dockerfile) +- [`2.6.3-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.6.2`, `2.6`, `2`, `latest`: - - [`2.6.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/alpine/Dockerfile) - - [`2.6.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/1809/Dockerfile) - - [`2.6.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/ltsc2022/Dockerfile) -- `2.6.2-builder`, `2.6-builder`, `2-builder`, `builder`: - - [`2.6.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/builder/Dockerfile) - - [`2.6.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows-builder/1809/Dockerfile) - - [`2.6.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows-builder/ltsc2022/Dockerfile) -- `2.6.2-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.6.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/1809/Dockerfile) - - [`2.6.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9c857d39bef831f27612106ddd00a4df307e8975/2.6/windows/ltsc2022/Dockerfile) +- `2.6.3`, `2.6`, `2`, `latest`: + - [`2.6.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/alpine/Dockerfile) + - [`2.6.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) + - [`2.6.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) +- `2.6.3-builder`, `2.6-builder`, `2-builder`, `builder`: + - [`2.6.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/builder/Dockerfile) + - [`2.6.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/1809/Dockerfile) + - [`2.6.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/ltsc2022/Dockerfile) +- `2.6.3-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.6.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) + - [`2.6.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) # Quick reference (cont.) From 4886c13e14e46b94697e5103793b4442397c9d57 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Feb 2023 17:08:49 -0800 Subject: [PATCH 0067/2686] Run update.sh --- alpine/README.md | 2 +- debian/README.md | 48 ++++++++++++------------- hylang/README.md | 92 ++++++++++++++++++++++++------------------------ 3 files changed, 71 insertions(+), 71 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 1cd2334d9e64..0e3417e97191 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20221110`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/7161d59eb68a7a2e71df7b4137c1c9403107d8a6/x86_64/Dockerfile) +- [`20230208`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a4149305cd4d815083f3dcf4c948e0ac4f1e99dd/x86_64/Dockerfile) - [`3.17.1`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/e889a60a47c564eeb5e36e87afc9d156ea7d7034/x86_64/Dockerfile) - [`3.16.3`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/00e486941da9720adfdc82ac0144af73818ae732/x86_64/Dockerfile) - [`3.15.6`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/a9e802051a3a2ae7d6fdd32ff6f5b39e62240089/x86_64/Dockerfile) diff --git a/debian/README.md b/debian/README.md index a920888665e3..70bb78d25b05 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230202`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230202-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230202`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230202-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/rc-buggy/Dockerfile) -- [`sid`, `sid-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/sid/Dockerfile) -- [`sid-slim`, `sid-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/sid/slim/Dockerfile) -- [`stable`, `stable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/stable/slim/Dockerfile) -- [`testing`, `testing-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1686fdf753739201cf18dbf9c06b1475c2d41da1/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230208`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230208-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230208`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230208-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/rc-buggy/Dockerfile) +- [`sid`, `sid-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/sid/Dockerfile) +- [`sid-slim`, `sid-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/sid/slim/Dockerfile) +- [`stable`, `stable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/slim/Dockerfile) +- [`testing`, `testing-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 1293bddbed8a..e4bdce6d98ef 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,55 +28,55 @@ WARNING: ## Simple Tags -- [`0.25.0-python3.11-bullseye`, `0.25-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.25.0-bullseye`, `0.25-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.25.0-python3.11-buster`, `0.25-python3.11-buster`, `0-python3.11-buster`, `python3.11-buster`, `0.25.0-buster`, `0.25-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.11-buster) -- [`0.25.0-python3.11-alpine3.17`, `0.25-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.25.0-alpine3.17`, `0.25-alpine3.17`, `0-alpine3.17`, `alpine3.17`, `0.25.0-python3.11-alpine`, `0.25-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.25.0-alpine`, `0.25-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.25.0-python3.11-alpine3.16`, `0.25-python3.11-alpine3.16`, `0-python3.11-alpine3.16`, `python3.11-alpine3.16`, `0.25.0-alpine3.16`, `0.25-alpine3.16`, `0-alpine3.16`, `alpine3.16`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.11-alpine3.16) -- [`0.25.0-python3.10-bullseye`, `0.25-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.25.0-python3.10-buster`, `0.25-python3.10-buster`, `0-python3.10-buster`, `python3.10-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.10-buster) -- [`0.25.0-python3.10-alpine3.17`, `0.25-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`, `0.25.0-python3.10-alpine`, `0.25-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.25.0-python3.10-alpine3.16`, `0.25-python3.10-alpine3.16`, `0-python3.10-alpine3.16`, `python3.10-alpine3.16`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.10-alpine3.16) -- [`0.25.0-python3.9-bullseye`, `0.25-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.25.0-python3.9-buster`, `0.25-python3.9-buster`, `0-python3.9-buster`, `python3.9-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.9-buster) -- [`0.25.0-python3.9-alpine3.17`, `0.25-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`, `0.25.0-python3.9-alpine`, `0.25-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.25.0-python3.9-alpine3.16`, `0.25-python3.9-alpine3.16`, `0-python3.9-alpine3.16`, `python3.9-alpine3.16`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.9-alpine3.16) -- [`0.25.0-python3.8-bullseye`, `0.25-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.25.0-python3.8-buster`, `0.25-python3.8-buster`, `0-python3.8-buster`, `python3.8-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.8-buster) -- [`0.25.0-python3.8-alpine3.17`, `0.25-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`, `0.25.0-python3.8-alpine`, `0.25-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.25.0-python3.8-alpine3.16`, `0.25-python3.8-alpine3.16`, `0-python3.8-alpine3.16`, `python3.8-alpine3.16`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.8-alpine3.16) -- [`0.25.0-python3.7-bullseye`, `0.25-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- [`0.25.0-python3.7-buster`, `0.25-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.7-buster) -- [`0.25.0-python3.7-alpine3.17`, `0.25-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`, `0.25.0-python3.7-alpine`, `0.25-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) -- [`0.25.0-python3.7-alpine3.16`, `0.25-python3.7-alpine3.16`, `0-python3.7-alpine3.16`, `python3.7-alpine3.16`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.7-alpine3.16) -- [`0.25.0-pypy3.9-bullseye`, `0.25-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.25.0-pypy-bullseye`, `0.25-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.25.0-pypy3.9-buster`, `0.25-pypy3.9-buster`, `0-pypy3.9-buster`, `pypy3.9-buster`, `0.25.0-pypy-buster`, `0.25-pypy-buster`, `0-pypy-buster`, `pypy-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-buster) -- [`0.25.0-pypy3.9-windowsservercore-ltsc2022`, `0.25-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.25.0-pypy-windowsservercore-ltsc2022`, `0.25-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.25.0-pypy3.9-windowsservercore-1809`, `0.25-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.25.0-pypy-windowsservercore-1809`, `0.25-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- [`0.25.0-pypy3.8-bullseye`, `0.25-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) -- [`0.25.0-pypy3.8-buster`, `0.25-pypy3.8-buster`, `0-pypy3.8-buster`, `pypy3.8-buster`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-buster) -- [`0.25.0-pypy3.8-windowsservercore-ltsc2022`, `0.25-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) -- [`0.25.0-pypy3.8-windowsservercore-1809`, `0.25-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) +- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.26.0-python3.11-buster`, `0.26-python3.11-buster`, `0-python3.11-buster`, `python3.11-buster`, `0.26.0-buster`, `0.26-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-buster) +- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.26.0-python3.11-alpine3.16`, `0.26-python3.11-alpine3.16`, `0-python3.11-alpine3.16`, `python3.11-alpine3.16`, `0.26.0-alpine3.16`, `0.26-alpine3.16`, `0-alpine3.16`, `alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-alpine3.16) +- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.26.0-python3.10-buster`, `0.26-python3.10-buster`, `0-python3.10-buster`, `python3.10-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-buster) +- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.26.0-python3.10-alpine3.16`, `0.26-python3.10-alpine3.16`, `0-python3.10-alpine3.16`, `python3.10-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-alpine3.16) +- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.26.0-python3.9-buster`, `0.26-python3.9-buster`, `0-python3.9-buster`, `python3.9-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-buster) +- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.26.0-python3.9-alpine3.16`, `0.26-python3.9-alpine3.16`, `0-python3.9-alpine3.16`, `python3.9-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-alpine3.16) +- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.26.0-python3.8-buster`, `0.26-python3.8-buster`, `0-python3.8-buster`, `python3.8-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-buster) +- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.26.0-python3.8-alpine3.16`, `0.26-python3.8-alpine3.16`, `0-python3.8-alpine3.16`, `python3.8-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-alpine3.16) +- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-bullseye) +- [`0.26.0-python3.7-buster`, `0.26-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-buster) +- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) +- [`0.26.0-python3.7-alpine3.16`, `0.26-python3.7-alpine3.16`, `0-python3.7-alpine3.16`, `python3.7-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-alpine3.16) +- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.26.0-pypy3.9-buster`, `0.26-pypy3.9-buster`, `0-pypy3.9-buster`, `pypy3.9-buster`, `0.26.0-pypy-buster`, `0.26-pypy-buster`, `0-pypy-buster`, `pypy-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-buster) +- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) +- [`0.26.0-pypy3.8-buster`, `0.26-pypy3.8-buster`, `0-pypy3.8-buster`, `pypy3.8-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-buster) +- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) ## Shared Tags -- `0.25.0-python3.11`, `0.25-python3.11`, `0-python3.11`, `python3.11`, `0.25.0`, `0.25`, `0`, `latest`: - - [`0.25.0-python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- `0.25.0-python3.10`, `0.25-python3.10`, `0-python3.10`, `python3.10`: - - [`0.25.0-python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- `0.25.0-python3.9`, `0.25-python3.9`, `0-python3.9`, `python3.9`: - - [`0.25.0-python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- `0.25.0-python3.8`, `0.25-python3.8`, `0-python3.8`, `python3.8`: - - [`0.25.0-python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- `0.25.0-python3.7`, `0.25-python3.7`, `0-python3.7`, `python3.7`: - - [`0.25.0-python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- `0.25.0-pypy3.9`, `0.25-pypy3.9`, `0-pypy3.9`, `pypy3.9`, `0.25.0-pypy`, `0.25-pypy`, `0-pypy`, `pypy`: - - [`0.25.0-pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) - - [`0.25.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.25.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- `0.25.0-pypy3.8`, `0.25-pypy3.8`, `0-pypy3.8`, `pypy3.8`: - - [`0.25.0-pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) - - [`0.25.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) - - [`0.25.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d5431b3cfc54bd22202a34336d5375d716f2d13d/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) +- `0.26.0-python3.11`, `0.26-python3.11`, `0-python3.11`, `python3.11`, `0.26.0`, `0.26`, `0`, `latest`: + - [`0.26.0-python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- `0.26.0-python3.10`, `0.26-python3.10`, `0-python3.10`, `python3.10`: + - [`0.26.0-python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- `0.26.0-python3.9`, `0.26-python3.9`, `0-python3.9`, `python3.9`: + - [`0.26.0-python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- `0.26.0-python3.8`, `0.26-python3.8`, `0-python3.8`, `python3.8`: + - [`0.26.0-python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- `0.26.0-python3.7`, `0.26-python3.7`, `0-python3.7`, `python3.7`: + - [`0.26.0-python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-bullseye) +- `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: + - [`0.26.0-pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) + - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- `0.26.0-pypy3.8`, `0.26-pypy3.8`, `0-pypy3.8`, `pypy3.8`: + - [`0.26.0-pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) + - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) # Quick reference (cont.) From 42f164fe93411acfc7e20f707aef3529315c4bea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Feb 2023 12:08:49 -0800 Subject: [PATCH 0068/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/README.md b/rust/README.md index dad44d4e0632..d828c73a6dc9 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.67-buster`, `1.67.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/buster/Dockerfile) -- [`1-slim-buster`, `1.67-slim-buster`, `1.67.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.67-bullseye`, `1.67.0-bullseye`, `bullseye`, `1`, `1.67`, `1.67.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.67-slim-bullseye`, `1.67.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.67-slim`, `1.67.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.67-bookworm`, `1.67.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.67-slim-bookworm`, `1.67.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.67-alpine3.16`, `1.67.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.67-alpine3.17`, `1.67.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.67-alpine`, `1.67.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/286e5aa3ee6999e12f0e55f5edf7f8b29ea52fca/1.67.0/alpine3.17/Dockerfile) +- [`1-buster`, `1.67-buster`, `1.67.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/buster/Dockerfile) +- [`1-slim-buster`, `1.67-slim-buster`, `1.67.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.67-bullseye`, `1.67.1-bullseye`, `bullseye`, `1`, `1.67`, `1.67.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.67-slim-bullseye`, `1.67.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.67-slim`, `1.67.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.67-bookworm`, `1.67.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.67-slim-bookworm`, `1.67.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.67-alpine3.16`, `1.67.1-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.67-alpine3.17`, `1.67.1-alpine3.17`, `alpine3.17`, `1-alpine`, `1.67-alpine`, `1.67.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/alpine3.17/Dockerfile) # Quick reference (cont.) From 8f42f3ec135528f4fc1291e40769100037a26d24 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Feb 2023 18:08:50 -0800 Subject: [PATCH 0069/2686] Run update.sh --- amazonlinux/README.md | 4 +-- docker/README.md | 20 +++++------ ghost/README.md | 4 +-- julia/README.md | 26 +++++++------- open-liberty/README.md | 54 ++++++++++++++-------------- openjdk/README.md | 72 ++++++++++++++++++------------------- websphere-liberty/README.md | 48 ++++++++++++------------- 7 files changed, 114 insertions(+), 114 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 2611c87828a3..d4924739883d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -26,8 +26,8 @@ WARNING: - [`2.0.20230119.1`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/8cd3a1d4d2516e33d3b26247120ecfc8d9d01d07/Dockerfile) - [`2.0.20230119.1-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/b5c54379aea40f6d9a0d50af4677399d0defff7b/Dockerfile) -- [`2018.03.0.20230124.1`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/8f0a44d2878669df6eea31379d796061d82c89c8/Dockerfile) -- [`2018.03.0.20230124.1-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/f44a38a72435f94e02fa53a30d46d7f20852b619/Dockerfile) +- [`2018.03.0.20230207.0`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/884421612a4d7e61f4bc19401e8b9e1ea1604d09/Dockerfile) +- [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) - [`2022.0.20230118.3`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/8f394a73f3747b9f1c80e98b65d1f845b2c36e36/Dockerfile) - [`2022.0.20230118.3-with-sources`, `2022-with-sources`, `devel-with-sources`](https://github.com/amazonlinux/container-images/blob/87e3b7a4ed4bbdeba86d64cd68fbefe3f5d7acc2/Dockerfile) diff --git a/docker/README.md b/docker/README.md index d15cb114c2e5..71dc149cc063 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`23.0.0-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.0-cli-alpine3.17`](https://github.com/docker-library/docker/blob/f7c1eb20c9898f56999cb594a99418e93e772d5d/23.0/cli/Dockerfile) -- [`23.0.0-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.0-dind-alpine3.17`, `23.0.0`, `23.0`, `23`, `latest`, `23.0.0-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/23.0/dind/Dockerfile) -- [`23.0.0-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/dind-rootless/Dockerfile) -- [`23.0.0-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.0-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.0-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/cli/Dockerfile) +- [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind/Dockerfile) +- [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) +- [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) +- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/dbd6b97c257242d05f1ade073acd1b3195ac2c75/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/38e13c81eb5cb5b10d4477467547b0823d877720/20.10/dind/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/6b3d48a87bee74f096bd28a23385972994a4f313/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) - [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `23.0.0-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/windows/windowsservercore-1809/Dockerfile) +- `23.0.1-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 51f6a94c79d1..41cc4bc4512a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.7`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/08360e9fb2c04aefcf3bf29e5b2e3390d49d8719/5/debian/Dockerfile) -- [`5.33.7-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/08360e9fb2c04aefcf3bf29e5b2e3390d49d8719/5/alpine/Dockerfile) +- [`5.33.8`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b37173765f55ddd66e4ca812bbfe430881ad186a/5/debian/Dockerfile) +- [`5.33.8-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b37173765f55ddd66e4ca812bbfe430881ad186a/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/julia/README.md b/julia/README.md index ad53f96eddae..b687fc466f71 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.0-beta3-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-beta3-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/buster/Dockerfile) -- [`1.9.0-beta3-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-beta3-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-beta3-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-beta3-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-beta3-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.9.0-beta4-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/bullseye/Dockerfile) +- [`1.9.0-beta4-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/buster/Dockerfile) +- [`1.9.0-beta4-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-beta4-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/alpine3.17/Dockerfile) +- [`1.9.0-beta4-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/alpine3.16/Dockerfile) +- [`1.9.0-beta4-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-beta4-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) - [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/buster/Dockerfile) - [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.17/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.9.0-beta3`, `1.9-rc`, `rc`: - - [`1.9.0-beta3-bullseye`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-beta3-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/657f3680cc13a72c27c2440852386341ad4480e7/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-beta4`, `1.9-rc`, `rc`: + - [`1.9.0-beta4-bullseye`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/bullseye/Dockerfile) + - [`1.9.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-beta4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-beta4-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.9.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-beta4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) - `1.8.5`, `1.8`, `1`, `latest`: - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index 05a65280c44d..3009a22981c4 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.13-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.13-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.13-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.13-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.13-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.13-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.13/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e93293a50a8dd38f6c8d35dd13b3972dfb18761a/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index b3e1b0ac45b3..1bd25bfa2cad 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,24 +42,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-8-jdk-oraclelinux8`, `21-ea-8-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-8-jdk-oracle`, `21-ea-8-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-8-jdk-oraclelinux7`, `21-ea-8-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-8-jdk-bullseye`, `21-ea-8-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/bullseye/Dockerfile) -- [`21-ea-8-jdk-slim-bullseye`, `21-ea-8-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-8-jdk-slim`, `21-ea-8-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-8-jdk-buster`, `21-ea-8-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/buster/Dockerfile) -- [`21-ea-8-jdk-slim-buster`, `21-ea-8-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/slim-buster/Dockerfile) -- [`21-ea-8-jdk-windowsservercore-ltsc2022`, `21-ea-8-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-8-jdk-windowsservercore-1809`, `21-ea-8-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-8-jdk-nanoserver-1809`, `21-ea-8-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-ea-34-jdk-oraclelinux8`, `20-ea-34-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-34-jdk-oracle`, `20-ea-34-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux8/Dockerfile) -- [`20-ea-34-jdk-oraclelinux7`, `20-ea-34-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux7/Dockerfile) -- [`20-ea-34-jdk-bullseye`, `20-ea-34-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/bullseye/Dockerfile) -- [`20-ea-34-jdk-slim-bullseye`, `20-ea-34-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-34-jdk-slim`, `20-ea-34-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/slim-bullseye/Dockerfile) -- [`20-ea-34-jdk-buster`, `20-ea-34-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/buster/Dockerfile) -- [`20-ea-34-jdk-slim-buster`, `20-ea-34-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/slim-buster/Dockerfile) -- [`20-ea-34-jdk-windowsservercore-ltsc2022`, `20-ea-34-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-ea-34-jdk-windowsservercore-1809`, `20-ea-34-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-ea-34-jdk-nanoserver-1809`, `20-ea-34-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-9-jdk-oraclelinux8`, `21-ea-9-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-9-jdk-oracle`, `21-ea-9-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-9-jdk-oraclelinux7`, `21-ea-9-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-9-jdk-bullseye`, `21-ea-9-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/bullseye/Dockerfile) +- [`21-ea-9-jdk-slim-bullseye`, `21-ea-9-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-9-jdk-slim`, `21-ea-9-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-9-jdk-buster`, `21-ea-9-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/buster/Dockerfile) +- [`21-ea-9-jdk-slim-buster`, `21-ea-9-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/slim-buster/Dockerfile) +- [`21-ea-9-jdk-windowsservercore-ltsc2022`, `21-ea-9-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-9-jdk-windowsservercore-1809`, `21-ea-9-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-9-jdk-nanoserver-1809`, `21-ea-9-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`20-ea-35-jdk-oraclelinux8`, `20-ea-35-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-35-jdk-oracle`, `20-ea-35-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux8/Dockerfile) +- [`20-ea-35-jdk-oraclelinux7`, `20-ea-35-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux7/Dockerfile) +- [`20-ea-35-jdk-bullseye`, `20-ea-35-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/bullseye/Dockerfile) +- [`20-ea-35-jdk-slim-bullseye`, `20-ea-35-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-35-jdk-slim`, `20-ea-35-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/slim-bullseye/Dockerfile) +- [`20-ea-35-jdk-buster`, `20-ea-35-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/buster/Dockerfile) +- [`20-ea-35-jdk-slim-buster`, `20-ea-35-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/slim-buster/Dockerfile) +- [`20-ea-35-jdk-windowsservercore-ltsc2022`, `20-ea-35-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20-ea-35-jdk-windowsservercore-1809`, `20-ea-35-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) +- [`20-ea-35-jdk-nanoserver-1809`, `20-ea-35-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) - [`18.0.2.1-jdk-oraclelinux8`, `18.0.2.1-oraclelinux8`, `18.0.2-jdk-oraclelinux8`, `18.0.2-oraclelinux8`, `18.0-jdk-oraclelinux8`, `18.0-oraclelinux8`, `18-jdk-oraclelinux8`, `18-oraclelinux8`, `jdk-oraclelinux8`, `oraclelinux8`, `18.0.2.1-jdk-oracle`, `18.0.2.1-oracle`, `18.0.2-jdk-oracle`, `18.0.2-oracle`, `18.0-jdk-oracle`, `18.0-oracle`, `18-jdk-oracle`, `18-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-oraclelinux7`, `18.0.2.1-oraclelinux7`, `18.0.2-jdk-oraclelinux7`, `18.0.2-oraclelinux7`, `18.0-jdk-oraclelinux7`, `18.0-oraclelinux7`, `18-jdk-oraclelinux7`, `18-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux7/Dockerfile) - [`18.0.2.1-jdk-bullseye`, `18.0.2.1-bullseye`, `18.0.2-jdk-bullseye`, `18.0.2-bullseye`, `18.0-jdk-bullseye`, `18.0-bullseye`, `18-jdk-bullseye`, `18-bullseye`, `jdk-bullseye`, `bullseye`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/bullseye/Dockerfile) @@ -72,24 +72,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-8-jdk`, `21-ea-8`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-8-jdk-windowsservercore`, `21-ea-8-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-8-jdk-nanoserver`, `21-ea-8-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/83e5fb4087bfcd3492802a394fbab279305ca5b6/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-ea-34-jdk`, `20-ea-34`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: - - [`20-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/oraclelinux8/Dockerfile) - - [`20-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-34-jdk-windowsservercore`, `20-ea-34-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-34-jdk-nanoserver`, `20-ea-34-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a399b8da36a0620f31735f87fa2c0300be32ba61/20/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-9-jdk`, `21-ea-9`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-9-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-9-jdk-windowsservercore`, `21-ea-9-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-9-jdk-nanoserver`, `21-ea-9-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) +- `20-ea-35-jdk`, `20-ea-35`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: + - [`20-ea-35-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux8/Dockerfile) + - [`20-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-35-jdk-windowsservercore`, `20-ea-35-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-ea-35-jdk-nanoserver`, `20-ea-35-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) - `18.0.2.1-jdk`, `18.0.2.1`, `18.0.2-jdk`, `18.0.2`, `18.0-jdk`, `18.0`, `18-jdk`, `18`, `jdk`, `latest`: - [`18.0.2.1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 9ee844159d50..c344ec8aa44a 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.13-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.13-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.13-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.13-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.13-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.13-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.13/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f8d0a6782d41a5606b2668cea9042e57cedece00/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 676e07ac78a59949f1edd1342644655fad12c254 Mon Sep 17 00:00:00 2001 From: Jeffrey Smith II Date: Fri, 10 Feb 2023 12:55:15 -0500 Subject: [PATCH 0070/2686] Update influxdb setup instructions (#2281) --- influxdb/content.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/influxdb/content.md b/influxdb/content.md index 83ebe353d489..58e1917eb41c 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -92,7 +92,8 @@ $ docker exec influxdb2 influx setup \ --username $USERNAME \ --password $PASSWORD \ --org $ORGANIZATION \ - --bucket $BUCKET + --bucket $BUCKET \ + --force ``` Running setup from within the container will cause CLI configs to be written to `/etc/influxdb2/influx-configs`. You can then use the `influx` CLI from within the container to extract the generated admin token: From 0618601bb87ea7ad4dcd48f29ec4f5fab96ad30b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Feb 2023 10:12:59 -0800 Subject: [PATCH 0071/2686] Run update.sh --- influxdb/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/influxdb/README.md b/influxdb/README.md index f422092c98de..38020d754985 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -158,7 +158,8 @@ $ docker exec influxdb2 influx setup \ --username $USERNAME \ --password $PASSWORD \ --org $ORGANIZATION \ - --bucket $BUCKET + --bucket $BUCKET \ + --force ``` Running setup from within the container will cause CLI configs to be written to `/etc/influxdb2/influx-configs`. You can then use the `influx` CLI from within the container to extract the generated admin token: From 7f8e6117b983ead65059c498216a800c32671ae7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Feb 2023 11:08:52 -0800 Subject: [PATCH 0072/2686] Run update.sh --- aerospike/README.md | 4 ++-- composer/README.md | 4 ++-- docker/README.md | 4 ++-- odoo/README.md | 6 +++--- postgres/README.md | 20 ++++++++++---------- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 7c5fb980846d..70decdea5016 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.2.0.3`, `ee-6.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/7aac053d7ed9d2ee32f83edea7e31fdf65e10617/enterprise/debian11/Dockerfile) -- [`ce-6.2.0.3`, `ce-6.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/7aac053d7ed9d2ee32f83edea7e31fdf65e10617/community/debian11/Dockerfile) +- [`ee-6.2.0.3`, `ee-6.2.0.3_3`](https://github.com/aerospike/aerospike-server.docker/blob/b249dd80657d99e71255287fe6923458b91dfe8b/enterprise/debian11/Dockerfile) +- [`ce-6.2.0.3`, `ce-6.2.0.3_3`](https://github.com/aerospike/aerospike-server.docker/blob/b249dd80657d99e71255287fe6923458b91dfe8b/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 942b0836aece..acdfc089d904 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.2`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/53b9a443e90aed4b23cffe34b6db2875e9fcaa61/2.5/Dockerfile) +- [`2.5.3`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/fa1e17c3c90f610e2d189316099ebe7edcca6826/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.19`, `2.2`, `lts`](https://github.com/composer/docker/blob/3b520a066792b9ae146ac0cb44b5e7103a79ed63/2.2/Dockerfile) +- [`2.2.20`, `2.2`, `lts`](https://github.com/composer/docker/blob/dfd25b8e41fa16f68ded6a283cf6c9aaac5af27e/2.2/Dockerfile) - [`1.10.26`, `1.10`, `1`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/1.10/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 71dc149cc063..2dbbd2402c71 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,13 +29,13 @@ WARNING: ## Simple Tags - [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/cli/Dockerfile) -- [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind/Dockerfile) +- [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/dbd6b97c257242d05f1ade073acd1b3195ac2c75/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/6b3d48a87bee74f096bd28a23385972994a4f313/20.10/dind/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) - [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 3927f30bb58a..2455cd46a170 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/9674beb8a5ae48981bae2266b8c373d4eb7dd5e7/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/9674beb8a5ae48981bae2266b8c373d4eb7dd5e7/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/9674beb8a5ae48981bae2266b8c373d4eb7dd5e7/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/14.0/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 275102d4ce81..cb3a8685ddf6 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.1`, `15`, `latest`, `15.1-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/15/bullseye/Dockerfile) -- [`15.1-alpine`, `15-alpine`, `alpine`, `15.1-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/15/alpine/Dockerfile) -- [`14.6`, `14`, `14.6-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/14/bullseye/Dockerfile) -- [`14.6-alpine`, `14-alpine`, `14.6-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/14/alpine/Dockerfile) -- [`13.9`, `13`, `13.9-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/13/bullseye/Dockerfile) -- [`13.9-alpine`, `13-alpine`, `13.9-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/13/alpine/Dockerfile) -- [`12.13`, `12`, `12.13-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/12/bullseye/Dockerfile) -- [`12.13-alpine`, `12-alpine`, `12.13-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/12/alpine/Dockerfile) -- [`11.18-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/186c93e85d4c4fcee8c300fdfd2e9991c5d3efc9/11/bullseye/Dockerfile) -- [`11.18-alpine`, `11-alpine`, `11.18-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/6ee0f2865b23484fefb785ba70b9d404f2bb0cd4/11/alpine/Dockerfile) +- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/ef45b990868d5a0053bd30fdbae36551b46b76c9/15/bullseye/Dockerfile) +- [`15.2-alpine`, `15-alpine`, `alpine`, `15.2-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/ef45b990868d5a0053bd30fdbae36551b46b76c9/15/alpine/Dockerfile) +- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/76f8f6610e744c5f7c164027f70baed8652189b3/14/bullseye/Dockerfile) +- [`14.7-alpine`, `14-alpine`, `14.7-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/76f8f6610e744c5f7c164027f70baed8652189b3/14/alpine/Dockerfile) +- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/c5d3ed25bad6c9977cc6ef8dfebb07dabdb40763/13/bullseye/Dockerfile) +- [`13.10-alpine`, `13-alpine`, `13.10-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/c5d3ed25bad6c9977cc6ef8dfebb07dabdb40763/13/alpine/Dockerfile) +- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/a7280426538a4977564dd7252c67dfbc89da263e/12/bullseye/Dockerfile) +- [`12.14-alpine`, `12-alpine`, `12.14-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/a7280426538a4977564dd7252c67dfbc89da263e/12/alpine/Dockerfile) +- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/156d0659d047578f06aa8785cf12d547c6a5ccfd/11/bullseye/Dockerfile) +- [`11.19-alpine`, `11-alpine`, `11.19-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/156d0659d047578f06aa8785cf12d547c6a5ccfd/11/alpine/Dockerfile) # Quick reference (cont.) From 9a78027db63f77dafb571bfd33ea163d45a4cf1e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Feb 2023 13:08:50 -0800 Subject: [PATCH 0073/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 0e3417e97191..560b133fa60f 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230208`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a4149305cd4d815083f3dcf4c948e0ac4f1e99dd/x86_64/Dockerfile) -- [`3.17.1`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/e889a60a47c564eeb5e36e87afc9d156ea7d7034/x86_64/Dockerfile) -- [`3.16.3`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/00e486941da9720adfdc82ac0144af73818ae732/x86_64/Dockerfile) -- [`3.15.6`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/a9e802051a3a2ae7d6fdd32ff6f5b39e62240089/x86_64/Dockerfile) -- [`3.14.8`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/a6c74aa475f4bc471e72f527db6256d8c3a52434/x86_64/Dockerfile) +- [`3.17.2`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/d8ed1701dac37e1b6db026bec0a26be683288074/x86_64/Dockerfile) +- [`3.16.4`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/106cf8fa24b495c3c7cac2ef3564fb78aef24751/x86_64/Dockerfile) +- [`3.15.7`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/2060d1dc5d0532fbc48f8735e77f5e787ebbff60/x86_64/Dockerfile) +- [`3.14.9`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/b040c4549c910e61cc9e783ef7741fed7a7b9e96/x86_64/Dockerfile) # Quick reference (cont.) From 5c0324ffc360679daf14c3dc071389c7df34931a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Feb 2023 12:08:54 -0800 Subject: [PATCH 0074/2686] Run update.sh --- archlinux/README.md | 4 +- clearlinux/README.md | 2 +- clojure/README.md | 120 +++++++++++++++++++++---------------------- crate/README.md | 4 +- emqx/README.md | 6 +-- openjdk/README.md | 18 ------- photon/README.md | 2 +- 7 files changed, 69 insertions(+), 87 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index bb78b406ff86..620fe68791b3 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230205.0.123931`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f1a975aac18bd08475fc7d1b13812f836f7ed5d4/Dockerfile.base) -- [`base-devel`, `base-devel-20230205.0.123931`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f1a975aac18bd08475fc7d1b13812f836f7ed5d4/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230212.0.126025`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/481324db01f26f26b8f1105e1cfc017f3dbea658/Dockerfile.base) +- [`base-devel`, `base-devel-20230212.0.126025`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/481324db01f26f26b8f1105e1cfc017f3dbea658/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0cca357cb594..c60114988573 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a7ece1816a38bf46d0360cebf4bb625207f2c75/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a752f9f45721b2dea9d68573c97d2964f1fa05c/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index f3db7c17b4d8..28e9655ecf2f 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,66 +24,66 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1208-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1208-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1208-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1208-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1208`, `temurin-8-tools-deps-1.11.1.1208-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1208-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1208-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1208-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1208-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1208`, `temurin-11-tools-deps-1.11.1.1208-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1208-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1208-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1208-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1208-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1208-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1208-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1208`, `temurin-17-tools-deps-1.11.1.1208-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1208`, `tools-deps-1.11.1.1208-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) -- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) -- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) -- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) -- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1208-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1208-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-19/tools-deps/Dockerfile) -- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1208-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/debian-bullseye-slim-19/tools-deps/Dockerfile) -- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1208-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) -- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1208`, `temurin-19-tools-deps-1.11.1.1208-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/08479c1b00c308743a360a79a82338fa04e59a9a/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1224-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1224-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1224-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1224`, `temurin-8-tools-deps-1.11.1.1224-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1224-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1224-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1224-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1224`, `temurin-11-tools-deps-1.11.1.1224-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1224-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1224-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1224-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1224-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1224-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1224`, `temurin-17-tools-deps-1.11.1.1224-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1224`, `tools-deps-1.11.1.1224-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) +- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) +- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) +- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) +- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1224-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1224-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/tools-deps/Dockerfile) +- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/tools-deps/Dockerfile) +- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1224-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) +- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1224`, `temurin-19-tools-deps-1.11.1.1224-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index c46afdef814a..a16aa53861b7 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.4`, `5.1`, `latest`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) -- [`5.0.3`, `5.0`](https://github.com/crate/docker-crate/blob/0b872eae2e0300879907405a8177be4418fe2a15/Dockerfile) +- [`5.2.2`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/5eb572e3933b70ee2961068f72af774a73bf421c/Dockerfile) +- [`5.1.4`, `5.1`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 697b5dd86a1c..87bccd0bef83 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/4.3/Dockerfile) -- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/4.4/Dockerfile) -- [`5.0.16`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/1d6a50b9423b745ae274611088343d9b40bea601/5.0/Dockerfile) +- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/4.3/Dockerfile) +- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/4.4/Dockerfile) +- [`5.0.17`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/5.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 1bd25bfa2cad..a4cc1ebe2533 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -60,15 +60,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`20-ea-35-jdk-windowsservercore-ltsc2022`, `20-ea-35-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`20-ea-35-jdk-windowsservercore-1809`, `20-ea-35-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) - [`20-ea-35-jdk-nanoserver-1809`, `20-ea-35-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) -- [`18.0.2.1-jdk-oraclelinux8`, `18.0.2.1-oraclelinux8`, `18.0.2-jdk-oraclelinux8`, `18.0.2-oraclelinux8`, `18.0-jdk-oraclelinux8`, `18.0-oraclelinux8`, `18-jdk-oraclelinux8`, `18-oraclelinux8`, `jdk-oraclelinux8`, `oraclelinux8`, `18.0.2.1-jdk-oracle`, `18.0.2.1-oracle`, `18.0.2-jdk-oracle`, `18.0.2-oracle`, `18.0-jdk-oracle`, `18.0-oracle`, `18-jdk-oracle`, `18-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) -- [`18.0.2.1-jdk-oraclelinux7`, `18.0.2.1-oraclelinux7`, `18.0.2-jdk-oraclelinux7`, `18.0.2-oraclelinux7`, `18.0-jdk-oraclelinux7`, `18.0-oraclelinux7`, `18-jdk-oraclelinux7`, `18-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux7/Dockerfile) -- [`18.0.2.1-jdk-bullseye`, `18.0.2.1-bullseye`, `18.0.2-jdk-bullseye`, `18.0.2-bullseye`, `18.0-jdk-bullseye`, `18.0-bullseye`, `18-jdk-bullseye`, `18-bullseye`, `jdk-bullseye`, `bullseye`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/bullseye/Dockerfile) -- [`18.0.2.1-jdk-slim-bullseye`, `18.0.2.1-slim-bullseye`, `18.0.2-jdk-slim-bullseye`, `18.0.2-slim-bullseye`, `18.0-jdk-slim-bullseye`, `18.0-slim-bullseye`, `18-jdk-slim-bullseye`, `18-slim-bullseye`, `jdk-slim-bullseye`, `slim-bullseye`, `18.0.2.1-jdk-slim`, `18.0.2.1-slim`, `18.0.2-jdk-slim`, `18.0.2-slim`, `18.0-jdk-slim`, `18.0-slim`, `18-jdk-slim`, `18-slim`, `jdk-slim`, `slim`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/slim-bullseye/Dockerfile) -- [`18.0.2.1-jdk-buster`, `18.0.2.1-buster`, `18.0.2-jdk-buster`, `18.0.2-buster`, `18.0-jdk-buster`, `18.0-buster`, `18-jdk-buster`, `18-buster`, `jdk-buster`, `buster`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/buster/Dockerfile) -- [`18.0.2.1-jdk-slim-buster`, `18.0.2.1-slim-buster`, `18.0.2-jdk-slim-buster`, `18.0.2-slim-buster`, `18.0-jdk-slim-buster`, `18.0-slim-buster`, `18-jdk-slim-buster`, `18-slim-buster`, `jdk-slim-buster`, `slim-buster`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/slim-buster/Dockerfile) -- [`18.0.2.1-jdk-windowsservercore-ltsc2022`, `18.0.2.1-windowsservercore-ltsc2022`, `18.0.2-jdk-windowsservercore-ltsc2022`, `18.0.2-windowsservercore-ltsc2022`, `18.0-jdk-windowsservercore-ltsc2022`, `18.0-windowsservercore-ltsc2022`, `18-jdk-windowsservercore-ltsc2022`, `18-windowsservercore-ltsc2022`, `jdk-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`18.0.2.1-jdk-windowsservercore-1809`, `18.0.2.1-windowsservercore-1809`, `18.0.2-jdk-windowsservercore-1809`, `18.0.2-windowsservercore-1809`, `18.0-jdk-windowsservercore-1809`, `18.0-windowsservercore-1809`, `18-jdk-windowsservercore-1809`, `18-windowsservercore-1809`, `jdk-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-1809/Dockerfile) -- [`18.0.2.1-jdk-nanoserver-1809`, `18.0.2.1-nanoserver-1809`, `18.0.2-jdk-nanoserver-1809`, `18.0.2-nanoserver-1809`, `18.0-jdk-nanoserver-1809`, `18.0-nanoserver-1809`, `18-jdk-nanoserver-1809`, `18-nanoserver-1809`, `jdk-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -90,15 +81,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`20-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) - `20-ea-35-jdk-nanoserver`, `20-ea-35-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - [`20-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) -- `18.0.2.1-jdk`, `18.0.2.1`, `18.0.2-jdk`, `18.0.2`, `18.0-jdk`, `18.0`, `18-jdk`, `18`, `jdk`, `latest`: - - [`18.0.2.1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/oraclelinux8/Dockerfile) - - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`18.0.2.1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-1809/Dockerfile) -- `18.0.2.1-jdk-windowsservercore`, `18.0.2.1-windowsservercore`, `18.0.2-jdk-windowsservercore`, `18.0.2-windowsservercore`, `18.0-jdk-windowsservercore`, `18.0-windowsservercore`, `18-jdk-windowsservercore`, `18-windowsservercore`, `jdk-windowsservercore`, `windowsservercore`: - - [`18.0.2.1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`18.0.2.1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/windowsservercore-1809/Dockerfile) -- `18.0.2.1-jdk-nanoserver`, `18.0.2.1-nanoserver`, `18.0.2-jdk-nanoserver`, `18.0.2-nanoserver`, `18.0-jdk-nanoserver`, `18.0-nanoserver`, `18-jdk-nanoserver`, `18-nanoserver`, `jdk-nanoserver`, `nanoserver`: - - [`18.0.2.1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b928d2e5767b0e12058d3b5eceabeb0aa48aec3/18/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index a7723d7bbaf6..94fe1b44dc3a 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230121`, `latest`](https://github.com/vmware/photon-docker-image/blob/0cf696e9b1457497028f8115c9e682c84e8a331d/docker/Dockerfile) +- [`4.0`, `4.0-20230211`, `latest`](https://github.com/vmware/photon-docker-image/blob/899c4f03780d4365c71edd5253fec180b3542cb4/docker/Dockerfile) - [`3.0`, `3.0-20230128`](https://github.com/vmware/photon-docker-image/blob/48b8de1e99610ea45573ac6e1e02dc5568f562fe/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) From 013d5f3f935e27ade5bf24c1fa42c24d07007f7c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Feb 2023 13:13:40 -0800 Subject: [PATCH 0075/2686] Run update.sh --- swipl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swipl/README.md b/swipl/README.md index e58b7b208c57..be47833c6aad 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.4`](https://github.com/SWI-Prolog/docker-swipl/blob/366d912cf8e9c8ba3783a76acf57380d7a281883/9.1.4/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/366d912cf8e9c8ba3783a76acf57380d7a281883/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.5`](https://github.com/SWI-Prolog/docker-swipl/blob/67b156afb3feb8e0a4537bfb7671662f12526156/9.1.5/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/67b156afb3feb8e0a4537bfb7671662f12526156/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From c97c166a6a97fc1fb702ee248a4b4eaac2a37a49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Feb 2023 14:08:49 -0800 Subject: [PATCH 0076/2686] Run update.sh --- rabbitmq/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f8af359ac968..b49f37a5eb2a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.8`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/5c961954162b5e6ecb0e173e34a8c7bbcdc9d3d3/3.11/ubuntu/Dockerfile) -- [`3.11.8-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.8-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5c961954162b5e6ecb0e173e34a8c7bbcdc9d3d3/3.11/alpine/Dockerfile) -- [`3.11.8-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.17`, `3.10`](https://github.com/docker-library/rabbitmq/blob/019574ecad13805af60bba9fe60861c89a8ec162/3.10/ubuntu/Dockerfile) -- [`3.10.17-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/019574ecad13805af60bba9fe60861c89a8ec162/3.10/alpine/Dockerfile) -- [`3.10.17-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) +- [`3.11.9`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/18cf515476cee61c9f76f3a748e5230e34bf9186/3.11/ubuntu/Dockerfile) +- [`3.11.9-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) +- [`3.11.9-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/18cf515476cee61c9f76f3a748e5230e34bf9186/3.11/alpine/Dockerfile) +- [`3.11.9-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) +- [`3.10.18`, `3.10`](https://github.com/docker-library/rabbitmq/blob/d8ce3a7b3e02a7cdc363d13c0ca3216bd0cfb5e5/3.10/ubuntu/Dockerfile) +- [`3.10.18-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) +- [`3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/d8ce3a7b3e02a7cdc363d13c0ca3216bd0cfb5e5/3.10/alpine/Dockerfile) +- [`3.10.18-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) - [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/ubuntu/Dockerfile) - [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) - [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/alpine/Dockerfile) From 88862a1d190030ee37e679b52f15d1259528bc41 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Feb 2023 16:13:10 -0800 Subject: [PATCH 0077/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 5f659a6d6ba5..ebc83e1f19d3 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.23/Dockerfile) -- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.23/alpine/Dockerfile) -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b3e53402995a512dff1e7e3ffb5f80ca586fa6d/telegraf/1.25/alpine/Dockerfile) +- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.23/Dockerfile) +- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.23/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.25/alpine/Dockerfile) # Quick reference (cont.) From 867309f4513999194f0ea1531f96c1d9df3e174f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Feb 2023 10:13:02 -0800 Subject: [PATCH 0078/2686] Run update.sh --- api-firewall/README.md | 4 +++- haproxy/README.md | 28 ++++++++++++++-------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 431889b086cc..1b7d9f1c5173 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.9`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/c2b622e7f59546d9fb338c81fa82d405a8767485/0.6.10/Dockerfile) +- [`0.6.11`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/8da89a87d29d1b6d5a52e3064722d9a24a4c39fb/0.6.11/Dockerfile) +- [`0.6.10`](https://github.com/wallarm/api-firewall-docker/blob/c2b622e7f59546d9fb338c81fa82d405a8767485/0.6.10/Dockerfile) +- [`0.6.9`](https://github.com/wallarm/api-firewall-docker/blob/b0579bf17de8f41b162e150b00a87b95648258ee/0.6.9/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 74a2fcc6d70f..9c5bd71cae0c 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev3`, `2.8-dev`, `2.8-dev3-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/09db530687ce9142df90e3dbad7dc5a5c2ce152e/2.8/Dockerfile) -- [`2.8-dev3-alpine`, `2.8-dev-alpine`, `2.8-dev3-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/09db530687ce9142df90e3dbad7dc5a5c2ce152e/2.8/alpine/Dockerfile) -- [`2.7.2`, `2.7`, `latest`, `2.7.2-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/Dockerfile) -- [`2.7.2-alpine`, `2.7-alpine`, `alpine`, `2.7.2-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.7/alpine/Dockerfile) -- [`2.6.8`, `2.6`, `lts`, `2.6.8-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/Dockerfile) -- [`2.6.8-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.8-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/3f34d251e1eaa353070197444bf36ccfe222756f/2.6/alpine/Dockerfile) -- [`2.5.11`, `2.5`, `2.5.11-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/Dockerfile) -- [`2.5.11-alpine`, `2.5-alpine`, `2.5.11-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/1e16cda4e30596c084edea399d3e6b41c0b1d015/2.5/alpine/Dockerfile) -- [`2.4.21`, `2.4`, `2.4.21-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/Dockerfile) -- [`2.4.21-alpine`, `2.4-alpine`, `2.4.21-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/ba547847c5a78e92688dd52e539a2ced84b42657/2.4/alpine/Dockerfile) -- [`2.2.28`, `2.2`, `2.2.28-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/7b38ae30f782f574772f1a4b2dafbea73a77f6a0/2.2/Dockerfile) -- [`2.2.28-alpine`, `2.2-alpine`, `2.2.28-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/7b38ae30f782f574772f1a4b2dafbea73a77f6a0/2.2/alpine/Dockerfile) -- [`2.0.30`, `2.0`, `2.0.30-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/Dockerfile) -- [`2.0.30-alpine`, `2.0-alpine`, `2.0.30-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/079f57941442130b1f47fbb30181390c8fdfd708/2.0/alpine/Dockerfile) +- [`2.8-dev4`, `2.8-dev`, `2.8-dev4-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/b2760306614878ff8530e5bfe872cdc8384d9342/2.8/Dockerfile) +- [`2.8-dev4-alpine`, `2.8-dev-alpine`, `2.8-dev4-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/b2760306614878ff8530e5bfe872cdc8384d9342/2.8/alpine/Dockerfile) +- [`2.7.3`, `2.7`, `latest`, `2.7.3-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c1f665d9f400192386f780dbea76481ebe4252e9/2.7/Dockerfile) +- [`2.7.3-alpine`, `2.7-alpine`, `alpine`, `2.7.3-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/c1f665d9f400192386f780dbea76481ebe4252e9/2.7/alpine/Dockerfile) +- [`2.6.9`, `2.6`, `lts`, `2.6.9-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/e678a5620de6784d8dbe42d1c81f5db47f9e8cbc/2.6/Dockerfile) +- [`2.6.9-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.9-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/e678a5620de6784d8dbe42d1c81f5db47f9e8cbc/2.6/alpine/Dockerfile) +- [`2.5.12`, `2.5`, `2.5.12-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/Dockerfile) +- [`2.5.12-alpine`, `2.5-alpine`, `2.5.12-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/alpine/Dockerfile) +- [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) +- [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) +- [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) +- [`2.2.29-alpine`, `2.2-alpine`, `2.2.29-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/alpine/Dockerfile) +- [`2.0.31`, `2.0`, `2.0.31-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/Dockerfile) +- [`2.0.31-alpine`, `2.0-alpine`, `2.0.31-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/alpine/Dockerfile) # Quick reference (cont.) From 13f12ae9b0f52ecd839990be0d91f2e94449e486 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Feb 2023 11:08:54 -0800 Subject: [PATCH 0079/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 9a1d01859b52..d22659603dc1 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.20.0-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/bullseye/Dockerfile) -- [`1.20.0-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/buster/Dockerfile) -- [`1.20.0-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.0-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/alpine3.17/Dockerfile) -- [`1.20.0-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/alpine3.16/Dockerfile) -- [`1.20.0-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.0-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.0-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.0-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.5-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/bullseye/Dockerfile) -- [`1.19.5-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/buster/Dockerfile) -- [`1.19.5-alpine3.17`, `1.19-alpine3.17`, `1.19.5-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.17/Dockerfile) -- [`1.19.5-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/alpine3.16/Dockerfile) -- [`1.19.5-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.5-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.5-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.5-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.1-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/bullseye/Dockerfile) +- [`1.20.1-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/buster/Dockerfile) +- [`1.20.1-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.1-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.17/Dockerfile) +- [`1.20.1-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.16/Dockerfile) +- [`1.20.1-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.1-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.1-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.1-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.6-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/bullseye/Dockerfile) +- [`1.19.6-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/buster/Dockerfile) +- [`1.19.6-alpine3.17`, `1.19-alpine3.17`, `1.19.6-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/alpine3.17/Dockerfile) +- [`1.19.6-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/alpine3.16/Dockerfile) +- [`1.19.6-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.6-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.6-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.6-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20.0`, `1.20`, `1`, `latest`: - - [`1.20.0-bullseye`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/bullseye/Dockerfile) - - [`1.20.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.0-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.0-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b0badfc359dc188155f6447b0bf20118f6851e37/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.5`, `1.19`: - - [`1.19.5-bullseye`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/bullseye/Dockerfile) - - [`1.19.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.5-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.5-nanoserver`, `1.19-nanoserver`: - - [`1.19.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e04c39d2ce4466162418245c8b1178951021321/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.1`, `1.20`, `1`, `latest`: + - [`1.20.1-bullseye`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/bullseye/Dockerfile) + - [`1.20.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.1-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.1-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.6`, `1.19`: + - [`1.19.6-bullseye`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/bullseye/Dockerfile) + - [`1.19.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.6-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.6-nanoserver`, `1.19-nanoserver`: + - [`1.19.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 5885a752c39e23d6dd5b94cd0782d292f2150e36 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Feb 2023 12:08:49 -0800 Subject: [PATCH 0080/2686] Run update.sh --- php/README.md | 78 +++++++++++++++++++++++++-------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/php/README.md b/php/README.md index 4bfdf100d68a..8d565853a44d 100644 --- a/php/README.md +++ b/php/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.2-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.2-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.2-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.2`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/cli/Dockerfile) -- [`8.2.2-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.2-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/apache/Dockerfile) -- [`8.2.2-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.2-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/fpm/Dockerfile) -- [`8.2.2-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.2-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/bullseye/zts/Dockerfile) -- [`8.2.2-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.2-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/cli/Dockerfile) -- [`8.2.2-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/apache/Dockerfile) -- [`8.2.2-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/fpm/Dockerfile) -- [`8.2.2-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/buster/zts/Dockerfile) -- [`8.2.2-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.2-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.2-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.2-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.2-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.2-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.2-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.2-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.2-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.2-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.2-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.2-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/c4b2441940483e6063a1456277b6256ef377e354/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.15-cli-bullseye`, `8.1-cli-bullseye`, `8.1.15-bullseye`, `8.1-bullseye`, `8.1.15-cli`, `8.1-cli`, `8.1.15`, `8.1`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/cli/Dockerfile) -- [`8.1.15-apache-bullseye`, `8.1-apache-bullseye`, `8.1.15-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/apache/Dockerfile) -- [`8.1.15-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.15-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/fpm/Dockerfile) -- [`8.1.15-zts-bullseye`, `8.1-zts-bullseye`, `8.1.15-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/bullseye/zts/Dockerfile) -- [`8.1.15-cli-buster`, `8.1-cli-buster`, `8.1.15-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/cli/Dockerfile) -- [`8.1.15-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/apache/Dockerfile) -- [`8.1.15-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/fpm/Dockerfile) -- [`8.1.15-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/buster/zts/Dockerfile) -- [`8.1.15-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.15-alpine3.17`, `8.1-alpine3.17`, `8.1.15-cli-alpine`, `8.1-cli-alpine`, `8.1.15-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.15-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.15-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.15-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.15-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.15-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.15-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.15-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.15-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/d672e34bbcbfe2b26664c51c42c915d398db8e09/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.27-cli-bullseye`, `8.0-cli-bullseye`, `8.0.27-bullseye`, `8.0-bullseye`, `8.0.27-cli`, `8.0-cli`, `8.0.27`, `8.0`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/cli/Dockerfile) -- [`8.0.27-apache-bullseye`, `8.0-apache-bullseye`, `8.0.27-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/apache/Dockerfile) -- [`8.0.27-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.27-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/fpm/Dockerfile) -- [`8.0.27-zts-bullseye`, `8.0-zts-bullseye`, `8.0.27-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/bullseye/zts/Dockerfile) -- [`8.0.27-cli-buster`, `8.0-cli-buster`, `8.0.27-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/buster/cli/Dockerfile) -- [`8.0.27-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/buster/apache/Dockerfile) -- [`8.0.27-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/buster/fpm/Dockerfile) -- [`8.0.27-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/buster/zts/Dockerfile) -- [`8.0.27-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.27-alpine3.16`, `8.0-alpine3.16`, `8.0.27-cli-alpine`, `8.0-cli-alpine`, `8.0.27-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.27-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.27-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/alpine3.16/fpm/Dockerfile) -- [`8.0.27-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.27-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/af4fd9abb0770f9dcbac5b7b8f30f20d28659c7c/8.0/alpine3.16/zts/Dockerfile) +- [`8.2.3-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.3-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.3-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.3`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/cli/Dockerfile) +- [`8.2.3-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.3-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/apache/Dockerfile) +- [`8.2.3-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.3-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/fpm/Dockerfile) +- [`8.2.3-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.3-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/zts/Dockerfile) +- [`8.2.3-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.3-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/cli/Dockerfile) +- [`8.2.3-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/apache/Dockerfile) +- [`8.2.3-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/fpm/Dockerfile) +- [`8.2.3-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/zts/Dockerfile) +- [`8.2.3-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.3-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.3-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.3-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.3-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.3-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.3-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.3-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.3-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.3-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/cli/Dockerfile) +- [`8.2.3-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.3-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.16-cli-bullseye`, `8.1-cli-bullseye`, `8.1.16-bullseye`, `8.1-bullseye`, `8.1.16-cli`, `8.1-cli`, `8.1.16`, `8.1`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/cli/Dockerfile) +- [`8.1.16-apache-bullseye`, `8.1-apache-bullseye`, `8.1.16-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/apache/Dockerfile) +- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/fpm/Dockerfile) +- [`8.1.16-zts-bullseye`, `8.1-zts-bullseye`, `8.1.16-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/zts/Dockerfile) +- [`8.1.16-cli-buster`, `8.1-cli-buster`, `8.1.16-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/cli/Dockerfile) +- [`8.1.16-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/apache/Dockerfile) +- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/fpm/Dockerfile) +- [`8.1.16-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/zts/Dockerfile) +- [`8.1.16-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.16-alpine3.17`, `8.1-alpine3.17`, `8.1.16-cli-alpine`, `8.1-cli-alpine`, `8.1.16-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.16-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.16-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.16-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.16-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.16-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/zts/Dockerfile) +- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/cli/Dockerfile) +- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/apache/Dockerfile) +- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/fpm/Dockerfile) +- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/zts/Dockerfile) +- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/cli/Dockerfile) +- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/apache/Dockerfile) +- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/fpm/Dockerfile) +- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/zts/Dockerfile) +- [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/cli/Dockerfile) +- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/fpm/Dockerfile) +- [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) From 7ee85525e9abf059e8577b98a0a07748d0617324 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Feb 2023 15:08:51 -0800 Subject: [PATCH 0081/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- mongo/README.md | 60 +++++++++++++++++++++++------------------------ traefik/README.md | 4 ++-- 4 files changed, 35 insertions(+), 35 deletions(-) diff --git a/bash/README.md b/bash/README.md index be0cef6bd7fa..a43e38f60fec 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230206`, `devel`, `devel-20230206-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/31563604d3c9e621a828d61c6c297c2ba964f455/devel/Dockerfile) +- [`devel-20230213`, `devel`, `devel-20230213-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/f91193e1aaed0f35e78326ef99f0c9ca5b7aaae9/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 41cc4bc4512a..7cbf14e293cc 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.33.8`, `5.33`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b37173765f55ddd66e4ca812bbfe430881ad186a/5/debian/Dockerfile) -- [`5.33.8-alpine`, `5.33-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b37173765f55ddd66e4ca812bbfe430881ad186a/5/alpine/Dockerfile) +- [`5.34.0`, `5.34`, `5`, `latest`](https://github.com/docker-library/ghost/blob/83c4d4699d70b2982bd8246f12466c1387d7fbf0/5/debian/Dockerfile) +- [`5.34.0-alpine`, `5.34-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/83c4d4699d70b2982bd8246f12466c1387d7fbf0/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 2d335ca81a93..df73e50fe3d2 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,21 +38,21 @@ WARNING: - [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.14-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4-rc/Dockerfile) -- [`4.4.19-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.19-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.19-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.19-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) +- [`4.4.19-rc1-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/Dockerfile) +- [`4.4.19-rc1-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.19-rc1-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.19-rc1-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.19-rc1-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.18-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.18-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-rc0-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/9b9fc4449c96f1c477a406ebd95771b27f498992/4.2-rc/Dockerfile) -- [`4.2.24-rc0-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.24-rc0-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.2.24-rc0-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.2.24-rc0-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-1809/Dockerfile) +- [`4.2.24-rc1-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/Dockerfile) +- [`4.2.24-rc1-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.2.24-rc1-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.2.24-rc1-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.2.24-rc1-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-1809/Dockerfile) - [`4.2.23-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.23-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) @@ -81,16 +81,16 @@ WARNING: - `5.0.14-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.19-rc0`, `4.4-rc`: - - [`4.4.19-rc0-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4-rc/Dockerfile) - - [`4.4.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.19-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.19-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbd7513f27ca66c7af7679da72de94a98f9c975c/4.4-rc/windows/nanoserver-1809/Dockerfile) +- `4.4.19-rc1`, `4.4-rc`: + - [`4.4.19-rc1-focal`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/Dockerfile) + - [`4.4.19-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc1-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.19-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc1-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.19-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.19-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.18`, `4.4`, `4`: - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) @@ -101,16 +101,16 @@ WARNING: - `4.4.18-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - [`4.4.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- `4.2.24-rc0`, `4.2-rc`: - - [`4.2.24-rc0-bionic`](https://github.com/docker-library/mongo/blob/9b9fc4449c96f1c477a406ebd95771b27f498992/4.2-rc/Dockerfile) - - [`4.2.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc0-windowsservercore`, `4.2-rc-windowsservercore`: - - [`4.2.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc0-nanoserver`, `4.2-rc-nanoserver`: - - [`4.2.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.2.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0b1816e134acd9f71c9c2b130cbf469a3d08463c/4.2-rc/windows/nanoserver-1809/Dockerfile) +- `4.2.24-rc1`, `4.2-rc`: + - [`4.2.24-rc1-bionic`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/Dockerfile) + - [`4.2.24-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc1-windowsservercore`, `4.2-rc-windowsservercore`: + - [`4.2.24-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc1-nanoserver`, `4.2-rc-nanoserver`: + - [`4.2.24-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.2.24-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-1809/Dockerfile) - `4.2.23`, `4.2`: - [`4.2.23-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 257cdbbbcb42..eee6124a8b41 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.9.6-windowsservercore-1809`, `2.9.6-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/940d317751fabafc8b2a99b4a9b23b14c5b8bdc9/windows/1809/Dockerfile) -- [`v2.9.6`, `2.9.6`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/940d317751fabafc8b2a99b4a9b23b14c5b8bdc9/alpine/Dockerfile) +- [`v2.9.7-windowsservercore-1809`, `2.9.7-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c41ca3c5829b327dd65205a3e9bc81c0e7dd0f95/windows/1809/Dockerfile) +- [`v2.9.7`, `2.9.7`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/c41ca3c5829b327dd65205a3e9bc81c0e7dd0f95/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) From dbe512bce678a724a1a2330cedd29da03b16dc18 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Feb 2023 16:08:49 -0800 Subject: [PATCH 0082/2686] Run update.sh --- arangodb/README.md | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 3d4bd698d6f1..718eb6f195db 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -49,32 +49,26 @@ WARNING: # What is ArangoDB? -ArangoDB is a multi-model, open-source database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions. Use ACID transactions if you require them. Scale horizontally and vertically with a few mouse clicks. +ArangoDB is a scalable graph database system to drive value from connected data, faster. Native graphs, an integrated search engine, and JSON support, via a single query language. -ArangoDB runs everywhere: On-prem, in the cloud and also on [ArangoDB's Cloud Service Oasis](https://cloud.arangodb.com/home). - -The supported data models can be mixed in queries and allow ArangoDB to be the aggregation point for your data. +ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: [ArangoGraph Insights Platform](https://cloud.arangodb.com/home). > [arangodb.com](https://arangodb.com) -![logo](https://raw.githubusercontent.com/docker-library/docs/788ad3d196c4f69bd73801812abcab7707f70101/arangodb/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/f528ddab3310590b87273e2dbb75b96e081cadbe/arangodb/logo.png) ## Key Features in ArangoDB -**Multi-Model** Documents, graphs and key-value pairs — model your data as you see fit for your application. - -**Joins** Conveniently join what belongs together for flexible ad-hoc querying, less data redundancy. - -**Transactions** Easy application development keeping your data consistent and safe. No hassle in your client. +**Native Graph** Store both data and relationships, for faster queries even with multiple levels of joins and deeper insights that simply aren't possible with traditional relational and document database systems. -Joins and Transactions are key features for flexible, secure data designs, widely used in RDBMSs that you won't want to miss in NoSQL products. You decide how and when to use Joins and strong consistency guarantees, keeping all the power for scaling and performance as choice. +**Document Store** Every node in your graph is a JSON document: flexible, extensible, and easily imported from your existing document database. -Furthermore, ArangoDB offers a microservice framework called [Foxx](https://www.arangodb.com/why-arangodb/foxx) to build your own Rest API with a few lines of code. +**ArangoSearch** Natively integrated cross-platform indexing, text-search and ranking engine for information retrieval, optimized for speed and memory. #### ArangoDB Documentation -- [ArangoDB Documentation](https://www.arangodb.com/documentation) -- [ArangoDB Tutorials](https://www.arangodb.com/tutorials) +- [Learn ArangoDB](https://www.arangodb.com/learn/) +- [Documentation](https://www.arangodb.com/docs/) ## How to use this image From 928a4dc327e3eeeaef9e85848a4fe66925686f73 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Feb 2023 11:08:52 -0800 Subject: [PATCH 0083/2686] Run update.sh --- caddy/README.md | 34 +++++++++++++++++----------------- composer/README.md | 4 ++-- dart/README.md | 3 ++- haskell/README.md | 4 ++-- 4 files changed, 23 insertions(+), 22 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index bcbad71e17b4..31980731f694 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.6.3-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/alpine/Dockerfile) -- [`2.6.3-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/builder/Dockerfile) -- [`2.6.3-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) -- [`2.6.3-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) -- [`2.6.3-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/1809/Dockerfile) -- [`2.6.3-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/ltsc2022/Dockerfile) +- [`2.6.4-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) +- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/builder/Dockerfile) +- [`2.6.4-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) +- [`2.6.4-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) +- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/1809/Dockerfile) +- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.6.3`, `2.6`, `2`, `latest`: - - [`2.6.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/alpine/Dockerfile) - - [`2.6.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) - - [`2.6.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) -- `2.6.3-builder`, `2.6-builder`, `2-builder`, `builder`: - - [`2.6.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/builder/Dockerfile) - - [`2.6.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/1809/Dockerfile) - - [`2.6.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows-builder/ltsc2022/Dockerfile) -- `2.6.3-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.6.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/1809/Dockerfile) - - [`2.6.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5886f28a22d7e424dbc7d86e7d6373d2cdc5b191/2.6/windows/ltsc2022/Dockerfile) +- `2.6.4`, `2.6`, `2`, `latest`: + - [`2.6.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) + - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) + - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) +- `2.6.4-builder`, `2.6-builder`, `2-builder`, `builder`: + - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/builder/Dockerfile) + - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/1809/Dockerfile) + - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/ltsc2022/Dockerfile) +- `2.6.4-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) + - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index acdfc089d904..abb75284ffcd 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.3`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/fa1e17c3c90f610e2d189316099ebe7edcca6826/2.5/Dockerfile) +- [`2.5.4`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.20`, `2.2`, `lts`](https://github.com/composer/docker/blob/dfd25b8e41fa16f68ded6a283cf6c9aaac5af27e/2.2/Dockerfile) +- [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) - [`1.10.26`, `1.10`, `1`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/1.10/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 954155a42452..bd15b0d4dfb1 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.2-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.2`, `2.19`, `2`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/32a1cd0d9e9a012933e30517a15f9b02169daf4b/stable/bullseye/Dockerfile) +- [`2.19.2-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.2`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/9830bc084b3568fce5af4158f1b099e988c4f00a/stable/bullseye/Dockerfile) +- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/9830bc084b3568fce5af4158f1b099e988c4f00a/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index fc1ccc553df3..427a0e320fff 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.4.4-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.4`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/buster/Dockerfile) - [`9.4.4-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.4-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/slim-buster/Dockerfile) -- [`9.2.5-buster`, `9.2-buster`, `9.2.5`, `9.2`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.2/buster/Dockerfile) -- [`9.2.5-slim-buster`, `9.2-slim-buster`, `9.2.5-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.2/slim-buster/Dockerfile) +- [`9.2.6-buster`, `9.2-buster`, `9.2.6`, `9.2`](https://github.com/haskell/docker-haskell/blob/b2644d1604cc9a3e868b432f4901e86541a0841d/9.2/buster/Dockerfile) +- [`9.2.6-slim-buster`, `9.2-slim-buster`, `9.2.6-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/b2644d1604cc9a3e868b432f4901e86541a0841d/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/buster/Dockerfile) - [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/slim-buster/Dockerfile) From 7045b9386ae1b9d1b3911306cf8538f6975ed052 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Feb 2023 14:08:51 -0800 Subject: [PATCH 0084/2686] Run update.sh --- golang/README.md | 6 +++--- traefik/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/README.md b/golang/README.md index d22659603dc1..d5c26e33660f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,8 +28,8 @@ WARNING: ## Simple Tags -- [`1.20.1-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/bullseye/Dockerfile) -- [`1.20.1-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/buster/Dockerfile) +- [`1.20.1-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/bullseye/Dockerfile) +- [`1.20.1-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/buster/Dockerfile) - [`1.20.1-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.1-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.17/Dockerfile) - [`1.20.1-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.16/Dockerfile) - [`1.20.1-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.20.1`, `1.20`, `1`, `latest`: - - [`1.20.1-bullseye`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/bullseye/Dockerfile) + - [`1.20.1-bullseye`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/bullseye/Dockerfile) - [`1.20.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) - `1.20.1-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: diff --git a/traefik/README.md b/traefik/README.md index eee6124a8b41..76c71f1d8436 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.9.7-windowsservercore-1809`, `2.9.7-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c41ca3c5829b327dd65205a3e9bc81c0e7dd0f95/windows/1809/Dockerfile) -- [`v2.9.7`, `2.9.7`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/c41ca3c5829b327dd65205a3e9bc81c0e7dd0f95/alpine/Dockerfile) +- [`v2.9.8-windowsservercore-1809`, `2.9.8-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cde946f16566d912ccae15cf1bd9056518ef8c3d/windows/1809/Dockerfile) +- [`v2.9.8`, `2.9.8`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/cde946f16566d912ccae15cf1bd9056518ef8c3d/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) From 09c6305d30779f0762fa38459c601f6366d64842 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Feb 2023 16:13:35 -0800 Subject: [PATCH 0085/2686] Run update.sh --- cassandra/README.md | 8 ++++---- maven/README.md | 48 ++++++++++++++++++++------------------------- openjdk/README.md | 36 +++++++++++++++++----------------- php/README.md | 28 +++++++++++++------------- wordpress/README.md | 18 ++++++++--------- 5 files changed, 66 insertions(+), 72 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 34220a8136f9..ce8e2edb4681 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/4.1/Dockerfile) -- [`4.0.7`, `4.0`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/4.0/Dockerfile) -- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/3.11/Dockerfile) -- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/16cbbcd19ecb8b2d09fc3b71ecfd5896be754b1b/3.0/Dockerfile) +- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/4.1/Dockerfile) +- [`4.0.8`, `4.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/4.0/Dockerfile) +- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.11/Dockerfile) +- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.0/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 492cc1983416..2d06e39336c8 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,29 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.7-openjdk-18`, `3.8-openjdk-18`, `3-openjdk-18`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/openjdk-18/Dockerfile) -- [`3.8.7-openjdk-18-slim`, `3.8-openjdk-18-slim`, `3-openjdk-18-slim`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/openjdk-18-slim/Dockerfile) -- [`3.8.7-eclipse-temurin-11`, `3.8-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-11/Dockerfile) -- [`3.8.7-eclipse-temurin-11-alpine`, `3.8-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-11-alpine/Dockerfile) -- [`3.8.7-eclipse-temurin-11-focal`, `3.8-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-11-focal/Dockerfile) -- [`3.8.7-eclipse-temurin-17`, `3.8.7`, `3.8.7-eclipse-temurin`, `3.8-eclipse-temurin-17`, `3.8`, `3.8-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-17/Dockerfile) -- [`3.8.7-eclipse-temurin-17-alpine`, `3.8-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-17-alpine/Dockerfile) -- [`3.8.7-eclipse-temurin-17-focal`, `3.8-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-17-focal/Dockerfile) -- [`3.8.7-eclipse-temurin-19`, `3.8-eclipse-temurin-19`, `3-eclipse-temurin-19`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-19/Dockerfile) -- [`3.8.7-eclipse-temurin-19-alpine`, `3.8-eclipse-temurin-19-alpine`, `3-eclipse-temurin-19-alpine`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-19-alpine/Dockerfile) -- [`3.8.7-eclipse-temurin-19-focal`, `3.8-eclipse-temurin-19-focal`, `3-eclipse-temurin-19-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-19-focal/Dockerfile) -- [`3.8.7-eclipse-temurin-8`, `3.8-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-8/Dockerfile) -- [`3.8.7-eclipse-temurin-8-alpine`, `3.8-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-8-alpine/Dockerfile) -- [`3.8.7-eclipse-temurin-8-focal`, `3.8-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/eclipse-temurin-8-focal/Dockerfile) -- [`3.8.7-ibmjava-8`, `3.8.7-ibmjava`, `3.8-ibmjava-8`, `3.8-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/ibmjava-8/Dockerfile) -- [`3.8.7-ibm-semeru-11-focal`, `3.8-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/ibm-semeru-11-focal/Dockerfile) -- [`3.8.7-ibm-semeru-17-focal`, `3.8-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/ibm-semeru-17-focal/Dockerfile) -- [`3.8.7-amazoncorretto-11`, `3.8.7-amazoncorretto`, `3.8-amazoncorretto-11`, `3.8-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/amazoncorretto-11/Dockerfile) -- [`3.8.7-amazoncorretto-17`, `3.8-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/amazoncorretto-17/Dockerfile) -- [`3.8.7-amazoncorretto-19`, `3.8-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/amazoncorretto-19/Dockerfile) -- [`3.8.7-amazoncorretto-8`, `3.8-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/amazoncorretto-8/Dockerfile) -- [`3.8.7-sapmachine-11`, `3.8-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/sapmachine-11/Dockerfile) -- [`3.8.7-sapmachine-17`, `3.8.7-sapmachine`, `3.8-sapmachine-17`, `3.8-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/34e7d27260ee61c6866922c523e04b53ba098337/sapmachine-17/Dockerfile) +- [`3.9.0-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11/Dockerfile) +- [`3.9.0-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-17`, `3.9.0`, `3.9.0-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17/Dockerfile) +- [`3.9.0-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-19`, `3.9-eclipse-temurin-19`, `3-eclipse-temurin-19`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19/Dockerfile) +- [`3.9.0-eclipse-temurin-19-alpine`, `3.9-eclipse-temurin-19-alpine`, `3-eclipse-temurin-19-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-19-focal`, `3.9-eclipse-temurin-19-focal`, `3-eclipse-temurin-19-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8/Dockerfile) +- [`3.9.0-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.0-ibmjava-8`, `3.9.0-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibmjava-8/Dockerfile) +- [`3.9.0-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibm-semeru-11-focal/Dockerfile) +- [`3.9.0-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibm-semeru-17-focal/Dockerfile) +- [`3.9.0-amazoncorretto-11`, `3.9.0-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-11/Dockerfile) +- [`3.9.0-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-17/Dockerfile) +- [`3.9.0-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-19/Dockerfile) +- [`3.9.0-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-8/Dockerfile) +- [`3.9.0-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/sapmachine-11/Dockerfile) +- [`3.9.0-sapmachine-17`, `3.9.0-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/sapmachine-17/Dockerfile) # Quick reference (cont.) @@ -144,10 +142,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like focal in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. -## `maven:-slim` - -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `maven`. Unless you are working in an environment where *only* the `maven` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. - ## `maven:-alpine` This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/openjdk/README.md b/openjdk/README.md index a4cc1ebe2533..571ec3a7f63a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -51,15 +51,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`21-ea-9-jdk-windowsservercore-ltsc2022`, `21-ea-9-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21-ea-9-jdk-windowsservercore-1809`, `21-ea-9-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) - [`21-ea-9-jdk-nanoserver-1809`, `21-ea-9-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-ea-35-jdk-oraclelinux8`, `20-ea-35-oraclelinux8`, `20-ea-jdk-oraclelinux8`, `20-ea-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-ea-35-jdk-oracle`, `20-ea-35-oracle`, `20-ea-jdk-oracle`, `20-ea-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux8/Dockerfile) -- [`20-ea-35-jdk-oraclelinux7`, `20-ea-35-oraclelinux7`, `20-ea-jdk-oraclelinux7`, `20-ea-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux7/Dockerfile) -- [`20-ea-35-jdk-bullseye`, `20-ea-35-bullseye`, `20-ea-jdk-bullseye`, `20-ea-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/bullseye/Dockerfile) -- [`20-ea-35-jdk-slim-bullseye`, `20-ea-35-slim-bullseye`, `20-ea-jdk-slim-bullseye`, `20-ea-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-ea-35-jdk-slim`, `20-ea-35-slim`, `20-ea-jdk-slim`, `20-ea-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/slim-bullseye/Dockerfile) -- [`20-ea-35-jdk-buster`, `20-ea-35-buster`, `20-ea-jdk-buster`, `20-ea-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/buster/Dockerfile) -- [`20-ea-35-jdk-slim-buster`, `20-ea-35-slim-buster`, `20-ea-jdk-slim-buster`, `20-ea-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/slim-buster/Dockerfile) -- [`20-ea-35-jdk-windowsservercore-ltsc2022`, `20-ea-35-windowsservercore-ltsc2022`, `20-ea-jdk-windowsservercore-ltsc2022`, `20-ea-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-ea-35-jdk-windowsservercore-1809`, `20-ea-35-windowsservercore-1809`, `20-ea-jdk-windowsservercore-1809`, `20-ea-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-ea-35-jdk-nanoserver-1809`, `20-ea-35-nanoserver-1809`, `20-ea-jdk-nanoserver-1809`, `20-ea-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) +- [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) +- [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) +- [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) +- [`20-rc-jdk-slim-bullseye`, `20-rc-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-rc-jdk-slim`, `20-rc-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/slim-bullseye/Dockerfile) +- [`20-rc-jdk-buster`, `20-rc-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/buster/Dockerfile) +- [`20-rc-jdk-slim-buster`, `20-rc-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/slim-buster/Dockerfile) +- [`20-rc-jdk-windowsservercore-ltsc2022`, `20-rc-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20-rc-jdk-windowsservercore-1809`, `20-rc-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) +- [`20-rc-jdk-nanoserver-1809`, `20-rc-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -72,15 +72,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`21-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21-ea-9-jdk-nanoserver`, `21-ea-9-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - [`21-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-ea-35-jdk`, `20-ea-35`, `20-ea-jdk`, `20-ea`, `20-jdk`, `20`: - - [`20-ea-35-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/oraclelinux8/Dockerfile) - - [`20-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-35-jdk-windowsservercore`, `20-ea-35-windowsservercore`, `20-ea-jdk-windowsservercore`, `20-ea-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-ea-35-jdk-nanoserver`, `20-ea-35-nanoserver`, `20-ea-jdk-nanoserver`, `20-ea-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65b377582250dd8cc6429d89963d3bf60a1edf47/20/jdk/windows/nanoserver-1809/Dockerfile) +- `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: + - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) + - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-rc-jdk-windowsservercore`, `20-rc-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) +- `20-rc-jdk-nanoserver`, `20-rc-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 8d565853a44d..ce2a911068de 100644 --- a/php/README.md +++ b/php/README.md @@ -38,20 +38,20 @@ WARNING: - [`8.2.3-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.3-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/cli/Dockerfile) - [`8.2.3-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.3-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.16-cli-bullseye`, `8.1-cli-bullseye`, `8.1.16-bullseye`, `8.1-bullseye`, `8.1.16-cli`, `8.1-cli`, `8.1.16`, `8.1`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/cli/Dockerfile) -- [`8.1.16-apache-bullseye`, `8.1-apache-bullseye`, `8.1.16-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/apache/Dockerfile) -- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/fpm/Dockerfile) -- [`8.1.16-zts-bullseye`, `8.1-zts-bullseye`, `8.1.16-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/bullseye/zts/Dockerfile) -- [`8.1.16-cli-buster`, `8.1-cli-buster`, `8.1.16-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/cli/Dockerfile) -- [`8.1.16-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/apache/Dockerfile) -- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/fpm/Dockerfile) -- [`8.1.16-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/buster/zts/Dockerfile) -- [`8.1.16-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.16-alpine3.17`, `8.1-alpine3.17`, `8.1.16-cli-alpine`, `8.1-cli-alpine`, `8.1.16-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.16-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.16-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.16-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.16-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.16-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/e2c5b4459260dc687a241644777bb4dce8264c8e/8.1/alpine3.16/zts/Dockerfile) +- [`8.1.16-cli-bullseye`, `8.1-cli-bullseye`, `8.1.16-bullseye`, `8.1-bullseye`, `8.1.16-cli`, `8.1-cli`, `8.1.16`, `8.1`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/cli/Dockerfile) +- [`8.1.16-apache-bullseye`, `8.1-apache-bullseye`, `8.1.16-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/apache/Dockerfile) +- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/fpm/Dockerfile) +- [`8.1.16-zts-bullseye`, `8.1-zts-bullseye`, `8.1.16-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/zts/Dockerfile) +- [`8.1.16-cli-buster`, `8.1-cli-buster`, `8.1.16-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/cli/Dockerfile) +- [`8.1.16-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/apache/Dockerfile) +- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/fpm/Dockerfile) +- [`8.1.16-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/zts/Dockerfile) +- [`8.1.16-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.16-alpine3.17`, `8.1-alpine3.17`, `8.1.16-cli-alpine`, `8.1-cli-alpine`, `8.1.16-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.16-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.16-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.16-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.16-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.16-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/fpm/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 519f0ac9b885..d6821fc0a66b 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-beta1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-beta1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-beta1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-beta1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-beta1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-beta1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-beta1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-beta1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-beta1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9732991309b06adbe332ee6fa4d4ae5a549e6673/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-beta2-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta2`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta2-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta2-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-beta2-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta2-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-beta2-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta2-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-beta2-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta2-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-beta2-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-beta2-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-beta2-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta2-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-beta2-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-beta2-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From b4ead7100a3c976f42a5e21e762b63c33046e208 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Le Duigou Date: Thu, 16 Feb 2023 21:28:52 +0100 Subject: [PATCH 0086/2686] =?UTF-8?q?=E2=AC=86=20update=20to=20golang=201.?= =?UTF-8?q?20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index e104a68f5850..2ac62e742807 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.19 +FROM %%IMAGE%%:1.20 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.19 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.19 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.19 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.19 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.20 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.19 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From 0dd4efb0ab90a51a64da1f3bb94b6382bbe62ea5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Feb 2023 13:13:20 -0800 Subject: [PATCH 0087/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- gradle/README.md | 30 +++++++++++------------------- joomla/README.md | 12 ++++++------ neo4j/README.md | 4 ++-- 4 files changed, 21 insertions(+), 29 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index d4924739883d..f352f0c958a7 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.20230119.1`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/8cd3a1d4d2516e33d3b26247120ecfc8d9d01d07/Dockerfile) -- [`2.0.20230119.1-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/b5c54379aea40f6d9a0d50af4677399d0defff7b/Dockerfile) +- [`2.0.20230207.0`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/0a73a9be29db33fd971c3206d1f893e8df26d9b7/Dockerfile) +- [`2.0.20230207.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/8b1a2649bc2e8cf24109954310ebe26b4566e4bd/Dockerfile) - [`2018.03.0.20230207.0`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/884421612a4d7e61f4bc19401e8b9e1ea1604d09/Dockerfile) - [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) - [`2022.0.20230118.3`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/8f394a73f3747b9f1c80e98b65d1f845b2c36e36/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index 7704bd2261c2..258b1245f6e6 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,25 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.0-jdk8`, `7.6-jdk8`, `7-jdk8`, `jdk8`, `7.6.0-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk8/Dockerfile) -- [`7.6.0-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk8-focal/Dockerfile) -- [`7.6.0-jdk11`, `7.6-jdk11`, `7-jdk11`, `jdk11`, `7.6.0-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk11/Dockerfile) -- [`7.6.0-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk11-focal/Dockerfile) -- [`7.6.0-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk11-alpine/Dockerfile) -- [`7.6.0-jdk17`, `7.6-jdk17`, `7-jdk17`, `jdk17`, `7.6.0-jdk`, `7.6-jdk`, `7-jdk`, `jdk`, `7.6.0`, `7.6`, `7`, `latest`, `7.6.0-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `jdk17-jammy`, `7.6.0-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `jdk-jammy`, `7.6.0-jammy`, `7.6-jammy`, `7-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk17/Dockerfile) -- [`7.6.0-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `jdk17-focal`, `7.6.0-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `jdk-focal`, `7.6.0-focal`, `7.6-focal`, `7-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk17-focal/Dockerfile) -- [`7.6.0-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `jdk17-alpine`, `7.6.0-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `jdk-alpine`, `7.6.0-alpine`, `7.6-alpine`, `7-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk17-alpine/Dockerfile) -- [`7.6.0-jdk19`, `7.6-jdk19`, `7-jdk19`, `jdk19`, `7.6.0-jdk19-jammy`, `7.6-jdk19-jammy`, `7-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk19/Dockerfile) -- [`7.6.0-jdk19-focal`, `7.6-jdk19-focal`, `7-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk19-focal/Dockerfile) -- [`7.6.0-jdk19-alpine`, `7.6-jdk19-alpine`, `7-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b8697d05b77df7eaacdbb20b8f9cc023d659fc/jdk19-alpine/Dockerfile) -- [`6.9.3-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.3-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk8/Dockerfile) -- [`6.9.3-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk8-focal/Dockerfile) -- [`6.9.3-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.3-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk11/Dockerfile) -- [`6.9.3-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk11-focal/Dockerfile) -- [`6.9.3-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk11-alpine/Dockerfile) -- [`6.9.3-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.3-jdk`, `6.9-jdk`, `6-jdk`, `6.9.3`, `6.9`, `6`, `6.9.3-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.3-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.3-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk17/Dockerfile) -- [`6.9.3-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.3-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.3-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk17-focal/Dockerfile) -- [`6.9.3-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.3-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.3-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3cf51c6d6c509c0df464a34856be4d1bc49fddf8/jdk17-alpine/Dockerfile) +- [`8.0.0-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.0-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk8/Dockerfile) +- [`8.0.0-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk8-focal/Dockerfile) +- [`8.0.0-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.0-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11/Dockerfile) +- [`8.0.0-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11-focal/Dockerfile) +- [`8.0.0-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11-alpine/Dockerfile) +- [`8.0.0-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.0-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.0`, `8.0`, `8`, `latest`, `8.0.0-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.0-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.0-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17/Dockerfile) +- [`8.0.0-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.0-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.0-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17-focal/Dockerfile) +- [`8.0.0-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.0-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.0-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17-alpine/Dockerfile) +- [`8.0.0-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.0-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19/Dockerfile) +- [`8.0.0-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19-focal/Dockerfile) +- [`8.0.0-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19-alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 4b1c045fd4a4..f8e400d8276f 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.7`, `4.2`, `4`, `latest`, `4.2.7-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.7-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.7-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/apache/Dockerfile) -- [`4.2.7-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/fpm-alpine/Dockerfile) -- [`4.2.7-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.0/fpm/Dockerfile) -- [`4.2.7-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/apache/Dockerfile) -- [`4.2.7-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/fpm-alpine/Dockerfile) -- [`4.2.7-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/da5a91d2d442bd7a23356a15336701614cacfd71/4.2/php8.1/fpm/Dockerfile) +- [`4.2.8`, `4.2`, `4`, `latest`, `4.2.8-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.8-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.8-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/apache/Dockerfile) +- [`4.2.8-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/fpm-alpine/Dockerfile) +- [`4.2.8-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/fpm/Dockerfile) +- [`4.2.8-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/apache/Dockerfile) +- [`4.2.8-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/fpm-alpine/Dockerfile) +- [`4.2.8-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/fpm/Dockerfile) - [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/apache/Dockerfile) - [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 54763f44e21d..593a488b6e09 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0`, `5.4.0-community`, `5.4`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/3aea9c3039e2db1a5adfb994f6b6d8c315f3f867/5.4.0/community/Dockerfile) -- [`5.4.0-enterprise`, `5.4-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/3aea9c3039e2db1a5adfb994f6b6d8c315f3f867/5.4.0/enterprise/Dockerfile) +- [`5.5.0`, `5.5.0-community`, `5.5`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/community/Dockerfile) +- [`5.5.0-enterprise`, `5.5-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/enterprise/Dockerfile) - [`4.4.17`, `4.4.17-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/community/Dockerfile) - [`4.4.17-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/enterprise/Dockerfile) From 5da8e258163a36de6f8fc773261cf3c7ae3254f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Feb 2023 15:08:49 -0800 Subject: [PATCH 0088/2686] Run update.sh --- golang/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/README.md b/golang/README.md index d5c26e33660f..aaebe7530213 100644 --- a/golang/README.md +++ b/golang/README.md @@ -104,7 +104,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.19 +FROM golang:1.20 WORKDIR /usr/src/app @@ -130,13 +130,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.19 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.19 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 make ``` ## Cross-compile your app inside the Docker container @@ -144,13 +144,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.19 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.19 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.20 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.19 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From f14b94acdf3678cea30bbe77fd5d7958ed661f5a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Feb 2023 10:13:14 -0800 Subject: [PATCH 0089/2686] Run update.sh --- node/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index dbacfef17f02..1fbacf86468c 100644 --- a/node/README.md +++ b/node/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.6-alpine3.16`, `19.6.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.6-alpine`, `19.6-alpine3.17`, `19.6.0-alpine`, `19.6.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.6`, `19.6-bullseye`, `19.6.0`, `19.6.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.6-bullseye-slim`, `19.6-slim`, `19.6.0-bullseye-slim`, `19.6.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.6-buster`, `19.6.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/buster/Dockerfile) -- [`19-buster-slim`, `19.6-buster-slim`, `19.6.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.0-alpine`, `18.14.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/alpine3.17/Dockerfile) -- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.0`, `18.14.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.0-bullseye-slim`, `18.14.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.14-buster`, `18.14.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/buster/Dockerfile) -- [`18-buster-slim`, `18.14-buster-slim`, `18.14.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/f996e97a2e6d2aae2de3b869e083a253733f07a8/18/buster-slim/Dockerfile) -- [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.0-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/2a15356c778b366621aa370a4294c59ac1df9c6a/16/alpine3.16/Dockerfile) -- [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.0-alpine`, `16.19.0-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/2a15356c778b366621aa370a4294c59ac1df9c6a/16/alpine3.17/Dockerfile) -- [`16-bullseye`, `16.19-bullseye`, `16.19.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.19-bullseye-slim`, `16.19.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/16/bullseye-slim/Dockerfile) -- [`16`, `16-buster`, `16.19`, `16.19-buster`, `16.19.0`, `16.19.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.19-buster-slim`, `16.19-slim`, `16.19.0-buster-slim`, `16.19.0-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/16/buster-slim/Dockerfile) -- [`14-alpine3.16`, `14.21-alpine3.16`, `14.21.2-alpine3.16`, `fermium-alpine3.16`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/alpine3.16/Dockerfile) -- [`14-alpine`, `14-alpine3.17`, `14.21-alpine`, `14.21-alpine3.17`, `14.21.2-alpine`, `14.21.2-alpine3.17`, `fermium-alpine`, `fermium-alpine3.17`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/alpine3.17/Dockerfile) -- [`14-bullseye`, `14.21-bullseye`, `14.21.2-bullseye`, `fermium-bullseye`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/bullseye/Dockerfile) -- [`14-bullseye-slim`, `14.21-bullseye-slim`, `14.21.2-bullseye-slim`, `fermium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/bullseye-slim/Dockerfile) -- [`14`, `14-buster`, `14.21`, `14.21-buster`, `14.21.2`, `14.21.2-buster`, `fermium`, `fermium-buster`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/buster/Dockerfile) -- [`14-buster-slim`, `14-slim`, `14.21-buster-slim`, `14.21-slim`, `14.21.2-buster-slim`, `14.21.2-slim`, `fermium-buster-slim`, `fermium-slim`](https://github.com/nodejs/docker-node/blob/3f8018043408490439723ed3b71ab5578d69ea70/14/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.6-alpine3.16`, `19.6.1-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.6-alpine`, `19.6-alpine3.17`, `19.6.1-alpine`, `19.6.1-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.6`, `19.6-bullseye`, `19.6.1`, `19.6.1-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.6-bullseye-slim`, `19.6-slim`, `19.6.1-bullseye-slim`, `19.6.1-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.6-buster`, `19.6.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster/Dockerfile) +- [`19-buster-slim`, `19.6-buster-slim`, `19.6.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster-slim/Dockerfile) +- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.1-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/f1a59606440d4eb82e5854ee6705880461528e9d/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.1-alpine`, `18.14.1-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/f1a59606440d4eb82e5854ee6705880461528e9d/18/alpine3.17/Dockerfile) +- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.1`, `18.14.1-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.1-bullseye-slim`, `18.14.1-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.14-buster`, `18.14.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster/Dockerfile) +- [`18-buster-slim`, `18.14-buster-slim`, `18.14.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster-slim/Dockerfile) +- [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/alpine3.16/Dockerfile) +- [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/alpine3.17/Dockerfile) +- [`16-bullseye`, `16.19-bullseye`, `16.19.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye/Dockerfile) +- [`16-bullseye-slim`, `16.19-bullseye-slim`, `16.19.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye-slim/Dockerfile) +- [`16`, `16-buster`, `16.19`, `16.19-buster`, `16.19.1`, `16.19.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/buster/Dockerfile) +- [`16-buster-slim`, `16-slim`, `16.19-buster-slim`, `16.19-slim`, `16.19.1-buster-slim`, `16.19.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/buster-slim/Dockerfile) +- [`14-alpine3.16`, `14.21-alpine3.16`, `14.21.3-alpine3.16`, `fermium-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.16/Dockerfile) +- [`14-alpine`, `14-alpine3.17`, `14.21-alpine`, `14.21-alpine3.17`, `14.21.3-alpine`, `14.21.3-alpine3.17`, `fermium-alpine`, `fermium-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.17/Dockerfile) +- [`14-bullseye`, `14.21-bullseye`, `14.21.3-bullseye`, `fermium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/bullseye/Dockerfile) +- [`14-bullseye-slim`, `14.21-bullseye-slim`, `14.21.3-bullseye-slim`, `fermium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/bullseye-slim/Dockerfile) +- [`14`, `14-buster`, `14.21`, `14.21-buster`, `14.21.3`, `14.21.3-buster`, `fermium`, `fermium-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/buster/Dockerfile) +- [`14-buster-slim`, `14-slim`, `14.21-buster-slim`, `14.21-slim`, `14.21.3-buster-slim`, `14.21.3-slim`, `fermium-buster-slim`, `fermium-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/buster-slim/Dockerfile) # Quick reference (cont.) From 19950a43a4b63a893dcceb17bb7e1c981b0b8988 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Feb 2023 11:08:51 -0800 Subject: [PATCH 0090/2686] Run update.sh --- docker/README.md | 4 ++-- ghost/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/README.md b/docker/README.md index 2dbbd2402c71..25fc60628c77 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/cli/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/50d102385f2d5198a043317f63abb8ac7f9347c9/23.0/cli/Dockerfile) - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/dbd6b97c257242d05f1ade073acd1b3195ac2c75/20.10/cli/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/8a0590b0033d0922237ea0937a0ed4b112e01b29/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 7cbf14e293cc..4cdfa12e4a69 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.34.0`, `5.34`, `5`, `latest`](https://github.com/docker-library/ghost/blob/83c4d4699d70b2982bd8246f12466c1387d7fbf0/5/debian/Dockerfile) -- [`5.34.0-alpine`, `5.34-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/83c4d4699d70b2982bd8246f12466c1387d7fbf0/5/alpine/Dockerfile) +- [`5.34.1`, `5.34`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9475ea7f58cc815dbfef1bf4b0497c8dd760b152/5/debian/Dockerfile) +- [`5.34.1-alpine`, `5.34-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9475ea7f58cc815dbfef1bf4b0497c8dd760b152/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) From 1e7d889abc29a9279951712df133f45d81b31765 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Feb 2023 12:08:50 -0800 Subject: [PATCH 0091/2686] Run update.sh --- erlang/README.md | 9 ++++++--- kong/README.md | 10 ++-------- mariadb/README.md | 4 ++-- 3 files changed, 10 insertions(+), 13 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 69e333920e9d..117ff72fe5e3 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.2.2.0`, `25.2.2`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/Dockerfile) -- [`25.2.2.0-slim`, `25.2.2-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/slim/Dockerfile) -- [`25.2.2.0-alpine`, `25.2.2-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/b6f02e74925e25f4fef924ff97625f9f839fc0d7/25/alpine/Dockerfile) +- [`26.0-rc1.0.0`, `26.0-rc1.0`, `26.0-rc1`, `26`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/Dockerfile) +- [`26.0-rc1.0.0-slim`, `26.0-rc1.0-slim`, `26.0-rc1-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/slim/Dockerfile) +- [`26.0-rc1.0.0-alpine`, `26.0-rc1.0-alpine`, `26.0-rc1-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/alpine/Dockerfile) +- [`25.2.3.0`, `25.2.3`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/Dockerfile) +- [`25.2.3.0-slim`, `25.2.3-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/slim/Dockerfile) +- [`25.2.3.0-alpine`, `25.2.3-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/alpine/Dockerfile) - [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) - [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) - [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/alpine/Dockerfile) diff --git a/kong/README.md b/kong/README.md index c14a73b72278..ae6f2ededcf2 100644 --- a/kong/README.md +++ b/kong/README.md @@ -28,14 +28,8 @@ WARNING: - [`3.1.1-ubuntu`, `3.1-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) - [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) -- [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/9538eec15456ce93d69a4a1ae9e379a28fd9040b/alpine/Dockerfile) -- [`2.8.3-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/9538eec15456ce93d69a4a1ae9e379a28fd9040b/ubuntu/Dockerfile) -- [`2.7.2-alpine`, `2.7.2`, `2.7`](https://github.com/Kong/docker-kong/blob/456bfc908ed1f4fdbb348bafcf7385aeffdd421c/alpine/Dockerfile) -- [`2.7.2-ubuntu`, `2.7-ubuntu`](https://github.com/Kong/docker-kong/blob/456bfc908ed1f4fdbb348bafcf7385aeffdd421c/ubuntu/Dockerfile) -- [`2.6.1-alpine`, `2.6.1`, `2.6`](https://github.com/Kong/docker-kong/blob/aa4cf106f8933033f433cacc8f073fa4dbbeac21/alpine/Dockerfile) -- [`2.6.1-ubuntu`, `2.6-ubuntu`](https://github.com/Kong/docker-kong/blob/aa4cf106f8933033f433cacc8f073fa4dbbeac21/ubuntu/Dockerfile) -- [`2.5.2-alpine`, `2.5.2`, `2.5`](https://github.com/Kong/docker-kong/blob/e6fbd10247d55eba63db13216666f9db4c6d3363/alpine/Dockerfile) -- [`2.5.2-ubuntu`, `2.5-ubuntu`](https://github.com/Kong/docker-kong/blob/e6fbd10247d55eba63db13216666f9db4c6d3363/ubuntu/Dockerfile) +- [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/51604ac58ec41b3a57de95933b23dc3314552073/alpine/Dockerfile) +- [`2.8.3-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/51604ac58ec41b3a57de95933b23dc3314552073/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index b1586ee3ca73..2379bf82b0b0 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,8 +26,8 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`10.11.1-rc-jammy`, `10.11-rc-jammy`, `10.11.1-rc`, `10.11-rc`](https://github.com/MariaDB/mariadb-docker/blob/ac276eb82f0535ff1849018f46be5e5ed396bda1/10.11/Dockerfile) -- [`10.10.3-jammy`, `10.10-jammy`, `10-jammy`, `jammy`, `10.10.3`, `10.10`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.10/Dockerfile) +- [`10.11.2-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `10.11.2`, `10.11`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/97200971ae9d24a700acc65055eaf9edc4df91f1/10.11/Dockerfile) +- [`10.10.3-jammy`, `10.10-jammy`, `10.10.3`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.10/Dockerfile) - [`10.9.5-jammy`, `10.9-jammy`, `10.9.5`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.9/Dockerfile) - [`10.8.7-jammy`, `10.8-jammy`, `10.8.7`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.8/Dockerfile) - [`10.7.8-focal`, `10.7-focal`, `10.7.8`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.7/Dockerfile) From fec0fc9e9e4e3593bd141b6ad01c11a2cd32c65f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Feb 2023 15:15:14 -0800 Subject: [PATCH 0092/2686] Run update.sh --- mongo/README.md | 60 +++++++++++++++++++++++----------------------- openjdk/README.md | 36 ++++++++++++++-------------- rabbitmq/README.md | 12 +++++----- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index df73e50fe3d2..f9f24dd04e9f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,21 +38,21 @@ WARNING: - [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.14-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-rc1-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/Dockerfile) -- [`4.4.19-rc1-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.19-rc1-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.19-rc1-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.19-rc1-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-1809/Dockerfile) +- [`4.4.19-rc2-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/Dockerfile) +- [`4.4.19-rc2-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.19-rc2-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.19-rc2-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.19-rc2-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.18-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.18-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-rc1-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/Dockerfile) -- [`4.2.24-rc1-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.24-rc1-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.2.24-rc1-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.2.24-rc1-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-1809/Dockerfile) +- [`4.2.24-rc2-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/Dockerfile) +- [`4.2.24-rc2-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.2.24-rc2-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.2.24-rc2-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.2.24-rc2-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-1809/Dockerfile) - [`4.2.23-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.23-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) @@ -81,16 +81,16 @@ WARNING: - `5.0.14-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.19-rc1`, `4.4-rc`: - - [`4.4.19-rc1-focal`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/Dockerfile) - - [`4.4.19-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc1-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.19-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc1-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.19-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.19-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5b5558733a8f6b4e7cc200800686d7b1ec29f0b8/4.4-rc/windows/nanoserver-1809/Dockerfile) +- `4.4.19-rc2`, `4.4-rc`: + - [`4.4.19-rc2-focal`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/Dockerfile) + - [`4.4.19-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc2-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.19-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-rc2-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.19-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.19-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.18`, `4.4`, `4`: - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) @@ -101,16 +101,16 @@ WARNING: - `4.4.18-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - [`4.4.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- `4.2.24-rc1`, `4.2-rc`: - - [`4.2.24-rc1-bionic`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/Dockerfile) - - [`4.2.24-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc1-windowsservercore`, `4.2-rc-windowsservercore`: - - [`4.2.24-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc1-nanoserver`, `4.2-rc-nanoserver`: - - [`4.2.24-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.2.24-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/be2a544f5ba7cb2eae85edc1d77f12cede459281/4.2-rc/windows/nanoserver-1809/Dockerfile) +- `4.2.24-rc2`, `4.2-rc`: + - [`4.2.24-rc2-bionic`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/Dockerfile) + - [`4.2.24-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc2-windowsservercore`, `4.2-rc-windowsservercore`: + - [`4.2.24-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-rc2-nanoserver`, `4.2-rc-nanoserver`: + - [`4.2.24-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.2.24-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-1809/Dockerfile) - `4.2.23`, `4.2`: - [`4.2.23-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - [`4.2.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 571ec3a7f63a..22d2b8b3d01a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-9-jdk-oraclelinux8`, `21-ea-9-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-9-jdk-oracle`, `21-ea-9-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-9-jdk-oraclelinux7`, `21-ea-9-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-9-jdk-bullseye`, `21-ea-9-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/bullseye/Dockerfile) -- [`21-ea-9-jdk-slim-bullseye`, `21-ea-9-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-9-jdk-slim`, `21-ea-9-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-9-jdk-buster`, `21-ea-9-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/buster/Dockerfile) -- [`21-ea-9-jdk-slim-buster`, `21-ea-9-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/slim-buster/Dockerfile) -- [`21-ea-9-jdk-windowsservercore-ltsc2022`, `21-ea-9-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-9-jdk-windowsservercore-1809`, `21-ea-9-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-9-jdk-nanoserver-1809`, `21-ea-9-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-10-jdk-oraclelinux8`, `21-ea-10-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-10-jdk-oracle`, `21-ea-10-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-10-jdk-oraclelinux7`, `21-ea-10-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-10-jdk-bullseye`, `21-ea-10-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/bullseye/Dockerfile) +- [`21-ea-10-jdk-slim-bullseye`, `21-ea-10-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-10-jdk-slim`, `21-ea-10-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-10-jdk-buster`, `21-ea-10-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/buster/Dockerfile) +- [`21-ea-10-jdk-slim-buster`, `21-ea-10-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/slim-buster/Dockerfile) +- [`21-ea-10-jdk-windowsservercore-ltsc2022`, `21-ea-10-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-10-jdk-windowsservercore-1809`, `21-ea-10-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-10-jdk-nanoserver-1809`, `21-ea-10-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/nanoserver-1809/Dockerfile) - [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) - [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-9-jdk`, `21-ea-9`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-9-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-9-jdk-windowsservercore`, `21-ea-9-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-9-jdk-nanoserver`, `21-ea-9-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c54013c65130eb1c41268ab45a7a04e41b47c612/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-10-jdk`, `21-ea-10`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-10-jdk-windowsservercore`, `21-ea-10-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-10-jdk-nanoserver`, `21-ea-10-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/nanoserver-1809/Dockerfile) - `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b49f37a5eb2a..3a75b8d80c26 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.9`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/18cf515476cee61c9f76f3a748e5230e34bf9186/3.11/ubuntu/Dockerfile) +- [`3.11.9`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/1f1974a3ed053cf20116746a6c3cd64fc1896d23/3.11/ubuntu/Dockerfile) - [`3.11.9-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.9-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/18cf515476cee61c9f76f3a748e5230e34bf9186/3.11/alpine/Dockerfile) +- [`3.11.9-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1f1974a3ed053cf20116746a6c3cd64fc1896d23/3.11/alpine/Dockerfile) - [`3.11.9-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.18`, `3.10`](https://github.com/docker-library/rabbitmq/blob/d8ce3a7b3e02a7cdc363d13c0ca3216bd0cfb5e5/3.10/ubuntu/Dockerfile) +- [`3.10.18`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0fece9e37e716ee72ed8873238c7c9f3f85e3737/3.10/ubuntu/Dockerfile) - [`3.10.18-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/d8ce3a7b3e02a7cdc363d13c0ca3216bd0cfb5e5/3.10/alpine/Dockerfile) +- [`3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0fece9e37e716ee72ed8873238c7c9f3f85e3737/3.10/alpine/Dockerfile) - [`3.10.18-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/ubuntu/Dockerfile) +- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/ubuntu/Dockerfile) - [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/90d961238f96976f837276e68dc1f5c2c5e02d08/3.9/alpine/Dockerfile) +- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/alpine/Dockerfile) - [`3.9.28-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 28d12a01647c7a1e994bcfde4f88425471e67eab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Feb 2023 16:37:28 -0800 Subject: [PATCH 0093/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4cdfa12e4a69..7f0d6f3bd149 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.34.1`, `5.34`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9475ea7f58cc815dbfef1bf4b0497c8dd760b152/5/debian/Dockerfile) -- [`5.34.1-alpine`, `5.34-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9475ea7f58cc815dbfef1bf4b0497c8dd760b152/5/alpine/Dockerfile) +- [`5.35.0`, `5.35`, `5`, `latest`](https://github.com/docker-library/ghost/blob/146fc3a73e6f219f4d55c47c46cf2efdb724d397/5/debian/Dockerfile) +- [`5.35.0-alpine`, `5.35-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/146fc3a73e6f219f4d55c47c46cf2efdb724d397/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) From e0ad0b3e24a2a0b2ea99f43c884a58077c585930 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Feb 2023 12:09:07 -0800 Subject: [PATCH 0094/2686] Run update.sh --- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- gradle/README.md | 22 +++++++-------- node/README.md | 8 +++--- perl/README.md | 64 ++++++++++++++++++++++---------------------- photon/README.md | 2 +- rockylinux/README.md | 8 +++--- 7 files changed, 55 insertions(+), 55 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 620fe68791b3..fa217a142a75 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230212.0.126025`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/481324db01f26f26b8f1105e1cfc017f3dbea658/Dockerfile.base) -- [`base-devel`, `base-devel-20230212.0.126025`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/481324db01f26f26b8f1105e1cfc017f3dbea658/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230219.0.127702`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6cf686e5d42b0057c53b35b0055549b48ebd4c1d/Dockerfile.base) +- [`base-devel`, `base-devel-20230219.0.127702`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6cf686e5d42b0057c53b35b0055549b48ebd4c1d/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index c60114988573..99ef893e0a01 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a752f9f45721b2dea9d68573c97d2964f1fa05c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/91d8dd395ef8c315bc8b2ea43be3b1e90c50af32/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 258b1245f6e6..aa26b82cb7e4 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.0-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.0-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk8/Dockerfile) -- [`8.0.0-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk8-focal/Dockerfile) -- [`8.0.0-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.0-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11/Dockerfile) -- [`8.0.0-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11-focal/Dockerfile) -- [`8.0.0-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk11-alpine/Dockerfile) -- [`8.0.0-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.0-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.0`, `8.0`, `8`, `latest`, `8.0.0-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.0-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.0-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17/Dockerfile) -- [`8.0.0-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.0-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.0-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17-focal/Dockerfile) -- [`8.0.0-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.0-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.0-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk17-alpine/Dockerfile) -- [`8.0.0-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.0-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19/Dockerfile) -- [`8.0.0-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19-focal/Dockerfile) -- [`8.0.0-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/189b3519cdd54bd76f7aed58f9a99ca7deec3512/jdk19-alpine/Dockerfile) +- [`8.0.1-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.1-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk8/Dockerfile) +- [`8.0.1-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk8-focal/Dockerfile) +- [`8.0.1-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.1-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11/Dockerfile) +- [`8.0.1-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11-focal/Dockerfile) +- [`8.0.1-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11-alpine/Dockerfile) +- [`8.0.1-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.1-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.1`, `8.0`, `8`, `latest`, `8.0.1-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.1-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.1-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17/Dockerfile) +- [`8.0.1-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.1-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.1-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17-focal/Dockerfile) +- [`8.0.1-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.1-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.1-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17-alpine/Dockerfile) +- [`8.0.1-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.1-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19/Dockerfile) +- [`8.0.1-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19-focal/Dockerfile) +- [`8.0.1-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19-alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 1fbacf86468c..49c36c8999e4 100644 --- a/node/README.md +++ b/node/README.md @@ -30,14 +30,14 @@ WARNING: - [`19-bullseye-slim`, `19-slim`, `19.6-bullseye-slim`, `19.6-slim`, `19.6.1-bullseye-slim`, `19.6.1-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/bullseye-slim/Dockerfile) - [`19-buster`, `19.6-buster`, `19.6.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster/Dockerfile) - [`19-buster-slim`, `19.6-buster-slim`, `19.6.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.1-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/f1a59606440d4eb82e5854ee6705880461528e9d/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.1-alpine`, `18.14.1-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/f1a59606440d4eb82e5854ee6705880461528e9d/18/alpine3.17/Dockerfile) +- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.1-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.1-alpine`, `18.14.1-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/18/alpine3.17/Dockerfile) - [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.1`, `18.14.1-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye/Dockerfile) - [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.1-bullseye-slim`, `18.14.1-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.14-buster`, `18.14.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster/Dockerfile) - [`18-buster-slim`, `18.14-buster-slim`, `18.14.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster-slim/Dockerfile) -- [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/alpine3.16/Dockerfile) -- [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/alpine3.17/Dockerfile) +- [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.16/Dockerfile) +- [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.17/Dockerfile) - [`16-bullseye`, `16.19-bullseye`, `16.19.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye/Dockerfile) - [`16-bullseye-slim`, `16.19-bullseye-slim`, `16.19.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye-slim/Dockerfile) - [`16`, `16-buster`, `16.19`, `16.19-buster`, `16.19.1`, `16.19.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/buster/Dockerfile) diff --git a/perl/README.md b/perl/README.md index 87363e2e2cb5..87d5427acfaa 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,38 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main-bullseye/Dockerfile) -- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main-buster/Dockerfile) -- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim-bullseye/Dockerfile) -- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim-buster/Dockerfile) -- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main,threaded-bullseye/Dockerfile) -- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-main,threaded-buster/Dockerfile) -- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim,threaded-bullseye/Dockerfile) -- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.036.000-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.032.001-slim,threaded-buster/Dockerfile) -- [`5.37.8`, `5.37`, `devel`, `5.37.8-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main-bullseye/Dockerfile) -- [`5.37.8-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main-buster/Dockerfile) -- [`5.37.8-slim`, `5.37-slim`, `devel-slim`, `5.37.8-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim-bullseye/Dockerfile) -- [`5.37.8-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim-buster/Dockerfile) -- [`5.37.8-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.8-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main,threaded-bullseye/Dockerfile) -- [`5.37.8-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-main,threaded-buster/Dockerfile) -- [`5.37.8-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.8-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim,threaded-bullseye/Dockerfile) -- [`5.37.8-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/a0b67543fd56367c403a2f063dfed1a69fdda390/5.037.008-slim,threaded-buster/Dockerfile) +- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main-bullseye/Dockerfile) +- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main-buster/Dockerfile) +- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim-bullseye/Dockerfile) +- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim-buster/Dockerfile) +- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main,threaded-bullseye/Dockerfile) +- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main,threaded-buster/Dockerfile) +- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim,threaded-bullseye/Dockerfile) +- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main-bullseye/Dockerfile) +- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main-buster/Dockerfile) +- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim-bullseye/Dockerfile) +- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim-buster/Dockerfile) +- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main,threaded-bullseye/Dockerfile) +- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main,threaded-buster/Dockerfile) +- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim,threaded-bullseye/Dockerfile) +- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.37.9`, `5.37`, `devel`, `5.37.9-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main-bullseye/Dockerfile) +- [`5.37.9-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main-buster/Dockerfile) +- [`5.37.9-slim`, `5.37-slim`, `devel-slim`, `5.37.9-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim-bullseye/Dockerfile) +- [`5.37.9-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim-buster/Dockerfile) +- [`5.37.9-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.9-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main,threaded-bullseye/Dockerfile) +- [`5.37.9-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main,threaded-buster/Dockerfile) +- [`5.37.9-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.9-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim,threaded-bullseye/Dockerfile) +- [`5.37.9-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim,threaded-buster/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 94fe1b44dc3a..0daa72e98887 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230211`, `latest`](https://github.com/vmware/photon-docker-image/blob/899c4f03780d4365c71edd5253fec180b3542cb4/docker/Dockerfile) +- [`4.0`, `4.0-20230218`, `latest`](https://github.com/vmware/photon-docker-image/blob/9a3cf5e9131824b9c386fc633d0f06bfceffef67/docker/Dockerfile) - [`3.0`, `3.0-20230128`](https://github.com/vmware/photon-docker-image/blob/48b8de1e99610ea45573ac6e1e02dc5568f562fe/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) diff --git a/rockylinux/README.md b/rockylinux/README.md index f1c7ba21fc2e..99c55eba53d4 100644 --- a/rockylinux/README.md +++ b/rockylinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.20221221`, `9.1`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/0c5e7578276e2bd1196e340ea98fee112d305bac/Dockerfile) -- [`9.1.20221221-minimal`, `9.1-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/4925a4ada53dc186b27167d90dbe62c7d62942cc/Dockerfile) -- [`8.7.20221219`, `8.7`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/15e9cb0790bed8b6cba7b5cb2ecf3ebab6a0e6ae/Dockerfile) -- [`8.7.20221219-minimal`, `8.7-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/263f85f3cc1dfaa1824aeecfe3aee681adafe33f/Dockerfile) +- [`9.1.20230215`, `9.1`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/c554918c3fb7432f70802459ee942fead8121cae/Dockerfile) +- [`9.1.20230215-minimal`, `9.1-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/957dce1794c27b8fc1666f7e283db2ba7ef5b182/Dockerfile) +- [`8.7.20230215`, `8.7`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/65d3f79aa8b5d0a9ed1270470e585539f7d59cd1/Dockerfile) +- [`8.7.20230215-minimal`, `8.7-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/a923b0d8957fa92feafaa4f6b00f8df08db796ab/Dockerfile) # Quick reference (cont.) From 1083166e52843ad4fceb078bd1c9dcbb2048484d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Feb 2023 17:08:46 -0800 Subject: [PATCH 0095/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- ghost/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- wordpress/README.md | 18 +++++++++--------- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bash/README.md b/bash/README.md index a43e38f60fec..8a9a2429ef88 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230213`, `devel`, `devel-20230213-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/f91193e1aaed0f35e78326ef99f0c9ca5b7aaae9/devel/Dockerfile) +- [`devel-20230220`, `devel`, `devel-20230220-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/35c27cdba72ad2dbd12686074a2db84f7464b49a/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 4d8a31acbf96..fe034008a62f 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.1`](https://github.com/docker-library/elasticsearch/blob/8001c62c84bb3fa9f19a2725d20d4e5f404dda5e/8/Dockerfile) +- [`8.6.2`](https://github.com/docker-library/elasticsearch/blob/90e34ca306d9800d3c0ab1c59387b93e89c69796/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/elasticsearch/blob/584687331345cc631249925517b78b2f1058914c/7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 7f0d6f3bd149..f6ba185c26ab 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.35.0`, `5.35`, `5`, `latest`](https://github.com/docker-library/ghost/blob/146fc3a73e6f219f4d55c47c46cf2efdb724d397/5/debian/Dockerfile) -- [`5.35.0-alpine`, `5.35-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/146fc3a73e6f219f4d55c47c46cf2efdb724d397/5/alpine/Dockerfile) +- [`5.35.1`, `5.35`, `5`, `latest`](https://github.com/docker-library/ghost/blob/64a043e41c841defaa52ff2f789fc0f36d1e8629/5/debian/Dockerfile) +- [`5.35.1-alpine`, `5.35-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/64a043e41c841defaa52ff2f789fc0f36d1e8629/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 3bb13b5633ba..3b7b1e075598 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.1`](https://github.com/docker-library/kibana/blob/99dfd6ecee59bd6e72c85c2f6b4ded17e3180c5e/8/Dockerfile) +- [`8.6.2`](https://github.com/docker-library/kibana/blob/da3edfaa4c3735e2fa17d70f0f26c64488fcb06c/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/kibana/blob/fd40461903be40051a19f81fc7a1630e8049343f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 0aef37bd436f..4125fb30bbfc 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.1`](https://github.com/docker-library/logstash/blob/9061b36c4de1baca7642d05c31111515873ab7cb/8/Dockerfile) +- [`8.6.2`](https://github.com/docker-library/logstash/blob/8ecac06ee232b47787ae8f1673fa0aa539b482fa/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/logstash/blob/19eccdc220a6c1d80ddb3a0e48e2bf5d2414682e/7/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index d6821fc0a66b..3fc6ba6ccb9e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-beta2-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta2`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta2-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta2-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-beta2-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta2-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-beta2-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta2-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-beta2-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta2-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-beta2-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-beta2-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-beta2-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta2-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-beta2-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-beta2-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5038a4587ccc2165eae6e1f1d52ac76999cae48a/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-beta3-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta3`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta3-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta3-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-beta3-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta3-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-beta3-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta3-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-beta3-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta3-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-beta3-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-beta3-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-beta3-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta3-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-beta3-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-beta3-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From d6062c648b0ef6ec221c96b10c661ba301e44606 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Feb 2023 10:15:32 -0800 Subject: [PATCH 0096/2686] Run update.sh --- almalinux/README.md | 8 ++++---- fedora/README.md | 6 +++--- node/README.md | 24 ++++++++++++------------ xwiki/README.md | 9 +++------ 4 files changed, 22 insertions(+), 25 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index a71a0facc5d1..e16bb1717752 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `8`, `8.7`, `8.7-20221201`](https://github.com/AlmaLinux/docker-images/blob/c23f18dbac3cb8bdba691019de42ebc25933c676/Dockerfile-x86_64-default) -- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20221201`](https://github.com/AlmaLinux/docker-images/blob/c23f18dbac3cb8bdba691019de42ebc25933c676/Dockerfile-x86_64-minimal) -- [`9`, `9.1`, `9.1-20221201`](https://github.com/AlmaLinux/docker-images/blob/dd9e3fb5f2f6f68169a4286b32d0509f295d2fed/Dockerfile-x86_64-default) -- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20221201`](https://github.com/AlmaLinux/docker-images/blob/dd9e3fb5f2f6f68169a4286b32d0509f295d2fed/Dockerfile-x86_64-minimal) +- [`latest`, `8`, `8.7`, `8.7-20230222`](https://github.com/AlmaLinux/docker-images/blob/80f909f7bc5d25808962109afb606ba6aba4c295/Dockerfile-x86_64-default) +- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20230222`](https://github.com/AlmaLinux/docker-images/blob/80f909f7bc5d25808962109afb606ba6aba4c295/Dockerfile-x86_64-minimal) +- [`9`, `9.1`, `9.1-20230222`](https://github.com/AlmaLinux/docker-images/blob/e597607d705998e07a3a3fca66cc51ab467cb74d/Dockerfile-x86_64-default) +- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20230222`](https://github.com/AlmaLinux/docker-images/blob/e597607d705998e07a3a3fca66cc51ab467cb74d/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index e2ddcb9fb3fe..732f827fa4bf 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3f975633c8a42e4ef23d4171b8c7099807f06861/x86_64/Dockerfile) -- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7ce19eafa9a8336d467ab74c20bd414b658228be/x86_64/Dockerfile) -- [`38`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3126e73eb4689d071d894d882e3419b9fbc1548b/x86_64/Dockerfile) +- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/834d0828c47d1a141af7b13d036ad479142c060c/x86_64/Dockerfile) +- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5c25517542e00afe804e41df3dddcddbd2cd062a/x86_64/Dockerfile) +- [`38`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c1e2120c04b86ae4e73f14806066bca6e6200d9c/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 49c36c8999e4..13347e183ffb 100644 --- a/node/README.md +++ b/node/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.6-alpine3.16`, `19.6.1-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.6-alpine`, `19.6-alpine3.17`, `19.6.1-alpine`, `19.6.1-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.6`, `19.6-bullseye`, `19.6.1`, `19.6.1-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.6-bullseye-slim`, `19.6-slim`, `19.6.1-bullseye-slim`, `19.6.1-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.6-buster`, `19.6.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster/Dockerfile) -- [`19-buster-slim`, `19.6-buster-slim`, `19.6.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.1-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.1-alpine`, `18.14.1-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/18/alpine3.17/Dockerfile) -- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.1`, `18.14.1-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.1-bullseye-slim`, `18.14.1-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.14-buster`, `18.14.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster/Dockerfile) -- [`18-buster-slim`, `18.14-buster-slim`, `18.14.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/18/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.7-alpine3.16`, `19.7.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.7-alpine`, `19.7-alpine3.17`, `19.7.0-alpine`, `19.7.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.7`, `19.7-bullseye`, `19.7.0`, `19.7.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.7-bullseye-slim`, `19.7-slim`, `19.7.0-bullseye-slim`, `19.7.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.7-buster`, `19.7.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster/Dockerfile) +- [`19-buster-slim`, `19.7-buster-slim`, `19.7.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster-slim/Dockerfile) +- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.2-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.2-alpine`, `18.14.2-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/alpine3.17/Dockerfile) +- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.2`, `18.14.2-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.2-bullseye-slim`, `18.14.2-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.14-buster`, `18.14.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/buster/Dockerfile) +- [`18-buster-slim`, `18.14-buster-slim`, `18.14.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/buster-slim/Dockerfile) - [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.16/Dockerfile) - [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.17/Dockerfile) - [`16-bullseye`, `16.19-bullseye`, `16.19.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index d5c578ec0655..6c772c8cd5aa 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,12 +27,9 @@ WARNING: - [`15`, `15.0`, `15.0.0`, `15-mysql-tomcat`, `15.0-mysql-tomcat`, `15.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.0-postgres-tomcat`, `15.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.0-mariadb-tomcat`, `15.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.4`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.4-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.4-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.4-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/708b26a42ee4bb46d5445315e19be1a019151e71/14/mariadb-tomcat/Dockerfile) -- [`14.4`, `14.4.7`, `14.4-mysql-tomcat`, `14.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mysql-tomcat/Dockerfile) -- [`14.4-postgres-tomcat`, `14.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/postgres-tomcat/Dockerfile) -- [`14.4-mariadb-tomcat`, `14.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/2afb800f554f08f7ada9b1ab09f9140fca737177/14.4/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.5`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From c5d210501aae2bababfb72a3403f822765cd15a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Feb 2023 11:08:48 -0800 Subject: [PATCH 0097/2686] Run update.sh --- erlang/README.md | 4 ++-- mediawiki/README.md | 18 +++++++++--------- oraclelinux/README.md | 12 ++++++------ 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 117ff72fe5e3..d1e39aff65d1 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -29,10 +29,10 @@ WARNING: - [`26.0-rc1.0.0-alpine`, `26.0-rc1.0-alpine`, `26.0-rc1-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/alpine/Dockerfile) - [`25.2.3.0`, `25.2.3`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/Dockerfile) - [`25.2.3.0-slim`, `25.2.3-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/slim/Dockerfile) -- [`25.2.3.0-alpine`, `25.2.3-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/alpine/Dockerfile) +- [`25.2.3.0-alpine`, `25.2.3-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/36819926f9cfb9d2b52afe382ec5fcb4cd3d91b6/25/alpine/Dockerfile) - [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) - [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) -- [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/alpine/Dockerfile) +- [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/36819926f9cfb9d2b52afe382ec5fcb4cd3d91b6/24/alpine/Dockerfile) - [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/Dockerfile) - [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/slim/Dockerfile) - [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/alpine/Dockerfile) diff --git a/mediawiki/README.md b/mediawiki/README.md index 01e6c704823a..d93a3bc9c155 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.39.1`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.39/apache/Dockerfile) -- [`1.39.1-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.39/fpm/Dockerfile) -- [`1.39.1-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.39/fpm-alpine/Dockerfile) -- [`1.38.5`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.38/apache/Dockerfile) -- [`1.38.5-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.38/fpm/Dockerfile) -- [`1.38.5-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.38/fpm-alpine/Dockerfile) -- [`1.35.9`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.35/apache/Dockerfile) -- [`1.35.9-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.35/fpm/Dockerfile) -- [`1.35.9-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/096c7f23b12f5694eed54e7dd7bbf71d9e69c3ec/1.35/fpm-alpine/Dockerfile) +- [`1.39.2`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/apache/Dockerfile) +- [`1.39.2-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/fpm/Dockerfile) +- [`1.39.2-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/fpm-alpine/Dockerfile) +- [`1.38.5`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/apache/Dockerfile) +- [`1.38.5-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/fpm/Dockerfile) +- [`1.38.5-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/fpm-alpine/Dockerfile) +- [`1.35.9`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/apache/Dockerfile) +- [`1.35.9-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/fpm/Dockerfile) +- [`1.35.9-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 13b52374cb09..648465fefca2 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/956a0a98a1e0416c35ddc026daf42e2b7de8df4f/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/7-slim/Dockerfile) # Quick reference (cont.) From ec43fd38569b0822aad7d00cd4a4f9bc7a2d623e Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 23 Feb 2023 23:55:47 +0100 Subject: [PATCH 0098/2686] Update Nextcloud Docs --- nextcloud/content.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/nextcloud/content.md b/nextcloud/content.md index a2dbab047b16..fad8bc415ba7 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -6,6 +6,8 @@ A safe home for all your data. Access & share your files, calendars, contacts, m %%LOGO%% +This Docker micro-service image is developed and maintained by the Nextcloud community. Nextcloud GmbH does not offer support for this Docker image. When you are looking to get professional support, you can become an [enterprise](https://nextcloud.com/enterprise/) customer or use [AIO](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one). + # How to use this image This image is designed to be used in a micro-service environment. There are two versions of the image you can choose from. @@ -142,6 +144,14 @@ The install and update script is only triggered when a default command is used ( - `NEXTCLOUD_UPDATE` (default: `0`) +If you share your html folder with multiple docker containers, you might want to avoid multiple processes updating the same shared volume + +- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue. + +You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. + +- `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. + If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters: - `REDIS_HOST` (not set by default) Name of Redis container @@ -241,7 +251,7 @@ services: db: image: mariadb:10.5 restart: always - command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW + command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: @@ -287,7 +297,7 @@ services: db: image: mariadb:10.5 restart: always - command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW + command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: From 019e714a1340b858b64d0b594a47da4a3e680b9e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Feb 2023 16:08:45 -0800 Subject: [PATCH 0099/2686] Run update.sh --- oraclelinux/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 648465fefca2..c7f222dd7171 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/014054e724acbb6e092178675ec6a649350e9216/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/7-slim/Dockerfile) # Quick reference (cont.) From 80159bde99af10e1183032440046e24bb17fe0da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Feb 2023 18:08:46 -0800 Subject: [PATCH 0100/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index ae4bdebe20b7..182cbcd69aa9 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23.0.12-apache`, `23.0-apache`, `23-apache`, `23.0.12`, `23.0`, `23`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/apache/Dockerfile) -- [`23.0.12-fpm`, `23.0-fpm`, `23-fpm`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/fpm/Dockerfile) -- [`23.0.12-fpm-alpine`, `23.0-fpm-alpine`, `23-fpm-alpine`](https://github.com/nextcloud/docker/blob/540648f7edee606349f4499e1c989e9c106331a9/23/fpm-alpine/Dockerfile) -- [`24.0.9-apache`, `24.0-apache`, `24-apache`, `24.0.9`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/apache/Dockerfile) -- [`24.0.9-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/fpm/Dockerfile) -- [`24.0.9-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/24/fpm-alpine/Dockerfile) -- [`25.0.3-apache`, `25.0-apache`, `25-apache`, `apache`, `stable-apache`, `production-apache`, `25.0.3`, `25.0`, `25`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/apache/Dockerfile) -- [`25.0.3-fpm`, `25.0-fpm`, `25-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/fpm/Dockerfile) -- [`25.0.3-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/c1a52325422d08def6aa9d30028e04a96432abf0/25/fpm-alpine/Dockerfile) +- [`23.0.12-apache`, `23.0-apache`, `23-apache`, `23.0.12`, `23.0`, `23`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/apache/Dockerfile) +- [`23.0.12-fpm`, `23.0-fpm`, `23-fpm`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/fpm/Dockerfile) +- [`23.0.12-fpm-alpine`, `23.0-fpm-alpine`, `23-fpm-alpine`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/fpm-alpine/Dockerfile) +- [`24.0.10-apache`, `24.0-apache`, `24-apache`, `24.0.10`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/apache/Dockerfile) +- [`24.0.10-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/fpm/Dockerfile) +- [`24.0.10-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/fpm-alpine/Dockerfile) +- [`25.0.4-apache`, `25.0-apache`, `25-apache`, `apache`, `stable-apache`, `production-apache`, `25.0.4`, `25.0`, `25`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/apache/Dockerfile) +- [`25.0.4-fpm`, `25.0-fpm`, `25-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/fpm/Dockerfile) +- [`25.0.4-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/fpm-alpine/Dockerfile) # Quick reference (cont.) From 8beca9c5f7e07b1cf8a21bbfef47e20d5731fe0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Feb 2023 12:08:47 -0800 Subject: [PATCH 0101/2686] Run update.sh --- arangodb/README.md | 4 ++-- nextcloud/README.md | 14 ++++++++++++-- odoo/README.md | 6 +++--- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 718eb6f195db..c5010b95e527 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.8`, `3.8.8`](https://github.com/arangodb/arangodb-docker/blob/6e5a02cd7f5106076a1faf24360218c3e2ca3003/alpine/3.8.8/Dockerfile) -- [`3.9`, `3.9.8`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.9.8/Dockerfile) -- [`3.10`, `3.10.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.10.3/Dockerfile) +- [`3.9`, `3.9.9`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.9.9/Dockerfile) +- [`3.10`, `3.10.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.10.4/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 182cbcd69aa9..0c335b467f72 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -61,6 +61,8 @@ A safe home for all your data. Access & share your files, calendars, contacts, m ![logo](https://raw.githubusercontent.com/docker-library/docs/eabcf59e64b4395e681a7f7a9773bd213c9f3678/nextcloud/logo.svg?sanitize=true) +This Docker micro-service image is developed and maintained by the Nextcloud community. Nextcloud GmbH does not offer support for this Docker image. When you are looking to get professional support, you can become an [enterprise](https://nextcloud.com/enterprise/) customer or use [AIO](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one). + # How to use this image This image is designed to be used in a micro-service environment. There are two versions of the image you can choose from. @@ -197,6 +199,14 @@ The install and update script is only triggered when a default command is used ( - `NEXTCLOUD_UPDATE` (default: `0`) +If you share your html folder with multiple docker containers, you might want to avoid multiple processes updating the same shared volume + +- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue. + +You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. + +- `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. + If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters: - `REDIS_HOST` (not set by default) Name of Redis container @@ -296,7 +306,7 @@ services: db: image: mariadb:10.5 restart: always - command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW + command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: @@ -342,7 +352,7 @@ services: db: image: mariadb:10.5 restart: always - command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW + command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: diff --git a/odoo/README.md b/odoo/README.md index 2455cd46a170..43dcd797fea9 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/14.0/Dockerfile) # Quick reference (cont.) From 0cea62ad41ade81be2b76cd300e179de89036fff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Feb 2023 15:11:24 -0800 Subject: [PATCH 0102/2686] Run update.sh --- mongo/README.md | 120 ++++++++++++++++++----------------------------- neo4j/README.md | 4 +- python/README.md | 120 +++++++++++++++++++++++------------------------ 3 files changed, 107 insertions(+), 137 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index f9f24dd04e9f..8179c299b643 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,31 +33,21 @@ WARNING: - [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.14-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/5.0/Dockerfile) -- [`5.0.14-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.14-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.14-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.14-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-rc2-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/Dockerfile) -- [`4.4.19-rc2-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.19-rc2-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.19-rc2-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.19-rc2-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.18-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) -- [`4.4.18-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.18-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.18-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.18-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-rc2-bionic`, `4.2-rc-bionic`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/Dockerfile) -- [`4.2.24-rc2-windowsservercore-ltsc2022`, `4.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.24-rc2-windowsservercore-1809`, `4.2-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.2.24-rc2-nanoserver-ltsc2022`, `4.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.2.24-rc2-nanoserver-1809`, `4.2-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-1809/Dockerfile) -- [`4.2.23-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) -- [`4.2.23-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.23-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) -- [`4.2.23-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.2.23-nanoserver-1809`, `4.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/nanoserver-1809/Dockerfile) +- [`5.0.15-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/Dockerfile) +- [`5.0.15-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.15-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.15-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.15-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.19-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/Dockerfile) +- [`4.4.19-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.19-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.19-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.19-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) +- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/Dockerfile) +- [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) +- [`4.2.24-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.2.24-nanoserver-1809`, `4.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -71,56 +61,36 @@ WARNING: - `6.0.4-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - [`6.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.14`, `5.0`, `5`: - - [`5.0.14-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/5.0/Dockerfile) - - [`5.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.14-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.14-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d27f80ddeafa162ab0a2f73a733c52f5e54bf817/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.19-rc2`, `4.4-rc`: - - [`4.4.19-rc2-focal`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/Dockerfile) - - [`4.4.19-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc2-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.19-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-rc2-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.19-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.19-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/99d28ff99b4b7a768f3bd6e00663f9e5f5b85c81/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.18`, `4.4`, `4`: - - [`4.4.18-focal`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.4/Dockerfile) - - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.18-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.18-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/065527f98244e16f3cc252c1ed369244cc5ebc30/4.4/windows/nanoserver-1809/Dockerfile) -- `4.2.24-rc2`, `4.2-rc`: - - [`4.2.24-rc2-bionic`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/Dockerfile) - - [`4.2.24-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc2-windowsservercore`, `4.2-rc-windowsservercore`: - - [`4.2.24-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-rc2-nanoserver`, `4.2-rc-nanoserver`: - - [`4.2.24-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.2.24-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65797f5d03b46a7f43a13c30f265545b719075c5/4.2-rc/windows/nanoserver-1809/Dockerfile) -- `4.2.23`, `4.2`: - - [`4.2.23-bionic`](https://github.com/docker-library/mongo/blob/eeabd09934c7d4bad942f3a754130d806c63ab80/4.2/Dockerfile) - - [`4.2.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) -- `4.2.23-windowsservercore`, `4.2-windowsservercore`: - - [`4.2.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/windowsservercore-1809/Dockerfile) -- `4.2.23-nanoserver`, `4.2-nanoserver`: - - [`4.2.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.2.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c830e47022955d24bad50f1237ef7b713792bf9e/4.2/windows/nanoserver-1809/Dockerfile) +- `5.0.15`, `5.0`, `5`: + - [`5.0.15-focal`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/Dockerfile) + - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.15-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.15-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.19`, `4.4`, `4`: + - [`4.4.19-focal`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/Dockerfile) + - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.19-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) +- `4.2.24`, `4.2`: + - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/Dockerfile) + - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-windowsservercore`, `4.2-windowsservercore`: + - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) +- `4.2.24-nanoserver`, `4.2-nanoserver`: + - [`4.2.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.2.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 593a488b6e09..294f1446721a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.5.0`, `5.5.0-community`, `5.5`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/community/Dockerfile) - [`5.5.0-enterprise`, `5.5-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/enterprise/Dockerfile) -- [`4.4.17`, `4.4.17-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/community/Dockerfile) -- [`4.4.17-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a97739477e57b1533655608322b42bfe3fecb0ea/4.4.17/enterprise/Dockerfile) +- [`4.4.18`, `4.4.18-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/community/Dockerfile) +- [`4.4.18-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 887f63ffda96..54089ec60629 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a5-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a5-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a5-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a5-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/buster/Dockerfile) -- [`3.12.0a5-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a5-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a5-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a5-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a5-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/bullseye/Dockerfile) -- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/slim-bullseye/Dockerfile) -- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/buster/Dockerfile) -- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/slim-buster/Dockerfile) -- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/alpine3.17/Dockerfile) -- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/alpine3.16/Dockerfile) -- [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/bullseye/Dockerfile) -- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/slim-bullseye/Dockerfile) -- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/buster/Dockerfile) -- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/slim-buster/Dockerfile) -- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/alpine3.17/Dockerfile) -- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/alpine3.16/Dockerfile) -- [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/alpine3.16/Dockerfile) +- [`3.12.0a5-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a5-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a5-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a5-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/buster/Dockerfile) +- [`3.12.0a5-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a5-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a5-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a5-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a5-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) +- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/slim-bullseye/Dockerfile) +- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/buster/Dockerfile) +- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/slim-buster/Dockerfile) +- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/alpine3.17/Dockerfile) +- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/alpine3.16/Dockerfile) +- [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/bullseye/Dockerfile) +- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/slim-bullseye/Dockerfile) +- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/buster/Dockerfile) +- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/slim-buster/Dockerfile) +- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/alpine3.17/Dockerfile) +- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/alpine3.16/Dockerfile) +- [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a5`, `3.12-rc`: - - [`3.12.0a5-bullseye`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a5-bullseye`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a5-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/69d5e5ca5a4323a79668573a8de02dc96fbc7f3b/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.2`, `3.11`, `3`, `latest`: - - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/bullseye/Dockerfile) - - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) + - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.2-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0a56f04a07495e0ed61663c73bc0c2e175773ddc/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.10`, `3.10`: - - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/bullseye/Dockerfile) - - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/bullseye/Dockerfile) + - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.10-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/1a68bced0dc5b7deb6ecd2f7ddacc1089323409d/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/06e0db2fc2e32eb95771b23bc8ad36bf9450640a/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/bullseye/Dockerfile) # Quick reference (cont.) From e857d4a3f0d20d2ada9fd09d3d08d879f57a5332 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Feb 2023 16:14:39 -0800 Subject: [PATCH 0103/2686] Run update.sh --- consul/README.md | 4 +-- tomcat/README.md | 74 +++++++++++++++++++++++------------------------- 2 files changed, 38 insertions(+), 40 deletions(-) diff --git a/consul/README.md b/consul/README.md index 37bccb0800e9..5897cef153b9 100644 --- a/consul/README.md +++ b/consul/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.14.4`, `1.14`, `latest`](https://github.com/hashicorp/docker-consul/blob/c82013e7547a80e3f665a92c2e708a6e717aeaef/0.X/Dockerfile) +- [`1.15.0`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/5536496885820968b7a72b45cb599665156b6e0c/0.X/Dockerfile) +- [`1.14.4`, `1.14`](https://github.com/hashicorp/docker-consul/blob/c82013e7547a80e3f665a92c2e708a6e717aeaef/0.X/Dockerfile) - [`1.13.6`, `1.13`](https://github.com/hashicorp/docker-consul/blob/763f155f091b9aac1015adc9f7a28818ee1eb3f0/0.X/Dockerfile) -- [`1.12.9`, `1.12`](https://github.com/hashicorp/docker-consul/blob/49a5ec3b58813906bab24a055d23194736905b63/0.X/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index b125d56c6320..fa65c21db6bd 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,44 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M1-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M1-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M1-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M1`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f413ee3c1b5be50b58db8cd1e9caff62a040b868/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.0-M1-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M1-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M1-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/f413ee3c1b5be50b58db8cd1e9caff62a040b868/11.0/jre17/temurin-jammy/Dockerfile) -- [`11.0.0-M1-jdk11-temurin-jammy`, `11.0.0-jdk11-temurin-jammy`, `11.0-jdk11-temurin-jammy`, `11.0.0-M1-jdk11-temurin`, `11.0.0-jdk11-temurin`, `11.0-jdk11-temurin`, `11.0.0-M1-jdk11`, `11.0.0-jdk11`, `11.0-jdk11`](https://github.com/docker-library/tomcat/blob/f413ee3c1b5be50b58db8cd1e9caff62a040b868/11.0/jdk11/temurin-jammy/Dockerfile) -- [`11.0.0-M1-jre11-temurin-jammy`, `11.0.0-jre11-temurin-jammy`, `11.0-jre11-temurin-jammy`, `11.0.0-M1-jre11-temurin`, `11.0.0-jre11-temurin`, `11.0-jre11-temurin`, `11.0.0-M1-jre11`, `11.0.0-jre11`, `11.0-jre11`](https://github.com/docker-library/tomcat/blob/f413ee3c1b5be50b58db8cd1e9caff62a040b868/11.0/jre11/temurin-jammy/Dockerfile) -- [`10.1.5-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.5-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.5-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.5`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/09fae3d6a2967a4f78a2135bbd092e067a5fa3ec/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.5-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.5-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.5-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/09fae3d6a2967a4f78a2135bbd092e067a5fa3ec/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.5-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.5-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.5-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/09fae3d6a2967a4f78a2135bbd092e067a5fa3ec/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.5-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.5-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.5-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/09fae3d6a2967a4f78a2135bbd092e067a5fa3ec/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.71-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.71-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.71-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.71`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.71-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.71-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.71-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.71-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.71-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.71-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.71-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.71-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.71-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.71-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.71-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.71-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.71-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.71-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.71-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.71-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.71-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.71-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.71-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.71-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.71-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.71-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.71-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.71-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.71-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.71-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.71-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2fe063250eb12b5a1a49e91dbb8e69f4a4127e45/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.85-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.85-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.85-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.85`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.85-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.85-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.85-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.85-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.85-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.85-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.85-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.85-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.85-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.85-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.85-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.85-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.85-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.85-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.85-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.85-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.85-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.85-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.85-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.85-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.85-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.85-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.85-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.85-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.85-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.85-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.85-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/76cf542f30956309447f435a432181bc64b3dce6/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M3-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M3-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M3-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M3`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f86b4075f8da2559db0563e9114061e51a79b52d/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M3-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M3-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M3-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/f86b4075f8da2559db0563e9114061e51a79b52d/11.0/jre17/temurin-jammy/Dockerfile) +- [`10.1.6-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.6-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.6-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.6-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.6-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.6-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.6-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.6-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.6-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.6-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.6-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.6-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.72-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.72-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.72-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.72`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.72-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.72-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.72-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.72-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.72-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.72-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.72-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.72-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.72-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.72-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.72-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.72-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.72-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.72-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.72-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.72-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.72-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.72-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.72-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.72-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.72-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.72-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.72-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.72-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.72-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.72-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.72-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.86-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.86-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.86-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.86`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.86-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.86-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.86-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.86-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.86-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.86-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.86-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.86-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.86-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.86-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.86-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.86-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.86-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.86-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.86-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.86-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.86-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.86-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.86-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.86-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.86-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.86-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.86-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.86-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.86-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.86-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.86-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From fe0002e508fd7a1b30e3c945232dcccb36a078d2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Feb 2023 17:14:54 -0800 Subject: [PATCH 0104/2686] Run update.sh --- mariadb/README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 2379bf82b0b0..7f864547e9c7 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,15 +26,16 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`10.11.2-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `10.11.2`, `10.11`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/97200971ae9d24a700acc65055eaf9edc4df91f1/10.11/Dockerfile) -- [`10.10.3-jammy`, `10.10-jammy`, `10.10.3`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.10/Dockerfile) -- [`10.9.5-jammy`, `10.9-jammy`, `10.9.5`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.9/Dockerfile) -- [`10.8.7-jammy`, `10.8-jammy`, `10.8.7`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.8/Dockerfile) -- [`10.7.8-focal`, `10.7-focal`, `10.7.8`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.7/Dockerfile) -- [`10.6.12-focal`, `10.6-focal`, `10.6.12`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.6/Dockerfile) -- [`10.5.19-focal`, `10.5-focal`, `10.5.19`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.5/Dockerfile) -- [`10.4.28-focal`, `10.4-focal`, `10.4.28`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.4/Dockerfile) -- [`10.3.38-focal`, `10.3-focal`, `10.3.38`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/051d37a079b9d068692513a11e1e6bde3fda4223/10.3/Dockerfile) +- [`11.0.1-rc-jammy`, `11.0-rc-jammy`, `11.0.1-rc`, `11.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/11.0/Dockerfile) +- [`10.11.2-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `10.11.2`, `10.11`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.11/Dockerfile) +- [`10.10.3-jammy`, `10.10-jammy`, `10.10.3`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.10/Dockerfile) +- [`10.9.5-jammy`, `10.9-jammy`, `10.9.5`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.9/Dockerfile) +- [`10.8.7-jammy`, `10.8-jammy`, `10.8.7`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.8/Dockerfile) +- [`10.7.8-focal`, `10.7-focal`, `10.7.8`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.7/Dockerfile) +- [`10.6.12-focal`, `10.6-focal`, `10.6.12`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.6/Dockerfile) +- [`10.5.19-focal`, `10.5-focal`, `10.5.19`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.5/Dockerfile) +- [`10.4.28-focal`, `10.4-focal`, `10.4.28`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.4/Dockerfile) +- [`10.3.38-focal`, `10.3-focal`, `10.3.38`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.3/Dockerfile) # Quick reference (cont.) From baf1c89d66039d3222fcbd755e83601508d14e48 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Feb 2023 11:09:44 -0800 Subject: [PATCH 0105/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index fa217a142a75..6795834c957a 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230219.0.127702`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6cf686e5d42b0057c53b35b0055549b48ebd4c1d/Dockerfile.base) -- [`base-devel`, `base-devel-20230219.0.127702`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6cf686e5d42b0057c53b35b0055549b48ebd4c1d/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230226.0.129555`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3afeac187a91baceaa6900ecd46d0d9eb379b77f/Dockerfile.base) +- [`base-devel`, `base-devel-20230226.0.129555`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3afeac187a91baceaa6900ecd46d0d9eb379b77f/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 99ef893e0a01..59fe2aed1feb 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/91d8dd395ef8c315bc8b2ea43be3b1e90c50af32/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ea0e4cfa25376aedb6e8b7f49d7e32809a1a18af/Dockerfile) # Quick reference (cont.) From 355c80903450a4707c04504657d55b07bf4157ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Feb 2023 13:15:47 -0800 Subject: [PATCH 0106/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 6c772c8cd5aa..d48ddddb3b70 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.0`, `15.0.0`, `15-mysql-tomcat`, `15.0-mysql-tomcat`, `15.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.0-postgres-tomcat`, `15.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.0-mariadb-tomcat`, `15.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/767d3b77e022cf4565b8308d66589d419a93591b/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.1`, `15.1.0`, `15-mysql-tomcat`, `15.1-mysql-tomcat`, `15.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.1-postgres-tomcat`, `15.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.1-mariadb-tomcat`, `15.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.5`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mariadb-tomcat/Dockerfile) From a5c2141785cbb9a22af8b9571e9ecc18e4bea752 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Feb 2023 17:44:33 -0800 Subject: [PATCH 0107/2686] Run update.sh --- ghost/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ photon/README.md | 4 ++-- telegraf/README.md | 12 ++++++------ 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f6ba185c26ab..56d492d385ab 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.35.1`, `5.35`, `5`, `latest`](https://github.com/docker-library/ghost/blob/64a043e41c841defaa52ff2f789fc0f36d1e8629/5/debian/Dockerfile) -- [`5.35.1-alpine`, `5.35-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/64a043e41c841defaa52ff2f789fc0f36d1e8629/5/alpine/Dockerfile) +- [`5.36.0`, `5.36`, `5`, `latest`](https://github.com/docker-library/ghost/blob/74b45e1eb046bebb53045579b4fee02960ebf9b7/5/debian/Dockerfile) +- [`5.36.0-alpine`, `5.36-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/74b45e1eb046bebb53045579b4fee02960ebf9b7/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 22d2b8b3d01a..64f26044f534 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-10-jdk-oraclelinux8`, `21-ea-10-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-10-jdk-oracle`, `21-ea-10-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-10-jdk-oraclelinux7`, `21-ea-10-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-10-jdk-bullseye`, `21-ea-10-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/bullseye/Dockerfile) -- [`21-ea-10-jdk-slim-bullseye`, `21-ea-10-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-10-jdk-slim`, `21-ea-10-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-10-jdk-buster`, `21-ea-10-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/buster/Dockerfile) -- [`21-ea-10-jdk-slim-buster`, `21-ea-10-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/slim-buster/Dockerfile) -- [`21-ea-10-jdk-windowsservercore-ltsc2022`, `21-ea-10-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-10-jdk-windowsservercore-1809`, `21-ea-10-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-10-jdk-nanoserver-1809`, `21-ea-10-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-11-jdk-oraclelinux8`, `21-ea-11-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-11-jdk-oracle`, `21-ea-11-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-11-jdk-oraclelinux7`, `21-ea-11-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-11-jdk-bullseye`, `21-ea-11-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/bullseye/Dockerfile) +- [`21-ea-11-jdk-slim-bullseye`, `21-ea-11-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-11-jdk-slim`, `21-ea-11-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-11-jdk-buster`, `21-ea-11-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/buster/Dockerfile) +- [`21-ea-11-jdk-slim-buster`, `21-ea-11-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/slim-buster/Dockerfile) +- [`21-ea-11-jdk-windowsservercore-ltsc2022`, `21-ea-11-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-11-jdk-windowsservercore-1809`, `21-ea-11-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-11-jdk-nanoserver-1809`, `21-ea-11-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/nanoserver-1809/Dockerfile) - [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) - [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-10-jdk`, `21-ea-10`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-10-jdk-windowsservercore`, `21-ea-10-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-10-jdk-nanoserver`, `21-ea-10-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6d3a66d965d4a27610c1d27b36b30ee92498888/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-11-jdk`, `21-ea-11`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-11-jdk-windowsservercore`, `21-ea-11-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-11-jdk-nanoserver`, `21-ea-11-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/nanoserver-1809/Dockerfile) - `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 0daa72e98887..8657e6a172c0 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230218`, `latest`](https://github.com/vmware/photon-docker-image/blob/9a3cf5e9131824b9c386fc633d0f06bfceffef67/docker/Dockerfile) -- [`3.0`, `3.0-20230128`](https://github.com/vmware/photon-docker-image/blob/48b8de1e99610ea45573ac6e1e02dc5568f562fe/docker/Dockerfile) +- [`4.0`, `4.0-20230227`, `latest`](https://github.com/vmware/photon-docker-image/blob/431c92b740089b2de33a8a1994e8e732f2eaf4b9/docker/Dockerfile) +- [`3.0`, `3.0-20230227`](https://github.com/vmware/photon-docker-image/blob/86dbd4178136ac54686398cc266c3767ecf2ef41/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index ebc83e1f19d3..d0e1daa70b5f 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.23/Dockerfile) -- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.23/alpine/Dockerfile) -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/175bdcea998a6c3d1861d2974c643c76e851cee9/telegraf/1.25/alpine/Dockerfile) +- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.23/Dockerfile) +- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.23/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.25/alpine/Dockerfile) # Quick reference (cont.) From a8628f4195e79c947c5ba8e226f3125d665e732b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 28 Feb 2023 13:44:05 -0800 Subject: [PATCH 0108/2686] Adjust "stack" note to prefer compose --- .template-helpers/stack.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.template-helpers/stack.md b/.template-helpers/stack.md index f1b03ca87f5d..2ceda127fe71 100644 --- a/.template-helpers/stack.md +++ b/.template-helpers/stack.md @@ -1,6 +1,6 @@ -... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `%%REPO%%`: +Example `docker-compose.yml` for `%%REPO%%`: %%STACK-YML%% From 2a6b2fb9704c9535356e92f87ec47584f5e377c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Feb 2023 15:38:22 -0800 Subject: [PATCH 0109/2686] Run update.sh --- adminer/README.md | 4 ++-- bonita/README.md | 4 ++-- drupal/README.md | 4 ++-- geonetwork/README.md | 4 ++-- ghost/README.md | 4 ++-- joomla/README.md | 4 ++-- mariadb/README.md | 4 ++-- mediawiki/README.md | 4 ++-- mongo/README.md | 4 ++-- mysql/README.md | 4 ++-- percona/README.md | 4 ++-- phpmyadmin/README.md | 4 ++-- postfixadmin/README.md | 4 ++-- postgres/README.md | 4 ++-- redmine/README.md | 4 ++-- storm/README.md | 4 ++-- teamspeak/README.md | 4 ++-- wordpress/README.md | 4 ++-- yourls/README.md | 4 ++-- zookeeper/README.md | 4 ++-- 20 files changed, 40 insertions(+), 40 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 030a6cd24f0e..4fdce9711b15 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -78,9 +78,9 @@ Then point your web server to port 9000 of the container. Note: This exposes the FastCGI socket to the Internet. Make sure to add proper firewall rules or use a private Docker network instead to prevent a direct access. -### ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +### ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `adminer`: +Example `docker-compose.yml` for `adminer`: ```yaml # Use root/example as user/password credentials diff --git a/bonita/README.md b/bonita/README.md index fc3e2a7ae36e..3a2e7a80e1d4 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -86,9 +86,9 @@ docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:12.6 This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/12), which can be further adapted/customized to suit your needs. -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `bonita`: +Example `docker-compose.yml` for `bonita`: ```yaml version: '3' diff --git a/drupal/README.md b/drupal/README.md index 87f6297c77be..e655cd38348b 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -183,9 +183,9 @@ $ docker run --name some-drupal --network some-network -d \ drupal ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `drupal`: +Example `docker-compose.yml` for `drupal`: ```yaml # Drupal with PostgreSQL diff --git a/geonetwork/README.md b/geonetwork/README.md index 4102a3f09d78..e06a8a42e5c3 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -102,9 +102,9 @@ If you want the data directory to live beyond restarts, or even destruction of t $ docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/var/lib/geonetwork/data -e GEONETWORK_DB_NAME=/var/lib/geonetwork/db/gn -v /host/geonetwork-docker:/var/lib/geonetwork geonetwork ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `geonetwork`: +Example `docker-compose.yml` for `geonetwork`: ```yaml # GeoNetwork diff --git a/ghost/README.md b/ghost/README.md index 56d492d385ab..4a7a88c8583f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -139,9 +139,9 @@ To run Ghost for production you'll also need to be running with MySQL 8, https, The following example demonstrates some of the necessary configuration for running with MySQL. For more detail, see [Ghost's "Configuration options" documentation](https://ghost.org/docs/config/#configuration-options). -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `ghost`: +Example `docker-compose.yml` for `ghost`: ```yaml version: '3.1' diff --git a/joomla/README.md b/joomla/README.md index f8e400d8276f..5d69b0146d3c 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -91,9 +91,9 @@ $ docker run --name some-joomla -e JOOMLA_DB_HOST=10.1.2.3:3306 \ -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d joomla ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `joomla`: +Example `docker-compose.yml` for `joomla`: ```yaml version: '3.1' diff --git a/mariadb/README.md b/mariadb/README.md index 7f864547e9c7..09056f17d817 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -109,9 +109,9 @@ MariaDB [(none)]> SELECT VERSION(); More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base](https://mariadb.com/kb/en/mysql-command-line-client/) -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `mariadb`: +Example `docker-compose.yml` for `mariadb`: ```yaml # Use root/example as user/password credentials diff --git a/mediawiki/README.md b/mediawiki/README.md index d93a3bc9c155..d04c6ef39481 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -101,9 +101,9 @@ The paths `/var/www/html/images` and `/var/www/html/LocalSettings.php` are thing $ docker run --rm mediawiki tar -cC /var/www/html/sites . | tar -xC /path/on/host/sites ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `mediawiki`: +Example `docker-compose.yml` for `mediawiki`: ```yaml # MediaWiki with MariaDB diff --git a/mongo/README.md b/mongo/README.md index 8179c299b643..2e8c5a8583ba 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -141,9 +141,9 @@ $ docker run -it --network some-network --rm mongo mongosh --host some-mongo tes ... where `some-mongo` is the name of your original `mongo` container. -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `mongo`: +Example `docker-compose.yml` for `mongo`: ```yaml # Use root/example as user/password credentials diff --git a/mysql/README.md b/mysql/README.md index d92a8291fc82..7428b84aa917 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -86,9 +86,9 @@ $ docker run -it --rm mysql mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `mysql`: +Example `docker-compose.yml` for `mysql`: ```yaml # Use root/example as user/password credentials diff --git a/percona/README.md b/percona/README.md index 79a1803212c4..3b08034286bc 100644 --- a/percona/README.md +++ b/percona/README.md @@ -94,9 +94,9 @@ $ docker run -it --rm percona mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `percona`: +Example `docker-compose.yml` for `percona`: ```yaml # Use root/example as user/password credentials diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index ac5dcdf892f9..c3db6c8238d7 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -115,9 +115,9 @@ docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 phpmyadmin This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. -... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `phpmyadmin`: +Example `docker-compose.yml` for `phpmyadmin`: ```yaml version: '3.1' diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 31f14465af21..453d4e16ce18 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -103,9 +103,9 @@ $ docker run -v /local/path/to/config.local.php:/var/www/html/config.local.php \ postfixadmin ``` -... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `postfixadmin`: +Example `docker-compose.yml` for `postfixadmin`: ```yaml version: '3' diff --git a/postgres/README.md b/postgres/README.md index cb3a8685ddf6..8818a2b7b13a 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -92,9 +92,9 @@ postgres=# SELECT 1; (1 row) ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `postgres`: +Example `docker-compose.yml` for `postgres`: ```yaml # Use postgres/example user/password credentials diff --git a/redmine/README.md b/redmine/README.md index 77e829300e80..cf80caea8366 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -93,9 +93,9 @@ Running Redmine with a database server is the recommended way. $ docker run -d --name some-redmine --network some-network -e REDMINE_DB_POSTGRES=some-postgres -e REDMINE_DB_USERNAME=redmine -e REDMINE_DB_PASSWORD=secret redmine ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `redmine`: +Example `docker-compose.yml` for `redmine`: ```yaml version: '3.1' diff --git a/storm/README.md b/storm/README.md index 55158282f409..fa01023a8915 100644 --- a/storm/README.md +++ b/storm/README.md @@ -96,9 +96,9 @@ $ docker run -it -v $(pwd)/topology.jar:/topology.jar storm storm jar /topology. $ docker run -d -p 8080:8080 --restart always --name ui --link some-nimbus:nimbus storm storm ui ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `storm`: +Example `docker-compose.yml` for `storm`: ```yaml version: '3.1' diff --git a/teamspeak/README.md b/teamspeak/README.md index 8331accb8073..039ddb70e528 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -83,9 +83,9 @@ The TeamSpeak server log is available through Docker's container log: $ docker logs some-teamspeak ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `teamspeak`: +Example `docker-compose.yml` for `teamspeak`: ```yaml version: '3.1' diff --git a/wordpress/README.md b/wordpress/README.md index 3fc6ba6ccb9e..0ddaf98fd806 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -114,9 +114,9 @@ $ docker run --name some-wordpress -e WORDPRESS_DB_PASSWORD_FILE=/run/secrets/my Currently, this is supported for `WORDPRESS_DB_HOST`, `WORDPRESS_DB_USER`, `WORDPRESS_DB_PASSWORD`, `WORDPRESS_DB_NAME`, `WORDPRESS_AUTH_KEY`, `WORDPRESS_SECURE_AUTH_KEY`, `WORDPRESS_LOGGED_IN_KEY`, `WORDPRESS_NONCE_KEY`, `WORDPRESS_AUTH_SALT`, `WORDPRESS_SECURE_AUTH_SALT`, `WORDPRESS_LOGGED_IN_SALT`, `WORDPRESS_NONCE_SALT`, `WORDPRESS_TABLE_PREFIX`, and `WORDPRESS_DEBUG`. -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `wordpress`: +Example `docker-compose.yml` for `wordpress`: ```yaml version: '3.1' diff --git a/yourls/README.md b/yourls/README.md index bb82dc0d2e08..6c8889050788 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -141,9 +141,9 @@ $ docker run --name some-yourls -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root . Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`. -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `yourls`: +Example `docker-compose.yml` for `yourls`: ```yaml version: '3.1' diff --git a/zookeeper/README.md b/zookeeper/README.md index bae6b74d2e17..58dcaf54ac53 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -77,9 +77,9 @@ $ docker run --name some-app --link some-zookeeper:zookeeper -d application-that $ docker run -it --rm --link some-zookeeper:zookeeper zookeeper zkCli.sh -server zookeeper ``` -## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose) +## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) -Example `stack.yml` for `zookeeper`: +Example `docker-compose.yml` for `zookeeper`: ```yaml version: '3.1' From efcb5382a476b20abccbb2d610bf7e38ee412b5d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Feb 2023 16:54:00 -0800 Subject: [PATCH 0110/2686] Run update.sh --- bash/README.md | 2 +- ibm-semeru-runtimes/README.md | 76 +++++++++++++++++------------------ redis/README.md | 12 +++--- 3 files changed, 45 insertions(+), 45 deletions(-) diff --git a/bash/README.md b/bash/README.md index 8a9a2429ef88..6a2c490af3ca 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230220`, `devel`, `devel-20230220-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/35c27cdba72ad2dbd12686074a2db84f7464b49a/devel/Dockerfile) +- [`devel-20230227`, `devel`, `devel-20230227-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ccce08ebe3c7fdddf9cca5bc3963a62222d570f9/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index d506b701a688..e16faac12e31 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u352-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u352-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u352-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u352-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u352-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u352-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.17_8-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.5_8-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jre/centos/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-focal`, `open-18-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-jammy`, `open-18-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-centos7`, `open-18-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jdk/centos/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-focal`, `open-18-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-jammy`, `open-18-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-centos7`, `open-18-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jre/centos/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/centos/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jdk-focal`, `open-18-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jdk-jammy`, `open-18-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jdk-centos7`, `open-18-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/centos/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jre-focal`, `open-18-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jre-jammy`, `open-18-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-18.0.2_9-jre-centos7`, `open-18-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u352-b08-jdk`, `open-8-jdk`: - - [`open-8u352-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u352-b08-jre`, `open-8-jre`: - - [`open-8u352-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.17_8-jdk`, `open-11-jdk`: - - [`open-11.0.17_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.17_8-jre`, `open-11-jre`: - - [`open-11.0.17_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.5_8-jdk`, `open-17-jdk`: - - [`open-17.0.5_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.5_8-jre`, `open-17-jre`: - - [`open-17.0.5_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u362-b09-jdk`, `open-8-jdk`: + - [`open-8u362-b09-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u362-b09-jre`, `open-8-jre`: + - [`open-8u362-b09-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.18_10-jdk`, `open-11-jdk`: + - [`open-11.0.18_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.18_10-jre`, `open-11-jre`: + - [`open-11.0.18_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.6_10-jdk`, `open-17-jdk`: + - [`open-17.0.6_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.6_10-jre`, `open-17-jre`: + - [`open-17.0.6_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-18.0.2_9-jdk`, `open-18-jdk`: - - [`open-18.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-18.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-18.0.2_9-jre`, `open-18-jre`: - - [`open-18.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/5be6c185f78d72f254a9874c87c72ea4560c9160/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-18.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 00e7fa4cb38a..b910bad55cbd 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.8`, `7.0`, `7`, `latest`, `7.0.8-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/7.0/Dockerfile) -- [`7.0.8-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.8-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/787f47c4bda6943e29d85fa45e080bd55b2c08fa/7.0/alpine/Dockerfile) -- [`6.2.10`, `6.2`, `6`, `6.2.10-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/6.2/Dockerfile) -- [`6.2.10-alpine`, `6.2-alpine`, `6-alpine`, `6.2.10-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/8b463859e24cfeea54e7a323e530f254e74075f6/6.2/alpine/Dockerfile) -- [`6.0.17`, `6.0`, `6.0.17-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/d5c6f471fe4c0db5c614b568f11d4102a0cc685b/6.0/Dockerfile) -- [`6.0.17-alpine`, `6.0-alpine`, `6.0.17-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e608c4a20201d43672d6f045d4fc4c523e0473ad/6.0/alpine/Dockerfile) +- [`7.0.9`, `7.0`, `7`, `latest`, `7.0.9-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/d77143afb3dc8d0b05225ab23b001cf6c41e1b62/7.0/Dockerfile) +- [`7.0.9-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.9-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/d77143afb3dc8d0b05225ab23b001cf6c41e1b62/7.0/alpine/Dockerfile) +- [`6.2.11`, `6.2`, `6`, `6.2.11-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/Dockerfile) +- [`6.2.11-alpine`, `6.2-alpine`, `6-alpine`, `6.2.11-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/alpine/Dockerfile) +- [`6.0.18`, `6.0`, `6.0.18-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/aab0267e4fdab0150c34c9241f87f6f7c6f03328/6.0/Dockerfile) +- [`6.0.18-alpine`, `6.0-alpine`, `6.0.18-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/aab0267e4fdab0150c34c9241f87f6f7c6f03328/6.0/alpine/Dockerfile) # Quick reference (cont.) From 5fff4fa710bc7dee415ee6091d1b3aff92f0f3f5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Feb 2023 17:08:49 -0800 Subject: [PATCH 0111/2686] Run update.sh --- amazonlinux/README.md | 3 +-- debian/README.md | 50 +++++++++++++++++++++---------------------- kong/README.md | 4 ++-- 3 files changed, 28 insertions(+), 29 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index f352f0c958a7..5176e608b28d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -28,8 +28,7 @@ WARNING: - [`2.0.20230207.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/8b1a2649bc2e8cf24109954310ebe26b4566e4bd/Dockerfile) - [`2018.03.0.20230207.0`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/884421612a4d7e61f4bc19401e8b9e1ea1604d09/Dockerfile) - [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) -- [`2022.0.20230118.3`, `2022`, `devel`](https://github.com/amazonlinux/container-images/blob/8f394a73f3747b9f1c80e98b65d1f845b2c36e36/Dockerfile) -- [`2022.0.20230118.3-with-sources`, `2022-with-sources`, `devel-with-sources`](https://github.com/amazonlinux/container-images/blob/87e3b7a4ed4bbdeba86d64cd68fbefe3f5d7acc2/Dockerfile) +- [`2023`, `devel`, `2023.0.20230222.1`](https://github.com/amazonlinux/container-images/blob/1602eb68be60af0dded1f358e6b7fddae82d021c/Dockerfile) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index 70bb78d25b05..5a02d94a1e2b 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230208`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230208-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230208`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230208-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/rc-buggy/Dockerfile) -- [`sid`, `sid-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/sid/Dockerfile) -- [`sid-slim`, `sid-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/sid/slim/Dockerfile) -- [`stable`, `stable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/stable/slim/Dockerfile) -- [`testing`, `testing-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230208`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230208-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/48072f1bd234114bb51470bba31a4e4a0040a2a4/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230227`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230227-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230227`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230227-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/rc-buggy/Dockerfile) +- [`sid`, `sid-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/sid/Dockerfile) +- [`sid-slim`, `sid-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/sid/slim/Dockerfile) +- [`stable`, `stable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/slim/Dockerfile) +- [`testing`, `testing-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/unstable/slim/Dockerfile) # Quick reference (cont.) @@ -55,7 +55,7 @@ WARNING: [https://github.com/debuerreotype/docker-debian-artifacts/issues](https://github.com/debuerreotype/docker-debian-artifacts/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/debian/), [`arm32v5`](https://hub.docker.com/r/arm32v5/debian/), [`arm32v7`](https://hub.docker.com/r/arm32v7/debian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/debian/), [`i386`](https://hub.docker.com/r/i386/debian/), [`mips64le`](https://hub.docker.com/r/mips64le/debian/), [`ppc64le`](https://hub.docker.com/r/ppc64le/debian/), [`s390x`](https://hub.docker.com/r/s390x/debian/) + [`amd64`](https://hub.docker.com/r/amd64/debian/), [`arm32v5`](https://hub.docker.com/r/arm32v5/debian/), [`arm32v7`](https://hub.docker.com/r/arm32v7/debian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/debian/), [`i386`](https://hub.docker.com/r/i386/debian/), [`mips64le`](https://hub.docker.com/r/mips64le/debian/), [`ppc64le`](https://hub.docker.com/r/ppc64le/debian/), [`riscv64`](https://hub.docker.com/r/riscv64/debian/), [`s390x`](https://hub.docker.com/r/s390x/debian/) - **Published image artifact details**: [repo-info repo's `repos/debian/` directory](https://github.com/docker-library/repo-info/blob/master/repos/debian) ([history](https://github.com/docker-library/repo-info/commits/master/repos/debian)) diff --git a/kong/README.md b/kong/README.md index ae6f2ededcf2..f4b0964d985a 100644 --- a/kong/README.md +++ b/kong/README.md @@ -28,8 +28,8 @@ WARNING: - [`3.1.1-ubuntu`, `3.1-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) - [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) -- [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/51604ac58ec41b3a57de95933b23dc3314552073/alpine/Dockerfile) -- [`2.8.3-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/51604ac58ec41b3a57de95933b23dc3314552073/ubuntu/Dockerfile) +- [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/alpine/Dockerfile) +- [`2.8.3-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/ubuntu/Dockerfile) # Quick reference (cont.) From 5cb84252cd95e34c1c8b38e2d2b9283eb29ba138 Mon Sep 17 00:00:00 2001 From: Sumit Tomer Date: Tue, 28 Feb 2023 17:50:16 -0800 Subject: [PATCH 0112/2686] Update AL 2022 references to AL 2023 --- amazonlinux/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/content.md b/amazonlinux/content.md index 08d08e38edba..c2e42ea7648d 100644 --- a/amazonlinux/content.md +++ b/amazonlinux/content.md @@ -6,7 +6,7 @@ The Amazon Linux container image contains a minimal set of packages. To install AWS provides two versions of Amazon Linux: [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) and [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/). -**Please note, that Amazon Linux 2022 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2022 [documentation](https://docs.aws.amazon.com/linux/al2022/ug/what-is-amazon-linux.html) to learn more.** +**Please note, that Amazon Linux 2023 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2023 [documentation](https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html) to learn more.** For information on security updates for Amazon Linux, please refer to [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) and [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/). Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. From 0cd3209b98edd86f09f3097e8c4aba4b5f881473 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Mar 2023 10:08:35 -0800 Subject: [PATCH 0113/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 5176e608b28d..68013646bbdc 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -57,7 +57,7 @@ The Amazon Linux container image contains a minimal set of packages. To install AWS provides two versions of Amazon Linux: [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) and [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/). -**Please note, that Amazon Linux 2022 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2022 [documentation](https://docs.aws.amazon.com/linux/al2022/ug/what-is-amazon-linux.html) to learn more.** +**Please note, that Amazon Linux 2023 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2023 [documentation](https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html) to learn more.** For information on security updates for Amazon Linux, please refer to [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) and [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/). Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. From 54637ef4ec7d5e0fb4783b6d83a510482e386428 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Mar 2023 16:08:34 -0800 Subject: [PATCH 0114/2686] Run update.sh --- dart/README.md | 4 ++-- emqx/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dart/README.md b/dart/README.md index bd15b0d4dfb1..6892ba872e6b 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.2-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.2`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/9830bc084b3568fce5af4158f1b099e988c4f00a/stable/bullseye/Dockerfile) -- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/9830bc084b3568fce5af4158f1b099e988c4f00a/beta/bullseye/Dockerfile) +- [`2.19.3-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.3`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c402039b78bdd101012632ce5d6e62e710bca663/stable/bullseye/Dockerfile) +- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c402039b78bdd101012632ce5d6e62e710bca663/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 87bccd0bef83..96a64d3f8f11 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/4.3/Dockerfile) -- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/4.4/Dockerfile) -- [`5.0.17`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e641751b483a9d59b8878540de86aa3c72c9704d/5.0/Dockerfile) +- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/4.3/Dockerfile) +- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/4.4/Dockerfile) +- [`5.0.19`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/5.0/Dockerfile) # Quick reference (cont.) From b0c4c7ec65894b52421b36fd867f47da396c5722 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Mar 2023 17:08:35 -0800 Subject: [PATCH 0115/2686] Run update.sh --- oraclelinux/README.md | 12 ++++++------ ubuntu/README.md | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c7f222dd7171..d550bbb257b4 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b42a4ac92cf22a1b724b3f44fcfd5af9fe19e7f5/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 945dc87c1a91..74257544e512 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230126`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230126&id=f127810992c0981574cc137b9c83937ca1a304dc) -- [`20.04`, `focal-20230126`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230126&id=e21c3f62fbbe0afd5ac89aa149e36f08a7debeb8) -- [`22.04`, `jammy-20230126`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230126&id=d4e91f86e34e0de683c46f08178d93fcf83a515d) -- [`22.10`, `kinetic-20230126`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230126&id=5ad3fc123e02cbb835b34898b42729fcbbdb6097) -- [`23.04`, `lunar-20230128`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230128&id=edd50e68967994c3b3f2fd08b5013190f1776a3f) +- [`18.04`, `bionic-20230301`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230301&id=f9891666cf6072e3e7b9b53980fc577b5633b406) +- [`20.04`, `focal-20230301`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230301&id=1626760ac190ee2111918eb804a54ad6653ecde9) +- [`22.04`, `jammy-20230301`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230301&id=f40017a25ea7050a7174f3417aa65f85213084cd) +- [`22.10`, `kinetic-20230217`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230217&id=ab853e59a1c7ffa77b2b9e3f827ccfb15793864c) +- [`23.04`, `lunar-20230301`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230301&id=91cb981dafa4d83ca35a69305a4884b6736ccf68) # Quick reference (cont.) From 337bd79b4e91c81ed85f0a475cf4c4ecbf59fc4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Mar 2023 10:08:36 -0800 Subject: [PATCH 0116/2686] Run update.sh --- sl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sl/README.md b/sl/README.md index ffefd54afa2b..00b760b6cf75 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/67ed8dc3079a48c8eb14b5a9c27e654a058ca850/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ad5e83326e5923bb4d19b5a2c662c485b3a8a317/sl7/Dockerfile) # Quick reference (cont.) From e9665edefb29ecab1cef85cda4c7e03855e1d2d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Mar 2023 11:08:34 -0800 Subject: [PATCH 0117/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- rakudo-star/README.md | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/nats/README.md b/nats/README.md index b46ed169ef80..a47c04055c2c 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.14-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.14-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/alpine3.17/Dockerfile) -- [`2.9.14-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.14-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/scratch/Dockerfile) -- [`2.9.14-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/windowsservercore-1809/Dockerfile) -- [`2.9.14-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) +- [`2.9.15-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.15-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/alpine3.17/Dockerfile) +- [`2.9.15-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.15-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/scratch/Dockerfile) +- [`2.9.15-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/windowsservercore-1809/Dockerfile) +- [`2.9.15-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.14`, `2.9`, `2`, `latest`: - - [`2.9.14-scratch`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/scratch/Dockerfile) - - [`2.9.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) -- `2.9.14-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.14-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/windowsservercore-1809/Dockerfile) -- `2.9.14-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/bf8e421446eb70089404210d27d696a5e27d2f63/2.9.14/nanoserver-1809/Dockerfile) +- `2.9.15`, `2.9`, `2`, `latest`: + - [`2.9.15-scratch`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/scratch/Dockerfile) + - [`2.9.15-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) +- `2.9.15-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.15-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/windowsservercore-1809/Dockerfile) +- `2.9.15-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.15-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 093be35449dd..1957c11f4eac 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2022.12`](https://github.com/Raku/docker/blob/65c49addd32f616805979c6d3572f846f303a505/2022.12/bullseye/Dockerfile) -- [`alpine`, `2022.12-alpine`](https://github.com/Raku/docker/blob/65c49addd32f616805979c6d3572f846f303a505/2022.12/alpine3.17/Dockerfile) +- [`latest`, `2023.02`](https://github.com/Raku/docker/blob/d6873e88a8979536ba7d485aef309b7126965e0d/2023.02/bullseye/Dockerfile) +- [`alpine`, `2023.02-alpine`](https://github.com/Raku/docker/blob/d6873e88a8979536ba7d485aef309b7126965e0d/2023.02/alpine3.17/Dockerfile) # Quick reference (cont.) From febfee79525a33ad134b3dcf68107ba2aec2c37d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Mar 2023 14:08:35 -0800 Subject: [PATCH 0118/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- buildpack-deps/README.md | 2 +- drupal/README.md | 46 ++++++++++++++++++++-------------------- ghost/README.md | 4 ++-- haskell/README.md | 4 ++-- rabbitmq/README.md | 16 +++++++------- wordpress/README.md | 36 +++++++++++++++---------------- 7 files changed, 56 insertions(+), 56 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 68013646bbdc..8f5929b23a21 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.20230207.0`, `2`, `latest`](https://github.com/amazonlinux/container-images/blob/0a73a9be29db33fd971c3206d1f893e8df26d9b7/Dockerfile) +- [`2`, `latest`, `2.0.20230221.0`](https://github.com/amazonlinux/container-images/blob/60c92e2e9b66ec80b777a50d475166089fc52616/Dockerfile) - [`2.0.20230207.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/8b1a2649bc2e8cf24109954310ebe26b4566e4bd/Dockerfile) -- [`2018.03.0.20230207.0`, `2018.03`, `1`](https://github.com/amazonlinux/container-images/blob/884421612a4d7e61f4bc19401e8b9e1ea1604d09/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230221.0`](https://github.com/amazonlinux/container-images/blob/29d4697cda5572d121c93f86f130f2e1af6043c2/Dockerfile) - [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) - [`2023`, `devel`, `2023.0.20230222.1`](https://github.com/amazonlinux/container-images/blob/1602eb68be60af0dded1f358e6b7fddae82d021c/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 1485408afa60..adc427194c31 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -58,7 +58,7 @@ WARNING: [https://github.com/docker-library/buildpack-deps/issues](https://github.com/docker-library/buildpack-deps/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`mips64le`](https://hub.docker.com/r/mips64le/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/) + [`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`mips64le`](https://hub.docker.com/r/mips64le/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`riscv64`](https://hub.docker.com/r/riscv64/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/) - **Published image artifact details**: [repo-info repo's `repos/buildpack-deps/` directory](https://github.com/docker-library/repo-info/blob/master/repos/buildpack-deps) ([history](https://github.com/docker-library/repo-info/commits/master/repos/buildpack-deps)) diff --git a/drupal/README.md b/drupal/README.md index e655cd38348b..1aa740813eae 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.3-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.3-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.3-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.3-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.3-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.3`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.3-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.3-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.3-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.3-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.3-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.3-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.3-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.3-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.3-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.3-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.3-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.3-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.3-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.3-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.3-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.3-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.3-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.3-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.3-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.3-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.3-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.3-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.3-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.3-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/6d83cf89d49b5da2608592197dcf5dcc1f233978/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.3-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.3-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.3-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.3-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.3-apache`, `9.5-apache`, `9-apache`, `9.5.3`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.3-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.3-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.3-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.3-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.3-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.3-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.3-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.3-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.3-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.3-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.3-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.3-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.3-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.3-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.3-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.3-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.3-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.3-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.3-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.3-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.3-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.3-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3976d8c4a618c6261f319072f660c604a502f9b2/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.4-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.4-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.4-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.4-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.4-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.4`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.4-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.4-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.4-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.4-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.4-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.4-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.4-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.4-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.4-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.4-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.4-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.4-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.4-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.4-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.4-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.4-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.4-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.4-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.4-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.4-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.4-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.4-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.4-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.4-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.4-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.4-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.4-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.4-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.4-apache`, `9.5-apache`, `9-apache`, `9.5.4`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.4-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.4-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.4-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.4-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.4-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.4-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.4-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.4-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.4-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.4-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.4-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.4-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.4-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.4-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.4-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.4-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.4-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.4-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.4-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.4-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.4-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.4-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-alpine3.16/Dockerfile) - [`9.4.11-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.11-php8.1-apache`, `9.4-php8.1-apache`, `9.4.11-php8.1`, `9.4-php8.1`, `9.4.11-apache-bullseye`, `9.4-apache-bullseye`, `9.4.11-apache`, `9.4-apache`, `9.4.11`, `9.4`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-bullseye/Dockerfile) - [`9.4.11-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.11-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.11-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.11-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-bullseye/Dockerfile) - [`9.4.11-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.11-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-buster/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 4a7a88c8583f..397741184473 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`](https://github.com/docker-library/ghost/blob/74b45e1eb046bebb53045579b4fee02960ebf9b7/5/debian/Dockerfile) -- [`5.36.0-alpine`, `5.36-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/74b45e1eb046bebb53045579b4fee02960ebf9b7/5/alpine/Dockerfile) +- [`5.36.1`, `5.36`, `5`, `latest`](https://github.com/docker-library/ghost/blob/18a1280458a85a3f0ef26e013b8a997f041e898d/5/debian/Dockerfile) +- [`5.36.1-alpine`, `5.36-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/18a1280458a85a3f0ef26e013b8a997f041e898d/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/haskell/README.md b/haskell/README.md index 427a0e320fff..e963d291406d 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.4.4-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.4`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/buster/Dockerfile) - [`9.4.4-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.4-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/slim-buster/Dockerfile) -- [`9.2.6-buster`, `9.2-buster`, `9.2.6`, `9.2`](https://github.com/haskell/docker-haskell/blob/b2644d1604cc9a3e868b432f4901e86541a0841d/9.2/buster/Dockerfile) -- [`9.2.6-slim-buster`, `9.2-slim-buster`, `9.2.6-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/b2644d1604cc9a3e868b432f4901e86541a0841d/9.2/slim-buster/Dockerfile) +- [`9.2.7-buster`, `9.2-buster`, `9.2.7`, `9.2`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/buster/Dockerfile) +- [`9.2.7-slim-buster`, `9.2-slim-buster`, `9.2.7-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/buster/Dockerfile) - [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/slim-buster/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 3a75b8d80c26..c27770aec2df 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11.9`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/1f1974a3ed053cf20116746a6c3cd64fc1896d23/3.11/ubuntu/Dockerfile) -- [`3.11.9-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.9-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1f1974a3ed053cf20116746a6c3cd64fc1896d23/3.11/alpine/Dockerfile) -- [`3.11.9-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.18`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0fece9e37e716ee72ed8873238c7c9f3f85e3737/3.10/ubuntu/Dockerfile) -- [`3.10.18-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0fece9e37e716ee72ed8873238c7c9f3f85e3737/3.10/alpine/Dockerfile) -- [`3.10.18-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) +- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/ubuntu/Dockerfile) +- [`3.11.10-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) +- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/alpine/Dockerfile) +- [`3.11.10-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) +- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/d780bf9904b86f0d8e32a712421050f286c0f804/3.10/ubuntu/Dockerfile) +- [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) +- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/d780bf9904b86f0d8e32a712421050f286c0f804/3.10/alpine/Dockerfile) +- [`3.10.19-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) - [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/ubuntu/Dockerfile) - [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) - [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 0ddaf98fd806..7a9ce70ee4b6 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/apache/Dockerfile) -- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/fpm/Dockerfile) -- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/apache/Dockerfile) -- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/fpm/Dockerfile) -- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/apache/Dockerfile) -- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/fpm/Dockerfile) -- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/51a939a2a5e387ce04697ce9967a07bbe3892601/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/apache/Dockerfile) +- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/fpm/Dockerfile) +- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/apache/Dockerfile) +- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/fpm/Dockerfile) +- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/apache/Dockerfile) +- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/fpm/Dockerfile) +- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-beta3-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta3`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta3-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta3-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-beta3-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta3-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-beta3-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta3-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-beta3-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta3-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-beta3-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-beta3-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-beta3-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta3-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-beta3-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-beta3-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d73ce668a3d5d494c76b580f0d800cfa183dd61f/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-beta4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-beta4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-beta4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-beta4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-beta4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-beta4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-beta4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-beta4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-beta4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From bc70088e660e7c7681e6ce8d8b5248b24fbc95eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Mar 2023 11:09:05 -0800 Subject: [PATCH 0119/2686] Run update.sh --- clojure/README.md | 120 +++++++++++++++++++++++----------------------- crate/README.md | 2 +- 2 files changed, 61 insertions(+), 61 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 28e9655ecf2f..531f5103b2d6 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,66 +24,66 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1224-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1224-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1224-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1224`, `temurin-8-tools-deps-1.11.1.1224-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1224-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1224-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1224-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1224`, `temurin-11-tools-deps-1.11.1.1224-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1224-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1224-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1224-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1224-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1224-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1224`, `temurin-17-tools-deps-1.11.1.1224-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1224`, `tools-deps-1.11.1.1224-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) -- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) -- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) -- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) -- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1224-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1224-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-19/tools-deps/Dockerfile) -- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1224-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/debian-bullseye-slim-19/tools-deps/Dockerfile) -- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1224-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) -- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1224`, `temurin-19-tools-deps-1.11.1.1224-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/639ce6ff1c2862136e4cf666f1735522f4c03a4c/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1237-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1237-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1237-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1237`, `temurin-8-tools-deps-1.11.1.1237-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1237-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1237-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1237-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1237`, `temurin-11-tools-deps-1.11.1.1237-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1237-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1237-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1237-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1237-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1237-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1237`, `temurin-17-tools-deps-1.11.1.1237-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1237`, `tools-deps-1.11.1.1237-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) +- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) +- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) +- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) +- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1237-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1237-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/tools-deps/Dockerfile) +- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/tools-deps/Dockerfile) +- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1237-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) +- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1237`, `temurin-19-tools-deps-1.11.1.1237-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index a16aa53861b7..b23a93bdad13 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.2`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/5eb572e3933b70ee2961068f72af774a73bf421c/Dockerfile) +- [`5.2.3`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/c495058a18937a134d215025642912b978eb57ad/Dockerfile) - [`5.1.4`, `5.1`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) From d19f5513c546ad71b5756b562c39f130f70e30d7 Mon Sep 17 00:00:00 2001 From: Michele Degges Date: Fri, 3 Mar 2023 11:59:37 -0800 Subject: [PATCH 0120/2686] [hashicorp/consul] Add deprecation notice (#2283) Adds an official image deprecation notice/warning, and points end users to the verified publisher images at hashicorp/consul. --- consul/deprecated.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 consul/deprecated.md diff --git a/consul/deprecated.md b/consul/deprecated.md new file mode 100644 index 000000000000..5791985d062e --- /dev/null +++ b/consul/deprecated.md @@ -0,0 +1 @@ +Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/consul](https://hub.docker.com/r/hashicorp/consul) instead of [consul](https://hub.docker.com/_/consul). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/consul. From 9eddcf1998959094ac602e6192e502248efddd08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Mar 2023 12:28:37 -0800 Subject: [PATCH 0121/2686] Run update.sh --- consul/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/consul/README.md b/consul/README.md index 5897cef153b9..d92d7a72a403 100644 --- a/consul/README.md +++ b/consul/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/consul](https://hub.docker.com/r/hashicorp/consul) instead of [consul](https://hub.docker.com/_/consul). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/consul. + # Quick reference - **Maintained by**: From 40be3b91c3362abd5254c099c9072f8c56d4db82 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Mar 2023 15:18:05 -0800 Subject: [PATCH 0122/2686] Run update.sh --- gradle/README.md | 38 +++++++++++++++++++++++++++----------- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 45 insertions(+), 29 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index aa26b82cb7e4..a72800187216 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,17 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.1-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.1-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk8/Dockerfile) -- [`8.0.1-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk8-focal/Dockerfile) -- [`8.0.1-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.1-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11/Dockerfile) -- [`8.0.1-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11-focal/Dockerfile) -- [`8.0.1-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk11-alpine/Dockerfile) -- [`8.0.1-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.1-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.1`, `8.0`, `8`, `latest`, `8.0.1-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.1-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.1-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17/Dockerfile) -- [`8.0.1-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.1-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.1-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17-focal/Dockerfile) -- [`8.0.1-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.1-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.1-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk17-alpine/Dockerfile) -- [`8.0.1-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.1-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19/Dockerfile) -- [`8.0.1-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19-focal/Dockerfile) -- [`8.0.1-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/09b504e941cd6e9e2fda2e58575e6817e10d2008/jdk19-alpine/Dockerfile) +- [`8.0.2-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.2-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk8/Dockerfile) +- [`8.0.2-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk8-focal/Dockerfile) +- [`8.0.2-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.2-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11/Dockerfile) +- [`8.0.2-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11-focal/Dockerfile) +- [`8.0.2-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11-alpine/Dockerfile) +- [`8.0.2-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.2-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.2`, `8.0`, `8`, `latest`, `8.0.2-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.2-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.2-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17/Dockerfile) +- [`8.0.2-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.2-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.2-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17-focal/Dockerfile) +- [`8.0.2-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.2-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.2-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17-alpine/Dockerfile) +- [`8.0.2-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.2-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19/Dockerfile) +- [`8.0.2-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19-focal/Dockerfile) +- [`8.0.2-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19-alpine/Dockerfile) +- [`7.6.1-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.1-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8/Dockerfile) +- [`7.6.1-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8-focal/Dockerfile) +- [`7.6.1-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.1-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11/Dockerfile) +- [`7.6.1-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11-focal/Dockerfile) +- [`7.6.1-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11-alpine/Dockerfile) +- [`7.6.1-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.1-jdk`, `7.6-jdk`, `7-jdk`, `7.6.1`, `7.6`, `7`, `7.6.1-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.1-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.1-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17/Dockerfile) +- [`7.6.1-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.1-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.1-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17-focal/Dockerfile) +- [`7.6.1-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.1-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.1-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17-alpine/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8-focal/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11-focal/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17/Dockerfile) +- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17-focal/Dockerfile) +- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 64f26044f534..c4120f9ea83f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-11-jdk-oraclelinux8`, `21-ea-11-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-11-jdk-oracle`, `21-ea-11-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-11-jdk-oraclelinux7`, `21-ea-11-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-11-jdk-bullseye`, `21-ea-11-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/bullseye/Dockerfile) -- [`21-ea-11-jdk-slim-bullseye`, `21-ea-11-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-11-jdk-slim`, `21-ea-11-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-11-jdk-buster`, `21-ea-11-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/buster/Dockerfile) -- [`21-ea-11-jdk-slim-buster`, `21-ea-11-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/slim-buster/Dockerfile) -- [`21-ea-11-jdk-windowsservercore-ltsc2022`, `21-ea-11-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-11-jdk-windowsservercore-1809`, `21-ea-11-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-11-jdk-nanoserver-1809`, `21-ea-11-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-12-jdk-oraclelinux8`, `21-ea-12-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-12-jdk-oracle`, `21-ea-12-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-12-jdk-oraclelinux7`, `21-ea-12-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-12-jdk-bullseye`, `21-ea-12-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/bullseye/Dockerfile) +- [`21-ea-12-jdk-slim-bullseye`, `21-ea-12-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-12-jdk-slim`, `21-ea-12-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-12-jdk-buster`, `21-ea-12-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/buster/Dockerfile) +- [`21-ea-12-jdk-slim-buster`, `21-ea-12-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/slim-buster/Dockerfile) +- [`21-ea-12-jdk-windowsservercore-ltsc2022`, `21-ea-12-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-12-jdk-windowsservercore-1809`, `21-ea-12-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-12-jdk-nanoserver-1809`, `21-ea-12-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/nanoserver-1809/Dockerfile) - [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) - [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-11-jdk`, `21-ea-11`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-11-jdk-windowsservercore`, `21-ea-11-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-11-jdk-nanoserver`, `21-ea-11-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e6575a91a76d1328780660f9de9ef7cbda7fb783/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-12-jdk`, `21-ea-12`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-12-jdk-windowsservercore`, `21-ea-12-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-12-jdk-nanoserver`, `21-ea-12-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/nanoserver-1809/Dockerfile) - `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From e93496cc5983da36a1d304237bfc5fd76185a5c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Mar 2023 16:08:44 -0800 Subject: [PATCH 0123/2686] Run update.sh --- ghost/README.md | 4 ++-- mongo/README.md | 16 ++++++++-------- php/README.md | 50 +++++++++++++++++++++++++++++++++++++----------- tomcat/README.md | 30 ++++++++++++++--------------- 4 files changed, 64 insertions(+), 36 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 397741184473..9bb2c53d2284 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.1`, `5.36`, `5`, `latest`](https://github.com/docker-library/ghost/blob/18a1280458a85a3f0ef26e013b8a997f041e898d/5/debian/Dockerfile) -- [`5.36.1-alpine`, `5.36-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/18a1280458a85a3f0ef26e013b8a997f041e898d/5/alpine/Dockerfile) +- [`5.37.0`, `5.37`, `5`, `latest`](https://github.com/docker-library/ghost/blob/533294af2135d3b4e64e3620e66a4f4e314e0a44/5/debian/Dockerfile) +- [`5.37.0-alpine`, `5.37-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/533294af2135d3b4e64e3620e66a4f4e314e0a44/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 2e8c5a8583ba..b22419c6ae4d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`6.0.4-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/840d7ed246dc72ae9e84ce92b9f5a6f9dfa4d6e1/6.0/Dockerfile) +- [`6.0.4-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.15-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/Dockerfile) +- [`5.0.15-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) - [`5.0.15-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.15-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.15-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.15-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/Dockerfile) +- [`4.4.19-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) - [`4.4.19-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.19-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.19-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.19-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/Dockerfile) +- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) - [`4.2.24-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) @@ -52,7 +52,7 @@ WARNING: ## Shared Tags - `6.0.4`, `6.0`, `6`, `latest`: - - [`6.0.4-jammy`](https://github.com/docker-library/mongo/blob/840d7ed246dc72ae9e84ce92b9f5a6f9dfa4d6e1/6.0/Dockerfile) + - [`6.0.4-jammy`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/6.0/Dockerfile) - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.4-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: @@ -62,7 +62,7 @@ WARNING: - [`6.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.15`, `5.0`, `5`: - - [`5.0.15-focal`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/Dockerfile) + - [`5.0.15-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.15-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -72,7 +72,7 @@ WARNING: - [`5.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.19`, `4.4`, `4`: - - [`4.4.19-focal`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/Dockerfile) + - [`4.4.19-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.19-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: @@ -82,7 +82,7 @@ WARNING: - [`4.4.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) - `4.2.24`, `4.2`: - - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/Dockerfile) + - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) - `4.2.24-windowsservercore`, `4.2-windowsservercore`: diff --git a/php/README.md b/php/README.md index ce2a911068de..80d669cf46de 100644 --- a/php/README.md +++ b/php/README.md @@ -24,44 +24,72 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2.4RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.4RC1-bullseye`, `8.2-rc-bullseye`, `8.2.4RC1-cli`, `8.2-rc-cli`, `8.2.4RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.4RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.4RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.4RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.4RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.4RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.4RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.4RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.4RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/cli/Dockerfile) +- [`8.2.4RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/apache/Dockerfile) +- [`8.2.4RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.4RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/zts/Dockerfile) +- [`8.2.4RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.4RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.4RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.4RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.4RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.4RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.4RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.4RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/zts/Dockerfile) +- [`8.2.4RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.4RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/cli/Dockerfile) +- [`8.2.4RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/fpm/Dockerfile) +- [`8.2.4RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/zts/Dockerfile) - [`8.2.3-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.3-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.3-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.3`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/cli/Dockerfile) - [`8.2.3-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.3-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/apache/Dockerfile) -- [`8.2.3-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.3-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/fpm/Dockerfile) +- [`8.2.3-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.3-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/bullseye/fpm/Dockerfile) - [`8.2.3-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.3-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/zts/Dockerfile) - [`8.2.3-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.3-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/cli/Dockerfile) - [`8.2.3-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/apache/Dockerfile) -- [`8.2.3-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/fpm/Dockerfile) +- [`8.2.3-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/buster/fpm/Dockerfile) - [`8.2.3-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/zts/Dockerfile) - [`8.2.3-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.3-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.3-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.3-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.3-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.3-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.3-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.3-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.3-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.3-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/zts/Dockerfile) - [`8.2.3-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.3-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.3-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.3-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.3-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.17RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.17RC1-bullseye`, `8.1-rc-bullseye`, `8.1.17RC1-cli`, `8.1-rc-cli`, `8.1.17RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.17RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.17RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.17RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.17RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.17RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.17RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.17RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.17RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/cli/Dockerfile) +- [`8.1.17RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/apache/Dockerfile) +- [`8.1.17RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.17RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/zts/Dockerfile) +- [`8.1.17RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.17RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.17RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.17RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.17RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.17RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.17RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.17RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.17RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.17RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.17RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.17RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.16-cli-bullseye`, `8.1-cli-bullseye`, `8.1.16-bullseye`, `8.1-bullseye`, `8.1.16-cli`, `8.1-cli`, `8.1.16`, `8.1`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/cli/Dockerfile) - [`8.1.16-apache-bullseye`, `8.1-apache-bullseye`, `8.1.16-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/apache/Dockerfile) -- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/fpm/Dockerfile) +- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/bullseye/fpm/Dockerfile) - [`8.1.16-zts-bullseye`, `8.1-zts-bullseye`, `8.1.16-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/zts/Dockerfile) - [`8.1.16-cli-buster`, `8.1-cli-buster`, `8.1.16-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/cli/Dockerfile) - [`8.1.16-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/apache/Dockerfile) -- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/fpm/Dockerfile) +- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/buster/fpm/Dockerfile) - [`8.1.16-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/zts/Dockerfile) - [`8.1.16-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.16-alpine3.17`, `8.1-alpine3.17`, `8.1.16-cli-alpine`, `8.1-cli-alpine`, `8.1.16-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/alpine3.17/fpm/Dockerfile) - [`8.1.16-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.16-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/zts/Dockerfile) - [`8.1.16-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.16-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/alpine3.16/fpm/Dockerfile) - [`8.1.16-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/apache/Dockerfile) -- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/fpm/Dockerfile) +- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/bullseye/fpm/Dockerfile) - [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/zts/Dockerfile) - [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/cli/Dockerfile) - [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/apache/Dockerfile) -- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/fpm/Dockerfile) +- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/buster/fpm/Dockerfile) - [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/zts/Dockerfile) - [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/fpm/Dockerfile) +- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/alpine3.16/fpm/Dockerfile) - [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index fa65c21db6bd..1b0c93fdb68d 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -30,21 +30,21 @@ WARNING: - [`10.1.6-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.6-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.6-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.6-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.6-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.6-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.6-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.6-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.6-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.72-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.72-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.72-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.72`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.72-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.72-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.72-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.72-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.72-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.72-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.72-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.72-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.72-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.72-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.72-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.72-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.72-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.72-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.72-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.72-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.72-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.72-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.72-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.72-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.72-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.72-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.72-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.72-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.72-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.72-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.72-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/c07fee6990b040e643b9845a462486aa7d579c67/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.73-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.73-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.73-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.73`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.73-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.73-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.73-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.73-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.73-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.73-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.73-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.73-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.73-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.73-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.73-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.73-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.73-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.73-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.73-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.73-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.73-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.73-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.73-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.73-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.73-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.73-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.73-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.73-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.73-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.73-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.73-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.86-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.86-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.86-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.86`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.86-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.86-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.86-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre17/temurin-jammy/Dockerfile) - [`8.5.86-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-focal/Dockerfile) From e66cd617e2bf54321fc30ffefca639e6a88db96f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Mar 2023 12:17:33 -0800 Subject: [PATCH 0124/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- photon/README.md | 4 ++-- xwiki/README.md | 12 ++++++------ yourls/README.md | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 6795834c957a..60c5188df2f9 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230226.0.129555`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3afeac187a91baceaa6900ecd46d0d9eb379b77f/Dockerfile.base) -- [`base-devel`, `base-devel-20230226.0.129555`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3afeac187a91baceaa6900ecd46d0d9eb379b77f/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230305.0.131236`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f8e06670e7752bf2601d455aa99caa845da7fb4b/Dockerfile.base) +- [`base-devel`, `base-devel-20230305.0.131236`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f8e06670e7752bf2601d455aa99caa845da7fb4b/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 59fe2aed1feb..af3e82c6a4aa 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ea0e4cfa25376aedb6e8b7f49d7e32809a1a18af/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4b6124c8a5f8067484fc4acf37f6f871a3b7491f/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 8657e6a172c0..7820881bd1dd 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230227`, `latest`](https://github.com/vmware/photon-docker-image/blob/431c92b740089b2de33a8a1994e8e732f2eaf4b9/docker/Dockerfile) -- [`3.0`, `3.0-20230227`](https://github.com/vmware/photon-docker-image/blob/86dbd4178136ac54686398cc266c3767ecf2ef41/docker/Dockerfile) +- [`4.0`, `4.0-20230304`, `latest`](https://github.com/vmware/photon-docker-image/blob/a766f83657601b7567494baa84dc0c4ad6db12d3/docker/Dockerfile) +- [`3.0`, `3.0-20230304`](https://github.com/vmware/photon-docker-image/blob/4ddbddd0033c4916333166327f676fd4046e643e/docker/Dockerfile) - [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index d48ddddb3b70..bd8388e30938 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.1`, `15.1.0`, `15-mysql-tomcat`, `15.1-mysql-tomcat`, `15.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.1-postgres-tomcat`, `15.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.1-mariadb-tomcat`, `15.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/bd99a6f6065b117feb3f0a3283d90a0347e2a9ca/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.5`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3602bfe1e853e42b2e2c193171f99036fdf0be61/14/mariadb-tomcat/Dockerfile) +- [`15`, `15.1`, `15.1.0`, `15-mysql-tomcat`, `15.1-mysql-tomcat`, `15.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.1-postgres-tomcat`, `15.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.1-mariadb-tomcat`, `15.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.6`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index 6c8889050788..469f30395386 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.9.1-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.1`, `1.9`, `1`, `latest`](https://github.com/YOURLS/docker/blob/38f550a34a4eb96419d9d3ebabe802c439103218/apache/Dockerfile) -- [`1.9.1-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/docker/blob/38f550a34a4eb96419d9d3ebabe802c439103218/fpm/Dockerfile) -- [`1.9.1-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/docker/blob/38f550a34a4eb96419d9d3ebabe802c439103218/fpm-alpine/Dockerfile) +- [`1.9.2-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.2`, `1.9`, `1`, `latest`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/apache/Dockerfile) +- [`1.9.2-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/fpm/Dockerfile) +- [`1.9.2-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/fpm-alpine/Dockerfile) # Quick reference (cont.) From 44bd95b1227e560decfe42e184f5261706745cb7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Mar 2023 15:14:56 -0800 Subject: [PATCH 0125/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- redmine/README.md | 10 +++++----- tomcat/README.md | 42 +++++++++++++++++++++--------------------- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 3a282dc5f504..6cb7cd9c8ce0 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest/glibc/Dockerfile) -- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest/uclibc/Dockerfile) -- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest/musl/Dockerfile) -- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/035784654e7c42ce45e84617eeec327191fa84fd/latest-1/glibc/Dockerfile) +- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/glibc/Dockerfile) +- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/uclibc/Dockerfile) +- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/musl/Dockerfile) +- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index cf80caea8366..ffc753241aac 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.4`, `5.0`, `5`, `latest`, `5.0.4-bullseye`, `5.0-bullseye`, `5-bullseye`, `bullseye`](https://github.com/docker-library/redmine/blob/8749011cf59188062efd880e64cd69e800e1d447/5.0/Dockerfile) -- [`5.0.4-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.4-alpine3.16`, `5.0-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/docker-library/redmine/blob/8749011cf59188062efd880e64cd69e800e1d447/5.0/alpine/Dockerfile) -- [`4.2.9`, `4.2`, `4`, `4.2.9-bullseye`, `4.2-bullseye`, `4-bullseye`](https://github.com/docker-library/redmine/blob/6ba68a3fdcc615faab7fa8e32e7b3bf8247a5fb8/4.2/Dockerfile) -- [`4.2.9-passenger`, `4.2-passenger`, `4-passenger`](https://github.com/docker-library/redmine/blob/ec4ba2df717b0c0adbbf34dc3a1a0e65f93a11e7/4.2/passenger/Dockerfile) -- [`4.2.9-alpine`, `4.2-alpine`, `4-alpine`, `4.2.9-alpine3.16`, `4.2-alpine3.16`, `4-alpine3.16`](https://github.com/docker-library/redmine/blob/6ba68a3fdcc615faab7fa8e32e7b3bf8247a5fb8/4.2/alpine/Dockerfile) +- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-bullseye`, `5.0-bullseye`, `5-bullseye`, `bullseye`](https://github.com/docker-library/redmine/blob/5c69b4458049c150d8cc335841871aa4625dc217/5.0/Dockerfile) +- [`5.0.5-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.5-alpine3.16`, `5.0-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/docker-library/redmine/blob/5c69b4458049c150d8cc335841871aa4625dc217/5.0/alpine/Dockerfile) +- [`4.2.10`, `4.2`, `4`, `4.2.10-bullseye`, `4.2-bullseye`, `4-bullseye`](https://github.com/docker-library/redmine/blob/1f2a9a14e36002ff028ff9677deb9909670a25f9/4.2/Dockerfile) +- [`4.2.10-passenger`, `4.2-passenger`, `4-passenger`](https://github.com/docker-library/redmine/blob/ec4ba2df717b0c0adbbf34dc3a1a0e65f93a11e7/4.2/passenger/Dockerfile) +- [`4.2.10-alpine`, `4.2-alpine`, `4-alpine`, `4.2.10-alpine3.16`, `4.2-alpine3.16`, `4-alpine3.16`](https://github.com/docker-library/redmine/blob/1f2a9a14e36002ff028ff9677deb9909670a25f9/4.2/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 1b0c93fdb68d..5c2bf1ca7754 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M3-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M3-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M3-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M3`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f86b4075f8da2559db0563e9114061e51a79b52d/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.0-M3-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M3-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M3-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/f86b4075f8da2559db0563e9114061e51a79b52d/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.6-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.6-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.6-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.6-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.6-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.6-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.6-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.6-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.6-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.6-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.6-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.6-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/58b6dabfaa3c6f1298f75b756703e641e74c944c/10.1/jre11/temurin-jammy/Dockerfile) +- [`11.0.0-M4-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M4-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M4-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M4`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/49294a7594a872e88aac70c0bd448b081de8d565/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M4-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M4-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M4-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/49294a7594a872e88aac70c0bd448b081de8d565/11.0/jre17/temurin-jammy/Dockerfile) +- [`10.1.7-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.7-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.7-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.7-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.7-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.7-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.7-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.7-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.7-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.7-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.7-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.7-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.73-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.73-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.73-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.73`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.73-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.73-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.73-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.73-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-focal/Dockerfile) @@ -45,21 +45,21 @@ WARNING: - [`9.0.73-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.73-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.73-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.73-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.86-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.86-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.86-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.86`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.86-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.86-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.86-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.86-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.86-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.86-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.86-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.86-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.86-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.86-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.86-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.86-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.86-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.86-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.86-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.86-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.86-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.86-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.86-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.86-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.86-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.86-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.86-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.86-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.86-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.86-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.86-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d714957148f7f8fafeb023f9d69f86b77d410399/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.87-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.87-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.87-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.87`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.87-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.87-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.87-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.87-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.87-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.87-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.87-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.87-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.87-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.87-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.87-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.87-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.87-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.87-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.87-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.87-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.87-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.87-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.87-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.87-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.87-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.87-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.87-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.87-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.87-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.87-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.87-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 13792f369470f855f743c20e9c7e9a18f9f6e332 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 10:16:56 -0800 Subject: [PATCH 0126/2686] Run update.sh --- clojure/README.md | 120 +++++++++++++++++++++---------------------- geonetwork/README.md | 6 +-- vault/README.md | 8 +-- 3 files changed, 67 insertions(+), 67 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 531f5103b2d6..8d9bb0b8fcf8 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,66 +24,66 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1237-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1237-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1237-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1237`, `temurin-8-tools-deps-1.11.1.1237-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1237-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1237-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1237-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1237`, `temurin-11-tools-deps-1.11.1.1237-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1237-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1237-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1237-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1237-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1237-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1237`, `temurin-17-tools-deps-1.11.1.1237-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1237`, `tools-deps-1.11.1.1237-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) -- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) -- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) -- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) -- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1237-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1237-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-19/tools-deps/Dockerfile) -- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1237-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/debian-bullseye-slim-19/tools-deps/Dockerfile) -- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1237-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) -- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1237`, `temurin-19-tools-deps-1.11.1.1237-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2133a90d78528797f63cbf992cbbcb72cd030289/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1252-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1252-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1252-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1252`, `temurin-8-tools-deps-1.11.1.1252-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1252-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1252-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1252-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1252`, `temurin-11-tools-deps-1.11.1.1252-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1252-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1252-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1252-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1252-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1252-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1252`, `temurin-17-tools-deps-1.11.1.1252-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1252`, `tools-deps-1.11.1.1252-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) +- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) +- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) +- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) +- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1252-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1252-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/tools-deps/Dockerfile) +- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/tools-deps/Dockerfile) +- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1252-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) +- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1252`, `temurin-19-tools-deps-1.11.1.1252-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index e06a8a42e5c3..1a54964d570b 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.8`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/57f727acc7ac1fd74f6dc95afa58f4136c7e35b4/3.12.8/Dockerfile) -- [`3.12.8-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/57f727acc7ac1fd74f6dc95afa58f4136c7e35b4/3.12.8/postgres/Dockerfile) +- [`3.12.9`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/4f7461deeb025a9cd13ca910f559c501b6745aa6/3.12.9/Dockerfile) +- [`3.12.9-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/4f7461deeb025a9cd13ca910f559c501b6745aa6/3.12.9/postgres/Dockerfile) - [`4.0.6`, `4.0`](https://github.com/geonetwork/docker-geonetwork/blob/00936dcf7dbb2399405c53aa05c670fa4bb79736/4.0.6/Dockerfile) -- [`4.2.2`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/bf7033838f82f2d4529d70442c727808f5bfa432/4.2.2/Dockerfile) +- [`4.2.3`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/fe6c6898ff830df110eafe0384c7296480992102/4.2.3/Dockerfile) # Quick reference (cont.) diff --git a/vault/README.md b/vault/README.md index 83ee9e1f0a5b..66e2c13fd74d 100644 --- a/vault/README.md +++ b/vault/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12.3`, `latest`](https://github.com/hashicorp/docker-vault/blob/79972dce1c4487ae46ba37dc629aa15d09d0410b/0.X/Dockerfile) -- [`1.11.7`](https://github.com/hashicorp/docker-vault/blob/056fdf2cf0f61b008057f480d1ab2be9efc16416/0.X/Dockerfile) -- [`1.10.10`](https://github.com/hashicorp/docker-vault/blob/1314eec7432841d038cbd435f9d2fa97a7dfd3f5/0.X/Dockerfile) -- [`1.9.10`](https://github.com/hashicorp/docker-vault/blob/62322ee96a690b07cdc669eb9876fc05e073ff2c/0.X/Dockerfile) +- [`1.13.0`, `latest`](https://github.com/hashicorp/docker-vault/blob/91304d4005021e93fa4c5833a3e9f40671189e83/0.X/Dockerfile) +- [`1.12.4`](https://github.com/hashicorp/docker-vault/blob/d5750fd81e2d83749d2d353a21e826c80626fd74/0.X/Dockerfile) +- [`1.11.8`](https://github.com/hashicorp/docker-vault/blob/8aa831c3bccee7ba4252c2123ae2bec5a9d6317c/0.X/Dockerfile) +- [`1.10.11`](https://github.com/hashicorp/docker-vault/blob/dd29a490ec67705d58da784656b65a4947c53e4f/0.X/Dockerfile) # Quick reference (cont.) From 7f3881a28c29ed29bb1a38681b95bd785a8a6da5 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Tue, 7 Mar 2023 11:17:22 -0700 Subject: [PATCH 0127/2686] Update Caddy logo --- caddy/logo-120.png | Bin 5570 -> 4909 bytes caddy/logo.png | Bin 144678 -> 35545 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/caddy/logo-120.png b/caddy/logo-120.png index 65b52e47ad070fe39e1fcc186e1ee994608ff5c6..1969168868a6fa61dc5ff93e15c3182bdbe2c9f2 100644 GIT binary patch literal 4909 zcmZvAc{mi__rF;%_O(IwElYM8`@Tz-WNk9YHZj&l))-mF8bxAkWotoGhKR-#Mas+@ zg$B(iQT8oH$ag+}|9k*Q0;sw| zYk9Vq11huZk&M-+`YF3-&qzZ*{S_Ng|9L56sk?rk5pFZ}XntW^epJMj&&>-7?QC`n zV&v-Ro4QL{@oZ|Pg?GN7{D&7g{StNPem?NHuXWFZ-sJHhE{%QJatqJN*^9NmD;CZ6 z$*+iV9D&-(YPawx*u4Mn8tc5ud}U|mwe7B$iaW*cvt6@ItKe>o$0khXw&2hHDY)A2;~3!^m}Iyf+5G5eb|}>`MNZ#b>A80wdyUpzaE$gS*z$;5TeYJO zkjg!h&vx+b+CR0V51zqZDi5AJ<)33Uc?fMvwhFqqn^nlI*m076_(Ul;t#f$|5Pnmq z@TD0(+OjE9v@SQt-4M7U4_{b5H~@(ziM)nS%^uRHGde!Lg3e%eF8sRb*5F4_^?j%Q zL7}hKVo2_~zx7I7TbTKw1kF153UQe;VZRb07rJ_*nAq5iKWfu$BDl2PHH7kMNZ7|1HyK%+>FS8li% zk}rKvM&3i7TX}%~#j?z{Y!hRt0OH_San|KM-#)BRq-Hfe+Gs5xEa5B7DT~ocubyf2 zfBj_ne{IT-MrkoW_V@hLw*1d??&oYgIXnOVBShV1nn;O~6YdL!59pE6mQjRxi8)1z zJ0!l1N?~V!@cfLTC8Oy5A5{gR0jyrsNcL2=>C*!7oOrP<+V2Yikit>O&~P!JY4km54ExA9S7O_kK1AZCp#MD^T%igY@K19k@^^oVuc`QGln%8kCpqEv z0WE+qU_`dW_Idh6dh?^@F77he)eK}t!S(T*%r(bvUU8LZunIW5l?G)1#<})7xbJho zmwU(qA&AQod$0CEWHu>wja~Rs=|BH3F@H7i7=;Vh{#_!V_Jj>N~_RB<|IeDSVB$9KTcpAM>qXTarhBwbv#R~lH%1Z7L-*<DvqPm2M_pJeV0VB;E(OYU($1JE?(C z$$74ncH}@oM=Ag4yIPpgHA7L+QL~V=tV#s`+Gn~8LXu|_S@T9W^~$z zCB;`&%()Cgcrn*T|Gvrq!Yt45``do1IX_e6g=}_VX&QawuoR&dBM|dy$!J3uO|$}c z34!@oHuzTk^06}--}`Pd4HK|i^A>b@?OY9D6x$*}yzSy&pcC$D39k}%I#)zb?bDTj znalp9;cGp@u@R$x73e{9Jh${oG@X&q@F$Y!ttZ$t>PS-DqwSbZ8FpZIgvZ#@ZU_f-H`nabj;%nI3EW@n>P>0Ee5p|0C zm~t3SR;1TIV5+BfrTXqvQYO=!2a`nVVii6C(wQE$a4Cy3(HO!YWc*C{j)V=M0@D7iZDeS8c@755XtR3?WR%O+gDB`r-yH>{vZ{{_Q$(=62=$h3x)R;>C>4@@qBWAv$6rS zbKikXT*LVHagVe&VI)W7h%!g9ee2?pi&5NfHe#>MMu)9Ime^r+qBk->G3n|I zAeSAc$=W{Z7b?g+t5lMbT!KF4X^Kk!T=*R8kwVZuZ)d1!tGaVhC&Q3w1ETVL< zW-^r|v}r8cE_oyM45qE==Tpom1>_y7qN#Yc9DSCr*UE&j<6H1=3K__W)QDU{K4lzE# zwQZfXl}ujBQ`KBP@?}hsP7vPIYJN0+d{LOrAT3tLDnX2@l>+&4XrdH%mzm43B(Ht< z$UK{v>(nuA(oZMc>(X!AX;??JI9;vr*6$@d3OY#1>IFn%xA^`TUpmdw4%xvLbow}d z?%ZI^M#aD{vzB8>(AC?D=fx!o$9TvmUV{N`>3n#n*-Da&MU~12MXcnjh>kMbfD@rr zS+?ASYHRMon_n?cX`y}s z#p9uAjTh!9FO#5xPj+A#OGcVNdu5c1Z8hsY`=rex{sstUL7k0mF}y*A8Tgpes)i-shDz|!2>mA7k5h6Ry~ojw?U6GdDKoCQ`Lfr`ANe zH=Ho)7xyPmc5$Mz30sCu>6h6+E02aUo&Te z0VC_^#f~~-GR8cUr5cmR!5Ie4OgAg9CTYG{o(DQ|m15oHwFHm*Jpn)WZlOghpUCM> z-e1@l{Bq|etc_ID`$!pcQa!wOsEj%z6FVxIY4)qM5p}B|HS@=Gp{JyYd3tsuM5F3U z>4wy~kHwZoS>jo#XDB3MK=s9WpvW3@B`l$LOm!#qF_Y-LL1DtFRrMn0gE00U;&6cr zZuCLEP%jKuL1i1HiJ;W2t0Ebq(W;y?4z7)+?GO&Ut}8K8M7(TofQ#dj;LL=gp0NhR3E8`b3M2x`Ng;yJ)xCgmzAyoXS#a8e z{J8L}$Q0$@xgC%rWlzml!jasuTF}3@9oCC&8lls6+I`n{>-g=!DZ%H&yffjM1Ot4{THPwxBbpt9zIzx*f-CGC)$`v2sd+jLw{E@Jf%Nw#&+{m_+HRH`s9i#Khzp*M z6Oi{1pM@;Un|W|1Bofkw+Ycwo?*8W3gNJ30FYY_x+DxY$XX!&@Q3Nt8d34*iY1Ae- z@U{>~U2e@S103J@L+L=Nht`e10xb7bPd8SXadYG>b9FV`fV@!fzeKqS6Fj4%^<5PO zlbbbPOCMj9UQzr=reLfiao$D=ivP`&LS8G!8h`!FZU_IU&mUbbQ_-TX++o1HY0ZQl z>7>k{2?*Gox>~p!_0sAE(dEU)Q~9rP>lRVq>HFKe!YQBh{TU~Lcvo?)>C6(8%v=ZJ-c#oTo ztgF(qEQO|YYBt69m3)b=u8+By8B*Gjb@!nAM;T17X>=6JqvtX!BM#8bIB>#A%UWke zefQ^;Fvl`|n^ZJ0UC_}9)gF;Y?7k!U!VIa9GMKUKTdDsB49#*1QN3RbDu7D7n{V$a z3DovPHS_ShUXTJ(Y;_*pcHnM?AE`|R3I^T)y(coaj@aiQY#~`DM`LDD)aj?zXAhmT-g}iG%G5aPIw9b;{hY0MB z2VJ;v0*!BLUy?hhd7H@kTnO>Khg_1Ld*vkXv`!a~%k^CM@X!PBg7)t?PJHwr@sq3O zLhtg(Il9ZBohdKYFLldHfj?O}D7~eRWB66C`|o2fpnXcau3TDdn=dV^wC7wwfXTpw zz~9O*Q3T#KuMA0@E(oRmCI56&1@F};J5CCE{UUWX2W(;=l7<2xn6-8h_-C6N^~h8( zMSQX&we%P6SG+^+)4JEOTsda?_g)%bUmKn zpd7sd9JnSfINkxriU6har*GU_GUD4$7U5uB{?`o&Ox z3us@V4KiMazdUhQs`2)?u5IfTQMgOjz^c^9k>Px8R)Z&9Y|ZZM_&?OzFZY}RSp`c! zjhreuFfVQZPVXtM=(M=(nHv&7GaDg|D|rF+=g$X02Q^+Fas?b?t%=l+(We@*mGyYC zt=8EK(6_{0gM~9Ze(hc?=_B*ij!CS(e2I3wWBG-Bm#C4qc3(BfS>IgjA)}N0eFT90 zgTun0$1gf;OA;NXq6ncfuvPb47v81o%iroTR+BwJS8_gnh~WKtFPCI&6Dj>CA*^Y1 z&p}8?as4C7axN0&t9+hbg?{=WYdlo)tt3gLcrTB&t~(GZWf9b7zRr9L6d0rn05y5P zc0pf8`^7D2FCAsqhLwfqrax2IFZr?{@29!;} zpO@;T^wjT_g*eQd>QoJX;PbKyiS0z1zuHGE0$Y}l-ejwJcaGW>H6}e_oa@#qpWpw9 z1@!Y@wU9`-_|IXmEp$dB7i5yxEimW)D_gOVAQQC`fmVLu{P*0Qko+F$Jlk(Pj{*1O z1v01P3NjanjkTlAMEUPe4z&kw8(%wSGk+%Qa$Hf=>{dy%`F$1zW8t-ewlTDHK!09r zbb`Cz#Mh*(ZCx$-NprEb@_#==Q3KX)zODt=x=_D;jeBX6)he$)PPTcbB^7M=-Oz}u zTm8eu_z+!wr09_{3TFT0BM9OuLlpdAvUyGi)$R8wLU605QR|ysP)jJ_Wn%lzwZGBs zQXnO~bkk@v)_cfoFD=fpC7FFow1#JPwZ~;TYvfUIJuB}+LS-Su^wi@xCD|XFjnH1% z#-zme#2fxQYj@&7Lv`h(K%a`*PJa0jo5ODhDHnoYt&1HdhqyJ!tNuU2hC5+Tvr*pN U(z=(#{BmJ&v~{s*w+hJoKSWAf82|tP literal 5570 zcmV;z6+P;SP)Wr|31?H1ezNHpcF#J zl0DJ?3aKdor*8;y0zA}+2@bV9 z0jLlFrwjmh1laZKT*j{fbN~>xLM*_=HJ1d#Wi+~5R6>_dk_GzN%r~nOH4=)sTk+_@iQW7=rNgbaRueE_B!K+gO(MoQoC;3~mM4z(x%tq$(*>@UJkH$OiS6bUmT z06V?s8m%Md^XR_8yGKw_Jxfj|rYQxn9W-5TCcZ;5rZfS!Tnn=!Gu8ju?b$*@KLM^h z9J@FGtTfH!&XLKIGs9FNyg#|vx&XX>4YExstu7@gB+}>8rO~EtZE9RwS7l{lH?2Au zr60%O$BmDQgnDxVe;zx@^xO99uhp-Tl#c+f1Ub_GyXeupzPNkOfjz-bz2m-`&6)^+ zGy%C3IGn$O!Gv_Ybuh3s27)az6#zcM?$7Yzqui@Dil<1!Ry)@JaLjjCvsoM<892G! zv$e5R#b6wjFCC~X4x$jl>c+C-wwaojhs%prQ%pv&Nj|DT5P1;J@6RU4nv&U!i001*|QchC<_yh=5Gp7je75BCG zr{`=g$tBPd);~skbR`KMSO}JcB>A<*{l!D>k-<0%;QI7xs5=TiyK~!ko zwAjIG+E5$^aJ#8kitf-up@r>_h(ZqW5F#3@#6VO~K@SZC5oBH@t)PQmO8$U?dRP%g z+09D}WngF4&tJqzA|Ps&Fk`Mkuk48yWgp8O>F0^SAB(|_$fu_|?Y z=U5;tGeyENW;pW)h6T^g&AO+pH~c#msxK0e7=k#4{DBmS_`I+w`q8Xs-j9N4l*Z8# z|Gek#=_lmv&%8`TGJE@Q(0M7sc%NDCeRNEA2A@RLI<{_n&l!{ci*h|+ITSll@CMMH z#}jrV#akBqSW(O)gLUR#fc#|ga=rQdB(tSwozHto(G$9E zKi%cY`|Wqr@_2V%%1^eYoL5<1ny2J(?)1!Kr%O+IW}1>mx}LewZRTFyCG<06T7!1a zd1%?$eddcyaidUfb92qiyPsj1(K^~4@jattN7p@-pK?|iV!k}NzW(&(%a`|7b{pG0 zMv^3!8)f6;+z-oe87CL&+S=yHr^~CW^J=xy?shw!gM$OrP+Q+uOFRAD9xF+x+*xKI zKgI>SxyD>y!ra){s8rfW*Q6n9H!EAhmUdj~HyDWp{TLbZb?7q(_T=kTW@DpDGA#I@ zg{Ug|#gMfd;PO#_+nL6PV$NgNvyXNOdwC8ugH$Ws16A#G+imC_RW+7*WFQ-cPH=sv z!Lpb&E&H&x$L!y^h~4G5wU?Kfq1x`YGq>S%EE-S7Vv3SRn&HF!YGNjF)HN+RNSibPkr(T6w*vS7dbG8v6V^R55y66OZIb;TRXYhFxh=&iKyr<(0kQlk!&_sC}dL=ep#0FE$sq_3Uzw2SlUjF ze(ujx?sWz(*kmvmEJQ68EOO661#6~|OSO4T)-|E;Am{zh!O)HNMx5PBrbv1`Wa(<5 zTFGWbv7R`Td0E$m9lW0!vlkErFXS1{-seme?tU&9T+AwV)>19DK4is2JdsOx`7)7N zyUa291v~tNZZx;~@_gewQ#oCP8@I7kxnL2z7LSU_j4AgeP;|4O*cv@c?WD~s;_e0E zCe!yU0@RvoodoDT8;?hm@#t&F<&|BQZuTs&-(U~J+6rF#O6GfNy2>vs>a-x}gf0|7 z6Vzf6{7uNUt>d0uo?;mfuzQy}I?(8o44Lmza4{JFW!s8bF{-5YKE5G~y_$Lb=EGhw z7SHCgP)#<8D9Kobmunca!!h!E$H1ks zIAX?^jDk7)7QRBkZR&W^I1gDCYbVreT=YvdLC{~xym5*r z2wVae)7Z`OO2bw%fjmQ&JeBCPqgri;QSg%a=!1KDcBa-=gw=i{gxeKND=hgT)ab7Y zD>Z{3e2AGUk}B@$XXF$KQ6)1Sz_IY(d-$8sUs;a{yBZ`-~*E$?b&o$ofGf_)oKWtQce z;}FA*=(U%I-*?-cDj9J>B=?FvQt*ZC9!1LxyCb|h(>@m85;h!8eLgFfwT8oxXNmiC zPO`zFcUPURx*vpG$kuZOvC6m5XzBwfncY5K(fMi$DoOKH*JONQ3YO-c0`{=yW7KXi0xrB^O@!l zZsG_LN`M_VR3J}{cpLu=EJq2P!zPY(`By^Uxzp4+j9&9?G}%n5x-4&%SdN180dp5K zG_0z!Xu^p^u4t^w+Aj6Iorl~9+}UgX0v|DS$WHc1bi=k=s#+%SViu3X=2`isMvvHe z$QOb>P!I3m3{LAK&Y@S5$K^(+DOfcOJx5?M9v4sfny}jYL%31a%H@x#A^h5UOgQw~ z?RpWR;CBtfkktZ#6S&GAV#KA;AHgBAlgk?5rg?(A83jjPxMm$;SsTL1X#DepuzvQj zh+}g+JnNcqXmvv`uUl{&7oYu!;MFaC`7?PyjfL|wu7DFPYeSe^&fiP|_l~fU_wh`A z01mhU5=X=3JD6NoCxSyI0+VaVIGB?HE3RZ zRvv(Tt|?|rtCz_CcTC>uk7!hS9E>Ud;LQ9&lZxUv{uBfeL6lEHz4w@1P2Ic?K>_H1xL~Bc^tVsl`RwHU{HHvV7TMsb__76tuvF|zO z>PfM?<%hitynfE_ch2wlJLfJdK3IYHC)VVFWyIR4wjTr)i1+N@39)vn*J_JTR3iSg zd*>c1zNN9aG|S0;0^It4F}m?xT4IzF-$2TVk5wlAc4Xh-{Zy>6fvnLKW9zFx{GxUD zk)7J&HTaSEr&td$s6dS7bdRPOKN6d@#H|-A6Wfm*TSmMYjetg~TdQy;IP`yF^gdO4 zTkZP_VoUi(0IiQk#8th$d9h_B9S9Tm>W}T+-CKy*Qm*wWZT2iUaUOk2#I5AQ=LMQ$ zCf>GvC2S+9X5y+BRTm+Ca>8%jsp2$*5DJGDGWv zAKLga72cCdG9im{YO$fK>*}@orY4hMC?IgG3`xao-l5`lyK5NLptkLDON%!?MWRkA z)6C3|sce#2yh&tdaw)ha*ibJ?R)J`31Vb?;Bal?;{^G71)V8%84~4@+XAyK#nSms~ zZ}F=LRM8CeE=D3-x~?@Wblga%Zx9|7=pejRxlegc_zb>)mxO1a4{QSd&~ajR`KQQC zE5D2u3%`nBmoEr-P?VA9C3u6ux9u04lnbDla0Pszydm`W_YV&bPfSdt)9LZ?@v*V7 zk3by?8Ag5xn?j+m-{X0O#Umy&NH)KGp}EGELlUhZ-udACJ*S;Zsk2mCVlA)j1JC;W zVZW=>gP4(QEN!)z)LcV6D2oX(MZE(=+Z<&M01p$v#9XlDbu8yJ<52QYX|nqWF2Boj zCMP1~NrcQY&94-Vb0px6*=!^dwO?>Hrx$YdO=hybfKa-efW)a|&{YlCng+F(L!0_M zot-Y1r}NA!h0QX%QskGYB-3IdlAR9@!#l7bNlm1hG?sIz-OLM$*Heq%1Bf`MkX#pE zqLMcunMpCJEM`X|>u)=qw-=;bE;lqZ6pzOn%i|~qm2qet`w=e@cb?!gWH!^?1EH$as8ll`Mm51q#Al|Iq;fK2TwV0K zZQap9Sx(R?zDELX=wjj~CT@&37NjN>Gmw0-?t-^F)(tb)wlVSXu-{L_nBbt(iv>etAn@AoIuM{{E{0li2sVS+!ORZ9VD-Yx#5J{EuU8d^ z3t}v5w0Trm2suL|W>b7G$i)U|ZEh^{ zYAOyDiH$5^9`e>nT{*Gfv)LZrj9!Uee`GVTe5-b=)f_im*Ec%^A1Nq@5Y%*#Xm!>7HoJ`F_y02dc=^M#|RgAWvZa5x7m z^n!4gz#VjHu!|5XQWPQZuS+uAAxf46ilG^jECzA#FC-nDGPQ%W-@&b)!o_nHZF?)8 zp&UZt$9c4zA-7*#J%kq&#Q@F^^jG118@~AJ<{4%Vf}8yt{_q#>G3>8@!%P!5ea%f6M*O&>wOOcG zFotp=-60Pp1+T?m2DJ>{_4{_kug)@Z82s%1kA3(x)iCK)#Bgsp?osZ0j^lv0N}wV= z(q^kOA8LFw3Pi#c7a`A~1!p7YM*|yveA^)ZluzFJz6UbNt?Ycu+S zMlr<5n=SAG79PWH=RoemH!<&X?8Eo=25ie0&VAT{Uza>Jn564yojSudfH(2@W5Z5m{=%Hjblvei z;H}m)1MqwY9EJqyi?&MTg= z#;h`5nDX3l?PfEWY{dL%59Yh;&^?rQDt?V)t*A|p(@v>~IBPUDt$w&vt0rx!Xj)lH z>e6(B-M5X9LR3)6QSfLVeq+1;mOs6HzjJ{^V`V~X)FvaX6!u0Dnp6@#kU@q-m~q~w zZVJ$tg14}_eg5xm=Y09?&ILl_h(q_VhvTRybdN6*A%rf9XjJm)^WY(0J;nS%mi2v@ zz~6!ge@-9E{h$1^b~{FG7>2?CT)YH?1_?CCgC{#nAel;n9f(2TGg#1ODm_8tEmMYe zXxDC?Jp}~K+za$neJ{3oZ3GSu=?n4bk6*~<_aGHNQ(~{}HB|t+Ew(+ZAJ}eFQ*8Hl zw-5W{mL~Y^DOTj3lf{H!QcxTHX{yJ=$6;G_Y{_?+|G3_6yy##t01E?W90TNwf`N#OBYExu`n=nlGO{gnEQ!+*TAoFO~aN6#T_16 z>B2Igdti#(!G?3^w4%6|$iY}!NKJ4flS^vjg1Q2B9FTiCo!2>IsN&z-TSOy^iyRVr zIgJ;Uuo~^GcXOd?oQo25#S>3LYOsq8@RP(Xj3_KI52YaX8Z_ErWb4}IpfiLiF;7k9 z+$w5RVy`wM1vs-cOqI531*EGuplWpUpA!frXQ9>+W6LGuk=Ef%Dls_Z58_-g*PVZA Q!vFvP07*qoM6N<$f}(Z4n*aa+ diff --git a/caddy/logo.png b/caddy/logo.png index ddbf493ce77e5222f530536549a9a3a289ce99b3..946e28992c9148224e485870a57ae22c80dca4a6 100644 GIT binary patch literal 35545 zcmeFYWmuE%`v<&WbV|2`AX1JTAYg!ilo)g=2;xXb=k`@fN>D*yfJlj?zzC_Sgh)vZ z$xRUHu916gfBHY3_s{ER$H5B*_kEt%+3~qzZ<^>a(eu%RKp-XqeVtn%5LG1z1V++Q z1K)fic|Qey!MI(!b`y0=@9J3t-D@gvH5Cg&IF`>$E zc)h55tP}cAkRF>)%P-%K+j#x<5$vbb&ve{>kG5*P(^3*UB26PTGi+~?3Byjx;c&IP zv+^%+`UqOCqDtxAIHy)i1EkfxAhk93!gt4$ouLLHqN>`GA1s<^vM#=$@`m?PT{&ii zU#QLjhcbS9Mtv~-=u{@C>#no8RPKix&y--7-f|TLU%h{8=V?6SxoS$p(R<10Fx=8A z_+hw0e4SRM*OdZyo}B0?Gd0MvnC-8ng99i}5O=ff=;RUU2fDiZBi96G+jt@TW}bD; z1*>-1F7c-9%blXW_Scplm$_;m2@tP2+qEpw`|rPT=+iK70SmozZGTW~(GKW@&RgFK z1p+a!|M>xfGO#=#&{>dy&XqfX*p;b(*W!1_PB+)rAPk1gqM}`L;xX8~Hm)nItoK-{ zblL1Vub3I#lz1s))pql|s3^TYYjQnV<-%L%s2-`5^UCs9Qho`fPMw_i1cz%dva8?O zEnaKU9vvB7F|o+{7*H5cc(jPhhKm0Gpa0Jim~y$X01^d>k1;wPu+_Dr4=@Ky!g|Et z{JZnq7}upbSIqqNP=TP3SVYD|aYSm&-%pJxOh(E+MV6uT8$ZLHJg>Nb^S$mQDM#9` z9rc>;A!&dAOTXbA`rLs*l^b3Ivk&rb>#U26AIVP(bn;oYC%KSRW)^VIKk5Aa9KNEr z9Lx~6;jqk9zgQs2rybw4f0%Z+!(h`r8-nqGxKo$181ei4670#$@)Pt?DtRKM`&X17Q|T>F z&UdB4{Gt9d1euK+rZcW*?dWZ92uwMUaNo{#aedlnoQMyCl^t9c*ktsU^QQKGmGLR= zF9Y$Wu+s2k=i8f+FXbV^(BJZ;3l(4sMcc~%Z0^1;Hmr)=gq0a@5~G>YExre{BG?g6 z5FZuwwf+hr`OIx_$>_nDc@A`s%3PL2FSSi?Zo#G}&*_~o{leLBh9R~QBJ4a((WSw{ zuw~g+|LiuK-m>{?f9>JfjdPAPTR9%Dz(wF9cD?<%Oa2stsyU45&p4~)#QJ$_(mq}| zHm~!l&OfP3K{+df4N{t41yz^5#p*>cBWMtu^{I%A%xyB{xib=!Q%p23jqv9>MN$-J z7NTwr{Ij>KX5bQT@v%a@MOQ@ah`{k6ehAGFo0o`{t$M|Wo=-mC?el0MT5&OfU zQRA;(^&M`3OZd;FgA+lu-9E#Tn)4Jlve{;IJk3 zf4b0@2Oi24AA5w)C7*i`6vRpfZ`jBhET1u`Wv$exl&{>12|1+`fMIn7dYRdbfs^G6 z62=`s3{ibxfi-NSye}0H+FtZ-?L;uTP>>y=lFLe3T@0lmOi(n_D7tpj=E@P|JR`0Mr8OnMB;4 zyW{+KHT07#RCF}6$SvyaNanNb8;$g9EGsaX=R@x(9s9lNafpmpL$A;LM>)+hNy&7Ch1qLL%H4Da{pSLuOesVH^648TA(Y?p094hjhkWBr*GySXm<2heT)$= z0Xuw_SG1$A#KXu}3AyB}sV>g{gft3h(&#v)(hG6~j+<9{L@&UMt(ehG+E%Pel&L_0W|fic*Vz(Fv!iwNdGB_yS~8cH37}E zFM)%|nFZL)!w6C{-a~9H9YcJz<)7lde0J=gwM*ne%!|&A6_Puah*X6&YUA7FEPBgRQ(liO#HP*R{t9*vd`rCLe+}c`k{Lw zi9+ApE-iBV?C@=9rj$}+nd4WU;KVAG4g5Ja#AX&=v9kS(MAruyOHDR3TBfdOwU-=W zl34XLiUZGi#O6tFYOrT(EoDcdzhGX9PgKq}{A2VwpiF&(+KUEz{3Q7%pHxF>7pOKB zK{WBSZq;2Be~?8#N-f9l*ROQ!UMj6$byr=`@Gn)WJNOINQ#_a_V;r(a$`v;> z7z@?n&ndJZ4p}NWE9Eb`4mYpU2pH^X3-+J;tBf#H^iXIggDMSlHKzUgWFwC^wLz`y2ItJfos?_;a)n~Y>tZ}LJ{A8AzlFbr zXUBiRL&=02b%k!@kHfCPN}I&TuHs|yt|*?>a7W3Rg+hUjGj8?*c2|M0la7C%w>AX} z)Hc{l4;Bmjf8WT7UWW+NOsjPL)C05dIrV`PjfZwVxKtFKdm5x)RR^_rZo2tCYCWJ} z=G9Y9y@1)0g$VxH=~w7(gQ`4z1AX&&Mehh+Ou?%f1%7KJ~ zu<3=1U)ZsY3gIK;0chQ5ZKg@b_%RXVp=F8278ggHXjfsfb0?^1D139t`Z(nZXGQ+x z%!0EcL#SBGfO$Lj2d%-en}4-@OUbDx1QQqJw7E2Y`DNka2X@X1(4bPYw(-yx3@yU1 z&8{1w?9`(n+5HA$UY+7@MiO--3S2)@tK{|B$pKU*1*k02LGGvmzGlbq+8`yYu0^cq zU%*py>Zu~Df4#bE+DyHYTDUmvmZ5^v2+Jr;f`))XW^JUvGT{*buQTY5QJkEj@v(f$;Om z_?d-P@v-0d0(?jZ;=Uc}dWyT=%)`p+pMRZAoJLHNILR!adK&uw%n z8B;Fyk%?cpznXWLR;kmI7c6NWQ4^d)H{V}BYA>^LR z+4lTj2XIS+yC^%pV9PnQ&nT?Ub+2z$bH%VgEfP>|cSuSpD~4GN|6-GD@Mw%S z1@{WPq+9Vb`|Gl)_rllBQGsP3e_Zdb2=r5}Wb^SgJ<8Sjs3V}s!gw*y8aP?cPAVk ziS=S_B@zd1{$nPmugR@4RDk`wtp!P~6+=jhC|meNJUn6QOrYM&a0uAiJ3HwwN-!=5{DgXaf< z2qAK(>6>wZxg9l8$&)6ux(+tM<9T7D_Ryo|NE){kiHG5pGm2lmKzxi7p8(f$ypF); z?a^>abhYG){_U0Y-7cvwt$RVO%lxo_wg+AaC~n~nQEnMPb^-0;x58t*w5AeWH`+^R zP+y1YfTP@aW$m|qqwJ7{1Si#z1!>2n?2TO>I0};g4#{q3c7nrdAN~gG^jn(+W`8w5(p4Y!71LDcsUjQXS%u`mG zL-Tsg>|t6!Q;>Y^Z402s`I6!Hjdvc6AkjydS#&S$HrbZi!8@Jql3DRx)Az&g*O{N^ z1+)#M<1sG;c0E$u*G<~~x?XZrzSwD#AGEVIyKu4Oiz?~n@h$uuy29k~nu^$I=#eGO zP5@ZC>pec!BT<3-$16m}L)oJE+*>6k#l!D~VQZj1hzh-cTTLWJ6H{}mPZ(L{N&;nH2XTlc)bE8T1Nl&L{CXWxN+Da0{0AzHw3!&EpjA7SGEQhK0L;k3ILk z$nhbYPGud>jcwr%@DPv09p#yYV}UcfuK>Y;yvR*^5S5j~jaVCEabzHRyje~4-adrIQ*3Nr$&r$x3dI#JA6y@OB-{Doc zFL7dpzfrY_4~n1q-pH$WMo;qB^LJi=7;hAqYx37;?`8fD822SLUN$ejyAPaql}r1` zP@os01)fy4wFGaq-);Xg(b4VFf z(nP%l4=ROW;HfY^r$SIG70{t9DN8KmOeQH-wlIda^uizE)0Vp5I-db7HjJb~%Jhxc ze3VarvHDg?_O0T(k`rcEqS^=SjHdBk4@josV{ZlZ#s6j~C;cHMm9Sr4TpBrNO}0%yQaqAMCv|xN9kmbWyk9gG^Kt23*X+wN~es%3L{_7 zh#kNENm*gQS4gTY-6e&!4V2~eWnqZDkL?^24n6!r!N?!(q#%;j zS!g*-4q7gjXy5zO;Vht3wGRX>nwPmWzk~Z4GOtBH_b$b`LN%g+Msx+Mamkl9`CiBC zx}TD?9*B-97GSKC1TuwmgSw&1(C!4EV=M#oir~V^@`vh?T%S4rKx-%f`qC3vq-NO$>EmEGp=_%=tH?2HXWQ(HjBW9!(P(R z%-Mk2z;y9OKFXJUqnU*U|5LWVw%06YJfs&77Y4P&L`*gI#57uz5+$}Tdb4_41C;}R zv%l9qz=1B>0jKt@nq0V=Q4Gfbp+h3vJnosr_6h`RUwpU7IM`WxyZdMla;n^wTmrFx z?*EkD&2ieA8PVZ_Xi;H7lcp(xMk%rb9f5zTYRVfAjRH<3)M_~G zBC6bO`foZ1<0l^8p{wC9nHaT2J5&O=@*qCvVQZ(Q{5UVqXG&4(X4}BF_*fs=-h%za z*1GWxl_4oDEIdwJgBg*E2yS_U{M)bjHV32j^Dub{aA~j&>BvboDJOjw5nek2#TO*( zG-T+nb5*9SgyBag1m+Mk3;$i3*?E7XOkI0J@68!?!`M}e;=5kLd_2ct3ug;M5&C?ra*D zmu67aj5fTc_enK^!dA&++3KJrI@6@jKY@*BWm+vI+J{sXfZ!b*F&g+uufJ8KM4f>>_ zPW?Mj9G&2O@IHW5^EzsfhVZ|Gs66md<+7M>d0;rdS$(vC-~7^^+0V-#-8a2w4sqwIvVczR~0Yq*PB=kt6ps~y_wkb z+igf6Ho-@0cxR>K$AK4x08-Gh-f52l2*3!yT=Dew&Mw*k$a0bD-dStUof{zz^n!Wd z9I8Y*!K?qvW%JoJ+6j%^Yot8aYyuVY=vpqASE7PD9{%#(Tzvi3=J$AQO^BaoqGe(Yn7 zLp?>s!2g_&uTSReUxU7k2@SSh52-y9o|^s7yDsl@ zSB9EqD32p35+pLVYNyHz(#>^o&DPPuaUan3;Od%+(#3_1_QYlSk8PtsHTn&fVCM!EJZ z7wGMiGW%2Ld9}+oT=*;m=)IGfi80mx;5VQoC;V^xD;Q%d$lDS;>;I$~U0{P)cg0J_ z=1ESNuV<$qK)qa_3!!>7Sy%qnGZG_HFc~t{YH!Ppm^_VF0?Ve( z{=8m(z_DSJQCP6bbbi|sSp&f%a+$t#?ZnaIUAd(53q{y>hv`}L`nJ!4Cb@^t`r z_qV9OOJFlOn<&%+sA(dRU>}$;&qgXzOXU8eq!K_$pefn zaoTCqnzKg7`O=gH{=eRbC+#zF_<;l6#USC{pr&;eCdR!%`TXiljm2iwqD?Mp6`DtC z2^QwU?lV6|F${6^3Yb=C(qLfT!3ceiD2CTb19Te z#3Vt5KUGN3j!+)^9P_`L7@=s{em|sXiFyA1&B#P4E{-G|Eeut0oDsd9{QC>VbBgwd z@N4DkSC$JdkLlz)Z(;3*cn$VcGjcw`S8mQM9H|v9S^)uo?Ra>4QH?2xWn&G9kJ(Gz zH;eCTKaKeCI?Vw%aX7ql^ILoWo6ux-La zhSrb+A3RZ`VR+m+MCG*M@~M!BQK!*r>^tTP17CN*8}D zo%;lKOw zQuubaj6V8|Qpa7%=!w}lbDP2GtuzHbdl!G_u&$pCc;PJ6;lXWD!uZ_{-I6Rc)0aZG zt`z(zrosw|ybQ4|)H*h3di8%;0FSAn>DwL}p#zVQTVdfux@|?TS`x6Vnnf$(nhuR? z+ar>$sdEu$%{uDDHxlr?*&;+b9>Ebin9Ps51QZJ}_Uo55Sf3E-{BX)(`*Jq$0qV>F zXXW&>h_@kjCbO@4MU90byhNnMRaLTCn0s#PVcxHhCo3&EQt?h8UMlW_iGB-Z0c&+KtZmBJfYhy9JSSkx1Y zVyr%m?~ukzje$c2^hs=9w!K1f5l|L$ITi>+GY&j$bOLI<9GcVA+2_l12=g%|4XCs; zxMVCxHRIbfEFRA3)U%0);_vNPY(A>-L!;0W3GhZjfaMB3Vf9^DduKZcO)Mfr`>CThWFaiB7MK ztE;uHsc?JvUw@T)KJ7K!#m}in4d1%ixYtW7P;4{}!_rN9#ESu6@3s!f!1<4S#{@^>{KJu}Lga$qMWB;ITvpWjT#7YPl|``7!3wGR zfpE&y>Z4~bEBkSPi~RXSwG=mWHJUB?zONoomY74dzR!#iMG}X-tJJ#Z5riC|x^(FB zX{!3j^L5!Lb$+zfJ==YYJVI|U@Y;pJQp7c`3jxe__?^NblZjrQEW+aM{-wg$_Yw!0aT=p2xR4U)*I9v}0o!Y2Fc`ru5^JiDI7?~HuyUsjik z0WG`zDf8)n;YPM>q;ZcbS`Z;Izf;E}WgMG}x@MK3B|7o&+X--o&;9j>)XjD5cFBda zt)8E(kZCwVb`yYO-b45ShVEsCdN^3i!bDYF+<1tjIaP|&fCP|SS^T=U zUwK{>4nHWUCU~AvHyRspwOf4_A>+xeZpv*b^xA5@wJ@hut(w3W8uAkQy}!Ln2EFbV zl!vQLJL-P6^JKo5?2E? z8M%n4VDRrGvXGA<@Sh(3;I&!;^Hb(Qh9!RL6`IMX;jPNupivtn3yxqyCwN_F{Prm% zm6%%3sokZl8_`uAxTOymeiprDf?I9n4&wDs1LfaEpvHDGjXT!4cRR(Cr40(84d0=JI8;~lk?Yx}A#N4sIA(ixXd zx5cgIgK>YrE{(?7enDV^d~nC>g9NxXl^kqZNZmB8QQdebT|~~k%&yJ)$dDwzaK!WZ z5br@4*E|Y~`VZ&tgIp~pPeq2H)FNDaX|Qf(C$|>PPIXvoj94G}kyJuWCEbYGokGU&>j{1fycK`P3r5~wH&m>Q3LRpodC1w_oBo&|ID!d5n0dIGwTlm=49PHO~ z10E;yPSp=5%yX150@EIoj~Q~c1N~+HL5jBvND@46gG{3nl%PVce#7tLJ#(vfUQ6L) z3FBwAojxYx{MEx3m-;s}mJP!FspTpOeYAo)IvEywlE-B-g29Xk>GiW=5*1@|7aVb( zu>zeJ(hwQO+Z4ThiLPlo9jvN;)!b%6Yo-r_&#+h0E-4-!GQ*Fn0LE`g2w&@pr`lB zJX{px%I^{rHZKH+?4hhyXapQ6yl3+)k!kJwBa;fgsahLg()x+|?45j@R|jdG1pF=I z?ClF1-H+zYwJnKgb#mr=mxKi_0r?zL`oTsSML&;U?Yar=oC-{%m$^^!Qtud0f4 zB5|d-SJ$$Ok4fw@YSen~p_GX7hSrYpR{X@$lV-r$-sI%FjrSDN%a+I|GziEhEUIjS zTPwIjg0D7H#xdlAuMfiICYM|8m7RDmu;yAJwPPZl{4N6?ghK@c)t|-~m1A3LUbw4e zcr6^d&Mfqa&cx{VrMT0FOV27>3;Zm@6Ah}WZ62*2cL(TOBI`h> z@eWne_u2{L9#^ATlVf|i)$xdF;%7DOUd_muU-Dh4)FvJ4z9WfJh1;hx77@2gafUNT zU^zDRxTa54WKlwGpPFVryHxIDIT803v|n(uR87oFvy@(7CJa8#ItI$3vUsn(7PU&j zN~wdEz*EQ{xIpI%vv@c^h#Sff**ExwS%1jaJem7XyGzk}A2DY~&z&CyOm!CKg@2qyu-7K&mo^0KB zO#g1>Y&*1>3ETO?&)o?OwU|ZN4|8#ZC}t5+FY^`%SE(t=kiSBxdOjiMX_~XfY`{SX zQCzR@^M2dm)t~9s0SIsX1=i*s009!NMos|?wLWY}Nj8|U1t&kaGT6vPBUjpABV85@ z-<3JO^;oJd0PH#wXQkO?eRP-9os0UK&jsqEHfI6i?DV^M%}N!|EwUnmfrw}s07b;) zfJ2nLcb4&zF?rS}le$auwL{LDUNo$FdXdZn-SKc~Qpma8RnI$uj}0;kDd+#3a|+|d z8N?)&po}2`-eW!!4%dSU15-=BTBik&?gv6Rtp{kx*m_FJMu+}R2d`!CPHV7WYm}|d zH_@(XhRLf=?ImM)U=FTJp(y(JUaDl;a27epP~<0nd}h%O1P>6Fru2{bW$J2;j1zBG%wq#H9a$aD5{HiOBFTt12=S~!N zgJ_ELZFJa%VKm>EnkVyy+swkG>J+Otw>KhB!pYV|hGTxp z5B`(DP+lVO@s5*^)UkUXC-fI*vfS-*NUFopbdP_PD+ec#5}!MJflUfFvsF=;shGU# zPEFB7p|f3DAOUdbi@s*08h`7rU$j7mVz#UH;&t+;Y2i@U>&vDor&$B9@%w~;9O|>| zTV*fK^yhh%%n-i^32zVt6q;{fs+~)5isgy!Wo11+f3^G znH2Xc#XKr3W7>WEl=T#j2yN_A+xIPb0+hCM2}$j{m^su}DN)UQcUY-QDvMSU(d@d; z)f-j48_f%RVJUEK?P|9zh_3(ulT3`BIz|5Xe;pyy?~XuLBXAnW9+c$&7i5-~40*#&D_b=Ud7l zxpSsyAxl+XC!cA`7O$Rz2yUnp7ghKmo*5M}5X{=UJ9H%K;@mt3*mC;DDphOy#|7UJit?#kR`)`CH-A|bZ z3V(LCE#e)rP}S-_1BXth)Ff);Y8{&8r*NDGh`~?vNz6;rF?!41OZSGht|Z?~Sy?4Z z5_+|APZWH7A9s%?7M>ejm!P;5z1ggrAL!5~pSdJ43ef}RC#R}X2kUPEiGq}rbN3Y{@ z?=OZP!udb06B>U~*8N`Sp`n-|EUH0vx90_F4UoJ9c}!kAzwudfH<;MDFSl|YSq5tv zSzP}8>p|$iRx~&+V)k+0lzZ9K8A{_8Pbf5yHyY=EG$8Lf^GEn+60+x8P6<`vFt(NgyGfQ ziMHdusEI_>I^lAP!$saWxJ%G+T#ly?d!-jJJC7Iwx<_fWG>|o*4qv$4S<1N^9=n#= z@oDpy*)%4R|64ZzXXj!sv9&Iz*~Pa&F*V*IwWr)Erof!bZVF|2{i@^{>uY6op#r zUfC2Y89t@vbXO;1*oc_%R#|b%rguVDU8+ko6t!gj%z}6>F+2nH*8C*ozay1%UBkC? z13QNVZDLzNq0o2!*MNx%fS@oP+R?z%lTX!j)uMj8-j8}LU0I7-`|f$(KH(QOq+KmQ zCcLBDICop=A)j|>Sgc!7DBX|BC!^h8*zqcT4VvHVoA|oaR43H-HIALCxYSL@ERmyl z?#ho{0-?#FvwvUHDD;D)H55U9?9C=+o({C1a>AjUlr?mW@70vm_=wFqdj{8tB*fvp zzSwcN85nuxnEk9&4BSP}vGcnc-%Tjt#*k7MO7)Woumora@QEDoTAaTVX*2{OP#kvXQ|gGy5>#zQn$qot>H-{2 zY;&9>R9}O<`h4(A&=b_!-TBG1&F0RJKZ!d|NDs+W&9!Ii%_B^|A$kxS#Jmu_V4+=K zgW4|df0+%YZg*B%EqEbLF+J2+N^Vx z%~BRgKVt=8?t;P5pPJO>h1#`qG~|HNq|4!tZu{^bo4&G&hRJvNQ+a|3Zaz;>41vuh z<-XTjkFL?PUFM57Q(NxEkAYgZ9j&IQOVbJ$@8&*vnT7M$`qtV#ae{a0Yfu8XQkxg3 zRNL@gkagK|q@7N%{vW1#@WHRNP72Q7su$0^o^k?01P73ZEXO|V(2`Nq&)q7AK_mVZC5HopeoeZNg^KQJIE!V-y0 z)fM(_s>t=&2iEL9eVTFd_nD&l&fv3a2#<4z0J#YYsp||ZHM)e;AXNTH$5ibPmWXyE zl{&G>{G>vM{<*Uum|_@WsL3pznD|Y~EP0rwIZv(KaJ#Gdpd&+5&A(FDB+tb>eqE0GXFE6b;WR3lu);+SfQIA z_o@IrqE9KYxJi*tzTY;`jn~8EO7vd>5T8M&)6|r;ggx>An%j}Ioi#3X zy-&3upw(rs=O%|X#|+giX+(t6FBIEx>mC|g{m&3T0{9!;hPdd-g+w75>W86p-%i`i zR8_zyrqIr&#tjZl04RNK1M^+&dOAa>gz?aIA?Vh1_?&wi#bS8Ex#k4Te=VA)b2^Ce zepwd%v8j*~=P!R!N$$0mktk1z<|+Ngug3J_yY!W}n;XK3s6I``m1hxJXGQHEwtNRK z@ug$@f(AtXKtk<6mi(4pZ5{<&QQwvYdp!V1zzem65vDB}+K4}^put~i6+d&7h)Oei zBw%Pa+nPVSAOwK3Nw*x|YTYDCB!2Wm&T#W1Tvk8d-f4Mqm4@fbfLq2X;4z*~Wp?yG z#C#Lsm*_)lE$T2{uTX2s$kigW4W|9-JntNeFb>T^t?n&Z3tOrrU4{h;Ib6IM(X6Tt zYP}RO`~Aw6b6HkY#CAn#%Mum^oGcc#1`L7srRHUP*wS?XF?K6?_sr==FPH;+JdNWx zT?QFeM4vtb$Pnn`3b;y%88`ti_m@Y31?J5hqhV$id~3K$*F!6KpD_pUY%X;jULePm;zGc# zk$no^7(?MTQ>vG1yG0Dm01l5V7FZw5Vly9vSX=Z=F0-!r+b_!-fS?Dfg?RZAWq`N<6{A7AQ? z6SJHwhLw@IcIk(JTb^a*6wHqf6Y)ix*;8w!6&BN{lpWkz06CGHQEOg+kS512^YX_; zT#ANkrF`Mht*1ta`NmWMF_QN9tZyRr74G$+=$w~~uu<4=&vJgl7=2e?L-4W|Z~-S# zeDMz^li~RBhpB6>$>o(C-u?h<*9y!%cCtQyK@&$P$Lf{RK075>2mNjVXjB(v@BCD@ zT0D=U_S^*BYP4I%w6MC4Y89cJs!7r}(aipfyj}`j{13kp_xFVHx|-m}CvdBds4)~K z?6BF)9~w?|iB(-E@tZYXeH`dM0P+3CHnJgPfkxNO1W+%7@#EIQ`=bEVCK9m9O*|3J zd2K$qeA@uHiqn+d2TEqPr( z3OEqQj3jW%76kH)z_o6(#|l~!pVrj_fh%bb=CL8XKU94aFIggq;8ITYPM)=* zrpDyd-czML>`k2;Z)ISmT`rErXc&N8I@pMmUUe5+4V34aT94UD1+Gead@E~e2lk1B=h*5u zvLzMSr1|Fg7w^_@1o|!rhz{0Qaa2kyPvt{W_dVY5sXyI`&oO^A(iKp=qxd1%*ePMM zK&s<4C#LM`JkQT9CF6deD73Lca>KNE)H~1X0qp_3;M>e$*AhWt;CCAvq~!RbzY$?P z64T4@b*MZK7;!~056CWc%Y@`oZt|wF*u${=0E-878;%RCqJytJr5vZGk~z)+*kfWs zZOE%oS$eE3fL?scd_ULd*bnx7_ zt*gKdCb~Z&#@v<~WuRMR68^m3u%rq&=WnRFth#>En3OM?ZOv$CM?UwOZ$nkD9HLjP zh{?|SW{#keB4BRTR@Z+3GqAVEeQKj$*Exc!J>~e^>6A3%Djj*>5JSoim^K~(2UKX- z0FZr|pW9kN*)&3nH#4fnxh++FX&0@u0W4n$(Ei=)R}RFcvZ;LKslGI~#Gm?<`Fk(0 ztUK@Ufi#*61xT-oPTZipQPAR62mDaZUu5b?pfx_J-9df+H}H4@7G-*~g-Kq=neius z<%`x3pMa!2lAAsdYZ(yYzRZhmaUjWPfJ{P*O*zDTR!cw~Pn!gF1s{yQLuNGC%&!-+T{9!x*U)$s2zq@DR(OM4RLwj0MwS)`_6(rI z<=?y*(Xc#5n2fA2_D9iqBFBS8O&dU{bJwC5&i3NJ{VB~P3*FuqxU5P|tXWSTiq9elsND!D{z|B~3 z-Jn-K&#HC`!-Gqe)uG6QtG9P(oqFzsYU8R9ioR%}O8W(n*d-Vi2nb1t$j8d4I%5Hw zT3&e;C^rzCSFtF&eLtW{r`5?t#lI~mJwU*HL2T)ksvMPv{?z7S0rlY*F6h(v583=5 z7Qpgk#}Zj%Hg7|3JfJ~O8~B>qf49s^u@yDfk;3ymE51FVomN`dac`y-eI-$WlP`=TXYt$kR) zE>DDi3VP3d;Kcw4s>31*LI`D_+*hA_gcx^wVEtL7xgtl%D}k%h<+<|<&M{amy`Uo% za5K)LmfJOgMet20P{-qVDz852Of8=OzKqufl+4-JpodoSO_X@K_y@rzf^gHqTOz%@^lCxC9+_FspM96)~83g(480s&dO6R^~)8-`yLmD7^bg3 z1Fyfir0sfH-aGEQvBMDX=W zvc^t0htb9GlBXZY&qm<2p-scTe>A((w|v?aC09%xlPgB!@I#k1dSi)N29uW>&afOmEp<&+!B98}kw1;(<+7!KuXofaGp^ocsNX#Qie67|Q5$ zSm&782t_#JT&{)GjWmVxj=zL-Z&K+}F;M9g&~oWqhV7OlzWvciD;mx#;~@RUvGc0g z<>$iZ--6w8!1*Q%&HBl#XHt$&5!KFPD=q=+Sq<|&ll$A7^-0F5Q;J@mF6+|=J!(17 z%%^?u_`ddM>0>YY8W_-1fBLlcNO{K~mbVb|DMGrk({Ih(Yx=t?YN!c$a1KjW-n~2c z_kF3kP)3x&0?61xWjJw;=qqyi*8IIH;7|7?ZsBh{GKKpj4V8u)CpfyGuqX@A1W<+~ zGQ~QK$}V|5(P(+9d4-!52e0nLXk48?Uq*E)09#?zAbdsQ9i47!;iJze{-Fl4 z@a0U~;XJzew_h(mD?sn!d2&V>W!Q?J&|7jY_^Nk9`WdqF^5>q6#1z-X(Od35TRgA} z!BSdoINUOdmvdicA5v3GeNAsUnvw1~IXo+ISy5J3l*15gXh{42wD;csRR8ZExN}a( zPCE8XQHbmjQBs67%*>1izlt z`27pM{nCwkKA(?yjr(=Ku1lv-v(}z5^)ajrIy|C8U;K>q&d1aK$h7CBw@(bpH7doH znqQm>=DPPyi?-sA!c23*qGBxr-b^%el%MdcU-g=!5AZ-fzqW|_;$c^C^a^ktGseL( z#$-t2>?Nu{+%dp=r81f?sT${Jqk@507A^L>Lt7Do{mpy+^jUcIHOGDf#IEo=Wc``) zXx59ps|BzRPZ`Z4=eqhKQ9SFdar3QKNZb2o6ff2VYq6_!s~BT=`9s40jbEesTA?l2 z@>{^VC_%PpM?Z`)XQX`{G5AsAlp5yZ9GuqvJg>St!U*VU-<@Z`{V~VsARlYfKWrYs z>!hHL)URyee%HhlAs-p#5nUVZCz#`QMiELNT$8rv1-4khiDAY8oGj!> z{+zjusK^1aZ1FcW_L?rO6g!VX>ZGEV=Y{iQ4-)zzHv@sLJ6&UygEh8tDF^G2Rr~Z} zF|nf3{%|y@D1(u#X=YeLG&^&(1~`pRZ(sW}zne<^BkrpAjkTs11L_W_Nt|L%JbF$J zCi#EQ&09UC#aTW@pYxG0dfAJDKprck^g&%3ZuEp#;Lbn`uu}34D2q^U!+C8Ggs7L?_vg6 zl9%2g6@`1bPI;N-0on(%XJ_9EGuWFdOfA z=lvvqgRtWVGgE^r`p3&p^%&B%)s!cKy*!)7Q|yozh-gR-^6m1!GHxonzoM!3mFO?c zn)q)Y9z!J4;zYqH>XEO+b~PmI5-y~T@`0=3ya?8_rnkwZW&SGtIYT}oy8Es|@*k{1 z`NI#VQ*hW0_PyqFa>@2Gb}n>j&y8Jb>#DT8Ow)gU0gwH?X_s&xQ6_b@jmBV&$ekN% z>Z5$Za=|sqdOw;~RO~gmbm;CH&{l-L#4oZ`JU1@QhNdCx5?p44BFqLs4F z8LHC5`$*|TW=KCAmq^?6^&A!VEHuYq=X*|n_%5F2$8L-{8GIkSro}u|yfni`VO7<2z*AI3G`eCo{dPQ-qeaePeC!`GX&;Wg^r4sD!WzS2)TfB(1uUNE~mDRt6H zowh>3;<%OkY@K0<-`UgTLFNiqtQ>6F0^A8*DX$k>d+2ak>zoAfv>y+0)3@U0RRx#p zFCIM}{C-TLn5djK-FLbJdk^e}AbCfut@&gMrIg;Z-aZpm@3cU3;mz5nk)p+Mbw}$k zQAn&Pwcj1}`j1&EH)$(&-U?{ZYk8cO|89h!g)Ch6BL$bS*3c!E#$*0>EtS7WsuJxV zCk-e81MeaO(1W*Q7oRj#+6S*6E^y~3fp_F4J&FTIwFZA91;sI*t=)$?nex${Mrs_p zQ;Jks(;adl9=y*S zi0!naHwI04#T?_Zgt+}=mI4DUl#p59*!x}lz`YS%>v+Ti6Vc+$u)2Q8eb3E)h}g_9 z*nfQpACT3+!aMKZIC@i{OTrEdR@_E(dDw6~Morxl!33h_F*;UY)tiNyyhfbuvp$|b z-M1Ypjb1OfdGA9{AGq#sp{9!VStxi9R@+i>aaOtb&6QNf2*WyQ@?VC0OXNsBr zjPwEt%MGtC^DzTLsneI-uZC-$e>i+sr7whsSyrR*(B{90xcSid#a-8IBD4nx^!o$N z+}Yf2Of}#9zQ5(p$DmpEHjC$R4^E$M3sSvU6t~_|vn1^Cg1D>EIr#J788~d6kB(-} zW4<-|a?OTAyE#9|#?4saosj|FgM-oB4IBbjg()#ZRj%l`2hIy{AWxCp_s?Lzulow_z0qLz!hUZDL!3*422T)!T$J$EO2by>Q4 zIZxt?*|XF8x{5+%;gwa^U=Bq{S|1H(kCTI&YTuxy%#w7bK$}8L83bs8RQ!=Poo1Mu zsnMvo=rFNjt`qDo#byD!VOc1}_KZJvtNdzOgPEg|7+8Vd%VNm*(RZpC1YR@MoMJJB zz33Mi>rz#Q2LUjzXuQ{54~slf3m!+xzY;(%zp@y@t(j>nxMSsO;tD?R=q}K-J+DH} z=gP0(EsyDoobF49_dsPNU0!g0-K5@{U81iA zYV^X1dk{CqY6tL*&9Q#SM}JXr>!J<&mUDT$pQn>uOTTJVrY;_6xH4I|)tGSc>BDP# zwpaLRD=z#!WJ-5p<^x^KW~J*8d@3DRoe_L`h$$l zYoD;jm?ytDt=`P#SSChs9_w?5_*|GAJL`|+9A!6G^MC#z?E`Ek87NaVF3H&(%akd^ znwf{3JmBD<;75BS?N9T)vrTC!^6crhv6HsP*8hEhw!#H7RiLdfaRGDfvFGnkQ}^GS zWNMJ>qO&B5-*l`w)j2Ot#slM}d9YW^*C&unu^mvhR3ie*=*`&xsQsTXd0_u*)E8wm z^?l_#E5}Hj@I%(ax+zte8gLbDBYSB(>#jF9Yya5A=qhh7%{*3wxy{;3*r5VMSM+wf z5OO`7OATVxH^2(|fRm{aTl$a${SaU6JRhIl2oQnZYqopuY3x594?S9L@){UPCjO_A zNz6>wvN6@|ZM<~U*|dbbFj`rz>H$YVQsahK7V2y=JUbPR7M0B7Q;StVuIDz|vWWs4 zz{iaJhfJqgfLbnhmZQ?BEw~*sgnmdCPPI|B8UR5Wu`UcEm?PT*>Ls3N-5h1GP>=7; zquI!+Gw5om=X>Clgj4L#B;NbgxLi@)ZWqV$KiJc@3Hf#31q06^~O|z!yWxYvP z_Duptu468^d&dt47ybPojJBa+epjQp5scmd_c1itKBEc%!q^-^a69!O>)?AG4WjRh z@wBOyweZ2_<5}z@^}gHp4SMJy2P4>>&fA!f1V7KAei3_cN`*$0{8?u|GJJnE5_dIf zJ+l5}wGKgQz{sKoVnKdPjoZ2YHWb_PCAMqYFfEHRAK7-Q`ruYp=lAh93^FT-ez9N>HKl{ zswoYR?p56Zl9AWdiz?M%KJgGS`TIj`0kWRi$D{W|obof)+pbiWKTS;LE^PHz4Y(Q44j=%+?7X-P-2;PHn0J2)xTJ=zU2&OxvaA@!OZbl+N;mrVB-Wo zaou&=I5^(RDq#OK&|gi!V{sz49QY>D+z-NLEdx$f*0SkkBWzhz0W!iqOwYVpRPukW{NgL8FQdgR-B$;v@ zPFe4-$<=iu(Z)GNW->=~<7?Xdbe#>KR)HH;mF*=J;niJB)qI4jJf(K+A+EVT#BwszJH^9my=!A-WY6Ce0F4Ua#&+V2Kgrrx~E{9Ybu2{sICq?Vf)^4(x6Q%kwW zb!nTOIPt4MyR$53-j~1HYC%fzj|l*=NARj#`uV8~FMI0kr8fE$>h?k?2lryUcxKcv z&fpkLq)>`HWi7P4u*T2bt`oX*{5%dcK3u~!E24Ie~!!kEyYZAWvnIGtfl=a6$(*p1B`k-H* z|Fdk1!ApenF8Xcj)Y=Qw&YDp!F`9U|Xd1VEY9KW^+E6+2;3AdPa#dTY-mJdMn zO^!4;D|&^Q@T~BQqR8CmV~$t_>KIWJWg@|Efh~XV7g)M$&9S#whv;?x72i-{4rxl5 z3MmVFuCN=R6GL~uWKfk3y{4&@1hXUt3-*`}ev?dpYt7`&sn)|CpjbEZM}&4J$C5oF zy56NnQbw*$uMvJOdv1zO$~vqtFKoCs@wmWgx_Rs}mXeuTv->gAL{7U?HBh!472b5 zAq9|C&sf=Gyx5(|jD!q{ShJ!y? zm3ON|*o11M(ZUH4RU+%LDIglT*9!kjIN!VSMWVa>vstd6Ebey2OFvH|0&o-J-@tq5 z3-oBEyZ{t+zWs%y?3Y+&0u!i^HYg#uFBnR`*%R)lPzAB+pW`N`Kl3fUWzxpKu56e(fz#k?#dEfhiP@cCkJp6&Gsog|?^ zwcIN?H3O9+Q_M*pVBSlwJw{h^E^$-P{i;{br%!Y?Z7wDgp%IU88Z!RL;XXLSPx#i@ zU9pZ)M8G4Kxo|eLg6wtune2~j-xJqx&5bZ|j`c_D4&Unx4&?~3yj`o<`;=@$lZNz| zCw`vV1m;;QX%^rr>t^-BqIm1qZkS5J<#3puSQkfZG^sCadF;I<*y-8|P+Rre+&Lqf zhf@Qyg2X={iX;oMxQQ&e^4WTK2c)|EG0Y*@?Sm^ZEsrV`Us6&&G+c(p!Z#ku3q zO8#(`BuTV#dq0=!R}PKn~X3Xv+SNLIG=Jr7g9vL^#PND zL`OJDocP^;rR-OZB~EomG*mNPtUal`rxeo*Hlc>|;-G3^vfq1?XE%rwbf9?70qU(m zr?TY4s)sBhK$Dd4v8(FyDZ(-0#7?eXjdbu5Am3RKCmJ7KM;$89SG3*F7=24QZ5kgy ze=wV~{D_`xm*bZ`Bkte%v2H%OuKV!CuZL57`3k|uRZ6Jid5$_&3E6YW@Oz(QO}@lB zr^3sV;XT(I2klK)n5}3-Pofjsr2}cIP8)i@BXbY1(!<)O+M3x^8lOnXMXBS3U?6nZ zeJr$ga51!GaItf1j4#F4`K=LfHm+ntxEf2R^_$;L>U6fGnqG9eGRslmX8^c)X9G0d zdT^Pz=1G(!YW1pfCNkn%{^V%l*#kahnrMQpc;j(_LPlJ(A*m`wh&k5@nn!baJbJFP zDc<{Y4+^bZQ`6$N=0x%Hc#F9sHj4*(q%_lOpw6C-RI=fvDQ-B$E{7|0#2VXaQ~ylQ zBoXC9?ks%Skfo0(2;&If9z-Mc^-}5gl7m@7tB`?1;ZjX3Xm@W@p~NA^?40IRE|iS1 z!o+V2dBj1>o0_Fp@IjI$8{d}7fKQqeJ000zYg6}L^pEkVok4SLdw1ArK5vsC; zVGYj9A6qt`U$f^Lte8Y5!C0#vq?fe&;QBClPU{Q)X}ngBh^lw?!o&$4%B4L+Z;tA! zOlv_kUFEN5BW+=qfyO%4M{i?~2pg@hoe=oI(DNRGn2WnCKCF7F@)oYSjf|ZsmJ-sO z==~#i4-}$RBK-;HFW29JtjpF7YSZ%=?FuevV^Xv@loFcx%&ST@f4p^Zg}6zyTM&ye zP&>bYpIy}jX~L39$F@JAz1_9zHQsu5RkiHHyp>$;PG%s*1lthnY}0h*lg;FKr?;QMN8) zPfP)cv{E%3@ZQ_mdc)GsX=rD37b%R6RZ2;fZWUm?1od!Q29wLp2Db%yFEO5rk zVFW2I2UTx1@mt!MDpWq~P}uNe)dvJtjnZ=6t4wUH$+HXJ`mx@q+bsblWw$%KG>x>8 z33?B+=^w<$8r&=y{DNcy$D6?!w%)hd+8_vjbQJ!fS;xv4akoq26fvg3c{`zXpHz2l z*frX8GZ3T*bBF-L1z~-FZ?LN{qov-H6Fj@`SU{LCsykuSfp=ofLKH?)WQH?inucvV z-3pId&zVW)*8X0^&gN@CNktC+3GQW7f3_Y-agvV<;Bjo;9G{_ND;O@#)zgd&_Z|%4 zBh`qv=(4I^7Xt{BhyYxZ?Wp+tS{Xg`kV(N~aVH$Hy$nRx_f|pkxSY>#tl`_@l1hvj zPAL^Zz^OGP+#;N!R+NXs8O`XY=&1rts0s>=Ma@d#by8as>wjMLqgAsesP$k_IMv|$ z+HadyCo%@qz$uFBX9&CDq{)S+hbSVEbafGlkA&Ah3Q>cr)y(W$Oj6s^WRfz4U#uMK=rEZ^!*eAJUnScQWpySMn@H5V# zU7j!k9@mUkAvUn_6jH-l*}_fNlOEcTT}43DS)`0}Kbw5^YwY^0tsNv>D~q4^V%(?o z5AgBHg>j?|R6JEoKd(3oo=sS9TCs|#D49IIaxH7(Tem~QS4DFr(r%Lu=t2clF5x%dF)D-k!$TkJ+>1xQ+Elk&R>yDJBw4OS{rDL*>qpWj z8PVYaK1AyO9~WTthi~FH6{6CyDT~WlAAY`Le1*e2>5}#nSW_dMA#fo$f702iF5BIp zRwOj`PuMTv`=myCf$ix^;Zt6Y`r7|C8fi;-OtL;%mVRsW;ei0<$LB3=$9I@j%-mjk_pc3c%%Yt=}=&F&AguSoQidySt zt=#TV8F+T9WK(u_8WAd`Jh$E{kWbtVE4T_Q+eawnv?McFkHPG?3~fW-W@xw!&(|qY zNp zGTY(Rw=(mQ?N^Q;$Cy=-#aJ6UE8&KB=f_ z@+;Q>2$QfRj@IVh!K!7U-eE|&BlbOJ2bA|#!dhTD3S*|Ndz3RYAtR-D)%Uak;cC(T z9vm~rDwlhqt zH>Xd}F2Y8D|EY*y-J!Sex~Xbg#r8-G?n6*5MP07whi-nh87> zrW*d^egBe#T_w^hjoMn)&H7W%PVAtSKjc)~Da#(>f)2%R<1D6ul3O!AD=dFW*8eyS zae@uC^AvZdAV;SvH63cUHGr_OHy>qr?JopJ73J-Q0ymJijS1C+-d7Bl3no4dycWW*NP3u(rbTLh&g$xsjRCR%yK zU5`m-W6qu7Pcou>2Mf1XpHcWR^TFZTGLbLut>S4A#xEppF_G({WV*fd_Aiq1H)MYk zyHRlR{y8%~vJXdSheTSQrLAlo9+VJygQb-MGY+7PB0QRp3obqgP1!i!y0#AKhI`+zkx%slMRZiDt#we_Nj~=)Oz&(OS^GgaI`XhSWs< z+x}9C5kqjA^u$SgC_pN*M3nfy-H`82789x>2R#P0P2E4ynjJTTREZcqxi#;ZiaKxS zgmtBW$Z?t7hx`<=J+q66zuyfmwsNX)9MZk@5bWB~Xr{B3g4!N`@KV$0lkIo+Seby| zZhBMCFy$NS>x)pl>W(}0_kj|c$32dZ#u?#9SAe7?VFi)Q#GG+< zTXQ$JZ?`#>*=%+9-4=wk0m1qc{+5SZ$8AD6V!OFtWT~IZg;&UA3k@7`p1NULVbN1l zJL^q#mw{J(bO6KULx~*2EUWw9%{%6=F?#rRH%xJCO&k#rzHnk6 zf!HJ`1Xr=<>bNQkjg0rcXA*E^XlDu41SGn+s_ubEk5ig-x7Y-(y86^)ZhaR#jaWTr zSM)`jA|M+TT5aX|{SsPx`mmss*hUc#A0=oPMCv+(v70x%scFCeP33OoCo+p_(V;0_ zxcN78+fMW^{ZK&~VB}pphuA&`+<=3Ai$c?N<+{zQ(dI8|#eYPT^cjlUZqZ&AQ0p}R zx=EU(2m}>b-(nPaeG7aycv^6q_^Q;N)6`TdAwN9uA>M)IJsMgiZuoIb;Of(g4A$22 zH{WpLhSFsZrAlw-5t)#UbJ^ZE58K)Y7y0{_g%L_@L42=&P$~Qf1X~m<``zZPKiTBI z;-aub#k#Usa=nDDf6$E;mJdDihxE^IBCoROsUTFNR$l^$0cJCCXSG?y zB|lCx%1fp}!s8-Dr6*OnG75613f(MZY0>_TWk1TQj1>~U3*$FODLf~wSEs}^E;S4; zR!lAnJEagN+qzR2b8p7&JuryMv_8hquNG~*mZTMytuln^J%FtwP8Zx7o0GOhb0&Snx)L*lFA^Mhk6SF!+*dyRMX z0>%@b@QB^}ijISx;f6YzFGw+b&vvnDDCk%5Ie@54Lxn2sr4~n>D48^_)wXhV`7?Yi z`j>uU#=qJ)C)`yU4Cm;7ZXX@*rbMEXZ;|&;{&KPIkT#JaS6kxS(tKopJ9KyyV;i*} zM*p#eiF%ok`|1p@K?KeA8ACdcbkWkgrWHCmT!Teb$zmUoZb)^!^GskjuwK(3ADl}D zM_Xc1y({Jfd6W3F)-Aboea9BWKjS9W6iXJKqTa@dLg)=RWL!8T%8a(zLB0@ zX^>>CpHIltC@KmTw5JJ}@Gyh)*ye=CJA2OU19*FqAt?oJ2|cv*sf}r(NB>;gqm0^$ zL(mYAjWxfegIYA zmQ0u(5w@_zclJ`5AG(o~eJk(#uh=^wx@m-t=W2fp5Fs(jw}|>D+hmSvlIoHy+kTf| z*XRQj>gu%V7fna2mhFCrH-8CtI^z4>X)L-*|IR9l+rsB`9PdCSG&H?p#BXAh3#dtw ze%bh{yB@RcN;7j)tU|Ee#5(C&QzgoptY0qCjCt3;gJMe-yQ3`i^7;tVNZo&Ag}pKq z7;Fm=h>W(K>rZj=TEkGevg{bDs$KAh!s`5AFfZ9UaAHO>M-Nqr2w3-E17FMPwxwN! zyj!1pgnSD?qC^h@r|zTXK6e7U&K02p{1&;oX5d#LH_1P82KbrC>y!7ZD$(yWqw~8| ze;OLB*i*7Gzwe(6PMVEVw}i=v877Jt;_`2k8HEkkP8;3=z9xMItTiR5m_ZQMYKxUz zv@or>Qm;?XqVo1Xa$yn}uuz2A{T7bxAD{t<^A8C+iN`Ww%$ntQ|I9@i<}vhpA+|ZF z#TrJmiKjXI_^Z9LW6iXCS6rzpb6t1|z7t%q@y3E6#m?RXre4f?;kiEYcx{Qza(x}R ziGh$CNtBhq&#^;Y)Vzuyj`kfB0pKVzROn~5CMh&m5J!bw{lmJ|DOB!Y5A~Os`xr=4% zZ0EcJ%52RiSmo;R852J5=~C&8Xrz&$4Tr15#)E4RwOTpp(UudlC8ni(Z8q>$q%vE^hi%U4 z(3*!oIls`S!Y?Ik4B65QSEzJEVlE-AbyF?iNo`FE7P?tEjP4B7=Iyx-C_#AO=g4J# zeYz{A6;SHy**i)7wZq$=H$$)F5%asbmg_C=MeyI<7Ae2h+_!%PbAuF?Rj7vUwk0eF zuc9)o<7D_BD!&g>XKroJIjel}Yc716j>>jX#+%>b=OAXUuVPC-vFEUxjSzV5Wsm@% z;Aqx2BIox{agSntM>}E}jSeqJ=0&1Kt%@vB9(t+yJ7I{sSrd`AjaJ0>Mt(@;R59`4 zAZ8x*8^HT9K1)xx)VKB;n3M_xr-#8hng)>YiADdkDpxIe%ZCV_Y7TENlR4HVp_%N4 z#`og4k0Z8K!j(uOTFZg{u@gKPfB6<+kP!9tN6-4~__GOKH9WF~eWar|Q7RqF_H=_^ zop*$*O|a{s*aJ(3t;v`D5Z82gl@obYD@n}o@|}YnnYrwCvw1Z_eW4!ZSDb|pclddy zSAw)tT3OV}*p4GCpGe5wySYozL;?@FUf(RVZ1XNAzFRU7#L& z>)2@4|C70sPVR#?40=ZHKR_g9j7Fm>k#SdvE;WzI2{k(=WLJMg1Ex3pxVq4^vT@zu z68Tj7!~K)+s=U&P0&g>d{sNV0_1zUon~v9~st11ZQgt@GWx5UtCJzKjrUO4yV!O)6 z#F2Fpyl(dh3GjroKEcPDitydki{XZ0uUJJ51uKFKVyyCrjl|$~zVOZX@bxaW<2cCF zeIlfHr34dzdG$!Jg!UGsL9VXnDm{+^0)df4!D!&-Wsgphpz?#b4h}m6Th?d+1%6hd z+IX4Kj!%B?NoFZ=@LaEZduAB>2yGjYao&{9KYgGB*i@j#+of5*a$|+<65Z6GY2D&4 zp;T$H9b*OiA;a~vtm*hH*}90pyS1~gjHlnOhElWbcy0&h9r6c3V1M-6=o(>L_UsS=wAG5?G4Z^unu8If9;Y3}I&-g#dYjRH${9O(f~C4&6xv`)lYEI;5RCB| z>!1Q6;Cy>D;W1ghzvyuw&3TfX{9wXMhKqH6q|~bi00yG@laa~tbFDD)9^hF$ChJs` zVnX)jeGP$y{~(Iyion6akAH zYu6+>y`Wbi}1MB!ych|TYFh0WAxK}?SEVZ=Uuix z!D<%HkSb_{jLefFeeheM88f|5M);xlatJ|KShjACuKryA1^E`(VIB2RDB7TOT2;$- zIveZg&1gR5g9(Nw?ws)!b{Tlt;#G3nFe$_3A^l6GCA`#s73RDV((kRwpKm0K)#Fd3 z`~tE{ilBoDrzpRZYk!7WM_t%dKlINd)@jqq*4^k^xrgCo{>4{Mi;2N(_N}BMw!Ig$ zKx#(IRPPkb{V5vxSi$|xy9*e6VpvUP-^Ds~sjy{k?Yodu2UhCGrt{6Zwq@*$r~^YB zeFi!U(wU>`@_T2(m4>Iai7w5}6hmpc?RvjzM)UT5e;Sgxj_AQlh30Yq`x2dtjq6!H zHdK1$hhK=?r>hRbI@lzky-x&3)qdHlA{$Ok(@yX!-TCkfhQ@Hc-(KqW?TC@9vp_T` zSBpjt3N0rg zsp*V&;YbeCO1!NECHji{6KgK{7Di3JWv%ag<mE+MeRdHLr-VTO_xF@ah)8v? zsB@?zmgo27$R!3lmVv?&>*XT>+lO2Z={?=n!WwjCRinCgwvrO}vuss2i&`J$Q{)6p zya7rPG@tgUx+9$tL>zYGSFqszWC(FW!Hz9d)>paAI*LD1ANi@TLZ-?YNL%FGo==6( z5pWGC2RCuePN*=FhORA>6kO@fi9o0(EK$A=(7t(qWIiu77HVfiuz0{hOIGowBlXpK zWqj{dZB%Oy>!U|1Lc3k!#*r6#rAAgL+{~_!Wh;WBM&btjfFoXF_P4d^3XL)O7iFmM z3vC-S=+beDlV-dxOLlYie$orL%rR*?(|18XIrLH^B?Rx?e=p^@3TdT}@KH6Fe=+lb z`fOenAo09v2Fd_FoQZ?cLoGo`x$<)ICDFt8`8`l$%n}=Mf|v4NM?0q6WoNl>2;+h& z#W+Q__MW{CCWZVlgU2dEB%c`?m+v75$;8=Ugp#;-9_nX~B_v3kbcYa(np2p}?pyiZ zFLITy6$-qtXAyJl_DP~1H?kD`x}Q~KK&_tH-W`nlq?>xU>IB-iyz%~B!6UDEXPLd$ z-YGPdLNrs~fKf7&$AWKs9A5NSg0gnud+#f|XWhSm*+Hp8R21=>rmdMW&Rng>Z9j)x z>VIi?eGQA()!=E8>wMPk=Xr@Buzz{&9Haam0(h^497{fQg_|bT_fIjJ%l5d{Q<;-F z2!t{%PLuK%6iJ4Qz4+17A-*qpIaFth~>L z_8k_f23yo9w!7HMtkDg-{q}UWAj7FAvutv%W%2j-&`8+P241Kh0@GP;N#3Fzv>n*1 zo&2_9ltrzG@^PX8n$Lxj%QVfja`kZ<^%TYkng1(zYAO8Yd~M|ImVcl3|hd^-$TXBY?9kv;-EM>X@FJ=N8I`f?a)W2&obSYDMBBn)ghUpH9Ws#U&R+momL4Y+dZZZ zj3l6(pgJMU=rbf&YVUqIs=ROIKr6V==xb(WcJ;fAdc|a#@?){TPaT9jSg_((6Y?_Q z*hWa&?lgSjssmDm{K3EfHhK3&W*A^bnKRo%mXA^8B5gu56n0JFK2OMX_JYSummjr`bQe{OIDb%-2D&q!00Hw&cCb^9ul zoI#Jq33dD-hlVH1Buppm5Z1O{x_&CewEyyrEWu~9(<7#ygdkis5+hbEb#s&@y}I!2 z1Bym2Cz#BMkV{)CU-flUd&-}47@OuKO{cYTWxo)!HgYzGNIow?RzYpELAFurSmFyf z{p{ma<5dwVo^U}i{({{5TP1a%c6?`=sNnwC=prkDk??iHM<eAwW$V?3$iINYt&6X>SQsL6laS;LnHicQ0 zKW=9}uSI?|-8FwO;(%q35c)H5S4yHcX^VVEKHDtuP@CFyxh6O@GZ&yb24e%$4ss!r z9&>0d8=d6iR(k8S6^f+5yds|W5Y`MZcBgv5vyxNH)TXEuE~u9o`Q}wX%SBU)v0N;N zAbx6*uY;{fKq}r)AGV`rS{lt{Kc0S;Z=(2{>`Aq5lH62}c>U%O&Z8ZSityS!5n~g~ zzU{qxf}z+w=fHgTMCmn)h1QZ#<6U+G%0hzD61hp% z7Y9{3H&Y|Ws*YOqoI$>Q?q$}wt5wDm8^_lP9j?^~kC1E-kTLN|e{ZXgD17__Mt>x^ zh3bXQOEz?@L+{;)c&!P!@%`d^-RYmfmp{1w?UDcmTqc@U5s>j3+TD8~pmr^ut_C@@ z%v_+IzT1|hb^m$ED{2Zb>KS^rwnU$y1<`)S7;cYhi^s7aBH}r5Jyiek4`l z+k4l)EdlO6YeS_+vC78cGcy11Bwhh4=LV?K^Nd{!F8X+1u2xHl&mskm0HmEAic%Dq zIWf@b%4_+zh(6tOKTjUQXHew8ht?Y~8fD`uEi5#pCg*ml%=KbbDoi`L%UIcJE6izC zU_lQIZ%|lWeD4}M{B60x{$skq#3vJ z3LgLaHm!qhsw37Eqk|Ds6nMZ{&Eeu}YdH6B)JPv(<&7Lk^+dV4aXF*gPRmG@bd+4lE}Yx{Hoe0xJVkd~_-uO>B|NrK7irpCFd zNBwR5!F-W8QHCKNEo*-7$~xGfAv@0M)_mBe1h=!3aJgMhh!fTl6=gzLQ3(BWVVkdw8jQTA3P&1NO}%T}|v_&W7<|6Sh{2w>?5QFM8j z?0@b@wO2lL*l|_2av&vs6iCzOXq$%S9f1i=9O>{uvb?)eWzf&Jl7dEm&PpoLA3T|E zwHwMx3gD|2aM@_dN)r8huAoRiPjS2JVA($RuB?GzmQyAut2oFcZfHDmtwrKeSh#nANI z9(y?w>dfx$2)1a}0lF*{ZL*j=O6dE=jYMP$d~fJ7pQNM>gB3$)%u<}05me|dx$FUe z774CY)5`sGHUexb6|=AYPWty~d#70|ROLFheCZ+GaB@Wur?)`0so{+#_Gy~^GXp=r z+`Qf!dmf{Np+^Rq%Kch6h*sG3OqkPuRcmi84BK8DWalC@mhLyi{%butU<5n~@{bKZ z+C;g5NXn=gsKGkG3B-3gd=G-I*gY3G7srH#As#*I$cLB1)@fkalVlp2<2b!*SB$4v z+$~%_Vslwr^`6Dhk?N>Z^!$*Dfs(gVbggj;s%WF`e;v4i+>oYCWC3LF=)L--6TXKByQ+`<6r-lKY)cH^_s?%E!XMkW0Ya9d%%LQ#~bLdu0;)&}Ilin2YiM8adMu;hcS4=n;J847^!`M;4`#QUwCqh3eU>^{$Q z0*5Mr(HzL7K2l3*C6C%oEn88;%N%M?<3%KgJJzLw&b5CA)$yR0uV<-`bvyji5$b>x z)Qn;I?fhuKaf0>?@W}j=8!ROJk>`rOY&l}30Xyy{YVawEp0HV<{rOz2J&Y<46*xG} zwR8y?m?{>rHYfY9XI$5Y(<}%t@)yjSXn-6Sz1rC!%qS>P@%HyOA!MUz!@W1gqLNB< zmuXv>%s=99XbP&tD+CwfyZ?2(0~5hP%uWE+r$pFA6fZCGg46P%@XPKz?kTz`V*lCI zKj*{K`tE`F-+9Trq;;PyR=fN8N#Wuo!GWI@mxav!+6az%iKp9V;TSXH)-t2`Ljw6r zEDXuLM=;VRxY)PktHmTG(>kge_jMP}X?$c?Nmgh+ z=bwyv373TJ(a_UeI%cqO+*`pL9K9e6|G%L)_~I_mThY679}NY8IMRQsU|(tn9HmKj zYG>6$2R9X=;!DG5RC9qg^UI11##Ub24`ZNRfL)e2DGZ+|W+=#*q5W@NPfr=;V9VW* z(?EV52c^$Jd`Xa`4TR4*ji%!&JSw>g&6oT$Ouxn&l6A@hp?H=Ygy2Dr#?`~Azk?Y# z269M{P;W zx2enS!Ze%&rdMF)Jy}6{`lCONZ*u%VMO}~}a*EE~38c5u^Be<-d04IsHVmOBZTn+8 z_AxG$S?m;MDU~v{OvYB+L+R^s>}yHunO3l@#LL`oqchiZf9*^WAO(X|hl0qzlIpoZ z6rlG~w-##)>f&b;5CI@bAo410g_`3t7%TlYtay8OfeEPz)1*5v-(GoAVa_=MQ{lF? z%T$U1ZJch=A23=m_ksgrn$a8_%CT)$^Uh9D!~He3mmY_afwwC7bN|zJo+`v!|E-S+ zW=B9|JDK%RK_U;q8dIP(;3SCT zuX<<0qx|0nkLoN7SA<8t=ZAVfz9kfB@nh5=V2?8%bvo9zf5wRCBhNk3NU<& zZRYY^O}tIC`C*hfQ^LXPo)i1=Wd&D<`W@cg9$I(GpZq9*HvWBV;Adk0gMS~qwggI8 zNJ&c$f7^YxrMp?<=pNY4H~%)1Uz`R;Z2sj=o?~VBoB?rGTbqlKkHdV^2xD1JM@~lQhN1 z$WFk5VAZB0TCkbx1Sx8K`KE4a36%Kn|FJV%rIpH5pO#q$n=&j&Ik+>>B97cd)scH( zUW_?6{*C$!qlBH_dhO{B{MQiC@Mx@g;BwrzdS-Y9;p%|nErR;L%X|78_-5HFpuyxx zJuHnK>nkOj?kOPah!AHQA!g{w^8darL_$ip4S-*ElA*G0eAIzY30JQ#y`{ylXt7$+ zS{?PpEpUBj{tEWvg_zMX!~gYo z9)N;j1_8Fg2#xnVs9(I*(=FGrp)u%AP~(J`0ydE08cWvyn#vY}6x0`#U2C@dzFBN# z0rbaB%mC&t2Sw%4$Y&!6Tl{9wi6(TYx>i>2`}GLp|83s&x6m|ZPFrS6Ui7_Lj>0eh oVPgLGFaQ5v|KBU%SiK+dfr(cH>V0g52K>>}xpnRRRl6tu4|~rn!2kdN literal 144678 zcmeFYhg(x!)IE3;0)!AC^bVm)Q$w#(LlrQTNKvGRjwl^eLhk|s(v{v+iu5Kyiu9sX z0YRxs7Zs^aeEnvAGtV=B!k56kH#a2DKI^Q#_uBg$Vljr=R4_Ie0030FI%s16ASGUc z@lY`Fq@SYxi+F-KsTrsNKy4D`neE?qk@h;q1^^Hw2mts905~Du!fyhAFA4y@*#Lk- zCIB#d<+d6r5#J!QyRMA}{``IBca)_P?@)N@Sa=i9I{*D@4Y(;2FZ_Kp&3%k*{gGbx z@8VqC9g#kPUXDmPI~NZC_V)-w{`ZhV!6fCRB&6h}98glk=l|>Rf9^|2|DW69Ca+H@tq2%S|V2<`U;#bK!!b(lL9}`Uw`2RJ*#mmPYfc-uGj|oT= zj4*wMBMuqRMXQ+xeB3?{&UJLcUb+aG4tmxxCXbyua(l0PDYPddSqB<{gzD&^Ar3Zu zL-?X{6&CGxM&!M$*4?NR@}j~`IfX-CGEi1E^_}K^&EIy-P|&JiC_g_B|5u+Uh9{q_ ztgsuo9nTx4_mZ5RTa{I|=8TrSx3bzgAADirJF0wieP`^>SRI#yq})cX_ozJa;H0R$ z=uh~2_4j2kZvf!;-~CbfCXxTW{)@{0;_#0h|BJ)_;_$y5_`f;O^Wh~w#kX1S$}*;L#n6Y;n7LT;=O-ibyR^1pLa{kFHDW8-mB=CTlh;#pQ+^o zfq#LvW#v1ty})Qea=$aHvcm!~Mpunyvo=_yPqnX75s=Z&~#WX^e`zTiCa>6uqM@BWjl&YiWuF0wnI|4A7nHQqyd`7Dt}gMUJ{xtmw0 zeLSBkvfcQg^yq@mnlSJmbS-s>RtEl@vm*ZvPz z8MfZeeZ-cg{ok+~lmNw}W{VRSUWrwD<{o>l_zJ=q!O`mdWMzvf%iVpYM|?qV;Rz=0 zLOcH;sQgSE-8+K|sWoG-!_8%T_fX1^lL$9j&J8<27=9RP=6qonaf}!`=C^vV)<@~N(lb&;H0d8a zLrD3f011MPJPkcmhf=hb^3;YES>)gf1BNN9;_q8AC$pjR4}xBU%O^rZT_&C4wXmB4 zTURGmCLRs_gM)EIlrVbj*?pk&*r-3-`_Bi_8sg_3_o-Y5OV-7i10)Q|6P-IDjjLf2aW7=_>g1=toA*#1Ziy5$ z?Y}&Rw{P0-u+IJ?FE@B+p~#8SOin^lz3N=>LuKW+)=#OWm8M5qQn#kOg-52pnqPjX zt5Fgs#OhjSsSmGo#rYcZ!iI;1gnLv;Ln%0sbb6(R%dv&qehQ1cOyYNXq6f`?C^%Ms zxNIL&=4bXF%W`k!wS%`u-CN`tKsq%XD|X77ZEXK>e0{39MnhRw+duf zRNLF1SKIOfT?tsd-j5QV-)uEvU(wH++H64@AumaSRLPMx>}mO!a1s3tZF_GtQjH^o z3l+ph@wOC5WV*|XifAU=zNc^dywA;gxA{WF!-?ex(b!pt{*-x~Z6saJQn@QbX5 zAj0FOVvqTm%=^Vy5(vkAcS%)J2NWrMSc``hJ}eb-5Hoq^?u^@$P)!qBP0PVc4GzH; zD&%D1&!abfam)KPt7IC%#o$8I1sujkd?L(xYB3DRuq)mh6=xvfc2JVWoo~@2Z`2C3zGN-dy=Nir_EA;NnzY zdt46N6nayeD40%H5A-(+WBM%c2{6qG26ie^9wAki$=Es7wCW9Ih7W{rl7(QQ#b6)5 zz1s>;%Vi#G%Ek)UM#}MXW|y*5Ko@!Ng65WwL*zk~bhJ7kz9B{<0DonV!|Wy>?+Wf^ zEx582!o?Uql6|UPik6D$iLk-5y-2n|@=3g}v|-5Bs|XUjRVp~T^!m}3*6l8HN_X(I za5C_sD=v9Pl=@gMOgK&2%%9Jd?8BxQU{6U`c6>0d1%%glr8xW}*V7Dg8-K0TW8a5# z0ETN|p1KGd2F{I^Ewa!mXJt1K#E|snzK#%wkg0NKlKlE{@6V^`&Y-j;s&7So-n~7y zGjmIX5?E{*d3i*jT4;1BN_>YUCrhR!SIb}Gt_E4=Tv(r3V>{?-bpP$gG9*TCE+Gv1 zvCftV@dk{LT4JKD0|x}5Zqh=gV`MJU1Jl8{8@4qamA-LXDJ^r~+|GU5I#GF@v_691 zBUO>1hL9+_|G?@?Ed@a#1d}fxGC}h%w_H~I%dBa!CHo?raS!m(Z*)iQBf5WWQO;FQ zznq7WCI5cDZT|!KEXl$>hNTB`*Sy?4$;#ERNLqSykFmNASbR0BJ;l3(L6C_B{Mcz~-3c+QI8a)0#k?uY&%cri~zdlen6xFmqZPT8oV(L6IY0#_Fp zk{RNZ5?Lk)kekWE_KnE6{LD(-*PL5H8F%-rUNb4;8whMj=P=8|LcADSOipRyQ}ucz zdx*k=v$}sJTi9P>HP>Dlm#4Z_C2;?iQhn(J77VE%F+m$f@Qjl`2DL>uuYA6^7JW)H z{7qk6+)RI1oDAZa7N=ta7NCqG;8QY%)m~kG#wH{?D8YKU;X0Wlm@tjDwtTWNthIvA zprTE@v_G+vEq%FG=m>1$DoC=ygjG-up0k zpV!-dc}-LYoG(cP@$V5H^>8|uHsDFZor>cD!id4|FFpUwz-}y2isa2{9m_H^lH8Xz z#{+f)B>9Y?bfz{Gn>_pCZ`GDZ*_LLb6=^u;=BuTCxl-#Hb*ZbxI!FbuO**K^*nc3E zeU@Xj#^%G-1Gck!Uj^g#GPyoIe{1`VYVf^Y z43e$T5)Zj9H5eh?dK`Twj&bFyHAA0#4STBs6atJLLHA(Z2$peS?Vi#P;7@*}i(E0;hHBKaKIeF8L6d2q9cToKN}(&Vs+G-npsQscA1ejm zL#gOYyuWOEcke)E0uPV;T4q2pg~#kJp40tIlfmyon9x8M6aNE8p?)F%x%D%6T`0Uy zeLVk|7gd80SpSGuErv$v#5~avkPv*4mB{(#!Ah&sv!Nxd4d-|TNQ*1uN>Sq{NIU|J zU$YYYmyKKQ{mo{VZCMBy0hAbCj`@+Oh5-wh9ACZjE`v*<{>9z%!c$fMC!x+lQ(?vB zY%%?_2nK#g3C_m*$`qNYJ8~r--C}v&75_w-Z^Kcda6+#K3j#cHHcVogZY*!OG2odO z&dg7+;OmfVI{&r~X;Hz0O*JD$Zu4e}GXv|L(v5nu)G$Dr78Ko6D+oT|u!or|zLbTR zK3`aQ;qMtRh;xT1sFr=5_6R)$B|g|9s`dZWHvK!28pR?k3mFn$5GdyZ92&iq+D`<% zX)XJ+Q#93;9bMpdyWF-F4GFU_rFhC41BaQQc_eBk!lnX@^&OyOGLAV{H`e2v=b7TP z9zOPPx42br;q5+KbH#m&f#F8+-mHm;5C{>L!n##%C8?98b*IC2Pv6?KlK6 zn~+bMqHBB|?ZC5sX*y=a14VtMGQR?DZ7^u`RfI{=g*zp+imEijC zb8RmCdSF-d$bnrncO86*J+;7MHiiMU0ujoueKzRt?p}3QvVduFb)fNzyJ}iZ`wc{* z?*P|g2uHO6vn=bU1Z45s!&JPyS&Q~9wzUYjz>jYe;d$Ir)FhV}MGD1D)kp~MbUy^PM}5GK9DMpDM_}vb zvWxXk-I8lPQoW#eaeUBHA#X-AX&W7ev~V7%8kJr?fJHdi0-k;6Y-(zQBe|vk1Ts<= z2`YbL;ca`_Sp3l*e1-l|l2cZW&E@SM2`kfh<}1qlELi_}87qU2&uIwL>wy|bWI5@F z1>s>;^#mQ=6b7`=eRhvJK-AbORe;(zAHqwWLXcJ%e>|Dz;~q}^yw!KHf!WZCWgOHf zwpF+CuYyr05x97+R2~saE$n=#|{mvg|G7j+4izImG4L zsI&OqE1fXb(!#KDwBv+6)&b6#IUO^Z?j`8|Q`B;bKUMV;y5h0>sfXHY=ruWnAB z`I#4@KWTW^^YpH8pYcg~h%Y8NF=?^1v2Q4_y$)2YJ!FVNPnC~&c?y_wk>^#Dqr&rr z6`~=cMk!FLR&*~W&Q`2>#z{XT^D-fVO2Yfoc1l@B?~!ugeBI2Itq=b*5HN8d_G#Hz ztA?)?a2$Z*x_ksl03Ax61FQjgEf)ySCD-w1M1WW`y8;tMNRg^w zfLfK~va0|lOd^v&f#A0LR}wN23v8}b9x33SR8~Ff!S%r7JITWNNa!p%K8|a@ z#|uT%Dw2HRBWMs*uH9a$J-xWwbEp}i&Jb4af}}R`RRj9&X@T3)3!K6Sg1o4s##(H) zB%2O!Ht)wtlSLq8Mw$lPwO4?Vl5Hhd&IQxO&|}R+X{nrAT33P@>%a1NMG0to=KwIs zPmf05S=|QZ69W;H;^i_B5mY}>-h={yH2MKk>gFSlW%|?o$i;WKd>i&ze#v-O-XcWe z_trOk!*V6qm<86$g?9x>jmCq*KOSu_{4RVoOQBx^+2J$(QkX=I=OXCJK~|d*LGKg9 zRL9%RO{6@t-DnY}_y2hP(`{OR&3Ku}(Gu+CZ7frH!bWh#yoW{s1|^2Qvm%eZ2|UZ* zG@Hy^N}M3ERBllnYrkc!{8%&rB{Z@BYBlgq7f3N1zsIbg%@A@@FOjhvu4ir>TXm-^U+u_Ir3lW*D!mO-`H-7&F+SOC= zyd|cZg1maJHyL78!x9A*Pb6pd%#R)_)^;I47+!cNosgDGlQ4uFGWc)?uSA`lgPT=` zeEhHQ93jRnu2k5d>SNXdD~~eP)m$VQ0gR1FbMpZsD)G^wW1O{P+sd!oxQpxj@@v2( z6`2*tD7JSfecwEgnhm5aD$WV%wo)-mj?1vdd3^%<1Q>u|C$ z#k=2+Z`D#~_K3ZVUO0q%}TSO4I9H zQOq|iy+6Wwc784RE@xDD9u-Lh;6s(Wo}jC7X-&?c(pcPozDbBSi#1KC+CmZ5w!%6~ zvOg#x=4vQpludvRV^X;2*{RgRW8T<4@pbcEef|34&Gn{hMFfU%MgoIcWHN#TkwT6X zLRp515~27nD)tdOTS>a98dMlH6rV|*4XDqC4Z$MBh+?US{f7S@@~82f^Iz4Gmu4;# z0RT`W1v_AC|6YY zb&@B%C_wxN2{rinT*py(bdYxXY3(H*ugLcp2t1Sx#nx*kA;X|7ahK*wlovEK^5&5tzFgTwM98v;z2+we^-Zmd7w)& zOel`xFIUJ^SfrWwk0yC)e=X@j3j@IS$`|>{-KwBzBQ?^r1KU28;V<_7N77*FoiD0nTSLrv*`7}WNOrA`JwslF@wcj zF?0pEGzEB^u)&6A$3>X**gXE{_`C_vcn(nWk1ZqJILueMBe` znWQ77=z_eYn@xB^myjt%2&0QI+B{gwk6-sY$q9($jiK$5>nwH{c|FnR3b1yASrfUp z$76bQDCiSjtF+~vTn%`?&g}V?I{yWXKElSv7ztYY`Y7UGXw&~2+O!&kX*H460Gw20 zxk~wBZ-*viDo8tM3uD`n?*OgLGK`5!287GVOHnY6@`b_p3f5FoB# zUYHmPP>Z#R?~}3D1^NzJuLU!2rt4(R5^(M?2_8B-5)d@bS*twJG?O$EQOgsfWh^12 zZOg9)2>RgcA8xm7c)WR}eeVj&B~ZbO>O170*RB&wr6gTaGz(vsgX&^6XZq1%!`^fa z&RV=TEKzlnrdUH#9G*_Oe&-290;eTuU-wuCz^fa@rSOPHbE~0>m%GkE!G7}YnQeE7-{D!n;Rzt4Z$8x+@tEgsipAPs-Jbaz)ADPYectO3=#DWni z4F3EyHl+6QZK%(SZlO{-M!WX~kbEtd{P$X-0pbJ-lrvu9ZN)(@4qgI-mY`ZhT4H#V z5ITzC?0lW;n!T++V?JIYjXzVf8z;*ZJ49lzr^Gqm+VR5rdpa2DA#6Iq1Ux$Vw|2s1^_c z*#^k^D!0*apZ@Cbc9R*I)>Ne-Aap=T%F-@NM41snfgr=Pj=kkPDt5of-;5zc&gHkS<5k5iZfx??XTvZgUDMLEAU{7W`KCf1FfkbWdvf8}~!75ok!A zdODT5&M=7k}=3Dmqk~5$*hMUPQCVZJO|)NjMZ63NT2m4?JeZ~2IoK_T(4^Sq5XCX(K#n#oJX5$x|GMY& z9~z8*(IAXp`jM@hl7@%oXI*vCu;VI}gPg53B|ZFQ)6lt)Pg;j(fW4X%qGOkHDF{t* z>+JuUVGzzktJ0{rd9%S;q$hR&kXU6*jR*yIf6iyuFdZKUr-Lz|Cl;4470gOyUc7m= z7~*H!!j&ljXdobYXG}C07N9Ye?Bj}q&HogGqH#n#`Vr8lmvq+!V!*EIq3H7H&4-k~ z>ux<>Olj4YrZZ9*ERL+QyzKj}k0+j@RXy@a*p{j~(i}Ci@_giUz4cu_Um6P*zZMy$ z-3>FwGYA?pmRdy!!M*e(BnQ&OEb}d=b8g?BRCzQtxu$C7mJDMgdrVdyHXGowCCYg| z&Cy&?d)W8rpVx?n6Rk-Gr>UaQ&d>NMysiN_%maJs5a0PXcPCD=4Cg?CA{_A*Zo|GX z&D`)whdc~MAR#%^xX$$n?PNb4A8{~8o4#}<_@2^YBO{@@Cm^gUBSRN2qykrw-Ds?xPd_X>eCmKmEKgxTxwT<=a8blcn)Z_M=Zx`-AaiqvWj^69F#9P*7%Q`7tx*`mlRE81;aY|DPul+a9+Z z%nOR5sze+-t8z~+EnmHx^X6_QWAw@{4iJmL-0!2kCboU`W4MB)WlCoA7`VZ zn&+f--=ko6l9NYBJbPjkrE1P<(~umk5zYv~Q@#Dq3M0eZ(zFaAUUSLc&j5m|ULVSi z1b$8zx&E{K70%dB0A(6lFy}xR4f^%&%AKP#X>&fjdfbFM0ajT1;QG5;XZ^%wQKBIW zdc=mx<>X|$O10iDgo+=0uWf7jLQWp-(ldb(OjhHg3!j3$3a>>txc6P{69h=oF1a?= z30@;Ays(6X`wug|uX=MODq@I@9#OzpkWWV6e}eWae{wB?m9?1+d0Q|H8dRY$MyBF3 z@sWEW#+L-%8q>0ulc+$bsAPSIFX?!G?cb{9D=8xDz#j5g+sIyYcm-7T7pWEj!?CMFrLgO ztV!7i3P+o(*pNs@faIl(eZFq*B>E<4KAcpwkFDQXN~S=VRy!gyKSG{y7s55{uH`#7 zP1V_&ssNDC#`JqX*1lHjY`gyRpLT5mAJ})o{ADVlf5+z>h1i)Z&swmjy1$Gd4M)Tb zRTNv%if?sKs`InB^_FMx-^i%9L6Z$iKB{2N(eoV_$-Ku~{Neof!k~7X(k5Qhf`3w2 z#|{eyWEci_nm3gI9+9vvC>E&}6IN&_@&s=PU941@_#7SVrYxuNyya_MoiJfH?#W60g?9D<)y!6ENaDx?_( zEo4tD_UhYja9urZ`!QVHxzBL1i>F2gKD-J

aA82t>m3+2%opo773rkNYyurKJoS zCh?o^IR0yz8j8{ooa9;8F1cF%S{-PXm*!C|fKk2!FIEPOG4GxCO=?zRu)Mqq=XaA* zA-H6r)A}_)PYeV)IE@3`hKw_qvxI4eaEpM8eJ^7mOKxSs#t#;>fsK( zJI#J0{2jA7hOL;$Rs7cahA3Z>n5yM+*Q}pi1wzBcjkzu@Dht?yW&^f=5Pcr{KT+K9 z#fRr!3$N*%fsJB8NIo^7YNu}_h@Db?mm_-ib%yKHl*RLLm+Nnw)B#WLfZIVU{Z6(%bwhXP;LFg<{V?l| zz(OulP3@APCtT;UV++4b-$qEA;8W;g5EWX+`Dp%?NR6U-U^t#l>#8UBzqXxW>R%8f zKH&V7%*yrE5MEsE!mi#NZGUce$gI*^el-XeP7wZ59!`@XoRa5VlbmW zE$p!pGKnyWsK}m{Yrb`1k1;UxOM|j2H%(A6=^9|VF{jR4ooIMpxw5{&=d@uk4~xxP zG6_c^{Q=Asp`Ytj`Xh(BPoLir;N`kDe;g=Nhl`M`1?h=ZLPO=&&5XW-had&S9+94^ z`iDS873mRQky)*xd@2TM7WLQV@?Ozr?otNr6CCz66UlqVPn8y@(RQD2Lq;o-24Z|C z?zf2E&?c+c9$^&}urlWi+DX6lTsc&Fr{@06WIzW6CK-PBV)NNOZpOcHQeO58=(l?r zY#q1n{YA-5TpU8D>b*S1-EIBA?N3K=bblnHV(<6Sv`_ZnW{<32e93IsR zlSZMq{QHu8Y{I-Og_crOg`sdfg3h}TUj_^r9)wRCNJoMiZ=_h-sK< zd6YtK>Sv7cRL-@+%1RO5eiau9BWz?=r6nD9f|l9_hw>JaOEXPlD!jj1=){p$6v;AV zII-m$lKnvl#~GI$ZvpGZ=!x;?vn4(pqfM{K>Q`8;M2V#96_ukT#hDOqAAI#o zyW0!RW5~Wl4M?Y!Yf~=EPz2PI-K8EDJv~Kd3F*QM1kI(}bsk>~r{Aj1BSff!KARG3 zfUqYN{Dn%pKZmPRAvFJ15dRi*PKux~wuppeJ8A+Gk|4h9{o$9H|Lzi_>=+{leUQ6E zT;d8zf%r|>qp*h5M;X+?$`hmsHV%4&fQxF~1yvg2yMx)RvzXLK@3E-U@K_xcpl>1V z8pm&R**xrHtEr2Xu5`VvHMuv-u%+~JkWRPq6r&l5sm4>0Y_w#QU-UcEDJ`4QY@N&G zHj?4lS*zXyV)ricOdH71!l9GpGEh<;Cd}nZq&P`HGtOh~D`Tq3+Uf~P9;@#mRytjz zDBp0;8^%d#L~J$V(}2>i5_Bo7!!h^KGN{n+_eaPGs&>VC15h<@^0kRvSFl>Y7|Se_ z>3hA?=QH^A@$_r&8sba^8OGUi_0ptAx43_2n7O~f!M5XwzLYn>-s2pHs0igqn3t*1;~&tj04tS|6SdyGvV zK5<_`GulX|-j0@`HxEw4P0x5rLM=?Oqz*O(DAU)U99oDwubz4fHs(pT_@1toUZ!`O z*@0=M&88TGt$y*63=I zuc6?*Pk&TfTE6In-3hgH6%8vnp6m4B7Q;F!UrX;es4`pm+LY+z0gV1hDkWobW#Szb zu;w#Sx1)m<{jk%5&7uu}*i?YmE3ecYi!(CL6L zt)q=%B8gq;L%PsmSZcZa=hr;Y6pZ9>29JT$%XLljImTtMC9SB5j-`;)_gXwKCll~{ zYN_G;q`@{d%;#mp$rE6q{jzqa$!T!i+Tf#qtIIbPh`!j;j)~8Nt$n*X27a!XpwfAG zajnCH!ciEBBo%)+>9?Mv25e{z!QRQg1f6qSBG30FyU3OkrNK;QMnk|xW# zSvQnCCk;`{2q#~z%S~Wo0*MgdzYnz!X8d>Or!1C|G);Zz7>Xf|kksR!*T>*3R+3EA zoDE7OGWqAPRqO6lWk&%+ZY$I7j2bZ@20MXqae;JW;|jW{bgF3fvc1=H7TL-RS$TJE z(Fi(@H^e2=#nQPxjsoJ7b@UvR=wBF}Of|yYa0=Ycy~C4qrXym|9E)2moX=?%wB~R! zUext1QA%&pjoU)M1$dU?(xmkD>BUl9QU?sA#lJh;v6n7i+lr}JDt6;-z|hjD%L@sX z#t(eYrJPndetkLPPRqTG)bgfAI+-u_j5 z#VF|Xb;FJE1sKZYxGx+94!KK9e?AU1Dur+g(jmkne7}nfN zdkU~GagK#x)C2TWt-muWUnvL@FrHFcu1eHTxK2n`1yQx%jF)M)d->4)k(vGW zl*yBEXRvHV%DNAOY4NH{{ZR4JmDw^swINfAP8y2&0@4GaAW_ritTL-W6n5$vz`+-yP zN)dZCS?whzzZ@q3&mCC>`-9i+kN8w7fz$QZ*#*a5K1-DDM7?VLz8iO9lL<}uM z>2gn6CVl!tn8t2?li&Tr#yn>0#+AZLD+4#UnL6y(dT76GLgIM=O%GCIHJwsjovc{< zx<01r?LB(?kv}A=Q4649sBf_{O4!fVcmLg$#k1U>nZrXeqL~SBn{W^>6oeWtraSgCteQILFdSLDBNG|=X-e5`v+&IA>eDp+?&;G z?awqMFH^!`53#`!Kl%J*vP}6$0nMV{yazco$84QbQr6!hV7}3#?dLLV@kttnq@H$H4zDed7AL|Jqq1inodq#|>fC$7=^k260F zv4ud4r6a|~5Nel&RQ;M`XocY7Qzfnxmq!LoCx%l#)rPNiMYn4I(*K#HKXBUx%g<>U zicn4KcMT7X1)HE#c}9>e$7z-l5>+Iu_aAVwlP;p?77ARY3d~0IUvXSLiz_+!t?MY?Is`xvwl7sSnLv+DFoI^ino8eK;T5ZRNgzsO* zCX7*$j4&`_j%+|ZNnEi#;_>-!|GRH0d&o5HFwai(i+;Wq`}1V!g;EenFtPiQhm~=k zMP0j=_aY<7Q?}!nUG`@A?S{6~c)bR8Sx==0zxRuR^$uxv_CI1z)1EQKM_qgIEu2RA z_wzr8As0iPXG5R8p!h6Je&%5D$`i0q+?T29M?Z6x&ekcfwvP{g$GtdC9;YV|{lpU) zV=MFJI^)HUr{^?jIj4Fh`M~#=HmiXN4lrYw(>lj!3CLV)i;-O7X8prVr(jM=ba(Nu z88dJ8$DEs73+#`#KYZ0N5_wvwU*T5aB%Cjp&eIym_}pmE`6gIYQjUh_CN{a^u@<*| zrp8zE(c+0^hwK}#3R^a_y>ho*adrj^R;Hjk3X&`asAo4uDQB>3IhWk0uhgXZU+ys- zW{@Y_P-M?JsS&3Y1{F_0g?(cR3o9OxSK@hm`Z+P`AigC-%z`d?No8NK2^SfwJOxp!Dov&Ty%mwAO+ghYg#h8&-j%()9fu1m5oo zMp_O#X(VD$LebGKEF_4yZ_BBYid}}|TF|6cDm(WgcCF*jK}2Kr(dqo}N#&-bwU61H z3^zJ&y!=IPH1i*Bzu)-u&BRP>focfd*j6IFDo8T zs~-(~eXqnG2=!4M%%%!tk$LG7?}*^@aT{IC1gF?dcCztAsC)bnBDS8@6EK6fucE)w z#AD#yJ)h;|>%O-8n%xP$knC(~+5!8_m^L7pgt~KGJlH%O_nM(brjQuKCBaq3$BED` zQ;jZ-y5f3eY({@d$i1J_PMScBDnMMVLXuv71zf$YMErk)n_}!#AFlaqVs5<+^0^Oc z>9Bk`-EnrHTYzhH9D1q|O?~bC`5{N)cWi9J(>U|=v5l|qOP9`1k2=3$t4|g-lx3Cc zj>0If1bn@29kkoBu{&EEo^`Y{-xPeb%YL{0;IAwEc6+$fFmti9bg{EOl5(`)gQ8yO3hSt4!l7qEDaEK9%VjJi1{!tdG%S z8|J-NP^o)G#Vc6ayIwgc`9!<5JL^t%j!rjq0+pT4g4nO32qi=5Y2lDw1jERnMqmf; z;LlmV-o>-KgWRkhmQpWVKl}=O!;pLbW5mbu%ZKKN8xv3Cc|C94cq*`1kR#kv(|BAr z`y2RLN={tMp(2bhu7__aScb6(Y29#slckEbv9C;J>r$5zjI0m|&uqDLuEcg5-Ml@y zEaHblkmtoVe_imt()lgy#q$sHM}^&+!};}wM`FK~dGLu5NVqCE0v?sm6r+!|hvzzk z)sr0G&0ySW3k8wst!gGS;)-IA{zFm3R zHx872gXc>Q#mX%^Q?v}Hz^u_CcBL@x%4K2Fq>=9>2cGYbee#~mytHRd!|BukgfmU8 zuV&bSVie1ObJiU`nL>1_me%kvNJ}{7rY3)_$kj^yo?>y992QBMF07c8R;sC9$ZM`& z7J;;q7lPsvjM-Ej>J5%Sbv3>3bWQ@||?A zdFAo*^SS5e(ILOd0klsSDf5EQ2LnaF?fsjdhI&Z$_3Q&3t)ZbHb+BA02u<=01Yb%#_u7H#A@OaiyU$+l=l`y+NBr@GW1xz{BZ%)2F zls%jOdjGqszd$q?k>F{hO)i6I;W*K552v;vDlH3k)NjzCAa+A+-9osh&)L|Y2XY+LWZ?&Q z*OjgWxw^XEzkmPidRx`jOvkS89+5DI(O)daf~Hl@x>bA>IR7Mwk<$=F6GdX)eTe}h zYd`}C3I_^oo|ZtmNyRIB&c=*7Ny%i_F{YLw>UBZ|DZ9sl~qw@8B9G6tAP$ zCLBH1_|SUyp7o6H>4SCeob2t*y&%J4;N$Yg$M!B7_j7Qd)m!c)Udqgr^NyFH^Qv#s zf3baR%X{~!Ui+Ft-l&(H!@3{2Lei5#Z7merm2_^aN0~bW88He1l8)t`eyNr_KE?=6 z;~v=e;muK?;`4*yxme#1z36WSRHWJCv}wh+XZ0&5cEHO8J`~ck&=zkdcA=Rs-bH)s zRQCBw$vFex<20NQiLLi`HxFkRRUUoK-YIfSPRI|G`!TDa6EzXLJN#ky4#$ysuyS0Q zN>ZRjyk8v&IrW3%A?pib8awK}`sm=X;%>llC^?grU%PT+`ORrAd&?gl`e^aK>sMM< zpAZjU;zX<3c3YjUZCRL@m|Um1e!2BfPR-KKQ$7H=Bglmx^NJtbUI~$SbUqVu-gz z9io`AUX?o+?ffp<`SVui8sqZXGAN+L$U|WaOmMX zDdY_d40tx>gj^ZAzw@zySh`p?d0Kr+>=TNab}`4M$7Isca>@re6T_W$5*H~3J5_7{ z&Q#hg8HdBIudkDZt69y6V083^-+kl=pC>Fl^{%ZM%scc}s4uV%G{8u(XtpYM~~t9`5u?=n!}C*F9@nA-$^7{JHSlmWmgaZ~xQ>1?ATi9%yxS z)bpKSl;ET4(=2=oM||dINTKY6tPMiPpD_4ENxS5XXDKUe^*{1*+pyjxC{%P6@KUQH zNGX~Tt6glcN!1OXB}adC4^GA+M!k%u#)lc*my{1;J5Sp>PiNmL`z<{@TBCj*A9m$& z(@{(L+!*i5(tF_h=dyOk>Y29nY`3b;ixYOw=Fh~d0q*y|E>;!ib}f%jSa)MTg95Sw z0Ojt>oNlSlzg-Ldb=z;wG4S4YnacTB*+n0d>KPKRMc`xUdy8-X8kKK;n) zJk9|sD_cKDu`3^DjRC~UuKE1ey#MY(U@P|zi+*BWD9UEvGOxRyH$U3f{)+~V%(K1t z{phT>D*Wh%=cei5Ppw>=-wX7@A{0$~@_M;u#tp`ijH-B}Dl+ygGAz|FDqKL{*-|$1 zPTk$3><<4U>RrnuwNTTtVkTjq7`X~(outi+ge0v|EBg7x@y6+FQ5BXQ`WLPj)5Oro zF5{k=olX2{T@Irhe4U$_x%o3lev3(y)_(ZUQ%A`k(n%2&TS1nY_<1G0-+8v}G@kBt{@I);il*lL*clSi=BNHhF3{ckqV$fX zGTV~l-7@PvyvhsUZ>r;OCJ}<}q-Q$kEhkL<)PM7{1B!xU6 z?x^I>Y9ASJQg7_m@4MlylC)#c#GYVA@$uF`hsX3w3-4|!+4gnm>cF|7J2#)M-Mc=$ zgJP;?Z(dvZfB2A)8gfBQ{BtVDsVX4M)3p)VrL(j$C4mr%kUvKuf0q87FVP!8d6F&- znr!s_ab?gXmO#-eXP>#xy14lZ|H?U{aN~fJ;eMH@{507Mc&B(~|GoJTX#XMvfJoS~ zAJy@Mj$nlHT?G4Xm<4R?X#YB3tHmVjm?iGP^QvY#Od0KX=-!r(C4<6BTbXT(o&->LM`01`u>$C zLW!k$e#cN>U*EvMeX;fD+2NRV9nQewX~&(bWed`7(+Sp2r$2}ZuFD3csHn&SzaQCn znIOX#{BHdVZe_w>sbTbwuB7MH-V|d!O`}z}Q4(nrJ?+OF$L}-V)Dx5NUwVX+bM@N> zKXBqKs@`twvN;tTkne0U;%c*(d9K2mOKDJwE?|X>a#$qAvhvbYpmv9+w6B$u}vErCG6I9&WF4KXCe1|A zwTIQ)ZxMrIqvv8a-`3dK@K`%h$KP#g*=^lY{#kLOq0@8eO@|PSR^Dq_^^>jJSkR!! zv-|TNO>3fOYt|QQDknuMbSbaJXtKU>LTkWgB@O^hoXRKBi6!jSgjVFa27wDoQ7O0lB1 z&6loVnQITm`m)YBcV^Ji%&wY9#EhOD&OOwq-o&f3`-5E2@0E^6hkj~54 z9ExW$FHGS8iL5x%^5DAGoB&@37%8}8RJUtqP6i5l`OIuoPUNwI*s^PadvNdFF36<4x=i)$vAv!z6NiS4+Mld_PLrHlEHd7@GGt~axYPBmUD|2SeOg$P;* zpba=Xxj~okF2ic%(w*R)2BLGS{9IAFSRp#ZUDTWZi>a>wis}vbUQ$v(Ktbt{5T(0I zxBBM7kTKkuK>Jke2Q)N$FwZrbf0Ns13ymC9;@S*K`-Md)9XHNxo z53naniAaNUAK&xcKgGp#YD*1vD?r8*r$2lJveZ*ssc;n_u<*2hVUaR!gP8rj>&McF zlCEuJ!}SlV84a?>`Rq7f-WM7(9D2IEZhu({3Fs10MP!Xelf+3SUou%Gr>t@ui)GMZ za~r$lSLAaZoviY~WkHwj?vT!77{F#?LkzP<<5=rC&45LINS#}#&tn{P1g-1-bQypo zy~g7*RTH;B*E~6?s)T2ZiKWb2UpbrwG60BmE~3l3ho*AoL`Ts)9hKf9`@kTCs6I{- zsIEI6@4xjhF6_wC7+M*XU0Hs-vXZapZ$vw-s2XHmmbF+qnZ4mc220b zohI;mktAni*c4(n5MKY>`mWSKPajT8K_B~W(_{dHwd92xuga(Iibp{rc_m@S{5myP z%XaPiWp6(C%;z)So%}p2X;rmHr0I}G;6%s}u7t2eGmqsNArM%9WWvre98~?Th@DfC zH-YXXf|XzeyWjVMURo}EfVf3N>RXm;E511Q4rbNed(44AAbngTZQCF|=JGtZcx0$W z5IyDE(2Y2blw|dRg!*8m4yM71u16OH}^Gk{cBOd zb5ZD}IW+js)lEa&MOkS@TWSgjh{to#V(ja~no@kuzmxj>dZ)McjEz(um>md^2v7`Y zh5Ab`k?{l9$*%dYMwZ?#%@2g-Xw?c(&fgzY>)^Aonkn1N~fvn69^$G;NI1-eak z6k+a<6PeRi!8J=w+i5UEN2Z!KXzjZPJZo%!re{c^(Xr&n&biDfRAuqFSabx63)6Y2tl9PlFcimuRz1$-$?_o4?q|!`Od; zBIyHMjGrT|>pvmujAGb6+?%^CHLr0qwr<|(GtXpHhEf{Z6w@*wS%{E}AybHs74*5B zm6PK~D{)P_rB{sOus)_SG$`dit3?hN|?UZSve8@vjKvb&QpnwphFak|6Hd1 zT*l68Vc~HCdaEG#Fd=xjk(J?On^FtKnNN6Y*LpGSJs_iZ8hd%%Ws#J|tVMv4y^l*nYPP1>@ILI*8g5PxD^~KG#!&|Y6ihGy@Bg@8M8L)}o7BYqmYuBc6Mu@zsGE-SlHZuh8Gh(%tRXjCoRS#X&H`Zr`BrV?; z-C(^btx5^m(l`Y{6k04y41st9V>yVzxdsNEv%ZG59AnQBY(?#wp^X4Y%;0rXxb_5-%a9b<2SN7QkAlv}zjr^Ooy1!pgHfs62WnYZz|v}QZoZQ%4kpGK}; z&bBImK@xm_i%w3(PC>~Yxb2mm@=i*uCwLKa5W+O|nu5k4*$*#(qEfn+he-?px%yjS z)Z#U?-E~kd>9J$5LGUm|qF_4J-?|@8M3}ZH8&8a4Z~kIKSYuq zJ6N{nS8Bz9pr@gNo~yhDx|tFh!`mK@k!D`XSqr)2`z;}{iHV8-IGX8(HWyo4TW^le z@ySS?QcG2vvU%fHo5EZ=_thg0xB|8=1+=rjIY zg@;g7Lt&2-580!@GpSB6U9kH$eMYtT_a1lZ?H)F1>&|S|(Y&76>(>fFkDzQb@h!Qz z$9yorkJoHwimjF>HYG3NHAOn7x0V~9YvASk_w6FY&4!SqSTv)Epyz0;DCtKWJ*CW# zItM};CRH?P;m@i>vtoVkiueSiT-X%sx`Q#3bR2&J)TG5`p}qz2=6dPPL#h=^f81tB z_ZpZFBT4vqI60G=WrtsxEikf^kWRI@XE{0)@OL)$HPZCbG^u(G{H}2N6GoG2ga1>q zPF_ylceEz!fq&GOgB5xP0OqGecQg91(dKh!6j4WIhSn1RoB{BMnLM3COj^ns8Yrj* zkZ!K*@K4X;c$DZ12CA)`BpRGv^Vx4+3bsQ>lPcyPzr)HK90p|>%yAIE;N#+mfgK*X z!hT{VC?=ui%MowMDMTTs%zny-9nMvk-tG-EBbwefHT%$V(``RnC?so^$i)<>X*d~iKC)Ce?^^~yF3_BOWo$hk2X}ZYVXpVmb_bnq zV{m6=Xb4a{&LFRs@7L2=k@R#K3ee-SyR@qO&f*Hf;DenNEwIYJ&QWmS^x=E>&>DNc zq=l(MQkkLb^EW?9&-Z2vcDdubHmH9y@H8$n`uvrVh>|OeM|e3DWZWxINhI+#)V9hCtih2+56d$cTM#A~`&hW3SHRA0}h06s{T{Dz%7 zWXKydT>7{9`kph*%L#(ljrlsfj~@B`qPnL(BP&W~mqCo)YfsJG%4uT5{T&o`{K_UG zC_pSRQr2OF+bw*EfwA^a!J@Y_d*6)s1CHQnOjIpGrYOoyhv~Au4+!N&Uz#1kk2dC? z6xyS}-i>#P2Eq(Efm&le1lR2iME94K+6rWwE-|6~swvO>S#2sle!)|$K~luwdEuZc zDmlwmDc4QueXQQ>WhYq3GfDVKdaE*>CC)-i13o*#(4;z6F2B53l*m#;rWPB!uH>u6 zw8eCb4X>^~fF#uQeJ-ZUw4LmdThe9|{lxZ8nx3(eKH<=7-5wdsm-{~+PS^bk<~cth zk}$sH-`j0o?cr08k8JO}#*&E=%iN6@Ph8H|q5QlZu0lmo5Ut#_S5gYl-OrGxSQWUy z%6dFaYUd*uLc;zwZwlA%b1#Y#^xP1sw!2ZC&0&2!G|kd3X2rF|+H=Q6uo}vt{N<6!g-1!vQCBStQ>@?*L+U5i8V=Uj zykPUq>Zo3wWsM@^BqSaUhVDB5XBNJZ^kG**A9gz+^rf&3v4^%;l zmxd6%ndEs$H)q?)w__;m4mJwA5#)6{vTo44%@}j75?I3e#l17)EVEyw4f>Zlt5>X~ zT=rzIWaiuQ4qw?lipIGyEEKcd`~ag5_)gf)Q&o2LW5YRIYUWJxZ?IWNlo=?zbI4M= zpVP7Is*HM$?Uk7A%C@?6h0(5BA*EtUq(xPNP8BI@pz@3G6C*<27##X+(@VK-9lw{e z%A<#T_x3*@NNIwxT)LgBh4ZSBu~71z;Y%!jOMVVe?zfvK7@RL@6xK~Nt)x(M!9i1@ zwN%1WQ!CSLzVsONS_Wr{hn;=u2q#j(e|Uw(=2ni5Sit+b;|oIfS|x4xwsshvN12fy z0#Q)L-ZL?Pgv)5s@F0@uLy_*!ViyYKYkVh~hYql09Li zUXibd50uZA?_fiVCl|-Q!=uD{ZX|BfQlUCus2yZq<_42N)@0wo;K>Gk{xT$^{aoie zB>BPBds3=)#ebzH=psB<8iFD|{41p{bYgGf51-paP)% zFJkVFn(e$lhK1HXQ$EA`dix3<)N(t)U!dU1^zhbxt19=!&9baGH=PQG+)xSWbKj%ifWr{aQeLg`dVNV?my$5Zj} zy-9-J0FW^yJ)LN!;@7O-T0M&Q!E6=yfvzqW>{e>b74$Hq-s5P8PCn=Toj=0&gBq(; zz*eR7#N9*Z>j=CMijCbWt_>=a64w!XNQ`$ym&hUAVdKVMw?8&psUGt1hd(pCKk3eF zyz-tZ)w|e%?ZAAx8DRq|S&l*Bl4`Gr;QM1yc+iv+dtwQYpBD%xi2ji%9E}sJQo($? z*Jx1G$lBLRfyr2O>1KC#ZSD)3`FF^uFf=SzEEYsCg<)(ofx=?%)B7Bb0uI$r3>#j1 zFZ<=Hz1wNc-LtH$&g|rWbM5B-_iFYV-#DM(kKw;=fAxNir@))Hxt0}(|7}<@@btU| z{n3LJ0L>Tu*r4PLhf%v=6UXK}2O5EP&k+FW;W~!0?l);HYw4f)wJ=HCaR#M44bYDl z`mhW38J&q~V-oLwoeJLTxE{x)Hu0urq_FG0GdaF3I)xLvzkM07Ep0v5B;Yb{nsFFh?KbCCaCuIr5I4m!E=f10WwJj}O3}ZUoP47k{ z+y)!chEWzyQnE;i{JBt1h5?*bKuZ*biSk znylYY-fI%@Jm39-aCdsrxY+;Mx9H3wRfo6B}hm=DCu5j?ao{(?Vv_e#HtI*(~~2zFgfYY@TI1X>+NMd{>^$k_F8t@w^<>}rRvgw zM=N@9dcw{D(R%Zf_Pvzhv|;FESb)9K7aAp(aUq7`i)ld}TknCv$0_d7Mqj7~tGe@k z|DTS}-wk^MS%07dti6*<0&}DSH7z!^S3{KM$FdUfL&J=9D|~Vhz5vRtv)7>Z@+oLs zQPJIu5`#PPpZy*6-U!I*BUN864riWr@c~G8E9~JoD>=Epo4+#Gv5oh;^>WJ%=xCx& zqIP@*H?(iSqB!L+j9)&~*T4IAr?!gt+&< zu^U=oJ>$Pxbb8`WU1oF@yyhovAABEuGt<*sZno0^Xs(GT-u4K9M8Q#QxPM=;yjQmv zp*Meh7tP)P&)s4a!?R_ zVakY4gKgUe(9!YEQm1_wXiMaOPZL-9JSB&n`Jz*loC=7^FhvRrUi8ZPvyl~Ns~Pxi zvu0h~&a^)QdN+jAZaH0s=W792arQoti2&oM9rkGFv#$;0Leg}q*3pd~6#!(+z3}MLxpOk|W&Ch523 zA*PDPDGBrr236J4xIC=pj(M!iC>h0b-3pm=J~JzizrP*d#F-Sc1b5(xs6Jy~#UL7k zy!NjxP;_D%k5tvg5iK$@8JEfk*j+Z-&|jf*f|R68__(PzXTff=pn%7i{3QMAy+Cbl zb40{dr&jH`(ucQ`F2h4v0Gr4PhNt-zS6sLXA z`@X{%i3qK8g#L;BQ;O85DFTc|^_L}pO7cCIfI7E0-+Q%RdEM*~Y=GPD_8&3wuA@*h zXzm67BnCW%$$8w?a-S9g6UCZEFg#?qM2>{q`+)rZA|T)ykM3Jpj6YRu5%X9`5pO>u zc2`C>R%a4?IR4Qc9`+lJ_~k%lE=8=LK`~RQ>|QP;h(gn{H+WtZrxYG{dc|Y4?Y%zi zzCPf}1)X1({6s9CfSquLj*7bS3wwnNU%MC2vI!&1^B2DQe*<_=kC<1|kU_x)!o4ak z>l>yY!B;ELmBmG!Wycn0uULEcTv{(_{F$l(xu_!5JK|BF$%PHPy>5+a(H3WkMxXb} z(v5Z9-B^P6<$_*)pqAko%hGM-s=OXfC4q{6CT1sE7kGp8xALQ@54g5i&!?SGk{hN+JS#eoJbKrugIR8HACG#rD2PU z=O|`BFUm!fq{$gmMx6*W3@gVN-6wr8=WS@S=N+km6H@$?n`(^cPbVvkLvTU4lM^#d z>!;89^_p#SX^AApG^t-k9#7vH{0j4seTB;`QM27$Z>Lz{s zH<5YCcA5`-oq*glUB_R=-;?m&lz7~>dqfs$SOD$SOo3dQ<5BAq`*jkgPxoTZAFFquXh~a^fzE5}A3XW1B2{To>P7Nx|7`8U!fZReQ2tEh{~$;oE||GvCx z-4)-kQBSUa{ppttcU6Gd3q3LyQ1sJU>gw4pRjE@_e2j3PRP=s%_sK>RI9 z{+1YsZe}-jBungUkFNvmoBr*1QYQ5A#^bg2T|>=-KLMHkAd-F$1tY^8!$-^utTQdr%RLHm2ely+P2-& zK({)!R%!})nR8~Dv>Cq`Fu_MMzu{yyYC5A7M6$plt$bVB2GXVgTiCq#1Xfbb9rGNa1`ZpZi%m{>09_7t z_<#vR4>HH(O)1rkyC}*GQ0#%&P1xCuobfo-Gv=M?l2w)lf+Rse_hr5;E%}&QK|d4M zyj1>yp}kg+L2IUg-|8M^u^4ef+@`$E7_KqH-8*(z-cit@#omj4Yvq`0)#J~o&AD!E zmzMx`w7Pg|X6ECB+x@Wu^mc+9GUJjlVb^9Lk7SKuY>GnTkBB*DYh*zXUo<%o5Vybx zE7mW|ygf)Uq9EX@n^K}emKVdP=*)ecLWf`?m&HU8P(_O+y7zv6p*`FshbX9j7NrY~ z4S_5ZUpcI0Li124P%ywgKOt1w&NH7j*)<7o(gY5LW$&|L z&P97sfwo6P#8p>pv_w4jzVCK-XAWoYi7P18@3Ki=9m-kH*8)B1E#Q&P^GtoT7BzqW zFJ0<5JTf8x0;KI?TKmlH?#;?|Z$r!0dyhgkQsm(TKUb;9AN-}|`_P99*ah#(&B#54 zz*Xbu!zPVj%0hMek%TK)bLQQoCM5QY$pQlZlW>nu85hHV3}WK05QOEu^##F-gH((Y z5*G}SV#+Ld9EmuV<1C@B(C-nA+FX3$2n}UyazttlGh_0X>juO3=epGC zS=iBzTgz&0R?^$$e5mlNZ%~rs=`rA8xZ7=<(@?^511&b`LzLih-F~Jw0Y%?x%S1&9 zu|360BgprcD@K8fKCgxJH-=J&XYP9#M|2+#LT0RYFLH8>rn{OL6oaa@6g4acZm9Aw zuq7j`w2sj1fBfd6jj7ra#?JE-{?^GH{MkZh45A1xe!z7(Hmc)0@|8xBDq9x89#Mkb zFEAz=9vdg^cL!nxMDVj&JpkaX${V)<(4erH)yUV_no;bKn>Ioka^l`%QCFXzbLCJ0 z*|BOqAD0mX^PbI08}UE1053#72qUNj@8)&ErvcJo5&>_nc5FtkxxvR7*sVS=eabfr zXVxXHT-pHl9}x20O#pVpqms=J{lm}fGW;loeW$2bSRIAh@ITAW3m}`Q9cCZN2!_D= zC`rG$z^r!lDB0217xBhrl_(=yKOxkteh~x)TiJ+YC#P*~blE@vik%PX@JA&Kr6?|@ z#}~%88eg3L8?t8y-PpUcB}p`Gry@fto@3JpOn?MV(b8#-VY8u8G6Op(&_Vpy^Qi#K zhHIgHOU3y02n8$XSV@4g%(q=oa6YljCg!zBr4kad5LZyP*Qr4SuBy==wmBY6+#f2W zo)7MrDSGE;QuM7fgs=!D^+P^3{wOF3G zc+cCwqMT^jA9Rz_bb-0$0VS^R+0GV@gDNnnUC{^Vv~1&Z>{vK$8j4hMLhK&eR|{c7 zrv%}D=mur{J1i#Uvr=io@Cr;rEfo`Tu$k%onUGO+@^<5b%1voU%VawHF8^}mqkz;8;?a(cthW4(T+(K7 zr>Lx(A#>l;xGbF-vtisDyvBr)|2@khbqUD;E=33QrJ(cfSWZg~4>$MC6XgXvT6t)G zuU)_SzR#&5h5vj^6j0&qu%{79Eum0!4X}u?ehC4`tpxQCOUwLvPenb^&%*D8Un-mk zTts+BYN-&5gdyX3Eeku zI58>HH{G3^AWkYfK7NthXAVs2&YURK4RwL;pm1~*QWr_5fFOXn+by#|?y1Vi0(TH#{ z!X?>7W}i_!{;>)Zg`Pf~{_WsEK>ek!W#@)F>0V@Ejf&W1#i< zSKY5%rV0ICi;bZmpsdbE`}s4x7Cv2kcGVx&{}regpD+`Je}|C@SJb&rd>+s?Jjq}| zuMPxHHMUDlpmDba*=;zLJ)m>7KZdd|l6e2>4qS@`@D*aW#gkz>Unjubd-!%bbpP9U z2X)#OIe&WPD4zpkg?|%UpVpk`M)GM>IXHV+8o7HE6KW!E`7#9D!L@|OCpo@u@_(mh5@2V~rGy8`a``XIoqVhIjO_-ntiR31bK^R<{}Jmj7K_H?xwRpl0D$BP~z;YLMM zN&H$gl-GmwA4N<#a7v3Qv1Au->dKzE+7<7-xD8#>q9Dvgb$H)XB3^@mF_j%|V3J20 zbRB%`)d?7?A4Ih;HQD^~R*u0>x+H~s=-5VZcVzLEiMh9_{0zSy>ZZWFwa)u-m>MC| zVO;T+)_=eF++HAom+A4@sp^Yk2Lb7NyY_(}vu8N7QHU)2DjxM_9sdmVY;%iuCO$*iOqwl9K_VsV z1bg5m6Fm?S2?@y?Qq2$u`%`1>MTj-!YV+XP;d2SMc?_f$O24<;4;NVZWn$on48*}O zv&m6{$2bBnA@{pLp>#jgynIo9!o4?`N~H~2uAg8^ds1p8o_iVjthdlu4?boFLul*lje|)tA z;>XT=;|-|dZri$K5qha7a9oF@9_RWIC$FI3_ZcU&X5w#c%&Z{s)5u_%gaP)1vZ-aa z+{U~OwD{(VqjxfUKrsV`m) zd5BIC?|niX5`}efl&ts0_Z>m+z9y5`1!n%pe?F+P6C&A1n-Ecw=fzWKXKO_V{+Q5( z8N=4uU+Mj9Z7sVT-MqGl<~#5JB63ji*jd++L}N&Q6|HWVt;S{CWz6dkH*B4Py=E$W z`r8S9Qe%S=D^lYeAcuqZOvCKhx9<{N-1G*M-AWU^@JImk% zroMxNgYoKrKrOj;xa4{NG&1-j=7s`}{;3AhH#( z+Y0C=C24U9eM26h;M;{ZjV0Tw|7V{A`6ctHuSyF@XAdW{(U>UeGVD&nB_RD6znE9Q zW35+^a5Z@iH@Wzra9Z8N8)zH}p+_rbvRPQq|BxP7)Z7lUQzFMOWoNAiuAQP(Y|Ac= zN!*4N=RczQOMDMxzm^TPjFWeRr6+0?<;1bZb4<)iDs7cs{@!bfLOrt4gW*;@{{4ol zvid8IbiM-L3|Up|2na5H+gD_zetFBNrE4AZP=@}$d=D8w2K^n~Xpq=mQop{YVg#Px})D-1)J@Dtem zBmCTj_df5q@z&heXJvAl@Z%iZRM&vVsspiVXaM=Pi;H3PP_x>kYB|!dvcZ>#*=#>% zWo$zwG6MhLY$9v3dX4YF#NCZhUx9WLFSqv{9@HjkOc5H6+7JYW4$9wB-;Q~9(Dt5& z?I+1p)P`IHXI+BZ_nEE7aa!^Or zOZ~mTm;Mf;F=EVB!9vs#W$lUQ{;GGLyAfIKa76Wg4VzZ;AWvJ3=k>p}DCqqL_#Yvz zpfZ||W`>aZa`pZMIuK%B*CzoqfL{moue)B!%gcB1;s|^JCEPby3oaXFTK+a@TR2`7 zYwWIRHA)a_Kbk5hf#6ARVi3Ue;*Dg0V>~1ctD_Uo1b+e-+b=-TM3o932|`Ske3|kr z@Y`qYj{7O$Ka6xeirKRhT^(XlJRor|>CG&pNcQdO- zlRUl8@58MK^I#B1Ui=X-53_UD#1Wn$S<0n?u|y8XUWLu z1~ml{<~~iicV_}@?-fb=(s3?)s}0KC3(Y4o{^b@<6jCJ3lf+YIHJ%j+M@9xau^!wwt+8U)Q7N zOLtw^_**pyFkCR+cQM}214Y>rmR8x*#Xe5boFA| z;a=zA(7pGZ_a|Fqjjah9x z^r*ci(=E7bHdeoA2nq$KOi>Y1`Ii@H{oS;WeHj61w@aE`d4Hq7oeh3e^oQ#VO)$(u zq_)=!o+0}oqH#n%rnvWFh>40I;C;$TbR&ZG67;yB0(#yx7b0b&A&;5go`{RtEXv_5 zRr@xELJUVum`1D!?mog?@T%#!eFRY)5-sGw7yPa5)qjxFQ+wS~WapJ^^9S1k98bRA zqhE39y23s<#_nr++N?P68}ikINBlUo(tgi0g7j)M&x@zH@)1D$P8mPaiK}t5nNPW3 zuDbc|v_nt!Vg17H$ps=69I8Q6snS~_x!5zpDn+Pt1kX&xL&JTm3a(m`vaTp$+rDYL zF4(w%3{@-<@2Mlh;0Y7_kz~T(BT!bNio)RsE3zRfqs>R?ed3^IhbKgk%sI;Mc)5*1 zJ?KFiO^!xhu}!52f!nL`QxNxcQ&YR(UpeD{a)pre34T6&C39B{=)U_K z0IEOn(@(C8+QMog-VZW`*lBZ5jndN$44BKVE;^GNFr3WQzZjl>JG(*Hws82L>k^Z5 zF?s>+Rximb@Ba?!q(d`bL=?trK~R6r&BGHp;! z_Qmj99pA4{cREv*!%s<)2j+>Zor}Vih%iUszBDxYGhiz$_VIdoU;o;Nu`Ln>3C=^B zim6RU;w&8ww2EH;I-fb+B7vv4NPd=b#QIe82WI2#pv9nLZt*vat=eMn#AnPqsD8|W z(JNM^x5DIpUfyv|(eaeec?oaR8V-rM}nbCKU|B|V&;2*_XRvI4V1i-FieDv?HIVN-b z3FG@iHE}RHQwb3jdPt$ll*<10dX29|ut#eA;rtT(9Tm+)75&A!6w9*Eh7#8Hy>2;4 ztLYO_lu#NPpLUk+xF%ga5uN)xi$|b2K`J?&f;gV<%lZ$if=w`m%?};_UC&m&}A&Iun;@J}uKtPAf6$ehRFEOZu2{ z$2(@%tcZLFd>Hqm6(m0it)g59l`B7Bes)%=N)b5|Re<%jTVMCD&&r7B_T7L&0hv-uW9+hY=h zb%}oV515R;(@vR`LNr)NA!M|Q2AxXGK!3nxzY1W1VS-plgsXo_+E52gQK&%pm!7Zk z=HXvQv^+boXx_t{-=oZs3M8z}(b#DR1$j+H*>2zt!wKAILbwdLh_w*s5ZXIk-5MG@W4c87o(IE7m)@zKUN} zKVnNW`=eMH1&eMBEpuR{-*VN!BoRcD!pSpW|EIOJ`JxZCI zTb|1>OW9#%F!z+tQYkC}Uu!u5O0$EizP*<0{k$RrxJxt!XIUgs$e1gc$cB|&45nGEQ!rCpx#FmTHWWNJazcoE$69D7;XYxSvcpDG`Dmu+ z^JS9CbsDR+wmHewTt>FeJSL}o)XEx0r{ir1hGu!=f4hybK4Z`Ao$0&P$=)w#wcrhD zki;7Gb+It8xa5sTO$rv;aN9tC-cqXalVMNnLB127~7`XZXR4J}fUz-t+cvA^)8?-YaaTCbu4;;U&cZ_MOGWMyH+8EEpJ= zCcV_MFMX$OS`ZN`+?sy^vl$=~cINCVWg_CD9U_d0HfAN=|9+VL(rOr-+wuTu;d!Ct zsCaCGw}{YpORh&pK+|E2i8&P&s5qD(fKh3M=f>Aw&@d(+j;a}BQF*%YdLqtCavBbuBZhsrgZDbK5aJ+iz>DrC`Qa-$z7 zqDR_e>WcpyM$chRpNMf~gaL zR9`;|5tC$Gl88#oZmNCKk}nm{2U3jtR&&~TcTKzXyJz-~ScdY0t5wy_Cn~3xdgDT7 za5+6Ku=co?W+80<_Wr#$yIlVXQxBc0WOm+uCTQQqOjD9aojeq6&;3WaM3aI{4i7b6 zD#l!!ioRY>F`rJ8ktORqKRs`?p?JpiqQ)*=v=|^G{+G6_R7xCG3 ze0q7)sEtF;C}``_$b$M5EZxR6Lt9s&zd$k zfJ;x{^}iXpKd1lQLw6(!z4X?DKrKYM7A_j87dw4j9WL&C$nG_Ui%6akN*~P(UKqM3 zfTwoIAho>wdFpUu6{9b$*#EtCv3r`#M!mtZ@7=K?2Q3X*e!4gXq_YZN1qWV6B-XP# z9==Oayzu33Y3`ZMm%Qbgd=Fn%hWC7yV-H90@uZf!PakCl(7jUS zzRqU#XDv{JC9We!H(JT6%x-{?O#&_2g+bm)QFdg}P^J3nSUEYL3EupNXd;CIAtmum zUF*F2;3BVa`wCCR1`_(q1Atoc^Ye?nsmowT)|X4;I4nrB1p}@g{(bnqbamZxRhP&6 zn(;N$kr!tgZn{<>NgFfTwLZ{_o9S6HG&zD^9`YxOiHB1d#I zhG%E50I3;m)o-2bkW_U!GMy6kIF29*^cPA_-!Qr-X@7mYpo}!eW6Csgj)>_HLL#G5 zQ`qHGgwJGH`%_-7Y`BLQOh*~QVU?H5vBY4O)2R^h! z>71J~fr5~NWqqlMkP1=B|MP%sW|;@|oWR|I(|Q=qb9%lqD~uQ?+dsMD`O0CTKV9E` z`~>gjbMI=Oc`#w+0qv?ZF8(Z#b=8Pwr2Jas`1Hm*(Nv)HbE0XZ&WB5CTWiC`{@KZi zSyVm5u!d2CfYUVR(37*mU%%vAL?fBs_A^gwjq*Kke=&K!$R6_bQTOU*tngPKb6rt$ z{8i-To2mB4{q`4sfS}ME8!1R+c0{~~`T$ZV=~PUe)G<5sc$O$g;yHF==}VuV7m2A_ zBb~Z!z3=fNhD8;h%0%P0cG>%lssyX7`C_INW?@6TmtojxiE;0GF{&yFiZZfl&9i)5 zp-{ok1Mvk9eMU|FLja~~dJ+c#GhNXhm)56k%3P3gpA?OJYk{~VKIcky-v4;GNFfXq zPgW!5J|fn=+%*08`_>j2nQN6r8J8DM`N|$(9Y7W!biqOSpjo{MgqEisn9WU116z)b zI!DLHj7fvj^K5eHK_UWKqdRADZ{<>%jeF1kPCOB!nl)yJVB&nz?#c5W;(fBjs0w^u zLS!jN$Dt?lMoLxD;`T&sD&d{F0D!>Hc1HE+3ZEv>BR)8g^) z@-8ea(8#5-nGVEf0I6UU|K%(&;{o>SZWzhPfzc@a?P58($Ya0N?aQGbT&(635k&71#YM9gEk_F}0U(?8Ecbp@oQ9-mj0K zSKC@+kW6_q+g_Q?d$2~AG2b%LLOXb}lRO7rReH7uan?(Y6;gy{_k%@D%2~IC1!VxO zXtQ{BG%mcuc{k8hp`pSZO;i8(<_j*$wsUlJO(DrS@~nfiS297KWu>_45T_KBu?C0{So68VAEiENL+niYJuI- zH5IJB#wj4Kn{Gq9K`3%9f+h@;iuU1ezX)7x;7cy%S9|WJ&lqOIce$+};RoUTtni@U z8nehb1pAwD?7ai78i~iblG?>*6sW(Qt2q78VeSBZ_)sxbI+boI$?ai6bL&I;2i9(u zP_Bv;9`m{6X%uAtZ5r2dIiZ>!!Q!rB6_JV60@0HN9f_E;#1*7XYOFEfYGWU-o$0I-P{ ztlZ&*0fif?gT?f`&Ih-Liy2a{gR1YgZIPH8-;Ui|>aVVV0txm2VhVcxN8%WaAcdKp zB@GR)FyEPEcs1%*g#R*HGWfMM_f|grC%EsVpe%$CIrg9QkqTN({}`hYu6g-k7iyz< zW;Zk~LW)c-Fj&nd2jbBO94G#N9SFdKwSs`fS7|-RB6xf9dim!uTN|F!_K=4zCOCL# zJwqy1lLbx3%#(P<%o$#q*$&2-3OL&~tAV<@x?nlSxej+41mXvg5))Qk0Mfp*F;T1~ zfT0g2F;<-A6-}sMH8tY?0Ybni-lLyS%BWf6s3o&B8za&6)p=T{#7v$IH(5J?|=zHY+Sje}PVua^ht02CuhVzYyZ6&`r=e9p*EP29dy>D!z|>$zkb)qS&FP**JQlQit*`cl`tX z$IcR2e%-%#4zqO)R`d5O3j3aL%D-h(i)zgc)*_@DW$n?7i-#qDS4bZo9-5~+^n#{g z-#Pd3_D|LM)s-OZ{){4ayM&F-{m{tAGCgFc15#9=XmRgpyysu3`>WX?Lv4U_$PSgl zsO<3g`1t7P=v21eP?L&*x(;SxL zc~Wt2@zH`JBO}3I>KYpQswJ)eTu{3P;H2dii8GF2B>S`D>i*Em~ z=Q)vv+TGn940zWT3VFT~=Y3H06e!D=A)INJtz7!U{?H|>|N<|`Kp^%y+voMc~b^qzd%y8br< z_9z?&;>vTK^x#Hut%tJ7F^}B`^+z?CBFzcW8?6)pt_naZ?GH~IL4cNs`^TE7W_`CS z_HFv-lvn#`5_kGnbLLqj=FPH55;O7w+5aT zU;*Ol5y;iD>&Aw;BAkkrpP$v(VttFNItHH)0CCUc1s~4K8kTu{#|?>AIAYMxzefo) zjSAfL&{$hEc>T3nZtV0u$ z%_*p3phTMd9nb%o$l!au7INq58PLd1U@59-yKyYWd*hvL z%`gY6xpfV=mkL<|J_GS|85tRw-2mKFBoX?ZxG2uRm5M_eF746_GRC@`H~fkllWofKEEwa0lv`QJQcMlgj7fXo;q zvZmgCJN26;i*FLX`NSdua3)7>C%tbfT22QRY@3JQ*zFg+LLOiJXk(TU^!^hU$KxK3 zcctj!Hs}$Y=Pe7Lb_y(5*9>R#e6r?(o3-8ueT{jvzu)|1w`tr?1+mXpiIduh3x*=O%qF^5*j{EqW(3BOf{)iVBRu=@D)M2t+LOPMf&~b5;fdb% zDoGGu0MMV3%}(@N$0OL_y$CiSGJ%voHvh>h>UCPJ(XVjO@Jw04Bxd8~p~!yj!B^c*Y=K&6_lUz9ALlNQy}U6$GfTjM$&G>t#y6@-KOeo z@-UCvu5vL5rFEJt&(CXJL8Bl^PbdiLGQ8x^VC_|Cu{$r8NGmbje$*_s2idzdOSBeMSt6j;>h6obE9l|LeKj)R)&F*QKhC7@I4#(2M#{ z2+_qiUpWOhn{XBQm?PBe0}LXhCeG^@Y`vbQpEthy=>l5Z7!36eWmsk}txCn?;RWQBz0%x8GD%CHU-t>JrJSmY|Oct;6^3 z@aoBV2V$~w?1(C@AO1%PP=rqXEzD|*8DW96U4vA1)BBq`i7%4HPnLnOKd?2 z5;=+oY9YQ3>|{&@DNyaFPx)u7X#Cd=Cq45*;u2Z`ipFuavocT;3E#-yacvb!Tz zeU9>i1Q|Ij2=PsoOd4#;s{#~#&?9*lX1JyTdnk$5LCoNmPJKB>g?VP%*0-1QaP8AA z8PBeQY`LJc6ie4j*q;sq%3EbWm8*K+J?U*9fX4Ew`NwDmvSZ#4c{n*oOKMz^&s3D< z@lK6XxMr=Fpc$S!@>8=EVX&b!n-_Rp@vEpal%}J6RcGY2OfO3)1KmJ6Q{~sg+r=+& zZmzA_wP|O#&zyCVv5g-Hj04?2=mI6llg}MHs5yjedAnmsUC(0++`Y))Bxa4-u8J}< zI1AY*ohv*Cs+}TEUofD)(sN$}r+0p00@vB*5uya&J~rx-&XLZIXEbGKeS@K(yYqI5 zphyZJkrQc8iop>;DC4?x(Ha407EqgR{1=#qS3GmqwLIu1tFUic!NQ|a&2EaL%K^`M zp2BTAMuLRUvw0+Z89W=%ikiy5Jg>PK7&{-z3){X4x40BDuP+m@4e%T^K7I&wUAx9* z8|nq~;}b@}cf0$2e>!pOK#8WqcQ?ZcfEpL`byoY*f)Uu{@+R9uDd;a5Ear-$KZYcM zIc)>vW9ufGuwC$ub07gT1u{Nx=|%nr+wG(?e_~gd$9f!&J!RCRElX$m&9zA{|BddA zkWJ(yw=u3fXO)b(m|xBTJlsov?1&O29HYU_2~)Y+xq3!^u7{I_!mBc+xOh~$ufJIo zmDkcKAx2c>)LR(w)CGq>YDQAoEXOOQ$i&qCho!TO3aab2Fx_2}(t?z9D%~aBozf+Z zfHX)q(%s$Nozj8=BJlzuT~c?SZ`?8bDSgh~Yt1$1vsQqC=i`A|Qq{Uu&{NNu{-DcN z+1xjj3jyIM6Yku zlMT=to*(`aZ7^FkwN*_PWN8HkBTLHDF}4#G4dfD)*RJZ`iCh}LQO?*4jMR0?5aewN z=X)(%o+Y~4qMO-TUh$f&%tc(U1R+Ydc)PPTpU+8~y+uPF4PMXq=CHK}M&w_FZj1>3 zpSnRXi&rLP`TidN8q=x=u&acDQykev;0L2eNbJ&k)(Gi(Cv~pwyNi8ea6o7qxJYG@ zi99sVr0Su z?wAWUA5`3io@U+Ic4H{`HCnN4>)(Rv6tbn?C*!*dIUV7fNWKwoH+X^qLe);6Dii+E zs8KF<3xkEn8v-N&YWroH*5t1Wp!*h3>duEE@sHSe4iWfEzP~VV?oaD|*o`?^1uQ`u zP$aV6;w_13LQDwrSOF_@HdoNtZMsgfKD79BkgKZ3Sfv^TzO^Ja`#=b`pvqN2x)pYHhiOzx5z%wT~Z?m z9O3;k?W{HgNB2xbPkTos1sUz&jj#4lW~sGn3YltZx}1E*8l82FlHqGY-R#Wz>GfHKI6rkyGuN4U ztJh?_uJLNAWh$xoCzgg z2?GF%g(BeL>9@wqmkoaRY64yJ&|Xa++404NBzp7|t}!#aQqK%W~RBWu6Fhh=z!V%Z3F z{&M(R-O|4ruj}vDpeXgENZ+)RsGXW}@){&_1Zbi9zhl(6lc~_C${(O&_)3Ydx-S7T z=HH_F`xti`^GCnm#E8-OTO86PW9w*(?xhaeYy&Z0e0}CyLhxPcfWPJ|{Xjt^4rif2 z>)8!C)>%X?XDWI2tq{fISqZ&)ZCmRPoD<3@}V)~ zDa@%cIBq2@Ljw9t#GR?=b}iqZBjP@JpABWaL;RSkZx^-9v`&JC zosOdBxy?anQviQq5@0UA?6*gVCTIK-@e4g3_*~p|WO(uqC^O$blEmdboZE@#tF%2o z{VxC#ApS@5OrGfDp@C7bXglbaAdC}q%}qMOMt=&NeS0wlwVOa|eP}+D<9k`ZTbE!y zTHg2!0fYw7-%K?qB9}ChG9Ru-IDuOz_jZV3yXTyawJxZG_)mi8w-Nj;K_#EJLAt3B zn{owGLvB+j2OTl~+M6C-TS&G8+f#_3xKANPdB|z9n4*I z7SXzG&cC8bxb#$l z;*W&RD+SFzLs4gl>j~qT?j+S|PHhSjHi!Q3g~gp$r;5Ra&WrI$PZR~UzxscyKXMeeZv^QR$O8khbnEmG35 z3=g|rGVxEYRktf93#T{d8SE0O1~4P(X7ygcbnge=jYmM?yg41jW+tx}94Am-6dX63 z-RH>WSE8A05YOKV@6)@7j#L1%z6F5+@B8CcZKf1%rRvI%eI>UM>x+54gYu55pY=pk zAEd)ct8S;nB3%mS1=A*Rzp-`xaRn1q-`wMn#OU@SoN!+A=wF;^N(G2g;x@Xkt?e5w zGg6*!)n&?S7k%^z?{;S40$B%1>!k_VgBInm*l6_%G}P(iX;VJ}Ky6Qdg?mRQk52V+~aRkjn;)t@s9*-k<#t`VgScAvM-_@!%jnW9JRhk++tB_dfDtdx*O#~%m?|b3cXh{6EmE}B?a`n zY`8_Qay7H?umpDE@#93q>S{(r3qMOqO8x=;=@uQ?Wft{uU&6lIgEuYZHJPYzF1CMf z1(Pi#>O&SNP-f>K`v~yw4C3H2;0;U}^&s$j2xFt-bt5c%+wk8>km)&gaDqHJ&J$>T`f5CK1K#Ql($zb~ z#!-=9d0BN#({xm%40@WbHfsMZ@=<0sxR1WVB3V_T6Q?RIirtEU(FzKTrm=Pq{~?n_ zGFA8Z%*pDxh9&23_~J9pcew}i?nD&5_{KNjHw|XY_+$>07aPwG}_##@Per4gi9SDR=K|uinuC+Zb4L+ANG1k7bBm3%~mT87YAk-J* zmj#){@Ah+@bfxl*`}U_YF2JLLf#3D+Z8QhC^DcoD5|UaA#~zD0e9IWip(Yi1O748W zow947%vmIfwM3u}lYj@0AyWYsBz2LNgba}7R`jF}#iEShqQ)oLi*Hs$D&$(rlnY9$ zCPb1-p}j($jF!~RUUQW~4V^)iA$LKLg|Ck4{#3^%2d`CYWXP1F!fdAcVw5ZvnVfOu zk;kgnH1muM8+Z5Oj%D(}h|%^%&*cD=1psX*^vLv#WLx)Y)}U)NOf9=|BBGzJDrc66 zHCGJutT(c7jd)4e)oXOz%?1dcJX{1keKFSAUnOQ3m=c!xShh^ILSb_mg!O6@N0;L8 zO9wCAUtYe7#8w+dY|7x;#DP4kMsUC z*T2ruj^3kRI)oVXYVrtGfr*Jh*|hHRku>hkL7gw&1Q67rz5f+SMLOPpIbqgYro@ih z4wi`2Q)RhB)&N8PwafejK-iai&h; zHFe8A-TM&Q8mg5|;V~T?V;^H_4!NsyAOBc)cMB3>h^vpbhy-)_l_~9#c`qpObzfCG zVgBTgx?peXMRXt0wa#Ap;XY8$u@?#~*g!nfcjiHjHV;D7XxDlE*Pacl0N@Tv#u!iEOPB}Bl~WxBP=!jz{9sS#g2 ztri8E)731tSRGtyzWJ;+T2QBgOs$Csk5k5}7)73d+y705^5@34UrJr1mTEDR_7%4E zI)4ri&!56w+79w|c&&Pm^nPxU9tT{#Wbwbk#_F4Cr+nB#20Yj2Phi$pQQ@X68FZ9T zVYU1(>%G_?yZ&bX;4S!^V1bnzH=qFgOtjRk*XaUA4`??l)KSoE^S}xFm#CF{9n4Ky z1P^do>}Q=QYD>@#4~vS}MzRGlCNwuM-#pkEU3@)mSy$$o4j$JP<=>r(a$|zysj5mb z8`h-4afv5~G{mOnr}=DZsTJRPB(4z>?INi-h8p6@UG|K?e}>oFh^H&vuZ2C3%Cw zo@$c64PxvgUU+07teXr*a2LP&H+FBKOfxjl1%2W~T3`cgvAUC?tE6VF73Zoo5-V}9_BkBMM<|kDPI`ah{9 zl|ehXGpjyQ6)uZjYrhXoD}Gj33T%!4SwdN3s$~FQSOFK9UsKg>h+nKI8LN|+{8~-} zRZBL63JYO1@#^4QGlVM0{o@Nvm;7S2*QsyK`1CN2;S8aqs`21q~sDZv}SF zvptpP+FI$#ij8(=r3JO}o$i1~fgBRYbJ*3Ph@>w_-N6CeRzRK>=Hd-xnFN#mp1Wx$ zaAk*fcXyxV@I}Mqt0vZoz02az`S*c@CBLb4{+{~Oymd)SKihec!)Bm>S57CJcpHNy z(gh7qCTdEz2$4Ty>z{GQ&2s(Uldz{atgd@5s>nRi*Va@p(b2^imuQ|sT}>Yn7`?W- zUamgB;d(jG{V;S3!dkxria-ByBlCG}KJ^P&_(2zrn83~NLsgN?yNvw~38jd+iV!-p zgKMoQ-uaVIv#JDd(8zmNA2P z?^?2@o6o)cGfz(@!7>E`w55@cju@GGEJXX$nVwfm+TlILjCUT+zey#2DmmwsCDEJp z!fOKcu9uAIIfh8wp%G`#8N5gK|4I3cj^L|FLeI(cX42qbuVb2#j}0ivE?Q9k`Yh{O zhhmg}U@Q}eO%oa!b#0=S`ap&ZDft9AGH$58D zbVWL(b9Y!SvK+)xF5g)V8b>LO)%_JgL6RC`n!;&4AuT9ru{{(C9sfY>!_l8?PgUzw zE5Gft5y6OHbo_lje_PrSEbT*1X`$-@_&mU!VQOL%p1;iTxV3LZ>Ab3UNRVV5!NW*` zqiB|Zmb^%cOX(;I$0%n+hwEz;efn@K_ghV^G}qtfzxBNcG%0t--v=6=&4L&9KXEYJyS|4wkXB)x=B)xP zH^=XMJa1#5PtxV+m}c`1SReH2OvFz2D!J^OkQS%!aC+*2U*nBVok>W`WgZMBHW(TK zOG$}h2Huf`aedS`R=mR0V`p+r=WQj)vBRPi9`Js?3PIy z{7xAl8j(*Wlpiw|h${D$U=1xBf9;jxShIUcC>%X11ERcJyPtkf^>oo|t}oLXOIEvT z0lC%5+?BGaHd;*AA8&}h6#uPpHGX5Cijz>5R3%!#rXcB>NHTuDEm$PJ3}>QTRaWOB zX}cC>L8oek$iiG-VVlVHdPp;CS}mTKHVfawg6nrk-y+iK}8{yU_s*KHoFmN(2y>~!6jR)uQySk!2{shGdm+f5S`9cIDI5Ng6Oi2fk zIVi4gv!NMMOi&K}e0lDIfT(WA6t=A-lFAH;T(>1#fmO+W>rwr(+&l;o>#!IVBjE_#A|)IaFi#O3(-Z1B}79k#wusDN!?Xb7!%4gZZ9ab z^M*T+Uyz$A$Y-)=+5H2Cg&)fP!-&4u(m6U&?qA!S-5Rq4zRg5*EJ@?5+4Ln27kSf_cZq&%xwED1aOqizK_OcRCh&c) zVG*oGEi_ZqXv|y?anIdN@^O&s1$e_mXWFN<lUUif@U8Q!)VDqRIXmV!(1-f7%iZrgv^v`P+tAcSmP)H6OS>1MHVKEn1%xg zo4edfkZlAwSp7h{ZWAoe=;G?yBn#3Zw~Gz0KQcp*^ep4bxC3UXZgA6rr+cjI;ENun zVD3Ri__FZhhlUkgLL_Fq{18#+Q!a8z+pSIhpq8A+kCtox&p|b`H(3~#D7flj@)HQV z23G{Ik!mzB>PPST82fvFgOn$&E!I>&LA%%r>d|DFFYcN5{Ku0jDxV7yM za5Z0j69}f{f5G(EtSpF&>G!X!%hV z6pfe=MU-5V8Mj*ch`ypO1h1~G_tNRTysG4RXhWZh8H+1g#QW6WavA%B(bHyI=k%ur9C&$;lE+vT+ z$0yX1%NQ%OtY%EW5s;S^P@QCo{S_f+fRoYa`LQBxVGgr77?AHE+olHNq$Y;x?v*(!$eZhmKNw-c|z^RN!k;s9bOW*tyQfbvcX4hyZ8FtasaP~&qTxQfXY33vj<@y6z+NC!(98&jt;I>}!`-{=)pPRV}}VsARj zIm$}=P+4L{*lqC9vEkUK*oU}GxRUwmk?`28sw}51{3k{ z5HiyrC|!uA1{d!p%KlL&!bhj6P?%7uz{<*EvQVq$k=?EjXjXcEmAgO-Dx)S2J?s$e zVcgRGcwxb!e$Gc&kt$3RN~^{zQ0lGkc%(P;uF}ndl|OQxBA+_4ID#C^bzSoI0%N1h zc!B*`A}lQLbB&NgcZ+d=$uGRYV%GrbmDF+q-}@f-U(aj?r*N+=b@!@xY`!YYPw6tl z1tq}=nQhu{zBEOmA0ny8r#F+xQkT&k7GpZNe4<-fST?n`=X39cZ{64r{L$o~@*hlk zsBf~*DoQCy8=Qye#A(e^h32w6g3|(hAW9FBvgkIlalW1sOijpP0V|9qgU;U1KP24; zbhsRW<4UD+LOUMsEQBmZQknuBY?iiPyzKJb#lJxRSt%(0Q{(VG9ak}$;!HWQrum|{ z0uxIXJU&A5Yg~IXI@qd)JS$Aug~ir7V2Oe#LJ)NjqHm87A7wEVFX2mXjsLj)B`b{T zJVW8VlK{|4xn0B3$dk7C?Co71{cdqKHxm|zShAv6b!Hf-Vx)q-ORH~Sm~|wM0|H!j zuRGu8+V`mhO2(*)!d{0?RA9f^(6m4wZm^u}Qdl2J_k3uL71&Epe~gVB-`+*k{0ZvF zjk8$Khdj?q8}7TisoH!QusQjT$UO z<*7A^yfkq)d4DI|9iN|8@=$FtgyS9yetQcozvJVdd3R%w8*iZbiG0B)lNA5n1fqT` zfT_tF^NVu{3gV(IR>mp6@0Mwy0ytS(%ai_tqLqhWuxofTA!C*4Vowcv?ZRliaIH_d ztYR?m$g10t{ei)(w9~Z+e|4E#-l=kqP`j{WFoxvm$oMatHvWfW*nF7yCU8jj`6Chz zLwnWR?!_eIGx3+jc=#^!rjvpQk`}ey*N1=pRJDA{Q)5qLg2^i_WvF5~>sOIB!BC1; z`ubrHEi`EI#|0>Bj?tf6OM7Qi9R|WQ7Py;jnRQE0-E2ASG+m2Q9jq2LBRD4ntcXV0 z>>8ysOOqpBS1BnK_kAttc-#;=ZhmgLr!dIrm_BSO6gt)!q{CpulQQZr!0CM#2&0aQ zDc$UNCK%cpvTusXY1|a&Gs~?JUT~PGj1>4`$!QJ`l|D5uS}_Kv&s&P&MM?AfoaUn$ zUrLRGX(J!Uv)~(+fWvRQlc~yeKg-oN+Pf|@b}hnP!@E}^q0$C;7y9ar$ORCbyNDe@HL0s`-`jKubyURY~;1TAVEfa zE@BnNNO&@K)V?6rG#LDEzn`fD=~D2i?LKw3diP`-E`oV?35hMk~?%gM(D1-M&+zgn`?ZEmeZrM9|+ z=JSpC{V}K12bzbIpYubkkacj)A6*s2V|MnG)>e+cb%R*IwBv4Vy`TJAeV*H})5Aeq zTf1Jzpy|UmplBX#cP-yHM6&|ma_}@ z3{S-{no+kQ_qNQ~;^=Vjt`u`CRfW4$l&_BlAx4C@kuXcCe;4o<$A zt&d?H)3kigSQjh#EPd3-^B}Si0BAX3KHns!turSH?Y$4+Jskq(aCP^aq9dYJndxkn zII^jVHmL0N-U}Z%k0pNOP-^q!v3f5hMxmQZo-S&E$RwO>0Q>pZvc*{;jOOF0$P=!w zJ@2ST7mDx1>(X07o43XLD8GdKKq%uA08hFB?kmhG;(WNE2=C5Fh{Zq%>L_?T!JwQM zpoq1*4>iFvFxJ50m4N*t$Jt^wes;ShTQk|?31hxl6ul$jrM`)DQYg1!e}#Nh>M zf{<4{hQyH((8fGyfad=CrOYG)Z%Hl46akOh#wDO2`2eG-5bzj(svU8h6+7tyE&|98 z-;Ye$1x)V}X6+p;VufUtZ}sLFB{MRffmO*6FgEkKx-~s$yYtKs$%rxz7D{{1Vw~QB z#1Rw`0hYFw=4PG}#A}JJ58n!qp#d=R%Qg_40&;wS78BuS;<82W6Ui)?RDdtV_0VCo zAG?}In)3;GWubA*2H1pPzjwV-zUmjUIA5&r+p@GiO8>VMj?I4%+zMpxSj$oe+(}RP zW7Bv>%mZb}XeP)RE9r5DJ|LM=H6yVMI2&g9|9#SIEnZNgav6h{PC#Ak!%Y@bqwm|G zQ<#tzmCx+JNTi*JJyW{uSD(epGe9u3Juf^jATUo9U4h zt3)~bA3(__+GcS5#^m=f#j6K8F{b<{$>Nc4RQQp(%hklmjGdl#_bqhAKK;q z2ruHx?aR-T<)l--2+K1Y4jLm>3qtA)_pB`@ybjyxg+8{jb=7r~hhE)O5_6DgfypIZTgN|4#&sW+KzxOHu_7o>KE!E0 zMF_lYAfjWwiYeFhXMScQavjWP18RSGwB{5ASMMZ~k8z@~ACgyE!tvX%nqtGa5*|2k z(RmS8Kg>Rs%sNY{=x3P11S`TweJ%5hYc)ZfuXj8z0m+Q4Q{WaIr*w+`;18zG&mf_6 zi9a5|$u<{F4jHGxl$f{dA_E#^Kt@SFU@WEpHKqHm+JH+T`p0f7w=Lp#zyk&Foj3lV z!@aq_cAUZ=CNcXR;M94{Ydk=;QOA3^z3X}h7UlSXf_J-Z?i(iB{|`p}f$EpzJb;>S zG?_=9i>T~)v8v7g+L)|H~fCPXVR}JQS_Ugnq`e34lw}ELA++k$* zyx0L}9Vq*GDNxcQaJojP%8eaEXgKfebnqr!qz!yH!+$%+WvcMK{vzAB`T?QFEgq|PnZAdC z2EGHVmFw|58y=R|MQ~2Usl=}&Le(77;>LGnYb+1sVlZ&EeJv-CWt-fbn5Z*R?U>7P zwG;4jf5ABS>?!X0`0+61c)_dl{=&}x4S4(UgK;M$aS+5 zO-Rg}Jbn0_0X9QEO|o@jsBWqMiGIPE5XL+d!mIUl2vzFihmc-9J1|9f@jgsURe4=4 zlW>{M_vx?xLX|zN0(=sEk{WxT`sC|_*VftMB$M|C-xKwcUZ5-`)4cjmyTUTQWhdqi zOnIxr1njd+C&E3EV%FP4xx{Z@_<=@jgM012QhdpcJl*uS-sj+1?SW2N&=NjCMos|j zaGYa$?cV>!eKcktUS$bn^p1f+%K$j1AeONKTlnX)Lgu4SH6sCUz*=EvI|?zPU-0I;V#^$Cac1{<~c)6>bKeZ)ktX#oqLn$`q_aCQUxIr}rQ%ax5c! zo&b3#AwdM8l(+-$WZ-Bb-4(uYXURG-x#w6CqCfFvDv@-`^*p-dwA^OCt&Xsoor2KL)iXpPy&vVMw9mKHi-BvcAy zG$a(ugTYAF92O<`57sfDzVprI44j%}S-hZ@3{z1cdkCVmA67+~-`|pzm;aguP4MPz z^EIe&n{?ARG)sQS%p?-()Cb{}-$Y)$m62>kB;kDKXtaFbihH4eb)oue8a@A2OQ&H0<6kjT$+;^&6Y&mf!7-Gw7HB4%X z+ATvP(b2hD1@?|d{kJC==e3Nn(N;QF79xM8$<85>DN(=_g65Wylqff0 z&!SpZC?T)u=3KU4h4W*0zjtZj?f7sTF7tYe-7o)ay!m^oC?X#}Ns*i)C@otRQ8OIx{X9pyfR>b#&9Ut@zM zOszcvcBAeRRLw$W-Z+2zskw!PMzdiwk-2;m8@GlC?PESI3d+$_6tu3!5y2B`3owBi?eQMTnM8=JY^Ib2cdkY@T7c4rbDYbr< zYfUy!J6p#;Le5e%;sg)Npe!duI0k;UmnUn~I6id8n;56-6Tk;`0scSz<$RbC-L*aT zy6)`_aL)Py;R$*@l(YEj4?My`6qnaP=v8y&)~@1HO>tid8)?9B9B>d>5uoKM%^GdsTj{(x&g&bdHLEmoHYr>Txv zPx?xYzqC(nD`zRibuHoMN*g71_&KCQX5<;gSDkt(k;}>UcCCzP0!NF`QpTo2@H^o` z^Q2NS%MjLtbCE4i_-76-|AX(qR^ex1#d5>l(SoPy>FH_zgo#Z18Cy6%2wa2MqsTH+`?nd{`WzSpxBmlt_c)7?pp4_&WxKgK_Id2Nqd zv*id|E7dd>eZ^ZtDG$uDtVfkcq7O#vug9vp4qn#XTBca6>MDEEpr#WSwo72FzDM03 z7CCZMv0Og#e|Xke`I$+;&c1w_Br4smbpE2zsSaZritFU>)PBWItBfEZ zF2Fivtf_~f6F5XlcqNceNM#X7#^2w<-UZ}7VKD`J1UqFM5l|a*q|aEA4^pMB0S3f9 z_NV_OTy!Lf3G9x6R|vACoYs%N6axA$2tE^M21{#GVHH|czk{L!;8^tR`c2{Aj7l=I z{kI!PFWM4~yBG89dNJq7s&Fb0+PB#-tz7 z=q>mTuv&k(PC{;%3@+;$KIe~Ki@S8R1;FjU2XbZtAUpgCFJ>;0FKHUzp5NI`=)1Ct(n-sicWx((V@sB+}n#A-+(5>L!wwZ=G89YCIwKvF707%$^hE4#4+8<&3Q)p=Jk5bFz{LBC~nyw1jght!m}7EfMn~Sy_GT{WGU!lktdt zKcE8=r!S&9`dXlrfNGlcC8=IwCVMYBQJ|(5YN3`@7m;euaLxWk95*j7uV*$`uMG7} zJ&SGVm$Eo`Z$NzknAcRfvxUnsPn+WTr{LN?2F}T6pf~*Yy!PK2haSq2C~*(Ss6hMI z{6K#y(fqI5fA|Ai){+wk(6YO=tMR`1?8{~IoP!dk3urbHrJ-Z{zZzqa^*IWXmCpul zL0atyycZY!<1rhWWV%>P_T`X=6daas?Uq?IG1)qw{!P=9k+I(DgW`Ds3?iE;3-?gG z4a*sx(?RTP?eS*w8Pr8Hxxc$nzuH;1wVkxG^PS&4fY$aFWU3rNXtqAqstPBHA53Sm z-0ECvE1Es-&UYd5hLy56#d#t$4^T*DvH2(X^k{2mcX5$#d661p-c&b?rf42kA*+`% zRvAXGv8(AkkNl&vu9qP#m9U%-k9p9#{>-4&hq~t6)GM)&>gOU!9Sr+cI_E1jx`HC- z5J_f-?#Z=fHigD1rZnmb`sR!^TQ(KVtIPQ`%~kN;4)~MQ80?Rs0RxN3e<@)1SJ=f7 zKfCRHQm=Wj8swS;Bo3IsA#}{4Dn+egGcH&)b3C5IyomuDf$Fd# z&IH0ksR9d63uE*CBxg5-P|iArXvl`DKC5Tbp}8WI+NV^TAFb|tsM&2*)bHZZ=sOdF z=*lQuA4i|beDr*ClE>GFFl=(?r!?QzY<&)Op?RzpHmfdTSqsgt87`)NaKpwOZrWq3)Ej{4x5 zQKowXQSc7f^T@G>pq3FzyF$%gZ&(7_%%PJ0e3&gpfzLo0>R)K(4+w@G&VDE6gPqj? z^`^+bwwKX;c*Hr2H{$@hr1acw%wRrw%HFubRqQ49rP&v91lG1~N6pO42v+*?=YOMm z>x$5`-+B%z^D79t0?J&g>X>oSuO(n}3;P9dpgL?y8SQ-7rV;Z^q>Id50(P=dU_#4P z$`<6&x};KT26%k)7&%$}E$abDOak_?6W|kBQ(^YKp#Ad))a2_R*kc}dlORzzWeUD! zIeU%G#fX$YP!~Iwj4RZY3A(SEH}o;}yfbm;Tqb^je6T1m#M=wTsKkNPfvXui?HFI8 zcBcYS{sfh>G`cQ@s_OOwzc<*0n0?V`|BvonQO`dtZ)80fw4EWU-7QGLyt*zlQE=ey*=1_0r_bdD1+%X;E%CGKpeL%8SI4 zH1i^`DKm-_QNzb~gq?o^hVF8|-?=*(*$Vm2mq(;qzr`^+*%G<5WO%><1?KLIKG_-!K0@DGb}4Oym2CpNaDk2)!bb zoa$~bye(;DPoFkt{r0#vrt}#Jpg}TJ2nwImvrMkxL<@p&9>Fat-~t~5BAAoMswpyz zuxN<@dhfHmu`zI;Jb4Br{Hn$OkSL-9GB&dys3wRcrFs};>PX?Xw(52WExmZY4|sm# zQF^Y2^d2#|y-nb!iu3&Si%W$YETKQnfUj~4DiIeX^I9xo2_Qi1olm~GkzeWvQKOZi z>htHj1E>50SdsVBiLJiq8+XFOn9I8l^bg@1&)(o9{s+X%`kM`3^QuU#^wm4Rr^l0k zUS2|pmkORxbpcXPywB=TsSQ=@-xdXb8-u`%h#xozusc$wA5ea;K0p&33~i;&qe{wt z7z|>RB*gp|>Ah__QzUS%82rDBohcdQ2k3J6`#E)`|BzPGW%f%Y5sK&OiBmYyDl|sb z=%!e75AmvhE_1PMvgNtxl%4YfJcQb1*c5+ci`6eTOefCN)sg7M5H4Q|!EY8Xe}$+NU8X~jH7PU=lxnqH-w9l8TKVR~X9Fcg3t5b@;Sqr-e;xiOxsVw4 zMU30CO|+a-wMW#U)#rYOzr5lGZtd5)#hZLcng_t)o%ovT z1qyHQ$9aY9Z2jDa*q`Vq4cdl$Rhu4}hP zXAFWm&Q?Hz`~9q?@34z_M*WIAC1zaF%)Y$Q({cs>X5UmQpNf{ zXO*GR9;nSmLZ)b4jOG}%ovAjU1*%}DbWoeHgJEUR;zm|Lh?8yB(Q2y)kk}#S3V3p6 zz3?gZ2d*LNoiGIq5|bq_N`4e1EKBIib_4NH?*^xOVfu~3UOSi{wu+y1R+M|9~|EuOQlpf%b1h{bRZ zk=;Kx2D>C)c?@c4WG7)@jb#biE!nan5H$b%4=9UOT-QkNKH+E$)W1j!YHxFVB%MH9 zd*f~MmGc7HF*Z)0HuNO5v>vI+fJ#;$D`u8mZLtkHb4Ht!^u}j@C!d?nRLAaPSKHal zACfC+vhV4ojLqa_hx*GLXkVk86WY2ZCq}(4VccuV!q0RY)8AoL+oyF(S^CVW(&CuT zoy?7A_@eCKSu#eX=<{J>;`>U=JS&q|tRnL8Z!15MGSJGByT;=G8dBY^fE|?{MJ8e!xzC$8ohBZOVI_e?6AZSpR+v_s=Ytb2k7YlF8T+zNH0=oBqI^{LRFEu9^N> zb8s~0iXS-)qYX2s2|PVuG>W2G&zGjw{D;gLXp%oO%e0nQ-3tR@pSX1#GjZy`81Tj7 z5Kr$1?)~jsc?k;qQ;S>Bd0c{m@TAced78j>t^O3vw{oS-v*Cuh-=yU$bWaP*6HSkJ zg**KOufFL8seccmzYbek??v{B3Tvy>Dbh_P(XtFiP_6>MKeXuU`7z)*SK5Y$G@EL` zr}Hc-tj(V~5DYS&_xO52DA9Hc-duKdV)q=-xUbML=@ zX{FFs!qDx0FahQRK7g3@KIg4>)xSnZEucKNfJ@$PTd+P32KN!vEltagNK$epy+DTs zhwo;3`f+v3+99;tf;^wS}yUO}(QZ3j-Fp0VIjNwUxzS+NDU`w(6|CN z-Obevf3tjIJDN!mOI?+o^Rn|E-fPQ0|L~Kj#|L#%Uoa@=wfe_zJQlB)P;Oc+5wqf^ zl`pK$#5Rmu%UA76a+y~(lnEBnFXN4=<_E>1?K0alNi#=k;Wdw>)ddZRp2zz+q!Sb! z6$IIpasC>c6nN4d4dYRf zk@bweo`KA@U9N!Q;6j8$freB4y?(G>g!pol_;;y6M2^~0p^+zD=HUaX=jFT9+7IHW z>I1so4HkAe-qH8VJ5qR>qc!Qa9Eh^$T4)&@)upFO4($VFbRX2$6WZ~1bGg<3w)&?~ zf7tjc**Di9W`nM*e}L-z$5PPsJ728r7xM==eF%w*5R+n4s+`>cCfYn$*?Hx+kUyxDI?l%umVcqbdWZG+mg6sfY5%t+>eB?Sr zdDUxK)f2cp!1x=gTc_=B9Tq=FjX^6hK>abgA8irKqih(^4{<4wMQ+8+PaG6ens3>N z+ip$j67_^YIs&9g2sd4J=&NK92|}4GE8d4L-QEty`FkuiqSw`Smb=BY0i*pW*s0V2H&a=IB=thH>ijDQ6_^ zIW^kkY49)zmNifp&^4xP7?q*PN@^~{DtEnF(x!8rIR-lXQFo}ZK?BPdB?O7kTQ%11 z9)?xZ+*4#|^9K~Pd;`>nXb$@NWMcPSmZMa<$>{O27}ou&X@)fgD;tn~DD82Yu`^~+ zymJ|x{m0(!c1X7I+`rV=V#r~dIGKn_csNBztrLc$(;XKCUxi1obZ5Yp2Jl)VYUKpU zw7-JfjizBYs&H2nD}*Q$B1nWU-ORzH3a!bXavEwAt8ZTmnU7 zCb6?Q+cJTae)dMu&v@gF3R^IBuv;({@}4DEUqx&oB{`t_qQFVg@NconqOFrtts4W$ z5d+!i2O4|Ea0-uA06YTm9`u&w{oH__+FB<%&CuZdd$5AWrsL6w;&<)f6d))z83E;hypXfA!D-eD3YH9{osU7gLZ@3M5jOwd3hJ(h#H% z8mo5zZ1*_({4k57N$_gjYL5Q{E33B-9>Cu5pS)W5FM#jCU1joW_dOQk=iovmzr7FC z{14DJciMv*or-8e%qdWu2JlzCG|xHqBhN&J{=#BQj+VKEtGF;o^PH!P4ZDx1=!1-7 zEoM)I^zjj@xb)QQHf+ojYnsl>sN~5*vQ z6%Uz)K?+4HoW?k#eXw%oc_^ydqhUPxnsZ;?QhGRT))H|`)H0qPaS>tt4;0kd{_^G@ zaTiYAPhxm-r*7ghv~nR4j{r>L8;RV>U5_;z2GS~nQg#B8A=J+p`x@H9H|*h^u(%x36Bu|)HzrMN@|E2|Tjdl=hueb?Qlk$4jUEV5rZJ3E7WevlQ!G+K^VQ6G_id4+1N_u4u|KJ<&jf`{K=FC8*v zdjb1!fs*7j`*_j_EDYnTP|fz44U$gs>y5aNp7slAP35p(rXyd?z*O0%ut?};*yd~q z_l`BM7#(R6)?c^AE(q>FpgtJ~-~{c?#Z#>X5I2azpYBrv2FRHsg@>*T2Ff66Qk~qe z`@3gJUoCDX;ca0}nTpue<{iDV3IvUn|0C+G0;25JC_Ho{E#2KECDN^QcQ;6jbR*p@ zDcvn0Ez%%JgLFxwbe}!{&AIbJg_$q*8*4oaZx1s5%e^giFS<&?+)}X$<|87_gcxI`Zyx^izlse`x(Ebi6Ywe?@}7P! zsFd7RI@3T^YzG3lPC{IrzgB-N&|^rhuflmI1PZIGF)&WFzsLA2xIMbv`aOW#95ecZ zq4b#Qk+N0SpD)o^J3%B*EG|JfYa0U@K<>2m+zfm*ye3=seJn6+Oc$MF;$49WcPj5p zBWNyQ&R<@pO=BA0$|1wQ@9k(*N`xS4!j5ew<)%9Byx;2YL(Z5H&sN7Tv%VHTZvht3 zJKv7)4syi!;jw7FgGKyLQks4Z$*tSwNwm-k9@?i`S%rYcx?H0}F{3C+th!kVcg_Ga zsSw>!UVCsxzBaezQq{>Q`Ljisday+uugLR!$b0&oqN9HcR@d5jmrfk-vegb46WB_X zAZZl=0r)W${wt>e(Jwi=fD+}U0g_LPYVt)L*d)0uGGwn@f!Vz3H7QzLLC3YDqTx#+w^N7u0jCi;-XHh-_^zxnX3n5NdK2SPvNYC8TY1WdcO#bh0*N>x!} zgBId_twm^*;>H}K&6;FOz;yQq{I3o8O(AkKMYPrF7iF{gOi8H!*!M@2b-tcw=dAr* z)tniS7e}##qf#-J)h2e8g(FkOp{km&GCy_1Qo4Mq?k3<^OIC>fa@ zkPn{qyALn#NUDc`*$Pr;c6dF8a)0i`jPY4VVNpOCVsfj@hGT6hO_Tjyd(s`;t4#u zUeET~uguj8x!|)Re65ZamPCC;2Tuey#z68Bpe=ZmF(vhVjNPOj8v`?P4{dF22XP`R zQuA{Ty9OZU$lmgs>zlyoz~oaCGg^TRBRW-W=xrTgsuu90 zHqsO}Jw6%CL4nyC2J;OPTHJGb;w8=pQU;T1_gDtqHQ*tCuahS;SF5t)DkwmQNgV(3 z34=w|xti(=lrs4#Jpyp4{os7xj$}y)YMS9=Z_pYS1?RM#cbz`;{6m?J%13cf!#*^i zw-HB>s-$9&t8TFC?p>0frl)Yd*lv?`ck@}St3$@IAAvdkvti?p=3MGN0-f>aOD zV(L+u;Av-~P77)1jdMPmW)9nlo6NF)*hL9~GvSHQ=}G#@*KKL0Vmx^1orO*}GvJ@P zmGbee1S96rWdT4o^vfvJ>!yL&NC(>F&@rA(~h z9nm7ae|u2A3Sh_DI6TlFZ+mP=G@H2Fw$P{IWNXr?dg$zh9L$7!&?-)Y{lo`a;w~(RLFbmq z5C5q;r5`^oprdO#d9@n6%r+h70q5X2q*eNbhe#zqGm^$5b-u2B31C) z^%o%%X)h6Mf{ukDOZhM5nm$y`W@fEQganP*;25q{1!*bZ0No6mxjdP}o6U(%7A_2e zqj8PJe7gtzJ?Y-QwEX&RtfoW-{hKtkncJ<1WTpnXymFV{J?<0TvcG6$4jF7u>OT!` z6(ss*t1+`mBX&7T=_FP~)XdKs*tBiMWcn1&OPN31&5}@h32;+lxFfP>^@vM2BPsyJ z2C6}gkgIz{{6Z4!>@KPDG9It59UN@&yoy^G3!ld5QwS4+8Rcgeh2PF6y;L8sU@EFO zhR3C3yB0x(n;;UPSo=(EdMG!gyq`QemjVgwDVi9_qR?>lG*-u`#?4u<@2%gku<|P`|4L|AL{Scw!I2Bc(i9D&_5C0#8vTM ziOjJI>_HR6+sPvaZAkU`078{MFskKAE1JsXeX6u_c!L;v%B%*PX~GebIC@fv?|?rD04d{P;4(>ldo?M;07uRJiL;}F*cq+N`KnDv&VOSg`;`= z&-qB9KMq}g*C;vJ(aPz1Y0LW@w;)9TQbw2;^v>^O?Z2LBG;^$!8qReyp%-6>%l>*F ziF|c=H8YWivGj=BI=LucjZ6y20d)lSz>)7kLJ z(wB#t2jdcuWR~me8a<;EBSjHU?xE5Ut1$7mCtgK?)%ZEE`IL+W^Yo*5a;_#=h$S@3 zn+ZSn4zri1QdkU?m0ut-+YHQ0T^fFFG%A~ z>V@4VW@pn50|gjf^!)hnozw*gvt@Iiw;FBl5Qo}L@IEi`N&m_>`FKHd1D1fiQ+XaP zePg~r#`)DGKrQ9;9E{Y?GdL70mR47vzz!NMF*v{N))(-v@3PXVyky-TLx`s?>wiO~ zn9$eKq!W!pk?8c`EEH%jOXe}tT7Qin?E=d=!U;j9SF8pTCm;-X^)2d~(>qKH7ti-#hIk$is2{}kz z6gI?}6%v#0aGR;Qq+E_g=f5L9it?claAL8Zm)z-7!R)8MJ8rUpD{dFdXhQ&BcSR7- zvbyrVqmAmSe{6IF$P3VHi9g$mLQY?CCM8q&T};IuaZ!6;RvJTSICZv3wGnVBKMqYYfnm z-=avBVF}_F%0Zfpc9aU4O-z$3KFH~Q)2@u5Yrsm4$xaaKgdtS&Fs!IB{IG~X;}-T0 zwL@t6RHfT{CD(YWf%V(IXZQI_+Zen{Mxl9IL+iz~Nxt(kuLZ9)kx?&+SN2>9o)bq3d(+!vOY zqvhm?O&yj6vU)iAC}OFf9~m@8sb7~p*@s|tKglOGwY2cd{_3kDM1j$og#vdd&)Yd; zG5X{ga`14@=E^HItb%$g(w&T+a4uXEbAb1~O1^>ERs@&xo(Z0=YQ<@b7lo zI42+`wAu0Qb0X~EOmH$N9 ziXhTeiW0nVT^@U59J1ed|IhKaDrJ~emg}tUN~Ol5*nOxD!14kTgSd(vBx11Mc9mq^ z>lCUeB(1hjcU6)WVq5t_zGJgy_6+KH3C<+}T#WkKc!Yqip+PupM%Z^-51UORBZau> zD+ghIG%$Y%7yy)&R`#gUwkv3;Nw02+rTSEftv49)AR%q3mfCrc-GGIx(>rYyw$dqZ zWm9P7(Yh|FoWeLhV($f$S6zf&Y*;~g0AE8ybsEq$LZ5fR1l`0?W+9%t`2-6 zky_@8%9Ga*#eME?fLzBfE^s^(){&Gg>~9c-C1aJOSr09&sr^~UcO0er*d)88a&ww@ zBBgi+!33ir($1@&xivqT@u%N!G{M562#$V%=tf9T!Isn4F4aCwN%OynK%Trm?G6Bf z>|!-r!;urjbEoO!3z7{$i7nR>s+>djfG~;kBB0Bq=rlXsZW?H9H>pRmC5S;>s~H^W zVFy{WKkC;((5>(j#(!DpG8yJ)CZv%JO zExb3{Np^w{ekGFBdSI{)#c=~Z7D%0`GH7#MY_J5`DEr69;|)~+46jfuVCF38bP#sL zI_lepOwCLXJ+7E>R*fBwEb?&n{pqBD-30gA(cXR;Y`M0w-c$?nXkJ3C`(T_}w;$Ux zc69%BKlb%7np$2RehWw0vRwr>q7T4e)IZG1$0Jb$927ac!2Js*8ebNvu1=qz zJ1(FAvnTwMUtjQu8zo04?>Z&@GE8ZjQSb}JiRm3%M-kM0AKXy&YOTS=!49ahRT0I> zA|N!gc0I~9Jy`}dYc{J(*%>hlL^{opJTm(1Xj-pcr^AUmIK5=1^T6VUO&1#q7VE3C z(2XFo%z`;XNKoPF$LQ{vy?Fs#J%{Mrra2g?cM*SpqVf!z5?q_Iy4YYXty0`HrA7a4 zn)u`Q_6((h^p#Q;VsQl`r`SD0UE8q`yE|!hdOmnYQn^rd@gS2nPOoc8uTO0!w?4l% z?dX{7ta0e}06kwf%~H3df_?)ObRFH@-71VTd<^w-I2g!_j$Jtw?^vlpU8e_Je?qWh zDyFLViJ_I;mI{CLx_Ftc)x{YHD^&0$S-Y}aSb7s#Nt9^}Pm7JyNNvHV-4SV@W z^nPa~6}*4X;11kMf8@R;Ssdf^f?|)k9kCMSX4i6IL_MS-48 zHqu$#4n9wgxB}DC1s0E)NU6Fl!99uXzHsUf;n!Y5Qx*8{eXYHJ zhJk743v_E;Q^jkzv?REPT8krB%V=)b8y6|L*qJd?!B}rXZV_7$+oA$90qj#&16DZXX(BRy)#3c`ZRLVP ztru#B_1s(WOr+0JWgphg_Nal$ zb3#!SXHPM9n%*Lm8uinuHo_iO#PyaR$@J6tHC@;k z?Nyhv(HSO2w&LGlm(?;y#sqg9ic5WoBLtTLJvku)T|<+szK*#!5nG8cRmnYFo0U=4a6xH{o0bEPz=@e*ZQm+Lf`0M^u7g+CI=a6B+AjXd1d`7 zyd#CHe8%gmfS8}*!@h%V*#Y0O1MUdxpejQlLf-U{r|pp8yn*^-F9?cSzL4g7wfWn2 zOxW-40t}a99Fsdx!!tq9xgU@ihJB?{I5??ab-89R060@c{*w1UxkE291o`G4Yt1eWLf|Dlg~;XGg2OuYkD9c;mbaq6Y|jA9W#DTM;cx+wT2m8$ z*28M8^(H}-bKvHOcjyysh*f9BXb>Kz#IF?SFa(m6q8aL8m?%%-yaP8DBmXVAFZ&U5 zq}k)9Nd|(a#&-P{LaF)kkITQ;66m>v3YzkXgc-Ce?N4c>pP6IR1 z@{1O2^!P7Rl#GE;jXY;>5&JL0E+Do!cGN^NZT7*_igwuHlPc@MaeI6Rd-*tLI< zGQ_LX)%`E9e!t}B_L>D>Z#tX)Zv2+F;g$}^921?rX=hodC-px-m=5@toR-k!$?^l}ZT=^aN1}hf5b9Eep0cOc!L!CBtdKb11XXVYO^1CRcWtUI5Ku16;>gHpcXE` zqEz?A@!v$PcXi1zd_o{HCc8$WDMCuK3`?t}efL*%UF;>4SeR9Y<#hzsvZTNN=g-HhVgI&MWVE2y31qNx4{JLVy2cYpEB{gdoPW zs~OLpGM*X59`N5~m_P;yDb6GH2D&j?m+!z$*{39|`#Sq7;sB_14oRHxnJs_km zYgIYP$9pL$@?uzK_%_*#j3a)xq|A3Itf>1|5{ zh12#JB|61GLmao{+NLB_q+g;U5LYR&vdBrxh4p~E0la(p90)y3q(n2qn(VKvtatL_ znwrGoCJ&M*3~24`K9FKI!D3V3vH~>v*r0v2&#jm|&p>_Ycp*dtEK+|x2pK(}08JcN zHYT8ugwts*oR|G0xNZ zVG|l_45HMHW-~Z3hC&eDW$`lQ{Txgs2`}Z3W#y+|2-yT;?E0@?4q!bMB6?|6s9{m$ z1jYpw7>)vTl<$lDttsX50~sUJXUFdh@r6_P32e*MeS`0H0>4%?u)|!tXXgy(c=YSjA%z`|iAYm{Hp9MgXE9i}4DRqp1 zksd%?qp=jL_$uxqm3_akYmT!_n_H4X^|F|U&#Ejv(NVKmLJA;7Que3BzJZrgs`aM9ZGK* zb2&Gox<&Scz@JwuC5B17R9J~P`D5+uo7%m#21M0FSaxj@;+u~9sKyCtCOp=YKgb#} zKRR|Z2^hw2(kM<_=lXvD0;*n16ZhV+RoIRRWXaVCMR+QFD&(M`?1dW3w;1Aq?-H=o z4{t?jqG0B-t_91rC=^WaFo*4EIgm#n;aXx2Fam$_LnPpr26P6<0lxrfT!$%IxWCyj z*=V@p_JESB4X~7;@n}+Pl$?L)jWUH0s1Hs~224^P_>e_17_CyPf9I)}yh9l*th|rN z>4_X-=v~Tq3j-{*+c8GaPIU!27+wIg@Nt)@&s(+?^Aqha`6L4{q6PG2 zy-GT$fO%~>`Lj%70)Kex_oq%%(~F%T$GQ_*$mh~NC)C6p0&)~v^;jF`k4 z4%34aaYj|ure|NqIa1HHjrnv(M3hylnP~3)28Ro;LX}X`HoOPeio;Ls?!6%Qzfs*Y z(2TTMASA%PA)zY|;qEWjm}yd6<7*j@qf5pKSyzVno`2w0b6`K*WcRa$(tQPoDlonh z5hBqCnbFNp!coo@G@UzANFv!)>oO~fVAX4~3EhxX49x5->E>&u4V}1SPz_ccj%2CP zg&7XbN1aU@eI^wv>w@YW`o-3#28}3?z&|QBv;zD}8yl_rnOiI}MgfnP zTSk*4p#p9jz@GkbjB5})Pdr>Jv4@E<9_E9HE=S7Ks97IP9sDZ3?xR0>{On3J#CAyi zTxl+|u{e13CW=Ne`0^4!bair8JZL8bR_%Z0*;YRSx$P5RuJcYYjQIk3h49nOR#%Lh z+v7P5c4@8hd zmxCWEE~;xC{3h12jT?i5DSRgOv(;>{1EVvdw&@n+Kn*O%(*jja)iYOV#@&(}D* z)c#vI0c(vn;k9anlk4v0G5<}}K*bZbq!Hn|h2h48EkDgWX8oV~gRkk$lMKMK)LZwh zp0-CmK?&HZZp-9tXx9Q?HJ~r@a2N;-Bb<>=GvC_{yrRBCg*rJ!EGKC!BKkU=`8A~G zq8fIwmr7Fo&xaZ?VCFX%pp8_tN`@1wwRZM{QdJt!)C&wYf;9>%vS~LBbtC(G32E3R zldh;2t@1*2A}hr!MO5D(s5@z!Yi~$0S3VU9b)CgR6jX3DcyN5Kt@AV&1@ObfV7}v8 zj~nS{L@@f4KJ#nMaW^(!fqLUiJfx7s2iJn$IGbjbGF5ESPRJ6H5Xz*wyf*zqMDX>! z`=Pmo?ZT{+D3htgo#6 zQ%6*trLVgpHj8O(4|;4cm1g5aNNw458+|1RXZ<7pom$2EolN7FK0kj}<=`?rFmW#E zEc#1s`1zS%EjR4j<+uS5*5{$55;(UNgq+=QYI1~Hg9WKv*}}`2uJHn=!FK6G)aSbZ zz>0DZ6@2U#*X4PT2BOC36QBxs%;Tt!4AT5&KFrxwwYLoLLZIvpFnr0ze$PgvfwzhVZ>lQ^(+)FPt`p zeBDDIUTJXu-G|ifI7%A`nBo8aP!*O#{t6DN4EHmz^| z;Le|`B0Npl2$-|?Y8a|y>w0FhoG3H(%>7!9{Spc`;xF1href)7w?-p>F+s-G%^%#i zgM4q#@2=XIWdsWq4N63p@v+430aJSSV2kQql~*pk(aCdQp#lN9y+976oPeAuT5-y~D?$<_CqzVvJywMYT~=HC6yKG-v?=z z_75npX3rtTn%PI3qz`{&MN#+J+QLmw4qt3~9D#r{;=?BrS^I(=qq_9hI5*T1`Qm`5C zkY$SyBYA|cktybu5}%+ykTdWnc< z{MBpE+IRnEOE= z;Rz(I>Hj1}n~t_Ec0oTD3g7MTMNu6+ubK~ZsQjLP1@2k^N^KP6wxpKTuL*>9RaRCa zeDVjf+GmjJa1bxqFl@S7+b$ZmafT3t9T^ZCRo8y_00v`mhP7|P+nh2uZL?rA!2e7F zB4g@Lx?P$G^jz3J>VAhn(ve5+;Rh1L@Fr?^1F?J3H>mRI6cfAV%2Zuaaf*nq4|&gw zDt?)`6fhdFx4?WTl{wHy;>QBX9~McpM$xB^k>GiVsyLY13;U4$F7u7GB6kqg(YVz} zP|NM_Zj}X)5m8G-E6Eo#pR367ynA;*T+u+q-mAmhKg^2 z$U2@@cWDTlZ)#mpCApLc%M?xHJP1w&M-;}PEk$EijqQdV_G~1p;%R_?>Ts%~J}Y9z z>*a;JZJv9)hdDplLrfOGlhM%7rr=q)5d-|A2pFmJ|91X9O1C_@E0z6Iw4)J9pn=-m z=S_c327i)vd+9WGq3&sHN8msHcbY~%Nm0YS8k2exrA`K={xjvOvhZK2Nsbt)0%5H) z# z^9pnv0vbHDC0r>q*jFi2TC-5G8~C5$5ebNh{8uoYzSIi)f+tV~As9ZKgYRMva4_zWND$Nsn=_)O@o}f0NvI;(&bqqZM z`)jhm_00zNTO1amz)*D$c6l}JM!B+a^a$~>D*Beo>^JSd_+)1@j4KdsP;X(sq6YfD zS;&%4Hujh49>;)7l33$0AE)zbTIg4sH|J+ zFT!gfA-)od2TwoP4aKP$Rq-RQdYdWgwHEW0GHuPCKhorP&vK0F~7zJ<74Oubbjib8}Y(08X%zga~BY7=;vH|3-b%3N$j&^~{_7 z0LS?q1vk_#xC#qiZuZ+&oQDsR1hNXDnl^KJtyllSD5e+8_sZRl>&U=}am3VsvPh;& z;x6&&_6iWs#o?VOrI>M-Iup z!-K>3V7a@yn-ZCeT?svF1Q>TEFMvb~u4^qYt509(P+W)dZNL^}Zxk(_1WDM8MB`=~ zYLy&GWsz*kO{e*sO#hhRRhoM?45iqB)B6ZuKA^)Skvu0Sr#xXVSABi`=_}>xu!!g( zK#6K6!pX%}ty8;;Tq5=J1HSjIE2jf1C-hvfFRSyu*YtDWZ_l&!KggddN*pBj zsj}oDM?n13G68U`6{($TP~;i(STYR^H%2x4?sOBH3B}O)@30vEm5#*9{P5k5G;|m& zW}s0NPapin9u;Lj+C#u8`5CNLbv%~^^e}-Qe};|pw^YO@>U+|fg^soq|u)U5VWh1FFb*!1_ zT+UKeG&=9A*Z5|(&u2smGV)Cn6*OLH!BT3fQ3VmhnT44cS~$P`moo?ZU3^$|);2qg z&>3EgOjTl=JBW)2n_);foBGx_AfS8g`(}=^rr#zD#}hkvzqtSSw(iNMCRzv)#prk; z+!zHRU{?98xzuzJKGlx!?lDPRQ`_-5$XL^N)bHE;g|+=ad-3PG7k1%;U_SCg7pAG}rU&~U2&&?AwUql3mp6;o2 zXo~VTxKweEwW@Snz^c3p7|zh)@b1HHQVyO0{|n?vMEOxaD1K7K>aXqQ+6A+JM{jwe zL4uexePp92ETjt-W{CkpoCO#!cfVUQ%8|%fI~6L(X0};E(-@2hB2Ws1UBr9T*n}8& zT+QD!wR7CT**m6Lg7)B&r7(W=@3*SZqDctlK*mH|WcKLW1De1>EMpuhRUEoYvI$h% z-fi=0)L*Ue@z0^Tof!M6>`VkyLb zs|SJlg#N?2K03373SApg-;HQ@0Xg_)HzKd>M<^o=JQ7EMdkkn&Pp9C$CLo`rvMR{A zA;Z6qVHfalIc|QTJ_|e%EIKt!i`#a(X;3dk!QXnOs^Xq8pb-__f+1c}2^NUc)AR(@ zehCNp!)Ue}R58J#uci9A2K;SL`@2K$0bsKhx#@jj2G7$tL089qwvqIf{ckpfDy`Q; z-<>ivSg!8Agkx2^x9o*m{Egu>r~cSEl7QuB)I%j1Vlu z6&)hz;y4jp#NjCTDSND^&e6@XCZ(WU(o7T2GJ;N(0BM|b1{T)Rr2ti;;}=HbB#3K6 zG}nLU{r!NzBnCv-qZE6+0IN+o1eussA_mC!26E6TL4 zUfW5Va?{yvvPSlCViPIIfgNiK&Ic8irM2aB8%uZnLu;i1mAW~tJ^YX#v=a%`Z%5`d zAY4gB6NE6#bcF6ZHbrvSY!p$V5a+x~k4Q{aSOo3~S~v7KiXo zVHK4n+39w_Y>;$9gO%BCdL*gK&Y^>{JLN1&xq6dr=`!FaevQ?U{z}5Bzs+Lng{*&0 zzAjcGOHJ#SzXUY_p0wPU^@4C)P_>OdsH2%Kq%%^6uk{vEWy#&^42Qk~@ zhI<1fPF3~~gm)#O`p?ftonG0rnyGL6PyDbmn>{X9#TrNF0s|Y$s+jZhF@@rMv1P># zu%xWrr5**Dxi?wY^W&C>)`g<}X}W~>ax~B|e~Al@I(j{%G<{)|O7!>S@zI6GsB5gM zqNbweq~av*e2SihhnpL4kzSs50HJ13{Nih`Tw|}D)W2!!HH&f0h|mNe?~~u`gFETQ zt5h5u3OnNv1=1Av)q5~VB;aw~pdp?8wtC4f#q?Nc+Hdoz6DtwK@1}zZfb3xIYqgQu z_5)^~ywioBLL9mo(R!DKL@Z|&oUvudXDJ~FI&H*W`%O|KdKPLQ%;+(l=rmrPR`|@I zKBpZuYgH;Lm4(;za-sWD^*#J{bNn)a#i>m>mY1QMvddvWTTIZ@$NMGV$^kfJ3Nodn zGCM3xL;h`=jc2`@?iwPy{+=0s(yNF1ezY$|QahDhhsSlZ$tXg55f;WM4}J;@xgE@V zpKtS?1?BYWYJy352sF|N_f_x;bFSk3)W{k(04&eJ^-@k>@Rs_6Fh~*qH>+*j396$H z-&P#-j)jS#D>8scA1oM^PZ_{Zgd*Y?r)Rh@7T_APJ=MQ3^&FWA(9!?<%3zc%ASJe+C= zgc-YjlA$s3qxk~7fzH1aC?Fs^8T>xn1IN0CrqL48fu*EXJ<}|-r3qi>gTqWiDKpB` z8g~-)*fLumYRg_?*H(LKyuyRQ)Y*$N5k`-_5prk*o@1sc0(r(Y;;wZu>dnZ+qVtv| zJux12wJzxbC+GK=|0u<=5K^+}9HV2abn3r2J7)=nF764GDin+=-s8FD{2?qy2#f5% z>e-GA`?HS^VfEo$Z75smD5t^d0QVAf$@XHY4TVa@_%r$Jp@)?Su*yK=7}kFiTnV51 zNQ?a$CTkpa9*mvle?19DvH``PD%Jc>!QNlDJBLv}S98ad9cWxB+$p<_#PMRNaI z#ztk2f<#|jT)f-VZs+lTeen~L;RS%~1yfZq*b00O%4pO$WhL@I*I8kH3W(pPeQFB$ zFcD{{=bm9=ER~bIVx4Q)9u#N#fHuHG)!v}wo{1p$mmmK+c>fEJQm%fr;DWks&?*-l zU0@H_%Q;1dhn6l2x7y)xt>#V%kHRUeM43Vturd7sryu3Dkl-1LkB>x3p( z-nCXqzFv`C4&#*icxoE7MqNAnRu@%({`;*&OUT92#P_7*sMN3_W~{);82E53Y_CnKSql@DvM7kMsGZxcwR0|^!O*jml%|}i z>DzB}tM?3fA4i-r5UyP&%uD=+10??B_g1KUrL05cMe_P!-%tgEhpt^cMvOd@<6l1< zdvE&WND87L;#a{do1V)QqltD>*auqk>@Qm9tt5u>wIQ!I^+>qMxR`&_7*#{j?LBnw zogG@f1uhdGAlT((GQ$E}Ie_ha#@$Kb?f3s~;fdRhG$>+By#!A3>S}t$;-d<`{kO&q zqOU5vg$(y*H{R`bb_0SEc!WgUvDY!AmaBL^U#=7>Q$5@kbNCI^o2!5F z*#L4I7dfw-pa{c7yXGY@_zNDs`tWw{Y&8JX+mZT|V=vBypFs*GpP;A9w|FA}NTvV| zkUt|VH7dPz!-}C+!n}qU=pnA`n=CQZzrO6i&mBPEc%~4t6n?$OUKdzh&O~ITrsjen z*FJCJF^XlySlXUEGim_uB(;&$;5r?XQ6%c5_E5a-R`D@7IN02vX+u!)KJ+5!=0F(^&PbWu=%|iEP3@_T?HlG6=#b33ntwt48aG*vnUzPN?S!@ z4Sd?1y_WJ7R=yW}=}uN6TQNNJ{HC#uPq4P|XYtQB@lbvcB-DLSe%o2;r9{{m*3IQA zhyGVqS_B=XeIdb8N0a__fE9r?>CKEJSH=>BKH=bX;C(y{}_zIdrAJoq?A8g{nIeZpJODvo~VZ8<* z!Pv%R-#jJ62W{bb0)Ve1=TEksdEXqS$^bK{0NwSCKlj%-P>l&*gE!kQxD%qM(~qJI z{4QsqOY!YF*rSA1U|$_{npm(5L!AyA-&o{n6x(n7J`~}KNLUqU6P+QA7wazbvsGGZ zcJN4hsh|RNjZ3H2En?paL=g8y6G(IcLMgRflbN)5)J<9g8!qhc`S`m)dUO4YQ3G{4?%$Gi^ zypBhFT?pmi13@h64_S%G$u zt%4Lloh<^MCPO`ie(%(fm8gH-RjM|1agC{`sH8LhmVm`>w#7+VhtZQ zktIeZ|4rkb)kKhi=B&+9ecG?yuxJCdXa_dA*-xbFloUDum`}dbrig!!fqZ^b-;%lU z;zydMk#-k*WJU1U2tttrs?jQP94PyXJ~XT-zVjrumRQoPoIivfP~bC1DJbX}%*?RM zCspY+AAliyXZ1Hny%MIs1r-NSpe&HF*67r4f=KT_Pz$w>TXte`T_qTK;U?1|&h>#> z!U{in$fjkBtDdNC4MOb=x=s?$8Tq5$KmCBS;0by=JquUw&y2shAxX3-{Dy-V+&e@o zWJOsKK(yE@f5c!UUN`Unv?Kn21cHS5Zi`25Ex*od=9B1ysg(H&ddI6i)U3;2yowCg zgII5$AyAnQ(0dZfkD56679amP5o4uPd zLW`!O+aeQ@Q|~8htA6g7Zfcy+N%Di`kRJN*{UI2mQgd0Ah*-!+^Cj_|RrEps@5sHPHuCj z>8+l>Xqr$CwR%QHf#ZinkxO8)14cc4;&H7>ubTVI z3l#?%QTdt$0RDdNQ|Cf)J>~;{z&XE_34v%LL+75y)BC~quZ2Pk3*WN0(WX3OjBb+E zmYyY;Nn$~uhJ#IvK1Y!c&--0rnwLN<8P8O?b#^MFe->41b#o3H#kQ07LkS+GzFS)w z%Au9-OdbCK4|erD_tP)6*Y5}ZIxBta8cpYT?tS5Ja=I`NHmv6@hJylbd-*H-U1TmMRcpxtx#fiS$2U_8 zDSacI@bp;Jds0R3%4UTbP?u&(EwdGeJP>;PTAkcz zL4(pfmluZB#J0NR&3uXkELj%&(Fl9c*MNZJFpo%pK`L}n+AkU`K1-#Qhgw+4zy=uV zp};13&d)X+hqtc!IQPDkLb#J07&f#!Ht~T3RE*Tc4~k6!uN$gttB5A|-&$k=HM)&f zZw7CHHPX)3P=@4(Til40&Al7YF2~B4OFr8KRzSD;Kq3^Cen#*8z-T)F?Wy;b1B66s zooB0Xl^lKI7`LKcDgb2Txo5z&Ckb1IjO8p{O3ni~wD-aOybp0sK|bl-mw;6e3=P;A z{=RV})?O@pUa0SVrJ6wA2UMb5k2^A^`#yR~m2**vN@cv&j9_k7w0SJK#pP1;X-l+^ z2`FuW`)69O@Y|$S%%rWky(9#BG^MfX2D8id{QsJu!;H@HBG*vbzFRFR#72^l->^Vb z7Nc1`JfCyo6@ zyIwf<2|-H;rRqoA{J3%-D_EX3`O18LG(5~DMv}%<9D|NxQnpGqL!NAW&0xtS&5p)> zk!V%GkhELER<_V| zuLq+M#}3HctV}L-c6QeK?yzjhF4LMcUeU@w?HE7p0A>GI{w=wqloo59KPa9m>pWH( zB^A~=9&>QwzkSGohs^=d;ctj@YOu1nz68Xf5QC~i&PVjX5HK1)?X_`N5pz?3p5h4_2Tl$TY>(?EVw*oVWE z*Al(BE9W+wdnXI7jf%i*ZWxG14u8W17K+CM)ZjLT(EB(UtRp#u+n;}rg1ga_YN7m z5x0SNH|D^;1w<&@NWv1^?B7y+A0HM-H8i0C0N_lyfcCYdzC7N-u?JFbg;CTbU+cZD zfQFs}CAA;;fRZWnaXueU*8n&Q$m@;Ku+6vl_@4Q0&1BE@5J&EQ(|j;VK2OXg?PL1< z_Y%r^kHz)E43m-Gh6eO7y!pB?TMsvJ?hAA`Ku%$R`~wN0wliZXj4)Ps_=wZY>Oc1I z+SBn`9d@MDC;rsxqK>QPT8z}p;I~)X1jHa_zz1pq$xDnifMY7-g8(un9W*%dm=A?~ zl%#Y`36GdgDimeoi*)qULG2Usf=zts-lxZYzK>u`o_-XDp>9fK6Z0V={kAXn_+wum z#`t>n0qS%#Xdt-eU@JcpVGD*a3-{u_bm4#m60pWv(PQsY%kguoB8SxA z2&LzC1h`hL`P5CYO^UB<-g{|R{j+JpHBrm|?(EOgu9$HPj@hS7>s+D|^<;B|Ag%$o zNwAZn0Kr<&0vMLAZfKcTsmLr#A@S7|lo$IFG+*GXML|oMN$vW)cMGhQS9xIQ5hSq; zKV{@O#?4fbB(yKt4APoq74svh=RAzT=?spg?SVEOm-Rz%PJtYsL?u4YB}@T$I4JHO z+5lp{6vDhwK9+b#dXK?J%9xY41~Ruom6~1HEyp0=_o1OE1|1(=SZQ;A_b$wX)^b8! zNsz84`YZMX3u)cd4HTK5bLz`5!W)EjpX2_#h>RRdfw|yXVczLIL_l6hR#x@VBESe- zwo0vPZ;*}w#X!`FCG6b_g$$D&<}&2Ct92U17yi+&3$E(Z0kb4LbNos8axAz>YImZd z2{P#7XS?*lXLV5D6A?T^KG@!zMNC@(;FVO*wp}<&PyOstR_t z$j?dC?$LiP=ch&$baQ$78X=~J$%KOsucb!iSfQ^E zzufjXO2@l&N*_ImI~IEiM)9lQ#NNywkuuHZ)H+$z;pOGM08h~^aKY=eyW0vMe;&Y% z4+$Cr)2yFRSv@otcal?I_&0r6z0Qo%8SqGSLcuYT{VVV$&d$!i25mQXK$pqqZ%xw_ zpW~Ef2^CU+K?k`~0L_EDFZ!v^+CAsuUuM<@c>XFdu!64fQPX1v5={gJ;jf~T#y;b1 z-fYFca1D%Q4M5J}(Kz=85V*qQ$dN-gIVfszP~?g$pAE%6Bv&cH0rK%;N_OomoWIJb zQ^?3K;-|MH#ZM`0p5dD_Ou){Ex+!ep|HMt@{`LIsdRxnr9U?|j6{*V+Vlv-+e!>3y+le%dchyQaH8RPXaRdYfgOL> zSAQM#{m>~!TepO?7(ekFDfuxvc5Cvvd_K>O^Tg|}VLt0WC}T(2hx_}tAZUV|ufKoHy4q`O;6ItA$#=}@|)C8WDcx>H(ON=mv@I;0ViZUm&e!SC+-eechw zvdiw>d(WAfGm}i%1r-Qj9p3}hZ?EhAu8DEk^;7G9CFF|_2_M7PdF1h?$8&$Z4R0~W znS^XjZb684bge{DwrSn`fn_VO7*e?VXjkb4J_jU5kgW}72zeACjSb{#-AGjJL^sLM zQa=mc?p;?`*H){^K`jy70x-5c0-vrG@h{Pgg>DZ0KREXd#87S!5Q^S`k>1=7d1Q>R zq8wsT7%K;lkj*$eJiHUF!bW_LVnWehNCFOmW&Jnh+L+(0`+;a7tXCJ4U<8gtm4`QE zzCzY6q$r1J1D4wG6XbJ-V-Q_K#$72&xS9jOv5>=R7&BAFNT?{0l=i=mfPDK7&fW0Q zI8Tu;f#_)9C25AInP9*VBTU`o*r7kz(1JJ{+o_7Ow{v5}8ZwYCvK3ra!NeQxnz zty4rao5?;l2s9vkx*I6&ViHeC(zBQ(jx1Bn##^AtX$POhMLyjS6-{VglLTQk05*uc zR5V`hRt_%YP}>&0)=37qDQsk$Tk)kC5&3bp>Gvk?Krz zg!ft$|A+Ls$)QdcnwEVjSBk_-Qe^}go_9AVodP*a;<0GYQQ(+`5x)gwNUY%RBzx|N zh~Sp)tUS#t(jTi3!sWPohHVOk5YQbUJaa-qQI(LhDLWwBVseomw}-POs=dBGT~3+Bv4Ke{{1dQaVL{3^ZS#?SwzBw_Ly*sI?3xE zdX$UH$3 zX#)yQhgJ#r^u^y1Hhpl(^B~)Gsh_s-TnPPrcqm5OJn>6I z+y4AsOuUjyBBtlxs+BYlJfjk%CtkE|YAm|=rtn8nIm(K-!#_$5M&C@-yld{2?QfPz z8Ci{iZAz{0^~s}kqr3QdWAy&nKW^LTL)0=JS~nN6qmOz&oWYg?1V;QqvSH4AjiLUR@0<(lRsD`5J{J+~P4NkU-A5zI#( z0m2wg4PQR)hO_Z@wAyp^Qv2jYa9LAy1% zJ-y5FI+Q9uR|UncZOU(%^r7R}*FnFwQX;fQ6?ctUhBiD=hnf2~wP#MA%f*TQk{G#X z{iM{j^QFKicUtTQ!T}@~jc<)MjkC_$ux<)%gS~;QF_^F!sj#G56Pa!!p)I9~GM|7m z4sa=ZU+|L{CWy%1Ik5*T=|d(f;2*BIzub-jSmh=V7~eoM5KORm&(l|A^ zh7eO6HqZG#D3sMC(|t@sPKRZ$Qhy9_3uw0=Xp|e@ScX|`f7UP`lfPKVx zc;F-1G`D3Wd(`o7*8g!a|>+>z#r-sNP0OJ_OC}r^;hMMz*#E_dPK=3zXE1N+dwYGX;4xklKt_k zs`kpI=~9nbM?(1X({|m6TqaQQZ{x2kp)U1iy_lZBDW%|9LA}EWdaX266*zjk>3NmR zvQ3uol<1nNJWBm*SljvRZf;CMyj>2$#d@TiA6@0uG3wc%&(x~zM~dfB4F2VgC&h`A z*|ln-xdPmLIzcKtIdCfnYwZwHenSP&6>E25y`%y8N+c^Gbrf;GYrjvYNq^M8d;fpO zkd_J9Ed0rG8Haq*Vj2eWwtwKlWESG77EA$Z37;Jx`&fZUxS=Q~TSui`xBejREelN6 zMIgl1@ZfGXTl7-lJXerQs(B6l2|4JU!KhhV>RRw>!6L8+uul?`?O5+73!dz>KTUi`$Q1fL^t~I)h6Mp0n^pL?dcGw)eMnFqfkDFoR zj1o8xZnS?XlM$JW)8yx#%MG8Kz})`x{snXkAwrREWeUa5&*lnK6mngO#lU^-AeRFWm;IRp)rTZzq~HrxH4 zA68uEIU0?dJN|{YHWlFhMkGfyhWE|)g^!f3ql4-ob*DrBQ2N+8Gnb6_d!?Z{T5LDLH=b2w434h1~RC-zYhn$2CyMXO92UAAGDGn zTXxV%ejF5Daas>0egf&h!0S~oAI3o8DhMxSm~McB(XhdKCYFEY28i1>KpUI=+W!ec z>cO~cZLq58tK|AH&%_L~d9sz0FhG3s5vF$E@1E*-L{p>WZQJOCK++Mlb8c;r{Z za&U;oPf^r8xbQSaBQ@R7N|NiuGix#|#K}aducGNoZ zv5r%{*YdRW2Vm;D!OwGZCZ5$Q?Ge{4d}6H#n|KL=W0$txErT z&T^$^ERhxyXc)>_%@-apGYrETvBoxCkW#t;_ZNeZsZl+SnZ0R}&5cs^RwO4-L6Z&7 z2=iN6<~q5*I=nFP9v^-}Nn#@cE^L{Qh=@pzz(1+yR(f2@S5m#P43p>_5d<)VKZusf zu=SB7if^`akPxOdq%MLZpxk-rBn6wfIL~&-?S2SOkCau0xeiftNm<5^>KcK?TWE&@ zk8mHm`4^to^YU*;GTV^HPU&svU|Ic8p=g`dFx{WSK!SU4vGiLeh5 z5jig7f*>685!VTHYo5*;UtfID0vuk9S;upGs3N@%8i>t8TDG6z+WamjD*4Zvz( zW8~1s66Q6poUw*tVn8hk+-oS*_z^Qyz73GVvPBOYy3J^U5?6We@(z;mfg;)#vKX0) zHmo=5hI6?((hhn?N%pfhhIwb(d#HzJg@a{pqaXV^$?U6NTDv(-$hZ0P@k zT2Z8#rzl~8>k38x%%&RCI{9V|=hbHVQm#e#hu4Q$kn_YC?!pxjTrnUzYo+ZOg=DdX zcGh51>3%>T52TrSe>?mxPV~<5{t`<`c*ALctWWO=YA}FGZ>$#Oa9le=VlYYXGL1(< zFBEwfC_B!Q!1o5lrr)Vh2%|3+*Qnp~o7-p+-|c;?YJ8sY%I6Az#7M}-(CSu+7C*%g-VwE`^b06AftsFeSdKdz&XnY++duU2ne0Kn2lggXR{(B!|DNq{0uUD5+f#e{09UM5hBJE`cq`RSm4 z4!;fO%nUJ7_uw;Mrq?3_dX0tuy1%GI@vJlAkk4xok@oSwK7$fIp*0EIT$s4;yQKd9 zDQ=%%ejfOY^gfn03hH5j*6}XtUAu{=CrJ{$1Yapy>!28}2ME)Zp*T~hQvshXgYfCiuzPu>uA@VNVszVd zCML9LR)MJsNQvW``NQC4FrwArYVPdiipR+eZJcsShH8bWR9Gx;L4qIJqF(-B4Y}nC2ttgjA${-8{MQCBFjw zpiZy3#HUwmW6lhx%g@l2hx&=aqa+6N=J~>>$xu&2_tUB=LG1%&jDuAa&}hpk*<_%? zU%$+RqI$vL$8Ebb^|r0Jk>aoa`UEaTW-I^h(6erVi;leJ{fOh2+SO}!`&IAjEmdXl zL%aV05=uEsxOJRpUtk(n{TeFx!T#+BOj|s`Nqq_x4%?XyjYj4QSf;Vpz(3>?G82LD zOQ_KTl9D6vk~&WZ$a*6^X7RC*I}?H>X!)WeY(aebKj1SB!hP@^aL(jri#1B)G&q|J z-n#CPhmJ{D#QC`KUsBw63GH>;XSrkTi=q>=KS0{dm6es70;k3gvMtNF4gMMFUat zfZqaU-IazN-T-w0+@3#h%zjs?Z#CaubWdTrQ}gU>%cMdbE3>?Fi~i+*VL5Rg?ZNpA z7iO2 zH<}le!tV}&|2EJ(IFiT*EiV_+t{C?nsdVE^0j0V1qBg^oYm-!{B9i9&bdwKg%GIS` zXP#5j#5dkg+P3UQIJkCNPOYKRy>(cR6`Gzr6M4UbHgO{NsNY$4T!rxH)W1(b0 z@YmTnnwse*q!ufBH@f{65Sk!)2awZ;v%^}yP&Tj_E3O764)zM0m$BGSkhxp7$I2}L zD#m@DZ!EfxPWxpQ7-NwBrWja4v0iDm=A=3P3PmA8X08^Z=jo0jnMBBq(qAWIxa+uM zFrzRQBXfA+=ssLd)(U%`AyO_un_>F-jZ;H#A)Z$`mEmo2#i89%eg}yjaD4$LqS}moy zVrH`8NDRgPBSM;lQFun3&Av44TSC^({Dv*d#r{VkJ&=RFgfeL7c$ju~`6?o}w=!sM zkYME!KY&yJ5uzQyPMkk)tNWG4t}5GfF_Y_-7m&)hvgEk3Ul}NJewHNKq5MYFF}-0L zFTzS%IPG(X3;cBct@!kAApzmO9`Kvj0OZ7Y9@;9*&9^k0cN{yLvN4*hB4bHQu9mBI zMdSJj+7zq2XTAxkT>#DBK(xq&q-dPmg5v&-sSn&f33y7vr96TBeWu5B3&^TC0-l?t zdjJ4mam2@UBl=LOVvO-0Q1bZ`3`^e^E}E%j6UkHxLGJ7W%dNtUO6Q`+WE{I5J^Sc! z0hGX!F~ru*JLVM4ZU(r~A=C|pV4QaBieJ1}mM!E>h*THPG8xCdy#7zs1>lZou5Ti7 zJ$98Skry@lXNmN0!I4k|76q{?v*{*Y%{RUP9>v1~h-L(1Z`8C4OZE)2u1?NIqa~Zq z{9k;)q~lX48q~%@$3K0Rxabg$`|u*|7An_4yBtsgQ=YxRP%}Vm@dIxPbnG9#;cdTZ zaEhbmFf@&EYCHraS_g6a8e#;^&*^0&e1TH2gF__nrr`M_*^MJcrskPyfO}ad5Yz15 zSpIxVm&&o4aD@%%gA;&Q74kVGD83AC?Qu0udPc=Z$kT6gs)9T$(Xg(L){xMs(U-7t zBfUS7koa3j_0OF>mnGu7%&+yK>(t6*x_K;8Kc=#h8U+Z(?BkI5W(l!BwiypwTW6~ zH;PS6<9J!EgQ6eKzbSBKd4C+CJr2?y%m8J5(fB&Q^dCq*uLMWI=MIp4v}EK!DxdZP zZamH>BmxYwe}4P2;};7{-twtWFSV5HCN1iNHJD|GX2_u87>7FR$UL*lEA;e@6jZK4 z1^TqF3cgr79_~>$7_gu)V7dEI@g@XKZGFG-?5v2tqZF74_4!#CtyiLPKg;~bV@X@^ z=Wns}CSHPd)1E21-7QvwOZ(R9=~U}g{ST4FMkc9!Q6sh|ewq*lBG{D}o#9_5g;uLX z9(Arh42!=2`2l=5GokD!U~uz_Qlg=>pn$s_3`evd)Q*4-WF~>m>eLV&SC8lANeu_D zKj>7vfiW54`u^6@U_8D}tBnsg7I`R}-RX$mE8EFDgXd2FYFe7g3|*(Bfji!eYlHt# zGS&{95%{g4@)iVH>(&zstvXp&QF(rfzh?8>C1pyLN16t6)6laPtn#s8G z3Y+8x=m+{B0~spMypev}I(X#_-gZ$el02j2eA79uKP{H1c_|5e*+7mvcWmr)Y%?dO za>J^BV4&3-lnuCjy%dC-=A;`ahKY0##RW(QBbqHoH$J64UOL{sTJ5&BL(fFITcBe( zfofU&D41}=R~#IUV0D3_QzZ%jBZ(`lor>AtU zRq-pW>uaYrwI5?-Wk!)R86)PA0v`y3@B*OfX8`~aKCGRDfWN{*Hx}nlPwiUszrJlrUVa4ChqV?s62vJ-%BhZcwv|wkZphR5OROv2n#C zb5>miH%6LsOOpxtf@n*0MGSh*6UKI5bQP~pN5w+o6UuUcju`S{f{rHTN8y<0o~D>P zC5H^1EP<#i0(Id6s^$jnve|ved>tw|E1Fh>`t})!t?DVDeF%io2m<-lCXPO`{~`)M zRl~dKL#i2?vpvusK$5nD8j%7VtQ-6Y)r(R%P$4R*Tg zd;xI!BbeOr2Ocvb%ZL2dNnw?{9j^gK1WgOsHO@15%7=_Uw}*Y}v5IpZt0G-~FVLG3 z+y4*h!TkU|chvdsNxg^A0tK{cEYaXFydgPjGKz{fEe>>FDI$cQlR@8PX6RVt(8eZfRKLWNFV&QFr?u@E{Q7X7CZ>Q96+&U;Ha9S5A8i-_4@B;x)DxgL1}frv(1s`{ z(v3dFu7yth5a1}9(J!W5WK(*Md2W0B2t@L}f4_c)K*vS!H3pZ?+!aa<@H228qF%QTI;GAyGgEU37<*F8mXk3tiImAyaQ#Z@3bO67?kE<2(Rh+I2{^6?$`wj z%H-E?WW#>o-pBEx!vLUn&wNt!KVrYTx|Eh#PXoPmg!bn$Tl=!?2*n;4gFV;LGe)aX zIz1oN;277g?rE9SH!xN1j%rf5ik366rY@Mn@PZ0UFev8?CX70PPBPjq9)1yH)P5He+08ZV9`WI!tvn1~J#(3U1Hr4*?((GAq$}Z^HxBLN>x<#rP^`|Z^AmGIyGx}~! z%-UQVYH#K7E#iev?G|z8P3RvM+F_^cECo}fo}=%bx0#*Ycb9XH#oDHn;P$~4Y7XK6RaaDUu>NAKDbr)zzjg)=&)B%W{N&gsT?1l7ZShX@z+rOF?16_MSunCM!0m1%1Pr#e60C45EbwgZ3 zHRhB@8v$t{2 zrpm=x1Z^CIrThMSyoRiTjaSI^48sxHryjlxPTM=B@!O9A^Z?4vfZ8Z%Zkm&@yw^s?c`psxo`v+#WrSNFn0^>~YJ_|r4hjOQ?A zGG(XT%u7Oe2^+en%Lk1oSxnb_yMXbvSa4> zT|f}v`&-B26)+ow*jY#`QQmCYP||zu{)jEgv7Uw(J=7D54yC6;RUk+RSp!-Z82S)EB|HL6F@Qb0 z3GDIqR2@ztU!BGet9!AawgMWN0g%7NO1l>m+n?U`d2IrV_sSm8N|;hx0N9$iqmvEM zBkKatj11X`ZB@^9thKISe+ev>^~mJ9Id+rpk3h4!sn?%m>&eaEir4Y$4)M=L<+E6R z_o5Cl+feGk75eGBc@|S-{f*LdGfc8<@CSYG|5iR1elpeGS#NmD zy>MoG=mEhK{U(;QF27>~ASW(8eo|=)>MjkXj`QEDRx$+6vf~p)b98*3jqKGm@G*x2AIeY;z-{ zHQ-s$0$@8Ri49U?L48d`7RPs+qB2~Q3WxAMqo2FqC1u-Rf-#vkNIwCV@pEW;5ZYJ3 zY4P5JEN&{%)N*Q*FbYgyb^?hOWMv0cOyE0V<-^+-9e31WoJAqaTUEjW8{Z;O6D=E` z@cD(P%O!3>{B-+}W?oMr=cbknzuPa87dfbXI03L~E4I5wH@L#qeVYak+Og>_?TY>G ze6M5p-bSx@q|%5C%y>D@}fh1AT&jNnWpP)G(s6d3Wb3yqCj@$~JRC@Wu9WRf!Y8qb! z<>Y#F{W}a_Z^cW-3GJ0YC;>9LqZqKRniJn{Zq%9k2l21+Sqm|HO?lZJ*N~jFo3e+LdKcb6$b!wjfT(8k`VS zv->p`ZfSNCAyVCO-6HKr$H%WhE(}Bvah(Gv4rnz)v?S2}wSrdXhfqBYq%Z96fjRrx zA0RCC13e$;{aYGrX0I+TFu;{BFTwS}f6&z+1_k<4@RPu#W@%MbRhxpw!vjTyhn0@~ z9VD(f?D`#UiFmc>+h#}Acfor>quG!-K2ASU3l;(xv%2<&*lXbN0j~G}uB6vsozh@e zFop8U9efJ_&iHKrZMQ&yU(bNB~aez>7zM%W*|)@-b^0}(y;8c z_2(*FW4_(IY8AHs&7vZ>94<1wuHmz%m7$sY=2xQV+d+TT(>2uKh#-sd#}@Enpt|SZ z&cBD}i$(w0F#tB)$}y$C#H@^n2%Z(73JnP42)ung zalYojKgG^JeP9ub6JqYXZ3h3G6z*?QxWF%lM7Tnk4Qe?%RvB^P0`UC1 zYv#+P)u(6T^Ta=CU} z5XWB2lDmh8hi{@d4hqbP2Nd69u-IbYs17|H2K4*kJd<)z^_bjRlk%~l${qR+qj5O# zSF~0UpA$ctv6gz!S&A(4Xe*ABuS?EP&dHHB4rXxCNR2ZeGb%3Em1=MK87IXdj`E%9 zluFj0=)|J|R=Crr-b8UrF;n$40nF;E@Y1XL!HkXZqB5%tlhNuzijObwG4%#s_9zK? zYYe6qP-Asg6{9V>G)Lgd{ zb8`oHJv;$6dEiha?=eCSY|=mg)FWE=qOL6$G|r|2732Px!oK4e!nIh*Km&wc4N4|EcYG~M!Dv7L1&Z;a1=Lu2(8)aOk7i__0$a5 zoMZba|H70TcmT4@ijZAj9)a&qV5qRL;n_=#Ro*Yy$~2a~!52Bv0j4ZDPtvf%uX~#$ zdZQvjH-f+OGdVNzdu!i^+t>|AOfOc~4C2ugEl{YTQ#;W*bQ68^`C?ocn^}Kv9Tx#8 z|4Yo;#mJn`6c#vF4ho$9?J>xS?{*nNe9AM1TOdGTIj zKnAM!i2YvynS4zO5jGy$1s{!v{DQ~)4NjafA7_6u4_$ z8nQ9pkPjup6aBLdIJ2G#XGXv}*EM~DW@LfpK(bC@gC#m*{ym~1Z)|#sL0*q1bg~Zc zG2eYOb>kDRpwF37sEtuSl`qpJuFB2IW(?@sf{nM`6Zd2w^$I!6fGcCxT`U}r*UGO) z3G6j(L-Ey+@~jj4I3*n-$hO^}qB1MgL}YWmU8qzTTI3PbS+Wf`^N35BxS!@HtRi|Y zlvx`el&m8UL+=>|N96{mWsC?jae_df)3jY0+Hi;h<1ID{BiOY=WkzO~+_~YqjeO8&cg2>}BGB~VqR?W6BI`qzBI*0msW%5oyCg#Hyah!I z`yy$$vpO;#E%09bp3GKie^TVZ*Lub=EdBhH^1y!JNOxnirCV0yQNDhM?#@m&wR?-* zYaHr(Leuo||AJF~HJ|mI*sB6)L+xcbVXJ?7y~PXw;T0ne-)9)KoN^EIJ!P9 zf8gJ$?Bq*rR>Q+Qh_0oA3y-D8$y^siPw?!mXRfxR^n>-Ct6c>q6oHD0&Ynqbo`dqk(FvL}&nXVju-jB4sVq zrx4)qrkf-;s6Tn2rvG*#N+sv8MVNJfkqa(b(efzQ>L6npir;QDd}tagXAq} zjPsM^_x*=RtbPGpp#7H*4i4trJgi14S21=jF&9^lG0d$>E%R3Hf05JQl>fZ~Gi6xk zfFTw&)LNKslD55w<)KYFx0lMpz{vx+jZr^2;mJZL^ww14{Z2L|}#S)=z z`H)zZ(n!fcaYk?2eO!I9=GkhuDWYHWL0>|Py|ix=IS#H%PnIKNqBi2IDXNp3wn>Il z974D^m2Y6=P)u~DB?dm~S=8hfr#9lRIaZ#&mC+<`h8{i*EzI!r*5yNlZ+4$Y&OXVjV@BFlcS8>gn+=}`7Ye9Hqgjks`c8}%J z=Uq!O7iv2Hispf}qEW&D?|A#?^K*b5Lhc}r?{Y3GH%MM`{{twfFeq7ii@TrM9LTo# ze)u(u7XYOLhrdD~jfsMJmxg9L_0d)`7YpO+mmJ|&Tpk$G$VZmggX7j`1^u?Au^WvE zhGlcdsi<*Jb~;Xd6K@yJ2ENtQ(GlQ;anz$An%c+W)3z9R-~_Ycm;ZMsMo`K$IGdrf z+;5BaIV$UT(qc+~JloYhn77IXX_Pvt^Y`K%wg^5k^V#5rK1Vcy_MgAwuVT0GLZi+X zIk!+W&N5M+{t|eXdwn=f&M)bWQ&PiGr~UqXkCqD8T?Cy+C0G`4B%!XeLQ$98SKhwP zsw|`0eVRmB`*L@7_uNDhl3v5JQbMhjacVrC3!Jr@IkjT_3D~4ogkr>(DY!-gF!}k? znV%(nHFewmdzW;ssb3IaAd}YC+wDx)h#_d~?)#o*l{a8og&LooM$4E9!;uWgWxIe5 zWf$T;0Y=Va`+VZhfM1-4NW#CP<0p0nyw;{t72{X`DcAGUW`cjQz(jjBre?&tv)ktH zj*(F;2^2n=jEeJdY@uc1%d{6!6ngM*DJ-4IE#^-OneGu3Gvh}!@DQE{gpF3J;{Ca9 z%-_vk*sjFkRTS-^6-V zW!;_7Q{?k^?X&H;{tSd3z{JYlLH9&Us`dqRk5EMC1W11!GoMz-8}vLI@U9dA=*jIw z=S~01@8Iq?T4nJi9`qn(d{>v4*^NFp#xvj*1vB8qu$c&}B}#c83!ULc%=k{ssRDCw zgm@;FQ{OHB+(pYomhlNwjDUZ~^evh=+PVyeSyKB~=`X5ax1A`v7DeNH@@5B4ngmzb z6jlwe!S|Sl&8hzMsVakT`yO>oDPXa{xd@shaN%^o(29WP;{f1%;0z06WPa@H_=9U( zK}sjJ0t`L@k>x5-2tkH#l?H8%ql_7&>Wg#D|H+@A!N9T;hfvI@504(Id6*e90eBX z7~wEyq1}JXZE6~9{A*iiomcnY0#%8K_!|{DBzO&}Z9!isKJpMW>M?ADJ-@!b4uxt# zVk2*FZ)k832qio~O9zeWbQmI6gE*_{NU1GJQHIeEs%rHuQa@HD2@@FY#4?QU?GNlB2r+t?Q ziwL9$G&X>Pqfa8sE9{koRu#DiPYJwq!#=2&2&d9%TzM>ff*qHHhg9t=#S z(aC#mygO*>L6QKXd*=xF?F(9Q)^WUW|HBD3w)@%1im1Pa3jd#iz9RzrD2DtS2=IJSB)EfE3QCg|kM-+Lrvk zD(XK4eH0pp#cGq*7~pzhYEQ#4JkOYI2e?tr(eJWqX=p|RlRpj4XS8SO;D?NmN6PQe zcpP$O0;M5t(m0W}jM?u?{7ZdAO(-k*!*GKp2jb73QRS#%7bC!t~gQFYFIm!Rp7gQgu>PYekkB64LZm zd^NgD){4&KVG%yXZOFD$lOJ=H4XUDy+zOf+CGORLq4o~~n{HIhyjkHd*3+0fJ(z=u z+u1%$?~-3>Xr|5Izj#aM(h|`;mDJmtByc{K6|Oi>FHbuNBagP~dLrnOw7-IV{nPqQ z`({dfyNuC9ivwNch&H~7T;4C0KpL0Q5$R;PZkWhF9P!8q8E{7QV&ZBMF}y+waNUb{ z#H{y`wW{`szjFJwQ1;g3=}kYE7BTZobpPd;!5`bHGPuikB~pRM5pdW~eG#56cdO6# z4XP!3wm((l-8EGCjX4p9g!;!0$CX%9vX$CpRS&w})OB|Li+=xLGN(-M zS6M9%9UREQxt~-_FIQ}W5Z2C+h`CFcS!on$u*#)W!tme`?=@kRA{6oE-%!PK^unv0 zsf01)qcVqxVGL$e^Y|v=nS9=&G{kdvQ^oMQn6$O~&=Gt4iuG>Ci{{x`T*kQgJXdN8 zl@a4X$X@J9UolLSH!If3)C*xb&R1P>;d__mR3+I#J6yzwf_r;-igE@O^Sz>qAG3X{ zTb`eb|f5VR!85&x-)n$;G^^7-$r2J+z2FSAWZ@slow1_u+NwwqMy|-_M8C$SVi+XqfMh%Xp}@0>of8F1zdPkPkm>z3I~cM-lj#u#^G> zyOzA~;$dKL1IDRiqeJuLHPvyy1{R$d`4%$9qWjFXlnK>$Nuih@h*J6v?9 zRiXiljFbE^>1{#i6{n(RdMtI9Apb!f_3LuCE5isW1AL4V-EJHzvC0fQar`TUgr!Kj zzVYs{>OAK#igBcHQ@M!+%>xV0nrphTK3u0%)oCZRv9nPZG?Q%7|B6x(1$z&~o zgRD%oJ!%pBla@saVNl`(O_L+O%bs;Ji-n5i59Sn?@+rSKjOvC7bBR7*{*UE54bN_7 zSQeNh7S05g%s>*@uBGp;N3QQ5|J&U-rj2;cAYX}8c7v$eqA4EdwcMNN$9hOK)v-x& z47!Y{YpuD-|GX=$yI`tkjQndQUUda&NXw;2b!`WHMaXLu%H9lt>)8{jaWV>XR*xiP z{)H=&TS%FKVs!3+NFXsp9)TjL-SE!f*b&J@fHA)4e601n{AZH2qL$_1{7f)*MfUm5 z`n+Tzro4fDFdj3N*3w+0>Du_k)t6V->Telp#K&wg+ONl3=4Ny>kG0(f_iRf960W*u z2gF%5cfvbdD%Z(Ajrk`IF(wK)2}U~(SPBp-^IB%0WEq)F;Lvv}XxJ+%eWM5)-X|b z7OAh#HO{R}E=|iAf|B%<<@9!0SsZ@WRlfMuY#&c)M zN#K@i+2)+e>RR$DHgb9)g=R+BB!ejyrtHC7Y%@$nr5k>@vbOg^?>HwJ=F{j-@)M$w9o^H^U}QXjq#(N}V@abChQNxZQz zLYqBbx%+h&^OxWGmJM>hN!qH)?I&YjVpo(WneTP;g2?a>F!G5s)R(;?$rnX_b}QdH zHil6gm&~=wWc&1UD}w)cC8f*Drs6ERP?*VD^N=>CCA#E0!f10NiKwOMF5hQ-_?Gdj zY4ZvFTEu!hXy^LUey{J((v2{i1NKR+Pj~zOf!;z$y%kYN@8)t#zy^nbO&3q;7Jc_@g*6ya zX-1D4KkOWsbHg#Li$jCMK8l%QDRk z^ESmM_4V0qQqxP{yDP$xqrQ`ZTwcd-;)0eW@FZ~YFzG*<@jb;{((vP1HNQNA2?%6} z56K!llSUcz?!q>Pkw&xlxS@Ms91(8(O9a^*mNJ*7H0>*FsJ0S4{I7tY)l7XTZt!>H zoIe@PSYSjts6354v9x@sV4GDnZZ*63!y>xSq-jrg`yE|oP+oQ8B>ouFX2H<#OI~#o zTM5bFUF5hMsj@-I3mXrn_TlcGT=?gE<$o;eLbSIys#kyi(BJlAZd>{h{=9{6cBg}~ zLxC6Me#pU`Q4tCtdc8?@USIcif!T^;kuJm=m(?S+Qfuf7{81jpRB-Ww2(JDFtJ=P@ zELi|&t*+w!9!%{02bl;}+s@Ylo_N*JLr=)zqjo@FYGdRsWWE5z1r9`%6d+%{6?`<% znC6xkO@Mi{Me(ch$`V<%5*kb`OzjskJl*m&`0PEVODaLu27M{)BP;a@Z&a>U%p~O6 zZ>>~ac{I-YVLp`6kx#?G;7@C+Y z-JBTKiPaP`ocI(n$6Kr1!S#J4=6|_ov*%}_V)Y-m2+p4&dyYj>6k%xISl4H1HIvI@ zeyxw1N)GDt=BV*jh20BCenltqP<%+O@6jzZEMXDKtUvXtHc<9 zBFB2<>|tVr@?URlagvY!m*#E?kGa2Vhwh^7E1h&BO;=pIL*6y;&RX1`gB?!}X)MuH z5;opas>BB;YQnvI$dCP~OyA7Wr}j&}F$eJmN#ED>{n`J{jNns991qwaOt@FcgdUPl zhcaQ;DM7g z&4YJJqF(3c+fv+b=IL*9Da*z1H(s^$iP)wfpsAUgsRd*^+*KD1jn1nOS(j!;NOy!K zV@t!+%I8MPNu|rTTqCw^K;wWxGxuu&Bk;;0zW@@;2n??J+q;TkS*s}sKG0r8o=c`*~A&Kc+ z`7*fHbKHd;fmjKqx&*$CYQih+Su)Xe5y!)V?DO`=Mr4Qk$jtMeS6ANse2bk!BO?9! zFL~Mi5Gv&GhI=sCt?RN17k+R?Q5vf^U}hAP&&B`ESgkgcXcQVSZ|{wWFQuc2pRW_Q z4Lg)c2>ZV?ffJ}It&=}+os9l9>5RCTcn?TxXmX9i2ZIb@GcD>-YtFI6836X*0(88P ztk^3q{g3hH3I;W?^siVE)yN9hIymsy2+RzDa_M~u zYJWF`4N;UwJ;WpPn9@aqN$6CZ;JWsx^O#_Y^4Yg6OD}k>iAC9D9yP*@|@h~wqLXsNYj4FWtMFh)EP}mqs77C-R*%WnyIw=$& zv9GJ8OD|p$DMU|l*hpfRyQ1$<5LwA+Ifz&*N~-{8#ys;66=5<<2<7lj1Yyw9Ul_@R ziOS?^S1|nga3AAShU~N;4%IVwRN6Y$%oi}nH6wlwUMuWX&+JF#f9i-LX9{#WDCT&* zQTw4@gaF2#r8I|!yI@My*5MSnYLMLCNU(hP8YZ49pU2)fOG;w+*lJ+$g#-J%c1DgB zPXE6xcp=_w9(Z+qhlWL%)E#3p;;tNS^8elsOb|rrQXa1ViNCOEgUn~35&C!E&r)hM zI3~{NN~KB(`6!{?LmU3WCa%4O@9=SR0a~`N~5%0 zv;)iDFpDlBwZ8(0*k|%AG;}S0l2|1};^8MxJwWm+#X5qFf9LK1s)k%B?EAU8noBzv zDkqxATwsGL&{Bk^U`$1s>o?TyI{qER5$jf5ODoQ^sK>)Qjbp*RG$K_05P+~`csYCI zYNpJ^Nm#FrM(t|dAOwpO${_bq)Zg-N+xy!85!5J=?>|Z?(UH8?gm9bLTN!lQGCYF`}_RPpK#AT_wKXzYpr#shS7S%z}!dNllp}_DMt9{-nC=X>PQvK3rPmvGpx0E#;yr{kK@X`C1=lGsi3q8G9S4Xj{lbKj5K|szt$>u+TTR*Z? zbFlzra&&H!)df7}t;cqve-2g*0@(O~IN`JIop@dZ@ed;Pbcrk*nQDOm3Pw%KH9h&S zi0%jJuX4c=-9AOr6@y**weHqkf&$D?Y`(iqnL|Qauy+J>WV$Q ziaQHrJ}(me`#B)6yU2uWZLw%2|6nron6(+NFN<}ZHZ|`&D3yA6#9;)}z3%*Sj;{^4 zObj|&Lp+f4<)j8#R4Rb!!`Oi%gp;zXaXH+IzrwO;-u}uLe-fdRWEHli!K?FS^Qgy`x?$3v* z+g1P6^L;{mo^?w}Z>IDZ{w$T&@&?5fz6ruC-Z+t4cH;oYvIB}^bI-T6(o4}ur!x0! zRl9Bdw3d6H8eV)1o;cASK&RZJY)Dc>xg$wsdZ>Oy_?<32+bR8m-OOv|{V=A~h^L`L zIn!S~HBlzCpO{3$m`T3Q>EY9iBQTGz!|>{lZ0+QBM!^Z*`NSD}uNx@t0?)X(;{_~{ zY!ue)L8nAx?E}8E&!1`O3TE9D>JeWA$HC0lqU%`;fE9J}YFB1_3>JXZ10-&+KcvE# z%hXO~D!tf;5K2DQdk3|inq1j+Q$Yc681*hA4UgtW!DZ+zLNL&nlxtwE$Y z1T>436=U6jcy2g*?4CYX)dx8L5Q|8}$ux;75h98cbVn%^VI5LK1(x zQWZ>UP;$g_iOP9n_)C!A081u;OtA6DK4~1lstRROeN(%`9)+w7K!+C@`kE6O`G+@I z@Y9X0*as;pZL!LMCXN02ZSyljJY!IU=WyeZX1shXLJ!AVb!-u#N;ZrWs?b8F=9-NJ zTi%=9T~o7%W%=D4(R&z<2rw5XTu_eIsI|^?kdt%@OX2x<1Xb!7v7{`BG9PVk}N&kY^8Y`+VH2-N)7e771!)8}7nvp7eAvoE}1vf?a~ z_+vc6`#ouRA~oATZg6i30fa9ih+1z1n|J^4fbQo>^DO+wQ9}~6HpdLcqIJ^OJ(ib>5B@w;;SH(%yA( zGiEm`!xr3;KEhg*y2`5L&K^g95H40oyN?X-6AbImDPY7fmUL>JhE)73)DdEvn(8W@Fdyh^xf~%&Bz3O(5Nf^8BUlXk5yDEj zcJqJF^{cM zl1lv6v#H4-`lM)cKR|pP+iG20X`92 z`)(2E&=Z z*a-T@*7m4`fRKieP@K^N`GiLIk6SDMs(l0Pw0`4IE?P`7Hl!Fr&t@^BYM~9zNq_IJ zW@xJ%<$Y9HkOF;ni3-2X;mP!;5@b2J0oE5>T8ibJNx#|`T z+lK!uSm~R>i78 zs+f7^f*NM4g;G3PzXb<;xhs_Y!k-nog_WCoMv64b$S83>h)Ew7NCAZQaqN~4Gs?VB zOx*ib6bm}KJ@NbtM(BrC`aYv*Xlr4LzpkpHs=q6f11;*w+0H0!*VV{zvyg#xNgc~X zt&AC-rH1LNnbZ_|9FGnB)>7^VzgpXuLSDlc=Z+-)mU(gJD^Z@YZ0k?lf|YL0Qbm|b zFK;iNKP`E9KrsjU&od1j++A)53Qk#(t{ zHBxfAU(+tBKTwA~X<*t6FhbTSlxlwhu+Wl_7YEU9y}!X$Eh)1un`X=L!B`L`z=}Yh z^1s5sQksGB-(VeKYWa^VC#b{~4!BS_-~4E~N5l4@`B05uGeG~g1<~6On9N2+3E&z{ zd?&t!3qKdr@+QZc=8Ybmk>?%&||O*0Ndvxug}e1^MxNR z84K^JXDE4;1S$|jfKOW0WN68OJ*1i^&waE+#KUb`)<#z{NzEk!e2qPjRO+61J|^V5 zx&&AJoBieL^n=gZ^EdlDZ!A(j{b2ho>)Xeh`KyB^xIvWUc`I% z(gXmyCxKMt`#qW@lDsf<>mpnB*f~ zve(dqH(*jmjjtD?&j&gbzl43c#o3j+nZ@;56%=BM=|(N0l;!s*gzq&5$au7CihY{w zYFz@*$n9P)vi-rjQju1fmdls)EuWnRkmF2ygbzW(YKUPN@u2k4mRN-h5;_7nYm=PH zrVPVe+*EJoM`vc^((eiR+egLq7ee0YLCQ`}5WUS;4#jG%&a^Bt)uma!wBZ@-UVqn> z8z!9{)?d9}!I;>YQ!QoEuC1lHU-wRSf7ExNB`>}8{SxygVDv3y zo({PoG_-)!;C9B`^lu}t%ni-P({GdgqFHqSvt6pm`zX1cFN*W@MC&xUWW{fYSdv*C zjypZJG=XSb-4gG+D#8Dz{km0)p-@KOHrz06y?kn#)VHr{5CF<71Oar?lnV+BNtO*V zT4aU(BCbWe7Ff*C%4-0|Y)$T9mx*j?HWsNfr63D?_VgeVrtChd!=HWgkJr2(j{PUM zb@%s29UA}^j8idvE6i+BhjnzSB@wHkWm^P%Q1g(n9z3qiq?Lk-8s%-0cOTQj=;`Qo zIXx6K$FCw(G7^5t0c)VF+AJ)3w?uKI9p$tXopl{$zUACxH7qVJYFXUo2|}g3{hU-f zT?bAsM4!D@6!f~>^2Z3hzMpzsMH@J@*?aD8du}Xw7tk!lwAkB~T&E<-E2e?p*^!yJ(*803bnC$M8 z5MV4j3)9)$gxq*lwFD{Lm-7$qo!hW-?iP>d8FmN>fDM`~BHNC;UGU#sy;VsGrU$25r_5VJ-c>9w#rCuFFGff>sML9-ztP(wdbRw2`Dut5> z?7@q2+*$jY_FB zNiGWV9aLLKBTfH1)V%ja+tjudVI+l5`qvAC%O}$xT&i?*3-nyx6sDH5NkN%eWGT)) z7tuB(m~C~O%-r?Yb+kO~nxd?;Hiw?S7f6jxc2wOp@9k%u`=VpQN_>=iW^CSde4%XT zx-WZC1+oUc?&u8+%X#H~3b?7k@l6Jqq^>T%*^quPyFV9vC-Vc4i_3Z?c=1hz$`8+N z>g~*Niw%giO6hp2{NT3DXYG`Yci?K>FM#$jH2*0GZAl#rtPG1#U~@y2&%@vp2t$so z()ph6D>wZ!6&1xZlq!&To-jX)1Gf0ze1@BLsG0IeXA>br4HV0ikA4TDGO>&*{cj$F zg~1RCNaoTG+6^;WV4_FHCR&g?B(4fWEz#4_uT#Z}hcj8}5h70tI3<=7kT6$m6e8>% z{`Q%vq~i_G>0>Crd?@qV~|Y8}CLy!D~8y+6&!<&*b! zCz!jf5QA0nvBc}gFzYczVI|c7WJ%;|=tKV)uX+hD8}~;=Z&_)ZK>{LWk!_&Jb71GG zk@w7Pr1Ugu3Z-Yz6Yt>dcF|IkFDigbUDZy93QYTxWCpE@_KR$EPQ-}qQ7<>&pxf)Qt-1k1asrL?N)!QbyIJz*(qbYdH%%UBM~J2MlT?oBp>IShN`K zrcBMWegm|J>lBTBtR-Dt+K~vC5>ljH03S>riWF*nyRuzJ;uYl@77++D=oX-9W2ZXb zsgH_OhtkAtksNGBqoIrDqVLiS+>z@)qO^RARMbcnmqyo`A|qj8cu`FR=y>JVYkwiEy;J11Apo;>I;0c##+$M@Q@cz2|t5VV#;6!L1ysuptFCuE*vWX|^4==>-S zgU&!?siAslzE)wL1fO;JLJFv;5|yqV=d$q3nl!e9yB4_$!%633A5{`NRl$rTx$n8~ zgXyO_8R?zE&Q2BIto}DwAZ3k8N*!SMKkIn_)a4}>R*`>hh1`;B4@YZq|X^4Em2}dPBSz9eQ_@bShJ~+Xin+eHa zwk;EhHVPzI%|@tnIAo(;LIcJpyO42uAQ$yN7L8;Ok4;T3QJj?3uxY$D(-}0Lu68tY z%m~`2sGG*}){KC7xTX60PSGDuRv&|a1kE~;?5oI|_l@8+Vh@sd6jjJE-P|WZpJq$l zGPf60NU&|}30E{Ug|RTXtUGrVocOtET;&~Q*PXXK|s_sg@q6#OYgj2(OenCo3ErzV=z9Yzv4x#_ zSGV~;ou8tl&?Bbet2|i~Ls-5Ld7$2eZR3YKCF0Brdw#g+6n%T2tnb`7C4;=0TH%l6 z&#DSD1f2BpZga>NFjpf7Vx*p*Oh{vMY_LNjB#yk>t^s+|I_$Xd^N=qF7(euIQ&D_Oe zdmVjNfak3ZHd&Tm>|r{)ti~;lFn;LjiRJz6@rB=40Z|NXs3L_oS%e<3m}l{51+b*7 zfXlb)8VJ)atc1k2_!o*QC=cPyjxb=| zMg%;_W4yq6b{C(>-NF7iQAJ@jy21*H?fyfD$U(_L#@kS(#J1ZGHrd~vOw+x>+oQ|l zBgaekJRXV5V%*!LJybuxujK605IVa&T`c>~^^@8=xDB&=lM|0$k7XAr0t=>fpxOHf zSe<8d_x=RKdM!6uF)$d1w)+$#?s2#oXu~Fodl+aRmpOtopzVpX~(1 z1SNB|iQBGr$t3NEnB1rEF{`2`K4TTxID7j~o4itl zycU`|@s8q!3+H%R20EYrYqv8C_3k9XmyVx<-IaHhBBZ{qeF?Y!D}g<-`i(yvb(Ks! z0bhxHK9Oc_9W$3j>GP@xe~+D@Z|e*@vJx{S3CqvB*p;`6FBCkRA5iFLsR`T`6tinY z7=!IfKBse=vvQyqHTD!oMGpqJlXxkkvZEi-CF2}Mz4&nVwBy{VReyDDf|eh?k?gMxMe*5-<1V{qS5?o63dU3RF}Ci)8Xv_v+>Vc zE%u5@HN2#E5q^tdQJyM8Z`9>g04Zc?9*DcPZZZ_6MvW=`v-0KJm&Q*NEVvVsH|&fc zH@sbW4|*HsQ!fgj*SU?z@wrsM!ie4?7hrNjj_S}L7Im5c9UpZt40xK~ump8ls~H1T zduW!-GlZ(*6^5o`T#HBPBzwZ_2yaexl`}lxyk&GH^bB)YTUGv%f=Ep@qVe@9(<4|$ zxjS9D3+x(no+CVjuJNwlF-(LYT#`v8O;0e?L8^<6S10TgMeq));+p!7graHrj7NQT zm>4nPPeP%c$SbQiN%a^m`Gy}a7glrD>ab#tGCOHsb}k19RfOBxGfZJ5j=-=6ghjsT zA$nW&j;lFhd;aVeDSkHMzt1!YLI-LBD|`HU49z>mg1me{8>~Y@YYe>s%8xg{C`yg zDX8vW0-Hbk5Q>W7C%r*og_o8CF6a$rzanb!u?Dds2R&?5(n$#P$TwXx13bjV*(hni zEjQgZ1EzP^f5kTF>1SqIB#{~Q$l!dfhw6tyFQSm8HKS1D@81tt4@9jKLGh5ps>}UE zoEy62&NGl)zw?I>E!2SYHg&6Gkn$M91VJN35dww&S5hwR{sl2VD%yuapN9!t!R4D%w(705gx|ps4_MZfA5*zWcc$;=K54` zCV3OBU>nbDxD${*RqsO1Vp;svI^NmMUL`MsIbRr%h@7&YT-K{@`LdtDf-@41Nfeu_ z3rF&RzU(jC!V6CN8t$$ee)$y&K|~&E^UAp;<#k^bN?-j%r+Kr(JwQAq#xUilJ0u98#?$Wla#1+_I2<-5nZQG9l4`01wIl zKnOquBCEScJZlsojc+`X&MrpH*x<08H)CYmbXcP)d}sY_KzxWZo%>z0a)EAS_7N9@ ztj?sTX%*YV?=qjp3!mLrC#GhDJ>1!%!QKMcQ2NFp!oB_X-Krb_ZC}vzg?~odVQ7DA z2}0~zEpoZ>Y1aFAtdrgL&2n?+1u*!!rre+2*i`unGwQj9}9Y!}qH1yQ5@ds-zv)_wT-s*PO6|Qj){niO;wvHu1c+y>&Ga zB4LS`5-ubhgIELxIn((^;GXUbgLy#jgGws6&vzl+zQC`jpbYt2A|AoDf{jO2ss3>HvR?LR4noytS)~u%7$XtnOz72xD~yK2 zg*gsKa%-#nLu-s4;alBcyjw6n5@E9j1qjx!m1$YOP9JJb6xyz&k|rYY`eia{B0VFN zC%aOg5q7UoX~SuQiYlm1OkrGRTjE(+Xs9FAx7# z554JK!x`#}1EohyE9$gGrn6D)GYeM(bsP#c_^4*tu}xBtM|A}(uY%@MVnUKxz2HJY z^XaQAzkZMHa2t07j;*{?Ef~6I2gH6ro82{GIDczpGrcr=LS#VN!0TC3&yA}J*A zttdw=0G)WeXW2n)%kU#8M!gzS146Irkm~!cKmGNui-nqKq4`P6~kt8>;?Z) z2F-6j<9)V_P{ArypNfvHA|V!?wpwG#78?QUbLZ z;PB+sTq~3IBf)aMeqcM}RDDcU$6Gkp#CjURogVEXg6rPu8)S@DQnz^<~PKBc~c3Hq^EnF!+{|S`$Tq~WGL5hZ>$3TyIdf?*PA#0 z(@YX`gph~>+=%9So_?XCvveW7`=ofA>F!#{?3rt@y)$tNyAyT+*h8=Q9thJ}e9~)_ zRBJct9^E~Uf*JkfgdV@J0x?F7s~KqJ~4cTxC%IR@sFl%zGA zmCCOeVa_ckw~-=dR#tCv{GDRZYqO55tAlQ_i5dnRj8xwckUASF%#54T{sA`@Su_nb z=MGFpsPE%2t+ipLU;CxG)D`N)Q0pq(;+=Y6QQQn2n8s`&Y%VENVH;F_f|vI07FBX_ z=|=jHcnuvq76$xAIS8gMux3~mqfRp+9aN@4s^0WDD{O-7FT-K~;buq;hJvbXe5ui( zJ|^wbx1!OGkUA0>vwK2Hmw7~xlcN*B%H6?I;fXL4*Ji>zkeTnS74|~Ytd2@=s?T#C z89(cqG{tvco_nr`Z`O*DsvA~4VD!KTfrlS+#A4llrHF7E_8s2#Fyc!V6vk4QEd(kwZhka#~8Ty{UV{ZCG%enR|433mA zmF%qmzEFq9=cl*mb!ZlCANm?89+lu zAGn5`7~a0l5hQd$gMC}C8x-X+Rn;7bLk7xBPN;Te#E&6fe{Ljff?@4^p0y{wB@VmmkZ+ZjZ+4H zVsp2;7~HtTRKZdl&J{93!hU6Djc$5#YImnAV7FO3l><#n&g~P4W0f$Ly(NrX!R$VI z$t|6I(Vh_CQ8)JSf?1RO*osz-KWOKL0x66Bs))CBEm;kH6l1_%zp4PnGZ z5`+F`kQdn<7MbntX#nwt0p`42k858OzA};mY~3dgyBhvKt^L1Er1)1mTLFnpSn#yD zP+J8!(J-F4FZ+H?S=JYGgxuQBmeOl!3M1|5%2G~ZinIFuolOgVHuvUK*(*oe03v}@ zonNvk3RLqfyNTTG+T!Q*^?fK9#cvgmjfBjeZB;y|p9=n9H7w03bKp5$3!h}c%BrdSubkL?WfRGk2fZ|x?SXNWFK!nr_3>dl;(2hm(gN$vM zXL&LNz18OR7-9=yRqfoqoFpbGJyoid4J3{ai=c?UPYp&NkKeH9QqYq}bnscnmG+mX z5m&1^V3nI;(nSs$Fon9$`w{L$=tmUQDi5Ir%~WEQKpSzux(Od^8TH>W4)Z9!D|M?q zHrlqQbP?`Qy)MsdBQevlvYqELr0l`-+ctwMK)T)9kQItQO&)=K4U6{%t@e*@Hc*;* zW$l038d~|uP8#3qFTXCe*=U=Y&Z`zm+x1oNf@oVzc5}`Adh##ZqVM__g%w=rm-{~4 zm23v6my?@KqDl!VDueQ@VkTDp4a7F{<$WBhfy{#R-c9?{G2O>piYdXGlZq)Osh?b= z`KstiZS<*z$O}HfNz4B46#l2Orv_jV0MC)oEeFHj^<1fKNc zq(&L<)8g$k8RQpaf;d}VO4c^!KKO2M)n_0P{{eYeg}^DelW7Xr3i0bMb0iadUi|#^iu|&NPktep=xFquHgqV?ZLk0} z(wW5O18a3nxlnDh1}b55)!bzU)=n|I{kW0840$3O3F%?69HH|IQr@md1=^wVtya`e z2aJkj7~EebY55gnC;2j-)yJNVwHMhFJD_5m)g2}6Wmdp=WyD0+BLK@7h$FKVQi+Q=|~WA6SJLYTL!9*LR5M~;VF=Cv60rGXOV z54=85C^lxL%CfVFPRZ;^E82;3>laNesYd`4k{c5bAH+U6$VJrK-@-C<&mP<& z5)@)lb(O*Gie+V-?`8UbO}zxjJN}M9wP2BLf>g8|5(Qv{qNDk2+Hou(6Y;5KTg9ic zq^E*YupHBEQv;MrB!oVGJuY)Jhze5ub>+4;W6|CKqrj*GF23bSsPgws=}Tt1(2Onfjm7OgRR zl_nkZr2R)4_n$0(KAA>dfFkBD}69 zB+kd+lo1m&k1@zPP{A_ZMuQf4xHuN*NE%+QES40u%mCkE9Iz#oJ}?zt`qh1gt+y;E zR1D1=E%z&UD3ivTLglGWLBt{Tj4VfAg8XxA3W*8hW=*cvLdVEOORTm$7e1EEk*Wx6 z{uuj(M;Jpd2h{ie*1kZyPIk>DxAs0yP!cH_`fXqDwb>i%Z?g!H?*DJkE+!#* z=i(mp{0&DTEj;yp#KhuCgX@E`w~iYPCM#7B_yDLSdo_Ej&u{^EqiAv9*s^5tJ7UrO zWbD0M_InP!b_D=Shcw0-pX-FPMZh%|4sH*mRVtFNwh0uHKnlQiWZbr2&!)zd0=65O zkI=66+@U9lxqrX5kV)?m(q5YlU{p9r*Jz|nQDK1*R40?9d1+(gliN->9tFqaz`x|1 ztz}#qe!~2)tm0l=Bh$O3+VDDvYM?1NE%j~Wqi>D}S0;)Hv#DxIobym;>dG)qKA`2= zmIoSx_7VhNm;+y1$u?#~Df<`sM~uB+Ys*ys=t)goj5}1d*J`}0$?X(Zt2IdOU{5yA z4$nB(mag8kipgyz#U%B2)k%6yLsb#X`P+)VSD%~;6H}O*9!J{ShwCmH zk%O=OD#F;ZZjP7lDNkoG+$>31QLol~kHR=U3=87b(XTP9AVi$v+AJjzX)Zn=e|Aq? z3fP)|XsIUc0mT^;LTGE5=1EK5{%lpdGVi*hgH(eEjU|KzHMQ&BrqshorSo*=sBsRf z>_(pEuC~aO0Y?x3I;M~q3qcv<;QwnWogs(@Q9zY2KAbNFEFFUpi;j_vO4Bj2*ZBIa zqW_aL2TIxKG!Wkri)}I2pE)-8SFEwPpQco=1p5f4pEfg}jA@qyf6kVhkrp|xVafxO zN_KRLXkLDc|I9WVz)X+9jFP%~q)6}ip5@zXir?3@&;AdAVDNnTp|q~kxxnW`p{X%q zloAE7I%&kmh<*sk@7g*Fby;^xkX+qqEJhjQDBoYJm0x5IBOw`AgsjW#i*~Cq@@||2 zWnp+vEgrCx&&F=X+Q_o|9|WSq9rRSb0-*C{)5m|xu<-TKw5N=(jZ~)UvWp40$&uTB z$m{jbuD1f1@F3u&}+-R|!A zC}V$d)q~1`k@rocLbKt(nSy@LCB1l40ZC#$Sz&z!Z_RkH?-quxvec<~6h%Xnk;t1p zyjyez=E-a%KB*LT7Tx3v%uI^^cQ!W}5xV^9C=bpry8D>c%~TA0ByKga$C3|a#t%1r zaf-+%!bhWo9!MuFop03rWDy$o(udWt-m>kz&Nasrbz1DaA#B-KnF%ra9yd4U?cv|shdV|uKOY7?3AUb7KwYX6e6Sa zkhsXXOd3boS3qJeIO&vpDZA{L@h1+#)`k1>2huq1dYFKbB)KmKa)*tI<=yT*uxjlS zu3h~>e3?0KNNT5j1vy7c#t?@8F>Kg0*^#rC1WyG!u?;#|&LdSGx!(s+uk}?&~H+0O7(+M8w^h5bQne;QK z^SaJ%m}Ob_-?~(dLloOra&V8c|U$c2Vreo?gLIXauuQZon6=%w*@Ev3v&; z(5i*O^pF$0C3Lf&!39@#8&cd#>(RRLG)9DBVB|tkRx%HFm8qeFJ_SUGS*i+J2=Pf! zTK4ouJM*^+z1Wx|P^P1b6rQ+GnINb5VkM+Oh-fG$&&Yx9fqV>ErN&?IX1OFa9P9jstgpIISway7ivk|5GT9zFoa|3P-ia{W_WbM`_!iQPVnyVW6gX0wS1()ZO!^8kPOPLBJF<*f4Y1oQJRvBkZ%o;1zGcmH?a(%l~N%WyhN8gnt6s& zyQz=sBLpCV%>*%gQf(yiYJLD2^ifz4QiK&-Ed9xK>8g2QCyEK}amNfE7aw{x%;L;N zwb25Vm`$}$-v4*JnfKsFQ~v_$b^l>$FC05|+zK_D#=ef>a>W3!nIRaw(pbOd2)*k@ z*EyY(hX`ghk-@E{1yLYaUkunahnRjJOsddJJ~SFz|{R+-5h% zv;XCRt?uevUES$vO~WZ`!HWS_&Rg4$F~o$T3&eJuVYEBJY@5w+-D&HY`gA=TsQb)& z$q0JlpQSMtyHSV^@TjEPlTMN)Col8r3&rxflxDNlr0D~d?HZ4dajCei)Gm3=G1re8 zqY?rq4@Tie{gcxL23SL*$4C2;{1|^c$xiMJBaLz0ot2ei1E+WggpK|7l9B2__A*j@ z*S<2YoqA~Eg(a^Iu&4yW$vG=O2|qq&|;L>&?u zW{klF)Jz@;&~JtHB+w54;}pR2IwMyS$^fIyNRqJ1ICU_V8q3q2`Y7@p@)Ng__qhn~ z99nc&qYTubV+8Kr_g#!YnUT-JI43z#%cyM9QTT+(x39I1SdWE~qj!cAsonCqGPm>5 zF}^Z$e_3c&H%Jzaf7}tL#9;o$uLD3Fpy3J8-oEG~+H9;5Eu;E!kxypR&mJWPXE#{m z&o&~-(tR&_ou!_OqbsF`{`8fR<#PHv;lu`!zrfNIh$?yozqt1c9(dKZ3 zVtR&zcbYt2d_IG=sYjQEmJYjS^jKxBAQRlT{&@cIRKFl4yM>@)T`(8*~G*Pc@2PBEe& z+^11{sv0r!!Gu*;levTS`D%F2{;;Ci1{1|;M%`wYwR0Ck)fta|tV#{QvIqBTID-c= z>d;T?*?PCn%WY?#(AeaY92n~;DjibhWE5pH6q+CN|&`K+b5rMs00 zn+zHb?u*kj^9(YhJDd)i#(UBlqx9}I`q*-ITd_ymH0A3=o-EZ`wR#_8uOQ=&^Cj;Y z>x&+h+X_4qT^t<70<#7QqMMVKz+{6tGOq0(yzgFG2h#U5#5|-VpMDLrm+wG$VNaY? zqYMJ|=)4`irjLPM&2EHdxwgOQ*J`wxlszr0|Gl72kldB}hZQeB`M<@7Mub#gZEc3R zwtTV`{Wp}}4G5!f93#9(+CebMxf=M-<@^>ma%(?nTKItA^}4suDlzauKHZ4hy5tId z_e2Bq`!)BOo%?z6OCLuH=4;FV!=Z6%jIHQEM$bC8vMN&FPYqA6?T+WE_bP~gWDj?n zM08mXgb66LrnZFWN-NlqP5|00*o!N?YBg9C6!r3u-JR=2B7taf_9XI7QD}J`^d(#~ z`8XLkAK*S4g6f5M)%Baa22rn~j9Jb9f68uioUl-HT+ckVn$Fi&Ty$z8;EA_uV?~0Kl1~()sNk zE}N2Fm0P->%>SJ;hGOjh?HocJ2c?RUvSapbP$hVwilHb=z<$vKcNz1v7bBpy#BPD| zSwL~{>cTJ*7Q%Je?|k(gVadZ_8Urcx3Y z$80VEgUDHp>x_kK#zJVGX@Y50cR3A^86z$n7;^h#ft!jCXGE9%oIOt){A)Gg1^#xRoS| z91nQ(wvg`9Y1f*txk*tqBBzA!3PC7=_Z3um1fS1bPmK&K`WV`l`_w%lv7-Rz(Ge^9!0buRoLXC{bd8h{GcZkWF{46Iu@N%iaGzPMQ6u8hd-59w*0Q z1~;b-$>!J%jj(fsNjjNrP+!tkprBz`Sq9LRvE9A=g2ig0V%->BeoWw~Ms@dyF~6_s z^Wu>c3zR!y9fg301sGDsyt3>puV(7&H%;YPRk+~ed8a`)0R28Xg6c-c890ODlha>Pc zjlw!MVz@z)WSz}LaMafd?oPEN4JG#KA9k$DN{z27F+{-#LQUGT{Cr`mb@>MVj=|+V z*XVe)+21KW+)<79!Kg<|#Az$wGK?W-kX^u{X$g|F=6w|W*>6Sb>d#TQ{JZ+Pda5dX zRgn->c`&gqfb5hQq%)J!ab&uk!tAAx~shlD14!@CQ_6mKr-eIFMvE^aK0cqP;<{-hDG3s`ti#jBx8m z8uq7_un^I`Hj^!P$={9=p;6ei3L?EUny$I+)eNS6LB!tb%_oB%tE3RN7W?CVwWVOT z{xy|eTaES8*VlSi8gr-dUV;Kq?HYiC!SO=4?9Lh9Q^BBff!)r7pT2Wt$al-ndfLR; zBF~sS=dIQMe+|K$5DN)mqyBjIS1Ux8E+`oV5PtT&AQQYK)1<{)ZGK;QQh3rG$K~l& z8f6iSEu>GJYZM}2Z#fCJ5r)1Jq8%YZnIx&R_pp5u;r112ZZaNo-aB0^X-GsP1drE* zIuwOil6d#8;_bM6euj%w(g+vQ8gZ%Ulq+gxWG^zq%0I}zUTYRIU|}MGz4BmW6+O&% z|E2y{eqrPA3IF4d!hxP=!aDF@z%Lp}{>Z}yTg&`!sD{e2j)tQd)hYQk;YP{eGL#wG zx0QM3c0PrhOLI}B9b4kzZa%lKIJ2&@agzq-U5sC<3383QV9>U|tY0XmcT>9BN%@l{ zfOIqI`tCd)?=SHYJxWw7r5bhnB?jfu$fl!4fpEt=eYPR!`KoUvicWz6M<|AzDm{$P zAuwM-m~gYMvfmdWgv4#nMZ)6)nghD)P|(1-ktA~x(7FarVbrSP&`_#m(EvdkZ8DEk zhvGWxy4H4+g~C4nocUK_GahK8dG}7>pFkw#WS8HRO>IZYF9xzV-^61GPH_7;u-)G+ z>M^!;QM7x`Q>^SdXFdB=+w^rT8)SKd{=Cb>bsZO_(voZ@0MTN<(3lR|QIh5tANAZW zNB#VB8kLrO(8%jmoA9gpxt6*hXlbIv+u)Xa1)LKaL1OI(h27m%vBoPg-WakF@|zD_ zUUj!`zde8Yo*;A?H6UXqNc%AM!TI9yh1X{*nXlDfJX_RWO3E;7IC2%EzVScQE2G^l zycVFYA6g=t%?{}8dmjf}xB1DUE+OL4?tl_9l9YGY>LJ|WpquTXeK2bP$`v@2=d7+1 zTdAM4i~e&}$i%3A?kOROTsOmgzx}#W!p1p)00ODIWvGVe5{M&XA895IQ#n{4V00sE zs6lYq(sLBG>yD3ar7!V5QZV=wx6W9+(K z-d&@ZD+x0$Hepp?dYA`0HQxU`3qpsCQhfQid6YF$t)ZZk5B?jDOl9`Y1piCe3p~Jr z5z=GvPpv-3v(J?HPq-JrZN!;kUy*qjD*GrJ!=Dgjb%P^F{j88bP_)+dLjMT)?}wWi z>i>_Vvkc3sYuYf~-JK!`N_VID01^t)EukPGDcxNP2uMjtcXxLq9n#(1aDQvR-%llu zo4r@eTyxEwIVkI{7vGYqD&(+A8AiR>zLq%lTYNzitDUZKF?vA5%ahI3T5- z`ca+qYfPY3XZrLv>VBCa=YTbeS}^kN%tukfQv&S5NyX;|n)+AWI!@dkTn2wE7vlfb zYTc+|K9=fHndEmIuAzr9>D}HXCTDi|vK>~zkkn~J*6Za&I%ETI)V*xrw5-+#Ut9GK z(qFW)V91X4-=szw@cp`dL$b0Pv@V2lZzFcRi>g_|dPkLL#jAz&@f*B|`mcGU*Z;{n zT^JIYMqvIThok+7<}=8hh1`k%-N@J&XWsalrpz=Ci*)-khn4<@H7m*V`KJp0$SsEY zUlbK6Z^))~3dX~%EpI2hA7)2e>QMY;9IE<}%z1;f;yrJT{o<+<`f>~3UR(#FQx|%S zqhOokSgabiW$9ZJl~}rtI=sUpS0j1OL~rWp^~tHP>vAss{!25c} zy*w*@AL6uW7&b+Q)a0^P<+KwcwZY(DOv9wM={(13leO?(1AO=1Kg8xAmFOLJRqDRe z9tSYHyt`5qp*hyC9E%RPBirr)9{Tgkz|)$O6+hO>4x&#EihQ$N+T%FDyDi1EvDQVFCEk&M)` zLDp9h6NI@U9iviYYNGFr*EmT~Utg@R&DhO$!*z&+!l{UWFv!`CwhZR6_<3fw$pu*k z`7%WcS&vYgiis^-ysA#7&8SB;BU4}5_>`tAAO)~TaQ%@*f6?|;GJ6SAE1dHt5= zM8FixjQCyfn)qYj7?C|EC*N0$KFR62Ro~>+hwx)jE(@lwaL7jRsKhcaH;C-0{=%x1 zyV_STdk`hq(BDU#IXV+4GQUMJIaDC#4U!j%Xq)p}Y1=f8^=I{O-|O;8>EOPjs)^a! z--@eQ9%`8leb6oAZ`Fn^sAjKa6Fi{VgISmDcFnE^o6G_eh zs0}gp$UZHj)l}T*LKKr1xhX)$1E4_|MD6Q!qsIsA85+PrvRZ%{@qgTc#>Ro?p6nxP zI`V>HdLEE@gvs8Sv?$1e&h$c3X%RolT-)G%Wp^lPODeqp;H1$ zpZ^V`xNbcl;5@BMJegMMrUSevn0lgQErk2ov*-x1ui^ljW(Sdv%q!<6CMGO-A3`H& zzgEsQ0UjTiB-s#^h7Tas*X;Eh1g*u=_vNnuE?xy1?A-g2l;I4T9tLqm%QBG5BWQiI z&9twe;m7HoS87w4EK#67UY)x9-yFwb+V-iu*X<)T$^&q6U?;&6NGQa*$&Uw+SVchJ3MN?01YJM=wC1JgrExEks5`~{#EbKi;ai%8 zc8%-l+BeY7P%+3JOzk{tp8SO*k8l3xqsa2@2pA|%^op&jHOqT7WdTsoB+ipYBfj0K z+VdL#WDpoIy(GEStp3=!ys!jFZ3q%W=9S;TV1^#?=T_l#<#n;c=I3BIGMKC*c`WZf za&d9-Qm4ui0Q?#O2^ne>??R9R+2A_y<9OeHWKi8EL#AY4VCyjg9U^IU_g1xf=O33@C&`B4+oUjJ3O94+tm7`z z5S%z)FYj*}bS9Ino(3EOCeIS!12siy5OsrNL_$Xd5fL$s07*t( z=`S9#Cm%&5n4w_9E4N(uwq@HA|Jn9p^^8H|hezDI_r)Kq_>;jxoD7ho&`k*n3Ih8i z-PJsh#08t;7L3Sf;3bfEH}Jfil97=)-SrVr7T$(th5y%NI~J6{Vdyo?H&euTjfuGq zVa^hdUT2+V(LVMSPJT;sXA-PyD$%JPXhp;Py%yg#1QCfW&lP2%3G(*6)WL6fqF%L? z2ikRq5yJo|^dJS3^rQ9%A~`w~fQzyfgYUWNs1aG?NxvO>EAVdvm28CX!TG#c44}w! zQ@$#=RA#`YA*d9<^|eJ?nV@R4AU<6tS)}diTJlm%)EOeMcB)N5>`?tF&5WFy$2kQ15@@Xl^9cc_`w?)M7d{sjvkv#%n;@Wic(GA?-K^RtKfUY}+Exh{ zcH`^i>Mvho1*KQyifnr~^Oa#FHjoCq!$?(QKm zd$dn4&Rc)87G4UNY-7P=zY5H?f11rfNYIt^2k;8LJ5=CIhX5^(dRocV54YAcbMf3N}Wl@+RC45Wc80E(eYjzv83ds()9KjF>#(s9KqIu6+Qq%JZh%C@ z8W`=E8MW^C+?BRSyK)PV{vu?&Wn7EB!_vUW6o>7R%VK2P+tBt>4cTq^Q~U@+_v!hu zNcOXt9c>qYkZS_OLI9%F_v`B5ko)SJh7R<_Uus`<$}xQ(6Gl>}sD@r~zbD=Hv?9hJ z$ZJ^r^%{QtHYwcdDrBVa(x%oZ+yImDrKp}vFKMM&;3c0I^6PFXYMI2qS-vnV)vs*s zlfc{POki#3b7I8uv5aa6R7XDY7jvMr;S})xUCL8F>9}9TlE!&JB2*|R zBpMbSHNCW{+DELmf=yVxS*j{DrQYtn`fU4OqMdd2>t_~2_fbI@+68$gt94Sn7_C@M z@gGAZ+~oH<|s zEA03EwqYJ$T5>#-iO}B`_0=6$`E6>^(iyk(rFYJW}*8fo}H9Sc;?Pkp5-+%I2pP2@4a-^vnT$^QRF(z>=2m(QXVve2#hCM$F)M(2BUAv zad$$JvA0y=5)8eBbeQq8=u=oJOk3{%9gBmz_vvv(mAdoDXoI-4V2M4VDzd4I76GeI5Qki(ccHi`s9+MkR+XcZ!6W2R$MI5Mv>|GNyNIu zH^(J8&FoKuy%)Y8)J)<0+r^|GOLny^&*kc%DDB06`(+U!Z5xW+cSIu62&~?g)a7)8 z`qNqDnZL%4HGA6_ss9)>Jcjr?P2+<8 zxw+|p$QP`y)ErGnO(ZlI$LJp&uyLDz!@6JSF5ur+8h<1xn!Ou0`xb!ta7oxVrn~D+ zHSvZ};WoVQFIjZq*_Nwy=qe`z7Ej_dTYrpyv*kMw$>TqzCQ>1&U8fdx?Pka&nY8*V z;ir_WP;nz!|{ug!o@^gYS*%P>ymBnv2 z0Oj+YZaMwagiFhLs{M|uR%AdF8uODK+PAlnz7BS9+{4_-h&VAN!M|nEQuxVoin1c8iRheXJw_0m_d>eUiTq@{ z3bgPwP}LaWRAbOU^G==*<}e01cX!sMhUP!7$6xbsbSxP8GrSh^VT(k{L|B}iF<(!< zIV1J5B1wiY`?4qxbz2SOa-I2VCyZ4SgeXG^%^%(WIxjsw%5v-4w5fw6=ueQTI=_Y4fLU3;6NU*+aJb z%pYDJL;aDI=x+m^P2g)tPYZ}j_v#K1GxWjKYYNqh^W!w$`di;+ zr=;lTnVb5H>f@69rhXK#%2sc}^qf&gexUhk%;x*N!g@iuMQ>W#yuFQ^Z1H7ys)%Vr z8EIve;MG$#H=J<|mPMDj9ZH8^$7G^AQD{rVo z;F9PFC*`((^>``PnF?YgemX?e$)TOBY!_70{RJ*{K11BYA!UWi9cGV!^i^a`B!>6y- z_!x+%m>L?br;)aft@$BX*x1mKu%n>Arq&AsXY$1#4timuzu)7ntK;n!S{=X@j6AwA zU}r*lEef0K)#H1L;61#q#AypR*5}D#lvOG42!<2gv&hAb;1xo9|jezKr<9sYK zk=6hNJ-8ANc3Ow?VL_3R4^IZ92Cl~4XSCBnA=Wi><{&s&Otkoz!DoAS^z}+D=~tbb z1L^oT`#?8yvVLo)kL)hyEqeupUI2*PtE_}R5e_a3NY|SQs;x4+D?J|yJhecU+Td!uxHi1?$(if&p(wHM)&vnr$(|XdW9s;|lu$a=|4!=R2a_A8k=JX@Rq(OXh|am; zvV45vsM`qwsN3Dqe|(x3@*i#TX#92#=kq%Se(6)gR46IKq>4gcAMKfL#5-qE4+QvrFT*ua~j?+rQGu&ur zG5qE&zS3KO-?~$QU8sQcW&jMpqxczIU<2Yui&UqdQCZe1qGs`bmhjuFM7BP?5gnAB zTwZQnj}l?mtto14l}I#rJg@0c?sRakwm_%c2%;(3*8$vWrF`26wl@iNGVARwz-GmYW` zvk2A?bQppl?BU#Vo$$m~CDAdP`^^OQFpr95QhPPc$_jGbV>@4TtYk`YhO#BehqtYk zh&herevIzc=-i8RT+dJLN-l-tY=vMM`_1ENt`p{^((gzxD7c~yJfsDV1$s;Uc23Hjc8ha{k zo@;da+tJ*jLByWvAw)3{(p|| zt3(m}LZ82k2&KI-3%b z>kz%sh!$K60pMs+>m@skvXA`)5oY!J68B6rXV?OZW1IEm0M1TnQ)dix#@8RsptZaN zk`vgr_Y*UZ_lZ9(mRxqDhIeu5#p>Hx2I_R9|V>dhT`A%y! z#IQ$X;RUyX;KR)s$hC~pN5hvz?XKa7@dEJ((Ye$E#uPl*eEb4rfAI+_g7tZrIQUEJ?z`WbaDJRT6q23|jiQWp z;ABbrI`D!X+qR6a8AR|cU_1Lo5f3ol$}d7(7#fe0_7HWhDzmZFB=)X?yG+vNoy>4{ zjQWrThhQD6=4nBmQKVcQaf44F8jJ-I>c;HyRA~V0-1})1u)(Pt-=ZYE!H338;|Oiw zQ6zD*?o62GG>{i7O08b?7xq-)-Fb7g+^hjC2=nyiBg=O0Ca&Hr1 z%cTBu3__*XEwW{<3528-O66)!0nq#zPn_u= zr@+bM1KndFc~QN8hr3WSm{4NK63T(q!b6!2y)j*K#=6WAC{z z^J)&lU8{&3R+Z^B1~X~8DawMB{a-h!;o|99OsRXy)-otRYmzZ!0uhlK40{Tu^|}Fp z%{5Rpmn2+ee(|<$Jk;6%h;{F2%=&{GP2!!tonzS^&@x@&Rf-x9eNoNo}cF^YYEAp!`u$2z`tW`?|Z#dpJ>Yb7aKVZD!=zk>ASm_aZRtmsHVKb&R(jbkwUl zPdlsmeMcKgjHE`wTFf2p#ocxvp2W+`#P3Dssf7*7&@)o6n& zvm4(v1aAlOYl9(q8a)tD0M`8*RpXJyNvYRmp=sJkz|{TyGR!OG&QY`h8f*;M=F$3M zk52{adj*`4V9sYBWs5ZJL!Qj6MWAP(O6S~rr3lm3{kk#rZpEKEe{5b8-p3s!)D;dj z0e;`n3@ylBPVbObDrtGn*$hs@z$ zJN7zqNM8UlqfB+>Rmv?u0va-1o&u)59hfZ|6!U4>s4u;=0HkW#?j6OPGvF_11;;(x z=(Z}DU;wR~NQYpQ+-Sl5Rm(N(r9t1?=z3+pa3mdk_>p?pO*HIe>-vW7IhJoolWpIS zsH@#{0+)Zj6?-{NVhC$=S9a z=VKpan)B%|PqD-ySt|o~+6L`@>o(!e4^y8+A|$ko{%SurE5Ek~djd_Ct1sbx(96We z!PQk4WWHcT2ohjdSNPYJ|9&0u-iSMl`ihf#Gr!i<)r<+rPx<<$;Dpt5Y-L?ZKYl}I z7SH)Eo3Umm$Yl*vv^z3(E?{%jD%d2O!;=Za<;(s1RULy~>d}U?=7x*Eifl*d1rX%z zizxa0gFZMjj#koyl^fFw47_ePeF;&{OAB?OdlTIq=SOX$ zfC2-%38nS#kf$P6es1@9JU8OTz-a!=%Q8dhc~S3%@y%O^4#yCpsOuEEc1w{P$baNq zw>~yDmZ-?!RpfLn+t%lRD(l{!EMs_CpoyGzkV}`=1!9(0WHJ6#ur1rC=iQt0% z*FZ#-r}>67F7#$m*H%2zjJS0PY*=ukYDU3~SUdz|g&k!D_41mI5KNU0YN-8&;Hkd$ z(c9ZspD=FDT|%7O@7v<&6M^K{oiJ&CWFs<8yS^sVXNUP76=Y!fEv>h~>)@qAG1WR@jD)Lrq%_~_j(v!uW+m>_OxeAU>9+DpO6Qrna4JA#aGJ38Nrh}c0nx{c4 z=*rN=&~fASJ3r89^3b6Em5p}q_m6CGwUPSEkFL#RE{pcPiMFoo^An0pic1K7N<*r{hx?rwXYr z7RJS_&eDb-+=dw$r*4}YttnarE1ePRERh}}VI3U>5~aPu0E(<_3+a&I}?s--o$rIHx}?SBb5%SQ8Q78U6x3rT8qwZA~0{PFWoG*v94tq{r!IxI86 zEBX#3cGo_s-itXK*Nu~7oBJ44adXhlKqvOAJWmS_K`m0`z^|Au5523r>B(K z%4GeG;J>Ma7d@!(Sbo^jrh}J3e+_4fqL!|2w2G&dJnUvlBj$WpGgsjopJataCivTi zI>o9a9{wh9l|yW+04MD$nKqeo72kv>eogWZR_BiV2~*bpTG!On15W(JwhK;@v|h%a z6~Ge<%+Ky=d@HXBv2_G7p2pF_kunuWHUw7%iBaSWJ@+503UroA^^Zo4x&Oi_PhWWh zF04D?^{z)FXb+q}fGP$=C@K_WuOd)!2TEGR^9{NwjD51mVH84pxf^?*)5NWd{3Q;1 zRDM8j9S=INbpd7A18~(qNAAr|R&-B-#=$wUz;0BC_l*hna&!7ROe#YE*_v-aaBgWC zv3V zw%|#FSV)Vji{pveytm|)h$9=?+nF@-c)d)^fWVriIt5Y%ob?ikbk09-95{zhx*a?v zjfAKNmOeMEuN@jzj#{;xE|g|i81?b}7h_S4Kw_yK_8t9K7o0%g<30HcLMd7Jn0M~u zL>gb1vZiooo!pG>+R{Fd^>E6l&acc_b*P(~ki=snBk-HuTES3oy%FH(0&DhM5&L|e z$53Jk;$=J+wzXVoD^8e1&zq6dJ5P=s#vCsZI3Kg-2Yb}Z`)j(HHUOhPm$gMgt6JU7 zO;78(Cm0`yX9JZCiQo-hdjneUx3;#&pmyLVC1UJ`fA7I=*dl6fQ?BAgB|t{U0ItC~ z5Y?>0)Tb2L>$`&WP-4GFz2qh;4fyRG&FraJw{wA`QX- z#Q;_O#243dN2b(msxV3zq)Ji31G$wp>ETCTF`Fj$jd~KzD}{6d>J80@L|u*+MMn|Q zsfOJ}FZh3Ily$oE-#|G>$Q$bed%~hraYsGf_}Ii-kUBho8nq}dFOdj-0I~;Q*Dt%S zM?z>|HlphvitM4s8s$l?hhJ>>kB@N~55=SHxz9nh5|EjlzB{CChm*X*Xc_QI)EE4m zGRH>N;CT-Uo{%7>Pk*(@8gE_v4-~7Pmpu^VAOKmE2g_(|;1KIQ>lhaOq?-Hj>GA#M zp@etcjo2O?G76cKF6)F2s#bnJTpb)$96Wyq1~D;3H-oxYW8{91e0}Hhd6I7Gl7_iE z68!uT*_rl$B$WTTT(I~gb2y7X?qJbQsdN-mn2vYD`Q-3@o|zoCG~uZh`R{xxTn#lP zpFHGLBm!$EQ2W%yd{v3moq`c-WCU|vWQIIti3 zRlNQ-5B=A1C#BjeBWrWRLdNeIpA$2}+%~!esm+jJk!)Ro?gQKuParKRP~DtO=O0-M zA~C-CckCtb92xu3<6>OC6u2LverjzmCNEv&w6utCFX}Fx{q%n5^^TChZd?IT9tZ?) zZ5j_r{^F>tYj3L`CkP71g@k3gPJo}78};I^L&}P0Eco$nUdZJUvb;QAZUeP(A3!g! zo3_QECDC!)?b=1WCfG3v1Ig{@?Z2np&|G+s!QwIFP!*plJTBl#;k`_OBJg8yHVDS* z3G$wD068mptR*3Wn8v0YU^y!eul&%c+5 zUS{W=X(G3+!QnI3(0y#~`yg>XUo4=Dasf}G=hGLAj>jfQt)eVq!lhbcM$&j=9r9+E+^%j|%T z!mxgrf5A~n<8XMy^or*u-)o(6`NaB}^Ai^4L3XS%f>DIfZgwndAzK|2;W$vXDVXn* zmbTA9n0~Uq-kQ99yRiIp1=fTtdjF$o`+_uE$>q~1w4TOfa3N(B5=wcKhucDW99*iX zPEAl|abTa+hz_YL7)^q=1uyPyx6@%GE-jU?r+aUxq#hv<#eN#+1iUG8APel6zxr{C z9TviIv?=55zbiA2UiR?hnK4jS~ zg|o?)vB%}at#)bNJ2xeSs19UIWGi&`;g@n7WR?&_8jB9qR zOiG8hnq1-UFg{Liw=t&wC~>;s{nx1ghxf-C8^<<8U95_z;=jdKDMKuUFDy4iyzc4m z9nER5n#b@a?G1m_HuHi5x|8;)48|j_d)l?DXn6Od+IjdFA9x+L3k#Z4+Lh*>H=VRN z{do`azGq?=V=`9LMY~I*WdZEX7k_W2PYECZ7}y*-rCm@h8X)T(v~1&TU;wfN6X4`r z(YW0e3)IHFXF^)OBZd4l5PC^&dl`4PbUahwDT~fvITnQ7hk$@3bX2zv&<%V!3vb+4 zTms3RW#8ayYO@}O98L)=dz^!Z+zNuWS6XF8z?uV9t6tSE`hA}sSt&cbKlvW*@vKg) zSDxN08?2XWcvLF9i6%j;S)F^3V!R>?P9EOcOfaOOXfGl9 z`$$O9{!Yq;Xhu$d+`Nb+G$i$yK6*QO5RaMRnfJnDl^#LWCu|zs;q7-sIO4FJAFSo? z%vNh0W*x*;iS{t$Pcppo^TEgY9%qFS z!_Twlq{Use7jn2giXiFZkH3NUVl*2Lov()=2YY_NilVCg_p@6^h4LQ$P>i>mzEp*Y z_AKTmtvsmhR+G$GnJoV~g%B({PP~N*k;jqR|21x=Gy;VJsLU;;-jDmh@DtCg>D2?N zK;Y_=Amd;7(zkS7F(`bo+zg6DUau zVBhkK31ZFG!i{x0?IuOF2Xd$e2=r2-lys@FDn)?UNFPi^5Zskj_yJEm%s;kq)K;(n zjc{g@tz{Jap}3+aZ9wj;b-Vm*`?{ovD_xWU3)17o0EFU!qc3r;o^TqGz&8n=&POM| zOvlKFTT*|k4AzAB^tm2CF$eZuWBD}7<)wZDZ&asjS9r({(9-m;mG5jpoMzTO z#}{REaj*uWY1yhOWx>?|yFV6&?fJxQK=d+`UFx1-fxY<0(cVGzF7S2+a@>{ zb>nBr*yH2vfwQAIE;RMP6>|+RqQq<;9PI-yYcWUmI`g%9##il?6&i8v9vGtL z0C&9)Jj=~15g)iLrAuucSSz!K<$hYRv3vV8>A@xXkdEg43C{z%yu56 zCyVi!^|)3^-@MjqL>~WkU12teBfRr_EF=UB?5_c8q0zy63XVP?$gh_7(j=p^kG*d; zTsxESZ65l?w-1!wyUSAVW+0xKY>dk0$x&%4Ug`CTM2Gb8fX@ITx(Y>a6A@z(kwZT` z6X6`QmNhH9rThS~Ugt|0AoxNx#I^45^(z_YDmo-X+})zekucq!H|Iss_m{h+dGRKA zjQg{fS66BFJ>d z0S}fkn^!|APp(S8@|bt)o<03{bTcmO>{>-T6ZI>$;GN(j9sKR14nNX>Mm$zR+7L!e zQNNEgKP{D@`HVFeoWPDiWrsz;_0-_Q@{hC;9{AHAAv0RmzsV*T%4;kQSBVKf=xv%I zTo-#3o~cGo8N&Jd`>(c8zxw3s4t$~~-CE7=^hiy}-`z;UzDIOV_yfs6N&^@^24|YK z_(I|i?8+*>ZVtrM*Gg}Xh+XS>53@HOaL;E4i)s;95Mja~gCVHxuiJLNO$8!zUMU zkCi)L9)S0LCVoz=yd&p$Ii)G_crjrJ;+}`x_86LMDOqMf-Fmn^U+?KX*EM`WAWkzL z$-}I@sFU)Y{mn}y-vUsbDs2MEGeFMG3ps3cIdCDy&yv!;OB*LgP~*hsl|`uZll=}) z7v$UIHb)@B!4?el0E|XvLRDx`? zvvMj+Fn1ZrXm})5_858Z5GeQN5EV3}1uKffDoNC76y%;pKTP4Z?aAyqv@&u{h98hO z8HW!$Bk#d|hD#*QiD!||@6IEZ4MkAlfz~Bd$PnauS4i+*H?r_x#df;)6R1<{JX`ve zX_DB!L$rkdU9j+Q{^&wbTvbD6I65r93wMH9L{7byQ5*s7XRLW8`OHmz-amTeakuo& zOJAd7PjG92-*Ovea*+{XfMAhg-vg2s+S--v8IhwPK9Xmm-cJvN%7X37X7`7+t*b$l zCa@*Dtgus|C>Yk;+Y3#aY8_xf>j}65nKG``f{FkSEl{$yQ(e+vJkHIp3!V2NXY+2F zZ~i|HGVpc#;tLWjDU2 zzP2~TJ`3#Xuhci?6sz~wOsE6a(-GTI>()xJR?Ilu=b%~$h=;hutI4CW9r}MTL3ZET zmdj#J(iWO`d1LOND5v*rGv5BeF2yG-X%vKi=taSFd1bjhN+?^ASN7VaM~A&q@TbWJ zZs5>b0ik~bP(<$J4Ilo+!M+9k&qWPy)E2NZ|94%Bnx&E?GTNX&yI{!aN50RZ{w=Lp>W|+^E-r zs4DkDr*S4ZyUsxG-uFAzoo&)^{>$aDp{L!k=VF1vsjh?E?E8{A#@vTZHF!ByJMv4V z%l=bf>9R@XTVy&-RTR~uw=GH}D3T;7znk#8P_4&iK^Ow5!Z`%Y+G@X>Yc9YQ>TzI7 zn_N`J&fo?T2oDgAAR29DvPi#9mu$Vizc-ch&_9Yd(^gR#9UH@As1`8-X65oEmYtB* zeFG=xibUzE*Ov3Ipvi8v1NigT zfl2>nofdWj?vY2xNDVY^(%6O@V}dj3-fgQ>YBuVV4F^ygX$8FluVWE?pwA#z+(7u$ zRww`zIN&hjzG|5H@RFSeb~n>%(Cp?^C+Ik(v%r*4-FgX9?|VpNWe=gglaZwb4(By9 zT8o#aTOj`QjuyMpTIfG}b(8NhatIP`=*Vg4GoCKeHZVDbUrv-x2G0z99L;Y#fjl@I zT(+?2iQK>+@RX;%D?xrxQ2q?b{38PVOGdV4dUDla?l)|0wWPNs>=M^ExE@z)E?Krl zZLED2Tv#vG9sAv8{(HwswjoT!7`f8)ZAQXE*KsDF0wbyXHI=Cfjb|j{_nG+!QJ!=P z>b&u)Yl|G?)W+SSBIJzT1jQ`!;doC!IAO!uMt`&VcV`{;kP7LJfdjbMIF)@KgTz69YH> zq#`<5ALLY^@j~s>fCLN%>=#|j7$osp;e0*7mO*$}i*{kV+7TEl!pDPcu-^p|ofox54#f3^YsBrw` z!KFon>^O1mymZ1-XXq(h)6u3)A0$pgRjh%-!&ts|XjoaZo)U$TBKM`rSAu#v(|k&T+aaGn`QehY0w$leyy6{m+ws6ITHf zTI&q(-aLRzw0h1u^N{HIA0J>&7oK*M87w~9{}X3RAlV~P^;xLAF0E+Uuo>lxv%#3HA6(T*N5tT4(|Nq;IApF~g6(42Rr zMp{$N`Eezp^7^^8N+NsLxMj$XiXQc`)+3t4S};-p#0t_5T->CE#{jvrY>>gF zYh5n4`Cj(fRZgt%4o0(PV* zIMNi{(u}ro5v>K#tP1DHfV2)>>z{@`H_}`w1_}i~sAN>HsL&+iHDexu9DnhYYt6Wr znv5)@l}3wQ=ZM(2_mlc%0kttf^B4ZKv8cQ*?w49+ZMkM8W0x^h`@l#11l|^L5BF9? zu(m63c^qJ8gwP~|qAhKJYhq6#=$sKtd7)(VUmS%^xNUIv7>?}rbBd`kigOaECn4(E zIQuF41@ArR&{+YO9PeuaYsUhL__8O+o0AnU{gWb2gq0ji#0Tk{gRha| z%iGp%m{sXNEcW+Ot3Fh!>x%H0p)oA@A^N$`gikX_8TeTEF|7&--feDoT|2!(5jaaQ zUtc=miF5$<(kj!3{ftK18OO_%5QQs6gbL|+MRjUbAEcyADtk+iti!7mde0{5##pCa$z&`E!VKsm{X@P=(HKZ|$3(E=wg=0|-r);Z-gX(P4e^;%Csi zsreNpbPRb4VLxk|x?$wX;T`K8rEOv7Xg-yr;_fEs8;H?guGMIV5%iMcoSCDpm{vJ} z*NhP|8RC)Cv=GZ)0QGJoh|(rxz2`C9=nCu^$Q8^|o5q%9L+n!;uptAFo{5LIl3m7P zH12P`JZyM+r%7#F7mZy(LHCvp5vxsSn&L80OSn$bWvAoK`!+4yEcJ53FS|Bb*u31N zT0{Bz{%dktkt0slD8e?S*4s6CUlVcwwqSfT-Xre=plP3117M&`H4PkSyY&D??N*cS zu#@5w1~OmIjLAr1uRidK->{Ht{P(eY2n0oM57dW-AmtKJY5BhLUlmDaxp9IbsCi(w z(6)!zYTYB}dvSb6>-x(s^UJ*{sQZWOt8)hhj#7@8nSIE0RAE7na+#OmA}BCGN*1qj zJCM-rc=6IbAbAH|6#IZ|`~(~e9Q??r3+}TVP)FIgNisch9P_84Cd=_mg$vn5ofzlE z8%xXdMXu2(r;qOtO^2Y90U477$&W&M!qb0x9t0n!VAsnIzWuFupP@KC55g^hqMjRy zPw?Y}h;8W1DZnB4BecFKcp}N@&#{eA?;ErJ<~OG z76-d*=|6wSm1p+Qf(Krid*c)%`9w}kQ{t4e#&!M7}kf43ir`;q?4f!3* z`T2_mLLo2TFRHJ)rezaes@RqksK_b!WKx7>PPt@jPYEyGPnmJOmNR|5E&^$AVasrv zS#{OP72ju`DUq)Ihg)jeK*@~ytLywZgB$SjLRLtmSNv79@5aOWfCFVM25?1DZz>X+ zUp5iOb*~JtF+kcn)JN=n6YQ;3WvSLg4Vt&oz`4B*f-?-woIr2LKrJp+6p&7u zu9F58N>K;UF6r1L9%2HL#bprcaN*bvy$DR`0kISQHD_A25qwmq3&=a7C7y0TL6!Ge zD#p*w802e^!ed|u$$)`?^Dj835?|!+fqvu$uuc_5zA)T@(EO;Chzg%hqrF9Ef6nACjJVBm5UT-+YRi=NK9Tl5SK@IOa`F+T-*iEj!;$Ml zv90HR2PQ`Zp_Emes*daxNM_26SYrtiIB>*vD>(AvWj_O1{)&-0+CiZ^rV(V^o_p`p z&%Vtd@L_jeXNrS!#p`Y&-CTQmgkb$eh{`+XS>s@ESzUl*A+L`|kFe5^K^W9txW>bz z?B5%h%owN3ujU2*TVx_JvE@Qts$Yqf8)#To57=PZF%-grz;IN{L zG~mqHB>kH~;3nOnW32GvqAJT+l~i-0qw$LtB1?q7PF{u|@!LvO63@FPm6;eu!)wat zO?1Btz!5tG_Tmu?E2l=QaIoS4>J@LMJPg=1R8;|%rjv%5W~d`HJk=E6UPq%DR7RkR z3Y2gwCa|Z1b}w*t{_jBp!||!h^`;mb^_9W~=so}YPfheHPj;}P%H#HoF-kCV{gVC- zWUAZ&=P^EPD_bP9lsLr!BvRf~OXQW>a6lB7>86hjSpw_M5F8V$CLEoTu~79KL>E<$ z2B7@%h3Ywl&9=okcx(T>VUOcygO|1jU;CMi-?0YdDuzzB{am;2o(aBWWB>)f&0g`V z^4WIwvoybexvcMMB5h1-RaU-y7=I1qC<@;08zdpSF)GaU=EH z1HSyalxqvy)>S6K-uTOv9N8{Z6GG3H@YPv(Aqd_URP9@|>%=ZM783sewNTzJ0T-6x z)23m^fAR-3@4oTi-9t`vP%Z#2(!`uPPuQ-3`=Jvkv6>cfEB?cm{svryG}Eu;InTF& z%vw1jTxfztd+7H04~xuTjC&8c1$0=$fDS6HRw7tsf+V{EqOQ9(;4TPN@n8@|BDha= zeumKG+YZP1mTYGK&d}QV;XZ5m8dh>UR_R&&JRrW>?i)7yV6g_l*Q`3W;Pkh?zdn#> zkC$Xmhwsw3bp&BRMfo7i-psP!IcocP7s;FmEEtHq$xcfLjJY1JwgOYex&>Hm~Cr|Y!_SCc5-E$8?k za_Q!oQpA`utgl6$NjAB%FSzGhg1=zXq@qIX1;2s|z!8$6&Y9~AYo6zD2Y#Lyr zxHow;1$4H7NB0m_Sp%AlYINs2MWEvZxbFss#ET|{TtG489~c)A??jLdf^%rHfMYrl zhq2XR>*GS}H;a+Pp8M0MT@~*JAXwpmf?y1Otw?yH9@J;l$|opz105RT{wK9sz-0}! zD+2+_FVn+(b-x^+>=i-$_BR*)@aj2I>QecDyRlP4pMv__T-cs4J7f{z* zscSb|6j(iB=XN0^uNN4;9anp&PxJYIch!z#UuogYq*O|8omw?L4dlu7k=+x81qYzh$Ns1veFK^WP=F zs7V2n!6h9ZUb6#zTo!Ky3oSIalIicf5yB+vD{XYV*b%W*+P-Ns2X_soF5=EnA1(d% zce@0PoAOv1+kfF7go$^2=?GJ|J3nX5aX13X%mRqyp+Z}5GJo>$?7oI>zmC{_vFl6s zSDZO^Pov;I_yThNbs_1hQ-#pUugMtT!Bv9hvD$ii19*frv`a8$jzC`|W|ZnFU1 z6&)|kw)n%s*TGk~pl|>pixZF%uAZw1RIFC1wzH~vA?sb7A*EZIB zLTN2T+Cs9WQ6L+c4gPd$y}Y@W({frRiFfIV{!%ly1qn%zEuG=aw{&tw3`~^pzF$~| z+}5YR{fg!ZQQge%pRQY52@=v84 zPDX2+*0p^c2ca{tjHlD;Q%&Ia+<@3~6Nuz*yUCv!H^eB@@pH!52Ski9B5~ev?RU87 z)#)$W#3Ok@9$^DdT;WSbP;;&21?21Wr56gOwKkgw#ihB zfdbab<8`w>|1qz1kR=}gb~4#X66*SQVtW^Bx0`eHCWdOxn*%U%+y+h(f`^i@wYz>W zqcje5G6V-h9O>Q4<^yplv@a!A&KjFQ76B_q{^rWtw?khuhZuep z(c~e0Ts+La@Aq&G;4;?_?sgCng)+HW#>0c`Kuqokvvq9*)lCxsWpyO`tPgjraS z%0S`7=6B&iC!ClOwl>NJVxc0eYN>=h`91=J66QR=Um12N^^QeGQVAA9)|ZK(C=r!WpuuAuIiDUOyPy#(_cCUr2Wu zA;SxdvMoL=OUYaMkXR+R;`NY($ry;#<=*aY3+NniZ20E$iD2*CG=2X^)K0~#V|Okh z?o`JoAid4B%H>`Rx%z=$+8(QpPsDEcd|Fc>JosAk{PZ*vO!CZM$ceHCT~o0Y9cuwJ zh9LX>;$7N<&I718;W&TE`umLSO=K|f%#EhukXGCdW2@!Xvh_RF zIN_~ScRXAk#z-q6^|tjj6?3yl>OtY*PgHyt=oqN<%b)A+o|zp9Qrc#1gJ75V_Ek!d z1YHOA5uC-yFx6u9+PG`B<5#rg#?M5dx_4x z97~5I+Az)csK}lx`#@-Z#m?K3@Qvc^+Qp=~$JiJbF&3J-`7JJX+-!2rIr7K;>>hyf zjz1?{x(|8JU>Ifx=52v|gSQW68 zMKI082TZ_x?}1zai$9yUBxiFDE;fE(xYtz((*6R0HRM6LW9204JPa#O^P^2YIn@n? z%%&~^FJ*!dyp+@&Bg|s{({WLfT)8fm^xDD6NuUZRuQSbH2On=t3kX*|1;iIIo{WHHCoA1InN&v(Dh%RZ?IIOyDYgfQ?&5S!tOtLrdq zLE?pDgW=GLLPfp)L&yLODw#S`$6aBc_*{a!0Ps=qMWdBcWgqYmHL5TIiMKQb%_?=O zaF-HhqsWWh=q*RLcfMV(I&4+d2U0}b%pJHba&dzYa6IwE=tI)~Xj}H$DI{T^$oCI) z2d>A6audj-7YrGrKu9=bDt3albB}}^qvt+Pi4btX&|s=+;Yaub(fST$^QM+Iu04iH zf>GX3WBF`yd|)29{3)vEt^DCJtE^fE6O&R^Hj|g)ETuj zDW`mbnXC8)I$vo~haWP~NDQWC>==J1ZGjHYQ!tutnR!idY2HB%~*=yaylc6!eI8fP?EhD6bWvrITz1a>y}1M45s#(+BmJOE3$q0~8bzk~yV2 z#H?pu9x0MqT~q19Z0wo2I*kpkuZ7T#)L;KECFdy{U zE41s@Bhbhma;RACNY|+=sok40y|2e(nCmZg=$7j9Tn3E6Y1%pE+2p5u5m|LtN<*w5)DhT>$&1Vt6Kos1CgchC*opvZ8ioDIDpCBm%A$DjJZ?kW(l7bq zkBa&87jKcTJpMCSo@?XWWXqT0ZShQ#zQN&=dPLs0WaN(o$zG{GuiRf(m`hytuGJsN zjyoWoshM!X#jmU|&RO3HBEE#~E#-za+_z}qBun^}k0s&aGUMYWP}880A-$w~R+`R* z)C;_$hMPwXT^uD^V11BUK)@v>p`js(aA+8ir87u*-Fh^ep8e`VJlvaO#qrKmuk+rh z)lzBJoQp5=0!g3galH8SoFfYUKp1D6Ca62Fg!#rKyf=oIHg3-I$F$V3!ZdU03%)+n zpm(12e1yy|SOe;2AEf%gtv=@iX&6i>-h9oNrQhH<1MX^%qDRKSL{u;Z7IbSo#05RU zZS4`b5=9epQr1lnHh3cBN7YTD)Un7RD~iT}4Eb-G26}|wsLF@9AHc`mjQ6>gLDrn+*&wJ?d^9xDz>UN5?kt3!uG5be+ zH7uW7rwtzWrRx02dM(W6^DI=bLsgDCHdWuU;3G%J`$w*SJRQB6nUhK1z zCQYW2T(`vCQ>cg9r#Hj$z68Ff?sL4gcPh^eA8^Xgql$EkjcguZrDNF6l}~stqtGa< z7EEi%Ncb4XN3V6WbCgu$!j=58g(KR(^!%wpnhz*pwYfhj{_BiAVtAhTz^Z(jLwd0k zlQlQb*kU8UA^Oh`6C&&H?b#L=6zW<7>UXX2XXuzXv@d1-weX3wHVco@%j2FKziomG z5?miQ9v$}i&G9A*GzLp`iQ5xHw->5Js%u_h%LN6??A3A1-_LlVIx;m6bKEV194FXH zpF3%R2AL8%Hj4&o1C8!zbCgm=FoBDw$sVB)?^|cvZ||H6PY2H(D9A{P@^`g!@-g{< zd|^cl(lG0~{k)(j>)Gc=%T6gafFr?v4i^Rl&6!Tjjgg9QoT&8^@*)DwTz8H?l1t&J z?Xfc*2Y0EaD!60iZ~o;SJclXv`e)!2$FI9L78v zp487%w_IC?&(3DXYV+)&4D2z|zsThq@G<&y?8{6nYU*_t6biQkd7x4KBZ-bQ7+syl{ z-j#s;vq&&1jYu5vR2Lmeaw-L&zeA5r{G!F$#>H{J!yZVOj7;mIYl8C_ov$!&cRb*+Bu!wpxlkda4>36+Jaq_Lt*a!NW=p4Ny#*B)=3B@HC z4W15lia7N%jYHALD=eO_=M=@iGPvfsl0EFo8`f_6$;MoL$?O|RE4fcZ515hC*fB_kzN+4rx{<#qO?!_SD_hz5PZy$KnZ8M6+)JEeH6ecSh zAjm8gLF-~ADr8dQTP5)Sg`RnzZ;>ZpQ=N#iM?4oG%Dnk1m>u+G;l#v*A_5IVBkgA7 zlEmEJcS#LBqyw*hTceo==g}LMs=Uo^QOf>Lx51=IbzRWVz}aOxPFn=~r`n={eGCiU z^*+yK%fD08Je5kr94lIGX);0HpTB(bg#i}%<~*knZ>(>8xZ|C;l6Su}e_tQsyeM(3T;>7hiSBt&t^B>^rj;kWQxe-)MCSKdCw(q<%s9L&-S0}#>+Rh=yRvsGZn*egm5uajcfW0E# z)AOrTE5*hm+3=|GO@g?0_oEh1774@aF^$$^1o!lQ2M4{|kgu2{g9Y9?4d-&yUfrd_PKLr46n{;pW} zO+pvycti>01|p(ctv`JrsWAW*KN|N2j6_w+;>!D`#(No^%#a`hgOVh}RsKSf?iNwI z9P$H|O^Y?6G(O$W$1ay}11n2(#GCTl=Xie}W<8F&5x1mi*NqZ(x%S2W9rIbvqVl#f z29cEsBMvQ6JW7`~?_B~3uj<6YP6A&o=oLsi_O>HbHc)yxjKC4P>kSvNT@U~O9(N^K zDeayaE?}AbPm9cbX;YKngx6!zcVD=vt=pOwgRz1&R7Gt+MA;e!2^hzm)zz2IjaPAA z&2v*3hb^$U^W)Ig!NQT*(0(yjvngsVT$jKb+sF}7<&8+8*#?Yf$CzgOmF{5*X66Re zTXl)+c26>)!Gj`kpOTi-^Nx|fsWu;9*wN4py}q@zGKp1~4Lyj1fkjXx^bBP-YRKP) zDA*#Ozj4S2EPU#Q=(SU=T!5@xt@3_JI}z^L1G(gsrBs)KxS18jVW1_ZlDdO-kHOH81rN#BQz{a7`--KKoaRj+RIO4 z7I0xMOt@;W+2M;ji2Af|vF7wFL3w$Ljp@7HcE+_A@d z2putBsIm`nWsul-Dr4w0HIkMawuPMxoT4JhIGW6f)W^KTH*M&6U3{@dIz|B_E}XX;--Ft5ydL8W zn!~lbF<^*xLujN-h&CDmWEaZWX*>2J_UbZtcAE~JwtQjUIyJv_W*2>o9ed~2Z&dI} z+-%I$4|(nCX9v9AA6uW54p~rKn> z`0m)F*N5R_KxSWn{>wG1@>8lJ_|Lm!?$&yaPMc?+%)abu@@92gZah&t?2sH)5UV#k zej#5}WM-3&)EOE_d*Cy8{Ir=S?1farO2F84W&RF}1eR50@0rh=)P=_Lign)3brS~j zOZ8Ne#2i6S=gCkoJZ3XIB3ze#i)6GRmz$?rEhHzSLoHiMWT_-8yhSQboic$I8`Y8W z(VmHv1b<)vrAaYq70nVuqkDwTTZ@4}7(EQKKK+>eD$-ZL%{kzLY(b%BmuP7p%U|LOF2Wbozd~qYf zG8&rk`)D2k{k#*FiD0|9Ze9xptKJ`7as7{3ts&gf8i-ueoADoN*=1kX<~0_~-|WB7 z=y2}FyRSL!7{@54X_l6|FWmR|Ta1Gj@)~g4;Bt?aGZl4uci#ECkNty}-(!QfJw#4O zhB(5-J%)->)f&H_H|ao!OANJ&Xe#LRdA|NEQz}CJZ%*SLqeK{9QaLX&KugLTnh_6= z!L`(zMi+BE3$d(Qe<888c^S=Pk22kb0%rn>;|x!j58j9U@7R@ZJXEC{v*z+8dC~EM zAG7iKHPt!_M!fzyn_@p&eYaYYb}pQLJE;w8)R#9!TDx6pe##{GYr#j!uRDyy!+GKd z?reakf;_KQK3$J=A4@^`KwkFM7B-$~$$xK~7Hkdq zKGcoD6}n`(stSs*JGtPebU><$N1bJ4ALk$-Y{Oima#(cxQ{ujimojBMLS%TH(2xC0 zL;WZ`hHi{Q->s*{*`T>-r(}U#vRnLziRxQsMXb{aDt(_H913kO*0Q_^kR&r8`Xd?7 ze=V}xc&I4;_ed=PAqOpLiQ%st#FB%id8;Y8eV(;ILK0?}r4*5dkd7Ws`5RC>Zw6g^ zwLB`y#b!k(OC@qe_Rm+igVRD=P#h-8w;0@fCfD4IuWBztKIAD4 zb!jAtPtXJ-zwdvG_xG?R!GnCC@9roz$F_8zl6(nDSGiUzzqKFupxC*H>^V3`)i6`G zC21ZhIs0D9eKy7HYz9+%Si4D{_2ts@N1XpF!n20_7L4L~3b~_91E`G|%u8%TPX!j2 z=9e5gnPj31i9!por)h0kXv=IccD};Me^$NW!DWUi=QMmi6lFHHzonBgH0skb{3jBr z>AK;4q(11Os?2PjpGLy&xj4-bs-F}!e>!GRH=M9Y6}XfVIUXrQDjl0qCyxXtHK@c_ zAyM+izgGR*{=$k#7svoI3<@}Rc{hs>MZb47cxPPS1ZN&9!Nsk?Vl7qE(V>_wc~dGA zeS0;ae3+m+t{DFkH``#$zwp#fnVWeKHKnhFu*Q0oXRyH-wXPpAdZoU1jnVD;gB;8S zJLCjq-kP+phxk7BZYpkH@NYRH3tQM^YAku-n8awo5RyD87ij_2i){L*+go1gpDDjS z@d|g;+-UJh8lOly1$G#2+#mUr@Iw3dbY&#)@` z;kMRi4tZ(Gr}ijs(Ds(-540?syt_rPpXf;@VHxFY`EFNc1zkZHJ1y3pZp*-QnV%^@ z5lAN^NZ!ScyV!k4`d<+{@CEai{38ScIv`oe7Y)W0-~DNU=9=TX^WH*w{^VkHf$_zT znHkD(2^wgk4pS#Z36?JZHgd3fF^$hH*JNPvThg3AqH zq76;6N5~+S_PX4s<1woJ?ejqJmIK(9#TUdQaJ?Qvcc|^GrGWJua&-8G`h-N7Wvq=1 z6R$+H9U+UZ>suel9ocyn05dS1vXdF3oj&n$2gfRN)vR-IU#K$>q+E={G%ysuZs{ION|zRUjD zbAgq4Ew1b=TiUDl7itx_uxoTG~d(>Jn{c7wU$lvEu!I=M{$!$3zuYk}HfFDmrFbzc=e=giCe1r}0TlR7FiHlNiDFLlOwt zY{hlY__qFVw5>*AntrR>Lx7_r2n|Ddn7Rs(P|K{*bLJb#tO(9nr^G(}y;m4GrOrzk zu(#Rbd|5Xm1B$O-PGaUz&DRY&*KFkM9kyS-7A{K{Zl2svpxmpa!N>cYVe43q+Z=*k z$+fz`Rz@Lf04aiF$XJ9aK6%BFM7X2@uxUgx&;;hd(vp5xPoc+-OpKF+?pdd)6ivrG z2@IsH94jbsX4_OI?NSEF%eZg}WKqnK{T!8Xz;vpvV2rgwEvlzM4A#XC4nsC#-f7E5 ze}qKA+~02T+da{hKeJ64pWs`7nz>@wYe=?#v=L!fo>u4j8-Qbl>lxkPzn|qnYXHZW zH+L2DJEgqla6Owt@lEzipN5$#xq3evI{kx{r$pB>+iWoLoBXORUcF{BpzIb?6OVZX z3AV}j!sSGa(HWX*%vzta4aFcVrmvCD47Qr_Y-diW?bM2jQ6FaTSMmjt8oj^dgBL~3u`zo$C}Lw8}gLwy|b z2frvDeN!Pm&Z*f*LX|_+F_9rGEL8pxm8|_?$YnUt$e|8cOGFg4K=mxJB|e{KfY4Q3i!hQW41^+BOIcTNJ<~F7RI%l9 z!nRHR=j!4LtcSWyER~BpS3U^0PyuKU?i_^9V+pJXH(zj(P|P6^JMW7(~@H_|&{+Gg5Kpda;lOTI`mPsiH|160EH2a zK@4PVIrMz(CwW*|NR0$ zxT3LAo-5}zzgztBAn@mwWJUE*23`(nOR+YtpSoi>cXEqM!mr&FXX*bPJ>NnZniQ3K zA|6pqfuSw5P$j@T$_DvY#bDsEx%; zYFw^o?6g+XBqX@@?G9{q&c?AHR)u9wn#jIwWxUTmE>(TBgL;lope3@;+GMJIC?@Ty zbCy0X_7_zOFwr4oe2MUs)5js_LFOTh3Z2?^Y`E`VKf2svyxXCCTre{xoW2dr%fE}I z){HMMEqx{wA1cx%jr?<@yv&`2r^1bEM$lM%Pw^#}%9ayp9>W4i-&=RSqAK{zfm`WW|Eqh8H|Q|$j| z-hNHo@bDpX8QNVL5Q_!QX}BNF_a9YKJ)U1VAinbZ8d*xaoJ-oB{Xtq0!DTpkZG zPK`Y-(uRY@A8a??7{^0)hGQIvPAPc{uy%(d>sv1C(rp_IPP~te&V>(>J}NlpfjSrw zFuUo|zDYO&3M?wFRzUuoma2*AZ@=T&0(cNLl3)}KJvYiw8#KB|ocR!PGRP}-M)<5P3v;Ci(A4>YL}LM zs1PklwvZt@HmoZ~8eZ18BJ2Ba4bleweReJ6an(nQ?wNs2N9n5&%{u7k%S|vTS49J z4n=;1V8sB}zdMkMG3KA9^YVj5B;zMx#xAqv-TZPA6NgS`9p{cTJUh- zqPs)47oBJF&M@l}ZyX75N1i{W`L~}!04vyqd52Oo&Q=QiUY0PvR+nhK$oj5ea{rhQ zWlwtwqA3&3Y|dsKg^2(vyVUkDXW%FeJCJ-|{2=#wjl{eQT={XCbJ>icD{rDDC^r4x zIYM-QdRAeHp)^}Pd$)^_Sz*q-@A&1D=N3~aZkM!iVYnu4NSDyj>#CT%@fHk}NhfnM z_Y7ilM5EEnKYu>aFIIfNx+lMh%TMVjpSa$$TR(LCw;Esq;QC&U&lb=81<6rgrvLE} zt%7R0hk(hV%Wba`GD9;;dutS){Fq(-G#TLV=zHMSUOh^8({I3Br7 ziDl49nEU)05$@`EcHGxJS@Z>G$$9earLPnMnl_J42upYJ6b1{cW*JTr5)P3L zcZ1>bLP!kzbgqy=l4WqZ+7t7&85L_Xq=6A21+&DrP2Vn4G|4jFoqWN z{m0jcQKKULS?RH+t={eQ-CD{>J_N%tk$_P=var@?axx2D&%W8N1o+zCtu2>4$utR% zDoG^U1leUqu<*%;bgGWQ$?cAda`rECdH_wa61BiKxusT0>0fXX_Mc}YBPXDV$hAz$ zDJVxyc(hCrcISJVdH<_jeMRK?qU61q0>EMV$%VnatzL46uAyLP^JVLFBNN`(fOk;OpoAl z-)`$5yYnJ+(BFJ6D|3sc>~cc~2@)j<;@!W4CKv0W^~mbcM+l(E5E%0+5(6R`CYmwU zTdPyz!>bX(&Z~iwdP|)<=x+p9!s*)lv4r@B9ZBt>8r(+tPjqh?u*>w6bsM|!R@Jgy zZ;(=Fik?T{^fAF;)ThI}yiBB#pPt#w4P|T~2x1ymVQm;q=`wb16g0U8eP!4=@P;E8 z3l%b`VABL2LpI3#ejNX6um&*Q1AQ+H!vE%2P0qtQdT1AmcU=pAPm;7E#UhB86xL-kF`lV`Z6 zP9+GBE&uz#Xb+BVbqM?F9-a*j4|X}m6x(kGo=E=D6h1*v%*JV4V#g%iTod~bkVXJ> z6#}f1Z!&;z>B03ES^opU@xOYc{_}*?iifH%fhda9;IEKxQ90%aVY!74K4=%*fyd!) z_k(Vf_op8^wlM>-(?a2BKhZ1!6ybQx`j0N&SIQOiyllIweZfVMz}ZBOiuI}>SzudSWH7l z0IPg`6gaG8`0G+>1LD!#dqi^U=NyNn#qMKb8hbuUy(h#m$I2oNS-RM%lDN&ExF7$% zYkNz|Cri}8AZ*Psp~Jok6;_bM=95xkG5l1=0#pz8LAV7^(!z?~0+DXIt|BH%)$*;o z-|$xB0)4TQ|UEs686U-g!Oq$a-c!TSMVp6w?S0OZ{eC^t?mk#=1K zRd?ycig*89pm%@W8TE|L2f;UE)QFNK(@WFN49Y2NNnKDETqYf$KsneL(ks8}K-;ym zk0#cR)GQMu?=OOgR;@pZ!=N?(x?jYiIQWe<$KKQe$-a@wQ?;e@0^XP6uc&JmoZ!&n zZY@X`tVs8eH6A%5gd!@QG>2~R-#m!U4nl}(*C=!@WfmT1qS@cHU5Q1K0_R73`XAiY zt@?@Ywrky%FAo&PZeN_$;UEVm+bAY*&vVBJp@zI=*G0x~kClrUPEJ(6jozj2qG-=4 zN&sGNRnl^#1|p2*!3xI|EtH&fiwX%~D4&0lX4I9}^rN>@zB&_kOM7eJy-~1=5--Io zq>sqJMG)79*&vDBN5lp{h71fNi~JqR)c+ka7L{b3$ZiRtSM%x=9g?ppAk}FIawz>L z-nWQZ&A+xLOoJ9*qU`KKOiiYd_~mNH1`PN0l;tOIm z1a;6)k3(9Z0+CqZ%Wr*#e@|zD^q-}K&z!ef^Nc$U=+cM+uz~o{61mqD=H%pFD8Th&%uN!|1;XkMg&qH9F+iFjN*J~DS~`fdY(H>lC+mV4FGda zx7rJ1fwyPLo}an;sQ1?S+l>T>sM>FxR*q|@h|M)0{ic*sMKgrGr$!6Lf(FOFSAO-L zjlA`u1BxF z_kRY69DO0Cc+nj_;g8#x`pnv0GOnTVOv>D5nt6XbSGH(1Ouor1;RSVJ*|QFZl+6eaG@wctIT(164PF z8qIDj#!d2449c;C$;k+dGU|$Dk(zDp`k&*OKgU2+Q>y-i1MUr&1tub^OVZCHOw7Co z0^JtK)5oNPOeE!$+}TAjY1}_gRAV$7tD(700Q%%e^w&1lt8s!BDB#TU0>ar`F*n;bPHWbC%Pp;@SLZF zN&*Lw+_?k1h-&eo#gOJF8q8Rov)$Zuh%nM=c#D)hLfxFM>Ayis#t)iY>OwWi&>N?~ z`>E)l%LXIed)w1CMvWkB6r5D4>FBYX39VVK@aYe$4BDfH-59iR99CA+L7byp6*z{J zA~KSvH$78{r+Xd>vwqk2cr-i)h5aet;Aq{6W?I~W*=0z4Vr=u-G>$oOhhd-sDbOps z9M$Jg;K@nNq_jlCT*rfs$mAGW;jg7K!sd(wWzvMO7H~m1D3-A5cq{)PeaSG8XrW2}Z(7$#0H^h_2$`u>18DicY86>$ z%kNLDLFcRNh+CKP9fdor<)jG8S&FLDVQ2wyeKlz0F(ITZ8mG@W=8GLt$sa4=5ZNGK z@)_D7F*CpOP3J&Y4jHy+WqLaEiS=OFOr6MlQ*)72$u)W2O#O{6E;I8zJ!waYHIN{! zlopkQ;GwHEs5?Y$SKPxKj~Ee#UN}p@^JB=+u~d^Dfus;Mwj8xx%*pZOjqo+w!u99K ztTw-ZDriH6X8KRUq`$L$JkG<)6cfP`_9cw48RdiIS+U>Gbcy@#-sd+L=bjTIcM9A^ z5D1$i(E?7At!PR}W@6~EwcaWLSHUkL6D>Cao7t~y<=>;z6@<_bzYovO9Wje}I0-m; zD9ewzJ#}(4Pp7_Uar8KdYhdg$SeS6nb&J%Q{8=Ihxvp}=M(QEQd)}0VKs#S+*CUK? zGk#4TZPg&3gp9)UK|{cKx)vT4%i@bUf>n-9{W8>;39&(#WdDFnzna#?@1n8F_XMKg zCYNpt1F*kE`nOkn{5N@kRrT;~`O05*5rzx);AM2P>|m7N?bZnf?&;mXI+3|=6)`iI z{-BG&MNRd4GB<{Yw;r(O32*v^fF|B8jbRfJf-H}0PR#@(u&evMwfa?ZgkFa2pg1@m z?~+VDJLQj0DZ0A?8g5Ay^2RkzhoCbnLwqm~^ERb!gr!D#B}AVO+B2=Tx% zckBmPxm3JFzmGPVkESHQp6>)wM_rvp(b(Yd>292a#QKPS4O<&p>oBaETBlFcPUJig z;SD%Qu?&%m{hTtH;=k)QugB{iJw;$@fCLbZFiuiJb5~GtPlUVe!B6_{Bq9YeG3HM zSIv`fOt~seLucd62hb8YCoNA5CTU)Kvb zU4^RVKx*Ro^)I6b1HC_2Rb8LrH;KusV^8bl*#TfBSO~Icyfj#NQws&w^g}<)2-1ad zgsZCDi5j4EDvmrAswElq8R3aN+nq<6S9EB_s_D#a`F;QWvUP?w z-GE7vcQ$cJRF}R?UJ@ILNd`)1H>|(#g@xX8OjY%uLqjWJfbaM@rtmaooxD=aIO04rCE9N?gyhl_ie;ZgM+LY{~WGZ8rC;o8J6B`HjpZll?a|B z;>j$Cayco|$W`jlm2B3QRS+rLiWncf5IQE@)i#31LbrdgJk!CCsB%u0`jJ90ZwnX_ zd9%<9WDGxreBlbxD<;LWwSbfMX>@U;+Z0d6?@k(ER@=Y*d@khMnQtm$w_-Y-LfHPD z?UCYcRz(P#UNs`Y2n;)JF(e6*^)Jw|2%rJ+EGbraz0b#UeabUY*Zyx9iprKB;m9Pa zx}$tigLD<0oiT%Q!WfQ&qbBK8q&rd1R-+AB)LN2|fvO9AV#O=kDMydLq{H_TYdO-P!KLTbKg z(9*kvs>jJykEA#jqEvh3$)xnhRty>%($i$85z z+kV6!JX*kA9Fq>9{5_VZ;%Ebdv-f@s_+&4@WL5Tbitkk&7sSB8EiK{iG#FnEuJqs{ zB|p?Y9kSi|=R!@$X6rNYv38)Wm(eTiNq(ub%{@W;+ra+$`N)6Qp0g-^FR zzWWW2SIxibycG;O_8;RP@|@G&1&vC+SLmpqN7!UFAvBPys?Tsf_=J(LqW`x)%#O4t7Uuc{Lc0=|NP0t5>>YAlbIa{=oVt)BWkx0WVKPK zx@F`MJus64rAJ99EyW2-i*DwdOlp?2+k6cd$+3aj@f&RQ^&GikmlF&DJk?0=@qKIa zQuu!cGzNJz`s@iC9elFhMtm{! z_Bdgi()WeCTrT3QA-$8QE^Ro5e*1l$&zvcZB(R%Cdd>hHRtepQ)bEGJ-x&`_l_fDQ&6mMWTq_)zm;ZRZ*unj4p=~J;Rq_6zpk6E3(t9J^_8d_0azubgTHFZTsgIG`sEcJ zWzRogkwq-l*ZhWZU4$mDAxfk@PgRsSd51pY6=K$~b{i_Ue1`nWz}n&~o3dQpS^LyCC7at39gwv)f^bj@#YEBeR>^%TX#b=WK-_ z!jJu1``6x#5MzN8xRcS`TDRYM*4@wJNOf%Si$A+XR8)ai3-49}E-y}21_s~$2#ghq zI%T~5{^f`B7txgPQeCmxBC7@0yjWbYOs>vrUkP3Qyz}B3u=s{cVB~y?xIAfo@{Y`( z(BjE6&lgR!$NrmV&qZAj+isXgzvEc|fcrTTR~x^W<%hT>Ur`Z}tGVOJ>_&+;pI0|G zJC_n~1AXs)UmlmO=g%oHroWr=X?g9jXzKQ@@bt4#+O<`#7?^3jomh`+zj#rL&P)JJz;B!vC{T+BtPOFZ$vy1R`;wRv+R&OYGZ z7;)CW{0;)ZXdzIy&uzwpE=X! z;>o;ztoam*+aS-bS(v-;@aK<5xnq(8#s17)mdq&p)xN6T_f|vzAVoL#!TeT#F`Jk+ zde_{}as6Gb_3n@TREOI2BI*0~MWUh;^lhcV_Hl(75k?Oa%3a(|x~pm=_gL{G$u{R3 zKi4Ha01=4K0wS6m43-_#mUI?d-J6a~21P4WDMtART8Y((`%|2h8%|%fS8Xonl`)<0 zw`>=Q47zSsU;3Y1B69)2YjpGG%v?>-JIB4 zT_O!7&Sw!w0AL)y%U$#&V~eO^f7Tr=zwrw1_vVq_-sI@_@Qx|&sltHJl+5sT`0}!z&EU|a-)XLg%k4ZSH`gdDbGy98xLt*kV7sIP5k{>RjUJtM)uV$e8bxk*{OrV!ny~Ny zKt=cd;1O_tU0B*ysyS#A(rg|+*KtGSMpVrpfe3UZgBD1y*I;W_ z`P~H2=%RS{S$2Iki1nw+<&% zUURtp!2y5`8u%JE)|`L;`1zi}rYXj%@8OPT|5J{4pFkU@k2dc%`Se`uFnOiPWE{K6 zFWYnN?&JB)003Asz}GlTxPAQUO2YTB6mD)F>%G_gcsN>ezutuc!0!64)+tTuDYbENZ(RH1SGNL;Sc~&%>8~x006+RLws=F1PWmP`A`b9 zA0R#iKmh<4G6V_$k{A!&3@1PWO#@&?GY9``;dFuj|L+C=x0U|?GL1Vd41ZyE&RMB@ z(C}n!^p$K?RRI?8JsJRsbO4aRcc4WBkHJ3xK+J(W7%}(>_*o9Z-?PX-4&vYU2=Iq5 z8gV`H0$=E#%jrM2ws>wMV&!QAz5qO2JY4KtyzE^3+FU#$+yWvzysTVYB3xV;i6Y<< z^#8iR#m(Bm_SOIQ1%4AD%ismL4|lNfaj+GUadUR_eCBRpWdm?ON=HxvPvZSMDF=Q- z-PYF2<~hJ4@Qf_a20Tmp@2rM{kBzgwtb>cq|FgW}%=|nCLn8|Vp2O=N0ToH0DvCrX XGBYvQC08^HsD{DQ)z4*}Q$iB}KfHCA From 4e2288a54f2cedfba84a4835493b5a1e2ba1c1c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 11:08:47 -0800 Subject: [PATCH 0128/2686] Run update.sh --- bash/README.md | 2 +- caddy/README.md | 2 +- docker/README.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bash/README.md b/bash/README.md index 6a2c490af3ca..96f841878656 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230227`, `devel`, `devel-20230227-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ccce08ebe3c7fdddf9cca5bc3963a62222d570f9/devel/Dockerfile) +- [`devel-20230306`, `devel`, `devel-20230306-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/981264b4f0246c3fc6279f03d3a37b055d7b9cbf/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/caddy/README.md b/caddy/README.md index 31980731f694..b3ebd745913f 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -68,7 +68,7 @@ WARNING: - **Source of this description**: [docs repo's `caddy/` directory](https://github.com/docker-library/docs/tree/master/caddy) ([history](https://github.com/docker-library/docs/commits/master/caddy)) -![logo](https://raw.githubusercontent.com/docker-library/docs/175a99d9d009afb887a921e35bfa892a01d7be77/caddy/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/7f3881a28c29ed29bb1a38681b95bd785a8a6da5/caddy/logo.png) # What is Caddy? diff --git a/docker/README.md b/docker/README.md index 25fc60628c77..c4aa63b4bae2 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/50d102385f2d5198a043317f63abb8ac7f9347c9/23.0/cli/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/06e0b8a8b836ee66175685592bcadfe149c92896/23.0/cli/Dockerfile) - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/8a0590b0033d0922237ea0937a0ed4b112e01b29/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/20.10/dind/Dockerfile) -- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/dind-rootless/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/36100cd12d15c411b097727a2a84a09c656d2d24/20.10/cli/Dockerfile) +- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) +- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) - [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) From 19832e523149f80c02643473a743e6e2e31649e7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 12:08:36 -0800 Subject: [PATCH 0129/2686] Run update.sh --- httpd/README.md | 4 ++-- rabbitmq/README.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index 6721abd61911..c9d852b28927 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.55`, `2.4`, `2`, `latest`, `2.4.55-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/8bee4e1d12ad36ee34a40ae82746bc04a858e220/2.4/Dockerfile) -- [`2.4.55-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.55-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/8bee4e1d12ad36ee34a40ae82746bc04a858e220/2.4/alpine/Dockerfile) +- [`2.4.56`, `2.4`, `2`, `latest`, `2.4.56-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/91b7aa1f6c74ea2cae12a6cd6d02b03cf0c17db5/2.4/Dockerfile) +- [`2.4.56-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.56-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/91b7aa1f6c74ea2cae12a6cd6d02b03cf0c17db5/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c27770aec2df..cad283535fdf 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.12.0-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) - [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/ubuntu/Dockerfile) - [`3.11.10-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) - [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/alpine/Dockerfile) From 73b23d736d477441af92f9ee49e0acaaa974f475 Mon Sep 17 00:00:00 2001 From: Robin van Boven <497556+Beanow@users.noreply.github.com> Date: Tue, 7 Mar 2023 12:51:12 +0100 Subject: [PATCH 0130/2686] Add permission detail influxdb readme Just spent the better part of two hours finding this little detail out the hard way :] --- influxdb/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb/content.md b/influxdb/content.md index 58e1917eb41c..985493946e92 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -178,7 +178,7 @@ Once an InfluxDB instance has completed initial setup, its APIs will unlock. See ### Custom Initialization Scripts -The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh` and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. +The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh`, must have execute file permissions (`chmod +x `) and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. As a convenience for script-writers, the image will export a number of variables into the environment before executing any scripts: From 6725ab3a114ad2b995bbf137acfe1946e49b5449 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 13:16:51 -0800 Subject: [PATCH 0131/2686] Run update.sh --- influxdb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb/README.md b/influxdb/README.md index 38020d754985..e96e2d752dff 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -244,7 +244,7 @@ Once an InfluxDB instance has completed initial setup, its APIs will unlock. See ### Custom Initialization Scripts -The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh` and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. +The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh`, must have execute file permissions (`chmod +x `) and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. As a convenience for script-writers, the image will export a number of variables into the environment before executing any scripts: From 51a370e7c3468339a685e151595f702737559cea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 16:16:26 -0800 Subject: [PATCH 0132/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index aaebe7530213..48fb8bb96454 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.20.1-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/bullseye/Dockerfile) -- [`1.20.1-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/buster/Dockerfile) -- [`1.20.1-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.1-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.17/Dockerfile) -- [`1.20.1-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/alpine3.16/Dockerfile) -- [`1.20.1-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.1-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.1-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.1-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.6-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/bullseye/Dockerfile) -- [`1.19.6-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/buster/Dockerfile) -- [`1.19.6-alpine3.17`, `1.19-alpine3.17`, `1.19.6-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/alpine3.17/Dockerfile) -- [`1.19.6-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/alpine3.16/Dockerfile) -- [`1.19.6-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.6-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.6-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.6-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.2-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/bullseye/Dockerfile) +- [`1.20.2-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/buster/Dockerfile) +- [`1.20.2-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.2-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/alpine3.17/Dockerfile) +- [`1.20.2-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/alpine3.16/Dockerfile) +- [`1.20.2-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.2-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.2-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.2-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.7-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/bullseye/Dockerfile) +- [`1.19.7-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/buster/Dockerfile) +- [`1.19.7-alpine3.17`, `1.19-alpine3.17`, `1.19.7-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/alpine3.17/Dockerfile) +- [`1.19.7-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/alpine3.16/Dockerfile) +- [`1.19.7-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.7-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.7-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.7-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20.1`, `1.20`, `1`, `latest`: - - [`1.20.1-bullseye`](https://github.com/docker-library/golang/blob/8b4411e7f38f2505c4fd3fd0aa579481c2aa85b2/1.20/bullseye/Dockerfile) - - [`1.20.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.1-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.1-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/067ba62265c51b96ca29de9faf37b831ad90da2a/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.6`, `1.19`: - - [`1.19.6-bullseye`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/bullseye/Dockerfile) - - [`1.19.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.6-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.6-nanoserver`, `1.19-nanoserver`: - - [`1.19.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/076ce38f04eada5a57ebd716345481669e9d8283/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.2`, `1.20`, `1`, `latest`: + - [`1.20.2-bullseye`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/bullseye/Dockerfile) + - [`1.20.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.2-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.2-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.7`, `1.19`: + - [`1.19.7-bullseye`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/bullseye/Dockerfile) + - [`1.19.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.7-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.7-nanoserver`, `1.19-nanoserver`: + - [`1.19.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 0d275b64b7dca7ca1e8ca39c18522d654ea6cfc2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 17:08:36 -0800 Subject: [PATCH 0133/2686] Run update.sh --- couchbase/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index 8b9fa2ecbc85..8c2f5e8ac21d 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.1.3`, `enterprise-7.1.3`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/ae715392f6a8bff71ce2e5e99d62492d19c85dd2/enterprise/couchbase-server/7.1.3/Dockerfile) +- [`7.1.4`, `enterprise-7.1.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/c497eda885d5b9869ad45d0432e3b382d6b328c1/enterprise/couchbase-server/7.1.4/Dockerfile) - [`community-7.1.1`, `community`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) From 90a7dbc45fc03a3d8fd0e2900a7c5442838f03c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Mar 2023 18:08:42 -0800 Subject: [PATCH 0134/2686] Run update.sh --- open-liberty/README.md | 54 ++++++++++++++++++------------------- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index 3009a22981c4..a7451b75c845 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/23.0.0.1/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/aa2d3369c9a08d25bf3044b3a17dbd26acfbea81/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index c344ec8aa44a..96ba8ba8d7a4 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/23.0.0.1/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/66658fe285d801518bc49791eca7bb1744fbaa87/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 1c7eb358d7c8effecd9523991a358f09910ad83a Mon Sep 17 00:00:00 2001 From: samugi Date: Wed, 8 Mar 2023 16:43:30 +0100 Subject: [PATCH 0135/2686] docs(kong): add read-only mode reference --- kong/content.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/kong/content.md b/kong/content.md index 20d92fb3759a..6fdb84b028a6 100644 --- a/kong/content.md +++ b/kong/content.md @@ -146,6 +146,29 @@ $ docker exec -it kong kong reload This will run the [`kong reload`](https://docs.konghq.com/latest/cli/#reload) command in your container. +# Running Kong in read-only mode + +Starting with version `3.2.0` of Kong it is possible to run the container in read-only mode. To do so, mount a Docker volume to the locations where Kong needs to write data. The default configuration requires write access to `/tmp` and to the prefix path, as provided by the following example: + +```shell +$ docker run --read-only -d --name kong \ + -v "$(pwd)/declarative:/kong/declarative/" \ + -v "$(pwd)/tmp_volume:/tmp" \ + -v "$(pwd)/prefix_volume:/var/run/kong" \ + -e "KONG_PREFIX=/var/run/kong" \ + -e "KONG_DATABASE=off" \ + -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ + -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ + -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ + -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ + -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ + -p 8000:8000 \ + -p 8443:8443 \ + -p 8001:8001 \ + -p 8444:8444 \ + %%IMAGE%% +``` + # Kubernetes Ingress Among the many deployment options [available](https://konghq.com/install), Kong also offers a [Kubernetes Ingress Controller](https://github.com/Kong/kubernetes-ingress-controller) ready to use in your K8s environment. From 0bc92249c0bb877b3c0034cca48c0e8d8fe38a60 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Mar 2023 11:17:12 -0800 Subject: [PATCH 0136/2686] Run update.sh --- dart/README.md | 4 ++-- node/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dart/README.md b/dart/README.md index 6892ba872e6b..a5aaae3d6a79 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.3-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.3`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c402039b78bdd101012632ce5d6e62e710bca663/stable/bullseye/Dockerfile) -- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c402039b78bdd101012632ce5d6e62e710bca663/beta/bullseye/Dockerfile) +- [`2.19.4-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.4`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a75015084022faa681ca05fc5f55a18b64fd37e8/stable/bullseye/Dockerfile) +- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a75015084022faa681ca05fc5f55a18b64fd37e8/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 13347e183ffb..2ab152abe75b 100644 --- a/node/README.md +++ b/node/README.md @@ -30,12 +30,12 @@ WARNING: - [`19-bullseye-slim`, `19-slim`, `19.7-bullseye-slim`, `19.7-slim`, `19.7.0-bullseye-slim`, `19.7.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/bullseye-slim/Dockerfile) - [`19-buster`, `19.7-buster`, `19.7.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster/Dockerfile) - [`19-buster-slim`, `19.7-buster-slim`, `19.7.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.14-alpine3.16`, `18.14.2-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.14-alpine`, `18.14-alpine3.17`, `18.14.2-alpine`, `18.14.2-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/alpine3.17/Dockerfile) -- [`18`, `18-bullseye`, `18.14`, `18.14-bullseye`, `18.14.2`, `18.14.2-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.14-bullseye-slim`, `18.14-slim`, `18.14.2-bullseye-slim`, `18.14.2-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.14-buster`, `18.14.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/buster/Dockerfile) -- [`18-buster-slim`, `18.14-buster-slim`, `18.14.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/18/buster-slim/Dockerfile) +- [`18-alpine3.16`, `18.15-alpine3.16`, `18.15.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.15-alpine`, `18.15-alpine3.17`, `18.15.0-alpine`, `18.15.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.17/Dockerfile) +- [`18`, `18-bullseye`, `18.15`, `18.15-bullseye`, `18.15.0`, `18.15.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18-slim`, `18.15-bullseye-slim`, `18.15-slim`, `18.15.0-bullseye-slim`, `18.15.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.15-buster`, `18.15.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster/Dockerfile) +- [`18-buster-slim`, `18.15-buster-slim`, `18.15.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster-slim/Dockerfile) - [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.16/Dockerfile) - [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.17/Dockerfile) - [`16-bullseye`, `16.19-bullseye`, `16.19.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye/Dockerfile) From 8f16438515b800112314a44adceaf349bde6e701 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Mar 2023 12:15:27 -0800 Subject: [PATCH 0137/2686] Run update.sh --- consul/README.md | 6 +++--- kong/README.md | 23 +++++++++++++++++++++++ oraclelinux/README.md | 12 ++++++------ orientdb/README.md | 4 ++-- 4 files changed, 34 insertions(+), 11 deletions(-) diff --git a/consul/README.md b/consul/README.md index d92d7a72a403..80262ef1734b 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,9 +28,9 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.0`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/5536496885820968b7a72b45cb599665156b6e0c/0.X/Dockerfile) -- [`1.14.4`, `1.14`](https://github.com/hashicorp/docker-consul/blob/c82013e7547a80e3f665a92c2e708a6e717aeaef/0.X/Dockerfile) -- [`1.13.6`, `1.13`](https://github.com/hashicorp/docker-consul/blob/763f155f091b9aac1015adc9f7a28818ee1eb3f0/0.X/Dockerfile) +- [`1.15.1`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/c75e9e601e63f206800256c38e413c4204f38e4e/0.X/Dockerfile) +- [`1.14.5`, `1.14`](https://github.com/hashicorp/docker-consul/blob/48c111f6adfc11377d7cef43e015555bda7719d1/0.X/Dockerfile) +- [`1.13.7`, `1.13`](https://github.com/hashicorp/docker-consul/blob/83ea602f6bb914e6a771c4708105ea16ef17f793/0.X/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index f4b0964d985a..b73265abf0e3 100644 --- a/kong/README.md +++ b/kong/README.md @@ -198,6 +198,29 @@ $ docker exec -it kong kong reload This will run the [`kong reload`](https://docs.konghq.com/latest/cli/#reload) command in your container. +# Running Kong in read-only mode + +Starting with version `3.2.0` of Kong it is possible to run the container in read-only mode. To do so, mount a Docker volume to the locations where Kong needs to write data. The default configuration requires write access to `/tmp` and to the prefix path, as provided by the following example: + +```shell +$ docker run --read-only -d --name kong \ + -v "$(pwd)/declarative:/kong/declarative/" \ + -v "$(pwd)/tmp_volume:/tmp" \ + -v "$(pwd)/prefix_volume:/var/run/kong" \ + -e "KONG_PREFIX=/var/run/kong" \ + -e "KONG_DATABASE=off" \ + -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ + -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ + -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ + -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ + -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ + -p 8000:8000 \ + -p 8443:8443 \ + -p 8001:8001 \ + -p 8444:8444 \ + kong +``` + # Kubernetes Ingress Among the many deployment options [available](https://konghq.com/install), Kong also offers a [Kubernetes Ingress Controller](https://github.com/Kong/kubernetes-ingress-controller) ready to use in your K8s environment. diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d550bbb257b4..1c8585251a2b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6f72069cb7ecd138d338e2fac8a0236f84e742fb/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 0bc9a023fc63..1fd4785ea556 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.16`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/16d976b040d235855d1bfd9da20f744fe17ef986/release/3.2.x/3.2.16/Dockerfile) -- [`3.2.16-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/16d976b040d235855d1bfd9da20f744fe17ef986/release/3.2.x/3.2.16-tp3/Dockerfile) +- [`3.2.17`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fe4c14570c0717649a8f5ab27238bf05ffe914ef/release/3.2.x/3.2.17/Dockerfile) +- [`3.2.17-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fe4c14570c0717649a8f5ab27238bf05ffe914ef/release/3.2.x/3.2.17-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From a19db20f2b3f1bc389d605f3e45b6b2269ae5371 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Mar 2023 13:17:06 -0800 Subject: [PATCH 0138/2686] Run update.sh --- jruby/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 84974d3f7194..644aa442b80c 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.1`, `9.4-jre`, `9.4-jre8`, `9.4.1-jre`, `9.4.1-jre8`, `9.4.1.0`, `9.4.1.0-jre`, `9.4.1.0-jre8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.1-jdk`, `9.4.1-jdk8`, `9.4.1.0-jdk`, `9.4.1.0-jdk8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.1-jre11`, `9.4.1.0-jre11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.1-jdk11`, `9.4.1.0-jdk11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.1-jdk17`, `9.4.1.0-jdk17`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.4/jdk17/Dockerfile) -- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/17cc4fa9e15f901cf235d977437112fa524baa57/9.3/jdk17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.2`, `9.4-jre`, `9.4-jre8`, `9.4.2-jre`, `9.4.2-jre8`, `9.4.2.0`, `9.4.2.0-jre`, `9.4.2.0-jre8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.2-jdk`, `9.4.2-jdk8`, `9.4.2.0-jdk`, `9.4.2.0-jdk8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.2-jre11`, `9.4.2.0-jre11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.2-jdk11`, `9.4.2.0-jdk11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.2-jdk17`, `9.4.2.0-jdk17`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk17/Dockerfile) +- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk17/Dockerfile) # Quick reference (cont.) From 30943ae6d5cf7625386c2b64f3c9bdb9bf1766a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Mar 2023 14:08:50 -0800 Subject: [PATCH 0139/2686] Run update.sh --- julia/README.md | 26 +++++++++++++------------- wordpress/README.md | 18 +++++++++--------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/julia/README.md b/julia/README.md index b687fc466f71..c3a84fb47165 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.0-beta4-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-beta4-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/buster/Dockerfile) -- [`1.9.0-beta4-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-beta4-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-beta4-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-beta4-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-beta4-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.9.0-rc1-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/bullseye/Dockerfile) +- [`1.9.0-rc1-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/buster/Dockerfile) +- [`1.9.0-rc1-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc1-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/alpine3.17/Dockerfile) +- [`1.9.0-rc1-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/alpine3.16/Dockerfile) +- [`1.9.0-rc1-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-rc1-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) - [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/buster/Dockerfile) - [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.17/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.9.0-beta4`, `1.9-rc`, `rc`: - - [`1.9.0-beta4-bullseye`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-beta4-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-beta4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b9669c0c6834aca8917040e3103d039e69b536a5/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc1`, `1.9-rc`, `rc`: + - [`1.9.0-rc1-bullseye`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/bullseye/Dockerfile) + - [`1.9.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc1-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.9.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) - `1.8.5`, `1.8`, `1`, `latest`: - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 7a9ce70ee4b6..af025ff98ce9 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-beta4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-beta4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-beta4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-beta4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-beta4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-beta4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-beta4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-beta4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-beta4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/62336b5e17566d2d5cb8f9b1b56614ff3d6da93f/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-beta5-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta5`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta5-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta5-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-beta5-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta5-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-beta5-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta5-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-beta5-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta5-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-beta5-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-beta5-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-beta5-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta5-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-beta5-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-beta5-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 1465162da28c02683802fa6524ccaa2a5e140b2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Mar 2023 15:08:35 -0800 Subject: [PATCH 0140/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- rabbitmq/README.md | 16 ++++++++-------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/python/README.md b/python/README.md index 54089ec60629..bc47f9f0a8f8 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0a5-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a5-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a5-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a5-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/buster/Dockerfile) -- [`3.12.0a5-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a5-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a5-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a5-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a5-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0a6-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a6-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/buster/Dockerfile) +- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a6-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a6-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a6-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a6-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) - [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/slim-bullseye/Dockerfile) - [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/buster/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.12.0a5`, `3.12-rc`: - - [`3.12.0a5-bullseye`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0a5-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/b987547e6b4d485163997795791017ee1e3b3155/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a6`, `3.12-rc`: + - [`3.12.0a6-bullseye`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a6-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.2`, `3.11`, `3`, `latest`: - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index cad283535fdf..17bc89d43177 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.12-rc/ubuntu/Dockerfile) - [`3.12.0-beta.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.12-rc/alpine/Dockerfile) - [`3.12.0-beta.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) -- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/ubuntu/Dockerfile) +- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.11/ubuntu/Dockerfile) - [`3.11.10-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/dde405ff543c4fa696f146f9b3bc70dcc73bf1f5/3.11/alpine/Dockerfile) +- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.11/alpine/Dockerfile) - [`3.11.10-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/d780bf9904b86f0d8e32a712421050f286c0f804/3.10/ubuntu/Dockerfile) +- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.10/ubuntu/Dockerfile) - [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/d780bf9904b86f0d8e32a712421050f286c0f804/3.10/alpine/Dockerfile) +- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.10/alpine/Dockerfile) - [`3.10.19-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/ubuntu/Dockerfile) +- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.9/ubuntu/Dockerfile) - [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/96b94da11728354a96fc1af0aadb2799ef0fd94f/3.9/alpine/Dockerfile) +- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.9/alpine/Dockerfile) - [`3.9.28-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From dd93298abb53a22da0c70046724283ab9ab57d9a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Mar 2023 14:17:09 -0800 Subject: [PATCH 0141/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- wordpress/README.md | 18 +++++++++--------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/rust/README.md b/rust/README.md index d828c73a6dc9..7cb109064648 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.67-buster`, `1.67.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/buster/Dockerfile) -- [`1-slim-buster`, `1.67-slim-buster`, `1.67.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.67-bullseye`, `1.67.1-bullseye`, `bullseye`, `1`, `1.67`, `1.67.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.67-slim-bullseye`, `1.67.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.67-slim`, `1.67.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.67-bookworm`, `1.67.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.67-slim-bookworm`, `1.67.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.67-alpine3.16`, `1.67.1-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.67-alpine3.17`, `1.67.1-alpine3.17`, `alpine3.17`, `1-alpine`, `1.67-alpine`, `1.67.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3b16a88aa18e7a20b0a4b4bd2bb6f538e6eefb9e/1.67.1/alpine3.17/Dockerfile) +- [`1-buster`, `1.68-buster`, `1.68.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/buster/Dockerfile) +- [`1-slim-buster`, `1.68-slim-buster`, `1.68.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.68-bullseye`, `1.68.0-bullseye`, `bullseye`, `1`, `1.68`, `1.68.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.68-bookworm`, `1.68.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/alpine3.17/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index af025ff98ce9..4d4043ff7939 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-beta5-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-beta5`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-beta5-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-beta5-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-beta5-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-beta5-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-beta5-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-beta5-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-beta5-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-beta5-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-beta5-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-beta5-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-beta5-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-beta5-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-beta5-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-beta5-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d0ae4f227e280f8ca6d372b918caa63a3af716c0/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 1a592dd8892fd5a6f3b1cb082f94408e7ba8b42b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Mar 2023 15:15:06 -0800 Subject: [PATCH 0142/2686] Run update.sh --- memcached/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index ed6c110e4979..3b5a0d0a00df 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.18`, `1.6`, `1`, `latest`, `1.6.18-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/32c314b7d14f704aa7596d748a3024043c6e9a7e/debian/Dockerfile) -- [`1.6.18-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.18-alpine3.17`, `1.6-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/memcached/blob/32c314b7d14f704aa7596d748a3024043c6e9a7e/alpine/Dockerfile) +- [`1.6.19`, `1.6`, `1`, `latest`, `1.6.19-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/68debf1bf876ac61f14fac76eabba9a3f8c718eb/debian/Dockerfile) +- [`1.6.19-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.19-alpine3.17`, `1.6-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/memcached/blob/68debf1bf876ac61f14fac76eabba9a3f8c718eb/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index c4120f9ea83f..a809a398efc6 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-12-jdk-oraclelinux8`, `21-ea-12-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-12-jdk-oracle`, `21-ea-12-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-12-jdk-oraclelinux7`, `21-ea-12-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-12-jdk-bullseye`, `21-ea-12-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/bullseye/Dockerfile) -- [`21-ea-12-jdk-slim-bullseye`, `21-ea-12-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-12-jdk-slim`, `21-ea-12-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-12-jdk-buster`, `21-ea-12-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/buster/Dockerfile) -- [`21-ea-12-jdk-slim-buster`, `21-ea-12-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/slim-buster/Dockerfile) -- [`21-ea-12-jdk-windowsservercore-ltsc2022`, `21-ea-12-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-12-jdk-windowsservercore-1809`, `21-ea-12-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-12-jdk-nanoserver-1809`, `21-ea-12-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-13-jdk-oraclelinux8`, `21-ea-13-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-13-jdk-oracle`, `21-ea-13-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-13-jdk-oraclelinux7`, `21-ea-13-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-13-jdk-bullseye`, `21-ea-13-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/bullseye/Dockerfile) +- [`21-ea-13-jdk-slim-bullseye`, `21-ea-13-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-13-jdk-slim`, `21-ea-13-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-13-jdk-buster`, `21-ea-13-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/buster/Dockerfile) +- [`21-ea-13-jdk-slim-buster`, `21-ea-13-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/slim-buster/Dockerfile) +- [`21-ea-13-jdk-windowsservercore-ltsc2022`, `21-ea-13-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-13-jdk-windowsservercore-1809`, `21-ea-13-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-13-jdk-nanoserver-1809`, `21-ea-13-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/nanoserver-1809/Dockerfile) - [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) - [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-12-jdk`, `21-ea-12`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-12-jdk-windowsservercore`, `21-ea-12-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-12-jdk-nanoserver`, `21-ea-12-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/64dec30c9bf68865c9ee214377b0b05e8ad10caf/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-13-jdk`, `21-ea-13`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-13-jdk-windowsservercore`, `21-ea-13-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-13-jdk-nanoserver`, `21-ea-13-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/nanoserver-1809/Dockerfile) - `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From 8e2592ec4f43f57c3b621eed3b0d2977e79f31f7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Mar 2023 17:08:37 -0800 Subject: [PATCH 0143/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8f5929b23a21..5ae7f6ccfa8f 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2`, `latest`, `2.0.20230221.0`](https://github.com/amazonlinux/container-images/blob/60c92e2e9b66ec80b777a50d475166089fc52616/Dockerfile) +- [`2`, `latest`, `2.0.20230307.0`](https://github.com/amazonlinux/container-images/blob/9d4c7e1fbf1426dd0c7f21141c20e605d8695a00/Dockerfile) - [`2.0.20230207.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/8b1a2649bc2e8cf24109954310ebe26b4566e4bd/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230221.0`](https://github.com/amazonlinux/container-images/blob/29d4697cda5572d121c93f86f130f2e1af6043c2/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230306.1`](https://github.com/amazonlinux/container-images/blob/dc3df0616bebef55e5890e320f62d2ef407c54d0/Dockerfile) - [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) -- [`2023`, `devel`, `2023.0.20230222.1`](https://github.com/amazonlinux/container-images/blob/1602eb68be60af0dded1f358e6b7fddae82d021c/Dockerfile) +- [`2023`, `devel`, `2023.0.20230308.0`](https://github.com/amazonlinux/container-images/blob/2cd2601351e5e7f0c7782751fee3da1f176668dc/Dockerfile) # Quick reference (cont.) From f2103e06c92788fd5bb24dd47deba2b80e37c9b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Mar 2023 11:08:46 -0800 Subject: [PATCH 0144/2686] Run update.sh --- odoo/README.md | 6 +++--- ros/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 43dcd797fea9..6bf39c08b526 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/14.0/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index ba4d3a813672..ef55a20e60b3 100644 --- a/ros/README.md +++ b/ros/README.md @@ -38,7 +38,7 @@ WARNING: - [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) - [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/foxy/ubuntu/focal/ros-core/Dockerfile) - [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) -- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/905056988fc38dea40dcb73518f813b71f4f4fd6/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) +- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/c40ef6e5116c88f44e9ef3694614c1e8a60725a0/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) From 41c2d78b7da0f9f0efcc6d17db79a73977ae13b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Mar 2023 12:08:37 -0800 Subject: [PATCH 0145/2686] Run update.sh --- emqx/README.md | 6 +++--- erlang/README.md | 30 +++++++++++++++--------------- rocket.chat/README.md | 9 ++++----- 3 files changed, 22 insertions(+), 23 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 96a64d3f8f11..f956bcf4545d 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/4.3/Dockerfile) -- [`4.4.14`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/4.4/Dockerfile) -- [`5.0.19`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/194c8de35500c5e08c0ec73a199f854356c50349/5.0/Dockerfile) +- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/4.3/Dockerfile) +- [`4.4.15`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/4.4/Dockerfile) +- [`5.0.20`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/5.0/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index d1e39aff65d1..80c7fbe30dfd 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0-rc1.0.0`, `26.0-rc1.0`, `26.0-rc1`, `26`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/Dockerfile) -- [`26.0-rc1.0.0-slim`, `26.0-rc1.0-slim`, `26.0-rc1-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/slim/Dockerfile) -- [`26.0-rc1.0.0-alpine`, `26.0-rc1.0-alpine`, `26.0-rc1-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/26/alpine/Dockerfile) -- [`25.2.3.0`, `25.2.3`, `25.2`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/Dockerfile) -- [`25.2.3.0-slim`, `25.2.3-slim`, `25.2-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/3e60071a7f14aefe202b602aec0893678d0a0069/25/slim/Dockerfile) -- [`25.2.3.0-alpine`, `25.2.3-alpine`, `25.2-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/36819926f9cfb9d2b52afe382ec5fcb4cd3d91b6/25/alpine/Dockerfile) -- [`24.3.4.7`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/Dockerfile) -- [`24.3.4.7-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/d5200b7de8a095532162d57c491effc760d919b4/24/slim/Dockerfile) -- [`24.3.4.7-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/36819926f9cfb9d2b52afe382ec5fcb4cd3d91b6/24/alpine/Dockerfile) -- [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/Dockerfile) -- [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/slim/Dockerfile) -- [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ba3db36fd4ce972f32c91d9043dc2acb5a07063f/23/alpine/Dockerfile) -- [`22.3.4.26`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/65d8b721f96b98d2daa032cd7431ff64d5e8154a/22/Dockerfile) -- [`22.3.4.26-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/65d8b721f96b98d2daa032cd7431ff64d5e8154a/22/slim/Dockerfile) -- [`22.3.4.26-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/65d8b721f96b98d2daa032cd7431ff64d5e8154a/22/alpine/Dockerfile) +- [`26.0-rc1.0.0`, `26.0-rc1.0`, `26.0-rc1`, `26`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/Dockerfile) +- [`26.0-rc1.0.0-slim`, `26.0-rc1.0-slim`, `26.0-rc1-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/slim/Dockerfile) +- [`26.0-rc1.0.0-alpine`, `26.0-rc1.0-alpine`, `26.0-rc1-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/alpine/Dockerfile) +- [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) +- [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) +- [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) +- [`24.3.4.9`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/Dockerfile) +- [`24.3.4.9-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/slim/Dockerfile) +- [`24.3.4.9-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/alpine/Dockerfile) +- [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/Dockerfile) +- [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/slim/Dockerfile) +- [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/alpine/Dockerfile) +- [`22.3.4.26`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/Dockerfile) +- [`22.3.4.26-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/slim/Dockerfile) +- [`22.3.4.26-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/alpine/Dockerfile) - [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) - [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) - [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c63e25f4da12..a401982aee5c 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,11 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0`, `5.4`, `5`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/dbb5e8eb972d7a32f28e7bdc0b03d0d3c6f58d60/5.4/Dockerfile) -- [`5.3.5`, `5.3`](https://github.com/RocketChat/Docker.Official.Image/blob/dbb5e8eb972d7a32f28e7bdc0b03d0d3c6f58d60/5.3/Dockerfile) -- [`5.2.1`, `5.2`](https://github.com/RocketChat/Docker.Official.Image/blob/dbb5e8eb972d7a32f28e7bdc0b03d0d3c6f58d60/5.2/Dockerfile) -- [`5.1.5`, `5.1`](https://github.com/RocketChat/Docker.Official.Image/blob/dbb5e8eb972d7a32f28e7bdc0b03d0d3c6f58d60/5.1/Dockerfile) -- [`4.8.7`, `4.8`, `4`](https://github.com/RocketChat/Docker.Official.Image/blob/dbb5e8eb972d7a32f28e7bdc0b03d0d3c6f58d60/4.8/Dockerfile) +- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/6.0/Dockerfile) +- [`5.4.4`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.4/Dockerfile) +- [`5.3.6`, `5.3`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.3/Dockerfile) +- [`5.2.2`, `5.2`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.2/Dockerfile) # Quick reference (cont.) From fa772374adbb1901e10b46b9116369bdd267ffa6 Mon Sep 17 00:00:00 2001 From: Meggie Date: Fri, 10 Mar 2023 17:31:59 -0500 Subject: [PATCH 0146/2686] Add deprecation notice to Vault (#2291) See also https://github.com/docker-library/docs/pull/2283 --- vault/deprecated.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 vault/deprecated.md diff --git a/vault/deprecated.md b/vault/deprecated.md new file mode 100644 index 000000000000..5a601656e8b9 --- /dev/null +++ b/vault/deprecated.md @@ -0,0 +1 @@ +Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/vault](https://hub.docker.com/r/hashicorp/vault) instead of [vault](https://hub.docker.com/_/vault). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/vault. From 9abfcbb962fffe6d41d6d74ff99fbe16dc73c77a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Mar 2023 15:08:42 -0800 Subject: [PATCH 0147/2686] Run update.sh --- haproxy/README.md | 12 ++++++------ vault/README.md | 4 ++++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 9c5bd71cae0c..db91b4a4a547 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev4`, `2.8-dev`, `2.8-dev4-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/b2760306614878ff8530e5bfe872cdc8384d9342/2.8/Dockerfile) -- [`2.8-dev4-alpine`, `2.8-dev-alpine`, `2.8-dev4-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/b2760306614878ff8530e5bfe872cdc8384d9342/2.8/alpine/Dockerfile) -- [`2.7.3`, `2.7`, `latest`, `2.7.3-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c1f665d9f400192386f780dbea76481ebe4252e9/2.7/Dockerfile) -- [`2.7.3-alpine`, `2.7-alpine`, `alpine`, `2.7.3-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/c1f665d9f400192386f780dbea76481ebe4252e9/2.7/alpine/Dockerfile) -- [`2.6.9`, `2.6`, `lts`, `2.6.9-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/e678a5620de6784d8dbe42d1c81f5db47f9e8cbc/2.6/Dockerfile) -- [`2.6.9-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.9-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/e678a5620de6784d8dbe42d1c81f5db47f9e8cbc/2.6/alpine/Dockerfile) +- [`2.8-dev5`, `2.8-dev`, `2.8-dev5-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/Dockerfile) +- [`2.8-dev5-alpine`, `2.8-dev-alpine`, `2.8-dev5-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/alpine/Dockerfile) +- [`2.7.4`, `2.7`, `latest`, `2.7.4-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a560f7338fdb03b5d07e773f6678919f74e9185b/2.7/Dockerfile) +- [`2.7.4-alpine`, `2.7-alpine`, `alpine`, `2.7.4-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/a560f7338fdb03b5d07e773f6678919f74e9185b/2.7/alpine/Dockerfile) +- [`2.6.10`, `2.6`, `lts`, `2.6.10-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/f4ae2c3536eef4ca86d9b2d96bb97b1fb9d82f33/2.6/Dockerfile) +- [`2.6.10-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.10-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/f4ae2c3536eef4ca86d9b2d96bb97b1fb9d82f33/2.6/alpine/Dockerfile) - [`2.5.12`, `2.5`, `2.5.12-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/Dockerfile) - [`2.5.12-alpine`, `2.5-alpine`, `2.5.12-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) diff --git a/vault/README.md b/vault/README.md index 66e2c13fd74d..35666e28533a 100644 --- a/vault/README.md +++ b/vault/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/vault](https://hub.docker.com/r/hashicorp/vault) instead of [vault](https://hub.docker.com/_/vault). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/vault. + # Quick reference - **Maintained by**: From b6c1c1ecd30057b324d03abadbccecfc0e11a986 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Mar 2023 17:16:59 -0800 Subject: [PATCH 0148/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- ghost/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index c4aa63b4bae2..0015892fa0c3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -32,23 +32,23 @@ WARNING: - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) +- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/36100cd12d15c411b097727a2a84a09c656d2d24/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `23.0.1-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4abc6d9dadc3876b11aac5abf84d501d7ee0d318/20.10/windows/windowsservercore-1809/Dockerfile) + - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9bb2c53d2284..60a8c32ba2df 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.37.0`, `5.37`, `5`, `latest`](https://github.com/docker-library/ghost/blob/533294af2135d3b4e64e3620e66a4f4e314e0a44/5/debian/Dockerfile) -- [`5.37.0-alpine`, `5.37-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/533294af2135d3b4e64e3620e66a4f4e314e0a44/5/alpine/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f3101f9f5df01bf8928f2c04440232b6ddab0124/5/debian/Dockerfile) +- [`5.38.0-alpine`, `5.38-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f3101f9f5df01bf8928f2c04440232b6ddab0124/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 17bc89d43177..c3aa84d63512 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -36,10 +36,10 @@ WARNING: - [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) - [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.10/alpine/Dockerfile) - [`3.10.19-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.28`, `3.9`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.9/ubuntu/Dockerfile) -- [`3.9.28-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.28-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.9/alpine/Dockerfile) -- [`3.9.28-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/e28a90517f64d2529b60708c5bcda5cce7b29c42/3.9/ubuntu/Dockerfile) +- [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/e28a90517f64d2529b60708c5bcda5cce7b29c42/3.9/alpine/Dockerfile) +- [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 75017ef630115b56fd4bc353158ee82d40b31ab4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Mar 2023 13:15:01 -0700 Subject: [PATCH 0149/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- eggdrop/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 60c5188df2f9..90868dfa5b9f 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230305.0.131236`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f8e06670e7752bf2601d455aa99caa845da7fb4b/Dockerfile.base) -- [`base-devel`, `base-devel-20230305.0.131236`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f8e06670e7752bf2601d455aa99caa845da7fb4b/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230312.0.133040`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0592f44ec7e14bf385677b3d99ded87e57ef8446/Dockerfile.base) +- [`base-devel`, `base-devel-20230312.0.133040`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0592f44ec7e14bf385677b3d99ded87e57ef8446/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index af3e82c6a4aa..d8c15f884d76 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4b6124c8a5f8067484fc4acf37f6f871a3b7491f/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fee18313ed410db945739f139d761297a4313175/Dockerfile) # Quick reference (cont.) diff --git a/eggdrop/README.md b/eggdrop/README.md index c2e8fbc01b2b..30272b10117b 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/d4fbba91b04b7534fb1defb86557fe735e5f80c3/develop/Dockerfile) -- [`1.9`, `1.9.4`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/d4fbba91b04b7534fb1defb86557fe735e5f80c3/1.9/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/develop/Dockerfile) +- [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/1.9/Dockerfile) # Quick reference (cont.) From 446e1ae5a0b3dcfc5e531a815061321d7ad7cbf6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Mar 2023 14:17:39 -0700 Subject: [PATCH 0150/2686] Run update.sh --- fedora/README.md | 7 ++++--- photon/README.md | 5 ++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 732f827fa4bf..0a3149fcd549 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/834d0828c47d1a141af7b13d036ad479142c060c/x86_64/Dockerfile) -- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5c25517542e00afe804e41df3dddcddbd2cd062a/x86_64/Dockerfile) -- [`38`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c1e2120c04b86ae4e73f14806066bca6e6200d9c/x86_64/Dockerfile) +- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c67d07340480a701095520adac14fb1b1410c536/x86_64/Dockerfile) +- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d125ccc578a6ee34803c806d2854c1a531ea77b9/x86_64/Dockerfile) +- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b5ec3fb5c8646068aeb30cc7ee7b572601c3baf7/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ce9c595a0c05609af7e7c68607b96f3704290937/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 7820881bd1dd..0bc287f2261d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,9 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230304`, `latest`](https://github.com/vmware/photon-docker-image/blob/a766f83657601b7567494baa84dc0c4ad6db12d3/docker/Dockerfile) -- [`3.0`, `3.0-20230304`](https://github.com/vmware/photon-docker-image/blob/4ddbddd0033c4916333166327f676fd4046e643e/docker/Dockerfile) -- [`2.0`, `2.0-20221224`](https://github.com/vmware/photon-docker-image/blob/d420ffbab4ff9e1045217855073736775472694a/docker/Dockerfile) +- [`4.0`, `4.0-20230312`, `latest`](https://github.com/vmware/photon-docker-image/blob/42dc4ab2660baaee004f2ff4fc7ecae6405418ff/docker/Dockerfile) +- [`3.0`, `3.0-20230311`](https://github.com/vmware/photon-docker-image/blob/7bbd25f6776ff099b678c9af8f3349e0431b7657/docker/Dockerfile) # Quick reference (cont.) From d3762231b55f3639d907d1fad10f19f9e7c13a45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Mar 2023 16:08:36 -0700 Subject: [PATCH 0151/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index d0e1daa70b5f..f3bce74d8fea 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23`, `1.23.4`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.23/Dockerfile) -- [`1.23-alpine`, `1.23.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.23/alpine/Dockerfile) -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a087364dc2b7e72b0805c1a49df24ec742455d30/telegraf/1.25/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.26/alpine/Dockerfile) # Quick reference (cont.) From 8f8a173339657d0e654e11cccaeec909e08b813b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Mar 2023 17:08:38 -0700 Subject: [PATCH 0152/2686] Run update.sh --- docker/README.md | 4 +-- python/README.md | 84 ++++++++++++++++++++++++------------------------ 2 files changed, 44 insertions(+), 44 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0015892fa0c3..80e1637ed8a4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/06e0b8a8b836ee66175685592bcadfe149c92896/23.0/cli/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/2efbb5c7c69a0104f0c965e7cc7b33658fdf9602/23.0/cli/Dockerfile) - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) - [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/36100cd12d15c411b097727a2a84a09c656d2d24/20.10/cli/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/2efbb5c7c69a0104f0c965e7cc7b33658fdf9602/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) diff --git a/python/README.md b/python/README.md index bc47f9f0a8f8..1ea6d6a63b2e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a6-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a6-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/buster/Dockerfile) -- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a6-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a6-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a6-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a6-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/buster/Dockerfile) +- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a6-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a6-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.16/Dockerfile) - [`3.12.0a6-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a6-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) -- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/slim-bullseye/Dockerfile) -- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/buster/Dockerfile) -- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/slim-buster/Dockerfile) -- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/alpine3.17/Dockerfile) -- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/alpine3.16/Dockerfile) +- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/bullseye/Dockerfile) +- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/slim-bullseye/Dockerfile) +- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/buster/Dockerfile) +- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/slim-buster/Dockerfile) +- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.17/Dockerfile) +- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.16/Dockerfile) - [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/bullseye/Dockerfile) -- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/slim-bullseye/Dockerfile) -- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/buster/Dockerfile) -- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/slim-buster/Dockerfile) -- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/alpine3.17/Dockerfile) -- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/alpine3.16/Dockerfile) +- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/bullseye/Dockerfile) +- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/slim-bullseye/Dockerfile) +- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/buster/Dockerfile) +- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/slim-buster/Dockerfile) +- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.17/Dockerfile) +- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.16/Dockerfile) - [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/alpine3.16/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a6`, `3.12-rc`: - - [`3.12.0a6-bullseye`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a6-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/bullseye/Dockerfile) - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a6-windowsservercore`, `3.12-rc-windowsservercore`: - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.2`, `3.11`, `3`, `latest`: - - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/bullseye/Dockerfile) + - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/bullseye/Dockerfile) - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.2-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.10`, `3.10`: - - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/bullseye/Dockerfile) + - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/bullseye/Dockerfile) - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.10-windowsservercore`, `3.10-windowsservercore`: - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/f568f56f28fab0fe87b34db777e2c2861cef002b/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/a541c1b89df7d92c1027aa380454b066ffe9a315/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/bdbceda203ff70da4e00693d822c8cc1b77ae040/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/bullseye/Dockerfile) # Quick reference (cont.) From 66952c335c500e191cd8a8118192318fe0cbddd1 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Wed, 15 Mar 2023 11:59:21 -0500 Subject: [PATCH 0153/2686] Fix incorrect link for Telegraf Official Docs --- telegraf/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegraf/content.md b/telegraf/content.md index ee1a59af74f6..22df8ab253f8 100644 --- a/telegraf/content.md +++ b/telegraf/content.md @@ -2,7 +2,7 @@ Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format. -[Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/introduction/getting-started/) +[Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/get_started/) %%LOGO%% From 4897d239acabc2295e6e25f454facaa9f93325d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Mar 2023 14:08:42 -0700 Subject: [PATCH 0154/2686] Run update.sh --- groovy/README.md | 10 +++++----- mongo/README.md | 30 +++++++++++++++--------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index 1a26bbc90a2c..75e2f5017540 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.8-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.8-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk8/Dockerfile) -- [`4.0.8-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.8-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk11/Dockerfile) -- [`4.0.8-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk11-alpine/Dockerfile) -- [`4.0.8-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.8-jdk`, `4.0-jdk`, `4.0.8`, `4.0`, `4`, `jdk`, `latest`, `4.0.8-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.8-jdk-jammy`, `4.0-jdk-jammy`, `4.0.8-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk17/Dockerfile) -- [`4.0.8-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.8-jdk-alpine`, `4.0-jdk-alpine`, `4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/de3d7a503dc033e4ce07942165aa363867ba9ce3/jdk17-alpine/Dockerfile) +- [`4.0.10-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.10-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk8/Dockerfile) +- [`4.0.10-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.10-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk11/Dockerfile) +- [`4.0.10-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk11-alpine/Dockerfile) +- [`4.0.10-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.10-jdk`, `4.0-jdk`, `4.0.10`, `4.0`, `4`, `jdk`, `latest`, `4.0.10-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.10-jdk-jammy`, `4.0-jdk-jammy`, `4.0.10-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk17/Dockerfile) +- [`4.0.10-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.10-jdk-alpine`, `4.0-jdk-alpine`, `4.0.10-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index b22419c6ae4d..1bc507a9a0f7 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`6.0.4-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/6.0/Dockerfile) -- [`6.0.4-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.4-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.4-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.4-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.5-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/Dockerfile) +- [`6.0.5-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.5-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.5-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.5-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.15-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) - [`5.0.15-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.15-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) @@ -51,16 +51,16 @@ WARNING: ## Shared Tags -- `6.0.4`, `6.0`, `6`, `latest`: - - [`6.0.4-jammy`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/6.0/Dockerfile) - - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.4-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.4-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e64481539290cf8c53e38a6093808d5abbd28858/6.0/windows/nanoserver-1809/Dockerfile) +- `6.0.5`, `6.0`, `6`, `latest`: + - [`6.0.5-jammy`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/Dockerfile) + - [`6.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.5-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.5-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.15`, `5.0`, `5`: - [`5.0.15-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) From 1f81584b9f51864aeb8dfa4d77b0443fa20669ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Mar 2023 16:08:36 -0700 Subject: [PATCH 0155/2686] Run update.sh --- amazonlinux/README.md | 6 ++-- dart/README.md | 4 +-- emqx/README.md | 5 ++- flink/README.md | 4 +-- friendica/README.md | 15 ++++---- jetty/README.md | 82 +++++++++++++++++++++---------------------- joomla/README.md | 12 +++---- r-base/README.md | 2 +- storm/README.md | 2 +- telegraf/README.md | 2 +- 10 files changed, 67 insertions(+), 67 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 5ae7f6ccfa8f..695991dd9ec2 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,11 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2`, `latest`, `2.0.20230307.0`](https://github.com/amazonlinux/container-images/blob/9d4c7e1fbf1426dd0c7f21141c20e605d8695a00/Dockerfile) -- [`2.0.20230207.0-with-sources`, `2-with-sources`, `with-sources`](https://github.com/amazonlinux/container-images/blob/8b1a2649bc2e8cf24109954310ebe26b4566e4bd/Dockerfile) +- [`2`, `2.0.20230307.0`](https://github.com/amazonlinux/container-images/blob/9d4c7e1fbf1426dd0c7f21141c20e605d8695a00/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20230306.1`](https://github.com/amazonlinux/container-images/blob/dc3df0616bebef55e5890e320f62d2ef407c54d0/Dockerfile) -- [`2018.03.0.20230207.0-with-sources`, `2018.03-with-sources`, `1-with-sources`](https://github.com/amazonlinux/container-images/blob/a0fbceecd65169b34c2a48d48a3ffafccc6667af/Dockerfile) -- [`2023`, `devel`, `2023.0.20230308.0`](https://github.com/amazonlinux/container-images/blob/2cd2601351e5e7f0c7782751fee3da1f176668dc/Dockerfile) +- [`2023`, `latest`, `2023.0.20230315.0`](https://github.com/amazonlinux/container-images/blob/09b67eed139db3fdcb58d682c893df26b69dc462/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index a5aaae3d6a79..8d1216d0d0b7 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.4-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.4`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a75015084022faa681ca05fc5f55a18b64fd37e8/stable/bullseye/Dockerfile) -- [`3.0.0-218.1.beta-sdk`, `beta-sdk`, `3.0.0-218.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a75015084022faa681ca05fc5f55a18b64fd37e8/beta/bullseye/Dockerfile) +- [`2.19.4-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.4`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/1e35636878cd8d5d70b7279599e5249c62a419f0/stable/bullseye/Dockerfile) +- [`3.0.0-290.2.beta-sdk`, `beta-sdk`, `3.0.0-290.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/1e35636878cd8d5d70b7279599e5249c62a419f0/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index f956bcf4545d..cee1682f5af8 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.22`, `4.3`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/4.3/Dockerfile) -- [`4.4.15`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/4.4/Dockerfile) -- [`5.0.20`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/964890ab6381f7026fd11094ae43d7cf744ea780/5.0/Dockerfile) +- [`4.4.16`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/4.4/Dockerfile) +- [`5.0.20`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/5.0/Dockerfile) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 8db9fd1a032a..9fa4bd75d59d 100644 --- a/flink/README.md +++ b/flink/README.md @@ -26,8 +26,8 @@ WARNING: - [`1.16.1-scala_2.12-java8`, `1.16-scala_2.12-java8`, `scala_2.12-java8`, `1.16.1-java8`, `1.16-java8`, `java8`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java8-ubuntu/Dockerfile) - [`1.16.1-scala_2.12-java11`, `1.16-scala_2.12-java11`, `scala_2.12-java11`, `1.16.1-scala_2.12`, `1.16-scala_2.12`, `scala_2.12`, `1.16.1-java11`, `1.16-java11`, `java11`, `1.16.1`, `1.16`, `latest`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.15.3-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.3-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/a22c0f04972a1d8539d9213b52fc0728eac8c1fa/1.15/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.15.3-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.3-scala_2.12`, `1.15-scala_2.12`, `1.15.3-java11`, `1.15-java11`, `1.15.3`, `1.15`](https://github.com/apache/flink-docker/blob/a22c0f04972a1d8539d9213b52fc0728eac8c1fa/1.15/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 52b89f06d65d..3ff7dfa9f031 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.01-apache`, `apache`, `stable-apache`, `2023.01`, `latest`, `stable`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/apache/Dockerfile) -- [`2023.01-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/fpm/Dockerfile) -- [`2023.01-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cadef0d22065dcc09a98fa16daf0ddf89ec00324/2023.01/fpm-alpine/Dockerfile) -- [`2023.03-dev-apache`, `dev-apache`, `2023.03-dev`, `dev`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/apache/Dockerfile) -- [`2023.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/fpm/Dockerfile) -- [`2023.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/d4c80286df956393b364a37c2471dc501c0373a1/2023.03-dev/fpm-alpine/Dockerfile) +- [`2023.01-apache`, `apache`, `stable-apache`, `2023.01`, `latest`, `stable`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/apache/Dockerfile) +- [`2023.01-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/fpm/Dockerfile) +- [`2023.01-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/fpm-alpine/Dockerfile) +- [`2023.03-dev-apache`, `dev-apache`, `2023.03-dev`, `dev`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/apache/Dockerfile) +- [`2023.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/fpm/Dockerfile) +- [`2023.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/fpm-alpine/Dockerfile) +- [`2023.03-rc-apache`, `rc-apache`, `2023.03-rc`, `rc`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/apache/Dockerfile) +- [`2023.03-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/fpm/Dockerfile) +- [`2023.03-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index ae519bebef3a..e16e26b53be2 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.50-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.50-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.50-jre8`, `9.4-jre8`, `9-jre8`, `9.4.50-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.50-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.50-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.50-jre17`, `9.4-jre17`, `9-jre17`, `9.4.50-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.50-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.50-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.50-jre11`, `9.4-jre11`, `9-jre11`, `9.4.50-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.50-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.50-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.50-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.50-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.50`, `9.4`, `9`, `9.4.50-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.50-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.50-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.50-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.50-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.50-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.50-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`11.0.13-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.13-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.13-jre17`, `11.0-jre17`, `11-jre17`, `11.0.13-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.13-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.13-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.13-jre11`, `11.0-jre11`, `11-jre11`, `11.0.13-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.13-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.13-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.13`, `11.0`, `11`, `11.0.13-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.13-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.13-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.13-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.13-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.13-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.13-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.13-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.13-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.13-jre17`, `10.0-jre17`, `10-jre17`, `10.0.13-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.13-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.13-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.13-jre11`, `10.0-jre11`, `10-jre11`, `10.0.13-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.13-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.13-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.13`, `10.0`, `10`, `10.0.13-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.13-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.13-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.13-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.13-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.13-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.13-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.50-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.50-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.50-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.50-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.50-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.50-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.50-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/9.4/jdk11/Dockerfile) -- [`11.0.13-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.13-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.13-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.13-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.13-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.13-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.13-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.13-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.13-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.13-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/748caa5c7b1bd06ad238d9987757123cd4bc918a/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`11.0.14-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.14-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.14-jre17`, `11.0-jre17`, `11-jre17`, `11.0.14-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.14-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.14-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.14-jre11`, `11.0-jre11`, `11-jre11`, `11.0.14-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.14-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.14-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.14`, `11.0`, `11`, `11.0.14-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.14-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.14-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.14-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.14-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.14-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.14-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.14-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.14-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.14-jre17`, `10.0-jre17`, `10-jre17`, `10.0.14-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.14-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.14-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.14-jre11`, `10.0-jre11`, `10-jre11`, `10.0.14-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.14-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.14-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.14`, `10.0`, `10`, `10.0.14-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.14-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.14-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.14-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.14-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.14-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.14-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk11/Dockerfile) +- [`11.0.14-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.14-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.14-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.14-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.14-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.14-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.14-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.14-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.14-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.14-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 5d69b0146d3c..eb087e4b03a5 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.8`, `4.2`, `4`, `latest`, `4.2.8-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.8-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.8-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/apache/Dockerfile) -- [`4.2.8-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/fpm-alpine/Dockerfile) -- [`4.2.8-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.0/fpm/Dockerfile) -- [`4.2.8-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/apache/Dockerfile) -- [`4.2.8-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/fpm-alpine/Dockerfile) -- [`4.2.8-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/fe656496dc703fb812a2e3bc17f12fc232d325ee/4.2/php8.1/fpm/Dockerfile) +- [`4.2.9`, `4.2`, `4`, `latest`, `4.2.9-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.9-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.9-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/apache/Dockerfile) +- [`4.2.9-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/fpm-alpine/Dockerfile) +- [`4.2.9-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/fpm/Dockerfile) +- [`4.2.9-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/apache/Dockerfile) +- [`4.2.9-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/fpm-alpine/Dockerfile) +- [`4.2.9-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/fpm/Dockerfile) - [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/apache/Dockerfile) - [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm/Dockerfile) diff --git a/r-base/README.md b/r-base/README.md index 396db1c9e598..10b7c8475e1a 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.2`, `latest`](https://github.com/rocker-org/rocker/blob/2f92c6c8b8da7b3e61aabc44cacc0439bf267d31/r-base/4.2.2/Dockerfile) +- [`4.2.3`, `latest`](https://github.com/rocker-org/rocker/blob/c9e01210d9ca77b8b7f7293f71f88782a1ca2a4e/r-base/4.2.3/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index fa01023a8915..541a0c3ae4e4 100644 --- a/storm/README.md +++ b/storm/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.2.4-temurin`, `1.2-temurin`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) -- [`2.4.0-temurin`, `2.4-temurin`, `latest`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/2.4.0/Dockerfile) +- [`2.4.0-temurin`, `2.4-temurin`, `latest`](https://github.com/31z4/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index f3bce74d8fea..3144b1932e16 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -54,7 +54,7 @@ WARNING: Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format. -[Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/introduction/getting-started/) +[Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/get_started/) ![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/telegraf/logo.png) From 6fe022270d1c8cb87a882153b06e44e53185aaae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Mar 2023 17:08:37 -0700 Subject: [PATCH 0156/2686] Run update.sh --- bash/README.md | 2 +- drupal/README.md | 78 ++++++++++++++++++++++----------------------- influxdb/README.md | 40 +++++++++++------------ ubuntu/README.md | 10 +++--- wordpress/README.md | 18 +++++------ 5 files changed, 74 insertions(+), 74 deletions(-) diff --git a/bash/README.md b/bash/README.md index 96f841878656..13b89a2f653b 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230306`, `devel`, `devel-20230306-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/981264b4f0246c3fc6279f03d3a37b055d7b9cbf/devel/Dockerfile) +- [`devel-20230313`, `devel`, `devel-20230313-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/61141e3fe0fada881673ea8af7834712dc2dd77f/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 1aa740813eae..188a70f1d109 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.4-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.4-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.4-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.4-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.4-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.4`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.4-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.4-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.4-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.4-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.4-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.4-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.4-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.4-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.4-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.4-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.4-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.4-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.4-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.4-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.4-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.4-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.4-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.4-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.4-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.4-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.4-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.4-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.4-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.4-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3476174e85fbb0f2b1c21f794796a33a43cf2b30/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.4-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.4-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.4-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.4-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.4-apache`, `9.5-apache`, `9-apache`, `9.5.4`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.4-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.4-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.4-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.4-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.4-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.4-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.4-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.4-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.4-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.4-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.4-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.4-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.4-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.4-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.4-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.4-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.4-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.4-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.4-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.4-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.4-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.4-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/156df804a32992420da4c59fc349177d23644da3/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.11-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.11-php8.1-apache`, `9.4-php8.1-apache`, `9.4.11-php8.1`, `9.4-php8.1`, `9.4.11-apache-bullseye`, `9.4-apache-bullseye`, `9.4.11-apache`, `9.4-apache`, `9.4.11`, `9.4`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.11-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.11-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.11-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.11-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.11-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.11-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.11-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.11-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.11-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.11-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.11-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.11-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.11-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.11-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.11-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.11-php8.0-apache`, `9.4-php8.0-apache`, `9.4.11-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.11-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.11-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.11-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.11-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.11-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/411a7716062e7eda8f3abc68da174bb7c6ad5a8b/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.94-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.94-php8.0-apache`, `7-php8.0-apache`, `7.94-php8.0`, `7-php8.0`, `7.94-apache-bullseye`, `7-apache-bullseye`, `7.94-apache`, `7-apache`, `7.94`, `7`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/apache-bullseye/Dockerfile) -- [`7.94-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.94-php8.0-fpm`, `7-php8.0-fpm`, `7.94-fpm-bullseye`, `7-fpm-bullseye`, `7.94-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.94-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.94-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/apache-buster/Dockerfile) -- [`7.94-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.94-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-buster/Dockerfile) -- [`7.94-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.94-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ef7f1848c9041762de3d7ce012ee0e523eb562e9/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.5-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.5-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.5-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.5-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.5-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.5`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.5-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.5-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.5-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.5-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.5-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.5-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.5-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.5-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.5-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.5-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.5-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.5-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.5-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.5-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.5-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.5-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.5-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.5-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.5-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.5-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.5-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.5-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.5-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.5-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.5-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.5-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.5-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.5-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.5-apache`, `9.5-apache`, `9-apache`, `9.5.5`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.5-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.5-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.5-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.5-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.5-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.5-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.5-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.5-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.5-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.5-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.5-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.5-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.5-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.5-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.5-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.5-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.5-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.5-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.5-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.5-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.5-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.5-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.12-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.12-php8.1-apache`, `9.4-php8.1-apache`, `9.4.12-php8.1`, `9.4-php8.1`, `9.4.12-apache-bullseye`, `9.4-apache-bullseye`, `9.4.12-apache`, `9.4-apache`, `9.4.12`, `9.4`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.12-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.12-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.12-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.12-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.12-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.12-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.12-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.12-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.12-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.12-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.12-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.12-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.12-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.12-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.12-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.12-php8.0-apache`, `9.4-php8.0-apache`, `9.4.12-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.12-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.12-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.12-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.12-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.12-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.95-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.95-php8.0-apache`, `7-php8.0-apache`, `7.95-php8.0`, `7-php8.0`, `7.95-apache-bullseye`, `7-apache-bullseye`, `7.95-apache`, `7-apache`, `7.95`, `7`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-bullseye/Dockerfile) +- [`7.95-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.95-php8.0-fpm`, `7-php8.0-fpm`, `7.95-fpm-bullseye`, `7-fpm-bullseye`, `7.95-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.95-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.95-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-buster/Dockerfile) +- [`7.95-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.95-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-buster/Dockerfile) +- [`7.95-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.95-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index e96e2d752dff..e89850c94bfe 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.8-data`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.8-meta`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.0-data`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.0-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.0-meta`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.0-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.4`, `2.4.0`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.4/Dockerfile) -- [`2.4-alpine`, `2.4.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.4/alpine/Dockerfile) -- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.5/Dockerfile) -- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.5/alpine/Dockerfile) -- [`2.6`, `2.6.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.6/Dockerfile) -- [`2.6-alpine`, `2.6.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/64a63b05b198b6a45176462814d3f35677625415/influxdb/2.6/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/meta/alpine/Dockerfile) +- [`1.9-data`, `1.9.9-data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.9-meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.0-data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.0-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.0-meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.0-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/meta/alpine/Dockerfile) +- [`2.4`, `2.4.0`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.4/Dockerfile) +- [`2.4-alpine`, `2.4.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.4/alpine/Dockerfile) +- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.5/Dockerfile) +- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.5/alpine/Dockerfile) +- [`2.6`, `2.6.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.6/Dockerfile) +- [`2.6-alpine`, `2.6.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 74257544e512..5f9d36b1a86d 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230301`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230301&id=f9891666cf6072e3e7b9b53980fc577b5633b406) -- [`20.04`, `focal-20230301`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230301&id=1626760ac190ee2111918eb804a54ad6653ecde9) -- [`22.04`, `jammy-20230301`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230301&id=f40017a25ea7050a7174f3417aa65f85213084cd) -- [`22.10`, `kinetic-20230217`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230217&id=ab853e59a1c7ffa77b2b9e3f827ccfb15793864c) -- [`23.04`, `lunar-20230301`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230301&id=91cb981dafa4d83ca35a69305a4884b6736ccf68) +- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308&id=9763065814c1a3459a127cec84110da8c667c2cd) +- [`20.04`, `focal-20230308`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230308&id=64da48b7b59c5fa3812046c2e81b9e040cfdfaf3) +- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308&id=6478ae3ab57923bedd4a82aa67b3e774a2e23b6d) +- [`22.10`, `kinetic-20230308`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230308&id=7929116b8b35f4ffc6d768d201bd42fb352ae7cc) +- [`23.04`, `lunar-20230314`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230314&id=a0c8676a90be8227515b2ede9dbc6ae94b6f992f) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4d4043ff7939..f7dc942f3b35 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/754bbdf0146845c3e507af189bc4047feccc4a14/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC2-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC2`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC2-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC2-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC2-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC2-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC2-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC2-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC2-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC2-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC2-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC2-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC2-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC2-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC2-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC2-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 1816cbe216be0403aec6479d936e0790e6a0a096 Mon Sep 17 00:00:00 2001 From: Sumit Tomer Date: Wed, 15 Mar 2023 17:12:22 -0700 Subject: [PATCH 0157/2686] Updates to support AL2023 GA release (#2301) * Updates to support AL2023 GA release * Fix indentation in issues.md --------- Co-authored-by: Sumit Tomer --- amazonlinux/content.md | 71 +++++++++++++++++++----------------------- amazonlinux/issues.md | 3 +- 2 files changed, 34 insertions(+), 40 deletions(-) diff --git a/amazonlinux/content.md b/amazonlinux/content.md index c2e42ea7648d..317c0f205639 100644 --- a/amazonlinux/content.md +++ b/amazonlinux/content.md @@ -4,51 +4,37 @@ Amazon Linux is provided by Amazon Web Services (AWS). It is designed to provide The Amazon Linux container image contains a minimal set of packages. To install additional packages, [use `yum`](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/managing-software.html). -AWS provides two versions of Amazon Linux: [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) and [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/). +AWS provides three versions of Amazon Linux: -**Please note, that Amazon Linux 2023 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2023 [documentation](https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html) to learn more.** +- [Amazon Linux 2023](https://aws.amazon.com/linux/amazon-linux-2023/) (recommended, latest) +- [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) +- [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/) -For information on security updates for Amazon Linux, please refer to [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) and [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/). Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. +For information on security updates for Amazon Linux, please refer to: -%%LOGO%% +- [Amazon Linux 2023 Security Advisories](https://alas.aws.amazon.com/alas2023.html) +- [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) +- [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/) -## Where can I run Amazon Linux container images? +Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. -You can run Amazon Linux container images in any Docker based environment. Examples include, your laptop, in AWS EC2 instances, and ECS clusters. - -## How is Amazon Linux 2 different from Amazon Linux AMI? +%%LOGO%% -There are three major differences in Amazon Linux 2 from its predecessors: +## What is Amazon Linux 2023? -1. it is available as a VM image for on-premises development and testing -2. it includes systemd service and systems manager as opposed to System V init system and also includes new version of compiler and build tools -3. it gives you the ability to install additional software packages through Extras mechanism without impacting the underlying LTS stability +- Amazon Linux 2023: https://aws.amazon.com/linux/amazon-linux-2023/ +- 2023.0 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html +- FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ +- What's New: https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-linux-2023/ +- User Guide: https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html -## Is Amazon Linux 2 build an official LTS build? +## Where can I run Amazon Linux container images? -Yes. Amazon Linux 2 end of support date (End of Life, or EOL) has been extended by two years from 2023-06-30 to 2025-06-30 to provide customers with ample time to migrate to the next version. +You can run Amazon Linux container images in any Docker based environment. Examples include, your laptop, in AWS EC2 instances, and ECS clusters. ## What packages are available in the Amazon Linux containers? -Amazon Linux Docker container images contain a subset of the packages in the images for use on EC2 and as VMs in on-premises scenarios. The container images can be configured to use any of the full set of packages in images for EC2 and on-premises use. The Amazon Linux 2 container images comes with Extras included. - -## What is an Amazon Linux 2 Extra? - -Extras is a new mechanism introduced in Amazon Linux 2 to enable the consumption of the newest versions of application software in a fully supported manner on a stable Amazon Linux 2 base. Extras help alleviate the compromise between stability of the OS and freshness of available software. For example, now you can install newer versions of Python being rest assured that the underlying operating system is stable. Examples of Extras include nginx, PostgreSQL, MariaDB, Go, and Rust. - -## How do Amazon Linux 2 Extras work? - -Extras introduces the notion of topics to select software bundles. Each topic contains all the dependencies required for the software to install and function on Amazon Linux 2. For example, Rust is an Extras topic in the curated list provide by Amazon. It provides the toolchain and runtimes for Rust, the systems programming language. This topic includes the cmake build system for Rust, cargo - the rust package manager, and the LLVM based compiler toolchain for Rust. The packages associated with each topic are consumed via the well-known yum installation process. - -## How are Amazon Linux 2 Extras topics different from the packages available in yum repositories? - -`yum` is a utility for package management of RPM packages. The base image of Amazon Linux 2 (LTS) includes access to repositories that already contain stable versions of popular packages that can be installed with `yum`. These packages are part of the long term support for Amazon Linux 2. - -However, if you need a new software package or a newer version of an existing software package that is not included in the base Amazon Linux 2 image, Extras provide a way to install those packages in a supported manner. Extras is essentially a simplified mechanism to point yum to AWS curated sets of packages for a selected topic. - -## How do I install a software package from Extras repository in Amazon Linux 2? - -Available packages can be listed with the `amazon-linux-extras` command. Packages can be installed with the `amazon-linux-extras install ` command. Example: `amazon-linux-extras install rust1` +Amazon Linux Docker container images contain a subset of the packages in the images for use on EC2 and as VMs in on-premises scenarios. The container images can be configured to use any of the full set of packages in images for EC2 and on-premises use. ## Will updates be available for Amazon Linux containers? @@ -56,18 +42,25 @@ Similar to the Amazon Linux images for AWS EC2 and on-premises use, Amazon Linux ## What support is available for Amazon Linux outside AWS? +- GitHub Issues: https://github.com/amazonlinux/container-images/issues - Documentation: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/amazon-linux-ami-basics.html - Amazon Linux Forums: https://forums.aws.amazon.com/forum.jspa?forumID=228 - Paid Support from AWS: https://aws.amazon.com/premiumsupport/ -## With the availability of Amazon Linux 2, are there any changes to the existing version of Amazon Linux AMI? +## Will AWS support the current versions of Amazon Linux going forward? + +Yes; in order to avoid any disruption to your existing applications and to facilitate migration to Amazon Linux 2023, AWS will provide regular security updates for Amazon Linux 2 and Amazon Linux 2018.03. Please refer to their FAQs for more information. You can also use all your existing support channels such as AWS Premium Support and Amazon Linux Discussion Forum to continue to submit support requests. + +## FAQs + +### Amazon Linux 2023 -With the availability of Amazon Linux 2, we are announcing that 2018.03 release of Amazon Linux AMI container image will be the last release for the current generation of Amazon Linux. Going forward, AWS will provide newer versions only for Amazon Linux 2. +- FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ -## Will AWS support the current version of Amazon Linux going forward? +### Amazon Linux 2 -Yes; in order to avoid any disruption to your existing applications and to facilitate migration to Amazon Linux 2, AWS will provide regular security updates for Amazon Linux 2018.03 AMI and container image for 2 years after the final LTS build is announced. You can also use all your existing support channels such as AWS Premium Support and Amazon Linux Discussion Forum to continue to submit support requests. +- FAQs: https://aws.amazon.com/amazon-linux-2/faqs/ -## Is Amazon Linux 2 backward compatible with Amazon Linux AMI? +### Amazon Linux 1 -Due to the inclusion of new components in Amazon Linux 2 such as systemd, your applications running on the current version of Amazon Linux may require additional changes to run on Amazon Linux 2. +- FAQs: https://aws.amazon.com/amazon-linux-ami/faqs/ diff --git a/amazonlinux/issues.md b/amazonlinux/issues.md index 553e07ae53f2..ef7bf19b9e22 100644 --- a/amazonlinux/issues.md +++ b/amazonlinux/issues.md @@ -1 +1,2 @@ -[the Amazon Linux forums](https://forums.aws.amazon.com/forum.jspa?forumID=228) +- [amazonlinux/container-images/issues](https://github.com/amazonlinux/container-images/issues) + - [the Amazon Linux forums](https://forums.aws.amazon.com/forum.jspa?forumID=228) From cc5be62aa8a4aec0fe96750c1eb4db6f005e3a44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Mar 2023 18:21:24 -0700 Subject: [PATCH 0158/2686] Run update.sh --- amazonlinux/README.md | 74 ++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 40 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 695991dd9ec2..82dc1763bed9 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -31,7 +31,8 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [the Amazon Linux forums](https://forums.aws.amazon.com/forum.jspa?forumID=228) + - [amazonlinux/container-images/issues](https://github.com/amazonlinux/container-images/issues) + - [the Amazon Linux forums](https://forums.aws.amazon.com/forum.jspa?forumID=228) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/amazonlinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/amazonlinux/) @@ -53,51 +54,37 @@ Amazon Linux is provided by Amazon Web Services (AWS). It is designed to provide The Amazon Linux container image contains a minimal set of packages. To install additional packages, [use `yum`](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/managing-software.html). -AWS provides two versions of Amazon Linux: [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) and [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/). +AWS provides three versions of Amazon Linux: -**Please note, that Amazon Linux 2023 is currently in the Preview mode and is not recommended for production workloads. Review the Amazon Linux 2023 [documentation](https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html) to learn more.** +- [Amazon Linux 2023](https://aws.amazon.com/linux/amazon-linux-2023/) (recommended, latest) +- [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/) +- [Amazon Linux AMI](https://aws.amazon.com/amazon-linux-ami/) -For information on security updates for Amazon Linux, please refer to [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) and [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/). Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. +For information on security updates for Amazon Linux, please refer to: -![logo](https://raw.githubusercontent.com/docker-library/docs/9ca9202567ccc25ce110f98bbeb6c929844e05d0/amazonlinux/logo.png) +- [Amazon Linux 2023 Security Advisories](https://alas.aws.amazon.com/alas2023.html) +- [Amazon Linux 2 Security Advisories](https://alas.aws.amazon.com/alas2.html) +- [Amazon Linux AMI Security Advisories](https://alas.aws.amazon.com/) -## Where can I run Amazon Linux container images? +Note that Docker Hub's vulnerability scanning for Amazon Linux is currently based on RPM versions, which does not reflect the state of backported patches for vulnerabilities. -You can run Amazon Linux container images in any Docker based environment. Examples include, your laptop, in AWS EC2 instances, and ECS clusters. - -## How is Amazon Linux 2 different from Amazon Linux AMI? +![logo](https://raw.githubusercontent.com/docker-library/docs/9ca9202567ccc25ce110f98bbeb6c929844e05d0/amazonlinux/logo.png) -There are three major differences in Amazon Linux 2 from its predecessors: +## What is Amazon Linux 2023? -1. it is available as a VM image for on-premises development and testing -2. it includes systemd service and systems manager as opposed to System V init system and also includes new version of compiler and build tools -3. it gives you the ability to install additional software packages through Extras mechanism without impacting the underlying LTS stability +- Amazon Linux 2023: https://aws.amazon.com/linux/amazon-linux-2023/ +- 2023.0 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html +- FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ +- What's New: https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-linux-2023/ +- User Guide: https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html -## Is Amazon Linux 2 build an official LTS build? +## Where can I run Amazon Linux container images? -Yes. Amazon Linux 2 end of support date (End of Life, or EOL) has been extended by two years from 2023-06-30 to 2025-06-30 to provide customers with ample time to migrate to the next version. +You can run Amazon Linux container images in any Docker based environment. Examples include, your laptop, in AWS EC2 instances, and ECS clusters. ## What packages are available in the Amazon Linux containers? -Amazon Linux Docker container images contain a subset of the packages in the images for use on EC2 and as VMs in on-premises scenarios. The container images can be configured to use any of the full set of packages in images for EC2 and on-premises use. The Amazon Linux 2 container images comes with Extras included. - -## What is an Amazon Linux 2 Extra? - -Extras is a new mechanism introduced in Amazon Linux 2 to enable the consumption of the newest versions of application software in a fully supported manner on a stable Amazon Linux 2 base. Extras help alleviate the compromise between stability of the OS and freshness of available software. For example, now you can install newer versions of Python being rest assured that the underlying operating system is stable. Examples of Extras include nginx, PostgreSQL, MariaDB, Go, and Rust. - -## How do Amazon Linux 2 Extras work? - -Extras introduces the notion of topics to select software bundles. Each topic contains all the dependencies required for the software to install and function on Amazon Linux 2. For example, Rust is an Extras topic in the curated list provide by Amazon. It provides the toolchain and runtimes for Rust, the systems programming language. This topic includes the cmake build system for Rust, cargo - the rust package manager, and the LLVM based compiler toolchain for Rust. The packages associated with each topic are consumed via the well-known yum installation process. - -## How are Amazon Linux 2 Extras topics different from the packages available in yum repositories? - -`yum` is a utility for package management of RPM packages. The base image of Amazon Linux 2 (LTS) includes access to repositories that already contain stable versions of popular packages that can be installed with `yum`. These packages are part of the long term support for Amazon Linux 2. - -However, if you need a new software package or a newer version of an existing software package that is not included in the base Amazon Linux 2 image, Extras provide a way to install those packages in a supported manner. Extras is essentially a simplified mechanism to point yum to AWS curated sets of packages for a selected topic. - -## How do I install a software package from Extras repository in Amazon Linux 2? - -Available packages can be listed with the `amazon-linux-extras` command. Packages can be installed with the `amazon-linux-extras install ` command. Example: `amazon-linux-extras install rust1` +Amazon Linux Docker container images contain a subset of the packages in the images for use on EC2 and as VMs in on-premises scenarios. The container images can be configured to use any of the full set of packages in images for EC2 and on-premises use. ## Will updates be available for Amazon Linux containers? @@ -105,21 +92,28 @@ Similar to the Amazon Linux images for AWS EC2 and on-premises use, Amazon Linux ## What support is available for Amazon Linux outside AWS? +- GitHub Issues: https://github.com/amazonlinux/container-images/issues - Documentation: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/amazon-linux-ami-basics.html - Amazon Linux Forums: https://forums.aws.amazon.com/forum.jspa?forumID=228 - Paid Support from AWS: https://aws.amazon.com/premiumsupport/ -## With the availability of Amazon Linux 2, are there any changes to the existing version of Amazon Linux AMI? +## Will AWS support the current versions of Amazon Linux going forward? + +Yes; in order to avoid any disruption to your existing applications and to facilitate migration to Amazon Linux 2023, AWS will provide regular security updates for Amazon Linux 2 and Amazon Linux 2018.03. Please refer to their FAQs for more information. You can also use all your existing support channels such as AWS Premium Support and Amazon Linux Discussion Forum to continue to submit support requests. + +## FAQs + +### Amazon Linux 2023 -With the availability of Amazon Linux 2, we are announcing that 2018.03 release of Amazon Linux AMI container image will be the last release for the current generation of Amazon Linux. Going forward, AWS will provide newer versions only for Amazon Linux 2. +- FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ -## Will AWS support the current version of Amazon Linux going forward? +### Amazon Linux 2 -Yes; in order to avoid any disruption to your existing applications and to facilitate migration to Amazon Linux 2, AWS will provide regular security updates for Amazon Linux 2018.03 AMI and container image for 2 years after the final LTS build is announced. You can also use all your existing support channels such as AWS Premium Support and Amazon Linux Discussion Forum to continue to submit support requests. +- FAQs: https://aws.amazon.com/amazon-linux-2/faqs/ -## Is Amazon Linux 2 backward compatible with Amazon Linux AMI? +### Amazon Linux 1 -Due to the inclusion of new components in Amazon Linux 2 such as systemd, your applications running on the current version of Amazon Linux may require additional changes to run on Amazon Linux 2. +- FAQs: https://aws.amazon.com/amazon-linux-ami/faqs/ # License From 26e0400eb9470754fb167d43ef7c06e1452744bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Mar 2023 12:08:38 -0700 Subject: [PATCH 0159/2686] Run update.sh --- maven/README.md | 44 ++++++++++++++++++++++---------------------- node/README.md | 12 ++++++------ 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/maven/README.md b/maven/README.md index 2d06e39336c8..45deb481f86b 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.0-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11/Dockerfile) -- [`3.9.0-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-17`, `3.9.0`, `3.9.0-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17/Dockerfile) -- [`3.9.0-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-19`, `3.9-eclipse-temurin-19`, `3-eclipse-temurin-19`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19/Dockerfile) -- [`3.9.0-eclipse-temurin-19-alpine`, `3.9-eclipse-temurin-19-alpine`, `3-eclipse-temurin-19-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-19-focal`, `3.9-eclipse-temurin-19-focal`, `3-eclipse-temurin-19-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-19-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8/Dockerfile) -- [`3.9.0-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.0-ibmjava-8`, `3.9.0-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibmjava-8/Dockerfile) -- [`3.9.0-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibm-semeru-11-focal/Dockerfile) -- [`3.9.0-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/ibm-semeru-17-focal/Dockerfile) -- [`3.9.0-amazoncorretto-11`, `3.9.0-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-11/Dockerfile) -- [`3.9.0-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-17/Dockerfile) -- [`3.9.0-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-19/Dockerfile) -- [`3.9.0-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/amazoncorretto-8/Dockerfile) -- [`3.9.0-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/sapmachine-11/Dockerfile) -- [`3.9.0-sapmachine-17`, `3.9.0-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/32760466401d45fabb8166b5dcf9003b07598918/sapmachine-17/Dockerfile) +- [`3.9.0-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/de70b3e783c1c9b2835b6be4c3826d6221bf4fca/eclipse-temurin-11/Dockerfile) +- [`3.9.0-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-17`, `3.9.0`, `3.9.0-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17/Dockerfile) +- [`3.9.0-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-19`, `3.9-eclipse-temurin-19`, `3-eclipse-temurin-19`](https://github.com/carlossg/docker-maven/blob/de70b3e783c1c9b2835b6be4c3826d6221bf4fca/eclipse-temurin-19/Dockerfile) +- [`3.9.0-eclipse-temurin-19-alpine`, `3.9-eclipse-temurin-19-alpine`, `3-eclipse-temurin-19-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-19-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-19-focal`, `3.9-eclipse-temurin-19-focal`, `3-eclipse-temurin-19-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-19-focal/Dockerfile) +- [`3.9.0-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8/Dockerfile) +- [`3.9.0-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.0-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.0-ibmjava-8`, `3.9.0-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibmjava-8/Dockerfile) +- [`3.9.0-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibm-semeru-11-focal/Dockerfile) +- [`3.9.0-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibm-semeru-17-focal/Dockerfile) +- [`3.9.0-amazoncorretto-11`, `3.9.0-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-11/Dockerfile) +- [`3.9.0-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-17/Dockerfile) +- [`3.9.0-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-19/Dockerfile) +- [`3.9.0-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-8/Dockerfile) +- [`3.9.0-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/sapmachine-11/Dockerfile) +- [`3.9.0-sapmachine-17`, `3.9.0-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/sapmachine-17/Dockerfile) # Quick reference (cont.) @@ -52,7 +52,7 @@ WARNING: [https://github.com/carlossg/docker-maven/issues](https://github.com/carlossg/docker-maven/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/maven/), [`arm32v7`](https://hub.docker.com/r/arm32v7/maven/), [`arm64v8`](https://hub.docker.com/r/arm64v8/maven/), [`i386`](https://hub.docker.com/r/i386/maven/), [`ppc64le`](https://hub.docker.com/r/ppc64le/maven/), [`s390x`](https://hub.docker.com/r/s390x/maven/) + [`amd64`](https://hub.docker.com/r/amd64/maven/), [`arm32v7`](https://hub.docker.com/r/arm32v7/maven/), [`arm64v8`](https://hub.docker.com/r/arm64v8/maven/), [`ppc64le`](https://hub.docker.com/r/ppc64le/maven/), [`s390x`](https://hub.docker.com/r/s390x/maven/) - **Published image artifact details**: [repo-info repo's `repos/maven/` directory](https://github.com/docker-library/repo-info/blob/master/repos/maven) ([history](https://github.com/docker-library/repo-info/commits/master/repos/maven)) diff --git a/node/README.md b/node/README.md index 2ab152abe75b..bc8fe58306bf 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.7-alpine3.16`, `19.7.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.7-alpine`, `19.7-alpine3.17`, `19.7.0-alpine`, `19.7.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.7`, `19.7-bullseye`, `19.7.0`, `19.7.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.7-bullseye-slim`, `19.7-slim`, `19.7.0-bullseye-slim`, `19.7.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.7-buster`, `19.7.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster/Dockerfile) -- [`19-buster-slim`, `19.7-buster-slim`, `19.7.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cd7015f45666d2cd6e81f507ee362ca7ada1bfee/19/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.8-alpine3.16`, `19.8.1-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.8-alpine`, `19.8-alpine3.17`, `19.8.1-alpine`, `19.8.1-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.8`, `19.8-bullseye`, `19.8.1`, `19.8.1-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.8-bullseye-slim`, `19.8-slim`, `19.8.1-bullseye-slim`, `19.8.1-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.8-buster`, `19.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/buster/Dockerfile) +- [`19-buster-slim`, `19.8-buster-slim`, `19.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/buster-slim/Dockerfile) - [`18-alpine3.16`, `18.15-alpine3.16`, `18.15.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.16/Dockerfile) - [`18-alpine`, `18-alpine3.17`, `18.15-alpine`, `18.15-alpine3.17`, `18.15.0-alpine`, `18.15.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.17/Dockerfile) - [`18`, `18-bullseye`, `18.15`, `18.15-bullseye`, `18.15.0`, `18.15.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye/Dockerfile) From a57f80563d831aa1a0980180e1999c0f8daf1a40 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Mar 2023 13:08:39 -0700 Subject: [PATCH 0160/2686] Run update.sh --- clojure/README.md | 120 +++++++++++++++++++++++----------------------- 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 8d9bb0b8fcf8..af50e443f9d1 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,66 +24,66 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1252-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1252-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1252-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1252`, `temurin-8-tools-deps-1.11.1.1252-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1252-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1252-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1252-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1252`, `temurin-11-tools-deps-1.11.1.1252-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1252-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1252-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1252-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1252-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1252-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1252`, `temurin-17-tools-deps-1.11.1.1252-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1252`, `tools-deps-1.11.1.1252-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) -- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) -- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) -- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) -- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1252-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1252-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-19/tools-deps/Dockerfile) -- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1252-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/debian-bullseye-slim-19/tools-deps/Dockerfile) -- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1252-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) -- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1252`, `temurin-19-tools-deps-1.11.1.1252-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a44a1a9f0343fcd60cae124b92ff0041e479f96/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1257-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1257-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1257-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1257`, `temurin-8-tools-deps-1.11.1.1257-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1257-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1257-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1257-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1257`, `temurin-11-tools-deps-1.11.1.1257-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1257-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1257-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1257-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1257-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1257-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1257`, `temurin-17-tools-deps-1.11.1.1257-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1257`, `tools-deps-1.11.1.1257-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/boot/Dockerfile) +- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) +- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) +- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/lein/Dockerfile) +- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) +- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) +- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1257-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1257-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/tools-deps/Dockerfile) +- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/tools-deps/Dockerfile) +- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1257-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) +- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1257`, `temurin-19-tools-deps-1.11.1.1257-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) From f6e213524b63385d485cfc0c53485461822388b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Mar 2023 14:08:38 -0700 Subject: [PATCH 0161/2686] Run update.sh --- php/README.md | 84 +++++++++++++++++---------------------------------- 1 file changed, 28 insertions(+), 56 deletions(-) diff --git a/php/README.md b/php/README.md index 80d669cf46de..4199b50027fd 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.4RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.4RC1-bullseye`, `8.2-rc-bullseye`, `8.2.4RC1-cli`, `8.2-rc-cli`, `8.2.4RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.4RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.4RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.4RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.4RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.4RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.4RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.4RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.4RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/cli/Dockerfile) -- [`8.2.4RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/apache/Dockerfile) -- [`8.2.4RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.4RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/buster/zts/Dockerfile) -- [`8.2.4RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.4RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.4RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.4RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.4RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.4RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.4RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.4RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.4RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.4RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/cli/Dockerfile) -- [`8.2.4RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/fpm/Dockerfile) -- [`8.2.4RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/68ebc4c8613ac3c56a4a5ca0fd716ddc270bf272/8.2-rc/alpine3.16/zts/Dockerfile) -- [`8.2.3-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.3-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.3-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.3`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/cli/Dockerfile) -- [`8.2.3-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.3-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/apache/Dockerfile) -- [`8.2.3-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.3-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/bullseye/fpm/Dockerfile) -- [`8.2.3-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.3-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/bullseye/zts/Dockerfile) -- [`8.2.3-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.3-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/cli/Dockerfile) -- [`8.2.3-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/apache/Dockerfile) -- [`8.2.3-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/buster/fpm/Dockerfile) -- [`8.2.3-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/buster/zts/Dockerfile) -- [`8.2.3-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.3-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.3-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.3-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.3-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.3-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.3-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.3-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.3-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.3-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.3-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.3-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/277739fc7ba0948ffb38721ab3f8b139c6b41be7/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.17RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.17RC1-bullseye`, `8.1-rc-bullseye`, `8.1.17RC1-cli`, `8.1-rc-cli`, `8.1.17RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.17RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.17RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.17RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.17RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.17RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.17RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.17RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.17RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/cli/Dockerfile) -- [`8.1.17RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/apache/Dockerfile) -- [`8.1.17RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.17RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/buster/zts/Dockerfile) -- [`8.1.17RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.17RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.17RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.17RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.17RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.17RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.17RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.17RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.17RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.17RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.17RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.17RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/1ccf5e9105dac41fa07532a7ad9a415057d3cd22/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.16-cli-bullseye`, `8.1-cli-bullseye`, `8.1.16-bullseye`, `8.1-bullseye`, `8.1.16-cli`, `8.1-cli`, `8.1.16`, `8.1`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/cli/Dockerfile) -- [`8.1.16-apache-bullseye`, `8.1-apache-bullseye`, `8.1.16-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/apache/Dockerfile) -- [`8.1.16-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.16-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/bullseye/fpm/Dockerfile) -- [`8.1.16-zts-bullseye`, `8.1-zts-bullseye`, `8.1.16-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/bullseye/zts/Dockerfile) -- [`8.1.16-cli-buster`, `8.1-cli-buster`, `8.1.16-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/cli/Dockerfile) -- [`8.1.16-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/apache/Dockerfile) -- [`8.1.16-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/buster/fpm/Dockerfile) -- [`8.1.16-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/buster/zts/Dockerfile) -- [`8.1.16-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.16-alpine3.17`, `8.1-alpine3.17`, `8.1.16-cli-alpine`, `8.1-cli-alpine`, `8.1.16-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.16-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.16-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.16-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.16-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.16-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.16-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.16-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/e38d7619bd727c056e846a32ba3bcf4d979b8bbc/8.1/alpine3.16/zts/Dockerfile) +- [`8.2.4-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.4-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.4-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.4`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/cli/Dockerfile) +- [`8.2.4-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.4-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/apache/Dockerfile) +- [`8.2.4-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.4-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/fpm/Dockerfile) +- [`8.2.4-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.4-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/zts/Dockerfile) +- [`8.2.4-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.4-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/cli/Dockerfile) +- [`8.2.4-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/apache/Dockerfile) +- [`8.2.4-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/fpm/Dockerfile) +- [`8.2.4-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/zts/Dockerfile) +- [`8.2.4-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.4-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.4-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.4-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.4-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.4-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.4-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.4-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.4-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.4-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/cli/Dockerfile) +- [`8.2.4-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.4-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.17-cli-bullseye`, `8.1-cli-bullseye`, `8.1.17-bullseye`, `8.1-bullseye`, `8.1.17-cli`, `8.1-cli`, `8.1.17`, `8.1`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/cli/Dockerfile) +- [`8.1.17-apache-bullseye`, `8.1-apache-bullseye`, `8.1.17-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/apache/Dockerfile) +- [`8.1.17-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.17-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/fpm/Dockerfile) +- [`8.1.17-zts-bullseye`, `8.1-zts-bullseye`, `8.1.17-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/zts/Dockerfile) +- [`8.1.17-cli-buster`, `8.1-cli-buster`, `8.1.17-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/cli/Dockerfile) +- [`8.1.17-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/apache/Dockerfile) +- [`8.1.17-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/fpm/Dockerfile) +- [`8.1.17-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/zts/Dockerfile) +- [`8.1.17-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.17-alpine3.17`, `8.1-alpine3.17`, `8.1.17-cli-alpine`, `8.1-cli-alpine`, `8.1.17-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.17-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.17-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.17-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.17-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.17-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.17-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.17-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.17-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/bullseye/fpm/Dockerfile) From 1190bebdf80548534e459bd32c6c35d82112b9e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Mar 2023 16:08:40 -0700 Subject: [PATCH 0162/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 6cb7cd9c8ce0..6526cb60a6de 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/glibc/Dockerfile) -- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/uclibc/Dockerfile) -- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/musl/Dockerfile) -- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/170608f188ec1bf80276c8e84faea9dcaa881c09/latest-1/glibc/Dockerfile) +- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/glibc/Dockerfile) +- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/uclibc/Dockerfile) +- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/musl/Dockerfile) +- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/glibc/Dockerfile) # Quick reference (cont.) From df0fd9b92ebfaf3fee80c2319d4bea7455641216 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Mar 2023 17:14:45 -0700 Subject: [PATCH 0163/2686] Run update.sh --- python/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/python/README.md b/python/README.md index 1ea6d6a63b2e..7a2df893ea63 100644 --- a/python/README.md +++ b/python/README.md @@ -29,45 +29,45 @@ WARNING: ## Simple Tags - [`3.12.0a6-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.12-rc/slim-bullseye/Dockerfile) - [`3.12.0a6-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/buster/Dockerfile) -- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.12-rc/slim-buster/Dockerfile) - [`3.12.0a6-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.17/Dockerfile) - [`3.12.0a6-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.16/Dockerfile) - [`3.12.0a6-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a6-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/bullseye/Dockerfile) -- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/slim-bullseye/Dockerfile) +- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.11/slim-bullseye/Dockerfile) - [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/buster/Dockerfile) -- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/slim-buster/Dockerfile) +- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.11/slim-buster/Dockerfile) - [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.17/Dockerfile) - [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.16/Dockerfile) - [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/bullseye/Dockerfile) -- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/slim-bullseye/Dockerfile) +- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.10/slim-bullseye/Dockerfile) - [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/buster/Dockerfile) -- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/slim-buster/Dockerfile) +- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.10/slim-buster/Dockerfile) - [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.17/Dockerfile) - [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.16/Dockerfile) - [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) - [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.9/slim-bullseye/Dockerfile) - [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/slim-buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.9/slim-buster/Dockerfile) - [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.17/Dockerfile) - [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.16/Dockerfile) - [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.8/slim-bullseye/Dockerfile) - [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/slim-buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.8/slim-buster/Dockerfile) - [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.17/Dockerfile) - [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.16/Dockerfile) - [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.7/slim-bullseye/Dockerfile) - [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/slim-buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.7/slim-buster/Dockerfile) - [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.17/Dockerfile) - [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.16/Dockerfile) From a209f694ef65bebfcf63ef170758e2c8d5776ed4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Mar 2023 15:08:45 -0700 Subject: [PATCH 0164/2686] Run update.sh --- aerospike/README.md | 4 ++-- couchdb/README.md | 8 ++++---- erlang/README.md | 6 +++--- odoo/README.md | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 70decdea5016..454a4aac53dc 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.2.0.3`, `ee-6.2.0.3_3`](https://github.com/aerospike/aerospike-server.docker/blob/b249dd80657d99e71255287fe6923458b91dfe8b/enterprise/debian11/Dockerfile) -- [`ce-6.2.0.3`, `ce-6.2.0.3_3`](https://github.com/aerospike/aerospike-server.docker/blob/b249dd80657d99e71255287fe6923458b91dfe8b/community/debian11/Dockerfile) +- [`ee-6.2.0.7`, `ee-6.2.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/d81a89d492e7ac3408e966339aa8b6e49923fb92/enterprise/debian11/Dockerfile) +- [`ce-6.2.0.7`, `ce-6.2.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/d81a89d492e7ac3408e966339aa8b6e49923fb92/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/couchdb/README.md b/couchdb/README.md index 59525d3690b3..6979accdb1fe 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.1`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/41b7e8df5ad77c628cc6edb8419d4ade96ccba55/3.3.1/Dockerfile) -- [`3.2.2`, `3.2`](https://github.com/apache/couchdb-docker/blob/41b7e8df5ad77c628cc6edb8419d4ade96ccba55/3.2.2/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/41b7e8df5ad77c628cc6edb8419d4ade96ccba55/3.1.2/Dockerfile) -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/41b7e8df5ad77c628cc6edb8419d4ade96ccba55/2.3.1/Dockerfile) +- [`latest`, `3.3.1`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.3.1/Dockerfile) +- [`3.2.2`, `3.2`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.2.2/Dockerfile) +- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.1.2/Dockerfile) +- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/2.3.1/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 80c7fbe30dfd..8c33d899618f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,9 +30,9 @@ WARNING: - [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) - [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) - [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) -- [`24.3.4.9`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/Dockerfile) -- [`24.3.4.9-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/slim/Dockerfile) -- [`24.3.4.9-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/5c05093de2037d5e7848b5c39128563d1dc628a8/24/alpine/Dockerfile) +- [`24.3.4.10`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/Dockerfile) +- [`24.3.4.10-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/slim/Dockerfile) +- [`24.3.4.10-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/alpine/Dockerfile) - [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/Dockerfile) - [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/slim/Dockerfile) - [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/alpine/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 6bf39c08b526..3b0497f99924 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/870aef4a7a3f0befdd7fc8ef7ffe8f9d07df7794/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/14.0/Dockerfile) # Quick reference (cont.) From 54d9152ec23cc14f4ce0aa2189a61597981ae793 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Mar 2023 16:09:03 -0700 Subject: [PATCH 0165/2686] Run update.sh --- archlinux/README.md | 4 ++-- chronograf/README.md | 16 ++++++++-------- clearlinux/README.md | 2 +- ghost/README.md | 4 ++-- haproxy/README.md | 12 ++++++------ influxdb/README.md | 40 ++++++++++++++++++++-------------------- photon/README.md | 2 +- rabbitmq/README.md | 20 ++++++++++---------- 8 files changed, 50 insertions(+), 50 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 90868dfa5b9f..793b0ad5540e 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230312.0.133040`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0592f44ec7e14bf385677b3d99ded87e57ef8446/Dockerfile.base) -- [`base-devel`, `base-devel-20230312.0.133040`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0592f44ec7e14bf385677b3d99ded87e57ef8446/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230319.0.135218`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/71a836dea46c446f5e0fd3ffdcf954d2280cc01b/Dockerfile.base) +- [`base-devel`, `base-devel-20230319.0.135218`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/71a836dea46c446f5e0fd3ffdcf954d2280cc01b/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/chronograf/README.md b/chronograf/README.md index 3aa0f2958b9e..85b26150ecf3 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b827ab25d730659b98439d1c0cbfb17baf60b468/chronograf/1.10/alpine/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.8/alpine/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.9/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.9/alpine/Dockerfile) +- [`1.10`, `1.10.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.10/Dockerfile) +- [`1.10-alpine`, `1.10.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index d8c15f884d76..cd7399d9e5f4 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fee18313ed410db945739f139d761297a4313175/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/76173e2f8f6d04ef5fbc2b21724b80f54f7926dc/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 60a8c32ba2df..55247491dd5d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f3101f9f5df01bf8928f2c04440232b6ddab0124/5/debian/Dockerfile) -- [`5.38.0-alpine`, `5.38-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f3101f9f5df01bf8928f2c04440232b6ddab0124/5/alpine/Dockerfile) +- [`5.39.0`, `5.39`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f71cd727b1ac2412e99e1e1d700d33fc649c7f16/5/debian/Dockerfile) +- [`5.39.0-alpine`, `5.39-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f71cd727b1ac2412e99e1e1d700d33fc649c7f16/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index db91b4a4a547..6b952b32f1f6 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,12 +26,12 @@ WARNING: - [`2.8-dev5`, `2.8-dev`, `2.8-dev5-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/Dockerfile) - [`2.8-dev5-alpine`, `2.8-dev-alpine`, `2.8-dev5-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/alpine/Dockerfile) -- [`2.7.4`, `2.7`, `latest`, `2.7.4-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a560f7338fdb03b5d07e773f6678919f74e9185b/2.7/Dockerfile) -- [`2.7.4-alpine`, `2.7-alpine`, `alpine`, `2.7.4-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/a560f7338fdb03b5d07e773f6678919f74e9185b/2.7/alpine/Dockerfile) -- [`2.6.10`, `2.6`, `lts`, `2.6.10-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/f4ae2c3536eef4ca86d9b2d96bb97b1fb9d82f33/2.6/Dockerfile) -- [`2.6.10-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.10-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/f4ae2c3536eef4ca86d9b2d96bb97b1fb9d82f33/2.6/alpine/Dockerfile) -- [`2.5.12`, `2.5`, `2.5.12-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/Dockerfile) -- [`2.5.12-alpine`, `2.5-alpine`, `2.5.12-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/57fdd931dfdce22ddc38fa7bad81b7c09b5b1caa/2.5/alpine/Dockerfile) +- [`2.7.5`, `2.7`, `latest`, `2.7.5-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/098bc15c52ea5cfe4375519a463b682efcb38225/2.7/Dockerfile) +- [`2.7.5-alpine`, `2.7-alpine`, `alpine`, `2.7.5-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/098bc15c52ea5cfe4375519a463b682efcb38225/2.7/alpine/Dockerfile) +- [`2.6.11`, `2.6`, `lts`, `2.6.11-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/c2ce622c339932e818d880f9d73e05c5cc4c7705/2.6/Dockerfile) +- [`2.6.11-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.11-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/c2ce622c339932e818d880f9d73e05c5cc4c7705/2.6/alpine/Dockerfile) +- [`2.5.13`, `2.5`, `2.5.13-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/Dockerfile) +- [`2.5.13-alpine`, `2.5-alpine`, `2.5.13-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) - [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index e89850c94bfe..8df90ddfee0c 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.9-data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.9-meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.0-data`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.0-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.0-meta`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.0-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.4`, `2.4.0`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.4/Dockerfile) -- [`2.4-alpine`, `2.4.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.4/alpine/Dockerfile) -- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.5/Dockerfile) -- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.5/alpine/Dockerfile) -- [`2.6`, `2.6.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.6/Dockerfile) -- [`2.6-alpine`, `2.6.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0dad0e063a2968dfcac43da9f2f7f2ee6b761d1b/influxdb/2.6/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/meta/alpine/Dockerfile) +- [`1.9-data`, `1.9.10-data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.10-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.10-meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.10-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.2-data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.2-meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/meta/alpine/Dockerfile) +- [`2.4`, `2.4.0`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.4/Dockerfile) +- [`2.4-alpine`, `2.4.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.4/alpine/Dockerfile) +- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.5/Dockerfile) +- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.5/alpine/Dockerfile) +- [`2.6`, `2.6.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.6/Dockerfile) +- [`2.6-alpine`, `2.6.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 0bc287f2261d..17f85b953b66 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) - [`4.0`, `4.0-20230312`, `latest`](https://github.com/vmware/photon-docker-image/blob/42dc4ab2660baaee004f2ff4fc7ecae6405418ff/docker/Dockerfile) -- [`3.0`, `3.0-20230311`](https://github.com/vmware/photon-docker-image/blob/7bbd25f6776ff099b678c9af8f3349e0431b7657/docker/Dockerfile) +- [`3.0`, `3.0-20230318`](https://github.com/vmware/photon-docker-image/blob/35972c6a2d285ee71a08785dafc32b0135a28120/docker/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c3aa84d63512..54adfe4d8147 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) -- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.11/ubuntu/Dockerfile) +- [`3.12.0-beta.2`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/ca55cfc9bcb9dd0a7c7abebd9191d0a38e90ad8c/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ca55cfc9bcb9dd0a7c7abebd9191d0a38e90ad8c/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) +- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.11/ubuntu/Dockerfile) - [`3.11.10-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.11/alpine/Dockerfile) +- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.11/alpine/Dockerfile) - [`3.11.10-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.10/ubuntu/Dockerfile) +- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/ubuntu/Dockerfile) - [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/92cf3ab7107d78127192516c4011d2daef036700/3.10/alpine/Dockerfile) +- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/alpine/Dockerfile) - [`3.10.19-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/e28a90517f64d2529b60708c5bcda5cce7b29c42/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/e28a90517f64d2529b60708c5bcda5cce7b29c42/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From b97897c2ea8f0e612f0e59aac7425e03b6228b92 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Mar 2023 17:15:27 -0700 Subject: [PATCH 0166/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ redis/README.md | 4 ++-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index a809a398efc6..1e82285d2981 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-13-jdk-oraclelinux8`, `21-ea-13-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-13-jdk-oracle`, `21-ea-13-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-13-jdk-oraclelinux7`, `21-ea-13-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-13-jdk-bullseye`, `21-ea-13-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/bullseye/Dockerfile) -- [`21-ea-13-jdk-slim-bullseye`, `21-ea-13-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-13-jdk-slim`, `21-ea-13-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-13-jdk-buster`, `21-ea-13-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/buster/Dockerfile) -- [`21-ea-13-jdk-slim-buster`, `21-ea-13-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/slim-buster/Dockerfile) -- [`21-ea-13-jdk-windowsservercore-ltsc2022`, `21-ea-13-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-13-jdk-windowsservercore-1809`, `21-ea-13-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-13-jdk-nanoserver-1809`, `21-ea-13-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-14-jdk-oraclelinux8`, `21-ea-14-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-14-jdk-oracle`, `21-ea-14-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-14-jdk-oraclelinux7`, `21-ea-14-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-14-jdk-bullseye`, `21-ea-14-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/bullseye/Dockerfile) +- [`21-ea-14-jdk-slim-bullseye`, `21-ea-14-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-14-jdk-slim`, `21-ea-14-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-14-jdk-buster`, `21-ea-14-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/buster/Dockerfile) +- [`21-ea-14-jdk-slim-buster`, `21-ea-14-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/slim-buster/Dockerfile) +- [`21-ea-14-jdk-windowsservercore-ltsc2022`, `21-ea-14-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-14-jdk-windowsservercore-1809`, `21-ea-14-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-14-jdk-nanoserver-1809`, `21-ea-14-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) - [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) - [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `21-ea-13-jdk`, `21-ea-13`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-13-jdk-windowsservercore`, `21-ea-13-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-13-jdk-nanoserver`, `21-ea-13-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/17df0c31225094e6be01d843a50bd3863eda8870/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-14-jdk`, `21-ea-14`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-14-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-14-jdk-windowsservercore`, `21-ea-14-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-14-jdk-nanoserver`, `21-ea-14-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) - `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/redis/README.md b/redis/README.md index b910bad55cbd..99861539db7b 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.9`, `7.0`, `7`, `latest`, `7.0.9-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/d77143afb3dc8d0b05225ab23b001cf6c41e1b62/7.0/Dockerfile) -- [`7.0.9-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.9-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/d77143afb3dc8d0b05225ab23b001cf6c41e1b62/7.0/alpine/Dockerfile) +- [`7.0.10`, `7.0`, `7`, `latest`, `7.0.10-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/Dockerfile) +- [`7.0.10-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.10-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/alpine/Dockerfile) - [`6.2.11`, `6.2`, `6`, `6.2.11-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/Dockerfile) - [`6.2.11-alpine`, `6.2-alpine`, `6-alpine`, `6.2.11-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/alpine/Dockerfile) - [`6.0.18`, `6.0`, `6.0.18-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/aab0267e4fdab0150c34c9241f87f6f7c6f03328/6.0/Dockerfile) From b63bc5100de58cc9ce6bb38d85946339ec9088a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Mar 2023 18:08:37 -0700 Subject: [PATCH 0167/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 54adfe4d8147..436d85164ded 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.12.0-beta.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) - [`3.12.0-beta.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ca55cfc9bcb9dd0a7c7abebd9191d0a38e90ad8c/3.12-rc/alpine/Dockerfile) - [`3.12.0-beta.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) -- [`3.11.10`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.11/ubuntu/Dockerfile) -- [`3.11.10-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.10-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.11/alpine/Dockerfile) -- [`3.11.10-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) +- [`3.11.11`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/7e15b7d8731bf100f3f7951668536ba3075d52ff/3.11/ubuntu/Dockerfile) +- [`3.11.11-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) +- [`3.11.11-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7e15b7d8731bf100f3f7951668536ba3075d52ff/3.11/alpine/Dockerfile) +- [`3.11.11-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) - [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/ubuntu/Dockerfile) - [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) - [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/alpine/Dockerfile) From 9760ad535996ebc4f770208fa612c37ed4b284f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Mar 2023 12:08:39 -0700 Subject: [PATCH 0168/2686] Run update.sh --- composer/README.md | 2 +- matomo/README.md | 6 ++-- oraclelinux/README.md | 12 ++++---- perl/README.md | 64 +++++++++++++++++++++---------------------- traefik/README.md | 4 +-- 5 files changed, 44 insertions(+), 44 deletions(-) diff --git a/composer/README.md b/composer/README.md index abb75284ffcd..f1e6ba53e0b5 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.4`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.5/Dockerfile) +- [`2.5.5`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/ff083b1338eb2b4ac3f01928b4b97637a5b9200e/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) - [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index 8b4ba0570671..df6c7f3b3e58 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.13.3-apache`, `4.13-apache`, `4-apache`, `apache`, `4.13.3`, `4.13`, `4`, `latest`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/apache/Dockerfile) -- [`4.13.3-fpm`, `4.13-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/fpm/Dockerfile) -- [`4.13.3-fpm-alpine`, `4.13-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/3d3e3aad313396484de4db134f4dfd5e71be1d27/fpm-alpine/Dockerfile) +- [`4.14.1-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.1`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/apache/Dockerfile) +- [`4.14.1-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/fpm/Dockerfile) +- [`4.14.1-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 1c8585251a2b..538830358a18 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/985b5fe156c098018f87cae55f448d16cd4bee5f/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 87d5427acfaa..3c030c7ab26d 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,38 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main-bullseye/Dockerfile) -- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main-buster/Dockerfile) -- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim-bullseye/Dockerfile) -- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim-buster/Dockerfile) -- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main,threaded-bullseye/Dockerfile) -- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-main,threaded-buster/Dockerfile) -- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim,threaded-bullseye/Dockerfile) -- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.036.000-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.032.001-slim,threaded-buster/Dockerfile) -- [`5.37.9`, `5.37`, `devel`, `5.37.9-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main-bullseye/Dockerfile) -- [`5.37.9-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main-buster/Dockerfile) -- [`5.37.9-slim`, `5.37-slim`, `devel-slim`, `5.37.9-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim-bullseye/Dockerfile) -- [`5.37.9-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim-buster/Dockerfile) -- [`5.37.9-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.9-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main,threaded-bullseye/Dockerfile) -- [`5.37.9-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-main,threaded-buster/Dockerfile) -- [`5.37.9-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.9-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim,threaded-bullseye/Dockerfile) -- [`5.37.9-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c51cdfa8f849c8eebdeff2d0b9febe0c839ab77f/5.037.009-slim,threaded-buster/Dockerfile) +- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main-bullseye/Dockerfile) +- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main-buster/Dockerfile) +- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim-bullseye/Dockerfile) +- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim-buster/Dockerfile) +- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main,threaded-bullseye/Dockerfile) +- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main,threaded-buster/Dockerfile) +- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim,threaded-bullseye/Dockerfile) +- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main-bullseye/Dockerfile) +- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main-buster/Dockerfile) +- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim-bullseye/Dockerfile) +- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim-buster/Dockerfile) +- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main,threaded-bullseye/Dockerfile) +- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main,threaded-buster/Dockerfile) +- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim,threaded-bullseye/Dockerfile) +- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.37.10`, `5.37`, `devel`, `5.37.10-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main-bullseye/Dockerfile) +- [`5.37.10-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main-buster/Dockerfile) +- [`5.37.10-slim`, `5.37-slim`, `devel-slim`, `5.37.10-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim-bullseye/Dockerfile) +- [`5.37.10-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim-buster/Dockerfile) +- [`5.37.10-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.10-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main,threaded-bullseye/Dockerfile) +- [`5.37.10-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main,threaded-buster/Dockerfile) +- [`5.37.10-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.10-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim,threaded-bullseye/Dockerfile) +- [`5.37.10-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim,threaded-buster/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 76c71f1d8436..d9c94347043c 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.9.8-windowsservercore-1809`, `2.9.8-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cde946f16566d912ccae15cf1bd9056518ef8c3d/windows/1809/Dockerfile) -- [`v2.9.8`, `2.9.8`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/cde946f16566d912ccae15cf1bd9056518ef8c3d/alpine/Dockerfile) +- [`v2.9.9-windowsservercore-1809`, `2.9.9-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/windows/1809/Dockerfile) +- [`v2.9.9`, `2.9.9`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) From 7845f384f49cf17ad1dfceabde1914e012f65de7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Mar 2023 17:14:41 -0700 Subject: [PATCH 0169/2686] Run update.sh --- varnish/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index d23cefc79802..6c1e21ca1df1 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.2.1`, `7.2`, `latest`](https://github.com/varnish/docker-varnish/blob/b62a2443a5f1b821fbb096aea9d349f0de20b0a3/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.2.1-alpine`, `7.2-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/b62a2443a5f1b821fbb096aea9d349f0de20b0a3/fresh/alpine/Dockerfile) -- [`old`, `7.1.2`, `7.1`](https://github.com/varnish/docker-varnish/blob/e7acf36bd4afd05427bc3fb251ae4b3374168f27/old/debian/Dockerfile) -- [`old-alpine`, `7.1.2-alpine`, `7.1-alpine`](https://github.com/varnish/docker-varnish/blob/e7acf36bd4afd05427bc3fb251ae4b3374168f27/old/alpine/Dockerfile) +- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/f3fa117d1308e0b521d617045666b9bb284f63b7/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/f3fa117d1308e0b521d617045666b9bb284f63b7/fresh/alpine/Dockerfile) +- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/34226613b148a3f7ca7fd6cc232fe8fb5e38aff5/old/debian/Dockerfile) +- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/34226613b148a3f7ca7fd6cc232fe8fb5e38aff5/old/alpine/Dockerfile) - [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/e7acf36bd4afd05427bc3fb251ae4b3374168f27/stable/debian/Dockerfile) # Quick reference (cont.) From 9b70e90c278670a47c771b83cacd36802a24ef8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20B=C3=A4sken?= Date: Wed, 22 Mar 2023 10:15:52 +0100 Subject: [PATCH 0170/2686] mention OpenJDK --- sapmachine/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapmachine/README-short.txt b/sapmachine/README-short.txt index a925fe198de8..50a475fa886f 100644 --- a/sapmachine/README-short.txt +++ b/sapmachine/README-short.txt @@ -1 +1 @@ -Official SapMachine Docker Image. +Official SapMachine Docker Image, SAP's build of OpenJDK. From 611e3ba03090e5b16912dc4b5eb92e1c7a6b91eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Mar 2023 16:17:05 -0700 Subject: [PATCH 0171/2686] Run update.sh --- amazoncorretto/README.md | 67 +++++++++++++++++++++------------------- arangodb/README.md | 4 +-- bash/README.md | 2 +- erlang/README.md | 6 ++-- oraclelinux/README.md | 12 +++---- traefik/README.md | 2 ++ xwiki/README.md | 6 ++-- 7 files changed, 53 insertions(+), 46 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 0614d0d30786..31b59bff5b65 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,37 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/al2/Dockerfile) -- [`8-al2022-RC`, `8u362-al2022-RC`, `8-al2022-jdk`, `8-al2022-RC-jre`, `8u362-al2022-RC-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/al2022/Dockerfile) -- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/al2/Dockerfile) -- [`11-al2022-RC`, `11.0.18-al2022-RC`, `11-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/al2022/Dockerfile) -- [`11-al2022-RC-headless`, `11.0.18-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/headless/al2022/Dockerfile) -- [`11-al2022-RC-headful`, `11.0.18-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/headful/al2022/Dockerfile) -- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/al2/Dockerfile) -- [`17-al2022-RC`, `17.0.6-al2022-RC`, `17-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/al2022/Dockerfile) -- [`17-al2022-RC-headless`, `17.0.6-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/headless/al2022/Dockerfile) -- [`17-al2022-RC-headful`, `17.0.6-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/headful/al2022/Dockerfile) -- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/17/jdk/alpine/3.17/Dockerfile) -- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/al2/Dockerfile) -- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.16/Dockerfile) -- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/67924db8205a880aa9508d8a364ee98915f303f8/19/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/al2/Dockerfile) +- [`8-al2022-RC`, `8u362-al2022-RC`, `8-al2022-jdk`, `8-al2022-RC-jre`, `8u362-al2022-RC-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/al2022/Dockerfile) +- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/al2/Dockerfile) +- [`11-al2022-RC`, `11.0.18-al2022-RC`, `11-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/al2022/Dockerfile) +- [`11-al2022-RC-headless`, `11.0.18-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/headless/al2022/Dockerfile) +- [`11-al2022-RC-headful`, `11.0.18-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/headful/al2022/Dockerfile) +- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/al2/Dockerfile) +- [`17-al2022-RC`, `17.0.6-al2022-RC`, `17-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/al2022/Dockerfile) +- [`17-al2022-RC-headless`, `17.0.6-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/headless/al2022/Dockerfile) +- [`17-al2022-RC-headful`, `17.0.6-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/headful/al2022/Dockerfile) +- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.17/Dockerfile) +- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/al2/Dockerfile) +- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.14/Dockerfile) +- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.15/Dockerfile) +- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.16/Dockerfile) +- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/al2/Dockerfile) +- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.14/Dockerfile) +- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) diff --git a/arangodb/README.md b/arangodb/README.md index c5010b95e527..e216a602203b 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.8`, `3.8.8`](https://github.com/arangodb/arangodb-docker/blob/6e5a02cd7f5106076a1faf24360218c3e2ca3003/alpine/3.8.8/Dockerfile) -- [`3.9`, `3.9.9`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.9.9/Dockerfile) -- [`3.10`, `3.10.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.10.4/Dockerfile) +- [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.9.10/Dockerfile) +- [`3.10`, `3.10.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.10.5/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 13b89a2f653b..41a5c8684617 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230313`, `devel`, `devel-20230313-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/61141e3fe0fada881673ea8af7834712dc2dd77f/devel/Dockerfile) +- [`devel-20230320`, `devel`, `devel-20230320-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ae124dfbb4c464442080c6c4b042e7d2afeb4d47/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 8c33d899618f..ae317e6b669f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0-rc1.0.0`, `26.0-rc1.0`, `26.0-rc1`, `26`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/Dockerfile) -- [`26.0-rc1.0.0-slim`, `26.0-rc1.0-slim`, `26.0-rc1-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/slim/Dockerfile) -- [`26.0-rc1.0.0-alpine`, `26.0-rc1.0-alpine`, `26.0-rc1-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/26/alpine/Dockerfile) +- [`26.0-rc2.0.0`, `26.0-rc2.0`, `26.0-rc2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/Dockerfile) +- [`26.0-rc2.0.0-slim`, `26.0-rc2.0-slim`, `26.0-rc2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/slim/Dockerfile) +- [`26.0-rc2.0.0-alpine`, `26.0-rc2.0-alpine`, `26.0-rc2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/alpine/Dockerfile) - [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) - [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) - [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 538830358a18..2754e0d69bf8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/dd580014c61a48acfb494ab5a03c9e6b4e9a2e53/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index d9c94347043c..c6d01949cc64 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -28,6 +28,8 @@ WARNING: - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) - [`v2.9.9-windowsservercore-1809`, `2.9.9-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/windows/1809/Dockerfile) - [`v2.9.9`, `2.9.9`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/alpine/Dockerfile) +- [`v2.10.0-rc1-windowsservercore-1809`, `2.10.0-rc1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/windows/1809/Dockerfile) +- [`v2.10.0-rc1`, `2.10.0-rc1`, `v2.10`, `2.10`, `saintmarcelin`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index bd8388e30938..d16057fc32da 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.1`, `15.1.0`, `15-mysql-tomcat`, `15.1-mysql-tomcat`, `15.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.1-postgres-tomcat`, `15.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.1-mariadb-tomcat`, `15.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.6`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.7`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From d68f8adab34d702949e0cd002da800c1c5cbab0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Mar 2023 17:08:46 -0700 Subject: [PATCH 0172/2686] Run update.sh --- cassandra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/README.md b/cassandra/README.md index ce8e2edb4681..7073d4d9900d 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/4.1/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/f4c092b5dd80ccf6eaf656965b6c3738e32f6534/4.1/Dockerfile) - [`4.0.8`, `4.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/4.0/Dockerfile) - [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.11/Dockerfile) - [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.0/Dockerfile) From 2f18ff907f6ae526d1c105e9d6b113c06f6739a4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Mar 2023 18:14:34 -0700 Subject: [PATCH 0173/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++----------------------- docker/README.md | 20 +++++++++---------- nextcloud/README.md | 18 ++++++++--------- openjdk/README.md | 18 ----------------- redis/README.md | 2 ++ wordpress/README.md | 18 ++++++++--------- 6 files changed, 54 insertions(+), 70 deletions(-) diff --git a/debian/README.md b/debian/README.md index 5a02d94a1e2b..26e0cb5c21be 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230227`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230227-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230227`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230227-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/rc-buggy/Dockerfile) -- [`sid`, `sid-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/sid/Dockerfile) -- [`sid-slim`, `sid-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/sid/slim/Dockerfile) -- [`stable`, `stable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/stable/slim/Dockerfile) -- [`testing`, `testing-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230227`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230227-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fe5738569aad49a97cf73183a8a6b2732fe57840/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230320`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230320-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230320`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230320-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/rc-buggy/Dockerfile) +- [`sid`, `sid-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/sid/Dockerfile) +- [`sid-slim`, `sid-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/sid/slim/Dockerfile) +- [`stable`, `stable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/slim/Dockerfile) +- [`testing`, `testing-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 80e1637ed8a4..497ebe46661b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/2efbb5c7c69a0104f0c965e7cc7b33658fdf9602/23.0/cli/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/cli/Dockerfile) - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/2efbb5c7c69a0104f0c965e7cc7b33658fdf9602/20.10/cli/Dockerfile) +- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `23.0.1-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/23.0/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1497727a0ec70e78a78563f365c76a21749ac27a/20.10/windows/windowsservercore-1809/Dockerfile) + - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 0c335b467f72..fdb81fd41338 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23.0.12-apache`, `23.0-apache`, `23-apache`, `23.0.12`, `23.0`, `23`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/apache/Dockerfile) -- [`23.0.12-fpm`, `23.0-fpm`, `23-fpm`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/fpm/Dockerfile) -- [`23.0.12-fpm-alpine`, `23.0-fpm-alpine`, `23-fpm-alpine`](https://github.com/nextcloud/docker/blob/2a5b0881cd61e0fcd5611bf93034d68e562564f8/23/fpm-alpine/Dockerfile) -- [`24.0.10-apache`, `24.0-apache`, `24-apache`, `24.0.10`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/apache/Dockerfile) -- [`24.0.10-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/fpm/Dockerfile) -- [`24.0.10-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/24/fpm-alpine/Dockerfile) -- [`25.0.4-apache`, `25.0-apache`, `25-apache`, `apache`, `stable-apache`, `production-apache`, `25.0.4`, `25.0`, `25`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/apache/Dockerfile) -- [`25.0.4-fpm`, `25.0-fpm`, `25-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/fpm/Dockerfile) -- [`25.0.4-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/d266acccf0434dd9fedba63218cfde912be40cc5/25/fpm-alpine/Dockerfile) +- [`24.0.10-apache`, `24.0-apache`, `24-apache`, `24.0.10`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/apache/Dockerfile) +- [`24.0.10-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/fpm/Dockerfile) +- [`24.0.10-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/fpm-alpine/Dockerfile) +- [`25.0.4-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.4`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/apache/Dockerfile) +- [`25.0.4-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/fpm/Dockerfile) +- [`25.0.4-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/fpm-alpine/Dockerfile) +- [`26.0.0-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/apache/Dockerfile) +- [`26.0.0-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/fpm/Dockerfile) +- [`26.0.0-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/289f0bb8a3f1bd24d1633bbd01798c5476368827/26/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 1e82285d2981..a398091e92c2 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -51,15 +51,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`21-ea-14-jdk-windowsservercore-ltsc2022`, `21-ea-14-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21-ea-14-jdk-windowsservercore-1809`, `21-ea-14-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) - [`21-ea-14-jdk-nanoserver-1809`, `21-ea-14-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`20-rc-jdk-oraclelinux8`, `20-rc-oraclelinux8`, `20-jdk-oraclelinux8`, `20-oraclelinux8`, `20-rc-jdk-oracle`, `20-rc-oracle`, `20-jdk-oracle`, `20-oracle`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) -- [`20-rc-jdk-oraclelinux7`, `20-rc-oraclelinux7`, `20-jdk-oraclelinux7`, `20-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux7/Dockerfile) -- [`20-rc-jdk-bullseye`, `20-rc-bullseye`, `20-jdk-bullseye`, `20-bullseye`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/bullseye/Dockerfile) -- [`20-rc-jdk-slim-bullseye`, `20-rc-slim-bullseye`, `20-jdk-slim-bullseye`, `20-slim-bullseye`, `20-rc-jdk-slim`, `20-rc-slim`, `20-jdk-slim`, `20-slim`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/slim-bullseye/Dockerfile) -- [`20-rc-jdk-buster`, `20-rc-buster`, `20-jdk-buster`, `20-buster`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/buster/Dockerfile) -- [`20-rc-jdk-slim-buster`, `20-rc-slim-buster`, `20-jdk-slim-buster`, `20-slim-buster`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/slim-buster/Dockerfile) -- [`20-rc-jdk-windowsservercore-ltsc2022`, `20-rc-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20-rc-jdk-windowsservercore-1809`, `20-rc-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) -- [`20-rc-jdk-nanoserver-1809`, `20-rc-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -72,15 +63,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`21-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21-ea-14-jdk-nanoserver`, `21-ea-14-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - [`21-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) -- `20-rc-jdk`, `20-rc`, `20-jdk`, `20`: - - [`20-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/oraclelinux8/Dockerfile) - - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-rc-jdk-windowsservercore`, `20-rc-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/windowsservercore-1809/Dockerfile) -- `20-rc-jdk-nanoserver`, `20-rc-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8f4b960d194f603f78a9371867cb7c87654b900/20/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 99861539db7b..26ef9468bf71 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/Dockerfile) +- [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.17`, `7.2-rc-alpine3.17`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/alpine/Dockerfile) - [`7.0.10`, `7.0`, `7`, `latest`, `7.0.10-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/Dockerfile) - [`7.0.10-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.10-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/alpine/Dockerfile) - [`6.2.11`, `6.2`, `6`, `6.2.11-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index f7dc942f3b35..f0065b50a5d1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC2-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC2`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC2-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC2-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC2-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC2-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC2-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC2-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC2-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC2-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC2-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC2-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC2-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC2-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC2-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC2-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c2b59a29c069b2d1d29b58ec8ac8b6bcd605c9dc/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC3-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC3`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC3-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC3-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC3-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC3-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC3-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC3-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC3-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC3-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC3-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC3-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC3-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC3-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC3-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC3-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 9862cd91da6287d1f9a55c0e70aa352ba2207867 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Mar 2023 12:08:39 -0700 Subject: [PATCH 0174/2686] Run update.sh --- crate/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crate/README.md b/crate/README.md index b23a93bdad13..693c2f508134 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.3`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/c495058a18937a134d215025642912b978eb57ad/Dockerfile) +- [`5.2.5`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/c98d17879824e2cbc4522d6591db77d6ac74bc5a/Dockerfile) - [`5.1.4`, `5.1`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) From d7efdbf7bff6694926dc950d31ed8c7f540e1655 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Mar 2023 14:08:40 -0700 Subject: [PATCH 0175/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- swipl/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/rust/README.md b/rust/README.md index 7cb109064648..85f8a1b7971f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.68-buster`, `1.68.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/buster/Dockerfile) -- [`1-slim-buster`, `1.68-slim-buster`, `1.68.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.68-bullseye`, `1.68.0-bullseye`, `bullseye`, `1`, `1.68`, `1.68.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.68-bookworm`, `1.68.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/47f53b0d7133f6f42e25499605b019bbdc7c7693/1.68.0/alpine3.17/Dockerfile) +- [`1-buster`, `1.68-buster`, `1.68.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/buster/Dockerfile) +- [`1-slim-buster`, `1.68-slim-buster`, `1.68.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.68-bullseye`, `1.68.1-bullseye`, `bullseye`, `1`, `1.68`, `1.68.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.68-bookworm`, `1.68.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.1-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.1-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/alpine3.17/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index be47833c6aad..2271a8413130 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.5`](https://github.com/SWI-Prolog/docker-swipl/blob/67b156afb3feb8e0a4537bfb7671662f12526156/9.1.5/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/67b156afb3feb8e0a4537bfb7671662f12526156/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.8`](https://github.com/SWI-Prolog/docker-swipl/blob/6b9f59764967f0b615220c939aedc9eec22cce23/9.1.8/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/6b9f59764967f0b615220c939aedc9eec22cce23/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 8f871b8cd60e15ef1f25b819ad9e8c7381c01270 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Mar 2023 15:14:56 -0700 Subject: [PATCH 0176/2686] Run update.sh --- dart/README.md | 4 ++-- flink/README.md | 6 ++++-- rabbitmq/README.md | 8 ++++---- wordpress/README.md | 18 +++++++++--------- zookeeper/README.md | 3 +-- 5 files changed, 20 insertions(+), 19 deletions(-) diff --git a/dart/README.md b/dart/README.md index 8d1216d0d0b7..8eab874f4792 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.4-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.4`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/1e35636878cd8d5d70b7279599e5249c62a419f0/stable/bullseye/Dockerfile) -- [`3.0.0-290.2.beta-sdk`, `beta-sdk`, `3.0.0-290.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/1e35636878cd8d5d70b7279599e5249c62a419f0/beta/bullseye/Dockerfile) +- [`2.19.5-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.5`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2f0e2501986073c1f546701f283a052847fbcf96/stable/bullseye/Dockerfile) +- [`3.0.0-290.3.beta-sdk`, `beta-sdk`, `3.0.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2f0e2501986073c1f546701f283a052847fbcf96/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 9fa4bd75d59d..54544ee5fead 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.1-scala_2.12-java8`, `1.16-scala_2.12-java8`, `scala_2.12-java8`, `1.16.1-java8`, `1.16-java8`, `java8`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.1-scala_2.12-java11`, `1.16-scala_2.12-java11`, `scala_2.12-java11`, `1.16.1-scala_2.12`, `1.16-scala_2.12`, `scala_2.12`, `1.16.1-java11`, `1.16-java11`, `java11`, `1.16.1`, `1.16`, `latest`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.0-scala_2.12-java8`, `1.17-scala_2.12-java8`, `scala_2.12-java8`, `1.17.0-java8`, `1.17-java8`, `java8`](https://github.com/apache/flink-docker/blob/1cb66d334bd1a1a9a7627c47478a31afed542aab/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.0-scala_2.12-java11`, `1.17-scala_2.12-java11`, `scala_2.12-java11`, `1.17.0-scala_2.12`, `1.17-scala_2.12`, `scala_2.12`, `1.17.0-java11`, `1.17-java11`, `java11`, `1.17.0`, `1.17`, `latest`](https://github.com/apache/flink-docker/blob/1cb66d334bd1a1a9a7627c47478a31afed542aab/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.16.1-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.1-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.16.1-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.1-scala_2.12`, `1.16-scala_2.12`, `1.16.1-java11`, `1.16-java11`, `1.16.1`, `1.16`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java11-ubuntu/Dockerfile) - [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java8-ubuntu/Dockerfile) - [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java11-ubuntu/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 436d85164ded..14535e7f01d1 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,10 +32,10 @@ WARNING: - [`3.11.11-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) - [`3.11.11-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7e15b7d8731bf100f3f7951668536ba3075d52ff/3.11/alpine/Dockerfile) - [`3.11.11-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.19`, `3.10`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/ubuntu/Dockerfile) -- [`3.10.19-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.10/alpine/Dockerfile) -- [`3.10.19-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) +- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/68048c872d80fd8940e3b8a9965cde2f4211bfef/3.10/ubuntu/Dockerfile) +- [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) +- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/68048c872d80fd8940e3b8a9965cde2f4211bfef/3.10/alpine/Dockerfile) +- [`3.10.20-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) - [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index f0065b50a5d1..de62b245a177 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC3-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC3`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC3-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC3-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC3-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC3-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC3-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC3-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC3-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC3-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC3-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC3-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC3-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC3-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC3-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC3-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f7f171e0e6bec88ffa0edd58ca1c512d286ab18d/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/zookeeper/README.md b/zookeeper/README.md index 58dcaf54ac53..d34ab56cb2fb 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,7 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.4`, `3.6`, `3.6.4-temurin`, `3.6-temurin`](https://github.com/31z4/zookeeper-docker/blob/80d975e5c07f2f1e981fd2d61c9e1dfc3f980b80/3.6.4/Dockerfile) - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) - [`3.8.1`, `3.8`, `3.8.1-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/b078affda60681e71b71760740e795328c9d1ab5/3.8.1/Dockerfile) @@ -34,7 +33,7 @@ WARNING: [https://github.com/31z4/zookeeper-docker/issues](https://github.com/31z4/zookeeper-docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/) + [`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/), [`s390x`](https://hub.docker.com/r/s390x/zookeeper/) - **Published image artifact details**: [repo-info repo's `repos/zookeeper/` directory](https://github.com/docker-library/repo-info/blob/master/repos/zookeeper) ([history](https://github.com/docker-library/repo-info/commits/master/repos/zookeeper)) From 82db7e17f12b5c84f4cb71319d47c1a7e66bf11b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Mar 2023 13:21:03 -0700 Subject: [PATCH 0177/2686] Run update.sh --- sapmachine/README.md | 3 ++- solr/README.md | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/sapmachine/README.md b/sapmachine/README.md index 21a21bb733ac..4927cf4d027c 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -26,7 +26,8 @@ WARNING: - [`11`, `11.0.18`](https://github.com/SAP/SapMachine-infrastructure/blob/1d9a8aa21f4cb661656e617b0133b7d154c3992b/dockerfiles/official/11/Dockerfile) - [`17`, `17.0.6`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/8d5fd07f2e40428a2027de2abf78ac9be0e3bc9d/dockerfiles/official/17/Dockerfile) -- [`19`, `19.0.2`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/c515da6c71d27d6bbf8fca4c0e782a50e9f8319c/dockerfiles/official/19/Dockerfile) +- [`19`, `19.0.2`](https://github.com/SAP/SapMachine-infrastructure/blob/c515da6c71d27d6bbf8fca4c0e782a50e9f8319c/dockerfiles/official/19/Dockerfile) +- [`20`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/b0f930a0c42d3e856e6ee459c569c69336a5b00a/dockerfiles/official/20/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 2b69dcfa8948..25ab4161ae51 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,10 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.1`, `9.1`, `9`, `latest`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/40c0ec4e3220faa34d343828b5a7b7aa37fee6f0/8.11-slim/Dockerfile) +- [`9.2.0`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/8.11-slim/Dockerfile) # Quick reference (cont.) From 7562cdb26c3e7460143bb20ec8a2b300d177b087 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Mar 2023 14:16:18 -0700 Subject: [PATCH 0178/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 294f1446721a..63af57dba8ba 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.0`, `5.5.0-community`, `5.5`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/community/Dockerfile) -- [`5.5.0-enterprise`, `5.5-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f977a1ceaca22a13affc861b09995a88a2f2145f/5.5.0/enterprise/Dockerfile) +- [`5.6.0`, `5.6.0-community`, `5.6`, `5.6-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/community/Dockerfile) +- [`5.6.0-enterprise`, `5.6-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/enterprise/Dockerfile) - [`4.4.18`, `4.4.18-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/community/Dockerfile) - [`4.4.18-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/enterprise/Dockerfile) From d2fec9f01d4bca46930ca72dda2c97ca97657a6d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Mar 2023 16:16:13 -0700 Subject: [PATCH 0179/2686] Run update.sh --- amazoncorretto/README.md | 72 ++++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 31b59bff5b65..ad22728a6ba3 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,42 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/al2/Dockerfile) -- [`8-al2022-RC`, `8u362-al2022-RC`, `8-al2022-jdk`, `8-al2022-RC-jre`, `8u362-al2022-RC-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/al2022/Dockerfile) -- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/al2/Dockerfile) -- [`11-al2022-RC`, `11.0.18-al2022-RC`, `11-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/al2022/Dockerfile) -- [`11-al2022-RC-headless`, `11.0.18-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/headless/al2022/Dockerfile) -- [`11-al2022-RC-headful`, `11.0.18-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/headful/al2022/Dockerfile) -- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/al2/Dockerfile) -- [`17-al2022-RC`, `17.0.6-al2022-RC`, `17-al2022-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/al2022/Dockerfile) -- [`17-al2022-RC-headless`, `17.0.6-al2022-RC-headless`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/headless/al2022/Dockerfile) -- [`17-al2022-RC-headful`, `17.0.6-al2022-RC-headful`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/headful/al2022/Dockerfile) -- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/17/jdk/alpine/3.17/Dockerfile) -- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/al2/Dockerfile) -- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.16/Dockerfile) -- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/19/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/al2/Dockerfile) -- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.14/Dockerfile) -- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/d07db4edeaa4051c4b96fd14d897fa50ac0f8971/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/al2/Dockerfile) +- [`8-al2023-RC`, `8u362-al2023-RC`, `8-al2023-jdk`, `8-al2023-RC-jre`, `8u362-al2023-RC-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/al2023/Dockerfile) +- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/al2/Dockerfile) +- [`11-al2023-RC`, `11.0.18-al2023-RC`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/al2023/Dockerfile) +- [`11-al2023-RC-headless`, `11.0.18-al2023-RC-headless`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/headless/al2023/Dockerfile) +- [`11-al2023-RC-headful`, `11.0.18-al2023-RC-headful`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/headful/al2023/Dockerfile) +- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/al2/Dockerfile) +- [`17-al2023-RC`, `17.0.6-al2023-RC`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/al2023/Dockerfile) +- [`17-al2023-RC-headless`, `17.0.6-al2023-RC-headless`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/headless/al2023/Dockerfile) +- [`17-al2023-RC-headful`, `17.0.6-al2023-RC-headful`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/headful/al2023/Dockerfile) +- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.17/Dockerfile) +- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/al2/Dockerfile) +- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.14/Dockerfile) +- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.15/Dockerfile) +- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.16/Dockerfile) +- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/al2/Dockerfile) +- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.14/Dockerfile) +- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) From bfce3b6c0c694e72fc2b1e4b39b854668aba9998 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Mar 2023 17:16:31 -0700 Subject: [PATCH 0180/2686] Run update.sh --- drupal/README.md | 68 ++++++++++++++++++++++++------------------------ ghost/README.md | 4 +-- kong/README.md | 6 +++-- 3 files changed, 40 insertions(+), 38 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 188a70f1d109..540d721684a5 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,40 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.5-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.5-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.5-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.5-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.5-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.5`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.5-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.5-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.5-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.5-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.5-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.5-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.5-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.5-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.5-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.5-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.5-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.5-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.5-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.5-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.5-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.5-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.5-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.5-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.5-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.5-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.5-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.5-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.5-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.5-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/460e2e5560fed06e27057c7c75c7269c762583f0/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.5-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.5-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.5-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.5-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.5-apache`, `9.5-apache`, `9-apache`, `9.5.5`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.5-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.5-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.5-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.5-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.5-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.5-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.5-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.5-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.5-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.5-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.5-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.5-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.5-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.5-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.5-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.5-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.5-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.5-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.5-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.5-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.5-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.5-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/9072f6d9eedb3853debb86ef3ae125939dbe8315/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.12-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.12-php8.1-apache`, `9.4-php8.1-apache`, `9.4.12-php8.1`, `9.4-php8.1`, `9.4.12-apache-bullseye`, `9.4-apache-bullseye`, `9.4.12-apache`, `9.4-apache`, `9.4.12`, `9.4`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.12-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.12-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.12-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.12-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.12-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.12-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.12-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.12-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.12-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.12-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.12-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.12-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.12-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.12-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.12-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.12-php8.0-apache`, `9.4-php8.0-apache`, `9.4.12-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.12-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.12-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.12-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.12-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.12-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/a8f4765a6448fcc17496a66bceff6fdfa3e6ff15/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.7-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.7-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.7-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.7-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.7-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.7`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.7-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.7-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.7-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.7-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.7-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.7-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.7-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.7-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.7-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.7-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.7-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.7-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.7-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.7-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.7-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.7-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.7-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.7-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.7-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.7-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.7-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.7-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.7-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.7-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.7-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.7-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.7-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.7-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.7-apache`, `9.5-apache`, `9-apache`, `9.5.7`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.7-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.7-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.7-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.7-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.7-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.7-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.7-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.7-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.7-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.7-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.7-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.7-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.7-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.7-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.7-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.7-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.7-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.7-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.7-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.7-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.7-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.7-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.13-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.13-php8.1-apache`, `9.4-php8.1-apache`, `9.4.13-php8.1`, `9.4-php8.1`, `9.4.13-apache-bullseye`, `9.4-apache-bullseye`, `9.4.13-apache`, `9.4-apache`, `9.4.13`, `9.4`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.13-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.13-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.13-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.13-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.13-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.13-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.13-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.13-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.13-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.13-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.13-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.13-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.13-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.13-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.13-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.13-php8.0-apache`, `9.4-php8.0-apache`, `9.4.13-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.13-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.13-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.13-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.13-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.13-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-alpine3.16/Dockerfile) - [`7.95-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.95-php8.0-apache`, `7-php8.0-apache`, `7.95-php8.0`, `7-php8.0`, `7.95-apache-bullseye`, `7-apache-bullseye`, `7.95-apache`, `7-apache`, `7.95`, `7`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-bullseye/Dockerfile) - [`7.95-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.95-php8.0-fpm`, `7-php8.0-fpm`, `7.95-fpm-bullseye`, `7-fpm-bullseye`, `7.95-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-bullseye/Dockerfile) - [`7.95-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.95-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-buster/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 55247491dd5d..7b12b18e8775 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.39.0`, `5.39`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f71cd727b1ac2412e99e1e1d700d33fc649c7f16/5/debian/Dockerfile) -- [`5.39.0-alpine`, `5.39-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f71cd727b1ac2412e99e1e1d700d33fc649c7f16/5/alpine/Dockerfile) +- [`5.40.1`, `5.40`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5ecf7350c5c719298a9078ff9676912b6cc6ce1e/5/debian/Dockerfile) +- [`5.40.1-alpine`, `5.40-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5ecf7350c5c719298a9078ff9676912b6cc6ce1e/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/kong/README.md b/kong/README.md index b73265abf0e3..083765a78980 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.1-alpine`, `3.1.1`, `3.1`, `3`, `alpine`, `latest`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) -- [`3.1.1-ubuntu`, `3.1-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) +- [`3.2.2-alpine`, `3.2.2`, `3.2`, `3`, `alpine`, `latest`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) +- [`3.2.2-ubuntu`, `3.2-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) +- [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) +- [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) - [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) - [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/alpine/Dockerfile) From 8de5b3c2da9d9ccb77f9140e9758f29ac7eb675a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Mar 2023 11:16:42 -0700 Subject: [PATCH 0181/2686] Run update.sh --- emqx/README.md | 2 +- photon/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index cee1682f5af8..02799510673b 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.16`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/4.4/Dockerfile) -- [`5.0.20`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/5.0/Dockerfile) +- [`5.0.21`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/8bda3215370c60fdefd197e2d033ed0bc12a2ade/5.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 17f85b953b66..cb44e0e0f02d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) -- [`4.0`, `4.0-20230312`, `latest`](https://github.com/vmware/photon-docker-image/blob/42dc4ab2660baaee004f2ff4fc7ecae6405418ff/docker/Dockerfile) -- [`3.0`, `3.0-20230318`](https://github.com/vmware/photon-docker-image/blob/35972c6a2d285ee71a08785dafc32b0135a28120/docker/Dockerfile) +- [`4.0`, `4.0-20230325`, `latest`](https://github.com/vmware/photon-docker-image/blob/3e4ec8a42f888ebc82904a3422fcc52e03ca65ba/docker/Dockerfile) +- [`3.0`, `3.0-20230325`](https://github.com/vmware/photon-docker-image/blob/d197197ed523286fa4e0867a8eaa3864ebabb446/docker/Dockerfile) # Quick reference (cont.) From 57517eae5fb92788905ac91e7028f129a8c71244 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Mar 2023 12:15:04 -0700 Subject: [PATCH 0182/2686] Run update.sh --- phpmyadmin/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index c3db6c8238d7..22e46498c43b 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/a1772debe412415732d97e0ca195b2ad554ed37f/fpm-alpine/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/apache/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/fpm/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/fpm-alpine/Dockerfile) # Quick reference (cont.) From 104f8b239a591618d35e169e06a85c5d5c9f7c0e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Mar 2023 13:16:54 -0700 Subject: [PATCH 0183/2686] Run update.sh --- amazoncorretto/README.md | 72 +++++++++++++++++++-------------------- clearlinux/README.md | 2 +- eclipse-temurin/README.md | 72 ++++++++++++++++++--------------------- nextcloud/README.md | 12 +++---- xwiki/README.md | 6 ++-- 5 files changed, 80 insertions(+), 84 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index ad22728a6ba3..33399e2348e2 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,42 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/al2/Dockerfile) -- [`8-al2023-RC`, `8u362-al2023-RC`, `8-al2023-jdk`, `8-al2023-RC-jre`, `8u362-al2023-RC-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/al2023/Dockerfile) -- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/al2/Dockerfile) -- [`11-al2023-RC`, `11.0.18-al2023-RC`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/al2023/Dockerfile) -- [`11-al2023-RC-headless`, `11.0.18-al2023-RC-headless`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/headless/al2023/Dockerfile) -- [`11-al2023-RC-headful`, `11.0.18-al2023-RC-headful`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/headful/al2023/Dockerfile) -- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/al2/Dockerfile) -- [`17-al2023-RC`, `17.0.6-al2023-RC`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/al2023/Dockerfile) -- [`17-al2023-RC-headless`, `17.0.6-al2023-RC-headless`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/headless/al2023/Dockerfile) -- [`17-al2023-RC-headful`, `17.0.6-al2023-RC-headful`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/headful/al2023/Dockerfile) -- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/17/jdk/alpine/3.17/Dockerfile) -- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/al2/Dockerfile) -- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.16/Dockerfile) -- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/19/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/al2/Dockerfile) -- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.14/Dockerfile) -- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89f3ffd0116c0ade71636d8084a6e4163467e89f/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/al2/Dockerfile) +- [`8-al2023`, `8u362-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u362-al2023-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/al2023/Dockerfile) +- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/al2/Dockerfile) +- [`11-al2023`, `11.0.18-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.18-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.18-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/headful/al2023/Dockerfile) +- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/al2/Dockerfile) +- [`17-al2023`, `17.0.6-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/headful/al2023/Dockerfile) +- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.17/Dockerfile) +- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/al2/Dockerfile) +- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.14/Dockerfile) +- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.15/Dockerfile) +- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.16/Dockerfile) +- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/al2/Dockerfile) +- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.14/Dockerfile) +- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index cd7399d9e5f4..2ae8ea68117f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/76173e2f8f6d04ef5fbc2b21724b80f54f7926dc/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ded2505524da863aa66c7b314acceb7c2f6b6f3c/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index eb4a3c00fea1..877b5aa7f408 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -82,24 +82,20 @@ WARNING: - [`17.0.6_10-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.6_10-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.6_10-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`19.0.2_7-jdk-alpine`, `19-jdk-alpine`, `19-alpine`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/alpine/Dockerfile.releases.full) -- [`19.0.2_7-jdk-focal`, `19-jdk-focal`, `19-focal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`19.0.2_7-jdk-jammy`, `19-jdk-jammy`, `19-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`19.0.2_7-jdk-centos7`, `19-jdk-centos7`, `19-centos7`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/centos/Dockerfile.releases.full) -- [`19.0.2_7-jdk-ubi9-minimal`, `19-jdk-ubi9-minimal`, `19-ubi9-minimal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`19.0.2_7-jdk-windowsservercore-ltsc2022`, `19-jdk-windowsservercore-ltsc2022`, `19-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`19.0.2_7-jdk-nanoserver-ltsc2022`, `19-jdk-nanoserver-ltsc2022`, `19-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`19.0.2_7-jdk-windowsservercore-1809`, `19-jdk-windowsservercore-1809`, `19-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`19.0.2_7-jdk-nanoserver-1809`, `19-jdk-nanoserver-1809`, `19-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`19.0.2_7-jre-alpine`, `19-jre-alpine`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/alpine/Dockerfile.releases.full) -- [`19.0.2_7-jre-focal`, `19-jre-focal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/focal/Dockerfile.releases.full) -- [`19.0.2_7-jre-jammy`, `19-jre-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`19.0.2_7-jre-centos7`, `19-jre-centos7`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/centos/Dockerfile.releases.full) -- [`19.0.2_7-jre-ubi9-minimal`, `19-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`19.0.2_7-jre-windowsservercore-ltsc2022`, `19-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`19.0.2_7-jre-nanoserver-ltsc2022`, `19-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`19.0.2_7-jre-windowsservercore-1809`, `19-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`19.0.2_7-jre-nanoserver-1809`, `19-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20_36-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/alpine/Dockerfile.releases.full) +- [`20_36-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20_36-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20_36-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20_36-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20_36-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20_36-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20_36-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/alpine/Dockerfile.releases.full) +- [`20_36-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20_36-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20_36-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20_36-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20_36-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20_36-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags @@ -163,26 +159,26 @@ WARNING: - `17.0.6_10-jre-nanoserver`, `17-jre-nanoserver`: - [`17.0.6_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.6_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `19.0.2_7-jdk`, `19-jdk`, `19`, `latest`: - - [`19.0.2_7-jdk-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`19.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.2_7-jdk-windowsservercore`, `19-jdk-windowsservercore`, `19-windowsservercore`: - - [`19.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.2_7-jdk-nanoserver`, `19-jdk-nanoserver`, `19-nanoserver`: - - [`19.0.2_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `19.0.2_7-jre`, `19-jre`: - - [`19.0.2_7-jre-jammy`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`19.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.2_7-jre-windowsservercore`, `19-jre-windowsservercore`: - - [`19.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `19.0.2_7-jre-nanoserver`, `19-jre-nanoserver`: - - [`19.0.2_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`19.0.2_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a7031bd7bfbfb669ba2a4d081e87f1dd7aaed05b/19/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `20_36-jdk`, `20-jdk`, `20`, `latest`: + - [`20_36-jdk-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20_36-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20_36-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `20_36-jre`, `20-jre`: + - [`20_36-jre-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20_36-jre-windowsservercore`, `20-jre-windowsservercore`: + - [`20_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20_36-jre-nanoserver`, `20-jre-nanoserver`: + - [`20_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index fdb81fd41338..4634970b3aa6 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24.0.10-apache`, `24.0-apache`, `24-apache`, `24.0.10`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/apache/Dockerfile) -- [`24.0.10-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/fpm/Dockerfile) -- [`24.0.10-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/24/fpm-alpine/Dockerfile) -- [`25.0.4-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.4`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/apache/Dockerfile) -- [`25.0.4-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/fpm/Dockerfile) -- [`25.0.4-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/6cb8913dc4e126b1bfc348b3d95d62c51591986d/25/fpm-alpine/Dockerfile) +- [`24.0.11-apache`, `24.0-apache`, `24-apache`, `24.0.11`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/apache/Dockerfile) +- [`24.0.11-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/fpm/Dockerfile) +- [`24.0.11-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/fpm-alpine/Dockerfile) +- [`25.0.5-apache`, `25.0-apache`, `25-apache`, `25.0.5`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/apache/Dockerfile) +- [`25.0.5-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/fpm/Dockerfile) +- [`25.0.5-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/fpm-alpine/Dockerfile) - [`26.0.0-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/apache/Dockerfile) - [`26.0.0-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/fpm/Dockerfile) - [`26.0.0-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/289f0bb8a3f1bd24d1633bbd01798c5476368827/26/fpm-alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index d16057fc32da..2412bd121c22 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.1`, `15.1.0`, `15-mysql-tomcat`, `15.1-mysql-tomcat`, `15.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.1-postgres-tomcat`, `15.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.1-mariadb-tomcat`, `15.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ae71330a113a1b983353d44a2af4866dca077b15/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.2`, `15.2.0`, `15-mysql-tomcat`, `15.2-mysql-tomcat`, `15.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.2-postgres-tomcat`, `15.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.2-mariadb-tomcat`, `15.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.7`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mariadb-tomcat/Dockerfile) From 11d9e377963c9177cb11d4bf394af683704a33f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Mar 2023 15:08:48 -0700 Subject: [PATCH 0184/2686] Run update.sh --- cassandra/README.md | 8 ++--- docker/README.md | 20 ++++++------ golang/README.md | 20 ++++++------ openjdk/README.md | 36 ++++++++++----------- php/README.md | 78 ++++++++++++++++++++++----------------------- postgres/README.md | 20 ++++++------ ruby/README.md | 44 ++++++++++++------------- tomcat/README.md | 42 ++++++++++++------------ wordpress/README.md | 36 ++++++++++----------- 9 files changed, 152 insertions(+), 152 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 7073d4d9900d..a770d9de6ad7 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/f4c092b5dd80ccf6eaf656965b6c3738e32f6534/4.1/Dockerfile) -- [`4.0.8`, `4.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/4.0/Dockerfile) -- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.11/Dockerfile) -- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/bbe25add57171af90838151e419b7cdafc921e3c/3.0/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/8ae7e0d435107e968e9609567ef772876ea7d512/4.1/Dockerfile) +- [`4.0.8`, `4.0`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/4.0/Dockerfile) +- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.11/Dockerfile) +- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.0/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 497ebe46661b..b20b7d60860d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/cli/Dockerfile) +- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/cli/Dockerfile) - [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) - [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) - [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/cli/Dockerfile) +- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) - [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-1809/Dockerfile) +- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `23.0.1-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fab79131966992c026631b6699f7131e175a8a75/23.0/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b52b53bd52b7237db7e2d549ea4026329a623987/20.10/windows/windowsservercore-1809/Dockerfile) + - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 48fb8bb96454..bd45f9ce90c4 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`1.20.2-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/bullseye/Dockerfile) -- [`1.20.2-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/buster/Dockerfile) -- [`1.20.2-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.2-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/alpine3.17/Dockerfile) -- [`1.20.2-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/alpine3.16/Dockerfile) +- [`1.20.2-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/bullseye/Dockerfile) +- [`1.20.2-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/buster/Dockerfile) +- [`1.20.2-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.2-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/alpine3.17/Dockerfile) +- [`1.20.2-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/alpine3.16/Dockerfile) - [`1.20.2-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.2-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.2-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.2-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.7-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/bullseye/Dockerfile) -- [`1.19.7-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/buster/Dockerfile) -- [`1.19.7-alpine3.17`, `1.19-alpine3.17`, `1.19.7-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/alpine3.17/Dockerfile) -- [`1.19.7-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/alpine3.16/Dockerfile) +- [`1.19.7-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/bullseye/Dockerfile) +- [`1.19.7-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/buster/Dockerfile) +- [`1.19.7-alpine3.17`, `1.19-alpine3.17`, `1.19.7-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/alpine3.17/Dockerfile) +- [`1.19.7-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/alpine3.16/Dockerfile) - [`1.19.7-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.7-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) - [`1.19.7-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.20.2`, `1.20`, `1`, `latest`: - - [`1.20.2-bullseye`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/bullseye/Dockerfile) + - [`1.20.2-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/bullseye/Dockerfile) - [`1.20.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) - `1.20.2-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -58,7 +58,7 @@ WARNING: - [`1.20.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) - `1.19.7`, `1.19`: - - [`1.19.7-bullseye`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/bullseye/Dockerfile) + - [`1.19.7-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/bullseye/Dockerfile) - [`1.19.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) - `1.19.7-windowsservercore`, `1.19-windowsservercore`: diff --git a/openjdk/README.md b/openjdk/README.md index a398091e92c2..f42a15ae86ff 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-14-jdk-oraclelinux8`, `21-ea-14-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-14-jdk-oracle`, `21-ea-14-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-14-jdk-oraclelinux7`, `21-ea-14-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-14-jdk-bullseye`, `21-ea-14-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/bullseye/Dockerfile) -- [`21-ea-14-jdk-slim-bullseye`, `21-ea-14-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-14-jdk-slim`, `21-ea-14-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-14-jdk-buster`, `21-ea-14-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/buster/Dockerfile) -- [`21-ea-14-jdk-slim-buster`, `21-ea-14-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/slim-buster/Dockerfile) -- [`21-ea-14-jdk-windowsservercore-ltsc2022`, `21-ea-14-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-14-jdk-windowsservercore-1809`, `21-ea-14-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-14-jdk-nanoserver-1809`, `21-ea-14-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-15-jdk-oraclelinux8`, `21-ea-15-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-15-jdk-oracle`, `21-ea-15-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-15-jdk-oraclelinux7`, `21-ea-15-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-15-jdk-bullseye`, `21-ea-15-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/bullseye/Dockerfile) +- [`21-ea-15-jdk-slim-bullseye`, `21-ea-15-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-15-jdk-slim`, `21-ea-15-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-15-jdk-buster`, `21-ea-15-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/buster/Dockerfile) +- [`21-ea-15-jdk-slim-buster`, `21-ea-15-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/slim-buster/Dockerfile) +- [`21-ea-15-jdk-windowsservercore-ltsc2022`, `21-ea-15-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-15-jdk-windowsservercore-1809`, `21-ea-15-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-15-jdk-nanoserver-1809`, `21-ea-15-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-14-jdk`, `21-ea-14`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-14-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-14-jdk-windowsservercore`, `21-ea-14-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-14-jdk-nanoserver`, `21-ea-14-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d13b2f186a44e8fbd59a876f74cf6797ee023c3/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-15-jdk`, `21-ea-15`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-15-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-15-jdk-windowsservercore`, `21-ea-15-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-15-jdk-nanoserver`, `21-ea-15-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 4199b50027fd..1a2960e360a8 100644 --- a/php/README.md +++ b/php/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.4-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.4-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.4-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.4`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/cli/Dockerfile) -- [`8.2.4-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.4-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/apache/Dockerfile) -- [`8.2.4-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.4-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/fpm/Dockerfile) -- [`8.2.4-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.4-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/bullseye/zts/Dockerfile) -- [`8.2.4-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.4-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/cli/Dockerfile) -- [`8.2.4-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/apache/Dockerfile) -- [`8.2.4-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/fpm/Dockerfile) -- [`8.2.4-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/buster/zts/Dockerfile) -- [`8.2.4-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.4-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.4-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.4-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.4-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.4-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.4-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.4-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.4-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.4-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.4-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.4-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/b486922583642fbe609b8153379ae2ce0256df51/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.17-cli-bullseye`, `8.1-cli-bullseye`, `8.1.17-bullseye`, `8.1-bullseye`, `8.1.17-cli`, `8.1-cli`, `8.1.17`, `8.1`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/cli/Dockerfile) -- [`8.1.17-apache-bullseye`, `8.1-apache-bullseye`, `8.1.17-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/apache/Dockerfile) -- [`8.1.17-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.17-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/fpm/Dockerfile) -- [`8.1.17-zts-bullseye`, `8.1-zts-bullseye`, `8.1.17-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/bullseye/zts/Dockerfile) -- [`8.1.17-cli-buster`, `8.1-cli-buster`, `8.1.17-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/cli/Dockerfile) -- [`8.1.17-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/apache/Dockerfile) -- [`8.1.17-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/fpm/Dockerfile) -- [`8.1.17-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/buster/zts/Dockerfile) -- [`8.1.17-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.17-alpine3.17`, `8.1-alpine3.17`, `8.1.17-cli-alpine`, `8.1-cli-alpine`, `8.1.17-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.17-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.17-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.17-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.17-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.17-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.17-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.17-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.17-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/f56a765506946dec5f75394244008e8a89c8d557/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/cli/Dockerfile) -- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/apache/Dockerfile) -- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/bullseye/fpm/Dockerfile) -- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/bullseye/zts/Dockerfile) -- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/cli/Dockerfile) -- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/apache/Dockerfile) -- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/buster/fpm/Dockerfile) -- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/buster/zts/Dockerfile) -- [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/eb33eee2833242f9f67827e881a8ad0432503292/8.0/alpine3.16/fpm/Dockerfile) -- [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/03dcf3bd0cf7d08869b53e48245086e8961f6b76/8.0/alpine3.16/zts/Dockerfile) +- [`8.2.4-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.4-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.4-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.4`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/cli/Dockerfile) +- [`8.2.4-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.4-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/apache/Dockerfile) +- [`8.2.4-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.4-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/fpm/Dockerfile) +- [`8.2.4-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.4-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/zts/Dockerfile) +- [`8.2.4-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.4-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/cli/Dockerfile) +- [`8.2.4-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/apache/Dockerfile) +- [`8.2.4-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/fpm/Dockerfile) +- [`8.2.4-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/zts/Dockerfile) +- [`8.2.4-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.4-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.4-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.4-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.4-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.4-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.4-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.4-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.4-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.4-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/cli/Dockerfile) +- [`8.2.4-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.4-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.17-cli-bullseye`, `8.1-cli-bullseye`, `8.1.17-bullseye`, `8.1-bullseye`, `8.1.17-cli`, `8.1-cli`, `8.1.17`, `8.1`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/cli/Dockerfile) +- [`8.1.17-apache-bullseye`, `8.1-apache-bullseye`, `8.1.17-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/apache/Dockerfile) +- [`8.1.17-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.17-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/fpm/Dockerfile) +- [`8.1.17-zts-bullseye`, `8.1-zts-bullseye`, `8.1.17-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/zts/Dockerfile) +- [`8.1.17-cli-buster`, `8.1-cli-buster`, `8.1.17-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/cli/Dockerfile) +- [`8.1.17-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/apache/Dockerfile) +- [`8.1.17-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/fpm/Dockerfile) +- [`8.1.17-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/zts/Dockerfile) +- [`8.1.17-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.17-alpine3.17`, `8.1-alpine3.17`, `8.1.17-cli-alpine`, `8.1-cli-alpine`, `8.1.17-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.17-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.17-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.17-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.17-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.17-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.17-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.17-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.17-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/zts/Dockerfile) +- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/cli/Dockerfile) +- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/apache/Dockerfile) +- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/fpm/Dockerfile) +- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/zts/Dockerfile) +- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/cli/Dockerfile) +- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/apache/Dockerfile) +- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/fpm/Dockerfile) +- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/zts/Dockerfile) +- [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/cli/Dockerfile) +- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/fpm/Dockerfile) +- [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 8818a2b7b13a..90710b249114 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/ef45b990868d5a0053bd30fdbae36551b46b76c9/15/bullseye/Dockerfile) -- [`15.2-alpine`, `15-alpine`, `alpine`, `15.2-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/ef45b990868d5a0053bd30fdbae36551b46b76c9/15/alpine/Dockerfile) -- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/76f8f6610e744c5f7c164027f70baed8652189b3/14/bullseye/Dockerfile) -- [`14.7-alpine`, `14-alpine`, `14.7-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/76f8f6610e744c5f7c164027f70baed8652189b3/14/alpine/Dockerfile) -- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/c5d3ed25bad6c9977cc6ef8dfebb07dabdb40763/13/bullseye/Dockerfile) -- [`13.10-alpine`, `13-alpine`, `13.10-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/c5d3ed25bad6c9977cc6ef8dfebb07dabdb40763/13/alpine/Dockerfile) -- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/a7280426538a4977564dd7252c67dfbc89da263e/12/bullseye/Dockerfile) -- [`12.14-alpine`, `12-alpine`, `12.14-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/a7280426538a4977564dd7252c67dfbc89da263e/12/alpine/Dockerfile) -- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/156d0659d047578f06aa8785cf12d547c6a5ccfd/11/bullseye/Dockerfile) -- [`11.19-alpine`, `11-alpine`, `11.19-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/156d0659d047578f06aa8785cf12d547c6a5ccfd/11/alpine/Dockerfile) +- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/15/bullseye/Dockerfile) +- [`15.2-alpine`, `15-alpine`, `alpine`, `15.2-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/15/alpine/Dockerfile) +- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/14/bullseye/Dockerfile) +- [`14.7-alpine`, `14-alpine`, `14.7-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/14/alpine/Dockerfile) +- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/13/bullseye/Dockerfile) +- [`13.10-alpine`, `13-alpine`, `13.10-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/13/alpine/Dockerfile) +- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/12/bullseye/Dockerfile) +- [`12.14-alpine`, `12-alpine`, `12.14-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/12/alpine/Dockerfile) +- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/11/bullseye/Dockerfile) +- [`11.19-alpine`, `11-alpine`, `11.19-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 7fca9b610984..3649fcb093f2 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.1-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.1`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/bullseye/Dockerfile) -- [`3.2.1-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.1-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/slim-bullseye/Dockerfile) -- [`3.2.1-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/buster/Dockerfile) -- [`3.2.1-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/slim-buster/Dockerfile) -- [`3.2.1-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.1-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/alpine3.17/Dockerfile) -- [`3.2.1-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/c068755c5a4b78ae781ed9f8245ab6fb7aab519a/3.2/alpine3.16/Dockerfile) -- [`3.1.3-bullseye`, `3.1-bullseye`, `3.1.3`, `3.1`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/bullseye/Dockerfile) -- [`3.1.3-slim-bullseye`, `3.1-slim-bullseye`, `3.1.3-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/slim-bullseye/Dockerfile) -- [`3.1.3-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/buster/Dockerfile) -- [`3.1.3-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/slim-buster/Dockerfile) -- [`3.1.3-alpine3.17`, `3.1-alpine3.17`, `3.1.3-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/a51b7da07425cc2f5a35178ef83fd908b59beb5d/3.1/alpine3.17/Dockerfile) -- [`3.1.3-alpine3.16`, `3.1-alpine3.16`](https://github.com/docker-library/ruby/blob/9fd589661dd0e12b082336e9c6f731196fe39ba8/3.1/alpine3.16/Dockerfile) -- [`3.0.5-bullseye`, `3.0-bullseye`, `3.0.5`, `3.0`](https://github.com/docker-library/ruby/blob/ece6f45d6d00b803a4e1a33cd5a55895cf928357/3.0/bullseye/Dockerfile) -- [`3.0.5-slim-bullseye`, `3.0-slim-bullseye`, `3.0.5-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/ece6f45d6d00b803a4e1a33cd5a55895cf928357/3.0/slim-bullseye/Dockerfile) -- [`3.0.5-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/ece6f45d6d00b803a4e1a33cd5a55895cf928357/3.0/buster/Dockerfile) -- [`3.0.5-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/ece6f45d6d00b803a4e1a33cd5a55895cf928357/3.0/slim-buster/Dockerfile) -- [`3.0.5-alpine3.16`, `3.0-alpine3.16`, `3.0.5-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/ece6f45d6d00b803a4e1a33cd5a55895cf928357/3.0/alpine3.16/Dockerfile) -- [`2.7.7-bullseye`, `2.7-bullseye`, `2-bullseye`, `2.7.7`, `2.7`, `2`](https://github.com/docker-library/ruby/blob/cdac1ffbc959768a5b82014dbb8c8006fe6f7880/2.7/bullseye/Dockerfile) -- [`2.7.7-slim-bullseye`, `2.7-slim-bullseye`, `2-slim-bullseye`, `2.7.7-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/ruby/blob/cdac1ffbc959768a5b82014dbb8c8006fe6f7880/2.7/slim-bullseye/Dockerfile) -- [`2.7.7-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/ruby/blob/cdac1ffbc959768a5b82014dbb8c8006fe6f7880/2.7/buster/Dockerfile) -- [`2.7.7-slim-buster`, `2.7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/ruby/blob/cdac1ffbc959768a5b82014dbb8c8006fe6f7880/2.7/slim-buster/Dockerfile) -- [`2.7.7-alpine3.16`, `2.7-alpine3.16`, `2-alpine3.16`, `2.7.7-alpine`, `2.7-alpine`, `2-alpine`](https://github.com/docker-library/ruby/blob/cdac1ffbc959768a5b82014dbb8c8006fe6f7880/2.7/alpine3.16/Dockerfile) +- [`3.2.1-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.1`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/bullseye/Dockerfile) +- [`3.2.1-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.1-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/slim-bullseye/Dockerfile) +- [`3.2.1-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/buster/Dockerfile) +- [`3.2.1-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/slim-buster/Dockerfile) +- [`3.2.1-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.1-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/alpine3.17/Dockerfile) +- [`3.2.1-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/alpine3.16/Dockerfile) +- [`3.1.3-bullseye`, `3.1-bullseye`, `3.1.3`, `3.1`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/bullseye/Dockerfile) +- [`3.1.3-slim-bullseye`, `3.1-slim-bullseye`, `3.1.3-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/slim-bullseye/Dockerfile) +- [`3.1.3-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/buster/Dockerfile) +- [`3.1.3-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/slim-buster/Dockerfile) +- [`3.1.3-alpine3.17`, `3.1-alpine3.17`, `3.1.3-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/alpine3.17/Dockerfile) +- [`3.1.3-alpine3.16`, `3.1-alpine3.16`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/alpine3.16/Dockerfile) +- [`3.0.5-bullseye`, `3.0-bullseye`, `3.0.5`, `3.0`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/bullseye/Dockerfile) +- [`3.0.5-slim-bullseye`, `3.0-slim-bullseye`, `3.0.5-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/slim-bullseye/Dockerfile) +- [`3.0.5-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/buster/Dockerfile) +- [`3.0.5-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/slim-buster/Dockerfile) +- [`3.0.5-alpine3.16`, `3.0-alpine3.16`, `3.0.5-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/alpine3.16/Dockerfile) +- [`2.7.7-bullseye`, `2.7-bullseye`, `2-bullseye`, `2.7.7`, `2.7`, `2`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/bullseye/Dockerfile) +- [`2.7.7-slim-bullseye`, `2.7-slim-bullseye`, `2-slim-bullseye`, `2.7.7-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/slim-bullseye/Dockerfile) +- [`2.7.7-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/buster/Dockerfile) +- [`2.7.7-slim-buster`, `2.7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/slim-buster/Dockerfile) +- [`2.7.7-alpine3.16`, `2.7-alpine3.16`, `2-alpine3.16`, `2.7.7-alpine`, `2.7-alpine`, `2-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 5c2bf1ca7754..65fe46a20d07 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,42 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M4-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M4-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M4-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M4`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/49294a7594a872e88aac70c0bd448b081de8d565/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M4-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M4-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M4-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M4`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/11.0/jdk17/temurin-jammy/Dockerfile) - [`11.0.0-M4-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M4-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M4-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/49294a7594a872e88aac70c0bd448b081de8d565/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.7-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.7-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.7-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.7-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.7-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.7-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.7-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.7-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.7-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.7-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.7-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.7-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.7-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.7-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.7-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.7-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.7-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.7-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.73-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.73-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.73-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.73`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.73-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.73-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.73-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.73`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.73-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.73-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.73-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.73-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.73-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/temurin-focal/Dockerfile) - [`9.0.73-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.73-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.73-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.73-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.73-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.73-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.73-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.73-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.73-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.73-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.73-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/temurin-jammy/Dockerfile) - [`9.0.73-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.73-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.73-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.73-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.73-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/temurin-focal/Dockerfile) - [`9.0.73-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.73-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.73-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.73-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.73-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.73-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.73-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.73-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.73-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.73-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.73-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/temurin-jammy/Dockerfile) - [`9.0.73-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.73-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.73-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.73-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.73-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.73-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.73-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.73-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.87-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.87-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.87-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.87`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/temurin-jammy/Dockerfile) +- [`9.0.73-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.73-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.87-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.87-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.87-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.87`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.87-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.87-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.87-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.87-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.87-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-focal/Dockerfile) - [`8.5.87-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.87-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.87-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.87-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.87-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.87-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.87-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.87-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.87-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.87-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.87-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/temurin-jammy/Dockerfile) - [`8.5.87-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.87-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.87-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.87-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.87-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/temurin-focal/Dockerfile) - [`8.5.87-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.87-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.87-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.87-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.87-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.87-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.87-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.87-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.87-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.87-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.87-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/temurin-jammy/Dockerfile) - [`8.5.87-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.87-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.87-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.87-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.87-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/temurin-focal/Dockerfile) - [`8.5.87-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.87-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.87-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.87-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.87-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index de62b245a177..3aae63de969c 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/apache/Dockerfile) -- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/fpm/Dockerfile) -- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/apache/Dockerfile) -- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/fpm/Dockerfile) -- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/apache/Dockerfile) -- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/fpm/Dockerfile) -- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/7abee5418f61c0247efab5f736f1ecbf7486cb59/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/apache/Dockerfile) +- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/fpm/Dockerfile) +- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/apache/Dockerfile) +- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/fpm/Dockerfile) +- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/apache/Dockerfile) +- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/fpm/Dockerfile) +- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/58015cc36df502ad50ca285f6b5a61674f70e207/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 35ff072dc196cf62ec9e4fdd7fff678c59c66b10 Mon Sep 17 00:00:00 2001 From: J0WI Date: Tue, 28 Mar 2023 16:57:14 +0200 Subject: [PATCH 0185/2686] Update MariaDB to 10.6 --- nextcloud/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nextcloud/content.md b/nextcloud/content.md index fad8bc415ba7..1c2b41b65365 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -64,7 +64,7 @@ Database: ```console $ docker run -d \ -v db:/var/lib/mysql \ - mariadb:10.5 + mariadb:10.6 ``` If you want to get fine grained access to your individual files, you can mount additional volumes for data, config, your theme and custom apps. The `data`, `config` files are stored in respective subfolders inside `/var/www/html/`. The apps are split into core `apps` (which are shipped with Nextcloud and you don't need to take care of) and a `custom_apps` folder. If you use a custom theme it would go into the `themes` subfolder. @@ -249,7 +249,7 @@ volumes: services: db: - image: mariadb:10.5 + image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: @@ -295,7 +295,7 @@ volumes: services: db: - image: mariadb:10.5 + image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: From e3a3190fbd809082b66147a5817a41a927e60a62 Mon Sep 17 00:00:00 2001 From: Fabien Jacq Date: Tue, 28 Mar 2023 19:51:28 +0200 Subject: [PATCH 0186/2686] Fix couchdb spelling typo (#2308) --- couchdb/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchdb/content.md b/couchdb/content.md index f5aa10a703fb..e742ac8d1fa4 100644 --- a/couchdb/content.md +++ b/couchdb/content.md @@ -12,7 +12,7 @@ Store your data safely, on your own servers, or with any leading cloud provider. ## Start a CouchDB instance -Starting a CouchDB instantce is simple: +Starting a CouchDB instance is simple: ```console $ docker run -d --name my-couchdb %%IMAGE%%:tag From e8071783916782ab1a64b9d1cb741bd8af1848e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Mar 2023 11:16:53 -0700 Subject: [PATCH 0187/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- couchdb/README.md | 2 +- kong/README.md | 4 ++-- neo4j/README.md | 4 ++-- nextcloud/README.md | 6 +++--- rabbitmq/README.md | 32 ++++++++++++++++---------------- rust/README.md | 16 ++++++++-------- 7 files changed, 35 insertions(+), 35 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 82dc1763bed9..f2331a5a8f41 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2`, `2.0.20230307.0`](https://github.com/amazonlinux/container-images/blob/9d4c7e1fbf1426dd0c7f21141c20e605d8695a00/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230306.1`](https://github.com/amazonlinux/container-images/blob/dc3df0616bebef55e5890e320f62d2ef407c54d0/Dockerfile) -- [`2023`, `latest`, `2023.0.20230315.0`](https://github.com/amazonlinux/container-images/blob/09b67eed139db3fdcb58d682c893df26b69dc462/Dockerfile) +- [`2023`, `latest`, `2023.0.20230322.0`](https://github.com/amazonlinux/container-images/blob/292aeb369bf259202dae0fefee00210edb3dcd54/Dockerfile) +- [`2`, `2.0.20230320.0`](https://github.com/amazonlinux/container-images/blob/8bd6e8ab85a58c9bc06cc0b6a8bd94ed47d5b89d/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230322.0`](https://github.com/amazonlinux/container-images/blob/a01e35072fd6710b02953f2f6e84c4a501cdd381/Dockerfile) # Quick reference (cont.) diff --git a/couchdb/README.md b/couchdb/README.md index 6979accdb1fe..02f075410aae 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -62,7 +62,7 @@ Store your data safely, on your own servers, or with any leading cloud provider. ## Start a CouchDB instance -Starting a CouchDB instantce is simple: +Starting a CouchDB instance is simple: ```console $ docker run -d --name my-couchdb couchdb:tag diff --git a/kong/README.md b/kong/README.md index 083765a78980..9de542ac2202 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.2-alpine`, `3.2.2`, `3.2`, `3`, `alpine`, `latest`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) -- [`3.2.2-ubuntu`, `3.2-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) +- [`3.2.2-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) +- [`3.2.2-ubuntu`, `3.2-ubuntu`, `ubuntu`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) - [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) - [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) diff --git a/neo4j/README.md b/neo4j/README.md index 63af57dba8ba..7e401cb699ff 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.6.0`, `5.6.0-community`, `5.6`, `5.6-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/community/Dockerfile) - [`5.6.0-enterprise`, `5.6-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/enterprise/Dockerfile) -- [`4.4.18`, `4.4.18-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/community/Dockerfile) -- [`4.4.18-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/eb3d953b8df45a5945d340b59e2c98e5b0cbb908/4.4.18/enterprise/Dockerfile) +- [`4.4.19`, `4.4.19-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/community/Dockerfile) +- [`4.4.19-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 4634970b3aa6..1b8b9b3496dc 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -119,7 +119,7 @@ Database: ```console $ docker run -d \ -v db:/var/lib/mysql \ - mariadb:10.5 + mariadb:10.6 ``` If you want to get fine grained access to your individual files, you can mount additional volumes for data, config, your theme and custom apps. The `data`, `config` files are stored in respective subfolders inside `/var/www/html/`. The apps are split into core `apps` (which are shipped with Nextcloud and you don't need to take care of) and a `custom_apps` folder. If you use a custom theme it would go into the `themes` subfolder. @@ -304,7 +304,7 @@ volumes: services: db: - image: mariadb:10.5 + image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: @@ -350,7 +350,7 @@ volumes: services: db: - image: mariadb:10.5 + image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 14535e7f01d1..b73c4043495a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.2`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/ca55cfc9bcb9dd0a7c7abebd9191d0a38e90ad8c/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ca55cfc9bcb9dd0a7c7abebd9191d0a38e90ad8c/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/1bc76ab8a311cf03d40c95ac9aedd6d9473d048f/3.12-rc/alpine/management/Dockerfile) -- [`3.11.11`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/7e15b7d8731bf100f3f7951668536ba3075d52ff/3.11/ubuntu/Dockerfile) -- [`3.11.11-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/ubuntu/management/Dockerfile) -- [`3.11.11-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7e15b7d8731bf100f3f7951668536ba3075d52ff/3.11/alpine/Dockerfile) -- [`3.11.11-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/65eb19295b7975c4614d6071fb3fc6a1b86282a1/3.11/alpine/management/Dockerfile) -- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/68048c872d80fd8940e3b8a9965cde2f4211bfef/3.10/ubuntu/Dockerfile) -- [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/ubuntu/management/Dockerfile) -- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/68048c872d80fd8940e3b8a9965cde2f4211bfef/3.10/alpine/Dockerfile) -- [`3.10.20-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6e226fe8e99702c8726d5e7d5c5864e69548048d/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/ubuntu/Dockerfile) -- [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/608d785d094ed95085f90e1058dfeeaa6eb75039/3.9/alpine/Dockerfile) -- [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b07819f873e5a68b2bb54e01f0caa41c26b277f3/3.9/alpine/management/Dockerfile) +- [`3.12.0-beta.3`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6a960c02c9b01998514f7bb4e100f9dabfdcaca3/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.3-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6a960c02c9b01998514f7bb4e100f9dabfdcaca3/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.3-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.11.11`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/Dockerfile) +- [`3.11.11-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.11-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/Dockerfile) +- [`3.11.11-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/Dockerfile) +- [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/Dockerfile) +- [`3.10.20-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/Dockerfile) +- [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/Dockerfile) +- [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 85f8a1b7971f..f2dc3b85c31f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.68-buster`, `1.68.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/buster/Dockerfile) -- [`1-slim-buster`, `1.68-slim-buster`, `1.68.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.68-bullseye`, `1.68.1-bullseye`, `bullseye`, `1`, `1.68`, `1.68.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.68-bookworm`, `1.68.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.1-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.1-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/bf46e4541bbb57fb6816926a593aa568c43806f0/1.68.1/alpine3.17/Dockerfile) +- [`1-buster`, `1.68-buster`, `1.68.2-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/buster/Dockerfile) +- [`1-slim-buster`, `1.68-slim-buster`, `1.68.2-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/buster/slim/Dockerfile) +- [`1-bullseye`, `1.68-bullseye`, `1.68.2-bullseye`, `bullseye`, `1`, `1.68`, `1.68.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.2-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.68-bookworm`, `1.68.2-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.2-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.2-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.2-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.2-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/alpine3.17/Dockerfile) # Quick reference (cont.) From 6c1b13e58376b541ab18539bf2b3d72b30202750 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Mar 2023 14:16:42 -0700 Subject: [PATCH 0188/2686] Run update.sh --- couchdb/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index 02f075410aae..7ba250e1bd26 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.1`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.3.1/Dockerfile) -- [`3.2.2`, `3.2`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.2.2/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/3.1.2/Dockerfile) -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/bdaa3681c0c16d2c3bc1bdc451be9ff5b74f2d62/2.3.1/Dockerfile) +- [`latest`, `3.3.1`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.3.1/Dockerfile) +- [`3.2.2`, `3.2`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.2.2/Dockerfile) +- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.1.2/Dockerfile) +- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/2.3.1/Dockerfile) # Quick reference (cont.) From e9ac2545bf73e15d74180fd643948cf0df0f093c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Mar 2023 15:08:46 -0700 Subject: [PATCH 0189/2686] Run update.sh --- nginx/README.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 95cdd9c79cbd..2c804b3f827a 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,15 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23.3`, `mainline`, `1`, `1.23`, `latest`](https://github.com/nginxinc/docker-nginx/blob/5ce65c3efd395ee2d82d32670f233140e92dba99/mainline/debian/Dockerfile) -- [`1.23.3-perl`, `mainline-perl`, `1-perl`, `1.23-perl`, `perl`](https://github.com/nginxinc/docker-nginx/blob/5ce65c3efd395ee2d82d32670f233140e92dba99/mainline/debian-perl/Dockerfile) -- [`1.23.3-alpine`, `mainline-alpine`, `1-alpine`, `1.23-alpine`, `alpine`](https://github.com/nginxinc/docker-nginx/blob/5ce65c3efd395ee2d82d32670f233140e92dba99/mainline/alpine/Dockerfile) -- [`1.23.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.23-alpine-perl`, `alpine-perl`](https://github.com/nginxinc/docker-nginx/blob/5ce65c3efd395ee2d82d32670f233140e92dba99/mainline/alpine-perl/Dockerfile) -- [`1.23.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.23-alpine-slim`, `alpine-slim`](https://github.com/nginxinc/docker-nginx/blob/5ce65c3efd395ee2d82d32670f233140e92dba99/mainline/alpine-slim/Dockerfile) -- [`1.22.1`, `stable`, `1.22`](https://github.com/nginxinc/docker-nginx/blob/fef51235521d1cdf8b05d8cb1378a526d2abf421/stable/debian/Dockerfile) -- [`1.22.1-perl`, `stable-perl`, `1.22-perl`](https://github.com/nginxinc/docker-nginx/blob/fef51235521d1cdf8b05d8cb1378a526d2abf421/stable/debian-perl/Dockerfile) -- [`1.22.1-alpine`, `stable-alpine`, `1.22-alpine`](https://github.com/nginxinc/docker-nginx/blob/fef51235521d1cdf8b05d8cb1378a526d2abf421/stable/alpine/Dockerfile) -- [`1.22.1-alpine-perl`, `stable-alpine-perl`, `1.22-alpine-perl`](https://github.com/nginxinc/docker-nginx/blob/fef51235521d1cdf8b05d8cb1378a526d2abf421/stable/alpine-perl/Dockerfile) +- [`1.23.4`, `mainline`, `1`, `1.23`, `latest`, `1.23.4-bullseye`, `mainline-bullseye`, `1-bullseye`, `1.23-bullseye`, `bullseye`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/debian/Dockerfile) +- [`1.23.4-perl`, `mainline-perl`, `1-perl`, `1.23-perl`, `perl`, `1.23.4-bullseye-perl`, `mainline-bullseye-perl`, `1-bullseye-perl`, `1.23-bullseye-perl`, `bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/debian-perl/Dockerfile) +- [`1.23.4-alpine`, `mainline-alpine`, `1-alpine`, `1.23-alpine`, `alpine`, `1.23.4-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.23-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine/Dockerfile) +- [`1.23.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.23-alpine-perl`, `alpine-perl`, `1.23.4-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.23-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-perl/Dockerfile) +- [`1.23.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.23-alpine-slim`, `alpine-slim`, `1.23.4-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.23-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-slim/Dockerfile) +- [`1.22.1`, `stable`, `1.22`, `1.22.1-bullseye`, `stable-bullseye`, `1.22-bullseye`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/debian/Dockerfile) +- [`1.22.1-perl`, `stable-perl`, `1.22-perl`, `1.22.1-bullseye-perl`, `stable-bullseye-perl`, `1.22-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/761fffeba0d867d6e80d38998073e0eaa456bb02/stable/debian-perl/Dockerfile) +- [`1.22.1-alpine`, `stable-alpine`, `1.22-alpine`, `1.22.1-alpine3.17`, `stable-alpine3.17`, `1.22-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine/Dockerfile) +- [`1.22.1-alpine-perl`, `stable-alpine-perl`, `1.22-alpine-perl`, `1.22.1-alpine3.17-perl`, `stable-alpine3.17-perl`, `1.22-alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine-perl/Dockerfile) +- [`1.22.1-alpine-slim`, `stable-alpine-slim`, `1.22-alpine-slim`, `1.22.1-alpine3.17-slim`, `stable-alpine3.17-slim`, `1.22-alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine-slim/Dockerfile) # Quick reference (cont.) @@ -245,6 +246,8 @@ The `nginx` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + ## `nginx:-perl` / `nginx:-alpine-perl` Starting with nginx:1.13.0 / mainline and nginx:1.12.0 / stable, the perl module has been removed from the default images. A separate `-perl` tag variant is available if you wish to use the perl module. From 42c43d3ac5e00894705426da166ec0540823e462 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Mar 2023 17:16:28 -0700 Subject: [PATCH 0190/2686] Run update.sh --- oraclelinux/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2754e0d69bf8..cec1395f9f59 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b147658cb92aaa5fd1b618e08b35455410168633/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/7-slim/Dockerfile) # Quick reference (cont.) From 77538fe313bc143b7fd2f1927c46621494fd3676 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Mar 2023 11:16:33 -0700 Subject: [PATCH 0191/2686] Run update.sh --- alpine/README.md | 10 +++++----- bash/README.md | 6 +++--- docker/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- haproxy/README.md | 12 ++++++------ odoo/README.md | 6 +++--- wordpress/README.md | 18 +++++++++--------- 7 files changed, 37 insertions(+), 37 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 560b133fa60f..d2ad8ef61531 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20230208`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a4149305cd4d815083f3dcf4c948e0ac4f1e99dd/x86_64/Dockerfile) -- [`3.17.2`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/d8ed1701dac37e1b6db026bec0a26be683288074/x86_64/Dockerfile) -- [`3.16.4`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/106cf8fa24b495c3c7cac2ef3564fb78aef24751/x86_64/Dockerfile) -- [`3.15.7`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/2060d1dc5d0532fbc48f8735e77f5e787ebbff60/x86_64/Dockerfile) -- [`3.14.9`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/b040c4549c910e61cc9e783ef7741fed7a7b9e96/x86_64/Dockerfile) +- [`20230329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c025403b1536857f35630b3c7fe5aabf8b6d256a/x86_64/Dockerfile) +- [`3.17.3`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/681b8c677aaed66e48a5ce721509647bd4dcd017/x86_64/Dockerfile) +- [`3.16.5`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/8abeb7449b58d28e108a027990013f56845bdea4/x86_64/Dockerfile) +- [`3.15.8`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/d5bee21392df6b1e0b491cee3f3436121238a178/x86_64/Dockerfile) +- [`3.14.10`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/cb8d8712f672bfa9a8b9a1f64b2c12f369f1cc68/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 41a5c8684617..d479b88f2179 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230320`, `devel`, `devel-20230320-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/ae124dfbb4c464442080c6c4b042e7d2afeb4d47/devel/Dockerfile) +- [`devel-20230327`, `devel`, `devel-20230327-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/f30bf5c7d278128dee58abe3d10e7e3812bbfe90/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) - [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.16`, `4.4-alpine3.16`, `4-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.4/Dockerfile) - [`4.3.48`, `4.3`, `4.3.48-alpine3.16`, `4.3-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.3/Dockerfile) - [`4.2.53`, `4.2`, `4.2.53-alpine3.16`, `4.2-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.16`, `4.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.1/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.16`, `4.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/a09af45d612181a67232d6409528062ae4484fef/4.1/Dockerfile) - [`4.0.44`, `4.0`, `4.0.44-alpine3.16`, `4.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/3.2/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`](https://github.com/tianon/docker-bash/blob/f1c77bd73380eff08af39e3eee54bfdf39ecf6a5/3.2/Dockerfile) - [`3.1.23`, `3.1`, `3.1.23-alpine3.16`, `3.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/3.1/Dockerfile) - [`3.0.22`, `3.0`, `3.0.22-alpine3.16`, `3.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/3.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index b20b7d60860d..917fd789b277 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`23.0.1-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/cli/Dockerfile) -- [`23.0.1-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.1-dind-alpine3.17`, `23.0.1`, `23.0`, `23`, `latest`, `23.0.1-alpine3.17`](https://github.com/docker-library/docker/blob/94129ecd12de7acbc9d5a15d25d535ee091770b1/23.0/dind/Dockerfile) -- [`23.0.1-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9a3b24b5b115d368c1aecf92dfadacc7cf49da12/23.0/dind-rootless/Dockerfile) -- [`23.0.1-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.1-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-1809/Dockerfile) +- [`23.0.2-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/cli/Dockerfile) +- [`23.0.2-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.2-dind-alpine3.17`, `23.0.2`, `23.0`, `23`, `latest`, `23.0.2-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind/Dockerfile) +- [`23.0.2-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind-rootless/Dockerfile) +- [`23.0.2-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) +- [`23.0.2-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.2-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/cli/Dockerfile) - [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) - [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `23.0.1-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/561e8f7f0ace0ef7cf85d24ec50c77865c397109/23.0/windows/windowsservercore-1809/Dockerfile) +- `23.0.2-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 7b12b18e8775..3113065ee367 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.1`, `5.40`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5ecf7350c5c719298a9078ff9676912b6cc6ce1e/5/debian/Dockerfile) -- [`5.40.1-alpine`, `5.40-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5ecf7350c5c719298a9078ff9676912b6cc6ce1e/5/alpine/Dockerfile) +- [`5.40.2`, `5.40`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5780829be2d94c0a696007565fb2ccd41e8937e6/5/debian/Dockerfile) +- [`5.40.2-alpine`, `5.40-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5780829be2d94c0a696007565fb2ccd41e8937e6/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 6b952b32f1f6..03181206b3f3 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev5`, `2.8-dev`, `2.8-dev5-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/Dockerfile) -- [`2.8-dev5-alpine`, `2.8-dev-alpine`, `2.8-dev5-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/5b92c8346ddada68e89299f7b0754dcf03ec0aa8/2.8/alpine/Dockerfile) -- [`2.7.5`, `2.7`, `latest`, `2.7.5-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/098bc15c52ea5cfe4375519a463b682efcb38225/2.7/Dockerfile) -- [`2.7.5-alpine`, `2.7-alpine`, `alpine`, `2.7.5-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/098bc15c52ea5cfe4375519a463b682efcb38225/2.7/alpine/Dockerfile) -- [`2.6.11`, `2.6`, `lts`, `2.6.11-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/c2ce622c339932e818d880f9d73e05c5cc4c7705/2.6/Dockerfile) -- [`2.6.11-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.11-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/c2ce622c339932e818d880f9d73e05c5cc4c7705/2.6/alpine/Dockerfile) +- [`2.8-dev6`, `2.8-dev`, `2.8-dev6-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/b8c3d54e118f694d0a06ce94d8f83a0a2cad5c56/2.8/Dockerfile) +- [`2.8-dev6-alpine`, `2.8-dev-alpine`, `2.8-dev6-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/b8c3d54e118f694d0a06ce94d8f83a0a2cad5c56/2.8/alpine/Dockerfile) +- [`2.7.6`, `2.7`, `latest`, `2.7.6-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/Dockerfile) +- [`2.7.6-alpine`, `2.7-alpine`, `alpine`, `2.7.6-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/alpine/Dockerfile) +- [`2.6.12`, `2.6`, `lts`, `2.6.12-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/Dockerfile) +- [`2.6.12-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.12-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/alpine/Dockerfile) - [`2.5.13`, `2.5`, `2.5.13-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/Dockerfile) - [`2.5.13-alpine`, `2.5-alpine`, `2.5.13-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 3b0497f99924..b68063f9a994 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/c61918a02765974a17097ec65695828422afe519/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/14.0/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 3aae63de969c..067db6938816 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC4-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC4`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC4-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC4-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC4-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC4-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC4-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC4-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC4-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC4-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC4-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC4-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC4-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC4-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC4-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC4-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/724fb416d6a39d76ea75bf01da05c25ee8030ff7/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.2-RC5-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC5`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC5-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC5-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/apache/Dockerfile) +- [`beta-6.2-RC5-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC5-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2-RC5-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC5-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2-RC5-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC5-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/apache/Dockerfile) +- [`beta-6.2-RC5-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2-RC5-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2-RC5-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC5-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/apache/Dockerfile) +- [`beta-6.2-RC5-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2-RC5-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From fcd0a252372c1e52dede3ce9148d9f564fb46437 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Mar 2023 13:08:47 -0700 Subject: [PATCH 0192/2686] Run update.sh --- percona/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/percona/README.md b/percona/README.md index 3b08034286bc..99b13218c5cb 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.29-21-centos`, `8.0-centos`, `8-centos`, `8.0.29-21`, `8.0`, `8`, `ps-8.0.29-21`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/f7a1ff5101f7572296fec3f4f4d0d7a666a219a8/percona-server-8.0/Dockerfile) +- [`8.0.32-24-centos`, `8.0-centos`, `8-centos`, `8.0.32-24`, `8.0`, `8`, `ps-8.0.32-24`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/97417b76d33a5ffb62a7e20723752a25fdbad5e7/percona-server-8.0/Dockerfile) - [`5.7.35-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.35`, `5.7`, `5`, `ps-5.7.35`, `ps-5.7`, `ps-5`, `latest`](https://github.com/percona/percona-docker/blob/f1697b98ebb86a8d684c4192fa382b00ae1860ff/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-5.0.10`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/0003693083fc3b6a904fd83a63096705aff46cca/percona-server-mongodb-5.0/Dockerfile) From a4ae84d1d683c9b8815bcb3d14ea2c90b1b0e990 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Mar 2023 16:16:18 -0700 Subject: [PATCH 0193/2686] Run update.sh --- dart/README.md | 4 ++-- node/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dart/README.md b/dart/README.md index 8eab874f4792..b7346b299238 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.5-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.5`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2f0e2501986073c1f546701f283a052847fbcf96/stable/bullseye/Dockerfile) -- [`3.0.0-290.3.beta-sdk`, `beta-sdk`, `3.0.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2f0e2501986073c1f546701f283a052847fbcf96/beta/bullseye/Dockerfile) +- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a0997ea985cc139f764a36fed7936e659e005d58/stable/bullseye/Dockerfile) +- [`3.0.0-290.3.beta-sdk`, `beta-sdk`, `3.0.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a0997ea985cc139f764a36fed7936e659e005d58/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index bc8fe58306bf..1a0b9a1fa9a6 100644 --- a/node/README.md +++ b/node/README.md @@ -36,12 +36,12 @@ WARNING: - [`18-bullseye-slim`, `18-slim`, `18.15-bullseye-slim`, `18.15-slim`, `18.15.0-bullseye-slim`, `18.15.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.15-buster`, `18.15.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster/Dockerfile) - [`18-buster-slim`, `18.15-buster-slim`, `18.15.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster-slim/Dockerfile) -- [`16-alpine3.16`, `16.19-alpine3.16`, `16.19.1-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.16/Dockerfile) -- [`16-alpine`, `16-alpine3.17`, `16.19-alpine`, `16.19-alpine3.17`, `16.19.1-alpine`, `16.19.1-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/cd41dbe222da1ce72d61d8fbaa06ac79316ac6d5/16/alpine3.17/Dockerfile) -- [`16-bullseye`, `16.19-bullseye`, `16.19.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.19-bullseye-slim`, `16.19.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/bullseye-slim/Dockerfile) -- [`16`, `16-buster`, `16.19`, `16.19-buster`, `16.19.1`, `16.19.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.19-buster-slim`, `16.19-slim`, `16.19.1-buster-slim`, `16.19.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/16/buster-slim/Dockerfile) +- [`16-alpine3.16`, `16.20-alpine3.16`, `16.20.0-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.16/Dockerfile) +- [`16-alpine`, `16-alpine3.17`, `16.20-alpine`, `16.20-alpine3.17`, `16.20.0-alpine`, `16.20.0-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.17/Dockerfile) +- [`16-bullseye`, `16.20-bullseye`, `16.20.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye/Dockerfile) +- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye-slim/Dockerfile) +- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.0`, `16.20.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster/Dockerfile) +- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.0-buster-slim`, `16.20.0-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster-slim/Dockerfile) - [`14-alpine3.16`, `14.21-alpine3.16`, `14.21.3-alpine3.16`, `fermium-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.16/Dockerfile) - [`14-alpine`, `14-alpine3.17`, `14.21-alpine`, `14.21-alpine3.17`, `14.21.3-alpine`, `14.21.3-alpine3.17`, `fermium-alpine`, `fermium-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.17/Dockerfile) - [`14-bullseye`, `14.21-bullseye`, `14.21.3-bullseye`, `fermium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/bullseye/Dockerfile) From ce538e5387fabf6f154884030b4e8932c3d15948 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Mar 2023 12:14:33 -0700 Subject: [PATCH 0194/2686] Run update.sh --- arangodb/README.md | 2 +- ruby/README.md | 44 ++++++++++++++++++++++---------------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index e216a602203b..4ad69d7a36fd 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8`, `3.8.8`](https://github.com/arangodb/arangodb-docker/blob/6e5a02cd7f5106076a1faf24360218c3e2ca3003/alpine/3.8.8/Dockerfile) +- [`3.8`, `3.8.9`](https://github.com/arangodb/arangodb-docker/blob/da21330779b93bbdd399935479d66efa8563719c/alpine/3.8.9/Dockerfile) - [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.9.10/Dockerfile) - [`3.10`, `3.10.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.10.5/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 3649fcb093f2..1eaf11fb17e1 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.1-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.1`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/bullseye/Dockerfile) -- [`3.2.1-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.1-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/slim-bullseye/Dockerfile) -- [`3.2.1-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/buster/Dockerfile) -- [`3.2.1-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/slim-buster/Dockerfile) -- [`3.2.1-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.1-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/alpine3.17/Dockerfile) -- [`3.2.1-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.2/alpine3.16/Dockerfile) -- [`3.1.3-bullseye`, `3.1-bullseye`, `3.1.3`, `3.1`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/bullseye/Dockerfile) -- [`3.1.3-slim-bullseye`, `3.1-slim-bullseye`, `3.1.3-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/slim-bullseye/Dockerfile) -- [`3.1.3-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/buster/Dockerfile) -- [`3.1.3-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/slim-buster/Dockerfile) -- [`3.1.3-alpine3.17`, `3.1-alpine3.17`, `3.1.3-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/alpine3.17/Dockerfile) -- [`3.1.3-alpine3.16`, `3.1-alpine3.16`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.1/alpine3.16/Dockerfile) -- [`3.0.5-bullseye`, `3.0-bullseye`, `3.0.5`, `3.0`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/bullseye/Dockerfile) -- [`3.0.5-slim-bullseye`, `3.0-slim-bullseye`, `3.0.5-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/slim-bullseye/Dockerfile) -- [`3.0.5-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/buster/Dockerfile) -- [`3.0.5-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/slim-buster/Dockerfile) -- [`3.0.5-alpine3.16`, `3.0-alpine3.16`, `3.0.5-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/3.0/alpine3.16/Dockerfile) -- [`2.7.7-bullseye`, `2.7-bullseye`, `2-bullseye`, `2.7.7`, `2.7`, `2`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/bullseye/Dockerfile) -- [`2.7.7-slim-bullseye`, `2.7-slim-bullseye`, `2-slim-bullseye`, `2.7.7-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/slim-bullseye/Dockerfile) -- [`2.7.7-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/buster/Dockerfile) -- [`2.7.7-slim-buster`, `2.7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/slim-buster/Dockerfile) -- [`2.7.7-alpine3.16`, `2.7-alpine3.16`, `2-alpine3.16`, `2.7.7-alpine`, `2.7-alpine`, `2-alpine`](https://github.com/docker-library/ruby/blob/e1866b57c27f0828f75eb9704f5804be47bd1c98/2.7/alpine3.16/Dockerfile) +- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/bullseye/Dockerfile) +- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-bullseye/Dockerfile) +- [`3.2.2-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/buster/Dockerfile) +- [`3.2.2-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-buster/Dockerfile) +- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.17/Dockerfile) +- [`3.2.2-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.16/Dockerfile) +- [`3.1.4-bullseye`, `3.1-bullseye`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/bullseye/Dockerfile) +- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-bullseye/Dockerfile) +- [`3.1.4-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/buster/Dockerfile) +- [`3.1.4-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-buster/Dockerfile) +- [`3.1.4-alpine3.17`, `3.1-alpine3.17`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.17/Dockerfile) +- [`3.1.4-alpine3.16`, `3.1-alpine3.16`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.16/Dockerfile) +- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/bullseye/Dockerfile) +- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-bullseye/Dockerfile) +- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/buster/Dockerfile) +- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-buster/Dockerfile) +- [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/alpine3.16/Dockerfile) +- [`2.7.8-bullseye`, `2.7-bullseye`, `2-bullseye`, `2.7.8`, `2.7`, `2`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/bullseye/Dockerfile) +- [`2.7.8-slim-bullseye`, `2.7-slim-bullseye`, `2-slim-bullseye`, `2.7.8-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/slim-bullseye/Dockerfile) +- [`2.7.8-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/buster/Dockerfile) +- [`2.7.8-slim-buster`, `2.7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/slim-buster/Dockerfile) +- [`2.7.8-alpine3.16`, `2.7-alpine3.16`, `2-alpine3.16`, `2.7.8-alpine`, `2.7-alpine`, `2-alpine`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/alpine3.16/Dockerfile) # Quick reference (cont.) From 9a16cc193c34eb50ea2abea10f4a998539e9685e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Mar 2023 16:16:08 -0700 Subject: [PATCH 0195/2686] Run update.sh --- amazoncorretto/README.md | 72 ++++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 33399e2348e2..71477a40f920 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,42 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/al2/Dockerfile) -- [`8-al2023`, `8u362-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u362-al2023-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/al2023/Dockerfile) -- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/al2/Dockerfile) -- [`11-al2023`, `11.0.18-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.18-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.18-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/headful/al2023/Dockerfile) -- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/al2/Dockerfile) -- [`17-al2023`, `17.0.6-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/headful/al2023/Dockerfile) -- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/17/jdk/alpine/3.17/Dockerfile) -- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/al2/Dockerfile) -- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.16/Dockerfile) -- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/19/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/al2/Dockerfile) -- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.14/Dockerfile) -- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e7fcd8b6a4ed1967d86ec61d45892ddcf1050235/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/al2/Dockerfile) +- [`8-al2023`, `8u362-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u362-al2023-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/al2023/Dockerfile) +- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/al2/Dockerfile) +- [`11-al2023`, `11.0.18-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.18-al2023-headless`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.18-al2023-headful`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/headful/al2023/Dockerfile) +- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/al2/Dockerfile) +- [`17-al2023`, `17.0.6-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/headful/al2023/Dockerfile) +- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.17/Dockerfile) +- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/al2/Dockerfile) +- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.14/Dockerfile) +- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.15/Dockerfile) +- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.16/Dockerfile) +- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/al2/Dockerfile) +- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.14/Dockerfile) +- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) From 06c6aca3ce6f58d53d3081a13c999044a2699a66 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Mar 2023 17:14:37 -0700 Subject: [PATCH 0196/2686] Run update.sh --- vault/README.md | 6 +++--- wordpress/README.md | 27 +++++++++------------------ 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/vault/README.md b/vault/README.md index 35666e28533a..a825180762c0 100644 --- a/vault/README.md +++ b/vault/README.md @@ -28,9 +28,9 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Supported tags and respective `Dockerfile` links -- [`1.13.0`, `latest`](https://github.com/hashicorp/docker-vault/blob/91304d4005021e93fa4c5833a3e9f40671189e83/0.X/Dockerfile) -- [`1.12.4`](https://github.com/hashicorp/docker-vault/blob/d5750fd81e2d83749d2d353a21e826c80626fd74/0.X/Dockerfile) -- [`1.11.8`](https://github.com/hashicorp/docker-vault/blob/8aa831c3bccee7ba4252c2123ae2bec5a9d6317c/0.X/Dockerfile) +- [`1.13.1`, `latest`](https://github.com/hashicorp/docker-vault/blob/4743e7c2efe289f85528d72a6ca13e8223309008/0.X/Dockerfile) +- [`1.12.5`](https://github.com/hashicorp/docker-vault/blob/1c807197a9189143998d727ba68a849a9e58b7de/0.X/Dockerfile) +- [`1.11.9`](https://github.com/hashicorp/docker-vault/blob/9b1e7e85fe2b10bef43cb51f2811f94cbcca0985/0.X/Dockerfile) - [`1.10.11`](https://github.com/hashicorp/docker-vault/blob/dd29a490ec67705d58da784656b65a4947c53e4f/0.X/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 067db6938816..0f0897ff1d1d 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.1-apache`, `6.1-apache`, `6-apache`, `apache`, `6.1.1`, `6.1`, `6`, `latest`, `6.1.1-php8.0-apache`, `6.1-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.1.1-php8.0`, `6.1-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/apache/Dockerfile) -- [`6.1.1-fpm`, `6.1-fpm`, `6-fpm`, `fpm`, `6.1.1-php8.0-fpm`, `6.1-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/fpm/Dockerfile) -- [`6.1.1-fpm-alpine`, `6.1-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.1.1-php8.0-fpm-alpine`, `6.1-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.1.1-php8.1-apache`, `6.1-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.1.1-php8.1`, `6.1-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/apache/Dockerfile) -- [`6.1.1-php8.1-fpm`, `6.1-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/fpm/Dockerfile) -- [`6.1.1-php8.1-fpm-alpine`, `6.1-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.1.1-php8.2-apache`, `6.1-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.1.1-php8.2`, `6.1-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/apache/Dockerfile) -- [`6.1.1-php8.2-fpm`, `6.1-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/fpm/Dockerfile) -- [`6.1.1-php8.2-fpm-alpine`, `6.1-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a0034f2c829575d9d0e4542935d9ebcb2734096c/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.2.0-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.0`, `6.2`, `6`, `latest`, `6.2.0-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.0-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/apache/Dockerfile) +- [`6.2.0-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.0-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/fpm/Dockerfile) +- [`6.2.0-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.0-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.2.0-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.0-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/apache/Dockerfile) +- [`6.2.0-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/fpm/Dockerfile) +- [`6.2.0-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.2.0-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.0-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/apache/Dockerfile) +- [`6.2.0-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/fpm/Dockerfile) +- [`6.2.0-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2-RC5-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2-RC5`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2-RC5-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2-RC5-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/apache/Dockerfile) -- [`beta-6.2-RC5-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2-RC5-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2-RC5-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2-RC5-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2-RC5-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2-RC5-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/apache/Dockerfile) -- [`beta-6.2-RC5-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2-RC5-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2-RC5-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2-RC5-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/apache/Dockerfile) -- [`beta-6.2-RC5-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2-RC5-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0a9079d6fce70a0205e7104ccb019b00b3028429/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 15efb995867195d5e1a2292ef39fbdbd18d24bf4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Mar 2023 13:15:54 -0700 Subject: [PATCH 0197/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 454a4aac53dc..912e2712d7b8 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.2.0.7`, `ee-6.2.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/d81a89d492e7ac3408e966339aa8b6e49923fb92/enterprise/debian11/Dockerfile) -- [`ce-6.2.0.7`, `ce-6.2.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/d81a89d492e7ac3408e966339aa8b6e49923fb92/community/debian11/Dockerfile) +- [`ee-6.3.0.0`, `ee-6.3.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/663aad9ac154e5f372844065ca45c56261ac7f06/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.0`, `ce-6.3.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/663aad9ac154e5f372844065ca45c56261ac7f06/community/debian11/Dockerfile) # Quick reference (cont.) From 9679e01a1b7b2c75e8c9c647d9b6055d9384ed6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Mar 2023 14:16:00 -0700 Subject: [PATCH 0198/2686] Run update.sh --- swift/README.md | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/swift/README.md b/swift/README.md index 7d1a3783f763..03e3e541b127 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,16 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) -- [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) -- [`5.7.3-bionic`, `5.7-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/Dockerfile) -- [`5.7.3-bionic-slim`, `5.7-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/slim/Dockerfile) -- [`5.7.3-focal-slim`, `5.7-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) -- [`5.7.3-focal`, `5.7-focal`, `focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) -- [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) -- [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) -- [`5.7.3-centos7`, `5.7-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) -- [`5.7.3-centos7-slim`, `5.7-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) +- [`5.8.0`, `5.8`, `5.8.0-jammy`, `5.8-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/22.04/Dockerfile) +- [`5.8.0-slim`, `5.8-slim`, `5.8.0-jammy-slim`, `5.8-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/22.04/slim/Dockerfile) +- [`5.8.0-bionic`, `5.8-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/18.04/Dockerfile) +- [`5.8.0-bionic-slim`, `5.8-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/18.04/slim/Dockerfile) +- [`5.8.0-focal-slim`, `5.8-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/20.04/slim/Dockerfile) +- [`5.8.0-focal`, `5.8-focal`, `focal`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/20.04/Dockerfile) +- [`5.8.0-amazonlinux2`, `5.8-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/amazonlinux/2/Dockerfile) +- [`5.8.0-amazonlinux2-slim`, `5.8-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/amazonlinux/2/slim/Dockerfile) +- [`5.8.0-centos7`, `5.8-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/centos/7/Dockerfile) +- [`5.8.0-centos7-slim`, `5.8-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/centos/7/slim/Dockerfile) +- [`5.8.0-rhel-ubi9`, `5.8-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/rhel-ubi/9/Dockerfile) +- [`5.8.0-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/rhel-ubi/9/slim/Dockerfile) +- [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) +- [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) +- [`5.7.3-bionic`, `5.7-bionic`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/Dockerfile) +- [`5.7.3-bionic-slim`, `5.7-bionic-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/slim/Dockerfile) +- [`5.7.3-focal-slim`, `5.7-focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) +- [`5.7.3-focal`, `5.7-focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) +- [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) +- [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) +- [`5.7.3-centos7`, `5.7-centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) +- [`5.7.3-centos7-slim`, `5.7-centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) - [`5.6.3`, `5.6`, `5.6.3-bionic`, `5.6-bionic`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/Dockerfile) - [`5.6.3-slim`, `5.6-slim`, `5.6.3-bionic-slim`, `5.6-bionic-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/slim/Dockerfile) - [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) @@ -43,9 +55,7 @@ WARNING: - [`5.6.3-centos7`, `5.6-centos7`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/Dockerfile) - [`5.6.3-centos7-slim`, `5.6-centos7-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/slim/Dockerfile) - [`5.5.3`, `5.5`, `5.5.3-bionic`, `5.5-bionic`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/18.04/Dockerfile) -- [`5.5.3-xenial`, `5.5-xenial`, `xenial`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/16.04/Dockerfile) - [`5.5.3-slim`, `5.5-slim`, `5.5.3-bionic-slim`, `5.5-bionic-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/18.04/slim/Dockerfile) -- [`5.5.3-xenial-slim`, `5.5-xenial-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/16.04/slim/Dockerfile) - [`5.5.3-focal-slim`, `5.5-focal-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/slim/Dockerfile) - [`5.5.3-focal`, `5.5-focal`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/Dockerfile) - [`5.5.3-amazonlinux2`, `5.5-amazonlinux2`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/Dockerfile) @@ -53,9 +63,7 @@ WARNING: - [`5.5.3-centos7`, `5.5-centos7`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/Dockerfile) - [`5.5.3-centos7-slim`, `5.5-centos7-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/slim/Dockerfile) - [`5.4.3`, `5.4`, `5.4.3-bionic`, `5.4-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/18.04/Dockerfile) -- [`5.4.3-xenial`, `5.4-xenial`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/16.04/Dockerfile) - [`5.4.3-slim`, `5.4-slim`, `5.4.3-bionic-slim`, `5.4-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/18.04/slim/Dockerfile) -- [`5.4.3-xenial-slim`, `5.4-xenial-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/16.04/slim/Dockerfile) - [`5.4.3-focal-slim`, `5.4-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/slim/Dockerfile) - [`5.4.3-focal`, `5.4-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/Dockerfile) - [`5.4.3-amazonlinux2`, `5.4-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/amazonlinux/2/Dockerfile) @@ -63,9 +71,7 @@ WARNING: - [`5.4.3-centos7`, `5.4-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/Dockerfile) - [`5.4.3-centos7-slim`, `5.4-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/slim/Dockerfile) - [`5.3.3`, `5.3`, `5.3.3-bionic`, `5.3-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/18.04/Dockerfile) -- [`5.3.3-xenial`, `5.3-xenial`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/16.04/Dockerfile) - [`5.3.3-slim`, `5.3-slim`, `5.3.3-bionic-slim`, `5.3-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/18.04/slim/Dockerfile) -- [`5.3.3-xenial-slim`, `5.3-xenial-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/16.04/slim/Dockerfile) - [`5.3.3-focal-slim`, `5.3-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/slim/Dockerfile) - [`5.3.3-focal`, `5.3-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/Dockerfile) - [`5.3.3-amazonlinux2`, `5.3-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/amazonlinux/2/Dockerfile) @@ -73,9 +79,7 @@ WARNING: - [`5.3.3-centos7`, `5.3-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/Dockerfile) - [`5.3.3-centos7-slim`, `5.3-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/slim/Dockerfile) - [`5.2.5`, `5.2`, `5.2.5-bionic`, `5.2-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/18.04/Dockerfile) -- [`5.2.5-xenial`, `5.2-xenial`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/16.04/Dockerfile) - [`5.2.5-slim`, `5.2-slim`, `5.2.5-bionic-slim`, `5.2-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/18.04/slim/Dockerfile) -- [`5.2.5-xenial-slim`, `5.2-xenial-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/16.04/slim/Dockerfile) - [`5.2.5-focal-slim`, `5.2-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/slim/Dockerfile) - [`5.2.5-focal`, `5.2-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/Dockerfile) - [`5.2.5-amazonlinux2`, `5.2-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/amazonlinux/2/Dockerfile) @@ -83,14 +87,9 @@ WARNING: - [`5.2.5-centos7`, `5.2-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/Dockerfile) - [`5.2.5-centos7-slim`, `5.2-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/slim/Dockerfile) - [`5.1.5`, `5.1`, `5.1.5-bionic`, `5.1-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/18.04/Dockerfile) -- [`5.1.5-xenial`, `5.1-xenial`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/16.04/Dockerfile) - [`5.1.5-slim`, `5.1-slim`, `5.1.5-bionic-sim`, `5.1-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/18.04/slim/Dockerfile) -- [`5.1.5-xenial-slim`, `5.1-xenial-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/16.04/slim/Dockerfile) - [`5.0.3`, `5.0`, `5.0.3-bionic`, `5.0-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/18.04/Dockerfile) -- [`5.0.3-xenial`, `5.0-xenial`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/16.04/Dockerfile) - [`5.0.3-slim`, `5.0-slim`, `5.0.3-bionic-slim`, `5.0-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/18.04/slim/Dockerfile) -- [`5.0.3-xenial-slim`, `5.0-xenial-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/16.04/slim/Dockerfile) -- [`4.2.4`, `4.2`, `4`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/4.2/ubuntu/16.04/Dockerfile) # Quick reference (cont.) From ba4e8dc1697240953fa4f6dced5ef367a7167237 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Mar 2023 15:14:51 -0700 Subject: [PATCH 0199/2686] Run update.sh --- groovy/README.md | 10 +++++----- ibmjava/README.md | 8 ++++---- oraclelinux/README.md | 12 ++++++------ 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index 75e2f5017540..c91c6cbc11d7 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.10-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.10-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk8/Dockerfile) -- [`4.0.10-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.10-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk11/Dockerfile) -- [`4.0.10-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk11-alpine/Dockerfile) -- [`4.0.10-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.10-jdk`, `4.0-jdk`, `4.0.10`, `4.0`, `4`, `jdk`, `latest`, `4.0.10-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.10-jdk-jammy`, `4.0-jdk-jammy`, `4.0.10-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk17/Dockerfile) -- [`4.0.10-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.10-jdk-alpine`, `4.0-jdk-alpine`, `4.0.10-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/e657d1b02c68cd4b9001608fef2d235852be2ba7/jdk17-alpine/Dockerfile) +- [`4.0.11-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.11-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk8/Dockerfile) +- [`4.0.11-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.11-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk11/Dockerfile) +- [`4.0.11-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk11-alpine/Dockerfile) +- [`4.0.11-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.11-jdk`, `4.0-jdk`, `4.0.11`, `4.0`, `4`, `jdk`, `latest`, `4.0.11-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.11-jdk-jammy`, `4.0-jdk-jammy`, `4.0.11-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk17/Dockerfile) +- [`4.0.11-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.11-jdk-alpine`, `4.0-jdk-alpine`, `4.0.11-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index d7864cbd022f..48e6ec39d1ce 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/a596914862ee05bb419b7644e57135f8674e9161/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/a596914862ee05bb419b7644e57135f8674e9161/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/a596914862ee05bb419b7644e57135f8674e9161/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) @@ -34,7 +34,7 @@ WARNING: [GitHub](https://github.com/ibmruntimes/ci.docker/issues); for troubleshooting, see our [How Do I ...?](http://www.ibm.com/developerworks/java/jdk/howdoi/) page - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ibmjava/), [`i386`](https://hub.docker.com/r/i386/ibmjava/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ibmjava/), [`s390x`](https://hub.docker.com/r/s390x/ibmjava/) + [`amd64`](https://hub.docker.com/r/amd64/ibmjava/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ibmjava/), [`s390x`](https://hub.docker.com/r/s390x/ibmjava/) - **Published image artifact details**: [repo-info repo's `repos/ibmjava/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ibmjava) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ibmjava)) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index cec1395f9f59..97d7c8167025 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/9f15a08f6a06edb0d4913d150c8c2132ec076c9b/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/7-slim/Dockerfile) # Quick reference (cont.) From b8916ec8f65609d6f72eec0ca26f7e4cda47f8c4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Mar 2023 18:14:38 -0700 Subject: [PATCH 0200/2686] Run update.sh --- docker/README.md | 9 +++++++++ solr/README.md | 10 +++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docker/README.md b/docker/README.md index 917fd789b277..6a7bf11a1641 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,12 @@ WARNING: ## Simple Tags +- [`24.0.0-beta.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/cli/Dockerfile) +- [`24.0.0-beta.1-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.1-dind-alpine3.17`, `24.0.0-beta.1`, `24-rc`, `rc`, `24.0.0-beta.1-alpine3.17`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind/Dockerfile) +- [`24.0.0-beta.1-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-beta.1-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) +- [`24.0.0-beta.1-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-beta.1-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.2-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/cli/Dockerfile) - [`23.0.2-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.2-dind-alpine3.17`, `23.0.2`, `23.0`, `23`, `latest`, `23.0.2-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind/Dockerfile) - [`23.0.2-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind-rootless/Dockerfile) @@ -43,6 +49,9 @@ WARNING: ## Shared Tags +- `24.0.0-beta.1-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.2-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-1809/Dockerfile) diff --git a/solr/README.md b/solr/README.md index 25ab4161ae51..49d5c9fe9cdd 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.0`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/3b5c1e698660ad1946a538ce820b94a99d5f9408/8.11-slim/Dockerfile) +- [`9.2.0`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/8.11-slim/Dockerfile) # Quick reference (cont.) From b921e576401c4beb59f8bb08dc7d7dc75f33c0ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Apr 2023 12:14:29 -0700 Subject: [PATCH 0201/2686] Run update.sh --- bash/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/bash/README.md b/bash/README.md index d479b88f2179..b95a47ff5e56 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230327`, `devel`, `devel-20230327-alpine3.16`, `devel-alpine3.16`](https://github.com/tianon/docker-bash/blob/f30bf5c7d278128dee58abe3d10e7e3812bbfe90/devel/Dockerfile) -- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.16`, `5.2-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/tianon/docker-bash/blob/cb26ef95b253f1bd736824c8e88d86e9dcadfa5e/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.16`, `5.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.16`, `5.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.16`, `4.4-alpine3.16`, `4-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.16`, `4.3-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.16`, `4.2-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.16`, `4.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/a09af45d612181a67232d6409528062ae4484fef/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.16`, `4.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`](https://github.com/tianon/docker-bash/blob/f1c77bd73380eff08af39e3eee54bfdf39ecf6a5/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.16`, `3.1-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.16`, `3.0-alpine3.16`](https://github.com/tianon/docker-bash/blob/ab48980aaa9b26f074375b19fe430e4bf5970573/3.0/Dockerfile) +- [`devel-20230327`, `devel`, `devel-20230327-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/devel/Dockerfile) +- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.2/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.1/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.0/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.17`, `4.4-alpine3.17`, `4-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.4/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.17`, `4.3-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.3/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.17`, `4.2-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.2/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.17`, `4.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.1/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.17`, `4.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.0/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.2/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.17`, `3.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.1/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.17`, `3.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.0/Dockerfile) # Quick reference (cont.) From abd1044432451443699bac74995c61ed1bf7eb26 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Apr 2023 13:08:43 -0700 Subject: [PATCH 0202/2686] Run update.sh --- ghost/README.md | 4 ++-- irssi/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 3113065ee367..8bf818a09170 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.2`, `5.40`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5780829be2d94c0a696007565fb2ccd41e8937e6/5/debian/Dockerfile) -- [`5.40.2-alpine`, `5.40-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5780829be2d94c0a696007565fb2ccd41e8937e6/5/alpine/Dockerfile) +- [`5.41.0`, `5.41`, `5`, `latest`](https://github.com/docker-library/ghost/blob/754210562f1bdeda3df8499142a79669eb071d66/5/debian/Dockerfile) +- [`5.41.0-alpine`, `5.41-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/754210562f1bdeda3df8499142a79669eb071d66/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/irssi/README.md b/irssi/README.md index 821d046ab93f..7d74917f85d9 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.3`, `1.4`, `1`, `latest`](https://github.com/jessfraz/irssi/blob/980ac05787b560d131fdb3cf0fc45d097fd8d366/debian/Dockerfile) -- [`1.4.3-alpine`, `1.4-alpine`, `1-alpine`, `alpine`](https://github.com/jessfraz/irssi/blob/980ac05787b560d131fdb3cf0fc45d097fd8d366/alpine/Dockerfile) +- [`1.4.4`, `1.4`, `1`, `latest`](https://github.com/jessfraz/irssi/blob/94e29e7acdc9c44649b57a4efcc43d52496312c2/debian/Dockerfile) +- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`](https://github.com/jessfraz/irssi/blob/6806daa0d17eae1cd10df10ff3a533d3655ac9f8/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index f42a15ae86ff..59ca17b8d429 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-15-jdk-oraclelinux8`, `21-ea-15-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-15-jdk-oracle`, `21-ea-15-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-15-jdk-oraclelinux7`, `21-ea-15-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-15-jdk-bullseye`, `21-ea-15-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/bullseye/Dockerfile) -- [`21-ea-15-jdk-slim-bullseye`, `21-ea-15-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-15-jdk-slim`, `21-ea-15-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-15-jdk-buster`, `21-ea-15-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/buster/Dockerfile) -- [`21-ea-15-jdk-slim-buster`, `21-ea-15-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/slim-buster/Dockerfile) -- [`21-ea-15-jdk-windowsservercore-ltsc2022`, `21-ea-15-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-15-jdk-windowsservercore-1809`, `21-ea-15-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-15-jdk-nanoserver-1809`, `21-ea-15-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-16-jdk-oraclelinux8`, `21-ea-16-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-16-jdk-oracle`, `21-ea-16-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-16-jdk-oraclelinux7`, `21-ea-16-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-16-jdk-bullseye`, `21-ea-16-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/bullseye/Dockerfile) +- [`21-ea-16-jdk-slim-bullseye`, `21-ea-16-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-16-jdk-slim`, `21-ea-16-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-16-jdk-buster`, `21-ea-16-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/buster/Dockerfile) +- [`21-ea-16-jdk-slim-buster`, `21-ea-16-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/slim-buster/Dockerfile) +- [`21-ea-16-jdk-windowsservercore-ltsc2022`, `21-ea-16-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-16-jdk-windowsservercore-1809`, `21-ea-16-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-16-jdk-nanoserver-1809`, `21-ea-16-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-15-jdk`, `21-ea-15`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-15-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-15-jdk-windowsservercore`, `21-ea-15-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-15-jdk-nanoserver`, `21-ea-15-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e380564c7664da5698bbff2a30934f9f6ca23ff/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-16-jdk`, `21-ea-16`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-16-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-16-jdk-windowsservercore`, `21-ea-16-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-16-jdk-nanoserver`, `21-ea-16-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 2e8495889a46e3851518b0eb48b03fb4edafe454 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Apr 2023 14:16:44 -0700 Subject: [PATCH 0203/2686] Run update.sh --- php/README.md | 28 ++++++++++++++++++++++++++++ ros/README.md | 6 +++--- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/php/README.md b/php/README.md index 1a2960e360a8..629ad90d33e3 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2.5RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.5RC1-bullseye`, `8.2-rc-bullseye`, `8.2.5RC1-cli`, `8.2-rc-cli`, `8.2.5RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.5RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.5RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.5RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.5RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.5RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.5RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.5RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.5RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/cli/Dockerfile) +- [`8.2.5RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/apache/Dockerfile) +- [`8.2.5RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.5RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/zts/Dockerfile) +- [`8.2.5RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.5RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.5RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.5RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.5RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.5RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.5RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.5RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/zts/Dockerfile) +- [`8.2.5RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.5RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/cli/Dockerfile) +- [`8.2.5RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/fpm/Dockerfile) +- [`8.2.5RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/zts/Dockerfile) - [`8.2.4-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.4-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.4-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.4`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/cli/Dockerfile) - [`8.2.4-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.4-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/apache/Dockerfile) - [`8.2.4-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.4-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.2.4-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.4-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/cli/Dockerfile) - [`8.2.4-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.4-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.18RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.18RC1-bullseye`, `8.1-rc-bullseye`, `8.1.18RC1-cli`, `8.1-rc-cli`, `8.1.18RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.18RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.18RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.18RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.18RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.18RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.18RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.18RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.18RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/cli/Dockerfile) +- [`8.1.18RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/apache/Dockerfile) +- [`8.1.18RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.18RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/zts/Dockerfile) +- [`8.1.18RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.18RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.18RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.18RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.18RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.18RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.18RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.18RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.18RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.18RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.18RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.18RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.17-cli-bullseye`, `8.1-cli-bullseye`, `8.1.17-bullseye`, `8.1-bullseye`, `8.1.17-cli`, `8.1-cli`, `8.1.17`, `8.1`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/cli/Dockerfile) - [`8.1.17-apache-bullseye`, `8.1-apache-bullseye`, `8.1.17-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/apache/Dockerfile) - [`8.1.17-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.17-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/fpm/Dockerfile) diff --git a/ros/README.md b/ros/README.md index ef55a20e60b3..a3296bb8397e 100644 --- a/ros/README.md +++ b/ros/README.md @@ -42,9 +42,9 @@ WARNING: - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) -- [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) -- [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/rolling/ubuntu/jammy/perception/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) +- [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) +- [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/perception/Dockerfile) # Quick reference (cont.) From 19c3f5d1f29660e65bd8871537ed74124b216d0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Apr 2023 15:15:16 -0700 Subject: [PATCH 0204/2686] Run update.sh --- clojure/README.md | 111 ++++++++++++++++++++------------------------ elixir/README.md | 12 ++--- fluentd/README.md | 4 +- mediawiki/README.md | 18 +++---- nextcloud/README.md | 18 +++---- photon/README.md | 2 +- rabbitmq/README.md | 16 +++---- sl/README.md | 2 +- sonarqube/README.md | 15 ++++-- 9 files changed, 97 insertions(+), 101 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index af50e443f9d1..82990b5a7745 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,66 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1257-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1257-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1257-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1257`, `temurin-8-tools-deps-1.11.1.1257-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-alpine`, `temurin-11-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1257-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1257-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1257-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1257`, `temurin-11-tools-deps-1.11.1.1257-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`boot-2.8.3-alpine`, `boot-alpine`, `temurin-17-boot-2.8.3-alpine`, `temurin-17-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1257-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1257-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1257-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1257-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1257-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1257`, `temurin-17-tools-deps-1.11.1.1257-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1257`, `tools-deps-1.11.1.1257-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-19-boot-2.8.3-alpine`, `temurin-19-boot-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye`, `temurin-19-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-bullseye-slim`, `temurin-19-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/boot/Dockerfile) -- [`temurin-19-boot-2.8.3-focal`, `temurin-19-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/boot/Dockerfile) -- [`temurin-19-boot`, `temurin-19-boot-2.8.3`, `temurin-19-boot-2.8.3-jammy`, `temurin-19-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/boot/Dockerfile) -- [`temurin-19-lein-2.10.0-alpine`, `temurin-19-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye`, `temurin-19-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-bullseye-slim`, `temurin-19-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/lein/Dockerfile) -- [`temurin-19-lein-2.10.0-focal`, `temurin-19-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/lein/Dockerfile) -- [`temurin-19-lein`, `temurin-19-lein-2.10.0`, `temurin-19-lein-2.10.0-jammy`, `temurin-19-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/lein/Dockerfile) -- [`temurin-19-alpine`, `temurin-19-tools-deps-1.11.1.1257-alpine`, `temurin-19-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-19-bullseye`, `temurin-19-tools-deps-1.11.1.1257-bullseye`, `temurin-19-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-19/tools-deps/Dockerfile) -- [`temurin-19-bullseye-slim`, `temurin-19-tools-deps-1.11.1.1257-bullseye-slim`, `temurin-19-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/debian-bullseye-slim-19/tools-deps/Dockerfile) -- [`temurin-19-focal`, `temurin-19-tools-deps-1.11.1.1257-focal`, `temurin-19-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-focal/tools-deps/Dockerfile) -- [`temurin-19-jammy`, `temurin-19-tools-deps`, `temurin-19-tools-deps-1.11.1.1257`, `temurin-19-tools-deps-1.11.1.1257-jammy`, `temurin-19-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/c4a11b0a9f67eed505b0203d29887e093ae691eb/target/eclipse-temurin-19-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1267-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1267-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1267-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1267`, `temurin-8-tools-deps-1.11.1.1267-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1267-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1267-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1267-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1267`, `temurin-11-tools-deps-1.11.1.1267-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1267-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1267-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1267-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1267-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1267-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1267`, `temurin-17-tools-deps-1.11.1.1267-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1267`, `tools-deps-1.11.1.1267-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1267-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1267-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1267`, `temurin-20-tools-deps-1.11.1.1267-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 35fc78e8780f..318e8c45aae4 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.14.3`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/Dockerfile) -- [`1.14.3-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/slim/Dockerfile) -- [`1.14.3-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/alpine/Dockerfile) -- [`1.14.3-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24/Dockerfile) -- [`1.14.3-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24-alpine/Dockerfile) -- [`1.14.3-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/b108e93389b820554ad9f1e8e07001ed8186d230/1.14/otp-24-slim/Dockerfile) +- [`1.14.4`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/Dockerfile) +- [`1.14.4-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/slim/Dockerfile) +- [`1.14.4-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/alpine/Dockerfile) +- [`1.14.4-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24/Dockerfile) +- [`1.14.4-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-alpine/Dockerfile) +- [`1.14.4-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-slim/Dockerfile) - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) diff --git a/fluentd/README.md b/fluentd/README.md index 3244554f1a26..ab0b3e858154 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.14.0-1.0`, `v1.14-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/a9e4cee765c7aaf7876d6fe3282aa565dbcdc2a4/v1.14/alpine/Dockerfile) -- [`v1.14.0-debian-1.0`, `v1.14-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/a9e4cee765c7aaf7876d6fe3282aa565dbcdc2a4/v1.14/debian/Dockerfile) +- [`v1.16.0-1.0`, `v1.16-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/b1a4d1d1ff36c6904c7f4a5e94a09e7938dab9ef/v1.16/alpine/Dockerfile) +- [`v1.16.0-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/b1a4d1d1ff36c6904c7f4a5e94a09e7938dab9ef/v1.16/debian/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index d04c6ef39481..6b6f3a778566 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.39.2`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/apache/Dockerfile) -- [`1.39.2-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/fpm/Dockerfile) -- [`1.39.2-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.39/fpm-alpine/Dockerfile) -- [`1.38.5`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/apache/Dockerfile) -- [`1.38.5-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/fpm/Dockerfile) -- [`1.38.5-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.38/fpm-alpine/Dockerfile) -- [`1.35.9`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/apache/Dockerfile) -- [`1.35.9-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/fpm/Dockerfile) -- [`1.35.9-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa07f326d2719366125551213a2a9be8801aa773/1.35/fpm-alpine/Dockerfile) +- [`1.39.3`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/apache/Dockerfile) +- [`1.39.3-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/fpm/Dockerfile) +- [`1.39.3-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/fpm-alpine/Dockerfile) +- [`1.38.6`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/apache/Dockerfile) +- [`1.38.6-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/fpm/Dockerfile) +- [`1.38.6-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/fpm-alpine/Dockerfile) +- [`1.35.10`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/apache/Dockerfile) +- [`1.35.10-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/fpm/Dockerfile) +- [`1.35.10-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 1b8b9b3496dc..174f78b037a3 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24.0.11-apache`, `24.0-apache`, `24-apache`, `24.0.11`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/apache/Dockerfile) -- [`24.0.11-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/fpm/Dockerfile) -- [`24.0.11-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/24/fpm-alpine/Dockerfile) -- [`25.0.5-apache`, `25.0-apache`, `25-apache`, `25.0.5`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/apache/Dockerfile) -- [`25.0.5-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/fpm/Dockerfile) -- [`25.0.5-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/1ca0f40af4fee78051c3870f41e169c9da1bdcba/25/fpm-alpine/Dockerfile) -- [`26.0.0-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/apache/Dockerfile) -- [`26.0.0-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/89a0b8904e90732e51c9cdcde80f849c6b439f66/26/fpm/Dockerfile) -- [`26.0.0-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/289f0bb8a3f1bd24d1633bbd01798c5476368827/26/fpm-alpine/Dockerfile) +- [`24.0.11-apache`, `24.0-apache`, `24-apache`, `24.0.11`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/apache/Dockerfile) +- [`24.0.11-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/fpm/Dockerfile) +- [`24.0.11-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/fpm-alpine/Dockerfile) +- [`25.0.5-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.5`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/apache/Dockerfile) +- [`25.0.5-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/fpm/Dockerfile) +- [`25.0.5-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/fpm-alpine/Dockerfile) +- [`26.0.0-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/apache/Dockerfile) +- [`26.0.0-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/fpm/Dockerfile) +- [`26.0.0-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index cb44e0e0f02d..dd15ab7e2a2b 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230128`, `5.0-beta`](https://github.com/vmware/photon-docker-image/blob/2e9a9ec4cc3a40565d67c2c3495e5ef3dd046770/docker/Dockerfile) +- [`5.0`, `5.0-20230403`, `5.0-RC`](https://github.com/vmware/photon-docker-image/blob/bc4e559a267c942b5db512a3fde6c3592a802a98/docker/Dockerfile) - [`4.0`, `4.0-20230325`, `latest`](https://github.com/vmware/photon-docker-image/blob/3e4ec8a42f888ebc82904a3422fcc52e03ca65ba/docker/Dockerfile) - [`3.0`, `3.0-20230325`](https://github.com/vmware/photon-docker-image/blob/d197197ed523286fa4e0867a8eaa3864ebabb446/docker/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b73c4043495a..74c46383b67a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.3`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6a960c02c9b01998514f7bb4e100f9dabfdcaca3/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.3-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6a960c02c9b01998514f7bb4e100f9dabfdcaca3/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.3-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.11`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/Dockerfile) -- [`3.11.11-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.11-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/Dockerfile) -- [`3.11.11-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.0-beta.5`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/954b05e8e8a352116a25085c06fb1d8a9b49302a/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.5-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/954b05e8e8a352116a25085c06fb1d8a9b49302a/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.5-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/ubuntu/Dockerfile) +- [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/alpine/Dockerfile) +- [`3.11.13-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/Dockerfile) - [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/Dockerfile) diff --git a/sl/README.md b/sl/README.md index 00b760b6cf75..b8bfb9b497f2 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ad5e83326e5923bb4d19b5a2c662c485b3a8a317/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/138a0b30dbde1b11205e41a25686f5ad78d70fe2/sl7/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 72e4694a3b3a..17eca0c0f789 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,11 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.0-community`, `9.9-community`, `9-community`, `community`, `lts`, `lts-community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/community/Dockerfile) -- [`9.9.0-developer`, `9.9-developer`, `9-developer`, `developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/developer/Dockerfile) -- [`9.9.0-enterprise`, `9.9-enterprise`, `9-enterprise`, `enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/enterprise/Dockerfile) -- [`9.9.0-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/datacenter/app/Dockerfile) -- [`9.9.0-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/ed2071a47632c34d7639b6ad1b393ab2aee1c9a8/9/datacenter/search/Dockerfile) +- [`9.9.0-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/community/Dockerfile) +- [`9.9.0-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/developer/Dockerfile) +- [`9.9.0-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/enterprise/Dockerfile) +- [`9.9.0-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/datacenter/app/Dockerfile) +- [`9.9.0-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/datacenter/search/Dockerfile) +- [`10.0.0-community`, `10.0-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/community/Dockerfile) +- [`10.0.0-developer`, `10.0-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/developer/Dockerfile) +- [`10.0.0-enterprise`, `10.0-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/enterprise/Dockerfile) +- [`10.0.0-datacenter-app`, `10.0-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/datacenter/app/Dockerfile) +- [`10.0.0-datacenter-search`, `10.0-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 949e1bbc54ba7806153e2d384b7ad81d6706663b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Apr 2023 16:08:43 -0700 Subject: [PATCH 0205/2686] Run update.sh --- clearlinux/README.md | 2 +- telegraf/README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2ae8ea68117f..eeda710a2158 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ded2505524da863aa66c7b314acceb7c2f6b6f3c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/31405aa6183f586d6d268e217c088cc8a21191ee/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 3144b1932e16..26ffdbc8adda 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f772a3a16f222b2445697b846d55c45980a2e033/telegraf/1.26/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.26/alpine/Dockerfile) # Quick reference (cont.) From 7bd1ec5d947b7352dbf3dde0eca48223cd2a5762 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Apr 2023 12:14:33 -0700 Subject: [PATCH 0206/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index bd45f9ce90c4..86c7171b43b3 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.20.2-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/bullseye/Dockerfile) -- [`1.20.2-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/buster/Dockerfile) -- [`1.20.2-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.2-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/alpine3.17/Dockerfile) -- [`1.20.2-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/alpine3.16/Dockerfile) -- [`1.20.2-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.2-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.2-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.2-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.7-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/bullseye/Dockerfile) -- [`1.19.7-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/buster/Dockerfile) -- [`1.19.7-alpine3.17`, `1.19-alpine3.17`, `1.19.7-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/alpine3.17/Dockerfile) -- [`1.19.7-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/alpine3.16/Dockerfile) -- [`1.19.7-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.7-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.7-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.7-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.3-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/bullseye/Dockerfile) +- [`1.20.3-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/buster/Dockerfile) +- [`1.20.3-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.3-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/alpine3.17/Dockerfile) +- [`1.20.3-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/alpine3.16/Dockerfile) +- [`1.20.3-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.3-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.3-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.3-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.8-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/bullseye/Dockerfile) +- [`1.19.8-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/buster/Dockerfile) +- [`1.19.8-alpine3.17`, `1.19-alpine3.17`, `1.19.8-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/alpine3.17/Dockerfile) +- [`1.19.8-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/alpine3.16/Dockerfile) +- [`1.19.8-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.8-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.8-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.8-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20.2`, `1.20`, `1`, `latest`: - - [`1.20.2-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.20/bullseye/Dockerfile) - - [`1.20.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.2-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.2-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/25111f48afaae26f17e15459dd125f0e3776be66/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.7`, `1.19`: - - [`1.19.7-bullseye`](https://github.com/docker-library/golang/blob/6d5470fc89b2e09d176e2ec0602ec5e29a1a2660/1.19/bullseye/Dockerfile) - - [`1.19.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.7-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.7-nanoserver`, `1.19-nanoserver`: - - [`1.19.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/3c664b90a9cd0d73b89435b7a022d3e3066b3b72/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.3`, `1.20`, `1`, `latest`: + - [`1.20.3-bullseye`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/bullseye/Dockerfile) + - [`1.20.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.3-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.3-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.8`, `1.19`: + - [`1.19.8-bullseye`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/bullseye/Dockerfile) + - [`1.19.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.8-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.8-nanoserver`, `1.19-nanoserver`: + - [`1.19.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 310809580ff373d0a93016720ea69a2e81edf47c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Apr 2023 18:14:51 -0700 Subject: [PATCH 0207/2686] Run update.sh --- docker/README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6a7bf11a1641..6d23eb97f286 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,36 +28,36 @@ WARNING: ## Simple Tags -- [`24.0.0-beta.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/cli/Dockerfile) +- [`24.0.0-beta.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/0e00a29925ead3f1ba1ccb77895db4963d10ad47/24-rc/cli/Dockerfile) - [`24.0.0-beta.1-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.1-dind-alpine3.17`, `24.0.0-beta.1`, `24-rc`, `rc`, `24.0.0-beta.1-alpine3.17`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind/Dockerfile) - [`24.0.0-beta.1-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind-rootless/Dockerfile) - [`24.0.0-beta.1-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) - [`24.0.0-beta.1-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.1-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.2-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/cli/Dockerfile) -- [`23.0.2-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.2-dind-alpine3.17`, `23.0.2`, `23.0`, `23`, `latest`, `23.0.2-alpine3.17`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind/Dockerfile) -- [`23.0.2-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/dind-rootless/Dockerfile) -- [`23.0.2-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.2-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.2-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.23-cli`, `20.10-cli`, `20-cli`, `20.10.23-cli-alpine3.17`, `20.10.23`, `20.10`, `20`, `20.10.23-alpine3.17`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/cli/Dockerfile) -- [`20.10.23-dind`, `20.10-dind`, `20-dind`, `20.10.23-dind-alpine3.17`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind/Dockerfile) -- [`20.10.23-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/289f581eae49901789a416fee2ede9a6950e7629/20.10/dind-rootless/Dockerfile) -- [`20.10.23-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.23-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.23-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-1809/Dockerfile) +- [`23.0.3-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/cli/Dockerfile) +- [`23.0.3-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.3-dind-alpine3.17`, `23.0.3`, `23.0`, `23`, `latest`, `23.0.3-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind/Dockerfile) +- [`23.0.3-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind-rootless/Dockerfile) +- [`23.0.3-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) +- [`23.0.3-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.3-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-1809/Dockerfile) +- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/cli/Dockerfile) +- [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) +- [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) +- [`20.10.24-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) +- [`20.10.24-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.24-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.0-beta.1-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - [`24.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) -- `23.0.2-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/47f0e5da49022e03f76c1bcaf911f640996d8288/23.0/windows/windowsservercore-1809/Dockerfile) -- `20.10.23-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/124e0288010e8b2774e56e58202a3941ac0234ff/20.10/windows/windowsservercore-1809/Dockerfile) +- `23.0.3-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-1809/Dockerfile) +- `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: + - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 14d1394c1fc155a5b5f545a1def27546906f8f4e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Apr 2023 10:08:49 -0700 Subject: [PATCH 0208/2686] Run update.sh --- bash/README.md | 2 +- julia/README.md | 26 +++++++++++++------------- maven/README.md | 42 +++++++++++++++++++++--------------------- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/bash/README.md b/bash/README.md index b95a47ff5e56..27c83f9a1c76 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230327`, `devel`, `devel-20230327-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/devel/Dockerfile) +- [`devel-20230403`, `devel`, `devel-20230403-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/5055b665bc75b8ee3023f3bccf6c8dc01f36aeef/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.0/Dockerfile) diff --git a/julia/README.md b/julia/README.md index c3a84fb47165..6cb9184d9777 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.0-rc1-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-rc1-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/buster/Dockerfile) -- [`1.9.0-rc1-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc1-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-rc1-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-rc1-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-rc1-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.9.0-rc2-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/bullseye/Dockerfile) +- [`1.9.0-rc2-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/buster/Dockerfile) +- [`1.9.0-rc2-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc2-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/alpine3.17/Dockerfile) +- [`1.9.0-rc2-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/alpine3.16/Dockerfile) +- [`1.9.0-rc2-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-rc2-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) - [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/buster/Dockerfile) - [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.17/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.9.0-rc1`, `1.9-rc`, `rc`: - - [`1.9.0-rc1-bullseye`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-rc1-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/27810a26dadc68dc659819fb93204833671c7b0e/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc2`, `1.9-rc`, `rc`: + - [`1.9.0-rc2-bullseye`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/bullseye/Dockerfile) + - [`1.9.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc2-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.9.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) - `1.8.5`, `1.8`, `1`, `latest`: - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/maven/README.md b/maven/README.md index 45deb481f86b..42e508cb04ab 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.0-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/de70b3e783c1c9b2835b6be4c3826d6221bf4fca/eclipse-temurin-11/Dockerfile) -- [`3.9.0-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-17`, `3.9.0`, `3.9.0-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17/Dockerfile) -- [`3.9.0-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-19`, `3.9-eclipse-temurin-19`, `3-eclipse-temurin-19`](https://github.com/carlossg/docker-maven/blob/de70b3e783c1c9b2835b6be4c3826d6221bf4fca/eclipse-temurin-19/Dockerfile) -- [`3.9.0-eclipse-temurin-19-alpine`, `3.9-eclipse-temurin-19-alpine`, `3-eclipse-temurin-19-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-19-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-19-focal`, `3.9-eclipse-temurin-19-focal`, `3-eclipse-temurin-19-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-19-focal/Dockerfile) -- [`3.9.0-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8/Dockerfile) -- [`3.9.0-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.0-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.0-ibmjava-8`, `3.9.0-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibmjava-8/Dockerfile) -- [`3.9.0-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibm-semeru-11-focal/Dockerfile) -- [`3.9.0-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/ibm-semeru-17-focal/Dockerfile) -- [`3.9.0-amazoncorretto-11`, `3.9.0-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-11/Dockerfile) -- [`3.9.0-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-17/Dockerfile) -- [`3.9.0-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-19/Dockerfile) -- [`3.9.0-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/amazoncorretto-8/Dockerfile) -- [`3.9.0-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/sapmachine-11/Dockerfile) -- [`3.9.0-sapmachine-17`, `3.9.0-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/ba0653e9cbde55b7806b4b99a5afcbf7ca8485d7/sapmachine-17/Dockerfile) +- [`3.9.1-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/f99b8cd582524a58a73b23b97e9b8c17001573af/eclipse-temurin-11/Dockerfile) +- [`3.9.1-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.1-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.1-eclipse-temurin-17`, `3.9.1`, `3.9.1-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17/Dockerfile) +- [`3.9.1-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.1-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.1-eclipse-temurin-20`, `3.9-eclipse-temurin-20`, `3-eclipse-temurin-20`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20/Dockerfile) +- [`3.9.1-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20-alpine/Dockerfile) +- [`3.9.1-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8/Dockerfile) +- [`3.9.1-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.1-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.1-ibmjava-8`, `3.9.1-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibmjava-8/Dockerfile) +- [`3.9.1-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-11-focal/Dockerfile) +- [`3.9.1-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-17-focal/Dockerfile) +- [`3.9.1-amazoncorretto-11`, `3.9.1-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-11/Dockerfile) +- [`3.9.1-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-17/Dockerfile) +- [`3.9.1-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-19/Dockerfile) +- [`3.9.1-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/amazoncorretto-20/Dockerfile) +- [`3.9.1-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-8/Dockerfile) +- [`3.9.1-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-11/Dockerfile) +- [`3.9.1-sapmachine-17`, `3.9.1-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-17/Dockerfile) # Quick reference (cont.) From acd12eb11f59c98be27f7395f0c06e064dab1466 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Apr 2023 14:16:44 -0700 Subject: [PATCH 0209/2686] Run update.sh --- influxdb/README.md | 40 ++++++++++----------- mongo/README.md | 15 ++++++++ python/README.md | 90 +++++++++++++++++++++++----------------------- 3 files changed, 80 insertions(+), 65 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 8df90ddfee0c..915158dc64ec 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.10-data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.10-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.10-meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.10-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.2-data`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.2-meta`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.4`, `2.4.0`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.4/Dockerfile) -- [`2.4-alpine`, `2.4.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.4/alpine/Dockerfile) -- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.5/Dockerfile) -- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.5/alpine/Dockerfile) -- [`2.6`, `2.6.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.6/Dockerfile) -- [`2.6-alpine`, `2.6.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/04d3ed7a8f94d98e0b362b2cedb8cb13cb69836a/influxdb/2.6/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/meta/alpine/Dockerfile) +- [`1.9-data`, `1.9.10-data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.10-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.10-meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.10-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.2-data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.2-meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/meta/alpine/Dockerfile) +- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.5/Dockerfile) +- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.5/alpine/Dockerfile) +- [`2.6`, `2.6.1`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.6/Dockerfile) +- [`2.6-alpine`, `2.6.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.6/alpine/Dockerfile) +- [`2.7`, `2.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 1bc507a9a0f7..a2442f92de50 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,6 +38,11 @@ WARNING: - [`5.0.15-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.15-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.15-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.20-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/Dockerfile) +- [`4.4.20-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.20-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.20-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.20-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.19-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) - [`4.4.19-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.19-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) @@ -71,6 +76,16 @@ WARNING: - `5.0.15-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.20-rc0`, `4.4-rc`: + - [`4.4.20-rc0-focal`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/Dockerfile) + - [`4.4.20-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.20-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.20-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.20-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.20-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.20-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.20-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.20-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.19`, `4.4`, `4`: - [`4.4.19-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/python/README.md b/python/README.md index 7a2df893ea63..219d5f24fe31 100644 --- a/python/README.md +++ b/python/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`3.12.0a6-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a6-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a6-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a6-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/buster/Dockerfile) -- [`3.12.0a6-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a6-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a6-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a6-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a6-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.2-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/bullseye/Dockerfile) -- [`3.11.2-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.2-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.11/slim-bullseye/Dockerfile) -- [`3.11.2-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/buster/Dockerfile) -- [`3.11.2-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.11/slim-buster/Dockerfile) -- [`3.11.2-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.2-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.17/Dockerfile) -- [`3.11.2-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/alpine3.16/Dockerfile) -- [`3.11.2-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.2-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.10-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/bullseye/Dockerfile) -- [`3.10.10-slim-bullseye`, `3.10-slim-bullseye`, `3.10.10-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.10/slim-bullseye/Dockerfile) -- [`3.10.10-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/buster/Dockerfile) -- [`3.10.10-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.10/slim-buster/Dockerfile) -- [`3.10.10-alpine3.17`, `3.10-alpine3.17`, `3.10.10-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.17/Dockerfile) -- [`3.10.10-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/alpine3.16/Dockerfile) -- [`3.10.10-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.10-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0a7-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a7-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a7-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a7-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/buster/Dockerfile) +- [`3.12.0a7-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a7-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a7-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a7-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/bullseye/Dockerfile) +- [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/slim-bullseye/Dockerfile) +- [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/buster/Dockerfile) +- [`3.11.3-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/slim-buster/Dockerfile) +- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/alpine3.17/Dockerfile) +- [`3.11.3-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/alpine3.16/Dockerfile) +- [`3.11.3-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.3-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.11-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/bullseye/Dockerfile) +- [`3.10.11-slim-bullseye`, `3.10-slim-bullseye`, `3.10.11-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/slim-bullseye/Dockerfile) +- [`3.10.11-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/buster/Dockerfile) +- [`3.10.11-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/slim-buster/Dockerfile) +- [`3.10.11-alpine3.17`, `3.10-alpine3.17`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/alpine3.17/Dockerfile) +- [`3.10.11-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/alpine3.16/Dockerfile) +- [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) - [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) - [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.9/slim-bullseye/Dockerfile) - [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/buster/Dockerfile) @@ -73,27 +73,27 @@ WARNING: ## Shared Tags -- `3.12.0a6`, `3.12-rc`: - - [`3.12.0a6-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0a6-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/8442e048835d470610de219443b41d477d330e86/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.11.2`, `3.11`, `3`, `latest`: - - [`3.11.2-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.11/bullseye/Dockerfile) - - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.2-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/e664abbb9af1ee6aae5778d70a5df79d86d9ec57/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10.10`, `3.10`: - - [`3.10.10-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.10/bullseye/Dockerfile) - - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10.10-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/a3533b1c48d968e784516470d18f3c24975df3d8/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a7`, `3.12-rc`: + - [`3.12.0a7-bullseye`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0a7-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.11.3`, `3.11`, `3`, `latest`: + - [`3.11.3-bullseye`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/bullseye/Dockerfile) + - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.3-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.10.11`, `3.10`: + - [`3.10.11-bullseye`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/bullseye/Dockerfile) + - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10.11-windowsservercore`, `3.10-windowsservercore`: + - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: From 5cb4992792a2004e2fae302a21eba33cfbcc3485 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Apr 2023 15:14:42 -0700 Subject: [PATCH 0210/2686] Run update.sh --- consul/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consul/README.md b/consul/README.md index 80262ef1734b..2de01504fea1 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,8 +28,8 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.1`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/c75e9e601e63f206800256c38e413c4204f38e4e/0.X/Dockerfile) -- [`1.14.5`, `1.14`](https://github.com/hashicorp/docker-consul/blob/48c111f6adfc11377d7cef43e015555bda7719d1/0.X/Dockerfile) +- [`1.15.2`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/2cab863154c88062f6e505afe5ffc0a79666d887/0.X/Dockerfile) +- [`1.14.6`, `1.14`](https://github.com/hashicorp/docker-consul/blob/e7cc3db8002684e0db9e6ee1aa4f04800881071a/0.X/Dockerfile) - [`1.13.7`, `1.13`](https://github.com/hashicorp/docker-consul/blob/83ea602f6bb914e6a771c4708105ea16ef17f793/0.X/Dockerfile) # Quick reference (cont.) From 14c24057dea9de30150005f120dee68dc62139a1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Apr 2023 16:08:42 -0700 Subject: [PATCH 0211/2686] Run update.sh --- elasticsearch/README.md | 2 +- ghost/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index fe034008a62f..8c5e9ed99162 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.2`](https://github.com/docker-library/elasticsearch/blob/90e34ca306d9800d3c0ab1c59387b93e89c69796/8/Dockerfile) +- [`8.7.0`](https://github.com/docker-library/elasticsearch/blob/ffa0104f45677975eb6fcb0a52829618143bdad7/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/elasticsearch/blob/584687331345cc631249925517b78b2f1058914c/7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 8bf818a09170..28323dc2d6b0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.41.0`, `5.41`, `5`, `latest`](https://github.com/docker-library/ghost/blob/754210562f1bdeda3df8499142a79669eb071d66/5/debian/Dockerfile) -- [`5.41.0-alpine`, `5.41-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/754210562f1bdeda3df8499142a79669eb071d66/5/alpine/Dockerfile) +- [`5.42.0`, `5.42`, `5`, `latest`](https://github.com/docker-library/ghost/blob/876e6fb3e642043f27bcb8619fe90a0a92a8e845/5/debian/Dockerfile) +- [`5.42.0-alpine`, `5.42-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/876e6fb3e642043f27bcb8619fe90a0a92a8e845/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 3b7b1e075598..866c7fe0da84 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.2`](https://github.com/docker-library/kibana/blob/da3edfaa4c3735e2fa17d70f0f26c64488fcb06c/8/Dockerfile) +- [`8.7.0`](https://github.com/docker-library/kibana/blob/1ac2c313dc7c1636b6c14bfd0d6e929357a0b43a/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/kibana/blob/fd40461903be40051a19f81fc7a1630e8049343f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 4125fb30bbfc..eaa13b701037 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.2`](https://github.com/docker-library/logstash/blob/8ecac06ee232b47787ae8f1673fa0aa539b482fa/8/Dockerfile) +- [`8.7.0`](https://github.com/docker-library/logstash/blob/5d9c639d3f66808b1fe45bd714c8ff14c8b22f8e/8/Dockerfile) - [`7.17.9`](https://github.com/docker-library/logstash/blob/19eccdc220a6c1d80ddb3a0e48e2bf5d2414682e/7/Dockerfile) # Quick reference (cont.) From 780a054c5329ed8f48e5884a30f0b5d2b53abaa5 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Thu, 6 Apr 2023 13:36:02 +0200 Subject: [PATCH 0212/2686] Odoo: update documentation for the latest version * adapt Odoo and Postgresql versions * add a note about enterprise addons * fix upgrade links * remove wrong information about attachments storage --- odoo/content.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/odoo/content.md b/odoo/content.md index f9f054b55258..c9bb340181bb 100644 --- a/odoo/content.md +++ b/odoo/content.md @@ -13,7 +13,7 @@ This image requires a running PostgreSQL server. ## Start a PostgreSQL server ```console -$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13 +$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:15 ``` ## Start an Odoo instance @@ -27,8 +27,8 @@ The alias of the container running Postgres must be db for Odoo to be able to co ## Stop and restart an Odoo instance ```console -$ docker stop odoo -$ docker start -a odoo +$ docker stop %%IMAGE%% +$ docker start -a %%IMAGE%% ``` ## Use named volumes to preserve data @@ -36,7 +36,7 @@ $ docker start -a odoo When the Odoo container is created like described above, the odoo filestore is created inside the container. If the container is removed, the filestore is lost. The preferred way to prevent that is by using a Docker named [volume](https://docs.docker.com/storage/volumes/). ```console -$ docker run -v odoo-data:/var/lib/odoo -d -p 8069:8069 --name odoo --link db:db -t odoo +$ docker run -v odoo-data:/var/lib/odoo -d -p 8069:8069 --name odoo --link db:db -t %%IMAGE%% ``` With the above command, the volume named `odoo-data` will persist even if the container is removed and can be re-used by issuing the same command. @@ -46,7 +46,7 @@ The path `/var/lib/odoo` used as the mount point of the volume must match the od Note that the same principle applies to the Postgresql container and a named volume can be used to preserve the database when the container is removed. So the database container could be started like this (before the odoo container): ```console -$ docker run -d -v odoo-db:/var/lib/postgresql/data -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13 +$ docker run -d -v odoo-db:/var/lib/postgresql/data -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:15 ``` ## Stop and restart a PostgreSQL server @@ -63,7 +63,7 @@ The default configuration file for the server (located at `/etc/odoo/odoo.conf`) $ docker run -v /path/to/config:/etc/odoo -p 8069:8069 --name odoo --link db:db -t %%IMAGE%% ``` -Please use [this configuration template](https://github.com/odoo/docker/blob/master/14.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. +Please use [this configuration template](https://github.com/odoo/docker/blob/master/16.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword `--` in the command-line, as follows @@ -79,6 +79,8 @@ You can mount your own Odoo addons within the Odoo container, at `/mnt/extra-add $ docker run -v /path/to/addons:/mnt/extra-addons -p 8069:8069 --name odoo --link db:db -t %%IMAGE%% ``` +**Note:** Altough there is no official Odoo Enterprise Docker image, the Enterprise modules can be mounted by using the above mentionned method. + ## Run multiple Odoo instances ```console @@ -86,7 +88,7 @@ $ docker run -p 8070:8069 --name odoo2 --link db:db -t %%IMAGE%% $ docker run -p 8071:8069 --name odoo3 --link db:db -t %%IMAGE%% ``` -Please note that for plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, Settings->Parameters->System Parameters (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069). +**Note:** For plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, `Settings->Parameters->System Parameters` (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069). ## Environment Variables @@ -105,13 +107,13 @@ The simplest `docker-compose.yml` file would be: version: '3.1' services: web: - image: %%IMAGE%%:14.0 + image: %%IMAGE%%:16.0 depends_on: - db ports: - "8069:8069" db: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD=odoo @@ -124,7 +126,7 @@ If the default postgres credentials does not suit you, tweak the environment var version: '3.1' services: web: - image: %%IMAGE%%:14.0 + image: %%IMAGE%%:16.0 depends_on: - mydb ports: @@ -134,7 +136,7 @@ services: - USER=odoo - PASSWORD=myodoo mydb: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD=myodoo @@ -152,7 +154,7 @@ Here's a last example showing you how to version: '3.1' services: web: - image: %%IMAGE%%:14.0 + image: %%IMAGE%%:16.0 depends_on: - db ports: @@ -166,7 +168,7 @@ services: secrets: - postgresql_password db: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD_FILE=/run/secrets/postgresql_password @@ -193,14 +195,12 @@ docker-compose up -d # How to upgrade this image -Odoo images are updated on a regular basis to make them use recent releases (a new release of each version of Odoo is built [every night](http://nightly.odoo.com/)). Please be aware that what follows is about upgrading from an old release to the latest one provided of the same major version, as upgrading from a major version to another is a much more complex process requiring elaborated migration scripts (see [Odoo Enterprise Upgrade page](https://upgrade.odoo.com/database/upload) or this [community project](https://doc.therp.nl/openupgrade/) which aims to write those scripts). +Odoo images are updated on a regular basis to make them use recent releases (a new release of each version of Odoo is built [every night](http://nightly.odoo.com/)). Please be aware that what follows is about upgrading from an old release to the latest one provided of the same major version, as upgrading from a major version to another is a much more complex process requiring elaborated migration scripts (see [Odoo Upgrade page](https://upgrade.odoo.com) or this [community project](https://github.com/OCA/OpenUpgrade) which aims to write those scripts). Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image. -By default, Odoo 14.0 uses a filestore (located at /var/lib/odoo/filestore/) for attachments. You should restore this filestore in your new Odoo instance by running +By default, Odoo 16.0 uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running ```console $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db -t %%IMAGE%% ``` - -You can also simply prevent Odoo from using the filestore by setting the system parameter `ir_attachment.location` to `db-storage` in Settings->Parameters->System Parameters (requires technical features). From ddb4d951922f8a14555b344f32363725dc5a629a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Apr 2023 10:08:40 -0700 Subject: [PATCH 0213/2686] Run update.sh --- odoo/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index b68063f9a994..91127ba173ef 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -62,7 +62,7 @@ This image requires a running PostgreSQL server. ## Start a PostgreSQL server ```console -$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13 +$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:15 ``` ## Start an Odoo instance @@ -95,7 +95,7 @@ The path `/var/lib/odoo` used as the mount point of the volume must match the od Note that the same principle applies to the Postgresql container and a named volume can be used to preserve the database when the container is removed. So the database container could be started like this (before the odoo container): ```console -$ docker run -d -v odoo-db:/var/lib/postgresql/data -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13 +$ docker run -d -v odoo-db:/var/lib/postgresql/data -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:15 ``` ## Stop and restart a PostgreSQL server @@ -112,7 +112,7 @@ The default configuration file for the server (located at `/etc/odoo/odoo.conf`) $ docker run -v /path/to/config:/etc/odoo -p 8069:8069 --name odoo --link db:db -t odoo ``` -Please use [this configuration template](https://github.com/odoo/docker/blob/master/14.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. +Please use [this configuration template](https://github.com/odoo/docker/blob/master/16.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword `--` in the command-line, as follows @@ -128,6 +128,8 @@ You can mount your own Odoo addons within the Odoo container, at `/mnt/extra-add $ docker run -v /path/to/addons:/mnt/extra-addons -p 8069:8069 --name odoo --link db:db -t odoo ``` +**Note:** Altough there is no official Odoo Enterprise Docker image, the Enterprise modules can be mounted by using the above mentionned method. + ## Run multiple Odoo instances ```console @@ -135,7 +137,7 @@ $ docker run -p 8070:8069 --name odoo2 --link db:db -t odoo $ docker run -p 8071:8069 --name odoo3 --link db:db -t odoo ``` -Please note that for plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, Settings->Parameters->System Parameters (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069). +**Note:** For plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, `Settings->Parameters->System Parameters` (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069). ## Environment Variables @@ -154,13 +156,13 @@ The simplest `docker-compose.yml` file would be: version: '3.1' services: web: - image: odoo:14.0 + image: odoo:16.0 depends_on: - db ports: - "8069:8069" db: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD=odoo @@ -173,7 +175,7 @@ If the default postgres credentials does not suit you, tweak the environment var version: '3.1' services: web: - image: odoo:14.0 + image: odoo:16.0 depends_on: - mydb ports: @@ -183,7 +185,7 @@ services: - USER=odoo - PASSWORD=myodoo mydb: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD=myodoo @@ -201,7 +203,7 @@ Here's a last example showing you how to version: '3.1' services: web: - image: odoo:14.0 + image: odoo:16.0 depends_on: - db ports: @@ -215,7 +217,7 @@ services: secrets: - postgresql_password db: - image: postgres:13 + image: postgres:15 environment: - POSTGRES_DB=postgres - POSTGRES_PASSWORD_FILE=/run/secrets/postgresql_password @@ -242,18 +244,16 @@ docker-compose up -d # How to upgrade this image -Odoo images are updated on a regular basis to make them use recent releases (a new release of each version of Odoo is built [every night](http://nightly.odoo.com/)). Please be aware that what follows is about upgrading from an old release to the latest one provided of the same major version, as upgrading from a major version to another is a much more complex process requiring elaborated migration scripts (see [Odoo Enterprise Upgrade page](https://upgrade.odoo.com/database/upload) or this [community project](https://doc.therp.nl/openupgrade/) which aims to write those scripts). +Odoo images are updated on a regular basis to make them use recent releases (a new release of each version of Odoo is built [every night](http://nightly.odoo.com/)). Please be aware that what follows is about upgrading from an old release to the latest one provided of the same major version, as upgrading from a major version to another is a much more complex process requiring elaborated migration scripts (see [Odoo Upgrade page](https://upgrade.odoo.com) or this [community project](https://github.com/OCA/OpenUpgrade) which aims to write those scripts). Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image. -By default, Odoo 14.0 uses a filestore (located at /var/lib/odoo/filestore/) for attachments. You should restore this filestore in your new Odoo instance by running +By default, Odoo 16.0 uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running ```console $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db -t odoo ``` -You can also simply prevent Odoo from using the filestore by setting the system parameter `ir_attachment.location` to `db-storage` in Settings->Parameters->System Parameters (requires technical features). - # License View [license information](https://raw.githubusercontent.com/odoo/odoo/14.0/LICENSE) for the software contained in this image. From 5fb2759d52529952a77e8e6be543b5d0536f6828 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Apr 2023 11:16:42 -0700 Subject: [PATCH 0214/2686] Run update.sh --- oraclelinux/README.md | 12 ++++++------ rabbitmq/README.md | 8 ++++---- traefik/README.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 97d7c8167025..da43bfae0f40 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/50dea704d5881997acaf7fe35c6d6a85e67a7d3b/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 74c46383b67a..a36d79bd67d4 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.5`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/954b05e8e8a352116a25085c06fb1d8a9b49302a/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.5-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.5-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/954b05e8e8a352116a25085c06fb1d8a9b49302a/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.5-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.12.0-beta.6`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6bce1f24efb19c3a8b4120759cac58f34e8203e3/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.6-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6bce1f24efb19c3a8b4120759cac58f34e8203e3/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.6-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) - [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/ubuntu/Dockerfile) - [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/alpine/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index c6d01949cc64..b2a388c65804 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.9.9-windowsservercore-1809`, `2.9.9-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/windows/1809/Dockerfile) -- [`v2.9.9`, `2.9.9`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/3397f06715d1f6684444c135a1b86b4f8c44d599/alpine/Dockerfile) +- [`v2.9.10-windowsservercore-1809`, `2.9.10-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/windows/1809/Dockerfile) +- [`v2.9.10`, `2.9.10`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/alpine/Dockerfile) - [`v2.10.0-rc1-windowsservercore-1809`, `2.10.0-rc1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/windows/1809/Dockerfile) - [`v2.10.0-rc1`, `2.10.0-rc1`, `v2.10`, `2.10`, `saintmarcelin`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) From ab34d0162c2b1e1d3d25748d1c4a5a9e240295c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Apr 2023 13:08:42 -0700 Subject: [PATCH 0215/2686] Run update.sh --- httpd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index c9d852b28927..5af76ee8c88a 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.56`, `2.4`, `2`, `latest`, `2.4.56-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/91b7aa1f6c74ea2cae12a6cd6d02b03cf0c17db5/2.4/Dockerfile) -- [`2.4.56-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.56-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/91b7aa1f6c74ea2cae12a6cd6d02b03cf0c17db5/2.4/alpine/Dockerfile) +- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/7d6139b45f2e9a3146c2062894aca949cba91bba/2.4/Dockerfile) +- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/7d6139b45f2e9a3146c2062894aca949cba91bba/2.4/alpine/Dockerfile) # Quick reference (cont.) From c235cf87aee09b932b83b6486010571752e80ec1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Apr 2023 15:14:48 -0700 Subject: [PATCH 0216/2686] Run update.sh --- aerospike/README.md | 4 ++-- traefik/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 912e2712d7b8..a565dae89f52 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.0`, `ee-6.3.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/663aad9ac154e5f372844065ca45c56261ac7f06/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.0`, `ce-6.3.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/663aad9ac154e5f372844065ca45c56261ac7f06/community/debian11/Dockerfile) +- [`ee-6.3.0.1`, `ee-6.3.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/47d6a8646c2538c1ead328113b9ebcf8bb609f9b/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.1`, `ce-6.3.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/47d6a8646c2538c1ead328113b9ebcf8bb609f9b/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index b2a388c65804..8081c3ebc2af 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -28,8 +28,8 @@ WARNING: - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) - [`v2.9.10-windowsservercore-1809`, `2.9.10-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/windows/1809/Dockerfile) - [`v2.9.10`, `2.9.10`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/alpine/Dockerfile) -- [`v2.10.0-rc1-windowsservercore-1809`, `2.10.0-rc1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/windows/1809/Dockerfile) -- [`v2.10.0-rc1`, `2.10.0-rc1`, `v2.10`, `2.10`, `saintmarcelin`](https://github.com/traefik/traefik-library-image/blob/5288f2536e6a30aecac3e7685748639257d0ddcb/alpine/Dockerfile) +- [`v2.10.0-rc2-windowsservercore-1809`, `2.10.0-rc2-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2e2af4d37b83c23a252154454fb25a8c9e48b801/windows/1809/Dockerfile) +- [`v2.10.0-rc2`, `2.10.0-rc2`, `v2.10`, `2.10`, `saintmarcelin`](https://github.com/traefik/traefik-library-image/blob/2e2af4d37b83c23a252154454fb25a8c9e48b801/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) From 34e4afc1c21cd2f9a1950df55be99601d087a6df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 11:16:32 -0700 Subject: [PATCH 0217/2686] Run update.sh --- archlinux/README.md | 4 ++-- photon/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 793b0ad5540e..b4b7d3384c70 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230319.0.135218`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/71a836dea46c446f5e0fd3ffdcf954d2280cc01b/Dockerfile.base) -- [`base-devel`, `base-devel-20230319.0.135218`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/71a836dea46c446f5e0fd3ffdcf954d2280cc01b/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230409.0.141585`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/da508aac1923a2416f68edd1be16df3aeefc92ee/Dockerfile.base) +- [`base-devel`, `base-devel-20230409.0.141585`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/da508aac1923a2416f68edd1be16df3aeefc92ee/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index dd15ab7e2a2b..ba5acf827514 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230403`, `5.0-RC`](https://github.com/vmware/photon-docker-image/blob/bc4e559a267c942b5db512a3fde6c3592a802a98/docker/Dockerfile) -- [`4.0`, `4.0-20230325`, `latest`](https://github.com/vmware/photon-docker-image/blob/3e4ec8a42f888ebc82904a3422fcc52e03ca65ba/docker/Dockerfile) -- [`3.0`, `3.0-20230325`](https://github.com/vmware/photon-docker-image/blob/d197197ed523286fa4e0867a8eaa3864ebabb446/docker/Dockerfile) +- [`4.0`, `4.0-20230408`, `latest`](https://github.com/vmware/photon-docker-image/blob/f69dcdb65365829cf67af006a020ed7ef7d6316e/docker/Dockerfile) +- [`3.0`, `3.0-20230408`](https://github.com/vmware/photon-docker-image/blob/b7616914fd9dd6584a91df971767d6e5e93de55d/docker/Dockerfile) # Quick reference (cont.) From bf026f606e108d139cdff308aa20300b080fc43d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 12:15:12 -0700 Subject: [PATCH 0218/2686] Run update.sh --- almalinux/README.md | 8 ++++---- clearlinux/README.md | 2 +- node/README.md | 12 ++++++------ xwiki/README.md | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index e16bb1717752..9ba0c9856fb3 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `8`, `8.7`, `8.7-20230222`](https://github.com/AlmaLinux/docker-images/blob/80f909f7bc5d25808962109afb606ba6aba4c295/Dockerfile-x86_64-default) -- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20230222`](https://github.com/AlmaLinux/docker-images/blob/80f909f7bc5d25808962109afb606ba6aba4c295/Dockerfile-x86_64-minimal) -- [`9`, `9.1`, `9.1-20230222`](https://github.com/AlmaLinux/docker-images/blob/e597607d705998e07a3a3fca66cc51ab467cb74d/Dockerfile-x86_64-default) -- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20230222`](https://github.com/AlmaLinux/docker-images/blob/e597607d705998e07a3a3fca66cc51ab467cb74d/Dockerfile-x86_64-minimal) +- [`latest`, `8`, `8.7`, `8.7-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-default) +- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-minimal) +- [`9`, `9.1`, `9.1-20230407`](https://github.com/AlmaLinux/docker-images/blob/660a18fb2ff21cc4528bb36429626bd43025518d/Dockerfile-x86_64-default) +- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/660a18fb2ff21cc4528bb36429626bd43025518d/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index eeda710a2158..2c9f62601298 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/31405aa6183f586d6d268e217c088cc8a21191ee/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/19f37b86de0d05ba16333af3804baf6b54b4c782/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 1a0b9a1fa9a6..a5092934073a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.8-alpine3.16`, `19.8.1-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.8-alpine`, `19.8-alpine3.17`, `19.8.1-alpine`, `19.8.1-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.8`, `19.8-bullseye`, `19.8.1`, `19.8.1-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.8-bullseye-slim`, `19.8-slim`, `19.8.1-bullseye-slim`, `19.8.1-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.8-buster`, `19.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/buster/Dockerfile) -- [`19-buster-slim`, `19.8-buster-slim`, `19.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/7abbf9f3d902b901da72714bcc30b5a92831547e/19/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.9-buster`, `19.9.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) +- [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) - [`18-alpine3.16`, `18.15-alpine3.16`, `18.15.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.16/Dockerfile) - [`18-alpine`, `18-alpine3.17`, `18.15-alpine`, `18.15-alpine3.17`, `18.15.0-alpine`, `18.15.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.17/Dockerfile) - [`18`, `18-bullseye`, `18.15`, `18.15-bullseye`, `18.15.0`, `18.15.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 2412bd121c22..4f029671878d 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.2`, `15.2.0`, `15-mysql-tomcat`, `15.2-mysql-tomcat`, `15.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.2-postgres-tomcat`, `15.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.2-mariadb-tomcat`, `15.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.7`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/ba198478e44cb66d67e2a81a87e00c5c1d757305/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.8`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 5324731c23ebbd6309fa6cb2b7381a38315df9d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 14:16:25 -0700 Subject: [PATCH 0219/2686] Run update.sh --- nginx/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 2c804b3f827a..481c67427953 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -29,11 +29,11 @@ WARNING: - [`1.23.4-alpine`, `mainline-alpine`, `1-alpine`, `1.23-alpine`, `alpine`, `1.23.4-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.23-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine/Dockerfile) - [`1.23.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.23-alpine-perl`, `alpine-perl`, `1.23.4-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.23-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-perl/Dockerfile) - [`1.23.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.23-alpine-slim`, `alpine-slim`, `1.23.4-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.23-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-slim/Dockerfile) -- [`1.22.1`, `stable`, `1.22`, `1.22.1-bullseye`, `stable-bullseye`, `1.22-bullseye`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/debian/Dockerfile) -- [`1.22.1-perl`, `stable-perl`, `1.22-perl`, `1.22.1-bullseye-perl`, `stable-bullseye-perl`, `1.22-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/761fffeba0d867d6e80d38998073e0eaa456bb02/stable/debian-perl/Dockerfile) -- [`1.22.1-alpine`, `stable-alpine`, `1.22-alpine`, `1.22.1-alpine3.17`, `stable-alpine3.17`, `1.22-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine/Dockerfile) -- [`1.22.1-alpine-perl`, `stable-alpine-perl`, `1.22-alpine-perl`, `1.22.1-alpine3.17-perl`, `stable-alpine3.17-perl`, `1.22-alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine-perl/Dockerfile) -- [`1.22.1-alpine-slim`, `stable-alpine-slim`, `1.22-alpine-slim`, `1.22.1-alpine3.17-slim`, `stable-alpine3.17-slim`, `1.22-alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/7f1ef355dea083761951da16ab02ea2c37addbdd/stable/alpine-slim/Dockerfile) +- [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) +- [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) +- [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) +- [`1.24.0-alpine-perl`, `stable-alpine-perl`, `1.24-alpine-perl`, `1.24.0-alpine3.17-perl`, `stable-alpine3.17-perl`, `1.24-alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine-perl/Dockerfile) +- [`1.24.0-alpine-slim`, `stable-alpine-slim`, `1.24-alpine-slim`, `1.24.0-alpine3.17-slim`, `stable-alpine3.17-slim`, `1.24-alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine-slim/Dockerfile) # Quick reference (cont.) From 71533ceb6622eaef20fc2d3938bb7dc595aec84f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 15:14:52 -0700 Subject: [PATCH 0220/2686] Run update.sh --- open-liberty/README.md | 48 ++++++++++++++++--------------------- websphere-liberty/README.md | 42 ++++++++++++++------------------ 2 files changed, 39 insertions(+), 51 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index a7451b75c845..1f17ea3b0ed6 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/23.0.0.2/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/90f33b0ef4b2ea99642cfd582a7aad41f07634de/releases/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 96ba8ba8d7a4..8f3cff3197dd 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/23.0.0.2/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/8adae314eb3bf2cb623bb9dde8dc07e1c568c7a9/ga/22.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From a662b2eff937ff9ccc24ec3007bfb9b88f9ba216 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 16:08:40 -0700 Subject: [PATCH 0221/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 +-- haproxy/README.md | 4 +-- mongo/README.md | 75 +++++++++++++++++++---------------------------- openjdk/README.md | 36 +++++++++++------------ 5 files changed, 53 insertions(+), 68 deletions(-) diff --git a/bash/README.md b/bash/README.md index 27c83f9a1c76..09627b48c257 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230403`, `devel`, `devel-20230403-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/5055b665bc75b8ee3023f3bccf6c8dc01f36aeef/devel/Dockerfile) +- [`devel-20230405`, `devel`, `devel-20230405-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/e13beacb29e8b810c88894444394c1778abdd074/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 28323dc2d6b0..edc5d7ea6b1a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.42.0`, `5.42`, `5`, `latest`](https://github.com/docker-library/ghost/blob/876e6fb3e642043f27bcb8619fe90a0a92a8e845/5/debian/Dockerfile) -- [`5.42.0-alpine`, `5.42-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/876e6fb3e642043f27bcb8619fe90a0a92a8e845/5/alpine/Dockerfile) +- [`5.42.2`, `5.42`, `5`, `latest`](https://github.com/docker-library/ghost/blob/824f3aa2a54305450775152d9ecdd1c3c9f1fb4e/5/debian/Dockerfile) +- [`5.42.2-alpine`, `5.42-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/824f3aa2a54305450775152d9ecdd1c3c9f1fb4e/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 03181206b3f3..770a0f58e631 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev6`, `2.8-dev`, `2.8-dev6-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/b8c3d54e118f694d0a06ce94d8f83a0a2cad5c56/2.8/Dockerfile) -- [`2.8-dev6-alpine`, `2.8-dev-alpine`, `2.8-dev6-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/b8c3d54e118f694d0a06ce94d8f83a0a2cad5c56/2.8/alpine/Dockerfile) +- [`2.8-dev7`, `2.8-dev`, `2.8-dev7-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/cc787a7b72dcba589f35e0ec89daa7a36a38f608/2.8/Dockerfile) +- [`2.8-dev7-alpine`, `2.8-dev-alpine`, `2.8-dev7-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/cc787a7b72dcba589f35e0ec89daa7a36a38f608/2.8/alpine/Dockerfile) - [`2.7.6`, `2.7`, `latest`, `2.7.6-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/Dockerfile) - [`2.7.6-alpine`, `2.7-alpine`, `alpine`, `2.7.6-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/alpine/Dockerfile) - [`2.6.12`, `2.6`, `lts`, `2.6.12-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index a2442f92de50..4faedaeb10f7 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,21 +33,16 @@ WARNING: - [`6.0.5-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.5-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.15-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) -- [`5.0.15-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.15-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.15-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.15-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.20-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/Dockerfile) -- [`4.4.20-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.20-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.20-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.20-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.19-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) -- [`4.4.19-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.19-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.19-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.19-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) +- [`5.0.16-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/Dockerfile) +- [`5.0.16-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.16-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.16-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.16-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.20-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) +- [`4.4.20-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.20-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.20-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.20-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-1809/Dockerfile) - [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) @@ -66,36 +61,26 @@ WARNING: - `6.0.5-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - [`6.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.15`, `5.0`, `5`: - - [`5.0.15-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/5.0/Dockerfile) - - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.15-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.15-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4bde9c88f7479d4f0281bc3793d0eabb22ec7e6b/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.20-rc0`, `4.4-rc`: - - [`4.4.20-rc0-focal`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/Dockerfile) - - [`4.4.20-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.20-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.20-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.20-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.20-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.20-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.20-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.20-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e6967de988b60a4d912ba50d7e6ec1c693a89cd0/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.19`, `4.4`, `4`: - - [`4.4.19-focal`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.4/Dockerfile) - - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.19-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb4960f9cc692e9be3332ccccb86fedf2a5a92d5/4.4/windows/nanoserver-1809/Dockerfile) +- `5.0.16`, `5.0`, `5`: + - [`5.0.16-focal`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/Dockerfile) + - [`5.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.16-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.16-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.20`, `4.4`, `4`: + - [`4.4.20-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) + - [`4.4.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.20-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.20-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-1809/Dockerfile) - `4.2.24`, `4.2`: - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 59ca17b8d429..d22f94c7ccd5 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-16-jdk-oraclelinux8`, `21-ea-16-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-16-jdk-oracle`, `21-ea-16-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-16-jdk-oraclelinux7`, `21-ea-16-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-16-jdk-bullseye`, `21-ea-16-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/bullseye/Dockerfile) -- [`21-ea-16-jdk-slim-bullseye`, `21-ea-16-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-16-jdk-slim`, `21-ea-16-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-16-jdk-buster`, `21-ea-16-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/buster/Dockerfile) -- [`21-ea-16-jdk-slim-buster`, `21-ea-16-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/slim-buster/Dockerfile) -- [`21-ea-16-jdk-windowsservercore-ltsc2022`, `21-ea-16-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-16-jdk-windowsservercore-1809`, `21-ea-16-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-16-jdk-nanoserver-1809`, `21-ea-16-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-17-jdk-oraclelinux8`, `21-ea-17-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-17-jdk-oracle`, `21-ea-17-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-17-jdk-oraclelinux7`, `21-ea-17-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-17-jdk-bullseye`, `21-ea-17-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/bullseye/Dockerfile) +- [`21-ea-17-jdk-slim-bullseye`, `21-ea-17-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-17-jdk-slim`, `21-ea-17-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-17-jdk-buster`, `21-ea-17-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/buster/Dockerfile) +- [`21-ea-17-jdk-slim-buster`, `21-ea-17-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/slim-buster/Dockerfile) +- [`21-ea-17-jdk-windowsservercore-ltsc2022`, `21-ea-17-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-17-jdk-windowsservercore-1809`, `21-ea-17-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-17-jdk-nanoserver-1809`, `21-ea-17-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-16-jdk`, `21-ea-16`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-16-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-16-jdk-windowsservercore`, `21-ea-16-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-16-jdk-nanoserver`, `21-ea-16-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bec3544e0bfe83e3abf893c33c1b5eb446576bde/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-17-jdk`, `21-ea-17`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-17-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-17-jdk-windowsservercore`, `21-ea-17-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-17-jdk-nanoserver`, `21-ea-17-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From c4095b2083e2e0e75868b8187dc65dcd3e580437 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Apr 2023 17:17:36 -0700 Subject: [PATCH 0222/2686] Run update.sh --- debian/README.md | 48 +++++++++++++------------- oraclelinux/README.md | 12 +++---- unit/README.md | 79 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 109 insertions(+), 30 deletions(-) create mode 100644 unit/README.md diff --git a/debian/README.md b/debian/README.md index 26e0cb5c21be..c189448d5f3f 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230320`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230320-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230320`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230320-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/rc-buggy/Dockerfile) -- [`sid`, `sid-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/sid/Dockerfile) -- [`sid-slim`, `sid-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/sid/slim/Dockerfile) -- [`stable`, `stable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/stable/slim/Dockerfile) -- [`testing`, `testing-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230320`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230320-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/490ff2f7af181f8d02aa35378395ed26f95c8929/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230411`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230411-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230411`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230411-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/rc-buggy/Dockerfile) +- [`sid`, `sid-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/sid/Dockerfile) +- [`sid-slim`, `sid-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/sid/slim/Dockerfile) +- [`stable`, `stable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/slim/Dockerfile) +- [`testing`, `testing-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index da43bfae0f40..3a1b7c37c5b8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/f4e1fd9ae9c126ccb821e30e0e7a43933ea07716/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/unit/README.md b/unit/README.md new file mode 100644 index 000000000000..d5b195e8a2a9 --- /dev/null +++ b/unit/README.md @@ -0,0 +1,79 @@ + + +# Quick reference + +- **Maintained by**: + [the Unit Docker Maintainers](https://github.com/nginx/unit) + +- **Where to get help**: + the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX community](https://nginxcommunity.slack.com/) + +# Supported tags and respective `Dockerfile` links + +- [`1.29.1-go1.20`, `go1.20`, `go1`, `go`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.go1.20) +- [`1.29.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.jsc11) +- [`1.29.1-node18`, `node18`, `node`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.node18) +- [`1.29.1-perl5.36`, `perl5.36`, `perl5`, `perl`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.perl5.36) +- [`1.29.1-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.php8.2) +- [`1.29.1-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.python3.11) +- [`1.29.1-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.ruby3.2) +- [`1.29.1-minimal`, `minimal`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.minimal) + +# Quick reference (cont.) + +- **Where to file issues**: + [https://github.com/nginx/unit/issues](https://github.com/nginx/unit/issues) + +- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) + [`amd64`](https://hub.docker.com/r/amd64/unit/), [`arm64v8`](https://hub.docker.com/r/arm64v8/unit/) + +- **Published image artifact details**: + [repo-info repo's `repos/unit/` directory](https://github.com/docker-library/repo-info/blob/master/repos/unit) ([history](https://github.com/docker-library/repo-info/commits/master/repos/unit)) + (image metadata, transfer size, etc) + +- **Image updates**: + [official-images repo's `library/unit` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Funit) + [official-images repo's `library/unit` file](https://github.com/docker-library/official-images/blob/master/library/unit) ([history](https://github.com/docker-library/official-images/commits/master/library/unit)) + +- **Source of this description**: + [docs repo's `unit/` directory](https://github.com/docker-library/docs/tree/master/unit) ([history](https://github.com/docker-library/docs/commits/master/unit)) + +# What is Unit? + +NGINX Unit is a polyglot app server, a reverse proxy, and a static file server, available for UNIX-like systems. It was built by nginx team members from scratch to be highly efficient and fully configurable at runtime. It is licensed under the Apache 2.0 license. The supported application languages are Go, JavaScript, Java, Perl, PHP, Python, Ruby, and more. + +> [Key Features](https://unit.nginx.org/#key-features) + +![logo](https://raw.githubusercontent.com/docker-library/docs/d6e69ebb56fe6890bd6ec587295ff1d67e2849fe/unit/logo.svg?sanitize=true) + +# Available tags + +Please see [Unit's website](http://unit.nginx.org/installation/#docker-images) for details. + +# How to use this image + +Please check the [Initial Configuration](http://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](http://unit.nginx.org/howto/docker/) can be of help. + +# License + +View [license information](https://raw.githubusercontent.com/nginx/unit/master/LICENSE) for the software contained in this image. + +As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). + +Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `unit/` directory](https://github.com/docker-library/repo-info/tree/master/repos/unit). + +As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. From 2f6d16d3418843f90ca28a4d66d82ee94dd2b696 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Apr 2023 09:08:41 -0700 Subject: [PATCH 0223/2686] Run update.sh --- haxe/README.md | 47 +++++++++++++++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index 05fe28e5106d..f05845434968 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,37 +28,45 @@ WARNING: ## Simple Tags -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/bullseye/Dockerfile) -- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/buster/Dockerfile) +- [`4.3.0-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/bullseye/Dockerfile) +- [`4.3.0-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/buster/Dockerfile) +- [`4.3.0-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.0-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.0-alpine3.17`, `4.3-alpine3.17`, `4.3.0-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.17/Dockerfile) +- [`4.3.0-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.16/Dockerfile) +- [`4.3.0-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.15/Dockerfile) +- [`4.3.0-alpine3.14`, `4.3-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.14/Dockerfile) +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/bullseye/Dockerfile) +- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - [`4.2.5-alpine3.17`, `4.2-alpine3.17`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) - [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.2/alpine3.16/Dockerfile) - [`4.2.5-alpine3.15`, `4.2-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.15/Dockerfile) - [`4.2.5-alpine3.14`, `4.2-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.14/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/0292fae1a29c23dee119205b3b75ad9e27f6cf32/4.1/bullseye/Dockerfile) -- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/adf0e23e460a657c77c44f2502e5fa8cf820d020/4.1/buster/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/bullseye/Dockerfile) +- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - [`4.1.5-alpine3.17`, `4.1-alpine3.17`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) - [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.1/alpine3.16/Dockerfile) - [`4.1.5-alpine3.15`, `4.1-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.1/alpine3.15/Dockerfile) - [`4.1.5-alpine3.14`, `4.1-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.1/alpine3.14/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/0292fae1a29c23dee119205b3b75ad9e27f6cf32/4.0/bullseye/Dockerfile) -- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/adf0e23e460a657c77c44f2502e5fa8cf820d020/4.0/buster/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/bullseye/Dockerfile) +- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - [`4.0.5-alpine3.17`, `4.0-alpine3.17`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) - [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) - [`4.0.5-alpine3.15`, `4.0-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.0/alpine3.15/Dockerfile) - [`4.0.5-alpine3.14`, `4.0-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.0/alpine3.14/Dockerfile) -- [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.4/buster/Dockerfile) +- [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`, `3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) -- [`3.3.0-rc.1-buster`, `3.3.0-buster`, `3.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.3/buster/Dockerfile) +- [`3.3.0-rc.1-buster`, `3.3.0-buster`, `3.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.3/buster/Dockerfile) - [`3.3.0-rc.1-windowsservercore-ltsc2022`, `3.3.0-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`, `3.3.0-windowsservercore-1809`, `3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) -- [`3.2.1-buster`, `3.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.2/buster/Dockerfile) +- [`3.2.1-buster`, `3.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.2/buster/Dockerfile) - [`3.2.1-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - [`3.2.1-windowsservercore-1809`, `3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) - [`3.1.3-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-ltsc2022/Dockerfile) @@ -66,43 +74,50 @@ WARNING: ## Shared Tags -- `4.2.5`, `4.2`, `latest`: - - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/bullseye/Dockerfile) +- `4.3.0`, `4.3`, `latest`: + - [`4.3.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/bullseye/Dockerfile) + - [`4.3.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) +- `4.3.0-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) +- `4.2.5`, `4.2`: + - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/0292fae1a29c23dee119205b3b75ad9e27f6cf32/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.1.5-windowsservercore`, `4.1-windowsservercore`: - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/0292fae1a29c23dee119205b3b75ad9e27f6cf32/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `4.0.5-windowsservercore`, `4.0-windowsservercore`: - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `3.4.7`, `3.4`: - - [`3.4.7-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.4/buster/Dockerfile) + - [`3.4.7-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) - `3.4.7-windowsservercore`, `3.4-windowsservercore`: - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) - `3.3.0-rc.1`, `3.3.0`, `3.3`: - - [`3.3.0-rc.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.3/buster/Dockerfile) + - [`3.3.0-rc.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.3/buster/Dockerfile) - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) - `3.3.0-rc.1-windowsservercore`, `3.3.0-windowsservercore`, `3.3-windowsservercore`: - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) - `3.2.1`, `3.2`: - - [`3.2.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1f586bf85c12ce5c9300f24079912b94c73bc3f7/3.2/buster/Dockerfile) + - [`3.2.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.2/buster/Dockerfile) - [`3.2.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - [`3.2.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) - `3.2.1-windowsservercore`, `3.2-windowsservercore`: From b47e8747d1935d6d0fe9ef34f488a259aebf6d07 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Apr 2023 10:16:18 -0700 Subject: [PATCH 0224/2686] Run update.sh --- crate/README.md | 2 +- erlang/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crate/README.md b/crate/README.md index 693c2f508134..5bbbe588e4dc 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.5`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/c98d17879824e2cbc4522d6591db77d6ac74bc5a/Dockerfile) +- [`5.2.6`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/8a7ad52cc562a2072a1817b58236ea7d8f176deb/Dockerfile) - [`5.1.4`, `5.1`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index ae317e6b669f..63a105ee2616 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0-rc2.0.0`, `26.0-rc2.0`, `26.0-rc2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/Dockerfile) -- [`26.0-rc2.0.0-slim`, `26.0-rc2.0-slim`, `26.0-rc2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/slim/Dockerfile) -- [`26.0-rc2.0.0-alpine`, `26.0-rc2.0-alpine`, `26.0-rc2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c0be617bb146c9f7df00f4688de87e28e389e020/26/alpine/Dockerfile) +- [`26.0-rc3.0.0`, `26.0-rc3.0`, `26.0-rc3`, `26`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/Dockerfile) +- [`26.0-rc3.0.0-slim`, `26.0-rc3.0-slim`, `26.0-rc3-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/slim/Dockerfile) +- [`26.0-rc3.0.0-alpine`, `26.0-rc3.0-alpine`, `26.0-rc3-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/alpine/Dockerfile) - [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) - [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) - [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) From f7ee896623bb389493c80b50e2a63fc41d74eeff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Apr 2023 11:16:18 -0700 Subject: [PATCH 0225/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index edc5d7ea6b1a..0356a8cd2c5c 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.42.2`, `5.42`, `5`, `latest`](https://github.com/docker-library/ghost/blob/824f3aa2a54305450775152d9ecdd1c3c9f1fb4e/5/debian/Dockerfile) -- [`5.42.2-alpine`, `5.42-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/824f3aa2a54305450775152d9ecdd1c3c9f1fb4e/5/alpine/Dockerfile) +- [`5.43.0`, `5.43`, `5`, `latest`](https://github.com/docker-library/ghost/blob/aee27e5570726420ec1534fcbaf8a3a5498e0bd6/5/debian/Dockerfile) +- [`5.43.0-alpine`, `5.43-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/aee27e5570726420ec1534fcbaf8a3a5498e0bd6/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) From d5ed884375141b31912946ec1368b00f5302e587 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Apr 2023 11:14:29 -0700 Subject: [PATCH 0226/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index a5092934073a..695df990744f 100644 --- a/node/README.md +++ b/node/README.md @@ -30,12 +30,12 @@ WARNING: - [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) - [`19-buster`, `19.9-buster`, `19.9.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) - [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.15-alpine3.16`, `18.15.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.15-alpine`, `18.15-alpine3.17`, `18.15.0-alpine`, `18.15.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/alpine3.17/Dockerfile) -- [`18`, `18-bullseye`, `18.15`, `18.15-bullseye`, `18.15.0`, `18.15.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.15-bullseye-slim`, `18.15-slim`, `18.15.0-bullseye-slim`, `18.15.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.15-buster`, `18.15.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster/Dockerfile) -- [`18-buster-slim`, `18.15-buster-slim`, `18.15.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/0adf29a4daa744d828d23a8de4c4397dc43d5761/18/buster-slim/Dockerfile) +- [`18-alpine3.16`, `18.16-alpine3.16`, `18.16.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.16/Dockerfile) +- [`18-alpine`, `18-alpine3.17`, `18.16-alpine`, `18.16-alpine3.17`, `18.16.0-alpine`, `18.16.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.17/Dockerfile) +- [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18-slim`, `18.16-bullseye-slim`, `18.16-slim`, `18.16.0-bullseye-slim`, `18.16.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.16-buster`, `18.16.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster/Dockerfile) +- [`18-buster-slim`, `18.16-buster-slim`, `18.16.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster-slim/Dockerfile) - [`16-alpine3.16`, `16.20-alpine3.16`, `16.20.0-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.16/Dockerfile) - [`16-alpine`, `16-alpine3.17`, `16.20-alpine`, `16.20-alpine3.17`, `16.20.0-alpine`, `16.20.0-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.17/Dockerfile) - [`16-bullseye`, `16.20-bullseye`, `16.20.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye/Dockerfile) From fa59877319138813082416051bdaad8869c6e6c0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Apr 2023 14:16:12 -0700 Subject: [PATCH 0227/2686] Run update.sh --- gradle/README.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index a72800187216..ee9c695c8780 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,17 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.2-jdk8`, `8.0-jdk8`, `8-jdk8`, `jdk8`, `8.0.2-jdk8-jammy`, `8.0-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk8/Dockerfile) -- [`8.0.2-jdk8-focal`, `8.0-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk8-focal/Dockerfile) -- [`8.0.2-jdk11`, `8.0-jdk11`, `8-jdk11`, `jdk11`, `8.0.2-jdk11-jammy`, `8.0-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11/Dockerfile) -- [`8.0.2-jdk11-focal`, `8.0-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11-focal/Dockerfile) -- [`8.0.2-jdk11-alpine`, `8.0-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk11-alpine/Dockerfile) -- [`8.0.2-jdk17`, `8.0-jdk17`, `8-jdk17`, `jdk17`, `8.0.2-jdk`, `8.0-jdk`, `8-jdk`, `jdk`, `8.0.2`, `8.0`, `8`, `latest`, `8.0.2-jdk17-jammy`, `8.0-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.0.2-jdk-jammy`, `8.0-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.0.2-jammy`, `8.0-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17/Dockerfile) -- [`8.0.2-jdk17-focal`, `8.0-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.0.2-jdk-focal`, `8.0-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.0.2-focal`, `8.0-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17-focal/Dockerfile) -- [`8.0.2-jdk17-alpine`, `8.0-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.0.2-jdk-alpine`, `8.0-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.0.2-alpine`, `8.0-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk17-alpine/Dockerfile) -- [`8.0.2-jdk19`, `8.0-jdk19`, `8-jdk19`, `jdk19`, `8.0.2-jdk19-jammy`, `8.0-jdk19-jammy`, `8-jdk19-jammy`, `jdk19-jammy`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19/Dockerfile) -- [`8.0.2-jdk19-focal`, `8.0-jdk19-focal`, `8-jdk19-focal`, `jdk19-focal`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19-focal/Dockerfile) -- [`8.0.2-jdk19-alpine`, `8.0-jdk19-alpine`, `8-jdk19-alpine`, `jdk19-alpine`](https://github.com/keeganwitt/docker-gradle/blob/064b6a1f5196be8bee922ff996a85993a02da6b2/jdk19-alpine/Dockerfile) +- [`8.1.0-jdk8`, `8.1-jdk8`, `8-jdk8`, `jdk8`, `8.1.0-jdk8-jammy`, `8.1-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk8/Dockerfile) +- [`8.1.0-jdk8-focal`, `8.1-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk8-focal/Dockerfile) +- [`8.1.0-jdk11`, `8.1-jdk11`, `8-jdk11`, `jdk11`, `8.1.0-jdk11-jammy`, `8.1-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11/Dockerfile) +- [`8.1.0-jdk11-focal`, `8.1-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11-focal/Dockerfile) +- [`8.1.0-jdk11-alpine`, `8.1-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11-alpine/Dockerfile) +- [`8.1.0-jdk17`, `8.1-jdk17`, `8-jdk17`, `jdk17`, `8.1.0-jdk`, `8.1-jdk`, `8-jdk`, `jdk`, `8.1.0`, `8.1`, `8`, `latest`, `8.1.0-jdk17-jammy`, `8.1-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.1.0-jdk-jammy`, `8.1-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.1.0-jammy`, `8.1-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17/Dockerfile) +- [`8.1.0-jdk17-focal`, `8.1-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.1.0-jdk-focal`, `8.1-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.1.0-focal`, `8.1-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17-focal/Dockerfile) +- [`8.1.0-jdk17-alpine`, `8.1-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.1.0-jdk-alpine`, `8.1-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.1.0-alpine`, `8.1-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17-alpine/Dockerfile) - [`7.6.1-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.1-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8/Dockerfile) - [`7.6.1-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8-focal/Dockerfile) - [`7.6.1-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.1-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11/Dockerfile) From f202c04ca1fdda7ec25f71f176313d0155099c08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Apr 2023 15:14:52 -0700 Subject: [PATCH 0228/2686] Run update.sh --- maven/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven/README.md b/maven/README.md index 42e508cb04ab..89a98b3f8523 100644 --- a/maven/README.md +++ b/maven/README.md @@ -27,10 +27,10 @@ WARNING: - [`3.9.1-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/f99b8cd582524a58a73b23b97e9b8c17001573af/eclipse-temurin-11/Dockerfile) - [`3.9.1-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-alpine/Dockerfile) - [`3.9.1-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.1-eclipse-temurin-17`, `3.9.1`, `3.9.1-eclipse-temurin`, `3.9-eclipse-temurin-17`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-17`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17/Dockerfile) +- [`3.9.1-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17/Dockerfile) - [`3.9.1-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-alpine/Dockerfile) - [`3.9.1-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.1-eclipse-temurin-20`, `3.9-eclipse-temurin-20`, `3-eclipse-temurin-20`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20/Dockerfile) +- [`3.9.1-eclipse-temurin-20`, `3.9.1`, `3.9.1-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20/Dockerfile) - [`3.9.1-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20-alpine/Dockerfile) - [`3.9.1-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8/Dockerfile) - [`3.9.1-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8-alpine/Dockerfile) From 6592764bf94c3b79912429829c08ccc596a02004 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 13 Apr 2023 16:23:37 -0700 Subject: [PATCH 0229/2686] Update trimmed description "hub-feedback" link and add "roadmap" link --- push.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/push.pl b/push.pl index 6f45a3f4b42e..8ab0ca9c4b1b 100755 --- a/push.pl +++ b/push.pl @@ -93,8 +93,9 @@ sub prompt_for_edit { # TODO https://github.com/docker/hub-beta-feedback/issues/238 my $fullUrl = "$githubBase/$proposedFile"; my $shortTags = "-\tSee [\"Supported tags and respective \`Dockerfile\` links\" at $fullUrl]($fullUrl#supported-tags-and-respective-dockerfile-links)\n\n"; - my $tagsNote = "**Note:** the description for this image is longer than the Hub length limit of $lengthLimit, so the \"Supported tags\" list has been trimmed to compensate. See [docker/hub-beta-feedback#238](https://github.com/docker/hub-beta-feedback/issues/238) for more information.\n\n" . $shortTags; - my $genericNote = "**Note:** the description for this image is longer than the Hub length limit of $lengthLimit, so has been trimmed. The full description can be found at [$fullUrl]($fullUrl). See [docker/hub-beta-feedback#238](https://github.com/docker/hub-beta-feedback/issues/238) for more information."; + my $seeAlso = 'See also [docker/hub-feedback#238](https://github.com/docker/hub-feedback/issues/238) and [docker/roadmap#475](https://github.com/docker/roadmap/issues/475).'; + my $tagsNote = "**Note:** the description for this image is longer than the Hub length limit of $lengthLimit, so the \"Supported tags\" list has been trimmed to compensate. $seeAlso\n\n$shortTags"; + my $genericNote = "**Note:** the description for this image is longer than the Hub length limit of $lengthLimit, so has been trimmed. The full description can be found at [$fullUrl]($fullUrl). $seeAlso"; my $startingNote = $genericNote . "\n\n"; my $endingNote = "\n\n...\n\n" . $genericNote; From b29e10b9e1926f87978896809899b0f6198ba39f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Apr 2023 10:08:43 -0700 Subject: [PATCH 0230/2686] Run update.sh --- php/README.md | 84 +++++++++++++++++---------------------------------- 1 file changed, 28 insertions(+), 56 deletions(-) diff --git a/php/README.md b/php/README.md index 629ad90d33e3..80ef7e397cfb 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.5RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.5RC1-bullseye`, `8.2-rc-bullseye`, `8.2.5RC1-cli`, `8.2-rc-cli`, `8.2.5RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.5RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.5RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.5RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.5RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.5RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.5RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.5RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.5RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/cli/Dockerfile) -- [`8.2.5RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/apache/Dockerfile) -- [`8.2.5RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.5RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/buster/zts/Dockerfile) -- [`8.2.5RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.5RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.5RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.5RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.5RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.5RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.5RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.5RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.5RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.5RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/cli/Dockerfile) -- [`8.2.5RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/fpm/Dockerfile) -- [`8.2.5RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/5bfc95d4880599cf9e85f5b5f99940cf123ebcf0/8.2-rc/alpine3.16/zts/Dockerfile) -- [`8.2.4-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.4-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.4-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.4`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/cli/Dockerfile) -- [`8.2.4-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.4-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/apache/Dockerfile) -- [`8.2.4-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.4-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/fpm/Dockerfile) -- [`8.2.4-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.4-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/bullseye/zts/Dockerfile) -- [`8.2.4-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.4-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/cli/Dockerfile) -- [`8.2.4-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/apache/Dockerfile) -- [`8.2.4-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/fpm/Dockerfile) -- [`8.2.4-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/buster/zts/Dockerfile) -- [`8.2.4-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.4-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.4-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.4-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.4-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.4-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.4-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.4-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.4-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.4-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.4-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.4-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.18RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.18RC1-bullseye`, `8.1-rc-bullseye`, `8.1.18RC1-cli`, `8.1-rc-cli`, `8.1.18RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.18RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.18RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.18RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.18RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.18RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.18RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.18RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.18RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/cli/Dockerfile) -- [`8.1.18RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/apache/Dockerfile) -- [`8.1.18RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.18RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/buster/zts/Dockerfile) -- [`8.1.18RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.18RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.18RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.18RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.18RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.18RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.18RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.18RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.18RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.18RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.18RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.18RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/daa1a8ee30718927e6dd8ee14f481c424a025b62/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.17-cli-bullseye`, `8.1-cli-bullseye`, `8.1.17-bullseye`, `8.1-bullseye`, `8.1.17-cli`, `8.1-cli`, `8.1.17`, `8.1`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/cli/Dockerfile) -- [`8.1.17-apache-bullseye`, `8.1-apache-bullseye`, `8.1.17-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/apache/Dockerfile) -- [`8.1.17-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.17-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/fpm/Dockerfile) -- [`8.1.17-zts-bullseye`, `8.1-zts-bullseye`, `8.1.17-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/bullseye/zts/Dockerfile) -- [`8.1.17-cli-buster`, `8.1-cli-buster`, `8.1.17-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/cli/Dockerfile) -- [`8.1.17-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/apache/Dockerfile) -- [`8.1.17-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/fpm/Dockerfile) -- [`8.1.17-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/buster/zts/Dockerfile) -- [`8.1.17-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.17-alpine3.17`, `8.1-alpine3.17`, `8.1.17-cli-alpine`, `8.1-cli-alpine`, `8.1.17-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.17-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.17-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.17-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.17-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.17-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.17-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.17-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.17-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.1/alpine3.16/zts/Dockerfile) +- [`8.2.5-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.5-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.5-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.5`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/cli/Dockerfile) +- [`8.2.5-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.5-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/apache/Dockerfile) +- [`8.2.5-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.5-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/fpm/Dockerfile) +- [`8.2.5-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.5-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/zts/Dockerfile) +- [`8.2.5-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.5-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/cli/Dockerfile) +- [`8.2.5-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/apache/Dockerfile) +- [`8.2.5-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/fpm/Dockerfile) +- [`8.2.5-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/zts/Dockerfile) +- [`8.2.5-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.5-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.5-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.5-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.5-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.5-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.5-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.5-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.5-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.5-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/cli/Dockerfile) +- [`8.2.5-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/fpm/Dockerfile) +- [`8.2.5-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/cli/Dockerfile) +- [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/apache/Dockerfile) +- [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/fpm/Dockerfile) +- [`8.1.18-zts-bullseye`, `8.1-zts-bullseye`, `8.1.18-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/zts/Dockerfile) +- [`8.1.18-cli-buster`, `8.1-cli-buster`, `8.1.18-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/cli/Dockerfile) +- [`8.1.18-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/apache/Dockerfile) +- [`8.1.18-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/fpm/Dockerfile) +- [`8.1.18-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/zts/Dockerfile) +- [`8.1.18-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.18-alpine3.17`, `8.1-alpine3.17`, `8.1.18-cli-alpine`, `8.1-cli-alpine`, `8.1.18-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.18-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.18-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.18-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.18-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.18-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.18-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.18-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.18-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/fpm/Dockerfile) From 5fd2c93c80debb9dbc53007efe4edb2e245f0a38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Apr 2023 11:16:29 -0700 Subject: [PATCH 0231/2686] Run update.sh --- dart/README.md | 4 ++-- emqx/README.md | 2 +- orientdb/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dart/README.md b/dart/README.md index b7346b299238..6f4f4615a448 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a0997ea985cc139f764a36fed7936e659e005d58/stable/bullseye/Dockerfile) -- [`3.0.0-290.3.beta-sdk`, `beta-sdk`, `3.0.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a0997ea985cc139f764a36fed7936e659e005d58/beta/bullseye/Dockerfile) +- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/4680546ad210130148dabe91fc1f97c7d8f66914/stable/bullseye/Dockerfile) +- [`3.0.0-417.1.beta-sdk`, `beta-sdk`, `3.0.0-417.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/4680546ad210130148dabe91fc1f97c7d8f66914/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 02799510673b..95435fc44d48 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.16`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/4.4/Dockerfile) -- [`5.0.21`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/8bda3215370c60fdefd197e2d033ed0bc12a2ade/5.0/Dockerfile) +- [`5.0.22`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/73b32fe8b71f5e2bb9634b0a6c69d5f50709e18b/5.0/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 1fd4785ea556..eb67e31f8274 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.17`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fe4c14570c0717649a8f5ab27238bf05ffe914ef/release/3.2.x/3.2.17/Dockerfile) -- [`3.2.17-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fe4c14570c0717649a8f5ab27238bf05ffe914ef/release/3.2.x/3.2.17-tp3/Dockerfile) +- [`3.2.18`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/0d918587573a79091bc9e648faff362b01162742/release/3.2.x/3.2.18/Dockerfile) +- [`3.2.18-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/0d918587573a79091bc9e648faff362b01162742/release/3.2.x/3.2.18-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 4c726ffc78fade8d88c4279350c3eaa937aa718d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Apr 2023 14:08:41 -0700 Subject: [PATCH 0232/2686] Run update.sh --- crate/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crate/README.md b/crate/README.md index 5bbbe588e4dc..9d7b2ce93dfe 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.6`, `5.2`, `latest`](https://github.com/crate/docker-crate/blob/8a7ad52cc562a2072a1817b58236ea7d8f176deb/Dockerfile) -- [`5.1.4`, `5.1`](https://github.com/crate/docker-crate/blob/b946d9e2cdb90575f58003f3230ff705c44ffcba/Dockerfile) +- [`5.3.0`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/2a7bfa53ecd5fdd4c0c4aa9c9bb3c9fd97e1df20/Dockerfile) +- [`5.2.6`, `5.2`](https://github.com/crate/docker-crate/blob/8a7ad52cc562a2072a1817b58236ea7d8f176deb/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) From 5531f0fa3a787c5072fb9485104182737c91cfa7 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 14 Apr 2023 15:34:55 -0700 Subject: [PATCH 0233/2686] Remove unused "userData" query --- push.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/push.pl b/push.pl index 8ab0ca9c4b1b..43c11bf34c05 100755 --- a/push.pl +++ b/push.pl @@ -65,10 +65,6 @@ 'X-CSRFToken' => $csrf, }; -my $userData = $ua->get('https://hub.docker.com/v2/user/' => $authorizationHeader); -die 'user failed' unless $userData->res->is_success; -$userData = $userData->res->json; - my $supportedTagsRegex = qr%^(# Supported tags and respective `Dockerfile` links\n\n)(.*?\n)(?=# |\[)%ms; sub prompt_for_edit { From a3cd3630680b4f41ade183292cba538dbb6292cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Apr 2023 17:16:42 -0700 Subject: [PATCH 0234/2686] Run update.sh --- cassandra/README.md | 2 +- docker/README.md | 18 +++++++++--------- maven/README.md | 7 +++++++ openjdk/README.md | 36 ++++++++++++++++++------------------ 4 files changed, 35 insertions(+), 28 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index a770d9de6ad7..c7fb2d2a2485 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/8ae7e0d435107e968e9609567ef772876ea7d512/4.1/Dockerfile) -- [`4.0.8`, `4.0`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/4.0/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/b5915c67f0cd255700a71a24f3b314a0280f81c6/4.0/Dockerfile) - [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.11/Dockerfile) - [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 6d23eb97f286..9f05dd1d70bf 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.0-beta.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/0e00a29925ead3f1ba1ccb77895db4963d10ad47/24-rc/cli/Dockerfile) -- [`24.0.0-beta.1-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.1-dind-alpine3.17`, `24.0.0-beta.1`, `24-rc`, `rc`, `24.0.0-beta.1-alpine3.17`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind/Dockerfile) -- [`24.0.0-beta.1-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-beta.1-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) -- [`24.0.0-beta.1-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-beta.1-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-beta.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/cli/Dockerfile) +- [`24.0.0-beta.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.2-dind-alpine3.17`, `24.0.0-beta.2`, `24-rc`, `rc`, `24.0.0-beta.2-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind/Dockerfile) +- [`24.0.0-beta.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) +- [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.3-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/cli/Dockerfile) - [`23.0.3-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.3-dind-alpine3.17`, `23.0.3`, `23.0`, `23`, `latest`, `23.0.3-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind/Dockerfile) - [`23.0.3-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind-rootless/Dockerfile) @@ -49,9 +49,9 @@ WARNING: ## Shared Tags -- `24.0.0-beta.1-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-beta.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.3-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-1809/Dockerfile) diff --git a/maven/README.md b/maven/README.md index 89a98b3f8523..aec542119d35 100644 --- a/maven/README.md +++ b/maven/README.md @@ -39,10 +39,15 @@ WARNING: - [`3.9.1-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-11-focal/Dockerfile) - [`3.9.1-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-17-focal/Dockerfile) - [`3.9.1-amazoncorretto-11`, `3.9.1-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-11/Dockerfile) +- [`3.9.1-amazoncorretto-11-debian`, `3.9.1-amazoncorretto-11-debian-bullseye`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bullseye`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-11-debian/Dockerfile) - [`3.9.1-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-17/Dockerfile) +- [`3.9.1-amazoncorretto-17-debian`, `3.9.1-amazoncorretto-17-debian-bullseye`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bullseye`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-17-debian/Dockerfile) - [`3.9.1-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-19/Dockerfile) +- [`3.9.1-amazoncorretto-19-debian`, `3.9.1-amazoncorretto-19-debian-bullseye`, `3.9-amazoncorretto-19-debian`, `3.9-amazoncorretto-19-debian-bullseye`, `3-amazoncorretto-19-debian`, `3-amazoncorretto-19-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-19-debian/Dockerfile) - [`3.9.1-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/amazoncorretto-20/Dockerfile) +- [`3.9.1-amazoncorretto-20-debian`, `3.9.1-amazoncorretto-20-debian-bullseye`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bullseye`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-20-debian/Dockerfile) - [`3.9.1-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-8/Dockerfile) +- [`3.9.1-amazoncorretto-8-debian`, `3.9.1-amazoncorretto-8-debian-bullseye`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bullseye`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-8-debian/Dockerfile) - [`3.9.1-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-11/Dockerfile) - [`3.9.1-sapmachine-17`, `3.9.1-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-17/Dockerfile) @@ -140,6 +145,8 @@ The `maven` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + Some of these tags may have names like focal in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `maven:-alpine` diff --git a/openjdk/README.md b/openjdk/README.md index d22f94c7ccd5..cf0475723015 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-17-jdk-oraclelinux8`, `21-ea-17-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-17-jdk-oracle`, `21-ea-17-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-17-jdk-oraclelinux7`, `21-ea-17-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-17-jdk-bullseye`, `21-ea-17-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/bullseye/Dockerfile) -- [`21-ea-17-jdk-slim-bullseye`, `21-ea-17-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-17-jdk-slim`, `21-ea-17-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-17-jdk-buster`, `21-ea-17-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/buster/Dockerfile) -- [`21-ea-17-jdk-slim-buster`, `21-ea-17-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/slim-buster/Dockerfile) -- [`21-ea-17-jdk-windowsservercore-ltsc2022`, `21-ea-17-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-17-jdk-windowsservercore-1809`, `21-ea-17-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-17-jdk-nanoserver-1809`, `21-ea-17-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-18-jdk-oraclelinux8`, `21-ea-18-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-18-jdk-oracle`, `21-ea-18-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-18-jdk-oraclelinux7`, `21-ea-18-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-18-jdk-bullseye`, `21-ea-18-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/bullseye/Dockerfile) +- [`21-ea-18-jdk-slim-bullseye`, `21-ea-18-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-18-jdk-slim`, `21-ea-18-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-18-jdk-buster`, `21-ea-18-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/buster/Dockerfile) +- [`21-ea-18-jdk-slim-buster`, `21-ea-18-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/slim-buster/Dockerfile) +- [`21-ea-18-jdk-windowsservercore-ltsc2022`, `21-ea-18-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-18-jdk-windowsservercore-1809`, `21-ea-18-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-18-jdk-nanoserver-1809`, `21-ea-18-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-17-jdk`, `21-ea-17`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-17-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-17-jdk-windowsservercore`, `21-ea-17-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-17-jdk-nanoserver`, `21-ea-17-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/71f03cacacddcd740c5b9102f34ec973b9081767/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-18-jdk`, `21-ea-18`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-18-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-18-jdk-windowsservercore`, `21-ea-18-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-18-jdk-nanoserver`, `21-ea-18-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 89339b72ac9e90dcc5ecf93c6a8bf20f9c453f5f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Apr 2023 12:15:10 -0700 Subject: [PATCH 0235/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- nats/README.md | 22 +++++++++++----------- orientdb/README.md | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b4b7d3384c70..2d65f0abc075 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230409.0.141585`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/da508aac1923a2416f68edd1be16df3aeefc92ee/Dockerfile.base) -- [`base-devel`, `base-devel-20230409.0.141585`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/da508aac1923a2416f68edd1be16df3aeefc92ee/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230416.0.143366`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5da14a3c436b54e1f49f676330a0a2a79a6e98c7/Dockerfile.base) +- [`base-devel`, `base-devel-20230416.0.143366`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5da14a3c436b54e1f49f676330a0a2a79a6e98c7/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2c9f62601298..45d1163072fd 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/19f37b86de0d05ba16333af3804baf6b54b4c782/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b3276e05f6a6f3b37679aaa78463910f8c23b16a/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index a47c04055c2c..844a64e6385f 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.15-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.15-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/alpine3.17/Dockerfile) -- [`2.9.15-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.15-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/scratch/Dockerfile) -- [`2.9.15-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/windowsservercore-1809/Dockerfile) -- [`2.9.15-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) +- [`2.9.16-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.16-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/alpine3.17/Dockerfile) +- [`2.9.16-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.16-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/scratch/Dockerfile) +- [`2.9.16-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/windowsservercore-1809/Dockerfile) +- [`2.9.16-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.15`, `2.9`, `2`, `latest`: - - [`2.9.15-scratch`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/scratch/Dockerfile) - - [`2.9.15-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) -- `2.9.15-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.15-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/windowsservercore-1809/Dockerfile) -- `2.9.15-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.15-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/70a8e44e947f7d1f58b940838804b13ec4abb785/2.9.15/nanoserver-1809/Dockerfile) +- `2.9.16`, `2.9`, `2`, `latest`: + - [`2.9.16-scratch`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/scratch/Dockerfile) + - [`2.9.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) +- `2.9.16-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/windowsservercore-1809/Dockerfile) +- `2.9.16-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index eb67e31f8274..4befcb528315 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -39,7 +39,7 @@ WARNING: [https://github.com/orientechnologies/orientdb-docker/issues](https://github.com/orientechnologies/orientdb-docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/orientdb/) + [`amd64`](https://hub.docker.com/r/amd64/orientdb/), [`arm32v7`](https://hub.docker.com/r/arm32v7/orientdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/orientdb/) - **Published image artifact details**: [repo-info repo's `repos/orientdb/` directory](https://github.com/docker-library/repo-info/blob/master/repos/orientdb) ([history](https://github.com/docker-library/repo-info/commits/master/repos/orientdb)) From 88e243606ce0056b227f0fd5c2610f506dc4a492 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Apr 2023 15:08:47 -0700 Subject: [PATCH 0236/2686] Run update.sh --- clojure/README.md | 102 +++++++++++++++++++-------------------- ghost/README.md | 4 +- influxdb/README.md | 40 +++++++-------- mysql/README.md | 8 +-- nats-streaming/README.md | 22 ++++----- redis/README.md | 12 ++--- 6 files changed, 94 insertions(+), 94 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 82990b5a7745..48e60438049d 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1267-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1267-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1267-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1267`, `temurin-8-tools-deps-1.11.1.1267-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1267-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1267-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1267-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1267`, `temurin-11-tools-deps-1.11.1.1267-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1267-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1267-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1267-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1267-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1267-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1267`, `temurin-17-tools-deps-1.11.1.1267-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1267`, `tools-deps-1.11.1.1267-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1267-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1267-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1267-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1267`, `temurin-20-tools-deps-1.11.1.1267-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a265c5972b18bde93301ce5775fcdc563e2d2d39/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1273-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1273-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1273-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1273`, `temurin-8-tools-deps-1.11.1.1273-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1273-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1273-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1273-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1273`, `temurin-11-tools-deps-1.11.1.1273-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1273-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1273-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1273-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1273-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1273-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1273`, `temurin-17-tools-deps-1.11.1.1273-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1273`, `tools-deps-1.11.1.1273-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1273-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1273-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1273`, `temurin-20-tools-deps-1.11.1.1273-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 0356a8cd2c5c..ad7cc035ffa4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.43.0`, `5.43`, `5`, `latest`](https://github.com/docker-library/ghost/blob/aee27e5570726420ec1534fcbaf8a3a5498e0bd6/5/debian/Dockerfile) -- [`5.43.0-alpine`, `5.43-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/aee27e5570726420ec1534fcbaf8a3a5498e0bd6/5/alpine/Dockerfile) +- [`5.44.0`, `5.44`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6e83cb72dae16fb60b4cb13117e800ee13995980/5/debian/Dockerfile) +- [`5.44.0-alpine`, `5.44-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6e83cb72dae16fb60b4cb13117e800ee13995980/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 915158dc64ec..2ad0e5e15ddd 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.10-data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.10-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.10-meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.10-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.2-data`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.2-meta`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.5/Dockerfile) -- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.5/alpine/Dockerfile) -- [`2.6`, `2.6.1`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.6/Dockerfile) -- [`2.6-alpine`, `2.6.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.6/alpine/Dockerfile) -- [`2.7`, `2.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/afa56d07c640fd6b9eb746a33395f6579e582a85/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/meta/alpine/Dockerfile) +- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/meta/alpine/Dockerfile) +- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.5/Dockerfile) +- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.5/alpine/Dockerfile) +- [`2.6`, `2.6.1`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.6/Dockerfile) +- [`2.6-alpine`, `2.6.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.6/alpine/Dockerfile) +- [`2.7`, `2.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 7428b84aa917..8daa086bb817 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.32`, `8.0`, `8`, `latest`, `8.0.32-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/8.0/Dockerfile.oracle) -- [`8.0.32-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/8.0/Dockerfile.debian) -- [`5.7.41`, `5.7`, `5`, `5.7.41-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/5.7/Dockerfile.oracle) -- [`5.7.41-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/358c2e5ab6cd24b86a20a871820ecbc67a244368/5.7/Dockerfile.debian) +- [`8.0.33`, `8.0`, `8`, `latest`, `8.0.33-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1bfa4724fe112b4246672ed2b3c42142f17d5636/8.0/Dockerfile.oracle) +- [`8.0.33-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/1bfa4724fe112b4246672ed2b3c42142f17d5636/8.0/Dockerfile.debian) +- [`5.7.42`, `5.7`, `5`, `5.7.42-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/e4bdff20153e6a05364a8fe80356dcfd502445bd/5.7/Dockerfile.oracle) +- [`5.7.42-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/e4bdff20153e6a05364a8fe80356dcfd502445bd/5.7/Dockerfile.debian) # Quick reference (cont.) diff --git a/nats-streaming/README.md b/nats-streaming/README.md index bd372cbc7730..bef918d1e2d8 100644 --- a/nats-streaming/README.md +++ b/nats-streaming/README.md @@ -32,20 +32,20 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f ## Simple Tags -- [`0.25.3-alpine3.17`, `0.25-alpine3.17`, `alpine3.17`, `0.25.3-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/alpine3.17/Dockerfile) -- [`0.25.3-scratch`, `0.25-scratch`, `scratch`, `0.25.3-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/scratch/Dockerfile) -- [`0.25.3-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/windowsservercore-1809/Dockerfile) -- [`0.25.3-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/nanoserver-1809/Dockerfile) +- [`0.25.4-alpine3.17`, `0.25-alpine3.17`, `alpine3.17`, `0.25.4-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/alpine3.17/Dockerfile) +- [`0.25.4-scratch`, `0.25-scratch`, `scratch`, `0.25.4-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/scratch/Dockerfile) +- [`0.25.4-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/windowsservercore-1809/Dockerfile) +- [`0.25.4-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) ## Shared Tags -- `0.25.3`, `0.25`, `latest`: - - [`0.25.3-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/scratch/Dockerfile) - - [`0.25.3-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/nanoserver-1809/Dockerfile) -- `0.25.3-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: - - [`0.25.3-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/windowsservercore-1809/Dockerfile) -- `0.25.3-nanoserver`, `0.25-nanoserver`, `nanoserver`: - - [`0.25.3-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/03eccc22a9512d3f18b42db735e7acb7070a2293/0.25.3/nanoserver-1809/Dockerfile) +- `0.25.4`, `0.25`, `latest`: + - [`0.25.4-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/scratch/Dockerfile) + - [`0.25.4-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) +- `0.25.4-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: + - [`0.25.4-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/windowsservercore-1809/Dockerfile) +- `0.25.4-nanoserver`, `0.25-nanoserver`, `nanoserver`: + - [`0.25.4-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 26ef9468bf71..eaf65f34fe09 100644 --- a/redis/README.md +++ b/redis/README.md @@ -26,12 +26,12 @@ WARNING: - [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/Dockerfile) - [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.17`, `7.2-rc-alpine3.17`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/alpine/Dockerfile) -- [`7.0.10`, `7.0`, `7`, `latest`, `7.0.10-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/Dockerfile) -- [`7.0.10-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.10-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/e331696f8226fb5b89d7bd190fecbfaea3cac571/7.0/alpine/Dockerfile) -- [`6.2.11`, `6.2`, `6`, `6.2.11-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/Dockerfile) -- [`6.2.11-alpine`, `6.2-alpine`, `6-alpine`, `6.2.11-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/53ffd9d64c8d00cc0640075b685e0da0cebff82f/6.2/alpine/Dockerfile) -- [`6.0.18`, `6.0`, `6.0.18-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/aab0267e4fdab0150c34c9241f87f6f7c6f03328/6.0/Dockerfile) -- [`6.0.18-alpine`, `6.0-alpine`, `6.0.18-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/aab0267e4fdab0150c34c9241f87f6f7c6f03328/6.0/alpine/Dockerfile) +- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/3fd8719e1dbce24f9e493466ce6649860735b363/7.0/Dockerfile) +- [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/3fd8719e1dbce24f9e493466ce6649860735b363/7.0/alpine/Dockerfile) +- [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/1609d202febf50daa01c8effab2a72e2fab1c2b5/6.2/Dockerfile) +- [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/1609d202febf50daa01c8effab2a72e2fab1c2b5/6.2/alpine/Dockerfile) +- [`6.0.19`, `6.0`, `6.0.19-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/e4599c8e3ff02de6d66c5ee5e4e8b19b74cbeec3/6.0/Dockerfile) +- [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e4599c8e3ff02de6d66c5ee5e4e8b19b74cbeec3/6.0/alpine/Dockerfile) # Quick reference (cont.) From d0c6998ac443cd9fba534017a1d404bb24f81f72 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Apr 2023 17:16:46 -0700 Subject: [PATCH 0237/2686] Run update.sh --- docker/README.md | 18 +++++++++--------- mongo/README.md | 15 +++++++++++++++ ubuntu/README.md | 10 +++++----- 3 files changed, 29 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9f05dd1d70bf..b56a29f23379 100644 --- a/docker/README.md +++ b/docker/README.md @@ -34,12 +34,12 @@ WARNING: - [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) - [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.3-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.3-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/cli/Dockerfile) -- [`23.0.3-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.3-dind-alpine3.17`, `23.0.3`, `23.0`, `23`, `latest`, `23.0.3-alpine3.17`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind/Dockerfile) -- [`23.0.3-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/dind-rootless/Dockerfile) -- [`23.0.3-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.3-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.3-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-1809/Dockerfile) +- [`23.0.4-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/cli/Dockerfile) +- [`23.0.4-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.4-dind-alpine3.17`, `23.0.4`, `23.0`, `23`, `latest`, `23.0.4-alpine3.17`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind/Dockerfile) +- [`23.0.4-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind-rootless/Dockerfile) +- [`23.0.4-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) +- [`23.0.4-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.4-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/cli/Dockerfile) - [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) - [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) @@ -52,9 +52,9 @@ WARNING: - `24.0.0-beta.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) -- `23.0.3-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f5aa9dfb44948d1493342e168a1d5d650b45bd7/23.0/windows/windowsservercore-1809/Dockerfile) +- `23.0.4-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 4faedaeb10f7..85a4a21fd15f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,6 +38,11 @@ WARNING: - [`5.0.16-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.16-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.16-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.21-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/Dockerfile) +- [`4.4.21-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.21-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.21-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.21-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.20-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) - [`4.4.20-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.20-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) @@ -71,6 +76,16 @@ WARNING: - `5.0.16-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.21-rc0`, `4.4-rc`: + - [`4.4.21-rc0-focal`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/Dockerfile) + - [`4.4.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.21-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.21-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.20`, `4.4`, `4`: - [`4.4.20-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) - [`4.4.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 5f9d36b1a86d..a4d4fd871a33 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308&id=9763065814c1a3459a127cec84110da8c667c2cd) -- [`20.04`, `focal-20230308`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230308&id=64da48b7b59c5fa3812046c2e81b9e040cfdfaf3) -- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308&id=6478ae3ab57923bedd4a82aa67b3e774a2e23b6d) -- [`22.10`, `kinetic-20230308`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230308&id=7929116b8b35f4ffc6d768d201bd42fb352ae7cc) -- [`23.04`, `lunar-20230314`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230314&id=a0c8676a90be8227515b2ede9dbc6ae94b6f992f) +- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308&id=44d8b495fb712fbd70f231ab1a7f7b68cbe28b11) +- [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412&id=5eae1124448da8736e6369d64086d860df85d95e) +- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308&id=ba4ed909644155b085387103f8b1e2aea36af82f) +- [`22.10`, `kinetic-20230412`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412&id=7093b05b013bb01b6e2f58eb96df09e08b6e9f6a) +- [`23.04`, `lunar-20230415`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230415&id=f14c7049e173ebb5a7699d55a334cf4ebae779a3) # Quick reference (cont.) From 8ef3a10b1242303ae4ea863caaee122b810a1b59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Apr 2023 11:16:21 -0700 Subject: [PATCH 0238/2686] Run update.sh --- odoo/README.md | 6 +++--- tomcat/README.md | 30 +++++++++++++++--------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 91127ba173ef..e7f976d86f17 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/8be11ad8773c735755378d7ac6399a7bdacd2479/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/14.0/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 65fe46a20d07..18f05417ae43 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -30,21 +30,21 @@ WARNING: - [`10.1.7-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.7-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.7-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.7-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.7-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.7-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.7-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.7-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.7-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.73-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.73-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.73-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.73`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.73-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.73-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.73-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.73-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.73-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.73-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.73-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.73-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.73-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.73-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.73-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.73-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.73-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.73-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.73-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.73-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.73-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.73-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.73-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.73-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.73-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.73-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.73-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.73-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.73-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/57c5b98cf41d9a7461f4c1f3ab36e59a5d7d5ff9/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.73-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.73-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.74-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.74-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.74-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.74`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.74-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.74-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.74-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.74-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.74-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.74-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.74-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.74-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.74-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.74-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.74-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.74-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.74-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.74-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.74-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.74-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.74-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.74-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.74-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.74-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.74-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.74-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.74-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.74-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.74-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.74-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.74-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.87-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.87-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.87-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.87`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.87-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.87-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.87-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-jammy/Dockerfile) - [`8.5.87-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-focal/Dockerfile) From 83dda7f76ae51c9fcf09ac5d6d6ec0e7be7860b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Apr 2023 12:14:47 -0700 Subject: [PATCH 0239/2686] Run update.sh --- emqx/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 95435fc44d48..757048c7cbb9 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.16`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/69e50460c940c4943b9051732fa155b8940e1c71/4.4/Dockerfile) -- [`5.0.22`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/73b32fe8b71f5e2bb9634b0a6c69d5f50709e18b/5.0/Dockerfile) +- [`4.4.17`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/95eb1259e59178c6b641d2379318c77c3beb84e8/4.4/Dockerfile) +- [`5.0.23`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/95eb1259e59178c6b641d2379318c77c3beb84e8/5.0/Dockerfile) # Quick reference (cont.) From f74319e9ea70d4a1946fd7cdc731d47cc25ae838 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Apr 2023 11:17:11 -0700 Subject: [PATCH 0240/2686] Run update.sh --- amazoncorretto/README.md | 67 +++++++++++++++++++--------------------- dart/README.md | 4 +-- fedora/README.md | 8 ++--- sapmachine/README.md | 7 ++--- 4 files changed, 40 insertions(+), 46 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 71477a40f920..f59ac963aad0 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,42 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u362`, `8u362-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/al2/Dockerfile) -- [`8-al2023`, `8u362-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u362-al2023-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/al2023/Dockerfile) -- [`8-alpine3.14`, `8u362-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u362-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u362-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u362-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u362-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u362-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u362-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u362-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u362-alpine3.17-jre`, `8-alpine-jre`, `8u362-alpine-jre`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.18`, `11.0.18-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/al2/Dockerfile) -- [`11-al2023`, `11.0.18-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.18-al2023-headless`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.18-al2023-headful`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/headful/al2023/Dockerfile) -- [`11-alpine3.14`, `11.0.18-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.18-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.18-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.18-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.18-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.6`, `17.0.6-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/al2/Dockerfile) -- [`17-al2023`, `17.0.6-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/headful/al2023/Dockerfile) -- [`17-alpine3.14`, `17.0.6-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.6-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.6-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.6-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.6-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/17/jdk/alpine/3.17/Dockerfile) -- [`19`, `19.0.2`, `19.0.2-al2`, `19-al2-full`, `19-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/al2/Dockerfile) -- [`19-alpine3.14`, `19.0.2-alpine3.14`, `19-alpine3.14-full`, `19-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.14/Dockerfile) -- [`19-alpine3.15`, `19.0.2-alpine3.15`, `19-alpine3.15-full`, `19-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.15/Dockerfile) -- [`19-alpine3.16`, `19.0.2-alpine3.16`, `19-alpine3.16-full`, `19-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.16/Dockerfile) -- [`19-alpine3.17`, `19.0.2-alpine3.17`, `19-alpine3.17-full`, `19-alpine3.17-jdk`, `19-alpine`, `19.0.2-alpine`, `19-alpine-full`, `19-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/19/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.0`, `20.0.0-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/al2/Dockerfile) -- [`20-alpine3.14`, `20.0.0-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.14/Dockerfile) -- [`20-alpine3.15`, `20.0.0-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.0-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.0-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.0-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/564b34f09563bf5ad704aff7db5eb9a403013cf2/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u372`, `8u372-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/al2/Dockerfile) +- [`8-al2023`, `8u372-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u372-al2023-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/al2023/Dockerfile) +- [`8-alpine3.14`, `8u372-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.14/Dockerfile) +- [`8-alpine3.14-jre`, `8u372-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.14/Dockerfile) +- [`8-alpine3.15`, `8u372-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u372-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u372-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u372-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u372-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u372-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u372-alpine3.17-jre`, `8-alpine-jre`, `8u372-alpine-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.19`, `11.0.19-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/al2/Dockerfile) +- [`11-al2023`, `11.0.19-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.19-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.19-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/headful/al2023/Dockerfile) +- [`11-alpine3.14`, `11.0.19-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.14/Dockerfile) +- [`11-alpine3.15`, `11.0.19-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.19-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.19-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.19-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.7`, `17.0.7-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/al2/Dockerfile) +- [`17-al2023`, `17.0.7-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/headful/al2023/Dockerfile) +- [`17-alpine3.14`, `17.0.7-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.14/Dockerfile) +- [`17-alpine3.15`, `17.0.7-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.7-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.7-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.7-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.1`, `20.0.1-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/al2/Dockerfile) +- [`20-alpine3.14`, `20.0.1-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.14/Dockerfile) +- [`20-alpine3.15`, `20.0.1-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.1-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.1-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.1-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 6f4f4615a448..24f3099d2e51 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/4680546ad210130148dabe91fc1f97c7d8f66914/stable/bullseye/Dockerfile) -- [`3.0.0-417.1.beta-sdk`, `beta-sdk`, `3.0.0-417.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/4680546ad210130148dabe91fc1f97c7d8f66914/beta/bullseye/Dockerfile) +- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a661268dc93b4647adf2496ec1ee89e471000a8d/stable/bullseye/Dockerfile) +- [`3.0.0-417.2.beta-sdk`, `beta-sdk`, `3.0.0-417.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a661268dc93b4647adf2496ec1ee89e471000a8d/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 0a3149fcd549..10006cc3e231 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c67d07340480a701095520adac14fb1b1410c536/x86_64/Dockerfile) -- [`37`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d125ccc578a6ee34803c806d2854c1a531ea77b9/x86_64/Dockerfile) -- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b5ec3fb5c8646068aeb30cc7ee7b572601c3baf7/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ce9c595a0c05609af7e7c68607b96f3704290937/x86_64/Dockerfile) +- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/acb8d8b34133ca30459a1864623b501c2dba6164/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/205f58bd68006264368f1ca47cb5af6338107745/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2c3a7ab42b7b40c3b976e3675583d3ba3a9bea60/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c01a9e66a588ac510a9b203906689caae879fb0c/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 4927cf4d027c..ae9448a47af9 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11`, `11.0.18`](https://github.com/SAP/SapMachine-infrastructure/blob/1d9a8aa21f4cb661656e617b0133b7d154c3992b/dockerfiles/official/11/Dockerfile) -- [`17`, `17.0.6`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/8d5fd07f2e40428a2027de2abf78ac9be0e3bc9d/dockerfiles/official/17/Dockerfile) -- [`19`, `19.0.2`](https://github.com/SAP/SapMachine-infrastructure/blob/c515da6c71d27d6bbf8fca4c0e782a50e9f8319c/dockerfiles/official/19/Dockerfile) -- [`20`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/b0f930a0c42d3e856e6ee459c569c69336a5b00a/dockerfiles/official/20/Dockerfile) +- [`11`, `11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/c2a79726eae76118b0b204bb201920ce200d0703/dockerfiles/official/11/Dockerfile) +- [`17`, `17.0.7`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/b5e632a4b8a28d1618215983fa95859979c63280/dockerfiles/official/17/Dockerfile) +- [`20`, `20.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/2f4f203530b69b9e7b120c1f1e0d8e8baafa40f2/dockerfiles/official/20/Dockerfile) # Quick reference (cont.) From bfb4e53a9b7eefecbec5701c06c3474bc6e59b26 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Apr 2023 13:08:42 -0700 Subject: [PATCH 0241/2686] Run update.sh --- arangodb/README.md | 2 +- matomo/README.md | 6 +++--- neo4j/README.md | 4 ++-- nextcloud/README.md | 18 +++++++++--------- node/README.md | 18 ++++++++++++------ rust/README.md | 16 ++++++++-------- 6 files changed, 35 insertions(+), 29 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 4ad69d7a36fd..02f5382a43e6 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.8`, `3.8.9`](https://github.com/arangodb/arangodb-docker/blob/da21330779b93bbdd399935479d66efa8563719c/alpine/3.8.9/Dockerfile) - [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.9.10/Dockerfile) -- [`3.10`, `3.10.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.10.5/Dockerfile) +- [`3.10`, `3.10.5`, `3.10.5.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/b224376c65b4c5f4e24ad8c5c6b43d1862bbbf51/alpine/3.10.5.2/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index df6c7f3b3e58..5e7bf52d2d93 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.14.1-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.1`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/apache/Dockerfile) -- [`4.14.1-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/fpm/Dockerfile) -- [`4.14.1-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/a5a6c217dd6c297a11a2b6a732aa568c184878ae/fpm-alpine/Dockerfile) +- [`4.14.2-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.2`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/apache/Dockerfile) +- [`4.14.2-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/fpm/Dockerfile) +- [`4.14.2-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 7e401cb699ff..39d3ec84de53 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.6.0`, `5.6.0-community`, `5.6`, `5.6-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/community/Dockerfile) -- [`5.6.0-enterprise`, `5.6-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5e0122d70f6407707b3ae70e6ef91a1fb3fd2f61/5.6.0/enterprise/Dockerfile) +- [`5.7.0`, `5.7.0-community`, `5.7`, `5.7-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/community/Dockerfile) +- [`5.7.0-enterprise`, `5.7-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/enterprise/Dockerfile) - [`4.4.19`, `4.4.19-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/community/Dockerfile) - [`4.4.19-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/enterprise/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 174f78b037a3..a0a527e429c6 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24.0.11-apache`, `24.0-apache`, `24-apache`, `24.0.11`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/apache/Dockerfile) -- [`24.0.11-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/fpm/Dockerfile) -- [`24.0.11-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/24/fpm-alpine/Dockerfile) -- [`25.0.5-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.5`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/apache/Dockerfile) -- [`25.0.5-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/fpm/Dockerfile) -- [`25.0.5-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/25/fpm-alpine/Dockerfile) -- [`26.0.0-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/apache/Dockerfile) -- [`26.0.0-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/fpm/Dockerfile) -- [`26.0.0-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/cf3066878422a4f0e8b79fcddb8227114e074b74/26/fpm-alpine/Dockerfile) +- [`24.0.12-apache`, `24.0-apache`, `24-apache`, `24.0.12`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/apache/Dockerfile) +- [`24.0.12-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/fpm/Dockerfile) +- [`24.0.12-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/fpm-alpine/Dockerfile) +- [`25.0.6-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.6`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/apache/Dockerfile) +- [`25.0.6-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/fpm/Dockerfile) +- [`25.0.6-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/fpm-alpine/Dockerfile) +- [`26.0.1-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.1`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/apache/Dockerfile) +- [`26.0.1-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/fpm/Dockerfile) +- [`26.0.1-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 695df990744f..ae1a8a359d81 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) -- [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.9-buster`, `19.9.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) -- [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) +- [`20-alpine3.16`, `20.0-alpine3.16`, `20.0.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/alpine3.16/Dockerfile) +- [`20-alpine`, `20-alpine3.17`, `20.0-alpine`, `20.0-alpine3.17`, `20.0.0-alpine`, `20.0.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/alpine3.17/Dockerfile) +- [`20`, `20-bullseye`, `20.0`, `20.0-bullseye`, `20.0.0`, `20.0.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20-slim`, `20.0-bullseye-slim`, `20.0-slim`, `20.0.0-bullseye-slim`, `20.0.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.0-buster`, `20.0.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/buster/Dockerfile) +- [`20-buster-slim`, `20.0-buster-slim`, `20.0.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/buster-slim/Dockerfile) +- [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) +- [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) +- [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) +- [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) +- [`19-buster`, `19.9-buster`, `19.9.0-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) +- [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) - [`18-alpine3.16`, `18.16-alpine3.16`, `18.16.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.16/Dockerfile) - [`18-alpine`, `18-alpine3.17`, `18.16-alpine`, `18.16-alpine3.17`, `18.16.0-alpine`, `18.16.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.17/Dockerfile) - [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) diff --git a/rust/README.md b/rust/README.md index f2dc3b85c31f..ad4979adab04 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.68-buster`, `1.68.2-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/buster/Dockerfile) -- [`1-slim-buster`, `1.68-slim-buster`, `1.68.2-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/buster/slim/Dockerfile) -- [`1-bullseye`, `1.68-bullseye`, `1.68.2-bullseye`, `bullseye`, `1`, `1.68`, `1.68.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.68-slim-bullseye`, `1.68.2-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.68-slim`, `1.68.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.68-bookworm`, `1.68.2-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.68-slim-bookworm`, `1.68.2-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.68-alpine3.16`, `1.68.2-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.68-alpine3.17`, `1.68.2-alpine3.17`, `alpine3.17`, `1-alpine`, `1.68-alpine`, `1.68.2-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/5008b6a718c798c342bb318f76f3531088bf426f/1.68.2/alpine3.17/Dockerfile) +- [`1-buster`, `1.69-buster`, `1.69.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/buster/Dockerfile) +- [`1-slim-buster`, `1.69-slim-buster`, `1.69.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.69-bullseye`, `1.69.0-bullseye`, `bullseye`, `1`, `1.69`, `1.69.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.69-slim-bullseye`, `1.69.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.69-slim`, `1.69.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.69-bookworm`, `1.69.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.69-slim-bookworm`, `1.69.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bookworm/slim/Dockerfile) +- [`1-alpine3.16`, `1.69-alpine3.16`, `1.69.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/alpine3.16/Dockerfile) +- [`1-alpine3.17`, `1.69-alpine3.17`, `1.69.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.69-alpine`, `1.69.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/alpine3.17/Dockerfile) # Quick reference (cont.) From e5f6bbc58f38f7faac038ed327ff071f132bfd46 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Apr 2023 15:15:42 -0700 Subject: [PATCH 0242/2686] Run update.sh --- docker/README.md | 30 +++++++++---------- drupal/README.md | 78 ++++++++++++++++++++++++------------------------ tomcat/README.md | 42 +++++++++++++------------- ubuntu/README.md | 10 +++---- 4 files changed, 80 insertions(+), 80 deletions(-) diff --git a/docker/README.md b/docker/README.md index b56a29f23379..85f65645eceb 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,36 +28,36 @@ WARNING: ## Simple Tags -- [`24.0.0-beta.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/cli/Dockerfile) +- [`24.0.0-beta.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/cli/Dockerfile) - [`24.0.0-beta.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.2-dind-alpine3.17`, `24.0.0-beta.2`, `24-rc`, `rc`, `24.0.0-beta.2-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind/Dockerfile) - [`24.0.0-beta.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind-rootless/Dockerfile) - [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) -- [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.4-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/cli/Dockerfile) +- [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`23.0.4-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/cli/Dockerfile) - [`23.0.4-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.4-dind-alpine3.17`, `23.0.4`, `23.0`, `23`, `latest`, `23.0.4-alpine3.17`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind/Dockerfile) - [`23.0.4-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind-rootless/Dockerfile) - [`23.0.4-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.4-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.4-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/cli/Dockerfile) +- [`23.0.4-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.4-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-1809/Dockerfile) +- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/cli/Dockerfile) - [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) - [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) - [`20.10.24-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.24-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.24-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-1809/Dockerfile) +- [`20.10.24-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`20.10.24-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.0-beta.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/windows/windowsservercore-1809/Dockerfile) + - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.4-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/windows/windowsservercore-1809/Dockerfile) + - [`23.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/windows/windowsservercore-1809/Dockerfile) + - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 540d721684a5..4eb9a3bb0c98 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.7-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.7-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.7-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.7-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.7-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.7`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.7-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.7-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.7-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.7-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.7-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.7-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.7-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.7-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.7-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.7-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.7-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.7-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.7-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.7-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.7-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.7-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.7-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.7-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.7-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.7-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.7-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.7-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.7-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.7-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/31421ff3cf1c52f750200bab605d7287bd548d5d/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.7-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.7-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.7-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.7-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.7-apache`, `9.5-apache`, `9-apache`, `9.5.7`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.7-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.7-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.7-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.7-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.7-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.7-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.7-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.7-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.7-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.7-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.7-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.7-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.7-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.7-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.7-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.7-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.7-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.7-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.7-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.7-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.7-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.7-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/7024ec236e47c1c1a44e684e6a6d94ce0b46132c/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.13-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.13-php8.1-apache`, `9.4-php8.1-apache`, `9.4.13-php8.1`, `9.4-php8.1`, `9.4.13-apache-bullseye`, `9.4-apache-bullseye`, `9.4.13-apache`, `9.4-apache`, `9.4.13`, `9.4`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.13-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.13-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.13-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.13-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.13-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.13-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.13-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.13-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.13-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.13-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.13-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.13-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.13-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.13-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.13-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.13-php8.0-apache`, `9.4-php8.0-apache`, `9.4.13-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.13-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.13-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.13-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.13-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.13-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/5d001376b6ee984af6de472b34daa793dc277857/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.95-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.95-php8.0-apache`, `7-php8.0-apache`, `7.95-php8.0`, `7-php8.0`, `7.95-apache-bullseye`, `7-apache-bullseye`, `7.95-apache`, `7-apache`, `7.95`, `7`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-bullseye/Dockerfile) -- [`7.95-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.95-php8.0-fpm`, `7-php8.0-fpm`, `7.95-fpm-bullseye`, `7-fpm-bullseye`, `7.95-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.95-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.95-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/apache-buster/Dockerfile) -- [`7.95-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.95-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-buster/Dockerfile) -- [`7.95-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.95-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bc1f6efe20c00cd99b15aa9c368e675c1997138e/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.8-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.8-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.8-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.8-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.8-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.8`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.8-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.8-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.8-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.8-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.8-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.8-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.8-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.8-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.8-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.8-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.8-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.8-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.8-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.8-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.8-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.8-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.8-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.8-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.8-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.8-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.8-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.8-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.8-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.8-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.8-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.8-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.8-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.8-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.8-apache`, `9.5-apache`, `9-apache`, `9.5.8`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.8-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.8-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.8-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.8-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.8-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.8-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.8-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.8-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.8-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.8-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.8-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.8-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.8-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.8-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.8-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.8-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.8-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.8-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.8-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.8-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.8-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.8-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.14-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.14-php8.1-apache`, `9.4-php8.1-apache`, `9.4.14-php8.1`, `9.4-php8.1`, `9.4.14-apache-bullseye`, `9.4-apache-bullseye`, `9.4.14-apache`, `9.4-apache`, `9.4.14`, `9.4`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.14-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.14-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.14-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.14-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.14-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.14-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.14-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.14-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.14-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.14-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.14-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.14-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.14-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.14-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.14-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.14-php8.0-apache`, `9.4-php8.0-apache`, `9.4.14-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.14-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.14-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.14-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.14-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.14-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.96-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.96-php8.0-apache`, `7-php8.0-apache`, `7.96-php8.0`, `7-php8.0`, `7.96-apache-bullseye`, `7-apache-bullseye`, `7.96-apache`, `7-apache`, `7.96`, `7`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/apache-bullseye/Dockerfile) +- [`7.96-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.96-php8.0-fpm`, `7-php8.0-fpm`, `7.96-fpm-bullseye`, `7-fpm-bullseye`, `7.96-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.96-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.96-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/apache-buster/Dockerfile) +- [`7.96-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.96-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-buster/Dockerfile) +- [`7.96-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.96-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 18f05417ae43..3857f222cc3f 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M4-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M4-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M4-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M4`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.0-M4-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M4-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M4-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/49294a7594a872e88aac70c0bd448b081de8d565/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.7-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.7-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.7-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.7-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.7-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.7-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.7-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.7-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.7-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.7-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.7-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.7-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cb3bc2a79213c790785b9b4f88b449c024628c21/10.1/jre11/temurin-jammy/Dockerfile) +- [`11.0.0-M5-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M5-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M5-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M5`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/17250442a64aab56e229f14cf2a4f570da8bb48f/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M5-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M5-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M5-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/17250442a64aab56e229f14cf2a4f570da8bb48f/11.0/jre17/temurin-jammy/Dockerfile) +- [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.8-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.8-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.8-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.74-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.74-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.74-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.74`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.74-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.74-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.74-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.74-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-focal/Dockerfile) @@ -45,21 +45,21 @@ WARNING: - [`9.0.74-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.74-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.74-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.74-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.87-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.87-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.87-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.87`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.87-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.87-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.87-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.87-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.87-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.87-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.87-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.87-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.87-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.87-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.87-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.87-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.87-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.87-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.87-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.87-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.87-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.87-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.87-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.87-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.87-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.87-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.87-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.87-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.87-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c740db7fd9be7f4cb3a188a3c591123525da15c/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.87-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.87-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9fd0c865c16751a144216186720dae7cfc9113bd/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.88-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.88-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.88-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.88-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.88-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.88-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.88-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.88-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.88-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.88-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.88-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.88-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.88-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.88-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.88-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.88-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.88-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.88-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.88-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.88-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.88-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.88-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.88-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.88-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.88-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.88-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index a4d4fd871a33..0e3c51ab09dd 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308&id=44d8b495fb712fbd70f231ab1a7f7b68cbe28b11) -- [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412&id=5eae1124448da8736e6369d64086d860df85d95e) -- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308&id=ba4ed909644155b085387103f8b1e2aea36af82f) -- [`22.10`, `kinetic-20230412`, `kinetic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412&id=7093b05b013bb01b6e2f58eb96df09e08b6e9f6a) -- [`23.04`, `lunar-20230415`, `lunar`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230415&id=f14c7049e173ebb5a7699d55a334cf4ebae779a3) +- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308-0bf56b6b&id=0bf56b6beeb478aee688350c27d41e732048c9af) +- [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412-26258b91&id=26258b9129f269190048fdf2b46d82de5ae5f79c) +- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308-e17e4450&id=e17e4450874a7b28375b18f037bb7eb86e3e2590) +- [`22.10`, `kinetic-20230412`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412-acd9976c&id=acd9976cf1d024747ad42960daa92bc3065e3a38) +- [`23.04`, `lunar-20230415`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230415-128b175f&id=128b175fd48d26f5e106f8b200d20617dd42c4f1) # Quick reference (cont.) From 2effff249a0702b8f595a87abfda014149f3f187 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Apr 2023 11:15:42 -0700 Subject: [PATCH 0243/2686] Run update.sh --- erlang/README.md | 6 ++--- perl/README.md | 64 ++++++++++++++++++++++++------------------------ r-base/README.md | 2 +- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 63a105ee2616..655f2c868130 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,9 +30,9 @@ WARNING: - [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) - [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) - [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) -- [`24.3.4.10`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/Dockerfile) -- [`24.3.4.10-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/slim/Dockerfile) -- [`24.3.4.10-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ac8d949393d741514939278b2084dd6414e6d0a8/24/alpine/Dockerfile) +- [`24.3.4.11`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/Dockerfile) +- [`24.3.4.11-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/slim/Dockerfile) +- [`24.3.4.11-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/alpine/Dockerfile) - [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/Dockerfile) - [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/slim/Dockerfile) - [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/alpine/Dockerfile) diff --git a/perl/README.md b/perl/README.md index 3c030c7ab26d..6594d7c424c3 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,38 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main-bullseye/Dockerfile) -- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main-buster/Dockerfile) -- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim-bullseye/Dockerfile) -- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim-buster/Dockerfile) -- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main,threaded-bullseye/Dockerfile) -- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-main,threaded-buster/Dockerfile) -- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim,threaded-bullseye/Dockerfile) -- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.036.000-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.032.001-slim,threaded-buster/Dockerfile) -- [`5.37.10`, `5.37`, `devel`, `5.37.10-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main-bullseye/Dockerfile) -- [`5.37.10-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main-buster/Dockerfile) -- [`5.37.10-slim`, `5.37-slim`, `devel-slim`, `5.37.10-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim-bullseye/Dockerfile) -- [`5.37.10-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim-buster/Dockerfile) -- [`5.37.10-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.10-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main,threaded-bullseye/Dockerfile) -- [`5.37.10-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-main,threaded-buster/Dockerfile) -- [`5.37.10-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.10-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim,threaded-bullseye/Dockerfile) -- [`5.37.10-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/c68c8bd94f83bcedcd2b2fcde34e10b94b4bdc80/5.037.010-slim,threaded-buster/Dockerfile) +- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main-bullseye/Dockerfile) +- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main-buster/Dockerfile) +- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim-bullseye/Dockerfile) +- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim-buster/Dockerfile) +- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main,threaded-bullseye/Dockerfile) +- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main,threaded-buster/Dockerfile) +- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim,threaded-bullseye/Dockerfile) +- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main-bullseye/Dockerfile) +- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main-buster/Dockerfile) +- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim-bullseye/Dockerfile) +- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim-buster/Dockerfile) +- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main,threaded-bullseye/Dockerfile) +- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main,threaded-buster/Dockerfile) +- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim,threaded-bullseye/Dockerfile) +- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main-bullseye/Dockerfile) +- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main-buster/Dockerfile) +- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim-bullseye/Dockerfile) +- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim-buster/Dockerfile) +- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main,threaded-bullseye/Dockerfile) +- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main,threaded-buster/Dockerfile) +- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim,threaded-bullseye/Dockerfile) +- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim,threaded-buster/Dockerfile) # Quick reference (cont.) diff --git a/r-base/README.md b/r-base/README.md index 10b7c8475e1a..cebb34cf9290 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.3`, `latest`](https://github.com/rocker-org/rocker/blob/c9e01210d9ca77b8b7f7293f71f88782a1ca2a4e/r-base/4.2.3/Dockerfile) +- [`4.3.0`, `latest`](https://github.com/rocker-org/rocker/blob/369880a2813efaba8a719188a71b3a655fda0845/r-base/4.3.0/Dockerfile) # Quick reference (cont.) From fa5f75d2fb158f671729e8a3401217d938f0a6af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Apr 2023 12:15:07 -0700 Subject: [PATCH 0244/2686] Run update.sh --- drupal/README.md | 10 +++++----- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 4eb9a3bb0c98..e47e3807440b 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -58,11 +58,11 @@ WARNING: - [`9.4.14-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/apache-buster/Dockerfile) - [`9.4.14-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-buster/Dockerfile) - [`9.4.14-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.96-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.96-php8.0-apache`, `7-php8.0-apache`, `7.96-php8.0`, `7-php8.0`, `7.96-apache-bullseye`, `7-apache-bullseye`, `7.96-apache`, `7-apache`, `7.96`, `7`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/apache-bullseye/Dockerfile) -- [`7.96-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.96-php8.0-fpm`, `7-php8.0-fpm`, `7.96-fpm-bullseye`, `7-fpm-bullseye`, `7.96-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.96-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.96-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/apache-buster/Dockerfile) -- [`7.96-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.96-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-buster/Dockerfile) -- [`7.96-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.96-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/55e1a0b76a99d96c6e39dd60a2ade5c88726471c/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.97-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.97-php8.0-apache`, `7-php8.0-apache`, `7.97-php8.0`, `7-php8.0`, `7.97-apache-bullseye`, `7-apache-bullseye`, `7.97-apache`, `7-apache`, `7.97`, `7`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-bullseye/Dockerfile) +- [`7.97-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.97-php8.0-fpm`, `7-php8.0-fpm`, `7.97-fpm-bullseye`, `7-fpm-bullseye`, `7.97-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.97-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.97-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-buster/Dockerfile) +- [`7.97-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.97-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-buster/Dockerfile) +- [`7.97-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.97-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index cf0475723015..92e88dedaac0 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-18-jdk-oraclelinux8`, `21-ea-18-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-18-jdk-oracle`, `21-ea-18-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-18-jdk-oraclelinux7`, `21-ea-18-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-18-jdk-bullseye`, `21-ea-18-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/bullseye/Dockerfile) -- [`21-ea-18-jdk-slim-bullseye`, `21-ea-18-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-18-jdk-slim`, `21-ea-18-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-18-jdk-buster`, `21-ea-18-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/buster/Dockerfile) -- [`21-ea-18-jdk-slim-buster`, `21-ea-18-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/slim-buster/Dockerfile) -- [`21-ea-18-jdk-windowsservercore-ltsc2022`, `21-ea-18-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-18-jdk-windowsservercore-1809`, `21-ea-18-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-18-jdk-nanoserver-1809`, `21-ea-18-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-19-jdk-oraclelinux8`, `21-ea-19-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-19-jdk-oracle`, `21-ea-19-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-19-jdk-oraclelinux7`, `21-ea-19-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-19-jdk-bullseye`, `21-ea-19-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/bullseye/Dockerfile) +- [`21-ea-19-jdk-slim-bullseye`, `21-ea-19-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-19-jdk-slim`, `21-ea-19-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-19-jdk-buster`, `21-ea-19-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/buster/Dockerfile) +- [`21-ea-19-jdk-slim-buster`, `21-ea-19-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/slim-buster/Dockerfile) +- [`21-ea-19-jdk-windowsservercore-ltsc2022`, `21-ea-19-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-19-jdk-windowsservercore-1809`, `21-ea-19-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-19-jdk-nanoserver-1809`, `21-ea-19-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-18-jdk`, `21-ea-18`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-18-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-18-jdk-windowsservercore`, `21-ea-18-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-18-jdk-nanoserver`, `21-ea-18-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/06f325d35c341c97ccf6c5e160c1d980c860699b/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-19-jdk`, `21-ea-19`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-19-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-19-jdk-windowsservercore`, `21-ea-19-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-19-jdk-nanoserver`, `21-ea-19-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 25c36492b168867f70f47abe37c57e616519d03f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Apr 2023 18:14:25 -0700 Subject: [PATCH 0245/2686] Run update.sh --- gradle/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index ee9c695c8780..8c421df935a0 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.1.0-jdk8`, `8.1-jdk8`, `8-jdk8`, `jdk8`, `8.1.0-jdk8-jammy`, `8.1-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk8/Dockerfile) -- [`8.1.0-jdk8-focal`, `8.1-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk8-focal/Dockerfile) -- [`8.1.0-jdk11`, `8.1-jdk11`, `8-jdk11`, `jdk11`, `8.1.0-jdk11-jammy`, `8.1-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11/Dockerfile) -- [`8.1.0-jdk11-focal`, `8.1-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11-focal/Dockerfile) -- [`8.1.0-jdk11-alpine`, `8.1-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk11-alpine/Dockerfile) -- [`8.1.0-jdk17`, `8.1-jdk17`, `8-jdk17`, `jdk17`, `8.1.0-jdk`, `8.1-jdk`, `8-jdk`, `jdk`, `8.1.0`, `8.1`, `8`, `latest`, `8.1.0-jdk17-jammy`, `8.1-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.1.0-jdk-jammy`, `8.1-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.1.0-jammy`, `8.1-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17/Dockerfile) -- [`8.1.0-jdk17-focal`, `8.1-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.1.0-jdk-focal`, `8.1-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.1.0-focal`, `8.1-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17-focal/Dockerfile) -- [`8.1.0-jdk17-alpine`, `8.1-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.1.0-jdk-alpine`, `8.1-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.1.0-alpine`, `8.1-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c1dc87244b7ddc2cc0b2aeab66f5b791be21657/jdk17-alpine/Dockerfile) +- [`8.1.1-jdk8`, `8.1-jdk8`, `8-jdk8`, `jdk8`, `8.1.1-jdk8-jammy`, `8.1-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk8/Dockerfile) +- [`8.1.1-jdk8-focal`, `8.1-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk8-focal/Dockerfile) +- [`8.1.1-jdk11`, `8.1-jdk11`, `8-jdk11`, `jdk11`, `8.1.1-jdk11-jammy`, `8.1-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11/Dockerfile) +- [`8.1.1-jdk11-focal`, `8.1-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11-focal/Dockerfile) +- [`8.1.1-jdk11-alpine`, `8.1-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11-alpine/Dockerfile) +- [`8.1.1-jdk17`, `8.1-jdk17`, `8-jdk17`, `jdk17`, `8.1.1-jdk`, `8.1-jdk`, `8-jdk`, `jdk`, `8.1.1`, `8.1`, `8`, `latest`, `8.1.1-jdk17-jammy`, `8.1-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.1.1-jdk-jammy`, `8.1-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.1.1-jammy`, `8.1-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17/Dockerfile) +- [`8.1.1-jdk17-focal`, `8.1-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.1.1-jdk-focal`, `8.1-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.1.1-focal`, `8.1-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17-focal/Dockerfile) +- [`8.1.1-jdk17-alpine`, `8.1-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.1.1-jdk-alpine`, `8.1-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.1.1-alpine`, `8.1-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17-alpine/Dockerfile) - [`7.6.1-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.1-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8/Dockerfile) - [`7.6.1-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8-focal/Dockerfile) - [`7.6.1-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.1-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11/Dockerfile) From 3b1ce20a390e5899d1f5693665635ef40f5aac1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Apr 2023 11:16:27 -0700 Subject: [PATCH 0246/2686] Run update.sh --- haskell/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index e963d291406d..0310bb5b0ed5 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.4-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.4`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/buster/Dockerfile) -- [`9.4.4-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.4-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.4/slim-buster/Dockerfile) +- [`9.4.5-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.5`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/6a4bd2d6ac51a08af489476145b1f83c8d20e575/9.4/buster/Dockerfile) +- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.5-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/6a4bd2d6ac51a08af489476145b1f83c8d20e575/9.4/slim-buster/Dockerfile) - [`9.2.7-buster`, `9.2-buster`, `9.2.7`, `9.2`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/buster/Dockerfile) - [`9.2.7-slim-buster`, `9.2-slim-buster`, `9.2.7-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/buster/Dockerfile) From 09f43c6d265b6b2825dc130fe96b413bb71f89c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Apr 2023 12:15:24 -0700 Subject: [PATCH 0247/2686] Run update.sh --- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- friendica/README.md | 15 +++++------ perl/README.md | 64 ++++++++++++++++++++++---------------------- telegraf/README.md | 12 ++++----- xwiki/README.md | 6 ++--- 6 files changed, 50 insertions(+), 53 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 2d65f0abc075..37356e04c50c 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230416.0.143366`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5da14a3c436b54e1f49f676330a0a2a79a6e98c7/Dockerfile.base) -- [`base-devel`, `base-devel-20230416.0.143366`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5da14a3c436b54e1f49f676330a0a2a79a6e98c7/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230423.0.144989`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0f35dc08d406688bc127e4f906e79549f1e6cf5f/Dockerfile.base) +- [`base-devel`, `base-devel-20230423.0.144989`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0f35dc08d406688bc127e4f906e79549f1e6cf5f/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 45d1163072fd..f622c110938d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b3276e05f6a6f3b37679aaa78463910f8c23b16a/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/cc882385cb5d21370876c0c67234efe985d17673/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 3ff7dfa9f031..35c9bbfb91f7 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,15 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.01-apache`, `apache`, `stable-apache`, `2023.01`, `latest`, `stable`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/apache/Dockerfile) -- [`2023.01-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/fpm/Dockerfile) -- [`2023.01-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.01/fpm-alpine/Dockerfile) -- [`2023.03-dev-apache`, `dev-apache`, `2023.03-dev`, `dev`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/apache/Dockerfile) -- [`2023.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/fpm/Dockerfile) -- [`2023.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cea40a56f39360ab342c3bfb1533e13c661596cd/2023.03-dev/fpm-alpine/Dockerfile) -- [`2023.03-rc-apache`, `rc-apache`, `2023.03-rc`, `rc`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/apache/Dockerfile) -- [`2023.03-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/fpm/Dockerfile) -- [`2023.03-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/6bae8ca82083ebe5d4b5f61def6c00e597deccfd/2023.03-rc/fpm-alpine/Dockerfile) +- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/apache/Dockerfile) +- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/fpm/Dockerfile) +- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/fpm-alpine/Dockerfile) +- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/apache/Dockerfile) +- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm/Dockerfile) +- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 6594d7c424c3..f14cc6ba32e3 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,38 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.0`, `5.36`, `5`, `latest`, `stable`, `5.36.0-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main-bullseye/Dockerfile) -- [`5.36.0-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main-buster/Dockerfile) -- [`5.36.0-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.0-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim-bullseye/Dockerfile) -- [`5.36.0-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim-buster/Dockerfile) -- [`5.36.0-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.0-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main,threaded-bullseye/Dockerfile) -- [`5.36.0-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-main,threaded-buster/Dockerfile) -- [`5.36.0-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.0-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim,threaded-bullseye/Dockerfile) -- [`5.36.0-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.036.000-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.032.001-slim,threaded-buster/Dockerfile) -- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main-bullseye/Dockerfile) -- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main-buster/Dockerfile) -- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim-bullseye/Dockerfile) -- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim-buster/Dockerfile) -- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main,threaded-bullseye/Dockerfile) -- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-main,threaded-buster/Dockerfile) -- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim,threaded-bullseye/Dockerfile) -- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/33cd41a7ca6185212388d61387ade0324b54b85f/5.037.011-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5`, `latest`, `stable`, `5.36.1-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.1-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main-bullseye/Dockerfile) +- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main-buster/Dockerfile) +- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim-bullseye/Dockerfile) +- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim-buster/Dockerfile) +- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main,threaded-bullseye/Dockerfile) +- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main,threaded-buster/Dockerfile) +- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim,threaded-bullseye/Dockerfile) +- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim,threaded-buster/Dockerfile) +- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main-bullseye/Dockerfile) +- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main-buster/Dockerfile) +- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim-bullseye/Dockerfile) +- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim-buster/Dockerfile) +- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main,threaded-bullseye/Dockerfile) +- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main,threaded-buster/Dockerfile) +- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim,threaded-bullseye/Dockerfile) +- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim,threaded-buster/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 26ffdbc8adda..daab4dcbe623 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/da69b96224801c2822214a1da8132c0deed218cc/telegraf/1.26/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.26/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 4f029671878d..ad4e5fc16f45 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.2`, `15.2.0`, `15-mysql-tomcat`, `15.2-mysql-tomcat`, `15.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.2-postgres-tomcat`, `15.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.2-mariadb-tomcat`, `15.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.3`, `15.3.0`, `15-mysql-tomcat`, `15.3-mysql-tomcat`, `15.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.3-postgres-tomcat`, `15.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.8`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mariadb-tomcat/Dockerfile) From aeb6da7da2d21e2c1bf4cae0b5343183e02199f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Apr 2023 13:08:43 -0700 Subject: [PATCH 0248/2686] Run update.sh --- traefik/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 8081c3ebc2af..117b36305cd4 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,10 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.9.10-windowsservercore-1809`, `2.9.10-windowsservercore-1809`, `v2.9-windowsservercore-1809`, `2.9-windowsservercore-1809`, `banon-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/windows/1809/Dockerfile) -- [`v2.9.10`, `2.9.10`, `v2.9`, `2.9`, `banon`, `latest`](https://github.com/traefik/traefik-library-image/blob/a74a21441e1185fc0ff9e4139524544e54db1226/alpine/Dockerfile) -- [`v2.10.0-rc2-windowsservercore-1809`, `2.10.0-rc2-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2e2af4d37b83c23a252154454fb25a8c9e48b801/windows/1809/Dockerfile) -- [`v2.10.0-rc2`, `2.10.0-rc2`, `v2.10`, `2.10`, `saintmarcelin`](https://github.com/traefik/traefik-library-image/blob/2e2af4d37b83c23a252154454fb25a8c9e48b801/alpine/Dockerfile) +- [`v2.10.0-windowsservercore-1809`, `2.10.0-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/47540fe012da03dbdce91617a7a2bc32ae112a16/windows/1809/Dockerfile) +- [`v2.10.0`, `2.10.0`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/47540fe012da03dbdce91617a7a2bc32ae112a16/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) From a928c8ed599478faff5486160f92ca2a825689c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Apr 2023 16:14:33 -0700 Subject: [PATCH 0249/2686] Run update.sh --- convertigo/README.md | 2 +- haproxy/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 710ec80593c0..a33935be4e0a 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.1.0`, `8.1`, `latest`](https://github.com/convertigo/convertigo/blob/070f8a67e61a7a9bc701ddadae0a0a0fba9470a3/docker/default/Dockerfile) +- [`8.2.0`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/a2fb2dabcd979887118458aba535ff467d7f891d/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 770a0f58e631..11e6b09b9c5b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev7`, `2.8-dev`, `2.8-dev7-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/cc787a7b72dcba589f35e0ec89daa7a36a38f608/2.8/Dockerfile) -- [`2.8-dev7-alpine`, `2.8-dev-alpine`, `2.8-dev7-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/cc787a7b72dcba589f35e0ec89daa7a36a38f608/2.8/alpine/Dockerfile) +- [`2.8-dev8`, `2.8-dev`, `2.8-dev8-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/Dockerfile) +- [`2.8-dev8-alpine`, `2.8-dev-alpine`, `2.8-dev8-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/alpine/Dockerfile) - [`2.7.6`, `2.7`, `latest`, `2.7.6-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/Dockerfile) - [`2.7.6-alpine`, `2.7-alpine`, `alpine`, `2.7.6-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/alpine/Dockerfile) - [`2.6.12`, `2.6`, `lts`, `2.6.12-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/Dockerfile) From 18c5e372b4f3954caa3ef00109417f034cadd5e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Apr 2023 17:15:38 -0700 Subject: [PATCH 0250/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index a36d79bd67d4..f2f965cf4512 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.6`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6bce1f24efb19c3a8b4120759cac58f34e8203e3/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.6-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.6-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6bce1f24efb19c3a8b4120759cac58f34e8203e3/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.6-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.12.0-beta.8`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/fb2d010b5ba1205250722d5e1febc62ee7a98d76/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-beta.8-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-beta.8-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/fb2d010b5ba1205250722d5e1febc62ee7a98d76/3.12-rc/alpine/Dockerfile) +- [`3.12.0-beta.8-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) - [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/ubuntu/Dockerfile) - [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/alpine/Dockerfile) From fcd350a604f3cc6fe385db587fe215bd74898943 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Apr 2023 15:14:57 -0700 Subject: [PATCH 0251/2686] Run update.sh --- couchdb/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index 7ba250e1bd26..89b97c39f183 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.1`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.3.1/Dockerfile) -- [`3.2.2`, `3.2`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.2.2/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/3.1.2/Dockerfile) -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/a29d12f0dd4d73f1dcefb07212af4b9ba3185d9e/2.3.1/Dockerfile) +- [`latest`, `3.3.2`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.3.2/Dockerfile) +- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.2.3/Dockerfile) +- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.1.2/Dockerfile) +- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/2.3.1/Dockerfile) # Quick reference (cont.) From dc89041cbaf85913390d9e5784006dae74501eda Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Apr 2023 12:15:52 -0700 Subject: [PATCH 0252/2686] Run update.sh --- dart/README.md | 4 +- eclipse-temurin/README.md | 296 +++++++++++++++++++------------------- ghost/README.md | 4 +- mongo/README.md | 75 ++++------ xwiki/README.md | 8 +- 5 files changed, 186 insertions(+), 201 deletions(-) diff --git a/dart/README.md b/dart/README.md index 24f3099d2e51..065e6d9ebd8f 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/a661268dc93b4647adf2496ec1ee89e471000a8d/stable/bullseye/Dockerfile) -- [`3.0.0-417.2.beta-sdk`, `beta-sdk`, `3.0.0-417.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/a661268dc93b4647adf2496ec1ee89e471000a8d/beta/bullseye/Dockerfile) +- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/279fdefd6e0b97a3809d5d7e66c9ac73eefaaa29/stable/bullseye/Dockerfile) +- [`3.0.0-417.3.beta-sdk`, `beta-sdk`, `3.0.0-417.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/279fdefd6e0b97a3809d5d7e66c9ac73eefaaa29/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 877b5aa7f408..cffe27be104c 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,157 +28,157 @@ WARNING: ## Simple Tags -- [`8u362-b09-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/alpine/Dockerfile.releases.full) -- [`8u362-b09-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u362-b09-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u362-b09-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/centos/Dockerfile.releases.full) -- [`8u362-b09-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u362-b09-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u362-b09-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u362-b09-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u362-b09-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u362-b09-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/alpine/Dockerfile.releases.full) -- [`8u362-b09-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u362-b09-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u362-b09-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/centos/Dockerfile.releases.full) -- [`8u362-b09-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u362-b09-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u362-b09-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u362-b09-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u362-b09-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.18_10-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.18_10-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.18_10-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.18_10-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.18_10-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.18_10-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.18_10-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.18_10-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.18_10-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.18_10-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.18_10-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.18_10-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.18_10-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/centos/Dockerfile.releases.full) -- [`11.0.18_10-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.18_10-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.18_10-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.18_10-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.18_10-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.6_10-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.6_10-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.6_10-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.6_10-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.6_10-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.6_10-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.6_10-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.6_10-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.6_10-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.6_10-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.6_10-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.6_10-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.6_10-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/centos/Dockerfile.releases.full) -- [`17.0.6_10-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.6_10-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.6_10-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.6_10-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.6_10-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20_36-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/alpine/Dockerfile.releases.full) -- [`20_36-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20_36-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20_36-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20_36-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20_36-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20_36-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20_36-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/alpine/Dockerfile.releases.full) -- [`20_36-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20_36-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20_36-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20_36-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20_36-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20_36-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/alpine/Dockerfile.releases.full) +- [`8u372-b07-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u372-b07-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u372-b07-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/centos/Dockerfile.releases.full) +- [`8u372-b07-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u372-b07-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u372-b07-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/alpine/Dockerfile.releases.full) +- [`8u372-b07-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u372-b07-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u372-b07-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/centos/Dockerfile.releases.full) +- [`8u372-b07-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u372-b07-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.19_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.19_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.19_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.19_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.19_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.19_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.19_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/centos/Dockerfile.releases.full) +- [`11.0.19_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.19_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.7_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.7_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.7_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.7_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.7_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.7_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.7_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/centos/Dockerfile.releases.full) +- [`17.0.7_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.7_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.1_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.1_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.1_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.1_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.1_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.1_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags -- `8u362-b09-jdk`, `8-jdk`, `8`: - - [`8u362-b09-jdk-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`8u362-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u362-b09-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u362-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u362-b09-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u362-b09-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `8u362-b09-jre`, `8-jre`: - - [`8u362-b09-jre-jammy`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`8u362-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u362-b09-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u362-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u362-b09-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u362-b09-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u362-b09-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/faa5fb7621fd9b0672b83f398d3c6ee579534015/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.18_10-jdk`, `11-jdk`, `11`: - - [`11.0.18_10-jdk-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.18_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.18_10-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.18_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.18_10-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.18_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.18_10-jre`, `11-jre`: - - [`11.0.18_10-jre-jammy`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.18_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.18_10-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.18_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.18_10-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.18_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.18_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/02264a4d3e57b92e02dc415fa4fc8aec7a4e3d62/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.6_10-jdk`, `17-jdk`, `17`: - - [`17.0.6_10-jdk-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.6_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.6_10-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.6_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.6_10-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.6_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.6_10-jre`, `17-jre`: - - [`17.0.6_10-jre-jammy`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.6_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.6_10-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.6_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.6_10-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.6_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.6_10-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/0a0eef5b0673a25403d4b0fe87e4f4e07a4297ab/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `20_36-jdk`, `20-jdk`, `20`, `latest`: - - [`20_36-jdk-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`20_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20_36-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20_36-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `20_36-jre`, `20-jre`: - - [`20_36-jre-jammy`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`20_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20_36-jre-windowsservercore`, `20-jre-windowsservercore`: - - [`20_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20_36-jre-nanoserver`, `20-jre-nanoserver`: - - [`20_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/8ea9a9bfe1c1cf1ddd791f5af9ceb123118bd5bc/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u372-b07-jdk`, `8-jdk`, `8`: + - [`8u372-b07-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u372-b07-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u372-b07-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u372-b07-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u372-b07-jre`, `8-jre`: + - [`8u372-b07-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u372-b07-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u372-b07-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u372-b07-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.19_7-jdk`, `11-jdk`, `11`: + - [`11.0.19_7-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.19_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.19_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.19_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.19_7-jre`, `11-jre`: + - [`11.0.19_7-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.19_7-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.19_7-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.19_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.7_7-jdk`, `17-jdk`, `17`: + - [`17.0.7_7-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.7_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.7_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.7_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.7_7-jre`, `17-jre`: + - [`17.0.7_7-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.7_7-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.7_7-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.7_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `20.0.1_9-jdk`, `20-jdk`, `20`, `latest`: + - [`20.0.1_9-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.1_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.1_9-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `20.0.1_9-jre`, `20-jre`: + - [`20.0.1_9-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.1_9-jre-windowsservercore`, `20-jre-windowsservercore`: + - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.1_9-jre-nanoserver`, `20-jre-nanoserver`: + - [`20.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ad7cc035ffa4..2cccaeec8a32 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.44.0`, `5.44`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6e83cb72dae16fb60b4cb13117e800ee13995980/5/debian/Dockerfile) -- [`5.44.0-alpine`, `5.44-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6e83cb72dae16fb60b4cb13117e800ee13995980/5/alpine/Dockerfile) +- [`5.45.1`, `5.45`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7c334543e5b1b41dbd5b483cb4a7d877b8109bef/5/debian/Dockerfile) +- [`5.45.1-alpine`, `5.45-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7c334543e5b1b41dbd5b483cb4a7d877b8109bef/5/alpine/Dockerfile) - [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 85a4a21fd15f..4ac35896071a 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,21 +33,16 @@ WARNING: - [`6.0.5-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.5-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.16-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/Dockerfile) -- [`5.0.16-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.16-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.16-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.16-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.21-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/Dockerfile) -- [`4.4.21-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.21-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.21-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.21-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.20-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) -- [`4.4.20-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.20-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.20-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.20-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-1809/Dockerfile) +- [`5.0.17-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/Dockerfile) +- [`5.0.17-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.17-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.17-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.17-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.21-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/Dockerfile) +- [`4.4.21-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.21-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.21-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.21-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) - [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) @@ -66,36 +61,26 @@ WARNING: - `6.0.5-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - [`6.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.16`, `5.0`, `5`: - - [`5.0.16-focal`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/Dockerfile) - - [`5.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.16-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.16-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e185946b2fd6dc79dbc138bebdfd36bc6892d60c/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.21-rc0`, `4.4-rc`: - - [`4.4.21-rc0-focal`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/Dockerfile) - - [`4.4.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.21-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.21-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/246490c5650076fd02b83ab886952263a08a8a4f/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.20`, `4.4`, `4`: - - [`4.4.20-focal`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/Dockerfile) - - [`4.4.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.20-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.20-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b01fa78d7f9a0f9db0abfb353ac71f77fde612c5/4.4/windows/nanoserver-1809/Dockerfile) +- `5.0.17`, `5.0`, `5`: + - [`5.0.17-focal`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/Dockerfile) + - [`5.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.17-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.17-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.21`, `4.4`, `4`: + - [`4.4.21-focal`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/Dockerfile) + - [`4.4.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.21-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.21-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) - `4.2.24`, `4.2`: - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index ad4e5fc16f45..46dfb49652f6 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -26,10 +26,10 @@ WARNING: - [`15`, `15.3`, `15.3.0`, `15-mysql-tomcat`, `15.3-mysql-tomcat`, `15.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.3-postgres-tomcat`, `15.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/739ce67261391a70b55cf2164bce8cd4d3ccfbc6/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.8`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/8e78e120e1f3513322a34d0f8d25962fa23081f9/14/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.9`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 7eddcb5a96dc6eb62f2fb0c55ce02112c861cba4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Apr 2023 14:08:49 -0700 Subject: [PATCH 0253/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- rabbitmq/README.md | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index 85f65645eceb..97b8025dde55 100644 --- a/docker/README.md +++ b/docker/README.md @@ -31,15 +31,15 @@ WARNING: - [`24.0.0-beta.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/cli/Dockerfile) - [`24.0.0-beta.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.2-dind-alpine3.17`, `24.0.0-beta.2`, `24-rc`, `rc`, `24.0.0-beta.2-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind/Dockerfile) - [`24.0.0-beta.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/43c75565e6fa4dcf3abadc51cb1c7c044aae1ef2/24-rc/git/Dockerfile) +- [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) - [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.4-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.4-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/cli/Dockerfile) -- [`23.0.4-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.4-dind-alpine3.17`, `23.0.4`, `23.0`, `23`, `latest`, `23.0.4-alpine3.17`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind/Dockerfile) -- [`23.0.4-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/eecbbc8f7b16d13acb17e350df03f435763c3caa/23.0/dind-rootless/Dockerfile) -- [`23.0.4-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/849b56e6c81dc509da780121352f844e8f26bb7a/23.0/git/Dockerfile) -- [`23.0.4-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.4-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-1809/Dockerfile) +- [`23.0.5-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.5-cli-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/cli/Dockerfile) +- [`23.0.5-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.5-dind-alpine3.17`, `23.0.5`, `23.0`, `23`, `latest`, `23.0.5-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind/Dockerfile) +- [`23.0.5-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind-rootless/Dockerfile) +- [`23.0.5-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) +- [`23.0.5-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.5-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/cli/Dockerfile) - [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) - [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) @@ -52,9 +52,9 @@ WARNING: - `24.0.0-beta.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) -- `23.0.4-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3c553b828db84d13fc1b06eaa1d86bd7e7eb060d/23.0/windows/windowsservercore-1809/Dockerfile) +- `23.0.5-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f2f965cf4512..3025f9261d65 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-beta.8`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/fb2d010b5ba1205250722d5e1febc62ee7a98d76/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-beta.8-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-beta.8-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/fb2d010b5ba1205250722d5e1febc62ee7a98d76/3.12-rc/alpine/Dockerfile) -- [`3.12.0-beta.8-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/33dceee162bbbfc0d145694c5d8d4f40c192be0d/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/33dceee162bbbfc0d145694c5d8d4f40c192be0d/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) - [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/ubuntu/Dockerfile) - [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/alpine/Dockerfile) From b1ed3c135774843991411c33fc5ac0ea3d7ac725 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Apr 2023 18:14:22 -0700 Subject: [PATCH 0254/2686] Run update.sh --- gcc/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index b8f42b3dc8ce..2f72c3d35fae 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,10 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`12.2.0`, `12.2`, `12`, `latest`, `12.2.0-bullseye`, `12.2-bullseye`, `12-bullseye`, `bullseye`](https://github.com/docker-library/gcc/blob/523e01b2ccf43f1fd702aa9fdc2f71c827b76525/12/Dockerfile) +- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/13/Dockerfile) +- [`12.2.0`, `12.2`, `12`, `12.2.0-bullseye`, `12.2-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/523e01b2ccf43f1fd702aa9fdc2f71c827b76525/12/Dockerfile) - [`11.3.0`, `11.3`, `11`, `11.3.0-bullseye`, `11.3-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/a5a94a2d5c812fe57f6f28713b0f899b879145d3/11/Dockerfile) -- [`10.4.0`, `10.4`, `10`, `10.4.0-buster`, `10.4-buster`, `10-buster`](https://github.com/docker-library/gcc/blob/1e3174f36d64a3ce1373a7004a7f0d4f98de307b/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-buster`, `9.5-buster`, `9-buster`](https://github.com/docker-library/gcc/blob/6c40a41a202b2996b26b52e94762fe9aa8830766/9/Dockerfile) +- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/10/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/9/Dockerfile) # Quick reference (cont.) From 6a43ad1e282c35f3714ca451bd971e9d4e1579c3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Apr 2023 11:14:56 -0700 Subject: [PATCH 0255/2686] Run update.sh --- emqx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index 757048c7cbb9..042d81f70fea 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.17`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/95eb1259e59178c6b641d2379318c77c3beb84e8/4.4/Dockerfile) -- [`5.0.23`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/95eb1259e59178c6b641d2379318c77c3beb84e8/5.0/Dockerfile) +- [`5.0.24`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/7585bcd6f772834c6bdd4a94be9ee4e71c9d4772/5.0/Dockerfile) # Quick reference (cont.) From bbf65efbe2f8dd520088f524eaeb3ca298615907 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Apr 2023 12:15:22 -0700 Subject: [PATCH 0256/2686] Run update.sh --- friendica/README.md | 6 +++--- traefik/README.md | 4 ++-- vault/README.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index 35c9bbfb91f7..e493f74690a9 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/apache/Dockerfile) -- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/fpm/Dockerfile) -- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.04/fpm-alpine/Dockerfile) +- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/apache/Dockerfile) +- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/fpm/Dockerfile) +- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/fpm-alpine/Dockerfile) - [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/apache/Dockerfile) - [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm/Dockerfile) - [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm-alpine/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 117b36305cd4..1a40d0b3f0b6 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.10.0-windowsservercore-1809`, `2.10.0-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/47540fe012da03dbdce91617a7a2bc32ae112a16/windows/1809/Dockerfile) -- [`v2.10.0`, `2.10.0`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/47540fe012da03dbdce91617a7a2bc32ae112a16/alpine/Dockerfile) +- [`v2.10.1-windowsservercore-1809`, `2.10.1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/windows/1809/Dockerfile) +- [`v2.10.1`, `2.10.1`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/alpine/Dockerfile) - [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) - [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) - [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) diff --git a/vault/README.md b/vault/README.md index a825180762c0..792e7bb6d98d 100644 --- a/vault/README.md +++ b/vault/README.md @@ -28,9 +28,9 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Supported tags and respective `Dockerfile` links -- [`1.13.1`, `latest`](https://github.com/hashicorp/docker-vault/blob/4743e7c2efe289f85528d72a6ca13e8223309008/0.X/Dockerfile) -- [`1.12.5`](https://github.com/hashicorp/docker-vault/blob/1c807197a9189143998d727ba68a849a9e58b7de/0.X/Dockerfile) -- [`1.11.9`](https://github.com/hashicorp/docker-vault/blob/9b1e7e85fe2b10bef43cb51f2811f94cbcca0985/0.X/Dockerfile) +- [`1.13.2`, `latest`](https://github.com/hashicorp/docker-vault/blob/92e6cded15b716b1e92a7b36eefbe9a5d9967e55/0.X/Dockerfile) +- [`1.12.6`](https://github.com/hashicorp/docker-vault/blob/cdbd2879fc547518ed4a0f5a04d98cbc8b38aa03/0.X/Dockerfile) +- [`1.11.10`](https://github.com/hashicorp/docker-vault/blob/4d89358cb1a1b1c779a4b22a1b85d3702ff01c44/0.X/Dockerfile) - [`1.10.11`](https://github.com/hashicorp/docker-vault/blob/dd29a490ec67705d58da784656b65a4947c53e4f/0.X/Dockerfile) # Quick reference (cont.) From 3e2386e2809979572c75ceb72b883f8d451605a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Apr 2023 14:16:57 -0700 Subject: [PATCH 0257/2686] Run update.sh --- erlang/README.md | 6 +++--- haproxy/README.md | 4 ++-- rabbitmq/README.md | 16 ++++++++-------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 655f2c868130..24a936c25127 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,9 +27,9 @@ WARNING: - [`26.0-rc3.0.0`, `26.0-rc3.0`, `26.0-rc3`, `26`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/Dockerfile) - [`26.0-rc3.0.0-slim`, `26.0-rc3.0-slim`, `26.0-rc3-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/slim/Dockerfile) - [`26.0-rc3.0.0-alpine`, `26.0-rc3.0-alpine`, `26.0-rc3-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/alpine/Dockerfile) -- [`25.3.0.0`, `25.3.0`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/Dockerfile) -- [`25.3.0.0-slim`, `25.3.0-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/slim/Dockerfile) -- [`25.3.0.0-alpine`, `25.3.0-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed03f7c5b0eb26ea41bacb7f127c1d3ceb7bbe1f/25/alpine/Dockerfile) +- [`25.3.1.0`, `25.3.1`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/Dockerfile) +- [`25.3.1.0-slim`, `25.3.1-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/slim/Dockerfile) +- [`25.3.1.0-alpine`, `25.3.1-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/alpine/Dockerfile) - [`24.3.4.11`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/Dockerfile) - [`24.3.4.11-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/slim/Dockerfile) - [`24.3.4.11-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 11e6b09b9c5b..77cc3e2fe444 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`2.8-dev8`, `2.8-dev`, `2.8-dev8-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/Dockerfile) - [`2.8-dev8-alpine`, `2.8-dev-alpine`, `2.8-dev8-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/alpine/Dockerfile) -- [`2.7.6`, `2.7`, `latest`, `2.7.6-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/Dockerfile) -- [`2.7.6-alpine`, `2.7-alpine`, `alpine`, `2.7.6-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/3e8ddb695fb46f902afea21ce0de1d481c1c71ab/2.7/alpine/Dockerfile) +- [`2.7.7`, `2.7`, `latest`, `2.7.7-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/5eb1e943ec682afdd6591e474bba6045c246bba5/2.7/Dockerfile) +- [`2.7.7-alpine`, `2.7-alpine`, `alpine`, `2.7.7-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/5eb1e943ec682afdd6591e474bba6045c246bba5/2.7/alpine/Dockerfile) - [`2.6.12`, `2.6`, `lts`, `2.6.12-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/Dockerfile) - [`2.6.12-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.12-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/alpine/Dockerfile) - [`2.5.13`, `2.5`, `2.5.13-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 3025f9261d65..44299509d39f 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/33dceee162bbbfc0d145694c5d8d4f40c192be0d/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/ubuntu/Dockerfile) - [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/33dceee162bbbfc0d145694c5d8d4f40c192be0d/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/alpine/Dockerfile) - [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/ubuntu/Dockerfile) +- [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/acf81d56afb65945351ada4056a7a6cc6b7afcdc/3.11/ubuntu/Dockerfile) - [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/95fd3ddf1cb478304d6147e4fe30d56a9b0b3726/3.11/alpine/Dockerfile) +- [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/acf81d56afb65945351ada4056a7a6cc6b7afcdc/3.11/alpine/Dockerfile) - [`3.11.13-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/Dockerfile) +- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/ubuntu/Dockerfile) - [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/Dockerfile) +- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/alpine/Dockerfile) - [`3.10.20-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From b9ec09d36446674a4a10ca1c298dd62dab27efb3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Apr 2023 17:16:19 -0700 Subject: [PATCH 0258/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 44299509d39f..610df1dd7e31 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) - [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/alpine/Dockerfile) - [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.13`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/acf81d56afb65945351ada4056a7a6cc6b7afcdc/3.11/ubuntu/Dockerfile) -- [`3.11.13-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.13-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/acf81d56afb65945351ada4056a7a6cc6b7afcdc/3.11/alpine/Dockerfile) -- [`3.11.13-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.11.14`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/3ea9ce9d8236ae6b6c8a8a592d8eee16bd11589d/3.11/ubuntu/Dockerfile) +- [`3.11.14-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.14-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3ea9ce9d8236ae6b6c8a8a592d8eee16bd11589d/3.11/alpine/Dockerfile) +- [`3.11.14-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/ubuntu/Dockerfile) - [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/alpine/Dockerfile) From ed6a394f84a4fa66bb2562917a2acc8d971e9120 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Apr 2023 11:14:46 -0700 Subject: [PATCH 0259/2686] Run update.sh --- emqx/README.md | 2 +- sonarqube/README.md | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 042d81f70fea..1279f6291d90 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.17`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/95eb1259e59178c6b641d2379318c77c3beb84e8/4.4/Dockerfile) +- [`4.4.18`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/129bff4ea692ede8157aa3165a8c278bf982f47d/4.4/Dockerfile) - [`5.0.24`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/7585bcd6f772834c6bdd4a94be9ee4e71c9d4772/5.0/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 17eca0c0f789..5c292e52d9c4 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.0-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/community/Dockerfile) -- [`9.9.0-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/developer/Dockerfile) -- [`9.9.0-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/enterprise/Dockerfile) -- [`9.9.0-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/datacenter/app/Dockerfile) -- [`9.9.0-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/9/datacenter/search/Dockerfile) -- [`10.0.0-community`, `10.0-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/community/Dockerfile) -- [`10.0.0-developer`, `10.0-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/developer/Dockerfile) -- [`10.0.0-enterprise`, `10.0-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/enterprise/Dockerfile) -- [`10.0.0-datacenter-app`, `10.0-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/datacenter/app/Dockerfile) -- [`10.0.0-datacenter-search`, `10.0-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/711096a093a224d37da8901d5fdb350adf455daa/10/datacenter/search/Dockerfile) +- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/community/Dockerfile) +- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/developer/Dockerfile) +- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/enterprise/Dockerfile) +- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/datacenter/app/Dockerfile) +- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/datacenter/search/Dockerfile) +- [`10.0.0-community`, `10.0-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/community/Dockerfile) +- [`10.0.0-developer`, `10.0-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/developer/Dockerfile) +- [`10.0.0-enterprise`, `10.0-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/enterprise/Dockerfile) +- [`10.0.0-datacenter-app`, `10.0-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/datacenter/app/Dockerfile) +- [`10.0.0-datacenter-search`, `10.0-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/datacenter/search/Dockerfile) # Quick reference (cont.) From c17921173995c838d388bc4901553474c838824c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Apr 2023 12:14:14 -0700 Subject: [PATCH 0260/2686] Run update.sh --- elixir/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/elixir/README.md b/elixir/README.md index 318e8c45aae4..3b919b05a5d9 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -33,6 +33,7 @@ WARNING: - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) +- [`1.13.4-otp-23-slim`, `1.13-otp-23-slim`](https://github.com/erlef/docker-elixir/blob/2bc3fd2b7218d6958c766c42b86e259949b56b95/1.13/otp-23-slim/Dockerfile) - [`1.13.4-otp-25`, `1.13-otp-25`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25/Dockerfile) - [`1.13.4-otp-25-alpine`, `1.13-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-alpine/Dockerfile) - [`1.13.4-otp-25-slim`, `1.13-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-slim/Dockerfile) From e794c7c71174d99b0bf15e52bbe1ce201ada2957 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Apr 2023 14:16:10 -0700 Subject: [PATCH 0261/2686] Run update.sh --- influxdb/README.md | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 2ad0e5e15ddd..1242439c2694 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,26 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.5`, `2.5.1`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.5/Dockerfile) -- [`2.5-alpine`, `2.5.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.5/alpine/Dockerfile) -- [`2.6`, `2.6.1`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.6/Dockerfile) -- [`2.6-alpine`, `2.6.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.6/alpine/Dockerfile) -- [`2.7`, `2.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/796b85d91575a711eed49445543fd8dfdc582415/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/meta/alpine/Dockerfile) +- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From 95a5c720cc40370d1868c50210b38e406ee7646e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Apr 2023 16:08:42 -0700 Subject: [PATCH 0262/2686] Run update.sh --- docker/README.md | 18 +++++++++--------- kapacitor/README.md | 8 ++++---- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 28 ++++++++++++++++++++++++++++ rabbitmq/README.md | 8 ++++---- 5 files changed, 63 insertions(+), 35 deletions(-) diff --git a/docker/README.md b/docker/README.md index 97b8025dde55..b1c6bcaf365d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.0-beta.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-beta.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/cli/Dockerfile) -- [`24.0.0-beta.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-beta.2-dind-alpine3.17`, `24.0.0-beta.2`, `24-rc`, `rc`, `24.0.0-beta.2-alpine3.17`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind/Dockerfile) -- [`24.0.0-beta.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/14430eaf8c84f5ea481b8e481f6222b85709a497/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-beta.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) -- [`24.0.0-beta.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-beta.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-rc.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/cli/Dockerfile) +- [`24.0.0-rc.1-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.1-dind-alpine3.17`, `24.0.0-rc.1`, `24-rc`, `rc`, `24.0.0-rc.1-alpine3.17`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/dind/Dockerfile) +- [`24.0.0-rc.1-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-rc.1-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) +- [`24.0.0-rc.1-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-rc.1-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.5-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.5-cli-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/cli/Dockerfile) - [`23.0.5-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.5-dind-alpine3.17`, `23.0.5`, `23.0`, `23`, `latest`, `23.0.5-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind/Dockerfile) - [`23.0.5-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind-rootless/Dockerfile) @@ -49,9 +49,9 @@ WARNING: ## Shared Tags -- `24.0.0-beta.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c93aa758850cc2dd621276187291aaac4eee9cf2/24-rc/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-rc.1-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.5-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-1809/Dockerfile) diff --git a/kapacitor/README.md b/kapacitor/README.md index 4ca05ec6a851..c04d369ae8a2 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.5`, `1.5.9`](https://github.com/influxdata/influxdata-docker/blob/410d53519af0edd30a985eacc3bb060258a2705d/kapacitor/1.5/Dockerfile) -- [`1.5-alpine`, `1.5.9-alpine`](https://github.com/influxdata/influxdata-docker/blob/410d53519af0edd30a985eacc3bb060258a2705d/kapacitor/1.5/alpine/Dockerfile) -- [`1.6`, `1.6.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/410d53519af0edd30a985eacc3bb060258a2705d/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/410d53519af0edd30a985eacc3bb060258a2705d/kapacitor/1.6/alpine/Dockerfile) +- [`1.5`, `1.5.9`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.5/Dockerfile) +- [`1.5-alpine`, `1.5.9-alpine`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.5/alpine/Dockerfile) +- [`1.6`, `1.6.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 92e88dedaac0..129dce04c41b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-19-jdk-oraclelinux8`, `21-ea-19-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-19-jdk-oracle`, `21-ea-19-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-19-jdk-oraclelinux7`, `21-ea-19-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-19-jdk-bullseye`, `21-ea-19-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/bullseye/Dockerfile) -- [`21-ea-19-jdk-slim-bullseye`, `21-ea-19-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-19-jdk-slim`, `21-ea-19-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-19-jdk-buster`, `21-ea-19-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/buster/Dockerfile) -- [`21-ea-19-jdk-slim-buster`, `21-ea-19-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/slim-buster/Dockerfile) -- [`21-ea-19-jdk-windowsservercore-ltsc2022`, `21-ea-19-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-19-jdk-windowsservercore-1809`, `21-ea-19-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-19-jdk-nanoserver-1809`, `21-ea-19-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-20-jdk-oraclelinux8`, `21-ea-20-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-20-jdk-oracle`, `21-ea-20-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-20-jdk-oraclelinux7`, `21-ea-20-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-20-jdk-bullseye`, `21-ea-20-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/bullseye/Dockerfile) +- [`21-ea-20-jdk-slim-bullseye`, `21-ea-20-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-20-jdk-slim`, `21-ea-20-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-20-jdk-buster`, `21-ea-20-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/buster/Dockerfile) +- [`21-ea-20-jdk-slim-buster`, `21-ea-20-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/slim-buster/Dockerfile) +- [`21-ea-20-jdk-windowsservercore-ltsc2022`, `21-ea-20-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-20-jdk-windowsservercore-1809`, `21-ea-20-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-20-jdk-nanoserver-1809`, `21-ea-20-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-19-jdk`, `21-ea-19`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-19-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-19-jdk-windowsservercore`, `21-ea-19-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-19-jdk-nanoserver`, `21-ea-19-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14374ed5a492d8c702e7a48cb51be3fabedec4e6/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-20-jdk`, `21-ea-20`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-20-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-20-jdk-windowsservercore`, `21-ea-20-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-20-jdk-nanoserver`, `21-ea-20-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 80ef7e397cfb..a6ad2ce55ce8 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2.6RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.6RC1-bullseye`, `8.2-rc-bullseye`, `8.2.6RC1-cli`, `8.2-rc-cli`, `8.2.6RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.6RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.6RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.6RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.6RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.6RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.6RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.6RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.6RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/cli/Dockerfile) +- [`8.2.6RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/apache/Dockerfile) +- [`8.2.6RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.6RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/zts/Dockerfile) +- [`8.2.6RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.6RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.6RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.6RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.6RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.6RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.6RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.6RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/zts/Dockerfile) +- [`8.2.6RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.6RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/cli/Dockerfile) +- [`8.2.6RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/fpm/Dockerfile) +- [`8.2.6RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/zts/Dockerfile) - [`8.2.5-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.5-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.5-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.5`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/cli/Dockerfile) - [`8.2.5-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.5-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/apache/Dockerfile) - [`8.2.5-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.5-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.2.5-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.5-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/cli/Dockerfile) - [`8.2.5-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.5-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/zts/Dockerfile) +- [`8.1.19RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.19RC1-bullseye`, `8.1-rc-bullseye`, `8.1.19RC1-cli`, `8.1-rc-cli`, `8.1.19RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.19RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.19RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.19RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.19RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.19RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.19RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.19RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.19RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/cli/Dockerfile) +- [`8.1.19RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/apache/Dockerfile) +- [`8.1.19RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.19RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/zts/Dockerfile) +- [`8.1.19RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.19RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.19RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.19RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.19RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.19RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.19RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.19RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.19RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.19RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.19RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.19RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/cli/Dockerfile) - [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/apache/Dockerfile) - [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 610df1dd7e31..fc380de66d0e 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,10 +32,10 @@ WARNING: - [`3.11.14-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.14-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3ea9ce9d8236ae6b6c8a8a592d8eee16bd11589d/3.11/alpine/Dockerfile) - [`3.11.14-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.20`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/ubuntu/Dockerfile) -- [`3.10.20-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.20-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e83ba26490c576005582578379678ecbbe6913fb/3.10/alpine/Dockerfile) -- [`3.10.20-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.10.21`, `3.10`](https://github.com/docker-library/rabbitmq/blob/f87b6cbcbe25573ea37f58d2449af3bfcedfa122/3.10/ubuntu/Dockerfile) +- [`3.10.21-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.21-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/f87b6cbcbe25573ea37f58d2449af3bfcedfa122/3.10/alpine/Dockerfile) +- [`3.10.21-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) - [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/alpine/Dockerfile) From b332fd479db91e213465db9e3253c314d6d8e73e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 May 2023 11:17:53 -0700 Subject: [PATCH 0263/2686] Run update.sh --- backdrop/README.md | 4 +- ghost/README.md | 6 +-- haproxy/README.md | 16 +++--- swipl/README.md | 4 +- tomee/README.md | 126 ++++++++++++++++++++++----------------------- 5 files changed, 78 insertions(+), 78 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index a7b1892d8b0d..427033bfd622 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23.1`, `1.23`, `1`, `1.23.1-apache`, `1.23-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/8012e0b47794605356eddc14dc56b1eda4b36f0c/1/apache/Dockerfile) -- [`1.23.1-fpm`, `1.23-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/8012e0b47794605356eddc14dc56b1eda4b36f0c/1/fpm/Dockerfile) +- [`1.24.2`, `1.24`, `1`, `1.24.2-apache`, `1.24-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/c6dc310e67b2b9d8778c8ed36aa38adfb90ebd9a/1/apache/Dockerfile) +- [`1.24.2-fpm`, `1.24-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/c6dc310e67b2b9d8778c8ed36aa38adfb90ebd9a/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 2cccaeec8a32..169d897966f1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.45.1`, `5.45`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7c334543e5b1b41dbd5b483cb4a7d877b8109bef/5/debian/Dockerfile) -- [`5.45.1-alpine`, `5.45-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7c334543e5b1b41dbd5b483cb4a7d877b8109bef/5/alpine/Dockerfile) -- [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/5d81b0f9a574635a681252cb400281a909a37c81/4/debian/Dockerfile) +- [`5.46.0`, `5.46`, `5`, `latest`](https://github.com/docker-library/ghost/blob/52120baced943e80fe124547915d1a3b74f0a59e/5/debian/Dockerfile) +- [`5.46.0-alpine`, `5.46-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/05cab36b13139f3a51195342e4b12240dc782feb/5/alpine/Dockerfile) +- [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/52120baced943e80fe124547915d1a3b74f0a59e/4/debian/Dockerfile) - [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 77cc3e2fe444..375fc232aa72 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev8`, `2.8-dev`, `2.8-dev8-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/Dockerfile) -- [`2.8-dev8-alpine`, `2.8-dev-alpine`, `2.8-dev8-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/65d44dfa2cbf47591cebd41db32d377280d91392/2.8/alpine/Dockerfile) -- [`2.7.7`, `2.7`, `latest`, `2.7.7-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/5eb1e943ec682afdd6591e474bba6045c246bba5/2.7/Dockerfile) -- [`2.7.7-alpine`, `2.7-alpine`, `alpine`, `2.7.7-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/5eb1e943ec682afdd6591e474bba6045c246bba5/2.7/alpine/Dockerfile) -- [`2.6.12`, `2.6`, `lts`, `2.6.12-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/Dockerfile) -- [`2.6.12-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.12-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/791843a38289bd3b5238715cbe6ed993214b2d73/2.6/alpine/Dockerfile) -- [`2.5.13`, `2.5`, `2.5.13-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/Dockerfile) -- [`2.5.13-alpine`, `2.5-alpine`, `2.5.13-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/8bb4f9f4a41b5c3531a6cb4a070c25be7a254ccd/2.5/alpine/Dockerfile) +- [`2.8-dev9`, `2.8-dev`, `2.8-dev9-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/21adfa0af8cd7da14cd85ce0e03aa75b3912dfbf/2.8/Dockerfile) +- [`2.8-dev9-alpine`, `2.8-dev-alpine`, `2.8-dev9-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/21adfa0af8cd7da14cd85ce0e03aa75b3912dfbf/2.8/alpine/Dockerfile) +- [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) +- [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) +- [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) +- [`2.6.13-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.13-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/alpine/Dockerfile) +- [`2.5.14`, `2.5`, `2.5.14-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/a90674f66bb5f9a61a42abfb38d3bebfa879af3f/2.5/Dockerfile) +- [`2.5.14-alpine`, `2.5-alpine`, `2.5.14-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/a90674f66bb5f9a61a42abfb38d3bebfa879af3f/2.5/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) - [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 2271a8413130..d29fb1cd8c23 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.8`](https://github.com/SWI-Prolog/docker-swipl/blob/6b9f59764967f0b615220c939aedc9eec22cce23/9.1.8/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/6b9f59764967f0b615220c939aedc9eec22cce23/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.9`](https://github.com/SWI-Prolog/docker-swipl/blob/61526b09a94f046988e74f9162d898fc7203d1f4/9.1.9/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/61526b09a94f046988e74f9162d898fc7203d1f4/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 839642b8343c..4a532582021d 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-webprofile`, `8.0.14-Temurin-ubuntu-webprofile`, `8.0.14-jre17-ubuntu-webprofile`, `8.0.14-ubuntu-webprofile`, `8.0.14-jre17-Temurin-webprofile`, `8.0.14-Temurin-webprofile`, `8.0.14-jre17-webprofile`, `8.0.14-webprofile`, `8.0.14-jre17-Temurin-ubuntu`, `8.0.14-Temurin-ubuntu`, `8.0.14-jre17-ubuntu`, `8.0.14-ubuntu`, `8.0.14-jre17-Temurin`, `8.0.14-Temurin`, `8.0.14-jre17`, `8.0.14`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-microprofile`, `8.0.14-Temurin-ubuntu-microprofile`, `8.0.14-jre17-ubuntu-microprofile`, `8.0.14-ubuntu-microprofile`, `8.0.14-jre17-Temurin-microprofile`, `8.0.14-Temurin-microprofile`, `8.0.14-jre17-microprofile`, `8.0.14-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-plume`, `8.0.14-Temurin-ubuntu-plume`, `8.0.14-jre17-ubuntu-plume`, `8.0.14-ubuntu-plume`, `8.0.14-jre17-Temurin-plume`, `8.0.14-Temurin-plume`, `8.0.14-jre17-plume`, `8.0.14-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-plus`, `8.0.14-Temurin-ubuntu-plus`, `8.0.14-jre17-ubuntu-plus`, `8.0.14-ubuntu-plus`, `8.0.14-jre17-Temurin-plus`, `8.0.14-Temurin-plus`, `8.0.14-jre17-plus`, `8.0.14-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-webprofile`, `8.0.14-Temurin-alpine-webprofile`, `8.0.14-jre17-alpine-webprofile`, `8.0.14-alpine-webprofile`, `8.0.14-jre17-Temurin-alpine`, `8.0.14-Temurin-alpine`, `8.0.14-jre17-alpine`, `8.0.14-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-microprofile`, `8.0.14-Temurin-alpine-microprofile`, `8.0.14-jre17-alpine-microprofile`, `8.0.14-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-plume`, `8.0.14-Temurin-alpine-plume`, `8.0.14-jre17-alpine-plume`, `8.0.14-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-plus`, `8.0.14-Temurin-alpine-plus`, `8.0.14-jre17-alpine-plus`, `8.0.14-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-webprofile`, `8.0.14-jre11-ubuntu-webprofile`, `8.0.14-jre11-Temurin-webprofile`, `8.0.14-jre11-webprofile`, `8.0.14-jre11-Temurin-ubuntu`, `8.0.14-jre11-ubuntu`, `8.0.14-jre11-Temurin`, `8.0.14-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-microprofile`, `8.0.14-jre11-ubuntu-microprofile`, `8.0.14-jre11-Temurin-microprofile`, `8.0.14-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-plume`, `8.0.14-jre11-ubuntu-plume`, `8.0.14-jre11-Temurin-plume`, `8.0.14-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-plus`, `8.0.14-jre11-ubuntu-plus`, `8.0.14-jre11-Temurin-plus`, `8.0.14-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-webprofile`, `8.0.14-jre11-alpine-webprofile`, `8.0.14-jre11-Temurin-alpine`, `8.0.14-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-microprofile`, `8.0.14-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-plume`, `8.0.14-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-plus`, `8.0.14-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-webprofile`, `8.0.14-jre8-ubuntu-webprofile`, `8.0.14-jre8-Temurin-webprofile`, `8.0.14-jre8-webprofile`, `8.0.14-jre8-Temurin-ubuntu`, `8.0.14-jre8-ubuntu`, `8.0.14-jre8-Temurin`, `8.0.14-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-microprofile`, `8.0.14-jre8-ubuntu-microprofile`, `8.0.14-jre8-Temurin-microprofile`, `8.0.14-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-plume`, `8.0.14-jre8-ubuntu-plume`, `8.0.14-jre8-Temurin-plume`, `8.0.14-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-plus`, `8.0.14-jre8-ubuntu-plus`, `8.0.14-jre8-Temurin-plus`, `8.0.14-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-webprofile`, `8.0.14-jre8-alpine-webprofile`, `8.0.14-jre8-Temurin-alpine`, `8.0.14-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-microprofile`, `8.0.14-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-plume`, `8.0.14-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-plus`, `8.0.14-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-webprofile`, `8.0.14-Semeru-ubuntu-webprofile`, `8.0.14-jre17-Semeru-webprofile`, `8.0.14-Semeru-webprofile`, `8.0.14-jre17-Semeru-ubuntu`, `8.0.14-Semeru-ubuntu`, `8.0.14-jre17-Semeru`, `8.0.14-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-microprofile`, `8.0.14-Semeru-ubuntu-microprofile`, `8.0.14-jre17-Semeru-microprofile`, `8.0.14-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-plume`, `8.0.14-Semeru-ubuntu-plume`, `8.0.14-jre17-Semeru-plume`, `8.0.14-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-plus`, `8.0.14-Semeru-ubuntu-plus`, `8.0.14-jre17-Semeru-plus`, `8.0.14-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-webprofile`, `8.0.14-jre11-Semeru-webprofile`, `8.0.14-jre11-Semeru-ubuntu`, `8.0.14-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-microprofile`, `8.0.14-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-plume`, `8.0.14-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-plus`, `8.0.14-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/14d51e67fad7eb358b39fcc09fa9cd0e7e205968/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-webprofile`, `8.0.14-Temurin-ubuntu-webprofile`, `8.0.14-jre17-ubuntu-webprofile`, `8.0.14-ubuntu-webprofile`, `8.0.14-jre17-Temurin-webprofile`, `8.0.14-Temurin-webprofile`, `8.0.14-jre17-webprofile`, `8.0.14-webprofile`, `8.0.14-jre17-Temurin-ubuntu`, `8.0.14-Temurin-ubuntu`, `8.0.14-jre17-ubuntu`, `8.0.14-ubuntu`, `8.0.14-jre17-Temurin`, `8.0.14-Temurin`, `8.0.14-jre17`, `8.0.14`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-microprofile`, `8.0.14-Temurin-ubuntu-microprofile`, `8.0.14-jre17-ubuntu-microprofile`, `8.0.14-ubuntu-microprofile`, `8.0.14-jre17-Temurin-microprofile`, `8.0.14-Temurin-microprofile`, `8.0.14-jre17-microprofile`, `8.0.14-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-plume`, `8.0.14-Temurin-ubuntu-plume`, `8.0.14-jre17-ubuntu-plume`, `8.0.14-ubuntu-plume`, `8.0.14-jre17-Temurin-plume`, `8.0.14-Temurin-plume`, `8.0.14-jre17-plume`, `8.0.14-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre17-Temurin-ubuntu-plus`, `8.0.14-Temurin-ubuntu-plus`, `8.0.14-jre17-ubuntu-plus`, `8.0.14-ubuntu-plus`, `8.0.14-jre17-Temurin-plus`, `8.0.14-Temurin-plus`, `8.0.14-jre17-plus`, `8.0.14-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-webprofile`, `8.0.14-Temurin-alpine-webprofile`, `8.0.14-jre17-alpine-webprofile`, `8.0.14-alpine-webprofile`, `8.0.14-jre17-Temurin-alpine`, `8.0.14-Temurin-alpine`, `8.0.14-jre17-alpine`, `8.0.14-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-microprofile`, `8.0.14-Temurin-alpine-microprofile`, `8.0.14-jre17-alpine-microprofile`, `8.0.14-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-plume`, `8.0.14-Temurin-alpine-plume`, `8.0.14-jre17-alpine-plume`, `8.0.14-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre17-Temurin-alpine-plus`, `8.0.14-Temurin-alpine-plus`, `8.0.14-jre17-alpine-plus`, `8.0.14-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-webprofile`, `8.0.14-jre11-ubuntu-webprofile`, `8.0.14-jre11-Temurin-webprofile`, `8.0.14-jre11-webprofile`, `8.0.14-jre11-Temurin-ubuntu`, `8.0.14-jre11-ubuntu`, `8.0.14-jre11-Temurin`, `8.0.14-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-microprofile`, `8.0.14-jre11-ubuntu-microprofile`, `8.0.14-jre11-Temurin-microprofile`, `8.0.14-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-plume`, `8.0.14-jre11-ubuntu-plume`, `8.0.14-jre11-Temurin-plume`, `8.0.14-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre11-Temurin-ubuntu-plus`, `8.0.14-jre11-ubuntu-plus`, `8.0.14-jre11-Temurin-plus`, `8.0.14-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-webprofile`, `8.0.14-jre11-alpine-webprofile`, `8.0.14-jre11-Temurin-alpine`, `8.0.14-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-microprofile`, `8.0.14-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-plume`, `8.0.14-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre11-Temurin-alpine-plus`, `8.0.14-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-webprofile`, `8.0.14-jre8-ubuntu-webprofile`, `8.0.14-jre8-Temurin-webprofile`, `8.0.14-jre8-webprofile`, `8.0.14-jre8-Temurin-ubuntu`, `8.0.14-jre8-ubuntu`, `8.0.14-jre8-Temurin`, `8.0.14-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-microprofile`, `8.0.14-jre8-ubuntu-microprofile`, `8.0.14-jre8-Temurin-microprofile`, `8.0.14-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-plume`, `8.0.14-jre8-ubuntu-plume`, `8.0.14-jre8-Temurin-plume`, `8.0.14-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.14-jre8-Temurin-ubuntu-plus`, `8.0.14-jre8-ubuntu-plus`, `8.0.14-jre8-Temurin-plus`, `8.0.14-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-webprofile`, `8.0.14-jre8-alpine-webprofile`, `8.0.14-jre8-Temurin-alpine`, `8.0.14-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-microprofile`, `8.0.14-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-plume`, `8.0.14-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.14-jre8-Temurin-alpine-plus`, `8.0.14-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-webprofile`, `8.0.14-Semeru-ubuntu-webprofile`, `8.0.14-jre17-Semeru-webprofile`, `8.0.14-Semeru-webprofile`, `8.0.14-jre17-Semeru-ubuntu`, `8.0.14-Semeru-ubuntu`, `8.0.14-jre17-Semeru`, `8.0.14-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-microprofile`, `8.0.14-Semeru-ubuntu-microprofile`, `8.0.14-jre17-Semeru-microprofile`, `8.0.14-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-plume`, `8.0.14-Semeru-ubuntu-plume`, `8.0.14-jre17-Semeru-plume`, `8.0.14-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.14-jre17-Semeru-ubuntu-plus`, `8.0.14-Semeru-ubuntu-plus`, `8.0.14-jre17-Semeru-plus`, `8.0.14-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-webprofile`, `8.0.14-jre11-Semeru-webprofile`, `8.0.14-jre11-Semeru-ubuntu`, `8.0.14-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-microprofile`, `8.0.14-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-plume`, `8.0.14-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.14-jre11-Semeru-ubuntu-plus`, `8.0.14-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From e2a89158b61c01cda0d70d347219d7b9f0d4beec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 May 2023 12:17:34 -0700 Subject: [PATCH 0264/2686] Run update.sh --- aerospike/README.md | 4 +-- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- crate/README.md | 2 +- golang/README.md | 72 +++++++++++++++++++++---------------------- haxe/README.md | 60 ++++++++++++++++++------------------ node/README.md | 6 ---- odoo/README.md | 6 ++-- photon/README.md | 4 +-- rakudo-star/README.md | 4 +-- solr/README.md | 10 +++--- 11 files changed, 84 insertions(+), 90 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index a565dae89f52..d0ed25b9941b 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.1`, `ee-6.3.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/47d6a8646c2538c1ead328113b9ebcf8bb609f9b/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.1`, `ce-6.3.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/47d6a8646c2538c1ead328113b9ebcf8bb609f9b/community/debian11/Dockerfile) +- [`ee-6.3.0.2`, `ee-6.3.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/1f6b4f3b273010ca53d18f65856d635fd4e162c6/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.2`, `ce-6.3.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/1f6b4f3b273010ca53d18f65856d635fd4e162c6/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 37356e04c50c..82f783332daf 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230423.0.144989`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0f35dc08d406688bc127e4f906e79549f1e6cf5f/Dockerfile.base) -- [`base-devel`, `base-devel-20230423.0.144989`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0f35dc08d406688bc127e4f906e79549f1e6cf5f/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230430.0.146624`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/60929acedfaddae560cdde459ebb2fc64b0b51a7/Dockerfile.base) +- [`base-devel`, `base-devel-20230430.0.146624`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/60929acedfaddae560cdde459ebb2fc64b0b51a7/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index f622c110938d..2ccd11bad40a 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/cc882385cb5d21370876c0c67234efe985d17673/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6acca8e63a3c88b91e943d82fb83d48b4d76e995/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 9d7b2ce93dfe..bfc558a008c6 100644 --- a/crate/README.md +++ b/crate/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.3.0`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/2a7bfa53ecd5fdd4c0c4aa9c9bb3c9fd97e1df20/Dockerfile) -- [`5.2.6`, `5.2`](https://github.com/crate/docker-crate/blob/8a7ad52cc562a2072a1817b58236ea7d8f176deb/Dockerfile) +- [`5.2.7`, `5.2`](https://github.com/crate/docker-crate/blob/5916109687edafe95199906be6e100e1b0b99588/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 86c7171b43b3..55c632650e22 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.20.3-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/bullseye/Dockerfile) -- [`1.20.3-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/buster/Dockerfile) -- [`1.20.3-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.3-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/alpine3.17/Dockerfile) -- [`1.20.3-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/alpine3.16/Dockerfile) -- [`1.20.3-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.3-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.3-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.3-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.8-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/bullseye/Dockerfile) -- [`1.19.8-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/buster/Dockerfile) -- [`1.19.8-alpine3.17`, `1.19-alpine3.17`, `1.19.8-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/alpine3.17/Dockerfile) -- [`1.19.8-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/alpine3.16/Dockerfile) -- [`1.19.8-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.8-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.8-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.8-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.4-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/bullseye/Dockerfile) +- [`1.20.4-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/buster/Dockerfile) +- [`1.20.4-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.4-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.17/Dockerfile) +- [`1.20.4-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.16/Dockerfile) +- [`1.20.4-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.4-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.4-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.4-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.9-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/bullseye/Dockerfile) +- [`1.19.9-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/buster/Dockerfile) +- [`1.19.9-alpine3.17`, `1.19-alpine3.17`, `1.19.9-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.17/Dockerfile) +- [`1.19.9-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.16/Dockerfile) +- [`1.19.9-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.9-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.9-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.9-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20.3`, `1.20`, `1`, `latest`: - - [`1.20.3-bullseye`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/bullseye/Dockerfile) - - [`1.20.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.3-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.3-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/e8e87a35e7de2343770e13ec1b6c62cafb95728d/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.8`, `1.19`: - - [`1.19.8-bullseye`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/bullseye/Dockerfile) - - [`1.19.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.8-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.8-nanoserver`, `1.19-nanoserver`: - - [`1.19.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/8459bc2ba6982d44d57558b7d69217334c34b7e5/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.4`, `1.20`, `1`, `latest`: + - [`1.20.4-bullseye`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/bullseye/Dockerfile) + - [`1.20.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.4-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.4-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.9`, `1.19`: + - [`1.19.9-bullseye`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/bullseye/Dockerfile) + - [`1.19.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.9-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.9-nanoserver`, `1.19-nanoserver`: + - [`1.19.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index f05845434968..3c5a42b85d41 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`4.3.0-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/bullseye/Dockerfile) -- [`4.3.0-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/buster/Dockerfile) -- [`4.3.0-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.0-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.0-alpine3.17`, `4.3-alpine3.17`, `4.3.0-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.17/Dockerfile) -- [`4.3.0-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.16/Dockerfile) -- [`4.3.0-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.15/Dockerfile) -- [`4.3.0-alpine3.14`, `4.3-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/alpine3.14/Dockerfile) -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/bullseye/Dockerfile) -- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/buster/Dockerfile) +- [`4.3.1-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/bullseye/Dockerfile) +- [`4.3.1-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/buster/Dockerfile) +- [`4.3.1-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.1-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.1-alpine3.17`, `4.3-alpine3.17`, `4.3.1-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.17/Dockerfile) +- [`4.3.1-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.16/Dockerfile) +- [`4.3.1-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.15/Dockerfile) +- [`4.3.1-alpine3.14`, `4.3-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.14/Dockerfile) +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) +- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - [`4.2.5-alpine3.17`, `4.2-alpine3.17`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) - [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.2/alpine3.16/Dockerfile) - [`4.2.5-alpine3.15`, `4.2-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.15/Dockerfile) - [`4.2.5-alpine3.14`, `4.2-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.14/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/bullseye/Dockerfile) -- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/buster/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) +- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - [`4.1.5-alpine3.17`, `4.1-alpine3.17`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) - [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.1/alpine3.16/Dockerfile) - [`4.1.5-alpine3.15`, `4.1-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.1/alpine3.15/Dockerfile) - [`4.1.5-alpine3.14`, `4.1-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.1/alpine3.14/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/bullseye/Dockerfile) -- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/buster/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) +- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - [`4.0.5-alpine3.17`, `4.0-alpine3.17`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) - [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) - [`4.0.5-alpine3.15`, `4.0-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.0/alpine3.15/Dockerfile) - [`4.0.5-alpine3.14`, `4.0-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.0/alpine3.14/Dockerfile) -- [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.4/buster/Dockerfile) +- [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`, `3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) -- [`3.3.0-rc.1-buster`, `3.3.0-buster`, `3.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.3/buster/Dockerfile) +- [`3.3.0-rc.1-buster`, `3.3.0-buster`, `3.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.3/buster/Dockerfile) - [`3.3.0-rc.1-windowsservercore-ltsc2022`, `3.3.0-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`, `3.3.0-windowsservercore-1809`, `3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) -- [`3.2.1-buster`, `3.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.2/buster/Dockerfile) +- [`3.2.1-buster`, `3.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.2/buster/Dockerfile) - [`3.2.1-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - [`3.2.1-windowsservercore-1809`, `3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) - [`3.1.3-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-ltsc2022/Dockerfile) @@ -74,50 +74,50 @@ WARNING: ## Shared Tags -- `4.3.0`, `4.3`, `latest`: - - [`4.3.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7dc5df413422e48c732117dd583b58d4289c74e/4.3/bullseye/Dockerfile) - - [`4.3.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) -- `4.3.0-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.3/windowsservercore-1809/Dockerfile) +- `4.3.1`, `4.3`, `latest`: + - [`4.3.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/bullseye/Dockerfile) + - [`4.3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) +- `4.3.1-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.2/bullseye/Dockerfile) + - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.1.5-windowsservercore`, `4.1-windowsservercore`: - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `4.0.5-windowsservercore`, `4.0-windowsservercore`: - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `3.4.7`, `3.4`: - - [`3.4.7-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.4/buster/Dockerfile) + - [`3.4.7-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) - `3.4.7-windowsservercore`, `3.4-windowsservercore`: - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) - `3.3.0-rc.1`, `3.3.0`, `3.3`: - - [`3.3.0-rc.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.3/buster/Dockerfile) + - [`3.3.0-rc.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.3/buster/Dockerfile) - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) - `3.3.0-rc.1-windowsservercore`, `3.3.0-windowsservercore`, `3.3-windowsservercore`: - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) - `3.2.1`, `3.2`: - - [`3.2.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/59159f1cd1c4a769afc77b1a559c2a187f7d4fc9/3.2/buster/Dockerfile) + - [`3.2.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.2/buster/Dockerfile) - [`3.2.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - [`3.2.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) - `3.2.1-windowsservercore`, `3.2-windowsservercore`: diff --git a/node/README.md b/node/README.md index ae1a8a359d81..a562e0520a87 100644 --- a/node/README.md +++ b/node/README.md @@ -48,12 +48,6 @@ WARNING: - [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye-slim/Dockerfile) - [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.0`, `16.20.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster/Dockerfile) - [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.0-buster-slim`, `16.20.0-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster-slim/Dockerfile) -- [`14-alpine3.16`, `14.21-alpine3.16`, `14.21.3-alpine3.16`, `fermium-alpine3.16`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.16/Dockerfile) -- [`14-alpine`, `14-alpine3.17`, `14.21-alpine`, `14.21-alpine3.17`, `14.21.3-alpine`, `14.21.3-alpine3.17`, `fermium-alpine`, `fermium-alpine3.17`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/alpine3.17/Dockerfile) -- [`14-bullseye`, `14.21-bullseye`, `14.21.3-bullseye`, `fermium-bullseye`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/bullseye/Dockerfile) -- [`14-bullseye-slim`, `14.21-bullseye-slim`, `14.21.3-bullseye-slim`, `fermium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/bullseye-slim/Dockerfile) -- [`14`, `14-buster`, `14.21`, `14.21-buster`, `14.21.3`, `14.21.3-buster`, `fermium`, `fermium-buster`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/buster/Dockerfile) -- [`14-buster-slim`, `14-slim`, `14.21-buster-slim`, `14.21-slim`, `14.21.3-buster-slim`, `14.21.3-slim`, `fermium-buster-slim`, `fermium-slim`](https://github.com/nodejs/docker-node/blob/e75fa5270326ffaff8fee03153f3bf16860084d4/14/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index e7f976d86f17..a2251576388b 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/df8788b1e0cc6e7570869a20a17f482c71bcf6c7/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/14.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index ba5acf827514..4efb2681920e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230403`, `5.0-RC`](https://github.com/vmware/photon-docker-image/blob/bc4e559a267c942b5db512a3fde6c3592a802a98/docker/Dockerfile) -- [`4.0`, `4.0-20230408`, `latest`](https://github.com/vmware/photon-docker-image/blob/f69dcdb65365829cf67af006a020ed7ef7d6316e/docker/Dockerfile) +- [`5.0`, `5.0-20230501`, `5.0-GA`](https://github.com/vmware/photon-docker-image/blob/78d4b9fda369eeef1aedf73e27f6f41c6ca49726/docker/Dockerfile) +- [`4.0`, `4.0-20230429`, `latest`](https://github.com/vmware/photon-docker-image/blob/546dbe1ca835a63f47497c9843fd54b89a576aa1/docker/Dockerfile) - [`3.0`, `3.0-20230408`](https://github.com/vmware/photon-docker-image/blob/b7616914fd9dd6584a91df971767d6e5e93de55d/docker/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 1957c11f4eac..10d5c59c39a9 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2023.02`](https://github.com/Raku/docker/blob/d6873e88a8979536ba7d485aef309b7126965e0d/2023.02/bullseye/Dockerfile) -- [`alpine`, `2023.02-alpine`](https://github.com/Raku/docker/blob/d6873e88a8979536ba7d485aef309b7126965e0d/2023.02/alpine3.17/Dockerfile) +- [`latest`, `2023.04`](https://github.com/Raku/docker/blob/908f33d76c1437ddfdee8596049d8a9877c03d60/2023.04/bullseye/Dockerfile) +- [`alpine`, `2023.04-alpine`](https://github.com/Raku/docker/blob/908f33d76c1437ddfdee8596049d8a9877c03d60/2023.04/alpine3.17/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 49d5c9fe9cdd..da2f8528dfd9 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.0`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/ff10128abe5d59ac7534594c206fab930e763506/8.11-slim/Dockerfile) +- [`9.2.1`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/8.11-slim/Dockerfile) # Quick reference (cont.) From 835cb7b4cc49659910cf06d2d1ec1c0ced7f146c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 May 2023 13:08:50 -0700 Subject: [PATCH 0265/2686] Run update.sh --- crate/README.md | 2 +- dart/README.md | 4 +-- jetty/README.md | 82 ++++++++++++++++++++++++------------------------- sl/README.md | 2 +- 4 files changed, 45 insertions(+), 45 deletions(-) diff --git a/crate/README.md b/crate/README.md index bfc558a008c6..95958ee8ac33 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/2a7bfa53ecd5fdd4c0c4aa9c9bb3c9fd97e1df20/Dockerfile) +- [`5.3.1`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/7b386ec1fc97ff17205fe10e145604de5fb758ed/Dockerfile) - [`5.2.7`, `5.2`](https://github.com/crate/docker-crate/blob/5916109687edafe95199906be6e100e1b0b99588/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 065e6d9ebd8f..be74a0e6cb2d 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/279fdefd6e0b97a3809d5d7e66c9ac73eefaaa29/stable/bullseye/Dockerfile) -- [`3.0.0-417.3.beta-sdk`, `beta-sdk`, `3.0.0-417.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/279fdefd6e0b97a3809d5d7e66c9ac73eefaaa29/beta/bullseye/Dockerfile) +- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/dcc0328d74695db68783998338f0b8f28fd999e0/stable/bullseye/Dockerfile) +- [`3.0.0-417.4.beta-sdk`, `beta-sdk`, `3.0.0-417.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/dcc0328d74695db68783998338f0b8f28fd999e0/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index e16e26b53be2..120aeb1cffdd 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`11.0.14-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.14-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.14-jre17`, `11.0-jre17`, `11-jre17`, `11.0.14-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.14-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.14-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.14-jre11`, `11.0-jre11`, `11-jre11`, `11.0.14-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.14-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.14-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.14`, `11.0`, `11`, `11.0.14-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.14-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.14-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.14-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.14-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.14-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.14-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.14-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.14-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.14-jre17`, `10.0-jre17`, `10-jre17`, `10.0.14-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.14-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.14-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.14-jre11`, `10.0-jre11`, `10-jre11`, `10.0.14-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.14-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.14-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.14`, `10.0`, `10`, `10.0.14-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.14-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.14-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.14-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.14-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.14-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.14-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/9.4/jdk11/Dockerfile) -- [`11.0.14-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.14-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.14-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.14-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.14-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.14-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.14-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.14-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.14-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.14-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7cb88c382621890d7fb8d02267e78ae5e7c2d719/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk11/Dockerfile) +- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/sl/README.md b/sl/README.md index b8bfb9b497f2..33aefb130582 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/138a0b30dbde1b11205e41a25686f5ad78d70fe2/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/c369b631e3de151d68e9d02c08e66590048e6230/sl7/Dockerfile) # Quick reference (cont.) From 8463ae1183a6f5ef0b06f3d74e6a7d62a888ae77 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 May 2023 15:15:20 -0700 Subject: [PATCH 0266/2686] Run update.sh --- joomla/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index eb087e4b03a5..f19b87ea4cd4 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.9`, `4.2`, `4`, `latest`, `4.2.9-apache`, `4.2-apache`, `4-apache`, `apache`, `4.2.9-php8.0`, `4.2-php8.0`, `4-php8.0`, `php8.0`, `4.2.9-php8.0-apache`, `4.2-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/apache/Dockerfile) -- [`4.2.9-php8.0-fpm-alpine`, `4.2-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/fpm-alpine/Dockerfile) -- [`4.2.9-php8.0-fpm`, `4.2-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.0/fpm/Dockerfile) -- [`4.2.9-php8.1-apache`, `4.2-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/apache/Dockerfile) -- [`4.2.9-php8.1-fpm-alpine`, `4.2-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/fpm-alpine/Dockerfile) -- [`4.2.9-php8.1-fpm`, `4.2-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f03a7cf52841e92c26990e4884ba7f389b935735/4.2/php8.1/fpm/Dockerfile) -- [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/apache/Dockerfile) -- [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm-alpine/Dockerfile) -- [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/17df17a732daa119f17bbcc6fb7759d7bf175d0a/3.10/php8.0/fpm/Dockerfile) +- [`4.3.1`, `4.3`, `4`, `latest`, `4.3.1-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.1-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.1-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/apache/Dockerfile) +- [`4.3.1-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.1-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/fpm/Dockerfile) +- [`4.3.1-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/apache/Dockerfile) +- [`4.3.1-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.1-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/fpm/Dockerfile) +- [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/apache/Dockerfile) +- [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/fpm-alpine/Dockerfile) +- [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/fpm/Dockerfile) # Quick reference (cont.) From a79029940026732586011622ba42aa434c9c36ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 May 2023 16:08:46 -0700 Subject: [PATCH 0267/2686] Run update.sh --- buildpack-deps/README.md | 18 +++--- cassandra/README.md | 8 +-- debian/README.md | 48 ++++++++-------- elasticsearch/README.md | 4 +- gcc/README.md | 10 ++-- irssi/README.md | 2 +- julia/README.md | 46 +++++++-------- kibana/README.md | 4 +- logstash/README.md | 4 +- mongo/README.md | 16 +++--- mysql/README.md | 4 +- php/README.md | 80 +++++++++++++------------- postgres/README.md | 10 ++-- python/README.md | 120 +++++++++++++++++++-------------------- rabbitmq/README.md | 16 +++--- redis/README.md | 8 +-- tomcat/README.md | 42 +++++++------- ubuntu/README.md | 4 +- 18 files changed, 222 insertions(+), 222 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index adc427194c31..e90ec0aab7b2 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/curl/Dockerfile) +- [`bookworm-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bookworm/curl/Dockerfile) - [`bookworm-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/scm/Dockerfile) - [`bookworm`, `testing`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/Dockerfile) -- [`bullseye-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/debian/bullseye/curl/Dockerfile) +- [`bullseye-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) - [`bullseye-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/scm/Dockerfile) - [`bullseye`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/Dockerfile) -- [`buster-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/debian/buster/curl/Dockerfile) +- [`buster-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) - [`buster-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/scm/Dockerfile) - [`buster`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/Dockerfile) -- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/debian/sid/curl/Dockerfile) +- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) -- [`bionic-curl`, `18.04-curl`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/bionic/curl/Dockerfile) +- [`bionic-curl`, `18.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/bionic/curl/Dockerfile) - [`bionic-scm`, `18.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/bionic/scm/Dockerfile) - [`bionic`, `18.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/bionic/Dockerfile) -- [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/focal/curl/Dockerfile) +- [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) - [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/focal/scm/Dockerfile) - [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/focal/Dockerfile) -- [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/curl/Dockerfile) +- [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/scm/Dockerfile) - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/Dockerfile) -- [`kinetic-curl`, `22.10-curl`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/curl/Dockerfile) +- [`kinetic-curl`, `22.10-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/kinetic/curl/Dockerfile) - [`kinetic-scm`, `22.10-scm`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/scm/Dockerfile) - [`kinetic`, `22.10`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/Dockerfile) -- [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/curl/Dockerfile) +- [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/lunar/curl/Dockerfile) - [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) - [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index c7fb2d2a2485..6b78f30ec534 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/8ae7e0d435107e968e9609567ef772876ea7d512/4.1/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/b5915c67f0cd255700a71a24f3b314a0280f81c6/4.0/Dockerfile) -- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.11/Dockerfile) -- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/1737da9eb0a7ba2e691778355730816f9fa7bad9/3.0/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.1/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.0/Dockerfile) +- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/3.11/Dockerfile) +- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/3.0/Dockerfile) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index c189448d5f3f..52a8c564ac6d 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230411`, `11.6`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230411-slim`, `11.6-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230411`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230411-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/rc-buggy/Dockerfile) -- [`sid`, `sid-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/sid/Dockerfile) -- [`sid-slim`, `sid-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/sid/slim/Dockerfile) -- [`stable`, `stable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/stable/slim/Dockerfile) -- [`testing`, `testing-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230411`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230411-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/6f70a9d23b69cd08feccb8a8aac5cdfe985e306d/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230502`, `11.7`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230502-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230502`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230502-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/rc-buggy/Dockerfile) +- [`sid`, `sid-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/sid/Dockerfile) +- [`sid-slim`, `sid-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/sid/slim/Dockerfile) +- [`stable`, `stable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/slim/Dockerfile) +- [`testing`, `testing-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 8c5e9ed99162..3422c3e7d268 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.0`](https://github.com/docker-library/elasticsearch/blob/ffa0104f45677975eb6fcb0a52829618143bdad7/8/Dockerfile) -- [`7.17.9`](https://github.com/docker-library/elasticsearch/blob/584687331345cc631249925517b78b2f1058914c/7/Dockerfile) +- [`8.7.1`](https://github.com/docker-library/elasticsearch/blob/229361a202bcd5b7c1ddfd7b52ebc4c79e884958/8/Dockerfile) +- [`7.17.10`](https://github.com/docker-library/elasticsearch/blob/e95712a301d6adacde7ef3d31d54dd9bca752426/7/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index 2f72c3d35fae..93ff8ebbbb85 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/13/Dockerfile) -- [`12.2.0`, `12.2`, `12`, `12.2.0-bullseye`, `12.2-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/523e01b2ccf43f1fd702aa9fdc2f71c827b76525/12/Dockerfile) -- [`11.3.0`, `11.3`, `11`, `11.3.0-bullseye`, `11.3-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/a5a94a2d5c812fe57f6f28713b0f899b879145d3/11/Dockerfile) -- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/9/Dockerfile) +- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/13/Dockerfile) +- [`12.2.0`, `12.2`, `12`, `12.2.0-bullseye`, `12.2-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/12/Dockerfile) +- [`11.3.0`, `11.3`, `11`, `11.3.0-bullseye`, `11.3-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/11/Dockerfile) +- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/10/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/9/Dockerfile) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 7d74917f85d9..710b3705d194 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.4`, `1.4`, `1`, `latest`](https://github.com/jessfraz/irssi/blob/94e29e7acdc9c44649b57a4efcc43d52496312c2/debian/Dockerfile) +- [`1.4.4`, `1.4`, `1`, `latest`](https://github.com/jessfraz/irssi/blob/663b9b815d858c94ae6224183afed602d291587e/debian/Dockerfile) - [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`](https://github.com/jessfraz/irssi/blob/6806daa0d17eae1cd10df10ff3a533d3655ac9f8/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 6cb9184d9777..f3bdcff04c88 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`1.9.0-rc2-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-rc2-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/buster/Dockerfile) -- [`1.9.0-rc2-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc2-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-rc2-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-rc2-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-rc2-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) -- [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/buster/Dockerfile) -- [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.17/Dockerfile) -- [`1.8.5-alpine3.16`, `1.8-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/alpine3.16/Dockerfile) +- [`1.9.0-rc3-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/bullseye/Dockerfile) +- [`1.9.0-rc3-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/buster/Dockerfile) +- [`1.9.0-rc3-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc3-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/alpine3.17/Dockerfile) +- [`1.9.0-rc3-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/alpine3.16/Dockerfile) +- [`1.9.0-rc3-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-rc3-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/bullseye/Dockerfile) +- [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/buster/Dockerfile) +- [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/alpine3.17/Dockerfile) +- [`1.8.5-alpine3.16`, `1.8-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/alpine3.16/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`, `1.8-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.8.5-windowsservercore-1809`, `1.8-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) -- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/a7e28ee0b611690e7c81b37edbc04c64e38c9aa8/1.6/bullseye/Dockerfile) -- [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/a7e28ee0b611690e7c81b37edbc04c64e38c9aa8/1.6/buster/Dockerfile) -- [`1.6.7-alpine3.17`, `1.6-alpine3.17`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1d8e89b70dd373eceea2879c87e03cc20cafec1a/1.6/alpine3.17/Dockerfile) -- [`1.6.7-alpine3.16`, `1.6-alpine3.16`](https://github.com/docker-library/julia/blob/a7e28ee0b611690e7c81b37edbc04c64e38c9aa8/1.6/alpine3.16/Dockerfile) +- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) +- [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/buster/Dockerfile) +- [`1.6.7-alpine3.17`, `1.6-alpine3.17`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) +- [`1.6.7-alpine3.16`, `1.6-alpine3.16`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.16/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `1.9.0-rc2`, `1.9-rc`, `rc`: - - [`1.9.0-rc2-bullseye`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-rc2-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/dc0f7d15a9cec4db24d64935b885ea2ad1fe7e3b/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc3`, `1.9-rc`, `rc`: + - [`1.9.0-rc3-bullseye`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/bullseye/Dockerfile) + - [`1.9.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-rc3-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.9.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) - `1.8.5`, `1.8`, `1`, `latest`: - - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/ed8e24a5db952a25f517a900830cdac481e3fd44/1.8/bullseye/Dockerfile) + - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/bullseye/Dockerfile) - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.8.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) - `1.8.5-windowsservercore`, `1.8-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.8.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - - [`1.6.7-bullseye`](https://github.com/docker-library/julia/blob/a7e28ee0b611690e7c81b37edbc04c64e38c9aa8/1.6/bullseye/Dockerfile) + - [`1.6.7-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - `1.6.7-windowsservercore`, `1.6-windowsservercore`: diff --git a/kibana/README.md b/kibana/README.md index 866c7fe0da84..c9e15b76ee0f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.0`](https://github.com/docker-library/kibana/blob/1ac2c313dc7c1636b6c14bfd0d6e929357a0b43a/8/Dockerfile) -- [`7.17.9`](https://github.com/docker-library/kibana/blob/fd40461903be40051a19f81fc7a1630e8049343f/7/Dockerfile) +- [`8.7.1`](https://github.com/docker-library/kibana/blob/e577f15420a471649acd96a337cf5f575924a18f/8/Dockerfile) +- [`7.17.10`](https://github.com/docker-library/kibana/blob/6dc8cf4590a7259135398fe84648b76fdb79ac2e/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index eaa13b701037..dbdbad52df12 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.0`](https://github.com/docker-library/logstash/blob/5d9c639d3f66808b1fe45bd714c8ff14c8b22f8e/8/Dockerfile) -- [`7.17.9`](https://github.com/docker-library/logstash/blob/19eccdc220a6c1d80ddb3a0e48e2bf5d2414682e/7/Dockerfile) +- [`8.7.1`](https://github.com/docker-library/logstash/blob/da79914ffa9715c6db2f084ff5aec2700fefbab4/8/Dockerfile) +- [`7.17.10`](https://github.com/docker-library/logstash/blob/963070bbacb3ca9dd3aea80abf24da2113254f81/7/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 4ac35896071a..161a419e805b 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`6.0.5-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/Dockerfile) +- [`6.0.5-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/6.0/Dockerfile) - [`6.0.5-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.5-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.5-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.17-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/Dockerfile) +- [`5.0.17-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/5.0/Dockerfile) - [`5.0.17-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.17-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.17-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.17-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.21-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/Dockerfile) +- [`4.4.21-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.4/Dockerfile) - [`4.4.21-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.21-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.21-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.21-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) +- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) - [`4.2.24-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) @@ -52,7 +52,7 @@ WARNING: ## Shared Tags - `6.0.5`, `6.0`, `6`, `latest`: - - [`6.0.5-jammy`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/Dockerfile) + - [`6.0.5-jammy`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/6.0/Dockerfile) - [`6.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.5-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: @@ -62,7 +62,7 @@ WARNING: - [`6.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.17`, `5.0`, `5`: - - [`5.0.17-focal`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/Dockerfile) + - [`5.0.17-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/5.0/Dockerfile) - [`5.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.17-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -72,7 +72,7 @@ WARNING: - [`5.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.21`, `4.4`, `4`: - - [`4.4.21-focal`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/Dockerfile) + - [`4.4.21-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.4/Dockerfile) - [`4.4.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.21-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: @@ -82,7 +82,7 @@ WARNING: - [`4.4.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) - `4.2.24`, `4.2`: - - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/9ba70e0a39fd2205899a9bb72e2204e3fcdbdc56/4.2/Dockerfile) + - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) - `4.2.24-windowsservercore`, `4.2-windowsservercore`: diff --git a/mysql/README.md b/mysql/README.md index 8daa086bb817..70ffd6d10a03 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.0.33`, `8.0`, `8`, `latest`, `8.0.33-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1bfa4724fe112b4246672ed2b3c42142f17d5636/8.0/Dockerfile.oracle) -- [`8.0.33-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/1bfa4724fe112b4246672ed2b3c42142f17d5636/8.0/Dockerfile.debian) +- [`8.0.33-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/611aa464a96f69e5d4d4172b14ca829ded162b42/8.0/Dockerfile.debian) - [`5.7.42`, `5.7`, `5`, `5.7.42-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/e4bdff20153e6a05364a8fe80356dcfd502445bd/5.7/Dockerfile.oracle) -- [`5.7.42-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/e4bdff20153e6a05364a8fe80356dcfd502445bd/5.7/Dockerfile.debian) +- [`5.7.42-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/611aa464a96f69e5d4d4172b14ca829ded162b42/5.7/Dockerfile.debian) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index a6ad2ce55ce8..a72bdca3a4b1 100644 --- a/php/README.md +++ b/php/README.md @@ -24,70 +24,70 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.6RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.6RC1-bullseye`, `8.2-rc-bullseye`, `8.2.6RC1-cli`, `8.2-rc-cli`, `8.2.6RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.6RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.6RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.6RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.6RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.6RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.6RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.6RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.6RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/cli/Dockerfile) -- [`8.2.6RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/apache/Dockerfile) -- [`8.2.6RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.6RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/buster/zts/Dockerfile) +- [`8.2.6RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.6RC1-bullseye`, `8.2-rc-bullseye`, `8.2.6RC1-cli`, `8.2-rc-cli`, `8.2.6RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.6RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.6RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.6RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.6RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.6RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.6RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.6RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.6RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/cli/Dockerfile) +- [`8.2.6RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/apache/Dockerfile) +- [`8.2.6RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.6RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/zts/Dockerfile) - [`8.2.6RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.6RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.6RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.6RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/cli/Dockerfile) - [`8.2.6RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.6RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/fpm/Dockerfile) - [`8.2.6RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.6RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.6RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.6RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/cli/Dockerfile) - [`8.2.6RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/fpm/Dockerfile) - [`8.2.6RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/zts/Dockerfile) -- [`8.2.5-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.5-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.5-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.5`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/cli/Dockerfile) -- [`8.2.5-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.5-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/apache/Dockerfile) -- [`8.2.5-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.5-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/fpm/Dockerfile) -- [`8.2.5-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.5-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/bullseye/zts/Dockerfile) -- [`8.2.5-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.5-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/cli/Dockerfile) -- [`8.2.5-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/apache/Dockerfile) -- [`8.2.5-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/fpm/Dockerfile) -- [`8.2.5-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/buster/zts/Dockerfile) +- [`8.2.5-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.5-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.5-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.5`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/cli/Dockerfile) +- [`8.2.5-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.5-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/apache/Dockerfile) +- [`8.2.5-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.5-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/fpm/Dockerfile) +- [`8.2.5-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.5-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/zts/Dockerfile) +- [`8.2.5-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.5-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/cli/Dockerfile) +- [`8.2.5-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/apache/Dockerfile) +- [`8.2.5-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/fpm/Dockerfile) +- [`8.2.5-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/zts/Dockerfile) - [`8.2.5-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.5-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.5-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.5-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/cli/Dockerfile) - [`8.2.5-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.5-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.5-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.5-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/zts/Dockerfile) - [`8.2.5-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.5-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/cli/Dockerfile) - [`8.2.5-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/fpm/Dockerfile) - [`8.2.5-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/zts/Dockerfile) -- [`8.1.19RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.19RC1-bullseye`, `8.1-rc-bullseye`, `8.1.19RC1-cli`, `8.1-rc-cli`, `8.1.19RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.19RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.19RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.19RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.19RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.19RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.19RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.19RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.19RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/cli/Dockerfile) -- [`8.1.19RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/apache/Dockerfile) -- [`8.1.19RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.19RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/buster/zts/Dockerfile) +- [`8.1.19RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.19RC1-bullseye`, `8.1-rc-bullseye`, `8.1.19RC1-cli`, `8.1-rc-cli`, `8.1.19RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.19RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.19RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.19RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.19RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.19RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.19RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.19RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.19RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/cli/Dockerfile) +- [`8.1.19RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/apache/Dockerfile) +- [`8.1.19RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.19RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/zts/Dockerfile) - [`8.1.19RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.19RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.19RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.19RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/cli/Dockerfile) - [`8.1.19RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.19RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/fpm/Dockerfile) - [`8.1.19RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.19RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/zts/Dockerfile) - [`8.1.19RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.19RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/cli/Dockerfile) - [`8.1.19RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/fpm/Dockerfile) - [`8.1.19RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/cli/Dockerfile) -- [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/apache/Dockerfile) -- [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/fpm/Dockerfile) -- [`8.1.18-zts-bullseye`, `8.1-zts-bullseye`, `8.1.18-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/bullseye/zts/Dockerfile) -- [`8.1.18-cli-buster`, `8.1-cli-buster`, `8.1.18-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/cli/Dockerfile) -- [`8.1.18-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/apache/Dockerfile) -- [`8.1.18-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/fpm/Dockerfile) -- [`8.1.18-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/buster/zts/Dockerfile) +- [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/cli/Dockerfile) +- [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/apache/Dockerfile) +- [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/fpm/Dockerfile) +- [`8.1.18-zts-bullseye`, `8.1-zts-bullseye`, `8.1.18-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/zts/Dockerfile) +- [`8.1.18-cli-buster`, `8.1-cli-buster`, `8.1.18-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/cli/Dockerfile) +- [`8.1.18-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/apache/Dockerfile) +- [`8.1.18-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/fpm/Dockerfile) +- [`8.1.18-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/zts/Dockerfile) - [`8.1.18-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.18-alpine3.17`, `8.1-alpine3.17`, `8.1.18-cli-alpine`, `8.1-cli-alpine`, `8.1.18-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/cli/Dockerfile) - [`8.1.18-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.18-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/fpm/Dockerfile) - [`8.1.18-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.18-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/zts/Dockerfile) - [`8.1.18-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.18-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/cli/Dockerfile) - [`8.1.18-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/fpm/Dockerfile) - [`8.1.18-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/cli/Dockerfile) -- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/apache/Dockerfile) -- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/fpm/Dockerfile) -- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/bullseye/zts/Dockerfile) -- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/cli/Dockerfile) -- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/apache/Dockerfile) -- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/fpm/Dockerfile) -- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/buster/zts/Dockerfile) +- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/cli/Dockerfile) +- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/apache/Dockerfile) +- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/fpm/Dockerfile) +- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/zts/Dockerfile) +- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/cli/Dockerfile) +- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/apache/Dockerfile) +- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/fpm/Dockerfile) +- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/zts/Dockerfile) - [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/cli/Dockerfile) - [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/fpm/Dockerfile) - [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/zts/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 90710b249114..b0dc93bebcbe 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/15/bullseye/Dockerfile) +- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/15/bullseye/Dockerfile) - [`15.2-alpine`, `15-alpine`, `alpine`, `15.2-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/15/alpine/Dockerfile) -- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/14/bullseye/Dockerfile) +- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/14/bullseye/Dockerfile) - [`14.7-alpine`, `14-alpine`, `14.7-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/14/alpine/Dockerfile) -- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/13/bullseye/Dockerfile) +- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/13/bullseye/Dockerfile) - [`13.10-alpine`, `13-alpine`, `13.10-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/13/alpine/Dockerfile) -- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/12/bullseye/Dockerfile) +- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/12/bullseye/Dockerfile) - [`12.14-alpine`, `12-alpine`, `12.14-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/12/alpine/Dockerfile) -- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/11/bullseye/Dockerfile) +- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/11/bullseye/Dockerfile) - [`11.19-alpine`, `11-alpine`, `11.19-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 219d5f24fe31..323c4db1a1a2 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0a7-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a7-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a7-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a7-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/buster/Dockerfile) -- [`3.12.0a7-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a7-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/alpine3.16/Dockerfile) -- [`3.12.0a7-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a7-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/bullseye/Dockerfile) -- [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/slim-bullseye/Dockerfile) -- [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/buster/Dockerfile) -- [`3.11.3-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/slim-buster/Dockerfile) -- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/alpine3.17/Dockerfile) -- [`3.11.3-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/alpine3.16/Dockerfile) -- [`3.11.3-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.3-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.11-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/bullseye/Dockerfile) -- [`3.10.11-slim-bullseye`, `3.10-slim-bullseye`, `3.10.11-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/slim-bullseye/Dockerfile) -- [`3.10.11-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/buster/Dockerfile) -- [`3.10.11-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/slim-buster/Dockerfile) -- [`3.10.11-alpine3.17`, `3.10-alpine3.17`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/alpine3.17/Dockerfile) -- [`3.10.11-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/alpine3.16/Dockerfile) -- [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/alpine3.16/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/alpine3.16/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/cf20bfd43383845a80e52e2c54694cc0b716fae3/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/alpine3.16/Dockerfile) +- [`3.12.0a7-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/bullseye/Dockerfile) +- [`3.12.0a7-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a7-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0a7-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/buster/Dockerfile) +- [`3.12.0a7-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0a7-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a7-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0a7-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) +- [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-bullseye/Dockerfile) +- [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/buster/Dockerfile) +- [`3.11.3-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-buster/Dockerfile) +- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.17/Dockerfile) +- [`3.11.3-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.16/Dockerfile) +- [`3.11.3-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.3-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.11-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/bullseye/Dockerfile) +- [`3.10.11-slim-bullseye`, `3.10-slim-bullseye`, `3.10.11-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-bullseye/Dockerfile) +- [`3.10.11-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/buster/Dockerfile) +- [`3.10.11-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-buster/Dockerfile) +- [`3.10.11-alpine3.17`, `3.10-alpine3.17`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.17/Dockerfile) +- [`3.10.11-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.16/Dockerfile) +- [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/bullseye/Dockerfile) +- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-bullseye/Dockerfile) +- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/buster/Dockerfile) +- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-buster/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.17/Dockerfile) +- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.16/Dockerfile) +- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/bullseye/Dockerfile) +- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-bullseye/Dockerfile) +- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/buster/Dockerfile) +- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-buster/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.17/Dockerfile) +- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.16/Dockerfile) +- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) +- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-bullseye/Dockerfile) +- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/buster/Dockerfile) +- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-buster/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.17/Dockerfile) +- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.16/Dockerfile) ## Shared Tags - `3.12.0a7`, `3.12-rc`: - - [`3.12.0a7-bullseye`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/bullseye/Dockerfile) + - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0a7-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/cb6ecdbcbc7e30a180481a9911f5f1f470b9dba1/3.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.3`, `3.11`, `3`, `latest`: - - [`3.11.3-bullseye`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/bullseye/Dockerfile) - - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.3-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) + - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.3-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bcce464bea3a9c7449a2fe217bf4c24e38e0a47/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.11`, `3.10`: - - [`3.10.11-bullseye`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/bullseye/Dockerfile) - - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.11-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/bullseye/Dockerfile) + - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10.11-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4c86fbef4c546a65e372c9bc8c27b8c17bfe42fd/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.9/bullseye/Dockerfile) + - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/bullseye/Dockerfile) - `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.8/bullseye/Dockerfile) + - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/8a8d6baac38dcd208f699ae2eb10f0893a764035/3.7/bullseye/Dockerfile) + - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index fc380de66d0e..77448279e1d8 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) - [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/alpine/Dockerfile) - [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.14`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/3ea9ce9d8236ae6b6c8a8a592d8eee16bd11589d/3.11/ubuntu/Dockerfile) -- [`3.11.14-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.14-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3ea9ce9d8236ae6b6c8a8a592d8eee16bd11589d/3.11/alpine/Dockerfile) -- [`3.11.14-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.21`, `3.10`](https://github.com/docker-library/rabbitmq/blob/f87b6cbcbe25573ea37f58d2449af3bfcedfa122/3.10/ubuntu/Dockerfile) -- [`3.10.21-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.21-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/f87b6cbcbe25573ea37f58d2449af3bfcedfa122/3.10/alpine/Dockerfile) -- [`3.10.21-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.11.15`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e667276a6f89ce21af3da179fd2178795f73c94e/3.11/ubuntu/Dockerfile) +- [`3.11.15-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e667276a6f89ce21af3da179fd2178795f73c94e/3.11/alpine/Dockerfile) +- [`3.11.15-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/49dac61352d0cca4f2c6628092c4576f390fa5fd/3.10/ubuntu/Dockerfile) +- [`3.10.22-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/49dac61352d0cca4f2c6628092c4576f390fa5fd/3.10/alpine/Dockerfile) +- [`3.10.22-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) - [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index eaf65f34fe09..aac68ad95c28 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/Dockerfile) +- [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.2-rc/Dockerfile) - [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.17`, `7.2-rc-alpine3.17`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/alpine/Dockerfile) -- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/3fd8719e1dbce24f9e493466ce6649860735b363/7.0/Dockerfile) +- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.0/Dockerfile) - [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/3fd8719e1dbce24f9e493466ce6649860735b363/7.0/alpine/Dockerfile) -- [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/1609d202febf50daa01c8effab2a72e2fab1c2b5/6.2/Dockerfile) +- [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.2/Dockerfile) - [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/1609d202febf50daa01c8effab2a72e2fab1c2b5/6.2/alpine/Dockerfile) -- [`6.0.19`, `6.0`, `6.0.19-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/e4599c8e3ff02de6d66c5ee5e4e8b19b74cbeec3/6.0/Dockerfile) +- [`6.0.19`, `6.0`, `6.0.19-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.0/Dockerfile) - [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e4599c8e3ff02de6d66c5ee5e4e8b19b74cbeec3/6.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 3857f222cc3f..40a6294f60cc 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,42 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M5-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M5-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M5-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M5`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/17250442a64aab56e229f14cf2a4f570da8bb48f/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M5-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M5-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M5-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M5`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/11.0/jdk17/temurin-jammy/Dockerfile) - [`11.0.0-M5-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M5-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M5-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/17250442a64aab56e229f14cf2a4f570da8bb48f/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.8-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.8-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.8-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.74-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.74-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.74-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.74`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.74-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.74-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.74-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.74`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.74-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.74-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.74-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.74-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.74-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/temurin-focal/Dockerfile) - [`9.0.74-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.74-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.74-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.74-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.74-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.74-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.74-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.74-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.74-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.74-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.74-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/temurin-jammy/Dockerfile) - [`9.0.74-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.74-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.74-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.74-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.74-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/temurin-focal/Dockerfile) - [`9.0.74-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.74-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.74-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.74-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.74-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.74-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.74-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.74-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.74-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.74-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.74-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/temurin-jammy/Dockerfile) - [`9.0.74-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.74-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.74-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.74-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.74-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.74-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.74-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.74-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/temurin-jammy/Dockerfile) +- [`9.0.74-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.74-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.88-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.88-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.88-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-focal/Dockerfile) - [`8.5.88-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.88-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.88-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.88-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.88-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.88-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.88-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.88-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.88-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.88-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.88-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-jammy/Dockerfile) - [`8.5.88-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.88-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.88-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.88-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.88-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-focal/Dockerfile) - [`8.5.88-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.88-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.88-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.88-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.88-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.88-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.88-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.88-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.88-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.88-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.88-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-jammy/Dockerfile) - [`8.5.88-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.88-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.88-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.88-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.88-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-focal/Dockerfile) - [`8.5.88-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.88-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.88-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.88-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.88-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 0e3c51ab09dd..17acd63e4b7d 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,9 +26,9 @@ WARNING: - [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308-0bf56b6b&id=0bf56b6beeb478aee688350c27d41e732048c9af) - [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412-26258b91&id=26258b9129f269190048fdf2b46d82de5ae5f79c) -- [`22.04`, `jammy-20230308`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230308-e17e4450&id=e17e4450874a7b28375b18f037bb7eb86e3e2590) +- [`22.04`, `jammy-20230425`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230425-997c5b6f&id=997c5b6fc12a87708c63485cb5599d85973ca211) - [`22.10`, `kinetic-20230412`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412-acd9976c&id=acd9976cf1d024747ad42960daa92bc3065e3a38) -- [`23.04`, `lunar-20230415`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230415-128b175f&id=128b175fd48d26f5e106f8b200d20617dd42c4f1) +- [`23.04`, `lunar-20230420`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230420-a3feaf47&id=a3feaf47f3c57e4aec70c8d07ecd8dde43e0be21) # Quick reference (cont.) From ba51d9c4578e2f3ab661c854d85e55fcee905eba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 May 2023 14:17:38 -0700 Subject: [PATCH 0268/2686] Run update.sh --- arangodb/README.md | 3 +- eclipse-temurin/README.md | 248 ++++++++++++++++++------------------ open-liberty/README.md | 50 ++++---- websphere-liberty/README.md | 44 ++++--- 4 files changed, 178 insertions(+), 167 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 02f5382a43e6..e585405c8dbb 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8`, `3.8.9`](https://github.com/arangodb/arangodb-docker/blob/da21330779b93bbdd399935479d66efa8563719c/alpine/3.8.9/Dockerfile) - [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.9.10/Dockerfile) -- [`3.10`, `3.10.5`, `3.10.5.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/b224376c65b4c5f4e24ad8c5c6b43d1862bbbf51/alpine/3.10.5.2/Dockerfile) +- [`3.10`, `3.10.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index cffe27be104c..9c5b51895fff 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,157 +28,157 @@ WARNING: ## Simple Tags -- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/alpine/Dockerfile.releases.full) -- [`8u372-b07-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u372-b07-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u372-b07-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/centos/Dockerfile.releases.full) -- [`8u372-b07-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u372-b07-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u372-b07-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/alpine/Dockerfile.releases.full) -- [`8u372-b07-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u372-b07-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u372-b07-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/centos/Dockerfile.releases.full) -- [`8u372-b07-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u372-b07-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.19_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.19_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.19_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.19_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.19_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.19_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.19_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.19_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.19_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/centos/Dockerfile.releases.full) -- [`11.0.19_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.19_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.7_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.7_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.7_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.7_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.7_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.7_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.7_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.7_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.7_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/centos/Dockerfile.releases.full) -- [`17.0.7_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.7_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/alpine/Dockerfile.releases.full) -- [`20.0.1_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.1_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.1_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/alpine/Dockerfile.releases.full) -- [`20.0.1_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.1_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.1_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/alpine/Dockerfile.releases.full) +- [`8u372-b07-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u372-b07-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u372-b07-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/centos/Dockerfile.releases.full) +- [`8u372-b07-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u372-b07-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u372-b07-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/alpine/Dockerfile.releases.full) +- [`8u372-b07-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u372-b07-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u372-b07-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/centos/Dockerfile.releases.full) +- [`8u372-b07-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u372-b07-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.19_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.19_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.19_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.19_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.19_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.19_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.19_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/centos/Dockerfile.releases.full) +- [`11.0.19_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.19_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.7_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.7_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.7_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.7_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.7_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.7_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.7_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/centos/Dockerfile.releases.full) +- [`17.0.7_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.7_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.1_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.1_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.1_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.1_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.1_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.1_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.1_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags - `8u372-b07-jdk`, `8-jdk`, `8`: - - [`8u372-b07-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`8u372-b07-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u372-b07-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u372-b07-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u372-b07-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) + - [`8u372-b07-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `8u372-b07-jre`, `8-jre`: - - [`8u372-b07-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`8u372-b07-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u372-b07-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u372-b07-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u372-b07-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) + - [`8u372-b07-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u372-b07-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.19_7-jdk`, `11-jdk`, `11`: - - [`11.0.19_7-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`11.0.19_7-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.19_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.19_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.19_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) + - [`11.0.19_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.19_7-jre`, `11-jre`: - - [`11.0.19_7-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`11.0.19_7-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.19_7-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.19_7-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.19_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) + - [`11.0.19_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.19_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.7_7-jdk`, `17-jdk`, `17`: - - [`17.0.7_7-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`17.0.7_7-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.7_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.7_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.7_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) + - [`17.0.7_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.7_7-jre`, `17-jre`: - - [`17.0.7_7-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`17.0.7_7-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.7_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.7_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.7_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) + - [`17.0.7_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.7_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.1_9-jdk`, `20-jdk`, `20`, `latest`: - - [`20.0.1_9-jdk-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`20.0.1_9-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.1_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.1_9-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) + - [`20.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.1_9-jre`, `20-jre`: - - [`20.0.1_9-jre-jammy`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`20.0.1_9-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.1_9-jre-windowsservercore`, `20-jre-windowsservercore`: - - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.1_9-jre-nanoserver`, `20-jre-nanoserver`: - - [`20.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/99918327b8e861a673f9d5edd58078eb54b50a1a/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) + - [`20.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.1_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 1f17ea3b0ed6..6926593353cd 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,27 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3b8859660fd56abe7a47595cae9287ebf7207bfe/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) @@ -52,7 +58,7 @@ WARNING: [https://github.com/OpenLiberty/ci.docker/issues](https://github.com/OpenLiberty/ci.docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/open-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/open-liberty/), [`s390x`](https://hub.docker.com/r/s390x/open-liberty/) + [`amd64`](https://hub.docker.com/r/amd64/open-liberty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/open-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/open-liberty/), [`s390x`](https://hub.docker.com/r/s390x/open-liberty/) - **Published image artifact details**: [repo-info repo's `repos/open-liberty/` directory](https://github.com/docker-library/repo-info/blob/master/repos/open-liberty) ([history](https://github.com/docker-library/repo-info/commits/master/repos/open-liberty)) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 8f3cff3197dd..318310d5bc72 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,24 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/013ef8e372c4468a8a30c9c26837b86cfc9de003/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) @@ -49,7 +55,7 @@ WARNING: [https://github.com/WASdev/ci.docker/issues](https://github.com/WASdev/ci.docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/websphere-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/websphere-liberty/), [`s390x`](https://hub.docker.com/r/s390x/websphere-liberty/) + [`amd64`](https://hub.docker.com/r/amd64/websphere-liberty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/websphere-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/websphere-liberty/), [`s390x`](https://hub.docker.com/r/s390x/websphere-liberty/) - **Published image artifact details**: [repo-info repo's `repos/websphere-liberty/` directory](https://github.com/docker-library/repo-info/blob/master/repos/websphere-liberty) ([history](https://github.com/docker-library/repo-info/commits/master/repos/websphere-liberty)) From 571dce7d412ccf132509d801e1a41ce25b721a71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 May 2023 16:08:44 -0700 Subject: [PATCH 0269/2686] Run update.sh --- drupal/README.md | 68 +++++++++++++++++++++---------------------- ghost/README.md | 6 ++-- hello-world/README.md | 4 +-- 3 files changed, 38 insertions(+), 40 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index e47e3807440b..02e8355336d1 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,40 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.8-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.8-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.8-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.8-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.8-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.8`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.8-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.8-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.8-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.8-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.8-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.8-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.8-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.8-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.8-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.8-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.8-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.8-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.8-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.8-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.2/fpm-alpine3.16/Dockerfile) -- [`10.0.8-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.8-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.8-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.8-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.8-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.8-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.8-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.8-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.8-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.8-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/3457f4c22a63d504bfbce5678768087a3255ce70/10.0/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.8-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.8-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.8-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.8-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.8-apache`, `9.5-apache`, `9-apache`, `9.5.8`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.8-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.8-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.8-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.8-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.8-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.8-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.8-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.8-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.8-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.8-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.8-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.8-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.8-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.8-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.5.8-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.8-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.8-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.8-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.8-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.8-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.8-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.8-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/fe51f9eee5e8060ce7a88d43897defa613a1eaea/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.14-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.14-php8.1-apache`, `9.4-php8.1-apache`, `9.4.14-php8.1`, `9.4-php8.1`, `9.4.14-apache-bullseye`, `9.4-apache-bullseye`, `9.4.14-apache`, `9.4-apache`, `9.4.14`, `9.4`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.14-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.14-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.14-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.14-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.14-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.14-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.14-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.14-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.14-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.14-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.14-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.14-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.14-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.14-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.1/fpm-alpine3.16/Dockerfile) -- [`9.4.14-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.14-php8.0-apache`, `9.4-php8.0-apache`, `9.4.14-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.14-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.14-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.14-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.14-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.14-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/bb50b219850ecb86ada6e76903a2d4d7fb5da68e/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.0.9-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.9-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.9-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.9-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.9-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.9`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.9-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.9-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.9-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.9-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.9-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.9-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/apache-buster/Dockerfile) +- [`10.0.9-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.9-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.9-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.9-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.9-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.9-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.9-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.9-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.9-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.9-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.9-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.9-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.9-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.9-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-buster/Dockerfile) +- [`10.0.9-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.9-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.9-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.9-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.9-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.9-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.9-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.9-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.9-apache`, `9.5-apache`, `9-apache`, `9.5.9`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.9-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.9-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.9-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.9-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.9-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.9-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-buster/Dockerfile) +- [`9.5.9-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.9-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.9-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.9-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.9-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.9-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.9-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.9-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.9-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.9-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.9-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.9-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.9-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.9-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.9-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.9-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`9.4.15-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.15-php8.1-apache`, `9.4-php8.1-apache`, `9.4.15-php8.1`, `9.4-php8.1`, `9.4.15-apache-bullseye`, `9.4-apache-bullseye`, `9.4.15-apache`, `9.4-apache`, `9.4.15`, `9.4`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.15-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.15-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.15-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.15-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-bullseye/Dockerfile) +- [`9.4.15-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.15-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/apache-buster/Dockerfile) +- [`9.4.15-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.15-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.15-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.15-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.15-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.15-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.4.15-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.15-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.15-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.15-php8.0-apache`, `9.4-php8.0-apache`, `9.4.15-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.15-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.15-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.15-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.15-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-alpine3.16/Dockerfile) - [`7.97-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.97-php8.0-apache`, `7-php8.0-apache`, `7.97-php8.0`, `7-php8.0`, `7.97-apache-bullseye`, `7-apache-bullseye`, `7.97-apache`, `7-apache`, `7.97`, `7`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-bullseye/Dockerfile) - [`7.97-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.97-php8.0-fpm`, `7-php8.0-fpm`, `7.97-fpm-bullseye`, `7-fpm-bullseye`, `7.97-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-bullseye/Dockerfile) - [`7.97-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.97-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-buster/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 169d897966f1..9d4bc5abc35f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,10 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.46.0`, `5.46`, `5`, `latest`](https://github.com/docker-library/ghost/blob/52120baced943e80fe124547915d1a3b74f0a59e/5/debian/Dockerfile) -- [`5.46.0-alpine`, `5.46-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/05cab36b13139f3a51195342e4b12240dc782feb/5/alpine/Dockerfile) -- [`4.48.9`, `4.48`, `4`](https://github.com/docker-library/ghost/blob/52120baced943e80fe124547915d1a3b74f0a59e/4/debian/Dockerfile) -- [`4.48.9-alpine`, `4.48-alpine`, `4-alpine`](https://github.com/docker-library/ghost/blob/1f74dbadd9f1959422a4e42c3f9c0f5d281c4461/4/alpine/Dockerfile) +- [`5.46.1`, `5.46`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0aa53c668dd7ce7be4f5c02c8283849f37228099/5/debian/Dockerfile) +- [`5.46.1-alpine`, `5.46-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0aa53c668dd7ce7be4f5c02c8283849f37228099/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hello-world/README.md b/hello-world/README.md index 73b30e657c5d..d454942d3746 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`linux`](https://github.com/docker-library/hello-world/blob/3332fbee4210b41738d83f6cfdc301a42b96e30d/amd64/hello-world/Dockerfile) +- [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) ## Shared Tags - `latest`: - - [`linux`](https://github.com/docker-library/hello-world/blob/3332fbee4210b41738d83f6cfdc301a42b96e30d/amd64/hello-world/Dockerfile) + - [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) - `nanoserver`: From 19ce7dcb22e2c0d6428669a4099f72e9a6e9ad34 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 May 2023 11:08:44 -0700 Subject: [PATCH 0270/2686] Run update.sh --- hello-world/README.md | 2 +- hello-world/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hello-world/README.md b/hello-world/README.md index d454942d3746..5ab1be008de4 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -90,7 +90,7 @@ For more examples and ideas, visit: $ docker images hello-world REPOSITORY TAG IMAGE ID SIZE -hello-world latest feb5d9fea6a5 13.26kB +hello-world latest 9c7a54a9a43c 13.26kB ``` ![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/hello-world/logo.png) diff --git a/hello-world/content.md b/hello-world/content.md index fc79d8d7f4c3..18a58e780746 100644 --- a/hello-world/content.md +++ b/hello-world/content.md @@ -27,7 +27,7 @@ For more examples and ideas, visit: $ docker images %%IMAGE%% REPOSITORY TAG IMAGE ID SIZE -hello-world latest feb5d9fea6a5 13.26kB +hello-world latest 9c7a54a9a43c 13.26kB ``` %%LOGO%% From 2c96c7fcc6a3f781b55c13a904ef2a59e5d16cff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 May 2023 12:08:45 -0700 Subject: [PATCH 0271/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- fedora/README.md | 8 ++++---- node/README.md | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index f2331a5a8f41..9c5050b21aee 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.0.20230322.0`](https://github.com/amazonlinux/container-images/blob/292aeb369bf259202dae0fefee00210edb3dcd54/Dockerfile) -- [`2`, `2.0.20230320.0`](https://github.com/amazonlinux/container-images/blob/8bd6e8ab85a58c9bc06cc0b6a8bd94ed47d5b89d/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230322.0`](https://github.com/amazonlinux/container-images/blob/a01e35072fd6710b02953f2f6e84c4a501cdd381/Dockerfile) +- [`2023`, `latest`, `2023.0.20230503.0`](https://github.com/amazonlinux/container-images/blob/ea5a916817e6c6bd0f031358bb8f4f5c272d7de1/Dockerfile) +- [`2`, `2.0.20230418.0`](https://github.com/amazonlinux/container-images/blob/8bd72a51cb5cdb1ccee4b9c6ed0120794cc63388/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230419.0`](https://github.com/amazonlinux/container-images/blob/9a31073361b306f3cf92e9dfe8cd76192e04d2f7/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 10006cc3e231..9c87df0246bd 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/acb8d8b34133ca30459a1864623b501c2dba6164/x86_64/Dockerfile) -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/205f58bd68006264368f1ca47cb5af6338107745/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2c3a7ab42b7b40c3b976e3675583d3ba3a9bea60/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c01a9e66a588ac510a9b203906689caae879fb0c/x86_64/Dockerfile) +- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a08e597f3f6b6525b4a9aa4436555087cdd11189/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1b5eff3dd490b6c1ce6772dd9d229e4612b7aedc/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8bff5c9d57ff58ad15a49c0b738a52fa9c4b9149/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/523ad92207c0d13de8e17a3d93620299ff09ecfd/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index a562e0520a87..bcea98f4654f 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.16`, `20.0-alpine3.16`, `20.0.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/alpine3.16/Dockerfile) -- [`20-alpine`, `20-alpine3.17`, `20.0-alpine`, `20.0-alpine3.17`, `20.0.0-alpine`, `20.0.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/alpine3.17/Dockerfile) -- [`20`, `20-bullseye`, `20.0`, `20.0-bullseye`, `20.0.0`, `20.0.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20-slim`, `20.0-bullseye-slim`, `20.0-slim`, `20.0.0-bullseye-slim`, `20.0.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.0-buster`, `20.0.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/buster/Dockerfile) -- [`20-buster-slim`, `20.0-buster-slim`, `20.0.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/2ba234d0ebc92c4b802d859c5690670550bc6f11/20/buster-slim/Dockerfile) +- [`20-alpine3.16`, `20.1-alpine3.16`, `20.1.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/alpine3.16/Dockerfile) +- [`20-alpine`, `20-alpine3.17`, `20.1-alpine`, `20.1-alpine3.17`, `20.1.0-alpine`, `20.1.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/alpine3.17/Dockerfile) +- [`20`, `20-bullseye`, `20.1`, `20.1-bullseye`, `20.1.0`, `20.1.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20-slim`, `20.1-bullseye-slim`, `20.1-slim`, `20.1.0-bullseye-slim`, `20.1.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.1-buster`, `20.1.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/buster/Dockerfile) +- [`20-buster-slim`, `20.1-buster-slim`, `20.1.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/buster-slim/Dockerfile) - [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) - [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) - [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) From 18a2b40b6f804bc3d7e5b539a4da6a3193f7a60b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 May 2023 15:15:29 -0700 Subject: [PATCH 0272/2686] Run update.sh --- friendica/README.md | 12 ++++++------ haproxy/README.md | 2 -- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index e493f74690a9..f793e97780ce 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/apache/Dockerfile) -- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/fpm/Dockerfile) -- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/5449e15507f878b283e8ecd080f658484a9c76c0/2023.04/fpm-alpine/Dockerfile) -- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/apache/Dockerfile) -- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm/Dockerfile) -- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cea4594e50dd7f8b048ce2fdc5b15b2956d79255/2023.06-dev/fpm-alpine/Dockerfile) +- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/apache/Dockerfile) +- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/fpm/Dockerfile) +- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/fpm-alpine/Dockerfile) +- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/apache/Dockerfile) +- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/fpm/Dockerfile) +- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 375fc232aa72..49efddcbda14 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -30,8 +30,6 @@ WARNING: - [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) - [`2.6.13-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.13-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/alpine/Dockerfile) -- [`2.5.14`, `2.5`, `2.5.14-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/a90674f66bb5f9a61a42abfb38d3bebfa879af3f/2.5/Dockerfile) -- [`2.5.14-alpine`, `2.5-alpine`, `2.5.14-alpine3.17`, `2.5-alpine3.17`](https://github.com/docker-library/haproxy/blob/a90674f66bb5f9a61a42abfb38d3bebfa879af3f/2.5/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) - [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) From 1d8a2b59a406a26f5f0764931a4ca9db5594daf4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 May 2023 16:08:44 -0700 Subject: [PATCH 0273/2686] Run update.sh --- bash/README.md | 24 ++++++++++++------------ openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/bash/README.md b/bash/README.md index 09627b48c257..a8c225ed9116 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230405`, `devel`, `devel-20230405-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/e13beacb29e8b810c88894444394c1778abdd074/devel/Dockerfile) -- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.17`, `4.4-alpine3.17`, `4-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.17`, `4.3-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.17`, `4.2-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.17`, `4.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.17`, `4.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.17`, `3.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.17`, `3.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/eb7e541caccc813d297e77cf4068f89553256673/3.0/Dockerfile) +- [`devel-20230501`, `devel`, `devel-20230501-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/8cd4a6cbc4e48fd98b8336c911a2a39680a8dd7e/devel/Dockerfile) +- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.2/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.1/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.0/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.17`, `4.4-alpine3.17`, `4-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.4/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.17`, `4.3-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.3/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.17`, `4.2-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.2/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.17`, `4.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.1/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.17`, `4.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.0/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.2/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.17`, `3.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.1/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.17`, `3.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 129dce04c41b..46fbb736a135 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-20-jdk-oraclelinux8`, `21-ea-20-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-20-jdk-oracle`, `21-ea-20-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-20-jdk-oraclelinux7`, `21-ea-20-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-20-jdk-bullseye`, `21-ea-20-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/bullseye/Dockerfile) -- [`21-ea-20-jdk-slim-bullseye`, `21-ea-20-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-20-jdk-slim`, `21-ea-20-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-20-jdk-buster`, `21-ea-20-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/buster/Dockerfile) -- [`21-ea-20-jdk-slim-buster`, `21-ea-20-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/slim-buster/Dockerfile) -- [`21-ea-20-jdk-windowsservercore-ltsc2022`, `21-ea-20-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-20-jdk-windowsservercore-1809`, `21-ea-20-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-20-jdk-nanoserver-1809`, `21-ea-20-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-21-jdk-oraclelinux8`, `21-ea-21-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-21-jdk-oracle`, `21-ea-21-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-21-jdk-oraclelinux7`, `21-ea-21-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-21-jdk-bullseye`, `21-ea-21-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/bullseye/Dockerfile) +- [`21-ea-21-jdk-slim-bullseye`, `21-ea-21-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-21-jdk-slim`, `21-ea-21-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-21-jdk-buster`, `21-ea-21-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/buster/Dockerfile) +- [`21-ea-21-jdk-slim-buster`, `21-ea-21-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/slim-buster/Dockerfile) +- [`21-ea-21-jdk-windowsservercore-ltsc2022`, `21-ea-21-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-21-jdk-windowsservercore-1809`, `21-ea-21-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-21-jdk-nanoserver-1809`, `21-ea-21-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-20-jdk`, `21-ea-20`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-20-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-20-jdk-windowsservercore`, `21-ea-20-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-20-jdk-nanoserver`, `21-ea-20-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3c0c33d8d3ddd76b842bec8a2b1ea67e82658e13/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-21-jdk`, `21-ea-21`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-21-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-21-jdk-windowsservercore`, `21-ea-21-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-21-jdk-nanoserver`, `21-ea-21-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From c08d023004ca15c588238e8c0b8e2d6c68df3458 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 May 2023 11:17:29 -0700 Subject: [PATCH 0274/2686] Run update.sh --- erlang/README.md | 6 +++--- neo4j/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 24a936c25127..a0b0e193eb17 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,9 +27,9 @@ WARNING: - [`26.0-rc3.0.0`, `26.0-rc3.0`, `26.0-rc3`, `26`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/Dockerfile) - [`26.0-rc3.0.0-slim`, `26.0-rc3.0-slim`, `26.0-rc3-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/slim/Dockerfile) - [`26.0-rc3.0.0-alpine`, `26.0-rc3.0-alpine`, `26.0-rc3-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/alpine/Dockerfile) -- [`25.3.1.0`, `25.3.1`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/Dockerfile) -- [`25.3.1.0-slim`, `25.3.1-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/slim/Dockerfile) -- [`25.3.1.0-alpine`, `25.3.1-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/09b72fdc2ffcceabdf9422bb51517d28821bd09a/25/alpine/Dockerfile) +- [`25.3.2.0`, `25.3.2`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/Dockerfile) +- [`25.3.2.0-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/slim/Dockerfile) +- [`25.3.2.0-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/alpine/Dockerfile) - [`24.3.4.11`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/Dockerfile) - [`24.3.4.11-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/slim/Dockerfile) - [`24.3.4.11-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/alpine/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 39d3ec84de53..40cfedd1ae62 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.7.0`, `5.7.0-community`, `5.7`, `5.7-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/community/Dockerfile) - [`5.7.0-enterprise`, `5.7-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/enterprise/Dockerfile) -- [`4.4.19`, `4.4.19-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/community/Dockerfile) -- [`4.4.19-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5342ba80874c712680dfaf5be3e44cd37ca5d1f8/4.4.19/enterprise/Dockerfile) +- [`4.4.20`, `4.4.20-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/community/Dockerfile) +- [`4.4.20-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/enterprise/Dockerfile) # Quick reference (cont.) From 630666de88610cc74e3dbcbcbb88b86aa6a85bf0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 May 2023 12:16:06 -0700 Subject: [PATCH 0275/2686] Run update.sh --- cassandra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/README.md b/cassandra/README.md index 6b78f30ec534..e9ebe43dca1e 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.1/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.0/Dockerfile) -- [`3.11.14`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/3.11/Dockerfile) +- [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) - [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/3.0/Dockerfile) # Quick reference (cont.) From 6decb5eb1d71c1dc0b4ccd0fb13d0e6a4dbd19c4 Mon Sep 17 00:00:00 2001 From: Sid McLaughlin Date: Sat, 6 May 2023 10:38:11 -0700 Subject: [PATCH 0276/2686] Fix typo in "Production mode" docs Fix typo, updating _X-Forwared-Host_ to _X-Forwarded-Host_. --- ghost/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/content.md b/ghost/content.md index 0b42e0b5622a..4a9f1607841d 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -85,7 +85,7 @@ While the Docker images do have Ghost-CLI available and do use some of its comma ## Production mode -To run Ghost for production you'll also need to be running with MySQL 8, https, and a reverse proxy configured with appropriate `X-Forwarded-For`, `X-Forwared-Host`, and `X-Forwarded-Proto` (`https`) headers. +To run Ghost for production you'll also need to be running with MySQL 8, https, and a reverse proxy configured with appropriate `X-Forwarded-For`, `X-Forwarded-Host`, and `X-Forwarded-Proto` (`https`) headers. The following example demonstrates some of the necessary configuration for running with MySQL. For more detail, see [Ghost's "Configuration options" documentation](https://ghost.org/docs/config/#configuration-options). From eb34efeaf92428afecd5375459c3fe3e657bb9f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 May 2023 12:15:55 -0700 Subject: [PATCH 0277/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- ghost/README.md | 2 +- groovy/README.md | 10 +++++----- photon/README.md | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 82f783332daf..7a33cc5d0752 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230430.0.146624`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/60929acedfaddae560cdde459ebb2fc64b0b51a7/Dockerfile.base) -- [`base-devel`, `base-devel-20230430.0.146624`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/60929acedfaddae560cdde459ebb2fc64b0b51a7/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230507.0.148551`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a4485766c3fd1502a512a724f7a3620cf5693c5a/Dockerfile.base) +- [`base-devel`, `base-devel-20230507.0.148551`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a4485766c3fd1502a512a724f7a3620cf5693c5a/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2ccd11bad40a..663fca036986 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6acca8e63a3c88b91e943d82fb83d48b4d76e995/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b490e027e92877683f967ec1f4709f2fbad749a3/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9d4bc5abc35f..453f31641e88 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -133,7 +133,7 @@ While the Docker images do have Ghost-CLI available and do use some of its comma ## Production mode -To run Ghost for production you'll also need to be running with MySQL 8, https, and a reverse proxy configured with appropriate `X-Forwarded-For`, `X-Forwared-Host`, and `X-Forwarded-Proto` (`https`) headers. +To run Ghost for production you'll also need to be running with MySQL 8, https, and a reverse proxy configured with appropriate `X-Forwarded-For`, `X-Forwarded-Host`, and `X-Forwarded-Proto` (`https`) headers. The following example demonstrates some of the necessary configuration for running with MySQL. For more detail, see [Ghost's "Configuration options" documentation](https://ghost.org/docs/config/#configuration-options). diff --git a/groovy/README.md b/groovy/README.md index c91c6cbc11d7..3965354baf77 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.11-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.11-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk8/Dockerfile) -- [`4.0.11-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.11-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk11/Dockerfile) -- [`4.0.11-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk11-alpine/Dockerfile) -- [`4.0.11-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.11-jdk`, `4.0-jdk`, `4.0.11`, `4.0`, `4`, `jdk`, `latest`, `4.0.11-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.11-jdk-jammy`, `4.0-jdk-jammy`, `4.0.11-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk17/Dockerfile) -- [`4.0.11-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.11-jdk-alpine`, `4.0-jdk-alpine`, `4.0.11-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/5afe522b4ee860b3f2de4aef0a4af1a92844021c/jdk17-alpine/Dockerfile) +- [`4.0.12-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.12-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk8/Dockerfile) +- [`4.0.12-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.12-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk11/Dockerfile) +- [`4.0.12-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk11-alpine/Dockerfile) +- [`4.0.12-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.12-jdk`, `4.0-jdk`, `4.0.12`, `4.0`, `4`, `jdk`, `latest`, `4.0.12-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.12-jdk-jammy`, `4.0-jdk-jammy`, `4.0.12-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk17/Dockerfile) +- [`4.0.12-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.12-jdk-alpine`, `4.0-jdk-alpine`, `4.0.12-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 4efb2681920e..fcfeff47a10d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230501`, `5.0-GA`](https://github.com/vmware/photon-docker-image/blob/78d4b9fda369eeef1aedf73e27f6f41c6ca49726/docker/Dockerfile) -- [`4.0`, `4.0-20230429`, `latest`](https://github.com/vmware/photon-docker-image/blob/546dbe1ca835a63f47497c9843fd54b89a576aa1/docker/Dockerfile) +- [`4.0`, `4.0-20230506`, `latest`](https://github.com/vmware/photon-docker-image/blob/4a20654b07e42375415fdf6a1c6cf863059f9bfb/docker/Dockerfile) - [`3.0`, `3.0-20230408`](https://github.com/vmware/photon-docker-image/blob/b7616914fd9dd6584a91df971767d6e5e93de55d/docker/Dockerfile) # Quick reference (cont.) From 64575559682b7e33bee2e0376f7bc814930cb3b4 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 8 May 2023 14:55:33 -0700 Subject: [PATCH 0278/2686] Adjust GitHub issues URL to include PRs + closed Hopefully this helps users find PRs and closed issues more easily when they're going to file an issue. --- .template-helpers/issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.template-helpers/issues.md b/.template-helpers/issues.md index d2dbb7fccc4a..95588e2904a5 100644 --- a/.template-helpers/issues.md +++ b/.template-helpers/issues.md @@ -1 +1 @@ -[%%GITHUB-REPO%%/issues](%%GITHUB-REPO%%/issues) +[%%GITHUB-REPO%%/issues](%%GITHUB-REPO%%/issues?q=) From 98913ee1e0fee2802ba637aafbbdb34606af2cc0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 May 2023 11:08:54 -0700 Subject: [PATCH 0279/2686] Run update.sh --- docker/README.md | 36 ++++++++++++++++++------------------ gcc/README.md | 2 +- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- photon/README.md | 4 ++-- rabbitmq/README.md | 16 ++++++++-------- xwiki/README.md | 6 +++--- 7 files changed, 36 insertions(+), 36 deletions(-) diff --git a/docker/README.md b/docker/README.md index b1c6bcaf365d..9257f714e98b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`24.0.0-rc.1-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.1-cli-alpine3.17`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/cli/Dockerfile) -- [`24.0.0-rc.1-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.1-dind-alpine3.17`, `24.0.0-rc.1`, `24-rc`, `rc`, `24.0.0-rc.1-alpine3.17`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/dind/Dockerfile) -- [`24.0.0-rc.1-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-rc.1-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) -- [`24.0.0-rc.1-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-rc.1-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.5-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.5-cli-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/cli/Dockerfile) -- [`23.0.5-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.5-dind-alpine3.17`, `23.0.5`, `23.0`, `23`, `latest`, `23.0.5-alpine3.17`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind/Dockerfile) -- [`23.0.5-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/dind-rootless/Dockerfile) -- [`23.0.5-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) -- [`23.0.5-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.5-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-rc.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/cli/Dockerfile) +- [`24.0.0-rc.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.2-dind-alpine3.17`, `24.0.0-rc.2`, `24-rc`, `rc`, `24.0.0-rc.2-alpine3.17`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind/Dockerfile) +- [`24.0.0-rc.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-rc.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) +- [`24.0.0-rc.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-rc.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/cli/Dockerfile) +- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.17`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.17`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) +- [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) +- [`23.0.6-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) - [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/cli/Dockerfile) - [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) - [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) @@ -49,12 +49,12 @@ WARNING: ## Shared Tags -- `24.0.0-rc.1-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/89b91f8164bd6a6bce035a1b8915df566994fb84/24-rc/windows/windowsservercore-1809/Dockerfile) -- `23.0.5-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d49ab87c526dae0fa10ba50fede014c33ec80b3c/23.0/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-rc.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-1809/Dockerfile) +- `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) - `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) diff --git a/gcc/README.md b/gcc/README.md index 93ff8ebbbb85..6977337901d7 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/13/Dockerfile) -- [`12.2.0`, `12.2`, `12`, `12.2.0-bullseye`, `12.2-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/12/Dockerfile) +- [`12.3.0`, `12.3`, `12`, `12.3.0-bullseye`, `12.3-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/dfa419750ef32e01ce5715a08533397f570f1133/12/Dockerfile) - [`11.3.0`, `11.3`, `11`, `11.3.0-bullseye`, `11.3-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/11/Dockerfile) - [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/10/Dockerfile) - [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/9/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 453f31641e88..535a0e83fae5 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.46.1`, `5.46`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0aa53c668dd7ce7be4f5c02c8283849f37228099/5/debian/Dockerfile) -- [`5.46.1-alpine`, `5.46-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0aa53c668dd7ce7be4f5c02c8283849f37228099/5/alpine/Dockerfile) +- [`5.47.0`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f20d8389dceceff7ab58b31f44010d9f6eb841b3/5/debian/Dockerfile) +- [`5.47.0-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f20d8389dceceff7ab58b31f44010d9f6eb841b3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 49efddcbda14..dc2a01c4a1a1 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev9`, `2.8-dev`, `2.8-dev9-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/21adfa0af8cd7da14cd85ce0e03aa75b3912dfbf/2.8/Dockerfile) -- [`2.8-dev9-alpine`, `2.8-dev-alpine`, `2.8-dev9-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/21adfa0af8cd7da14cd85ce0e03aa75b3912dfbf/2.8/alpine/Dockerfile) +- [`2.8-dev10`, `2.8-dev`, `2.8-dev10-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/ce432ec1d0ed66b18ebf2418772652137dac7b94/2.8/Dockerfile) +- [`2.8-dev10-alpine`, `2.8-dev-alpine`, `2.8-dev10-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/ce432ec1d0ed66b18ebf2418772652137dac7b94/2.8/alpine/Dockerfile) - [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) - [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) diff --git a/photon/README.md b/photon/README.md index fcfeff47a10d..5eddf9d77270 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230501`, `5.0-GA`](https://github.com/vmware/photon-docker-image/blob/78d4b9fda369eeef1aedf73e27f6f41c6ca49726/docker/Dockerfile) -- [`4.0`, `4.0-20230506`, `latest`](https://github.com/vmware/photon-docker-image/blob/4a20654b07e42375415fdf6a1c6cf863059f9bfb/docker/Dockerfile) +- [`5.0`, `5.0-20230508`, `latest`](https://github.com/vmware/photon-docker-image/blob/632a31370122286585265e8f90f8d01abf6b48f8/docker/Dockerfile) +- [`4.0`, `4.0-20230506`](https://github.com/vmware/photon-docker-image/blob/4a20654b07e42375415fdf6a1c6cf863059f9bfb/docker/Dockerfile) - [`3.0`, `3.0-20230408`](https://github.com/vmware/photon-docker-image/blob/b7616914fd9dd6584a91df971767d6e5e93de55d/docker/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 77448279e1d8..8fabac424bfb 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6445a8d1b16de9188bccfb0b29ab0cf448eadbb3/3.12-rc/ubuntu/Dockerfile) - [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3ba713dad126e9b30f4fb4cf5e2da3419233d890/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6445a8d1b16de9188bccfb0b29ab0cf448eadbb3/3.12-rc/alpine/Dockerfile) - [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.15`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e667276a6f89ce21af3da179fd2178795f73c94e/3.11/ubuntu/Dockerfile) +- [`3.11.15`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8de237303dee7eece27df0c56a13cf97714341d4/3.11/ubuntu/Dockerfile) - [`3.11.15-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e667276a6f89ce21af3da179fd2178795f73c94e/3.11/alpine/Dockerfile) +- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8de237303dee7eece27df0c56a13cf97714341d4/3.11/alpine/Dockerfile) - [`3.11.15-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/49dac61352d0cca4f2c6628092c4576f390fa5fd/3.10/ubuntu/Dockerfile) +- [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/ubuntu/Dockerfile) - [`3.10.22-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/49dac61352d0cca4f2c6628092c4576f390fa5fd/3.10/alpine/Dockerfile) +- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/alpine/Dockerfile) - [`3.10.22-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c5154e95d30f1d5ef9b99062769995f1e8578329/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 46dfb49652f6..4c07be3c73bc 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.3`, `15.3.0`, `15-mysql-tomcat`, `15.3-mysql-tomcat`, `15.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.3-postgres-tomcat`, `15.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.9`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3bc0c850d5d1f0f66e6f6bbe07561fe0a2c1132c/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.10`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From b8ffb81d692ba4151df75fb1c13d914069682716 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 May 2023 14:18:03 -0700 Subject: [PATCH 0280/2686] Run update.sh --- adminer/README.md | 2 +- alpine/README.md | 2 +- amazoncorretto/README.md | 2 +- api-firewall/README.md | 2 +- arangodb/README.md | 2 +- backdrop/README.md | 2 +- bash/README.md | 2 +- buildpack-deps/README.md | 2 +- busybox/README.md | 2 +- caddy/README.md | 2 +- cassandra/README.md | 2 +- chronograf/README.md | 2 +- cirros/README.md | 2 +- clearlinux/README.md | 2 +- clojure/README.md | 2 +- composer/README.md | 2 +- consul/README.md | 2 +- convertigo/README.md | 2 +- couchbase/README.md | 2 +- couchdb/README.md | 2 +- crate/README.md | 2 +- dart/README.md | 2 +- debian/README.md | 2 +- docker/README.md | 2 +- drupal/README.md | 2 +- eclipse-mosquitto/README.md | 2 +- eggdrop/README.md | 2 +- elixir/README.md | 2 +- emqx/README.md | 2 +- erlang/README.md | 2 +- express-gateway/README.md | 2 +- fluentd/README.md | 2 +- friendica/README.md | 2 +- gazebo/README.md | 2 +- gcc/README.md | 2 +- geonetwork/README.md | 2 +- ghost/README.md | 2 +- golang/README.md | 2 +- gradle/README.md | 2 +- groovy/README.md | 2 +- haproxy/README.md | 2 +- haskell/README.md | 2 +- haxe/README.md | 2 +- hello-world/README.md | 2 +- hitch/README.md | 2 +- httpd/README.md | 2 +- hylang/README.md | 2 +- influxdb/README.md | 2 +- irssi/README.md | 2 +- jetty/README.md | 2 +- jobber/README.md | 2 +- joomla/README.md | 2 +- jruby/README.md | 2 +- julia/README.md | 2 +- kapacitor/README.md | 2 +- kong/README.md | 2 +- lightstreamer/README.md | 2 +- mageia/README.md | 2 +- matomo/README.md | 2 +- maven/README.md | 2 +- memcached/README.md | 2 +- mongo-express/README.md | 2 +- mongo/README.md | 2 +- monica/README.md | 2 +- mono/README.md | 2 +- mysql/README.md | 2 +- nats-streaming/README.md | 2 +- nats/README.md | 2 +- neo4j/README.md | 2 +- neurodebian/README.md | 2 +- nextcloud/README.md | 2 +- nginx/README.md | 2 +- node/README.md | 2 +- notary/README.md | 2 +- odoo/README.md | 2 +- open-liberty/README.md | 2 +- openjdk/README.md | 2 +- oraclelinux/README.md | 2 +- orientdb/README.md | 2 +- perl/README.md | 2 +- photon/README.md | 2 +- php/README.md | 2 +- phpmyadmin/README.md | 2 +- plone/README.md | 2 +- postfixadmin/README.md | 2 +- postgres/README.md | 2 +- pypy/README.md | 2 +- python/README.md | 2 +- rabbitmq/README.md | 2 +- rakudo-star/README.md | 2 +- redis/README.md | 2 +- redmine/README.md | 2 +- registry/README.md | 2 +- rethinkdb/README.md | 2 +- rocket.chat/README.md | 2 +- ros/README.md | 2 +- ruby/README.md | 2 +- rust/README.md | 2 +- satosa/README.md | 2 +- silverpeas/README.md | 2 +- sl/README.md | 2 +- sonarqube/README.md | 2 +- spiped/README.md | 2 +- storm/README.md | 2 +- swipl/README.md | 2 +- teamspeak/README.md | 2 +- telegraf/README.md | 2 +- tomcat/README.md | 2 +- tomee/README.md | 2 +- traefik/README.md | 2 +- unit/README.md | 2 +- varnish/README.md | 2 +- vault/README.md | 2 +- websphere-liberty/README.md | 2 +- wordpress/README.md | 2 +- yourls/README.md | 2 +- znc/README.md | 2 +- zookeeper/README.md | 2 +- 118 files changed, 118 insertions(+), 118 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 4fdce9711b15..049e52bc7ae6 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/TimWolla/docker-adminer/issues](https://github.com/TimWolla/docker-adminer/issues) + [https://github.com/TimWolla/docker-adminer/issues](https://github.com/TimWolla/docker-adminer/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/adminer/), [`arm32v5`](https://hub.docker.com/r/arm32v5/adminer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/adminer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/adminer/), [`i386`](https://hub.docker.com/r/i386/adminer/), [`mips64le`](https://hub.docker.com/r/mips64le/adminer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/adminer/), [`s390x`](https://hub.docker.com/r/s390x/adminer/) diff --git a/alpine/README.md b/alpine/README.md index d2ad8ef61531..94f9b241fc69 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/alpinelinux/docker-alpine/issues](https://github.com/alpinelinux/docker-alpine/issues) + [https://github.com/alpinelinux/docker-alpine/issues](https://github.com/alpinelinux/docker-alpine/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/alpine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/alpine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/alpine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/alpine/), [`i386`](https://hub.docker.com/r/i386/alpine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/alpine/), [`riscv64`](https://hub.docker.com/r/riscv64/alpine/), [`s390x`](https://hub.docker.com/r/s390x/alpine/) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index f59ac963aad0..ccc1427f4241 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -59,7 +59,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/corretto/corretto-docker/issues](https://github.com/corretto/corretto-docker/issues) + [https://github.com/corretto/corretto-docker/issues](https://github.com/corretto/corretto-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/amazoncorretto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/amazoncorretto/) diff --git a/api-firewall/README.md b/api-firewall/README.md index 1b7d9f1c5173..1ba6accd7f0a 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/wallarm/api-firewall/issues](https://github.com/wallarm/api-firewall/issues) + [https://github.com/wallarm/api-firewall/issues](https://github.com/wallarm/api-firewall/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/api-firewall/), [`arm64v8`](https://hub.docker.com/r/arm64v8/api-firewall/), [`i386`](https://hub.docker.com/r/i386/api-firewall/) diff --git a/arangodb/README.md b/arangodb/README.md index e585405c8dbb..20923877f024 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/arangodb/arangodb-docker/issues](https://github.com/arangodb/arangodb-docker/issues) + [https://github.com/arangodb/arangodb-docker/issues](https://github.com/arangodb/arangodb-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/arangodb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/arangodb/) diff --git a/backdrop/README.md b/backdrop/README.md index 427033bfd622..dad88ff7684d 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/backdrop-ops/backdrop-docker/issues](https://github.com/backdrop-ops/backdrop-docker/issues) + [https://github.com/backdrop-ops/backdrop-docker/issues](https://github.com/backdrop-ops/backdrop-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/backdrop/), [`arm64v8`](https://hub.docker.com/r/arm64v8/backdrop/) diff --git a/bash/README.md b/bash/README.md index a8c225ed9116..f400aca7ed02 100644 --- a/bash/README.md +++ b/bash/README.md @@ -40,7 +40,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/tianon/docker-bash/issues](https://github.com/tianon/docker-bash/issues) + [https://github.com/tianon/docker-bash/issues](https://github.com/tianon/docker-bash/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/bash/), [`arm32v6`](https://hub.docker.com/r/arm32v6/bash/), [`arm32v7`](https://hub.docker.com/r/arm32v7/bash/), [`arm64v8`](https://hub.docker.com/r/arm64v8/bash/), [`i386`](https://hub.docker.com/r/i386/bash/), [`ppc64le`](https://hub.docker.com/r/ppc64le/bash/), [`s390x`](https://hub.docker.com/r/s390x/bash/) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index e90ec0aab7b2..2fd05179cfa4 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -55,7 +55,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/buildpack-deps/issues](https://github.com/docker-library/buildpack-deps/issues) + [https://github.com/docker-library/buildpack-deps/issues](https://github.com/docker-library/buildpack-deps/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`mips64le`](https://hub.docker.com/r/mips64le/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`riscv64`](https://hub.docker.com/r/riscv64/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/) diff --git a/busybox/README.md b/busybox/README.md index 6526cb60a6de..f216b9921ccd 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/busybox/issues](https://github.com/docker-library/busybox/issues) + [https://github.com/docker-library/busybox/issues](https://github.com/docker-library/busybox/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/busybox/), [`arm32v5`](https://hub.docker.com/r/arm32v5/busybox/), [`arm32v6`](https://hub.docker.com/r/arm32v6/busybox/), [`arm32v7`](https://hub.docker.com/r/arm32v7/busybox/), [`arm64v8`](https://hub.docker.com/r/arm64v8/busybox/), [`i386`](https://hub.docker.com/r/i386/busybox/), [`mips64le`](https://hub.docker.com/r/mips64le/busybox/), [`ppc64le`](https://hub.docker.com/r/ppc64le/busybox/), [`riscv64`](https://hub.docker.com/r/riscv64/busybox/), [`s390x`](https://hub.docker.com/r/s390x/busybox/) diff --git a/caddy/README.md b/caddy/README.md index b3ebd745913f..4746b9779f2d 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/caddyserver/caddy-docker/issues](https://github.com/caddyserver/caddy-docker/issues) + [https://github.com/caddyserver/caddy-docker/issues](https://github.com/caddyserver/caddy-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/caddy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/caddy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/caddy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/caddy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/caddy/), [`s390x`](https://hub.docker.com/r/s390x/caddy/), [`windows-amd64`](https://hub.docker.com/r/winamd64/caddy/) diff --git a/cassandra/README.md b/cassandra/README.md index e9ebe43dca1e..77bd7730cbb7 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/cassandra/issues](https://github.com/docker-library/cassandra/issues) + [https://github.com/docker-library/cassandra/issues](https://github.com/docker-library/cassandra/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/cassandra/), [`arm32v7`](https://hub.docker.com/r/arm32v7/cassandra/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cassandra/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cassandra/), [`s390x`](https://hub.docker.com/r/s390x/cassandra/) diff --git a/chronograf/README.md b/chronograf/README.md index 85b26150ecf3..212746973580 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues) + [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/chronograf/), [`arm32v7`](https://hub.docker.com/r/arm32v7/chronograf/), [`arm64v8`](https://hub.docker.com/r/arm64v8/chronograf/) diff --git a/cirros/README.md b/cirros/README.md index 45fc1814604d..eb9779b56671 100644 --- a/cirros/README.md +++ b/cirros/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/tianon/docker-brew-cirros/issues](https://github.com/tianon/docker-brew-cirros/issues) + [https://github.com/tianon/docker-brew-cirros/issues](https://github.com/tianon/docker-brew-cirros/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v5`](https://hub.docker.com/r/arm32v5/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/) diff --git a/clearlinux/README.md b/clearlinux/README.md index 663fca036986..e9e1ae5a852e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/clearlinux/docker-brew-clearlinux/issues](https://github.com/clearlinux/docker-brew-clearlinux/issues) + [https://github.com/clearlinux/docker-brew-clearlinux/issues](https://github.com/clearlinux/docker-brew-clearlinux/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/clearlinux/) diff --git a/clojure/README.md b/clojure/README.md index 48e60438049d..f6d3dac93a6a 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -79,7 +79,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/Quantisan/docker-clojure/issues](https://github.com/Quantisan/docker-clojure/issues) + [https://github.com/Quantisan/docker-clojure/issues](https://github.com/Quantisan/docker-clojure/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/clojure/), [`arm64v8`](https://hub.docker.com/r/arm64v8/clojure/) diff --git a/composer/README.md b/composer/README.md index f1e6ba53e0b5..d58c5be581b0 100644 --- a/composer/README.md +++ b/composer/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/composer/docker/issues](https://github.com/composer/docker/issues) + [https://github.com/composer/docker/issues](https://github.com/composer/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/composer/), [`arm32v6`](https://hub.docker.com/r/arm32v6/composer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/composer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/composer/), [`i386`](https://hub.docker.com/r/i386/composer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/composer/), [`s390x`](https://hub.docker.com/r/s390x/composer/) diff --git a/consul/README.md b/consul/README.md index 2de01504fea1..f9449ec974a6 100644 --- a/consul/README.md +++ b/consul/README.md @@ -35,7 +35,7 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Quick reference (cont.) - **Where to file issues**: - [https://github.com/hashicorp/docker-consul/issues](https://github.com/hashicorp/docker-consul/issues) + [https://github.com/hashicorp/docker-consul/issues](https://github.com/hashicorp/docker-consul/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/consul/), [`arm32v6`](https://hub.docker.com/r/arm32v6/consul/), [`arm64v8`](https://hub.docker.com/r/arm64v8/consul/), [`i386`](https://hub.docker.com/r/i386/consul/) diff --git a/convertigo/README.md b/convertigo/README.md index a33935be4e0a..40e776329b9f 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/convertigo/docker/issues](https://github.com/convertigo/docker/issues) + [https://github.com/convertigo/docker/issues](https://github.com/convertigo/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/convertigo/) diff --git a/couchbase/README.md b/couchbase/README.md index 8c2f5e8ac21d..7dec028d174e 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -34,7 +34,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/couchbase/docker/issues](https://github.com/couchbase/docker/issues) + [https://github.com/couchbase/docker/issues](https://github.com/couchbase/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/couchbase/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchbase/) diff --git a/couchdb/README.md b/couchdb/README.md index 89b97c39f183..e73d905fc608 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/apache/couchdb-docker/issues](https://github.com/apache/couchdb-docker/issues) + [https://github.com/apache/couchdb-docker/issues](https://github.com/apache/couchdb-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/couchdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchdb/), [`ppc64le`](https://hub.docker.com/r/ppc64le/couchdb/) diff --git a/crate/README.md b/crate/README.md index 95958ee8ac33..d821dac194b8 100644 --- a/crate/README.md +++ b/crate/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/crate/docker-crate/issues](https://github.com/crate/docker-crate/issues) + [https://github.com/crate/docker-crate/issues](https://github.com/crate/docker-crate/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/crate/), [`arm64v8`](https://hub.docker.com/r/arm64v8/crate/) diff --git a/dart/README.md b/dart/README.md index be74a0e6cb2d..367828b6fca1 100644 --- a/dart/README.md +++ b/dart/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/dart-lang/dart-docker/issues](https://github.com/dart-lang/dart-docker/issues) + [https://github.com/dart-lang/dart-docker/issues](https://github.com/dart-lang/dart-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/dart/), [`arm32v7`](https://hub.docker.com/r/arm32v7/dart/), [`arm64v8`](https://hub.docker.com/r/arm64v8/dart/) diff --git a/debian/README.md b/debian/README.md index 52a8c564ac6d..425f3c9cd63c 100644 --- a/debian/README.md +++ b/debian/README.md @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/debuerreotype/docker-debian-artifacts/issues](https://github.com/debuerreotype/docker-debian-artifacts/issues) + [https://github.com/debuerreotype/docker-debian-artifacts/issues](https://github.com/debuerreotype/docker-debian-artifacts/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/debian/), [`arm32v5`](https://hub.docker.com/r/arm32v5/debian/), [`arm32v7`](https://hub.docker.com/r/arm32v7/debian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/debian/), [`i386`](https://hub.docker.com/r/i386/debian/), [`mips64le`](https://hub.docker.com/r/mips64le/debian/), [`ppc64le`](https://hub.docker.com/r/ppc64le/debian/), [`riscv64`](https://hub.docker.com/r/riscv64/debian/), [`s390x`](https://hub.docker.com/r/s390x/debian/) diff --git a/docker/README.md b/docker/README.md index 9257f714e98b..0b4975953933 100644 --- a/docker/README.md +++ b/docker/README.md @@ -62,7 +62,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/docker/issues](https://github.com/docker-library/docker/issues) + [https://github.com/docker-library/docker/issues](https://github.com/docker-library/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/docker/), [`arm64v8`](https://hub.docker.com/r/arm64v8/docker/), [`windows-amd64`](https://hub.docker.com/r/winamd64/docker/) diff --git a/drupal/README.md b/drupal/README.md index 02e8355336d1..80baef3c9945 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -67,7 +67,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/drupal/issues](https://github.com/docker-library/drupal/issues) + [https://github.com/docker-library/drupal/issues](https://github.com/docker-library/drupal/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/drupal/), [`arm32v5`](https://hub.docker.com/r/arm32v5/drupal/), [`arm32v6`](https://hub.docker.com/r/arm32v6/drupal/), [`arm32v7`](https://hub.docker.com/r/arm32v7/drupal/), [`arm64v8`](https://hub.docker.com/r/arm64v8/drupal/), [`i386`](https://hub.docker.com/r/i386/drupal/), [`mips64le`](https://hub.docker.com/r/mips64le/drupal/), [`ppc64le`](https://hub.docker.com/r/ppc64le/drupal/), [`s390x`](https://hub.docker.com/r/s390x/drupal/) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index b4cee487cd8c..18b589760572 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/eclipse/mosquitto/issues](https://github.com/eclipse/mosquitto/issues) + [https://github.com/eclipse/mosquitto/issues](https://github.com/eclipse/mosquitto/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/eclipse-mosquitto/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eclipse-mosquitto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-mosquitto/), [`i386`](https://hub.docker.com/r/i386/eclipse-mosquitto/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-mosquitto/), [`s390x`](https://hub.docker.com/r/s390x/eclipse-mosquitto/) diff --git a/eggdrop/README.md b/eggdrop/README.md index 30272b10117b..2dd9650e7959 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/eggheads/eggdrop-docker/issues](https://github.com/eggheads/eggdrop-docker/issues) + [https://github.com/eggheads/eggdrop-docker/issues](https://github.com/eggheads/eggdrop-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/eggdrop/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eggdrop/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eggdrop/) diff --git a/elixir/README.md b/elixir/README.md index 3b919b05a5d9..d08cb8d224b7 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -59,7 +59,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/erlef/docker-elixir/issues](https://github.com/erlef/docker-elixir/issues) + [https://github.com/erlef/docker-elixir/issues](https://github.com/erlef/docker-elixir/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/elixir/), [`arm32v7`](https://hub.docker.com/r/arm32v7/elixir/), [`arm64v8`](https://hub.docker.com/r/arm64v8/elixir/), [`i386`](https://hub.docker.com/r/i386/elixir/), [`ppc64le`](https://hub.docker.com/r/ppc64le/elixir/), [`s390x`](https://hub.docker.com/r/s390x/elixir/) diff --git a/emqx/README.md b/emqx/README.md index 1279f6291d90..db2b2ee755c7 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/emqx/emqx-docker/issues](https://github.com/emqx/emqx-docker/issues) + [https://github.com/emqx/emqx-docker/issues](https://github.com/emqx/emqx-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/emqx/), [`arm64v8`](https://hub.docker.com/r/arm64v8/emqx/) diff --git a/erlang/README.md b/erlang/README.md index a0b0e193eb17..9340e702e5a1 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -47,7 +47,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/erlang/docker-erlang-otp/issues](https://github.com/erlang/docker-erlang-otp/issues) + [https://github.com/erlang/docker-erlang-otp/issues](https://github.com/erlang/docker-erlang-otp/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/erlang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/erlang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/erlang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/erlang/), [`i386`](https://hub.docker.com/r/i386/erlang/), [`mips64le`](https://hub.docker.com/r/mips64le/erlang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/erlang/), [`s390x`](https://hub.docker.com/r/s390x/erlang/) diff --git a/express-gateway/README.md b/express-gateway/README.md index d47f42ff6bc3..fe0ccb684f9e 100644 --- a/express-gateway/README.md +++ b/express-gateway/README.md @@ -33,7 +33,7 @@ This project is no longer maintained. Read [here](https://github.com/ExpressGate # Quick reference (cont.) - **Where to file issues**: - [https://github.com/ExpressGateway/express-gateway/issues](https://github.com/ExpressGateway/express-gateway/issues) + [https://github.com/ExpressGateway/express-gateway/issues](https://github.com/ExpressGateway/express-gateway/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/express-gateway/), [`arm64v8`](https://hub.docker.com/r/arm64v8/express-gateway/), [`ppc64le`](https://hub.docker.com/r/ppc64le/express-gateway/), [`s390x`](https://hub.docker.com/r/s390x/express-gateway/) diff --git a/fluentd/README.md b/fluentd/README.md index ab0b3e858154..af451cae2363 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/fluent/fluentd-docker-image/issues](https://github.com/fluent/fluentd-docker-image/issues) + [https://github.com/fluent/fluentd-docker-image/issues](https://github.com/fluent/fluentd-docker-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/fluentd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/fluentd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/fluentd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/fluentd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/fluentd/), [`i386`](https://hub.docker.com/r/i386/fluentd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/fluentd/), [`s390x`](https://hub.docker.com/r/s390x/fluentd/) diff --git a/friendica/README.md b/friendica/README.md index f793e97780ce..83e4554f6da9 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -34,7 +34,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/friendica/docker/issues](https://github.com/friendica/docker/issues) + [https://github.com/friendica/docker/issues](https://github.com/friendica/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`mips64le`](https://hub.docker.com/r/mips64le/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) diff --git a/gazebo/README.md b/gazebo/README.md index b728b11f0137..038ddad9ac2d 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues) + [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/gazebo/) diff --git a/gcc/README.md b/gcc/README.md index 6977337901d7..74670bffc175 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/gcc/issues](https://github.com/docker-library/gcc/issues) + [https://github.com/docker-library/gcc/issues](https://github.com/docker-library/gcc/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/) diff --git a/geonetwork/README.md b/geonetwork/README.md index 1a54964d570b..a064cf011b42 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/geonetwork/docker-geonetwork/issues](https://github.com/geonetwork/docker-geonetwork/issues) + [https://github.com/geonetwork/docker-geonetwork/issues](https://github.com/geonetwork/docker-geonetwork/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/geonetwork/), [`arm32v7`](https://hub.docker.com/r/arm32v7/geonetwork/), [`arm64v8`](https://hub.docker.com/r/arm64v8/geonetwork/), [`ppc64le`](https://hub.docker.com/r/ppc64le/geonetwork/) diff --git a/ghost/README.md b/ghost/README.md index 535a0e83fae5..e31f79eda194 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/ghost/issues](https://github.com/docker-library/ghost/issues) + [https://github.com/docker-library/ghost/issues](https://github.com/docker-library/ghost/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/ghost/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ghost/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ghost/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ghost/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ghost/), [`s390x`](https://hub.docker.com/r/s390x/ghost/) diff --git a/golang/README.md b/golang/README.md index 55c632650e22..2d1c9a65f26f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -71,7 +71,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/golang/issues](https://github.com/docker-library/golang/issues) + [https://github.com/docker-library/golang/issues](https://github.com/docker-library/golang/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`mips64le`](https://hub.docker.com/r/mips64le/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/) diff --git a/gradle/README.md b/gradle/README.md index 8c421df935a0..c559197c7b71 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/keeganwitt/docker-gradle/issues](https://github.com/keeganwitt/docker-gradle/issues) + [https://github.com/keeganwitt/docker-gradle/issues](https://github.com/keeganwitt/docker-gradle/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/gradle/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gradle/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gradle/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gradle/), [`s390x`](https://hub.docker.com/r/s390x/gradle/) diff --git a/groovy/README.md b/groovy/README.md index 3965354baf77..bbcb7302946f 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/groovy/docker-groovy/issues](https://github.com/groovy/docker-groovy/issues) + [https://github.com/groovy/docker-groovy/issues](https://github.com/groovy/docker-groovy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/groovy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/groovy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/groovy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/groovy/), [`s390x`](https://hub.docker.com/r/s390x/groovy/) diff --git a/haproxy/README.md b/haproxy/README.md index dc2a01c4a1a1..237b508b0fee 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -40,7 +40,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/haproxy/issues](https://github.com/docker-library/haproxy/issues) + [https://github.com/docker-library/haproxy/issues](https://github.com/docker-library/haproxy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`mips64le`](https://hub.docker.com/r/mips64le/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/) diff --git a/haskell/README.md b/haskell/README.md index 0310bb5b0ed5..a68ec20f6285 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -34,7 +34,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/haskell/docker-haskell/issues](https://github.com/haskell/docker-haskell/issues) + [https://github.com/haskell/docker-haskell/issues](https://github.com/haskell/docker-haskell/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/haskell/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haskell/) diff --git a/haxe/README.md b/haxe/README.md index 3c5a42b85d41..c7ad7adf9056 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -130,7 +130,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/HaxeFoundation/docker-library-haxe/issues](https://github.com/HaxeFoundation/docker-library-haxe/issues) + [https://github.com/HaxeFoundation/docker-library-haxe/issues](https://github.com/HaxeFoundation/docker-library-haxe/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/haxe/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haxe/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haxe/), [`windows-amd64`](https://hub.docker.com/r/winamd64/haxe/) diff --git a/hello-world/README.md b/hello-world/README.md index 5ab1be008de4..d7e836821c53 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -45,7 +45,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues) + [https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/hello-world/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hello-world/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hello-world/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hello-world/), [`i386`](https://hub.docker.com/r/i386/hello-world/), [`mips64le`](https://hub.docker.com/r/mips64le/hello-world/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hello-world/), [`riscv64`](https://hub.docker.com/r/riscv64/hello-world/), [`s390x`](https://hub.docker.com/r/s390x/hello-world/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hello-world/) diff --git a/hitch/README.md b/hitch/README.md index 7d609ca4c60b..627fbacbf181 100644 --- a/hitch/README.md +++ b/hitch/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/varnish/docker-hitch/issues](https://github.com/varnish/docker-hitch/issues) + [https://github.com/varnish/docker-hitch/issues](https://github.com/varnish/docker-hitch/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/hitch/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hitch/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hitch/), [`i386`](https://hub.docker.com/r/i386/hitch/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hitch/), [`s390x`](https://hub.docker.com/r/s390x/hitch/) diff --git a/httpd/README.md b/httpd/README.md index 5af76ee8c88a..e79b816c4fa6 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/httpd/issues](https://github.com/docker-library/httpd/issues) + [https://github.com/docker-library/httpd/issues](https://github.com/docker-library/httpd/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`mips64le`](https://hub.docker.com/r/mips64le/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/) diff --git a/hylang/README.md b/hylang/README.md index e4bdce6d98ef..5b219ce5746a 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -81,7 +81,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/hylang/hy/issues](https://github.com/hylang/hy/issues) + [https://github.com/hylang/hy/issues](https://github.com/hylang/hy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/hylang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hylang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hylang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hylang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hylang/), [`i386`](https://hub.docker.com/r/i386/hylang/), [`mips64le`](https://hub.docker.com/r/mips64le/hylang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hylang/), [`s390x`](https://hub.docker.com/r/s390x/hylang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hylang/) diff --git a/influxdb/README.md b/influxdb/README.md index 1242439c2694..e889a3de682c 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -44,7 +44,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues) + [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/influxdb/), [`arm32v7`](https://hub.docker.com/r/arm32v7/influxdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/influxdb/) diff --git a/irssi/README.md b/irssi/README.md index 710b3705d194..3894b0325ef1 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/jessfraz/irssi/issues](https://github.com/jessfraz/irssi/issues) + [https://github.com/jessfraz/irssi/issues](https://github.com/jessfraz/irssi/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/irssi/), [`arm32v5`](https://hub.docker.com/r/arm32v5/irssi/), [`arm32v6`](https://hub.docker.com/r/arm32v6/irssi/), [`arm32v7`](https://hub.docker.com/r/arm32v7/irssi/), [`arm64v8`](https://hub.docker.com/r/arm64v8/irssi/), [`i386`](https://hub.docker.com/r/i386/irssi/), [`mips64le`](https://hub.docker.com/r/mips64le/irssi/), [`ppc64le`](https://hub.docker.com/r/ppc64le/irssi/), [`s390x`](https://hub.docker.com/r/s390x/irssi/) diff --git a/jetty/README.md b/jetty/README.md index 120aeb1cffdd..dfc5ab176bc5 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -69,7 +69,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/eclipse/jetty.docker/issues](https://github.com/eclipse/jetty.docker/issues) + [https://github.com/eclipse/jetty.docker/issues](https://github.com/eclipse/jetty.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/jetty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/jetty/) diff --git a/jobber/README.md b/jobber/README.md index 5e954e37e656..389fc3c6c4ee 100644 --- a/jobber/README.md +++ b/jobber/README.md @@ -33,7 +33,7 @@ This project is not actively maintained. See [dshearer/jobber#334](https://githu # Quick reference (cont.) - **Where to file issues**: - [https://github.com/dshearer/jobber-docker/issues](https://github.com/dshearer/jobber-docker/issues) + [https://github.com/dshearer/jobber-docker/issues](https://github.com/dshearer/jobber-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/jobber/) diff --git a/joomla/README.md b/joomla/README.md index f19b87ea4cd4..12eb40cb4202 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -37,7 +37,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/joomla/docker-joomla/issues](https://github.com/joomla/docker-joomla/issues) + [https://github.com/joomla/docker-joomla/issues](https://github.com/joomla/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) diff --git a/jruby/README.md b/jruby/README.md index 644aa442b80c..0cc9e0db8fcf 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -38,7 +38,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/jruby/docker-jruby/issues](https://github.com/jruby/docker-jruby/issues) + [https://github.com/jruby/docker-jruby/issues](https://github.com/jruby/docker-jruby/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/jruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/jruby/) diff --git a/julia/README.md b/julia/README.md index f3bdcff04c88..0c15c4369e89 100644 --- a/julia/README.md +++ b/julia/README.md @@ -74,7 +74,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues) + [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) diff --git a/kapacitor/README.md b/kapacitor/README.md index c04d369ae8a2..ddeb42057226 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues) + [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/kapacitor/), [`arm32v7`](https://hub.docker.com/r/arm32v7/kapacitor/), [`arm64v8`](https://hub.docker.com/r/arm64v8/kapacitor/) diff --git a/kong/README.md b/kong/README.md index 9de542ac2202..4433cfc728bc 100644 --- a/kong/README.md +++ b/kong/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/kong/kong/issues](https://github.com/kong/kong/issues) + [https://github.com/kong/kong/issues](https://github.com/kong/kong/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/kong/), [`arm64v8`](https://hub.docker.com/r/arm64v8/kong/) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 2888a228efea..0d8f0ea3bb5b 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -38,7 +38,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/Lightstreamer/Docker/issues](https://github.com/Lightstreamer/Docker/issues) + [https://github.com/Lightstreamer/Docker/issues](https://github.com/Lightstreamer/Docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/lightstreamer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/lightstreamer/) diff --git a/mageia/README.md b/mageia/README.md index 86fee0e84983..f373d57f0700 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/juanluisbaptiste/docker-brew-mageia/issues](https://github.com/juanluisbaptiste/docker-brew-mageia/issues) + [https://github.com/juanluisbaptiste/docker-brew-mageia/issues](https://github.com/juanluisbaptiste/docker-brew-mageia/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/mageia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/mageia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mageia/) diff --git a/matomo/README.md b/matomo/README.md index 5e7bf52d2d93..9e25a26f9174 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues) + [https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/matomo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/matomo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/matomo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/matomo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/matomo/), [`i386`](https://hub.docker.com/r/i386/matomo/), [`mips64le`](https://hub.docker.com/r/mips64le/matomo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/matomo/), [`s390x`](https://hub.docker.com/r/s390x/matomo/) diff --git a/maven/README.md b/maven/README.md index aec542119d35..cb56f5203a75 100644 --- a/maven/README.md +++ b/maven/README.md @@ -54,7 +54,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/carlossg/docker-maven/issues](https://github.com/carlossg/docker-maven/issues) + [https://github.com/carlossg/docker-maven/issues](https://github.com/carlossg/docker-maven/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/maven/), [`arm32v7`](https://hub.docker.com/r/arm32v7/maven/), [`arm64v8`](https://hub.docker.com/r/arm64v8/maven/), [`ppc64le`](https://hub.docker.com/r/ppc64le/maven/), [`s390x`](https://hub.docker.com/r/s390x/maven/) diff --git a/memcached/README.md b/memcached/README.md index 3b5a0d0a00df..cf835e1ca88e 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues) + [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) diff --git a/mongo-express/README.md b/mongo-express/README.md index ae5c05387ea8..f59e7da53d2b 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/mongo-express/mongo-express-docker/issues](https://github.com/mongo-express/mongo-express-docker/issues) + [https://github.com/mongo-express/mongo-express-docker/issues](https://github.com/mongo-express/mongo-express-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/mongo-express/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mongo-express/) diff --git a/mongo/README.md b/mongo/README.md index 161a419e805b..85da9d3db83e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -95,7 +95,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/mongo/issues](https://github.com/docker-library/mongo/issues) + [https://github.com/docker-library/mongo/issues](https://github.com/docker-library/mongo/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/mongo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mongo/), [`windows-amd64`](https://hub.docker.com/r/winamd64/mongo/) diff --git a/monica/README.md b/monica/README.md index 531b0deb6eb4..62664868078b 100644 --- a/monica/README.md +++ b/monica/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/monicahq/docker/issues](https://github.com/monicahq/docker/issues) + [https://github.com/monicahq/docker/issues](https://github.com/monicahq/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/monica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/monica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/monica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/monica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/monica/), [`i386`](https://hub.docker.com/r/i386/monica/), [`mips64le`](https://hub.docker.com/r/mips64le/monica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/monica/), [`s390x`](https://hub.docker.com/r/s390x/monica/) diff --git a/mono/README.md b/mono/README.md index 06c903957f0a..87f1c260b53d 100644 --- a/mono/README.md +++ b/mono/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/mono/docker/issues](https://github.com/mono/docker/issues) + [https://github.com/mono/docker/issues](https://github.com/mono/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/mono/), [`arm32v5`](https://hub.docker.com/r/arm32v5/mono/), [`arm32v7`](https://hub.docker.com/r/arm32v7/mono/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mono/), [`i386`](https://hub.docker.com/r/i386/mono/), [`ppc64le`](https://hub.docker.com/r/ppc64le/mono/) diff --git a/mysql/README.md b/mysql/README.md index 70ffd6d10a03..6d6448008941 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/mysql/issues](https://github.com/docker-library/mysql/issues) + [https://github.com/docker-library/mysql/issues](https://github.com/docker-library/mysql/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/mysql/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mysql/) diff --git a/nats-streaming/README.md b/nats-streaming/README.md index bef918d1e2d8..04e3100d55ca 100644 --- a/nats-streaming/README.md +++ b/nats-streaming/README.md @@ -50,7 +50,7 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nats-io/nats-streaming-docker/issues](https://github.com/nats-io/nats-streaming-docker/issues) + [https://github.com/nats-io/nats-streaming-docker/issues](https://github.com/nats-io/nats-streaming-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/nats-streaming/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats-streaming/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats-streaming/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats-streaming/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats-streaming/) diff --git a/nats/README.md b/nats/README.md index 844a64e6385f..c2460304e534 100644 --- a/nats/README.md +++ b/nats/README.md @@ -46,7 +46,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nats-io/nats-docker/issues](https://github.com/nats-io/nats-docker/issues) + [https://github.com/nats-io/nats-docker/issues](https://github.com/nats-io/nats-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/nats/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats/) diff --git a/neo4j/README.md b/neo4j/README.md index 40cfedd1ae62..a0b32d09cc5c 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/neo4j/docker-neo4j/issues](https://github.com/neo4j/docker-neo4j/issues) + [https://github.com/neo4j/docker-neo4j/issues](https://github.com/neo4j/docker-neo4j/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/neo4j/), [`arm64v8`](https://hub.docker.com/r/arm64v8/neo4j/) diff --git a/neurodebian/README.md b/neurodebian/README.md index 351fc4fc14a5..03a4c860ac01 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -42,7 +42,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/neurodebian/dockerfiles/issues](https://github.com/neurodebian/dockerfiles/issues) + [https://github.com/neurodebian/dockerfiles/issues](https://github.com/neurodebian/dockerfiles/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/neurodebian/), [`arm64v8`](https://hub.docker.com/r/arm64v8/neurodebian/), [`i386`](https://hub.docker.com/r/i386/neurodebian/) diff --git a/nextcloud/README.md b/nextcloud/README.md index a0a527e429c6..64eae5026bb4 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -37,7 +37,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nextcloud/docker/issues](https://github.com/nextcloud/docker/issues) + [https://github.com/nextcloud/docker/issues](https://github.com/nextcloud/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/nextcloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nextcloud/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nextcloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nextcloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nextcloud/), [`i386`](https://hub.docker.com/r/i386/nextcloud/), [`mips64le`](https://hub.docker.com/r/mips64le/nextcloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nextcloud/), [`s390x`](https://hub.docker.com/r/s390x/nextcloud/) diff --git a/nginx/README.md b/nginx/README.md index 481c67427953..fb920446e90b 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -38,7 +38,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nginxinc/docker-nginx/issues](https://github.com/nginxinc/docker-nginx/issues) + [https://github.com/nginxinc/docker-nginx/issues](https://github.com/nginxinc/docker-nginx/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/nginx/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nginx/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nginx/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nginx/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nginx/), [`i386`](https://hub.docker.com/r/i386/nginx/), [`mips64le`](https://hub.docker.com/r/mips64le/nginx/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nginx/), [`s390x`](https://hub.docker.com/r/s390x/nginx/) diff --git a/node/README.md b/node/README.md index bcea98f4654f..14319d4712e7 100644 --- a/node/README.md +++ b/node/README.md @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nodejs/docker-node/issues](https://github.com/nodejs/docker-node/issues) + [https://github.com/nodejs/docker-node/issues](https://github.com/nodejs/docker-node/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/node/), [`arm32v6`](https://hub.docker.com/r/arm32v6/node/), [`arm32v7`](https://hub.docker.com/r/arm32v7/node/), [`arm64v8`](https://hub.docker.com/r/arm64v8/node/), [`ppc64le`](https://hub.docker.com/r/ppc64le/node/), [`s390x`](https://hub.docker.com/r/s390x/node/) diff --git a/notary/README.md b/notary/README.md index 41b75ac2b245..3bf523016431 100644 --- a/notary/README.md +++ b/notary/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker/notary-official-images/issues](https://github.com/docker/notary-official-images/issues) + [https://github.com/docker/notary-official-images/issues](https://github.com/docker/notary-official-images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/notary/), [`arm32v6`](https://hub.docker.com/r/arm32v6/notary/), [`arm64v8`](https://hub.docker.com/r/arm64v8/notary/), [`i386`](https://hub.docker.com/r/i386/notary/), [`ppc64le`](https://hub.docker.com/r/ppc64le/notary/), [`s390x`](https://hub.docker.com/r/s390x/notary/) diff --git a/odoo/README.md b/odoo/README.md index a2251576388b..46cefa58a6de 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/odoo/docker/issues](https://github.com/odoo/docker/issues) + [https://github.com/odoo/docker/issues](https://github.com/odoo/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/odoo/) diff --git a/open-liberty/README.md b/open-liberty/README.md index 6926593353cd..11dada9ab1e2 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -55,7 +55,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/OpenLiberty/ci.docker/issues](https://github.com/OpenLiberty/ci.docker/issues) + [https://github.com/OpenLiberty/ci.docker/issues](https://github.com/OpenLiberty/ci.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/open-liberty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/open-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/open-liberty/), [`s390x`](https://hub.docker.com/r/s390x/open-liberty/) diff --git a/openjdk/README.md b/openjdk/README.md index 46fbb736a135..a202c3903eeb 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -67,7 +67,7 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/openjdk/issues](https://github.com/docker-library/openjdk/issues) + [https://github.com/docker-library/openjdk/issues](https://github.com/docker-library/openjdk/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/openjdk/), [`arm64v8`](https://hub.docker.com/r/arm64v8/openjdk/), [`windows-amd64`](https://hub.docker.com/r/winamd64/openjdk/) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 3a1b7c37c5b8..d33ecc6fd677 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -34,7 +34,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/oracle/container-images/issues](https://github.com/oracle/container-images/issues) + [https://github.com/oracle/container-images/issues](https://github.com/oracle/container-images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/oraclelinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/oraclelinux/) diff --git a/orientdb/README.md b/orientdb/README.md index 4befcb528315..ee6ffa15a5a4 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/orientechnologies/orientdb-docker/issues](https://github.com/orientechnologies/orientdb-docker/issues) + [https://github.com/orientechnologies/orientdb-docker/issues](https://github.com/orientechnologies/orientdb-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/orientdb/), [`arm32v7`](https://hub.docker.com/r/arm32v7/orientdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/orientdb/) diff --git a/perl/README.md b/perl/README.md index f14cc6ba32e3..e94a52bb5496 100644 --- a/perl/README.md +++ b/perl/README.md @@ -60,7 +60,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/Perl/docker-perl/issues](https://github.com/Perl/docker-perl/issues) + [https://github.com/Perl/docker-perl/issues](https://github.com/Perl/docker-perl/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/perl/), [`arm32v5`](https://hub.docker.com/r/arm32v5/perl/), [`arm32v7`](https://hub.docker.com/r/arm32v7/perl/), [`arm64v8`](https://hub.docker.com/r/arm64v8/perl/), [`i386`](https://hub.docker.com/r/i386/perl/), [`mips64le`](https://hub.docker.com/r/mips64le/perl/), [`ppc64le`](https://hub.docker.com/r/ppc64le/perl/), [`s390x`](https://hub.docker.com/r/s390x/perl/) diff --git a/photon/README.md b/photon/README.md index 5eddf9d77270..2ce6f39a47ad 100644 --- a/photon/README.md +++ b/photon/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/vmware/photon-docker-image/issues](https://github.com/vmware/photon-docker-image/issues) + [https://github.com/vmware/photon-docker-image/issues](https://github.com/vmware/photon-docker-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/photon/), [`arm64v8`](https://hub.docker.com/r/arm64v8/photon/) diff --git a/php/README.md b/php/README.md index a72bdca3a4b1..888ef4d43b78 100644 --- a/php/README.md +++ b/php/README.md @@ -95,7 +95,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/php/issues](https://github.com/docker-library/php/issues) + [https://github.com/docker-library/php/issues](https://github.com/docker-library/php/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/php/), [`arm32v5`](https://hub.docker.com/r/arm32v5/php/), [`arm32v6`](https://hub.docker.com/r/arm32v6/php/), [`arm32v7`](https://hub.docker.com/r/arm32v7/php/), [`arm64v8`](https://hub.docker.com/r/arm64v8/php/), [`i386`](https://hub.docker.com/r/i386/php/), [`mips64le`](https://hub.docker.com/r/mips64le/php/), [`ppc64le`](https://hub.docker.com/r/ppc64le/php/), [`s390x`](https://hub.docker.com/r/s390x/php/) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 22e46498c43b..eb37bde8cb4e 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/phpmyadmin/docker/issues](https://github.com/phpmyadmin/docker/issues) + [https://github.com/phpmyadmin/docker/issues](https://github.com/phpmyadmin/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/phpmyadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/phpmyadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/phpmyadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/phpmyadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/phpmyadmin/), [`i386`](https://hub.docker.com/r/i386/phpmyadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/phpmyadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/phpmyadmin/), [`s390x`](https://hub.docker.com/r/s390x/phpmyadmin/) diff --git a/plone/README.md b/plone/README.md index 5fe968d6d2de..970ddb37b656 100644 --- a/plone/README.md +++ b/plone/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/plone/plone.docker/issues](https://github.com/plone/plone.docker/issues) + [https://github.com/plone/plone.docker/issues](https://github.com/plone/plone.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/plone/), [`arm64v8`](https://hub.docker.com/r/arm64v8/plone/) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 453d4e16ce18..89052e7c229c 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/postfixadmin/docker/issues](https://github.com/postfixadmin/docker/issues) + [https://github.com/postfixadmin/docker/issues](https://github.com/postfixadmin/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/postfixadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postfixadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postfixadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postfixadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postfixadmin/), [`i386`](https://hub.docker.com/r/i386/postfixadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/postfixadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postfixadmin/), [`s390x`](https://hub.docker.com/r/s390x/postfixadmin/) diff --git a/postgres/README.md b/postgres/README.md index b0dc93bebcbe..56c900ac9d8c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -38,7 +38,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/postgres/issues](https://github.com/docker-library/postgres/issues) + [https://github.com/docker-library/postgres/issues](https://github.com/docker-library/postgres/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/postgres/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postgres/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postgres/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postgres/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postgres/), [`i386`](https://hub.docker.com/r/i386/postgres/), [`mips64le`](https://hub.docker.com/r/mips64le/postgres/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postgres/), [`s390x`](https://hub.docker.com/r/s390x/postgres/) diff --git a/pypy/README.md b/pypy/README.md index c20f4cffdca8..5af6ef50f64b 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -74,7 +74,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/pypy/issues](https://github.com/docker-library/pypy/issues) + [https://github.com/docker-library/pypy/issues](https://github.com/docker-library/pypy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/pypy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/pypy/), [`i386`](https://hub.docker.com/r/i386/pypy/), [`windows-amd64`](https://hub.docker.com/r/winamd64/pypy/) diff --git a/python/README.md b/python/README.md index 323c4db1a1a2..42d49f9e74c9 100644 --- a/python/README.md +++ b/python/README.md @@ -104,7 +104,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/python/issues](https://github.com/docker-library/python/issues) + [https://github.com/docker-library/python/issues](https://github.com/docker-library/python/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`mips64le`](https://hub.docker.com/r/mips64le/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 8fabac424bfb..c3f1336bd545 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -44,7 +44,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/rabbitmq/issues](https://github.com/docker-library/rabbitmq/issues) + [https://github.com/docker-library/rabbitmq/issues](https://github.com/docker-library/rabbitmq/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 10d5c59c39a9..f9d7f804c45a 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/Raku/docker/issues](https://github.com/Raku/docker/issues) + [https://github.com/Raku/docker/issues](https://github.com/Raku/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/rakudo-star/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rakudo-star/) diff --git a/redis/README.md b/redis/README.md index aac68ad95c28..26535e01512e 100644 --- a/redis/README.md +++ b/redis/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/redis/issues](https://github.com/docker-library/redis/issues) + [https://github.com/docker-library/redis/issues](https://github.com/docker-library/redis/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/redis/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redis/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redis/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redis/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redis/), [`i386`](https://hub.docker.com/r/i386/redis/), [`mips64le`](https://hub.docker.com/r/mips64le/redis/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redis/), [`s390x`](https://hub.docker.com/r/s390x/redis/) diff --git a/redmine/README.md b/redmine/README.md index ffc753241aac..3a8587cd7243 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/redmine/issues](https://github.com/docker-library/redmine/issues) + [https://github.com/docker-library/redmine/issues](https://github.com/docker-library/redmine/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/) diff --git a/registry/README.md b/registry/README.md index 25202c865833..495c06244bf9 100644 --- a/registry/README.md +++ b/registry/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker/distribution-library-image/issues](https://github.com/docker/distribution-library-image/issues) + [https://github.com/docker/distribution-library-image/issues](https://github.com/docker/distribution-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/registry/), [`arm32v6`](https://hub.docker.com/r/arm32v6/registry/), [`arm32v7`](https://hub.docker.com/r/arm32v7/registry/), [`arm64v8`](https://hub.docker.com/r/arm64v8/registry/), [`ppc64le`](https://hub.docker.com/r/ppc64le/registry/), [`s390x`](https://hub.docker.com/r/s390x/registry/) diff --git a/rethinkdb/README.md b/rethinkdb/README.md index f933a62b7c2e..0e4f76003004 100644 --- a/rethinkdb/README.md +++ b/rethinkdb/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/rethinkdb/rethinkdb-dockerfiles/issues](https://github.com/rethinkdb/rethinkdb-dockerfiles/issues) + [https://github.com/rethinkdb/rethinkdb-dockerfiles/issues](https://github.com/rethinkdb/rethinkdb-dockerfiles/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/rethinkdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rethinkdb/), [`s390x`](https://hub.docker.com/r/s390x/rethinkdb/) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index a401982aee5c..76d5e0919f52 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -32,7 +32,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/RocketChat/Docker.Official.Image/issues](https://github.com/RocketChat/Docker.Official.Image/issues) + [https://github.com/RocketChat/Docker.Official.Image/issues](https://github.com/RocketChat/Docker.Official.Image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/rocket.chat/) diff --git a/ros/README.md b/ros/README.md index a3296bb8397e..0141b5e00a4d 100644 --- a/ros/README.md +++ b/ros/README.md @@ -49,7 +49,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues) + [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/ros/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ros/) diff --git a/ruby/README.md b/ruby/README.md index 1eaf11fb17e1..9f4fcbd7e8b0 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -50,7 +50,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/ruby/issues](https://github.com/docker-library/ruby/issues) + [https://github.com/docker-library/ruby/issues](https://github.com/docker-library/ruby/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/ruby/), [`arm32v5`](https://hub.docker.com/r/arm32v5/ruby/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ruby/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ruby/), [`i386`](https://hub.docker.com/r/i386/ruby/), [`mips64le`](https://hub.docker.com/r/mips64le/ruby/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ruby/), [`s390x`](https://hub.docker.com/r/s390x/ruby/) diff --git a/rust/README.md b/rust/README.md index ad4979adab04..18f3e8c9121f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/rust-lang/docker-rust/issues](https://github.com/rust-lang/docker-rust/issues) + [https://github.com/rust-lang/docker-rust/issues](https://github.com/rust-lang/docker-rust/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/) diff --git a/satosa/README.md b/satosa/README.md index 67d99b5a6e57..c86aedcfa741 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -39,7 +39,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues) + [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v5`](https://hub.docker.com/r/arm32v5/satosa/), [`arm32v6`](https://hub.docker.com/r/arm32v6/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) diff --git a/silverpeas/README.md b/silverpeas/README.md index ac78f38b4ffa..5183b8c3a29e 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/Silverpeas/docker-silverpeas-prod/issues](https://github.com/Silverpeas/docker-silverpeas-prod/issues) + [https://github.com/Silverpeas/docker-silverpeas-prod/issues](https://github.com/Silverpeas/docker-silverpeas-prod/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/silverpeas/) diff --git a/sl/README.md b/sl/README.md index 33aefb130582..de0c9302f8ba 100644 --- a/sl/README.md +++ b/sl/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/scientificlinux/sl-docker/issues](https://github.com/scientificlinux/sl-docker/issues) + [https://github.com/scientificlinux/sl-docker/issues](https://github.com/scientificlinux/sl-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/sl/) diff --git a/sonarqube/README.md b/sonarqube/README.md index 5c292e52d9c4..60e50d061307 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -38,7 +38,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/SonarSource/docker-sonarqube/issues](https://github.com/SonarSource/docker-sonarqube/issues) + [https://github.com/SonarSource/docker-sonarqube/issues](https://github.com/SonarSource/docker-sonarqube/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/sonarqube/), [`arm64v8`](https://hub.docker.com/r/arm64v8/sonarqube/) diff --git a/spiped/README.md b/spiped/README.md index 5aa0db6599ca..5fa6bef77583 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/TimWolla/docker-spiped/issues](https://github.com/TimWolla/docker-spiped/issues) + [https://github.com/TimWolla/docker-spiped/issues](https://github.com/TimWolla/docker-spiped/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/spiped/), [`arm32v5`](https://hub.docker.com/r/arm32v5/spiped/), [`arm32v6`](https://hub.docker.com/r/arm32v6/spiped/), [`arm32v7`](https://hub.docker.com/r/arm32v7/spiped/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spiped/), [`i386`](https://hub.docker.com/r/i386/spiped/), [`mips64le`](https://hub.docker.com/r/mips64le/spiped/), [`ppc64le`](https://hub.docker.com/r/ppc64le/spiped/), [`s390x`](https://hub.docker.com/r/s390x/spiped/) diff --git a/storm/README.md b/storm/README.md index 541a0c3ae4e4..5413ccdb51c0 100644 --- a/storm/README.md +++ b/storm/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/31z4/storm-docker/issues](https://github.com/31z4/storm-docker/issues) + [https://github.com/31z4/storm-docker/issues](https://github.com/31z4/storm-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/storm/), [`arm64v8`](https://hub.docker.com/r/arm64v8/storm/) diff --git a/swipl/README.md b/swipl/README.md index d29fb1cd8c23..1b68099b7091 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/SWI-Prolog/docker-swipl/issues](https://github.com/SWI-Prolog/docker-swipl/issues) + [https://github.com/SWI-Prolog/docker-swipl/issues](https://github.com/SWI-Prolog/docker-swipl/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/swipl/), [`arm32v7`](https://hub.docker.com/r/arm32v7/swipl/), [`arm64v8`](https://hub.docker.com/r/arm64v8/swipl/) diff --git a/teamspeak/README.md b/teamspeak/README.md index 039ddb70e528..b7142b5630a6 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -29,7 +29,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues) + [https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/teamspeak/) diff --git a/telegraf/README.md b/telegraf/README.md index daab4dcbe623..ea01777405b6 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -34,7 +34,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues) + [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/telegraf/), [`arm32v7`](https://hub.docker.com/r/arm32v7/telegraf/), [`arm64v8`](https://hub.docker.com/r/arm64v8/telegraf/) diff --git a/tomcat/README.md b/tomcat/README.md index 40a6294f60cc..9b04fe100ad8 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -64,7 +64,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/tomcat/issues](https://github.com/docker-library/tomcat/issues) + [https://github.com/docker-library/tomcat/issues](https://github.com/docker-library/tomcat/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/tomcat/), [`arm32v7`](https://hub.docker.com/r/arm32v7/tomcat/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomcat/), [`ppc64le`](https://hub.docker.com/r/ppc64le/tomcat/), [`s390x`](https://hub.docker.com/r/s390x/tomcat/) diff --git a/tomee/README.md b/tomee/README.md index 4a532582021d..4e4bbc929308 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -91,7 +91,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/tomitribe/docker-tomee/issues](https://github.com/tomitribe/docker-tomee/issues) + [https://github.com/tomitribe/docker-tomee/issues](https://github.com/tomitribe/docker-tomee/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/tomee/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomee/) diff --git a/traefik/README.md b/traefik/README.md index 1a40d0b3f0b6..b7626f3dbeee 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -35,7 +35,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/traefik/traefik-library-image/issues](https://github.com/traefik/traefik-library-image/issues) + [https://github.com/traefik/traefik-library-image/issues](https://github.com/traefik/traefik-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/traefik/), [`arm32v6`](https://hub.docker.com/r/arm32v6/traefik/), [`arm64v8`](https://hub.docker.com/r/arm64v8/traefik/), [`s390x`](https://hub.docker.com/r/s390x/traefik/), [`windows-amd64`](https://hub.docker.com/r/winamd64/traefik/) diff --git a/unit/README.md b/unit/README.md index d5b195e8a2a9..ff68d4aa5c47 100644 --- a/unit/README.md +++ b/unit/README.md @@ -36,7 +36,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/nginx/unit/issues](https://github.com/nginx/unit/issues) + [https://github.com/nginx/unit/issues](https://github.com/nginx/unit/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/unit/), [`arm64v8`](https://hub.docker.com/r/arm64v8/unit/) diff --git a/varnish/README.md b/varnish/README.md index 6c1e21ca1df1..19e3f75d4176 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/varnish/docker-varnish/issues](https://github.com/varnish/docker-varnish/issues) + [https://github.com/varnish/docker-varnish/issues](https://github.com/varnish/docker-varnish/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/varnish/), [`arm32v7`](https://hub.docker.com/r/arm32v7/varnish/), [`arm64v8`](https://hub.docker.com/r/arm64v8/varnish/), [`i386`](https://hub.docker.com/r/i386/varnish/), [`ppc64le`](https://hub.docker.com/r/ppc64le/varnish/), [`s390x`](https://hub.docker.com/r/s390x/varnish/) diff --git a/vault/README.md b/vault/README.md index 792e7bb6d98d..17bc5a1a5c1a 100644 --- a/vault/README.md +++ b/vault/README.md @@ -36,7 +36,7 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Quick reference (cont.) - **Where to file issues**: - [https://github.com/hashicorp/docker-vault/issues](https://github.com/hashicorp/docker-vault/issues) + [https://github.com/hashicorp/docker-vault/issues](https://github.com/hashicorp/docker-vault/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/vault/), [`arm32v6`](https://hub.docker.com/r/arm32v6/vault/), [`arm64v8`](https://hub.docker.com/r/arm64v8/vault/), [`i386`](https://hub.docker.com/r/i386/vault/) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 318310d5bc72..a70a1c1ff776 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/WASdev/ci.docker/issues](https://github.com/WASdev/ci.docker/issues) + [https://github.com/WASdev/ci.docker/issues](https://github.com/WASdev/ci.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/websphere-liberty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/websphere-liberty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/websphere-liberty/), [`s390x`](https://hub.docker.com/r/s390x/websphere-liberty/) diff --git a/wordpress/README.md b/wordpress/README.md index 0f0897ff1d1d..e52a783c49d3 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -40,7 +40,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/wordpress/issues](https://github.com/docker-library/wordpress/issues) + [https://github.com/docker-library/wordpress/issues](https://github.com/docker-library/wordpress/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`mips64le`](https://hub.docker.com/r/mips64le/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/) diff --git a/yourls/README.md b/yourls/README.md index 469f30395386..0144763c6466 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/YOURLS/docker/issues](https://github.com/YOURLS/docker/issues) + [https://github.com/YOURLS/docker/issues](https://github.com/YOURLS/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`mips64le`](https://hub.docker.com/r/mips64le/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) diff --git a/znc/README.md b/znc/README.md index 91fb9aebe8e0..ffffaf8aea3e 100644 --- a/znc/README.md +++ b/znc/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/znc/znc-docker/issues](https://github.com/znc/znc-docker/issues) + [https://github.com/znc/znc-docker/issues](https://github.com/znc/znc-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/znc/), [`arm32v6`](https://hub.docker.com/r/arm32v6/znc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/znc/) diff --git a/zookeeper/README.md b/zookeeper/README.md index d34ab56cb2fb..6a9802fee8dc 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -30,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/31z4/zookeeper-docker/issues](https://github.com/31z4/zookeeper-docker/issues) + [https://github.com/31z4/zookeeper-docker/issues](https://github.com/31z4/zookeeper-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/), [`s390x`](https://hub.docker.com/r/s390x/zookeeper/) From 5c0254d7f624971ab89682cc5ecfa491b434745d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 May 2023 16:08:49 -0700 Subject: [PATCH 0281/2686] Run update.sh --- alpine/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 94f9b241fc69..b294e67b0901 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c025403b1536857f35630b3c7fe5aabf8b6d256a/x86_64/Dockerfile) -- [`3.17.3`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/681b8c677aaed66e48a5ce721509647bd4dcd017/x86_64/Dockerfile) +- [`3.18.0`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/571516c7ce3ecec3c70541d13529a4abb33ba362/x86_64/Dockerfile) +- [`3.17.3`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/681b8c677aaed66e48a5ce721509647bd4dcd017/x86_64/Dockerfile) - [`3.16.5`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/8abeb7449b58d28e108a027990013f56845bdea4/x86_64/Dockerfile) - [`3.15.8`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/d5bee21392df6b1e0b491cee3f3436121238a178/x86_64/Dockerfile) -- [`3.14.10`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/cb8d8712f672bfa9a8b9a1f64b2c12f369f1cc68/x86_64/Dockerfile) # Quick reference (cont.) From ebf19175ee8c1464f910d0436d2ccc23b30b960c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 May 2023 17:08:47 -0700 Subject: [PATCH 0282/2686] Run update.sh --- bash/README.md | 24 ++++++------- jetty/README.md | 82 ++++++++++++++++++++++----------------------- registry/README.md | 3 +- tomcat/README.md | 4 +-- wordpress/README.md | 9 +++++ 5 files changed, 66 insertions(+), 56 deletions(-) diff --git a/bash/README.md b/bash/README.md index f400aca7ed02..961e76c9da4f 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230501`, `devel`, `devel-20230501-alpine3.17`, `devel-alpine3.17`](https://github.com/tianon/docker-bash/blob/8cd4a6cbc4e48fd98b8336c911a2a39680a8dd7e/devel/Dockerfile) -- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.17`, `5.2-alpine3.17`, `5-alpine3.17`, `alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.17`, `5.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.17`, `5.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.17`, `4.4-alpine3.17`, `4-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.17`, `4.3-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.17`, `4.2-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.17`, `4.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.17`, `4.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.17`, `3.1-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.17`, `3.0-alpine3.17`](https://github.com/tianon/docker-bash/blob/e9549fc1cbb5a3fc754b97a2bedfa05c32ae4e12/3.0/Dockerfile) +- [`devel-20230504`, `devel`, `devel-20230504-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e73ff20af7431345d27345c3fb59d2979051815a/devel/Dockerfile) +- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.18`, `4.4-alpine3.18`, `4-alpine3.18`](https://github.com/tianon/docker-bash/blob/a4249001da00598147e31c6dae1d2f873ea133d6/4.4/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.18`, `4.3-alpine3.18`](https://github.com/tianon/docker-bash/blob/9d96b3dd25eb51833e9436102282379a6926d4e1/4.3/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.18`, `4.2-alpine3.18`](https://github.com/tianon/docker-bash/blob/26bc148c4296705a6b7b66591d9de286331db0e3/4.2/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.18`, `4.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/fb857333ccbaaa26a237578d18b76aade04ff83b/4.1/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.18`, `4.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/ee076229de93378de38a2b8e408345e5f5f28ddc/4.0/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`](https://github.com/tianon/docker-bash/blob/0d587a69276bb18347f735f26300099a95b8c330/3.2/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.18`, `3.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/b83109dc6ccacd01778fd2377f57ada886f0541a/3.1/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.18`, `3.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/2642c1a5b7d148d3486b739b68724bd0d234902c/3.0/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index dfc5ab176bc5..74b4fd0c0e9a 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/9.4/jdk11/Dockerfile) -- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/88e43d7a7af21ab38bb4a3c72fdbeeb9e0f17bb9/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk11/Dockerfile) +- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index 495c06244bf9..d2a59a9be1e1 100644 --- a/registry/README.md +++ b/registry/README.md @@ -26,7 +26,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.1`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/0be0d08b29d56bb1ef0fab93c751ca92d6976a19/Dockerfile) +- [`2.8.1`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/fa2dfdbfe65663972eaf9882447203c71f4ccb12/Dockerfile) +- [`2.8.2-beta.2`](https://github.com/docker/distribution-library-image/blob/fa2dfdbfe65663972eaf9882447203c71f4ccb12/Dockerfile.rc) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 9b04fe100ad8..1a5583ed25cd 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M5-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M5-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M5-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M5`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.0-M5-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M5-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M5-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/17250442a64aab56e229f14cf2a4f570da8bb48f/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.0-M6-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M6-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M6-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M6`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.0-M6-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M6-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M6-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk11/temurin-jammy/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index e52a783c49d3..07d26682d3ec 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) +- [`beta-6.2.1-RC1-apache`, `beta-6.2.1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2.1-RC1`, `beta-6.2.1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2.1-RC1-php8.0-apache`, `beta-6.2.1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2.1-RC1-php8.0`, `beta-6.2.1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/apache/Dockerfile) +- [`beta-6.2.1-RC1-fpm`, `beta-6.2.1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2.1-RC1-php8.0-fpm`, `beta-6.2.1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/fpm/Dockerfile) +- [`beta-6.2.1-RC1-fpm-alpine`, `beta-6.2.1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2.1-RC1-php8.0-fpm-alpine`, `beta-6.2.1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.2.1-RC1-php8.1-apache`, `beta-6.2.1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2.1-RC1-php8.1`, `beta-6.2.1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/apache/Dockerfile) +- [`beta-6.2.1-RC1-php8.1-fpm`, `beta-6.2.1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/fpm/Dockerfile) +- [`beta-6.2.1-RC1-php8.1-fpm-alpine`, `beta-6.2.1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.2.1-RC1-php8.2-apache`, `beta-6.2.1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2.1-RC1-php8.2`, `beta-6.2.1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/apache/Dockerfile) +- [`beta-6.2.1-RC1-php8.2-fpm`, `beta-6.2.1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/fpm/Dockerfile) +- [`beta-6.2.1-RC1-php8.2-fpm-alpine`, `beta-6.2.1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 203393852a94cc58ab7dfdb534ab70d4ba885298 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 May 2023 10:08:45 -0700 Subject: [PATCH 0283/2686] Run update.sh --- arangodb/README.md | 2 +- dart/README.md | 4 ++-- geonetwork/README.md | 6 +++--- haxe/README.md | 16 ++++++++-------- julia/README.md | 39 +++++++++++++-------------------------- tomcat/README.md | 30 +++++++++++++++--------------- traefik/README.md | 3 --- 7 files changed, 42 insertions(+), 58 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 20923877f024..c9fad0f1b053 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/04479ca0b7f52b6f23f3739eae6994f4875990f2/alpine/3.9.10/Dockerfile) +- [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/83dcd50e8af2210c1315074d8c9260b9ff572e9f/alpine/3.9.10/Dockerfile) - [`3.10`, `3.10.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 367828b6fca1..a3e986d6555c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.19.6-sdk`, `2.19-sdk`, `2-sdk`, `stable-sdk`, `sdk`, `2.19.6`, `2.19`, `2`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/dcc0328d74695db68783998338f0b8f28fd999e0/stable/bullseye/Dockerfile) -- [`3.0.0-417.4.beta-sdk`, `beta-sdk`, `3.0.0-417.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/dcc0328d74695db68783998338f0b8f28fd999e0/beta/bullseye/Dockerfile) +- [`3.0.0-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.0`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d465cf9ee48865341057cd59a0987e433928a8c9/stable/bullseye/Dockerfile) +- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d465cf9ee48865341057cd59a0987e433928a8c9/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index a064cf011b42..29dfcba0363d 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.9`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/4f7461deeb025a9cd13ca910f559c501b6745aa6/3.12.9/Dockerfile) -- [`3.12.9-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/4f7461deeb025a9cd13ca910f559c501b6745aa6/3.12.9/postgres/Dockerfile) +- [`3.12.10`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/Dockerfile) +- [`3.12.10-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/postgres/Dockerfile) - [`4.0.6`, `4.0`](https://github.com/geonetwork/docker-geonetwork/blob/00936dcf7dbb2399405c53aa05c670fa4bb79736/4.0.6/Dockerfile) -- [`4.2.3`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/fe6c6898ff830df110eafe0384c7296480992102/4.2.3/Dockerfile) +- [`4.2.4`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/3ef0cd8059c71b49b775b017c85ada9d82b113e9/4.2.4/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index c7ad7adf9056..e829ab68b2f8 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -32,34 +32,34 @@ WARNING: - [`4.3.1-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/buster/Dockerfile) - [`4.3.1-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.1-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.1-alpine3.17`, `4.3-alpine3.17`, `4.3.1-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.17/Dockerfile) +- [`4.3.1-alpine3.18`, `4.3-alpine3.18`, `4.3.1-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.3/alpine3.18/Dockerfile) +- [`4.3.1-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.17/Dockerfile) - [`4.3.1-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.16/Dockerfile) - [`4.3.1-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.15/Dockerfile) -- [`4.3.1-alpine3.14`, `4.3-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.14/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) -- [`4.2.5-alpine3.17`, `4.2-alpine3.17`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) +- [`4.2.5-alpine3.18`, `4.2-alpine3.18`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) +- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) - [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.2/alpine3.16/Dockerfile) - [`4.2.5-alpine3.15`, `4.2-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.15/Dockerfile) -- [`4.2.5-alpine3.14`, `4.2-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.14/Dockerfile) - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) - [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) -- [`4.1.5-alpine3.17`, `4.1-alpine3.17`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) +- [`4.1.5-alpine3.18`, `4.1-alpine3.18`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) +- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) - [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.1/alpine3.16/Dockerfile) - [`4.1.5-alpine3.15`, `4.1-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.1/alpine3.15/Dockerfile) -- [`4.1.5-alpine3.14`, `4.1-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.1/alpine3.14/Dockerfile) - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) - [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- [`4.0.5-alpine3.17`, `4.0-alpine3.17`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) +- [`4.0.5-alpine3.18`, `4.0-alpine3.18`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) +- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) - [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) - [`4.0.5-alpine3.15`, `4.0-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.0/alpine3.15/Dockerfile) -- [`4.0.5-alpine3.14`, `4.0-alpine3.14`](https://github.com/HaxeFoundation/docker-library-haxe/blob/71afcb74d885cfbcf9bff439d7aba47a79b541b1/4.0/alpine3.14/Dockerfile) - [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`, `3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 0c15c4369e89..53e5e6f00e53 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,18 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.0-rc3-bullseye`, `1.9-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/bullseye/Dockerfile) -- [`1.9.0-rc3-buster`, `1.9-rc-buster`, `rc-buster`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/buster/Dockerfile) -- [`1.9.0-rc3-alpine3.17`, `1.9-rc-alpine3.17`, `rc-alpine3.17`, `1.9.0-rc3-alpine`, `1.9-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/alpine3.17/Dockerfile) -- [`1.9.0-rc3-alpine3.16`, `1.9-rc-alpine3.16`, `rc-alpine3.16`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/alpine3.16/Dockerfile) -- [`1.9.0-rc3-windowsservercore-ltsc2022`, `1.9-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-rc3-windowsservercore-1809`, `1.9-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.8.5-bullseye`, `1.8-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/bullseye/Dockerfile) -- [`1.8.5-buster`, `1.8-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/buster/Dockerfile) -- [`1.8.5-alpine3.17`, `1.8-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.8.5-alpine`, `1.8-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/alpine3.17/Dockerfile) -- [`1.8.5-alpine3.16`, `1.8-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/alpine3.16/Dockerfile) -- [`1.8.5-windowsservercore-ltsc2022`, `1.8-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.8.5-windowsservercore-1809`, `1.8-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) +- [`1.9.0-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/bullseye/Dockerfile) +- [`1.9.0-buster`, `1.9-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/buster/Dockerfile) +- [`1.9.0-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.9.0-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.17/Dockerfile) +- [`1.9.0-alpine3.16`, `1.9-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.16/Dockerfile) +- [`1.9.0-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.0-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/buster/Dockerfile) - [`1.6.7-alpine3.17`, `1.6-alpine3.17`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) @@ -49,20 +43,13 @@ WARNING: ## Shared Tags -- `1.9.0-rc3`, `1.9-rc`, `rc`: - - [`1.9.0-rc3-bullseye`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/bullseye/Dockerfile) - - [`1.9.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-rc3-windowsservercore`, `1.9-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.9.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8fdc863548cea0f6bbb26b5a3398b57e1de1efb9/1.9-rc/windows/windowsservercore-1809/Dockerfile) -- `1.8.5`, `1.8`, `1`, `latest`: - - [`1.8.5-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.8/bullseye/Dockerfile) - - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.8.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) -- `1.8.5-windowsservercore`, `1.8-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.8.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.8.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f6b00c80fa154c1a93ca25bc51e5a70f081530c/1.8/windows/windowsservercore-1809/Dockerfile) +- `1.9.0`, `1.9`, `1`, `latest`: + - [`1.9.0-bullseye`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/bullseye/Dockerfile) + - [`1.9.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.0-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.9.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 1a5583ed25cd..90a74ce1aa1c 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -30,21 +30,21 @@ WARNING: - [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.8-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.8-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.8-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.74-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.74-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.74-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.74`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.74-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.74-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.74-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.74-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.74-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.74-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.74-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.74-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.74-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.74-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.74-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.74-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.74-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.74-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.74-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.74-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.74-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.74-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.74-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.74-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.74-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.74-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.74-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.74-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.74-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/680850057e040405b12b2d841969a38e9c039740/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.74-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.74-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.75-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.75-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.75-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.75`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.75-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.75-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.75-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.75-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.75-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.75-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.75-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.75-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.75-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.75-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.75-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.75-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.75-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.75-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.75-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.75-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.75-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.75-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.75-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.75-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.75-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.75-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.75-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.75-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.75-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.75-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.75-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.88-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.88-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.88-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-jammy/Dockerfile) - [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-focal/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index b7626f3dbeee..63d46b68b2bf 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -28,9 +28,6 @@ WARNING: - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) - [`v2.10.1-windowsservercore-1809`, `2.10.1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/windows/1809/Dockerfile) - [`v2.10.1`, `2.10.1`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/alpine/Dockerfile) -- [`v1.7.34-windowsservercore-1809`, `1.7.34-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/windows/1809/Dockerfile) -- [`v1.7.34-alpine`, `1.7.34-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/alpine/Dockerfile) -- [`v1.7.34`, `1.7.34`, `v1.7`, `1.7`, `maroilles`](https://github.com/traefik/traefik-library-image/blob/4434758cf14bbd1ec9511b3f2a37b0a6ce846db6/scratch/Dockerfile) # Quick reference (cont.) From 51df55d386089f3e10e12caa513f3e4a4783fe67 Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Wed, 12 Apr 2023 16:25:17 -0700 Subject: [PATCH 0284/2686] Unit: multiple fixes. Made description consistent with current style guide. Moved links to https. Fixed key features link. Fixed Community slack link. --- unit/README-short.txt | 2 +- unit/content.md | 8 ++++---- unit/get-help.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/unit/README-short.txt b/unit/README-short.txt index a2b0e0e34480..ba3ab5549e80 100644 --- a/unit/README-short.txt +++ b/unit/README-short.txt @@ -1 +1 @@ -Official build of NGINX Unit: a polyglot app server, a reverse proxy, and a static file server +Official build of NGINX Unit: Universal Web App Server diff --git a/unit/content.md b/unit/content.md index fce102d06fee..286fc69a5ac1 100644 --- a/unit/content.md +++ b/unit/content.md @@ -1,15 +1,15 @@ # What is Unit? -NGINX Unit is a polyglot app server, a reverse proxy, and a static file server, available for UNIX-like systems. It was built by nginx team members from scratch to be highly efficient and fully configurable at runtime. It is licensed under the Apache 2.0 license. The supported application languages are Go, JavaScript, Java, Perl, PHP, Python, Ruby, and more. +NGINX Unit is a lightweight and versatile application runtime that provides the essential components for your web application as a single open-source server: running application code, serving static assets, handling TLS and request routing. -> [Key Features](https://unit.nginx.org/#key-features) +For more information, check out [Key Features](https://unit.nginx.org/keyfeatures). %%LOGO%% # Available tags -Please see [Unit's website](http://unit.nginx.org/installation/#docker-images) for details. +Please see [Unit's website](https://unit.nginx.org/installation/#docker-images) for details. # How to use this image -Please check the [Initial Configuration](http://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](http://unit.nginx.org/howto/docker/) can be of help. +Please check the [Initial Configuration](https://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](https://unit.nginx.org/howto/docker/) can be of help. diff --git a/unit/get-help.md b/unit/get-help.md index 877f2c47e568..95f22075b65a 100644 --- a/unit/get-help.md +++ b/unit/get-help.md @@ -1 +1 @@ -the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX community](https://nginxcommunity.slack.com/) +the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX Community Slack](https://community.nginx.org/joinslack) From cbe0a775f673b4eeb0d30891fa9ba859e4fbaf31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 May 2023 15:13:46 -0700 Subject: [PATCH 0285/2686] Run update.sh --- unit/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/unit/README.md b/unit/README.md index ff68d4aa5c47..897de61894e9 100644 --- a/unit/README.md +++ b/unit/README.md @@ -20,7 +20,7 @@ WARNING: [the Unit Docker Maintainers](https://github.com/nginx/unit) - **Where to get help**: - the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX community](https://nginxcommunity.slack.com/) + the [GitHub issues page](https://github.com/nginx/unit/issues), the [NGINX Community Slack](https://community.nginx.org/joinslack) # Supported tags and respective `Dockerfile` links @@ -54,19 +54,19 @@ WARNING: # What is Unit? -NGINX Unit is a polyglot app server, a reverse proxy, and a static file server, available for UNIX-like systems. It was built by nginx team members from scratch to be highly efficient and fully configurable at runtime. It is licensed under the Apache 2.0 license. The supported application languages are Go, JavaScript, Java, Perl, PHP, Python, Ruby, and more. +NGINX Unit is a lightweight and versatile application runtime that provides the essential components for your web application as a single open-source server: running application code, serving static assets, handling TLS and request routing. -> [Key Features](https://unit.nginx.org/#key-features) +For more information, check out [Key Features](https://unit.nginx.org/keyfeatures). ![logo](https://raw.githubusercontent.com/docker-library/docs/d6e69ebb56fe6890bd6ec587295ff1d67e2849fe/unit/logo.svg?sanitize=true) # Available tags -Please see [Unit's website](http://unit.nginx.org/installation/#docker-images) for details. +Please see [Unit's website](https://unit.nginx.org/installation/#docker-images) for details. # How to use this image -Please check the [Initial Configuration](http://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](http://unit.nginx.org/howto/docker/) can be of help. +Please check the [Initial Configuration](https://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](https://unit.nginx.org/howto/docker/) can be of help. # License From 25ec249b1362dd4b3838bc2cf869f7d7a6614ae6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 May 2023 16:08:46 -0700 Subject: [PATCH 0286/2686] Run update.sh --- unit/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/unit/README.md b/unit/README.md index 897de61894e9..fbd00426f10b 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.1-go1.20`, `go1.20`, `go1`, `go`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.go1.20) -- [`1.29.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.jsc11) -- [`1.29.1-node18`, `node18`, `node`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.node18) -- [`1.29.1-perl5.36`, `perl5.36`, `perl5`, `perl`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.perl5.36) -- [`1.29.1-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.php8.2) -- [`1.29.1-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.python3.11) -- [`1.29.1-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.ruby3.2) -- [`1.29.1-minimal`, `minimal`](https://github.com/nginx/unit/blob/b9bc222021e77bbdfb12576b3e315b962cf6b399/pkg/docker/Dockerfile.minimal) +- [`1.30.0-go1.20`, `go1.20`, `go1`, `go`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.go1.20) +- [`1.30.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.jsc11) +- [`1.30.0-node18`, `node18`, `node`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.node18) +- [`1.30.0-perl5.36`, `perl5.36`, `perl5`, `perl`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.perl5.36) +- [`1.30.0-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.php8.2) +- [`1.30.0-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.python3.11) +- [`1.30.0-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.ruby3.2) +- [`1.30.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From bac0d1d2c9e9249db7a7a6c4aa7e1f032d193756 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 11 May 2023 09:29:54 -0700 Subject: [PATCH 0287/2686] Let "push.pl" fail when updates fail --- push.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.pl b/push.pl index 43c11bf34c05..4c871ea9f3f5 100755 --- a/push.pl +++ b/push.pl @@ -233,5 +233,5 @@ sub prompt_for_edit { description => $hubShort, full_description => $hubLong, }); - warn 'patch to ' . $repoUrl . ' failed: ' . $repoPatch->res->text and next unless $repoPatch->res->is_success; + die 'patch to ' . $repoUrl . ' failed: ' . $repoPatch->res->text unless $repoPatch->res->is_success; } From 420761d91ca32d47554719a6a4ca9cd43bcefc19 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 May 2023 10:08:45 -0700 Subject: [PATCH 0288/2686] Run update.sh --- registry/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/registry/README.md b/registry/README.md index d2a59a9be1e1..cc0118e338b6 100644 --- a/registry/README.md +++ b/registry/README.md @@ -26,8 +26,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.1`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/fa2dfdbfe65663972eaf9882447203c71f4ccb12/Dockerfile) -- [`2.8.2-beta.2`](https://github.com/docker/distribution-library-image/blob/fa2dfdbfe65663972eaf9882447203c71f4ccb12/Dockerfile.rc) +- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/e42103a5670538e10ac42f5284e2a25912f17973/Dockerfile) # Quick reference (cont.) From e13caffd8783c5a9eb8e63fe1c2e13003bd7ade7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 May 2023 12:16:52 -0700 Subject: [PATCH 0289/2686] Run update.sh --- crate/README.md | 2 +- docker/README.md | 12 ++++----- golang/README.md | 8 +++--- haproxy/README.md | 4 +-- httpd/README.md | 4 +-- memcached/README.md | 2 +- orientdb/README.md | 4 +-- php/README.md | 66 ++++++++++++++++++--------------------------- rabbitmq/README.md | 8 +++--- redis/README.md | 8 +++--- 10 files changed, 52 insertions(+), 66 deletions(-) diff --git a/crate/README.md b/crate/README.md index d821dac194b8..e7c07261ea7f 100644 --- a/crate/README.md +++ b/crate/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.3.1`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/7b386ec1fc97ff17205fe10e145604de5fb758ed/Dockerfile) -- [`5.2.7`, `5.2`](https://github.com/crate/docker-crate/blob/5916109687edafe95199906be6e100e1b0b99588/Dockerfile) +- [`5.2.8`, `5.2`](https://github.com/crate/docker-crate/blob/9dd974bffff06d56e844a099c709583864c970e6/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 0b4975953933..86a0b0c36d31 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`24.0.0-rc.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.2-cli-alpine3.17`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/cli/Dockerfile) -- [`24.0.0-rc.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.2-dind-alpine3.17`, `24.0.0-rc.2`, `24-rc`, `rc`, `24.0.0-rc.2-alpine3.17`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind/Dockerfile) +- [`24.0.0-rc.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/24-rc/cli/Dockerfile) +- [`24.0.0-rc.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.2-dind-alpine3.18`, `24.0.0-rc.2`, `24-rc`, `rc`, `24.0.0-rc.2-alpine3.18`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind/Dockerfile) - [`24.0.0-rc.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind-rootless/Dockerfile) - [`24.0.0-rc.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) - [`24.0.0-rc.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-rc.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.17`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/cli/Dockerfile) -- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.17`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.17`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/23.0/cli/Dockerfile) +- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) - [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.17`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.17`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/cli/Dockerfile) -- [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.17`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) +- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.18`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/20.10/cli/Dockerfile) +- [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.18`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) - [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) - [`20.10.24-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) - [`20.10.24-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 2d1c9a65f26f..1ea4e129a72b 100644 --- a/golang/README.md +++ b/golang/README.md @@ -30,16 +30,16 @@ WARNING: - [`1.20.4-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/bullseye/Dockerfile) - [`1.20.4-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/buster/Dockerfile) -- [`1.20.4-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.20.4-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.17/Dockerfile) -- [`1.20.4-alpine3.16`, `1.20-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.16/Dockerfile) +- [`1.20.4-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.4-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/03d21ef7daf1f356142dcfaed18febf36efd391e/1.20/alpine3.18/Dockerfile) +- [`1.20.4-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.17/Dockerfile) - [`1.20.4-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.4-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.4-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.4-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-1809/Dockerfile) - [`1.19.9-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/bullseye/Dockerfile) - [`1.19.9-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/buster/Dockerfile) -- [`1.19.9-alpine3.17`, `1.19-alpine3.17`, `1.19.9-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.17/Dockerfile) -- [`1.19.9-alpine3.16`, `1.19-alpine3.16`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.16/Dockerfile) +- [`1.19.9-alpine3.18`, `1.19-alpine3.18`, `1.19.9-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/03d21ef7daf1f356142dcfaed18febf36efd391e/1.19/alpine3.18/Dockerfile) +- [`1.19.9-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.17/Dockerfile) - [`1.19.9-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.9-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) - [`1.19.9-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-ltsc2022/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 237b508b0fee..c5e389c1f61e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev10`, `2.8-dev`, `2.8-dev10-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/ce432ec1d0ed66b18ebf2418772652137dac7b94/2.8/Dockerfile) -- [`2.8-dev10-alpine`, `2.8-dev-alpine`, `2.8-dev10-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/ce432ec1d0ed66b18ebf2418772652137dac7b94/2.8/alpine/Dockerfile) +- [`2.8-dev11`, `2.8-dev`, `2.8-dev11-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c513a74567d7594543da2852f61f7576d83a714e/2.8/Dockerfile) +- [`2.8-dev11-alpine`, `2.8-dev-alpine`, `2.8-dev11-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/c513a74567d7594543da2852f61f7576d83a714e/2.8/alpine/Dockerfile) - [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) - [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index e79b816c4fa6..df2ed0f173ca 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/7d6139b45f2e9a3146c2062894aca949cba91bba/2.4/Dockerfile) -- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.17`, `2.4-alpine3.17`, `2-alpine3.17`, `alpine3.17`](https://github.com/docker-library/httpd/blob/7d6139b45f2e9a3146c2062894aca949cba91bba/2.4/alpine/Dockerfile) +- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/ef41771bcc6367657fdbf1cdae028f2e1e32d222/2.4/Dockerfile) +- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/d401fd69b9ecb158fcd921f22d54bd2890cedc84/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index cf835e1ca88e..193702b14a00 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.19`, `1.6`, `1`, `latest`, `1.6.19-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/68debf1bf876ac61f14fac76eabba9a3f8c718eb/debian/Dockerfile) -- [`1.6.19-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.19-alpine3.17`, `1.6-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/memcached/blob/68debf1bf876ac61f14fac76eabba9a3f8c718eb/alpine/Dockerfile) +- [`1.6.19-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.19-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/45e529c10f6d8e32a8106c4752bad3662abe200d/alpine/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index ee6ffa15a5a4..9a1f7cf5c2f0 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.18`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/0d918587573a79091bc9e648faff362b01162742/release/3.2.x/3.2.18/Dockerfile) -- [`3.2.18-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/0d918587573a79091bc9e648faff362b01162742/release/3.2.x/3.2.18-tp3/Dockerfile) +- [`3.2.19`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/e62fe3c13523432d51e0440c3227a8646e2536cf/release/3.2.x/3.2.19/Dockerfile) +- [`3.2.19-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/e62fe3c13523432d51e0440c3227a8646e2536cf/release/3.2.x/3.2.19-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) diff --git a/php/README.md b/php/README.md index 888ef4d43b78..7c6a6053f503 100644 --- a/php/README.md +++ b/php/README.md @@ -24,34 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.6RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.6RC1-bullseye`, `8.2-rc-bullseye`, `8.2.6RC1-cli`, `8.2-rc-cli`, `8.2.6RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.6RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.6RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.6RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.6RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.6RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.6RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.6RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.6RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/cli/Dockerfile) -- [`8.2.6RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/apache/Dockerfile) -- [`8.2.6RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.6RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2-rc/buster/zts/Dockerfile) -- [`8.2.6RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.6RC1-alpine3.17`, `8.2-rc-alpine3.17`, `8.2.6RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.6RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.6RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`, `8.2.6RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.6RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`, `8.2.6RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.6RC1-cli-alpine3.16`, `8.2-rc-cli-alpine3.16`, `8.2.6RC1-alpine3.16`, `8.2-rc-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/cli/Dockerfile) -- [`8.2.6RC1-fpm-alpine3.16`, `8.2-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/fpm/Dockerfile) -- [`8.2.6RC1-zts-alpine3.16`, `8.2-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/3ef8f054f86a60c02fa5be98e2b13579832ccc74/8.2-rc/alpine3.16/zts/Dockerfile) -- [`8.2.5-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.5-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.5-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.5`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/cli/Dockerfile) -- [`8.2.5-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.5-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/apache/Dockerfile) -- [`8.2.5-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.5-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/fpm/Dockerfile) -- [`8.2.5-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.5-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/bullseye/zts/Dockerfile) -- [`8.2.5-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.5-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/cli/Dockerfile) -- [`8.2.5-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/apache/Dockerfile) -- [`8.2.5-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/fpm/Dockerfile) -- [`8.2.5-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.2/buster/zts/Dockerfile) -- [`8.2.5-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.5-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`, `8.2.5-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.5-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.5-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`, `8.2.5-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.5-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`, `8.2.5-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.17/zts/Dockerfile) -- [`8.2.5-cli-alpine3.16`, `8.2-cli-alpine3.16`, `8-cli-alpine3.16`, `cli-alpine3.16`, `8.2.5-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/cli/Dockerfile) -- [`8.2.5-fpm-alpine3.16`, `8.2-fpm-alpine3.16`, `8-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/fpm/Dockerfile) -- [`8.2.5-zts-alpine3.16`, `8.2-zts-alpine3.16`, `8-zts-alpine3.16`, `zts-alpine3.16`](https://github.com/docker-library/php/blob/d2314e7d5b281c68218c9053c6fe38af98d2b777/8.2/alpine3.16/zts/Dockerfile) +- [`8.2.6-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.6-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.6-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.6`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/cli/Dockerfile) +- [`8.2.6-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.6-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/apache/Dockerfile) +- [`8.2.6-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.6-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/fpm/Dockerfile) +- [`8.2.6-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.6-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/zts/Dockerfile) +- [`8.2.6-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.6-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/cli/Dockerfile) +- [`8.2.6-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/apache/Dockerfile) +- [`8.2.6-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/fpm/Dockerfile) +- [`8.2.6-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/zts/Dockerfile) +- [`8.2.6-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.6-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.6-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.6-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.6-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.6-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.6-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.6-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.6-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.6-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.6-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.6-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/zts/Dockerfile) - [`8.1.19RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.19RC1-bullseye`, `8.1-rc-bullseye`, `8.1.19RC1-cli`, `8.1-rc-cli`, `8.1.19RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/cli/Dockerfile) - [`8.1.19RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.19RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/apache/Dockerfile) - [`8.1.19RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.19RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/fpm/Dockerfile) @@ -60,12 +46,12 @@ WARNING: - [`8.1.19RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/apache/Dockerfile) - [`8.1.19RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/fpm/Dockerfile) - [`8.1.19RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/zts/Dockerfile) -- [`8.1.19RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.19RC1-alpine3.17`, `8.1-rc-alpine3.17`, `8.1.19RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.19RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.19RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`, `8.1.19RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.19RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`, `8.1.19RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.19RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.19RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.19RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.19RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.16/zts/Dockerfile) +- [`8.1.19RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.19RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.19RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.19RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.19RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.19RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.19RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.19RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.19RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.19RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.19RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.19RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/zts/Dockerfile) - [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/cli/Dockerfile) - [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/apache/Dockerfile) - [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/fpm/Dockerfile) @@ -74,12 +60,12 @@ WARNING: - [`8.1.18-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/apache/Dockerfile) - [`8.1.18-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/fpm/Dockerfile) - [`8.1.18-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/zts/Dockerfile) -- [`8.1.18-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.18-alpine3.17`, `8.1-alpine3.17`, `8.1.18-cli-alpine`, `8.1-cli-alpine`, `8.1.18-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.18-fpm-alpine3.17`, `8.1-fpm-alpine3.17`, `8.1.18-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.18-zts-alpine3.17`, `8.1-zts-alpine3.17`, `8.1.18-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.18-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.18-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.18-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.18-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.16/zts/Dockerfile) +- [`8.1.18-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.18-alpine3.18`, `8.1-alpine3.18`, `8.1.18-cli-alpine`, `8.1-cli-alpine`, `8.1.18-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.18-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.18-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.18-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.18-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.18-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.18-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.18-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.18-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c3f1336bd545..c663cce0c74e 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -26,19 +26,19 @@ WARNING: - [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6445a8d1b16de9188bccfb0b29ab0cf448eadbb3/3.12-rc/ubuntu/Dockerfile) - [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6445a8d1b16de9188bccfb0b29ab0cf448eadbb3/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.12-rc/alpine/Dockerfile) - [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) - [`3.11.15`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8de237303dee7eece27df0c56a13cf97714341d4/3.11/ubuntu/Dockerfile) - [`3.11.15-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8de237303dee7eece27df0c56a13cf97714341d4/3.11/alpine/Dockerfile) +- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.11/alpine/Dockerfile) - [`3.11.15-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/ubuntu/Dockerfile) - [`3.10.22-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/alpine/Dockerfile) +- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.10/alpine/Dockerfile) - [`3.10.22-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 26535e01512e..17f916711aba 100644 --- a/redis/README.md +++ b/redis/README.md @@ -25,13 +25,13 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.2-rc/Dockerfile) -- [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.17`, `7.2-rc-alpine3.17`](https://github.com/docker-library/redis/blob/fb3e83ea2c60ba55da46a5eaf114c4d77cd0e97d/7.2-rc/alpine/Dockerfile) +- [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.2-rc/alpine/Dockerfile) - [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.0/Dockerfile) -- [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.17`, `7.0-alpine3.17`, `7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/redis/blob/3fd8719e1dbce24f9e493466ce6649860735b363/7.0/alpine/Dockerfile) +- [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.0/alpine/Dockerfile) - [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.2/Dockerfile) -- [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.17`, `6.2-alpine3.17`, `6-alpine3.17`](https://github.com/docker-library/redis/blob/1609d202febf50daa01c8effab2a72e2fab1c2b5/6.2/alpine/Dockerfile) +- [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.2/alpine/Dockerfile) - [`6.0.19`, `6.0`, `6.0.19-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.0/Dockerfile) -- [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.17`, `6.0-alpine3.17`](https://github.com/docker-library/redis/blob/e4599c8e3ff02de6d66c5ee5e4e8b19b74cbeec3/6.0/alpine/Dockerfile) +- [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.0/alpine/Dockerfile) # Quick reference (cont.) From 9d461bc67fd9853d8fa3ab7e42ac0b90282ffc47 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 May 2023 13:08:44 -0700 Subject: [PATCH 0290/2686] Run update.sh --- postgres/README.md | 20 ++++++++++---------- ruby/README.md | 13 ++++--------- 2 files changed, 14 insertions(+), 19 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 56c900ac9d8c..6c305f7d1fd9 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.2`, `15`, `latest`, `15.2-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/15/bullseye/Dockerfile) -- [`15.2-alpine`, `15-alpine`, `alpine`, `15.2-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/15/alpine/Dockerfile) -- [`14.7`, `14`, `14.7-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/14/bullseye/Dockerfile) -- [`14.7-alpine`, `14-alpine`, `14.7-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/14/alpine/Dockerfile) -- [`13.10`, `13`, `13.10-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/13/bullseye/Dockerfile) -- [`13.10-alpine`, `13-alpine`, `13.10-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/13/alpine/Dockerfile) -- [`12.14`, `12`, `12.14-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/12/bullseye/Dockerfile) -- [`12.14-alpine`, `12-alpine`, `12.14-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/12/alpine/Dockerfile) -- [`11.19-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/dd68d91377a3631b36a23f2e4795f6189db4ba12/11/bullseye/Dockerfile) -- [`11.19-alpine`, `11-alpine`, `11.19-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/25b3034e9b0155c3e71acaf650243e7d12a571c1/11/alpine/Dockerfile) +- [`15.3`, `15`, `latest`, `15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) +- [`15.3-alpine`, `15-alpine`, `alpine`, `15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/alpine/Dockerfile) +- [`14.8`, `14`, `14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) +- [`14.8-alpine`, `14-alpine`, `14.8-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/alpine/Dockerfile) +- [`13.11`, `13`, `13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) +- [`13.11-alpine`, `13-alpine`, `13.11-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/alpine/Dockerfile) +- [`12.15`, `12`, `12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) +- [`12.15-alpine`, `12-alpine`, `12.15-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/alpine/Dockerfile) +- [`11.20-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/bullseye/Dockerfile) +- [`11.20-alpine`, `11-alpine`, `11.20-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 9f4fcbd7e8b0..102fce518cca 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -28,24 +28,19 @@ WARNING: - [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-bullseye/Dockerfile) - [`3.2.2-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/buster/Dockerfile) - [`3.2.2-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-buster/Dockerfile) -- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.17/Dockerfile) -- [`3.2.2-alpine3.16`, `3.2-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.16/Dockerfile) +- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3ac53a7fe039d4299aca9b49ad53e1cc85cc6498/3.2/alpine3.18/Dockerfile) +- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.17/Dockerfile) - [`3.1.4-bullseye`, `3.1-bullseye`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/bullseye/Dockerfile) - [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-bullseye/Dockerfile) - [`3.1.4-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/buster/Dockerfile) - [`3.1.4-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-buster/Dockerfile) -- [`3.1.4-alpine3.17`, `3.1-alpine3.17`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.17/Dockerfile) -- [`3.1.4-alpine3.16`, `3.1-alpine3.16`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.16/Dockerfile) +- [`3.1.4-alpine3.18`, `3.1-alpine3.18`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/3ac53a7fe039d4299aca9b49ad53e1cc85cc6498/3.1/alpine3.18/Dockerfile) +- [`3.1.4-alpine3.17`, `3.1-alpine3.17`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.17/Dockerfile) - [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/bullseye/Dockerfile) - [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-bullseye/Dockerfile) - [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/buster/Dockerfile) - [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-buster/Dockerfile) - [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/alpine3.16/Dockerfile) -- [`2.7.8-bullseye`, `2.7-bullseye`, `2-bullseye`, `2.7.8`, `2.7`, `2`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/bullseye/Dockerfile) -- [`2.7.8-slim-bullseye`, `2.7-slim-bullseye`, `2-slim-bullseye`, `2.7.8-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/slim-bullseye/Dockerfile) -- [`2.7.8-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/buster/Dockerfile) -- [`2.7.8-slim-buster`, `2.7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/slim-buster/Dockerfile) -- [`2.7.8-alpine3.16`, `2.7-alpine3.16`, `2-alpine3.16`, `2.7.8-alpine`, `2.7-alpine`, `2-alpine`](https://github.com/docker-library/ruby/blob/7117899e1b7d3d8230fe8021acf76ead8d2f5230/2.7/alpine3.16/Dockerfile) # Quick reference (cont.) From 7b2bc5c79c179ec0f5b1df223438680039826c89 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 May 2023 15:08:54 -0700 Subject: [PATCH 0291/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- docker/README.md | 18 +++++++++--------- mariadb/README.md | 19 +++++++++---------- openjdk/README.md | 36 ++++++++++++++++++------------------ python/README.md | 24 ++++++++++++------------ 5 files changed, 56 insertions(+), 57 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index f216b9921ccd..21869de0ab0a 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/glibc/Dockerfile) -- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/uclibc/Dockerfile) -- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/musl/Dockerfile) -- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/c4c1b1f404daebc67a32c5949d5d5b3af3b14302/latest-1/glibc/Dockerfile) +- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/glibc/Dockerfile) +- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/uclibc/Dockerfile) +- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/musl/Dockerfile) +- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 86a0b0c36d31..94362568ddde 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.0-rc.2-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/24-rc/cli/Dockerfile) -- [`24.0.0-rc.2-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.2-dind-alpine3.18`, `24.0.0-rc.2`, `24-rc`, `rc`, `24.0.0-rc.2-alpine3.18`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind/Dockerfile) -- [`24.0.0-rc.2-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-rc.2-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) -- [`24.0.0-rc.2-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-rc.2-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-rc.3-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.3-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/cli/Dockerfile) +- [`24.0.0-rc.3-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.3-dind-alpine3.18`, `24.0.0-rc.3`, `24-rc`, `rc`, `24.0.0-rc.3-alpine3.18`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/dind/Dockerfile) +- [`24.0.0-rc.3-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-rc.3-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) +- [`24.0.0-rc.3-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-rc.3-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/23.0/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) @@ -49,9 +49,9 @@ WARNING: ## Shared Tags -- `24.0.0-rc.2-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/56f5570b1f62e904a26cf4b96df0d440e2c49a7a/24-rc/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-rc.3-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index 09056f17d817..149d25cb4ac9 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,16 +26,15 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.0.1-rc-jammy`, `11.0-rc-jammy`, `11.0.1-rc`, `11.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/11.0/Dockerfile) -- [`10.11.2-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `10.11.2`, `10.11`, `10`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.11/Dockerfile) -- [`10.10.3-jammy`, `10.10-jammy`, `10.10.3`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.10/Dockerfile) -- [`10.9.5-jammy`, `10.9-jammy`, `10.9.5`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.9/Dockerfile) -- [`10.8.7-jammy`, `10.8-jammy`, `10.8.7`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.8/Dockerfile) -- [`10.7.8-focal`, `10.7-focal`, `10.7.8`, `10.7`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.7/Dockerfile) -- [`10.6.12-focal`, `10.6-focal`, `10.6.12`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.6/Dockerfile) -- [`10.5.19-focal`, `10.5-focal`, `10.5.19`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.5/Dockerfile) -- [`10.4.28-focal`, `10.4-focal`, `10.4.28`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.4/Dockerfile) -- [`10.3.38-focal`, `10.3-focal`, `10.3.38`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/29e2cbb9b2339627497fb3247942bd802ec81191/10.3/Dockerfile) +- [`11.0.1-rc-jammy`, `11.0-rc-jammy`, `11.0.1-rc`, `11.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/11.0/Dockerfile) +- [`10.11.3-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `lts-jammy`, `10.11.3`, `10.11`, `10`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.11/Dockerfile) +- [`10.10.4-jammy`, `10.10-jammy`, `10.10.4`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.10/Dockerfile) +- [`10.9.6-jammy`, `10.9-jammy`, `10.9.6`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.9/Dockerfile) +- [`10.8.8-jammy`, `10.8-jammy`, `10.8.8`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.8/Dockerfile) +- [`10.6.13-focal`, `10.6-focal`, `10.6.13`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.6/Dockerfile) +- [`10.5.20-focal`, `10.5-focal`, `10.5.20`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.5/Dockerfile) +- [`10.4.29-focal`, `10.4-focal`, `10.4.29`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.4/Dockerfile) +- [`10.3.39-focal`, `10.3-focal`, `10.3.39`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.3/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index a202c3903eeb..cc1469213d1b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-21-jdk-oraclelinux8`, `21-ea-21-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-21-jdk-oracle`, `21-ea-21-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-21-jdk-oraclelinux7`, `21-ea-21-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-21-jdk-bullseye`, `21-ea-21-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/bullseye/Dockerfile) -- [`21-ea-21-jdk-slim-bullseye`, `21-ea-21-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-21-jdk-slim`, `21-ea-21-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-21-jdk-buster`, `21-ea-21-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/buster/Dockerfile) -- [`21-ea-21-jdk-slim-buster`, `21-ea-21-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/slim-buster/Dockerfile) -- [`21-ea-21-jdk-windowsservercore-ltsc2022`, `21-ea-21-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-21-jdk-windowsservercore-1809`, `21-ea-21-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-21-jdk-nanoserver-1809`, `21-ea-21-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-22-jdk-oraclelinux8`, `21-ea-22-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-22-jdk-oracle`, `21-ea-22-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-22-jdk-oraclelinux7`, `21-ea-22-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-22-jdk-bullseye`, `21-ea-22-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/bullseye/Dockerfile) +- [`21-ea-22-jdk-slim-bullseye`, `21-ea-22-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-22-jdk-slim`, `21-ea-22-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-22-jdk-buster`, `21-ea-22-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/buster/Dockerfile) +- [`21-ea-22-jdk-slim-buster`, `21-ea-22-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/slim-buster/Dockerfile) +- [`21-ea-22-jdk-windowsservercore-ltsc2022`, `21-ea-22-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-22-jdk-windowsservercore-1809`, `21-ea-22-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-22-jdk-nanoserver-1809`, `21-ea-22-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-21-jdk`, `21-ea-21`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-21-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-21-jdk-windowsservercore`, `21-ea-21-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-21-jdk-nanoserver`, `21-ea-21-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/65fd649daf1e75d18011ed81d64cdfec4edae268/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-22-jdk`, `21-ea-22`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-22-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-22-jdk-windowsservercore`, `21-ea-22-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-22-jdk-nanoserver`, `21-ea-22-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 42d49f9e74c9..b9760df17730 100644 --- a/python/README.md +++ b/python/README.md @@ -32,44 +32,44 @@ WARNING: - [`3.12.0a7-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a7-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-bullseye/Dockerfile) - [`3.12.0a7-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/buster/Dockerfile) - [`3.12.0a7-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a7-alpine3.16`, `3.12-rc-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.16/Dockerfile) +- [`3.12.0a7-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.17/Dockerfile) - [`3.12.0a7-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0a7-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) - [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-bullseye/Dockerfile) - [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/buster/Dockerfile) - [`3.11.3-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-buster/Dockerfile) -- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.17/Dockerfile) -- [`3.11.3-alpine3.16`, `3.11-alpine3.16`, `3-alpine3.16`, `alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.16/Dockerfile) +- [`3.11.3-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.11/alpine3.18/Dockerfile) +- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.17/Dockerfile) - [`3.11.3-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.3-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.11-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/bullseye/Dockerfile) - [`3.10.11-slim-bullseye`, `3.10-slim-bullseye`, `3.10.11-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-bullseye/Dockerfile) - [`3.10.11-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/buster/Dockerfile) - [`3.10.11-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-buster/Dockerfile) -- [`3.10.11-alpine3.17`, `3.10-alpine3.17`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.17/Dockerfile) -- [`3.10.11-alpine3.16`, `3.10-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.16/Dockerfile) +- [`3.10.11-alpine3.18`, `3.10-alpine3.18`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.10/alpine3.18/Dockerfile) +- [`3.10.11-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.17/Dockerfile) - [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) - [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/bullseye/Dockerfile) - [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-bullseye/Dockerfile) - [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/buster/Dockerfile) - [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.17/Dockerfile) -- [`3.9.16-alpine3.16`, `3.9-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.16/Dockerfile) +- [`3.9.16-alpine3.18`, `3.9-alpine3.18`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.9/alpine3.18/Dockerfile) +- [`3.9.16-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.17/Dockerfile) - [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/bullseye/Dockerfile) - [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-bullseye/Dockerfile) - [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/buster/Dockerfile) - [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.17/Dockerfile) -- [`3.8.16-alpine3.16`, `3.8-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.16/Dockerfile) +- [`3.8.16-alpine3.18`, `3.8-alpine3.18`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.8/alpine3.18/Dockerfile) +- [`3.8.16-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.17/Dockerfile) - [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) - [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-bullseye/Dockerfile) - [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/buster/Dockerfile) - [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.17/Dockerfile) -- [`3.7.16-alpine3.16`, `3.7-alpine3.16`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.16/Dockerfile) +- [`3.7.16-alpine3.18`, `3.7-alpine3.18`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.7/alpine3.18/Dockerfile) +- [`3.7.16-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.17/Dockerfile) ## Shared Tags From 9d4f8ce84cee75fe1991e4b6a4649fa851f23f78 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 12 May 2023 09:41:38 -0700 Subject: [PATCH 0292/2686] Fix "smart" single quotes (by swapping them with regular single quotes) --- chronograf/content.md | 2 +- couchbase/license.md | 2 +- mariadb/content.md | 2 +- php-zendserver/content.md | 2 +- sl/content.md | 2 +- spiped/content.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/chronograf/content.md b/chronograf/content.md index 765e2397d62c..3270ea9ade43 100644 --- a/chronograf/content.md +++ b/chronograf/content.md @@ -1,6 +1,6 @@ # Chronograf -Chronograf is InfluxData’s open source web application. Use Chronograf with the other components of the [TICK](https://www.influxdata.com/products/) stack for infrastructure monitoring, alert management, data visualization, and database management. +Chronograf is InfluxData's open source web application. Use Chronograf with the other components of the [TICK](https://www.influxdata.com/products/) stack for infrastructure monitoring, alert management, data visualization, and database management. %%LOGO%% diff --git a/couchbase/license.md b/couchbase/license.md index f7dfed031255..617fca49366a 100644 --- a/couchbase/license.md +++ b/couchbase/license.md @@ -1,5 +1,5 @@ Couchbase Server comes in two editions: Enterprise Edition and Community Edition. You can find details on the differences between the two and licensing information on the [Couchbase Server Editions](https://docs.couchbase.com/server/current/introduction/editions.html) page. -- **Enterprise Edition** -- The Enterprise Edition license provides for free for development and testing for Couchbase Enterprise Edition. A paid subscription for production deployment is required. Please refer to the [pricing](https://www.couchbase.com/pricing) page for details on Couchbase’s Enterprise Edition. +- **Enterprise Edition** -- The Enterprise Edition license provides for free for development and testing for Couchbase Enterprise Edition. A paid subscription for production deployment is required. Please refer to the [pricing](https://www.couchbase.com/pricing) page for details on Couchbase's Enterprise Edition. - **Community Edition** -- The Community Edition license provides for free deployment of Couchbase Community Edition for departmental-scale deployments of up to five node clusters. It has recently been changed to disallow use of XDCR, which is now an exclusive Enterprise Edition feature. diff --git a/mariadb/content.md b/mariadb/content.md index dd8746491a77..0015e02d7298 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -1,6 +1,6 @@ # What is MariaDB? -MariaDB Server is one of the most popular database servers in the world. It’s made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow. +MariaDB Server is one of the most popular database servers in the world. It's made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow. The intent is also to maintain high compatibility with MySQL, ensuring a library binary equivalency and exact matching with MySQL APIs and commands. MariaDB developers continue to develop new features and improve performance to better serve its users. diff --git a/php-zendserver/content.md b/php-zendserver/content.md index aa2daa6f857a..8f8a96706aaa 100644 --- a/php-zendserver/content.md +++ b/php-zendserver/content.md @@ -4,7 +4,7 @@ Zend Server is the integrated application platform for PHP mobile and web apps. ### Boost your Development with Z-Ray -Using Zend Server Z-Ray is akin to wearing X-Ray goggles, effortlessly giving developers deep insight into how their code is running as they are developing it – all without having to change any of their habits or workflow. With Z-Ray, developers can immediately understand the impact of their code changes, enabling them to both improve quality and solve issues long before their code reaches production. In addition to the obvious benefits of this ‘Left Shifting’ – better performance, fewer production issues and faster recovery times – using Z-Ray is also downright fun! +Using Zend Server Z-Ray is akin to wearing X-Ray goggles, effortlessly giving developers deep insight into how their code is running as they are developing it – all without having to change any of their habits or workflow. With Z-Ray, developers can immediately understand the impact of their code changes, enabling them to both improve quality and solve issues long before their code reaches production. In addition to the obvious benefits of this 'Left Shifting' – better performance, fewer production issues and faster recovery times – using Z-Ray is also downright fun! ### Powering Continuous Delivery diff --git a/sl/content.md b/sl/content.md index f3ba5685dd26..f2b99b8ff80a 100644 --- a/sl/content.md +++ b/sl/content.md @@ -10,7 +10,7 @@ Scientific Linux is a [Fermilab](http://fnal.gov/) sponsored project. Our primar Our Mission: -> Driven by Fermilab’s scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. +> Driven by Fermilab's scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. Scientific Linux is a rebuild of Red Hat Enterprise Linux (property of Red Hat Inc. NYSE:RHT). diff --git a/spiped/content.md b/spiped/content.md index deb5bd87b14a..3e013c925489 100644 --- a/spiped/content.md +++ b/spiped/content.md @@ -29,7 +29,7 @@ Usually you would combine this image with another linked container. The followin $ docker run -d -v /path/to/keyfile:/spiped/key:ro -p 9200:9200 --link elasticsearch:elasticsearch --init %%IMAGE%% -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200' ``` -If you don’t need any to bind to a privileged port you can pass `--user spiped` to make *spiped* run as an unprivileged user: +If you don't need any to bind to a privileged port you can pass `--user spiped` to make *spiped* run as an unprivileged user: ```console $ docker run -d -v /path/to/keyfile:/spiped/key:ro --user spiped -p 9200:9200 --link elasticsearch:elasticsearch --init %%IMAGE%% -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200' From 6614bce4c14eb102d4fc735d5001cc6628dcaee7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 May 2023 10:08:48 -0700 Subject: [PATCH 0293/2686] Run update.sh --- chronograf/README.md | 2 +- couchbase/README.md | 2 +- mariadb/README.md | 2 +- php-zendserver/README.md | 2 +- sl/README.md | 2 +- spiped/README.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index 212746973580..dd0d56b7c530 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -54,7 +54,7 @@ WARNING: # Chronograf -Chronograf is InfluxData’s open source web application. Use Chronograf with the other components of the [TICK](https://www.influxdata.com/products/) stack for infrastructure monitoring, alert management, data visualization, and database management. +Chronograf is InfluxData's open source web application. Use Chronograf with the other components of the [TICK](https://www.influxdata.com/products/) stack for infrastructure monitoring, alert management, data visualization, and database management. ![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/chronograf/logo.png) diff --git a/couchbase/README.md b/couchbase/README.md index 7dec028d174e..988c8f2cb5b9 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -216,7 +216,7 @@ Start Free Trial - https://cloud.couchbase.com/sign-up Couchbase Server comes in two editions: Enterprise Edition and Community Edition. You can find details on the differences between the two and licensing information on the [Couchbase Server Editions](https://docs.couchbase.com/server/current/introduction/editions.html) page. -- **Enterprise Edition** -- The Enterprise Edition license provides for free for development and testing for Couchbase Enterprise Edition. A paid subscription for production deployment is required. Please refer to the [pricing](https://www.couchbase.com/pricing) page for details on Couchbase’s Enterprise Edition. +- **Enterprise Edition** -- The Enterprise Edition license provides for free for development and testing for Couchbase Enterprise Edition. A paid subscription for production deployment is required. Please refer to the [pricing](https://www.couchbase.com/pricing) page for details on Couchbase's Enterprise Edition. - **Community Edition** -- The Community Edition license provides for free deployment of Couchbase Community Edition for departmental-scale deployments of up to five node clusters. It has recently been changed to disallow use of XDCR, which is now an exclusive Enterprise Edition feature. diff --git a/mariadb/README.md b/mariadb/README.md index 149d25cb4ac9..a87687911d9a 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -57,7 +57,7 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # What is MariaDB? -MariaDB Server is one of the most popular database servers in the world. It’s made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow. +MariaDB Server is one of the most popular database servers in the world. It's made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow. The intent is also to maintain high compatibility with MySQL, ensuring a library binary equivalency and exact matching with MySQL APIs and commands. MariaDB developers continue to develop new features and improve performance to better serve its users. diff --git a/php-zendserver/README.md b/php-zendserver/README.md index 6640f6f3282d..73bbfb9c560a 100644 --- a/php-zendserver/README.md +++ b/php-zendserver/README.md @@ -54,7 +54,7 @@ Zend Server is the integrated application platform for PHP mobile and web apps. ### Boost your Development with Z-Ray -Using Zend Server Z-Ray is akin to wearing X-Ray goggles, effortlessly giving developers deep insight into how their code is running as they are developing it – all without having to change any of their habits or workflow. With Z-Ray, developers can immediately understand the impact of their code changes, enabling them to both improve quality and solve issues long before their code reaches production. In addition to the obvious benefits of this ‘Left Shifting’ – better performance, fewer production issues and faster recovery times – using Z-Ray is also downright fun! +Using Zend Server Z-Ray is akin to wearing X-Ray goggles, effortlessly giving developers deep insight into how their code is running as they are developing it – all without having to change any of their habits or workflow. With Z-Ray, developers can immediately understand the impact of their code changes, enabling them to both improve quality and solve issues long before their code reaches production. In addition to the obvious benefits of this 'Left Shifting' – better performance, fewer production issues and faster recovery times – using Z-Ray is also downright fun! ### Powering Continuous Delivery diff --git a/sl/README.md b/sl/README.md index de0c9302f8ba..8e60e0897731 100644 --- a/sl/README.md +++ b/sl/README.md @@ -57,7 +57,7 @@ Scientific Linux is a [Fermilab](http://fnal.gov/) sponsored project. Our primar Our Mission: -> Driven by Fermilab’s scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. +> Driven by Fermilab's scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. Scientific Linux is a rebuild of Red Hat Enterprise Linux (property of Red Hat Inc. NYSE:RHT). diff --git a/spiped/README.md b/spiped/README.md index 5fa6bef77583..85420df422f9 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -77,7 +77,7 @@ Usually you would combine this image with another linked container. The followin $ docker run -d -v /path/to/keyfile:/spiped/key:ro -p 9200:9200 --link elasticsearch:elasticsearch --init spiped -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200' ``` -If you don’t need any to bind to a privileged port you can pass `--user spiped` to make *spiped* run as an unprivileged user: +If you don't need any to bind to a privileged port you can pass `--user spiped` to make *spiped* run as an unprivileged user: ```console $ docker run -d -v /path/to/keyfile:/spiped/key:ro --user spiped -p 9200:9200 --link elasticsearch:elasticsearch --init spiped -d -s '[0.0.0.0]:9200' -t 'elasticsearch:9200' From 0ad17f594ada75e801138c07d149bde0741aea5c Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 12 May 2023 10:29:29 -0700 Subject: [PATCH 0294/2686] Adjust "Docker Hub" URL references to use a shared variable (This makes testing against Hub's staging environment more straightforward.) --- push.pl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/push.pl b/push.pl index 4c871ea9f3f5..6449690cbea7 100755 --- a/push.pl +++ b/push.pl @@ -43,8 +43,10 @@ $password = $term->get_reply(prompt => 'Hub Password'); # TODO hide the input? O:) } -my $login = $ua->post('https://hub.docker.com/v2/users/login/' => {} => json => { username => $username, password => $password }); -die 'login failed' unless $login->res->is_success; +my $dockerHub = 'https://hub.docker.com'; + +my $login = $ua->post($dockerHub . '/v2/users/login/' => {} => json => { username => $username, password => $password }); +die 'login failed: ' . $login->res->error->{message} unless $login->res->is_success; my $token = $login->res->json->{token}; @@ -57,7 +59,7 @@ } die 'missing CSRF token' unless defined $csrf; -my $attemptLogin = $ua->post('https://hub.docker.com/attempt-login/' => {} => json => { jwt => $token }); +my $attemptLogin = $ua->post($dockerHub . '/attempt-login/' => {} => json => { jwt => $token }); die 'attempt-login failed' unless $attemptLogin->res->is_success; my $authorizationHeader = { @@ -171,7 +173,7 @@ sub prompt_for_edit { my $repoName = $repo; $repoName =~ s!^.*/!!; # 'hylang', 'perl', etc - my $repoUrl = 'https://hub.docker.com/v2/repositories/' . $repo . '/'; + my $repoUrl = $dockerHub . '/v2/repositories/' . $repo . '/'; if ($logos && $repo =~ m{ ^ library/ }x) { # the "library" org images include a logo which is displayed in the Hub UI From e59e3019f57c92395aef8c538b91a42ae697c64c Mon Sep 17 00:00:00 2001 From: Dumitru Corini Date: Sat, 13 May 2023 00:29:23 +0200 Subject: [PATCH 0295/2686] Update Bonita and Migration Tool versions (#2326) * Update Bonita and Migration Tool versions --- bonita/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bonita/content.md b/bonita/content.md index 2c5302ab259c..dcff3aabfe56 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -249,8 +249,8 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2022.2-u0/bonita-update-tool-3.1.0.zip - unzip bonita-update-tool-3.0.0.zip + wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.1-u0/bonita-update-tool-3.2.0.zip + unzip bonita-update-tool-3.2.0.zip ``` - Configure the update tool @@ -285,7 +285,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2022.2-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2023.1-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). From 42285001474ffdf84389100821db0b963f0b21b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 May 2023 16:08:48 -0700 Subject: [PATCH 0296/2686] Run update.sh --- almalinux/README.md | 8 ++++---- bonita/README.md | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 9ba0c9856fb3..54f146ca3842 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `8`, `8.7`, `8.7-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-default) -- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-minimal) -- [`9`, `9.1`, `9.1-20230407`](https://github.com/AlmaLinux/docker-images/blob/660a18fb2ff21cc4528bb36429626bd43025518d/Dockerfile-x86_64-default) -- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/660a18fb2ff21cc4528bb36429626bd43025518d/Dockerfile-x86_64-minimal) +- [`8`, `8.7`, `8.7-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-default) +- [`8-minimal`, `8.7-minimal`, `8.7-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-minimal) +- [`latest`, `9`, `9.2`, `9.2-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-default) +- [`minimal`, `9-minimal`, `9.2-minimal`, `9.2-minimal-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/bonita/README.md b/bonita/README.md index 3a2e7a80e1d4..eb17abc10fe0 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2021.1`, `7.12.1`, `7.12`](https://github.com/bonitasoft/bonita-distrib/blob/bfdd527629063b73f053320e50e1f6bfcd135d0a/docker/Dockerfile) - [`2021.2-u0`, `2021.2`, `7.13.0`, `7.13`](https://github.com/bonitasoft/bonita-distrib/blob/a1d9ee5e31d38958aa553cc7f9d465f1151d902f/docker/Dockerfile) - [`2022.1-u0`, `2022.1`, `7.14.0`, `7.14`](https://github.com/bonitasoft/bonita-distrib/blob/694bf79347add872f8c6a4c0a7f5c3ef12c31dc8/docker/Dockerfile) -- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/21c0e51634e836feaf910e8e3d6e95de200e1814/docker/Dockerfile) +- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/21c0e51634e836feaf910e8e3d6e95de200e1814/docker/Dockerfile) +- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/0848e9716e3ff36a15f03e8ffe5bfd25c273cc5b/docker/Dockerfile) # Quick reference (cont.) @@ -355,8 +355,8 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2022.2-u0/bonita-update-tool-3.1.0.zip - unzip bonita-update-tool-3.0.0.zip + wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.1-u0/bonita-update-tool-3.2.0.zip + unzip bonita-update-tool-3.2.0.zip ``` - Configure the update tool @@ -391,7 +391,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2022.2-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2023.1-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). From 3429db866fa3db82b717fc625f153b47360433e3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 May 2023 17:18:49 -0700 Subject: [PATCH 0297/2686] Run update.sh --- amazonlinux/README.md | 4 +- docker/README.md | 18 ++++----- eclipse-mosquitto/README.md | 8 ++-- ghost/README.md | 4 +- hylang/README.md | 78 ++++++++++++++++++------------------- php/README.md | 42 +++++++------------- postgres/README.md | 10 ++--- 7 files changed, 74 insertions(+), 90 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 9c5050b21aee..4f8f5b3c37db 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2023`, `latest`, `2023.0.20230503.0`](https://github.com/amazonlinux/container-images/blob/ea5a916817e6c6bd0f031358bb8f4f5c272d7de1/Dockerfile) -- [`2`, `2.0.20230418.0`](https://github.com/amazonlinux/container-images/blob/8bd72a51cb5cdb1ccee4b9c6ed0120794cc63388/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230419.0`](https://github.com/amazonlinux/container-images/blob/9a31073361b306f3cf92e9dfe8cd76192e04d2f7/Dockerfile) +- [`2`, `2.0.20230504.1`](https://github.com/amazonlinux/container-images/blob/a3064f5b88429f37824e9d9897021058f5eed6d6/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230501.0`](https://github.com/amazonlinux/container-images/blob/28a8085038403ae42578118bc2fdad522bbcd64e/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 94362568ddde..e275b044b042 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.0-rc.3-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.3-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/cli/Dockerfile) -- [`24.0.0-rc.3-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.3-dind-alpine3.18`, `24.0.0-rc.3`, `24-rc`, `rc`, `24.0.0-rc.3-alpine3.18`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/dind/Dockerfile) -- [`24.0.0-rc.3-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-rc.3-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) -- [`24.0.0-rc.3-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-rc.3-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-rc.4-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/cli/Dockerfile) +- [`24.0.0-rc.4-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.4-dind-alpine3.18`, `24.0.0-rc.4`, `24-rc`, `rc`, `24.0.0-rc.4-alpine3.18`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/dind/Dockerfile) +- [`24.0.0-rc.4-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/dind-rootless/Dockerfile) +- [`24.0.0-rc.4-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) +- [`24.0.0-rc.4-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-rc.4-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/23.0/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) @@ -49,9 +49,9 @@ WARNING: ## Shared Tags -- `24.0.0-rc.3-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9c900889e373ba8160632a6f02139be7e2c6b355/24-rc/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-rc.4-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: + - [`24.0.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 18b589760572..7f1a59f10f0d 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,11 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.15`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/a8448a9c7b14bdaee6ec80419d43fd6544e789b6/docker/2.0/Dockerfile) -- [`2.0.15-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/a8448a9c7b14bdaee6ec80419d43fd6544e789b6/docker/2.0-openssl/Dockerfile) -- [`1.6.15`, `1.6`](https://github.com/eclipse/mosquitto/blob/a8448a9c7b14bdaee6ec80419d43fd6544e789b6/docker/1.6/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/a8448a9c7b14bdaee6ec80419d43fd6544e789b6/docker/1.6-openssl/Dockerfile) -- [`1.5.11`, `1.5`](https://github.com/eclipse/mosquitto/blob/a8448a9c7b14bdaee6ec80419d43fd6544e789b6/docker/1.5/Dockerfile) +- [`2.0.15`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/2.0/Dockerfile) +- [`2.0.15-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/2.0-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index e31f79eda194..a7baaa745854 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.47.0`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f20d8389dceceff7ab58b31f44010d9f6eb841b3/5/debian/Dockerfile) -- [`5.47.0-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f20d8389dceceff7ab58b31f44010d9f6eb841b3/5/alpine/Dockerfile) +- [`5.47.1`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e90a06a528c861711be51f978f6c621d288e5fc2/5/debian/Dockerfile) +- [`5.47.1-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e90a06a528c861711be51f978f6c621d288e5fc2/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 5b219ce5746a..fa76602ba643 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,55 +28,55 @@ WARNING: ## Simple Tags -- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.26.0-python3.11-buster`, `0.26-python3.11-buster`, `0-python3.11-buster`, `python3.11-buster`, `0.26.0-buster`, `0.26-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-buster) -- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.26.0-python3.11-alpine3.16`, `0.26-python3.11-alpine3.16`, `0-python3.11-alpine3.16`, `python3.11-alpine3.16`, `0.26.0-alpine3.16`, `0.26-alpine3.16`, `0-alpine3.16`, `alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-alpine3.16) -- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.26.0-python3.10-buster`, `0.26-python3.10-buster`, `0-python3.10-buster`, `python3.10-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-buster) -- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.26.0-python3.10-alpine3.16`, `0.26-python3.10-alpine3.16`, `0-python3.10-alpine3.16`, `python3.10-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-alpine3.16) -- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.26.0-python3.9-buster`, `0.26-python3.9-buster`, `0-python3.9-buster`, `python3.9-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-buster) -- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.26.0-python3.9-alpine3.16`, `0.26-python3.9-alpine3.16`, `0-python3.9-alpine3.16`, `python3.9-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-alpine3.16) -- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.26.0-python3.8-buster`, `0.26-python3.8-buster`, `0-python3.8-buster`, `python3.8-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-buster) -- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.26.0-python3.8-alpine3.16`, `0.26-python3.8-alpine3.16`, `0-python3.8-alpine3.16`, `python3.8-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-alpine3.16) -- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- [`0.26.0-python3.7-buster`, `0.26-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-buster) -- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) -- [`0.26.0-python3.7-alpine3.16`, `0.26-python3.7-alpine3.16`, `0-python3.7-alpine3.16`, `python3.7-alpine3.16`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-alpine3.16) -- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.26.0-pypy3.9-buster`, `0.26-pypy3.9-buster`, `0-pypy3.9-buster`, `pypy3.9-buster`, `0.26.0-pypy-buster`, `0.26-pypy-buster`, `0-pypy-buster`, `pypy-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-buster) -- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) -- [`0.26.0-pypy3.8-buster`, `0.26-pypy3.8-buster`, `0-pypy3.8-buster`, `pypy3.8-buster`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-buster) -- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) +- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.26.0-python3.11-buster`, `0.26-python3.11-buster`, `0-python3.11-buster`, `python3.11-buster`, `0.26.0-buster`, `0.26-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-buster) +- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.26.0-python3.10-buster`, `0.26-python3.10-buster`, `0-python3.10-buster`, `python3.10-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-buster) +- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.26.0-python3.9-buster`, `0.26-python3.9-buster`, `0-python3.9-buster`, `python3.9-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-buster) +- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.26.0-python3.8-buster`, `0.26-python3.8-buster`, `0-python3.8-buster`, `python3.8-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-buster) +- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-bullseye) +- [`0.26.0-python3.7-buster`, `0.26-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-buster) +- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) +- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) +- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.26.0-pypy3.9-buster`, `0.26-pypy3.9-buster`, `0-pypy3.9-buster`, `pypy3.9-buster`, `0.26.0-pypy-buster`, `0.26-pypy-buster`, `0-pypy-buster`, `pypy-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-buster) +- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) +- [`0.26.0-pypy3.8-buster`, `0.26-pypy3.8-buster`, `0-pypy3.8-buster`, `pypy3.8-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-buster) +- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) ## Shared Tags - `0.26.0-python3.11`, `0.26-python3.11`, `0-python3.11`, `python3.11`, `0.26.0`, `0.26`, `0`, `latest`: - - [`0.26.0-python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.11-bullseye) + - [`0.26.0-python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-bullseye) - `0.26.0-python3.10`, `0.26-python3.10`, `0-python3.10`, `python3.10`: - - [`0.26.0-python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.10-bullseye) + - [`0.26.0-python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-bullseye) - `0.26.0-python3.9`, `0.26-python3.9`, `0-python3.9`, `python3.9`: - - [`0.26.0-python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.9-bullseye) + - [`0.26.0-python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-bullseye) - `0.26.0-python3.8`, `0.26-python3.8`, `0-python3.8`, `python3.8`: - - [`0.26.0-python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.8-bullseye) + - [`0.26.0-python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-bullseye) - `0.26.0-python3.7`, `0.26-python3.7`, `0-python3.7`, `python3.7`: - - [`0.26.0-python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.python3.7-bullseye) + - [`0.26.0-python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-bullseye) - `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: - - [`0.26.0-pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) - - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.26.0-pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) + - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) - `0.26.0-pypy3.8`, `0.26-pypy3.8`, `0-pypy3.8`, `pypy3.8`: - - [`0.26.0-pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) - - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5d40a725d8e66f019dc20a1bab456d54f3f7748f/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) + - [`0.26.0-pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) + - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 7c6a6053f503..1fd9c0047c2e 100644 --- a/php/README.md +++ b/php/README.md @@ -38,34 +38,20 @@ WARNING: - [`8.2.6-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.6-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/cli/Dockerfile) - [`8.2.6-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.6-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.19RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.19RC1-bullseye`, `8.1-rc-bullseye`, `8.1.19RC1-cli`, `8.1-rc-cli`, `8.1.19RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.19RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.19RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.19RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.19RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.19RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.19RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.19RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.19RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/cli/Dockerfile) -- [`8.1.19RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/apache/Dockerfile) -- [`8.1.19RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.19RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1-rc/buster/zts/Dockerfile) -- [`8.1.19RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.19RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.19RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.19RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.19RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.19RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.19RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.19RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.19RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.19RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.19RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.19RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/439e31604bfbc2831e2a4426a10caabf8e723a2a/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.18-cli-bullseye`, `8.1-cli-bullseye`, `8.1.18-bullseye`, `8.1-bullseye`, `8.1.18-cli`, `8.1-cli`, `8.1.18`, `8.1`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/cli/Dockerfile) -- [`8.1.18-apache-bullseye`, `8.1-apache-bullseye`, `8.1.18-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/apache/Dockerfile) -- [`8.1.18-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.18-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/fpm/Dockerfile) -- [`8.1.18-zts-bullseye`, `8.1-zts-bullseye`, `8.1.18-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/bullseye/zts/Dockerfile) -- [`8.1.18-cli-buster`, `8.1-cli-buster`, `8.1.18-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/cli/Dockerfile) -- [`8.1.18-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/apache/Dockerfile) -- [`8.1.18-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/fpm/Dockerfile) -- [`8.1.18-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.1/buster/zts/Dockerfile) -- [`8.1.18-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.18-alpine3.18`, `8.1-alpine3.18`, `8.1.18-cli-alpine`, `8.1-cli-alpine`, `8.1.18-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.18-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.18-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.18-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.18-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9a3c8d8a80ca26cf64328b6da1f34f6a9b123550/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.18-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.18-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.18-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.18-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/b93e90a02e9834fe3865f5e7b61f62186b2d05f5/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.19-cli-bullseye`, `8.1-cli-bullseye`, `8.1.19-bullseye`, `8.1-bullseye`, `8.1.19-cli`, `8.1-cli`, `8.1.19`, `8.1`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/cli/Dockerfile) +- [`8.1.19-apache-bullseye`, `8.1-apache-bullseye`, `8.1.19-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/apache/Dockerfile) +- [`8.1.19-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.19-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/fpm/Dockerfile) +- [`8.1.19-zts-bullseye`, `8.1-zts-bullseye`, `8.1.19-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/zts/Dockerfile) +- [`8.1.19-cli-buster`, `8.1-cli-buster`, `8.1.19-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/cli/Dockerfile) +- [`8.1.19-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/apache/Dockerfile) +- [`8.1.19-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/fpm/Dockerfile) +- [`8.1.19-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/zts/Dockerfile) +- [`8.1.19-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.19-alpine3.18`, `8.1-alpine3.18`, `8.1.19-cli-alpine`, `8.1-cli-alpine`, `8.1.19-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.19-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.19-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.19-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.19-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.19-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.19-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.19-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.19-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/fpm/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 6c305f7d1fd9..06b9b37042fe 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -25,15 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`15.3`, `15`, `latest`, `15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) -- [`15.3-alpine`, `15-alpine`, `alpine`, `15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/alpine/Dockerfile) +- [`15.3-alpine`, `15-alpine`, `alpine`, `15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/15/alpine/Dockerfile) - [`14.8`, `14`, `14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) -- [`14.8-alpine`, `14-alpine`, `14.8-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/alpine/Dockerfile) +- [`14.8-alpine`, `14-alpine`, `14.8-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/14/alpine/Dockerfile) - [`13.11`, `13`, `13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) -- [`13.11-alpine`, `13-alpine`, `13.11-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/alpine/Dockerfile) +- [`13.11-alpine`, `13-alpine`, `13.11-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/13/alpine/Dockerfile) - [`12.15`, `12`, `12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) -- [`12.15-alpine`, `12-alpine`, `12.15-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/alpine/Dockerfile) +- [`12.15-alpine`, `12-alpine`, `12.15-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/12/alpine/Dockerfile) - [`11.20-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/bullseye/Dockerfile) -- [`11.20-alpine`, `11-alpine`, `11.20-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/alpine/Dockerfile) +- [`11.20-alpine`, `11-alpine`, `11.20-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/11/alpine/Dockerfile) # Quick reference (cont.) From 8dacd84b1130b48fce743b2548d9aba0a3d566ee Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 15 May 2023 07:45:19 -0700 Subject: [PATCH 0298/2686] Add more exceptions to "generate-repo-stub-readme.sh" upstream disclaimer --- generate-repo-stub-readme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate-repo-stub-readme.sh b/generate-repo-stub-readme.sh index 1c8504cf186c..84d107606caa 100755 --- a/generate-repo-stub-readme.sh +++ b/generate-repo-stub-readme.sh @@ -41,7 +41,7 @@ if [ -f "$repo/deprecated.md" ]; then fi case "$repo" in - hello-world | buildpack-deps) disclaimer='' ;; + buildpack-deps | docker | hello-world | hylang) disclaimer='' ;; *) disclaimer=" (not to be confused with any official \`$repo\` image provided by \`$repo\` upstream)" ;; esac From 76575b899fbc73ddb5746da0209f151f2b07e041 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 May 2023 10:08:47 -0700 Subject: [PATCH 0299/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 7a33cc5d0752..64383cefcd85 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230507.0.148551`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a4485766c3fd1502a512a724f7a3620cf5693c5a/Dockerfile.base) -- [`base-devel`, `base-devel-20230507.0.148551`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a4485766c3fd1502a512a724f7a3620cf5693c5a/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230514.0.150299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/346fa38826610687e75ba90fb6e0797d0111e483/Dockerfile.base) +- [`base-devel`, `base-devel-20230514.0.150299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/346fa38826610687e75ba90fb6e0797d0111e483/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index e9e1ae5a852e..ef6f65ca1c7e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b490e027e92877683f967ec1f4709f2fbad749a3/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/3632d8b1f5ae9aba67c3b693838ab9a52f282408/Dockerfile) # Quick reference (cont.) From 1aa098d2505c8891c6d6fb64173692f3d17f8410 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 May 2023 14:15:57 -0700 Subject: [PATCH 0300/2686] Run update.sh --- memcached/README.md | 4 ++-- rabbitmq/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index 193702b14a00..958e09c841fc 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.19`, `1.6`, `1`, `latest`, `1.6.19-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/68debf1bf876ac61f14fac76eabba9a3f8c718eb/debian/Dockerfile) -- [`1.6.19-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.19-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/45e529c10f6d8e32a8106c4752bad3662abe200d/alpine/Dockerfile) +- [`1.6.20`, `1.6`, `1`, `latest`, `1.6.20-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/067704d799d434d12ad73b1334358e1b6d4cf8b5/debian/Dockerfile) +- [`1.6.20-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.20-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/067704d799d434d12ad73b1334358e1b6d4cf8b5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c663cce0c74e..755cb19bf8be 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/6445a8d1b16de9188bccfb0b29ab0cf448eadbb3/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-rc.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.12-rc/alpine/Dockerfile) -- [`3.12.0-rc.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.15`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8de237303dee7eece27df0c56a13cf97714341d4/3.11/ubuntu/Dockerfile) -- [`3.11.15-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.15-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.11/alpine/Dockerfile) -- [`3.11.15-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.0-rc.2`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-rc.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.11.16`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/ubuntu/Dockerfile) +- [`3.11.16-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.16-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/alpine/Dockerfile) +- [`3.11.16-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/ubuntu/Dockerfile) - [`3.10.22-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.10/alpine/Dockerfile) From ae4e78c40b0994ca4ca18f713ec32e3bd74f80f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 May 2023 15:15:35 -0700 Subject: [PATCH 0301/2686] Run update.sh --- cassandra/README.md | 2 +- ghost/README.md | 4 ++-- julia/README.md | 8 ++++---- redis/README.md | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 77bd7730cbb7..8578c8be6619 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -27,7 +27,7 @@ WARNING: - [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.1/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.0/Dockerfile) - [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) -- [`3.0.28`, `3.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/3.0/Dockerfile) +- [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index a7baaa745854..080012ca9d4e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.47.1`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e90a06a528c861711be51f978f6c621d288e5fc2/5/debian/Dockerfile) -- [`5.47.1-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e90a06a528c861711be51f978f6c621d288e5fc2/5/alpine/Dockerfile) +- [`5.47.2`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/260c0c0c14a4e9b1659c3eb545ec8372de54f1f2/5/debian/Dockerfile) +- [`5.47.2-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/260c0c0c14a4e9b1659c3eb545ec8372de54f1f2/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 53e5e6f00e53..b28f5ced2a36 100644 --- a/julia/README.md +++ b/julia/README.md @@ -30,14 +30,14 @@ WARNING: - [`1.9.0-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/bullseye/Dockerfile) - [`1.9.0-buster`, `1.9-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/buster/Dockerfile) -- [`1.9.0-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`, `1.9.0-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.17/Dockerfile) -- [`1.9.0-alpine3.16`, `1.9-alpine3.16`, `1-alpine3.16`, `alpine3.16`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.16/Dockerfile) +- [`1.9.0-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.0-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.9/alpine3.18/Dockerfile) +- [`1.9.0-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.17/Dockerfile) - [`1.9.0-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.9.0-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/buster/Dockerfile) -- [`1.6.7-alpine3.17`, `1.6-alpine3.17`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) -- [`1.6.7-alpine3.16`, `1.6-alpine3.16`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.16/Dockerfile) +- [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) +- [`1.6.7-alpine3.17`, `1.6-alpine3.17`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 17f916711aba..ccb422f153d2 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2-rc1`, `7.2-rc`, `7.2-rc1-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.2-rc/Dockerfile) -- [`7.2-rc1-alpine`, `7.2-rc-alpine`, `7.2-rc1-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.2-rc/alpine/Dockerfile) +- [`7.2-rc2`, `7.2-rc`, `7.2-rc2-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/2e6e8961037d8b2838a4105bb9a761441e1ae477/7.2-rc/Dockerfile) +- [`7.2-rc2-alpine`, `7.2-rc-alpine`, `7.2-rc2-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/2e6e8961037d8b2838a4105bb9a761441e1ae477/7.2-rc/alpine/Dockerfile) - [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.0/Dockerfile) - [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.0/alpine/Dockerfile) - [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.2/Dockerfile) From 4d2ba535a4a5a71019979e8be7e675bc0d5829ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 May 2023 17:17:28 -0700 Subject: [PATCH 0302/2686] Run update.sh --- docker/README.md | 13 ++----------- photon/README.md | 4 ++-- ruby/README.md | 16 +++++++++++----- ubuntu/README.md | 3 ++- 4 files changed, 17 insertions(+), 19 deletions(-) diff --git a/docker/README.md b/docker/README.md index e275b044b042..acf25398c099 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,23 +29,17 @@ WARNING: ## Simple Tags - [`24.0.0-rc.4-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/cli/Dockerfile) -- [`24.0.0-rc.4-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.4-dind-alpine3.18`, `24.0.0-rc.4`, `24-rc`, `rc`, `24.0.0-rc.4-alpine3.18`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/dind/Dockerfile) +- [`24.0.0-rc.4-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.4-dind-alpine3.18`, `24.0.0-rc.4`, `24-rc`, `rc`, `24.0.0-rc.4-alpine3.18`](https://github.com/docker-library/docker/blob/a3ca225e9c0e568cf87a7b60c951b939c3964c91/24-rc/dind/Dockerfile) - [`24.0.0-rc.4-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/dind-rootless/Dockerfile) - [`24.0.0-rc.4-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) - [`24.0.0-rc.4-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.0-rc.4-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/23.0/cli/Dockerfile) -- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind/Dockerfile) +- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/a3ca225e9c0e568cf87a7b60c951b939c3964c91/23.0/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) - [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) -- [`20.10.24-cli`, `20.10-cli`, `20-cli`, `20.10.24-cli-alpine3.18`, `20.10.24`, `20.10`, `20`, `20.10.24-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/20.10/cli/Dockerfile) -- [`20.10.24-dind`, `20.10-dind`, `20-dind`, `20.10.24-dind-alpine3.18`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind/Dockerfile) -- [`20.10.24-dind-rootless`, `20.10-dind-rootless`, `20-dind-rootless`](https://github.com/docker-library/docker/blob/d71ed6659319c2608be2290c581787d2d4779ef2/20.10/dind-rootless/Dockerfile) -- [`20.10.24-git`, `20.10-git`, `20-git`](https://github.com/docker-library/docker/blob/f23a2bea97f6d7ec563bc316302fb8edf620ec5b/20.10/git/Dockerfile) -- [`20.10.24-windowsservercore-ltsc2022`, `20.10-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`20.10.24-windowsservercore-1809`, `20.10-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -55,9 +49,6 @@ WARNING: - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) -- `20.10.24-windowsservercore`, `20.10-windowsservercore`, `20-windowsservercore`: - - [`20.10.24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`20.10.24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7bdd5e0d531739e1e329c939bd6d24baaffd4570/20.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 2ce6f39a47ad..6776af482040 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230508`, `latest`](https://github.com/vmware/photon-docker-image/blob/632a31370122286585265e8f90f8d01abf6b48f8/docker/Dockerfile) -- [`4.0`, `4.0-20230506`](https://github.com/vmware/photon-docker-image/blob/4a20654b07e42375415fdf6a1c6cf863059f9bfb/docker/Dockerfile) -- [`3.0`, `3.0-20230408`](https://github.com/vmware/photon-docker-image/blob/b7616914fd9dd6584a91df971767d6e5e93de55d/docker/Dockerfile) +- [`4.0`, `4.0-20230515`](https://github.com/vmware/photon-docker-image/blob/ce749a6a6b5af6decb6edf27fbf661a03d82ff69/docker/Dockerfile) +- [`3.0`, `3.0-20230515`](https://github.com/vmware/photon-docker-image/blob/8f9b582d6859a0966cff38b98474fdae75fc07f4/docker/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 102fce518cca..1efa5e851ec6 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,23 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.3.0-preview1-bullseye`, `3.3-rc-bullseye`, `3.3.0-preview1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/b0be6d1004b0c0665366402905347a85f115b324/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-preview1-slim-bullseye`, `3.3-rc-slim-bullseye`, `3.3.0-preview1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/slim-bullseye/Dockerfile) +- [`3.3.0-preview1-buster`, `3.3-rc-buster`](https://github.com/docker-library/ruby/blob/b0be6d1004b0c0665366402905347a85f115b324/3.3-rc/buster/Dockerfile) +- [`3.3.0-preview1-slim-buster`, `3.3-rc-slim-buster`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/slim-buster/Dockerfile) +- [`3.3.0-preview1-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview1-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.18/Dockerfile) +- [`3.3.0-preview1-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.17/Dockerfile) - [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/bullseye/Dockerfile) - [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-bullseye/Dockerfile) - [`3.2.2-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/buster/Dockerfile) - [`3.2.2-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-buster/Dockerfile) -- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3ac53a7fe039d4299aca9b49ad53e1cc85cc6498/3.2/alpine3.18/Dockerfile) -- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/alpine3.17/Dockerfile) +- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.18/Dockerfile) +- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.17/Dockerfile) - [`3.1.4-bullseye`, `3.1-bullseye`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/bullseye/Dockerfile) - [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-bullseye/Dockerfile) - [`3.1.4-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/buster/Dockerfile) - [`3.1.4-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-buster/Dockerfile) -- [`3.1.4-alpine3.18`, `3.1-alpine3.18`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/3ac53a7fe039d4299aca9b49ad53e1cc85cc6498/3.1/alpine3.18/Dockerfile) -- [`3.1.4-alpine3.17`, `3.1-alpine3.17`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/alpine3.17/Dockerfile) +- [`3.1.4-alpine3.18`, `3.1-alpine3.18`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) +- [`3.1.4-alpine3.17`, `3.1-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.17/Dockerfile) - [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/bullseye/Dockerfile) - [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-bullseye/Dockerfile) - [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/buster/Dockerfile) - [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-buster/Dockerfile) -- [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/alpine3.16/Dockerfile) +- [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.0/alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 17acd63e4b7d..52c16e63be1f 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230308`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230308-0bf56b6b&id=0bf56b6beeb478aee688350c27d41e732048c9af) +- [`18.04`, `bionic-20230412`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230412-46786f36&id=46786f36bc92dd9662f9a1e7530b4859f6cd4625) - [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412-26258b91&id=26258b9129f269190048fdf2b46d82de5ae5f79c) - [`22.04`, `jammy-20230425`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230425-997c5b6f&id=997c5b6fc12a87708c63485cb5599d85973ca211) - [`22.10`, `kinetic-20230412`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412-acd9976c&id=acd9976cf1d024747ad42960daa92bc3065e3a38) - [`23.04`, `lunar-20230420`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230420-a3feaf47&id=a3feaf47f3c57e4aec70c8d07ecd8dde43e0be21) +- [`23.10`, `mantic-20230511.1`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230511.1-82ff77c8&id=82ff77c875ff4cf8f6b008afec7747175459e253) # Quick reference (cont.) From dfcc1896bd4fcdc6e93d275f383b450fede594d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 May 2023 11:15:44 -0700 Subject: [PATCH 0303/2686] Run update.sh --- maven/README.md | 50 ++++++++++++++++++++++++------------------------- node/README.md | 12 ++++++------ 2 files changed, 30 insertions(+), 32 deletions(-) diff --git a/maven/README.md b/maven/README.md index cb56f5203a75..434793321358 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,32 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.1-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/f99b8cd582524a58a73b23b97e9b8c17001573af/eclipse-temurin-11/Dockerfile) -- [`3.9.1-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.1-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.1-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17/Dockerfile) -- [`3.9.1-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.1-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.1-eclipse-temurin-20`, `3.9.1`, `3.9.1-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20/Dockerfile) -- [`3.9.1-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/eclipse-temurin-20-alpine/Dockerfile) -- [`3.9.1-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8/Dockerfile) -- [`3.9.1-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.1-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.1-ibmjava-8`, `3.9.1-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibmjava-8/Dockerfile) -- [`3.9.1-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-11-focal/Dockerfile) -- [`3.9.1-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/ibm-semeru-17-focal/Dockerfile) -- [`3.9.1-amazoncorretto-11`, `3.9.1-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-11/Dockerfile) -- [`3.9.1-amazoncorretto-11-debian`, `3.9.1-amazoncorretto-11-debian-bullseye`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bullseye`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-11-debian/Dockerfile) -- [`3.9.1-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-17/Dockerfile) -- [`3.9.1-amazoncorretto-17-debian`, `3.9.1-amazoncorretto-17-debian-bullseye`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bullseye`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-17-debian/Dockerfile) -- [`3.9.1-amazoncorretto-19`, `3.9-amazoncorretto-19`, `3-amazoncorretto-19`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-19/Dockerfile) -- [`3.9.1-amazoncorretto-19-debian`, `3.9.1-amazoncorretto-19-debian-bullseye`, `3.9-amazoncorretto-19-debian`, `3.9-amazoncorretto-19-debian-bullseye`, `3-amazoncorretto-19-debian`, `3-amazoncorretto-19-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-19-debian/Dockerfile) -- [`3.9.1-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d84a7d025072e7f0de644de36e86236e83414837/amazoncorretto-20/Dockerfile) -- [`3.9.1-amazoncorretto-20-debian`, `3.9.1-amazoncorretto-20-debian-bullseye`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bullseye`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-20-debian/Dockerfile) -- [`3.9.1-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/amazoncorretto-8/Dockerfile) -- [`3.9.1-amazoncorretto-8-debian`, `3.9.1-amazoncorretto-8-debian-bullseye`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bullseye`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/7325174827898b1a02c0edfb1535a3a0595992b8/amazoncorretto-8-debian/Dockerfile) -- [`3.9.1-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-11/Dockerfile) -- [`3.9.1-sapmachine-17`, `3.9.1-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8f9adaf3d78df6ed956b0a717d51876f71f0fdfe/sapmachine-17/Dockerfile) +- [`3.9.2-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/7e54809c453c0bdfaf856b3831f6b6050f5a12eb/eclipse-temurin-11/Dockerfile) +- [`3.9.2-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.2-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.2-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17/Dockerfile) +- [`3.9.2-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.2-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.2-eclipse-temurin-20`, `3.9.2`, `3.9.2-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-20/Dockerfile) +- [`3.9.2-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-20-alpine/Dockerfile) +- [`3.9.2-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8/Dockerfile) +- [`3.9.2-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.2-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.2-ibmjava-8`, `3.9.2-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibmjava-8/Dockerfile) +- [`3.9.2-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-11-focal/Dockerfile) +- [`3.9.2-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-17-focal/Dockerfile) +- [`3.9.2-amazoncorretto-11`, `3.9.2-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-11/Dockerfile) +- [`3.9.2-amazoncorretto-11-debian`, `3.9.2-amazoncorretto-11-debian-bullseye`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bullseye`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-11-debian/Dockerfile) +- [`3.9.2-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-17/Dockerfile) +- [`3.9.2-amazoncorretto-17-debian`, `3.9.2-amazoncorretto-17-debian-bullseye`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bullseye`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-17-debian/Dockerfile) +- [`3.9.2-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-20/Dockerfile) +- [`3.9.2-amazoncorretto-20-debian`, `3.9.2-amazoncorretto-20-debian-bullseye`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bullseye`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-20-debian/Dockerfile) +- [`3.9.2-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-8/Dockerfile) +- [`3.9.2-amazoncorretto-8-debian`, `3.9.2-amazoncorretto-8-debian-bullseye`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bullseye`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-8-debian/Dockerfile) +- [`3.9.2-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-11/Dockerfile) +- [`3.9.2-sapmachine-17`, `3.9.2-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-17/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 14319d4712e7..5e792f051537 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.16`, `20.1-alpine3.16`, `20.1.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/alpine3.16/Dockerfile) -- [`20-alpine`, `20-alpine3.17`, `20.1-alpine`, `20.1-alpine3.17`, `20.1.0-alpine`, `20.1.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/alpine3.17/Dockerfile) -- [`20`, `20-bullseye`, `20.1`, `20.1-bullseye`, `20.1.0`, `20.1.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20-slim`, `20.1-bullseye-slim`, `20.1-slim`, `20.1.0-bullseye-slim`, `20.1.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.1-buster`, `20.1.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/buster/Dockerfile) -- [`20-buster-slim`, `20.1-buster-slim`, `20.1.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/4bda55337ef11b9b2dbb80ee6576870e258a035b/20/buster-slim/Dockerfile) +- [`20-alpine3.16`, `20.2-alpine3.16`, `20.2.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/alpine3.16/Dockerfile) +- [`20-alpine`, `20-alpine3.17`, `20.2-alpine`, `20.2-alpine3.17`, `20.2.0-alpine`, `20.2.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/alpine3.17/Dockerfile) +- [`20`, `20-bullseye`, `20.2`, `20.2-bullseye`, `20.2.0`, `20.2.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20-slim`, `20.2-bullseye-slim`, `20.2-slim`, `20.2.0-bullseye-slim`, `20.2.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.2-buster`, `20.2.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster/Dockerfile) +- [`20-buster-slim`, `20.2-buster-slim`, `20.2.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster-slim/Dockerfile) - [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) - [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) - [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) From 1f8699eea676ba76402c3f58c22ee545bf8b4eef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 May 2023 15:08:51 -0700 Subject: [PATCH 0304/2686] Run update.sh --- erlang/README.md | 12 ++++++------ wordpress/README.md | 27 +++++++++------------------ 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 9340e702e5a1..d3a5e5a91f9d 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0-rc3.0.0`, `26.0-rc3.0`, `26.0-rc3`, `26`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/Dockerfile) -- [`26.0-rc3.0.0-slim`, `26.0-rc3.0-slim`, `26.0-rc3-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/slim/Dockerfile) -- [`26.0-rc3.0.0-alpine`, `26.0-rc3.0-alpine`, `26.0-rc3-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/d1aa031e5b5980f25d28983ae17af2a70ea76905/26/alpine/Dockerfile) -- [`25.3.2.0`, `25.3.2`, `25.3`, `25`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/Dockerfile) -- [`25.3.2.0-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/slim/Dockerfile) -- [`25.3.2.0-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/alpine/Dockerfile) +- [`26.0.0.0`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/Dockerfile) +- [`26.0.0.0-slim`, `26.0.0-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/slim/Dockerfile) +- [`26.0.0.0-alpine`, `26.0.0-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/b99497690af4fc92ab414ff79aceffabea8a3c28/26/alpine/Dockerfile) +- [`25.3.2.0`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/Dockerfile) +- [`25.3.2.0-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/slim/Dockerfile) +- [`25.3.2.0-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/alpine/Dockerfile) - [`24.3.4.11`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/Dockerfile) - [`24.3.4.11-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/slim/Dockerfile) - [`24.3.4.11-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 07d26682d3ec..d56bc036c82f 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.0-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.0`, `6.2`, `6`, `latest`, `6.2.0-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.0-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/apache/Dockerfile) -- [`6.2.0-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.0-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/fpm/Dockerfile) -- [`6.2.0-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.0-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.2.0-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.0-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/apache/Dockerfile) -- [`6.2.0-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/fpm/Dockerfile) -- [`6.2.0-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.2.0-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.0-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/apache/Dockerfile) -- [`6.2.0-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/fpm/Dockerfile) -- [`6.2.0-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/5f5172057791d1deb1919fdd1c5c45e7daae3362/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.2.1-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.1`, `6.2`, `6`, `latest`, `6.2.1-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.1-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/apache/Dockerfile) +- [`6.2.1-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.1-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm/Dockerfile) +- [`6.2.1-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.1-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.2.1-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.1-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/apache/Dockerfile) +- [`6.2.1-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm/Dockerfile) +- [`6.2.1-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.2.1-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.1-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/apache/Dockerfile) +- [`6.2.1-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm/Dockerfile) +- [`6.2.1-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) -- [`beta-6.2.1-RC1-apache`, `beta-6.2.1-apache`, `beta-6.2-apache`, `beta-6-apache`, `beta-apache`, `beta-6.2.1-RC1`, `beta-6.2.1`, `beta-6.2`, `beta-6`, `beta`, `beta-6.2.1-RC1-php8.0-apache`, `beta-6.2.1-php8.0-apache`, `beta-6.2-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.2.1-RC1-php8.0`, `beta-6.2.1-php8.0`, `beta-6.2-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/apache/Dockerfile) -- [`beta-6.2.1-RC1-fpm`, `beta-6.2.1-fpm`, `beta-6.2-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.2.1-RC1-php8.0-fpm`, `beta-6.2.1-php8.0-fpm`, `beta-6.2-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/fpm/Dockerfile) -- [`beta-6.2.1-RC1-fpm-alpine`, `beta-6.2.1-fpm-alpine`, `beta-6.2-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.2.1-RC1-php8.0-fpm-alpine`, `beta-6.2.1-php8.0-fpm-alpine`, `beta-6.2-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.2.1-RC1-php8.1-apache`, `beta-6.2.1-php8.1-apache`, `beta-6.2-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.2.1-RC1-php8.1`, `beta-6.2.1-php8.1`, `beta-6.2-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/apache/Dockerfile) -- [`beta-6.2.1-RC1-php8.1-fpm`, `beta-6.2.1-php8.1-fpm`, `beta-6.2-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/fpm/Dockerfile) -- [`beta-6.2.1-RC1-php8.1-fpm-alpine`, `beta-6.2.1-php8.1-fpm-alpine`, `beta-6.2-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.2.1-RC1-php8.2-apache`, `beta-6.2.1-php8.2-apache`, `beta-6.2-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.2.1-RC1-php8.2`, `beta-6.2.1-php8.2`, `beta-6.2-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/apache/Dockerfile) -- [`beta-6.2.1-RC1-php8.2-fpm`, `beta-6.2.1-php8.2-fpm`, `beta-6.2-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/fpm/Dockerfile) -- [`beta-6.2.1-RC1-php8.2-fpm-alpine`, `beta-6.2.1-php8.2-fpm-alpine`, `beta-6.2-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3d57821c005706c263394d0dc28d36010c0bbb82/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 87e9b715a64191c2bdd9aeaa435bc5d3f92e7d59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 May 2023 16:15:26 -0700 Subject: [PATCH 0305/2686] Run update.sh --- bash/README.md | 2 +- drupal/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 961e76c9da4f..a394ad5b4ee3 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230504`, `devel`, `devel-20230504-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e73ff20af7431345d27345c3fb59d2979051815a/devel/Dockerfile) +- [`devel-20230515`, `devel`, `devel-20230515-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/3785a84f3afd1b0c95c8a3f1a1e9c9bb382b6a70/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 80baef3c9945..6828a576ea4f 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -28,20 +28,20 @@ WARNING: - [`10.0.9-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.9-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.9-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.9-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-bullseye/Dockerfile) - [`10.0.9-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.9-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/apache-buster/Dockerfile) - [`10.0.9-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.9-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-buster/Dockerfile) -- [`10.0.9-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.9-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.9-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`, `10.0.9-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.9-php8.2-fpm-alpine3.16`, `10.0-php8.2-fpm-alpine3.16`, `10-php8.2-fpm-alpine3.16`, `php8.2-fpm-alpine3.16`, `10.0.9-fpm-alpine3.16`, `10.0-fpm-alpine3.16`, `10-fpm-alpine3.16`, `fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.16/Dockerfile) +- [`10.0.9-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.0.9-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.9-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.0.9-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.0.9-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.9-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.17/Dockerfile) - [`10.0.9-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.9-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.9-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-bullseye/Dockerfile) - [`10.0.9-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.9-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-bullseye/Dockerfile) - [`10.0.9-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-buster/Dockerfile) - [`10.0.9-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-buster/Dockerfile) -- [`10.0.9-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`, `10.0.9-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.9-php8.1-fpm-alpine3.16`, `10.0-php8.1-fpm-alpine3.16`, `10-php8.1-fpm-alpine3.16`, `php8.1-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.16/Dockerfile) +- [`10.0.9-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.0.9-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.0.9-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.17/Dockerfile) - [`9.5.9-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.9-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.9-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.9-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.9-apache`, `9.5-apache`, `9-apache`, `9.5.9`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-bullseye/Dockerfile) - [`9.5.9-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.9-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.9-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.9-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-bullseye/Dockerfile) - [`9.5.9-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.9-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-buster/Dockerfile) - [`9.5.9-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.9-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-buster/Dockerfile) -- [`9.5.9-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.9-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.9-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`, `9.5.9-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.1-fpm-alpine3.16`, `9.5-php8.1-fpm-alpine3.16`, `9-php8.1-fpm-alpine3.16`, `9.5.9-fpm-alpine3.16`, `9.5-fpm-alpine3.16`, `9-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.5.9-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.9-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.9-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.9-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.5/php8.1/fpm-alpine3.18/Dockerfile) +- [`9.5.9-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.9-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.17/Dockerfile) - [`9.5.9-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.9-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.9-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-bullseye/Dockerfile) - [`9.5.9-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.9-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-bullseye/Dockerfile) - [`9.5.9-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-buster/Dockerfile) @@ -51,8 +51,8 @@ WARNING: - [`9.4.15-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.15-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.15-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.15-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-bullseye/Dockerfile) - [`9.4.15-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.15-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/apache-buster/Dockerfile) - [`9.4.15-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.15-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-buster/Dockerfile) -- [`9.4.15-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.15-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.15-fpm-alpine3.17`, `9.4-fpm-alpine3.17`, `9.4.15-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.15-php8.1-fpm-alpine3.16`, `9.4-php8.1-fpm-alpine3.16`, `9.4.15-fpm-alpine3.16`, `9.4-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.16/Dockerfile) +- [`9.4.15-php8.1-fpm-alpine3.18`, `9.4-php8.1-fpm-alpine3.18`, `9.4.15-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.15-fpm-alpine3.18`, `9.4-fpm-alpine3.18`, `9.4.15-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.4/php8.1/fpm-alpine3.18/Dockerfile) +- [`9.4.15-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.15-fpm-alpine3.17`, `9.4-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.17/Dockerfile) - [`9.4.15-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.15-php8.0-apache`, `9.4-php8.0-apache`, `9.4.15-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-bullseye/Dockerfile) - [`9.4.15-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.15-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-bullseye/Dockerfile) - [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-buster/Dockerfile) From 8092a646b3854f77d1ff4fcdc491f70da96381d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 May 2023 17:15:27 -0700 Subject: [PATCH 0306/2686] Run update.sh --- buildpack-deps/README.md | 11 +++++++---- docker/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 25 insertions(+), 22 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 2fd05179cfa4..2ecfc901e354 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bookworm/curl/Dockerfile) +- [`bookworm-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) - [`bookworm-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/scm/Dockerfile) - [`bookworm`, `testing`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/Dockerfile) - [`bullseye-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) @@ -33,7 +33,7 @@ WARNING: - [`buster-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) - [`buster-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/scm/Dockerfile) - [`buster`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/Dockerfile) -- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/sid/curl/Dockerfile) +- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) - [`bionic-curl`, `18.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/bionic/curl/Dockerfile) @@ -45,12 +45,15 @@ WARNING: - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/scm/Dockerfile) - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/Dockerfile) -- [`kinetic-curl`, `22.10-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/kinetic/curl/Dockerfile) +- [`kinetic-curl`, `22.10-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/kinetic/curl/Dockerfile) - [`kinetic-scm`, `22.10-scm`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/scm/Dockerfile) - [`kinetic`, `22.10`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/Dockerfile) -- [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/lunar/curl/Dockerfile) +- [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/lunar/curl/Dockerfile) - [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) - [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) +- [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/curl/Dockerfile) +- [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/scm/Dockerfile) +- [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index acf25398c099..47fb6d97a115 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.0-rc.4-cli`, `24-rc-cli`, `rc-cli`, `24.0.0-rc.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/cli/Dockerfile) -- [`24.0.0-rc.4-dind`, `24-rc-dind`, `rc-dind`, `24.0.0-rc.4-dind-alpine3.18`, `24.0.0-rc.4`, `24-rc`, `rc`, `24.0.0-rc.4-alpine3.18`](https://github.com/docker-library/docker/blob/a3ca225e9c0e568cf87a7b60c951b939c3964c91/24-rc/dind/Dockerfile) -- [`24.0.0-rc.4-dind-rootless`, `24-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/dind-rootless/Dockerfile) -- [`24.0.0-rc.4-git`, `24-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/24-rc/git/Dockerfile) -- [`24.0.0-rc.4-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-rc.4-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/1e7a4c385eee982a26601ba6279ae6e6b52ea8d8/23.0/cli/Dockerfile) -- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `latest`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/a3ca225e9c0e568cf87a7b60c951b939c3964c91/23.0/dind/Dockerfile) -- [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/dind-rootless/Dockerfile) -- [`23.0.6-git`, `23.0-git`, `23-git`, `git`](https://github.com/docker-library/docker/blob/fcb9d855506a0c0394908bf8ff88377b2dda0bb1/23.0/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) +- [`24.0.0-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.0-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/cli/Dockerfile) +- [`24.0.0-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.0-dind-alpine3.18`, `24.0.0`, `24.0`, `24`, `latest`, `24.0.0-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind/Dockerfile) +- [`24.0.0-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind-rootless/Dockerfile) +- [`24.0.0-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.0-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/cli/Dockerfile) +- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) +- [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) +- [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `24.0.0-rc.4-windowsservercore`, `24-rc-windowsservercore`, `rc-windowsservercore`: - - [`24.0.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/38d8c1da029024c9f6cbfb306bdaf8461b3b5914/24-rc/windows/windowsservercore-1809/Dockerfile) -- `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`, `windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3f698e446071ef052c3bd70fe0322493dbfd5103/23.0/windows/windowsservercore-1809/Dockerfile) +- `24.0.0-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-1809/Dockerfile) +- `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 5624e6786fab506381cf80f6b91ac96c9cb2b60b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 May 2023 13:15:39 -0700 Subject: [PATCH 0307/2686] Run update.sh --- aerospike/README.md | 4 ++-- dart/README.md | 4 ++-- odoo/README.md | 6 +++--- rocket.chat/README.md | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index d0ed25b9941b..ab9da9e0f8bf 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.2`, `ee-6.3.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/1f6b4f3b273010ca53d18f65856d635fd4e162c6/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.2`, `ce-6.3.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/1f6b4f3b273010ca53d18f65856d635fd4e162c6/community/debian11/Dockerfile) +- [`ee-6.3.0.3`, `ee-6.3.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/4ae23b6beff5b83774e08d36f1a2784208d32ae0/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.3`, `ce-6.3.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/4ae23b6beff5b83774e08d36f1a2784208d32ae0/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index a3e986d6555c..566b4a2e5165 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.0`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d465cf9ee48865341057cd59a0987e433928a8c9/stable/bullseye/Dockerfile) -- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d465cf9ee48865341057cd59a0987e433928a8c9/beta/bullseye/Dockerfile) +- [`3.0.1-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.1`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5540bf00a5fac227f782ed8e0610ea4599648788/stable/bullseye/Dockerfile) +- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5540bf00a5fac227f782ed8e0610ea4599648788/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 46cefa58a6de..065c0a0b7c30 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/f7b3182bdccd5e182ecabcb7243696961194f601/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/14.0/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 76d5e0919f52..c71d2674b841 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/6.0/Dockerfile) -- [`5.4.4`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.4/Dockerfile) -- [`5.3.6`, `5.3`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.3/Dockerfile) -- [`5.2.2`, `5.2`](https://github.com/RocketChat/Docker.Official.Image/blob/e83ffa0338dd62eed46fcf031fdd4bf919b631d6/5.2/Dockerfile) +- [`6.2.0`, `6.2`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.2/Dockerfile) +- [`6.1.7`, `6.1`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.1/Dockerfile) +- [`6.0.7`, `6.0`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.0/Dockerfile) +- [`5.4.9`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/5.4/Dockerfile) # Quick reference (cont.) From 793e59aa6d0cedc5f20f0439dfa4cdf2a436dad9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 May 2023 15:15:16 -0700 Subject: [PATCH 0308/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 68 +++++++++++++++++------------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index e16faac12e31..23c4131728e8 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u362-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u362-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u362-b09-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/centos/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-focal`, `open-18-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-jammy`, `open-18-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jdk-centos7`, `open-18-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/centos/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-focal`, `open-18-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-jammy`, `open-18-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-18.0.2_9-jre-centos7`, `open-18-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/centos/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u362-b09-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u362-b09-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.18_10-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.6_10-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/centos/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-focal`, `open-19-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-jammy`, `open-19-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-centos7`, `open-19-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/centos/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-focal`, `open-19-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-jammy`, `open-19-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-centos7`, `open-19-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/centos/Dockerfile.open.releases.full) ## Shared Tags - `open-8u362-b09-jdk`, `open-8-jdk`: - - [`open-8u362-b09-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u362-b09-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u362-b09-jre`, `open-8-jre`: - - [`open-8u362-b09-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u362-b09-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.18_10-jdk`, `open-11-jdk`: - - [`open-11.0.18_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.18_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.18_10-jre`, `open-11-jre`: - - [`open-11.0.18_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.18_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.6_10-jdk`, `open-17-jdk`: - - [`open-17.0.6_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.6_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.6_10-jre`, `open-17-jre`: - - [`open-17.0.6_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-18.0.2_9-jdk`, `open-18-jdk`: - - [`open-18.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-18.0.2_9-jre`, `open-18-jre`: - - [`open-18.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6c138ae1520ba8455382f3a4802aa4e657e04691/18/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.6_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-19.0.2_7-jdk`, `open-19-jdk`: + - [`open-19.0.2_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-19.0.2_7-jre`, `open-19-jre`: + - [`open-19.0.2_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) From 08a66e9ca165258126e5683fa817adc46ced41c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 May 2023 16:15:53 -0700 Subject: [PATCH 0309/2686] Run update.sh --- caddy/README.md | 41 +++++++++++++++++++++++++++++------------ consul/README.md | 4 ++-- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- 4 files changed, 35 insertions(+), 18 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 4746b9779f2d..132da5e4e383 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -29,25 +29,42 @@ WARNING: ## Simple Tags - [`2.6.4-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) -- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/builder/Dockerfile) -- [`2.6.4-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) -- [`2.6.4-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) -- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/1809/Dockerfile) -- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/ltsc2022/Dockerfile) +- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/builder/Dockerfile) +- [`2.6.4-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) +- [`2.6.4-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) +- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/1809/Dockerfile) +- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/ltsc2022/Dockerfile) +- [`2.7.0-beta.1-alpine`, `2.7-alpine`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/alpine/Dockerfile) +- [`2.7.0-beta.1-builder-alpine`, `2.7-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/builder/Dockerfile) +- [`2.7.0-beta.1-windowsservercore-1809`, `2.7-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) +- [`2.7.0-beta.1-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.0-beta.1-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/1809/Dockerfile) +- [`2.7.0-beta.1-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags - `2.6.4`, `2.6`, `2`, `latest`: - [`2.6.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) - - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) - - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) + - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) + - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) - `2.6.4-builder`, `2.6-builder`, `2-builder`, `builder`: - - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/builder/Dockerfile) - - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/1809/Dockerfile) - - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows-builder/ltsc2022/Dockerfile) + - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/builder/Dockerfile) + - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/1809/Dockerfile) + - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/ltsc2022/Dockerfile) - `2.6.4-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/1809/Dockerfile) - - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/windows/ltsc2022/Dockerfile) + - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) + - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) +- `2.7.0-beta.1`, `2.7`: + - [`2.7.0-beta.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/alpine/Dockerfile) + - [`2.7.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) + - [`2.7.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) +- `2.7.0-beta.1-builder`, `2.7-builder`: + - [`2.7.0-beta.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/builder/Dockerfile) + - [`2.7.0-beta.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/1809/Dockerfile) + - [`2.7.0-beta.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.0-beta.1-windowsservercore`, `2.7-windowsservercore`: + - [`2.7.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) + - [`2.7.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/consul/README.md b/consul/README.md index f9449ec974a6..e3d1802ef882 100644 --- a/consul/README.md +++ b/consul/README.md @@ -29,8 +29,8 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links - [`1.15.2`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/2cab863154c88062f6e505afe5ffc0a79666d887/0.X/Dockerfile) -- [`1.14.6`, `1.14`](https://github.com/hashicorp/docker-consul/blob/e7cc3db8002684e0db9e6ee1aa4f04800881071a/0.X/Dockerfile) -- [`1.13.7`, `1.13`](https://github.com/hashicorp/docker-consul/blob/83ea602f6bb914e6a771c4708105ea16ef17f793/0.X/Dockerfile) +- [`1.14.7`, `1.14`](https://github.com/hashicorp/docker-consul/blob/36b73fb81154b668e9c1987fc7011322f33b926e/0.X/Dockerfile) +- [`1.13.8`, `1.13`](https://github.com/hashicorp/docker-consul/blob/4e3f7398868f9767d515e91a63b67294f5c97aa9/0.X/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 080012ca9d4e..35ba539852c4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.47.2`, `5.47`, `5`, `latest`](https://github.com/docker-library/ghost/blob/260c0c0c14a4e9b1659c3eb545ec8372de54f1f2/5/debian/Dockerfile) -- [`5.47.2-alpine`, `5.47-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/260c0c0c14a4e9b1659c3eb545ec8372de54f1f2/5/alpine/Dockerfile) +- [`5.48.0`, `5.48`, `5`, `latest`](https://github.com/docker-library/ghost/blob/685ac1d60a3de99a7a67cb4ce4fc226383421147/5/debian/Dockerfile) +- [`5.48.0-alpine`, `5.48-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/685ac1d60a3de99a7a67cb4ce4fc226383421147/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index c5e389c1f61e..9fcf7fbe01b7 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev11`, `2.8-dev`, `2.8-dev11-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c513a74567d7594543da2852f61f7576d83a714e/2.8/Dockerfile) -- [`2.8-dev11-alpine`, `2.8-dev-alpine`, `2.8-dev11-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/c513a74567d7594543da2852f61f7576d83a714e/2.8/alpine/Dockerfile) +- [`2.8-dev12`, `2.8-dev`, `2.8-dev12-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/8540b3c85e62fae2c85d73e3a27c17f53da115e1/2.8/Dockerfile) +- [`2.8-dev12-alpine`, `2.8-dev-alpine`, `2.8-dev12-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/8540b3c85e62fae2c85d73e3a27c17f53da115e1/2.8/alpine/Dockerfile) - [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) - [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) From 162e60665561644ba2836faed9867f9149136458 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 May 2023 10:17:14 -0700 Subject: [PATCH 0310/2686] Run update.sh --- oraclelinux/README.md | 12 ++-- tomee/README.md | 126 +++++++++++++++++++++--------------------- 2 files changed, 69 insertions(+), 69 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d33ecc6fd677..92f2bcfaf531 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/f62c9d80cf69f0ab09ace5f1ba3b6fb5575c814e/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 4e4bbc929308..4fd4a1e885e0 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-webprofile`, `8.0.14-Temurin-ubuntu-webprofile`, `8.0.14-jre17-ubuntu-webprofile`, `8.0.14-ubuntu-webprofile`, `8.0.14-jre17-Temurin-webprofile`, `8.0.14-Temurin-webprofile`, `8.0.14-jre17-webprofile`, `8.0.14-webprofile`, `8.0.14-jre17-Temurin-ubuntu`, `8.0.14-Temurin-ubuntu`, `8.0.14-jre17-ubuntu`, `8.0.14-ubuntu`, `8.0.14-jre17-Temurin`, `8.0.14-Temurin`, `8.0.14-jre17`, `8.0.14`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-microprofile`, `8.0.14-Temurin-ubuntu-microprofile`, `8.0.14-jre17-ubuntu-microprofile`, `8.0.14-ubuntu-microprofile`, `8.0.14-jre17-Temurin-microprofile`, `8.0.14-Temurin-microprofile`, `8.0.14-jre17-microprofile`, `8.0.14-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-plume`, `8.0.14-Temurin-ubuntu-plume`, `8.0.14-jre17-ubuntu-plume`, `8.0.14-ubuntu-plume`, `8.0.14-jre17-Temurin-plume`, `8.0.14-Temurin-plume`, `8.0.14-jre17-plume`, `8.0.14-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre17-Temurin-ubuntu-plus`, `8.0.14-Temurin-ubuntu-plus`, `8.0.14-jre17-ubuntu-plus`, `8.0.14-ubuntu-plus`, `8.0.14-jre17-Temurin-plus`, `8.0.14-Temurin-plus`, `8.0.14-jre17-plus`, `8.0.14-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-webprofile`, `8.0.14-Temurin-alpine-webprofile`, `8.0.14-jre17-alpine-webprofile`, `8.0.14-alpine-webprofile`, `8.0.14-jre17-Temurin-alpine`, `8.0.14-Temurin-alpine`, `8.0.14-jre17-alpine`, `8.0.14-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-microprofile`, `8.0.14-Temurin-alpine-microprofile`, `8.0.14-jre17-alpine-microprofile`, `8.0.14-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-plume`, `8.0.14-Temurin-alpine-plume`, `8.0.14-jre17-alpine-plume`, `8.0.14-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre17-Temurin-alpine-plus`, `8.0.14-Temurin-alpine-plus`, `8.0.14-jre17-alpine-plus`, `8.0.14-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-webprofile`, `8.0.14-jre11-ubuntu-webprofile`, `8.0.14-jre11-Temurin-webprofile`, `8.0.14-jre11-webprofile`, `8.0.14-jre11-Temurin-ubuntu`, `8.0.14-jre11-ubuntu`, `8.0.14-jre11-Temurin`, `8.0.14-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-microprofile`, `8.0.14-jre11-ubuntu-microprofile`, `8.0.14-jre11-Temurin-microprofile`, `8.0.14-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-plume`, `8.0.14-jre11-ubuntu-plume`, `8.0.14-jre11-Temurin-plume`, `8.0.14-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre11-Temurin-ubuntu-plus`, `8.0.14-jre11-ubuntu-plus`, `8.0.14-jre11-Temurin-plus`, `8.0.14-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-webprofile`, `8.0.14-jre11-alpine-webprofile`, `8.0.14-jre11-Temurin-alpine`, `8.0.14-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-microprofile`, `8.0.14-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-plume`, `8.0.14-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre11-Temurin-alpine-plus`, `8.0.14-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-webprofile`, `8.0.14-jre8-ubuntu-webprofile`, `8.0.14-jre8-Temurin-webprofile`, `8.0.14-jre8-webprofile`, `8.0.14-jre8-Temurin-ubuntu`, `8.0.14-jre8-ubuntu`, `8.0.14-jre8-Temurin`, `8.0.14-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-microprofile`, `8.0.14-jre8-ubuntu-microprofile`, `8.0.14-jre8-Temurin-microprofile`, `8.0.14-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-plume`, `8.0.14-jre8-ubuntu-plume`, `8.0.14-jre8-Temurin-plume`, `8.0.14-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.14-jre8-Temurin-ubuntu-plus`, `8.0.14-jre8-ubuntu-plus`, `8.0.14-jre8-Temurin-plus`, `8.0.14-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-webprofile`, `8.0.14-jre8-alpine-webprofile`, `8.0.14-jre8-Temurin-alpine`, `8.0.14-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-microprofile`, `8.0.14-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-plume`, `8.0.14-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.14-jre8-Temurin-alpine-plus`, `8.0.14-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-webprofile`, `8.0.14-Semeru-ubuntu-webprofile`, `8.0.14-jre17-Semeru-webprofile`, `8.0.14-Semeru-webprofile`, `8.0.14-jre17-Semeru-ubuntu`, `8.0.14-Semeru-ubuntu`, `8.0.14-jre17-Semeru`, `8.0.14-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-microprofile`, `8.0.14-Semeru-ubuntu-microprofile`, `8.0.14-jre17-Semeru-microprofile`, `8.0.14-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-plume`, `8.0.14-Semeru-ubuntu-plume`, `8.0.14-jre17-Semeru-plume`, `8.0.14-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.14-jre17-Semeru-ubuntu-plus`, `8.0.14-Semeru-ubuntu-plus`, `8.0.14-jre17-Semeru-plus`, `8.0.14-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-webprofile`, `8.0.14-jre11-Semeru-webprofile`, `8.0.14-jre11-Semeru-ubuntu`, `8.0.14-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-microprofile`, `8.0.14-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-plume`, `8.0.14-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.14-jre11-Semeru-ubuntu-plus`, `8.0.14-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/4083a496caaa0258e7fd27d78cfc5cdc298bb74d/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 0d92ed06b7efc8231998aa1c77336a28c0d31087 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 May 2023 12:15:20 -0700 Subject: [PATCH 0311/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docker/README.md b/docker/README.md index 47fb6d97a115..47a8c81563de 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.0-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.0-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/cli/Dockerfile) +- [`24.0.0-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.0-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/cli/Dockerfile) - [`24.0.0-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.0-dind-alpine3.18`, `24.0.0`, `24.0`, `24`, `latest`, `24.0.0-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind/Dockerfile) - [`24.0.0-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind-rootless/Dockerfile) - [`24.0.0-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.0-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/cli/Dockerfile) +- [`24.0.0-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.0-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.0-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 256c17f182f5b9c15cdc4c2e10abf1117fd6a95d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 May 2023 14:17:03 -0700 Subject: [PATCH 0312/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nats/README.md b/nats/README.md index c2460304e534..67009e8f9dc6 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.16-alpine3.17`, `2.9-alpine3.17`, `2-alpine3.17`, `alpine3.17`, `2.9.16-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/alpine3.17/Dockerfile) -- [`2.9.16-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.16-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/scratch/Dockerfile) -- [`2.9.16-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/windowsservercore-1809/Dockerfile) -- [`2.9.16-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) +- [`2.9.17-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.17-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/alpine3.18/Dockerfile) +- [`2.9.17-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.17-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/scratch/Dockerfile) +- [`2.9.17-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/windowsservercore-1809/Dockerfile) +- [`2.9.17-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.16`, `2.9`, `2`, `latest`: - - [`2.9.16-scratch`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/scratch/Dockerfile) - - [`2.9.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) -- `2.9.16-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/windowsservercore-1809/Dockerfile) -- `2.9.16-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/60c28617a9e994d560b6de582570a7ac17623d35/2.9.16/nanoserver-1809/Dockerfile) +- `2.9.17`, `2.9`, `2`, `latest`: + - [`2.9.17-scratch`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/scratch/Dockerfile) + - [`2.9.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) +- `2.9.17-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.17-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/windowsservercore-1809/Dockerfile) +- `2.9.17-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 716e626c52b2a10a55e950b47f9f54da4cfc393b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 May 2023 10:17:22 -0700 Subject: [PATCH 0313/2686] Run update.sh --- ghost/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ postgres/README.md | 15 ++++++++++----- 3 files changed, 30 insertions(+), 25 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 35ba539852c4..c3f9e0ecb442 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.48.0`, `5.48`, `5`, `latest`](https://github.com/docker-library/ghost/blob/685ac1d60a3de99a7a67cb4ce4fc226383421147/5/debian/Dockerfile) -- [`5.48.0-alpine`, `5.48-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/685ac1d60a3de99a7a67cb4ce4fc226383421147/5/alpine/Dockerfile) +- [`5.48.1`, `5.48`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a87c9d3b6a0db4cff502ea76b7057f4ebf41b2fc/5/debian/Dockerfile) +- [`5.48.1-alpine`, `5.48-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a87c9d3b6a0db4cff502ea76b7057f4ebf41b2fc/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index cc1469213d1b..53e9a9f09e97 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-22-jdk-oraclelinux8`, `21-ea-22-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-22-jdk-oracle`, `21-ea-22-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-22-jdk-oraclelinux7`, `21-ea-22-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-22-jdk-bullseye`, `21-ea-22-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/bullseye/Dockerfile) -- [`21-ea-22-jdk-slim-bullseye`, `21-ea-22-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-22-jdk-slim`, `21-ea-22-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-22-jdk-buster`, `21-ea-22-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/buster/Dockerfile) -- [`21-ea-22-jdk-slim-buster`, `21-ea-22-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/slim-buster/Dockerfile) -- [`21-ea-22-jdk-windowsservercore-ltsc2022`, `21-ea-22-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-22-jdk-windowsservercore-1809`, `21-ea-22-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-22-jdk-nanoserver-1809`, `21-ea-22-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-23-jdk-oraclelinux8`, `21-ea-23-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-23-jdk-oracle`, `21-ea-23-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-23-jdk-oraclelinux7`, `21-ea-23-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-23-jdk-bullseye`, `21-ea-23-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/bullseye/Dockerfile) +- [`21-ea-23-jdk-slim-bullseye`, `21-ea-23-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-23-jdk-slim`, `21-ea-23-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-23-jdk-buster`, `21-ea-23-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/buster/Dockerfile) +- [`21-ea-23-jdk-slim-buster`, `21-ea-23-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/slim-buster/Dockerfile) +- [`21-ea-23-jdk-windowsservercore-ltsc2022`, `21-ea-23-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-23-jdk-windowsservercore-1809`, `21-ea-23-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-23-jdk-nanoserver-1809`, `21-ea-23-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-22-jdk`, `21-ea-22`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-22-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-22-jdk-windowsservercore`, `21-ea-22-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-22-jdk-nanoserver`, `21-ea-22-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f8a93985ffc1522535d57a31490f63b9e00f785/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-23-jdk`, `21-ea-23`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-23-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-23-jdk-windowsservercore`, `21-ea-23-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-23-jdk-nanoserver`, `21-ea-23-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 06b9b37042fe..b0975fd9c581 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -25,15 +25,20 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`15.3`, `15`, `latest`, `15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) -- [`15.3-alpine`, `15-alpine`, `alpine`, `15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/15/alpine/Dockerfile) +- [`15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.3-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.18/Dockerfile) +- [`15.3-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.17/Dockerfile) - [`14.8`, `14`, `14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) -- [`14.8-alpine`, `14-alpine`, `14.8-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/14/alpine/Dockerfile) +- [`14.8-alpine3.18`, `14-alpine3.18`, `14.8-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.18/Dockerfile) +- [`14.8-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.17/Dockerfile) - [`13.11`, `13`, `13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) -- [`13.11-alpine`, `13-alpine`, `13.11-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/13/alpine/Dockerfile) +- [`13.11-alpine3.18`, `13-alpine3.18`, `13.11-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.18/Dockerfile) +- [`13.11-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.17/Dockerfile) - [`12.15`, `12`, `12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) -- [`12.15-alpine`, `12-alpine`, `12.15-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/12/alpine/Dockerfile) +- [`12.15-alpine3.18`, `12-alpine3.18`, `12.15-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.18/Dockerfile) +- [`12.15-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.17/Dockerfile) - [`11.20-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/bullseye/Dockerfile) -- [`11.20-alpine`, `11-alpine`, `11.20-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/a3b0bb68faed03c6edd3978b8dd34ca67881f7c7/11/alpine/Dockerfile) +- [`11.20-alpine3.18`, `11-alpine3.18`, `11.20-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.18/Dockerfile) +- [`11.20-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.17/Dockerfile) # Quick reference (cont.) From 760bcd8f56c9e358a1bd7fa3a94a27ebe9da3811 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 May 2023 12:15:23 -0700 Subject: [PATCH 0314/2686] Run update.sh --- friendica/README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index 83e4554f6da9..9ab73567a9ef 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/apache/Dockerfile) -- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/fpm/Dockerfile) -- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.04/fpm-alpine/Dockerfile) -- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/apache/Dockerfile) -- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/fpm/Dockerfile) -- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/003826bcd35aa3de1973837e3b82bae00967d318/2023.06-dev/fpm-alpine/Dockerfile) +- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/apache/Dockerfile) +- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/fpm/Dockerfile) +- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/fpm-alpine/Dockerfile) +- [`2023.05-rc-apache`, `rc-apache`, `2023.05-rc`, `rc`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/apache/Dockerfile) +- [`2023.05-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/fpm/Dockerfile) +- [`2023.05-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/fpm-alpine/Dockerfile) +- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/apache/Dockerfile) +- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/fpm/Dockerfile) +- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) From ffd7200fb8cdca52772198b90e90a0ef40781efb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 May 2023 13:15:30 -0700 Subject: [PATCH 0315/2686] Run update.sh --- busybox/README.md | 16 +++---- clojure/README.md | 102 +++++++++++++++++++++--------------------- oraclelinux/README.md | 12 ++--- swipl/README.md | 4 +- 4 files changed, 67 insertions(+), 67 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 21869de0ab0a..0d02881101c3 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.0-glibc`, `1.36-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/glibc/Dockerfile) -- [`1.36.0-uclibc`, `1.36-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/uclibc/Dockerfile) -- [`1.36.0-musl`, `1.36-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/musl/Dockerfile) -- [`1.36.0`, `1.36`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/66a290439cf51713829aa9e2ec76981ff047b1e2/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index f6d3dac93a6a..0c92ac1917b3 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1273-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1273-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1273-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1273`, `temurin-8-tools-deps-1.11.1.1273-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1273-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1273-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1273-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1273`, `temurin-11-tools-deps-1.11.1.1273-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1273-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1273-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1273-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1273-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1273-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1273`, `temurin-17-tools-deps-1.11.1.1273-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1273`, `tools-deps-1.11.1.1273-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1273-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1273-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1273-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1273`, `temurin-20-tools-deps-1.11.1.1273-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/41f465326433cc5036842f633126206083289f87/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1323-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1323-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1323-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1323`, `temurin-8-tools-deps-1.11.1.1323-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1323-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1323-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1323-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1323`, `temurin-11-tools-deps-1.11.1.1323-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1323-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1323-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1323-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1323-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1323-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1323`, `temurin-17-tools-deps-1.11.1.1323-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1323`, `tools-deps-1.11.1.1323-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1323-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1323-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1323`, `temurin-20-tools-deps-1.11.1.1323-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 92f2bcfaf531..ca1b7b5f8c3d 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/bd1ac81bc48c810f5ae7dc469f0a97f6ad3c0a86/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/8-slim/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/7-slim/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 1b68099b7091..4f121a94fa91 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.9`](https://github.com/SWI-Prolog/docker-swipl/blob/61526b09a94f046988e74f9162d898fc7203d1f4/9.1.9/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/61526b09a94f046988e74f9162d898fc7203d1f4/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.10`](https://github.com/SWI-Prolog/docker-swipl/blob/a96b8e1155f4f6997895bf5e4aa5f4e61fb69bed/9.1.10/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/a96b8e1155f4f6997895bf5e4aa5f4e61fb69bed/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From fb3109a0ec55ddcb14efa65ac935e576a1a76b94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 May 2023 17:17:18 -0700 Subject: [PATCH 0316/2686] Run update.sh --- docker/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docker/README.md b/docker/README.md index 47a8c81563de..62bee948e86e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.0-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.0-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/cli/Dockerfile) -- [`24.0.0-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.0-dind-alpine3.18`, `24.0.0`, `24.0`, `24`, `latest`, `24.0.0-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind/Dockerfile) -- [`24.0.0-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/dind-rootless/Dockerfile) -- [`24.0.0-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.0-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.0-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.1-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/cli/Dockerfile) +- [`24.0.1-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.1-dind-alpine3.18`, `24.0.1`, `24.0`, `24`, `latest`, `24.0.1-alpine3.18`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind/Dockerfile) +- [`24.0.1-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind-rootless/Dockerfile) +- [`24.0.1-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.1-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.1-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `24.0.0-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f86bd38ef9c9eded6092f823b4127818fc19892b/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.1-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index c3f9e0ecb442..524817d5e044 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.48.1`, `5.48`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a87c9d3b6a0db4cff502ea76b7057f4ebf41b2fc/5/debian/Dockerfile) -- [`5.48.1-alpine`, `5.48-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a87c9d3b6a0db4cff502ea76b7057f4ebf41b2fc/5/alpine/Dockerfile) +- [`5.49.0`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7cd02fbb3391925d9cdc06a0a8b36d0a1f9ce050/5/debian/Dockerfile) +- [`5.49.0-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7cd02fbb3391925d9cdc06a0a8b36d0a1f9ce050/5/alpine/Dockerfile) # Quick reference (cont.) From 4aa602dafffe9181bbc280748af27010956a3db9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 May 2023 12:15:34 -0700 Subject: [PATCH 0317/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 64383cefcd85..3db958e1565e 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230514.0.150299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/346fa38826610687e75ba90fb6e0797d0111e483/Dockerfile.base) -- [`base-devel`, `base-devel-20230514.0.150299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/346fa38826610687e75ba90fb6e0797d0111e483/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230521.0.152478`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/dbd59f669a2b422b67fc86350e7691fec43083a8/Dockerfile.base) +- [`base-devel`, `base-devel-20230521.0.152478`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/dbd59f669a2b422b67fc86350e7691fec43083a8/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index ef6f65ca1c7e..fd83bc8feb12 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/3632d8b1f5ae9aba67c3b693838ab9a52f282408/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/a180d1a2ebd692b5c5403e698f48c98f5a1df5ce/Dockerfile) # Quick reference (cont.) From ec4c1ad70a23939e87c5273ab574915304ae37f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 May 2023 13:17:14 -0700 Subject: [PATCH 0318/2686] Run update.sh --- kong/README.md | 6 ++++-- neo4j/README.md | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/kong/README.md b/kong/README.md index 4433cfc728bc..792f2ae59716 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.2-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) -- [`3.2.2-ubuntu`, `3.2-ubuntu`, `ubuntu`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) +- [`3.3.0-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/507775715a22e419d1c7e42028f7c3b5d9cf0418/Dockerfile.apk) +- [`3.3.0-ubuntu`, `3.3-ubuntu`, `3.3.0`, `3.3`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/507775715a22e419d1c7e42028f7c3b5d9cf0418/ubuntu/Dockerfile) +- [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) +- [`3.2.2-ubuntu`, `3.2-ubuntu`, `3.2.2`, `3.2`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) - [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) - [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) diff --git a/neo4j/README.md b/neo4j/README.md index a0b32d09cc5c..0c60612eb594 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.0`, `5.7.0-community`, `5.7`, `5.7-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/community/Dockerfile) -- [`5.7.0-enterprise`, `5.7-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/6182834d87cadbe06c1a8a54f5b033bcb3ff82dd/5.7.0/enterprise/Dockerfile) +- [`5.8.0`, `5.8.0-community`, `5.8`, `5.8-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/community/Dockerfile) +- [`5.8.0-enterprise`, `5.8-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/enterprise/Dockerfile) - [`4.4.20`, `4.4.20-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/community/Dockerfile) - [`4.4.20-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/enterprise/Dockerfile) From 3af7c3e765743c01a510949c2d715d3193b1fcee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 May 2023 14:16:59 -0700 Subject: [PATCH 0319/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index ea01777405b6..642491a125dc 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f5d1e75d532c305db56d3d3390b8ef2e9da7df49/telegraf/1.26/alpine/Dockerfile) +- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.24/Dockerfile) +- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.24/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.26/alpine/Dockerfile) # Quick reference (cont.) From 7b128c7411e3e8375d9639e6455e47874940f012 Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Mon, 22 May 2023 17:42:45 -0600 Subject: [PATCH 0320/2686] telegraf: update logo and readme (#2328) * telegraf: update logo and readme Provide some additional details and give a general update to the README. Removes a number of the examples as they are not helpful to the majority of users. Also update the influxdb logo. * update couple sentences * markdown lint fixes --- telegraf/content.md | 174 ++++++++------------------------------------ telegraf/logo.png | Bin 8599 -> 11691 bytes 2 files changed, 32 insertions(+), 142 deletions(-) diff --git a/telegraf/content.md b/telegraf/content.md index 22df8ab253f8..fd76add97103 100644 --- a/telegraf/content.md +++ b/telegraf/content.md @@ -1,44 +1,39 @@ -# Telegraf +# What is telegraf? -Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format. +Telegraf is an open source agent for collecting, processing, aggregating, and writing metrics. Based on a plugin system to enable developers in the community to easily add support for additional metric collection. There are five distinct types of plugins: + +- Input plugins collect metrics from the system, services, or 3rd party APIs +- Output plugins write metrics to various destinations +- Processor plugins transform, decorate, and/or filter metrics +- Aggregator plugins create aggregate metrics (e.g. mean, min, max, quantiles, etc.) +- Secret Store plugins are used to hide secrets from the configuration file [Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/get_started/) %%LOGO%% -## Using this image +# How to use this image -### Exposed Ports +## Exposed Ports -- 8125 StatsD +- 8125 UDP - 8092 UDP - 8094 TCP -### Using the default configuration - -The default configuration requires a running InfluxDB instance as an output plugin. Ensure that InfluxDB is running on port 8086 before starting the Telegraf container. - -Minimal example to start an InfluxDB container: - -```console -$ docker run -d --name influxdb -p 8086:8086 influxdb -``` - -Starting Telegraf using the default config, which connects to InfluxDB at `http://localhost:8086/`: +## Configuration file -```console -$ docker run --net=container:influxdb %%IMAGE%% -``` +The user is required to provide a valid configuration to use the image. A valid configuration has at least one input and one output plugin specified. The following will walk through the general steps to get going. -### Using a custom config file +### Basic Example -First, generate a sample configuration and save it as `telegraf.conf` on the host: +Configuration files are TOML-based files that declare which plugins to use. A very simple configuration file, `telegraf.conf`, that collects metrics from the system CPU and outputs the metrics to stdout looks like the following: -```console -$ docker run --rm %%IMAGE%% telegraf config > telegraf.conf +```toml +[[inputs.cpu]] +[[outputs.file]] ``` -Once you've customized `telegraf.conf`, you can run the Telegraf container with it mounted in the expected location: +Once a user has a customized configuration file, they can launch a Telegraf container with it mounted in the expected location: ```console $ docker run -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro %%IMAGE%% @@ -48,131 +43,26 @@ Modify `$PWD` to the directory where you want to store the configuration file. Read more about the Telegraf configuration [here](https://docs.influxdata.com/telegraf/latest/administration/configuration/). -### Using the container with input plugins - -These examples assume you are using a custom configuration file that takes advantage of Docker's built-in service discovery capability. In order to do so, we'll first create a new network: - -```console -$ docker network create influxdb -``` +### Sample Configuration -Next, we'll start our InfluxDB container named `influxdb`: +Users can generate a sample configuration using the `config` subcommand. This will provide the user with a basic config that has a handful of input plugins enabled that collect data from the system. However, the user will still need to configure at least one output before the file is ready for use: ```console -$ docker run -d --name=influxdb \ - --net=influxdb \ - influxdb -``` - -The `telegraf.conf` configuration can now resolve the `influxdb` container by name: - -```toml -[[outputs.influxdb]] - urls = ["http://influxdb:8086"] -``` - -Finally, we start our Telegraf container and verify functionality: - -```console -$ docker run -d --name=telegraf \ - --net=influxdb \ - -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \ - %%IMAGE%% -$ docker logs -f telegraf -``` - -#### Aerospike - -Start an instance of aerospike: - -```console -$ docker run -d --name aerospike \ - --net=influxdb \ - -p 3000-3003:3000-3003 \ - aerospike -``` - -Edit your Telegraf config file and set the correct connection parameter for Aerospike: - -```toml -[[inputs.aerospike]] - servers = ["aerospike:3000"] -``` - -Restart your `telegraf` container to pick up the changes: - -```console -$ docker restart telegraf -``` - -#### Nginx - -Create an `nginx_status.conf` configuration file to expose metric data: - -```nginx -server { - listen 8090; - location /nginx_status { - stub_status; - access_log off; - } -} -``` - -Start an Nginx container utilizing it: - -```console -$ docker run -d --name=nginx \ - --net=influxdb \ - -p 8090:8090 -p 8080:80 \ - -v $PWD/nginx_status.conf:/etc/nginx/conf.d/nginx_status.conf:ro \ - nginx -``` - -Verify the status page: [http://localhost:8090/nginx_status](http://localhost:8090/nginx_status). - -Configure the nginx input plugin in your Telegraf configuration file: - -```toml -[[inputs.nginx]] - urls = ["http://nginx:8090/nginx_status"] -``` - -Restart your `telegraf` container to pick up the changes: - -```console -$ docker restart telegraf -``` - -#### StatsD - -Telegraf has a StatsD plugin, allowing Telegraf to run as a StatsD server that metrics can be sent to. In order for this to work, you must first configure the [StatsD plugin](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/statsd) in your config file. - -Run Telegraf with the UDP port 8125 exposed: - -```console -$ docker run -d --name=telegraf \ - --net=influxdb \ - -p 8125:8125/udp \ - -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \ - %%IMAGE%% -``` - -Send Mock StatsD data: - -```console -$ for i in {1..50}; do echo $i;echo "foo:1|c" | nc -u -w0 127.0.0.1 8125; done +$ docker run --rm %%IMAGE%% telegraf config > telegraf.conf ``` -Check that the measurement `foo` is added in the DB. +## Supported Plugins Reference -### Supported Plugins Reference +The following are links to the various plugins that are available in Telegraf: -- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/inputs/) +- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#input-plugins) +- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#output-plugins) +- [Processor Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#processor-plugins) +- [Aggregator Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#aggregator-plugins) -- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/outputs/) +# Examples -### Monitoring the Docker Engine Host +## Monitoring the Docker Engine Host One common use case for Telegraf is to monitor the Docker Engine Host from within a container. The recommended technique is to mount the host filesystems into the container and use environment variables to instruct Telegraf where to locate the filesystems. @@ -191,7 +81,7 @@ $ docker run -d --name=telegraf \ %%IMAGE%% ``` -### Monitoring docker containers +## Monitoring docker containers To monitor other docker containers, you can use the docker plugin and mount the docker socket into the container. An example configuration is below: @@ -212,7 +102,7 @@ $ docker run -d --name=telegraf \ Refer to the docker [plugin documentation](https://github.com/influxdata/telegraf/blob/master/plugins/inputs/docker/README.md) for more information. -### Install Additional Packages +## Install Additional Packages Some plugins require additional packages to be installed. For example, the `ntpq` plugin requires `ntpq` command. It is recommended to create a custom derivative image to install any needed commands. diff --git a/telegraf/logo.png b/telegraf/logo.png index 814b2d78b59678c586d53bca63c727b7cfe7d007..79a22fa97eddc99acf29af75c7d3b45a5d33faaf 100644 GIT binary patch literal 11691 zcmXw91yqy$+on6DLl7zHF6j02uzn{&bfGEfRAoRnrn0-0e-R1!f{LK7ej27c zJ!Zxp35HTPAu1KlJXvrU9*ME7uG~s^(ewC-IBv8!9O@M1X*p5_(dR5Ip9Uqj49?#8 zdV5bnD@^p8S|1(`Dw9jg+8Wz#_gm}*2R0D-KU8J zlS>o)Sl0wN5zqf#zmzd*C)xCODZHvGC8vFI$J8bna(fuS<0{*J<(1ZV6>U4aPN&4K zab-C2PcR-Y3hah2^=zm+AcmjQNrnLxNqY}tER$D2G8DsIlNb8=J&8+>uKl`E|4EPV zm@J7qQ6ArEK(4-0{7WdZyMt7!4HGe3%df&plWUSvj}pE5Y~C#xpxz-L77H`C8>^lDyR26_(aTQzFe ze&K(&b|?4m=OncIte4*eF(1tfrF}~D?oXs$+5*0d=2crV*~;fBv)Z@64xq^wnE%{y zCHzxM+`&~3rQ!EVP@{%FXwV{4rp;tRJTu{D)kU}&b&27x*W>|Z@e7zZqz{F74*lJY z)(_ELjb*E*={1?Rb_{w!ysxP?7ly)}RStd{_!R=|9nV>cml2sdo1;Y?XTdwzS#=f? zcNb=+EKv`G4~zQlAzWx;8pvVkDaPS!DbKVRhW+1Ca7SWZM1(I!h88nYwb7Yc4}5Nz zWhKE-)Ux(LIBS6y?IyN`J$lD3sko?RL!#SU<48}r+!aCTB~M(Ag*fVI2z9v(w$eZ* zp3aed%1^s<)3{*?A;G$JD-^{v_UNH`;hTs5qgwg6}sPrV- zhn8MeI6u|j>O2I4eJILI?RsLW+_ewQ3sLXyA`go2{W%qzt2Rocq1y|#+NI-^wxKS8 zjIs_h#J-)7-(!(?=Qz1=XpD6g7B)4u$@74q`zOLMJLWMoS zfJ8kf+Ali~#-g`@F_{!eaPMK^p{p&gWcJx2^QG^mdD9nn)EF*#_eA%!HbX}<3NI!G zsWwnDmVUgYpYtMY;29)--sA*kA`$kt&;XoAZ4wXyPKx>wnVdalO5@J{@mp7PVnL1H z)~q%r?4cY22BYpbTYUeXEMb<%-_=s+a@%3r2MaSp{BdPC?+_b`YV&AY{~U5-W7{6Y zsG7ZQ^QO!8Ck)_%$g7D;79k%wS4|}rLo|Ku5&o$-zF`~t+5=`oaWzesu$7tLd~gU7 z@40uw0#inyzyS8~eMt2e))_gUcuWm42tF82b!B#Rnh>QG-yKCf|JD9#^4=@n38?#1 z#b1^`{{R)lhy%d){(4lh6Vx%?7*#2+P)sfG z<7_SCZRMnS)+*+FAQf)1$TES4j89I@D57jElo`3!%RAW;d+(nYgT^MSENo8gqJA(l%dD)yIQ)SMJ8zNIG&g7?9Mv_1HE*fDFnFq zvIjJI@+*~)!%PB__%@~(9Lv@{|7R5kZ}tWZ>6x=tObZ8IXxxsco*_-w%x%?O*RpQq`F*p*Nb2va=abPpLiX!P_Ow?rr_SrGz14UTM-3+Esrx!#{n(|6`Z>> zxmD4yZ2JD_(x*X~7P3CjpkIYg67rj}Gxm3=Ie!20zc3YHgjF90IhGB}^9)xcT|_-+ zW-Zk{+YD2Oo3gmJIN>*}^)t(F!=yfJsOEmWG1v{J8y;?{VEYICee6 z{}_8%mKCJlCg#Xzq%{{O(LXme&E=U2!t4EWfI z-;R0_i{#!=08PpL69;Y~=s0|D=>@rRe(KcT7%8gr-b>N5c*Z{)buR0j0=W!zCb>ov z=kFLP1drbXk(RJb*+A6<@>d2U=c3A|otDEA|4Wne0^huF;G2&m>k_khci<4V8y_DF zf@t7PnuyqhEtLuxS+KtgZuoRCf2|=^q)D8x9Ub|m0g!f-e?!}3%d%AMW^qb^v?75O zXqr7uj2Dj3@X055#27gqczBK*vyuHf{@~(i01^mlx0Xu|_(a?RM;LAHq2!)N9`VJY z@O5Fsgt3hcLYcjj^>1=-n_4n2y$f%~8eQNxq;F4;on%hocIJ!@^1zs2@vKK6d%VxTeoIf%9T3@){8m4qUmMcfv1`7)SlUhX2#+YRN9QXNa6UK~ zo7E|Uvj?O$6p$3CvU4IXC5$#Dw;9cBCI;5vjqC3Z^r(9^6JSzWsAaS)Vk|KS{g}MO zF>sC_d-**h(_qo}IScpPyR59wtUo|93&V4iD1Y&HN@2HErLB%9S*cxMTMWTjHO+`=f{bneCSBz~)(IKug}81S^3Gsh>>X!v zR`nYfPdgGdAAq~2?$+4aLYK+w?dnG_p@L9hEj?4rB-LTqD;##tqihjYTpJA1wk?J_cs*dC!nj%8z1Q>G;UvJ@4TU(A7=>Ye7s8CmCSUb*#ztK1DL{0 zp)BB34}J9i&NL*-I^HI`;=D&holA(#5R!QN%uddM`@kiiMx%@D#iGZvyviz$P{(+W zj`jKN$Sd8`fikDy!V{plh=T{}s?v}Y_@~h9DCDK&p*03`SVg$4pYEN`_#-;W@jQBG zKGsrw{Hig)hNbNVHHFh_^c9zvU#+yf2dvj9>A9Tds&E{V#lBAl5S{*H_-yeOyzv`n z6c!HU6eqD*{wk>Dz6NC-25C3`s+RM&r=( zC$A>}>Qm?x4e}BP^0C(_Tc&yw*rt`Cer;tj)~pwt`!nKP8cPnm#??E(gpO_=PrAm| zWZfXP*Oltid!^$EJ5kRzLrjxT{&9t1M$jF1Z=+sp)$fEyi;4@?LE`PNN@4U1- zHIbi+Hd6#Oh}Amkna0ezqXjvXZw0l3)oJPkFf-GRbSgnF!jrYuG2DSN0woVgwNu}3 zYL4FUHtgu6P}@H^H~Fp19$7hC=7Y;1|AB9z6ijlZ7s9#KH{sbQ3u_o1Y!fHTnmbZY z30nx1Nd=Q09@(PbDf-_pR4Lg9Er-2I%^s18VWaGuujBAKb8V{sF<4nK9-YE(7`aN zhV5gfJFAOf)M|XIPPy^%jOH^W(Mru%pWb~Xj6GK5DU~MA;P=st&+7va2+>*tX&5Ki zOYJwk2Tpd70G=x9DShxfu_vuz>C?6tdvJ$%CvlR%Tff+~LIQ;ZE)|8R^r3P0$m?A^^;(k4mVtF`mZI4T6^Te!pE)jKrVeR^AdyW1#i{gh9L+dN@W4LZACx z#T&YqFS#~@?sQI(5#Z^1K+S8v2Rc{5ta*}U+0nVsV;x%FIJ@R!?&(`@R2Yxaeip|L z?qS{qb(>Dy#SiC2IJh_X|1JWXV&zZ_baoc4?v$Nf4Y#8(3p z-7z~bzP4uuyR^KQz}|k3ao|JKem>t?Io4sW^ss~TRl4p8r1Xt~J9=T1NQRKOThtGJ zu_r_MZ@O-AcapP|jw82@`(^UN5GWH70^v>rx=d?IdSkY6g~uL!4*;f@$J*m;p-K0d zKrvQ>y$Ie@;%7{;t|7)Kyze}U4m_8t_?zY5p53lRZ}s3ddjFvlRzm?vQh~&?gddZ= zk^n?Vl2>2Q3Kl@#p=SQn)i3#>(*gDk*PK=m=fsm1#^f6Q9PfcKnMdl;p|4VKw`y9L z>Cw{n%CK)*y7>2Q%C0Sj0{_q_=ML#n>OkfLrG@cJop^tzik&vA}Kih6kqfliO zW1LwO-2IftO9HNu2WQWBn<(UqT?UJKb~0alGn48619dzs$f~cIT&~X!B7ZYm_NXH@ zXz&24pF{B%vZA!tbiCKz=AV7!npZaFD5X3p8u~1uU)GTsav{Era~LP0JnA1MxqQbn zc2;u>_8AHg5TujtZ)wiR%QU@GsGyM{v$NV$f}Bw*3LZEnnvjV2mv-W6Kksn717jW} zzHZQ`uVWy%5QQ>1+D$E>`uVSdZPUJ|2wBSw%UAk3_g{PQt5-c2fgRN(n?#X}Guz zv3OJ!7~;U=!k8-#DcWDQXrwESj-g!<$~l*a+=aw$)$#AsQM;NxZ_2);`+^Ps6;(iI z3p&TvXd%>zEl7{~OmH1c>*q7fQ5!t#?$vWFxV+#7#cmwo+(rQnyTu4bKjJkM1flQ@ zoAuB;s-~HJrqOOfi7+SqZaWpiE^(6Nsp}&r>CU4~(NGr#d?w2>cE*lfZ8t_&9r^++ zn%&>Q(xbI=qqbt&ZZhJpOQz1F%Gv1WmR>x9JFB2(;=f)Rwrsb&*e?B$60zFd(mivT zJdH-gj!6hMP=%Cw3GY7qKqYa>0gI=l!!?KxkK#$4X^!_*D;2Ghe&P3wt;x=2kpL?B z;C0?=S$J{AdW2~s;`a>#{yUYPG#DJI_a)RDe!7ZKnbsQCYU=tzH?F93VkKKRCi{L%n&>047rKq{#8Oi2jy$711p%;;EcldhP*h`JWQ9Okhz}2t{m<-R;3C&2Y`B5!v0()~l_3tQ z?KXh)ADn zes~LTLdYgJ&)N@I9PkiY6unxkWMcBHPj=SnoI#YY2? zc4Gx}=$7}Yb2r50OBjDk2qQG^WIm#=DN-{|yt7B+s%3xTw zLLYFR1c2PnP6oA_%(EJQF=SJRLc;0yl=ihwCS2QJRM5t-pS;pn36g7*(NM^8%-g*u zU5+~z*3b#0w@f!J{Q$(PN@yB=>-vSgHHh9Y;%~28{~kEL>>2WT4M?fqvjaZw9=PI| z*)z46uR##ojO#6$j|G-`$ctrO6TsVqio)x-sVGnPgG_l4`^1vDm7 zT?TvYfx-!rx%mh72IL!$L!DpU#I4I-VZXOH6$&Um3c=#2XWK->JkIl4?{AMyqX1?6 zjk8N_slqm`Zn%)@PyHl_##)X}?e}eL4 zZtRVZBLXe}%YQ!qVvgZquEYY1wl2m?Wxi^ZgVy}D+b#mAjaq5FoO|TwquB_yq$m4y zAQbry|L8|8>#8!zM+F}FyM5A=K_BIDTx|g^XJQ!dY_j9_#R7k_@|TNW_#jrSurQs7 zk7v;wU94#f`ExF31=EK?q?s@Ei08-l!w?bNurHq4b%Blce-{ZG5kOJB*?C(-0@dKD zuWuC-PeMuW8)!$`S5aqP6=rtaEXLeeOxosgZr=0lIzUQ=%O>s{6b)8AeZ7VR+QFH5 zDcEELnq}%D&vV>f8})9xEOTzC15FJVM^GS5)vdomH*xaa6&fpJwLKL=d65D z7JI%W$@(54LYRpmX54^9^JKP+24I2%*V*8ItZR*F;Ayu?wF>X2Liq<9wx|iM`<^1T z@UcM*5VMYVT+lplA=Ga@bY9VU3c*%aLzP`$vb~!->d!d4yTaz z4_P&lF!)D#sM*Mbkwgks_){1TC9+fz@_adI9glLa@%^0OlBvr%`eA<8|3Q> zxy#0|f9tX{9_D9jkcPh|H-D}UHNK1 r2ufY{lu+lp*sU+0Fzd#tD@;k4uPN1BAqSDA@BXXqEzTp8=omg~Ec;c(lXlxi6;(+>}6P9GYcp=n@$Zgr|LkM>`VQ0|1d zg?`69dlp>ib6&zutyeJ7J14@7KI%Wwhss0n3cqeJy~f}7Gx+&9P9ydP(Lm*ip~YcG??^_Ob1B^UcG-;ngt2Q!NOQo4 znulx8ptCgcrw_{cW-ol3#eOXcPG4qz>OQH{QGi+@B>Q6S^Jl&W%ZD(~m1kMI<*EaM zNgoer%4wt8W=QkzXGoOZ>pUz#V5hduUl{3CggOvA!KLE;0ANA;CJ)GHLqxV7z$FV& z+xPj|-TkgHX7UG%0X$H-&eYR2gRzkUvAp~uX!;%z42_y0>0FjiM|Zl|$q1+k@#ZrZ z%&MwMuTmnnNU&j4U5>L9n$roPxmrD5;YXbqjMz>myw5WMeAr?7o5n4LKDA8LZJO65 z8HJ;B$=X^Fis_=jcxa|Wu>Q8?n#_Sfer4RmRm~s)Xz@GExN;^J@6Vb{eD^;%usk0= zdq}%5V#CdCxM)dNYw8o{#0T#vpjF~+y{S8zeML>AdG175Qv~z9zdjcOCS;5_>-f*! zD)NcemhjISifLq=XXat~t2_z9|AKIhh^)J<)ESSgAoCEBE9F(gE6n`7oGd&WuJd^_ zer3I5U?_E+RA<0aZLKAN>op$4&fy!od1|2)E2Yj!d^jS;N4}ctN-(RvfH&hZg34mL z<~1Qqn?m!O4TqhCQ6~}8jVGct=ddT^oJ(WxLtv{bTC>zs^{BfDq)PY9D@xF7pLY$P z{;sz*zy@|*TkL0xX^DhiT*-wQ{0x$?({HA@B7ox;9^7WRPio0)*qduwI6Xb;By)d= zYjN9t_9o;-*1ZRQs%3MeOg{AtmsYO^l?Om52uO+#bvBs_JYr=ogBYij7LS{qhMmhZ z)C9V@x}pyNqLJ1H7kRu1mWr3FufMd!9elVUUY7IEE<%P*duF^$C~T{8Y<<)UQ76xH zc89EIx7yqDFjMQ-+NLx7DO)haZKQ_@Cyn81?lVky{9il^L+z7IQr+f8=2haDs`-I+ zCIfrb2rX!iRm-|o;O!}4sPOWqu8N_?Hg2$JfZ?2YCCWgj`fq=_tcTy~h?p`ycmVpM z(Pid0q2K83@glPwK$cs#UKl3%dmNpI!!HCt^ZZ>3XmK9WQ2*UoqU@n3CKd0f+Dua$ z<>LnPQAQnq!^wJ<0(1k%<&6m2gw4`uIuW3F-fcv{MX3U8%f?f!|aE@Mp=$`di1 z`A6iB2_L?C)z^rjFYz=2{`_a0wcJ%V?WzO?Leh7O%S9-;P2TTw-+yK5e{-jM@$Nsk zh5{k_Q$)iAu(;3Ny6?P)E&KPy^&LB2ew2QtdAz%6u=Uf=#!LdT;jZX0a}r@H7aPal zJ1Fy!1g^pZ%5q~Y53*NXwfP39AT97pdJsN|8hCr=btC7j7Ap;$y01>%gffn@g=x=Z zO@G>RIT_YyY+yYL(Pm*9sCa#aDNYuSt!}f#v|{RWc^(v;rkwtZbA-#XTYv7pH>ADxaegm4{_6x6e# zXv^q;5iP!v^TbrvRBT76lvU5DijAAX{V9=hSIB!VZ=6aOPkW18Rb+Y`N;x`txIRlcZrF`9MLVK``lvzOcQ{VhUf%Wlrm*o}z~B61C#8CZ{k)_;7E^rkW6 zR2=DOwXy-}Ne+UVK32}YDyg`Uv`IdF;WBLe(h8QmtjpW5q$TWS0fsK+O+xzlI&-aTze~|He2z6vu?Z`hGcyAUlyMN zkg0(-*e4WH?B5!!W%^@z46WB2yACTcat5-##Ox9MZCG^+Gb80a7_{JFcJCl(5n7X- z4;3d@)YD&)a2lFs+t!cHm!4$iJ@MaXQmWvm2iV#v3-%7X1!FGOOGyi_K1XSM2g`3b z4tfkp2DB(Zk+jDdC08-qA+9IZ4n(W&qwS&gKX^(k>DNm8f(-gvjh^->%Xy&!kQ50( zQuO`prTl}K*A;iujZ94f8}^&-#?1t7t(r}s70Acm&nWCakYhsksWSCF0$0H=ThEgx zVS6tkeh%8__~3*vwgrwH@@-d_%EALGC6; z{{{#s4`np;HM6Sd_OIa1b_Zv&i6|f38!&6Cpk>J0DnJwNe>k`1@JVV7kDDT=0nyKW4vvfz{^;fPTDHYkW7(k2A zRKuO1cbXv6BiyYE%`k+wwes{Vji%n^&4t%%0jx)F8;C*9;zp%Xhks{JVq7I+8b9tV z)LZ0~V?Bx`8iIp{!6(xC<0)L-G_QXJ)kX>bm=S7QGcFdqeYQN?Am|D?>pIWHTzJ4U zx4fb>^`*pwMYuC9Fp$&vmI?9xa`_l>8i*^HoTs-u!-DrV&yW;{M5Mj_)zn{?3FBM-z+$jp6t(pnzyA;Ti~y0@15Oyr|U(Uwk1e;`wV6LMwKXJ^C(A5sc`QI>>_4KI7?-tD5n zCdY$4awQj<$yC`R!a4Z`TDxtKf$4CZ`K z04;2ASkjvqyQ0zF=Pai(PiJIp&Ic~L5UcO~u=HwlEn2G4H6^}H^UG^pWc+d$KM%#= z{W~^1F2~}%<0PsPS?mkEopl`2&szjH&|s(HS@?zx#ll=L!2N z;TIjrS(J~gG!mQ1`X~kHMZh=HI!}u60?){bu`5LHS(GAlhRjeLVqsF_O}MqEA6Cz zUh!CSz09X-Vr*Fi3<;9^6ugdDD}jbD?tbjr6H^XbrX3qaevyxN5o2PKJ-uJMaW6Br z^`sq#tccKLmzjNJu%*4#*ee)2nPgWF{o&5nuj2k9=Ff?CPUBaBm)1u`pJ16>CR1XX zR#+AjBnH5WP`Z`K^yw?w2(Vy`r>4#|6I!x`&T{bAUZwGHnTHi&aV9o9jCTrl{ue#2 zZoZjS1%9=x@g@n#6Xgm%&21LBY7NsNha+Wh9kyzF;E|ANf}=A)Uvr%AoIsNyqfbMb zOS@NUjI_I&>~rAIZ_5YWz;Gjs3C+&~Te*Rh#i?f;quG03^vGbCpFske0`+&gw)fy7 zhHnE(Y&GHZ8X_#^oHw>wl0>;}G7$z8#3ks~a&C zzfUuR9$W;XtBKlfcv1Hj9$*JI>z{jOUh(SZ|Jk8d7jRO`lFFF*Y2ck$B5C#h6j&P( z`Hzv=Q20<{Y52XTwdQ`TMbG@Bnwd|RYFqd}GUzMi^bGF(m(};v;ymgLb#X-{&;DaC zJ}Jqc>)PWKzt*7E0YF7E^tGQ&Hi_j zSzEJZ+!qHv=J?(pNj-QV{hUdW@!!3CWs0zh^Nq(bNm@VfD+!2$*v_l8w6kSf=%1=! zotVPpsw`RNY?Ik&KwAT2%~O4kIL`V<;+yil%s&~Bgre6r6i#?oh_NxSi`9gHrHCC1k{u0fF|9fY}CdbyKfs^`@Q)Ie$HnQ6pSk6YZY0y+D3^K}GuWe5Lmv z4;5B9(3uV@JlMNh=`bRNnAyFnL#`hM&bnDDUWZmjs{aAXib~YHdHzo*o70aHom!#x zbjy>+*{Y7;!Yp(OVT(f9R9%@R=d0utR#X8Xb z{X)!X+m)zG^8G)HX*aG`bzWDQ6xR{h1|`r=Io9Mhe_b_it)|+M2`!!XQaSwoKi9aO z5xWkBH1A?{-9yDq99_#h$*&K#y$d?wy58@;{rk~#_AhS@c5dD3$3K|BI8)8KFp>j6L^r2kFRQ8#{d7|50yKs&@oA6%UwWq{C4zWX3mE?5?+3qOJ6g u{QjryvE$mRAx)ng!!wM3{%<*Z5PYeUkD>on{E>Z)@=94#sanA@;{O1Vi?sj% literal 8599 zcmV;IA!y!-P)PY|qAOJ~3 zK~#9!?VWj;A4QqRKQo!hK@xHiLI|XDG>MQjM<86XXyjg0kktitQQTd1*IQsw*9%-w zkjGU)-CdV;0ReSc6i`4SAOb?jNkWB?qjEHmKpCEWs8w)PW* z(MVu6Fuohx)C}AX+$yGH2i~hP9V@A%0<2mztfPVZfUzlmei3*MI2G6**a~a}#+7`` zD|F<&R=B)ZZwD^7jg`4uNhP&Qec8n)zfS?~%>b(xfOp4Qy$85h%)Xt#mw@*JKLAz~ zeB@~0?|?gj`+@s{FuFbnqZzK2m9%YNgOe+kHaaK>qdvV6tb#D=mj3hIqc@DtTTQI> zR&_>M4a?%JPQno7gHpb>5SS5bwaL2fbl_n?0Ve^wfdRk-j7RYjU`&ZNw*uRN&7ytX z9&7b@Z_%WJFdB*p={N$I0vrxZ67ZcIYqh4gYJfo)O##jWrpsnDL^icIfeoTLuf&9? z%#O8Mn{m%6z%&f6c{uPlu~r+ar`wfEmEGvJh4me2<~PPl1o^ zi%zrv=&w9qTMq2(O(vnVM~y1g!p2%$K8q77TgcNN29=Ea3b5U`!`TTeDlj}HS*$oXok{M5-$eGQL$roy1opm0=g0(?s&ACK|c9|7DMYjw{)1uUy!1A!ZX ze@MAzH*ig?)ipJ8CM`i2T>%^bTpNT@tC*GBfdet#wDG`+!mCV^%Qpit@M~bc4CILd zfVP~tF9tIQu$nNrl)c6r1Wp46d%n65<6zk=?=?imXBdVv9A^FBH|9$#D5_b*+8t}P zwim_j{SY`u{{8!X(SU{&u<8fg0(>Cjnvcg?{n(lOWf#nrAdLP&Z1rzqxT;M8RENo+ zZ4ywr784S&28d&=)?2rGCL zT?c$L)@okH7!DP%8jh*NF)rgi&(}In{v1Wt-!SP{WMl44b7riiJgnMhfMtPIJtjOM z%~WW?ge^SWl}TuYJG>Eu(K3uXJbB*zqS-wTtQXFwIo7HrO?8&%&lEM)ey0;Kk@kB_ zYiYm`?&~ozN=q=_o#$m>w~Ln5TTGArfxz>Xm*gE%`&{DeHp%CsJ@=WHM;BDmNshDr zy`Z=BUl2xPX^*|!f{Dr7H-Kf8hxr30Rw&J+xj5G9;RL8^=|ub5AdJotUMi6<#9G~u zV!GsUVlH4c3Siy57fq}^q9x{;VLinyl)e9OF}<^7eXP}XPoF2xABCT{n_uBi={a$t z3t0PLex%8GOc)E8RJ#}VLSJ-}dbwZ{#`~5AR%?L|##+tn3fkKqg&>SRfGO`7_hX1^_xcg?oj`ssjdYD2*}aXiMmJ(l)Nj$N`zzb4ws zidd`Xf-q{rI5oD)HLHrQxgd-V6b)@MaFC35J*EQ6M&M;x(~Ip?DQA5qYbub4m{>FEBH2(FY4-h(0MZNNHMI=sgLOWN=@jJI;Cm|Kmq*c)ZgAIIe2 zxz~l5Shl0AiQG@Pu(>jD34iceF*}FJ;P#_E%%BapEC{3fVy!Mr*~O*_01dFrW*<%P zH32O0<;QwUdw`Euz7sy88o9`dSB>j)H z-qj7h-Xq|(GYF$?0#+p4r*F+U)qcMxeKSbjw;^Q%*)8j9M-WCYi;{4=tV7#ExlU-7 zomM+-a5@)wC+VquZL*eEW&q-`n7Ga(t@++3Wz*ax&us;w0+V9Dj?10m9no%bM|JOknJsoRxqcd)Y;*Y|2B`cV8jwXII}T@7*Ha?!O>C*6?uo+x;oe=>uGbNz~8MK)(=cwKA)8kZ6uS!URaW zfYEA=SrXf}pUheN-Bw|8HS@UO6U9Or;DF#x3v83;Gzypv!Nfuy3tSz9(P^<(zjJuB zK@LdS;MAY=An7^**_9ap?rP+%($?LM_F6CZ-%mE^gMoJeUu($VGIWBF-2hhoWYK+I zI`%!WR@F|^bq`eFrH0Yeu~MEn2-U; zrv+j35U|G~rq2Mb@U-K{u~t7$+sLhhSpLHTt7eQd>oMV^UYGXnC#Fy!02+#>eLx;y zSz|Cm)|B1ne-MjhwV0LlGM^5XXG|3WeTsm2TMAe9Td{&#toeAZfJiGQQNA%_Ei6g_ z)jHq{4p==4JSvvNTIr{L0@{a&cKbH@os8jA4H)>%lHKZN(cOLNBnv>xPd7Hx#xeKb+l$jAh7>%$v ziasghTZ^m&)?4p!82(hGm9bX4ozHwG)+3#wcAE7=vs zdcO8dhNgNL{*ZvK$Z%)Z>kh!04ZLZ+hYvuS6993>b9$aemZr6cj3YZWXp_tVSFW*4 zFjvL_CpjTHw^E;!<<_OCqoRzmmZLpH|{xj_!#+zfUzM2PC*8L~j8h939H3|3fR1ii} zY}b83uo@|v(mQ~k#9DpWEj{DB;6|CSlY%hnTUH|y@-(d!&9uD`bQcv^=xGBnsfPfo z%~ItPPGF)%V(!VgerL)Lz%x#4mM_`6Nj4#Ok%c)LTyw^}+8=+B$4xdsT3Xf)vg?z9 z@q8uE_%x=Zcbe=F?In*Ux!f|9?vV9^?;2}ujk2`rEm?pi-#swd+y#)ol~hZ~dzP4I z_MFYDrjeSAU1VKZ4uOlUx%J5s%0R-WC9=9+Y)DsTi7LARcv@WP6!cgGz|X~taDA-R zr5PrXyMPzU?=xyJ%MzP-m-FW{_X6*pmq0u(V<0AG5W-oq9ur9TOdhvENAJ}R;O%1O z`@$I#Ia$7I{~Qba#8&z7N6I(38jsA2{&^(5htu-`)_Rw#wEFo5ht#!YMi540gD{%x zfQ>7+##;TXz!;rxEzJ94t(r@0m=i2ca5MhE%tJ6C0RT<0R(F)-n~!z@C`YtXG zzi*1Q+FjCuI>NG|wkG9ompEUVgbDh)MAZJfgD^TgP0O;%!4QPeR7^3ycLAS`wfYwy zSUH_MPZn1xv(UPJehSHZW{oCh8Sy1suZy+XmC|SXQM@elW5SEPPu}M&{2Bb)?V!F` ztJYYn1+i9hW33ipasabrxqNq?^RpnoL7D)_EfVNMz)u;H6iOW zf@U}2uikOBa5m#S8uDd%^C$=-n=pUb-KYv|xOOD@CQpo4ozNW#|9N-GIqqsqvkSD% z1~^sny=?FKePw`EDiPONCi%8{+QR}|1fL|)?PrTN@XH{KhNN*?R;~93orYsU3|OLj=gR^Yv{ zRyzvJ<0%$T^O_qdTtFs@hSi3@N^6~H%!%Av6a?gcZCDjhVy)iD8Sh5gE6J`(+kkWC z%CVM)w63J`V2Av~iH5Z+#VqWPNpAt;HoXMn)p{}rqXrwa+c0#duK8jkTIj=eV>6{3QCEti>yu z-SAog%h7mzsXdD`_^W;%z*^_gC?NT66ySw?*Sk`y=dp-P zFQ7H1iBH375k4+UJIzZt_Hhiym*LwyGLr0CTActyV$KfD;k;hX_*;DrK<|mQdcMGB z_)8B*mL}H$PZR+whtq3I_}CI_V2IN{i#+qZ4<<@H(d4$5oZEIl?6V~)kA)@IhYdKZ zF^;@4>p20-J&D#{Z`s^0r7XsNmZo$aCjI18;PxPlrUzm42~kP6W6mP{oeXfTl{IJ5 zULK|vkV!iv{3+#UNqHUMac!uY2 zUK{PB;ZgwWNYAya3(l3hDSoKQQ@{gM~?#!=YZrk%` ze#!3_svhCdkjmrg#c(=No=RH%v?`)+~Z-HEAAvZ=&|In)81MJ1=y{+5RIh6lV| z4QW9QbJhl+7fOEr#e(b5HC=a6z8uYXixb@1LBo>NkyTlpV>O@+_% z&bcKto@cu-XEy+weI=1ZlI)Q+MNK++uK~1sO}7-$-ko_f&Y~UKH7x53X$1|=V|W<{59NHtfo(Xga{$NudXdB3vfFuHM3vvM}%1l(Q$ww1IRj&-=dJOHYRG`BRQ1aP)t zg}M|}JjT%;$h$BZ&wA^NX&Tn}AdCh(l?w*~r(=>tpOC=9n+3Fv#Y9TqPWy>AzXp~B zVRTCnMyD4T%w*R%Qo;txN?I=1AyQqSJH?k;vzzSHioCqOIbF~;7UZxYsnWN2>Ce1TUx);+DxpU0Pz%_kit^Qad85_wQIo|{+Zcq==pc+f6ok>w zNDploME4&UI@tqQ8_7P_t8{3A_5MCD-&UZ>v&eiJ)*EERL8XXK<7tbvdfCy)^8m|z z-})eo1_WVrQ4mJ!WCQeGn^iSb*MiDXv~*eEJ{*#-YntW~Rr@SUE+LHS7Yab$;5NLyD zUyuX9u7=cH6hNeUN)mvZd+LpRe`L|`JJ${*B`&Q9uu6MJ(_VnHCDv+j2f(uAAv$Nb z&#(q(ASS8#7qM2W3!toB$m=Og_Ie-b_-UA`k7ojxV#xcagD_esrsW{u^FbK>78Ca~ z6;tT!2n(Q=VIuM8U>Acx6{#NJGch;108q<juH)^vBXf!^DNMh0RQN@b{XwunmbVlz(?apZT1MnY{wbmuDEp6kFJiy8r)I-V6#rva%mGQSczg=sKB0fAHM@V&H%RbH>)-7M56;*T|fo zP=te&fa5V1;Jj2sTM-z2wR`ynTN-j(tksHwTHvQJPP3D;IMFnZ(_;?N z*;gjhuY`x%CYo3+ft~LEn`LKTE0gCll0=$O&?(S+UrVQqr2nbN=$}@t4$2Rlt<1AIoS<- zCe~_c5Jq1oo7A5IoEmHOi=4S*b1kvQ^h-XQfJw$qGw+|znR7{BHj5dbW=FMqGR=lb!mkQJ^$|~8xfeYNSS9O3J{OPcxT^dZAJ-w(IHGG4X|dW0M>Cq z7(F5jZgs3xw;#K1b^5FzjDC#qFkTpIbyvpDQ7>G_e`MV94guJnILLIQXF=@oOuW1W zzs$2M`@E7{Je*n5-Ylm>USz#3z8J9Wz=o8*Uf+X&)$A;WI!x8j!#&qsB_LE6YxPtR zMo*JX>|ZVPhp!!tPCut<4nr}?(SHxv<%ORVx??1!MEF+ET~w=4TANSc017JH7$-T5Rm$+^**ZvjE^g-VLhDE zQIq7x14WJPb`VI=S6<`^}M?@Bz;~ zza49JomFN9Ox4jW&30-KM(4&_J>Z!~w)5#@K^UzOJ~26DWU7q&sa7BCkvaNh+RNT} z!xUnz)(2s<%c3MMmynGnF~KHcyn1h^qm$z)dCoiJ@0rygJV1O@5Jr)VV}pRpNWq2U zWWC;KDG$wDaVSiK(WP)tYd{Wq-gwvK!mQ!=)thmMGE!0)DSaWzn@4S5TGXGT@l2Kwq-f2%MBTrv1UL14nfynI`IKb>@3MHSOE70QX35={)0;YM zkit97#CXHgL(mmg9YyOLQA|XK>2?8+vUPF zw~BT+(BT(X%Gf^CX;7jtkvs1QL4qdXEJe~P8yp`Fqvex zc);qPVy(U@T0>7&Xt0U%7Uw770DVWqw`5#5$1`CE%e8G8*RM>gP+2hdZ;7Y9_PvJ6 z`D7}XIwij2%~d7b9Rd?%s1tI`iTZKTr`nZSyK;T&KNi&)@r_Z9}ltm zV@XyZr`4Zd#1zR)`fq=E))1MOtz!Ot5f~F|^&oRuptLbDcT79=CP{86L9uigaEZe&vp#-;KygO}9+qVOk#ajJW4{25IBpoOksO$2sO9Cf7 z2W$?^Fw0)cIo4@^(sKdZfLF8Pw`8)u;UT|&5Nq}6f@3oxgZST#Ie*dD{(6k3>QqeB z`I}+}KLnJY(cWj;^FW3ViUv;#I;W367vqcOz1%Btkr?5oTv*N?`WML1Q! zp;_K<0r0zo-*L%j@w~Rk`?M6`c#~A4bA)GVl<{3I{Ww44nnBXe; z#3<30U&nampT{|vB#l@P!sud5D9?ccUh9Q|cr>Z%;j|NJ=U~y)+H%)(5Jn#e!l*6f z=kGJLqV58N{_>n(IiDXCgwby@+SD9`(cjREBr8>^sTF9@S3qu-LB3ya*l*7n!> z4qbU(Pq(eszR7#PBBxT-(vP0XAKm(_p1=n8K6M#iIsp^L;2v18Nry!s$;B!f1kc`ihp5u}R(IF`3;`fT& zKoJ>_@s`|xIXH1q5JumZlp9}Y|7p^m5u)9tfz>S0tQHj|JO51ONKB?c7Fe}lf+(A+ zuBzlMtzmi03xY73hDk5Dkn}=%d6JO!w_sv0+9V#W672v00T@X{K~x%jlz^MB^vWZc zLq)e$W?&&L>ncoWN?Jnk{g^ZNTC1L_YcQg2dOLZ>{l?+$M<8h zv%liuTYe2(8f(>5fmQxkS=`~51+?t6nB~AJNdR!wmzDg<0alLIRVSL!@$&m5+K;yG z4!H#rrM#tDU^Ri(2QjHGLooSj=ZaIK>dQ+0^Z_deypp8I37ClVi|8E7RYtA`u8+0a zSuL>gW0PpbK^UEd$>qB;)=E`;xHs17r Date: Mon, 22 May 2023 17:16:16 -0700 Subject: [PATCH 0321/2686] Run update.sh --- photon/README.md | 4 +- rabbitmq/README.md | 8 +- telegraf/README.md | 176 +++++++++----------------------------------- tomcat/README.md | 38 +++++----- wordpress/README.md | 18 ++--- 5 files changed, 67 insertions(+), 177 deletions(-) diff --git a/photon/README.md b/photon/README.md index 6776af482040..387d9c47cb97 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230508`, `latest`](https://github.com/vmware/photon-docker-image/blob/632a31370122286585265e8f90f8d01abf6b48f8/docker/Dockerfile) -- [`4.0`, `4.0-20230515`](https://github.com/vmware/photon-docker-image/blob/ce749a6a6b5af6decb6edf27fbf661a03d82ff69/docker/Dockerfile) +- [`5.0`, `5.0-20230522`, `latest`](https://github.com/vmware/photon-docker-image/blob/a7896ab0c58f1b1d737e86a586cc776b9242f3b5/docker/Dockerfile) +- [`4.0`, `4.0-20230522`](https://github.com/vmware/photon-docker-image/blob/0a67cdeea16ca7893d75b8ad5ac38b0f03f32ad1/docker/Dockerfile) - [`3.0`, `3.0-20230515`](https://github.com/vmware/photon-docker-image/blob/8f9b582d6859a0966cff38b98474fdae75fc07f4/docker/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 755cb19bf8be..a773c8db827b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.2`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-rc.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/alpine/Dockerfile) -- [`3.12.0-rc.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.12.0-rc.3`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.3-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-rc.3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.3-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) - [`3.11.16`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/ubuntu/Dockerfile) - [`3.11.16-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.16-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/alpine/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 642491a125dc..d949c5bb8bda 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -50,47 +50,42 @@ WARNING: - **Source of this description**: [docs repo's `telegraf/` directory](https://github.com/docker-library/docs/tree/master/telegraf) ([history](https://github.com/docker-library/docs/commits/master/telegraf)) -# Telegraf +# What is telegraf? -Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format. +Telegraf is an open source agent for collecting, processing, aggregating, and writing metrics. Based on a plugin system to enable developers in the community to easily add support for additional metric collection. There are five distinct types of plugins: + +- Input plugins collect metrics from the system, services, or 3rd party APIs +- Output plugins write metrics to various destinations +- Processor plugins transform, decorate, and/or filter metrics +- Aggregator plugins create aggregate metrics (e.g. mean, min, max, quantiles, etc.) +- Secret Store plugins are used to hide secrets from the configuration file [Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/get_started/) -![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/telegraf/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/7b128c7411e3e8375d9639e6455e47874940f012/telegraf/logo.png) -## Using this image +# How to use this image -### Exposed Ports +## Exposed Ports -- 8125 StatsD +- 8125 UDP - 8092 UDP - 8094 TCP -### Using the default configuration - -The default configuration requires a running InfluxDB instance as an output plugin. Ensure that InfluxDB is running on port 8086 before starting the Telegraf container. - -Minimal example to start an InfluxDB container: - -```console -$ docker run -d --name influxdb -p 8086:8086 influxdb -``` - -Starting Telegraf using the default config, which connects to InfluxDB at `http://localhost:8086/`: +## Configuration file -```console -$ docker run --net=container:influxdb telegraf -``` +The user is required to provide a valid configuration to use the image. A valid configuration has at least one input and one output plugin specified. The following will walk through the general steps to get going. -### Using a custom config file +### Basic Example -First, generate a sample configuration and save it as `telegraf.conf` on the host: +Configuration files are TOML-based files that declare which plugins to use. A very simple configuration file, `telegraf.conf`, that collects metrics from the system CPU and outputs the metrics to stdout looks like the following: -```console -$ docker run --rm telegraf telegraf config > telegraf.conf +```toml +[[inputs.cpu]] +[[outputs.file]] ``` -Once you've customized `telegraf.conf`, you can run the Telegraf container with it mounted in the expected location: +Once a user has a customized configuration file, they can launch a Telegraf container with it mounted in the expected location: ```console $ docker run -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro telegraf @@ -100,131 +95,26 @@ Modify `$PWD` to the directory where you want to store the configuration file. Read more about the Telegraf configuration [here](https://docs.influxdata.com/telegraf/latest/administration/configuration/). -### Using the container with input plugins - -These examples assume you are using a custom configuration file that takes advantage of Docker's built-in service discovery capability. In order to do so, we'll first create a new network: - -```console -$ docker network create influxdb -``` +### Sample Configuration -Next, we'll start our InfluxDB container named `influxdb`: +Users can generate a sample configuration using the `config` subcommand. This will provide the user with a basic config that has a handful of input plugins enabled that collect data from the system. However, the user will still need to configure at least one output before the file is ready for use: ```console -$ docker run -d --name=influxdb \ - --net=influxdb \ - influxdb -``` - -The `telegraf.conf` configuration can now resolve the `influxdb` container by name: - -```toml -[[outputs.influxdb]] - urls = ["http://influxdb:8086"] -``` - -Finally, we start our Telegraf container and verify functionality: - -```console -$ docker run -d --name=telegraf \ - --net=influxdb \ - -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \ - telegraf -$ docker logs -f telegraf -``` - -#### Aerospike - -Start an instance of aerospike: - -```console -$ docker run -d --name aerospike \ - --net=influxdb \ - -p 3000-3003:3000-3003 \ - aerospike -``` - -Edit your Telegraf config file and set the correct connection parameter for Aerospike: - -```toml -[[inputs.aerospike]] - servers = ["aerospike:3000"] -``` - -Restart your `telegraf` container to pick up the changes: - -```console -$ docker restart telegraf -``` - -#### Nginx - -Create an `nginx_status.conf` configuration file to expose metric data: - -```nginx -server { - listen 8090; - location /nginx_status { - stub_status; - access_log off; - } -} -``` - -Start an Nginx container utilizing it: - -```console -$ docker run -d --name=nginx \ - --net=influxdb \ - -p 8090:8090 -p 8080:80 \ - -v $PWD/nginx_status.conf:/etc/nginx/conf.d/nginx_status.conf:ro \ - nginx -``` - -Verify the status page: [http://localhost:8090/nginx_status](http://localhost:8090/nginx_status). - -Configure the nginx input plugin in your Telegraf configuration file: - -```toml -[[inputs.nginx]] - urls = ["http://nginx:8090/nginx_status"] -``` - -Restart your `telegraf` container to pick up the changes: - -```console -$ docker restart telegraf -``` - -#### StatsD - -Telegraf has a StatsD plugin, allowing Telegraf to run as a StatsD server that metrics can be sent to. In order for this to work, you must first configure the [StatsD plugin](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/statsd) in your config file. - -Run Telegraf with the UDP port 8125 exposed: - -```console -$ docker run -d --name=telegraf \ - --net=influxdb \ - -p 8125:8125/udp \ - -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \ - telegraf -``` - -Send Mock StatsD data: - -```console -$ for i in {1..50}; do echo $i;echo "foo:1|c" | nc -u -w0 127.0.0.1 8125; done +$ docker run --rm telegraf telegraf config > telegraf.conf ``` -Check that the measurement `foo` is added in the DB. +## Supported Plugins Reference -### Supported Plugins Reference +The following are links to the various plugins that are available in Telegraf: -- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/inputs/) +- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#input-plugins) +- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#output-plugins) +- [Processor Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#processor-plugins) +- [Aggregator Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#aggregator-plugins) -- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/outputs/) +# Examples -### Monitoring the Docker Engine Host +## Monitoring the Docker Engine Host One common use case for Telegraf is to monitor the Docker Engine Host from within a container. The recommended technique is to mount the host filesystems into the container and use environment variables to instruct Telegraf where to locate the filesystems. @@ -243,7 +133,7 @@ $ docker run -d --name=telegraf \ telegraf ``` -### Monitoring docker containers +## Monitoring docker containers To monitor other docker containers, you can use the docker plugin and mount the docker socket into the container. An example configuration is below: @@ -264,7 +154,7 @@ $ docker run -d --name=telegraf \ Refer to the docker [plugin documentation](https://github.com/influxdata/telegraf/blob/master/plugins/inputs/docker/README.md) for more information. -### Install Additional Packages +## Install Additional Packages Some plugins require additional packages to be installed. For example, the `ntpq` plugin requires `ntpq` command. It is recommended to create a custom derivative image to install any needed commands. diff --git a/tomcat/README.md b/tomcat/README.md index 90a74ce1aa1c..724f7f1cd8d6 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,10 +26,10 @@ WARNING: - [`11.0.0-M6-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M6-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M6-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M6`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jdk17/temurin-jammy/Dockerfile) - [`11.0.0-M6-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M6-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M6-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.8-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.8-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.8-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.9-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.9-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.9-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.9`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.9-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.9-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.9-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.9-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.9-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.9-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.9-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.9-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.9-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.75-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.75-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.75-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.75`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.75-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.75-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.75-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.75-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-focal/Dockerfile) @@ -45,21 +45,21 @@ WARNING: - [`9.0.75-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.75-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.75-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.75-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.88-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.88-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.88-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.88-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.88-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.88-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.88-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.88-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.88-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.88-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.88-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.88-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.88-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.88-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.88-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.88-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.88-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.88-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.88-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.88-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.88-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.88-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.88-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.88-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.88-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.88-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.89-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.89-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.89-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.89`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.89-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.89-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.89-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.89-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.89-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.89-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.89-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.89-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.89-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.89-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.89-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.89-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.89-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.89-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.89-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.89-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.89-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.89-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.89-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.89-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.89-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.89-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.89-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.89-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.89-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.89-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.89-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index d56bc036c82f..132f562a61b2 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.1-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.1`, `6.2`, `6`, `latest`, `6.2.1-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.1-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/apache/Dockerfile) -- [`6.2.1-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.1-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm/Dockerfile) -- [`6.2.1-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.1-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.2.1-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.1-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/apache/Dockerfile) -- [`6.2.1-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm/Dockerfile) -- [`6.2.1-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.2.1-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.1-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/apache/Dockerfile) -- [`6.2.1-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm/Dockerfile) -- [`6.2.1-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/apache/Dockerfile) +- [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm/Dockerfile) +- [`6.2.2-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.2-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/apache/Dockerfile) +- [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm/Dockerfile) +- [`6.2.2-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/apache/Dockerfile) +- [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm/Dockerfile) +- [`6.2.2-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) - [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) - [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) From 5c99047b90ec219c863be99b9b45669e91f688ce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 May 2023 18:08:50 -0700 Subject: [PATCH 0322/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ docker/README.md | 20 ++++++++++---------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/debian/README.md b/debian/README.md index 425f3c9cd63c..fa768ca35d3e 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230502`, `11.7`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230502-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230502`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230502-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/rc-buggy/Dockerfile) -- [`sid`, `sid-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/sid/Dockerfile) -- [`sid-slim`, `sid-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/sid/slim/Dockerfile) -- [`stable`, `stable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/stable/slim/Dockerfile) -- [`testing`, `testing-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230502`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230502-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f7257ef5b83f6b64385edddeae2d2ba7d1b34935/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230522`, `11.7`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230522-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230522`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230522-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/experimental/Dockerfile) +- [`oldstable`, `oldstable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/rc-buggy/Dockerfile) +- [`sid`, `sid-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/sid/Dockerfile) +- [`sid-slim`, `sid-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/sid/slim/Dockerfile) +- [`stable`, `stable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/slim/Dockerfile) +- [`testing`, `testing-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/slim/Dockerfile) +- [`unstable`, `unstable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 62bee948e86e..17a9f78dafd5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.1-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/cli/Dockerfile) +- [`24.0.1-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/cli/Dockerfile) - [`24.0.1-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.1-dind-alpine3.18`, `24.0.1`, `24.0`, `24`, `latest`, `24.0.1-alpine3.18`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind/Dockerfile) - [`24.0.1-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind-rootless/Dockerfile) - [`24.0.1-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.1-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.1-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/cli/Dockerfile) +- [`24.0.1-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.1-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.1-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e353b3ff876e900a7df872f5c0a9e096b1f9068/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 1da14a77f4660c3e4e98de15e27697a84d372832 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 May 2023 14:17:33 -0700 Subject: [PATCH 0323/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index b9760df17730..43b12721c9ac 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0a7-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/bullseye/Dockerfile) -- [`3.12.0a7-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0a7-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0a7-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/buster/Dockerfile) -- [`3.12.0a7-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0a7-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0a7-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0a7-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0a7-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0a7-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0b1-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/bullseye/Dockerfile) +- [`3.12.0b1-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0b1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0b1-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/buster/Dockerfile) +- [`3.12.0b1-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0b1-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0b1-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0b1-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0b1-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) - [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-bullseye/Dockerfile) - [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/buster/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.12.0a7`, `3.12-rc`: - - [`3.12.0a7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.12-rc/bullseye/Dockerfile) - - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0a7-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/b89beeabaf2aaa8e2507a67a8e2b7f0f3fcac6ce/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b1`, `3.12-rc`: + - [`3.12.0b1-bullseye`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/bullseye/Dockerfile) + - [`3.12.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b1-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.3`, `3.11`, `3`, `latest`: - [`3.11.3-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) From cc3b38371018df1dcb5db80aaa3af0f12e9a3b0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 May 2023 15:08:54 -0700 Subject: [PATCH 0324/2686] Run update.sh --- elixir/README.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index d08cb8d224b7..5066aa729189 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,12 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.14.4`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/Dockerfile) -- [`1.14.4-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/slim/Dockerfile) -- [`1.14.4-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/alpine/Dockerfile) -- [`1.14.4-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24/Dockerfile) -- [`1.14.4-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-alpine/Dockerfile) -- [`1.14.4-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-slim/Dockerfile) +- [`1.15.0-rc.0`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/Dockerfile) +- [`1.15.0-rc.0-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/slim/Dockerfile) +- [`1.15.0-rc.0-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/alpine/Dockerfile) +- [`1.15.0-rc.0-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24/Dockerfile) +- [`1.15.0-rc.0-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24-alpine/Dockerfile) +- [`1.15.0-rc.0-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24-slim/Dockerfile) +- [`1.15.0-rc.0-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25/Dockerfile) +- [`1.15.0-rc.0-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25-alpine/Dockerfile) +- [`1.15.0-rc.0-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25-slim/Dockerfile) +- [`1.14.5`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) +- [`1.14.5-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) +- [`1.14.5-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) +- [`1.14.5-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24/Dockerfile) +- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-alpine/Dockerfile) +- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-slim/Dockerfile) +- [`1.14.5-otp-25`, `1.14-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25/Dockerfile) +- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25-alpine/Dockerfile) +- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25-slim/Dockerfile) - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) From 3957014c18063433a3ef1d1047425fe002f64e41 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 May 2023 17:17:29 -0700 Subject: [PATCH 0325/2686] Run update.sh --- bash/README.md | 2 +- friendica/README.md | 15 ++++++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/bash/README.md b/bash/README.md index a394ad5b4ee3..cec8724a4316 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230515`, `devel`, `devel-20230515-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/3785a84f3afd1b0c95c8a3f1a1e9c9bb382b6a70/devel/Dockerfile) +- [`devel-20230522`, `devel`, `devel-20230522-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/d9d779fed56c4928d5d0a5e67bd741b914e229c5/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 9ab73567a9ef..83be9b6b6439 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,15 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.04-apache`, `apache`, `stable-apache`, `2023.04`, `latest`, `stable`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/apache/Dockerfile) -- [`2023.04-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/fpm/Dockerfile) -- [`2023.04-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.04/fpm-alpine/Dockerfile) -- [`2023.05-rc-apache`, `rc-apache`, `2023.05-rc`, `rc`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/apache/Dockerfile) -- [`2023.05-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/fpm/Dockerfile) -- [`2023.05-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.05-rc/fpm-alpine/Dockerfile) -- [`2023.06-dev-apache`, `dev-apache`, `2023.06-dev`, `dev`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/apache/Dockerfile) -- [`2023.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/fpm/Dockerfile) -- [`2023.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/50bf32a75375fce99f6f10dcf8285be5ffe7c435/2023.06-dev/fpm-alpine/Dockerfile) +- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/apache/Dockerfile) +- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/fpm/Dockerfile) +- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/fpm-alpine/Dockerfile) +- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/apache/Dockerfile) +- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/fpm/Dockerfile) +- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) From 29aee7f12725c623e3512d1295b5c316210e8ee6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 May 2023 18:15:57 -0700 Subject: [PATCH 0326/2686] Run update.sh --- mongo/README.md | 90 +++++++++++++++++++++---------------------- oraclelinux/README.md | 14 ++++--- 2 files changed, 53 insertions(+), 51 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 85da9d3db83e..3d26fc8262fa 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`6.0.5-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/6.0/Dockerfile) -- [`6.0.5-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.5-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.5-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.5-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.17-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/5.0/Dockerfile) -- [`5.0.17-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.17-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.17-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.17-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.21-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.4/Dockerfile) -- [`4.4.21-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.21-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.21-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.21-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) +- [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) +- [`6.0.6-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.6-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.6-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.6-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/Dockerfile) +- [`5.0.18-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.18-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.18-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.18-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.22-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/Dockerfile) +- [`4.4.22-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.22-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.22-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.22-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) - [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) @@ -51,36 +51,36 @@ WARNING: ## Shared Tags -- `6.0.5`, `6.0`, `6`, `latest`: - - [`6.0.5-jammy`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/6.0/Dockerfile) - - [`6.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.5-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.5-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2a7ebf4d0dd1499409dc209443c86846f0c96510/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.17`, `5.0`, `5`: - - [`5.0.17-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/5.0/Dockerfile) - - [`5.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.17-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.17-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cf85c62df0c753f5c523826aa8b94b5550fb723f/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.21`, `4.4`, `4`: - - [`4.4.21-focal`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.4/Dockerfile) - - [`4.4.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.21-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.21-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1449dea31590f70ad3be5b2d025ddae7f5bc178/4.4/windows/nanoserver-1809/Dockerfile) +- `6.0.6`, `6.0`, `6`, `latest`: + - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) + - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.6-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.6-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.18`, `5.0`, `5`: + - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/Dockerfile) + - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.18-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.18-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.22`, `4.4`, `4`: + - [`4.4.22-focal`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/Dockerfile) + - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.22-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.22-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) - `4.2.24`, `4.2`: - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index ca1b7b5f8c3d..00626453ec41 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,12 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/8-slim/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/802631282c68adb27b87a537548a202f457ade23/7-slim/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/9-slim/Dockerfile) +- [`8.7`, `8`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7-slim-fips/Dockerfile) # Quick reference (cont.) From 2766c98e4ae6a7323b9e579093041a1e8b8e8cef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 May 2023 14:17:22 -0700 Subject: [PATCH 0327/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 00626453ec41..7a542ca3f8a9 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/9-slim/Dockerfile) -- [`8.7`, `8`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4b50af86aac372b2bbe3718917575fbb276b3b4b/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7-slim-fips/Dockerfile) # Quick reference (cont.) From f8a43207132dd52683f6c3b05ce5d3d9d0767f7e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 May 2023 15:16:36 -0700 Subject: [PATCH 0328/2686] Run update.sh --- almalinux/README.md | 4 ++-- composer/README.md | 2 +- couchbase/README.md | 6 ++++-- dart/README.md | 4 ++-- eclipse-temurin/README.md | 16 ++++++++-------- elixir/README.md | 24 ++++++++++++------------ neo4j/README.md | 4 ++-- nginx/README.md | 10 +++++----- xwiki/README.md | 6 +++--- 9 files changed, 39 insertions(+), 37 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 54f146ca3842..fb947d3b7f07 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.7`, `8.7-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-default) -- [`8-minimal`, `8.7-minimal`, `8.7-minimal-20230407`](https://github.com/AlmaLinux/docker-images/blob/1ff85558b2d001adef31a5910aff262d2cea0e3d/Dockerfile-x86_64-minimal) +- [`8`, `8.8`, `8.8-20230524`](https://github.com/AlmaLinux/docker-images/blob/96c180e154599cb2831d58f8ef290967ee12e3b9/Dockerfile-x86_64-default) +- [`8-minimal`, `8.8-minimal`, `8.8-minimal-20230524`](https://github.com/AlmaLinux/docker-images/blob/96c180e154599cb2831d58f8ef290967ee12e3b9/Dockerfile-x86_64-minimal) - [`latest`, `9`, `9.2`, `9.2-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-default) - [`minimal`, `9-minimal`, `9.2-minimal`, `9.2-minimal-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-minimal) diff --git a/composer/README.md b/composer/README.md index d58c5be581b0..c75c342ce981 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.5`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/ff083b1338eb2b4ac3f01928b4b97637a5b9200e/2.5/Dockerfile) +- [`2.5.7`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/cc32c94811040536eb15e46c251a5ee36d5da1ea/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) - [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) diff --git a/couchbase/README.md b/couchbase/README.md index 988c8f2cb5b9..4f073263895c 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.1.4`, `enterprise-7.1.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/c497eda885d5b9869ad45d0432e3b382d6b328c1/enterprise/couchbase-server/7.1.4/Dockerfile) -- [`community-7.1.1`, `community`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) +- [`7.2.0`, `enterprise-7.2.0`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/enterprise/couchbase-server/7.2.0/Dockerfile) +- [`community-7.2.0`, `community`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/community/couchbase-server/7.2.0/Dockerfile) +- [`7.1.4`, `enterprise-7.1.4`](https://github.com/couchbase/docker/blob/c497eda885d5b9869ad45d0432e3b382d6b328c1/enterprise/couchbase-server/7.1.4/Dockerfile) +- [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) - [`6.6.6`, `enterprise-6.6.6`](https://github.com/couchbase/docker/blob/8398e79a15da9eef613d0a781ec136a458ea128c/enterprise/couchbase-server/6.6.6/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 566b4a2e5165..6d45d4ff0b1b 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.1-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.1`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5540bf00a5fac227f782ed8e0610ea4599648788/stable/bullseye/Dockerfile) -- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5540bf00a5fac227f782ed8e0610ea4599648788/beta/bullseye/Dockerfile) +- [`3.0.2-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.2`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/41e9df52bc1aad9088396b946bf1b99d92d6c0d8/stable/bullseye/Dockerfile) +- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/41e9df52bc1aad9088396b946bf1b99d92d6c0d8/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 9c5b51895fff..b88e50bb1359 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/alpine/Dockerfile.releases.full) +- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/8/jdk/alpine/Dockerfile.releases.full) - [`8u372-b07-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/focal/Dockerfile.releases.full) - [`8u372-b07-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`8u372-b07-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/centos/Dockerfile.releases.full) @@ -37,7 +37,7 @@ WARNING: - [`8u372-b07-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u372-b07-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u372-b07-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/alpine/Dockerfile.releases.full) +- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/8/jre/alpine/Dockerfile.releases.full) - [`8u372-b07-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/focal/Dockerfile.releases.full) - [`8u372-b07-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/jammy/Dockerfile.releases.full) - [`8u372-b07-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/centos/Dockerfile.releases.full) @@ -46,7 +46,7 @@ WARNING: - [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/11/jdk/alpine/Dockerfile.releases.full) - [`11.0.19_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/focal/Dockerfile.releases.full) - [`11.0.19_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.19_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/centos/Dockerfile.releases.full) @@ -55,7 +55,7 @@ WARNING: - [`11.0.19_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.19_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.19_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/11/jre/alpine/Dockerfile.releases.full) - [`11.0.19_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/focal/Dockerfile.releases.full) - [`11.0.19_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.19_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/centos/Dockerfile.releases.full) @@ -64,7 +64,7 @@ WARNING: - [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/17/jdk/alpine/Dockerfile.releases.full) - [`17.0.7_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/focal/Dockerfile.releases.full) - [`17.0.7_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.7_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/centos/Dockerfile.releases.full) @@ -73,7 +73,7 @@ WARNING: - [`17.0.7_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.7_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.7_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/17/jre/alpine/Dockerfile.releases.full) - [`17.0.7_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/focal/Dockerfile.releases.full) - [`17.0.7_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.7_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/centos/Dockerfile.releases.full) @@ -82,14 +82,14 @@ WARNING: - [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/20/jdk/alpine/Dockerfile.releases.full) - [`20.0.1_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.1_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.1_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.1_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.1_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`20.0.1_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/20/jre/alpine/Dockerfile.releases.full) - [`20.0.1_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.1_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.1_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) diff --git a/elixir/README.md b/elixir/README.md index 5066aa729189..74272607d2d4 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -27,21 +27,21 @@ WARNING: - [`1.15.0-rc.0`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/Dockerfile) - [`1.15.0-rc.0-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/slim/Dockerfile) - [`1.15.0-rc.0-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/alpine/Dockerfile) -- [`1.15.0-rc.0-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24/Dockerfile) -- [`1.15.0-rc.0-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24-alpine/Dockerfile) -- [`1.15.0-rc.0-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-24-slim/Dockerfile) -- [`1.15.0-rc.0-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25/Dockerfile) -- [`1.15.0-rc.0-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25-alpine/Dockerfile) -- [`1.15.0-rc.0-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/otp-25-slim/Dockerfile) +- [`1.15.0-rc.0-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24/Dockerfile) +- [`1.15.0-rc.0-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24-alpine/Dockerfile) +- [`1.15.0-rc.0-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24-slim/Dockerfile) +- [`1.15.0-rc.0-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25/Dockerfile) +- [`1.15.0-rc.0-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25-alpine/Dockerfile) +- [`1.15.0-rc.0-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) -- [`1.14.5-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24/Dockerfile) -- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-alpine/Dockerfile) -- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/359c4c4879581c2aa3b7722b910a1a99726e6771/1.14/otp-24-slim/Dockerfile) -- [`1.14.5-otp-25`, `1.14-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25/Dockerfile) -- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25-alpine/Dockerfile) -- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/otp-25-slim/Dockerfile) +- [`1.14.5-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) +- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) +- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) +- [`1.14.5-otp-25`, `1.14-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) +- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) +- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 0c60612eb594..9b6a281df998 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.8.0`, `5.8.0-community`, `5.8`, `5.8-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/community/Dockerfile) - [`5.8.0-enterprise`, `5.8-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/enterprise/Dockerfile) -- [`4.4.20`, `4.4.20-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/community/Dockerfile) -- [`4.4.20-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/0b7f25524ed61ebc29e610955b8dbff7679a500f/4.4.20/enterprise/Dockerfile) +- [`4.4.21`, `4.4.21-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/community/Dockerfile) +- [`4.4.21-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index fb920446e90b..ae3ff8cb00be 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.23.4`, `mainline`, `1`, `1.23`, `latest`, `1.23.4-bullseye`, `mainline-bullseye`, `1-bullseye`, `1.23-bullseye`, `bullseye`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/debian/Dockerfile) -- [`1.23.4-perl`, `mainline-perl`, `1-perl`, `1.23-perl`, `perl`, `1.23.4-bullseye-perl`, `mainline-bullseye-perl`, `1-bullseye-perl`, `1.23-bullseye-perl`, `bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/debian-perl/Dockerfile) -- [`1.23.4-alpine`, `mainline-alpine`, `1-alpine`, `1.23-alpine`, `alpine`, `1.23.4-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.23-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine/Dockerfile) -- [`1.23.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.23-alpine-perl`, `alpine-perl`, `1.23.4-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.23-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-perl/Dockerfile) -- [`1.23.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.23-alpine-slim`, `alpine-slim`, `1.23.4-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.23-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/73a5acae6945b75b433cafd0c9318e4378e72cbb/mainline/alpine-slim/Dockerfile) +- [`1.25.0`, `mainline`, `1`, `1.25`, `latest`, `1.25.0-bullseye`, `mainline-bullseye`, `1-bullseye`, `1.25-bullseye`, `bullseye`](https://github.com/nginxinc/docker-nginx/blob/3591b5e431af710432bd4852d9ee26eb19992776/mainline/debian/Dockerfile) +- [`1.25.0-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.0-bullseye-perl`, `mainline-bullseye-perl`, `1-bullseye-perl`, `1.25-bullseye-perl`, `bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/ee6b833b5d9d1966b85a5d318efc04cf8b1c1ba5/mainline/debian-perl/Dockerfile) +- [`1.25.0-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.0-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.25-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/123ef33694fccfefcb7db63251b21c0496537c76/mainline/alpine/Dockerfile) +- [`1.25.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.0-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.25-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/123ef33694fccfefcb7db63251b21c0496537c76/mainline/alpine-perl/Dockerfile) +- [`1.25.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.0-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.25-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/3591b5e431af710432bd4852d9ee26eb19992776/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 4c07be3c73bc..398cf5ba8aae 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.3`, `15.3.0`, `15-mysql-tomcat`, `15.3-mysql-tomcat`, `15.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.3-postgres-tomcat`, `15.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.10`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c9a422aa64cdca8f894a70b0adc6044986e9255b/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.11`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 4aa6616ec26486ae8c84c1755f7d262dec69b74c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 May 2023 10:17:23 -0700 Subject: [PATCH 0329/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 9b6a281df998..013871507a87 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.0`, `5.8.0-community`, `5.8`, `5.8-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/community/Dockerfile) -- [`5.8.0-enterprise`, `5.8-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a9b3464e378d969401dce828e6000453677c0b3e/5.8.0/enterprise/Dockerfile) +- [`5.8.0`, `5.8.0-community`, `5.8`, `5.8-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/20660ac29964bba2bb7432919f65df0b7f8c323e/5.8.0/community/Dockerfile) +- [`5.8.0-enterprise`, `5.8-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/20660ac29964bba2bb7432919f65df0b7f8c323e/5.8.0/enterprise/Dockerfile) - [`4.4.21`, `4.4.21-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/community/Dockerfile) - [`4.4.21-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/enterprise/Dockerfile) From 7f8c6a5f08b42d6ff0d7c78bd6f6ba2608311705 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 May 2023 15:16:01 -0700 Subject: [PATCH 0330/2686] Run update.sh --- aerospike/README.md | 4 ++-- arangodb/README.md | 3 ++- convertigo/README.md | 2 +- haproxy/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index ab9da9e0f8bf..e6584bd2402b 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.3`, `ee-6.3.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/4ae23b6beff5b83774e08d36f1a2784208d32ae0/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.3`, `ce-6.3.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/4ae23b6beff5b83774e08d36f1a2784208d32ae0/community/debian11/Dockerfile) +- [`ee-6.3.0.4`, `ee-6.3.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/fe338f8af95f2b20e4a6db3aa2d29a6d3373a2ff/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.4`, `ce-6.3.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/fe338f8af95f2b20e4a6db3aa2d29a6d3373a2ff/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/arangodb/README.md b/arangodb/README.md index c9fad0f1b053..8699cdaa3472 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/83dcd50e8af2210c1315074d8c9260b9ff572e9f/alpine/3.9.10/Dockerfile) -- [`3.10`, `3.10.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) +- [`3.10`, `3.10.6`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) +- [`3.11`, `3.11.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/900b2e2b330a213b9c965badd073df63eb3b615d/alpine/3.11.0/Dockerfile) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index 40e776329b9f..7bca5628901b 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/a2fb2dabcd979887118458aba535ff467d7f891d/docker/default/Dockerfile) +- [`8.2.1`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/b80c43731b90df528878a6c3bb75ccd4afd8d96e/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 9fcf7fbe01b7..b3e12b7e03a0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev12`, `2.8-dev`, `2.8-dev12-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/8540b3c85e62fae2c85d73e3a27c17f53da115e1/2.8/Dockerfile) -- [`2.8-dev12-alpine`, `2.8-dev-alpine`, `2.8-dev12-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/8540b3c85e62fae2c85d73e3a27c17f53da115e1/2.8/alpine/Dockerfile) +- [`2.8-dev13`, `2.8-dev`, `2.8-dev13-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/19b0b73d7173ccc7d2f30987dedbf8ee8932b63d/2.8/Dockerfile) +- [`2.8-dev13-alpine`, `2.8-dev-alpine`, `2.8-dev13-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/19b0b73d7173ccc7d2f30987dedbf8ee8932b63d/2.8/alpine/Dockerfile) - [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) - [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index a773c8db827b..eaa3ae43de18 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,10 +32,10 @@ WARNING: - [`3.11.16-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.16-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/alpine/Dockerfile) - [`3.11.16-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.22`, `3.10`](https://github.com/docker-library/rabbitmq/blob/78a7915ab3099eac44a3819f5057592b2fa65bb9/3.10/ubuntu/Dockerfile) -- [`3.10.22-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.22-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.10/alpine/Dockerfile) -- [`3.10.22-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.10.23`, `3.10`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/ubuntu/Dockerfile) +- [`3.10.23-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.23-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/alpine/Dockerfile) +- [`3.10.23-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) - [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.9/alpine/Dockerfile) From 1ef890fef4a75a619ff2e3485ead4f351cd10731 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 May 2023 16:17:24 -0700 Subject: [PATCH 0331/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 53e9a9f09e97..af196c39dc69 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-23-jdk-oraclelinux8`, `21-ea-23-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-23-jdk-oracle`, `21-ea-23-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-23-jdk-oraclelinux7`, `21-ea-23-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-23-jdk-bullseye`, `21-ea-23-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/bullseye/Dockerfile) -- [`21-ea-23-jdk-slim-bullseye`, `21-ea-23-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-23-jdk-slim`, `21-ea-23-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-23-jdk-buster`, `21-ea-23-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/buster/Dockerfile) -- [`21-ea-23-jdk-slim-buster`, `21-ea-23-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/slim-buster/Dockerfile) -- [`21-ea-23-jdk-windowsservercore-ltsc2022`, `21-ea-23-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-23-jdk-windowsservercore-1809`, `21-ea-23-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-23-jdk-nanoserver-1809`, `21-ea-23-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-24-jdk-oraclelinux8`, `21-ea-24-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-24-jdk-oracle`, `21-ea-24-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-24-jdk-oraclelinux7`, `21-ea-24-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-24-jdk-bullseye`, `21-ea-24-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/bullseye/Dockerfile) +- [`21-ea-24-jdk-slim-bullseye`, `21-ea-24-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-24-jdk-slim`, `21-ea-24-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-24-jdk-buster`, `21-ea-24-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/buster/Dockerfile) +- [`21-ea-24-jdk-slim-buster`, `21-ea-24-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/slim-buster/Dockerfile) +- [`21-ea-24-jdk-windowsservercore-ltsc2022`, `21-ea-24-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-24-jdk-windowsservercore-1809`, `21-ea-24-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-24-jdk-nanoserver-1809`, `21-ea-24-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-23-jdk`, `21-ea-23`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-23-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-23-jdk-windowsservercore`, `21-ea-23-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-23-jdk-nanoserver`, `21-ea-23-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/892e5d672c4e8ffb94c65e1e52d5fbbeb9dba5a7/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-24-jdk`, `21-ea-24`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-24-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-24-jdk-windowsservercore`, `21-ea-24-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-24-jdk-nanoserver`, `21-ea-24-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 001ff036e0dcce681d9dfd29806d1fb87aed7469 Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Fri, 26 May 2023 12:15:11 -0700 Subject: [PATCH 0332/2686] REL-1193 Update content.md --- aerospike/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/content.md b/aerospike/content.md index 35650ff23744..cb88c5588055 100644 --- a/aerospike/content.md +++ b/aerospike/content.md @@ -22,7 +22,7 @@ docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc Above, *DIR* is a directory on your machine where you drop your feature key file. Make sure Docker Desktop has file sharing permission to bind mount it into Docker containers. -### Running an Aerospike EE node with a feature key file in a mapped directory +### Running a node with a feature key file in an environment variable ```console FEATKEY=$(base64 ~/Desktop/evaluation-features.conf) From f8cafc9ada745506fb9848839e8b95ece1c079b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 May 2023 12:16:11 -0700 Subject: [PATCH 0333/2686] Run update.sh --- rockylinux/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rockylinux/README.md b/rockylinux/README.md index 99c55eba53d4..ff98da78caaf 100644 --- a/rockylinux/README.md +++ b/rockylinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.20230215`, `9.1`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/c554918c3fb7432f70802459ee942fead8121cae/Dockerfile) -- [`9.1.20230215-minimal`, `9.1-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/957dce1794c27b8fc1666f7e283db2ba7ef5b182/Dockerfile) -- [`8.7.20230215`, `8.7`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/65d3f79aa8b5d0a9ed1270470e585539f7d59cd1/Dockerfile) -- [`8.7.20230215-minimal`, `8.7-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/a923b0d8957fa92feafaa4f6b00f8df08db796ab/Dockerfile) +- [`9.2.20230513`, `9.2`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/5534796e428e5ac942d820bc96a36a5d0404a8a4/Dockerfile) +- [`9.2.20230513-minimal`, `9.2-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/7be807edccbbb7b64872f1a6b6c24cc2edabf3bd/Dockerfile) +- [`8.8.20230518`, `8.8`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/1c46fd092fd28c6192435baa61e66a00e66f7029/Dockerfile) +- [`8.8.20230518-minimal`, `8.8-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/62c9ffd4470199b37a57ac260d1368ad239d476c/Dockerfile) # Quick reference (cont.) @@ -35,7 +35,7 @@ WARNING: [https://bugs.rockylinux.org](https://bugs.rockylinux.org) or [GitHub](https://github.com/rocky-linux/sig-cloud-instance-images/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rockylinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rockylinux/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rockylinux/), [`s390x`](https://hub.docker.com/r/s390x/rockylinux/) + [`amd64`](https://hub.docker.com/r/amd64/rockylinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rockylinux/), [`s390x`](https://hub.docker.com/r/s390x/rockylinux/) - **Published image artifact details**: [repo-info repo's `repos/rockylinux/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rockylinux) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rockylinux)) From 55ee44f26a49ea4b37ebf563eb4741c1c299d2a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 May 2023 13:17:30 -0700 Subject: [PATCH 0334/2686] Run update.sh --- aerospike/README.md | 2 +- docker/README.md | 18 +++++++++--------- flink/README.md | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index e6584bd2402b..c7d7513fb4e1 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -70,7 +70,7 @@ docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc Above, *DIR* is a directory on your machine where you drop your feature key file. Make sure Docker Desktop has file sharing permission to bind mount it into Docker containers. -### Running an Aerospike EE node with a feature key file in a mapped directory +### Running a node with a feature key file in an environment variable ```console FEATKEY=$(base64 ~/Desktop/evaluation-features.conf) diff --git a/docker/README.md b/docker/README.md index 17a9f78dafd5..416e82ac206c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.1-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/cli/Dockerfile) -- [`24.0.1-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.1-dind-alpine3.18`, `24.0.1`, `24.0`, `24`, `latest`, `24.0.1-alpine3.18`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind/Dockerfile) -- [`24.0.1-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d5357e52fb5680f9d39846b6adb053d497e255dc/24/dind-rootless/Dockerfile) -- [`24.0.1-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.1-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.1-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/cli/Dockerfile) +- [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind/Dockerfile) +- [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) +- [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `24.0.1-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3ed3a49381cdce562ce1833284af80f24b29f10e/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.2-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-1809/Dockerfile) diff --git a/flink/README.md b/flink/README.md index 54544ee5fead..7e1eaa802497 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.0-scala_2.12-java8`, `1.17-scala_2.12-java8`, `scala_2.12-java8`, `1.17.0-java8`, `1.17-java8`, `java8`](https://github.com/apache/flink-docker/blob/1cb66d334bd1a1a9a7627c47478a31afed542aab/1.17/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.17.0-scala_2.12-java11`, `1.17-scala_2.12-java11`, `scala_2.12-java11`, `1.17.0-scala_2.12`, `1.17-scala_2.12`, `scala_2.12`, `1.17.0-java11`, `1.17-java11`, `java11`, `1.17.0`, `1.17`, `latest`](https://github.com/apache/flink-docker/blob/1cb66d334bd1a1a9a7627c47478a31afed542aab/1.17/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.16.1-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.1-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.1-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.1-scala_2.12`, `1.16-scala_2.12`, `1.16.1-java11`, `1.16-java11`, `1.16.1`, `1.16`](https://github.com/apache/flink-docker/blob/e348fd602cfe038402aeb574d1956762f4175af0/1.16/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.1-scala_2.12-java8`, `1.17-scala_2.12-java8`, `scala_2.12-java8`, `1.17.1-java8`, `1.17-java8`, `java8`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.1-scala_2.12-java11`, `1.17-scala_2.12-java11`, `scala_2.12-java11`, `1.17.1-scala_2.12`, `1.17-scala_2.12`, `scala_2.12`, `1.17.1-java11`, `1.17-java11`, `java11`, `1.17.1`, `1.17`, `latest`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.16.2-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.2-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.16.2-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.2-scala_2.12`, `1.16-scala_2.12`, `1.16.2-java11`, `1.16-java11`, `1.16.2`, `1.16`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java11-ubuntu/Dockerfile) - [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java8-ubuntu/Dockerfile) - [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java11-ubuntu/Dockerfile) From b7d4f573e5cd57a4842e7c772d03da80f5fdd73c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 May 2023 18:15:34 -0700 Subject: [PATCH 0335/2686] Run update.sh --- ghost/README.md | 4 ++-- php/README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 524817d5e044..0d26c35bb645 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.49.0`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7cd02fbb3391925d9cdc06a0a8b36d0a1f9ce050/5/debian/Dockerfile) -- [`5.49.0-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7cd02fbb3391925d9cdc06a0a8b36d0a1f9ce050/5/alpine/Dockerfile) +- [`5.49.1`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/76c29df890a1581a192a73ebde146282b0f57786/5/debian/Dockerfile) +- [`5.49.1-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/76c29df890a1581a192a73ebde146282b0f57786/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 1fd9c0047c2e..752e4c1dda95 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2.7RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.7RC1-bullseye`, `8.2-rc-bullseye`, `8.2.7RC1-cli`, `8.2-rc-cli`, `8.2.7RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.7RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.7RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.7RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.7RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.7RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.7RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.7RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.7RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/cli/Dockerfile) +- [`8.2.7RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/apache/Dockerfile) +- [`8.2.7RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/fpm/Dockerfile) +- [`8.2.7RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/zts/Dockerfile) +- [`8.2.7RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.7RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.7RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.7RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.7RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.7RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.7RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.7RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.7RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.7RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.7RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.7RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.6-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.6-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.6-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.6`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/cli/Dockerfile) - [`8.2.6-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.6-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/apache/Dockerfile) - [`8.2.6-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.6-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.2.6-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.6-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/cli/Dockerfile) - [`8.2.6-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.6-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.20RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.20RC1-bullseye`, `8.1-rc-bullseye`, `8.1.20RC1-cli`, `8.1-rc-cli`, `8.1.20RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.20RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.20RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.20RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.20RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.20RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.20RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.20RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.20RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/cli/Dockerfile) +- [`8.1.20RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/apache/Dockerfile) +- [`8.1.20RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/fpm/Dockerfile) +- [`8.1.20RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/zts/Dockerfile) +- [`8.1.20RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.20RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.20RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.20RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.20RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.20RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.20RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.20RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.20RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.20RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.20RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.20RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/zts/Dockerfile) - [`8.1.19-cli-bullseye`, `8.1-cli-bullseye`, `8.1.19-bullseye`, `8.1-bullseye`, `8.1.19-cli`, `8.1-cli`, `8.1.19`, `8.1`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/cli/Dockerfile) - [`8.1.19-apache-bullseye`, `8.1-apache-bullseye`, `8.1.19-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/apache/Dockerfile) - [`8.1.19-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.19-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/fpm/Dockerfile) From 8eb158378ea69c6a65786f10978060d081b6f058 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Tue, 30 May 2023 11:32:41 +0200 Subject: [PATCH 0336/2686] Update Ubuntu's maintainer.md Given the new OCI-based image submission workflow, the Maintainance of the Ubuntu container image can solely be assigned to Canonical. --- ubuntu/maintainer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/maintainer.md b/ubuntu/maintainer.md index 541c9f2f5909..16c36b91b6ec 100644 --- a/ubuntu/maintainer.md +++ b/ubuntu/maintainer.md @@ -1 +1 @@ -[Canonical](https://launchpad.net/cloud-images) and [Tianon (Debian Developer)](%%GITHUB-REPO%%) +[Canonical](https://launchpad.net/cloud-images) From 27392977660b48e9de11f98e1202c1c094b43c3f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 May 2023 13:18:34 -0700 Subject: [PATCH 0337/2686] Run update.sh --- archlinux/README.md | 4 ++-- gazebo/README.md | 8 ++++---- photon/README.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 3db958e1565e..9aada608ec20 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230521.0.152478`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/dbd59f669a2b422b67fc86350e7691fec43083a8/Dockerfile.base) -- [`base-devel`, `base-devel-20230521.0.152478`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/dbd59f669a2b422b67fc86350e7691fec43083a8/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230528.0.154326`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d8e9ebde1718f8f26185afa99e795fa6fec6f931/Dockerfile.base) +- [`base-devel`, `base-devel-20230528.0.154326`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d8e9ebde1718f8f26185afa99e795fa6fec6f931/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 038ddad9ac2d..9f24aa28e12f 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11-bionic`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/bionic/gzserver11/Dockerfile) -- [`libgazebo11-bionic`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/bionic/libgazebo11/Dockerfile) -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) -- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/6900fe08e79c7b70471cb10f83324ec24a906bea/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) +- [`gzserver11-bionic`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/bionic/gzserver11/Dockerfile) +- [`libgazebo11-bionic`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/bionic/libgazebo11/Dockerfile) +- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) +- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 387d9c47cb97..1625c9c2943f 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230522`, `latest`](https://github.com/vmware/photon-docker-image/blob/a7896ab0c58f1b1d737e86a586cc776b9242f3b5/docker/Dockerfile) +- [`5.0`, `5.0-20230527`, `latest`](https://github.com/vmware/photon-docker-image/blob/1f65acbaa1c37855acdd775e41ebc2b8bcd7282b/docker/Dockerfile) - [`4.0`, `4.0-20230522`](https://github.com/vmware/photon-docker-image/blob/0a67cdeea16ca7893d75b8ad5ac38b0f03f32ad1/docker/Dockerfile) - [`3.0`, `3.0-20230515`](https://github.com/vmware/photon-docker-image/blob/8f9b582d6859a0966cff38b98474fdae75fc07f4/docker/Dockerfile) From 043b109a0b5abb65943c9919339dfd73bae987cb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 May 2023 15:16:24 -0700 Subject: [PATCH 0338/2686] Run update.sh --- clearlinux/README.md | 2 +- crate/README.md | 2 +- odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index fd83bc8feb12..070b5ff66ab0 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/a180d1a2ebd692b5c5403e698f48c98f5a1df5ce/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ee8c4c68f687355e4dd9eccd137e7c6df06ac789/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index e7c07261ea7f..e620e9b78513 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.1`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/7b386ec1fc97ff17205fe10e145604de5fb758ed/Dockerfile) +- [`5.3.2`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/9b88acabe6265b4a6df693f26432563e95d8a8f7/Dockerfile) - [`5.2.8`, `5.2`](https://github.com/crate/docker-crate/blob/9dd974bffff06d56e844a099c709583864c970e6/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 065c0a0b7c30..7cb67c3d828f 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/789b7ff9dc2b9647276d8497957cf19de9e83a01/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/14.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 398cf5ba8aae..763701a140f8 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.3`, `15.3.0`, `15-mysql-tomcat`, `15.3-mysql-tomcat`, `15.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.3-postgres-tomcat`, `15.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.3-mariadb-tomcat`, `15.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/435c3ef09c3f34fab61a8d5804a6170d0dc21f44/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.4`, `15.4.0`, `15-mysql-tomcat`, `15.4-mysql-tomcat`, `15.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.4-postgres-tomcat`, `15.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.4-mariadb-tomcat`, `15.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.11`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mariadb-tomcat/Dockerfile) From bc2082567cb37a5c7811e0bf3a2085814b67e4d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 May 2023 16:18:16 -0700 Subject: [PATCH 0339/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 4 ++-- couchdb/README.md | 10 +++++----- php/README.md | 6 ++++++ rabbitmq/README.md | 16 ++++++++-------- ubuntu/README.md | 2 +- 6 files changed, 23 insertions(+), 17 deletions(-) diff --git a/bash/README.md b/bash/README.md index cec8724a4316..371e02d5fb17 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230522`, `devel`, `devel-20230522-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/d9d779fed56c4928d5d0a5e67bd741b914e229c5/devel/Dockerfile) +- [`devel-20230526`, `devel`, `devel-20230526-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/72ae68854dc12d31241d804f9879f374e185334a/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 8578c8be6619..7850ce24b3be 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.1/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/cassandra/blob/5951b45c36ee557b33cd8a108f5e08f1654ef5e8/4.0/Dockerfile) +- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/676c7fb1737244ff736edc56064af335cf9d466f/4.1/Dockerfile) +- [`4.0.10`, `4.0`](https://github.com/docker-library/cassandra/blob/4802b868f5684890ed82a6ec1c8b32141c0dc73c/4.0/Dockerfile) - [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) - [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) diff --git a/couchdb/README.md b/couchdb/README.md index e73d905fc608..2da2885a3b19 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.2`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.3.2/Dockerfile) -- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.2.3/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/3.1.2/Dockerfile) -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/72a0aebfa3248b3df64a70049f0fb1f90c042a49/2.3.1/Dockerfile) +- [`latest`, `3.3.2`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.3.2/Dockerfile) +- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.2.3/Dockerfile) +- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.1.2/Dockerfile) +- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/2.3.1/Dockerfile) # Quick reference (cont.) @@ -35,7 +35,7 @@ WARNING: [https://github.com/apache/couchdb-docker/issues](https://github.com/apache/couchdb-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/couchdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchdb/), [`ppc64le`](https://hub.docker.com/r/ppc64le/couchdb/) + [`amd64`](https://hub.docker.com/r/amd64/couchdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchdb/), [`ppc64le`](https://hub.docker.com/r/ppc64le/couchdb/), [`s390x`](https://hub.docker.com/r/s390x/couchdb/) - **Published image artifact details**: [repo-info repo's `repos/couchdb/` directory](https://github.com/docker-library/repo-info/blob/master/repos/couchdb) ([history](https://github.com/docker-library/repo-info/commits/master/repos/couchdb)) diff --git a/php/README.md b/php/README.md index 752e4c1dda95..693867f2824f 100644 --- a/php/README.md +++ b/php/README.md @@ -66,6 +66,9 @@ WARNING: - [`8.1.20RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.20RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/cli/Dockerfile) - [`8.1.20RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/fpm/Dockerfile) - [`8.1.20RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.20RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.20RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.20RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.20RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.19-cli-bullseye`, `8.1-cli-bullseye`, `8.1.19-bullseye`, `8.1-bullseye`, `8.1.19-cli`, `8.1-cli`, `8.1.19`, `8.1`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/cli/Dockerfile) - [`8.1.19-apache-bullseye`, `8.1-apache-bullseye`, `8.1.19-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/apache/Dockerfile) - [`8.1.19-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.19-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/fpm/Dockerfile) @@ -80,6 +83,9 @@ WARNING: - [`8.1.19-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.19-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/cli/Dockerfile) - [`8.1.19-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/fpm/Dockerfile) - [`8.1.19-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.19-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.19-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.19-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.19-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/zts/Dockerfile) - [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/cli/Dockerfile) - [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/apache/Dockerfile) - [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index eaa3ae43de18..71d99c805cfd 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.3`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-rc.3-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/alpine/Dockerfile) -- [`3.12.0-rc.3-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.16`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/ubuntu/Dockerfile) -- [`3.11.16-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.16-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/alpine/Dockerfile) -- [`3.11.16-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.0-rc.4`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/2466fb116a22441798f38838f4f1d00980b0f348/3.12-rc/ubuntu/Dockerfile) +- [`3.12.0-rc.4-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.0-rc.4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2466fb116a22441798f38838f4f1d00980b0f348/3.12-rc/alpine/Dockerfile) +- [`3.12.0-rc.4-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) +- [`3.11.17`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/51796e9b65ec63cd2d4cfc873c12f97b4c4be457/3.11/ubuntu/Dockerfile) +- [`3.11.17-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.17-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/51796e9b65ec63cd2d4cfc873c12f97b4c4be457/3.11/alpine/Dockerfile) +- [`3.11.17-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.23`, `3.10`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/ubuntu/Dockerfile) - [`3.10.23-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.23-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/alpine/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 52c16e63be1f..28530a035079 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [Canonical](https://launchpad.net/cloud-images) and [Tianon (Debian Developer)](https://git.launchpad.net/cloud-images/+oci/ubuntu-base) + [Canonical](https://launchpad.net/cloud-images) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) From ed77534ca7a3b02dade7684926df9844f3a0f12f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 May 2023 17:16:26 -0700 Subject: [PATCH 0340/2686] Run update.sh --- ghost/README.md | 4 ++-- joomla/README.md | 36 +++++++++++++++++++++++++++--------- postgres/README.md | 3 +++ 3 files changed, 32 insertions(+), 11 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 0d26c35bb645..681009687ce5 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.49.1`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/76c29df890a1581a192a73ebde146282b0f57786/5/debian/Dockerfile) -- [`5.49.1-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/76c29df890a1581a192a73ebde146282b0f57786/5/alpine/Dockerfile) +- [`5.49.2`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/bfdc7dec6f9f3a0cc54d39632de6a17df5906eca/5/debian/Dockerfile) +- [`5.49.2-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/bfdc7dec6f9f3a0cc54d39632de6a17df5906eca/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 12eb40cb4202..fabccbec34a7 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,15 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.1`, `4.3`, `4`, `latest`, `4.3.1-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.1-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.1-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/apache/Dockerfile) -- [`4.3.1-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.1-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.0/fpm/Dockerfile) -- [`4.3.1-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/apache/Dockerfile) -- [`4.3.1-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.1-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/efba6bb87ef113bfa2a9d60b52095f942fce3671/4.3/php8.1/fpm/Dockerfile) -- [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/apache/Dockerfile) -- [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/fpm-alpine/Dockerfile) -- [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf7f1e8d3306c30c1ea909794ce30f353376d8d3/3.10/php8.0/fpm/Dockerfile) +- [`5.0.0-alpha1`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha1-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha1-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/apache/Dockerfile) +- [`5.0.0-alpha1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-alpha1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/fpm/Dockerfile) +- [`5.0.0-alpha1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/apache/Dockerfile) +- [`5.0.0-alpha1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-alpha1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/fpm/Dockerfile) +- [`4.4.0-alpha1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/apache/Dockerfile) +- [`4.4.0-alpha1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-alpha1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/fpm/Dockerfile) +- [`4.4.0-alpha1`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha1-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha1-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/apache/Dockerfile) +- [`4.4.0-alpha1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-alpha1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/fpm/Dockerfile) +- [`4.4.0-alpha1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/apache/Dockerfile) +- [`4.4.0-alpha1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-alpha1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/fpm/Dockerfile) +- [`4.3.2`, `4.3`, `4`, `latest`, `4.3.2-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.2-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.2-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/apache/Dockerfile) +- [`4.3.2-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.2-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/fpm/Dockerfile) +- [`4.3.2-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/apache/Dockerfile) +- [`4.3.2-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.2-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/fpm/Dockerfile) +- [`4.3.2-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/apache/Dockerfile) +- [`4.3.2-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.2-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/fpm/Dockerfile) +- [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/apache/Dockerfile) +- [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/fpm-alpine/Dockerfile) +- [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/fpm/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index b0975fd9c581..e325c6d64abe 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,6 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`16beta1`, `16beta1-bullseye`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/bullseye/Dockerfile) +- [`16beta1-alpine3.18`, `16beta1-alpine`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.18/Dockerfile) +- [`16beta1-alpine3.17`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.17/Dockerfile) - [`15.3`, `15`, `latest`, `15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) - [`15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.3-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.18/Dockerfile) - [`15.3-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.17/Dockerfile) From 50c281fe87d963afc32cad3562e527acc889c674 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 May 2023 18:16:27 -0700 Subject: [PATCH 0341/2686] Run update.sh --- gcc/README.md | 2 +- mongo/README.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/gcc/README.md b/gcc/README.md index 74670bffc175..3a1c4ef12462 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -26,7 +26,7 @@ WARNING: - [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/13/Dockerfile) - [`12.3.0`, `12.3`, `12`, `12.3.0-bullseye`, `12.3-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/dfa419750ef32e01ce5715a08533397f570f1133/12/Dockerfile) -- [`11.3.0`, `11.3`, `11`, `11.3.0-bullseye`, `11.3-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/11/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/9f10f9541f9736300c811cdb3f319c038a8b9c3a/11/Dockerfile) - [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/10/Dockerfile) - [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/9/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 3d26fc8262fa..e0aaa38e172d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.0-rc2-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/Dockerfile) +- [`7.0.0-rc2-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc2-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc2-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc2-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.6-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) @@ -51,6 +56,16 @@ WARNING: ## Shared Tags +- `7.0.0-rc2`, `7.0-rc`: + - [`7.0.0-rc2-jammy`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/Dockerfile) + - [`7.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc2-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc2-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.6`, `6.0`, `6`, `latest`: - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) From a444a7dadeeee8a80b66c76a1ae92053c403321e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 May 2023 10:19:54 -0700 Subject: [PATCH 0342/2686] Run update.sh --- docker/README.md | 4 ++-- erlang/README.md | 12 ++++++------ fedora/README.md | 7 +++---- postfixadmin/README.md | 2 +- ros/README.md | 3 +++ 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/docker/README.md b/docker/README.md index 416e82ac206c..55a10244d437 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,13 +29,13 @@ WARNING: ## Simple Tags - [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/cli/Dockerfile) -- [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind/Dockerfile) +- [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/36a4df919e51b459eaf08c2f7d395b71d8e331c3/24/dind/Dockerfile) - [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) - [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/cli/Dockerfile) -- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind/Dockerfile) +- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) - [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index d3a5e5a91f9d..0ab9ccb2c8ef 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,12 +27,12 @@ WARNING: - [`26.0.0.0`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/Dockerfile) - [`26.0.0.0-slim`, `26.0.0-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/slim/Dockerfile) - [`26.0.0.0-alpine`, `26.0.0-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/b99497690af4fc92ab414ff79aceffabea8a3c28/26/alpine/Dockerfile) -- [`25.3.2.0`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/Dockerfile) -- [`25.3.2.0-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/slim/Dockerfile) -- [`25.3.2.0-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/e56b9ef7fb17dbf4c02dce10ce93b5f7f89e4141/25/alpine/Dockerfile) -- [`24.3.4.11`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/Dockerfile) -- [`24.3.4.11-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/slim/Dockerfile) -- [`24.3.4.11-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/da9d65bc7c3eea24e8c4d48db746e687d9851f4a/24/alpine/Dockerfile) +- [`25.3.2.1`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/Dockerfile) +- [`25.3.2.1-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/slim/Dockerfile) +- [`25.3.2.1-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/alpine/Dockerfile) +- [`24.3.4.12`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/Dockerfile) +- [`24.3.4.12-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/slim/Dockerfile) +- [`24.3.4.12-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/alpine/Dockerfile) - [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/Dockerfile) - [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/slim/Dockerfile) - [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/alpine/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index 9c87df0246bd..07addbbba21d 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`36`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a08e597f3f6b6525b4a9aa4436555087cdd11189/x86_64/Dockerfile) -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1b5eff3dd490b6c1ce6772dd9d229e4612b7aedc/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8bff5c9d57ff58ad15a49c0b738a52fa9c4b9149/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/523ad92207c0d13de8e17a3d93620299ff09ecfd/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/366412c8f9972718c1c8261fc7922eafbc448181/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/186fab33a61afe40cb5e6017434345312144e576/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/db4a019000e03732e124c8a07182165ea8d9564f/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 89052e7c229c..e18458c7fd7c 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/b4307d956cb1cfe64df1402cf6d68a1369ba56de/apache/Dockerfile) - [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/b4307d956cb1cfe64df1402cf6d68a1369ba56de/fpm/Dockerfile) -- [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/b4307d956cb1cfe64df1402cf6d68a1369ba56de/fpm-alpine/Dockerfile) +- [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/5030ec70f6a0dec12e39f5194fb29575b169f7b7/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index 0141b5e00a4d..d6a5d16fac21 100644 --- a/ros/README.md +++ b/ros/README.md @@ -42,6 +42,9 @@ WARNING: - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) +- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-core/Dockerfile) +- [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) +- [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) - [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) - [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/perception/Dockerfile) From 5c321c3c21877a483dbec40f2bf373b6d8f2ef1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 May 2023 11:16:18 -0700 Subject: [PATCH 0343/2686] Run update.sh --- nextcloud/README.md | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 64eae5026bb4..4582226162ad 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24.0.12-apache`, `24.0-apache`, `24-apache`, `24.0.12`, `24.0`, `24`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/apache/Dockerfile) -- [`24.0.12-fpm`, `24.0-fpm`, `24-fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/fpm/Dockerfile) -- [`24.0.12-fpm-alpine`, `24.0-fpm-alpine`, `24-fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/24/fpm-alpine/Dockerfile) -- [`25.0.6-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.6`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/apache/Dockerfile) -- [`25.0.6-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/fpm/Dockerfile) -- [`25.0.6-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/25/fpm-alpine/Dockerfile) -- [`26.0.1-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.1`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/apache/Dockerfile) -- [`26.0.1-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/fpm/Dockerfile) -- [`26.0.1-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/620d4d68f44600473c0c35bd679f392b423dbc6f/26/fpm-alpine/Dockerfile) +- [`25.0.7-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.7`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/apache/Dockerfile) +- [`25.0.7-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/fpm/Dockerfile) +- [`25.0.7-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/fb5866ada90529aa04da11c9b0f96511b61a09d5/25/fpm-alpine/Dockerfile) +- [`26.0.2-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.2`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/apache/Dockerfile) +- [`26.0.2-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm/Dockerfile) +- [`26.0.2-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm-alpine/Dockerfile) # Quick reference (cont.) From f7c548130d1bf3b83d09cf75e61466e6ae23edbd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 May 2023 12:16:19 -0700 Subject: [PATCH 0344/2686] Run update.sh --- haproxy/README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index b3e12b7e03a0..2f6cf27da9fb 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,12 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8-dev13`, `2.8-dev`, `2.8-dev13-bullseye`, `2.8-dev-bullseye`](https://github.com/docker-library/haproxy/blob/19b0b73d7173ccc7d2f30987dedbf8ee8932b63d/2.8/Dockerfile) -- [`2.8-dev13-alpine`, `2.8-dev-alpine`, `2.8-dev13-alpine3.17`, `2.8-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/19b0b73d7173ccc7d2f30987dedbf8ee8932b63d/2.8/alpine/Dockerfile) -- [`2.7.8`, `2.7`, `latest`, `2.7.8-bullseye`, `2.7-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) -- [`2.7.8-alpine`, `2.7-alpine`, `alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) -- [`2.6.13`, `2.6`, `lts`, `2.6.13-bullseye`, `2.6-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) -- [`2.6.13-alpine`, `2.6-alpine`, `lts-alpine`, `2.6.13-alpine3.17`, `2.6-alpine3.17`, `lts-alpine3.17`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/alpine/Dockerfile) +- [`2.9-dev0`, `2.9-dev`, `2.9-dev0-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/f389054a408dd4a1cb6f314fd66a851f565190d3/2.9/Dockerfile) +- [`2.9-dev0-alpine`, `2.9-dev-alpine`, `2.9-dev0-alpine3.17`, `2.9-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/f389054a408dd4a1cb6f314fd66a851f565190d3/2.9/alpine/Dockerfile) +- [`2.8.0`, `2.8`, `lts`, `latest`, `2.8.0-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/Dockerfile) +- [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.17`, `2.8-alpine3.17`, `lts-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/alpine/Dockerfile) +- [`2.7.8`, `2.7`, `2.7.8-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) +- [`2.7.8-alpine`, `2.7-alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) +- [`2.6.13`, `2.6`, `2.6.13-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) +- [`2.6.13-alpine`, `2.6-alpine`, `2.6.13-alpine3.17`, `2.6-alpine3.17`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) - [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) From 5d6ccdf4dc1a0955ad1c5be1b4a0480c934c1bf0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 May 2023 16:16:10 -0700 Subject: [PATCH 0345/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 76 +++++++++++++++++------------------ 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 23c4131728e8..c56d8e7a2055 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u362-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u362-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u362-b09-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u362-b09-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.18_10-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.6_10-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/centos/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-focal`, `open-19-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-jammy`, `open-19-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-centos7`, `open-19-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/centos/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-focal`, `open-19-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-jammy`, `open-19-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-centos7`, `open-19-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/centos/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/centos/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-focal`, `open-19-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-jammy`, `open-19-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jdk-centos7`, `open-19-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/centos/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-focal`, `open-19-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-jammy`, `open-19-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-19.0.2_7-jre-centos7`, `open-19-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u362-b09-jdk`, `open-8-jdk`: - - [`open-8u362-b09-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u362-b09-jre`, `open-8-jre`: - - [`open-8u362-b09-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.18_10-jdk`, `open-11-jdk`: - - [`open-11.0.18_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.18_10-jre`, `open-11-jre`: - - [`open-11.0.18_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.6_10-jdk`, `open-17-jdk`: - - [`open-17.0.6_10-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.6_10-jre`, `open-17-jre`: - - [`open-17.0.6_10-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u372-b07-jdk`, `open-8-jdk`: + - [`open-8u372-b07-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u372-b07-jre`, `open-8-jre`: + - [`open-8u372-b07-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.19_7-jdk`, `open-11-jdk`: + - [`open-11.0.19_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.19_7-jre`, `open-11-jre`: + - [`open-11.0.19_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.7_7-jdk`, `open-17-jdk`: + - [`open-17.0.7_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.7_7-jre`, `open-17-jre`: + - [`open-17.0.7_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-19.0.2_7-jdk`, `open-19-jdk`: - - [`open-19.0.2_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-19.0.2_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-19.0.2_7-jre`, `open-19-jre`: - - [`open-19.0.2_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/753fc3c307aa76fe24f74990a8371eb97907fc7f/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-19.0.2_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) From 9d9d5f5d52b537554bbb5b5cd6b9056401f6fe00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Jun 2023 11:18:36 -0700 Subject: [PATCH 0346/2686] Run update.sh --- cirros/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cirros/README.md b/cirros/README.md index eb9779b56671..adcf0e602bae 100644 --- a/cirros/README.md +++ b/cirros/README.md @@ -24,7 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.1`, `0.6`, `0`, `latest`](https://github.com/tianon/docker-brew-cirros/blob/84bfc9d0e4cc631d043410d602bf5f8876ed6575/arches/amd64/Dockerfile) +- [`0.6.2`, `0.6`, `0`, `latest`](https://github.com/tianon/docker-brew-cirros/blob/e8833253f108046f977fbcecd7f02170bd20d357/arches/amd64/Dockerfile) +- [`0.6.1`](https://github.com/tianon/docker-brew-cirros/blob/ddf8fe17964242f32980c92879414cf74f8cbbff/arches/amd64/Dockerfile) +- [`0.6.0`](https://github.com/tianon/docker-brew-cirros/blob/9e8006aaa29017ce2ee85e5373772f39f1f10ac9/arches/amd64/Dockerfile) +- [`0.5.3`, `0.5`](https://github.com/tianon/docker-brew-cirros/blob/36e8b0fd2c270f14631d1767f668a4db83890efb/arches/amd64/Dockerfile) # Quick reference (cont.) @@ -32,7 +35,7 @@ WARNING: [https://github.com/tianon/docker-brew-cirros/issues](https://github.com/tianon/docker-brew-cirros/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v5`](https://hub.docker.com/r/arm32v5/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/) + [`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v5`](https://hub.docker.com/r/arm32v5/cirros/), [`arm32v7`](https://hub.docker.com/r/arm32v7/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`i386`](https://hub.docker.com/r/i386/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/) - **Published image artifact details**: [repo-info repo's `repos/cirros/` directory](https://github.com/docker-library/repo-info/blob/master/repos/cirros) ([history](https://github.com/docker-library/repo-info/commits/master/repos/cirros)) From a50cf4c417733252fb4b1e6e6b0f835314dbe530 Mon Sep 17 00:00:00 2001 From: SamirPS Date: Thu, 1 Jun 2023 21:12:24 +0200 Subject: [PATCH 0347/2686] Bionic ESM (#2332) Bionic is in ESM on 31st of May 2023 --- ubuntu/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index d8c2e37c6143..b4f803672e6b 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -32,8 +32,8 @@ ENV LANG en_US.utf8 The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: -- [Bionic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/bionic/ubuntu-oci) - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Kinetic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/kinetic/ubuntu-oci) - [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) +- [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) From 0b2371a9e9cf46f36c35075062551ab9b32a161b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Jun 2023 13:18:00 -0700 Subject: [PATCH 0348/2686] Run update.sh --- cirros/README.md | 5 +---- ubuntu/README.md | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/cirros/README.md b/cirros/README.md index adcf0e602bae..8062a1ecbfc1 100644 --- a/cirros/README.md +++ b/cirros/README.md @@ -25,9 +25,6 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`0.6.2`, `0.6`, `0`, `latest`](https://github.com/tianon/docker-brew-cirros/blob/e8833253f108046f977fbcecd7f02170bd20d357/arches/amd64/Dockerfile) -- [`0.6.1`](https://github.com/tianon/docker-brew-cirros/blob/ddf8fe17964242f32980c92879414cf74f8cbbff/arches/amd64/Dockerfile) -- [`0.6.0`](https://github.com/tianon/docker-brew-cirros/blob/9e8006aaa29017ce2ee85e5373772f39f1f10ac9/arches/amd64/Dockerfile) -- [`0.5.3`, `0.5`](https://github.com/tianon/docker-brew-cirros/blob/36e8b0fd2c270f14631d1767f668a4db83890efb/arches/amd64/Dockerfile) # Quick reference (cont.) @@ -35,7 +32,7 @@ WARNING: [https://github.com/tianon/docker-brew-cirros/issues](https://github.com/tianon/docker-brew-cirros/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v5`](https://hub.docker.com/r/arm32v5/cirros/), [`arm32v7`](https://hub.docker.com/r/arm32v7/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`i386`](https://hub.docker.com/r/i386/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/) + [`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v7`](https://hub.docker.com/r/arm32v7/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/) - **Published image artifact details**: [repo-info repo's `repos/cirros/` directory](https://github.com/docker-library/repo-info/blob/master/repos/cirros) ([history](https://github.com/docker-library/repo-info/commits/master/repos/cirros)) diff --git a/ubuntu/README.md b/ubuntu/README.md index 28530a035079..ee07c23e3833 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -84,11 +84,11 @@ ENV LANG en_US.utf8 The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: -- [Bionic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/bionic/ubuntu-oci) - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Kinetic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/kinetic/ubuntu-oci) - [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) +- [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) # License From 1578cb31264848da38a27f1c6ea58a5d85e0b9f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Jun 2023 16:18:27 -0700 Subject: [PATCH 0349/2686] Run update.sh --- haproxy/README.md | 12 ++++++------ openjdk/README.md | 36 ++++++++++++++++++------------------ ubuntu/README.md | 8 ++++---- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 2f6cf27da9fb..1e6bb847f246 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -25,17 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.9-dev0`, `2.9-dev`, `2.9-dev0-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/f389054a408dd4a1cb6f314fd66a851f565190d3/2.9/Dockerfile) -- [`2.9-dev0-alpine`, `2.9-dev-alpine`, `2.9-dev0-alpine3.17`, `2.9-dev-alpine3.17`](https://github.com/docker-library/haproxy/blob/f389054a408dd4a1cb6f314fd66a851f565190d3/2.9/alpine/Dockerfile) +- [`2.9-dev0-alpine`, `2.9-dev-alpine`, `2.9-dev0-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.9/alpine/Dockerfile) - [`2.8.0`, `2.8`, `lts`, `latest`, `2.8.0-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/Dockerfile) -- [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.17`, `2.8-alpine3.17`, `lts-alpine3.17`, `alpine3.17`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/alpine/Dockerfile) +- [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.8/alpine/Dockerfile) - [`2.7.8`, `2.7`, `2.7.8-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) -- [`2.7.8-alpine`, `2.7-alpine`, `2.7.8-alpine3.17`, `2.7-alpine3.17`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/alpine/Dockerfile) +- [`2.7.8-alpine`, `2.7-alpine`, `2.7.8-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `2.6.13-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) -- [`2.6.13-alpine`, `2.6-alpine`, `2.6.13-alpine3.17`, `2.6-alpine3.17`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/alpine/Dockerfile) +- [`2.6.13-alpine`, `2.6-alpine`, `2.6.13-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.6/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) -- [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.17`, `2.4-alpine3.17`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/alpine/Dockerfile) +- [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) -- [`2.2.29-alpine`, `2.2-alpine`, `2.2.29-alpine3.17`, `2.2-alpine3.17`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/alpine/Dockerfile) +- [`2.2.29-alpine`, `2.2-alpine`, `2.2.29-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.2/alpine/Dockerfile) - [`2.0.31`, `2.0`, `2.0.31-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/Dockerfile) - [`2.0.31-alpine`, `2.0-alpine`, `2.0.31-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/alpine/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index af196c39dc69..32cc8398b112 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-24-jdk-oraclelinux8`, `21-ea-24-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-24-jdk-oracle`, `21-ea-24-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-24-jdk-oraclelinux7`, `21-ea-24-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-24-jdk-bullseye`, `21-ea-24-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/bullseye/Dockerfile) -- [`21-ea-24-jdk-slim-bullseye`, `21-ea-24-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-24-jdk-slim`, `21-ea-24-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-24-jdk-buster`, `21-ea-24-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/buster/Dockerfile) -- [`21-ea-24-jdk-slim-buster`, `21-ea-24-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/slim-buster/Dockerfile) -- [`21-ea-24-jdk-windowsservercore-ltsc2022`, `21-ea-24-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-24-jdk-windowsservercore-1809`, `21-ea-24-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-24-jdk-nanoserver-1809`, `21-ea-24-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-25-jdk-oraclelinux8`, `21-ea-25-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-25-jdk-oracle`, `21-ea-25-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-25-jdk-oraclelinux7`, `21-ea-25-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-25-jdk-bullseye`, `21-ea-25-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/bullseye/Dockerfile) +- [`21-ea-25-jdk-slim-bullseye`, `21-ea-25-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-25-jdk-slim`, `21-ea-25-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-25-jdk-buster`, `21-ea-25-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/buster/Dockerfile) +- [`21-ea-25-jdk-slim-buster`, `21-ea-25-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/slim-buster/Dockerfile) +- [`21-ea-25-jdk-windowsservercore-ltsc2022`, `21-ea-25-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-25-jdk-windowsservercore-1809`, `21-ea-25-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-25-jdk-nanoserver-1809`, `21-ea-25-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-24-jdk`, `21-ea-24`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-24-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-24-jdk-windowsservercore`, `21-ea-24-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-24-jdk-nanoserver`, `21-ea-24-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bee58614ea5bf64bac3bf36f3fc1126895d2e2c/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-25-jdk`, `21-ea-25`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-25-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-25-jdk-windowsservercore`, `21-ea-25-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-25-jdk-nanoserver`, `21-ea-25-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index ee07c23e3833..a6e2d66c2b80 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230412`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230412-46786f36&id=46786f36bc92dd9662f9a1e7530b4859f6cd4625) +- [`18.04`, `bionic-20230530`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230530-638510be&id=638510bec0540d097260e44d99cab6827f32e23c) - [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412-26258b91&id=26258b9129f269190048fdf2b46d82de5ae5f79c) -- [`22.04`, `jammy-20230425`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230425-997c5b6f&id=997c5b6fc12a87708c63485cb5599d85973ca211) +- [`22.04`, `jammy-20230522`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230522-bbd50755&id=bbd50755c7a57a1e30edd0e2a2dcf66aa09cf63c) - [`22.10`, `kinetic-20230412`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412-acd9976c&id=acd9976cf1d024747ad42960daa92bc3065e3a38) -- [`23.04`, `lunar-20230420`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230420-a3feaf47&id=a3feaf47f3c57e4aec70c8d07ecd8dde43e0be21) -- [`23.10`, `mantic-20230511.1`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230511.1-82ff77c8&id=82ff77c875ff4cf8f6b008afec7747175459e253) +- [`23.04`, `lunar-20230522`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230522-fd45d9ed&id=fd45d9ed74e848cf70aa35fedea865f9d839bf57) +- [`23.10`, `mantic-20230520`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230520-e49d32a8&id=e49d32a824c5b21b177d221475d0f6f1bbeae5b2) # Quick reference (cont.) From 2ac3caaf21dfba9734f20518971983edc617c77c Mon Sep 17 00:00:00 2001 From: Valentin Viennot Date: Fri, 2 Jun 2023 15:30:05 +0200 Subject: [PATCH 0350/2686] Update Ubuntu logo as per Canonical new branding https://design.ubuntu.com/brand Signed-off-by: Valentin Viennot --- ubuntu/logo.png | Bin 15344 -> 17528 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/ubuntu/logo.png b/ubuntu/logo.png index d92660b2839a021b25f6c80e12e28ed6002f8826..591ecae4f8e83c3df13f9898eb69f40c327a762c 100644 GIT binary patch literal 17528 zcmbrlb95%%wl|t|oIJ7p#7W1tZ5tiiwr$&X$LiSW*tU(1I=p%J-rqUrp8NfGtH!E1 zYu0bBiB&b$sG6%H6y(I=VR2wVKtSLnB}A0I=;%KU8uIH{qfwjtML?aD#Dzd=r|?d{ zPEt)YBu!;yLB4#??C?H_}K)!YmP#h45fAJt7QlPm1#Vdg_f_(duBY!omFbfdy z|6r`Y=s%mpSNqcbHx)FtGc*B8+8CIbD47@-dwj{k@?JgvKtSM7|7oBgnb}w%Am3;$R5YA5WM#OF>}==^{xL%5Ze#zC76^|!*B5JJ z;%oqPx3RW$;&SID{uhGli~mPVPYnDQ#Mz3MSVL9;C~W6w0%W6OpkpBBg9QSCJdVbu zTuLHh|55)s<0UqCcDCoDr+0I6qjO`XvvV|~XXNDMq-S8FXJVrLLeM&S*g6}y)7mMK5acLRHR zMmh%i|C^Gth3S90_y5xR=gPm;{uR}~jq!Y?hD+Gd#K76kQN_;An(u!P5D)$TM*O#@ zJpXjbrKx1%WM}R2Pegp|Og!}eAL0L2kax5&`AW{e6d3=5|DUq|jo0|U8Tg;V|0wX# z|C7-Fk>G!i-oK<@!^a2v70ds*75HHF&*fJ^KmpWIJ5h8&aWS{YIr$#D`S$$r z%HIBqPt=cM2pkj$4?qGVf)oM-V?i?_{r?u+AcM_~bPQBlL4!#_Qz<=pIV$?h;o zNl|W$elB6g=ElVf#^%=NE-0s5B|CL3_3jfG_T1TDa{)%ynPjcXyXw? z9Rs^Q*G%J&c+X7prw@cuA~I%XmkPa9QBx*IMR#v9qeN~=FE^U-O`}!GsJ|gJ|CAcpp{2!+;Dc}ten<)hp3oYSgw=DIy+>5yVXHKqCt?zB zf{KOcrULG?_iZ0S81u?zlHpC(C?^|7SEjb_b3pR}ywtq1R1?A$IU%K*r*eD+@U-@?S$~oookaV#AH8D$Vjd$S3cSyl9~S zVXUI4nV)^p?%{LSxzBt(QBRTRxY>@%rz-S>BP~Wl+rY^M8I3zXiQrcc|6y69IMF;O7!y)BL_Mb=n-)`s0ZQ2%5 zdO|)+EiOl;fo;}KD#M`-d)hXe!hR1sTFBgPWupXt4-Tl0+ReDLQpNDweJpZ#J_R66 zT?leJqg?N(^*)At$H^Ql@UhfCvziyqV>g*Pw|fsvgj1@ijpM&r&xe=DDsm|Ex7MDD z)`u@vBzJs^>#imvFDmAk7>!5JBEFHwn3@R1z7P59?azs)&=7J4g(2BY4oXZd*31;l zF*EBZBv$z;Co%-5FJlG*hToEcW0uaUf0Z6x);QHjY^b~7dpwf_+46U%Xzf}B)?xAL zxcc(i|0R(o9wR&89FHLcOd-5}_=^6c%2rt~#mJX@U_ zYPr(-qcKcW+5CAX@sjS$!>LsM3)V{D$ANy6IHKv| zp^f(ZHoFfrO)s53oLpdh8^G!2*U!dNQ-%>b_Y%6IS@@&6*(b`}s?x!98BC2=eGQm! zb8fqtmfq#2iN06Kw&K4wROel9wIzWjPfw_N^I`b|-T7D|%#hGgiAAlAe;0jdBSy3g zm%3{4x;5b`F!w3Be5K_4p^&e9kFFvxMN0%{#7=ZdS+QpvoJK#e;EA}{1DQBY=To;r^F!B)K5l1pVhvt zvi5J|WA|w-*+O6BYY4UN2LluZbcrObLNlcYF#gk~Qrs1zAzqhtFE{LAfZZ8l?cn zQ9PgXtWP?+Lofzcb!AJC{Q#A+($jFmdwQ%_^%p()+}$#dSfT^Z&X-17vtBBZBcQ?J z9F`PA81cpXKJCU3Wyc1e?D95H2d;Qc5n$N%DMTzL8J1%<@(KTnug4xw)OT{SsKMw0 zeu`akVC2+S^yI%!q=A2Iu%FbM8R5z?@u25_rTpy($XFySloPhy!{P&r6rChcAqhEa zg{vRy^L1NQT|Dao%&i5UhcU|DMaP%*`-OF@3}osMm-JqQJ#R>|fer-idOx**y9zuaI|SF$j}dmFwN) zgGikPgVWe8$Mke#S+DTRJN7*<0fzO^()O##1bTWkZ2_8IT z1iYl^#gYHMzG`Hkt#%cU6V9>}_Yn0l5hch>E+^B&GYN$=x0Sn1F;p0uI#?9Wj5XccVxOV|ilL<2o~J|<)Qi@759 zTQjpotQl*ATv^~aN>NBaNhJRW#yy2#WN96Wf&YX35#ob5v)OmV2PxR+g^B6?P_uT4 zwFX=`TI9}YfCdrrEj8E|Kv%K!j2@FCz${^43J5N-vxtd6U=YX9Fe#TPNs!KLnyp;a zACurI%pm5@Mn#l31&WZ~6}=h;#id&ln}RFVmC{SWQd4aR;Rac%M3OJ=22RPmyx!!D z^{CM_sL%(kVG7Mksnv0#Xh1qFekb8g z>#=fJ@c6RR=n2Fo4bfc2Dh{t$(;3A>Cxs0OnCP2F3)oG{mj!wbL* zLNX8lKamUXjvaKG;s%jQRMi9?fhpq6pZ^^)tdV@TH(o8k5r`Nk{YjOw(ff&A{r)+Q$o_g0ofr= zips@by$s<7vB%t*To|I&+BMe4*@P$Jg&DeOz-1;G}2 zQK1KwTz2&khSeCogQ*YfF=qdO9Vgg{O2c2UL1o)d{1%1cahl21Ym~`r3^6Wf*pr*zI%5QE3d-n52Zwco zopa(e)E+T5bz2c%o&ba=3X3I%sv!C!oT!PCdK-x=5Wn_~%X!#t4#Jir2T2X0$9JPU zusJjMCT?e#vC@Njtm@MzqF$HS{mdc0DoP4zqMU>cUq^9@J=VZgi?Q?RtC zjx_mmD-eSG8Jm_XNp8u2SNQ3gGA%4`y6o_^+|{(+#`ij*|y$vvVJ5%jfUmc?LHRT~gv>_-=Nnr~(CbM;ga$DZe_(3mtjS>xj=!mz;LSdQzV+!$>cZ*@^FjYBbi zT;9}Y1!!T(fL_~!Zg+4f$LWw`wk_w)5Us4C=y99TZ|(7RLL8EnNVTV1jLXqxQQ|5r zg9m=Z!J&W>3fcHRbMiD^kHyFO<0ckK)!5sw1c`tr41uypP`w?=Y$s~Y5umQ3?(}e= zf_d>><;A^kQ4o;^zjk@d#AKk4Q7Riu6Z7PDKmIh--|7Y<&auJ^v7x!&&csswnjg%6 zi0@7N=U)p5jfDL%!$2|fwE*B@;@S+&s6qZ&XB}@T{?wI@MI&#+9^Qx!D}a+T@A8S* z78-CT8qNX;F*Ct&ld~lwZx1G{EPs!t=FLCS?dd5)$=JTMAm7c6iwNC#U!5mP7+qOT z=Aghq=U5i*_Ei+g5lo{srD%XcTq^FS<#ckex4*yXipNWvejl8JjV;`l(h+SqouC|8qZuT`dI zp9_*4Nr?HR9j%h#h*=m=_-0wsUr!ek?@l!ItOT4URp7C@U(29_Jy^=xd$ zyiUaaSI^pbW*0NIW1WQ-n*)jxKx~Cwfp1d0?HS69vpdE}{loj}eRKXrYd_VUAqrat zghiypEvb}ufc70fi*6gBZ~TR;yU-ia%gh{?$z!N!r|u_RRHS-pcC4ay+rMfL4W+r%g;;&a!e2z~+qG35HQS_P3I)TXI$jXhB*&XHXLp2&t=F=FF! zqRz!Q75!;{M?X}jZ1LDtwl@xU$e%}WFkKqjMK}1dn^)r^x`lMNJ#~cB1bvTS47v5( z6Gb80*2;+nF|@_!n^nSno1f{8})z%837dqA~`ARF3IaKh@$pm!%(AlN?tGgnm z)AY`(R8D6rxq*1^(cKGixbRNyW8Z1tAF>2RC6A{giAi)C2Albgd;7r zA5kWIB(CQ_5d8geu&bD_I-L1$FnC6r`XHiFypfd)Zt>jL(@-X8L!HXG^6jZEcM`yOp|g+4UBvcJV?)+sd%1V+Hzaw{L8) z4Eot#tv7V9fVi}@TDf#Ubx&p~-kzUD zr|RL_og=X;>&BMBt4~d6x7x`lxpnSQpgsZ=!iza4t!azeeskPM#sc5&RZ<4hj_LE|DKQS^^e>xY>0NxU4Uk(#~(Ee+^bc6CIsKIs<<|7=ihI+8(q zU5eRO^$6IXxxLRZNOY26ejCulLyMa^EA4@Bdc(*KVHYB%v|bwvWWG`U8Lkw<3{aBc zHvXz%tfd?3AUH4K6>?8Y3=aC;*UE2n9Y-$hQ`SR+9Mq03Y57Prk|D2%(%JLhj z9d?;Vf=z3p9ZJ1R(w8Ha7(>pklkaA%{i=7+{Q4r)CB3&~2ISn+xgZL@vNT@}j_S|| zGsQ6FAu0k2+_ENwziVv294*h=hy4!0>Wr84&WD?>9OMw}!!Z2IDV$Y*bj!h`fH&XJ zm4x*KU5pIHU$LypU{H3K#F+J`I(ZNn?P3^gZf7>GskY=8A(bY*}+A zz-cbWNY>OOYhE5KN0}nga*pDiXVLYF?dFlRRl_%SNTQx$8p(uW$c&oH6DZcP&?$51 zA4i#Ey&*G=sfa+FT^sunH(I|USexSxr8_V!?yDhWSA)EXwcoBeo@HEa7Gedz@R32a zjMqZEZij{BVv*1*I(WDI_URB$uK|lEUlDwkyU2d+G)?T6)!<{rQ{(0bD0p6gz|*d? zbwG)9;S-TpkHS#}`ka?5R;b5|HLqRPV=z+$nXBX9zkj&EQ`e8WAwGhMFvsd$-x$N2 z_)>;l25bf^Tsy{-ULOT;1B~*Mv&?*Uty22^i>`pOMdox=jhYb$cq*%MXI3_xF)pXg zX-w3#-acxOg8a^JfFJhNC#Lqka7!!=&yATA20IjiB>E^Jq=>Byekdh)W+;CIp7HSj zq`F3%mDwwtA z0w?E0ARSAQ`4hPBu}SW2J(#&YLiXzj^g+N%Vjfy*KaiuR5s@_oJCnzOIIZPz@aB-G zv+A9%=?Q}6TBkf}HyXR6yNHgZVrhYcc#v?&;j1!MIqm_~gs)IOj2TZ|Sy27g`33@8 z5Qxd@%3VX|@G^XL%2*;<^9}m)@OnnHP_1C|TFdJ}c<0gAL z#_Z(Afolx%jIBz4$dE#QmTIH_gwSm@(<8qq9rFp+-QZ}?+x-FB3(};>QJ9P+r>yxCAYYFAVweey9r=;)>7O7O3~YpJbqXzwcQ<%0F8kHTG5%P z$#k-~r~ka9uW{SSQ1_>{)3`ObBTuj*{qML5Qh$N7E^*V#S2E zT zY7exPzw&B3q5vjsK~Vi=ArAcS9rck#y@FZnp|ZEYX&U*niZiZvX|af{4WA z%^d`KE{PuMu! zJcItf)?#Q&;uQUpsre*|u$;=|B1Ow-r-1|>4djdxb346CWeJUnJpP+1S{Zgb+Lnt7 zm8=J-my`W&CR&KvR1jcw_Jn102Z{j{aJIhEHTphB47rZyU;dXe854RG{MB{Z?oFtQ zt95_5J4($A`ZNbw*?d1*kr?PXcuU9qE6Ettp+j zSM&d=Jmgp;nuRemhyriT#wNxYbsQsvTnfbWVBPN@{tkl40%I6nX!%E*#0AT7skeGkKk-f zK9ZS7{p@fIu-6?E6%IbLp-8t;(!YQCN7Jqf&gu^&7<fb|O9 zE&jaMGe&REm?@}@wWwf|Ra(iuZ+AuL@u0oL4Q~czP&zoo#UnTXZB+>O7gQNpKT1}C z$Q-f67+3e2>fS3eFCR9Wx?R$5k3r$jdl{Qo7v1)#?6`&i{0UdZqW&3raEJ=M2@{Wg z1QZ2`IvG=>gSEph8IdcY!db{g}A>Ad?eC(HgPFl&mjxH@n|FtJP3O35lQ z6QNN_hMyeeifV_8q3x1@ele^%_lwlscXOk%slc>tOKtM!6c62jxFBGHju0icBfs|L z-Ds9#1_547%_yarzMSPDhAxyG1bu66{}Tmcc=v2k38d&4Tei2B_8!=G+6){;5X5FX z+-LOH#@Up}kQ@X*bxg1(%zNWfWtIw08METX2KT{o&hm&1Hy&znCJCmWrlL6;rrEO& zNCZUmY)f8{H+bl`?sUJ`-aLp4-Wj1fD!pC>-V-4O>Q><4zvE&#Vj-B%#bR#2wQ4`L=an4GI~_-!=L{HB5WV&87Pgc?ipSmj?Ox^FLXqS zbpm{6!Tr-f+>j`KRglc9R!#P^lG8`;(M1c=08CPyH$rO`5y4c@UEzm)`$eofjJKdJ zCj(>2$VmILX2@I-2y5SK1`AO0E<_@9N{LN(c9bGWgxHau`eHW>%0vvZz_Y&*MAAOL z^NA$@M9~^??Y;w+pb$maav|rd2x*0?U{$NB34WvAxuWLF55>OQGQa z8$2;Nj+T3=9oo&8?r=5efyc;DQD)mjC7XIrp|KQd9Mv!P+qA@!qY_f3BC6WHpk+4rZf<59*qw5AeTP2|Qao3J>~&$=eFGq>L~Cuo*v)CY_9JrTm*XDJ^~yRm z`?Hb+%Pk$$^qg9;(imS+CYHS7p_Nc3Yg}XSbZhA3jplkN%c5)C3QhEQD*3EMwx#7;m50cj~hH6bY_o1-q%cK_tmS8 zZ!55VXPTja2fn1n}o+wy% zjq?0Sd|fqOHw80C=>aO=ys=wA)w36w&rv8qCzyGqY@`t}utcIo4A0m*UI{$vG}Olc z{b@2SLZZKntzKSjY)+LCj0eN??H@=sNFZ4y=s)9o1CXXZl4%+l0oS*AHdxUUkR&{z zQ_|&5+9ds)V1U1^O{^2Q_U?Q%&B36{Y`yt<04{^{Uzm?!`?bUTa<~~MH%x=(dVsD(j}Nu zeW5II=fWNlOc$5&Ome`6Pc#}#4v?8hd}% zUnEHM7Oc)Fe=$vxlKSFhQ(Z54_4Y*n?%7zLb$rwx?nbkAX1u!7M;+V@H^=83X^OQw znmv5f8}x=ZwRspcmwO{j#Q9`Mjd`G%TrR`>Y#YH!jEY82#TgWUU4vzf`zlJ>)N#}G zE6!Yq^34=Sf8^7hdPZK;7iD7qpe{DH0 zOieJrCJo_R4{4wUPm*`m?Pq(y zxVbxxGx+riy%k$Z$Szi+E)=K`nmhyq>ft7!@u*%9mG2(6nG?y%%S;^>R?>i&S?Dlk zgFM;PD+^PL!e++~I&Yk&(0C)G1fIBgfqDKd^URW z*ps7Y4?!m#yl95XHwEYCkwLJoT;H7mb(fIfjUbluX*}`c6i91N zJ^Fy{scq4QVB2W|P}g@!2;P4TvB51`ZKjRAaZ7>UDALJXiqov7LsR!jVx5SVwz%u+ zo-2pb1vU!NUYXCxCDN`91jB{25eE-2`g>Lf2Qnd2n7XHq0Ec6rOYJcJqS_HQ zZ9wo-7qnG2J!CnKQ*;ILcY0 z2yG*B49idCE|E&3txiN<6nvSI-S%R8#y;$A_(YEx_)>9G^nztC{~dQy>xZTi1#0~B z{!G;w&o`NCg27pv*0Y!Vekir34Ud z$lnKiYIcFUPFlO&J|Ds|Jz%BzxxaeD zodsg0XSe6Ju7Nm5LI@RIV6HIpXTRqi#mWW*w*d*@jH_DR9ocKBIgWC#?Xj{nR8|Nu z?{gUCV9O;>d|#5T+4c1MXfgj|WCnUkft66E0sG$nFeAV|`CHuNX7oVIe7*PhjT+NI zdqJhkpax10uXFMZLO2X`ZqhTStLI#SZQRB4P$zS<0rSUK^++!u$L>krFtsb0n(@XEgYj~H(G2vo zi==)uO6~#&iz&#EfFrZ#6vu1>_x4A4*oVsq3#VF(tS0OMJ#I2Bx~Oxi;^ObKMojqo zpJymWA=mLpqA1ac-({tkn-LqMdA1YWvHjZ!_t8g$cD*x#&E%Q9_RI&zYG(hY^^KPF ztE~Jq^p#ir5&7kgnGA~ct_WYw)T;XKkoR509O;nEWddipWpk9y6&p{JgI2RaX)ET5 zi=5Qc172*tZ%drdw zqoX$}gy=4}gWer^lQ<6W2&Q`a5qOat)S$10Q)7&}r+JsB)*YnBqpyMo$Sk5R>6Q+& z5H}2*9)PVnZMeiFdBcxFYU*9VA7s$G3`)g6N$O$v)?x@Q!6+|?k;U_#*VV0M{T3&* zLJ;xbdz!VtfAw3_o?M$t8m{hg-M=%DzFHj`NNi-Mg1Yn*MnbhqSq4+Ki4(lVgFoP8a1-v)b4gZY$ zYY9dOdB40g??xLj^ljQoqz{uS+T6d7KUPG549xu21MR?%{{cUrZWm=~4b}#!UBPI7 z#((26?`Z9Jq@Ohw*K_=R7$4E)RgC7YM1jyJp}u{~>Dnv<4Sa6@&uEaVuz_Ecx8GKr zY*?{}I@^2{WP-rdWu0g(fe@W8K&gH-qhhW9ob3q$c<+I@q%6n(!5;=$9+b7(bki4d zpOqwo2(VwneqE;5Oi5~|H;B>ag+gy+!4D#J#u++{W^No`!K0V3?AYA(K+D6OD&`-x z&Klwpho@UfyQrQ87EoLv=SujCiC(5vm|H<9@j_Dx^W;D3h{UDpCqh#g-!X}JCk1D8_N;BvN*z-aa zxy{QIoIiPJNcq03$`N#RF5yj}^mlWk1giE1tW4QUnqbVZ%8Ca{(Gc$8sD*Z5dkK)0 z=>=~hw5XN$3@4G`cO=AcmNljsoXod^b{Jl^K0Hrhq`kl~(v-Nbi3}qI__>+k#?B=- zKLXXT$9d8+G(q6qoGiqfB69~hQTbywJXnK0T1iS&(5EGyv##fL%4qLy)A?()Do2$k z@2*T3q+F##_D~<2D6ypvoXm>>Zxz^b+lU`CMkvH732RHK9hB1>76SMSgz24_fi!JH zKg=!YBwoCVdn!PyUWpOXV1!asZL8S~EgOT z73|Jm-F|(J%L=TY!yOI6Y$q~?tOB)8p~kT{`;pP*ZoiJ2PiiIKR*XT%bZbn|BsMVON^^MBrq)9sC%f5@&{hqtf{U7%>$k##v)DVPa%7>ruQOM_W-}|@ z7Jnb9xkMExAF$p~l~@_DzP3E;joZnkenGfAf&5eBRh&)4ou=1-edJK~{XFX@8L|^G z&)w{RdXo>dg+Lrhbf#=w4y6n1sekSm%8iBb9D(BY4u zaAxQBeI{~bdAP+&XwryH6x8bx>sL`J2Ht_bUxyab=#|kT;{9jmGM!cyI&bK)zN3Yw zmP}!%oDtfFG!A_E9nEe&^AOq4r|m3=GOw4R5FSYkp5hUFZx&Ilu?nZ-aX6N;lyO%rs7M{Q*ymHUnGLk$6)dynf?6XG93{Skk;* zjvmik{a)hi3$vaclBbHzzxk3tII2iStfAw*)`Ba)SjnQ=uSwn$;p;-)LQ;F>C;`ZN z53I@@IeW*;93I~=U77a&8E3t`OpTrfyohmy7h2rgWe08$3N9DNA4Z?J5E+i)>6m*O z*_r+Ei5A@hj4bN@#QjsmrvRZo(yWb2z2CYtU@ls~Rp|FTd&F~2>SXMHyic5vAb-wv zR40x_J$#H;U>ic6AzGzY6n^4b>=e@-pZ2V3fY9;-9nxT+R733w2g`5(%S{TY=WU&3 zgE^wSZKj?n&R+Eg;UWYp5JHT#4*Yg~bGb%ex(j~Ljc$pPBVnSpTjeK-!%oI4>qm#5 z@E>XOI0dN*a5jMw4(R%?x|9CCy+kieJ6P04kd4s5m^EN6s8L*{#Hg^lzJwbnaq?_)?MBXq(@A4QTq|A>U# zMqo`7o;SbzObiiTh&Y|b&9+}s0sXW!+Qaal!a#Ca9dwgzfxSsuhjR@q%VYvoeCF77 zypUSW5dD$mho4q_>R#2R3B*S%lpJ2y=iDdvCPt_1r!Txb;ARN!W?i~2##s=9k5>gx zSJUCIKtl`MXM;F%5q*TE4=(^Qvyl$|G`a5p2tQNRqa#r=D5B-2yV`{64moz(q`*U4 zEEQWpnYvGB^ReYdlajdWIabd zDx_YS*A?C_*p)YJlNU|xkbc-EW6kIh__{I0k~!VJj4LC&$3_|BnBYBnV*hVlM8wn? zI#AT*Xit+4kWkmQ)8CP!((betwi7os6eS>%2wC>T7{`SvL18fQyr#~2oT}T%5jZen_&mY!9D})o!N|-791-~PX zts(_M=$D1l^*#N_$>sDGQ}_g6WQOxXi*v^ zV-~A(7kv%Rc%w6qjJU4R5{*;eBk|!l&RP#|RteA&h$tk3OAi%Mcm(49j6F?hH9%|z>shkq_HH~@bf6LdA>%@Uk+zYbi*(2Bqi!QzpTps zTjycMszNW-gxg2SKkT?t8jb!MAcOCY5y#168ykY+FWKgG!wmxi)~^pOdOA^4of1t$ z^)4!;`0#D?0oh_HJ)CCbTDLjfg}fZlUm+GCD3U8VcP$n=9Q0M!gc8h7CQbIn^Or)O zq-03V0em}~u?L(jm)Ilz;7Xp13DopGlXw6#(dNGBDA2w6jXy=bm;{yZj>Ox4CWK~H zZ{gI7MVoS#FMla8SqLS^*654sb*QY}t%9ooX<$deJa!XSM|F(!gb!@WOtNIXcf6V= zcluuW1N<9~0$B8mbYW_zF}RZtU6y-CtMb)gS02&w0{uSnIeX9Rzz%`?U<2JmGBj&h z6xicmOi@s+EV3DZP_i5Y%mT)0$_Lg$%{y?Ep3o7gFJ<~sFNV*)C&Cs}j3*-`gFoGr zBQj)UAL|-ovD^tyl3Uzqio-hX*i$`XyNLPqW)HuC+s93hY05wwxXGJQmkP%T#sP~x zI4!s!Ba{`qMGM|wpgct|(U+BQMiGewn3@0}R;cani1*^LTx6tdjd4jt55Ir??Gex5 zqMy0g*34BuisD1Ew$+_=hEY3d>rKsCD(kGK6BH6&kRAigDs_`|MP8wG1`Aa|4x16I zM`GL3-wxDfXwQW^I@#AlaqgW48Bw|&FwRwE05o`=v1CQsYQ5p|mpeI{4})^a zIsy8p9ENhv5vZ?mdqs`7{#saslN zHhe9H7kHnk=ri6Zh2+J?D+60eHqI<9zn*6nuQK^i@JJet4cCT4%qFcVg(Co3wEC9y-7M5RCd@L?|lf>1YuJsRB%8?!w>bY&(3OVznxu^Jg-o?5O7WLwDO@#}}=>+Yr~=_<)Q`9nOqe{b_( zN10`k3b0Y2q~e-MmC80{bQb(4xU%Z5y&Y{~5ZqQ=BZW}3;n8!v zK?Cw!$;+;0?J0s7Axrk^j<5%v(}%hDTLokqy1bqVN#;0X=88GL8$tgvQFP?qhp=R;|V&&9LE8<-l2=ZTRH}iIBm)x-}<6VQ_Jq8*e z8LC4e8LFJX@~%)T@T+bV+w~53;*d~2#n$? z0Cn3Bpk?cW37}?ew1^xjF+h!ZE4@;m-bi$`{0zE#3N%CtQn`c;Wsx*E(rWQIX%W?I zH`Ui+%xJcs&$-k8ZOH)pB*9?x_jWQW(;a~aF*eHspwkR~OZ!7;*weFX^uU9t_y@uP z6p9=ixvl$NLII0hp{PTN0k9wktULqCEEY4!Hw%&nOQZ~APi^b5=F|;{y^4KWeKHK9 z)g(UyRY`+xf>ti+%DaFVOyPnO*0@S^|1ksFcb`=!+8soS>RnQJ)6k~`3v9~RKrjH$ zn?q?3>ryYB#@RoL3we>nPcOh{Ia(DziW3b!72oB1N9`bHT)$=jH?X`DG}O6)tip6;yufVefkaG22pYs+-_5sI5;0J`W%kcR;CA5pa=(6$&yK< zXD08mu01s=86{-XwYO`}Wv8}6_0S+XIfkC7CFtt$&GKe2V3gjleHKCji-uYd}fXvQMfG6u+M6PeQLGM^rl&^Zx(aBKxowR@jZPX8_6;FoQj7&&ZR9e zq;bD90t9?;;fGQ|L ze2E_wppt)WM^vkO^d^GQ!IrK=l@vJbWC+-fR&#~+PP+S!;6j|)^d~V=dq=kt=n4&b6i#=h_LyZViof z3p&vA9wGebP4lmY5;XRA@7*u@S=|UFrpaL5Ax2);qVOfIwGmunP{3>$Z-t2Zn9S7e z?Doj=Kc#ya(t1nzp&q5EU6Iaaba2YkH~)GCT7>IY;yp8ct~dp`L0xODEZ+?_^xapi zCHQ-_aaI{;a`>P89>lqr>46gQ#Ovo8B~7L*wQbp#76kKbccOA^CQf`Av8lheB8p*7 zw#S_A+vx^5Fe>RLnHOK7R$`6#1*KO?szq&#!N%9bSZ~a7o=v54&>4Q19YrBG@`qwU z+YxzzQTDW$lrHU@B$Mfn>Le$*27DJ-;zv2iyy{^udJvfA-3K!F1_H~>gBQ5Xahl=|Pl56&ubL&pI!vEp4>%;4`(`S!X#rOYAmr zu72!0ZK>3Q&szl^-sV%7mv!6fi|w`UM#cMQB46Cy#p!RDm5}d#nsZt~9^2!+hK$yk z5{tUiCPjN{eiOX?%zjmukm4^vHhCren;K$?`%Y|r_f@hbV5Njxkj@%C8Pl(#Mjgiw zyEa|ryyR2nk~iP=P-jx-3Xx|TEPDfHeJR^Er&W30KepVw1Ba5Drkqpov=EbM^P9f) z+R+=+RyKdwS^qhzMN8@YrsZ7~2G4D})${FBZpT~Z-F_jrFZjm1mC1^A{t6k2WqKa9 zN+0jG@Z`_C20Wy~40IMiz4Y&Zr`-hGLI}EBpQb&OUSVva(LH#`ks6cl4C6 zJrxKDZ&-4kdGGoKDhslXH>$hOSmY}9PtDok(}#2KKfYJ@Sa)S^FW>(O?6*He8Xa?* zF7;-)red>%kIsVp$q~CRtUSQ#mYMG7wx~P!fb8mt1=%~dq%hB6`@?U4RbU3=%PB{M zPb7Ysy_8vbH~0PPJri40<|LKtDr{+uwY+7(uv?{m9cS3f=a8 Vv)h5L%b>$HJYD@<);T3K0RZf(!_@!) literal 15344 zcmW+-V|X0x8s0Rv)o5cjMq^uzlg4Rm+g4-SW@9If-PmZ**!G$4{MeoATFlP8c%EAu z@l8Pz8R0Vm2n0fwmJ(A2jwAm);9!8~YR#G)-~ewgrR4+yA!7XZfSBFzeFcFK6fHzW zzkM^ebGCCbx3dRJi;9Bn9qmjltW7{5_tk6_GgXx%9R7#RTM^lC|0G#EWo$UGvPhIa zRy-9QDLk4?IBEV0wo)IuxHuHSNM1N(OpJdtwh{wUB*HT69%(^LP+@rF*vnt9LaW8j zhkujrO-lj?RX5oU)3Cj8NGVcmN*w-3_KR74aTHSZ{!f5 zM_)cZda_>FZV-g~93mX3S3a|snK0}F^;jfb2f{xXqSrb8t1O&97D&i5Mx+EJBmv={ zokpbs%7X$KjQ=p&1%3MhGNAVRHwW_1eoXg*0BI+YVngJ`gTR<3;bI_jUQpGvdZai= zlNp3%Dm%apTK)oJmew$p0@byEdZ*A3e}UkTK+HGgcyH&q~o&&u%m9@On^Xn z@z}uK-n_X_q0~%GamF;G=zlrxf%zaaGTMFLpRTkQ0)hTI`_8;GFg1Mk=Y{dNc`u+m zhceeg%yW5&GW~@r)C9^qTGhC*|8H!>^W)l9R`&PymSqM+v<=5JeBRA|>-TEBSwH#m zy*}J+ckfUHu<8a#LOpK(p174OCY(-y4>nr=7c2SNg81=DG)FcdZPcbohqbGO;SeL1 z5q-m2Oco)MKs!h|`(eDZ#qa_tu*CtYvlM{vivLok`vdY`mKsgdxp(IQ1iJ39>zk*6 zgY-8K`aA9RaUu97nMVooHT}88U%;oKp?Ta0J=J1g4;ekhF%!LKIrv6 z#8(5(U=fOe-y&!t2*&<|js~<AN8m6GNms)mj3PD3W8iSpLmo-{q@XaOD8QrPSW0BF@f=bt%8{yIH7TNN ze#cMTVLB4+@w_7-*1*@$PDz%efL}`d^GHpiZDm}agCzQ#^(5qCeP>)oI* z0>pdaIicJ{z=p)aQkrs_3d>SuU_uIZ^i_B+c*tO--_&G@WwMP_?dVSfct)%&VVY75 z5$0!jYCOt}aNP`)rPD{$Npi=-iIJkxZB<&y_HQi24ldhT08#{gsAz3Dw zDw%+eNwvJ9q++uIQSC-;Ts5{_PsOK3LXAyjw;X;xrBbaT``d{Mfr?o(kK?%ED8;gmKRYgi_ie{x$ zrBbEjNf&3$S!s4jmw1QPO8|=Sune^hwWL|>6m<51%8JTHDMBfZJU`D}4P%8>F+qNZ zm|Kr+>3LdCx1N8FoL%XrN7unKp%2rW>YL4T>768!CQJho18N^5+@K@@*xw zCA@OHa>J7olLeED=^UB-EK95hnFpCmnOiLe-`&46G?z8Enn?fJ`(C1T-rQ*$@||0& zSX1r0Zi7U1b~WW=q@3J!+GJl_yt<|1$ zo?D!Ut>;d#=hEhAu{r(e9}(SF+Mf|b%uQyt+N$zZ6jcl`YdRoj`oR>hQN2{xQtVdo zV0eKma4+DPyDPBE$F<42sii-`)!Q=CGOpNfm!luDCF)21Vf^9wF#{^~r-U$rj0g}8 z(EjxD=;=+`6C=p8W^(^)bSaERSB4W!d5!5t8H3>Qo9MS08Pg2sO!%^>4jr+=wG^GaXToWG zCx-{cAX_oRep@hgd0eL)vfM@{PYzCoE7*pWpQno@C?P)1L8O9IKC#*C*zBLF>v)w( z$glT7+o%>M;$+xStA@BLXss^@%_1d-s^4jr=wN@DnP`~yOh$}xr&Q+9Po7OQjIG6S zWnJWcoMHUN_?ysN94f2vg-G*XSCu9AFFps4HH2MkX!=lfm@2;3$Ywg51;xrUjno?7 zE-FuXs{p;evB1722&)rBHH7^TpOf{aGhIbZCatX|!{^X!0s-uZ$QrCQ+*EA8Wtw&O zeS$E%v7Yqxq{i~ffi~l5(^=D_f16)&v{6zjQvao**dnj2HX?7SH=f6d|F05&HKD-HxcCV>H zsL3ywE||PXzcf4u)v0K#a_@>Kg4;^%r)I#Ffa5h{;kU<2pkkQzhd? z+eo`zaYA5b@p#koRdS64HH)23%R}Zyb<|?@C~z*(?0PynJ2~6Om+@)cV6C9p>)^-K zmL;m)MLU}F-&ygGr~}?k-YK2yR_E(qYx|fQtr{7%Jo+}r&c}T3iF1m>9a$Y2HElXp zZReg{O1)t!o+ z`nN)7!YiU1VGDxV@9WDK>wcEKZh1E|>yi&JAwkpc@prMPqR_GFvE!l0p(iPL`%-(q{5guTv9yY`lx#j(bn=YuAQ;4-t2d zy0fw9-KxKw^|`IP5nU8+p(^fqgZ*ee%%AG-RQ{B{B;qF~en3H{-Ms!_`?3b$P4EvX zWqA*RND?cABhWYbzvL+@66;%qJ*OHjHgLr)a z@_+)m=Bk5^VXaLqTaTdW*BD!e7iQ|i4WXIK1Y71ITtaXNaWH?vo82F- z_FW`s1lb7j{z0;aIad3`@hQ{aQy;8qHxViv_f8R5CIdloX|oM72yDNU4T$vhY$}r} z@JwbP`4km^E!4q;Hip+=hDM=Zga>&Fdx}bkGy#%vzJ9jY#@r?{K)?LSg!bKVqCz;X zJ7LFQTQeEy1w;-jwUiNHQsL~efeSauWx58Ia)VQqa=h+4EfLs{Q;tp$Xp!(Yb>d{0T-FhKV*5VheH#vLvt70NGj`M-zn) zh3^D0co828pK#!-oLWAk(A8J`WwxE(hF+C!A@dyJxBy9n21{%GPlOQ5KRLGOrFuVY z>upo&gOixy3ha!+E9&_Xzs_rJWf*bW!(K)+p+(|B&5&?UK{3K~|ESvUG=je*+4coK z&H<GVO+Rkkbb%0#J65aG#kryI!QNNQG~{TGMPsD`=*L8c@rP)iE^$sc<*!Dk$m>X1MpeSP z+x**0-9m>dLEtCq;lYY|8m`6cnmDK$*!POkIxk_#0lbhMH^E6wtM;K!+m2mQn8MV1 zU!fnVzgbn)LIg0|7c-%?FM*{<>YkTngwcYv1Gez3EQNMh)G``BLmjovvL zLj0`tzwrt9lVIe{T`x82KyjHO93vbs+WVTf<<%}6cOJi6+DlIZkB)?dlJsdB_HEM& z3EOIE04-qc8<`z4k{%!Y>jW;`AabBJWteUgm#=vhDkKeTl-bLteEFapuy9Yyr@>5z z&U!{9=RUG+SYR^V@+hVLTo55l3`!;a@r!dDSwWJ*_{C5z{cWL+Ru}{Yr39LZHsB2U z_N~E%+`f|u?b-4VI>q6GIz;WKxoEXj)HstObJ)Pi0FOt#Wom_Cfp^dZ2YLN`jD*6_ zD0>z8nvUX56m(JdQjoH?;oct8J`gyS_a8LiREr=dB*$CKU-(6;pN1RB zX}QmJ*4Y##>rMsUG)f#G>!F!uuD1N*%e5m88NU>}alUls-=$oG8+}G4oP-tSvYL6wtvhIuEvy|wqks`ZSYp7p3*^*@(DqMl@cEw}$-53!y}u92e`?g3+R_9Xkb!*^(&rD8@#jYuru^8L?6mvAZ+ z{Bze9^t%be%zF~C#e^EUy&NxD4=QWAz2AXqk$cYot{&#CmtPTmAk^C?dM_l6+IQsJ zOoyCa9#6Zf{%b#{-s3gg#Fp>y+O&M<$j@DD&Z1~)T!cRuW_+on7^8|kjbl+Ey&%Ug z>t(`aO7wrlwEM%(_b%;F0gJAS=$lrk$sp#LGAu(Kx`5u;cstkVLV zoM@;KV=au*0IM?-v-UETjwssbe0898hP4%D+dbOKKORS-FC#}3j(mYwXF@5z;M8FY zCQ%A3%skZ%pBXZq`xiRcUbzn+x_1$SyBR(QmSJa|LsY;vC5@QIB{)DO;-92NXb#H_ zup03##$(pS;DwpYLy3iTD8?r2ptEK!CalyY+=eC>EiqE6kWh5l;ybd&9MUOmN`6!L zu$F2*d z_rfh~Y;MqmXsF?q8;m2_qO|plCHeJgVdN5nqEz*J> z3H%4zt=I5f7*rbq9tR#A*{Uu@N~b8}y87+KG0&}-H6{v_8W9xQgy|}AYl__4=gC}L z6h4L5pf)&8vw9S1d>Jv1+CPu$lAZ)z3Ys^{2@O<8iDhRz~NKGowdr4KyX^+*Hy=VI_D4WQ`|N3{{l#sL>gXum5&7KU}!tEwFF zpyAi|FH^*O<^)dt#g(@qT}KvEnJ3_-Zs%SWt{{ApEB(;RDQ<@-`(Y5e^5=X7le9N0 z$w^rk&??T`;wFpC{myMg-1I`R5Xo1wJ=2d2g)Yw*uBN@%Q@X$-!@Vsqp?BHjxK_g) zXXc%$@6eTYtjc_2Ls6*IUAEi>KRRS3lu@)&%De6;vtYeT4?A#uUZ6jleTYfln>M*r z#5vMI;1Cdh#M1Czy`GzVjVEp27U$9H%pIVTS%yI%TEH4N>T$`qc2+&o`6UTHUlc;GzpJo}%HCy8`CHr?A zKd_k#x#C=!4c4rRn~ZyY7A?5wmhztA~J1_K`sbq*f;ljRwy#p#NA-z{uegC`6^iDB`*@$Scwi{X=K>|-S^OV-+H9Yth1%9C&ZdwV*4G@T5$P* zp!ZMfGDBFw9s|zA?{CmKh0~ieX-w)6mQA}^JeW&;!-jO_;0B8?%6!pT;k354+^}tg zd%v;;9eEyWVv5|*GCI{BZUGJ60e=vEC`WXAP1@Nar^+#n-L~Z$v9~cjWfCEG%N_Xzz4Hy z&vJW&{|p7>avUcX$XSwA4d}|n>Trk4U4Wm>G|iUs++ZzM4;P>uCDaEyE7!tf+{}r7jt>pDW|Fx93d+wrS$xqaB z&}g==R=WBM^W3Nw#?ej@^y{1IWaQjmC@8FfAfaB4-Q)3UXxAuY-s3$l|>AD)#N*&4Y zUu;ZfBgJm!tIm5rOU*m~Qm3s`uG!pj?^$P%rf!6|>_Pnw7!LQlq-%>&7gC@4JfVJe z9x{&MNL6Uef|bNeGG(zf=rpg@ioz}2V7_r)aCWr@x8cP>rI=0({|hH=4>1^npA6{j z{BW9i^t(F9e9m&&qknoj3w)GtwMzb0Twv;6Vo)hQarV=g&4nwVI`V{IsiCYOxaxt& zrLN$@sZPBV2YpUsX?XVw0;RFE63n0HxW%?S6*yM!_J<*+ZlFbCFHZY6CbzXbZ*)dS zp-NbpHuc{q1+inH0wNJ>`c#iM7zazD4eH4T$q|&+O+xtPFrmaWXbUEV9gl{C&!0I6 zn79L%Uuv=bT@^^}Q??iqu_?J=o*f$o!*{L$4*FKzXU>30s5zRJrh@ zrb<|WTH5=46NLh6AUjJ4S2GYnoi}hrq{M-LrX`13g=B!!*H6x)o66cT)u@I@-1xm= zjMV6g!tM|yRF8AdHZ8_O^rQgyuQRyCxbxRGoM#m`)Ye7fS?ejjnju+=q z(^EXf{V42ijt7r&qpo6ML+)|k2DdPjFdl^5{2<=}Yd9xtaj8yHY6rYBtHSPrS={5P zu3WJm43@E08>(_kLa5ag#oBCI>TpudwG&Y19675~%Pmvs7F7*e8UKAv{>}L= zq!UJ%n|hyl(VFx~eRJo|y6z*rLr2-=iZ97r*c7K{7L2r97#!=AWZC9v#1 zjPVoZzB9sjxC3B6Dcv;h=61=R^wf&iaifW`K@tPRgpvI9x+kLZz4c!ET41hDQNY=1 z=xJwI*b*k!2A&K~1fE$G7b-%M_UfZ`dVj)|d5l-2@pad2q^;_6`xiEvywH)xbvNXr zpOuaKxhsJO%OqqbbDr@-0__yk=q)dKMTevD(xmE(+gT3L|7=KkNZapn2%o`8;B^3v z5w)dS**}J43a8F{q^AFemO-954}D%w}dq}GZsXkuN^jXQ##>_8R6pZ+}Xcf!kcHw zubw_7=y%5+Ug8Zb7pS+cQ)n=dUf&~TG+X6*LODv{LeWZoVQLKl3*3<)){U7IPf1Yy z1hBy%xl}}&V~ARUYh~e>GK%b^l>8Ru>v8{>bnU1$^N$nXSc4|??2qUY&LEpw>9jDU zCDFr(@Pxhg1_e)-Zde@!>NqwFs7j(4-N<4~sFaNO@Epe?F;(fGbDc_UOW88crbJt= zX7u^{-GW9n#37R{cDY-0bBzIyJ6!15ltG*K%Z4G#x&TrjYqLhbmtM^x$+VIH>Sp{v z>BV6mKI<=fVapp!ZOQK}YKuE*t`z6}ii0dqXkr=>2?R0=FZ<3I+=*0I3$S8a9svV8 zPsW*?W$e1nM*HZ*52&Hym=<3qIfxLbVX)k@_2HbSd9wMrE=REf}v8y+pKA z1@Ua0sP^dJ--OW^jQ(73K#DdJYXTtIxwZWH?QLG?;n8-qelCEJKc2Mbi9l_MKSonM z0;ra&$Ut3jzLe$MauTm)+ABIy2PCE9%E|`lgRnt~5(~)D{U{ErIUdJP1(i@*jL%W3 z{Q<1#_7G|rGBILEGrBT&cZ%EG_gMl>|I$4^H?_Q?&czuX|4q(IGI8|?pYnZi z>^I9eX>V)=V?X#%lA6!gMpCBoMDj8iuRek?c6Ut4yM`RyA@ki-wHObr*Tze zl(n3kwdIPpLd6e=;7?e`*@@cfRs9~3HGXaiKVnR59<8mFrD`=`7;EA4mDyTZTCHB*T4T}I<|zz(S}rR ze^bFI66FBpLDKch5yg*xUNrUl*6m@q*}=Nn9#n~X(atkS<``3SW^6?%jDeWf`k%gZ z`9cSpoLG&gvzuNp57?%VF2<8|f0etnMi|}`wO8Op&^iwNOrJI){(Y3g25Qb#CK8;m zp;KFh?KHEsvu+NrFj%LbZuXNEsC{vs2?ltq-_<5xqr*sUQ!JH9$KG_hZJLIX_oD*;B=sb~w1Faqa`wk;}kW{)Os8L0@BK&CpnJhVprZ zK=wt_!(E1B0(2>m&G#l6&8o)D2gwBb6m#3Ou=iqhMKzUMsR+CjCCp1g7j=M>S`M>1 zeo`I-Oqo;E@sX=EnZ|L1rXC?E7z~4a)bOKVna~nT(D*W`L!xbxah=>;LCqWmScf);nPTc+vc?<@e{($L2EMp) zq!p1R6KA0*3ACp0?l-<8mvM9=+XWg8N=b(3L&ictim#6*-11WUhUGx`HE}?L1W#;v zK_D#JXDnalTHt5gN*x9*PQR+2*6GF;#kiv*qVVxG+i%uzD!Jn1BCaZmuD=9iPQ(MM zN2W82C$$vN|S6rz_W`oVxfVGI{IN0?Sm8W95 z_CR3grIFuBqjc5OphJGZc!>Xo{VYY4QxqV?Pz}A84Msa)C*%+cJqoJJf z7Mhj8l?T7_HjmIIaG(;Q`_7kH5+qaN6CFBxdPtU#dZ;dpf%ZFPA&KsFAr3GpiO|8C z%}R>J8O-{N%52YM8y!W@NoA-GQB=`CAnigAuKcVpECX!}G&xhT4#b%w;oBtgb{VuY z#=%MoINk?)xKDeIBW+nF7dza~3{Z*X_VFV;0a&p++<&RVT}xf>B{%3;@2qa^H`HMk zohe5oz^b*oo!OY`FlK=FUCVeS>~9E3T-VCd%Aq#Fri(Fz_Q?8l6Ndzv$&#A$fFa7tKh5<3Pr zeb8x%7i6(6uB)}L)x8VCxNsR<6ZCzhO#5YQY~n>@hHp05V4J@DqU6ahip76&1M7N) z{|B=u-x0QhveAvXzuh|E22LuJ7=EcoJ+Rz#9Tab1S&9)>7{a%<2-uVRJfkKu7~*&Q zzOZjg2H;I)tM0{l@)R@gZnnV2WAVsv1+Ms(oF%@PF;-)|%_uuHYZnXq^6$#55`)l7 z+iC2gH_bq4RGR99(p@HT=^Z121FTqzZC%|mEl${S?A%*!G)FUg5{J(wX0OVl^&C>? z)dxJ^?R{Rnl6*ceCf5{dG(~oHm+qX=Iz|Au(2YtMgmWZH@=ZjPC+E#e@Am?|p8&xD zlAtm>U!CZ;`7-mhN6517YXN2p{TRmAF;S`V;2icvn=vSB#W)jlqLs|rwx(4n-?q5N z0l`SEp=@hE=2S`MhyP$N-Yff2a%vhMKB}wlIVA)C(^JPXI$%3 z{&wS}DH)?7qT}o<&V_5+ucIY9iLAK8x18H@(8$L}K)YViLZ`>;?&As$XF|(Rg!sM1 zkw~V_dqru7p8g`Wne*TJ7rpQ#I*9%ePiAAO?januXATH_2pn93wOY_S*`)VM{*N!U zWXsu}tKSNGE4?VfBU4@2P71=ok&XPm9VH=DZgtXhR{vc}QkHLhg0!CG0fi&gPb`aJ zm*r8UE*}&?px8gtQZC9~3^OG+Q;|8tdD|w}HyGw|>L44D^*m1BzKyHVmOl~Y`j;Bz zimTT1#4GCSq+v#TYy`;nLd@D_osT${W`a>GyzI5pR(@A{3Hp9zTx*cqSJ_ifjJ_V| zb>9WGi=szWWQMa~BffZ3enc^%(?5TwaO4cavK?e`p#lJL>@~^Mu}fgoIa!+#{F&lw zv9`%&_W z95S?-zVu&DDM^St3)K{np)7wqYSNTc$lLAt0GJnxBM*FFf{ikB=FIF3<-xC!BP=j^ z+JvUWMbJSS$&SD)I|BzfBF{g-Hl}#pflT8o_T-~SfSA5;oZHyo3i7?c?ydGbxk{-z zXkgcQ7KaQRoI&}lk$Bh26(%p z%_JNZX5eIg7BXB(4*t`BYAI={%1Anrkp*|kar`nhNubxiqveO}m_vJ9@2W&u!IHnI zrR3skh*Z_=LqR~q;kT|&E49fL{)2-`jK ztEw?)oJ`Xi@cRY=^jweBbvJ0ckv85G zHWH#e!nu^V(uz>dFV^hCwlaAKXUSfjHEu+AV?dTF~@HMQu|iVg~BB$?oVlm%XdqD5VW(QHao)e?@w)diA7J%`e->f zc4CT8&4{Fl!Z=W&Z!V1Yw6JVwfTbxF?+TSk)MvS6frCLyobPZCJ+S#gLZ#T2)8W<4 zgy!k))>9|xm&GuC0T)<@_f;-z?x&`*g5?v&=bCqcriR>p9ga@PFBAeknTG_5w6OYX zX9>!53Zv4vM!9^Vx#OZ^@!uPw2dM4h5qyQ4+fcYO#bYFUjYOHXlPq=A`s)=l0<50v z;nWG_TVAss15asCMk{s7|P{0DFiL2+&nWvXB>r}}Wq2zTX zs;k^K!#UH*NJt#aGL}-Z*Z=7XrXKSl`osFOm|t_JV~NgQhe0ng&d!?~LmbHHG3` zTlrRw><|ym2e=){VS~7El>TeCHTqHKtjgnp`Bx963E$uL&yjD2kQ)VkN)w#DIw^so|Igq58bircpyx+=!seGo2BuYgmZ??wwz0S68^S6ugz!oJXC1e7|sc$ zbVXRFx`k5~eMn0VSRS8ic(RvmWz<{vJu!hK!18;08AA{fAUXz@&sRp-Qg>@gy%kGh zz8El4xg9mvD=RCoOe8uKxkJ(7NJP5Q2-Y(zlSO7l)0@dcl1GRWc-f!bFT)%eMd?7T zSH6&9i0z4CiD6>n>c~EE_iX&z1>{GI)*WNY67x)uAOtP`puk_D(5)L+GnN@63GY#D zcHNI3fGS`aT)i&s48&IeYmb-{W;jW-UQqyQ{7+Ys7okv1Q~YiFK0vYM0CR^`{sh8s z&Gj~{1MqfgZ^Y5)FQMyN-nlRUhf_phz=6bxQ`Fakw)ocsX@%MCe@*4Ze`NVY;n_kD99 zb0VQ6dX=dkzcnl3`jpsSsdtwKrju5Hejf(~V%hd{`U=u9KC`8Vx&)th63%oLYIEUQ z^uL`YmUSIH6(|;_Tj)%eY~@Im*fuG@I?L++Fq}~9FK^xcE)&DsG91OXwkr05*)n(a zo8O@M_)O+Z4X9fGa%>9usl%b&A-{SH#Z#b*Hu5&3jJhI9PL-g`;e>A9@!WTzGQ3w` z58Z@!-XE&-TF9bQIlL(O-1P$in&*GWnJ;kpyuQUcY|Pqsd5+beOmD?JZ|9}9c4o#v z4FM3znNC(pGuiX>SWtV$pQe?}jspqnV?T)<2zLC$6pjq3kJ-vy)z&*?;|9sZ3dWK) zyyrtH{c~25d3nxBDAa&blD?+8gn~p4Y`wXCT|xSnp_KG?C`05dQgU{s-J*oNCxIAeE7a1+c@-luM5}w_C1T78+( z#GF&md=7fp_52tkm~hF=lm}(wpqa?Ud3b8O#*VPmx3FXsKg4~5Yewbvp_iN`$Z$!| z0Z%6iQ6cUNs$`qT*E&Pi#HdD0pA&A*x96|Ner^~5luEGK)KslaN46om8Wa)Jz^zpy zlR1*cCHsEkmOd(QrTrC!?-MsVeRH}t^eydzeC~gk^;a)b0FW~bXP}R-R^SR;P`JK% zFwc3zJT@az1X5L`&6n7FWMy_V;%lSUk0orlHGuTeg7Wa0z&Yo z?BtO)!t|e&a6R{Uqs1gHi=?TT=%_g6`Pd$uub<*{DE*PWyQ^ zT)iIS0YnWMhJq4FQ?sqGRL2l+W0AM(_b~fDu>~;I0l>Ir=pP1zSNQ+34KXW{4KJ8& zQUpg$`R9lg-e}cfjX`_&*3W+^ zeuPm$T|tXn!=A&0l4<^}dR4o%n;%qjB01>IVEoP#`Md~k3kvkSZrXwZM32x8_103KXJ zJOt^Gzg&intf--TS~zJb25+nw4U$Oj#~Gujv=W-wPq!x)G&Xe$K{l~(1)hlLFbOrN z2{t;h24`H5Z#w$mB9Gs9oqvFos}D?8)Rf~3%GXHEv;RU$b9Ia#Q1HHh4KC`JUG_1A z3)hu`JISJN2XMuA#B~FPxpzt_AboVjw_tx7xeN^W_o_FCh+_x9uQuD1tMu+}1FYMe z0KB_Of>5|{9Qqj#MS$#kc*z}SQV!sD<+pkuMnU&ZUmttX2vPeEF-9ih(SRgR6)^M} zDEJQgI{6FlX0-D!^EoU10o(nX@)DGi3QRVNw-LjVFImKj%o=7(qF#sGO*60FJ6C-O zlN*&M4cf7PA`lQQ@fIut3vdI`T%;_Bd4lmK5;&s<`t)VHE;w5Bg{qB5vy0j5UXHQk zwcnKUwvY_1zw#!O?(U;qG5u|9akl*@wEq-I(enmY} zKa$hHY8m#`{=c+Vr$MG{J~iFp!#Qdv%sk$B^JU!cYR&tMfjHTV0gpd!Uhi*W(J=?- zC1*#x3u3s?D%D24D?qMPLAcn?Pfi(#X@x5*8z$8oBcgIALp9(}#|!p4y|#TVIpv1a zPN68c$;sPI4wLe|&q=^3x3^SN}sKu`VHj_2u{xttv=%_@JOpIcoo7 z=01^q)D)bmR`KbAy-o?FB!spwun$ zMK)n3pD6aa4DsM6xkI%A{2E(+r@ml9pXAnS8u~qE>bQa65YzPOQ$BCxS#e}@uPCq& zp!R)VD1MwFnOnm!o-%ROFj~jyE>n`^?X7zDX^KMP*g=M2(Q`+B545J1_eFlix5oqG z!$O~IVQeplhLB09<_mas$DBwo<@-glS#Gh2yVm!CkTuf6UuDfnkKG`E3u2OYhh#7;pkC z%uHfl@SzV(pzp=qttXZ8qAnA;4shmYxR;2t)6OlBd`BM3??Rk z%SMNpod7~i)b>>N9NTP*mcsS$kFfSVOlX$)G}#z1J95x(n+OX6+|yv0%^3u~=mfPc zlROs%yb(6sTd%OfJ@{@YJku%@`56#jWWvhjNx-VKA@fAh@f8njE8N#!%{8Cjj@uU7 zIRP{*FqFdWXyQ-`kW=a(?0_VI!;}PM`AMTODarScl3r*rm8P^RB6~yO3$v80B_axR;k;p>d;-4B zr|}1Y-^4%TGJnR4NN{RZr=0wjG!budyw&t=?sEW6GF;}jF&XPmi{&59tGIA3cnwBq zVyFZ4g~7XP5U696P4IMvv;Mev!!gi`;%Z+iM9a-`RVhV2hlAk3KsnzTqB%hQ5Cr`z XVPaet)cy?or2-@^t{_$;Vi5R0WUMO5 From ebadd424a2796082898130b0cbfa83a8bed95577 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Jun 2023 11:18:11 -0700 Subject: [PATCH 0351/2686] Run update.sh --- ubuntu/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index a6e2d66c2b80..eb524a95d229 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -58,7 +58,7 @@ Development of Ubuntu is led by Canonical Ltd. Canonical generates revenue throu > [wikipedia.org/wiki/Ubuntu](https://en.wikipedia.org/wiki/Ubuntu) -![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/ubuntu/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/2ac3caaf21dfba9734f20518971983edc617c77c/ubuntu/logo.png) # What's in this image? From 8a8a237235307560579f61f1b4c4f70db10f8d38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Jun 2023 12:16:18 -0700 Subject: [PATCH 0352/2686] Run update.sh --- consul/README.md | 2 +- dart/README.md | 4 ++-- rust/README.md | 16 ++++++++-------- swift/README.md | 24 ++++++++++++------------ 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/consul/README.md b/consul/README.md index e3d1802ef882..41b457986be1 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,7 +28,7 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.2`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/2cab863154c88062f6e505afe5ffc0a79666d887/0.X/Dockerfile) +- [`1.15.3`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/6728f1e11112016a3539eec50b8d20b27a31aa40/0.X/Dockerfile) - [`1.14.7`, `1.14`](https://github.com/hashicorp/docker-consul/blob/36b73fb81154b668e9c1987fc7011322f33b926e/0.X/Dockerfile) - [`1.13.8`, `1.13`](https://github.com/hashicorp/docker-consul/blob/4e3f7398868f9767d515e91a63b67294f5c97aa9/0.X/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 6d45d4ff0b1b..8506ffbb5660 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.2-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.2`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/41e9df52bc1aad9088396b946bf1b99d92d6c0d8/stable/bullseye/Dockerfile) -- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/41e9df52bc1aad9088396b946bf1b99d92d6c0d8/beta/bullseye/Dockerfile) +- [`3.0.3-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.3`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/88c4c5e65633cfa5403a63dd7d7322b8a755a2a9/stable/bullseye/Dockerfile) +- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/88c4c5e65633cfa5403a63dd7d7322b8a755a2a9/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 18f3e8c9121f..b29ea244cd0f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.69-buster`, `1.69.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/buster/Dockerfile) -- [`1-slim-buster`, `1.69-slim-buster`, `1.69.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.69-bullseye`, `1.69.0-bullseye`, `bullseye`, `1`, `1.69`, `1.69.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.69-slim-bullseye`, `1.69.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.69-slim`, `1.69.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.69-bookworm`, `1.69.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.69-slim-bookworm`, `1.69.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/bookworm/slim/Dockerfile) -- [`1-alpine3.16`, `1.69-alpine3.16`, `1.69.0-alpine3.16`, `alpine3.16`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/alpine3.16/Dockerfile) -- [`1-alpine3.17`, `1.69-alpine3.17`, `1.69.0-alpine3.17`, `alpine3.17`, `1-alpine`, `1.69-alpine`, `1.69.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/35579d26bda862c00d127d63cee4ab9cd5d114c2/1.69.0/alpine3.17/Dockerfile) +- [`1-buster`, `1.70-buster`, `1.70.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/buster/Dockerfile) +- [`1-slim-buster`, `1.70-slim-buster`, `1.70.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.70-bullseye`, `1.70.0-bullseye`, `bullseye`, `1`, `1.70`, `1.70.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.70-slim-bullseye`, `1.70.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.70-slim`, `1.70.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.70-bookworm`, `1.70.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.70-slim-bookworm`, `1.70.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.70-alpine3.17`, `1.70.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.70-alpine3.18`, `1.70.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.70-alpine`, `1.70.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index 03e3e541b127..575169a20fb1 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.0`, `5.8`, `5.8.0-jammy`, `5.8-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/22.04/Dockerfile) -- [`5.8.0-slim`, `5.8-slim`, `5.8.0-jammy-slim`, `5.8-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/22.04/slim/Dockerfile) -- [`5.8.0-bionic`, `5.8-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/18.04/Dockerfile) -- [`5.8.0-bionic-slim`, `5.8-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/18.04/slim/Dockerfile) -- [`5.8.0-focal-slim`, `5.8-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/20.04/slim/Dockerfile) -- [`5.8.0-focal`, `5.8-focal`, `focal`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/ubuntu/20.04/Dockerfile) -- [`5.8.0-amazonlinux2`, `5.8-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/amazonlinux/2/Dockerfile) -- [`5.8.0-amazonlinux2-slim`, `5.8-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/amazonlinux/2/slim/Dockerfile) -- [`5.8.0-centos7`, `5.8-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/centos/7/Dockerfile) -- [`5.8.0-centos7-slim`, `5.8-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/centos/7/slim/Dockerfile) -- [`5.8.0-rhel-ubi9`, `5.8-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/rhel-ubi/9/Dockerfile) -- [`5.8.0-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/35e6af709819d7f1552fcf5b9e4339a3b326eebf/5.8/rhel-ubi/9/slim/Dockerfile) +- [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) +- [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) +- [`5.8.1-bionic`, `5.8-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/18.04/Dockerfile) +- [`5.8.1-bionic-slim`, `5.8-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/18.04/slim/Dockerfile) +- [`5.8.1-focal-slim`, `5.8-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) +- [`5.8.1-focal`, `5.8-focal`, `focal`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/Dockerfile) +- [`5.8.1-amazonlinux2`, `5.8-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/Dockerfile) +- [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) +- [`5.8.1-centos7`, `5.8-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/Dockerfile) +- [`5.8.1-centos7-slim`, `5.8-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/slim/Dockerfile) +- [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) +- [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) - [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) - [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) - [`5.7.3-bionic`, `5.7-bionic`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/Dockerfile) From 259e5b5136857fc9457acf0a2e2fd121eb1e3fd0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Jun 2023 15:16:18 -0700 Subject: [PATCH 0353/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 7a542ca3f8a9..454801ca783b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/66ad1d007635040c8cf05d3e39e0bac42c008dfc/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7-slim-fips/Dockerfile) # Quick reference (cont.) From 14ae4c09d6b796e98413215b036406883ca61b39 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Jun 2023 16:16:25 -0700 Subject: [PATCH 0354/2686] Run update.sh --- ghost/README.md | 4 ++-- node/README.md | 16 ++++++++-------- rabbitmq/README.md | 24 ++++++++++++------------ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 681009687ce5..a8303c9f8860 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.49.2`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/bfdc7dec6f9f3a0cc54d39632de6a17df5906eca/5/debian/Dockerfile) -- [`5.49.2-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/bfdc7dec6f9f3a0cc54d39632de6a17df5906eca/5/alpine/Dockerfile) +- [`5.49.3`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7244a7250289a74268d00712232c91413213c612/5/debian/Dockerfile) +- [`5.49.3-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7244a7250289a74268d00712232c91413213c612/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 5e792f051537..a8650896687d 100644 --- a/node/README.md +++ b/node/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.16`, `20.2-alpine3.16`, `20.2.0-alpine3.16`, `alpine3.16`, `current-alpine3.16`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/alpine3.16/Dockerfile) -- [`20-alpine`, `20-alpine3.17`, `20.2-alpine`, `20.2-alpine3.17`, `20.2.0-alpine`, `20.2.0-alpine3.17`, `alpine`, `alpine3.17`, `current-alpine`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/alpine3.17/Dockerfile) +- [`20-alpine3.17`, `20.2-alpine3.17`, `20.2.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.2-alpine`, `20.2-alpine3.18`, `20.2.0-alpine`, `20.2.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/20/alpine3.18/Dockerfile) - [`20`, `20-bullseye`, `20.2`, `20.2-bullseye`, `20.2.0`, `20.2.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20-slim`, `20.2-bullseye-slim`, `20.2-slim`, `20.2.0-bullseye-slim`, `20.2.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.2-buster`, `20.2.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster/Dockerfile) - [`20-buster-slim`, `20.2-buster-slim`, `20.2.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster-slim/Dockerfile) -- [`19-alpine3.16`, `19.9-alpine3.16`, `19.9.0-alpine3.16`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.16/Dockerfile) -- [`19-alpine`, `19-alpine3.17`, `19.9-alpine`, `19.9-alpine3.17`, `19.9.0-alpine`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/alpine3.17/Dockerfile) +- [`19-alpine3.17`, `19.9-alpine3.17`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/19/alpine3.17/Dockerfile) +- [`19-alpine`, `19-alpine3.18`, `19.9-alpine`, `19.9-alpine3.18`, `19.9.0-alpine`, `19.9.0-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/19/alpine3.18/Dockerfile) - [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) - [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) - [`19-buster`, `19.9-buster`, `19.9.0-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) - [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) -- [`18-alpine3.16`, `18.16-alpine3.16`, `18.16.0-alpine3.16`, `hydrogen-alpine3.16`, `lts-alpine3.16`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.16/Dockerfile) -- [`18-alpine`, `18-alpine3.17`, `18.16-alpine`, `18.16-alpine3.17`, `18.16.0-alpine`, `18.16.0-alpine3.17`, `hydrogen-alpine`, `hydrogen-alpine3.17`, `lts-alpine`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/alpine3.17/Dockerfile) +- [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.0-alpine`, `18.16.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.18/Dockerfile) - [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) - [`18-bullseye-slim`, `18-slim`, `18.16-bullseye-slim`, `18.16-slim`, `18.16.0-bullseye-slim`, `18.16.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.16-buster`, `18.16.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster/Dockerfile) - [`18-buster-slim`, `18.16-buster-slim`, `18.16.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster-slim/Dockerfile) -- [`16-alpine3.16`, `16.20-alpine3.16`, `16.20.0-alpine3.16`, `gallium-alpine3.16`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.16/Dockerfile) -- [`16-alpine`, `16-alpine3.17`, `16.20-alpine`, `16.20-alpine3.17`, `16.20.0-alpine`, `16.20.0-alpine3.17`, `gallium-alpine`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/alpine3.17/Dockerfile) +- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.0-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.17/Dockerfile) +- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.0-alpine`, `16.20.0-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.18/Dockerfile) - [`16-bullseye`, `16.20-bullseye`, `16.20.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye/Dockerfile) - [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye-slim/Dockerfile) - [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.0`, `16.20.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 71d99c805cfd..5331145d2ce9 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0-rc.4`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/2466fb116a22441798f38838f4f1d00980b0f348/3.12-rc/ubuntu/Dockerfile) -- [`3.12.0-rc.4-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.0-rc.4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2466fb116a22441798f38838f4f1d00980b0f348/3.12-rc/alpine/Dockerfile) -- [`3.12.0-rc.4-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile) -- [`3.11.17`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/51796e9b65ec63cd2d4cfc873c12f97b4c4be457/3.11/ubuntu/Dockerfile) -- [`3.11.17-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.17-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/51796e9b65ec63cd2d4cfc873c12f97b4c4be457/3.11/alpine/Dockerfile) -- [`3.11.17-management-alpine`, `3.11-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.23`, `3.10`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/ubuntu/Dockerfile) +- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/Dockerfile) +- [`3.12.0-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/Dockerfile) +- [`3.12.0-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.17`, `3.11`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.11/ubuntu/Dockerfile) +- [`3.11.17-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.17-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.11/alpine/Dockerfile) +- [`3.11.17-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.23`, `3.10`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.10/ubuntu/Dockerfile) - [`3.10.23-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.23-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/8efc286a3b05331ee89c3c85f7abd9a4055fbdd1/3.10/alpine/Dockerfile) +- [`3.10.23-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.10/alpine/Dockerfile) - [`3.10.23-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/aabb3c5c755e78eecdc16d51cc1e814d357a3745/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/559818693cad2b11238e59e0ae9e8dc537e9cf00/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From a2a9fb33d9b8b2b03820bb74782c263fb9559c93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Jun 2023 12:17:11 -0700 Subject: [PATCH 0355/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- archlinux/README.md | 4 ++-- node/README.md | 6 ------ photon/README.md | 6 +++--- 4 files changed, 8 insertions(+), 14 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4f8f5b3c37db..4261050e57ae 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.0.20230503.0`](https://github.com/amazonlinux/container-images/blob/ea5a916817e6c6bd0f031358bb8f4f5c272d7de1/Dockerfile) -- [`2`, `2.0.20230504.1`](https://github.com/amazonlinux/container-images/blob/a3064f5b88429f37824e9d9897021058f5eed6d6/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230501.0`](https://github.com/amazonlinux/container-images/blob/28a8085038403ae42578118bc2fdad522bbcd64e/Dockerfile) +- [`2023`, `latest`, `2023.0.20230517.1`](https://github.com/amazonlinux/container-images/blob/b681ad22b5dc7d459d771a9803bea14d34fe7ee6/Dockerfile) +- [`2`, `2.0.20230515.0`](https://github.com/amazonlinux/container-images/blob/414e8927d838c4ec3eec786702cd040e7e7ce8ca/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230515.0`](https://github.com/amazonlinux/container-images/blob/551da039c0c482176995ca033eb3753f0a490ea8/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 9aada608ec20..f79673eb9fd1 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230528.0.154326`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d8e9ebde1718f8f26185afa99e795fa6fec6f931/Dockerfile.base) -- [`base-devel`, `base-devel-20230528.0.154326`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d8e9ebde1718f8f26185afa99e795fa6fec6f931/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230604.0.155602`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4693da54ba7cef37ecbe495d378eb9d9c4deba56/Dockerfile.base) +- [`base-devel`, `base-devel-20230604.0.155602`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4693da54ba7cef37ecbe495d378eb9d9c4deba56/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index a8650896687d..c5523e1f614c 100644 --- a/node/README.md +++ b/node/README.md @@ -30,12 +30,6 @@ WARNING: - [`20-bullseye-slim`, `20-slim`, `20.2-bullseye-slim`, `20.2-slim`, `20.2.0-bullseye-slim`, `20.2.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.2-buster`, `20.2.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster/Dockerfile) - [`20-buster-slim`, `20.2-buster-slim`, `20.2.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster-slim/Dockerfile) -- [`19-alpine3.17`, `19.9-alpine3.17`, `19.9.0-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/19/alpine3.17/Dockerfile) -- [`19-alpine`, `19-alpine3.18`, `19.9-alpine`, `19.9-alpine3.18`, `19.9.0-alpine`, `19.9.0-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/19/alpine3.18/Dockerfile) -- [`19`, `19-bullseye`, `19.9`, `19.9-bullseye`, `19.9.0`, `19.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye/Dockerfile) -- [`19-bullseye-slim`, `19-slim`, `19.9-bullseye-slim`, `19.9-slim`, `19.9.0-bullseye-slim`, `19.9.0-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/bullseye-slim/Dockerfile) -- [`19-buster`, `19.9-buster`, `19.9.0-buster`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster/Dockerfile) -- [`19-buster-slim`, `19.9-buster-slim`, `19.9.0-buster-slim`](https://github.com/nodejs/docker-node/blob/7a8d51d0e6acd67d14059140231ea52c7be8f023/19/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.0-alpine`, `18.16.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.18/Dockerfile) - [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 1625c9c2943f..60f466c8c921 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230527`, `latest`](https://github.com/vmware/photon-docker-image/blob/1f65acbaa1c37855acdd775e41ebc2b8bcd7282b/docker/Dockerfile) -- [`4.0`, `4.0-20230522`](https://github.com/vmware/photon-docker-image/blob/0a67cdeea16ca7893d75b8ad5ac38b0f03f32ad1/docker/Dockerfile) -- [`3.0`, `3.0-20230515`](https://github.com/vmware/photon-docker-image/blob/8f9b582d6859a0966cff38b98474fdae75fc07f4/docker/Dockerfile) +- [`5.0`, `5.0-20230603`, `latest`](https://github.com/vmware/photon-docker-image/blob/267817afb6cfcbca860d0c221f60ac941710724a/docker/Dockerfile) +- [`4.0`, `4.0-20230603`](https://github.com/vmware/photon-docker-image/blob/977e3c921b14414c1c12c4d1f2ec25b3e000308e/docker/Dockerfile) +- [`3.0`, `3.0-20230603`](https://github.com/vmware/photon-docker-image/blob/94da27914de550551b94776b6d75a3e897eee686/docker/Dockerfile) # Quick reference (cont.) From 7ff25775e88b8a61d1862339949e0f6a5a6e5cda Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Jun 2023 14:18:20 -0700 Subject: [PATCH 0356/2686] Run update.sh --- clojure/README.md | 102 +++++++++++++++++++++++----------------------- elixir/README.md | 18 ++++---- 2 files changed, 60 insertions(+), 60 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 0c92ac1917b3..b795de362eea 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1323-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1323-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1323-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1323`, `temurin-8-tools-deps-1.11.1.1323-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1323-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1323-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1323-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1323`, `temurin-11-tools-deps-1.11.1.1323-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1323-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1323-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1323-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1323-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1323-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1323`, `temurin-17-tools-deps-1.11.1.1323-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1323`, `tools-deps-1.11.1.1323-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1323-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1323-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1323-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1323`, `temurin-20-tools-deps-1.11.1.1323-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/9524d0837f473931c3ab6fb771d870484b6a9160/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1347-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1347-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1347-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1347`, `temurin-8-tools-deps-1.11.1.1347-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1347-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1347-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1347-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1347`, `temurin-11-tools-deps-1.11.1.1347-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1347-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1347-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1347-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1347-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1347-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1347`, `temurin-17-tools-deps-1.11.1.1347-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1347`, `tools-deps-1.11.1.1347-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1347-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1347-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1347`, `temurin-20-tools-deps-1.11.1.1347-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 74272607d2d4..d1c912f5a89a 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.0-rc.0`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/Dockerfile) -- [`1.15.0-rc.0-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/slim/Dockerfile) -- [`1.15.0-rc.0-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/d3d6c1b3294454ca2977d637bd5307bac319ac3d/1.15/alpine/Dockerfile) -- [`1.15.0-rc.0-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24/Dockerfile) -- [`1.15.0-rc.0-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24-alpine/Dockerfile) -- [`1.15.0-rc.0-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-24-slim/Dockerfile) -- [`1.15.0-rc.0-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25/Dockerfile) -- [`1.15.0-rc.0-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25-alpine/Dockerfile) -- [`1.15.0-rc.0-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.15/otp-25-slim/Dockerfile) +- [`1.15.0-rc.1`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/Dockerfile) +- [`1.15.0-rc.1-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/slim/Dockerfile) +- [`1.15.0-rc.1-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/alpine/Dockerfile) +- [`1.15.0-rc.1-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24/Dockerfile) +- [`1.15.0-rc.1-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24-alpine/Dockerfile) +- [`1.15.0-rc.1-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24-slim/Dockerfile) +- [`1.15.0-rc.1-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25/Dockerfile) +- [`1.15.0-rc.1-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25-alpine/Dockerfile) +- [`1.15.0-rc.1-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) From b31873f4dbe1d9650ef0445b94e10cd525526c5c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Jun 2023 12:16:11 -0700 Subject: [PATCH 0357/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 1ea4e129a72b..ae38b5dce10f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.20.4-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/bullseye/Dockerfile) -- [`1.20.4-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/buster/Dockerfile) -- [`1.20.4-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.4-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/03d21ef7daf1f356142dcfaed18febf36efd391e/1.20/alpine3.18/Dockerfile) -- [`1.20.4-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/alpine3.17/Dockerfile) -- [`1.20.4-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.4-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.4-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.4-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.9-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/bullseye/Dockerfile) -- [`1.19.9-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/buster/Dockerfile) -- [`1.19.9-alpine3.18`, `1.19-alpine3.18`, `1.19.9-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/03d21ef7daf1f356142dcfaed18febf36efd391e/1.19/alpine3.18/Dockerfile) -- [`1.19.9-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/alpine3.17/Dockerfile) -- [`1.19.9-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.9-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.9-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.9-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.5-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/bullseye/Dockerfile) +- [`1.20.5-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/buster/Dockerfile) +- [`1.20.5-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.5-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.18/Dockerfile) +- [`1.20.5-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.17/Dockerfile) +- [`1.20.5-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.5-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.5-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.5-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.10-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/bullseye/Dockerfile) +- [`1.19.10-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/buster/Dockerfile) +- [`1.19.10-alpine3.18`, `1.19-alpine3.18`, `1.19.10-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.18/Dockerfile) +- [`1.19.10-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.17/Dockerfile) +- [`1.19.10-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.10-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.10-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.10-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.20.4`, `1.20`, `1`, `latest`: - - [`1.20.4-bullseye`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/bullseye/Dockerfile) - - [`1.20.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.4-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.4-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/5c6fa89055275c8f182ce96af9f5cde8399bdf76/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.9`, `1.19`: - - [`1.19.9-bullseye`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/bullseye/Dockerfile) - - [`1.19.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.9-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.9-nanoserver`, `1.19-nanoserver`: - - [`1.19.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/94d54011065e97aa42d411b71dde8b2764fc0ac7/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.5`, `1.20`, `1`, `latest`: + - [`1.20.5-bullseye`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/bullseye/Dockerfile) + - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.5-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.5-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.10`, `1.19`: + - [`1.19.10-bullseye`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/bullseye/Dockerfile) + - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.10-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.10-nanoserver`, `1.19-nanoserver`: + - [`1.19.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 052c256f26d43d59b7beaceff3526e562e6fe7ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Jun 2023 13:18:48 -0700 Subject: [PATCH 0358/2686] Run update.sh --- fedora/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 07addbbba21d..eae10c01b6e1 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/366412c8f9972718c1c8261fc7922eafbc448181/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/186fab33a61afe40cb5e6017434345312144e576/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/db4a019000e03732e124c8a07182165ea8d9564f/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3d4597fa202bd6306533e6e86e15ad26000ddf94/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/944c6b2747614a632a805fa0cc1579d5dc7a64be/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/827cc251772373314b15831fc2cdb78e7ca9a27c/x86_64/Dockerfile) # Quick reference (cont.) From 9188d7ab028f919a2339ad01c509c1875fbfe1a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Jun 2023 15:17:25 -0700 Subject: [PATCH 0359/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- ibmjava/README.md | 6 +++--- kibana/README.md | 2 +- logstash/README.md | 2 +- python/README.md | 32 ++++++++++++++++---------------- rabbitmq/README.md | 16 ++++++++-------- wordpress/README.md | 12 ++++++------ 8 files changed, 37 insertions(+), 37 deletions(-) diff --git a/bash/README.md b/bash/README.md index 371e02d5fb17..cc8b451d6d71 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230526`, `devel`, `devel-20230526-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/72ae68854dc12d31241d804f9879f374e185334a/devel/Dockerfile) +- [`devel-20230603`, `devel`, `devel-20230603-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/53a71c56a4b943dfab6ca7739b98af4e7ffdcab6/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 3422c3e7d268..5b164bc7ced0 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.1`](https://github.com/docker-library/elasticsearch/blob/229361a202bcd5b7c1ddfd7b52ebc4c79e884958/8/Dockerfile) +- [`8.8.0`](https://github.com/docker-library/elasticsearch/blob/3ecc4007656f868f1811566a766bff0c65d26242/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/elasticsearch/blob/e95712a301d6adacde7ef3d31d54dd9bca752426/7/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 48e6ec39d1ce..1920969f5c42 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/17c4cdb127eb02ebcb83a95737547cc0f86a3af7/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index c9e15b76ee0f..0b698e2d5a65 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.1`](https://github.com/docker-library/kibana/blob/e577f15420a471649acd96a337cf5f575924a18f/8/Dockerfile) +- [`8.8.0`](https://github.com/docker-library/kibana/blob/2770daca005958cbb53a576d90254567cc06100a/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/kibana/blob/6dc8cf4590a7259135398fe84648b76fdb79ac2e/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index dbdbad52df12..13167ad2ddf8 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.1`](https://github.com/docker-library/logstash/blob/da79914ffa9715c6db2f084ff5aec2700fefbab4/8/Dockerfile) +- [`8.8.0`](https://github.com/docker-library/logstash/blob/6b04b9094d63927600bee099ab482d6b7467d038/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/logstash/blob/963070bbacb3ca9dd3aea80abf24da2113254f81/7/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 43b12721c9ac..79a783b6b1ca 100644 --- a/python/README.md +++ b/python/README.md @@ -52,18 +52,18 @@ WARNING: - [`3.10.11-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.17/Dockerfile) - [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9.16-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/bullseye/Dockerfile) -- [`3.9.16-slim-bullseye`, `3.9-slim-bullseye`, `3.9.16-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-bullseye/Dockerfile) -- [`3.9.16-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/buster/Dockerfile) -- [`3.9.16-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/slim-buster/Dockerfile) -- [`3.9.16-alpine3.18`, `3.9-alpine3.18`, `3.9.16-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.9/alpine3.18/Dockerfile) -- [`3.9.16-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/alpine3.17/Dockerfile) -- [`3.8.16-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/bullseye/Dockerfile) -- [`3.8.16-slim-bullseye`, `3.8-slim-bullseye`, `3.8.16-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-bullseye/Dockerfile) -- [`3.8.16-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/buster/Dockerfile) -- [`3.8.16-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/slim-buster/Dockerfile) -- [`3.8.16-alpine3.18`, `3.8-alpine3.18`, `3.8.16-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.8/alpine3.18/Dockerfile) -- [`3.8.16-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/alpine3.17/Dockerfile) +- [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) +- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/slim-bullseye/Dockerfile) +- [`3.9.17-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/buster/Dockerfile) +- [`3.9.17-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/slim-buster/Dockerfile) +- [`3.9.17-alpine3.18`, `3.9-alpine3.18`, `3.9.17-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.18/Dockerfile) +- [`3.9.17-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.17/Dockerfile) +- [`3.8.17-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) +- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/slim-bullseye/Dockerfile) +- [`3.8.17-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/buster/Dockerfile) +- [`3.8.17-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/slim-buster/Dockerfile) +- [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.18/Dockerfile) +- [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.17/Dockerfile) - [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) - [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-bullseye/Dockerfile) - [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/buster/Dockerfile) @@ -94,10 +94,10 @@ WARNING: - `3.10.11-windowsservercore`, `3.10-windowsservercore`: - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9.16`, `3.9`: - - [`3.9.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.9/bullseye/Dockerfile) -- `3.8.16`, `3.8`: - - [`3.8.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.8/bullseye/Dockerfile) +- `3.9.17`, `3.9`: + - [`3.9.17-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) +- `3.8.17`, `3.8`: + - [`3.8.17-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) - `3.7.16`, `3.7`: - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 5331145d2ce9..f2536332b14c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.12.0-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/Dockerfile) - [`3.12.0-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.17`, `3.11`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.11/ubuntu/Dockerfile) -- [`3.11.17-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.17-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.11/alpine/Dockerfile) -- [`3.11.17-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.23`, `3.10`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.10/ubuntu/Dockerfile) -- [`3.10.23-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.23-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.10/alpine/Dockerfile) -- [`3.10.23-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/fc1ecda3097cc7a13bd8d667a0dea7f95f3b15a1/3.11/ubuntu/Dockerfile) +- [`3.11.18-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/fc1ecda3097cc7a13bd8d667a0dea7f95f3b15a1/3.11/alpine/Dockerfile) +- [`3.11.18-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/420853475993345bb4b85c307589ed56667610be/3.10/ubuntu/Dockerfile) +- [`3.10.24-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/420853475993345bb4b85c307589ed56667610be/3.10/alpine/Dockerfile) +- [`3.10.24-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) - [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 132f562a61b2..d53298fc5a57 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/apache/Dockerfile) +- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.0/apache/Dockerfile) - [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm/Dockerfile) - [`6.2.2-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.2-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/apache/Dockerfile) +- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.1/apache/Dockerfile) - [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm/Dockerfile) - [`6.2.2-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/apache/Dockerfile) +- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.2/apache/Dockerfile) - [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm/Dockerfile) - [`6.2.2-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm-alpine/Dockerfile) -- [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile) -- [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile) -- [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile) +- [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) +- [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) +- [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) # Quick reference (cont.) From f47e44949c737467cc09294a2e4f5bc067e1cbcb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Jun 2023 10:18:26 -0700 Subject: [PATCH 0360/2686] Run update.sh --- python/README.md | 99 ++++++++++++++++++++++-------------------------- 1 file changed, 46 insertions(+), 53 deletions(-) diff --git a/python/README.md b/python/README.md index 79a783b6b1ca..25f89e090049 100644 --- a/python/README.md +++ b/python/README.md @@ -28,30 +28,28 @@ WARNING: ## Simple Tags -- [`3.12.0b1-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/bullseye/Dockerfile) -- [`3.12.0b1-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0b1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0b1-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/buster/Dockerfile) -- [`3.12.0b1-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/slim-buster/Dockerfile) -- [`3.12.0b1-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0b1-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0b1-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0b1-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.3-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) -- [`3.11.3-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.3-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-bullseye/Dockerfile) -- [`3.11.3-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/buster/Dockerfile) -- [`3.11.3-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/slim-buster/Dockerfile) -- [`3.11.3-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.3-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.11/alpine3.18/Dockerfile) -- [`3.11.3-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/alpine3.17/Dockerfile) -- [`3.11.3-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.3-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.11-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/bullseye/Dockerfile) -- [`3.10.11-slim-bullseye`, `3.10-slim-bullseye`, `3.10.11-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-bullseye/Dockerfile) -- [`3.10.11-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/buster/Dockerfile) -- [`3.10.11-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/slim-buster/Dockerfile) -- [`3.10.11-alpine3.18`, `3.10-alpine3.18`, `3.10.11-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.10/alpine3.18/Dockerfile) -- [`3.10.11-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/alpine3.17/Dockerfile) -- [`3.10.11-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.11-windowsservercore-1809`, `3.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0b2-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/bullseye/Dockerfile) +- [`3.12.0b2-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0b2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0b2-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/buster/Dockerfile) +- [`3.12.0b2-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0b2-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0b2-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0b2-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0b2-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) +- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/slim-bullseye/Dockerfile) +- [`3.11.4-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/buster/Dockerfile) +- [`3.11.4-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/slim-buster/Dockerfile) +- [`3.11.4-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.4-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.18/Dockerfile) +- [`3.11.4-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.17/Dockerfile) +- [`3.11.4-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.4-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.12-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/bullseye/Dockerfile) +- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/slim-bullseye/Dockerfile) +- [`3.10.12-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/buster/Dockerfile) +- [`3.10.12-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/slim-buster/Dockerfile) +- [`3.10.12-alpine3.18`, `3.10-alpine3.18`, `3.10.12-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.18/Dockerfile) +- [`3.10.12-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.17/Dockerfile) - [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) - [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/slim-bullseye/Dockerfile) - [`3.9.17-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/buster/Dockerfile) @@ -64,42 +62,37 @@ WARNING: - [`3.8.17-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/slim-buster/Dockerfile) - [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.18/Dockerfile) - [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.17/Dockerfile) -- [`3.7.16-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) -- [`3.7.16-slim-bullseye`, `3.7-slim-bullseye`, `3.7.16-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-bullseye/Dockerfile) -- [`3.7.16-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/buster/Dockerfile) -- [`3.7.16-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/slim-buster/Dockerfile) -- [`3.7.16-alpine3.18`, `3.7-alpine3.18`, `3.7.16-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/090760cb09d6061d973a68d7fa148cbbde100cb9/3.7/alpine3.18/Dockerfile) -- [`3.7.16-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/alpine3.17/Dockerfile) +- [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/bullseye/Dockerfile) +- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/slim-bullseye/Dockerfile) +- [`3.7.17-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/buster/Dockerfile) +- [`3.7.17-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/slim-buster/Dockerfile) +- [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.18/Dockerfile) +- [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.17/Dockerfile) ## Shared Tags -- `3.12.0b1`, `3.12-rc`: - - [`3.12.0b1-bullseye`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/bullseye/Dockerfile) - - [`3.12.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0b1-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/fcb79b9dc3e900964cc01d5271ada11a8c2f435e/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.11.3`, `3.11`, `3`, `latest`: - - [`3.11.3-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.11/bullseye/Dockerfile) - - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.3-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/e730c629591d925f7502caeec840c033a19c7cb5/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10.11`, `3.10`: - - [`3.10.11-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.10/bullseye/Dockerfile) - - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10.11-windowsservercore`, `3.10-windowsservercore`: - - [`3.10.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/ea370b5e2b44af9837ca7634f34c4e3a5c9067fc/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b2`, `3.12-rc`: + - [`3.12.0b2-bullseye`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/bullseye/Dockerfile) + - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b2-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.11.4`, `3.11`, `3`, `latest`: + - [`3.11.4-bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) + - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.4-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.10.12`, `3.10`: + - [`3.10.12-bullseye`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/bullseye/Dockerfile) - `3.9.17`, `3.9`: - [`3.9.17-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) - `3.8.17`, `3.8`: - [`3.8.17-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) -- `3.7.16`, `3.7`: - - [`3.7.16-bullseye`](https://github.com/docker-library/python/blob/331890ef059fae05f84c652520b78c340526dc71/3.7/bullseye/Dockerfile) +- `3.7.17`, `3.7`: + - [`3.7.17-bullseye`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/bullseye/Dockerfile) # Quick reference (cont.) From a1ae1f9ece8df1a6ecd3114eb0fb91d07fd0c745 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Jun 2023 15:16:08 -0700 Subject: [PATCH 0361/2686] Run update.sh --- emqx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index db2b2ee755c7..4a605b17e879 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.18`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/129bff4ea692ede8157aa3165a8c278bf982f47d/4.4/Dockerfile) -- [`5.0.24`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/7585bcd6f772834c6bdd4a94be9ee4e71c9d4772/5.0/Dockerfile) +- [`5.0.25`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/a751d86bd0a1ed0785cf960f77f1a44ba7296825/5.0/Dockerfile) # Quick reference (cont.) From eb4c5b58b5f79c1165238da837aba479a4eeb686 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Jun 2023 16:18:38 -0700 Subject: [PATCH 0362/2686] Run update.sh --- backdrop/README.md | 4 ++-- jruby/README.md | 20 ++++++++++---------- rabbitmq/README.md | 16 ++++++++-------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index dad88ff7684d..16157320f600 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.24.2`, `1.24`, `1`, `1.24.2-apache`, `1.24-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/c6dc310e67b2b9d8778c8ed36aa38adfb90ebd9a/1/apache/Dockerfile) -- [`1.24.2-fpm`, `1.24-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/c6dc310e67b2b9d8778c8ed36aa38adfb90ebd9a/1/fpm/Dockerfile) +- [`1.25.1`, `1.25`, `1`, `1.25.1-apache`, `1.25-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/37aae82be48457f524a3cd475ea55d7c1ce0ef2c/1/apache/Dockerfile) +- [`1.25.1-fpm`, `1.25-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/37aae82be48457f524a3cd475ea55d7c1ce0ef2c/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index 0cc9e0db8fcf..e08e33582f5c 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.2`, `9.4-jre`, `9.4-jre8`, `9.4.2-jre`, `9.4.2-jre8`, `9.4.2.0`, `9.4.2.0-jre`, `9.4.2.0-jre8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.2-jdk`, `9.4.2-jdk8`, `9.4.2.0-jdk`, `9.4.2.0-jdk8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.2-jre11`, `9.4.2.0-jre11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.2-jdk11`, `9.4.2.0-jdk11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.2-jdk17`, `9.4.2.0-jdk17`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.4/jdk17/Dockerfile) -- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/4cd6f9e7d6b5a1ede66beb818a8b343e1eb14631/9.3/jdk17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk17/Dockerfile) +- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk17/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f2536332b14c..42610fc9bc14 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/Dockerfile) +- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b7d3633626f3dff15433626045bfcfdba7a5fa3e/3.12/ubuntu/Dockerfile) - [`3.12.0-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/Dockerfile) +- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b7d3633626f3dff15433626045bfcfdba7a5fa3e/3.12/alpine/Dockerfile) - [`3.12.0-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/fc1ecda3097cc7a13bd8d667a0dea7f95f3b15a1/3.11/ubuntu/Dockerfile) +- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/14833a0939f0cb97caf54270c9c90aca1a35c949/3.11/ubuntu/Dockerfile) - [`3.11.18-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/fc1ecda3097cc7a13bd8d667a0dea7f95f3b15a1/3.11/alpine/Dockerfile) +- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/14833a0939f0cb97caf54270c9c90aca1a35c949/3.11/alpine/Dockerfile) - [`3.11.18-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/420853475993345bb4b85c307589ed56667610be/3.10/ubuntu/Dockerfile) +- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/56b13d64f8314bcfe11e74afaa8f0e0882456a41/3.10/ubuntu/Dockerfile) - [`3.10.24-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/420853475993345bb4b85c307589ed56667610be/3.10/alpine/Dockerfile) +- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/56b13d64f8314bcfe11e74afaa8f0e0882456a41/3.10/alpine/Dockerfile) - [`3.10.24-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/8b63feadd40dbf009de8d0282ec9037e00560707/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/8b63feadd40dbf009de8d0282ec9037e00560707/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 9c923c4d6ce41d65aa138dce6570dc7054cb58ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Jun 2023 09:16:13 -0700 Subject: [PATCH 0363/2686] Run update.sh --- emqx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index 4a605b17e879..b6cca48436f1 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.18`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/129bff4ea692ede8157aa3165a8c278bf982f47d/4.4/Dockerfile) -- [`5.0.25`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/a751d86bd0a1ed0785cf960f77f1a44ba7296825/5.0/Dockerfile) +- [`5.0.26`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/ee9c3fd710eb7f04df3843656ec21a1be361afd5/5.0/Dockerfile) # Quick reference (cont.) From ebc95bed4badfa76d27032d8dd2625b8dcee2666 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Jun 2023 10:18:13 -0700 Subject: [PATCH 0364/2686] Run update.sh --- dart/README.md | 4 ++-- xwiki/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dart/README.md b/dart/README.md index 8506ffbb5660..a3835e114386 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.3-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.3`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/88c4c5e65633cfa5403a63dd7d7322b8a755a2a9/stable/bullseye/Dockerfile) -- [`3.1.0-63.1.beta-sdk`, `beta-sdk`, `3.1.0-63.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/88c4c5e65633cfa5403a63dd7d7322b8a755a2a9/beta/bullseye/Dockerfile) +- [`3.0.4-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.4`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3500bf22e81f09996d7523b632ef15c2e6c35cd5/stable/bullseye/Dockerfile) +- [`3.1.0-163.1.beta-sdk`, `beta-sdk`, `3.1.0-163.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3500bf22e81f09996d7523b632ef15c2e6c35cd5/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 763701a140f8..d18cf72dc156 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.4`, `15.4.0`, `15-mysql-tomcat`, `15.4-mysql-tomcat`, `15.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.4-postgres-tomcat`, `15.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.4-mariadb-tomcat`, `15.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.11`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c6a3184b3cebf7af272c9527f7b02f7d213dd8bf/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.12`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From b6a06c6c57d09761093dc24d7a4bc23d721c3d38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Jun 2023 14:18:28 -0700 Subject: [PATCH 0365/2686] Run update.sh --- arangodb/README.md | 2 +- tomee/README.md | 126 ++++++++++++++++++++++----------------------- 2 files changed, 64 insertions(+), 64 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 8699cdaa3472..36b5fd9ec3f0 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9`, `3.9.10`](https://github.com/arangodb/arangodb-docker/blob/83dcd50e8af2210c1315074d8c9260b9ff572e9f/alpine/3.9.10/Dockerfile) +- [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) - [`3.10`, `3.10.6`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) - [`3.11`, `3.11.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/900b2e2b330a213b9c965badd073df63eb3b615d/alpine/3.11.0/Dockerfile) diff --git a/tomee/README.md b/tomee/README.md index 4fd4a1e885e0..3e663728b8d3 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/c8cfd6070f39830c37eb33165c22ed626d2b5dbb/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 9be4997a0d025e774371a5867d5a915a5902f84f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Jun 2023 16:18:13 -0700 Subject: [PATCH 0366/2686] Run update.sh --- php/README.md | 129 ++++++++++++++++++++++---------------------------- 1 file changed, 56 insertions(+), 73 deletions(-) diff --git a/php/README.md b/php/README.md index 693867f2824f..2e51100e3a86 100644 --- a/php/README.md +++ b/php/README.md @@ -24,79 +24,62 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.7RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.7RC1-bullseye`, `8.2-rc-bullseye`, `8.2.7RC1-cli`, `8.2-rc-cli`, `8.2.7RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.7RC1-apache-bullseye`, `8.2-rc-apache-bullseye`, `8.2.7RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.7RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`, `8.2.7RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.7RC1-zts-bullseye`, `8.2-rc-zts-bullseye`, `8.2.7RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.7RC1-cli-buster`, `8.2-rc-cli-buster`, `8.2.7RC1-buster`, `8.2-rc-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/cli/Dockerfile) -- [`8.2.7RC1-apache-buster`, `8.2-rc-apache-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/apache/Dockerfile) -- [`8.2.7RC1-fpm-buster`, `8.2-rc-fpm-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/fpm/Dockerfile) -- [`8.2.7RC1-zts-buster`, `8.2-rc-zts-buster`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/buster/zts/Dockerfile) -- [`8.2.7RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.7RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.7RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.7RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.7RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.7RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.7RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.7RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.7RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.7RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.7RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.7RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/4869ba0d23d9a17fdb1103d94b37bb4e60ae5453/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.6-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.6-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.6-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.6`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/cli/Dockerfile) -- [`8.2.6-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.6-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/apache/Dockerfile) -- [`8.2.6-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.6-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/fpm/Dockerfile) -- [`8.2.6-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.6-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/bullseye/zts/Dockerfile) -- [`8.2.6-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.6-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/cli/Dockerfile) -- [`8.2.6-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/apache/Dockerfile) -- [`8.2.6-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/fpm/Dockerfile) -- [`8.2.6-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/buster/zts/Dockerfile) -- [`8.2.6-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.6-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.6-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.6-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.6-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.6-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.6-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.6-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.6-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.6-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.6-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.6-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/21967e6cd5f1240093d4f0b03d579397571cab9c/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.20RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.20RC1-bullseye`, `8.1-rc-bullseye`, `8.1.20RC1-cli`, `8.1-rc-cli`, `8.1.20RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.20RC1-apache-bullseye`, `8.1-rc-apache-bullseye`, `8.1.20RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.20RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`, `8.1.20RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.20RC1-zts-bullseye`, `8.1-rc-zts-bullseye`, `8.1.20RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.20RC1-cli-buster`, `8.1-rc-cli-buster`, `8.1.20RC1-buster`, `8.1-rc-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/cli/Dockerfile) -- [`8.1.20RC1-apache-buster`, `8.1-rc-apache-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/apache/Dockerfile) -- [`8.1.20RC1-fpm-buster`, `8.1-rc-fpm-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/fpm/Dockerfile) -- [`8.1.20RC1-zts-buster`, `8.1-rc-zts-buster`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/buster/zts/Dockerfile) -- [`8.1.20RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.20RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.20RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.20RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.20RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.20RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.20RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.20RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.20RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.20RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.20RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.20RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/1a6d57c1a3a88f6cc2d1897c03ca610a6cde5f8f/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.20RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.20RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.20RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.20RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.19-cli-bullseye`, `8.1-cli-bullseye`, `8.1.19-bullseye`, `8.1-bullseye`, `8.1.19-cli`, `8.1-cli`, `8.1.19`, `8.1`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/cli/Dockerfile) -- [`8.1.19-apache-bullseye`, `8.1-apache-bullseye`, `8.1.19-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/apache/Dockerfile) -- [`8.1.19-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.19-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/fpm/Dockerfile) -- [`8.1.19-zts-bullseye`, `8.1-zts-bullseye`, `8.1.19-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/bullseye/zts/Dockerfile) -- [`8.1.19-cli-buster`, `8.1-cli-buster`, `8.1.19-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/cli/Dockerfile) -- [`8.1.19-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/apache/Dockerfile) -- [`8.1.19-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/fpm/Dockerfile) -- [`8.1.19-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/buster/zts/Dockerfile) -- [`8.1.19-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.19-alpine3.18`, `8.1-alpine3.18`, `8.1.19-cli-alpine`, `8.1-cli-alpine`, `8.1.19-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.19-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.19-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.19-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.19-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.19-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.19-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.19-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.19-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/cb2f0def56281d92c816007d0e7f296bdfd57b82/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.19-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.19-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.19-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.19-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/da2ade3b73f71268154913c4d999eba70bee253f/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.28-cli-bullseye`, `8.0-cli-bullseye`, `8.0.28-bullseye`, `8.0-bullseye`, `8.0.28-cli`, `8.0-cli`, `8.0.28`, `8.0`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/cli/Dockerfile) -- [`8.0.28-apache-bullseye`, `8.0-apache-bullseye`, `8.0.28-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/apache/Dockerfile) -- [`8.0.28-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.28-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/fpm/Dockerfile) -- [`8.0.28-zts-bullseye`, `8.0-zts-bullseye`, `8.0.28-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/bullseye/zts/Dockerfile) -- [`8.0.28-cli-buster`, `8.0-cli-buster`, `8.0.28-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/cli/Dockerfile) -- [`8.0.28-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/apache/Dockerfile) -- [`8.0.28-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/fpm/Dockerfile) -- [`8.0.28-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/0b09e018e1259fc06c80bc8905d0c7fda873fcce/8.0/buster/zts/Dockerfile) -- [`8.0.28-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.28-alpine3.16`, `8.0-alpine3.16`, `8.0.28-cli-alpine`, `8.0-cli-alpine`, `8.0.28-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.28-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.28-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/fpm/Dockerfile) -- [`8.0.28-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.28-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/10f96dc6d91e399792bdd2cd989e2b326f68a29f/8.0/alpine3.16/zts/Dockerfile) +- [`8.3.0alpha1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha1-bullseye`, `8.3-rc-bullseye`, `8.3.0alpha1-cli`, `8.3-rc-cli`, `8.3.0alpha1`, `8.3-rc`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0alpha1-apache-bullseye`, `8.3-rc-apache-bullseye`, `8.3.0alpha1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0alpha1-fpm-bullseye`, `8.3-rc-fpm-bullseye`, `8.3.0alpha1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0alpha1-zts-bullseye`, `8.3-rc-zts-bullseye`, `8.3.0alpha1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0alpha1-cli-buster`, `8.3-rc-cli-buster`, `8.3.0alpha1-buster`, `8.3-rc-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/cli/Dockerfile) +- [`8.3.0alpha1-apache-buster`, `8.3-rc-apache-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/apache/Dockerfile) +- [`8.3.0alpha1-fpm-buster`, `8.3-rc-fpm-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/fpm/Dockerfile) +- [`8.3.0alpha1-zts-buster`, `8.3-rc-zts-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/zts/Dockerfile) +- [`8.3.0alpha1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0alpha1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0alpha1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0alpha1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0alpha1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0alpha1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.7-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.7-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.7-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.7`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/cli/Dockerfile) +- [`8.2.7-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/apache/Dockerfile) +- [`8.2.7-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/fpm/Dockerfile) +- [`8.2.7-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.7-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/zts/Dockerfile) +- [`8.2.7-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.7-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/cli/Dockerfile) +- [`8.2.7-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/apache/Dockerfile) +- [`8.2.7-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/fpm/Dockerfile) +- [`8.2.7-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/zts/Dockerfile) +- [`8.2.7-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.7-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.7-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.7-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.7-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.7-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.7-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.7-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.7-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.7-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.7-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.7-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.20-cli-bullseye`, `8.1-cli-bullseye`, `8.1.20-bullseye`, `8.1-bullseye`, `8.1.20-cli`, `8.1-cli`, `8.1.20`, `8.1`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/cli/Dockerfile) +- [`8.1.20-apache-bullseye`, `8.1-apache-bullseye`, `8.1.20-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/apache/Dockerfile) +- [`8.1.20-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.20-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/fpm/Dockerfile) +- [`8.1.20-zts-bullseye`, `8.1-zts-bullseye`, `8.1.20-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/zts/Dockerfile) +- [`8.1.20-cli-buster`, `8.1-cli-buster`, `8.1.20-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/cli/Dockerfile) +- [`8.1.20-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/apache/Dockerfile) +- [`8.1.20-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/fpm/Dockerfile) +- [`8.1.20-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/zts/Dockerfile) +- [`8.1.20-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.20-alpine3.18`, `8.1-alpine3.18`, `8.1.20-cli-alpine`, `8.1-cli-alpine`, `8.1.20-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.20-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.20-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.20-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.20-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.20-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.20-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.20-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.20-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.20-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.20-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.20-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.20-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/zts/Dockerfile) +- [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/cli/Dockerfile) +- [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/apache/Dockerfile) +- [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/fpm/Dockerfile) +- [`8.0.29-zts-bullseye`, `8.0-zts-bullseye`, `8.0.29-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/zts/Dockerfile) +- [`8.0.29-cli-buster`, `8.0-cli-buster`, `8.0.29-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/cli/Dockerfile) +- [`8.0.29-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/apache/Dockerfile) +- [`8.0.29-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/fpm/Dockerfile) +- [`8.0.29-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/zts/Dockerfile) +- [`8.0.29-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.29-alpine3.16`, `8.0-alpine3.16`, `8.0.29-cli-alpine`, `8.0-cli-alpine`, `8.0.29-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/cli/Dockerfile) +- [`8.0.29-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.29-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/fpm/Dockerfile) +- [`8.0.29-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.29-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) From a5414cfedfc163e9b6de3deec4392fb0f94307e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Jun 2023 17:18:46 -0700 Subject: [PATCH 0367/2686] Run update.sh --- drupal/README.md | 10 +++---- haproxy/README.md | 4 +-- julia/README.md | 26 +++++++++--------- mongo/README.md | 30 ++++++++++----------- open-liberty/README.md | 54 ++++++++++++++++++------------------- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 6 files changed, 86 insertions(+), 86 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 6828a576ea4f..46ebc96f272e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -58,11 +58,11 @@ WARNING: - [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-buster/Dockerfile) - [`9.4.15-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-buster/Dockerfile) - [`9.4.15-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.97-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.97-php8.0-apache`, `7-php8.0-apache`, `7.97-php8.0`, `7-php8.0`, `7.97-apache-bullseye`, `7-apache-bullseye`, `7.97-apache`, `7-apache`, `7.97`, `7`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-bullseye/Dockerfile) -- [`7.97-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.97-php8.0-fpm`, `7-php8.0-fpm`, `7.97-fpm-bullseye`, `7-fpm-bullseye`, `7.97-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.97-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.97-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/apache-buster/Dockerfile) -- [`7.97-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.97-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-buster/Dockerfile) -- [`7.97-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.97-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0025acc33c35bd02fbe65d4aa8d80e2c6bdb0c4c/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.98-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.98-php8.0-apache`, `7-php8.0-apache`, `7.98-php8.0`, `7-php8.0`, `7.98-apache-bullseye`, `7-apache-bullseye`, `7.98-apache`, `7-apache`, `7.98`, `7`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/apache-bullseye/Dockerfile) +- [`7.98-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.98-php8.0-fpm`, `7-php8.0-fpm`, `7.98-fpm-bullseye`, `7-fpm-bullseye`, `7.98-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.98-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.98-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/apache-buster/Dockerfile) +- [`7.98-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.98-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-buster/Dockerfile) +- [`7.98-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.98-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 1e6bb847f246..163d12779e11 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,8 +28,8 @@ WARNING: - [`2.9-dev0-alpine`, `2.9-dev-alpine`, `2.9-dev0-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.9/alpine/Dockerfile) - [`2.8.0`, `2.8`, `lts`, `latest`, `2.8.0-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/Dockerfile) - [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.8/alpine/Dockerfile) -- [`2.7.8`, `2.7`, `2.7.8-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/b5e4baa466adb533d8f644e1ef514a4301addcb1/2.7/Dockerfile) -- [`2.7.8-alpine`, `2.7-alpine`, `2.7.8-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.7/alpine/Dockerfile) +- [`2.7.9`, `2.7`, `2.7.9-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/Dockerfile) +- [`2.7.9-alpine`, `2.7-alpine`, `2.7.9-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/alpine/Dockerfile) - [`2.6.13`, `2.6`, `2.6.13-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) - [`2.6.13-alpine`, `2.6-alpine`, `2.6.13-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.6/alpine/Dockerfile) - [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) diff --git a/julia/README.md b/julia/README.md index b28f5ced2a36..66faea0bc680 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.0-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/bullseye/Dockerfile) -- [`1.9.0-buster`, `1.9-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/buster/Dockerfile) -- [`1.9.0-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.0-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.9/alpine3.18/Dockerfile) -- [`1.9.0-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/alpine3.17/Dockerfile) -- [`1.9.0-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.0-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.9.1-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/bullseye/Dockerfile) +- [`1.9.1-buster`, `1.9-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/buster/Dockerfile) +- [`1.9.1-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.1-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.18/Dockerfile) +- [`1.9.1-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.17/Dockerfile) +- [`1.9.1-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.1-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/buster/Dockerfile) - [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) @@ -43,13 +43,13 @@ WARNING: ## Shared Tags -- `1.9.0`, `1.9`, `1`, `latest`: - - [`1.9.0-bullseye`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/bullseye/Dockerfile) - - [`1.9.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) -- `1.9.0-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.9.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.1`, `1.9`, `1`, `latest`: + - [`1.9.1-bullseye`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/bullseye/Dockerfile) + - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.1-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index e0aaa38e172d..8f3e8a1dbe14 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.0-rc2-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/Dockerfile) -- [`7.0.0-rc2-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc2-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc2-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc2-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc3-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/Dockerfile) +- [`7.0.0-rc3-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc3-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc3-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc3-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.6-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `7.0.0-rc2`, `7.0-rc`: - - [`7.0.0-rc2-jammy`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/Dockerfile) - - [`7.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc2-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc2-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ae4ea4edd08de25234c5b7dc52b5352a026dba4f/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc3`, `7.0-rc`: + - [`7.0.0-rc3-jammy`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/Dockerfile) + - [`7.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc3-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc3-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.6`, `6.0`, `6`, `latest`: - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index 11dada9ab1e2..fec8a2d3ffa1 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.4/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/9235f460739bba59ae66a6415298de1fedc5bb58/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index a70a1c1ff776..4e26dd1c9e0c 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.4/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/b94c5d2003c31111076e504084a5d59500835f74/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From cc804a101169ebd07fcfb6f9624e06c8fbe47559 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Jun 2023 12:16:12 -0700 Subject: [PATCH 0368/2686] Run update.sh --- erlang/README.md | 18 +++++++++--------- mariadb/README.md | 17 ++++++++--------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 0ab9ccb2c8ef..040ebd9a1db2 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.0.0`, `26.0.0`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/Dockerfile) -- [`26.0.0.0-slim`, `26.0.0-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/26/slim/Dockerfile) -- [`26.0.0.0-alpine`, `26.0.0-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/b99497690af4fc92ab414ff79aceffabea8a3c28/26/alpine/Dockerfile) -- [`25.3.2.1`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/Dockerfile) -- [`25.3.2.1-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/slim/Dockerfile) -- [`25.3.2.1-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/25/alpine/Dockerfile) +- [`26.0.1.0`, `26.0.1`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/Dockerfile) +- [`26.0.1.0-slim`, `26.0.1-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/slim/Dockerfile) +- [`26.0.1.0-alpine`, `26.0.1-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/alpine/Dockerfile) +- [`25.3.2.2`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/Dockerfile) +- [`25.3.2.2-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/slim/Dockerfile) +- [`25.3.2.2-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/alpine/Dockerfile) - [`24.3.4.12`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/Dockerfile) - [`24.3.4.12-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/slim/Dockerfile) - [`24.3.4.12-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/alpine/Dockerfile) -- [`23.3.4.18`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/Dockerfile) -- [`23.3.4.18-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/slim/Dockerfile) -- [`23.3.4.18-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/23/alpine/Dockerfile) +- [`23.3.4.19`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/Dockerfile) +- [`23.3.4.19-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/slim/Dockerfile) +- [`23.3.4.19-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/alpine/Dockerfile) - [`22.3.4.26`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/Dockerfile) - [`22.3.4.26-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/slim/Dockerfile) - [`22.3.4.26-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/alpine/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index a87687911d9a..40b66d95f848 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,15 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.0.1-rc-jammy`, `11.0-rc-jammy`, `11.0.1-rc`, `11.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/11.0/Dockerfile) -- [`10.11.3-jammy`, `10.11-jammy`, `10-jammy`, `jammy`, `lts-jammy`, `10.11.3`, `10.11`, `10`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.11/Dockerfile) -- [`10.10.4-jammy`, `10.10-jammy`, `10.10.4`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.10/Dockerfile) -- [`10.9.6-jammy`, `10.9-jammy`, `10.9.6`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.9/Dockerfile) -- [`10.8.8-jammy`, `10.8-jammy`, `10.8.8`, `10.8`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.8/Dockerfile) -- [`10.6.13-focal`, `10.6-focal`, `10.6.13`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.6/Dockerfile) -- [`10.5.20-focal`, `10.5-focal`, `10.5.20`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.5/Dockerfile) -- [`10.4.29-focal`, `10.4-focal`, `10.4.29`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.4/Dockerfile) -- [`10.3.39-focal`, `10.3-focal`, `10.3.39`, `10.3`](https://github.com/MariaDB/mariadb-docker/blob/b1f92f6f41036992f932f339ba6074ab43809368/10.3/Dockerfile) +- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/11.1/Dockerfile) +- [`11.0.2-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/11.0/Dockerfile) +- [`10.11.4-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.4`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.11/Dockerfile) +- [`10.10.5-jammy`, `10.10-jammy`, `10.10.5`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.10/Dockerfile) +- [`10.9.7-jammy`, `10.9-jammy`, `10.9.7`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.9/Dockerfile) +- [`10.6.14-focal`, `10.6-focal`, `10.6.14`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.6/Dockerfile) +- [`10.5.21-focal`, `10.5-focal`, `10.5.21`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.5/Dockerfile) +- [`10.4.30-focal`, `10.4-focal`, `10.4.30`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.4/Dockerfile) # Quick reference (cont.) From 732ec5374441e92af1c776d3bff88db2839f7d74 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Jun 2023 14:09:03 -0700 Subject: [PATCH 0369/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index c5523e1f614c..92b5a5c68cac 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.2-alpine3.17`, `20.2.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.2-alpine`, `20.2-alpine3.18`, `20.2.0-alpine`, `20.2.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/20/alpine3.18/Dockerfile) -- [`20`, `20-bullseye`, `20.2`, `20.2-bullseye`, `20.2.0`, `20.2.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20-slim`, `20.2-bullseye-slim`, `20.2-slim`, `20.2.0-bullseye-slim`, `20.2.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.2-buster`, `20.2.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster/Dockerfile) -- [`20-buster-slim`, `20.2-buster-slim`, `20.2.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/510d29310b47fbe7c6cfe9c0d0bc4f9e1ff59713/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.0-alpine`, `20.3.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.18/Dockerfile) +- [`20`, `20-bullseye`, `20.3`, `20.3-bullseye`, `20.3.0`, `20.3.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20-slim`, `20.3-bullseye-slim`, `20.3-slim`, `20.3.0-bullseye-slim`, `20.3.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.3-buster`, `20.3.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster/Dockerfile) +- [`20-buster-slim`, `20.3-buster-slim`, `20.3.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.0-alpine`, `18.16.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.18/Dockerfile) - [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) From cb4abd706b1ecb7d960631a9241361b78e446883 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Jun 2023 17:19:03 -0700 Subject: [PATCH 0370/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- haproxy/README.md | 8 ++++---- openjdk/README.md | 36 ++++++++++++++++++------------------ tomcat/README.md | 30 +++++++++++++++--------------- 4 files changed, 45 insertions(+), 45 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 0d02881101c3..21f9d6f4d7be 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/7386447a19b39efc3d3dab5a05a7bef806ce274e/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 163d12779e11..357b7164352f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -30,10 +30,10 @@ WARNING: - [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.8/alpine/Dockerfile) - [`2.7.9`, `2.7`, `2.7.9-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/Dockerfile) - [`2.7.9-alpine`, `2.7-alpine`, `2.7.9-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/alpine/Dockerfile) -- [`2.6.13`, `2.6`, `2.6.13-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/aad0f7b69e95354996d9cfd7ed8cdc9cd28d3298/2.6/Dockerfile) -- [`2.6.13-alpine`, `2.6-alpine`, `2.6.13-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.6/alpine/Dockerfile) -- [`2.4.22`, `2.4`, `2.4.22-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/010b099f11c898314bf1e3c90c19ed3bf6cc89e2/2.4/Dockerfile) -- [`2.4.22-alpine`, `2.4-alpine`, `2.4.22-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.4/alpine/Dockerfile) +- [`2.6.14`, `2.6`, `2.6.14-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/Dockerfile) +- [`2.6.14-alpine`, `2.6-alpine`, `2.6.14-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/alpine/Dockerfile) +- [`2.4.23`, `2.4`, `2.4.23-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/Dockerfile) +- [`2.4.23-alpine`, `2.4-alpine`, `2.4.23-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/alpine/Dockerfile) - [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) - [`2.2.29-alpine`, `2.2-alpine`, `2.2.29-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.2/alpine/Dockerfile) - [`2.0.31`, `2.0`, `2.0.31-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 32cc8398b112..54f84fc58980 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`21-ea-25-jdk-oraclelinux8`, `21-ea-25-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-25-jdk-oracle`, `21-ea-25-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-25-jdk-oraclelinux7`, `21-ea-25-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-25-jdk-bullseye`, `21-ea-25-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/bullseye/Dockerfile) -- [`21-ea-25-jdk-slim-bullseye`, `21-ea-25-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-25-jdk-slim`, `21-ea-25-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-25-jdk-buster`, `21-ea-25-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/buster/Dockerfile) -- [`21-ea-25-jdk-slim-buster`, `21-ea-25-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/slim-buster/Dockerfile) -- [`21-ea-25-jdk-windowsservercore-ltsc2022`, `21-ea-25-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-25-jdk-windowsservercore-1809`, `21-ea-25-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-25-jdk-nanoserver-1809`, `21-ea-25-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-26-jdk-oraclelinux8`, `21-ea-26-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-26-jdk-oracle`, `21-ea-26-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-26-jdk-oraclelinux7`, `21-ea-26-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-26-jdk-bullseye`, `21-ea-26-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/bullseye/Dockerfile) +- [`21-ea-26-jdk-slim-bullseye`, `21-ea-26-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-26-jdk-slim`, `21-ea-26-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-26-jdk-buster`, `21-ea-26-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/buster/Dockerfile) +- [`21-ea-26-jdk-slim-buster`, `21-ea-26-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-buster/Dockerfile) +- [`21-ea-26-jdk-windowsservercore-ltsc2022`, `21-ea-26-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-26-jdk-windowsservercore-1809`, `21-ea-26-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-26-jdk-nanoserver-1809`, `21-ea-26-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `21-ea-25-jdk`, `21-ea-25`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-25-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-25-jdk-windowsservercore`, `21-ea-25-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-25-jdk-nanoserver`, `21-ea-25-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a6b5f21dfd18785232abe4a467a440443dc39235/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-26-jdk`, `21-ea-26`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-26-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-26-jdk-windowsservercore`, `21-ea-26-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-26-jdk-nanoserver`, `21-ea-26-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 724f7f1cd8d6..30628179c0f5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -30,21 +30,21 @@ WARNING: - [`10.1.9-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.9-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.9-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.9-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.9-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.9-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.9-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.9-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.9-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.75-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.75-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.75-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.75`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.75-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.75-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.75-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.75-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.75-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.75-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.75-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.75-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.75-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.75-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.75-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.75-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.75-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.75-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.75-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.75-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.75-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.75-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.75-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.75-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.75-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.75-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.75-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.75-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.75-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.75-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.75-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.76-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.76-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.76-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.76`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.76-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.76-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.76-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.76-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.76-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.76-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.76-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.76-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.76-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.76-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.76-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.76-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.76-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.76-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.76-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.76-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.76-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.76-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.76-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.76-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.76-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.76-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.76-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.76-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.76-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.76-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.76-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.89-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.89-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.89-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.89`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.89-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.89-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.89-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-jammy/Dockerfile) - [`8.5.89-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-focal/Dockerfile) From ddb7ea44c5e4e7f6b641fb8e7501c892436c733c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Jun 2023 11:18:36 -0700 Subject: [PATCH 0371/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- photon/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index f79673eb9fd1..df3db3e9f319 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230604.0.155602`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4693da54ba7cef37ecbe495d378eb9d9c4deba56/Dockerfile.base) -- [`base-devel`, `base-devel-20230604.0.155602`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4693da54ba7cef37ecbe495d378eb9d9c4deba56/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230611.0.157136`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8c107a2ed9ee79927da495f556a81a6999221bab/Dockerfile.base) +- [`base-devel`, `base-devel-20230611.0.157136`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8c107a2ed9ee79927da495f556a81a6999221bab/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 070b5ff66ab0..2ea8a215d737 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ee8c4c68f687355e4dd9eccd137e7c6df06ac789/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/43edaa58caa74272b3c5c5b122dfa0b10cc0a53c/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 60f466c8c921..9ca0ba346128 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230603`, `latest`](https://github.com/vmware/photon-docker-image/blob/267817afb6cfcbca860d0c221f60ac941710724a/docker/Dockerfile) -- [`4.0`, `4.0-20230603`](https://github.com/vmware/photon-docker-image/blob/977e3c921b14414c1c12c4d1f2ec25b3e000308e/docker/Dockerfile) -- [`3.0`, `3.0-20230603`](https://github.com/vmware/photon-docker-image/blob/94da27914de550551b94776b6d75a3e897eee686/docker/Dockerfile) +- [`5.0`, `5.0-20230610`, `latest`](https://github.com/vmware/photon-docker-image/blob/a7070b63a1f39a8d3f2c9a3f04141ca7d38f908c/docker/Dockerfile) +- [`4.0`, `4.0-20230610`](https://github.com/vmware/photon-docker-image/blob/bfcc62e8b793dbd0713264dd9502ebe390038fae/docker/Dockerfile) +- [`3.0`, `3.0-20230610`](https://github.com/vmware/photon-docker-image/blob/d2b08740570639872a751eb2949ce70305c277be/docker/Dockerfile) # Quick reference (cont.) From 3d69479aab083e5b0fd4d344b59844ee561270c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Jun 2023 12:16:40 -0700 Subject: [PATCH 0372/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- composer/README.md | 2 +- telegraf/README.md | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4261050e57ae..25bef038b97f 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.0.20230517.1`](https://github.com/amazonlinux/container-images/blob/b681ad22b5dc7d459d771a9803bea14d34fe7ee6/Dockerfile) -- [`2`, `2.0.20230515.0`](https://github.com/amazonlinux/container-images/blob/414e8927d838c4ec3eec786702cd040e7e7ce8ca/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230515.0`](https://github.com/amazonlinux/container-images/blob/551da039c0c482176995ca033eb3753f0a490ea8/Dockerfile) +- [`2023`, `latest`, `2023.0.20230607.0`](https://github.com/amazonlinux/container-images/blob/5b32b6595a09f86581fd5c5ceadf96661b46775a/Dockerfile) +- [`2`, `2.0.20230530.0`](https://github.com/amazonlinux/container-images/blob/0ba6c8b0f5c91ec71e8bd3cdc7bc14d6ee765aa5/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230601.0`](https://github.com/amazonlinux/container-images/blob/fdd940257ea9f92da09305181bf08c4e7d865a4c/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index c75c342ce981..a7edebbdd655 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.7`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/cc32c94811040536eb15e46c251a5ee36d5da1ea/2.5/Dockerfile) +- [`2.5.8`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) - [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index d949c5bb8bda..1737da65d235 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.24`, `1.24.4`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.24/Dockerfile) -- [`1.24-alpine`, `1.24.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.24/alpine/Dockerfile) -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/5e6c5d77ad981314b6eae48641818c0cca11e6b2/telegraf/1.26/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.27/alpine/Dockerfile) # Quick reference (cont.) From f7218d5981095b2477017951be0d9e5e60a765ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Jun 2023 15:16:09 -0700 Subject: [PATCH 0373/2686] Run update.sh --- buildpack-deps/README.md | 18 +++++++++--------- haproxy/README.md | 8 ++++---- openjdk/README.md | 18 ++++++++++++++++++ 3 files changed, 31 insertions(+), 13 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 2ecfc901e354..08c33d7765f6 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) -- [`bookworm-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/scm/Dockerfile) -- [`bookworm`, `testing`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/Dockerfile) -- [`bullseye-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) -- [`bullseye-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/scm/Dockerfile) -- [`bullseye`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/Dockerfile) -- [`buster-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) -- [`buster-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/scm/Dockerfile) -- [`buster`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/Dockerfile) +- [`bookworm-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) +- [`bookworm-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/scm/Dockerfile) +- [`bookworm`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/Dockerfile) +- [`bullseye-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) +- [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/scm/Dockerfile) +- [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/Dockerfile) +- [`buster-curl`, `oldoldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) +- [`buster-scm`, `oldoldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/scm/Dockerfile) +- [`buster`, `oldoldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/Dockerfile) - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 357b7164352f..45a34c3f2e7a 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -34,10 +34,10 @@ WARNING: - [`2.6.14-alpine`, `2.6-alpine`, `2.6.14-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/alpine/Dockerfile) - [`2.4.23`, `2.4`, `2.4.23-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/Dockerfile) - [`2.4.23-alpine`, `2.4-alpine`, `2.4.23-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/alpine/Dockerfile) -- [`2.2.29`, `2.2`, `2.2.29-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/a341c5a4894f4f8194a5b05076767688d85d369d/2.2/Dockerfile) -- [`2.2.29-alpine`, `2.2-alpine`, `2.2.29-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.2/alpine/Dockerfile) -- [`2.0.31`, `2.0`, `2.0.31-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/Dockerfile) -- [`2.0.31-alpine`, `2.0-alpine`, `2.0.31-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/1842f4392f605e9f944c7f55415ddfc828301a31/2.0/alpine/Dockerfile) +- [`2.2.30`, `2.2`, `2.2.30-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/0e3884218d34cd77b8b59145d05e058be227b334/2.2/Dockerfile) +- [`2.2.30-alpine`, `2.2-alpine`, `2.2.30-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/0e3884218d34cd77b8b59145d05e058be227b334/2.2/alpine/Dockerfile) +- [`2.0.32`, `2.0`, `2.0.32-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/51e072f624e35ba473bb69e6d2815cb1dae0c7cc/2.0/Dockerfile) +- [`2.0.32-alpine`, `2.0-alpine`, `2.0.32-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/51e072f624e35ba473bb69e6d2815cb1dae0c7cc/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 54f84fc58980..48f2eecfbc2f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,6 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags +- [`22-ea-1-jdk-oraclelinux8`, `22-ea-1-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-1-jdk-oracle`, `22-ea-1-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-1-jdk-oraclelinux7`, `22-ea-1-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-1-jdk-bullseye`, `22-ea-1-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/bullseye/Dockerfile) +- [`22-ea-1-jdk-slim-bullseye`, `22-ea-1-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`, `22-ea-1-jdk-slim`, `22-ea-1-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-1-jdk-buster`, `22-ea-1-buster`, `22-ea-jdk-buster`, `22-ea-buster`, `22-jdk-buster`, `22-buster`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/buster/Dockerfile) +- [`22-ea-1-jdk-slim-buster`, `22-ea-1-slim-buster`, `22-ea-jdk-slim-buster`, `22-ea-slim-buster`, `22-jdk-slim-buster`, `22-slim-buster`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-buster/Dockerfile) +- [`22-ea-1-jdk-windowsservercore-ltsc2022`, `22-ea-1-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-1-jdk-windowsservercore-1809`, `22-ea-1-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-1-jdk-nanoserver-1809`, `22-ea-1-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-ea-26-jdk-oraclelinux8`, `21-ea-26-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-26-jdk-oracle`, `21-ea-26-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) - [`21-ea-26-jdk-oraclelinux7`, `21-ea-26-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux7/Dockerfile) - [`21-ea-26-jdk-bullseye`, `21-ea-26-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/bullseye/Dockerfile) @@ -54,6 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags +- `22-ea-1-jdk`, `22-ea-1`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-1-jdk-windowsservercore`, `22-ea-1-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-1-jdk-nanoserver`, `22-ea-1-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-ea-26-jdk`, `21-ea-26`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - [`21-ea-26-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) - [`21-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From fb67ec860f973f24b26a8aa3dd01cc8aeab91f4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Jun 2023 16:17:17 -0700 Subject: [PATCH 0374/2686] Run update.sh --- debian/README.md | 54 +++++++++++++++++++++++++++--------------------- gcc/README.md | 8 +++---- ghost/README.md | 4 ++-- node/README.md | 16 +++++++++----- tomcat/README.md | 38 +++++++++++++++++----------------- 5 files changed, 66 insertions(+), 54 deletions(-) diff --git a/debian/README.md b/debian/README.md index fa768ca35d3e..fd279a209de9 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,30 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230522`, `11.7`, `11`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230522-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230522`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230522-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/experimental/Dockerfile) -- [`oldstable`, `oldstable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/rc-buggy/Dockerfile) -- [`sid`, `sid-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/sid/Dockerfile) -- [`sid-slim`, `sid-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/sid/slim/Dockerfile) -- [`stable`, `stable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/stable/slim/Dockerfile) -- [`testing`, `testing-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/testing/slim/Dockerfile) -- [`unstable`, `unstable-20230522`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230522-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4648ad5c6feb1318b8a6c31502ebde8bb18ebb5e/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230612`, `12.0`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230612-slim`, `12.0-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230612`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230612-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230612`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230612-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/rc-buggy/Dockerfile) +- [`sid`, `sid-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/sid/Dockerfile) +- [`sid-slim`, `sid-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/sid/slim/Dockerfile) +- [`stable`, `stable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/slim/Dockerfile) +- [`testing`, `testing-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index 3a1c4ef12462..623942beae95 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/13/Dockerfile) -- [`12.3.0`, `12.3`, `12`, `12.3.0-bullseye`, `12.3-bullseye`, `12-bullseye`](https://github.com/docker-library/gcc/blob/dfa419750ef32e01ce5715a08533397f570f1133/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/9f10f9541f9736300c811cdb3f319c038a8b9c3a/11/Dockerfile) -- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/9/Dockerfile) +- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/9677600371602a897f576cf1d85852a3a26f71af/12/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bookworm`, `11.4-bookworm`, `11-bookworm`](https://github.com/docker-library/gcc/blob/8896a6fe1d596abcaea6c75c98337885ba4c27e8/11/Dockerfile) +- [`10.4.0`, `10.4`, `10`, `10.4.0-bookworm`, `10.4-bookworm`, `10-bookworm`](https://github.com/docker-library/gcc/blob/392d8bf4ee9d494f03331c540c1f0d7f32259ff1/10/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `9.5.0-bookworm`, `9.5-bookworm`, `9-bookworm`](https://github.com/docker-library/gcc/blob/0d98f7923b5ed7f5baec2506413c99e920cf6661/9/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index a8303c9f8860..3dfdaf469aaf 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.49.3`, `5.49`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7244a7250289a74268d00712232c91413213c612/5/debian/Dockerfile) -- [`5.49.3-alpine`, `5.49-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7244a7250289a74268d00712232c91413213c612/5/alpine/Dockerfile) +- [`5.51.0`, `5.51`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f872b8e6f20ccf9cd86b04e412e2f67d4e6aebe9/5/debian/Dockerfile) +- [`5.51.0-alpine`, `5.51-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f872b8e6f20ccf9cd86b04e412e2f67d4e6aebe9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 92b5a5c68cac..e9a54df2a895 100644 --- a/node/README.md +++ b/node/README.md @@ -26,18 +26,24 @@ WARNING: - [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.0-alpine`, `20.3.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.18/Dockerfile) -- [`20`, `20-bullseye`, `20.3`, `20.3-bullseye`, `20.3.0`, `20.3.0-bullseye`, `bullseye`, `current`, `current-bullseye`, `latest`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20-slim`, `20.3-bullseye-slim`, `20.3-slim`, `20.3.0-bullseye-slim`, `20.3.0-slim`, `bullseye-slim`, `current-bullseye-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye-slim/Dockerfile) +- [`20`, `20-bookworm`, `20.3`, `20.3-bookworm`, `20.3.0`, `20.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.0-bookworm-slim`, `20.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.3-bullseye`, `20.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.3-buster`, `20.3.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster/Dockerfile) - [`20-buster-slim`, `20.3-buster-slim`, `20.3.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.0-alpine`, `18.16.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.18/Dockerfile) -- [`18`, `18-bullseye`, `18.16`, `18.16-bullseye`, `18.16.0`, `18.16.0-bullseye`, `hydrogen`, `hydrogen-bullseye`, `lts`, `lts-bullseye`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18-slim`, `18.16-bullseye-slim`, `18.16-slim`, `18.16.0-bullseye-slim`, `18.16.0-slim`, `hydrogen-bullseye-slim`, `hydrogen-slim`, `lts-bullseye-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye-slim/Dockerfile) +- [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.0`, `18.16.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.0-bookworm-slim`, `18.16.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.16-bullseye`, `18.16.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.16-buster`, `18.16.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster/Dockerfile) - [`18-buster-slim`, `18.16-buster-slim`, `18.16.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster-slim/Dockerfile) - [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.0-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.17/Dockerfile) - [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.0-alpine`, `16.20.0-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.18/Dockerfile) +- [`16-bookworm`, `16.20-bookworm`, `16.20.0-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/16/bookworm/Dockerfile) +- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.0-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/16/bookworm-slim/Dockerfile) - [`16-bullseye`, `16.20-bullseye`, `16.20.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye/Dockerfile) - [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye-slim/Dockerfile) - [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.0`, `16.20.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster/Dockerfile) @@ -86,7 +92,7 @@ The `node` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/tomcat/README.md b/tomcat/README.md index 30628179c0f5..8bd1bf4d2ddb 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,10 +26,10 @@ WARNING: - [`11.0.0-M6-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M6-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M6-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M6`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jdk17/temurin-jammy/Dockerfile) - [`11.0.0-M6-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M6-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M6-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.9-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.9-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.9-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.9`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.9-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.9-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.9-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.9-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.9-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.9-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.9-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.9-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.9-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.10-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.10-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.10-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.10`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.10-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.10-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.10-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.10-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.10-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.10-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.10-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.10-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.10-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.76-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.76-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.76-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.76`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.76-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.76-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.76-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.76-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-focal/Dockerfile) @@ -45,21 +45,21 @@ WARNING: - [`9.0.76-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.76-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.76-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.76-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.89-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.89-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.89-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.89`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.89-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.89-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.89-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.89-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.89-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.89-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.89-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.89-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.89-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.89-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.89-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.89-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.89-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.89-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.89-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.89-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.89-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.89-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.89-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.89-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.89-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.89-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.89-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.89-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.89-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.89-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.89-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.90-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.90-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.90-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.90`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.90-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.90-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.90-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.90-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.90-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.90-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.90-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.90-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.90-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.90-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.90-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.90-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.90-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.90-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.90-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.90-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.90-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.90-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.90-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.90-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.90-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.90-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.90-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.90-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.90-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.90-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.90-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 26105539f255ebb998780474e83889b0cbb7da47 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Jun 2023 11:16:43 -0700 Subject: [PATCH 0375/2686] Run update.sh --- aerospike/README.md | 4 ++-- bash/README.md | 2 +- elixir/README.md | 18 +++++++++--------- odoo/README.md | 6 +++--- redmine/README.md | 5 +---- 5 files changed, 16 insertions(+), 19 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index c7d7513fb4e1..bb8fae8532ec 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.4`, `ee-6.3.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/fe338f8af95f2b20e4a6db3aa2d29a6d3373a2ff/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.4`, `ce-6.3.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/fe338f8af95f2b20e4a6db3aa2d29a6d3373a2ff/community/debian11/Dockerfile) +- [`ee-6.3.0.5`, `ee-6.3.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/1bb3ab4e95e31129c32653db28ff7f163d13671d/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.5`, `ce-6.3.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/1bb3ab4e95e31129c32653db28ff7f163d13671d/community/debian11/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index cc8b451d6d71..81d6e40a0665 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230603`, `devel`, `devel-20230603-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/53a71c56a4b943dfab6ca7739b98af4e7ffdcab6/devel/Dockerfile) +- [`devel-20230612`, `devel`, `devel-20230612-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/5c9c1503ece91a6659e52570e787ebb1fa5aec53/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elixir/README.md b/elixir/README.md index d1c912f5a89a..86c3ce6df234 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.0-rc.1`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/Dockerfile) -- [`1.15.0-rc.1-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/slim/Dockerfile) -- [`1.15.0-rc.1-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/alpine/Dockerfile) -- [`1.15.0-rc.1-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24/Dockerfile) -- [`1.15.0-rc.1-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24-alpine/Dockerfile) -- [`1.15.0-rc.1-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-24-slim/Dockerfile) -- [`1.15.0-rc.1-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25/Dockerfile) -- [`1.15.0-rc.1-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25-alpine/Dockerfile) -- [`1.15.0-rc.1-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/53bfba817d03abb306b454e2a78ea6b0b133ac25/1.15/otp-25-slim/Dockerfile) +- [`1.15.0-rc.2`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/Dockerfile) +- [`1.15.0-rc.2-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/slim/Dockerfile) +- [`1.15.0-rc.2-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/alpine/Dockerfile) +- [`1.15.0-rc.2-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24/Dockerfile) +- [`1.15.0-rc.2-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24-alpine/Dockerfile) +- [`1.15.0-rc.2-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24-slim/Dockerfile) +- [`1.15.0-rc.2-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25/Dockerfile) +- [`1.15.0-rc.2-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25-alpine/Dockerfile) +- [`1.15.0-rc.2-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 7cb67c3d828f..807438482084 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/42cc6f7d3a35dd7ab2353e09cfecf48c1bf50ee1/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/14.0/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 3a8587cd7243..17ba3e614a94 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -25,10 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-bullseye`, `5.0-bullseye`, `5-bullseye`, `bullseye`](https://github.com/docker-library/redmine/blob/5c69b4458049c150d8cc335841871aa4625dc217/5.0/Dockerfile) -- [`5.0.5-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.5-alpine3.16`, `5.0-alpine3.16`, `5-alpine3.16`, `alpine3.16`](https://github.com/docker-library/redmine/blob/5c69b4458049c150d8cc335841871aa4625dc217/5.0/alpine/Dockerfile) -- [`4.2.10`, `4.2`, `4`, `4.2.10-bullseye`, `4.2-bullseye`, `4-bullseye`](https://github.com/docker-library/redmine/blob/1f2a9a14e36002ff028ff9677deb9909670a25f9/4.2/Dockerfile) -- [`4.2.10-passenger`, `4.2-passenger`, `4-passenger`](https://github.com/docker-library/redmine/blob/ec4ba2df717b0c0adbbf34dc3a1a0e65f93a11e7/4.2/passenger/Dockerfile) -- [`4.2.10-alpine`, `4.2-alpine`, `4-alpine`, `4.2.10-alpine3.16`, `4.2-alpine3.16`, `4-alpine3.16`](https://github.com/docker-library/redmine/blob/1f2a9a14e36002ff028ff9677deb9909670a25f9/4.2/alpine/Dockerfile) +- [`5.0.5-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.5-alpine3.18`, `5.0-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redmine/blob/cc904a5f85eb1bfd99af68c0ea3f1e5aeb5d5554/5.0/alpine/Dockerfile) # Quick reference (cont.) From f20ad37178e1edbe09ac9c107f284cb43438b361 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Jun 2023 12:16:26 -0700 Subject: [PATCH 0376/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- ghost/README.md | 4 ++-- nextcloud/README.md | 9 ++++++--- openjdk/README.md | 14 +++++++------- 4 files changed, 25 insertions(+), 22 deletions(-) diff --git a/docker/README.md b/docker/README.md index 55a10244d437..c8c9ba716524 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/cli/Dockerfile) +- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/cli/Dockerfile) - [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/36a4df919e51b459eaf08c2f7d395b71d8e331c3/24/dind/Dockerfile) - [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) - [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/cli/Dockerfile) +- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.2-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4431aa850f6ce1bff3bc08346d3ca026dec359a1/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 3dfdaf469aaf..b03f19c329ad 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.51.0`, `5.51`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f872b8e6f20ccf9cd86b04e412e2f67d4e6aebe9/5/debian/Dockerfile) -- [`5.51.0-alpine`, `5.51-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f872b8e6f20ccf9cd86b04e412e2f67d4e6aebe9/5/alpine/Dockerfile) +- [`5.51.1`, `5.51`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dcfb569a25ddbe7533ae655baae9288206e33df6/5/debian/Dockerfile) +- [`5.51.1-alpine`, `5.51-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dcfb569a25ddbe7533ae655baae9288206e33df6/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 4582226162ad..ba1e7346e1c7 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -27,9 +27,12 @@ WARNING: - [`25.0.7-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.7`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/apache/Dockerfile) - [`25.0.7-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/fpm/Dockerfile) - [`25.0.7-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/fb5866ada90529aa04da11c9b0f96511b61a09d5/25/fpm-alpine/Dockerfile) -- [`26.0.2-apache`, `26.0-apache`, `26-apache`, `apache`, `26.0.2`, `26.0`, `26`, `latest`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/apache/Dockerfile) -- [`26.0.2-fpm`, `26.0-fpm`, `26-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm/Dockerfile) -- [`26.0.2-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm-alpine/Dockerfile) +- [`26.0.2-apache`, `26.0-apache`, `26-apache`, `26.0.2`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/apache/Dockerfile) +- [`26.0.2-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm/Dockerfile) +- [`26.0.2-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm-alpine/Dockerfile) +- [`27.0.0-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/apache/Dockerfile) +- [`27.0.0-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/fpm/Dockerfile) +- [`27.0.0-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 48f2eecfbc2f..8090bb112cc6 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -44,19 +44,19 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`22-ea-1-jdk-oraclelinux8`, `22-ea-1-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-1-jdk-oracle`, `22-ea-1-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux8/Dockerfile) - [`22-ea-1-jdk-oraclelinux7`, `22-ea-1-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-1-jdk-bookworm`, `22-ea-1-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/22/jdk/bookworm/Dockerfile) +- [`22-ea-1-jdk-slim-bookworm`, `22-ea-1-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-1-jdk-slim`, `22-ea-1-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/22/jdk/slim-bookworm/Dockerfile) - [`22-ea-1-jdk-bullseye`, `22-ea-1-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/bullseye/Dockerfile) -- [`22-ea-1-jdk-slim-bullseye`, `22-ea-1-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`, `22-ea-1-jdk-slim`, `22-ea-1-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-1-jdk-buster`, `22-ea-1-buster`, `22-ea-jdk-buster`, `22-ea-buster`, `22-jdk-buster`, `22-buster`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/buster/Dockerfile) -- [`22-ea-1-jdk-slim-buster`, `22-ea-1-slim-buster`, `22-ea-jdk-slim-buster`, `22-ea-slim-buster`, `22-jdk-slim-buster`, `22-slim-buster`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-buster/Dockerfile) +- [`22-ea-1-jdk-slim-bullseye`, `22-ea-1-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-bullseye/Dockerfile) - [`22-ea-1-jdk-windowsservercore-ltsc2022`, `22-ea-1-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`22-ea-1-jdk-windowsservercore-1809`, `22-ea-1-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) - [`22-ea-1-jdk-nanoserver-1809`, `22-ea-1-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-ea-26-jdk-oraclelinux8`, `21-ea-26-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-26-jdk-oracle`, `21-ea-26-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) - [`21-ea-26-jdk-oraclelinux7`, `21-ea-26-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-26-jdk-bookworm`, `21-ea-26-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/21/jdk/bookworm/Dockerfile) +- [`21-ea-26-jdk-slim-bookworm`, `21-ea-26-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-26-jdk-slim`, `21-ea-26-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/21/jdk/slim-bookworm/Dockerfile) - [`21-ea-26-jdk-bullseye`, `21-ea-26-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/bullseye/Dockerfile) -- [`21-ea-26-jdk-slim-bullseye`, `21-ea-26-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`, `21-ea-26-jdk-slim`, `21-ea-26-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-26-jdk-buster`, `21-ea-26-buster`, `21-ea-jdk-buster`, `21-ea-buster`, `21-jdk-buster`, `21-buster`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/buster/Dockerfile) -- [`21-ea-26-jdk-slim-buster`, `21-ea-26-slim-buster`, `21-ea-jdk-slim-buster`, `21-ea-slim-buster`, `21-jdk-slim-buster`, `21-slim-buster`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-buster/Dockerfile) +- [`21-ea-26-jdk-slim-bullseye`, `21-ea-26-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-bullseye/Dockerfile) - [`21-ea-26-jdk-windowsservercore-ltsc2022`, `21-ea-26-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21-ea-26-jdk-windowsservercore-1809`, `21-ea-26-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) - [`21-ea-26-jdk-nanoserver-1809`, `21-ea-26-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/nanoserver-1809/Dockerfile) @@ -170,7 +170,7 @@ The `openjdk` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `openjdk:` (from 12 onwards), `openjdk:-oracle` and `openjdk:-oraclelinux8` From 2d368f80b7e6403f43a31a77aaa6e47fd19ff61e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Jun 2023 15:16:54 -0700 Subject: [PATCH 0377/2686] Run update.sh --- nats/README.md | 22 +++++++------- php/README.md | 76 ++++++++++++++++++++++++------------------------ tomcat/README.md | 30 +++++++++++++++++-- 3 files changed, 77 insertions(+), 51 deletions(-) diff --git a/nats/README.md b/nats/README.md index 67009e8f9dc6..bfcbdfd7aecd 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.17-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.17-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/alpine3.18/Dockerfile) -- [`2.9.17-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.17-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/scratch/Dockerfile) -- [`2.9.17-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/windowsservercore-1809/Dockerfile) -- [`2.9.17-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) +- [`2.9.18-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.18-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/alpine3.18/Dockerfile) +- [`2.9.18-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.18-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/scratch/Dockerfile) +- [`2.9.18-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/windowsservercore-1809/Dockerfile) +- [`2.9.18-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.17`, `2.9`, `2`, `latest`: - - [`2.9.17-scratch`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/scratch/Dockerfile) - - [`2.9.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) -- `2.9.17-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.17-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/windowsservercore-1809/Dockerfile) -- `2.9.17-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/818883f43817a3035e0404f7da3e2d1ab3850e3e/2.9.17/nanoserver-1809/Dockerfile) +- `2.9.18`, `2.9`, `2`, `latest`: + - [`2.9.18-scratch`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/scratch/Dockerfile) + - [`2.9.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) +- `2.9.18-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.18-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/windowsservercore-1809/Dockerfile) +- `2.9.18-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 2e51100e3a86..5e5b5982444d 100644 --- a/php/README.md +++ b/php/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0alpha1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha1-bullseye`, `8.3-rc-bullseye`, `8.3.0alpha1-cli`, `8.3-rc-cli`, `8.3.0alpha1`, `8.3-rc`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0alpha1-apache-bullseye`, `8.3-rc-apache-bullseye`, `8.3.0alpha1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0alpha1-fpm-bullseye`, `8.3-rc-fpm-bullseye`, `8.3.0alpha1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0alpha1-zts-bullseye`, `8.3-rc-zts-bullseye`, `8.3.0alpha1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0alpha1-cli-buster`, `8.3-rc-cli-buster`, `8.3.0alpha1-buster`, `8.3-rc-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/cli/Dockerfile) -- [`8.3.0alpha1-apache-buster`, `8.3-rc-apache-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/apache/Dockerfile) -- [`8.3.0alpha1-fpm-buster`, `8.3-rc-fpm-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/fpm/Dockerfile) -- [`8.3.0alpha1-zts-buster`, `8.3-rc-zts-buster`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/buster/zts/Dockerfile) +- [`8.3.0alpha1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha1-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha1-cli`, `8.3-rc-cli`, `8.3.0alpha1`, `8.3-rc`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0alpha1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0alpha1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0alpha1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0alpha1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0alpha1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0alpha1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0alpha1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/zts/Dockerfile) - [`8.3.0alpha1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/cli/Dockerfile) - [`8.3.0alpha1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/fpm/Dockerfile) - [`8.3.0alpha1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.0alpha1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/cli/Dockerfile) - [`8.3.0alpha1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/fpm/Dockerfile) - [`8.3.0alpha1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.7-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.7-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`, `8.2.7-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.7`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/cli/Dockerfile) -- [`8.2.7-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`, `8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/apache/Dockerfile) -- [`8.2.7-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`, `8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/fpm/Dockerfile) -- [`8.2.7-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`, `8.2.7-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/bullseye/zts/Dockerfile) -- [`8.2.7-cli-buster`, `8.2-cli-buster`, `8-cli-buster`, `cli-buster`, `8.2.7-buster`, `8.2-buster`, `8-buster`, `buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/cli/Dockerfile) -- [`8.2.7-apache-buster`, `8.2-apache-buster`, `8-apache-buster`, `apache-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/apache/Dockerfile) -- [`8.2.7-fpm-buster`, `8.2-fpm-buster`, `8-fpm-buster`, `fpm-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/fpm/Dockerfile) -- [`8.2.7-zts-buster`, `8.2-zts-buster`, `8-zts-buster`, `zts-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/buster/zts/Dockerfile) +- [`8.2.7-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.7-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.7-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.7`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/cli/Dockerfile) +- [`8.2.7-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/apache/Dockerfile) +- [`8.2.7-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/fpm/Dockerfile) +- [`8.2.7-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.7-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/zts/Dockerfile) +- [`8.2.7-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.7-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/cli/Dockerfile) +- [`8.2.7-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/apache/Dockerfile) +- [`8.2.7-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/fpm/Dockerfile) +- [`8.2.7-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/zts/Dockerfile) - [`8.2.7-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.7-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.7-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.7-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/cli/Dockerfile) - [`8.2.7-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.7-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.7-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.7-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.7-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.7-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.2/alpine3.18/zts/Dockerfile) - [`8.2.7-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.7-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/cli/Dockerfile) - [`8.2.7-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.7-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.20-cli-bullseye`, `8.1-cli-bullseye`, `8.1.20-bullseye`, `8.1-bullseye`, `8.1.20-cli`, `8.1-cli`, `8.1.20`, `8.1`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/cli/Dockerfile) -- [`8.1.20-apache-bullseye`, `8.1-apache-bullseye`, `8.1.20-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/apache/Dockerfile) -- [`8.1.20-fpm-bullseye`, `8.1-fpm-bullseye`, `8.1.20-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/fpm/Dockerfile) -- [`8.1.20-zts-bullseye`, `8.1-zts-bullseye`, `8.1.20-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/bullseye/zts/Dockerfile) -- [`8.1.20-cli-buster`, `8.1-cli-buster`, `8.1.20-buster`, `8.1-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/cli/Dockerfile) -- [`8.1.20-apache-buster`, `8.1-apache-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/apache/Dockerfile) -- [`8.1.20-fpm-buster`, `8.1-fpm-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/fpm/Dockerfile) -- [`8.1.20-zts-buster`, `8.1-zts-buster`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/buster/zts/Dockerfile) +- [`8.2.7-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.20-cli-bookworm`, `8.1-cli-bookworm`, `8.1.20-bookworm`, `8.1-bookworm`, `8.1.20-cli`, `8.1-cli`, `8.1.20`, `8.1`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/cli/Dockerfile) +- [`8.1.20-apache-bookworm`, `8.1-apache-bookworm`, `8.1.20-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/apache/Dockerfile) +- [`8.1.20-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.20-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/fpm/Dockerfile) +- [`8.1.20-zts-bookworm`, `8.1-zts-bookworm`, `8.1.20-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/zts/Dockerfile) +- [`8.1.20-cli-bullseye`, `8.1-cli-bullseye`, `8.1.20-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/cli/Dockerfile) +- [`8.1.20-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/apache/Dockerfile) +- [`8.1.20-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/fpm/Dockerfile) +- [`8.1.20-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/zts/Dockerfile) - [`8.1.20-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.20-alpine3.18`, `8.1-alpine3.18`, `8.1.20-cli-alpine`, `8.1-cli-alpine`, `8.1.20-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/cli/Dockerfile) - [`8.1.20-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.20-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.20-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.20-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.20-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.18/zts/Dockerfile) - [`8.1.20-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.20-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/cli/Dockerfile) - [`8.1.20-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.20-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.17/zts/Dockerfile) - [`8.1.20-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.20-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/cli/Dockerfile) - [`8.1.20-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/cli/Dockerfile) -- [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/apache/Dockerfile) -- [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/fpm/Dockerfile) -- [`8.0.29-zts-bullseye`, `8.0-zts-bullseye`, `8.0.29-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/bullseye/zts/Dockerfile) -- [`8.0.29-cli-buster`, `8.0-cli-buster`, `8.0.29-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/cli/Dockerfile) -- [`8.0.29-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/apache/Dockerfile) -- [`8.0.29-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/fpm/Dockerfile) -- [`8.0.29-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/buster/zts/Dockerfile) +- [`8.1.20-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.16/zts/Dockerfile) +- [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/cli/Dockerfile) +- [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/apache/Dockerfile) +- [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/fpm/Dockerfile) +- [`8.0.29-zts-bullseye`, `8.0-zts-bullseye`, `8.0.29-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/zts/Dockerfile) +- [`8.0.29-cli-buster`, `8.0-cli-buster`, `8.0.29-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/cli/Dockerfile) +- [`8.0.29-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/apache/Dockerfile) +- [`8.0.29-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/fpm/Dockerfile) +- [`8.0.29-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/zts/Dockerfile) - [`8.0.29-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.29-alpine3.16`, `8.0-alpine3.16`, `8.0.29-cli-alpine`, `8.0-cli-alpine`, `8.0.29-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/cli/Dockerfile) - [`8.0.29-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.29-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/fpm/Dockerfile) - [`8.0.29-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.29-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/zts/Dockerfile) @@ -277,7 +277,7 @@ In many production environments, it is also recommended to (build and) enable th The `php` images come in many flavors, each designed for a specific use case. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `php:-cli` diff --git a/tomcat/README.md b/tomcat/README.md index 8bd1bf4d2ddb..751be9503c97 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,12 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M6-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M6-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M6-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M6`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.0-M6-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M6-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M6-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.0-M7-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M7-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/11.0/jdk21/openjdk-bookworm/Dockerfile) +- [`11.0.0-M7-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M7-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.10-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.10-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/10.1/jdk21/openjdk-bookworm/Dockerfile) +- [`10.1.10-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.10-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) - [`10.1.10-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.10-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.10-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.10`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.10-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.10-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.10-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.10-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.10-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.10-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.10-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.10-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.10-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.76-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.76-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-bookworm/Dockerfile) +- [`9.0.76-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-bullseye/Dockerfile) +- [`9.0.76-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.76-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`9.0.76-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) - [`9.0.76-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.76-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.76-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.76`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.76-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.76-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.76-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.76-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-focal/Dockerfile) @@ -45,6 +51,10 @@ WARNING: - [`9.0.76-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.76-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.76-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.76-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.90-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.90-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-bookworm/Dockerfile) +- [`8.5.90-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-bullseye/Dockerfile) +- [`8.5.90-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.90-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`8.5.90-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) - [`8.5.90-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.90-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.90-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.90`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.90-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.90-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.90-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre17/temurin-jammy/Dockerfile) - [`8.5.90-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-focal/Dockerfile) @@ -116,6 +126,22 @@ The default Tomcat environment in the image is: The configuration files are available in `/usr/local/tomcat/conf/`. By default, no user is included in the "manager-gui" role required to operate the "/manager/html" web application. If you wish to use this app, you must define such a user in `tomcat-users.xml`. +# Image Variants + +The `tomcat` images come in many flavors, each designed for a specific use case. + +## `tomcat:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + +Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. + +## `tomcat:-slim` + +This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `tomcat`. Unless you are working in an environment where *only* the `tomcat` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. + # License View [license information](https://www.apache.org/licenses/LICENSE-2.0) for the software contained in this image. From 6c525a6845f7d29d27b7acf792a77fc8d0227ba2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Jun 2023 17:19:00 -0700 Subject: [PATCH 0378/2686] Run update.sh --- nginx/README.md | 12 ++++++------ oraclelinux/README.md | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index ae3ff8cb00be..4f11a880a6b4 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.0`, `mainline`, `1`, `1.25`, `latest`, `1.25.0-bullseye`, `mainline-bullseye`, `1-bullseye`, `1.25-bullseye`, `bullseye`](https://github.com/nginxinc/docker-nginx/blob/3591b5e431af710432bd4852d9ee26eb19992776/mainline/debian/Dockerfile) -- [`1.25.0-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.0-bullseye-perl`, `mainline-bullseye-perl`, `1-bullseye-perl`, `1.25-bullseye-perl`, `bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/ee6b833b5d9d1966b85a5d318efc04cf8b1c1ba5/mainline/debian-perl/Dockerfile) -- [`1.25.0-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.0-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.25-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/123ef33694fccfefcb7db63251b21c0496537c76/mainline/alpine/Dockerfile) -- [`1.25.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.0-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.25-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/123ef33694fccfefcb7db63251b21c0496537c76/mainline/alpine-perl/Dockerfile) -- [`1.25.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.0-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.25-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/3591b5e431af710432bd4852d9ee26eb19992776/mainline/alpine-slim/Dockerfile) +- [`1.25.1`, `mainline`, `1`, `1.25`, `latest`, `1.25.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/debian/Dockerfile) +- [`1.25.1-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/debian-perl/Dockerfile) +- [`1.25.1-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.1-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.25-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine/Dockerfile) +- [`1.25.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.1-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.25-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine-perl/Dockerfile) +- [`1.25.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.1-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.25-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) @@ -246,7 +246,7 @@ The `nginx` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `nginx:-perl` / `nginx:-alpine-perl` diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 454801ca783b..6109cdabae79 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0ca79a2bcffcfd0abe7aabba221908a255267f21/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7-slim-fips/Dockerfile) # Quick reference (cont.) From 00e3b2e91cbe40e7236ff3c063a97ab0b303ed01 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Jun 2023 09:16:33 -0700 Subject: [PATCH 0379/2686] Run update.sh --- spiped/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiped/README.md b/spiped/README.md index 85420df422f9..c4225d932197 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/2673ea4c6a442d939ab23834aaf2a64c5d916139/1.6/Dockerfile) +- [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) - [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/32bffc38a1a3efcf0ce6817953230bf352bfb7a8/1.6/alpine/Dockerfile) # Quick reference (cont.) From f910255b322074514aa44b0a9611db3079f79aa0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Jun 2023 10:19:18 -0700 Subject: [PATCH 0380/2686] Run update.sh --- python/README.md | 50 ++++++++++++++++++++++++------------------------ ruby/README.md | 34 ++++++++++++++++---------------- 2 files changed, 42 insertions(+), 42 deletions(-) diff --git a/python/README.md b/python/README.md index 25f89e090049..9e9a2017e6f9 100644 --- a/python/README.md +++ b/python/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags +- [`3.12.0b2-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/bookworm/Dockerfile) +- [`3.12.0b2-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/slim-bookworm/Dockerfile) - [`3.12.0b2-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/bullseye/Dockerfile) -- [`3.12.0b2-slim-bullseye`, `3.12-rc-slim-bullseye`, `3.12.0b2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0b2-buster`, `3.12-rc-buster`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/buster/Dockerfile) -- [`3.12.0b2-slim-buster`, `3.12-rc-slim-buster`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/slim-buster/Dockerfile) +- [`3.12.0b2-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/slim-bullseye/Dockerfile) - [`3.12.0b2-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.18/Dockerfile) - [`3.12.0b2-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.17/Dockerfile) - [`3.12.0b2-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0b2-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) +- [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bookworm/Dockerfile) - [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) -- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/slim-bullseye/Dockerfile) -- [`3.11.4-buster`, `3.11-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/buster/Dockerfile) -- [`3.11.4-slim-buster`, `3.11-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/slim-buster/Dockerfile) +- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bullseye/Dockerfile) - [`3.11.4-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.4-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.18/Dockerfile) - [`3.11.4-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.17/Dockerfile) - [`3.11.4-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.4-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.12-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/bookworm/Dockerfile) +- [`3.10.12-slim-bookworm`, `3.10-slim-bookworm`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/slim-bookworm/Dockerfile) - [`3.10.12-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/bullseye/Dockerfile) -- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/slim-bullseye/Dockerfile) -- [`3.10.12-buster`, `3.10-buster`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/buster/Dockerfile) -- [`3.10.12-slim-buster`, `3.10-slim-buster`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/slim-buster/Dockerfile) +- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/slim-bullseye/Dockerfile) - [`3.10.12-alpine3.18`, `3.10-alpine3.18`, `3.10.12-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.18/Dockerfile) - [`3.10.12-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.17/Dockerfile) +- [`3.9.17-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/bookworm/Dockerfile) +- [`3.9.17-slim-bookworm`, `3.9-slim-bookworm`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/slim-bookworm/Dockerfile) - [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) -- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/slim-bullseye/Dockerfile) -- [`3.9.17-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/buster/Dockerfile) -- [`3.9.17-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/slim-buster/Dockerfile) +- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/slim-bullseye/Dockerfile) - [`3.9.17-alpine3.18`, `3.9-alpine3.18`, `3.9.17-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.18/Dockerfile) - [`3.9.17-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.17/Dockerfile) +- [`3.8.17-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/bookworm/Dockerfile) +- [`3.8.17-slim-bookworm`, `3.8-slim-bookworm`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/slim-bookworm/Dockerfile) - [`3.8.17-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) -- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/slim-bullseye/Dockerfile) -- [`3.8.17-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/buster/Dockerfile) -- [`3.8.17-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/slim-buster/Dockerfile) +- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/slim-bullseye/Dockerfile) - [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.18/Dockerfile) - [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.17/Dockerfile) +- [`3.7.17-bookworm`, `3.7-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/bookworm/Dockerfile) +- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/slim-bookworm/Dockerfile) - [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/bullseye/Dockerfile) -- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/slim-bullseye/Dockerfile) -- [`3.7.17-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/buster/Dockerfile) -- [`3.7.17-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/slim-buster/Dockerfile) +- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/slim-bullseye/Dockerfile) - [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.18/Dockerfile) - [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.17/Dockerfile) ## Shared Tags - `3.12.0b2`, `3.12-rc`: - - [`3.12.0b2-bullseye`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/bullseye/Dockerfile) + - [`3.12.0b2-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/bookworm/Dockerfile) - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0b2-windowsservercore`, `3.12-rc-windowsservercore`: - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.4`, `3.11`, `3`, `latest`: - - [`3.11.4-bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) + - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.4-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.12`, `3.10`: - - [`3.10.12-bullseye`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/bullseye/Dockerfile) + - [`3.10.12-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/bookworm/Dockerfile) - `3.9.17`, `3.9`: - - [`3.9.17-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) + - [`3.9.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/bookworm/Dockerfile) - `3.8.17`, `3.8`: - - [`3.8.17-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) + - [`3.8.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/bookworm/Dockerfile) - `3.7.17`, `3.7`: - - [`3.7.17-bullseye`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/bullseye/Dockerfile) + - [`3.7.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/bookworm/Dockerfile) # Quick reference (cont.) @@ -186,7 +186,7 @@ The `python` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/ruby/README.md b/ruby/README.md index 1efa5e851ec6..24f2580c952b 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-preview1-bullseye`, `3.3-rc-bullseye`, `3.3.0-preview1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/b0be6d1004b0c0665366402905347a85f115b324/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-preview1-slim-bullseye`, `3.3-rc-slim-bullseye`, `3.3.0-preview1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-preview1-buster`, `3.3-rc-buster`](https://github.com/docker-library/ruby/blob/b0be6d1004b0c0665366402905347a85f115b324/3.3-rc/buster/Dockerfile) -- [`3.3.0-preview1-slim-buster`, `3.3-rc-slim-buster`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/slim-buster/Dockerfile) +- [`3.3.0-preview1-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/bookworm/Dockerfile) +- [`3.3.0-preview1-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/slim-bookworm/Dockerfile) +- [`3.3.0-preview1-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-preview1-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/slim-bullseye/Dockerfile) - [`3.3.0-preview1-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview1-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.18/Dockerfile) - [`3.3.0-preview1-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.17/Dockerfile) -- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/bullseye/Dockerfile) -- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-bullseye/Dockerfile) -- [`3.2.2-buster`, `3.2-buster`, `3-buster`, `buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/buster/Dockerfile) -- [`3.2.2-slim-buster`, `3.2-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/ruby/blob/4041b21f3e11111846e6b6043da2da92e1da7019/3.2/slim-buster/Dockerfile) +- [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bookworm/Dockerfile) +- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bookworm/Dockerfile) +- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bullseye/Dockerfile) +- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bullseye/Dockerfile) - [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.18/Dockerfile) - [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.17/Dockerfile) -- [`3.1.4-bullseye`, `3.1-bullseye`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/bullseye/Dockerfile) -- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-bullseye/Dockerfile) -- [`3.1.4-buster`, `3.1-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/buster/Dockerfile) -- [`3.1.4-slim-buster`, `3.1-slim-buster`](https://github.com/docker-library/ruby/blob/564fdfe2e1451d2f56a815b1213e54c7f8639cb4/3.1/slim-buster/Dockerfile) +- [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bookworm/Dockerfile) +- [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bookworm/Dockerfile) +- [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bullseye/Dockerfile) +- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bullseye/Dockerfile) - [`3.1.4-alpine3.18`, `3.1-alpine3.18`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) - [`3.1.4-alpine3.17`, `3.1-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.17/Dockerfile) -- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/bullseye/Dockerfile) -- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-bullseye/Dockerfile) -- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/buster/Dockerfile) -- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1cd75932f3d072dbbe2a866951fc47ff5a5bb2fc/3.0/slim-buster/Dockerfile) +- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/bullseye/Dockerfile) +- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/slim-bullseye/Dockerfile) +- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/buster/Dockerfile) +- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/slim-buster/Dockerfile) - [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.0/alpine3.16/Dockerfile) # Quick reference (cont.) @@ -140,7 +140,7 @@ The `ruby` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From d8085ca662b2b89e835a72dd0292e5df31f0831f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Jun 2023 11:20:16 -0700 Subject: [PATCH 0381/2686] Run update.sh --- alpine/README.md | 8 ++++---- golang/README.md | 10 +++++----- httpd/README.md | 6 +++--- julia/README.md | 10 +++++----- memcached/README.md | 4 ++-- postgres/README.md | 18 ++++++++++++------ pypy/README.md | 32 ++++++++++++++++---------------- 7 files changed, 47 insertions(+), 41 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index b294e67b0901..123e10163042 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c025403b1536857f35630b3c7fe5aabf8b6d256a/x86_64/Dockerfile) -- [`3.18.0`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/571516c7ce3ecec3c70541d13529a4abb33ba362/x86_64/Dockerfile) -- [`3.17.3`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/681b8c677aaed66e48a5ce721509647bd4dcd017/x86_64/Dockerfile) -- [`3.16.5`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/8abeb7449b58d28e108a027990013f56845bdea4/x86_64/Dockerfile) -- [`3.15.8`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/d5bee21392df6b1e0b491cee3f3436121238a178/x86_64/Dockerfile) +- [`3.18.2`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/66fa0fe063bbb4f03220088a4f4d8bb34db1b803/x86_64/Dockerfile) +- [`3.17.4`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/e229397d4700b27c523f966afbddc420674f0d34/x86_64/Dockerfile) +- [`3.16.6`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/9d643ac53dd82876d3f700dfb8e4edf91982f171/x86_64/Dockerfile) +- [`3.15.9`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/87b711179ac0b3685f8c590428bcc6470a8fd78b/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index ae38b5dce10f..3b66cacd9bfe 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,16 +28,16 @@ WARNING: ## Simple Tags +- [`1.20.5-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.20/bookworm/Dockerfile) - [`1.20.5-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/bullseye/Dockerfile) -- [`1.20.5-buster`, `1.20-buster`, `1-buster`, `buster`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/buster/Dockerfile) - [`1.20.5-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.5-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.18/Dockerfile) - [`1.20.5-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.17/Dockerfile) - [`1.20.5-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.5-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.5-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.5-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.10-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.19/bookworm/Dockerfile) - [`1.19.10-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/bullseye/Dockerfile) -- [`1.19.10-buster`, `1.19-buster`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/buster/Dockerfile) - [`1.19.10-alpine3.18`, `1.19-alpine3.18`, `1.19.10-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.18/Dockerfile) - [`1.19.10-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.17/Dockerfile) - [`1.19.10-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.20.5`, `1.20`, `1`, `latest`: - - [`1.20.5-bullseye`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/bullseye/Dockerfile) + - [`1.20.5-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.20/bookworm/Dockerfile) - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) - `1.20.5-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -58,7 +58,7 @@ WARNING: - [`1.20.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) - `1.19.10`, `1.19`: - - [`1.19.10-bullseye`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/bullseye/Dockerfile) + - [`1.19.10-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.19/bookworm/Dockerfile) - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) - `1.19.10-windowsservercore`, `1.19-windowsservercore`: @@ -167,7 +167,7 @@ The `golang` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `golang:-alpine` diff --git a/httpd/README.md b/httpd/README.md index df2ed0f173ca..fbebcffe6e70 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bullseye`, `2.4-bullseye`, `2-bullseye`, `bullseye`](https://github.com/docker-library/httpd/blob/ef41771bcc6367657fdbf1cdae028f2e1e32d222/2.4/Dockerfile) -- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/d401fd69b9ecb158fcd921f22d54bd2890cedc84/2.4/alpine/Dockerfile) +- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/242f3c62ba1ceee0a3633045fc4fd9277cb86cd3/2.4/Dockerfile) +- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/c87146e71508462f0ebd5de9890a0f8bb3b98c8f/2.4/alpine/Dockerfile) # Quick reference (cont.) @@ -133,7 +133,7 @@ The `httpd` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `httpd:-alpine` diff --git a/julia/README.md b/julia/README.md index 66faea0bc680..b411b765eb65 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags +- [`1.9.1-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.9/bookworm/Dockerfile) - [`1.9.1-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/bullseye/Dockerfile) -- [`1.9.1-buster`, `1.9-buster`, `1-buster`, `buster`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/buster/Dockerfile) - [`1.9.1-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.1-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.18/Dockerfile) - [`1.9.1-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.17/Dockerfile) - [`1.9.1-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.9.1-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) -- [`1.6.7-buster`, `1.6-buster`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/buster/Dockerfile) - [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) - [`1.6.7-alpine3.17`, `1.6-alpine3.17`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) @@ -44,14 +44,14 @@ WARNING: ## Shared Tags - `1.9.1`, `1.9`, `1`, `latest`: - - [`1.9.1-bullseye`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/bullseye/Dockerfile) + - [`1.9.1-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.9/bookworm/Dockerfile) - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) - `1.9.1-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - - [`1.6.7-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) + - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - `1.6.7-windowsservercore`, `1.6-windowsservercore`: @@ -115,7 +115,7 @@ The `julia` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `julia:-alpine` diff --git a/memcached/README.md b/memcached/README.md index 958e09c841fc..206985bf2d51 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.20`, `1.6`, `1`, `latest`, `1.6.20-bullseye`, `1.6-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/memcached/blob/067704d799d434d12ad73b1334358e1b6d4cf8b5/debian/Dockerfile) +- [`1.6.20`, `1.6`, `1`, `latest`, `1.6.20-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/3e552dc7c3907467c258c986cb4763a544ee3041/debian/Dockerfile) - [`1.6.20-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.20-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/067704d799d434d12ad73b1334358e1b6d4cf8b5/alpine/Dockerfile) # Quick reference (cont.) @@ -78,7 +78,7 @@ The `memcached` images come in many flavors, each designed for a specific use ca This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `memcached:-alpine` diff --git a/postgres/README.md b/postgres/README.md index e325c6d64abe..43dea809c2a2 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,21 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16beta1`, `16beta1-bullseye`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/bullseye/Dockerfile) +- [`16beta1`, `16beta1-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/16/bookworm/Dockerfile) +- [`16beta1-bullseye`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/bullseye/Dockerfile) - [`16beta1-alpine3.18`, `16beta1-alpine`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.18/Dockerfile) - [`16beta1-alpine3.17`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.17/Dockerfile) -- [`15.3`, `15`, `latest`, `15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) +- [`15.3`, `15`, `latest`, `15.3-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/15/bookworm/Dockerfile) +- [`15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) - [`15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.3-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.18/Dockerfile) - [`15.3-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.17/Dockerfile) -- [`14.8`, `14`, `14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) +- [`14.8`, `14`, `14.8-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/14/bookworm/Dockerfile) +- [`14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) - [`14.8-alpine3.18`, `14-alpine3.18`, `14.8-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.18/Dockerfile) - [`14.8-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.17/Dockerfile) -- [`13.11`, `13`, `13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) +- [`13.11`, `13`, `13.11-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/13/bookworm/Dockerfile) +- [`13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) - [`13.11-alpine3.18`, `13-alpine3.18`, `13.11-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.18/Dockerfile) - [`13.11-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.17/Dockerfile) -- [`12.15`, `12`, `12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) +- [`12.15`, `12`, `12.15-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/12/bookworm/Dockerfile) +- [`12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) - [`12.15-alpine3.18`, `12-alpine3.18`, `12.15-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.18/Dockerfile) - [`12.15-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.17/Dockerfile) +- [`11.20-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/11/bookworm/Dockerfile) - [`11.20-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/bullseye/Dockerfile) - [`11.20-alpine3.18`, `11-alpine3.18`, `11.20-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.18/Dockerfile) - [`11.20-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.17/Dockerfile) @@ -356,7 +362,7 @@ The `postgres` images come in many flavors, each designed for a specific use cas This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `postgres:-alpine` diff --git a/pypy/README.md b/pypy/README.md index 5af6ef50f64b..791ca49115c6 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`3.9-7.3.11-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`, `3-7.3.11-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/bullseye/Dockerfile) -- [`3.9-7.3.11-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3-7.3.11-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.9-7.3.11-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`, `3-7.3.11-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.11-buster`, `3.9-7.3-buster`, `3.9-7-buster`, `3.9-buster`, `3-7.3.11-buster`, `3-7.3-buster`, `3-7-buster`, `3-buster`, `buster`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/buster/Dockerfile) -- [`3.9-7.3.11-slim-buster`, `3.9-7.3-slim-buster`, `3.9-7-slim-buster`, `3.9-slim-buster`, `3-7.3.11-slim-buster`, `3-7.3-slim-buster`, `3-7-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/slim-buster/Dockerfile) +- [`3.9-7.3.11-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`, `3-7.3.11-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bookworm/Dockerfile) +- [`3.9-7.3.11-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`, `3-7.3.11-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.11-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`, `3-7.3.11-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bullseye/Dockerfile) +- [`3.9-7.3.11-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3-7.3.11-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.9-7.3.11-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`, `3-7.3.11-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/slim-bullseye/Dockerfile) - [`3.9-7.3.11-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`, `3-7.3.11-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.11-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-7.3.11-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) -- [`3.8-7.3.11-bullseye`, `3.8-7.3-bullseye`, `3.8-7-bullseye`, `3.8-bullseye`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/bullseye/Dockerfile) -- [`3.8-7.3.11-slim`, `3.8-7.3-slim`, `3.8-7-slim`, `3.8-slim`, `3.8-7.3.11-slim-bullseye`, `3.8-7.3-slim-bullseye`, `3.8-7-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/slim-bullseye/Dockerfile) -- [`3.8-7.3.11-buster`, `3.8-7.3-buster`, `3.8-7-buster`, `3.8-buster`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/buster/Dockerfile) -- [`3.8-7.3.11-slim-buster`, `3.8-7.3-slim-buster`, `3.8-7-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/slim-buster/Dockerfile) +- [`3.8-7.3.11-bookworm`, `3.8-7.3-bookworm`, `3.8-7-bookworm`, `3.8-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bookworm/Dockerfile) +- [`3.8-7.3.11-slim-bookworm`, `3.8-7.3-slim-bookworm`, `3.8-7-slim-bookworm`, `3.8-slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bookworm/Dockerfile) +- [`3.8-7.3.11-bullseye`, `3.8-7.3-bullseye`, `3.8-7-bullseye`, `3.8-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) +- [`3.8-7.3.11-slim`, `3.8-7.3-slim`, `3.8-7-slim`, `3.8-slim`, `3.8-7.3.11-slim-bullseye`, `3.8-7.3-slim-bullseye`, `3.8-7-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bullseye/Dockerfile) - [`3.8-7.3.11-windowsservercore-ltsc2022`, `3.8-7.3-windowsservercore-ltsc2022`, `3.8-7-windowsservercore-ltsc2022`, `3.8-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.8-7.3.11-windowsservercore-1809`, `3.8-7.3-windowsservercore-1809`, `3.8-7-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.11-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.11-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/bullseye/Dockerfile) -- [`2.7-7.3.11-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.11-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.11-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.11-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.11-buster`, `2.7-7.3-buster`, `2.7-7-buster`, `2.7-buster`, `2-7.3.11-buster`, `2-7.3-buster`, `2-7-buster`, `2-buster`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/buster/Dockerfile) -- [`2.7-7.3.11-slim-buster`, `2.7-7.3-slim-buster`, `2.7-7-slim-buster`, `2.7-slim-buster`, `2-7.3.11-slim-buster`, `2-7.3-slim-buster`, `2-7-slim-buster`, `2-slim-buster`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/slim-buster/Dockerfile) +- [`2.7-7.3.11-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.11-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bookworm/Dockerfile) +- [`2.7-7.3.11-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.11-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.11-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.11-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bullseye/Dockerfile) +- [`2.7-7.3.11-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.11-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.11-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.11-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/slim-bullseye/Dockerfile) - [`2.7-7.3.11-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.11-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.11-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.11-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `3.9-7.3.11`, `3.9-7.3`, `3.9-7`, `3.9`, `3-7.3.11`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.9-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/bullseye/Dockerfile) + - [`3.9-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bullseye/Dockerfile) - [`3.9-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) - `3.9-7.3.11-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`, `3-7.3.11-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.9-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) - `3.8-7.3.11`, `3.8-7.3`, `3.8-7`, `3.8`: - - [`3.8-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/bullseye/Dockerfile) + - [`3.8-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.8-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) - `3.8-7.3.11-windowsservercore`, `3.8-7.3-windowsservercore`, `3.8-7-windowsservercore`, `3.8-windowsservercore`: - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.8-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.11`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.11`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/bullseye/Dockerfile) + - [`2.7-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bullseye/Dockerfile) - [`2.7-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.11-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.11-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: @@ -161,7 +161,7 @@ The `pypy` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From 79bce3ea755405a29cbee32fad1701a7e45f7690 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Jun 2023 12:16:26 -0700 Subject: [PATCH 0382/2686] Run update.sh --- redis/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/redis/README.md b/redis/README.md index ccb422f153d2..075178222493 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2-rc2`, `7.2-rc`, `7.2-rc2-bullseye`, `7.2-rc-bullseye`](https://github.com/docker-library/redis/blob/2e6e8961037d8b2838a4105bb9a761441e1ae477/7.2-rc/Dockerfile) +- [`7.2-rc2`, `7.2-rc`, `7.2-rc2-bookworm`, `7.2-rc-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/7.2-rc/Dockerfile) - [`7.2-rc2-alpine`, `7.2-rc-alpine`, `7.2-rc2-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/2e6e8961037d8b2838a4105bb9a761441e1ae477/7.2-rc/alpine/Dockerfile) -- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bullseye`, `7.0-bullseye`, `7-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/7.0/Dockerfile) +- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bookworm`, `7.0-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/7.0/Dockerfile) - [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.0/alpine/Dockerfile) -- [`6.2.12`, `6.2`, `6`, `6.2.12-bullseye`, `6.2-bullseye`, `6-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.2/Dockerfile) +- [`6.2.12`, `6.2`, `6`, `6.2.12-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/6.2/Dockerfile) - [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.2/alpine/Dockerfile) -- [`6.0.19`, `6.0`, `6.0.19-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/47ff5548471e77c54c801a06adb85aba6446bc33/6.0/Dockerfile) +- [`6.0.19`, `6.0`, `6.0.19-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/6.0/Dockerfile) - [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.0/alpine/Dockerfile) # Quick reference (cont.) @@ -132,7 +132,7 @@ The `redis` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `redis:-alpine` From 934eb3e87a92a96be12e0ad95eb5f0200eac3ddd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Jun 2023 15:16:38 -0700 Subject: [PATCH 0383/2686] Run update.sh --- dart/README.md | 4 ++-- neo4j/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index a3835e114386..16388b64b2bb 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.4-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.4`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3500bf22e81f09996d7523b632ef15c2e6c35cd5/stable/bullseye/Dockerfile) -- [`3.1.0-163.1.beta-sdk`, `beta-sdk`, `3.1.0-163.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3500bf22e81f09996d7523b632ef15c2e6c35cd5/beta/bullseye/Dockerfile) +- [`3.0.5-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.5`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/66476c7729c74864b6f319b2a12b497af5a828e4/stable/bullseye/Dockerfile) +- [`3.1.0-163.1.beta-sdk`, `beta-sdk`, `3.1.0-163.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/66476c7729c74864b6f319b2a12b497af5a828e4/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 013871507a87..f13c375e7807 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.0`, `5.8.0-community`, `5.8`, `5.8-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/20660ac29964bba2bb7432919f65df0b7f8c323e/5.8.0/community/Dockerfile) -- [`5.8.0-enterprise`, `5.8-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/20660ac29964bba2bb7432919f65df0b7f8c323e/5.8.0/enterprise/Dockerfile) +- [`5.9.0`, `5.9.0-community`, `5.9`, `5.9-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/community/Dockerfile) +- [`5.9.0-enterprise`, `5.9-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/enterprise/Dockerfile) - [`4.4.21`, `4.4.21-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/community/Dockerfile) - [`4.4.21-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/enterprise/Dockerfile) From 761ef6ac4d4e67a5b66269b88290bc5e51b17d71 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 15 Jun 2023 16:46:35 -0700 Subject: [PATCH 0384/2686] Fix hylang repo stub readme --- generate-repo-stub-readme.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/generate-repo-stub-readme.sh b/generate-repo-stub-readme.sh index 84d107606caa..fb4d6915cdb8 100755 --- a/generate-repo-stub-readme.sh +++ b/generate-repo-stub-readme.sh @@ -26,10 +26,12 @@ fi canonicalRepo="$(curl -fsSLI -o /dev/null -w '%{url_effective}\n' "$canonicalRepo")" # follow redirects (http://stackoverflow.com/a/3077316/433558) githubRepoName="${canonicalRepo#*://github.com/}" -if [[ "$githubRepoName" = elastic/* ]]; then +case "$githubRepoName" in # Elastic points "github-repo" at their upstream elastic/xyz-docker repos, but we want our README stubs to still point at our integration repos - githubRepoName="docker-library/$repo" -fi + elastic/*) githubRepoName="docker-library/$repo" ;; + + hylang/hy) githubRepoName='hylang/docker-hylang' ;; +esac maintainer="$(sed -e 's!%%GITHUB-REPO%%!'"$canonicalRepo"'!g' "$repo/maintainer.md")" From 37be9d0870409635eb14854360546742976beed5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Jun 2023 17:19:00 -0700 Subject: [PATCH 0385/2686] Run update.sh --- mongo/README.md | 2 +- oraclelinux/README.md | 16 ++++++++-------- swift/README.md | 2 +- ubuntu/README.md | 13 ++++++------- 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 8f3e8a1dbe14..d9282f9acb99 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -352,7 +352,7 @@ The `mongo` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bionic, focal, or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `mongo:-windowsservercore` diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 6109cdabae79..d8f2ef6ba390 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e5fc5f1cf944480d569edb035ae17e3000064bc7/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index 575169a20fb1..a3502270dc43 100644 --- a/swift/README.md +++ b/swift/README.md @@ -167,7 +167,7 @@ The `swift` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bionic, focal, or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `swift:-slim` diff --git a/ubuntu/README.md b/ubuntu/README.md index eb524a95d229..40912e03a6a2 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,12 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20230530`, `bionic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-bionic-amd64-20230530-638510be&id=638510bec0540d097260e44d99cab6827f32e23c) -- [`20.04`, `focal-20230412`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230412-26258b91&id=26258b9129f269190048fdf2b46d82de5ae5f79c) -- [`22.04`, `jammy-20230522`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230522-bbd50755&id=bbd50755c7a57a1e30edd0e2a2dcf66aa09cf63c) -- [`22.10`, `kinetic-20230412`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230412-acd9976c&id=acd9976cf1d024747ad42960daa92bc3065e3a38) -- [`23.04`, `lunar-20230522`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230522-fd45d9ed&id=fd45d9ed74e848cf70aa35fedea865f9d839bf57) -- [`23.10`, `mantic-20230520`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230520-e49d32a8&id=e49d32a824c5b21b177d221475d0f6f1bbeae5b2) +- [`20.04`, `focal-20230605`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230605-19354505&id=19354505a650f2bfd5e2441c56ca09cc488abeb4) +- [`22.04`, `jammy-20230605`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230605-ab2192b8&id=ab2192b8d9a2a01920e4db4cb79f649dd77a2dad) +- [`22.10`, `kinetic-20230605`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230605-42263b18&id=42263b1857cc4495659cc2d79647f46aff013247) +- [`23.04`, `lunar-20230615`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230615-3537c573&id=3537c5732f5b3fc814f5762acf34b890a8d79a13) +- [`23.10`, `mantic-20230607`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230607-533e5820&id=533e58208b1772f1c89f31465a8663cfc79b1ae9) # Quick reference (cont.) @@ -37,7 +36,7 @@ WARNING: [the cloud-images bug tracker](https://bugs.launchpad.net/cloud-images) (include the `docker` tag) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`i386`](https://hub.docker.com/r/i386/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) + [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) - **Published image artifact details**: [repo-info repo's `repos/ubuntu/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ubuntu) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ubuntu)) From fd31f8c528cbd8f0c4d746573e5ef3fc935d3c20 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 13:18:35 -0700 Subject: [PATCH 0386/2686] Run update.sh --- arangodb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 36b5fd9ec3f0..e968bfa55997 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) -- [`3.10`, `3.10.6`](https://github.com/arangodb/arangodb-docker/blob/a33b50b8a5c9a60f8c812016899485cc9cd78de3/alpine/3.10.6/Dockerfile) -- [`3.11`, `3.11.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/900b2e2b330a213b9c965badd073df63eb3b615d/alpine/3.11.0/Dockerfile) +- [`3.10`, `3.10.7`](https://github.com/arangodb/arangodb-docker/blob/5c926a243d7c952a58f97488781f5eaf6d6704b9/alpine/3.10.7/Dockerfile) +- [`3.11`, `3.11.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5c926a243d7c952a58f97488781f5eaf6d6704b9/alpine/3.11.1/Dockerfile) # Quick reference (cont.) From c21b15db89e9547ff5ce3a5d3311b80465cb9775 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 14:16:32 -0700 Subject: [PATCH 0387/2686] Run update.sh --- orientdb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index 9a1f7cf5c2f0..924e6ffcf978 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.19`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/e62fe3c13523432d51e0440c3227a8646e2536cf/release/3.2.x/3.2.19/Dockerfile) -- [`3.2.19-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/e62fe3c13523432d51e0440c3227a8646e2536cf/release/3.2.x/3.2.19-tp3/Dockerfile) +- [`3.2.20`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/bec4afe6bc542be54c249d3b3597bcba31622362/release/3.2.x/3.2.20/Dockerfile) +- [`3.2.20-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/bec4afe6bc542be54c249d3b3597bcba31622362/release/3.2.x/3.2.20-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 4b53ad8cd19c3b2b2cc52f9d52bbb26da51656e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 15:18:32 -0700 Subject: [PATCH 0388/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- fedora/README.md | 6 +++--- haskell/README.md | 12 ++++++------ maven/README.md | 10 +++++----- r-base/README.md | 2 +- sonarqube/README.md | 20 ++++++++++---------- 7 files changed, 29 insertions(+), 29 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 25bef038b97f..4635fc242170 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.0.20230607.0`](https://github.com/amazonlinux/container-images/blob/5b32b6595a09f86581fd5c5ceadf96661b46775a/Dockerfile) -- [`2`, `2.0.20230530.0`](https://github.com/amazonlinux/container-images/blob/0ba6c8b0f5c91ec71e8bd3cdc7bc14d6ee765aa5/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230601.0`](https://github.com/amazonlinux/container-images/blob/fdd940257ea9f92da09305181bf08c4e7d865a4c/Dockerfile) +- [`2023`, `latest`, `2023.0.20230614.0`](https://github.com/amazonlinux/container-images/blob/6a80b496dddec729b610e3fb60b235124b929710/Dockerfile) +- [`2`, `2.0.20230612.0`](https://github.com/amazonlinux/container-images/blob/c37b0b93a914f22f910edc26a1a83d6f7403d821/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230607.0`](https://github.com/amazonlinux/container-images/blob/9a66082b2100b382b5adaa526b8b63515639bbfd/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2ea8a215d737..6d2b1c661d62 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/43edaa58caa74272b3c5c5b122dfa0b10cc0a53c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4bc0150ac3a529e2fb267d72b102eabf96395edf/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index eae10c01b6e1..7495fdd7b63b 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3d4597fa202bd6306533e6e86e15ad26000ddf94/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/944c6b2747614a632a805fa0cc1579d5dc7a64be/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/827cc251772373314b15831fc2cdb78e7ca9a27c/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f49afec82b84319bcf5d3021a161b437973b00c8/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7be687ad846a04a1779152e9fe40bc380549ba58/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/30d3a14457213b49f5be3f6cd6f9924de0a9d32e/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index a68ec20f6285..4d5a022ddb6d 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.5-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.5`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/6a4bd2d6ac51a08af489476145b1f83c8d20e575/9.4/buster/Dockerfile) -- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.5-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/6a4bd2d6ac51a08af489476145b1f83c8d20e575/9.4/slim-buster/Dockerfile) -- [`9.2.7-buster`, `9.2-buster`, `9.2.7`, `9.2`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/buster/Dockerfile) -- [`9.2.7-slim-buster`, `9.2-slim-buster`, `9.2.7-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/47c8a1ef9ecdfe9603dfa5e3ee0bdfc4b64a944a/9.2/slim-buster/Dockerfile) -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/buster/Dockerfile) -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/12cd297d7ccc2e97fe5e94548ae502b0cbb6735f/9.0/slim-buster/Dockerfile) +- [`9.4.5-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.5`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/buster/Dockerfile) +- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.5-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/slim-buster/Dockerfile) +- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) +- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) +- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) +- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/slim-buster/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 434793321358..d9731752b557 100644 --- a/maven/README.md +++ b/maven/README.md @@ -39,13 +39,13 @@ WARNING: - [`3.9.2-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-11-focal/Dockerfile) - [`3.9.2-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-17-focal/Dockerfile) - [`3.9.2-amazoncorretto-11`, `3.9.2-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-11/Dockerfile) -- [`3.9.2-amazoncorretto-11-debian`, `3.9.2-amazoncorretto-11-debian-bullseye`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bullseye`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-11-debian/Dockerfile) +- [`3.9.2-amazoncorretto-11-debian`, `3.9.2-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-11-debian/Dockerfile) - [`3.9.2-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-17/Dockerfile) -- [`3.9.2-amazoncorretto-17-debian`, `3.9.2-amazoncorretto-17-debian-bullseye`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bullseye`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-17-debian/Dockerfile) +- [`3.9.2-amazoncorretto-17-debian`, `3.9.2-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-17-debian/Dockerfile) - [`3.9.2-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-20/Dockerfile) -- [`3.9.2-amazoncorretto-20-debian`, `3.9.2-amazoncorretto-20-debian-bullseye`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bullseye`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-20-debian/Dockerfile) +- [`3.9.2-amazoncorretto-20-debian`, `3.9.2-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-20-debian/Dockerfile) - [`3.9.2-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-8/Dockerfile) -- [`3.9.2-amazoncorretto-8-debian`, `3.9.2-amazoncorretto-8-debian-bullseye`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bullseye`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bullseye`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-8-debian/Dockerfile) +- [`3.9.2-amazoncorretto-8-debian`, `3.9.2-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-8-debian/Dockerfile) - [`3.9.2-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-11/Dockerfile) - [`3.9.2-sapmachine-17`, `3.9.2-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-17/Dockerfile) @@ -143,7 +143,7 @@ The `maven` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. Some of these tags may have names like focal in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. diff --git a/r-base/README.md b/r-base/README.md index cebb34cf9290..88d903217713 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.0`, `latest`](https://github.com/rocker-org/rocker/blob/369880a2813efaba8a719188a71b3a655fda0845/r-base/4.3.0/Dockerfile) +- [`4.3.1`, `latest`](https://github.com/rocker-org/rocker/blob/697411900789ece481e6a24be01e1ab3a3857b7d/r-base/4.3.1/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 60e50d061307..bc7d3a74871d 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/community/Dockerfile) -- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/developer/Dockerfile) -- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/enterprise/Dockerfile) -- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/datacenter/app/Dockerfile) -- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/9/datacenter/search/Dockerfile) -- [`10.0.0-community`, `10.0-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/community/Dockerfile) -- [`10.0.0-developer`, `10.0-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/developer/Dockerfile) -- [`10.0.0-enterprise`, `10.0-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/enterprise/Dockerfile) -- [`10.0.0-datacenter-app`, `10.0-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/datacenter/app/Dockerfile) -- [`10.0.0-datacenter-search`, `10.0-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0815730a8fc5fab526113141a90c7dc858051643/10/datacenter/search/Dockerfile) +- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/community/Dockerfile) +- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/developer/Dockerfile) +- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/enterprise/Dockerfile) +- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/datacenter/app/Dockerfile) +- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/datacenter/search/Dockerfile) +- [`10.1.0-community`, `10.1-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/community/Dockerfile) +- [`10.1.0-developer`, `10.1-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/developer/Dockerfile) +- [`10.1.0-enterprise`, `10.1-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/enterprise/Dockerfile) +- [`10.1.0-datacenter-app`, `10.1-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/datacenter/app/Dockerfile) +- [`10.1.0-datacenter-search`, `10.1-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 7bf363eb8deaadf3bbce3d3073d252f877693406 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 16:09:04 -0700 Subject: [PATCH 0389/2686] Run update.sh --- elixir/README.md | 36 ++++++++++++++++++------------------ nats/README.md | 22 +++++++++++----------- photon/README.md | 4 ++-- traefik/README.md | 4 ++-- xwiki/README.md | 6 +++--- 5 files changed, 36 insertions(+), 36 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index 86c3ce6df234..443febc6cf79 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.0-rc.2`, `1.15.0-rc`, `1.15`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/Dockerfile) -- [`1.15.0-rc.2-slim`, `1.15.0-rc-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/slim/Dockerfile) -- [`1.15.0-rc.2-alpine`, `1.15.0-rc-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/alpine/Dockerfile) -- [`1.15.0-rc.2-otp-24`, `1.15.0-rc-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24/Dockerfile) -- [`1.15.0-rc.2-otp-24-alpine`, `1.15.0-rc-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24-alpine/Dockerfile) -- [`1.15.0-rc.2-otp-24-slim`, `1.15.0-rc-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-24-slim/Dockerfile) -- [`1.15.0-rc.2-otp-25`, `1.15.0-rc-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25/Dockerfile) -- [`1.15.0-rc.2-otp-25-alpine`, `1.15.0-rc-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25-alpine/Dockerfile) -- [`1.15.0-rc.2-otp-25-slim`, `1.15.0-rc-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/e8b16bb2e929f74eb288d54f623aa70cd668df97/1.15/otp-25-slim/Dockerfile) -- [`1.14.5`, `1.14`, `latest`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) -- [`1.14.5-slim`, `1.14-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) -- [`1.14.5-alpine`, `1.14-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) -- [`1.14.5-otp-24`, `1.14-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) -- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) -- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) -- [`1.14.5-otp-25`, `1.14-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) -- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) -- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) +- [`1.15.0`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/Dockerfile) +- [`1.15.0-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/slim/Dockerfile) +- [`1.15.0-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/alpine/Dockerfile) +- [`1.15.0-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24/Dockerfile) +- [`1.15.0-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24-alpine/Dockerfile) +- [`1.15.0-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24-slim/Dockerfile) +- [`1.15.0-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25/Dockerfile) +- [`1.15.0-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25-alpine/Dockerfile) +- [`1.15.0-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25-slim/Dockerfile) +- [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) +- [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) +- [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) +- [`1.14.5-otp-24`, `1.14-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) +- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) +- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) +- [`1.14.5-otp-25`, `1.14-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) +- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) +- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) - [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) diff --git a/nats/README.md b/nats/README.md index bfcbdfd7aecd..eaf439a820dd 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.18-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.18-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/alpine3.18/Dockerfile) -- [`2.9.18-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.18-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/scratch/Dockerfile) -- [`2.9.18-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/windowsservercore-1809/Dockerfile) -- [`2.9.18-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) +- [`2.9.19-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.19-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/alpine3.18/Dockerfile) +- [`2.9.19-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.19-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/scratch/Dockerfile) +- [`2.9.19-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/windowsservercore-1809/Dockerfile) +- [`2.9.19-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.18`, `2.9`, `2`, `latest`: - - [`2.9.18-scratch`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/scratch/Dockerfile) - - [`2.9.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) -- `2.9.18-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.18-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/windowsservercore-1809/Dockerfile) -- `2.9.18-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a7917b933c57aa43adb4d73f4fd7733a0fb545dd/2.9.18/nanoserver-1809/Dockerfile) +- `2.9.19`, `2.9`, `2`, `latest`: + - [`2.9.19-scratch`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/scratch/Dockerfile) + - [`2.9.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) +- `2.9.19-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.19-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/windowsservercore-1809/Dockerfile) +- `2.9.19-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 9ca0ba346128..903c3421faa5 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230610`, `latest`](https://github.com/vmware/photon-docker-image/blob/a7070b63a1f39a8d3f2c9a3f04141ca7d38f908c/docker/Dockerfile) +- [`5.0`, `5.0-20230619`, `latest`](https://github.com/vmware/photon-docker-image/blob/6ffc2b92062bc0ea906a68aee9a82a8dc8e8fbc9/docker/Dockerfile) - [`4.0`, `4.0-20230610`](https://github.com/vmware/photon-docker-image/blob/bfcc62e8b793dbd0713264dd9502ebe390038fae/docker/Dockerfile) -- [`3.0`, `3.0-20230610`](https://github.com/vmware/photon-docker-image/blob/d2b08740570639872a751eb2949ce70305c277be/docker/Dockerfile) +- [`3.0`, `3.0-20230617`](https://github.com/vmware/photon-docker-image/blob/aec9891fe13fac3dcc8f1393c8256396078dc88e/docker/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 63d46b68b2bf..25bd68b9c153 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) - [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) -- [`v2.10.1-windowsservercore-1809`, `2.10.1-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/windows/1809/Dockerfile) -- [`v2.10.1`, `2.10.1`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/0f5f057e1310e073297e1ed93ba6db65e0abcfef/alpine/Dockerfile) +- [`v2.10.3-windowsservercore-1809`, `2.10.3-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/windows/1809/Dockerfile) +- [`v2.10.3`, `2.10.3`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index d18cf72dc156..61cbe60007b0 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.4`, `15.4.0`, `15-mysql-tomcat`, `15.4-mysql-tomcat`, `15.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.4-postgres-tomcat`, `15.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.4-mariadb-tomcat`, `15.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.12`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4485224ea1febafa8b46529cbe560471855c7a42/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.13`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 00b10a449a61b68f8b5e45ec34da2e8b3354f67b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 17:08:52 -0700 Subject: [PATCH 0390/2686] Run update.sh --- vault/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/vault/README.md b/vault/README.md index 17bc5a1a5c1a..71ba7092eca5 100644 --- a/vault/README.md +++ b/vault/README.md @@ -28,10 +28,9 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Supported tags and respective `Dockerfile` links -- [`1.13.2`, `latest`](https://github.com/hashicorp/docker-vault/blob/92e6cded15b716b1e92a7b36eefbe9a5d9967e55/0.X/Dockerfile) -- [`1.12.6`](https://github.com/hashicorp/docker-vault/blob/cdbd2879fc547518ed4a0f5a04d98cbc8b38aa03/0.X/Dockerfile) -- [`1.11.10`](https://github.com/hashicorp/docker-vault/blob/4d89358cb1a1b1c779a4b22a1b85d3702ff01c44/0.X/Dockerfile) -- [`1.10.11`](https://github.com/hashicorp/docker-vault/blob/dd29a490ec67705d58da784656b65a4947c53e4f/0.X/Dockerfile) +- [`1.13.3`, `latest`](https://github.com/hashicorp/docker-vault/blob/152f49d818b2764c437ee1fd20ee4d13791a8296/0.X/Dockerfile) +- [`1.12.7`](https://github.com/hashicorp/docker-vault/blob/48d258c844d65814e16c123f8d3750a4e73e4350/0.X/Dockerfile) +- [`1.11.11`](https://github.com/hashicorp/docker-vault/blob/e90ed0d020018291fabd520e9c36196c1e58f049/0.X/Dockerfile) # Quick reference (cont.) From b0b604ea35ca21c724fbcf2524ca549184ecb32e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Jun 2023 18:17:46 -0700 Subject: [PATCH 0391/2686] Run update.sh --- ghost/README.md | 4 +- hylang/README.md | 80 ++++++++++++++++++++-------------------- memcached/README.md | 4 +- mongo/README.md | 72 ++++++++++++++++++------------------ nats-streaming/README.md | 22 +++++------ openjdk/README.md | 72 ++++++++++++++++++------------------ pypy/README.md | 52 +++++++++++++------------- 7 files changed, 153 insertions(+), 153 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b03f19c329ad..26f3606bebd6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.51.1`, `5.51`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dcfb569a25ddbe7533ae655baae9288206e33df6/5/debian/Dockerfile) -- [`5.51.1-alpine`, `5.51-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dcfb569a25ddbe7533ae655baae9288206e33df6/5/alpine/Dockerfile) +- [`5.52.1`, `5.52`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c603ddb07cb2b5db98bdf1e53c0225c3ab124f2c/5/debian/Dockerfile) +- [`5.52.1-alpine`, `5.52-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c603ddb07cb2b5db98bdf1e53c0225c3ab124f2c/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index fa76602ba643..7749f70e9836 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,55 +28,55 @@ WARNING: ## Simple Tags -- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.26.0-python3.11-buster`, `0.26-python3.11-buster`, `0-python3.11-buster`, `python3.11-buster`, `0.26.0-buster`, `0.26-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-buster) -- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.26.0-python3.10-buster`, `0.26-python3.10-buster`, `0-python3.10-buster`, `python3.10-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-buster) -- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.26.0-python3.9-buster`, `0.26-python3.9-buster`, `0-python3.9-buster`, `python3.9-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-buster) -- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.26.0-python3.8-buster`, `0.26-python3.8-buster`, `0-python3.8-buster`, `python3.8-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-buster) -- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- [`0.26.0-python3.7-buster`, `0.26-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-buster) -- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) -- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) -- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.26.0-pypy3.9-buster`, `0.26-pypy3.9-buster`, `0-pypy3.9-buster`, `pypy3.9-buster`, `0.26.0-pypy-buster`, `0.26-pypy-buster`, `0-pypy-buster`, `pypy-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-buster) -- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) -- [`0.26.0-pypy3.8-buster`, `0.26-pypy3.8-buster`, `0-pypy3.8-buster`, `pypy3.8-buster`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-buster) -- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) +- [`0.26.0-python3.11-bookworm`, `0.26-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.26.0-bookworm`, `0.26-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.26.0-python3.10-bookworm`, `0.26-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.26.0-python3.9-bookworm`, `0.26-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.26.0-python3.8-bookworm`, `0.26-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.26.0-python3.7-bookworm`, `0.26-python3.7-bookworm`, `0-python3.7-bookworm`, `python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bookworm) +- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bullseye) +- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) +- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) +- [`0.26.0-pypy3.9-bookworm`, `0.26-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`, `0.26.0-pypy-bookworm`, `0.26-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.26.0-pypy3.8-bookworm`, `0.26-pypy3.8-bookworm`, `0-pypy3.8-bookworm`, `pypy3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bookworm) +- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) +- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) ## Shared Tags - `0.26.0-python3.11`, `0.26-python3.11`, `0-python3.11`, `python3.11`, `0.26.0`, `0.26`, `0`, `latest`: - - [`0.26.0-python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.11-bullseye) + - [`0.26.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.26.0-python3.10`, `0.26-python3.10`, `0-python3.10`, `python3.10`: - - [`0.26.0-python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.10-bullseye) + - [`0.26.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.26.0-python3.9`, `0.26-python3.9`, `0-python3.9`, `python3.9`: - - [`0.26.0-python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.9-bullseye) + - [`0.26.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.26.0-python3.8`, `0.26-python3.8`, `0-python3.8`, `python3.8`: - - [`0.26.0-python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.8-bullseye) + - [`0.26.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.26.0-python3.7`, `0.26-python3.7`, `0-python3.7`, `python3.7`: - - [`0.26.0-python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.python3.7-bullseye) + - [`0.26.0-python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bookworm) - `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: - - [`0.26.0-pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) - - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.26.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) - `0.26.0-pypy3.8`, `0.26-pypy3.8`, `0-pypy3.8`, `pypy3.8`: - - [`0.26.0-pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) - - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/20029f53b97799993d0de52043f274835bd1794c/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) + - [`0.26.0-pypy3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bookworm) + - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) # Quick reference (cont.) @@ -139,7 +139,7 @@ The `hylang` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `hylang:-alpine` diff --git a/memcached/README.md b/memcached/README.md index 206985bf2d51..4859584b6978 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.20`, `1.6`, `1`, `latest`, `1.6.20-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/3e552dc7c3907467c258c986cb4763a544ee3041/debian/Dockerfile) -- [`1.6.20-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.20-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/067704d799d434d12ad73b1334358e1b6d4cf8b5/alpine/Dockerfile) +- [`1.6.21`, `1.6`, `1`, `latest`, `1.6.21-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/debian/Dockerfile) +- [`1.6.21-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.21-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index d9282f9acb99..028bbb458d55 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,46 +28,56 @@ WARNING: ## Simple Tags -- [`7.0.0-rc3-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/Dockerfile) -- [`7.0.0-rc3-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc3-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc3-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc3-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) +- [`7.0.0-rc4-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/Dockerfile) +- [`7.0.0-rc4-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc4-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc4-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc4-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.7-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) +- [`6.0.7-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.7-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.7-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.7-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.6-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.6-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.6-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/Dockerfile) +- [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.18-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.18-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.18-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.22-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/Dockerfile) +- [`4.4.22-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) - [`4.4.22-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.22-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.22-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.22-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) -- [`4.2.24-bionic`, `4.2-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) -- [`4.2.24-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.24-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) -- [`4.2.24-nanoserver-ltsc2022`, `4.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.2.24-nanoserver-1809`, `4.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `7.0.0-rc3`, `7.0-rc`: - - [`7.0.0-rc3-jammy`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/Dockerfile) - - [`7.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc3-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc3-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a1cb9da941fadaae8ff79cc3ae07926a33cffb70/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc4`, `7.0-rc`: + - [`7.0.0-rc4-jammy`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/Dockerfile) + - [`7.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc4-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc4-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.7-rc0`, `6.0-rc`: + - [`6.0.7-rc0-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) + - [`6.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.7-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.7-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.7-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.7-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.6`, `6.0`, `6`, `latest`: - - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/Dockerfile) + - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/6.0/Dockerfile) - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.6-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: @@ -77,7 +87,7 @@ WARNING: - [`6.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.18`, `5.0`, `5`: - - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/Dockerfile) + - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.18-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -87,7 +97,7 @@ WARNING: - [`5.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.22`, `4.4`, `4`: - - [`4.4.22-focal`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/Dockerfile) + - [`4.4.22-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.22-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: @@ -96,16 +106,6 @@ WARNING: - `4.4.22-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - [`4.4.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) -- `4.2.24`, `4.2`: - - [`4.2.24-bionic`](https://github.com/docker-library/mongo/blob/685ebeabb78e90b579a7624d2a231646e2866258/4.2/Dockerfile) - - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-windowsservercore`, `4.2-windowsservercore`: - - [`4.2.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/windowsservercore-1809/Dockerfile) -- `4.2.24-nanoserver`, `4.2-nanoserver`: - - [`4.2.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.2.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c597a2eee3a69b43f7ce07f1d83a0b1e1788eb51/4.2/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/nats-streaming/README.md b/nats-streaming/README.md index 04e3100d55ca..53686f2893b0 100644 --- a/nats-streaming/README.md +++ b/nats-streaming/README.md @@ -32,20 +32,20 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f ## Simple Tags -- [`0.25.4-alpine3.17`, `0.25-alpine3.17`, `alpine3.17`, `0.25.4-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/alpine3.17/Dockerfile) -- [`0.25.4-scratch`, `0.25-scratch`, `scratch`, `0.25.4-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/scratch/Dockerfile) -- [`0.25.4-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/windowsservercore-1809/Dockerfile) -- [`0.25.4-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) +- [`0.25.5-alpine3.18`, `0.25-alpine3.18`, `alpine3.18`, `0.25.5-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/alpine3.18/Dockerfile) +- [`0.25.5-scratch`, `0.25-scratch`, `scratch`, `0.25.5-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/scratch/Dockerfile) +- [`0.25.5-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/windowsservercore-1809/Dockerfile) +- [`0.25.5-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) ## Shared Tags -- `0.25.4`, `0.25`, `latest`: - - [`0.25.4-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/scratch/Dockerfile) - - [`0.25.4-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) -- `0.25.4-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: - - [`0.25.4-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/windowsservercore-1809/Dockerfile) -- `0.25.4-nanoserver`, `0.25-nanoserver`, `nanoserver`: - - [`0.25.4-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/7dcf7bcee0918c192537b1b6c430ff8f71be3fb7/0.25.4/nanoserver-1809/Dockerfile) +- `0.25.5`, `0.25`, `latest`: + - [`0.25.5-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/scratch/Dockerfile) + - [`0.25.5-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) +- `0.25.5-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: + - [`0.25.5-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/windowsservercore-1809/Dockerfile) +- `0.25.5-nanoserver`, `0.25-nanoserver`, `nanoserver`: + - [`0.25.5-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 8090bb112cc6..31ebf21137cd 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-1-jdk-oraclelinux8`, `22-ea-1-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-1-jdk-oracle`, `22-ea-1-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-1-jdk-oraclelinux7`, `22-ea-1-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-1-jdk-bookworm`, `22-ea-1-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/22/jdk/bookworm/Dockerfile) -- [`22-ea-1-jdk-slim-bookworm`, `22-ea-1-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-1-jdk-slim`, `22-ea-1-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-1-jdk-bullseye`, `22-ea-1-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/bullseye/Dockerfile) -- [`22-ea-1-jdk-slim-bullseye`, `22-ea-1-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-1-jdk-windowsservercore-ltsc2022`, `22-ea-1-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-1-jdk-windowsservercore-1809`, `22-ea-1-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-1-jdk-nanoserver-1809`, `22-ea-1-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-26-jdk-oraclelinux8`, `21-ea-26-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-26-jdk-oracle`, `21-ea-26-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-26-jdk-oraclelinux7`, `21-ea-26-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-26-jdk-bookworm`, `21-ea-26-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/21/jdk/bookworm/Dockerfile) -- [`21-ea-26-jdk-slim-bookworm`, `21-ea-26-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-26-jdk-slim`, `21-ea-26-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/5950d774a8ab08c268089daed29c6ad949e7f2b5/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-26-jdk-bullseye`, `21-ea-26-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/bullseye/Dockerfile) -- [`21-ea-26-jdk-slim-bullseye`, `21-ea-26-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-26-jdk-windowsservercore-ltsc2022`, `21-ea-26-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-26-jdk-windowsservercore-1809`, `21-ea-26-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-26-jdk-nanoserver-1809`, `21-ea-26-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-2-jdk-oraclelinux8`, `22-ea-2-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-2-jdk-oracle`, `22-ea-2-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-2-jdk-oraclelinux7`, `22-ea-2-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-2-jdk-bookworm`, `22-ea-2-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/bookworm/Dockerfile) +- [`22-ea-2-jdk-slim-bookworm`, `22-ea-2-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-2-jdk-slim`, `22-ea-2-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-2-jdk-bullseye`, `22-ea-2-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/bullseye/Dockerfile) +- [`22-ea-2-jdk-slim-bullseye`, `22-ea-2-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-2-jdk-windowsservercore-ltsc2022`, `22-ea-2-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-2-jdk-windowsservercore-1809`, `22-ea-2-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-2-jdk-nanoserver-1809`, `22-ea-2-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-27-jdk-oraclelinux8`, `21-ea-27-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-27-jdk-oracle`, `21-ea-27-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-27-jdk-oraclelinux7`, `21-ea-27-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-27-jdk-bookworm`, `21-ea-27-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/bookworm/Dockerfile) +- [`21-ea-27-jdk-slim-bookworm`, `21-ea-27-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-27-jdk-slim`, `21-ea-27-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-27-jdk-bullseye`, `21-ea-27-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/bullseye/Dockerfile) +- [`21-ea-27-jdk-slim-bullseye`, `21-ea-27-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-27-jdk-windowsservercore-ltsc2022`, `21-ea-27-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-27-jdk-windowsservercore-1809`, `21-ea-27-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-27-jdk-nanoserver-1809`, `21-ea-27-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-1-jdk`, `22-ea-1`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-1-jdk-windowsservercore`, `22-ea-1-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-1-jdk-nanoserver`, `22-ea-1-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/323e8d8de1ae7e3cfaeb85e20551a5e895461296/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-26-jdk`, `21-ea-26`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-26-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-26-jdk-windowsservercore`, `21-ea-26-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-26-jdk-nanoserver`, `21-ea-26-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/80e68331aa892172d33b73fd4ef25ac0088c3628/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-2-jdk`, `22-ea-2`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-2-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-2-jdk-windowsservercore`, `22-ea-2-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-2-jdk-nanoserver`, `22-ea-2-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-27-jdk`, `21-ea-27`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-27-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-27-jdk-windowsservercore`, `21-ea-27-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-27-jdk-nanoserver`, `21-ea-27-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 791ca49115c6..7ab9ec489362 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`3.9-7.3.11-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`, `3-7.3.11-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bookworm/Dockerfile) -- [`3.9-7.3.11-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`, `3-7.3.11-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.11-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`, `3-7.3.11-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bullseye/Dockerfile) -- [`3.9-7.3.11-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3-7.3.11-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.9-7.3.11-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`, `3-7.3.11-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.11-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`, `3-7.3.11-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.11-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-7.3.11-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.12-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`, `3-7.3.12-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bookworm/Dockerfile) +- [`3.9-7.3.12-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`, `3-7.3.12-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.12-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`, `3-7.3.12-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) +- [`3.9-7.3.12-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3-7.3.12-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.9-7.3.12-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`, `3-7.3.12-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.12-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`, `3-7.3.12-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.12-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-7.3.12-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) - [`3.8-7.3.11-bookworm`, `3.8-7.3-bookworm`, `3.8-7-bookworm`, `3.8-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bookworm/Dockerfile) - [`3.8-7.3.11-slim-bookworm`, `3.8-7.3-slim-bookworm`, `3.8-7-slim-bookworm`, `3.8-slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bookworm/Dockerfile) - [`3.8-7.3.11-bullseye`, `3.8-7.3-bullseye`, `3.8-7-bullseye`, `3.8-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) - [`3.8-7.3.11-slim`, `3.8-7.3-slim`, `3.8-7-slim`, `3.8-slim`, `3.8-7.3.11-slim-bullseye`, `3.8-7.3-slim-bullseye`, `3.8-7-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bullseye/Dockerfile) - [`3.8-7.3.11-windowsservercore-ltsc2022`, `3.8-7.3-windowsservercore-ltsc2022`, `3.8-7-windowsservercore-ltsc2022`, `3.8-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.8-7.3.11-windowsservercore-1809`, `3.8-7.3-windowsservercore-1809`, `3.8-7-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.11-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.11-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bookworm/Dockerfile) -- [`2.7-7.3.11-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.11-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.11-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.11-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bullseye/Dockerfile) -- [`2.7-7.3.11-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.11-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.11-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.11-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.11-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.11-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.11-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.11-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.12-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.12-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bookworm/Dockerfile) +- [`2.7-7.3.12-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.12-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.12-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.12-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) +- [`2.7-7.3.12-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.12-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.12-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.12-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.12-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.12-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.12-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.12-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.9-7.3.11`, `3.9-7.3`, `3.9-7`, `3.9`, `3-7.3.11`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.9-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.9/bullseye/Dockerfile) - - [`3.9-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.11-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`, `3-7.3.11-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.9-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/f297f09255e5a53036355e2e4135c75542099641/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.12`, `3.9-7.3`, `3.9-7`, `3.9`, `3-7.3.12`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.9-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) + - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.12-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`, `3-7.3.12-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) - `3.8-7.3.11`, `3.8-7.3`, `3.8-7`, `3.8`: - [`3.8-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) @@ -63,13 +63,13 @@ WARNING: - `3.8-7.3.11-windowsservercore`, `3.8-7.3-windowsservercore`, `3.8-7-windowsservercore`, `3.8-windowsservercore`: - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.8-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.11`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.11`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/2.7/bullseye/Dockerfile) - - [`2.7-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.11-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.11-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6984fd15d26f75e4078da3380ba405c41f585f98/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.12`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.12`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) + - [`2.7-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.12-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.12-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 1be9eb8077f353a25a710251c997ab9ab489a66c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Jun 2023 10:08:54 -0700 Subject: [PATCH 0392/2686] Run update.sh --- node/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index e9a54df2a895..9a7838fa1b0a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.0-alpine`, `20.3.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.3`, `20.3-bookworm`, `20.3.0`, `20.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.0-bookworm-slim`, `20.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.3-bullseye`, `20.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.3-buster`, `20.3.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster/Dockerfile) -- [`20-buster-slim`, `20.3-buster-slim`, `20.3.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/cf175362b1011bd85052a0034a4d3f8dae45345f/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.0-alpine`, `18.16.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.0`, `18.16.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.0-bookworm-slim`, `18.16.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.16-bullseye`, `18.16.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.16-buster`, `18.16.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster/Dockerfile) -- [`18-buster-slim`, `18.16-buster-slim`, `18.16.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/4c95f887f7863eccc17d66729cd24ecc230209a2/18/buster-slim/Dockerfile) -- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.0-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.17/Dockerfile) -- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.0-alpine`, `16.20.0-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d951a7ff95eac09985446409589d6ea75ac42f96/16/alpine3.18/Dockerfile) -- [`16-bookworm`, `16.20-bookworm`, `16.20.0-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/16/bookworm/Dockerfile) -- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.0-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/92f7975318fe8d49e83653bf93a27e4af4a4872c/16/bookworm-slim/Dockerfile) -- [`16-bullseye`, `16.20-bullseye`, `16.20.0-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.0-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/bullseye-slim/Dockerfile) -- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.0`, `16.20.0-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.0-buster-slim`, `16.20.0-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/bd6c00f07c5a3b311ce0e346ab69df6b9ef8d08f/16/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.1-alpine`, `20.3.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.3`, `20.3-bookworm`, `20.3.1`, `20.3.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.1-bookworm-slim`, `20.3.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.3-bullseye`, `20.3.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.3-buster`, `20.3.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/buster/Dockerfile) +- [`20-buster-slim`, `20.3-buster-slim`, `20.3.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.1-alpine`, `18.16.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.1`, `18.16.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.1-bookworm-slim`, `18.16.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.16-bullseye`, `18.16.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.16-buster`, `18.16.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/buster/Dockerfile) +- [`18-buster-slim`, `18.16-buster-slim`, `18.16.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/buster-slim/Dockerfile) +- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.1-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.17/Dockerfile) +- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.1-alpine`, `16.20.1-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.18/Dockerfile) +- [`16-bookworm`, `16.20-bookworm`, `16.20.1-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm/Dockerfile) +- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.1-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm-slim/Dockerfile) +- [`16-bullseye`, `16.20-bullseye`, `16.20.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bullseye/Dockerfile) +- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bullseye-slim/Dockerfile) +- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.1`, `16.20.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/buster/Dockerfile) +- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.1-buster-slim`, `16.20.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/buster-slim/Dockerfile) # Quick reference (cont.) From 8850ce17d5a193376f04efc4257a83575cc0fc9d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Jun 2023 12:18:08 -0700 Subject: [PATCH 0393/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- irssi/README.md | 6 ++++-- kibana/README.md | 2 +- logstash/README.md | 2 +- percona/README.md | 2 +- python/README.md | 30 +++++++++++++++--------------- rabbitmq/README.md | 16 ++++++++-------- 8 files changed, 32 insertions(+), 30 deletions(-) diff --git a/bash/README.md b/bash/README.md index 81d6e40a0665..30f988a7869b 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230612`, `devel`, `devel-20230612-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/5c9c1503ece91a6659e52570e787ebb1fa5aec53/devel/Dockerfile) +- [`devel-20230616`, `devel`, `devel-20230616-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/6c6da312e72d85e41d5631fe18fb3785e3af331b/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 5b164bc7ced0..206ce5da0eb3 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0`](https://github.com/docker-library/elasticsearch/blob/3ecc4007656f868f1811566a766bff0c65d26242/8/Dockerfile) +- [`8.8.1`](https://github.com/docker-library/elasticsearch/blob/0404371923419eeb901956b8cb4fcc308da088b2/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/elasticsearch/blob/e95712a301d6adacde7ef3d31d54dd9bca752426/7/Dockerfile) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 3894b0325ef1..6b38a06e26de 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.4`, `1.4`, `1`, `latest`](https://github.com/jessfraz/irssi/blob/663b9b815d858c94ae6224183afed602d291587e/debian/Dockerfile) -- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`](https://github.com/jessfraz/irssi/blob/6806daa0d17eae1cd10df10ff3a533d3655ac9f8/alpine/Dockerfile) +- [`1.4.4`, `1.4`, `1`, `latest`, `1.4.4-bullseye`, `1.4-bullseye`, `1-bullseye`, `bullseye`](https://github.com/jessfraz/irssi/blob/663b9b815d858c94ae6224183afed602d291587e/debian/Dockerfile) +- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.4-alpine3.17`, `1.4-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/jessfraz/irssi/blob/6806daa0d17eae1cd10df10ff3a533d3655ac9f8/alpine/Dockerfile) # Quick reference (cont.) @@ -93,6 +93,8 @@ The `irssi` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + ## `irssi:-alpine` This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/kibana/README.md b/kibana/README.md index 0b698e2d5a65..ec428de3f31d 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0`](https://github.com/docker-library/kibana/blob/2770daca005958cbb53a576d90254567cc06100a/8/Dockerfile) +- [`8.8.1`](https://github.com/docker-library/kibana/blob/babe715a9ea3c4024d56d1bdffdc5feaed901df6/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/kibana/blob/6dc8cf4590a7259135398fe84648b76fdb79ac2e/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 13167ad2ddf8..0a331550775e 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0`](https://github.com/docker-library/logstash/blob/6b04b9094d63927600bee099ab482d6b7467d038/8/Dockerfile) +- [`8.8.1`](https://github.com/docker-library/logstash/blob/f6c2e750d4dd9a91c3fd9b71b4f9ae6137848514/8/Dockerfile) - [`7.17.10`](https://github.com/docker-library/logstash/blob/963070bbacb3ca9dd3aea80abf24da2113254f81/7/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 99b13218c5cb..1da5b0a74d48 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.32-24-centos`, `8.0-centos`, `8-centos`, `8.0.32-24`, `8.0`, `8`, `ps-8.0.32-24`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/97417b76d33a5ffb62a7e20723752a25fdbad5e7/percona-server-8.0/Dockerfile) +- [`8.0.33-25-centos`, `8.0-centos`, `8-centos`, `8.0.33-25`, `8.0`, `8`, `ps-8.0.33-25`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/3f666ccdf6a9eed0e0505723fbe8b4954a105c99/percona-server-8.0/Dockerfile) - [`5.7.35-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.35`, `5.7`, `5`, `ps-5.7.35`, `ps-5.7`, `ps-5`, `latest`](https://github.com/percona/percona-docker/blob/f1697b98ebb86a8d684c4192fa382b00ae1860ff/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-5.0.10`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/0003693083fc3b6a904fd83a63096705aff46cca/percona-server-mongodb-5.0/Dockerfile) diff --git a/python/README.md b/python/README.md index 9e9a2017e6f9..d2cb8d90d85a 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0b2-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/bookworm/Dockerfile) -- [`3.12.0b2-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0b2-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/bullseye/Dockerfile) -- [`3.12.0b2-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0b2-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0b2-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0b2-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0b2-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0b3-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bookworm/Dockerfile) +- [`3.12.0b3-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b3-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0b3-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bullseye/Dockerfile) +- [`3.12.0b3-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0b3-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0b3-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0b3-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0b3-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bookworm/Dockerfile) - [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) @@ -71,13 +71,13 @@ WARNING: ## Shared Tags -- `3.12.0b2`, `3.12-rc`: - - [`3.12.0b2-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.12-rc/bookworm/Dockerfile) - - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0b2-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/de2ce8ecb7b5522262dd97e8e87739e4b6d1e6bf/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b3`, `3.12-rc`: + - [`3.12.0b3-bookworm`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bookworm/Dockerfile) + - [`3.12.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b3-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.4`, `3.11`, `3`, `latest`: - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 42610fc9bc14..e85694a66fcb 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b7d3633626f3dff15433626045bfcfdba7a5fa3e/3.12/ubuntu/Dockerfile) +- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.12/ubuntu/Dockerfile) - [`3.12.0-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b7d3633626f3dff15433626045bfcfdba7a5fa3e/3.12/alpine/Dockerfile) +- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.12/alpine/Dockerfile) - [`3.12.0-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/14833a0939f0cb97caf54270c9c90aca1a35c949/3.11/ubuntu/Dockerfile) +- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.11/ubuntu/Dockerfile) - [`3.11.18-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/14833a0939f0cb97caf54270c9c90aca1a35c949/3.11/alpine/Dockerfile) +- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.11/alpine/Dockerfile) - [`3.11.18-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/56b13d64f8314bcfe11e74afaa8f0e0882456a41/3.10/ubuntu/Dockerfile) +- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.10/ubuntu/Dockerfile) - [`3.10.24-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/56b13d64f8314bcfe11e74afaa8f0e0882456a41/3.10/alpine/Dockerfile) +- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.10/alpine/Dockerfile) - [`3.10.24-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/8b63feadd40dbf009de8d0282ec9037e00560707/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/8b63feadd40dbf009de8d0282ec9037e00560707/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 17e5a1e334dd2a50515759f68a2503df2680302d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Jun 2023 15:16:56 -0700 Subject: [PATCH 0394/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 1737da65d235..576ced312733 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4b57910dfca50a6f74010d3cc371df4d6d297aca/telegraf/1.27/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.27/alpine/Dockerfile) # Quick reference (cont.) From 33ce36a8afe92a6ad21962d65f9757fe6ce4fd88 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Jun 2023 17:19:18 -0700 Subject: [PATCH 0395/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- ghost/README.md | 4 ++-- golang/README.md | 30 ++++++++++++++++++++++++------ wordpress/README.md | 12 ++++++------ 4 files changed, 42 insertions(+), 24 deletions(-) diff --git a/docker/README.md b/docker/README.md index c8c9ba716524..8ae7f8a6d18a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/cli/Dockerfile) +- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/cli/Dockerfile) - [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/36a4df919e51b459eaf08c2f7d395b71d8e331c3/24/dind/Dockerfile) - [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) - [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/cli/Dockerfile) +- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.2-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2788daa08c8580471e25f61d9d4203add10c41d3/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09c6cc3e98de81e95d4bff0bc44e60332b37a617/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 26f3606bebd6..831542523395 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.52.1`, `5.52`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c603ddb07cb2b5db98bdf1e53c0225c3ab124f2c/5/debian/Dockerfile) -- [`5.52.1-alpine`, `5.52-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c603ddb07cb2b5db98bdf1e53c0225c3ab124f2c/5/alpine/Dockerfile) +- [`5.52.3`, `5.52`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6106b41a8c02718d0eb2386483b123398ba5772a/5/debian/Dockerfile) +- [`5.52.3-alpine`, `5.52-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6106b41a8c02718d0eb2386483b123398ba5772a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 3b66cacd9bfe..a42a997804f8 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,16 +28,24 @@ WARNING: ## Simple Tags -- [`1.20.5-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.20/bookworm/Dockerfile) -- [`1.20.5-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/bullseye/Dockerfile) +- [`1.21rc2-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bookworm/Dockerfile) +- [`1.21rc2-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bullseye/Dockerfile) +- [`1.21rc2-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc2-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/alpine3.18/Dockerfile) +- [`1.21rc2-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/alpine3.17/Dockerfile) +- [`1.21rc2-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21rc2-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.21rc2-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21rc2-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) +- [`1.20.5-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bookworm/Dockerfile) +- [`1.20.5-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bullseye/Dockerfile) - [`1.20.5-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.5-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.18/Dockerfile) - [`1.20.5-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.17/Dockerfile) - [`1.20.5-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.5-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.5-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.5-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.10-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.19/bookworm/Dockerfile) -- [`1.19.10-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/bullseye/Dockerfile) +- [`1.19.10-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bookworm/Dockerfile) +- [`1.19.10-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bullseye/Dockerfile) - [`1.19.10-alpine3.18`, `1.19-alpine3.18`, `1.19.10-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.18/Dockerfile) - [`1.19.10-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.17/Dockerfile) - [`1.19.10-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) @@ -47,8 +55,18 @@ WARNING: ## Shared Tags +- `1.21rc2`, `1.21-rc`: + - [`1.21rc2-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bookworm/Dockerfile) + - [`1.21rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc2-windowsservercore`, `1.21-rc-windowsservercore`: + - [`1.21rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc2-nanoserver`, `1.21-rc-nanoserver`: + - [`1.21rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) - `1.20.5`, `1.20`, `1`, `latest`: - - [`1.20.5-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.20/bookworm/Dockerfile) + - [`1.20.5-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bookworm/Dockerfile) - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) - `1.20.5-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -58,7 +76,7 @@ WARNING: - [`1.20.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) - `1.19.10`, `1.19`: - - [`1.19.10-bookworm`](https://github.com/docker-library/golang/blob/cd607138e461368506a6ba50be2163a09b93dab5/1.19/bookworm/Dockerfile) + - [`1.19.10-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bookworm/Dockerfile) - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) - `1.19.10-windowsservercore`, `1.19-windowsservercore`: diff --git a/wordpress/README.md b/wordpress/README.md index d53298fc5a57..06fe836efb76 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.0/apache/Dockerfile) -- [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm/Dockerfile) +- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.0/apache/Dockerfile) +- [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.0/fpm/Dockerfile) - [`6.2.2-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.2-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.1/apache/Dockerfile) -- [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm/Dockerfile) +- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.1/apache/Dockerfile) +- [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.1/fpm/Dockerfile) - [`6.2.2-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a0aacf3dbe87fde423bde4ef292dc1a929025d36/latest/php8.2/apache/Dockerfile) -- [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm/Dockerfile) +- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.2/apache/Dockerfile) +- [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.2/fpm/Dockerfile) - [`6.2.2-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) From 883d8e242e5cdb1a95c6d530d49b76631a6af030 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Jun 2023 18:08:53 -0700 Subject: [PATCH 0396/2686] Run update.sh --- irssi/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/irssi/README.md b/irssi/README.md index 6b38a06e26de..6dcdc7058cae 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.4`, `1.4`, `1`, `latest`, `1.4.4-bullseye`, `1.4-bullseye`, `1-bullseye`, `bullseye`](https://github.com/jessfraz/irssi/blob/663b9b815d858c94ae6224183afed602d291587e/debian/Dockerfile) -- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.4-alpine3.17`, `1.4-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/jessfraz/irssi/blob/6806daa0d17eae1cd10df10ff3a533d3655ac9f8/alpine/Dockerfile) +- [`1.4.4`, `1.4`, `1`, `latest`, `1.4.4-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b4d59338769521e17730ff1741c8502a9e210846/debian/Dockerfile) +- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.4-alpine3.18`, `1.4-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/jessfraz/irssi/blob/105374db8e9ecf2782c5302f17464547dd5c8609/alpine/Dockerfile) # Quick reference (cont.) @@ -93,7 +93,7 @@ The `irssi` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `irssi:-alpine` From 4bb86ad1c180d9c0051cd1d30403bc3db935b348 Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 22 Jun 2023 17:17:35 +0200 Subject: [PATCH 0397/2686] Remove obsolete Travis CI badge --- matomo/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matomo/content.md b/matomo/content.md index 6eccf13475b5..a8eb082f0f75 100644 --- a/matomo/content.md +++ b/matomo/content.md @@ -1,6 +1,6 @@ # Matomo (formerly Piwik) -[![Build Status](https://travis-ci.org/matomo-org/docker.svg?branch=master)](https://travis-ci.org/matomo-org/docker) [Matomo](https://matomo.org/) (formerly Piwik) is the leading open-source analytics platform that gives you more than just powerful analytics: +[Matomo](https://matomo.org/) (formerly Piwik) is the leading open-source analytics platform that gives you more than just powerful analytics: - Free open-source software - 100% data ownership From 57da5a4c315408ecd46a32a611a08fd7bb6c3633 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Jun 2023 13:09:31 -0700 Subject: [PATCH 0398/2686] Run update.sh --- traefik/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 25bd68b9c153..a35a1bd75b7f 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-beta2-windowsservercore-1809`, `3.0.0-beta2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/windows/1809/Dockerfile) -- [`v3.0.0-beta2`, `3.0.0-beta2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/e2fc89bcccd185a9e332deae22a71e209aca1fb3/alpine/Dockerfile) +- [`v3.0.0-beta3-windowsservercore-1809`, `3.0.0-beta3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/windows/1809/Dockerfile) +- [`v3.0.0-beta3`, `3.0.0-beta3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/alpine/Dockerfile) - [`v2.10.3-windowsservercore-1809`, `2.10.3-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/windows/1809/Dockerfile) - [`v2.10.3`, `2.10.3`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/alpine/Dockerfile) From 9c9fc15d9242f0cbafc8a054aac38a214f323884 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Jun 2023 14:08:54 -0700 Subject: [PATCH 0399/2686] Run update.sh --- plone/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plone/README.md b/plone/README.md index 970ddb37b656..98f78690a756 100644 --- a/plone/README.md +++ b/plone/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.9-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.9`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/dfb126db2d9c956d84ff381e7b1ee9f642edf716/5.2/5.2.9/debian/Dockerfile) -- [`5.2.8-python38`, `5.2.8`](https://github.com/plone/plone.docker/blob/dfb126db2d9c956d84ff381e7b1ee9f642edf716/5.2/5.2.8/debian/Dockerfile) +- [`5.2.12-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.12`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.12/debian/Dockerfile) +- [`5.2.11-python38`, `5.2.11`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.11/debian/Dockerfile) +- [`5.2.10-python38`, `5.2.10`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.10/debian/Dockerfile) # Quick reference (cont.) From e1d8b03453fef9045cd338a19a9d0c8abb2b8a67 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Jun 2023 15:09:05 -0700 Subject: [PATCH 0400/2686] Run update.sh --- emqx/README.md | 3 ++- matomo/README.md | 8 ++++---- postfixadmin/README.md | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index b6cca48436f1..af1d44202f7e 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.4.18`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/129bff4ea692ede8157aa3165a8c278bf982f47d/4.4/Dockerfile) -- [`5.0.26`, `5.0`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/ee9c3fd710eb7f04df3843656ec21a1be361afd5/5.0/Dockerfile) +- [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/ee9c3fd710eb7f04df3843656ec21a1be361afd5/5.0/Dockerfile) +- [`5.1.0`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/0d41c4cf54ee2e670ba14cf821581d8999205996/5.1/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 9e25a26f9174..e1b21e6d5f44 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.14.2-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.2`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/apache/Dockerfile) -- [`4.14.2-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/fpm/Dockerfile) -- [`4.14.2-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/0c354896c16e576f17b8f53c9c4b562b445b7d82/fpm-alpine/Dockerfile) +- [`4.14.2-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.2`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/2b172629cd0d9c14a24b08b6e5e99f1b7f36ea1d/apache/Dockerfile) +- [`4.14.2-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/2b172629cd0d9c14a24b08b6e5e99f1b7f36ea1d/fpm/Dockerfile) +- [`4.14.2-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/9e6b9e7d3fc758a65750dbb625b669d142f237aa/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -49,7 +49,7 @@ WARNING: # Matomo (formerly Piwik) -[![Build Status](https://travis-ci.org/matomo-org/docker.svg?branch=master)](https://travis-ci.org/matomo-org/docker) [Matomo](https://matomo.org/) (formerly Piwik) is the leading open-source analytics platform that gives you more than just powerful analytics: +[Matomo](https://matomo.org/) (formerly Piwik) is the leading open-source analytics platform that gives you more than just powerful analytics: - Free open-source software - 100% data ownership diff --git a/postfixadmin/README.md b/postfixadmin/README.md index e18458c7fd7c..76797ced4d09 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/b4307d956cb1cfe64df1402cf6d68a1369ba56de/apache/Dockerfile) -- [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/b4307d956cb1cfe64df1402cf6d68a1369ba56de/fpm/Dockerfile) +- [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/f0eccac1ed27a05031c515591d3c9f29502efb27/apache/Dockerfile) +- [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/f0eccac1ed27a05031c515591d3c9f29502efb27/fpm/Dockerfile) - [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/5030ec70f6a0dec12e39f5194fb29575b169f7b7/fpm-alpine/Dockerfile) # Quick reference (cont.) From 0a282ff6ebe42e1f7129ca1bde0e158dcacc17d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Jun 2023 16:08:57 -0700 Subject: [PATCH 0401/2686] Run update.sh --- drupal/README.md | 82 +++++++++++++++++++++++++++++++----------------- 1 file changed, 53 insertions(+), 29 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 46ebc96f272e..b7170ff40872 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,44 +24,68 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.9-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.9-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.9-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.9-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`, `10.0.9-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.9`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.9-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.9-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.9-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`, `10.0.9-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.9-php8.2-apache-buster`, `10.0-php8.2-apache-buster`, `10-php8.2-apache-buster`, `php8.2-apache-buster`, `10.0.9-apache-buster`, `10.0-apache-buster`, `10-apache-buster`, `apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/apache-buster/Dockerfile) -- [`10.0.9-php8.2-fpm-buster`, `10.0-php8.2-fpm-buster`, `10-php8.2-fpm-buster`, `php8.2-fpm-buster`, `10.0.9-fpm-buster`, `10.0-fpm-buster`, `10-fpm-buster`, `fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-buster/Dockerfile) +- [`10.0.9-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.0.9-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.9-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.9-apache-bookworm`, `10.0-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.0.9-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.9`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/apache-bookworm/Dockerfile) +- [`10.0.9-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.0.9-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.9-fpm-bookworm`, `10.0-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.0.9-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/fpm-bookworm/Dockerfile) +- [`10.0.9-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.9-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.9-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.9-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/fpm-bullseye/Dockerfile) - [`10.0.9-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.0.9-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.9-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.0.9-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.2/fpm-alpine3.18/Dockerfile) - [`10.0.9-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.9-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.9-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`, `10.0.9-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.9-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.9-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`, `10.0.9-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.9-php8.1-apache-buster`, `10.0-php8.1-apache-buster`, `10-php8.1-apache-buster`, `php8.1-apache-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/apache-buster/Dockerfile) -- [`10.0.9-php8.1-fpm-buster`, `10.0-php8.1-fpm-buster`, `10-php8.1-fpm-buster`, `php8.1-fpm-buster`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-buster/Dockerfile) +- [`10.0.9-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.0.9-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.9-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/apache-bookworm/Dockerfile) +- [`10.0.9-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.0.9-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/fpm-bookworm/Dockerfile) +- [`10.0.9-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.9-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/fpm-bullseye/Dockerfile) - [`10.0.9-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.0.9-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.1/fpm-alpine3.18/Dockerfile) - [`10.0.9-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.9-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.9-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.9-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`, `9.5.9-apache`, `9.5-apache`, `9-apache`, `9.5.9`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.9-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.9-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.9-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`, `9.5.9-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.9-php8.1-apache-buster`, `9.5-php8.1-apache-buster`, `9-php8.1-apache-buster`, `9.5.9-apache-buster`, `9.5-apache-buster`, `9-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/apache-buster/Dockerfile) -- [`9.5.9-php8.1-fpm-buster`, `9.5-php8.1-fpm-buster`, `9-php8.1-fpm-buster`, `9.5.9-fpm-buster`, `9.5-fpm-buster`, `9-fpm-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-buster/Dockerfile) +- [`9.5.9-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.9-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.9-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/apache-bookworm/Dockerfile) +- [`9.5.9-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.9-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-bookworm/Dockerfile) +- [`9.5.9-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/apache-bullseye/Dockerfile) +- [`9.5.9-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-bullseye/Dockerfile) +- [`9.5.9-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.9-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-alpine3.18/Dockerfile) +- [`9.5.9-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-alpine3.17/Dockerfile) +- [`9.5.9-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.9-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.9-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.9-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.9-apache`, `9.5-apache`, `9-apache`, `9.5.9`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/apache-bookworm/Dockerfile) +- [`9.5.9-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.9-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.9-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.9-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/fpm-bookworm/Dockerfile) +- [`9.5.9-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.9-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.9-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.9-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/fpm-bullseye/Dockerfile) - [`9.5.9-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.9-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.9-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.9-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.5/php8.1/fpm-alpine3.18/Dockerfile) - [`9.5.9-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.9-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`, `9.5.9-php8.0-apache`, `9.5-php8.0-apache`, `9-php8.0-apache`, `9.5.9-php8.0`, `9.5-php8.0`, `9-php8.0`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.9-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`, `9.5.9-php8.0-fpm`, `9.5-php8.0-fpm`, `9-php8.0-fpm`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.9-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.9-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.9-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.9-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.9-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.9-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/fpm-buster/Dockerfile) - [`9.5.9-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.15-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.15-php8.1-apache`, `9.4-php8.1-apache`, `9.4.15-php8.1`, `9.4-php8.1`, `9.4.15-apache-bullseye`, `9.4-apache-bullseye`, `9.4.15-apache`, `9.4-apache`, `9.4.15`, `9.4`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.15-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.15-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.15-fpm-bullseye`, `9.4-fpm-bullseye`, `9.4.15-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.15-php8.1-apache-buster`, `9.4-php8.1-apache-buster`, `9.4.15-apache-buster`, `9.4-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/apache-buster/Dockerfile) -- [`9.4.15-php8.1-fpm-buster`, `9.4-php8.1-fpm-buster`, `9.4.15-fpm-buster`, `9.4-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-buster/Dockerfile) +- [`9.4.15-php8.2-apache-bookworm`, `9.4-php8.2-apache-bookworm`, `9.4.15-php8.2-apache`, `9.4-php8.2-apache`, `9.4.15-php8.2`, `9.4-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/apache-bookworm/Dockerfile) +- [`9.4.15-php8.2-fpm-bookworm`, `9.4-php8.2-fpm-bookworm`, `9.4.15-php8.2-fpm`, `9.4-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-bookworm/Dockerfile) +- [`9.4.15-php8.2-apache-bullseye`, `9.4-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/apache-bullseye/Dockerfile) +- [`9.4.15-php8.2-fpm-bullseye`, `9.4-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-bullseye/Dockerfile) +- [`9.4.15-php8.2-fpm-alpine3.18`, `9.4-php8.2-fpm-alpine3.18`, `9.4.15-php8.2-fpm-alpine`, `9.4-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-alpine3.18/Dockerfile) +- [`9.4.15-php8.2-fpm-alpine3.17`, `9.4-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-alpine3.17/Dockerfile) +- [`9.4.15-php8.1-apache-bookworm`, `9.4-php8.1-apache-bookworm`, `9.4.15-php8.1-apache`, `9.4-php8.1-apache`, `9.4.15-php8.1`, `9.4-php8.1`, `9.4.15-apache-bookworm`, `9.4-apache-bookworm`, `9.4.15-apache`, `9.4-apache`, `9.4.15`, `9.4`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/apache-bookworm/Dockerfile) +- [`9.4.15-php8.1-fpm-bookworm`, `9.4-php8.1-fpm-bookworm`, `9.4.15-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.15-fpm-bookworm`, `9.4-fpm-bookworm`, `9.4.15-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/fpm-bookworm/Dockerfile) +- [`9.4.15-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.15-apache-bullseye`, `9.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/apache-bullseye/Dockerfile) +- [`9.4.15-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.15-fpm-bullseye`, `9.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/fpm-bullseye/Dockerfile) - [`9.4.15-php8.1-fpm-alpine3.18`, `9.4-php8.1-fpm-alpine3.18`, `9.4.15-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.15-fpm-alpine3.18`, `9.4-fpm-alpine3.18`, `9.4.15-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.4/php8.1/fpm-alpine3.18/Dockerfile) - [`9.4.15-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.15-fpm-alpine3.17`, `9.4-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.15-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`, `9.4.15-php8.0-apache`, `9.4-php8.0-apache`, `9.4.15-php8.0`, `9.4-php8.0`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.15-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`, `9.4.15-php8.0-fpm`, `9.4-php8.0-fpm`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.15-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-buster/Dockerfile) +- [`9.4.15-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/apache-bullseye/Dockerfile) +- [`9.4.15-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/fpm-bullseye/Dockerfile) +- [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/apache-buster/Dockerfile) +- [`9.4.15-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/fpm-buster/Dockerfile) - [`9.4.15-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.98-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.98-php8.0-apache`, `7-php8.0-apache`, `7.98-php8.0`, `7-php8.0`, `7.98-apache-bullseye`, `7-apache-bullseye`, `7.98-apache`, `7-apache`, `7.98`, `7`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/apache-bullseye/Dockerfile) -- [`7.98-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.98-php8.0-fpm`, `7-php8.0-fpm`, `7.98-fpm-bullseye`, `7-fpm-bullseye`, `7.98-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.98-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.98-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/apache-buster/Dockerfile) -- [`7.98-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.98-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-buster/Dockerfile) +- [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bookworm/Dockerfile) +- [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bullseye/Dockerfile) +- [`7.98-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.98-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`, `7.98-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.18/Dockerfile) +- [`7.98-php8.2-fpm-alpine3.17`, `7-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.17/Dockerfile) +- [`7.98-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.98-php8.1-apache`, `7-php8.1-apache`, `7.98-php8.1`, `7-php8.1`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/apache-bookworm/Dockerfile) +- [`7.98-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.98-php8.1-fpm`, `7-php8.1-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.98-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/apache-bullseye/Dockerfile) +- [`7.98-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.98-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.98-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.98-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.17/Dockerfile) +- [`7.98-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.98-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/apache-bullseye/Dockerfile) +- [`7.98-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.98-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/fpm-bullseye/Dockerfile) +- [`7.98-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.98-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/apache-buster/Dockerfile) +- [`7.98-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.98-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/fpm-buster/Dockerfile) - [`7.98-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.98-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-alpine3.16/Dockerfile) # Quick reference (cont.) @@ -251,7 +275,7 @@ The `drupal` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `drupal:-fpm` From 7b0499cc4f1aee06f24968060c10a060d88b4d6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Jun 2023 17:08:56 -0700 Subject: [PATCH 0402/2686] Run update.sh --- mongo/README.md | 30 +++++++++--------- openjdk/README.md | 72 +++++++++++++++++++++---------------------- oraclelinux/README.md | 16 +++++----- redmine/README.md | 4 +-- 4 files changed, 61 insertions(+), 61 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 028bbb458d55..4a90930ab9e4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.0-rc4-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/Dockerfile) -- [`7.0.0-rc4-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc4-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc4-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc4-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc5-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/Dockerfile) +- [`7.0.0-rc5-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc5-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc5-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc5-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.7-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) - [`6.0.7-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.7-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `7.0.0-rc4`, `7.0-rc`: - - [`7.0.0-rc4-jammy`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/Dockerfile) - - [`7.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc4-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc4-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c17c7b82d3f22e17ebdb5dd86e6b3f1dad0a5c71/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc5`, `7.0-rc`: + - [`7.0.0-rc5-jammy`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/Dockerfile) + - [`7.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc5-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc5-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.7-rc0`, `6.0-rc`: - [`6.0.7-rc0-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) - [`6.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 31ebf21137cd..1fb765287e64 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-2-jdk-oraclelinux8`, `22-ea-2-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-2-jdk-oracle`, `22-ea-2-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-2-jdk-oraclelinux7`, `22-ea-2-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-2-jdk-bookworm`, `22-ea-2-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/bookworm/Dockerfile) -- [`22-ea-2-jdk-slim-bookworm`, `22-ea-2-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-2-jdk-slim`, `22-ea-2-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-2-jdk-bullseye`, `22-ea-2-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/bullseye/Dockerfile) -- [`22-ea-2-jdk-slim-bullseye`, `22-ea-2-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-2-jdk-windowsservercore-ltsc2022`, `22-ea-2-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-2-jdk-windowsservercore-1809`, `22-ea-2-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-2-jdk-nanoserver-1809`, `22-ea-2-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-27-jdk-oraclelinux8`, `21-ea-27-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-27-jdk-oracle`, `21-ea-27-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-27-jdk-oraclelinux7`, `21-ea-27-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-27-jdk-bookworm`, `21-ea-27-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/bookworm/Dockerfile) -- [`21-ea-27-jdk-slim-bookworm`, `21-ea-27-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-27-jdk-slim`, `21-ea-27-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-27-jdk-bullseye`, `21-ea-27-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/bullseye/Dockerfile) -- [`21-ea-27-jdk-slim-bullseye`, `21-ea-27-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-27-jdk-windowsservercore-ltsc2022`, `21-ea-27-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-27-jdk-windowsservercore-1809`, `21-ea-27-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-27-jdk-nanoserver-1809`, `21-ea-27-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-3-jdk-oraclelinux8`, `22-ea-3-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-3-jdk-oracle`, `22-ea-3-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-3-jdk-oraclelinux7`, `22-ea-3-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-3-jdk-bookworm`, `22-ea-3-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/bookworm/Dockerfile) +- [`22-ea-3-jdk-slim-bookworm`, `22-ea-3-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-3-jdk-slim`, `22-ea-3-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-3-jdk-bullseye`, `22-ea-3-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/bullseye/Dockerfile) +- [`22-ea-3-jdk-slim-bullseye`, `22-ea-3-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-3-jdk-windowsservercore-ltsc2022`, `22-ea-3-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-3-jdk-windowsservercore-1809`, `22-ea-3-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-3-jdk-nanoserver-1809`, `22-ea-3-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-28-jdk-oraclelinux8`, `21-ea-28-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-28-jdk-oracle`, `21-ea-28-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-28-jdk-oraclelinux7`, `21-ea-28-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-28-jdk-bookworm`, `21-ea-28-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/bookworm/Dockerfile) +- [`21-ea-28-jdk-slim-bookworm`, `21-ea-28-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-28-jdk-slim`, `21-ea-28-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-28-jdk-bullseye`, `21-ea-28-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/bullseye/Dockerfile) +- [`21-ea-28-jdk-slim-bullseye`, `21-ea-28-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-28-jdk-windowsservercore-ltsc2022`, `21-ea-28-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-28-jdk-windowsservercore-1809`, `21-ea-28-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-28-jdk-nanoserver-1809`, `21-ea-28-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-2-jdk`, `22-ea-2`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-2-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-2-jdk-windowsservercore`, `22-ea-2-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-2-jdk-nanoserver`, `22-ea-2-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ec2bc862a7a18b5516c0f6da6d32375796038251/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-27-jdk`, `21-ea-27`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-27-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-27-jdk-windowsservercore`, `21-ea-27-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-27-jdk-nanoserver`, `21-ea-27-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1bbf5f410e2f265026991d46fe6ce6a381081389/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-3-jdk`, `22-ea-3`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-3-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-3-jdk-windowsservercore`, `22-ea-3-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-3-jdk-nanoserver`, `22-ea-3-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-28-jdk`, `21-ea-28`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-28-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-28-jdk-windowsservercore`, `21-ea-28-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-28-jdk-nanoserver`, `21-ea-28-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d8f2ef6ba390..abe3d6edf866 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6489033c7bc5cd29a6869f31dca86efe57bd644f/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 17ba3e614a94..505b541a4e63 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-bullseye`, `5.0-bullseye`, `5-bullseye`, `bullseye`](https://github.com/docker-library/redmine/blob/5c69b4458049c150d8cc335841871aa4625dc217/5.0/Dockerfile) +- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-bookworm`, `5.0-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/c48924ba4017d3c84c700a83a08cbd56bf8fc7f7/5.0/Dockerfile) - [`5.0.5-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.5-alpine3.18`, `5.0-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redmine/blob/cc904a5f85eb1bfd99af68c0ea3f1e5aeb5d5554/5.0/alpine/Dockerfile) # Quick reference (cont.) @@ -229,7 +229,7 @@ The `redmine` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `redmine:-alpine` From 0409327debeaaa35200acb7805591d6e0ac6b5c8 Mon Sep 17 00:00:00 2001 From: J0WI Date: Fri, 23 Jun 2023 15:56:38 +0200 Subject: [PATCH 0403/2686] Update libfreetype package name --- php/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/content.md b/php/content.md index 31a1008393bf..c9ae87aec2ff 100644 --- a/php/content.md +++ b/php/content.md @@ -54,7 +54,7 @@ For example, if you want to have a PHP-FPM image with the `gd` extension, you ca ```dockerfile FROM %%IMAGE%%:7.4-fpm RUN apt-get update && apt-get install -y \ - libfreetype6-dev \ + libfreetype-dev \ libjpeg62-turbo-dev \ libpng-dev \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ From f184c452568520441f265f25c828b44561e6d1c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Jun 2023 11:16:48 -0700 Subject: [PATCH 0404/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- php/README.md | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index ba1e7346e1c7..e88f3afb827e 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.7-apache`, `25.0-apache`, `25-apache`, `stable-apache`, `production-apache`, `25.0.7`, `25.0`, `25`, `stable`, `production`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/apache/Dockerfile) -- [`25.0.7-fpm`, `25.0-fpm`, `25-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/570ac60ed20c5197eb050c8ec55eae5d9c3e58eb/25/fpm/Dockerfile) -- [`25.0.7-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/fb5866ada90529aa04da11c9b0f96511b61a09d5/25/fpm-alpine/Dockerfile) -- [`26.0.2-apache`, `26.0-apache`, `26-apache`, `26.0.2`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/apache/Dockerfile) -- [`26.0.2-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm/Dockerfile) -- [`26.0.2-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/22d28e45cdcdb553239af45c7b1566d628f72bc6/26/fpm-alpine/Dockerfile) -- [`27.0.0-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/apache/Dockerfile) -- [`27.0.0-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/fpm/Dockerfile) -- [`27.0.0-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/ceb2893af1c4ee9bec07082c82f5b638bb47cff7/27/fpm-alpine/Dockerfile) +- [`25.0.8-apache`, `25.0-apache`, `25-apache`, `25.0.8`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/apache/Dockerfile) +- [`25.0.8-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/fpm/Dockerfile) +- [`25.0.8-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/fpm-alpine/Dockerfile) +- [`26.0.3-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.3`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/apache/Dockerfile) +- [`26.0.3-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/fpm/Dockerfile) +- [`26.0.3-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/fpm-alpine/Dockerfile) +- [`27.0.0-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/apache/Dockerfile) +- [`27.0.0-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/fpm/Dockerfile) +- [`27.0.0-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 5e5b5982444d..7adfb00bc8b6 100644 --- a/php/README.md +++ b/php/README.md @@ -156,7 +156,7 @@ For example, if you want to have a PHP-FPM image with the `gd` extension, you ca ```dockerfile FROM php:7.4-fpm RUN apt-get update && apt-get install -y \ - libfreetype6-dev \ + libfreetype-dev \ libjpeg62-turbo-dev \ libpng-dev \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ From 1dfc91d2888d72c84a6e7e70fe947f5f8adc7809 Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Fri, 23 Jun 2023 11:40:43 -0700 Subject: [PATCH 0405/2686] Update mentioned php versions that are EOL --- php/content.md | 66 ++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 34 deletions(-) diff --git a/php/content.md b/php/content.md index c9ae87aec2ff..f53d27d4f293 100644 --- a/php/content.md +++ b/php/content.md @@ -11,7 +11,7 @@ PHP is a server-side scripting language designed for web development, but which ### Create a `Dockerfile` in your PHP project ```dockerfile -FROM %%IMAGE%%:7.4-cli +FROM %%IMAGE%%:8.2-cli COPY . /usr/src/myapp WORKDIR /usr/src/myapp CMD [ "php", "./your-script.php" ] @@ -29,7 +29,7 @@ $ docker run -it --rm --name my-running-app my-php-app For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a PHP script by using the PHP Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:7.4-cli php your-script.php +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:8.2-cli php your-script.php ``` ## How to install more PHP extensions @@ -41,7 +41,7 @@ We provide the helper scripts `docker-php-ext-configure`, `docker-php-ext-instal In order to keep the images smaller, PHP's source is kept in a compressed tar file. To facilitate linking of PHP's source with any extension, we also provide the helper script `docker-php-source` to easily extract the tar or delete the extracted source. Note: if you do use `docker-php-source` to extract the source, be sure to delete it in the same layer of the docker image. ```Dockerfile -FROM %%IMAGE%%:7.4-cli +FROM %%IMAGE%%:8.2-cli RUN docker-php-source extract \ # do important things \ && docker-php-source delete @@ -52,7 +52,7 @@ RUN docker-php-source extract \ For example, if you want to have a PHP-FPM image with the `gd` extension, you can inherit the base image that you like, and write your own `Dockerfile` like this: ```dockerfile -FROM %%IMAGE%%:7.4-fpm +FROM %%IMAGE%%:8.2-fpm RUN apt-get update && apt-get install -y \ libfreetype-dev \ libjpeg62-turbo-dev \ @@ -76,59 +76,57 @@ Some extensions are compiled by default. This depends on the PHP version you are Some extensions are not provided with the PHP source, but are instead available through [PECL](https://pecl.php.net/). To install a PECL extension, use `pecl install` to download and compile it, then use `docker-php-ext-enable` to enable it: ```dockerfile -FROM %%IMAGE%%:7.4-cli -RUN pecl install redis-5.1.1 \ - && pecl install xdebug-2.8.1 \ +FROM %%IMAGE%%:8.2-cli +RUN pecl install redis-5.3.7 \ + && pecl install xdebug-3.2.1 \ && docker-php-ext-enable redis xdebug ``` ```dockerfile -FROM %%IMAGE%%:5.6-cli -RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \ - && pecl install memcached-2.2.0 \ +FROM %%IMAGE%%:8.2-cli +RUN apt-get update && apt-get install -y libmemcached-dev libssl-dev zlib1g-dev \ + && pecl install memcached-3.2.0 \ && docker-php-ext-enable memcached ``` -It is *strongly* recommended that users use an explicit version number in their `pecl install` invocations to ensure proper PHP version compatibility (PECL does not check the PHP version compatiblity when choosing a version of the extension to install, but does when trying to install it). +It is *strongly* recommended that users use an explicit version number in their `pecl install` invocations to ensure proper PHP version compatibility (PECL does not check the PHP version compatibility when choosing a version of the extension to install, but does when trying to install it). Beyond the compatibility issue, it's also a good practice to ensure you know when your dependencies receive updates and can control those updates directly. -For example, `memcached-2.2.0` has no PHP version constraints (https://pecl.php.net/package/memcached/2.2.0), but `memcached-3.1.4` requires PHP 7.0.0 or newer (https://pecl.php.net/package/memcached/3.1.4). When doing `pecl install memcached` (no specific version) on PHP 5.6, PECL will try to install the latest release and fail. - -Beyond the compatibility issue, it's also a good practice to ensure you know when your dependencies receive updates and can control those updates directly. - -Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL. For example, `pecl install memcached-3.1.4 && pecl install redis-5.1.1` instead of `pecl install memcached-3.1.4 redis-5.1.1`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command. +Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL. For example, `pecl install memcached-3.2.0 && pecl install redis-5.3.7` instead of `pecl install memcached-3.2.0 redis-5.3.7`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command. ### Other extensions Some extensions are not provided via either Core or PECL; these can be installed too, although the process is less automated: ```dockerfile -FROM %%IMAGE%%:5.6-cli -RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \ - && mkdir -p xcache \ - && tar -xf xcache.tar.gz -C xcache --strip-components=1 \ - && rm xcache.tar.gz \ +FROM %%IMAGE%%:8.2-cli +RUN curl -fsSL '[url-to-custom-php-module]' -o module-name.tar.gz \ + && mkdir -p module-name \ + && sha256sum -c "[shasum-value] module-name.tar.gz" \ + && tar -xf module-name.tar.gz -C module-name --strip-components=1 \ + && rm module-name.tar.gz \ && ( \ - cd xcache \ + cd module-name \ && phpize \ - && ./configure --enable-xcache \ + && ./configure --enable-module-name \ && make -j "$(nproc)" \ && make install \ ) \ - && rm -r xcache \ - && docker-php-ext-enable xcache + && rm -r module-name \ + && docker-php-ext-enable module-name ``` The `docker-php-ext-*` scripts *can* accept an arbitrary path, but it must be absolute (to disambiguate from built-in extension names), so the above example could also be written as the following: ```dockerfile -FROM %%IMAGE%%:5.6-cli -RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \ - && mkdir -p /tmp/xcache \ - && tar -xf xcache.tar.gz -C /tmp/xcache --strip-components=1 \ - && rm xcache.tar.gz \ - && docker-php-ext-configure /tmp/xcache --enable-xcache \ - && docker-php-ext-install /tmp/xcache \ - && rm -r /tmp/xcache +FROM %%IMAGE%%:8.2-cli +RUN curl -fsSL '[url-to-custom-php-module]' -o module-name.tar.gz \ + && mkdir -p /tmp/module-name \ + && sha256sum -c "[shasum-value] module-name.tar.gz" \ + && tar -xf module-name.tar.gz -C /tmp/module-name --strip-components=1 \ + && rm module-name.tar.gz \ + && docker-php-ext-configure /tmp/module-name --enable-module-name \ + && docker-php-ext-install /tmp/module-name \ + && rm -r /tmp/module-name ``` ## Running as an arbitrary user @@ -163,7 +161,7 @@ The default config can be customized by copying configuration files into the `$P ### Example ```dockerfile -FROM %%IMAGE%%:7.4-fpm-alpine +FROM %%IMAGE%%:8.2-fpm-alpine # Use the default production configuration RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" From 3d0b0df51188a4a4b7061643c42f3f792b8a37b8 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 23 Jun 2023 13:51:40 -0700 Subject: [PATCH 0406/2686] Further clarify distro-provided Python --- python/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/content.md b/python/content.md index 7a8abeda0b13..007f7622bc67 100644 --- a/python/content.md +++ b/python/content.md @@ -61,4 +61,4 @@ $ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/ ## Multiple Python versions in the image -In the non `python:slim` variants there will be an additional older `python` executable at `/usr/bin/python` while the desired newer `/usr/local/bin/python` is the default choice in the `$PATH`. This is an unfortunate side-effect of using the `buildpack-deps` image in the non-slim variants +In the non-slim variants there will be an additional (distro-provided) `python` executable at `/usr/bin/python` (and/or `/usr/bin/python3`) while the desired image-provided `/usr/local/bin/python` is the default choice in the `$PATH`. This is an unfortunate side-effect of using the `buildpack-deps` image in the non-slim variants (and many distribution-provided tools being written against and likely to break with a different Python installation, so we can't safely remove/overwrite it). From 6ea7f0ad075c9e5399419de60d517b724eb688c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Jun 2023 15:16:43 -0700 Subject: [PATCH 0407/2686] Run update.sh --- php/README.md | 66 +++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 34 deletions(-) diff --git a/php/README.md b/php/README.md index 7adfb00bc8b6..3394a08deaf3 100644 --- a/php/README.md +++ b/php/README.md @@ -113,7 +113,7 @@ PHP is a server-side scripting language designed for web development, but which ### Create a `Dockerfile` in your PHP project ```dockerfile -FROM php:7.4-cli +FROM php:8.2-cli COPY . /usr/src/myapp WORKDIR /usr/src/myapp CMD [ "php", "./your-script.php" ] @@ -131,7 +131,7 @@ $ docker run -it --rm --name my-running-app my-php-app For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a PHP script by using the PHP Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp php:7.4-cli php your-script.php +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp php:8.2-cli php your-script.php ``` ## How to install more PHP extensions @@ -143,7 +143,7 @@ We provide the helper scripts `docker-php-ext-configure`, `docker-php-ext-instal In order to keep the images smaller, PHP's source is kept in a compressed tar file. To facilitate linking of PHP's source with any extension, we also provide the helper script `docker-php-source` to easily extract the tar or delete the extracted source. Note: if you do use `docker-php-source` to extract the source, be sure to delete it in the same layer of the docker image. ```Dockerfile -FROM php:7.4-cli +FROM php:8.2-cli RUN docker-php-source extract \ # do important things \ && docker-php-source delete @@ -154,7 +154,7 @@ RUN docker-php-source extract \ For example, if you want to have a PHP-FPM image with the `gd` extension, you can inherit the base image that you like, and write your own `Dockerfile` like this: ```dockerfile -FROM php:7.4-fpm +FROM php:8.2-fpm RUN apt-get update && apt-get install -y \ libfreetype-dev \ libjpeg62-turbo-dev \ @@ -178,59 +178,57 @@ Some extensions are compiled by default. This depends on the PHP version you are Some extensions are not provided with the PHP source, but are instead available through [PECL](https://pecl.php.net/). To install a PECL extension, use `pecl install` to download and compile it, then use `docker-php-ext-enable` to enable it: ```dockerfile -FROM php:7.4-cli -RUN pecl install redis-5.1.1 \ - && pecl install xdebug-2.8.1 \ +FROM php:8.2-cli +RUN pecl install redis-5.3.7 \ + && pecl install xdebug-3.2.1 \ && docker-php-ext-enable redis xdebug ``` ```dockerfile -FROM php:5.6-cli -RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \ - && pecl install memcached-2.2.0 \ +FROM php:8.2-cli +RUN apt-get update && apt-get install -y libmemcached-dev libssl-dev zlib1g-dev \ + && pecl install memcached-3.2.0 \ && docker-php-ext-enable memcached ``` -It is *strongly* recommended that users use an explicit version number in their `pecl install` invocations to ensure proper PHP version compatibility (PECL does not check the PHP version compatiblity when choosing a version of the extension to install, but does when trying to install it). +It is *strongly* recommended that users use an explicit version number in their `pecl install` invocations to ensure proper PHP version compatibility (PECL does not check the PHP version compatibility when choosing a version of the extension to install, but does when trying to install it). Beyond the compatibility issue, it's also a good practice to ensure you know when your dependencies receive updates and can control those updates directly. -For example, `memcached-2.2.0` has no PHP version constraints (https://pecl.php.net/package/memcached/2.2.0), but `memcached-3.1.4` requires PHP 7.0.0 or newer (https://pecl.php.net/package/memcached/3.1.4). When doing `pecl install memcached` (no specific version) on PHP 5.6, PECL will try to install the latest release and fail. - -Beyond the compatibility issue, it's also a good practice to ensure you know when your dependencies receive updates and can control those updates directly. - -Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL. For example, `pecl install memcached-3.1.4 && pecl install redis-5.1.1` instead of `pecl install memcached-3.1.4 redis-5.1.1`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command. +Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL. For example, `pecl install memcached-3.2.0 && pecl install redis-5.3.7` instead of `pecl install memcached-3.2.0 redis-5.3.7`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command. ### Other extensions Some extensions are not provided via either Core or PECL; these can be installed too, although the process is less automated: ```dockerfile -FROM php:5.6-cli -RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \ - && mkdir -p xcache \ - && tar -xf xcache.tar.gz -C xcache --strip-components=1 \ - && rm xcache.tar.gz \ +FROM php:8.2-cli +RUN curl -fsSL '[url-to-custom-php-module]' -o module-name.tar.gz \ + && mkdir -p module-name \ + && sha256sum -c "[shasum-value] module-name.tar.gz" \ + && tar -xf module-name.tar.gz -C module-name --strip-components=1 \ + && rm module-name.tar.gz \ && ( \ - cd xcache \ + cd module-name \ && phpize \ - && ./configure --enable-xcache \ + && ./configure --enable-module-name \ && make -j "$(nproc)" \ && make install \ ) \ - && rm -r xcache \ - && docker-php-ext-enable xcache + && rm -r module-name \ + && docker-php-ext-enable module-name ``` The `docker-php-ext-*` scripts *can* accept an arbitrary path, but it must be absolute (to disambiguate from built-in extension names), so the above example could also be written as the following: ```dockerfile -FROM php:5.6-cli -RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \ - && mkdir -p /tmp/xcache \ - && tar -xf xcache.tar.gz -C /tmp/xcache --strip-components=1 \ - && rm xcache.tar.gz \ - && docker-php-ext-configure /tmp/xcache --enable-xcache \ - && docker-php-ext-install /tmp/xcache \ - && rm -r /tmp/xcache +FROM php:8.2-cli +RUN curl -fsSL '[url-to-custom-php-module]' -o module-name.tar.gz \ + && mkdir -p /tmp/module-name \ + && sha256sum -c "[shasum-value] module-name.tar.gz" \ + && tar -xf module-name.tar.gz -C /tmp/module-name --strip-components=1 \ + && rm module-name.tar.gz \ + && docker-php-ext-configure /tmp/module-name --enable-module-name \ + && docker-php-ext-install /tmp/module-name \ + && rm -r /tmp/module-name ``` ## Running as an arbitrary user @@ -265,7 +263,7 @@ The default config can be customized by copying configuration files into the `$P ### Example ```dockerfile -FROM php:7.4-fpm-alpine +FROM php:8.2-fpm-alpine # Use the default production configuration RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" From 0fff0d22924cde7c98033ba3d7cdfc7cee1b0b45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Jun 2023 18:19:22 -0700 Subject: [PATCH 0408/2686] Run update.sh --- buildpack-deps/README.md | 3 --- gcc/README.md | 10 +++++----- ghost/README.md | 4 ++-- pypy/README.md | 42 ++++++++++++++++++++-------------------- 4 files changed, 28 insertions(+), 31 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 08c33d7765f6..fb55f3ad4bbd 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -36,9 +36,6 @@ WARNING: - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) -- [`bionic-curl`, `18.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/bionic/curl/Dockerfile) -- [`bionic-scm`, `18.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/bionic/scm/Dockerfile) -- [`bionic`, `18.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/bionic/Dockerfile) - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) - [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/focal/scm/Dockerfile) - [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/focal/Dockerfile) diff --git a/gcc/README.md b/gcc/README.md index 623942beae95..7fbad3b92f45 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/46628bc0702798f6ff9f923650361f46f9eb2af2/13/Dockerfile) -- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/9677600371602a897f576cf1d85852a3a26f71af/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bookworm`, `11.4-bookworm`, `11-bookworm`](https://github.com/docker-library/gcc/blob/8896a6fe1d596abcaea6c75c98337885ba4c27e8/11/Dockerfile) -- [`10.4.0`, `10.4`, `10`, `10.4.0-bookworm`, `10.4-bookworm`, `10-bookworm`](https://github.com/docker-library/gcc/blob/392d8bf4ee9d494f03331c540c1f0d7f32259ff1/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-bookworm`, `9.5-bookworm`, `9-bookworm`](https://github.com/docker-library/gcc/blob/0d98f7923b5ed7f5baec2506413c99e920cf6661/9/Dockerfile) +- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/13/Dockerfile) +- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/12/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/11/Dockerfile) +- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/10/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/9/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 831542523395..4f31e5e7c3cf 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.52.3`, `5.52`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6106b41a8c02718d0eb2386483b123398ba5772a/5/debian/Dockerfile) -- [`5.52.3-alpine`, `5.52-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6106b41a8c02718d0eb2386483b123398ba5772a/5/alpine/Dockerfile) +- [`5.53.1`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e61219767f6d836c70ad004244975885e70c049a/5/debian/Dockerfile) +- [`5.53.1-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e61219767f6d836c70ad004244975885e70c049a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 7ab9ec489362..fcd1e026a9ab 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`3.9-7.3.12-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`, `3-7.3.12-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bookworm/Dockerfile) -- [`3.9-7.3.12-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`, `3-7.3.12-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.12-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`, `3-7.3.12-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) -- [`3.9-7.3.12-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3-7.3.12-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.9-7.3.12-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`, `3-7.3.12-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.12-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`, `3-7.3.12-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.12-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-7.3.12-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- [`3.8-7.3.11-bookworm`, `3.8-7.3-bookworm`, `3.8-7-bookworm`, `3.8-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bookworm/Dockerfile) -- [`3.8-7.3.11-slim-bookworm`, `3.8-7.3-slim-bookworm`, `3.8-7-slim-bookworm`, `3.8-slim-bookworm`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bookworm/Dockerfile) -- [`3.8-7.3.11-bullseye`, `3.8-7.3-bullseye`, `3.8-7-bullseye`, `3.8-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) -- [`3.8-7.3.11-slim`, `3.8-7.3-slim`, `3.8-7-slim`, `3.8-slim`, `3.8-7.3.11-slim-bullseye`, `3.8-7.3-slim-bullseye`, `3.8-7-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/slim-bullseye/Dockerfile) -- [`3.8-7.3.11-windowsservercore-ltsc2022`, `3.8-7.3-windowsservercore-ltsc2022`, `3.8-7-windowsservercore-ltsc2022`, `3.8-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.8-7.3.11-windowsservercore-1809`, `3.8-7.3-windowsservercore-1809`, `3.8-7-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.12-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.12-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bookworm/Dockerfile) +- [`3.10-7.3.12-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.12-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.12-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.12-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bullseye/Dockerfile) +- [`3.10-7.3.12-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.12-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.12-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.12-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.12-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.12-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.12-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.12-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.12-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bookworm/Dockerfile) +- [`3.9-7.3.12-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.12-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) +- [`3.9-7.3.12-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.12-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.12-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.12-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) - [`2.7-7.3.12-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.12-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bookworm/Dockerfile) - [`2.7-7.3.12-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.12-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/slim-bookworm/Dockerfile) - [`2.7-7.3.12-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.12-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) @@ -49,20 +49,20 @@ WARNING: ## Shared Tags -- `3.9-7.3.12`, `3.9-7.3`, `3.9-7`, `3.9`, `3-7.3.12`, `3-7.3`, `3-7`, `3`, `latest`: +- `3.10-7.3.12`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.12`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bullseye/Dockerfile) + - [`3.10-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.12-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.12-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.12`, `3.9-7.3`, `3.9-7`, `3.9`: - [`3.9-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.12-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`, `3-7.3.12-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.9-7.3.12-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.8-7.3.11`, `3.8-7.3`, `3.8-7`, `3.8`: - - [`3.8-7.3.11-bullseye`](https://github.com/docker-library/pypy/blob/9a9efe06150ce464f288617c8e3ec765bb93250e/3.8/bullseye/Dockerfile) - - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.8-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) -- `3.8-7.3.11-windowsservercore`, `3.8-7.3-windowsservercore`, `3.8-7-windowsservercore`, `3.8-windowsservercore`: - - [`3.8-7.3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.8-7.3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86944b577ee5ad8fe08db64900a9151abd5a8e3b/3.8/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.12`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.12`, `2-7.3`, `2-7`, `2`: - [`2.7-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) - [`2.7-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) From 6b3704046e376cc444a2a05eff5293c0c7cd0d2e Mon Sep 17 00:00:00 2001 From: Matthias Riegler Date: Mon, 26 Jun 2023 20:34:36 +0200 Subject: [PATCH 0409/2686] fix: rephrase the Postgres PGDATA documentation and add a warning (#2340) Signed-off-by: Matthias Riegler --- postgres/content.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/postgres/content.md b/postgres/content.md index 1d2baf71a870..622e21063276 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -96,7 +96,9 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks) or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), Postgres `initdb` recommends a subdirectory be created to contain the data. +> **Important Note:** when mounting a volume to `/var/lib/posgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. + +This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. For example: From e9963ad308efe206a85ddca9fd9b71f72abd7545 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Jun 2023 12:16:48 -0700 Subject: [PATCH 0410/2686] Run update.sh --- postgres/README.md | 4 +++- python/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 43dea809c2a2..0fdbd9ae421f 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -189,7 +189,9 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks) or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), Postgres `initdb` recommends a subdirectory be created to contain the data. +> **Important Note:** when mounting a volume to `/var/lib/posgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. + +This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. For example: diff --git a/python/README.md b/python/README.md index d2cb8d90d85a..3fbb264eb6a0 100644 --- a/python/README.md +++ b/python/README.md @@ -176,7 +176,7 @@ $ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/ ## Multiple Python versions in the image -In the non `python:slim` variants there will be an additional older `python` executable at `/usr/bin/python` while the desired newer `/usr/local/bin/python` is the default choice in the `$PATH`. This is an unfortunate side-effect of using the `buildpack-deps` image in the non-slim variants +In the non-slim variants there will be an additional (distro-provided) `python` executable at `/usr/bin/python` (and/or `/usr/bin/python3`) while the desired image-provided `/usr/local/bin/python` is the default choice in the `$PATH`. This is an unfortunate side-effect of using the `buildpack-deps` image in the non-slim variants (and many distribution-provided tools being written against and likely to break with a different Python installation, so we can't safely remove/overwrite it). # Image Variants From 4dc8530807b11be19a9cf230368d87533db298df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Jun 2023 14:20:13 -0700 Subject: [PATCH 0411/2686] Run update.sh --- clearlinux/README.md | 2 +- gazebo/README.md | 2 -- mariadb/README.md | 16 ++++++------ photon/README.md | 4 +-- php/README.md | 59 +++++++++++++++++++++++++++++++++----------- 5 files changed, 56 insertions(+), 27 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 6d2b1c661d62..619d6efe3a0e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4bc0150ac3a529e2fb267d72b102eabf96395edf/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2d758eb599096aa42323ea60678beb145bf98500/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 9f24aa28e12f..e799d449b9fe 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,8 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11-bionic`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/bionic/gzserver11/Dockerfile) -- [`libgazebo11-bionic`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/bionic/libgazebo11/Dockerfile) - [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) - [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index 40b66d95f848..ae34eaed75e7 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,14 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/11.1/Dockerfile) -- [`11.0.2-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/11.0/Dockerfile) -- [`10.11.4-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.4`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.11/Dockerfile) -- [`10.10.5-jammy`, `10.10-jammy`, `10.10.5`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.10/Dockerfile) -- [`10.9.7-jammy`, `10.9-jammy`, `10.9.7`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.9/Dockerfile) -- [`10.6.14-focal`, `10.6-focal`, `10.6.14`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.6/Dockerfile) -- [`10.5.21-focal`, `10.5-focal`, `10.5.21`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.5/Dockerfile) -- [`10.4.30-focal`, `10.4-focal`, `10.4.30`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/e56b3a008e9c47c7199d28db6d77d2cfecde526d/10.4/Dockerfile) +- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/11.1/Dockerfile) +- [`11.0.2-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/11.0/Dockerfile) +- [`10.11.4-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.4`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.11/Dockerfile) +- [`10.10.5-jammy`, `10.10-jammy`, `10.10.5`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.10/Dockerfile) +- [`10.9.7-jammy`, `10.9-jammy`, `10.9.7`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.9/Dockerfile) +- [`10.6.14-focal`, `10.6-focal`, `10.6.14`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.6/Dockerfile) +- [`10.5.21-focal`, `10.5-focal`, `10.5.21`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.5/Dockerfile) +- [`10.4.30-focal`, `10.4-focal`, `10.4.30`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.4/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 903c3421faa5..39ef96aebbf9 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230619`, `latest`](https://github.com/vmware/photon-docker-image/blob/6ffc2b92062bc0ea906a68aee9a82a8dc8e8fbc9/docker/Dockerfile) -- [`4.0`, `4.0-20230610`](https://github.com/vmware/photon-docker-image/blob/bfcc62e8b793dbd0713264dd9502ebe390038fae/docker/Dockerfile) +- [`5.0`, `5.0-20230624`, `latest`](https://github.com/vmware/photon-docker-image/blob/a1456b189ae67372b1f08078e76794d9a78dd530/docker/Dockerfile) +- [`4.0`, `4.0-20230624`](https://github.com/vmware/photon-docker-image/blob/a1ce7795aa9db62a64d8bb4df2f62ab21cdadd48/docker/Dockerfile) - [`3.0`, `3.0-20230617`](https://github.com/vmware/photon-docker-image/blob/aec9891fe13fac3dcc8f1393c8256396078dc88e/docker/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 3394a08deaf3..1e33b6f6b052 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0alpha1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha1-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha1-cli`, `8.3-rc-cli`, `8.3.0alpha1`, `8.3-rc`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0alpha1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0alpha1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0alpha1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0alpha1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0alpha1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0alpha1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0alpha1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0alpha1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0alpha1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0alpha1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0alpha1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0alpha1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0alpha1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/f30e0e2ca7692e144d22449d015c0b51e06739af/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0alpha2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha2-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha2-cli`, `8.3-rc-cli`, `8.3.0alpha2`, `8.3-rc`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0alpha2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0alpha2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0alpha2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0alpha2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0alpha2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0alpha2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0alpha2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0alpha2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0alpha2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0alpha2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0alpha2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0alpha2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0alpha2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.8RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.8RC1-bookworm`, `8.2-rc-bookworm`, `8.2.8RC1-cli`, `8.2-rc-cli`, `8.2.8RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.8RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.8RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.8RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.8RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.8RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.8RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.8RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.8RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.8RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.8RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.8RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.8RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.8RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.8RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.8RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.8RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.8RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.8RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.8RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.8RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.8RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.8RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.8RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.7-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.7-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.7-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.7`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/cli/Dockerfile) - [`8.2.7-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/apache/Dockerfile) - [`8.2.7-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/fpm/Dockerfile) @@ -52,6 +66,23 @@ WARNING: - [`8.2.7-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.7-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/cli/Dockerfile) - [`8.2.7-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.7-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.21RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.21RC1-bookworm`, `8.1-rc-bookworm`, `8.1.21RC1-cli`, `8.1-rc-cli`, `8.1.21RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.21RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.21RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.21RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.21RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.21RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.21RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.21RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.21RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.21RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.21RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.21RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.21RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.21RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.21RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.21RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.21RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.21RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.21RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.21RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.21RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.21RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.21RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.21RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.21RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.21RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.21RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.21RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.20-cli-bookworm`, `8.1-cli-bookworm`, `8.1.20-bookworm`, `8.1-bookworm`, `8.1.20-cli`, `8.1-cli`, `8.1.20`, `8.1`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/cli/Dockerfile) - [`8.1.20-apache-bookworm`, `8.1-apache-bookworm`, `8.1.20-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/apache/Dockerfile) - [`8.1.20-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.20-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/fpm/Dockerfile) From 4b778f39efff72f5f61a3c35758784a7b535af96 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Jun 2023 15:17:33 -0700 Subject: [PATCH 0412/2686] Run update.sh --- maven/README.md | 48 ++++++++++++++++++++++++------------------------ ros/README.md | 6 +++--- vault/README.md | 2 +- xwiki/README.md | 6 +++--- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/maven/README.md b/maven/README.md index d9731752b557..9e3f245003c0 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.2-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/7e54809c453c0bdfaf856b3831f6b6050f5a12eb/eclipse-temurin-11/Dockerfile) -- [`3.9.2-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.2-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.2-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17/Dockerfile) -- [`3.9.2-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.2-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.2-eclipse-temurin-20`, `3.9.2`, `3.9.2-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-20/Dockerfile) -- [`3.9.2-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-20-alpine/Dockerfile) -- [`3.9.2-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8/Dockerfile) -- [`3.9.2-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.2-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.2-ibmjava-8`, `3.9.2-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibmjava-8/Dockerfile) -- [`3.9.2-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-11-focal/Dockerfile) -- [`3.9.2-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/ibm-semeru-17-focal/Dockerfile) -- [`3.9.2-amazoncorretto-11`, `3.9.2-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-11/Dockerfile) -- [`3.9.2-amazoncorretto-11-debian`, `3.9.2-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-11-debian/Dockerfile) -- [`3.9.2-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-17/Dockerfile) -- [`3.9.2-amazoncorretto-17-debian`, `3.9.2-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-17-debian/Dockerfile) -- [`3.9.2-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-20/Dockerfile) -- [`3.9.2-amazoncorretto-20-debian`, `3.9.2-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-20-debian/Dockerfile) -- [`3.9.2-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/amazoncorretto-8/Dockerfile) -- [`3.9.2-amazoncorretto-8-debian`, `3.9.2-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/01cb02d874b08d33960e71ab4b65b0f14bbc7b88/amazoncorretto-8-debian/Dockerfile) -- [`3.9.2-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-11/Dockerfile) -- [`3.9.2-sapmachine-17`, `3.9.2-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/5f8a86d716eb63fb5a1ef03e5cb743f5df4ffa0a/sapmachine-17/Dockerfile) +- [`3.9.3-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11/Dockerfile) +- [`3.9.3-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.3-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.3-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17/Dockerfile) +- [`3.9.3-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.3-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.3-eclipse-temurin-20`, `3.9.3`, `3.9.3-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-20/Dockerfile) +- [`3.9.3-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-20-alpine/Dockerfile) +- [`3.9.3-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8/Dockerfile) +- [`3.9.3-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.3-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.3-ibmjava-8`, `3.9.3-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibmjava-8/Dockerfile) +- [`3.9.3-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibm-semeru-11-focal/Dockerfile) +- [`3.9.3-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibm-semeru-17-focal/Dockerfile) +- [`3.9.3-amazoncorretto-11`, `3.9.3-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-11/Dockerfile) +- [`3.9.3-amazoncorretto-11-debian`, `3.9.3-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-11-debian/Dockerfile) +- [`3.9.3-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-17/Dockerfile) +- [`3.9.3-amazoncorretto-17-debian`, `3.9.3-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-17-debian/Dockerfile) +- [`3.9.3-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-20/Dockerfile) +- [`3.9.3-amazoncorretto-20-debian`, `3.9.3-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-20-debian/Dockerfile) +- [`3.9.3-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-8/Dockerfile) +- [`3.9.3-amazoncorretto-8-debian`, `3.9.3-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-8-debian/Dockerfile) +- [`3.9.3-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/sapmachine-11/Dockerfile) +- [`3.9.3-sapmachine-17`, `3.9.3-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/sapmachine-17/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index d6a5d16fac21..54ce91dff05d 100644 --- a/ros/README.md +++ b/ros/README.md @@ -32,13 +32,13 @@ WARNING: - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/noetic/debian/buster/ros-core/Dockerfile) +- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/noetic/debian/buster/ros-core/Dockerfile) - [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) - [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) - [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) -- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/foxy/ubuntu/focal/ros-core/Dockerfile) +- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/foxy/ubuntu/focal/ros-core/Dockerfile) - [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) -- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/c40ef6e5116c88f44e9ef3694614c1e8a60725a0/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) +- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) diff --git a/vault/README.md b/vault/README.md index 71ba7092eca5..070f38c14b56 100644 --- a/vault/README.md +++ b/vault/README.md @@ -28,7 +28,7 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Supported tags and respective `Dockerfile` links -- [`1.13.3`, `latest`](https://github.com/hashicorp/docker-vault/blob/152f49d818b2764c437ee1fd20ee4d13791a8296/0.X/Dockerfile) +- [`1.13.3`](https://github.com/hashicorp/docker-vault/blob/152f49d818b2764c437ee1fd20ee4d13791a8296/0.X/Dockerfile) - [`1.12.7`](https://github.com/hashicorp/docker-vault/blob/48d258c844d65814e16c123f8d3750a4e73e4350/0.X/Dockerfile) - [`1.11.11`](https://github.com/hashicorp/docker-vault/blob/e90ed0d020018291fabd520e9c36196c1e58f049/0.X/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 61cbe60007b0..5c6740ba1688 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.4`, `15.4.0`, `15-mysql-tomcat`, `15.4-mysql-tomcat`, `15.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.4-postgres-tomcat`, `15.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.4-mariadb-tomcat`, `15.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e573aa8c0988c3c176848489c449e69d6d4564fa/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.5`, `15.5.0`, `15-mysql-tomcat`, `15.5-mysql-tomcat`, `15.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.5-postgres-tomcat`, `15.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.5-mariadb-tomcat`, `15.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.13`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mariadb-tomcat/Dockerfile) From e99497f15711ed1031c2544ccebcd08a1d0b036f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Jun 2023 18:08:58 -0700 Subject: [PATCH 0413/2686] Run update.sh --- archlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index df3db3e9f319..d7914bb19393 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230611.0.157136`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8c107a2ed9ee79927da495f556a81a6999221bab/Dockerfile.base) -- [`base-devel`, `base-devel-20230611.0.157136`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8c107a2ed9ee79927da495f556a81a6999221bab/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230625.0.160368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/97c654858f99b6fef7f7634ba851d017d028bdb9/Dockerfile.base) +- [`base-devel`, `base-devel-20230625.0.160368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/97c654858f99b6fef7f7634ba851d017d028bdb9/Dockerfile.base-devel) # Quick reference (cont.) From 1777da678f336a868f83434fe8d673d063e1748c Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Mon, 26 Jun 2023 20:15:49 +0800 Subject: [PATCH 0414/2686] Fix ci Signed-off-by: Yikun Jiang --- spark/README-short.txt | 2 +- spark/content.md | 15 ++++++++++----- spark/issues.md | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/spark/README-short.txt b/spark/README-short.txt index 109840a851c7..1b5f8f525ce4 100644 --- a/spark/README-short.txt +++ b/spark/README-short.txt @@ -1 +1 @@ -Apache Spark™ is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters. \ No newline at end of file +Apache Spark - A unified analytics engine for large-scale data processing diff --git a/spark/content.md b/spark/content.md index c905ba1eec0c..b13a962e1f34 100644 --- a/spark/content.md +++ b/spark/content.md @@ -5,19 +5,20 @@ Apache Spark™ is a multi-language engine for executing data engineering, data %%LOGO%% ## Online Documentation + You can find the latest Spark documentation, including a programming guide, on the [project web page](https://spark.apache.org/documentation.html). This README file only contains basic setup instructions. ## Interactive Scala Shell The easiest way to start using Spark is through the Scala shell: -``` +```console docker run -it spark /opt/spark/bin/spark-shell ``` Try the following command, which should return 1,000,000,000: -``` +```scala scala> spark.range(1000 * 1000 * 1000).count() ``` @@ -25,13 +26,13 @@ scala> spark.range(1000 * 1000 * 1000).count() The easiest way to start using PySpark is through the Python shell: -``` +```console docker run -it spark:python3 /opt/spark/bin/pyspark ``` And run the following command, which should also return 1,000,000,000: -``` +```python >>> spark.range(1000 * 1000 * 1000).count() ``` @@ -39,7 +40,7 @@ And run the following command, which should also return 1,000,000,000: The easiest way to start using R on Spark is through the R shell: -``` +```console docker run -it apache/spark-r /opt/spark/bin/sparkR ``` @@ -47,3 +48,7 @@ docker run -it apache/spark-r /opt/spark/bin/sparkR https://spark.apache.org/docs/latest/running-on-kubernetes.html +## Configuration and environment variables + +See more in https://github.com/apache/spark-docker/blob/master/OVERVIEW.md#environment-variable + diff --git a/spark/issues.md b/spark/issues.md index 09392138dd92..3222af653397 100644 --- a/spark/issues.md +++ b/spark/issues.md @@ -1 +1 @@ -https://issues.apache.org/jira/browse/SPARK \ No newline at end of file +https://issues.apache.org/jira/browse/SPARK From e1ccfa6f6870f5f641773ff9b54b6a4c7e0db319 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 12 Jun 2023 14:34:57 -0700 Subject: [PATCH 0415/2686] Update a few bits of Nextcloud (per Nextcloud GmbH's request) --- nextcloud/README-short.txt | 2 +- nextcloud/content.md | 2 - nextcloud/deprecated.md | 3 ++ nextcloud/logo.svg | 104 ------------------------------------- nextcloud/maintainer.md | 2 +- 5 files changed, 5 insertions(+), 108 deletions(-) create mode 100644 nextcloud/deprecated.md delete mode 100644 nextcloud/logo.svg diff --git a/nextcloud/README-short.txt b/nextcloud/README-short.txt index 4f193acbe10b..27066d266ec3 100644 --- a/nextcloud/README-short.txt +++ b/nextcloud/README-short.txt @@ -1 +1 @@ -A safe home for all your data +Nextcloud manual docker image diff --git a/nextcloud/content.md b/nextcloud/content.md index 1c2b41b65365..9c25a180c925 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -4,8 +4,6 @@ A safe home for all your data. Access & share your files, calendars, contacts, m > [Nextcloud.com](https://nextcloud.com/) -%%LOGO%% - This Docker micro-service image is developed and maintained by the Nextcloud community. Nextcloud GmbH does not offer support for this Docker image. When you are looking to get professional support, you can become an [enterprise](https://nextcloud.com/enterprise/) customer or use [AIO](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one). # How to use this image diff --git a/nextcloud/deprecated.md b/nextcloud/deprecated.md new file mode 100644 index 000000000000..0bfc19a2a076 --- /dev/null +++ b/nextcloud/deprecated.md @@ -0,0 +1,3 @@ +# IMPORTANT NOTE + +⚠ This image is not officially supported by Nextcloud GmbH, use at your own risk. Use the [All-in-One docker image](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) for easier deployment. diff --git a/nextcloud/logo.svg b/nextcloud/logo.svg deleted file mode 100644 index 15f62bdd1965..000000000000 --- a/nextcloud/logo.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - -image/svg+xml diff --git a/nextcloud/maintainer.md b/nextcloud/maintainer.md index e6bd947c8c47..bb1fe5597c08 100644 --- a/nextcloud/maintainer.md +++ b/nextcloud/maintainer.md @@ -1 +1 @@ -[Nextcloud](%%GITHUB-REPO%%) +[the Nextcloud community](%%GITHUB-REPO%%) From 501cb0500f41e6a978cda93023a7ed79aaeeb10c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Jun 2023 11:19:43 -0700 Subject: [PATCH 0416/2686] Run update.sh --- nextcloud/README.md | 8 +++++--- zookeeper/README.md | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index e88f3afb827e..af419a18b7d1 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -14,10 +14,14 @@ WARNING: --> +# IMPORTANT NOTE + +⚠ This image is not officially supported by Nextcloud GmbH, use at your own risk. Use the [All-in-One docker image](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) for easier deployment. + # Quick reference - **Maintained by**: - [Nextcloud](https://github.com/nextcloud/docker) + [the Nextcloud community](https://github.com/nextcloud/docker) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -59,8 +63,6 @@ A safe home for all your data. Access & share your files, calendars, contacts, m > [Nextcloud.com](https://nextcloud.com/) -![logo](https://raw.githubusercontent.com/docker-library/docs/eabcf59e64b4395e681a7f7a9773bd213c9f3678/nextcloud/logo.svg?sanitize=true) - This Docker micro-service image is developed and maintained by the Nextcloud community. Nextcloud GmbH does not offer support for this Docker image. When you are looking to get professional support, you can become an [enterprise](https://nextcloud.com/enterprise/) customer or use [AIO](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one). # How to use this image diff --git a/zookeeper/README.md b/zookeeper/README.md index 6a9802fee8dc..0e8743cae429 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -33,7 +33,7 @@ WARNING: [https://github.com/31z4/zookeeper-docker/issues](https://github.com/31z4/zookeeper-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/), [`s390x`](https://hub.docker.com/r/s390x/zookeeper/) + [`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/), [`ppc64le`](https://hub.docker.com/r/ppc64le/zookeeper/), [`s390x`](https://hub.docker.com/r/s390x/zookeeper/) - **Published image artifact details**: [repo-info repo's `repos/zookeeper/` directory](https://github.com/docker-library/repo-info/blob/master/repos/zookeeper) ([history](https://github.com/docker-library/repo-info/commits/master/repos/zookeeper)) From 169f0a169da63a04b98881aef79b1170f2e127c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Jun 2023 12:17:23 -0700 Subject: [PATCH 0417/2686] Run update.sh --- consul/README.md | 6 +++--- neo4j/README.md | 4 ++-- ros/README.md | 7 ------- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/consul/README.md b/consul/README.md index 41b457986be1..d246e34029ba 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,9 +28,9 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.3`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/6728f1e11112016a3539eec50b8d20b27a31aa40/0.X/Dockerfile) -- [`1.14.7`, `1.14`](https://github.com/hashicorp/docker-consul/blob/36b73fb81154b668e9c1987fc7011322f33b926e/0.X/Dockerfile) -- [`1.13.8`, `1.13`](https://github.com/hashicorp/docker-consul/blob/4e3f7398868f9767d515e91a63b67294f5c97aa9/0.X/Dockerfile) +- [`1.15.4`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/aedd0844f06e9eac9c4e130206219b1ff044a8c4/0.X/Dockerfile) +- [`1.14.8`, `1.14`](https://github.com/hashicorp/docker-consul/blob/7c095b8e988517c239526c0137caeb837c490807/0.X/Dockerfile) +- [`1.13.9`, `1.13`](https://github.com/hashicorp/docker-consul/blob/ae00ef4e7ff1cf68afd391838993bc53234cf5e6/0.X/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index f13c375e7807..e203f5b6aedb 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.9.0`, `5.9.0-community`, `5.9`, `5.9-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/community/Dockerfile) - [`5.9.0-enterprise`, `5.9-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/enterprise/Dockerfile) -- [`4.4.21`, `4.4.21-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/community/Dockerfile) -- [`4.4.21-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9dea28f9da8f5792752853a1be16309950d03204/4.4.21/enterprise/Dockerfile) +- [`4.4.22`, `4.4.22-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/698c4fe7f7ebd00c7599a3b00d86bb1d52702dc7/4.4.22/community/Dockerfile) +- [`4.4.22-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/698c4fe7f7ebd00c7599a3b00d86bb1d52702dc7/4.4.22/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index 54ce91dff05d..d8b3c573fd62 100644 --- a/ros/README.md +++ b/ros/README.md @@ -32,13 +32,6 @@ WARNING: - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/noetic/debian/buster/ros-core/Dockerfile) -- [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) -- [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) -- [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) -- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/foxy/ubuntu/focal/ros-core/Dockerfile) -- [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) -- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/0c31bf0bc023e3ddb663b9934513270401d82a97/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) From 790893ae1b54798156e5932c031b00e8a681916f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Jun 2023 15:26:54 -0700 Subject: [PATCH 0418/2686] Run update.sh --- consul/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/README.md b/consul/README.md index d246e34029ba..7e09a56a8d42 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,7 +28,7 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.4`, `1.15`, `latest`](https://github.com/hashicorp/docker-consul/blob/aedd0844f06e9eac9c4e130206219b1ff044a8c4/0.X/Dockerfile) +- [`1.15.4`, `1.15`](https://github.com/hashicorp/docker-consul/blob/aedd0844f06e9eac9c4e130206219b1ff044a8c4/0.X/Dockerfile) - [`1.14.8`, `1.14`](https://github.com/hashicorp/docker-consul/blob/7c095b8e988517c239526c0137caeb837c490807/0.X/Dockerfile) - [`1.13.9`, `1.13`](https://github.com/hashicorp/docker-consul/blob/ae00ef4e7ff1cf68afd391838993bc53234cf5e6/0.X/Dockerfile) From 61682957ea666a719c6d77b784b55f65418c0c5c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Jun 2023 16:09:02 -0700 Subject: [PATCH 0419/2686] Run update.sh --- amazoncorretto/README.md | 64 +++++++++++++++++---------------- busybox/README.md | 16 ++++----- hylang/README.md | 78 +++++++++++++++++++--------------------- 3 files changed, 78 insertions(+), 80 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index ccc1427f4241..399c1e00697c 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,37 +24,39 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u372`, `8u372-al2`, `8-al2-full`, `8-al2-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/al2/Dockerfile) -- [`8-al2023`, `8u372-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u372-al2023-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/al2023/Dockerfile) -- [`8-alpine3.14`, `8u372-alpine3.14`, `8-alpine3.14-full`, `8-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.14/Dockerfile) -- [`8-alpine3.14-jre`, `8u372-alpine3.14-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.14/Dockerfile) -- [`8-alpine3.15`, `8u372-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u372-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u372-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u372-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u372-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u372-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u372-alpine3.17-jre`, `8-alpine-jre`, `8u372-alpine-jre`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.19`, `11.0.19-al2`, `11-al2-full`, `11-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/al2/Dockerfile) -- [`11-al2023`, `11.0.19-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.19-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.19-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/headful/al2023/Dockerfile) -- [`11-alpine3.14`, `11.0.19-alpine3.14`, `11-alpine3.14-full`, `11-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.14/Dockerfile) -- [`11-alpine3.15`, `11.0.19-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.19-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.19-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.19-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.7`, `17.0.7-al2`, `17-al2-full`, `17-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/al2/Dockerfile) -- [`17-al2023`, `17.0.7-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/headful/al2023/Dockerfile) -- [`17-alpine3.14`, `17.0.7-alpine3.14`, `17-alpine3.14-full`, `17-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.14/Dockerfile) -- [`17-alpine3.15`, `17.0.7-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.7-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.7-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.7-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/17/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.1`, `20.0.1-al2`, `20-al2-full`, `20-al2-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/al2/Dockerfile) -- [`20-alpine3.14`, `20.0.1-alpine3.14`, `20-alpine3.14-full`, `20-alpine3.14-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.14/Dockerfile) -- [`20-alpine3.15`, `20.0.1-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.1-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.1-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.1-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ef6f5a60332e35d72fee88ce86e195f62efa6ab4/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u372`, `8u372-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u372-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u372-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u372-al2023-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2023/Dockerfile) +- [`8-al2-native-RC-jre`, `8u372-al2-native-RC-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/al2/Dockerfile) +- [`8-al2-native-RC-jdk`, `8u372-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u372-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u372-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u372-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u372-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u372-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u372-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u372-alpine3.17-jre`, `8-alpine-jre`, `8u372-alpine-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.17/Dockerfile) +- [`11`, `11.0.19`, `11.0.19-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.19-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.19-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.19-al2023-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.19-al2023-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headful/al2023/Dockerfile) +- [`11-al2-native-RC-headless`, `11.0.19-al2-native-RC-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headless/al2/Dockerfile) +- [`11-al2-native-RC-jdk`, `11.0.19-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.19-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.19-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.19-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.19-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.17/Dockerfile) +- [`17`, `17.0.7`, `17.0.7-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.7-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.7-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headful/al2023/Dockerfile) +- [`17-al2-native-RC-headless`, `17.0.7-al2-native-RC-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headless/al2/Dockerfile) +- [`17-al2-native-RC-headful`, `17.0.7-al2-native-RC-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headful/al2/Dockerfile) +- [`17-al2-native-RC-jdk`, `17.0.7-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.7-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.7-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.7-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.7-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.17/Dockerfile) +- [`20`, `20.0.1`, `20.0.1-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.1-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/al2-generic/Dockerfile) +- [`20-alpine3.15`, `20.0.1-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.1-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.1-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.1-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.17/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index 21f9d6f4d7be..5a2c46987cdf 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/e526c94798fba07073cbd2f1027246099f211b8b/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 7749f70e9836..aabd51cb3acc 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,55 +28,51 @@ WARNING: ## Simple Tags -- [`0.26.0-python3.11-bookworm`, `0.26-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.26.0-bookworm`, `0.26-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.26.0-python3.10-bookworm`, `0.26-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.26.0-python3.9-bookworm`, `0.26-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.26.0-python3.8-bookworm`, `0.26-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.26.0-python3.7-bookworm`, `0.26-python3.7-bookworm`, `0-python3.7-bookworm`, `python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bookworm) -- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) -- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) -- [`0.26.0-pypy3.9-bookworm`, `0.26-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`, `0.26.0-pypy-bookworm`, `0.26-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`, `0.26.0-pypy-windowsservercore-ltsc2022`, `0.26-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`, `0.26.0-pypy-windowsservercore-1809`, `0.26-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- [`0.26.0-pypy3.8-bookworm`, `0.26-pypy3.8-bookworm`, `0-pypy3.8-bookworm`, `pypy3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bookworm) -- [`0.26.0-pypy3.8-bullseye`, `0.26-pypy3.8-bullseye`, `0-pypy3.8-bullseye`, `pypy3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bullseye) -- [`0.26.0-pypy3.8-windowsservercore-ltsc2022`, `0.26-pypy3.8-windowsservercore-ltsc2022`, `0-pypy3.8-windowsservercore-ltsc2022`, `pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.8-windowsservercore-1809`, `0.26-pypy3.8-windowsservercore-1809`, `0-pypy3.8-windowsservercore-1809`, `pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) +- [`0.26.0-python3.11-bookworm`, `0.26-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.26.0-bookworm`, `0.26-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.26.0-python3.10-bookworm`, `0.26-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.26.0-python3.9-bookworm`, `0.26-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.26.0-python3.8-bookworm`, `0.26-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.26.0-python3.7-bookworm`, `0.26-python3.7-bookworm`, `0-python3.7-bookworm`, `python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bookworm) +- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bullseye) +- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) +- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) +- [`0.26.0-pypy3.10-bookworm`, `0.26-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.26.0-pypy-bookworm`, `0.26-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.26.0-pypy3.10-bullseye`, `0.26-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.26.0-pypy3.9-bookworm`, `0.26-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags - `0.26.0-python3.11`, `0.26-python3.11`, `0-python3.11`, `python3.11`, `0.26.0`, `0.26`, `0`, `latest`: - - [`0.26.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.26.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.26.0-python3.10`, `0.26-python3.10`, `0-python3.10`, `python3.10`: - - [`0.26.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.26.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.26.0-python3.9`, `0.26-python3.9`, `0-python3.9`, `python3.9`: - - [`0.26.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.26.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.26.0-python3.8`, `0.26-python3.8`, `0-python3.8`, `python3.8`: - - [`0.26.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.26.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.26.0-python3.7`, `0.26-python3.7`, `0-python3.7`, `python3.7`: - - [`0.26.0-python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.python3.7-bookworm) -- `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: - - [`0.26.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) -- `0.26.0-pypy3.8`, `0.26-pypy3.8`, `0-pypy3.8`, `pypy3.8`: - - [`0.26.0-pypy3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-bookworm) - - [`0.26.0-pypy3.8-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.8-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/caa057b76095481360b23cad8774d208bd524694/dockerfiles-generated/Dockerfile.pypy3.8-windowsservercore-1809) + - [`0.26.0-python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bookworm) +- `0.26.0-pypy3.10`, `0.26-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: + - [`0.26.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`: + - [`0.26.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) From 148564f8e060ed9ddea459e669f642ea30ff5282 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Jun 2023 10:09:01 -0700 Subject: [PATCH 0420/2686] Run update.sh --- node/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/node/README.md b/node/README.md index 9a7838fa1b0a..11af537b416c 100644 --- a/node/README.md +++ b/node/README.md @@ -27,27 +27,27 @@ WARNING: - [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.1-alpine`, `20.3.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.18/Dockerfile) - [`20`, `20-bookworm`, `20.3`, `20.3-bookworm`, `20.3.1`, `20.3.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.1-bookworm-slim`, `20.3.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.1-bookworm-slim`, `20.3.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.3-bullseye`, `20.3.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.3-buster`, `20.3.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/buster/Dockerfile) -- [`20-buster-slim`, `20.3-buster-slim`, `20.3.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/buster-slim/Dockerfile) +- [`20-buster-slim`, `20.3-buster-slim`, `20.3.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.1-alpine`, `18.16.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.1`, `18.16.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.1-bookworm-slim`, `18.16.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.1-bookworm-slim`, `18.16.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.16-bullseye`, `18.16.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.16-buster`, `18.16.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/buster/Dockerfile) -- [`18-buster-slim`, `18.16-buster-slim`, `18.16.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/buster-slim/Dockerfile) +- [`18-buster-slim`, `18.16-buster-slim`, `18.16.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/buster-slim/Dockerfile) - [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.1-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.17/Dockerfile) - [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.1-alpine`, `16.20.1-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.18/Dockerfile) - [`16-bookworm`, `16.20-bookworm`, `16.20.1-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm/Dockerfile) -- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.1-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm-slim/Dockerfile) +- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.1-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/bookworm-slim/Dockerfile) - [`16-bullseye`, `16.20-bullseye`, `16.20.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bullseye-slim/Dockerfile) +- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/bullseye-slim/Dockerfile) - [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.1`, `16.20.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.1-buster-slim`, `16.20.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/buster-slim/Dockerfile) +- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.1-buster-slim`, `16.20.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/buster-slim/Dockerfile) # Quick reference (cont.) From ab9d3ca32127f9ab50a04695db774a584ca138fc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Jun 2023 12:17:18 -0700 Subject: [PATCH 0421/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 30f988a7869b..bd5f0d517c93 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230616`, `devel`, `devel-20230616-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/6c6da312e72d85e41d5631fe18fb3785e3af331b/devel/Dockerfile) +- [`devel-20230626`, `devel`, `devel-20230626-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e026ef3e829cb56e64a7fc12a392c0155b9fc806/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) From 523594f76d2eb631294b02f401b17e1d30cbc470 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Jun 2023 13:08:59 -0700 Subject: [PATCH 0422/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 807438482084..5eb12d7ad644 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/7a7169250712b280c009e6e507f0c97a68e9c5c0/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/14.0/Dockerfile) # Quick reference (cont.) From 66e6ec5fe1c8eb8a5048cb855e47c6cd0ce5a681 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Jun 2023 14:20:25 -0700 Subject: [PATCH 0423/2686] Run update.sh --- crate/README.md | 2 +- ibm-semeru-runtimes/README.md | 68 +++++++++++++++++------------------ 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/crate/README.md b/crate/README.md index e620e9b78513..6be7b2687943 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.2`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/9b88acabe6265b4a6df693f26432563e95d8a8f7/Dockerfile) +- [`5.3.3`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/706dbf83bbef570ec875e54b7682e16e0933f28a/Dockerfile) - [`5.2.8`, `5.2`](https://github.com/crate/docker-crate/blob/9dd974bffff06d56e844a099c709583864c970e6/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index c56d8e7a2055..75f10a340d45 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u372-b07-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u372-b07-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u372-b07-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/centos/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-focal`, `open-19-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-jammy`, `open-19-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jdk-centos7`, `open-19-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/centos/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-focal`, `open-19-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-jammy`, `open-19-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-19.0.2_7-jre-centos7`, `open-19-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/centos/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u372-b07-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u372-b07-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.19_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.7_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/centos/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/centos/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.1_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/centos/Dockerfile.open.releases.full) ## Shared Tags - `open-8u372-b07-jdk`, `open-8-jdk`: - - [`open-8u372-b07-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u372-b07-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u372-b07-jre`, `open-8-jre`: - - [`open-8u372-b07-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u372-b07-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.19_7-jdk`, `open-11-jdk`: - - [`open-11.0.19_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.19_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.19_7-jre`, `open-11-jre`: - - [`open-11.0.19_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.19_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.7_7-jdk`, `open-17-jdk`: - - [`open-17.0.7_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.7_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.7_7-jre`, `open-17-jre`: - - [`open-17.0.7_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-19.0.2_7-jdk`, `open-19-jdk`: - - [`open-19.0.2_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-19.0.2_7-jre`, `open-19-jre`: - - [`open-19.0.2_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/3779c8ee30b1d94d34470a170a9ba4e734626a33/19/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.7_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-20.0.1_9-jdk`, `open-20-jdk`: + - [`open-20.0.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-20.0.1_9-jre`, `open-20-jre`: + - [`open-20.0.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) From 221e380363adb20c759ae28125d164c7c2db7bea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Jun 2023 16:09:01 -0700 Subject: [PATCH 0424/2686] Run update.sh --- rabbitmq/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e85694a66fcb..2c4a97aa4539 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.0`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.12/ubuntu/Dockerfile) -- [`3.12.0-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.12/alpine/Dockerfile) -- [`3.12.0-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.18`, `3.11`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.11/ubuntu/Dockerfile) -- [`3.11.18-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.18-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.11/alpine/Dockerfile) -- [`3.11.18-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.10/ubuntu/Dockerfile) +- [`3.12.1`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/ubuntu/Dockerfile) +- [`3.12.1-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/alpine/Dockerfile) +- [`3.12.1-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.19`, `3.11`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.11/ubuntu/Dockerfile) +- [`3.11.19-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.19-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.11/alpine/Dockerfile) +- [`3.11.19-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.10/ubuntu/Dockerfile) - [`3.10.24-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.10/alpine/Dockerfile) +- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.10/alpine/Dockerfile) - [`3.10.24-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0e653fbef85b83c2453e946241c5aea898b9d1b9/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0192a912d656a74b27e8d3ebe0df1aa0d08dd92c/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0e653fbef85b83c2453e946241c5aea898b9d1b9/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From cbce68ea834d859aed904f968bd49b2acc6108e5 Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Fri, 30 Jun 2023 12:04:11 +0800 Subject: [PATCH 0425/2686] Addresss comments --- spark/content.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spark/content.md b/spark/content.md index b13a962e1f34..380ac1aa61a9 100644 --- a/spark/content.md +++ b/spark/content.md @@ -13,7 +13,7 @@ You can find the latest Spark documentation, including a programming guide, on t The easiest way to start using Spark is through the Scala shell: ```console -docker run -it spark /opt/spark/bin/spark-shell +docker run -it %%IMAGE%% /opt/spark/bin/spark-shell ``` Try the following command, which should return 1,000,000,000: @@ -27,7 +27,7 @@ scala> spark.range(1000 * 1000 * 1000).count() The easiest way to start using PySpark is through the Python shell: ```console -docker run -it spark:python3 /opt/spark/bin/pyspark +docker run -it %%IMAGE%%:python3 /opt/spark/bin/pyspark ``` And run the following command, which should also return 1,000,000,000: @@ -41,7 +41,7 @@ And run the following command, which should also return 1,000,000,000: The easiest way to start using R on Spark is through the R shell: ```console -docker run -it apache/spark-r /opt/spark/bin/sparkR +docker run -it %%IMAGE%%:r /opt/spark/bin/sparkR ``` ## Running Spark on Kubernetes @@ -51,4 +51,3 @@ https://spark.apache.org/docs/latest/running-on-kubernetes.html ## Configuration and environment variables See more in https://github.com/apache/spark-docker/blob/master/OVERVIEW.md#environment-variable - From d8ff6bb45e9b8b67b8c1f5eb332225f285d6f82e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Jun 2023 16:09:03 -0700 Subject: [PATCH 0426/2686] Run update.sh --- ghost/README.md | 4 +- groovy/README.md | 10 ++--- ibmjava/README.md | 6 +-- mongo/README.md | 90 ++++++++++++++++++++++----------------------- wordpress/README.md | 9 +++++ 5 files changed, 64 insertions(+), 55 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4f31e5e7c3cf..9a070e2f2664 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.53.1`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e61219767f6d836c70ad004244975885e70c049a/5/debian/Dockerfile) -- [`5.53.1-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e61219767f6d836c70ad004244975885e70c049a/5/alpine/Dockerfile) +- [`5.53.3`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a9ee7ee57aa64f8a55ec138f1e771901af470e70/5/debian/Dockerfile) +- [`5.53.3-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a9ee7ee57aa64f8a55ec138f1e771901af470e70/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index bbcb7302946f..f41127f5751b 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.12-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.12-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk8/Dockerfile) -- [`4.0.12-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.12-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk11/Dockerfile) -- [`4.0.12-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk11-alpine/Dockerfile) -- [`4.0.12-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.12-jdk`, `4.0-jdk`, `4.0.12`, `4.0`, `4`, `jdk`, `latest`, `4.0.12-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.12-jdk-jammy`, `4.0-jdk-jammy`, `4.0.12-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk17/Dockerfile) -- [`4.0.12-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.12-jdk-alpine`, `4.0-jdk-alpine`, `4.0.12-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/f28c433c77a244169b44cab3e2617a666dca845f/jdk17-alpine/Dockerfile) +- [`4.0.13-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.13-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk8/Dockerfile) +- [`4.0.13-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.13-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk11/Dockerfile) +- [`4.0.13-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk11-alpine/Dockerfile) +- [`4.0.13-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.13-jdk`, `4.0-jdk`, `4.0.13`, `4.0`, `4`, `jdk`, `latest`, `4.0.13-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.13-jdk-jammy`, `4.0-jdk-jammy`, `4.0.13-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk17/Dockerfile) +- [`4.0.13-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.13-jdk-alpine`, `4.0-jdk-alpine`, `4.0.13-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 1920969f5c42..315e55983a3e 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/672528f0c259480073bb491193c44fc12159ab03/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 4a90930ab9e4..b97a31d938a4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`7.0.0-rc5-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/Dockerfile) -- [`7.0.0-rc5-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc5-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc5-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc5-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.7-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) -- [`6.0.7-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.7-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.7-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.7-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.6-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/6.0/Dockerfile) -- [`6.0.6-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.6-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.6-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.6-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc6-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/Dockerfile) +- [`7.0.0-rc6-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc6-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc6-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc6-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.8-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/Dockerfile) +- [`6.0.8-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.8-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.8-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.8-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.7-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/Dockerfile) +- [`6.0.7-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.7-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.7-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.7-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.18-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) @@ -56,36 +56,36 @@ WARNING: ## Shared Tags -- `7.0.0-rc5`, `7.0-rc`: - - [`7.0.0-rc5-jammy`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/Dockerfile) - - [`7.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc5-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc5-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98720854213868b3689e76907e8c6177212dd162/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.7-rc0`, `6.0-rc`: - - [`6.0.7-rc0-jammy`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/Dockerfile) - - [`6.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.7-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.7-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.7-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.7-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/af56b9ebd9a45cd2a883bdbc0f05912e59d94248/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.6`, `6.0`, `6`, `latest`: - - [`6.0.6-jammy`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/6.0/Dockerfile) - - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.6-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d02d67946699e68ef124953da9bd8f058640b7d8/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.6-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/bdc074b5ab245140fb150b686f5f462bad5d0389/6.0/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc6`, `7.0-rc`: + - [`7.0.0-rc6-jammy`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/Dockerfile) + - [`7.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc6-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc6-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.8-rc0`, `6.0-rc`: + - [`6.0.8-rc0-jammy`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/Dockerfile) + - [`6.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.8-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.8-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.8-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.8-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.7`, `6.0`, `6`, `latest`: + - [`6.0.7-jammy`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/Dockerfile) + - [`6.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.7-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.7-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.18`, `5.0`, `5`: - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 06fe836efb76..32b461069b8b 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) +- [`beta-6.3-beta2-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta2`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta2-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta2-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-beta2-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta2-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-beta2-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta2-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-beta2-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta2-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-beta2-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-beta2-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-beta2-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta2-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-beta2-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-beta2-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7c5d061613c110a284713c86420d57c25442c97d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jul 2023 10:09:06 -0700 Subject: [PATCH 0427/2686] Run update.sh --- clearlinux/README.md | 2 +- elixir/README.md | 18 +++++++++--------- erlang/README.md | 18 +++++++++--------- photon/README.md | 4 ++-- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 619d6efe3a0e..e86783b79be8 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2d758eb599096aa42323ea60678beb145bf98500/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7d83e2f10265a66b21a83d8fa60d6c76ff4454fe/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 443febc6cf79..c23b49ba7ec6 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.0`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/Dockerfile) -- [`1.15.0-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/slim/Dockerfile) -- [`1.15.0-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/alpine/Dockerfile) -- [`1.15.0-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24/Dockerfile) -- [`1.15.0-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24-alpine/Dockerfile) -- [`1.15.0-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-24-slim/Dockerfile) -- [`1.15.0-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25/Dockerfile) -- [`1.15.0-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25-alpine/Dockerfile) -- [`1.15.0-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/1.15/otp-25-slim/Dockerfile) +- [`1.15.1`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/Dockerfile) +- [`1.15.1-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/slim/Dockerfile) +- [`1.15.1-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/alpine/Dockerfile) +- [`1.15.1-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24/Dockerfile) +- [`1.15.1-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24-alpine/Dockerfile) +- [`1.15.1-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24-slim/Dockerfile) +- [`1.15.1-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25/Dockerfile) +- [`1.15.1-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25-alpine/Dockerfile) +- [`1.15.1-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 040ebd9a1db2..34fa68986c86 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.1.0`, `26.0.1`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/Dockerfile) -- [`26.0.1.0-slim`, `26.0.1-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/slim/Dockerfile) -- [`26.0.1.0-alpine`, `26.0.1-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/26/alpine/Dockerfile) -- [`25.3.2.2`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/Dockerfile) -- [`25.3.2.2-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/slim/Dockerfile) -- [`25.3.2.2-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/25/alpine/Dockerfile) -- [`24.3.4.12`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/Dockerfile) -- [`24.3.4.12-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/slim/Dockerfile) -- [`24.3.4.12-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c5450a00c47ee731ff185f17f0931c8b8fa8cbcc/24/alpine/Dockerfile) +- [`26.0.2.0`, `26.0.2`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/Dockerfile) +- [`26.0.2.0-slim`, `26.0.2-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/slim/Dockerfile) +- [`26.0.2.0-alpine`, `26.0.2-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/alpine/Dockerfile) +- [`25.3.2.3`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/Dockerfile) +- [`25.3.2.3-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/slim/Dockerfile) +- [`25.3.2.3-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/alpine/Dockerfile) +- [`24.3.4.13`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/Dockerfile) +- [`24.3.4.13-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/slim/Dockerfile) +- [`24.3.4.13-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/alpine/Dockerfile) - [`23.3.4.19`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/Dockerfile) - [`23.3.4.19-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/slim/Dockerfile) - [`23.3.4.19-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/alpine/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 39ef96aebbf9..6d1178db0f8f 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230624`, `latest`](https://github.com/vmware/photon-docker-image/blob/a1456b189ae67372b1f08078e76794d9a78dd530/docker/Dockerfile) +- [`5.0`, `5.0-20230701`, `latest`](https://github.com/vmware/photon-docker-image/blob/5bbe36100e8e8266774bc2039df701232d4332da/docker/Dockerfile) - [`4.0`, `4.0-20230624`](https://github.com/vmware/photon-docker-image/blob/a1ce7795aa9db62a64d8bb4df2f62ab21cdadd48/docker/Dockerfile) -- [`3.0`, `3.0-20230617`](https://github.com/vmware/photon-docker-image/blob/aec9891fe13fac3dcc8f1393c8256396078dc88e/docker/Dockerfile) +- [`3.0`, `3.0-20230701`](https://github.com/vmware/photon-docker-image/blob/d9c6e7e851466ed17ed62f15e2b15ee922b1fe73/docker/Dockerfile) # Quick reference (cont.) From 6e5963e0662a4319bab64d2c3e035eb70fcee34f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jul 2023 11:20:26 -0700 Subject: [PATCH 0428/2686] Run update.sh --- archlinux/README.md | 4 ++-- ros/README.md | 2 +- swipl/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index d7914bb19393..7a977f227b21 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230625.0.160368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/97c654858f99b6fef7f7634ba851d017d028bdb9/Dockerfile.base) -- [`base-devel`, `base-devel-20230625.0.160368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/97c654858f99b6fef7f7634ba851d017d028bdb9/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230702.0.161694`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05b1c93ddc7653bebc91eb42561cddf99f6e410e/Dockerfile.base) +- [`base-devel`, `base-devel-20230702.0.161694`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05b1c93ddc7653bebc91eb42561cddf99f6e410e/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index d8b3c573fd62..ff07ff4adecc 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) +- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/443033d08e72da7282fe3b68167f01a2995118b8/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) - [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) - [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) - [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 4f121a94fa91..45e8ea5ecc98 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.10`](https://github.com/SWI-Prolog/docker-swipl/blob/a96b8e1155f4f6997895bf5e4aa5f4e61fb69bed/9.1.10/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/a96b8e1155f4f6997895bf5e4aa5f4e61fb69bed/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.11`](https://github.com/SWI-Prolog/docker-swipl/blob/8e1d5c2336b3b1856b479aab170108a452200d1e/9.1.11/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/8e1d5c2336b3b1856b479aab170108a452200d1e/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 4b2d98ffad1c87b35582f9cf6526a9b0db303828 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jul 2023 12:18:21 -0700 Subject: [PATCH 0429/2686] Run update.sh --- sl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sl/README.md b/sl/README.md index 8e60e0897731..a107d02e3ae9 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/c369b631e3de151d68e9d02c08e66590048e6230/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/8a6f60fae85c0e665fcd3388a21a850e82a56c70/sl7/Dockerfile) # Quick reference (cont.) From 3e60435b3a3625e93c72720c635ba1667411e417 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jul 2023 15:17:42 -0700 Subject: [PATCH 0430/2686] Run update.sh --- gradle/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index c559197c7b71..2c0d539cbc22 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.1.1-jdk8`, `8.1-jdk8`, `8-jdk8`, `jdk8`, `8.1.1-jdk8-jammy`, `8.1-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk8/Dockerfile) -- [`8.1.1-jdk8-focal`, `8.1-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk8-focal/Dockerfile) -- [`8.1.1-jdk11`, `8.1-jdk11`, `8-jdk11`, `jdk11`, `8.1.1-jdk11-jammy`, `8.1-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11/Dockerfile) -- [`8.1.1-jdk11-focal`, `8.1-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11-focal/Dockerfile) -- [`8.1.1-jdk11-alpine`, `8.1-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk11-alpine/Dockerfile) -- [`8.1.1-jdk17`, `8.1-jdk17`, `8-jdk17`, `jdk17`, `8.1.1-jdk`, `8.1-jdk`, `8-jdk`, `jdk`, `8.1.1`, `8.1`, `8`, `latest`, `8.1.1-jdk17-jammy`, `8.1-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.1.1-jdk-jammy`, `8.1-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.1.1-jammy`, `8.1-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17/Dockerfile) -- [`8.1.1-jdk17-focal`, `8.1-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.1.1-jdk-focal`, `8.1-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.1.1-focal`, `8.1-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17-focal/Dockerfile) -- [`8.1.1-jdk17-alpine`, `8.1-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.1.1-jdk-alpine`, `8.1-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.1.1-alpine`, `8.1-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/01f24d7f28637c911d3c2f0650b52d08f526b57f/jdk17-alpine/Dockerfile) -- [`7.6.1-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.1-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8/Dockerfile) -- [`7.6.1-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk8-focal/Dockerfile) -- [`7.6.1-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.1-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11/Dockerfile) -- [`7.6.1-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11-focal/Dockerfile) -- [`7.6.1-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk11-alpine/Dockerfile) -- [`7.6.1-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.1-jdk`, `7.6-jdk`, `7-jdk`, `7.6.1`, `7.6`, `7`, `7.6.1-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.1-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.1-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17/Dockerfile) -- [`7.6.1-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.1-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.1-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17-focal/Dockerfile) -- [`7.6.1-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.1-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.1-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d67e322404924034e73ade97552ff7b1ffd6bbca/jdk17-alpine/Dockerfile) +- [`8.2.0-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.0-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk8/Dockerfile) +- [`8.2.0-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk8-focal/Dockerfile) +- [`8.2.0-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.0-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11/Dockerfile) +- [`8.2.0-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11-focal/Dockerfile) +- [`8.2.0-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11-alpine/Dockerfile) +- [`8.2.0-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.0-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.0`, `8.2`, `8`, `latest`, `8.2.0-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.0-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.0-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17/Dockerfile) +- [`8.2.0-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.0-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.0-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17-focal/Dockerfile) +- [`8.2.0-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.0-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.0-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17-alpine/Dockerfile) +- [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8/Dockerfile) +- [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8-focal/Dockerfile) +- [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11/Dockerfile) +- [`7.6.2-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11-focal/Dockerfile) +- [`7.6.2-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11-alpine/Dockerfile) +- [`7.6.2-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.2-jdk`, `7.6-jdk`, `7-jdk`, `7.6.2`, `7.6`, `7`, `7.6.2-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.2-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.2-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17/Dockerfile) +- [`7.6.2-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.2-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.2-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17-focal/Dockerfile) +- [`7.6.2-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.2-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.2-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17-alpine/Dockerfile) - [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8/Dockerfile) - [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8-focal/Dockerfile) - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11/Dockerfile) From 24c88e5aba3662c1bb7b55aabef2d02c49fe65b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jul 2023 18:18:18 -0700 Subject: [PATCH 0431/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++------------------ docker/README.md | 20 ++++++------ ghost/README.md | 4 +-- haproxy/README.md | 8 ++--- mongo/README.md | 30 ++++++++++++++++++ openjdk/README.md | 72 +++++++++++++++++++++---------------------- oraclelinux/README.md | 16 +++++----- postgres/README.md | 8 ++--- ubuntu/README.md | 8 ++--- wordpress/README.md | 18 +++++------ 10 files changed, 137 insertions(+), 107 deletions(-) diff --git a/debian/README.md b/debian/README.md index fd279a209de9..6b9e7ea6581d 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230612`, `12.0`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230612-slim`, `12.0-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230612`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230612-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230612`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230612-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/rc-buggy/Dockerfile) -- [`sid`, `sid-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/sid/Dockerfile) -- [`sid-slim`, `sid-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/sid/slim/Dockerfile) -- [`stable`, `stable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/stable/slim/Dockerfile) -- [`testing`, `testing-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/5d82e5bd86fac51cae5798d8984f8d438e215cc9/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230703`, `12.0`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230703-slim`, `12.0-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230703`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230703-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230703`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230703-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/rc-buggy/Dockerfile) +- [`sid`, `sid-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/sid/Dockerfile) +- [`sid-slim`, `sid-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/sid/slim/Dockerfile) +- [`stable`, `stable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/slim/Dockerfile) +- [`testing`, `testing-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 8ae7f8a6d18a..c13149ce08f2 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/cli/Dockerfile) +- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/cli/Dockerfile) - [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/36a4df919e51b459eaf08c2f7d395b71d8e331c3/24/dind/Dockerfile) - [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) - [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/cli/Dockerfile) +- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.2-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9062f0762067534e63dbc712b3cef833f3a62be4/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b946a07d9759c098df4e76fe4a96416457b53caf/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9a070e2f2664..9c1311edc1d7 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.53.3`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a9ee7ee57aa64f8a55ec138f1e771901af470e70/5/debian/Dockerfile) -- [`5.53.3-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a9ee7ee57aa64f8a55ec138f1e771901af470e70/5/alpine/Dockerfile) +- [`5.53.3`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e48d4ce2a9d4ca5f18b6f3184482d5fa6c17b383/5/debian/Dockerfile) +- [`5.53.3-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e48d4ce2a9d4ca5f18b6f3184482d5fa6c17b383/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 45a34c3f2e7a..b206cfc3603c 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev0`, `2.9-dev`, `2.9-dev0-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/f389054a408dd4a1cb6f314fd66a851f565190d3/2.9/Dockerfile) -- [`2.9-dev0-alpine`, `2.9-dev-alpine`, `2.9-dev0-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.9/alpine/Dockerfile) -- [`2.8.0`, `2.8`, `lts`, `latest`, `2.8.0-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/2.8/Dockerfile) -- [`2.8.0-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.0-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/8319188779e45910b4cbf471e993bbc5ecac9b86/2.8/alpine/Dockerfile) +- [`2.9-dev1`, `2.9-dev`, `2.9-dev1-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/9b1ce2eb7fb65a923b414c8d8ffec6990d73d4bc/2.9/Dockerfile) +- [`2.9-dev1-alpine`, `2.9-dev-alpine`, `2.9-dev1-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/9b1ce2eb7fb65a923b414c8d8ffec6990d73d4bc/2.9/alpine/Dockerfile) +- [`2.8.1`, `2.8`, `lts`, `latest`, `2.8.1-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/Dockerfile) +- [`2.8.1-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.1-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/alpine/Dockerfile) - [`2.7.9`, `2.7`, `2.7.9-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/Dockerfile) - [`2.7.9-alpine`, `2.7-alpine`, `2.7.9-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/alpine/Dockerfile) - [`2.6.14`, `2.6`, `2.6.14-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index b97a31d938a4..b526eb1f8275 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -43,11 +43,21 @@ WARNING: - [`6.0.7-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.7-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.7-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.19-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/Dockerfile) +- [`5.0.19-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.19-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.19-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.19-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.18-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.18-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.18-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.23-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/Dockerfile) +- [`4.4.23-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.23-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.23-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.23-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.22-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) - [`4.4.22-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.22-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) @@ -86,6 +96,16 @@ WARNING: - `6.0.7-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - [`6.0.7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.19-rc0`, `5.0-rc`: + - [`5.0.19-rc0-focal`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/Dockerfile) + - [`5.0.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.19-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.19-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.19-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.19-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.18`, `5.0`, `5`: - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,6 +116,16 @@ WARNING: - `5.0.18-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.23-rc0`, `4.4-rc`: + - [`4.4.23-rc0-focal`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/Dockerfile) + - [`4.4.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.23-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.23-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.23-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.23-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.22`, `4.4`, `4`: - [`4.4.22-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 1fb765287e64..e6fc7cb3861d 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-3-jdk-oraclelinux8`, `22-ea-3-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-3-jdk-oracle`, `22-ea-3-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-3-jdk-oraclelinux7`, `22-ea-3-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-3-jdk-bookworm`, `22-ea-3-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/bookworm/Dockerfile) -- [`22-ea-3-jdk-slim-bookworm`, `22-ea-3-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-3-jdk-slim`, `22-ea-3-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-3-jdk-bullseye`, `22-ea-3-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/bullseye/Dockerfile) -- [`22-ea-3-jdk-slim-bullseye`, `22-ea-3-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-3-jdk-windowsservercore-ltsc2022`, `22-ea-3-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-3-jdk-windowsservercore-1809`, `22-ea-3-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-3-jdk-nanoserver-1809`, `22-ea-3-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-28-jdk-oraclelinux8`, `21-ea-28-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-28-jdk-oracle`, `21-ea-28-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-28-jdk-oraclelinux7`, `21-ea-28-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-28-jdk-bookworm`, `21-ea-28-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/bookworm/Dockerfile) -- [`21-ea-28-jdk-slim-bookworm`, `21-ea-28-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-28-jdk-slim`, `21-ea-28-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-28-jdk-bullseye`, `21-ea-28-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/bullseye/Dockerfile) -- [`21-ea-28-jdk-slim-bullseye`, `21-ea-28-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-28-jdk-windowsservercore-ltsc2022`, `21-ea-28-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-28-jdk-windowsservercore-1809`, `21-ea-28-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-28-jdk-nanoserver-1809`, `21-ea-28-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-4-jdk-oraclelinux8`, `22-ea-4-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-4-jdk-oracle`, `22-ea-4-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-4-jdk-oraclelinux7`, `22-ea-4-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-4-jdk-bookworm`, `22-ea-4-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/bookworm/Dockerfile) +- [`22-ea-4-jdk-slim-bookworm`, `22-ea-4-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-4-jdk-slim`, `22-ea-4-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-4-jdk-bullseye`, `22-ea-4-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/bullseye/Dockerfile) +- [`22-ea-4-jdk-slim-bullseye`, `22-ea-4-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-4-jdk-windowsservercore-ltsc2022`, `22-ea-4-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-4-jdk-windowsservercore-1809`, `22-ea-4-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-4-jdk-nanoserver-1809`, `22-ea-4-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-29-jdk-oraclelinux8`, `21-ea-29-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-29-jdk-oracle`, `21-ea-29-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-29-jdk-oraclelinux7`, `21-ea-29-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-29-jdk-bookworm`, `21-ea-29-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/bookworm/Dockerfile) +- [`21-ea-29-jdk-slim-bookworm`, `21-ea-29-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-29-jdk-slim`, `21-ea-29-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-29-jdk-bullseye`, `21-ea-29-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/bullseye/Dockerfile) +- [`21-ea-29-jdk-slim-bullseye`, `21-ea-29-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-29-jdk-windowsservercore-ltsc2022`, `21-ea-29-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-29-jdk-windowsservercore-1809`, `21-ea-29-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-29-jdk-nanoserver-1809`, `21-ea-29-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-3-jdk`, `22-ea-3`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-3-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-3-jdk-windowsservercore`, `22-ea-3-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-3-jdk-nanoserver`, `22-ea-3-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/659785f95aae1ad14e0cbf516541718f614decdd/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-28-jdk`, `21-ea-28`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-28-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-28-jdk-windowsservercore`, `21-ea-28-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-28-jdk-nanoserver`, `21-ea-28-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1ad278b60158c4042d579853af17111eab2d6f97/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-4-jdk`, `22-ea-4`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-4-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-4-jdk-windowsservercore`, `22-ea-4-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-4-jdk-nanoserver`, `22-ea-4-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-29-jdk`, `21-ea-29`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-29-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-29-jdk-windowsservercore`, `21-ea-29-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-29-jdk-nanoserver`, `21-ea-29-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index abe3d6edf866..58320fbd28fd 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c34bf84210f6c6ff60b80d39d64ee680af274efc/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 0fdbd9ae421f..3521c3ebef4e 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16beta1`, `16beta1-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/16/bookworm/Dockerfile) -- [`16beta1-bullseye`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/bullseye/Dockerfile) -- [`16beta1-alpine3.18`, `16beta1-alpine`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.18/Dockerfile) -- [`16beta1-alpine3.17`](https://github.com/docker-library/postgres/blob/4fe55381bab76d0d39195f84e00cfdd0759e65c0/16/alpine3.17/Dockerfile) +- [`16beta2`, `16beta2-bookworm`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/bookworm/Dockerfile) +- [`16beta2-bullseye`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/bullseye/Dockerfile) +- [`16beta2-alpine3.18`, `16beta2-alpine`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/alpine3.18/Dockerfile) +- [`16beta2-alpine3.17`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/alpine3.17/Dockerfile) - [`15.3`, `15`, `latest`, `15.3-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/15/bookworm/Dockerfile) - [`15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) - [`15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.3-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.18/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 40912e03a6a2..dec80e34b428 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20230605`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230605-19354505&id=19354505a650f2bfd5e2441c56ca09cc488abeb4) -- [`22.04`, `jammy-20230605`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230605-ab2192b8&id=ab2192b8d9a2a01920e4db4cb79f649dd77a2dad) -- [`22.10`, `kinetic-20230605`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230605-42263b18&id=42263b1857cc4495659cc2d79647f46aff013247) +- [`20.04`, `focal-20230624`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230624-079a169a&id=079a169aa8fe8cc7c59e960bc02f33628a255064) +- [`22.04`, `jammy-20230624`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230624-2cc72fa2&id=2cc72fa2e3553cc25ee5e0157929e35f2510dbd8) +- [`22.10`, `kinetic-20230624`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230624-0332f3c2&id=0332f3c29e2657ed4711edc6fccaac061074f21c) - [`23.04`, `lunar-20230615`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230615-3537c573&id=3537c5732f5b3fc814f5762acf34b890a8d79a13) -- [`23.10`, `mantic-20230607`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230607-533e5820&id=533e58208b1772f1c89f31465a8663cfc79b1ae9) +- [`23.10`, `mantic-20230624`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230624-1a5a7d57&id=1a5a7d5732d62e86564b9668eb421d78d8ac8091) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 32b461069b8b..2e740033cee4 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-beta2-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta2`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta2-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta2-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-beta2-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta2-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-beta2-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta2-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-beta2-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta2-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-beta2-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-beta2-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-beta2-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta2-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-beta2-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-beta2-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/dd5c229a1900cab9543b180945b8a80754936eac/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-beta3-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta3`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta3-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta3-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-beta3-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta3-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-beta3-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta3-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-beta3-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta3-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-beta3-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-beta3-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-beta3-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta3-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-beta3-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-beta3-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 3540b79cd7833f763e6665073d6a2b8c89f5a956 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Jul 2023 11:18:53 -0700 Subject: [PATCH 0432/2686] Run update.sh --- fedora/README.md | 6 ++-- mediawiki/README.md | 18 +++++------ perl/README.md | 74 ++++++++++++++++++++++++-------------------- phpmyadmin/README.md | 6 ++-- ros/README.md | 4 --- varnish/README.md | 10 +++--- 6 files changed, 61 insertions(+), 57 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 7495fdd7b63b..d4c1cf330b68 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f49afec82b84319bcf5d3021a161b437973b00c8/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7be687ad846a04a1779152e9fe40bc380549ba58/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/30d3a14457213b49f5be3f6cd6f9924de0a9d32e/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d62ceb0391afa940453b39489d8ae399ec2aa653/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d0c2e00adfcf04c5893382ea2549eb51bf52f291/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ba4df9a53e2d6a38e4c9f02ce702df4ab5595ea8/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 6b6f3a778566..e4850b0b0ac9 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.39.3`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/apache/Dockerfile) -- [`1.39.3-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/fpm/Dockerfile) -- [`1.39.3-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.39/fpm-alpine/Dockerfile) -- [`1.38.6`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/apache/Dockerfile) -- [`1.38.6-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/fpm/Dockerfile) -- [`1.38.6-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.38/fpm-alpine/Dockerfile) -- [`1.35.10`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/apache/Dockerfile) -- [`1.35.10-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/fpm/Dockerfile) -- [`1.35.10-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/5dfcc29a3820d6129124f8eb154a6632d61a3162/1.35/fpm-alpine/Dockerfile) +- [`1.39.4`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/apache/Dockerfile) +- [`1.39.4-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/fpm/Dockerfile) +- [`1.39.4-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/fpm-alpine/Dockerfile) +- [`1.38.7`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/apache/Dockerfile) +- [`1.38.7-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/fpm/Dockerfile) +- [`1.38.7-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/fpm-alpine/Dockerfile) +- [`1.35.11`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/apache/Dockerfile) +- [`1.35.11-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/fpm/Dockerfile) +- [`1.35.11-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index e94a52bb5496..b464645e4583 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,38 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.36.1`, `5.36`, `5`, `latest`, `stable`, `5.36.1-bullseye`, `5.36-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5-slim`, `slim`, `stable-slim`, `5.36.1-slim-bullseye`, `5.36-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.32.1`, `5.32`, `5.32.1-bullseye`, `5.32-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main-bullseye/Dockerfile) -- [`5.32.1-buster`, `5.32-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main-buster/Dockerfile) -- [`5.32.1-slim`, `5.32-slim`, `5.32.1-slim-bullseye`, `5.32-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim-bullseye/Dockerfile) -- [`5.32.1-slim-buster`, `5.32-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim-buster/Dockerfile) -- [`5.32.1-threaded`, `5.32-threaded`, `5.32.1-threaded-bullseye`, `5.32-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main,threaded-bullseye/Dockerfile) -- [`5.32.1-threaded-buster`, `5.32-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-main,threaded-buster/Dockerfile) -- [`5.32.1-slim-threaded`, `5.32-slim-threaded`, `5.32.1-slim-threaded-bullseye`, `5.32-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim,threaded-bullseye/Dockerfile) -- [`5.32.1-slim-threaded-buster`, `5.32-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.032.001-slim,threaded-buster/Dockerfile) -- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main-bullseye/Dockerfile) -- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main-buster/Dockerfile) -- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim-bullseye/Dockerfile) -- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim-buster/Dockerfile) -- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main,threaded-bullseye/Dockerfile) -- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-main,threaded-buster/Dockerfile) -- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim,threaded-bullseye/Dockerfile) -- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9f2129d089866dd0d7353284cc231b9af10b71e3/5.037.011-slim,threaded-buster/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main-bullseye/Dockerfile) +- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main-buster/Dockerfile) +- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim-bullseye/Dockerfile) +- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim-buster/Dockerfile) +- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main,threaded-bullseye/Dockerfile) +- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main,threaded-buster/Dockerfile) +- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim,threaded-bullseye/Dockerfile) +- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim,threaded-buster/Dockerfile) # Quick reference (cont.) @@ -176,7 +184,7 @@ The `perl` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index eb37bde8cb4e..40d86291cbbb 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/7f5a48b7c3ac2b820be1c0d4808f7277640a70b8/fpm-alpine/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/apache/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/fpm/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/8674356a6d0f67eb89d0200647832fc3853781fd/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index ff07ff4adecc..0e94dab85a6e 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,10 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/443033d08e72da7282fe3b68167f01a2995118b8/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) -- [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) -- [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) -- [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) - [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index 19e3f75d4176..337c34a74602 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/f3fa117d1308e0b521d617045666b9bb284f63b7/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/f3fa117d1308e0b521d617045666b9bb284f63b7/fresh/alpine/Dockerfile) -- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/34226613b148a3f7ca7fd6cc232fe8fb5e38aff5/old/debian/Dockerfile) -- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/34226613b148a3f7ca7fd6cc232fe8fb5e38aff5/old/alpine/Dockerfile) -- [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/e7acf36bd4afd05427bc3fb251ae4b3374168f27/stable/debian/Dockerfile) +- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/fresh/alpine/Dockerfile) +- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/old/debian/Dockerfile) +- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/old/alpine/Dockerfile) +- [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/f3be41ac5e4224615e1437334ffc16418e3e89f3/stable/debian/Dockerfile) # Quick reference (cont.) From f4d6aca7baa09ca7a71767ac5d750e1bb75dd56d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jul 2023 12:08:56 -0700 Subject: [PATCH 0433/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/README.md b/bash/README.md index bd5f0d517c93..273e1af6f82b 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230626`, `devel`, `devel-20230626-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e026ef3e829cb56e64a7fc12a392c0155b9fc806/devel/Dockerfile) +- [`devel-20230703`, `devel`, `devel-20230703-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/d1e4a1fa6645f7895b489ca07b38187979d53faa/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 9c1311edc1d7..0c1250bf2a94 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.53.3`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e48d4ce2a9d4ca5f18b6f3184482d5fa6c17b383/5/debian/Dockerfile) -- [`5.53.3-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e48d4ce2a9d4ca5f18b6f3184482d5fa6c17b383/5/alpine/Dockerfile) +- [`5.53.4`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5db5d3d87657343507bb413ecd642b446f3f8790/5/debian/Dockerfile) +- [`5.53.4-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5db5d3d87657343507bb413ecd642b446f3f8790/5/alpine/Dockerfile) # Quick reference (cont.) From 87b4f3ec835b7af2db584af41ca2d2294b22e2df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jul 2023 13:09:03 -0700 Subject: [PATCH 0434/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- julia/README.md | 26 +++++++++++++------------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docker/README.md b/docker/README.md index c13149ce08f2..399c4929bae8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.2-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/cli/Dockerfile) -- [`24.0.2-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.2-dind-alpine3.18`, `24.0.2`, `24.0`, `24`, `latest`, `24.0.2-alpine3.18`](https://github.com/docker-library/docker/blob/36a4df919e51b459eaf08c2f7d395b71d8e331c3/24/dind/Dockerfile) -- [`24.0.2-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/679ff1a932a1bdf4341fb0d5cb06f088c77d44bf/24/dind-rootless/Dockerfile) -- [`24.0.2-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.2-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/cli/Dockerfile) +- [`24.0.3-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.3-cli-alpine3.18`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/cli/Dockerfile) +- [`24.0.3-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.3-dind-alpine3.18`, `24.0.3`, `24.0`, `24`, `latest`, `24.0.3-alpine3.18`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/dind/Dockerfile) +- [`24.0.3-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/dind-rootless/Dockerfile) +- [`24.0.3-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.3-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.3-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `24.0.2-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/49df3ea7f5626d756abcf90928c68bf354a1c961/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.3-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/33d3ca8c880b85738eec201527afef4e21cbba3d/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index b411b765eb65..f226ebe804af 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.9.1-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.9/bookworm/Dockerfile) -- [`1.9.1-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/bullseye/Dockerfile) -- [`1.9.1-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.1-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.18/Dockerfile) -- [`1.9.1-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/alpine3.17/Dockerfile) -- [`1.9.1-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.1-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.9.2-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) +- [`1.9.2-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bullseye/Dockerfile) +- [`1.9.2-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.2-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.18/Dockerfile) +- [`1.9.2-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.17/Dockerfile) +- [`1.9.2-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.2-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) @@ -43,13 +43,13 @@ WARNING: ## Shared Tags -- `1.9.1`, `1.9`, `1`, `latest`: - - [`1.9.1-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.9/bookworm/Dockerfile) - - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) -- `1.9.1-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.9.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/97d000402f8972dc369ed1877e8f990550aee85e/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.2`, `1.9`, `1`, `latest`: + - [`1.9.2-bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) + - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.2-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) From 930614f808619332643f3832b3510e37020bc527 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jul 2023 14:08:55 -0700 Subject: [PATCH 0435/2686] Run update.sh --- drupal/README.md | 87 +++++++++++++++++++++++------------------------- emqx/README.md | 6 ++-- 2 files changed, 44 insertions(+), 49 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index b7170ff40872..48f2c6ecdc3d 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,52 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.9-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.0.9-php8.2-apache`, `10.0-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.0.9-php8.2`, `10.0-php8.2`, `10-php8.2`, `php8.2`, `10.0.9-apache-bookworm`, `10.0-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.0.9-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.9`, `10.0`, `10`, `latest`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/apache-bookworm/Dockerfile) -- [`10.0.9-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.0.9-php8.2-fpm`, `10.0-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.0.9-fpm-bookworm`, `10.0-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.0.9-fpm`, `10.0-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/fpm-bookworm/Dockerfile) -- [`10.0.9-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.0.9-apache-bullseye`, `10.0-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.9-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.0.9-fpm-bullseye`, `10.0-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.9-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.0.9-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.0.9-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.0.9-fpm-alpine`, `10.0-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.0.9-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.0.9-fpm-alpine3.17`, `10.0-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.9-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.0.9-php8.1-apache`, `10.0-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.0.9-php8.1`, `10.0-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/apache-bookworm/Dockerfile) -- [`10.0.9-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.0.9-php8.1-fpm`, `10.0-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/fpm-bookworm/Dockerfile) -- [`10.0.9-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.9-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.9-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.0.9-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/10.0/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.0.9-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/38b11a5adac057ace72c1c90a6b86cbae17beff2/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.9-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.9-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/apache-bookworm/Dockerfile) -- [`9.5.9-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.9-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-bookworm/Dockerfile) -- [`9.5.9-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/apache-bullseye/Dockerfile) -- [`9.5.9-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-bullseye/Dockerfile) -- [`9.5.9-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.9-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-alpine3.18/Dockerfile) -- [`9.5.9-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.5/php8.2/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.9-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.9-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.9-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.9-apache`, `9.5-apache`, `9-apache`, `9.5.9`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/apache-bookworm/Dockerfile) -- [`9.5.9-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.9-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.9-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.9-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/fpm-bookworm/Dockerfile) -- [`9.5.9-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.9-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.9-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.9-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.9-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.9-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.9-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.9-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.5/php8.1/fpm-alpine3.18/Dockerfile) -- [`9.5.9-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.9-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.9-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.9-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.9-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.9-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.9-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/23b02e8143858e0ed63e3f22bfa834f6d7263224/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`9.4.15-php8.2-apache-bookworm`, `9.4-php8.2-apache-bookworm`, `9.4.15-php8.2-apache`, `9.4-php8.2-apache`, `9.4.15-php8.2`, `9.4-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/apache-bookworm/Dockerfile) -- [`9.4.15-php8.2-fpm-bookworm`, `9.4-php8.2-fpm-bookworm`, `9.4.15-php8.2-fpm`, `9.4-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-bookworm/Dockerfile) -- [`9.4.15-php8.2-apache-bullseye`, `9.4-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/apache-bullseye/Dockerfile) -- [`9.4.15-php8.2-fpm-bullseye`, `9.4-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-bullseye/Dockerfile) -- [`9.4.15-php8.2-fpm-alpine3.18`, `9.4-php8.2-fpm-alpine3.18`, `9.4.15-php8.2-fpm-alpine`, `9.4-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-alpine3.18/Dockerfile) -- [`9.4.15-php8.2-fpm-alpine3.17`, `9.4-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/9.4/php8.2/fpm-alpine3.17/Dockerfile) -- [`9.4.15-php8.1-apache-bookworm`, `9.4-php8.1-apache-bookworm`, `9.4.15-php8.1-apache`, `9.4-php8.1-apache`, `9.4.15-php8.1`, `9.4-php8.1`, `9.4.15-apache-bookworm`, `9.4-apache-bookworm`, `9.4.15-apache`, `9.4-apache`, `9.4.15`, `9.4`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/apache-bookworm/Dockerfile) -- [`9.4.15-php8.1-fpm-bookworm`, `9.4-php8.1-fpm-bookworm`, `9.4.15-php8.1-fpm`, `9.4-php8.1-fpm`, `9.4.15-fpm-bookworm`, `9.4-fpm-bookworm`, `9.4.15-fpm`, `9.4-fpm`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/fpm-bookworm/Dockerfile) -- [`9.4.15-php8.1-apache-bullseye`, `9.4-php8.1-apache-bullseye`, `9.4.15-apache-bullseye`, `9.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/apache-bullseye/Dockerfile) -- [`9.4.15-php8.1-fpm-bullseye`, `9.4-php8.1-fpm-bullseye`, `9.4.15-fpm-bullseye`, `9.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.1/fpm-bullseye/Dockerfile) -- [`9.4.15-php8.1-fpm-alpine3.18`, `9.4-php8.1-fpm-alpine3.18`, `9.4.15-php8.1-fpm-alpine`, `9.4-php8.1-fpm-alpine`, `9.4.15-fpm-alpine3.18`, `9.4-fpm-alpine3.18`, `9.4.15-fpm-alpine`, `9.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/746a68f3e21d1775f23701011503ca98ac900721/9.4/php8.1/fpm-alpine3.18/Dockerfile) -- [`9.4.15-php8.1-fpm-alpine3.17`, `9.4-php8.1-fpm-alpine3.17`, `9.4.15-fpm-alpine3.17`, `9.4-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.4.15-php8.0-apache-bullseye`, `9.4-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/apache-bullseye/Dockerfile) -- [`9.4.15-php8.0-fpm-bullseye`, `9.4-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/fpm-bullseye/Dockerfile) -- [`9.4.15-php8.0-apache-buster`, `9.4-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/apache-buster/Dockerfile) -- [`9.4.15-php8.0-fpm-buster`, `9.4-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/9.4/php8.0/fpm-buster/Dockerfile) -- [`9.4.15-php8.0-fpm-alpine3.16`, `9.4-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/0ff59ea0f3f7ec36e5728818dd7621676824aedb/9.4/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.1.1-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.1-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.1-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.1-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.1-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.1`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.1-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.1-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.1-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.1-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.1-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.1-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.1-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.1-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.1-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.1-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.1-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.1-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.1-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.1-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.1-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.1-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.1-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.1-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.1-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.1-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.1-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.1-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.1-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.1-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.10-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.10-php8.2-apache`, `10.0-php8.2-apache`, `10.0.10-php8.2`, `10.0-php8.2`, `10.0.10-apache-bookworm`, `10.0-apache-bookworm`, `10.0.10-apache`, `10.0-apache`, `10.0.10`, `10.0`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bookworm/Dockerfile) +- [`10.0.10-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.10-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.10-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.10-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bookworm/Dockerfile) +- [`10.0.10-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.10-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.10-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.10-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.10-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.10-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.10-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10.0.10-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.0.10-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10.0.10-fpm-alpine3.17`, `10.0-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.10-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.10-php8.1-apache`, `10.0-php8.1-apache`, `10.0.10-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/apache-bookworm/Dockerfile) +- [`10.0.10-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.10-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-bookworm/Dockerfile) +- [`10.0.10-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.10-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.10-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.10-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.0.10-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.10-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.10-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.10-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/apache-bookworm/Dockerfile) +- [`9.5.10-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.10-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-bookworm/Dockerfile) +- [`9.5.10-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/apache-bullseye/Dockerfile) +- [`9.5.10-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-bullseye/Dockerfile) +- [`9.5.10-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.10-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-alpine3.18/Dockerfile) +- [`9.5.10-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-alpine3.17/Dockerfile) +- [`9.5.10-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.10-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.10-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.10-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.10-apache`, `9.5-apache`, `9-apache`, `9.5.10`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/apache-bookworm/Dockerfile) +- [`9.5.10-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.10-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.10-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.10-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-bookworm/Dockerfile) +- [`9.5.10-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.10-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.10-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.10-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.10-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.10-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.10-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.10-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-alpine3.18/Dockerfile) +- [`9.5.10-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.10-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.10-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.10-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.10-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.10-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.10-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-alpine3.16/Dockerfile) - [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bookworm/Dockerfile) - [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bookworm/Dockerfile) - [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bullseye/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index af1d44202f7e..d7695ea20353 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.18`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/129bff4ea692ede8157aa3165a8c278bf982f47d/4.4/Dockerfile) -- [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/ee9c3fd710eb7f04df3843656ec21a1be361afd5/5.0/Dockerfile) -- [`5.1.0`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/0d41c4cf54ee2e670ba14cf821581d8999205996/5.1/Dockerfile) +- [`4.4.19`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/4.4/Dockerfile) +- [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.1/Dockerfile) # Quick reference (cont.) From a9df8befc2235b587118f2f25bd39c8b715358e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jul 2023 16:08:55 -0700 Subject: [PATCH 0436/2686] Run update.sh --- hylang/README.md | 84 ++++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index aabd51cb3acc..bff9b173450d 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.26.0-python3.11-bookworm`, `0.26-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.26.0-bookworm`, `0.26-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.26.0-python3.11-bullseye`, `0.26-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.26.0-bullseye`, `0.26-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.26.0-python3.11-alpine3.18`, `0.26-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.26.0-alpine3.18`, `0.26-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.26.0-python3.11-alpine`, `0.26-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.26.0-alpine`, `0.26-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.26.0-python3.11-alpine3.17`, `0.26-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.26.0-alpine3.17`, `0.26-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.26.0-python3.10-bookworm`, `0.26-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.26.0-python3.10-bullseye`, `0.26-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.26.0-python3.10-alpine3.18`, `0.26-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.26.0-python3.10-alpine`, `0.26-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.26.0-python3.10-alpine3.17`, `0.26-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.26.0-python3.9-bookworm`, `0.26-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.26.0-python3.9-bullseye`, `0.26-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.26.0-python3.9-alpine3.18`, `0.26-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.26.0-python3.9-alpine`, `0.26-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.26.0-python3.9-alpine3.17`, `0.26-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.26.0-python3.8-bookworm`, `0.26-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.26.0-python3.8-bullseye`, `0.26-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.26.0-python3.8-alpine3.18`, `0.26-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.26.0-python3.8-alpine`, `0.26-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.26.0-python3.8-alpine3.17`, `0.26-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.26.0-python3.7-bookworm`, `0.26-python3.7-bookworm`, `0-python3.7-bookworm`, `python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bookworm) -- [`0.26.0-python3.7-bullseye`, `0.26-python3.7-bullseye`, `0-python3.7-bullseye`, `python3.7-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bullseye) -- [`0.26.0-python3.7-alpine3.18`, `0.26-python3.7-alpine3.18`, `0-python3.7-alpine3.18`, `python3.7-alpine3.18`, `0.26.0-python3.7-alpine`, `0.26-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-alpine3.18) -- [`0.26.0-python3.7-alpine3.17`, `0.26-python3.7-alpine3.17`, `0-python3.7-alpine3.17`, `python3.7-alpine3.17`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-alpine3.17) -- [`0.26.0-pypy3.10-bookworm`, `0.26-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.26.0-pypy-bookworm`, `0.26-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.26.0-pypy3.10-bullseye`, `0.26-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.26.0-pypy-bullseye`, `0.26-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.26.0-pypy3.9-bookworm`, `0.26-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.26.0-pypy3.9-bullseye`, `0.26-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.26.0-pypy3.9-windowsservercore-ltsc2022`, `0.26-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.26.0-pypy3.9-windowsservercore-1809`, `0.26-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.27.0-python3.11-alpine3.17`, `0.27-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.27.0-alpine3.17`, `0.27-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.27.0-python3.10-alpine3.17`, `0.27-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.27.0-python3.9-alpine3.17`, `0.27-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.27.0-python3.8-alpine3.17`, `0.27-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.27.0-python3.12-rc-bookworm`, `0.27-python3.12-rc-bookworm`, `0-python3.12-rc-bookworm`, `python3.12-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bookworm) +- [`0.27.0-python3.12-rc-bullseye`, `0.27-python3.12-rc-bullseye`, `0-python3.12-rc-bullseye`, `python3.12-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bullseye) +- [`0.27.0-python3.12-rc-alpine3.18`, `0.27-python3.12-rc-alpine3.18`, `0-python3.12-rc-alpine3.18`, `python3.12-rc-alpine3.18`, `0.27.0-python3.12-rc-alpine`, `0.27-python3.12-rc-alpine`, `0-python3.12-rc-alpine`, `python3.12-rc-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-alpine3.18) +- [`0.27.0-python3.12-rc-alpine3.17`, `0.27-python3.12-rc-alpine3.17`, `0-python3.12-rc-alpine3.17`, `python3.12-rc-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-alpine3.17) +- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags -- `0.26.0-python3.11`, `0.26-python3.11`, `0-python3.11`, `python3.11`, `0.26.0`, `0.26`, `0`, `latest`: - - [`0.26.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- `0.26.0-python3.10`, `0.26-python3.10`, `0-python3.10`, `python3.10`: - - [`0.26.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- `0.26.0-python3.9`, `0.26-python3.9`, `0-python3.9`, `python3.9`: - - [`0.26.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- `0.26.0-python3.8`, `0.26-python3.8`, `0-python3.8`, `python3.8`: - - [`0.26.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- `0.26.0-python3.7`, `0.26-python3.7`, `0-python3.7`, `python3.7`: - - [`0.26.0-python3.7-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.python3.7-bookworm) -- `0.26.0-pypy3.10`, `0.26-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.26.0-pypy`, `0.26-pypy`, `0-pypy`, `pypy`: - - [`0.26.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- `0.26.0-pypy3.9`, `0.26-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.26.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.26.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.26.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/2faaf55bb024adce50ca1071c8686f0ec46fa12b/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- `0.27.0-python3.11`, `0.27-python3.11`, `0-python3.11`, `python3.11`, `0.27.0`, `0.27`, `0`, `latest`: + - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- `0.27.0-python3.10`, `0.27-python3.10`, `0-python3.10`, `python3.10`: + - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- `0.27.0-python3.9`, `0.27-python3.9`, `0-python3.9`, `python3.9`: + - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- `0.27.0-python3.8`, `0.27-python3.8`, `0-python3.8`, `python3.8`: + - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- `0.27.0-python3.12-rc`, `0.27-python3.12-rc`, `0-python3.12-rc`, `python3.12-rc`: + - [`0.27.0-python3.12-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bookworm) +- `0.27.0-pypy3.10`, `0.27-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.27.0-pypy`, `0.27-pypy`, `0-pypy`, `pypy`: + - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- `0.27.0-pypy3.9`, `0.27-pypy3.9`, `0-pypy3.9`, `pypy3.9`: + - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) From d17151dc5e191bec5cf09fe013023bd07eaaa913 Mon Sep 17 00:00:00 2001 From: Jan Wielemaker Date: Fri, 7 Jul 2023 10:48:34 +0200 Subject: [PATCH 0437/2686] swipl: added get-help.md --- swipl/get-help.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 swipl/get-help.md diff --git a/swipl/get-help.md b/swipl/get-help.md new file mode 100644 index 000000000000..505b42ef46b1 --- /dev/null +++ b/swipl/get-help.md @@ -0,0 +1 @@ +[the Docker Community Slack](https://dockr.ly/comm-slack), [SWI-Prolog home](https://www.swi-prolog.org), [SWI-Prolog forum](https://swi-prolog.discourse.group/), [Stack Overflow](https://stackoverflow.com/help/on-topic) From f1efff561df081bf353743969dfc599fa51078a7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jul 2023 11:19:48 -0700 Subject: [PATCH 0438/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index e203f5b6aedb..4f455939909b 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -26,8 +26,8 @@ WARNING: - [`5.9.0`, `5.9.0-community`, `5.9`, `5.9-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/community/Dockerfile) - [`5.9.0-enterprise`, `5.9-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/enterprise/Dockerfile) -- [`4.4.22`, `4.4.22-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/698c4fe7f7ebd00c7599a3b00d86bb1d52702dc7/4.4.22/community/Dockerfile) -- [`4.4.22-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/698c4fe7f7ebd00c7599a3b00d86bb1d52702dc7/4.4.22/enterprise/Dockerfile) +- [`4.4.23`, `4.4.23-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/community/Dockerfile) +- [`4.4.23-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/enterprise/Dockerfile) # Quick reference (cont.) From 783757f0d37b4d4cf24691bb63a523bf112edd75 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jul 2023 12:20:03 -0700 Subject: [PATCH 0439/2686] Run update.sh --- arangodb/README.md | 2 +- archlinux/README.md | 4 +- clearlinux/README.md | 2 +- docker/README.md | 18 +++--- gcc/README.md | 2 +- geonetwork/README.md | 2 +- ghost/README.md | 4 +- lightstreamer/README.md | 8 ++- matomo/README.md | 6 +- node/README.md | 16 +++--- odoo/README.md | 6 +- openjdk/README.md | 72 ++++++++++++------------ photon/README.md | 2 +- php/README.md | 121 +++++++++++++++------------------------- telegraf/README.md | 12 ++-- 15 files changed, 125 insertions(+), 152 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index e968bfa55997..09eff429f4ac 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) -- [`3.10`, `3.10.7`](https://github.com/arangodb/arangodb-docker/blob/5c926a243d7c952a58f97488781f5eaf6d6704b9/alpine/3.10.7/Dockerfile) +- [`3.10`, `3.10.9`](https://github.com/arangodb/arangodb-docker/blob/bdd1fadac33809b6344b6ce1adceef73717e576e/alpine/3.10.9/Dockerfile) - [`3.11`, `3.11.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5c926a243d7c952a58f97488781f5eaf6d6704b9/alpine/3.11.1/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 7a977f227b21..008b7397ae7a 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230702.0.161694`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05b1c93ddc7653bebc91eb42561cddf99f6e410e/Dockerfile.base) -- [`base-devel`, `base-devel-20230702.0.161694`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05b1c93ddc7653bebc91eb42561cddf99f6e410e/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230709.0.163418`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e7997e3798b056648f0424e97dd3c78698d319f0/Dockerfile.base) +- [`base-devel`, `base-devel-20230709.0.163418`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e7997e3798b056648f0424e97dd3c78698d319f0/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index e86783b79be8..87ebe741d67f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7d83e2f10265a66b21a83d8fa60d6c76ff4454fe/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/11a8acec1e58aab06d40c35dad429daa6518d532/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 399c4929bae8..8ec3318e1758 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.3-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.3-cli-alpine3.18`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/cli/Dockerfile) -- [`24.0.3-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.3-dind-alpine3.18`, `24.0.3`, `24.0`, `24`, `latest`, `24.0.3-alpine3.18`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/dind/Dockerfile) -- [`24.0.3-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/dind-rootless/Dockerfile) -- [`24.0.3-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.3-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.3-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/cli/Dockerfile) +- [`24.0.4-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.4-dind-alpine3.18`, `24.0.4`, `24.0`, `24`, `latest`, `24.0.4-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind/Dockerfile) +- [`24.0.4-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind-rootless/Dockerfile) +- [`24.0.4-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `24.0.3-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12b164a60b5eb485f3343f7f9c67f1d4ebe19e60/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.4-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-1809/Dockerfile) diff --git a/gcc/README.md b/gcc/README.md index 7fbad3b92f45..c7024f01824a 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -27,7 +27,7 @@ WARNING: - [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/13/Dockerfile) - [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/12/Dockerfile) - [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/11/Dockerfile) -- [`10.4.0`, `10.4`, `10`, `10.4.0-bullseye`, `10.4-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/10/Dockerfile) +- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/82cd9a2f8eb0da43f9b938b92ee78d8747eb16d1/10/Dockerfile) - [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/9/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 29dfcba0363d..ec82d2ccb162 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -27,7 +27,7 @@ WARNING: - [`3.12.10`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/Dockerfile) - [`3.12.10-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/postgres/Dockerfile) - [`4.0.6`, `4.0`](https://github.com/geonetwork/docker-geonetwork/blob/00936dcf7dbb2399405c53aa05c670fa4bb79736/4.0.6/Dockerfile) -- [`4.2.4`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/3ef0cd8059c71b49b775b017c85ada9d82b113e9/4.2.4/Dockerfile) +- [`4.2.5`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/987e87e7fadefb5e2aaeb50a94617dc3a68682f5/4.2.5/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 0c1250bf2a94..1ae696a15f76 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.53.4`, `5.53`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5db5d3d87657343507bb413ecd642b446f3f8790/5/debian/Dockerfile) -- [`5.53.4-alpine`, `5.53-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5db5d3d87657343507bb413ecd642b446f3f8790/5/alpine/Dockerfile) +- [`5.54.0`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9577b1d3b4560adc3cc8c0dd21a14067fd77e120/5/debian/Dockerfile) +- [`5.54.0-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9577b1d3b4560adc3cc8c0dd21a14067fd77e120/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 0d8f0ea3bb5b..fbd8d3001fb6 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -32,8 +32,12 @@ WARNING: - [`7.1.3-jdk11-temurin`, `7.1-jdk11-temurin`, `7.1.3-jdk11`, `7.1-jdk11`, `7.1.3`, `7.1`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.1/jdk11/Dockerfile) - [`7.2.2-jdk8-temurin`, `7.2-jdk8-temurin`, `7.2.2-jdk8`, `7.2-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk8/Dockerfile) - [`7.2.2-jdk11-temurin`, `7.2-jdk11-temurin`, `7.2.2-jdk11`, `7.2-jdk11`, `7.2.2`, `7.2`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk11/Dockerfile) -- [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/586d5c630b887344f19e93d5c9a5d63d82365309/7.3/jdk8/Dockerfile) -- [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`, `7-jdk11`, `7.3.3`, `7.3`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/586d5c630b887344f19e93d5c9a5d63d82365309/7.3/jdk11/Dockerfile) +- [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk8/Dockerfile) +- [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk11/Dockerfile) +- [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) +- [`7.4.0-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.0-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk8/Dockerfile) +- [`7.4.0-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.0-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk11/Dockerfile) +- [`7.4.0-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.0-jdk17`, `7.4-jdk17`, `7-jdk17`, `7.4.0`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk17/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index e1b21e6d5f44..e4d0a8151b43 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.14.2-apache`, `4.14-apache`, `4-apache`, `apache`, `4.14.2`, `4.14`, `4`, `latest`](https://github.com/matomo-org/docker/blob/2b172629cd0d9c14a24b08b6e5e99f1b7f36ea1d/apache/Dockerfile) -- [`4.14.2-fpm`, `4.14-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/2b172629cd0d9c14a24b08b6e5e99f1b7f36ea1d/fpm/Dockerfile) -- [`4.14.2-fpm-alpine`, `4.14-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/9e6b9e7d3fc758a65750dbb625b669d142f237aa/fpm-alpine/Dockerfile) +- [`4.15.0-apache`, `4.15-apache`, `4-apache`, `apache`, `4.15.0`, `4.15`, `4`, `latest`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/apache/Dockerfile) +- [`4.15.0-fpm`, `4.15-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/fpm/Dockerfile) +- [`4.15.0-fpm-alpine`, `4.15-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 11af537b416c..40280edc5d84 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.3-alpine3.17`, `20.3.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.3-alpine`, `20.3-alpine3.18`, `20.3.1-alpine`, `20.3.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.3`, `20.3-bookworm`, `20.3.1`, `20.3.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.3-bookworm-slim`, `20.3-slim`, `20.3.1-bookworm-slim`, `20.3.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.3-bullseye`, `20.3.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.3-bullseye-slim`, `20.3.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.3-buster`, `20.3.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/20/buster/Dockerfile) -- [`20-buster-slim`, `20.3-buster-slim`, `20.3.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.4-alpine3.17`, `20.4.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.4-alpine`, `20.4-alpine3.18`, `20.4.0-alpine`, `20.4.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.4`, `20.4-bookworm`, `20.4.0`, `20.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.4-bookworm-slim`, `20.4-slim`, `20.4.0-bookworm-slim`, `20.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.4-bullseye`, `20.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.4-bullseye-slim`, `20.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.4-buster`, `20.4.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster/Dockerfile) +- [`20-buster-slim`, `20.4-buster-slim`, `20.4.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.1-alpine`, `18.16.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.1`, `18.16.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 5eb12d7ad644..0e24c63922fa 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/672d5cda913ff3ef6eaa1ae25de0ca7c0336f05b/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/14.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index e6fc7cb3861d..2c46421e8024 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-4-jdk-oraclelinux8`, `22-ea-4-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-4-jdk-oracle`, `22-ea-4-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-4-jdk-oraclelinux7`, `22-ea-4-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-4-jdk-bookworm`, `22-ea-4-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/bookworm/Dockerfile) -- [`22-ea-4-jdk-slim-bookworm`, `22-ea-4-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-4-jdk-slim`, `22-ea-4-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-4-jdk-bullseye`, `22-ea-4-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/bullseye/Dockerfile) -- [`22-ea-4-jdk-slim-bullseye`, `22-ea-4-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-4-jdk-windowsservercore-ltsc2022`, `22-ea-4-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-4-jdk-windowsservercore-1809`, `22-ea-4-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-4-jdk-nanoserver-1809`, `22-ea-4-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-29-jdk-oraclelinux8`, `21-ea-29-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-29-jdk-oracle`, `21-ea-29-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-29-jdk-oraclelinux7`, `21-ea-29-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-29-jdk-bookworm`, `21-ea-29-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/bookworm/Dockerfile) -- [`21-ea-29-jdk-slim-bookworm`, `21-ea-29-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-29-jdk-slim`, `21-ea-29-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-29-jdk-bullseye`, `21-ea-29-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/bullseye/Dockerfile) -- [`21-ea-29-jdk-slim-bullseye`, `21-ea-29-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-29-jdk-windowsservercore-ltsc2022`, `21-ea-29-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-29-jdk-windowsservercore-1809`, `21-ea-29-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-29-jdk-nanoserver-1809`, `21-ea-29-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-5-jdk-oraclelinux8`, `22-ea-5-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-5-jdk-oracle`, `22-ea-5-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-5-jdk-oraclelinux7`, `22-ea-5-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-5-jdk-bookworm`, `22-ea-5-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/bookworm/Dockerfile) +- [`22-ea-5-jdk-slim-bookworm`, `22-ea-5-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-5-jdk-slim`, `22-ea-5-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-5-jdk-bullseye`, `22-ea-5-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/bullseye/Dockerfile) +- [`22-ea-5-jdk-slim-bullseye`, `22-ea-5-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-5-jdk-windowsservercore-ltsc2022`, `22-ea-5-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-5-jdk-windowsservercore-1809`, `22-ea-5-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-5-jdk-nanoserver-1809`, `22-ea-5-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-30-jdk-oraclelinux8`, `21-ea-30-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-30-jdk-oracle`, `21-ea-30-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-30-jdk-oraclelinux7`, `21-ea-30-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-30-jdk-bookworm`, `21-ea-30-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/bookworm/Dockerfile) +- [`21-ea-30-jdk-slim-bookworm`, `21-ea-30-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-30-jdk-slim`, `21-ea-30-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-30-jdk-bullseye`, `21-ea-30-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/bullseye/Dockerfile) +- [`21-ea-30-jdk-slim-bullseye`, `21-ea-30-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-30-jdk-windowsservercore-ltsc2022`, `21-ea-30-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-30-jdk-windowsservercore-1809`, `21-ea-30-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-30-jdk-nanoserver-1809`, `21-ea-30-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-4-jdk`, `22-ea-4`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-4-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-4-jdk-windowsservercore`, `22-ea-4-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-4-jdk-nanoserver`, `22-ea-4-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2e3be00002d738cbe87b8904edb513e8b2b8ae9a/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-29-jdk`, `21-ea-29`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-29-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-29-jdk-windowsservercore`, `21-ea-29-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-29-jdk-nanoserver`, `21-ea-29-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2d921c29654f919611cb049202312f50ca8eeeff/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-5-jdk`, `22-ea-5`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-5-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-5-jdk-windowsservercore`, `22-ea-5-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-5-jdk-nanoserver`, `22-ea-5-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-30-jdk`, `21-ea-30`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-30-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-30-jdk-windowsservercore`, `21-ea-30-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-30-jdk-nanoserver`, `21-ea-30-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 6d1178db0f8f..e54b21037665 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20230701`, `latest`](https://github.com/vmware/photon-docker-image/blob/5bbe36100e8e8266774bc2039df701232d4332da/docker/Dockerfile) -- [`4.0`, `4.0-20230624`](https://github.com/vmware/photon-docker-image/blob/a1ce7795aa9db62a64d8bb4df2f62ab21cdadd48/docker/Dockerfile) +- [`4.0`, `4.0-20230708`](https://github.com/vmware/photon-docker-image/blob/cb9a61248ac3c77716a407f1029db07ad8b563d2/docker/Dockerfile) - [`3.0`, `3.0-20230701`](https://github.com/vmware/photon-docker-image/blob/d9c6e7e851466ed17ed62f15e2b15ee922b1fe73/docker/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 1e33b6f6b052..30c309c89fe9 100644 --- a/php/README.md +++ b/php/README.md @@ -24,82 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0alpha2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha2-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha2-cli`, `8.3-rc-cli`, `8.3.0alpha2`, `8.3-rc`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0alpha2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0alpha2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0alpha2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0alpha2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0alpha2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0alpha2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0alpha2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0alpha2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0alpha2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0alpha2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0alpha2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0alpha2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0alpha2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/0bae31aa4aa0afffdc394072bda779fa652f74fc/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.8RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.8RC1-bookworm`, `8.2-rc-bookworm`, `8.2.8RC1-cli`, `8.2-rc-cli`, `8.2.8RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.8RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.8RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.8RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.8RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.8RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.8RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.8RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.8RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.8RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.8RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.8RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.8RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.8RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.8RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.8RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.8RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.8RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.8RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.8RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.8RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.8RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.8RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.8RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/d3fc8d9699726a2f6abbd7c4453bc81cf7fb6a2f/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.7-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.7-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.7-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.7`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/cli/Dockerfile) -- [`8.2.7-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/apache/Dockerfile) -- [`8.2.7-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/fpm/Dockerfile) -- [`8.2.7-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.7-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bookworm/zts/Dockerfile) -- [`8.2.7-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.7-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/cli/Dockerfile) -- [`8.2.7-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/apache/Dockerfile) -- [`8.2.7-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/fpm/Dockerfile) -- [`8.2.7-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.2/bullseye/zts/Dockerfile) -- [`8.2.7-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.7-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.7-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.7-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.7-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.7-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.7-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.7-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.7-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.7-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.7-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.7-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.21RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.21RC1-bookworm`, `8.1-rc-bookworm`, `8.1.21RC1-cli`, `8.1-rc-cli`, `8.1.21RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.21RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.21RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.21RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.21RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.21RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.21RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.21RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.21RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.21RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.21RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.21RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.21RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.21RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.21RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.21RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.21RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.21RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.21RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.21RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.21RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.21RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.21RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.21RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.21RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.21RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.21RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.21RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/b9440afbfa019014080b1ccca0f9b799e3e5a28a/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.20-cli-bookworm`, `8.1-cli-bookworm`, `8.1.20-bookworm`, `8.1-bookworm`, `8.1.20-cli`, `8.1-cli`, `8.1.20`, `8.1`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/cli/Dockerfile) -- [`8.1.20-apache-bookworm`, `8.1-apache-bookworm`, `8.1.20-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/apache/Dockerfile) -- [`8.1.20-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.20-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/fpm/Dockerfile) -- [`8.1.20-zts-bookworm`, `8.1-zts-bookworm`, `8.1.20-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bookworm/zts/Dockerfile) -- [`8.1.20-cli-bullseye`, `8.1-cli-bullseye`, `8.1.20-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/cli/Dockerfile) -- [`8.1.20-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/apache/Dockerfile) -- [`8.1.20-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/fpm/Dockerfile) -- [`8.1.20-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.1/bullseye/zts/Dockerfile) -- [`8.1.20-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.20-alpine3.18`, `8.1-alpine3.18`, `8.1.20-cli-alpine`, `8.1-cli-alpine`, `8.1.20-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.20-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.20-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.20-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.20-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.20-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.20-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.20-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.20-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.20-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/83461ac6dbfa05acb3d743e10404983ce89334f5/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.20-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6fce78bd808bcdace098ab4065ba2d41e8bedc4e/8.1/alpine3.16/zts/Dockerfile) +- [`8.3.0alpha3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha3-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha3-cli`, `8.3-rc-cli`, `8.3.0alpha3`, `8.3-rc`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0alpha3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0alpha3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0alpha3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0alpha3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0alpha3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0alpha3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0alpha3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0alpha3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0alpha3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0alpha3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0alpha3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0alpha3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0alpha3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.8-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.8-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.8-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.8`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/cli/Dockerfile) +- [`8.2.8-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.8-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/apache/Dockerfile) +- [`8.2.8-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.8-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/fpm/Dockerfile) +- [`8.2.8-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.8-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/zts/Dockerfile) +- [`8.2.8-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.8-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/cli/Dockerfile) +- [`8.2.8-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/apache/Dockerfile) +- [`8.2.8-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/fpm/Dockerfile) +- [`8.2.8-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/zts/Dockerfile) +- [`8.2.8-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.8-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.8-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.8-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.8-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.8-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.8-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.8-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.8-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.8-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.8-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.8-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.21-cli-bookworm`, `8.1-cli-bookworm`, `8.1.21-bookworm`, `8.1-bookworm`, `8.1.21-cli`, `8.1-cli`, `8.1.21`, `8.1`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/cli/Dockerfile) +- [`8.1.21-apache-bookworm`, `8.1-apache-bookworm`, `8.1.21-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/apache/Dockerfile) +- [`8.1.21-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.21-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/fpm/Dockerfile) +- [`8.1.21-zts-bookworm`, `8.1-zts-bookworm`, `8.1.21-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/zts/Dockerfile) +- [`8.1.21-cli-bullseye`, `8.1-cli-bullseye`, `8.1.21-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/cli/Dockerfile) +- [`8.1.21-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/apache/Dockerfile) +- [`8.1.21-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/fpm/Dockerfile) +- [`8.1.21-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/zts/Dockerfile) +- [`8.1.21-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.21-alpine3.18`, `8.1-alpine3.18`, `8.1.21-cli-alpine`, `8.1-cli-alpine`, `8.1.21-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.21-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.21-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.21-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.21-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.21-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.21-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.21-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.21-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.21-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.21-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.21-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.21-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/zts/Dockerfile) - [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/cli/Dockerfile) - [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/apache/Dockerfile) - [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/fpm/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 576ced312733..6ae0be506395 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7ecf1a2631d6ce5fb1c6fa1d8087c0e3c179b76c/telegraf/1.27/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.27/alpine/Dockerfile) # Quick reference (cont.) From 5c0b366af0954d9576e24ceb3a2f580f6047f6a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jul 2023 15:18:17 -0700 Subject: [PATCH 0440/2686] Run update.sh --- rabbitmq/README.md | 4 ++ redis/README.md | 16 ++++---- tomcat/README.md | 92 +++++++++++++++++++++++----------------------- 3 files changed, 58 insertions(+), 54 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 2c4a97aa4539..85ba2133adee 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.12.2-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/ubuntu/Dockerfile) +- [`3.12.2-beta.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/ubuntu/management/Dockerfile) +- [`3.12.2-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/alpine/Dockerfile) +- [`3.12.2-beta.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/alpine/management/Dockerfile) - [`3.12.1`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/ubuntu/Dockerfile) - [`3.12.1-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 075178222493..7fa7ff03e9dc 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2-rc2`, `7.2-rc`, `7.2-rc2-bookworm`, `7.2-rc-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/7.2-rc/Dockerfile) -- [`7.2-rc2-alpine`, `7.2-rc-alpine`, `7.2-rc2-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/2e6e8961037d8b2838a4105bb9a761441e1ae477/7.2-rc/alpine/Dockerfile) -- [`7.0.11`, `7.0`, `7`, `latest`, `7.0.11-bookworm`, `7.0-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/7.0/Dockerfile) -- [`7.0.11-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.11-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/7.0/alpine/Dockerfile) -- [`6.2.12`, `6.2`, `6`, `6.2.12-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/6.2/Dockerfile) -- [`6.2.12-alpine`, `6.2-alpine`, `6-alpine`, `6.2.12-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.2/alpine/Dockerfile) -- [`6.0.19`, `6.0`, `6.0.19-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/7e4a3dd9d2644458a40700a96620f6f028887a25/6.0/Dockerfile) -- [`6.0.19-alpine`, `6.0-alpine`, `6.0.19-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/7ef4e925387c9c4063b25e83928a85ff44dddf4d/6.0/alpine/Dockerfile) +- [`7.2-rc3`, `7.2-rc`, `7.2-rc3-bookworm`, `7.2-rc-bookworm`](https://github.com/docker-library/redis/blob/b1094a33decb8238769620c831cb73ec76c64346/7.2-rc/Dockerfile) +- [`7.2-rc3-alpine`, `7.2-rc-alpine`, `7.2-rc3-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/b1094a33decb8238769620c831cb73ec76c64346/7.2-rc/alpine/Dockerfile) +- [`7.0.12`, `7.0`, `7`, `latest`, `7.0.12-bookworm`, `7.0-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/Dockerfile) +- [`7.0.12-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.12-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/alpine/Dockerfile) +- [`6.2.13`, `6.2`, `6`, `6.2.13-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/Dockerfile) +- [`6.2.13-alpine`, `6.2-alpine`, `6-alpine`, `6.2.13-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/alpine/Dockerfile) +- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/Dockerfile) +- [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 751be9503c97..c5c572b67f8c 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,52 +24,52 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M7-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M7-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/11.0/jdk21/openjdk-bookworm/Dockerfile) -- [`11.0.0-M7-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M7-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.10-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.10-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/10.1/jdk21/openjdk-bookworm/Dockerfile) -- [`10.1.10-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.10-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.10-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.10-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.10-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.10`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.10-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.10-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.10-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.10-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.10-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.10-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.10-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.10-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.10-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/cec66ee6d87cce2308d454b47bb7addbb9ace087/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.76-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.76-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-bookworm/Dockerfile) -- [`9.0.76-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-bullseye/Dockerfile) -- [`9.0.76-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.76-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`9.0.76-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`9.0.76-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.76-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.76-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.76`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.76-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.76-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.76-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.76-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.76-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.76-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.76-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.76-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.76-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.76-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.76-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.76-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.76-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.76-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.76-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.76-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.76-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.76-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.76-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.76-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.76-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.76-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.76-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.76-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.76-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.76-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.76-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c6875e85a440757bf983b3beb6234f23cc06e8c/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.90-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.90-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-bookworm/Dockerfile) -- [`8.5.90-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-bullseye/Dockerfile) -- [`8.5.90-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.90-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`8.5.90-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/16a2137a26ae88227d8bac176182235ad69c82b3/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`8.5.90-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.90-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.90-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.90`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.90-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.90-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.90-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.90-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.90-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.90-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.90-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.90-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.90-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.90-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.90-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.90-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.90-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.90-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.90-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.90-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.90-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.90-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.90-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.90-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.90-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.90-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.90-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.90-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.90-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.90-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.90-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2b200acb84bebc3e867f32e3b64f19620aa60b58/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M9-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M9-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/64c82101842617668648105546f9bd835e422952/11.0/jdk21/openjdk-bookworm/Dockerfile) +- [`11.0.0-M9-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M9-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/64c82101842617668648105546f9bd835e422952/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.11-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.11-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-bookworm/Dockerfile) +- [`10.1.11-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.11-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.11-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.11-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.11-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.11`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.11-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.11-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.11-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.11-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.11-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.11-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.11-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.11-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.11-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.78-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.78-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bookworm/Dockerfile) +- [`9.0.78-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bullseye/Dockerfile) +- [`9.0.78-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.78-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`9.0.78-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`9.0.78-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.78-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.78-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.78`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.78-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.78-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.78-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.78-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.78-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.78-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.78-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.78-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.78-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.78-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.78-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.78-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.78-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.78-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.78-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.78-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.78-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.78-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.78-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.78-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.78-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.78-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.78-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.78-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.78-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.78-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.78-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.91-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.91-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bookworm/Dockerfile) +- [`8.5.91-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bullseye/Dockerfile) +- [`8.5.91-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.91-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`8.5.91-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`8.5.91-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.91-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.91-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.91`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.91-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.91-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.91-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.91-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.91-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.91-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.91-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.91-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.91-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.91-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.91-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.91-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.91-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.91-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.91-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.91-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.91-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.91-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.91-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.91-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.91-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.91-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.91-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.91-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.91-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.91-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.91-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 605a3495f35b65dc071d96bb3c6f4b52d22df0d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jul 2023 16:09:00 -0700 Subject: [PATCH 0441/2686] Run update.sh --- swipl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swipl/README.md b/swipl/README.md index 45e8ea5ecc98..053c2ab6ed69 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -20,7 +20,7 @@ WARNING: [the SWI-Prolog community](https://github.com/SWI-Prolog/docker-swipl) - **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + [the Docker Community Slack](https://dockr.ly/comm-slack), [SWI-Prolog home](https://www.swi-prolog.org), [SWI-Prolog forum](https://swi-prolog.discourse.group/), [Stack Overflow](https://stackoverflow.com/help/on-topic) # Supported tags and respective `Dockerfile` links From 8b141966bcc4a0eb283ff019847298a9c2c90df0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jul 2023 11:17:10 -0700 Subject: [PATCH 0442/2686] Run update.sh --- varnish/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index 337c34a74602..506c94e837e3 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/fresh/alpine/Dockerfile) -- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/old/debian/Dockerfile) -- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/20c613b480afe91d08f08ba9577501f9a7fd7280/old/alpine/Dockerfile) +- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/fresh/alpine/Dockerfile) +- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/old/debian/Dockerfile) +- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/old/alpine/Dockerfile) - [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/f3be41ac5e4224615e1437334ffc16418e3e89f3/stable/debian/Dockerfile) # Quick reference (cont.) From 40a5bf3ef1b7f9766b122cf1b94fea614ea38e3c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jul 2023 12:09:02 -0700 Subject: [PATCH 0443/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index a42a997804f8..c97c4c5523c5 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,22 +36,22 @@ WARNING: - [`1.21rc2-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) - [`1.21rc2-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21rc2-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) -- [`1.20.5-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bookworm/Dockerfile) -- [`1.20.5-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bullseye/Dockerfile) -- [`1.20.5-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.5-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.18/Dockerfile) -- [`1.20.5-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/alpine3.17/Dockerfile) -- [`1.20.5-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.5-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.5-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.5-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.10-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bookworm/Dockerfile) -- [`1.19.10-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bullseye/Dockerfile) -- [`1.19.10-alpine3.18`, `1.19-alpine3.18`, `1.19.10-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.18/Dockerfile) -- [`1.19.10-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/alpine3.17/Dockerfile) -- [`1.19.10-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.10-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.10-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.10-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.6-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) +- [`1.20.6-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bullseye/Dockerfile) +- [`1.20.6-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.6-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/alpine3.18/Dockerfile) +- [`1.20.6-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/alpine3.17/Dockerfile) +- [`1.20.6-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.6-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.6-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.6-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.11-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bookworm/Dockerfile) +- [`1.19.11-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bullseye/Dockerfile) +- [`1.19.11-alpine3.18`, `1.19-alpine3.18`, `1.19.11-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/alpine3.18/Dockerfile) +- [`1.19.11-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/alpine3.17/Dockerfile) +- [`1.19.11-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.11-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.11-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.11-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -65,26 +65,26 @@ WARNING: - `1.21rc2-nanoserver`, `1.21-rc-nanoserver`: - [`1.21rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) -- `1.20.5`, `1.20`, `1`, `latest`: - - [`1.20.5-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.20/bookworm/Dockerfile) - - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.5-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.5-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/29b2d53bcf3365a9fe72612ae24b884546185be6/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.10`, `1.19`: - - [`1.19.10-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.19/bookworm/Dockerfile) - - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.10-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.10-nanoserver`, `1.19-nanoserver`: - - [`1.19.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/e16be5c5a93bd4a2d26ede8cb753ad3578203286/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.6`, `1.20`, `1`, `latest`: + - [`1.20.6-bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) + - [`1.20.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.6-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.6-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.11`, `1.19`: + - [`1.19.11-bookworm`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bookworm/Dockerfile) + - [`1.19.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.11-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.11-nanoserver`, `1.19-nanoserver`: + - [`1.19.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From d5c6f6d3c821e920c32885d66b9081949a6da5ac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jul 2023 15:17:26 -0700 Subject: [PATCH 0444/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 20 ++++++++++---------- julia/README.md | 13 +++++++++++++ 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/bash/README.md b/bash/README.md index 273e1af6f82b..3fd558af4c30 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230703`, `devel`, `devel-20230703-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/d1e4a1fa6645f7895b489ca07b38187979d53faa/devel/Dockerfile) +- [`devel-20230710`, `devel`, `devel-20230710-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/535d58e466e65f6e3b93d978daa99dd2183da978/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 8ec3318e1758..4a89a2d365af 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/cli/Dockerfile) +- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/cli/Dockerfile) - [`24.0.4-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.4-dind-alpine3.18`, `24.0.4`, `24.0`, `24`, `latest`, `24.0.4-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind/Dockerfile) - [`24.0.4-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind-rootless/Dockerfile) - [`24.0.4-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/cli/Dockerfile) +- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.4-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec8f74674afa9565206f38a9e3964b61823dd5e9/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index f226ebe804af..c72e625e05ae 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,6 +28,12 @@ WARNING: ## Simple Tags +- [`1.10.0-alpha1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-alpha1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-alpha1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-alpha1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-alpha1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-alpha1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-alpha1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.2-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) - [`1.9.2-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bullseye/Dockerfile) - [`1.9.2-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.2-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.18/Dockerfile) @@ -43,6 +49,13 @@ WARNING: ## Shared Tags +- `1.10.0-alpha1`, `1.10-rc`, `rc`: + - [`1.10.0-alpha1-bookworm`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-alpha1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.2`, `1.9`, `1`, `latest`: - [`1.9.2-bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) From d63b8ee1115f5fba1feab3d700677a955fb99d84 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jul 2023 12:17:37 -0700 Subject: [PATCH 0445/2686] Run update.sh --- dart/README.md | 4 ++-- joomla/README.md | 54 +++++++++++++++++++++---------------------- rakudo-star/README.md | 4 ++-- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/dart/README.md b/dart/README.md index 16388b64b2bb..d3ab292cbf75 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.5-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.5`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/66476c7729c74864b6f319b2a12b497af5a828e4/stable/bullseye/Dockerfile) -- [`3.1.0-163.1.beta-sdk`, `beta-sdk`, `3.1.0-163.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/66476c7729c74864b6f319b2a12b497af5a828e4/beta/bullseye/Dockerfile) +- [`3.0.6-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.6`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/78b62fa29c8f76a981f0ed8d90b0d7ac0c49b088/stable/bullseye/Dockerfile) +- [`3.1.0-262.1.beta-sdk`, `beta-sdk`, `3.1.0-262.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/78b62fa29c8f76a981f0ed8d90b0d7ac0c49b088/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index fabccbec34a7..29aeb53cfb82 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-alpha1`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha1-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha1-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/apache/Dockerfile) -- [`5.0.0-alpha1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-alpha1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.1/fpm/Dockerfile) -- [`5.0.0-alpha1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/apache/Dockerfile) -- [`5.0.0-alpha1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-alpha1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c83dfeda66de5f07be8422408a7b1d552a8c59b9/5.0.alpha/php8.2/fpm/Dockerfile) -- [`4.4.0-alpha1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/apache/Dockerfile) -- [`4.4.0-alpha1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-alpha1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.0/fpm/Dockerfile) -- [`4.4.0-alpha1`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha1-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha1-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/apache/Dockerfile) -- [`4.4.0-alpha1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-alpha1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.1/fpm/Dockerfile) -- [`4.4.0-alpha1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/apache/Dockerfile) -- [`4.4.0-alpha1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-alpha1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/869c8d0fcda0e2e19b716b84bd9ff08e2071ea0e/4.4.alpha/php8.2/fpm/Dockerfile) -- [`4.3.2`, `4.3`, `4`, `latest`, `4.3.2-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.2-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.2-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/apache/Dockerfile) -- [`4.3.2-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.2-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.0/fpm/Dockerfile) -- [`4.3.2-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/apache/Dockerfile) -- [`4.3.2-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.2-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/eaf23042576d7fb02e6d4b34c5345a1bcd6531f1/4.3/php8.1/fpm/Dockerfile) -- [`4.3.2-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/apache/Dockerfile) -- [`4.3.2-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.2-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d1f02139287395a0d5ccc3211cea4c6df184377b/4.3/php8.2/fpm/Dockerfile) -- [`3.10.11`, `3.10`, `3`, `3.10.11-apache`, `3.10-apache`, `3-apache`, `3.10.11-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.11-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/apache/Dockerfile) -- [`3.10.11-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/fpm-alpine/Dockerfile) -- [`3.10.11-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5c118d93f57608d779ae61d75bf122f2f03d2d9b/3.10/php8.0/fpm/Dockerfile) +- [`5.0.0-alpha2`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha2-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha2-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha2-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/apache/Dockerfile) +- [`5.0.0-alpha2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-alpha2-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/fpm/Dockerfile) +- [`5.0.0-alpha2-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/apache/Dockerfile) +- [`5.0.0-alpha2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-alpha2-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/fpm/Dockerfile) +- [`4.4.0-alpha2-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/apache/Dockerfile) +- [`4.4.0-alpha2-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-alpha2-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/fpm/Dockerfile) +- [`4.4.0-alpha2`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha2-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha2-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha2-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/apache/Dockerfile) +- [`4.4.0-alpha2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-alpha2-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/fpm/Dockerfile) +- [`4.4.0-alpha2-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/apache/Dockerfile) +- [`4.4.0-alpha2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-alpha2-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/fpm/Dockerfile) +- [`4.3.3`, `4.3`, `4`, `latest`, `4.3.3-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.3-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.3-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/apache/Dockerfile) +- [`4.3.3-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.3-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/fpm/Dockerfile) +- [`4.3.3-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/apache/Dockerfile) +- [`4.3.3-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.3-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/fpm/Dockerfile) +- [`4.3.3-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/apache/Dockerfile) +- [`4.3.3-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.3-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/fpm/Dockerfile) +- [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/apache/Dockerfile) +- [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm-alpine/Dockerfile) +- [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index f9d7f804c45a..bcf75d7ecb32 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2023.04`](https://github.com/Raku/docker/blob/908f33d76c1437ddfdee8596049d8a9877c03d60/2023.04/bullseye/Dockerfile) -- [`alpine`, `2023.04-alpine`](https://github.com/Raku/docker/blob/908f33d76c1437ddfdee8596049d8a9877c03d60/2023.04/alpine3.17/Dockerfile) +- [`latest`, `2023.06`](https://github.com/Raku/docker/blob/40594a60036aa9918d742cc942adade6edc223cd/2023.06/bookworm/Dockerfile) +- [`alpine`, `2023.06-alpine`](https://github.com/Raku/docker/blob/40594a60036aa9918d742cc942adade6edc223cd/2023.06/alpine3.18/Dockerfile) # Quick reference (cont.) From 47bd1f913307bba348ca7459a6aef14a4def9441 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jul 2023 18:17:46 -0700 Subject: [PATCH 0446/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4635fc242170..3dc7e65cb138 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.0.20230614.0`](https://github.com/amazonlinux/container-images/blob/6a80b496dddec729b610e3fb60b235124b929710/Dockerfile) -- [`2`, `2.0.20230612.0`](https://github.com/amazonlinux/container-images/blob/c37b0b93a914f22f910edc26a1a83d6f7403d821/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230607.0`](https://github.com/amazonlinux/container-images/blob/9a66082b2100b382b5adaa526b8b63515639bbfd/Dockerfile) +- [`2023`, `latest`, `2023.1.20230705.0`](https://github.com/amazonlinux/container-images/blob/e2a12edeb2149ac97b854b43676c4117ced6fb70/Dockerfile) +- [`2`, `2.0.20230628.0`](https://github.com/amazonlinux/container-images/blob/0df7bde196fbf207d36ade9bdbbf1b8ed493051f/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230628.0`](https://github.com/amazonlinux/container-images/blob/18405b44cfe8a9e24a023ea3ccecd7b41cba827f/Dockerfile) # Quick reference (cont.) From 006e77b07f25a6e0fcc25c10f85e08be28fd26a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Jul 2023 13:08:56 -0700 Subject: [PATCH 0447/2686] Run update.sh --- golang/README.md | 12 ++++++------ gradle/README.md | 16 ++++++++-------- python/README.md | 30 +++++++++++++++--------------- rust/README.md | 16 ++++++++-------- wordpress/README.md | 18 +++++++++--------- 5 files changed, 46 insertions(+), 46 deletions(-) diff --git a/golang/README.md b/golang/README.md index c97c4c5523c5..4a3912e2a6fe 100644 --- a/golang/README.md +++ b/golang/README.md @@ -30,24 +30,24 @@ WARNING: - [`1.21rc2-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bookworm/Dockerfile) - [`1.21rc2-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bullseye/Dockerfile) -- [`1.21rc2-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc2-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/alpine3.18/Dockerfile) -- [`1.21rc2-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/alpine3.17/Dockerfile) +- [`1.21rc2-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc2-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.21-rc/alpine3.18/Dockerfile) +- [`1.21rc2-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.21-rc/alpine3.17/Dockerfile) - [`1.21rc2-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21rc2-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) - [`1.21rc2-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21rc2-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) - [`1.20.6-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) - [`1.20.6-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bullseye/Dockerfile) -- [`1.20.6-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.6-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/alpine3.18/Dockerfile) -- [`1.20.6-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/alpine3.17/Dockerfile) +- [`1.20.6-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.6-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.20/alpine3.18/Dockerfile) +- [`1.20.6-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.20/alpine3.17/Dockerfile) - [`1.20.6-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.6-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.6-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.6-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-1809/Dockerfile) - [`1.19.11-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bookworm/Dockerfile) - [`1.19.11-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bullseye/Dockerfile) -- [`1.19.11-alpine3.18`, `1.19-alpine3.18`, `1.19.11-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/alpine3.18/Dockerfile) -- [`1.19.11-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/alpine3.17/Dockerfile) +- [`1.19.11-alpine3.18`, `1.19-alpine3.18`, `1.19.11-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.19/alpine3.18/Dockerfile) +- [`1.19.11-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.19/alpine3.17/Dockerfile) - [`1.19.11-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.19.11-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) - [`1.19.11-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-ltsc2022/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index 2c0d539cbc22..093806363816 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.0-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk8/Dockerfile) -- [`8.2.0-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk8-focal/Dockerfile) -- [`8.2.0-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.0-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11/Dockerfile) -- [`8.2.0-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11-focal/Dockerfile) -- [`8.2.0-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk11-alpine/Dockerfile) -- [`8.2.0-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.0-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.0`, `8.2`, `8`, `latest`, `8.2.0-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.0-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.0-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17/Dockerfile) -- [`8.2.0-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.0-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.0-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17-focal/Dockerfile) -- [`8.2.0-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.0-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.0-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/4e1313b89ea99dbdb0ecbc12ac177f8ada9d28fe/jdk17-alpine/Dockerfile) +- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk8/Dockerfile) +- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk8-focal/Dockerfile) +- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11/Dockerfile) +- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11-focal/Dockerfile) +- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11-alpine/Dockerfile) +- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17/Dockerfile) +- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17-focal/Dockerfile) +- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17-alpine/Dockerfile) - [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8/Dockerfile) - [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8-focal/Dockerfile) - [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11/Dockerfile) diff --git a/python/README.md b/python/README.md index 3fbb264eb6a0..42e1492f104a 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0b3-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bookworm/Dockerfile) -- [`3.12.0b3-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b3-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0b3-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bullseye/Dockerfile) -- [`3.12.0b3-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0b3-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0b3-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0b3-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0b3-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0b4-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bookworm/Dockerfile) +- [`3.12.0b4-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0b4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bullseye/Dockerfile) +- [`3.12.0b4-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0b4-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0b4-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0b4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0b4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bookworm/Dockerfile) - [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) @@ -71,13 +71,13 @@ WARNING: ## Shared Tags -- `3.12.0b3`, `3.12-rc`: - - [`3.12.0b3-bookworm`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/bookworm/Dockerfile) - - [`3.12.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0b3-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/3889ee887a25814ba59c379f0260e86d0394c41e/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b4`, `3.12-rc`: + - [`3.12.0b4-bookworm`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bookworm/Dockerfile) + - [`3.12.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0b4-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.4`, `3.11`, `3`, `latest`: - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rust/README.md b/rust/README.md index b29ea244cd0f..e0bcfe572e52 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.70-buster`, `1.70.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/buster/Dockerfile) -- [`1-slim-buster`, `1.70-slim-buster`, `1.70.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.70-bullseye`, `1.70.0-bullseye`, `bullseye`, `1`, `1.70`, `1.70.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.70-slim-bullseye`, `1.70.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.70-slim`, `1.70.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.70-bookworm`, `1.70.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.70-slim-bookworm`, `1.70.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.70-alpine3.17`, `1.70.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.70-alpine3.18`, `1.70.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.70-alpine`, `1.70.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/dcb74d779e8a74263dc8b91d58d8ce7f3c0c805b/1.70.0/alpine3.18/Dockerfile) +- [`1-buster`, `1.71-buster`, `1.71.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/buster/Dockerfile) +- [`1-slim-buster`, `1.71-slim-buster`, `1.71.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.71-bullseye`, `1.71.0-bullseye`, `bullseye`, `1`, `1.71`, `1.71.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.71-slim-bullseye`, `1.71.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.71-slim`, `1.71.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.71-bookworm`, `1.71.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.71-slim-bookworm`, `1.71.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.71-alpine3.17`, `1.71.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.71-alpine3.18`, `1.71.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.71-alpine`, `1.71.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 2e740033cee4..50ccc91a0174 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-beta3-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta3`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta3-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta3-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-beta3-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta3-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-beta3-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta3-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-beta3-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta3-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-beta3-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-beta3-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-beta3-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta3-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-beta3-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-beta3-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e219b38e1ed821bdea4ec07be8d77876b1a98a98/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-beta4-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta4`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta4-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta4-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-beta4-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta4-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-beta4-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta4-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-beta4-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta4-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-beta4-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-beta4-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-beta4-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta4-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-beta4-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-beta4-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From b12ec81c2da431e7ae51e67b8cf36bb77da926e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Jul 2023 15:17:23 -0700 Subject: [PATCH 0448/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nats/README.md b/nats/README.md index eaf439a820dd..203197e566a0 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.19-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.19-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/alpine3.18/Dockerfile) -- [`2.9.19-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.19-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/scratch/Dockerfile) -- [`2.9.19-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/windowsservercore-1809/Dockerfile) -- [`2.9.19-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) +- [`2.9.20-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.20-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/alpine3.18/Dockerfile) +- [`2.9.20-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.20-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/scratch/Dockerfile) +- [`2.9.20-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/windowsservercore-1809/Dockerfile) +- [`2.9.20-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.19`, `2.9`, `2`, `latest`: - - [`2.9.19-scratch`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/scratch/Dockerfile) - - [`2.9.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) -- `2.9.19-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.19-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/windowsservercore-1809/Dockerfile) -- `2.9.19-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/80858aeed571549ac03ad6ba9cd3aa61725ed040/2.9.19/nanoserver-1809/Dockerfile) +- `2.9.20`, `2.9`, `2`, `latest`: + - [`2.9.20-scratch`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/scratch/Dockerfile) + - [`2.9.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) +- `2.9.20-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.20-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/windowsservercore-1809/Dockerfile) +- `2.9.20-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 24e0e5b8698980d9169e23a28e48ba2b3b0cfe37 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Jul 2023 17:08:58 -0700 Subject: [PATCH 0449/2686] Run update.sh --- mediawiki/README.md | 18 ++--- mongo/README.md | 165 ++++++++++++++++---------------------------- openjdk/README.md | 72 +++++++++---------- 3 files changed, 105 insertions(+), 150 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index e4850b0b0ac9..955bd5663dff 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.39.4`, `1.39`, `stable`, `lts`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/apache/Dockerfile) -- [`1.39.4-fpm`, `1.39-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/fpm/Dockerfile) -- [`1.39.4-fpm-alpine`, `1.39-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.39/fpm-alpine/Dockerfile) -- [`1.38.7`, `1.38`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/apache/Dockerfile) -- [`1.38.7-fpm`, `1.38-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/fpm/Dockerfile) -- [`1.38.7-fpm-alpine`, `1.38-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.38/fpm-alpine/Dockerfile) -- [`1.35.11`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/apache/Dockerfile) -- [`1.35.11-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/fpm/Dockerfile) -- [`1.35.11-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1baa2905a338f333ca3f48176bca13f34329bf6b/1.35/fpm-alpine/Dockerfile) +- [`1.40.0`, `1.40`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/apache/Dockerfile) +- [`1.40.0-fpm`, `1.40-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/fpm/Dockerfile) +- [`1.40.0-fpm-alpine`, `1.40-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/fpm-alpine/Dockerfile) +- [`1.39.4`, `1.39`, `lts`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/apache/Dockerfile) +- [`1.39.4-fpm`, `1.39-fpm`, `legacy-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/fpm/Dockerfile) +- [`1.39.4-fpm-alpine`, `1.39-fpm-alpine`, `legacy-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/fpm-alpine/Dockerfile) +- [`1.35.11`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/apache/Dockerfile) +- [`1.35.11-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/fpm/Dockerfile) +- [`1.35.11-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index b526eb1f8275..b6bdadd50127 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,114 +28,69 @@ WARNING: ## Simple Tags -- [`7.0.0-rc6-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/Dockerfile) -- [`7.0.0-rc6-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc6-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc6-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc6-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.8-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/Dockerfile) -- [`6.0.8-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.8-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.8-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.8-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.7-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/Dockerfile) -- [`6.0.7-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.7-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.7-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.7-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.19-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/Dockerfile) -- [`5.0.19-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.19-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.19-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.19-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.18-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) -- [`5.0.18-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.18-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.18-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.18-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.23-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/Dockerfile) -- [`4.4.23-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.23-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.23-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.23-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.22-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) -- [`4.4.22-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.22-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.22-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.22-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc7-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/Dockerfile) +- [`7.0.0-rc7-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc7-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc7-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc7-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.8-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) +- [`6.0.8-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.8-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.8-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.8-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.19-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) +- [`5.0.19-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.19-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.19-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.19-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.23-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) +- [`4.4.23-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.23-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.23-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.23-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `7.0.0-rc6`, `7.0-rc`: - - [`7.0.0-rc6-jammy`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/Dockerfile) - - [`7.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc6-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc6-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd5e4b0f5fa26844e5225c6aca5dc3ab377f52ee/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.8-rc0`, `6.0-rc`: - - [`6.0.8-rc0-jammy`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/Dockerfile) - - [`6.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.8-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.8-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.8-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.8-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6acacc6b8f9fb3c5dafd56246fd6e7be8bb2ee5d/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.7`, `6.0`, `6`, `latest`: - - [`6.0.7-jammy`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/Dockerfile) - - [`6.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.7-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.7-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68238280785567543aa3dca8c65dd55a444188a6/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.19-rc0`, `5.0-rc`: - - [`5.0.19-rc0-focal`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/Dockerfile) - - [`5.0.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.19-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.19-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.19-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.19-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.19-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.19-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/eb11f8dd6e429f4e67c147d0b2a51d3eb1cf1075/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.18`, `5.0`, `5`: - - [`5.0.18-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/5.0/Dockerfile) - - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.18-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/236a650c8e86f0bc6b6d5c330833764579ebee70/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.18-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8dd0c383d4463dd6c179530068fa323f8576511f/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.23-rc0`, `4.4-rc`: - - [`4.4.23-rc0-focal`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/Dockerfile) - - [`4.4.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.23-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.23-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.23-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.23-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/44ee5dc31576b26940357200fd3868a9d4a201b1/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.22`, `4.4`, `4`: - - [`4.4.22-focal`](https://github.com/docker-library/mongo/blob/a8c5c060457b0af529fbd39d83e486d9ef523a97/4.4/Dockerfile) - - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.22-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cbe19b1b2ab270f45f231601dfa8d332346cc3eb/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.22-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5a87276a09256a6d0293a05164f91b7562e11dde/4.4/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc7`, `7.0-rc`: + - [`7.0.0-rc7-jammy`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/Dockerfile) + - [`7.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc7-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc7-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.8`, `6.0`, `6`, `latest`: + - [`6.0.8-jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) + - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.8-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.8-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.19`, `5.0`, `5`: + - [`5.0.19-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) + - [`5.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.19-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.19-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.23`, `4.4`, `4`: + - [`4.4.23-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) + - [`4.4.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.23-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.23-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 2c46421e8024..4473feff3956 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-5-jdk-oraclelinux8`, `22-ea-5-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-5-jdk-oracle`, `22-ea-5-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-5-jdk-oraclelinux7`, `22-ea-5-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-5-jdk-bookworm`, `22-ea-5-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/bookworm/Dockerfile) -- [`22-ea-5-jdk-slim-bookworm`, `22-ea-5-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-5-jdk-slim`, `22-ea-5-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-5-jdk-bullseye`, `22-ea-5-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/bullseye/Dockerfile) -- [`22-ea-5-jdk-slim-bullseye`, `22-ea-5-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-5-jdk-windowsservercore-ltsc2022`, `22-ea-5-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-5-jdk-windowsservercore-1809`, `22-ea-5-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-5-jdk-nanoserver-1809`, `22-ea-5-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-30-jdk-oraclelinux8`, `21-ea-30-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-30-jdk-oracle`, `21-ea-30-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-30-jdk-oraclelinux7`, `21-ea-30-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-30-jdk-bookworm`, `21-ea-30-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/bookworm/Dockerfile) -- [`21-ea-30-jdk-slim-bookworm`, `21-ea-30-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-30-jdk-slim`, `21-ea-30-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-30-jdk-bullseye`, `21-ea-30-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/bullseye/Dockerfile) -- [`21-ea-30-jdk-slim-bullseye`, `21-ea-30-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-30-jdk-windowsservercore-ltsc2022`, `21-ea-30-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-30-jdk-windowsservercore-1809`, `21-ea-30-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-30-jdk-nanoserver-1809`, `21-ea-30-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-6-jdk-oraclelinux8`, `22-ea-6-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-6-jdk-oracle`, `22-ea-6-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-6-jdk-oraclelinux7`, `22-ea-6-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-6-jdk-bookworm`, `22-ea-6-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/bookworm/Dockerfile) +- [`22-ea-6-jdk-slim-bookworm`, `22-ea-6-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-6-jdk-slim`, `22-ea-6-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-6-jdk-bullseye`, `22-ea-6-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/bullseye/Dockerfile) +- [`22-ea-6-jdk-slim-bullseye`, `22-ea-6-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-6-jdk-windowsservercore-ltsc2022`, `22-ea-6-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-6-jdk-windowsservercore-1809`, `22-ea-6-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-6-jdk-nanoserver-1809`, `22-ea-6-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-31-jdk-oraclelinux8`, `21-ea-31-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-31-jdk-oracle`, `21-ea-31-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-31-jdk-oraclelinux7`, `21-ea-31-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-31-jdk-bookworm`, `21-ea-31-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/bookworm/Dockerfile) +- [`21-ea-31-jdk-slim-bookworm`, `21-ea-31-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-31-jdk-slim`, `21-ea-31-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-31-jdk-bullseye`, `21-ea-31-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/bullseye/Dockerfile) +- [`21-ea-31-jdk-slim-bullseye`, `21-ea-31-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-31-jdk-windowsservercore-ltsc2022`, `21-ea-31-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-31-jdk-windowsservercore-1809`, `21-ea-31-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-31-jdk-nanoserver-1809`, `21-ea-31-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-5-jdk`, `22-ea-5`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-5-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-5-jdk-windowsservercore`, `22-ea-5-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-5-jdk-nanoserver`, `22-ea-5-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c1156cf337107618669bea90a860a99d20ed673c/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-30-jdk`, `21-ea-30`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-30-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-30-jdk-windowsservercore`, `21-ea-30-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-30-jdk-nanoserver`, `21-ea-30-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d69c6e1928ba2a082101f7cf3b6e2dff86ce630b/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-6-jdk`, `22-ea-6`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-6-jdk-windowsservercore`, `22-ea-6-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-6-jdk-nanoserver`, `22-ea-6-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-31-jdk`, `21-ea-31`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-31-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-31-jdk-windowsservercore`, `21-ea-31-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-31-jdk-nanoserver`, `21-ea-31-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From dc66348dda7026dc7ad42091db3f557de61ab8c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jul 2023 12:18:45 -0700 Subject: [PATCH 0450/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- crate/README.md | 2 +- photon/README.md | 6 +++--- sapmachine/README.md | 11 ++++++++--- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 008b7397ae7a..49f9a2857cad 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230709.0.163418`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e7997e3798b056648f0424e97dd3c78698d319f0/Dockerfile.base) -- [`base-devel`, `base-devel-20230709.0.163418`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e7997e3798b056648f0424e97dd3c78698d319f0/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230716.0.165339`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/193965519a6b830b07627eaa784c4ab636fb4a41/Dockerfile.base) +- [`base-devel`, `base-devel-20230716.0.165339`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/193965519a6b830b07627eaa784c4ab636fb4a41/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 87ebe741d67f..4c44bd7a62be 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/11a8acec1e58aab06d40c35dad429daa6518d532/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/927a55624e601b2e77516d0f01f93ca7ae2cfb2f/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 6be7b2687943..547300369226 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.3`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/706dbf83bbef570ec875e54b7682e16e0933f28a/Dockerfile) +- [`5.3.4`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/0b697f938f9962503f1ec1af17f81661b042610c/Dockerfile) - [`5.2.8`, `5.2`](https://github.com/crate/docker-crate/blob/9dd974bffff06d56e844a099c709583864c970e6/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/photon/README.md b/photon/README.md index e54b21037665..972967dd6325 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230701`, `latest`](https://github.com/vmware/photon-docker-image/blob/5bbe36100e8e8266774bc2039df701232d4332da/docker/Dockerfile) -- [`4.0`, `4.0-20230708`](https://github.com/vmware/photon-docker-image/blob/cb9a61248ac3c77716a407f1029db07ad8b563d2/docker/Dockerfile) -- [`3.0`, `3.0-20230701`](https://github.com/vmware/photon-docker-image/blob/d9c6e7e851466ed17ed62f15e2b15ee922b1fe73/docker/Dockerfile) +- [`5.0`, `5.0-20230715`, `latest`](https://github.com/vmware/photon-docker-image/blob/410f73dd31158850f5932a90c81de30e289d734c/docker/Dockerfile) +- [`4.0`, `4.0-20230715`](https://github.com/vmware/photon-docker-image/blob/376fe4cf7af616022da9325e94988a0c161feeb0/docker/Dockerfile) +- [`3.0`, `3.0-20230715`](https://github.com/vmware/photon-docker-image/blob/233562bc050256547a83f6d617420c90dd87d77c/docker/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index ae9448a47af9..63db02d8a4e2 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,9 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11`, `11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/c2a79726eae76118b0b204bb201920ce200d0703/dockerfiles/official/11/Dockerfile) -- [`17`, `17.0.7`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/b5e632a4b8a28d1618215983fa95859979c63280/dockerfiles/official/17/Dockerfile) -- [`20`, `20.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/2f4f203530b69b9e7b120c1f1e0d8e8baafa40f2/dockerfiles/official/20/Dockerfile) +- [`jdk-headless-ubuntu-11`, `jdk-headless-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-11`, `jdk-ubuntu-11.0.19`, `11`, `11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`jdk-headless-ubuntu-17`, `jdk-headless-ubuntu-17.0.7`, `jdk-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-17`, `jdk-ubuntu-17.0.7`, `jdk-ubuntu-lts`, `17`, `17.0.7`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`jre-headless-ubuntu-20`, `jre-headless-ubuntu-20.0.1`, `jre-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-20`, `jre-ubuntu-20.0.1`, `jre-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jre/Dockerfile) +- [`jdk-headless-ubuntu-20`, `jdk-headless-ubuntu-20.0.1`, `jdk-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-20`, `jdk-ubuntu-20.0.1`, `jdk-ubuntu`, `20`, `20.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From bb3374b0b5f2065c7351019652c5cdcc1d9bee93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jul 2023 14:19:38 -0700 Subject: [PATCH 0451/2686] Run update.sh --- caddy/README.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 132da5e4e383..e25e577c799e 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -29,17 +29,17 @@ WARNING: ## Simple Tags - [`2.6.4-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) -- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/builder/Dockerfile) +- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/builder/Dockerfile) - [`2.6.4-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) - [`2.6.4-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) -- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/1809/Dockerfile) -- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/ltsc2022/Dockerfile) -- [`2.7.0-beta.1-alpine`, `2.7-alpine`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/alpine/Dockerfile) -- [`2.7.0-beta.1-builder-alpine`, `2.7-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/builder/Dockerfile) -- [`2.7.0-beta.1-windowsservercore-1809`, `2.7-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) -- [`2.7.0-beta.1-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.0-beta.1-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/1809/Dockerfile) -- [`2.7.0-beta.1-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/1809/Dockerfile) +- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/ltsc2022/Dockerfile) +- [`2.7.0-beta.2-alpine`, `2.7-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/alpine/Dockerfile) +- [`2.7.0-beta.2-builder-alpine`, `2.7-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/builder/Dockerfile) +- [`2.7.0-beta.2-windowsservercore-1809`, `2.7-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) +- [`2.7.0-beta.2-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.0-beta.2-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/1809/Dockerfile) +- [`2.7.0-beta.2-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags @@ -48,23 +48,23 @@ WARNING: - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) - `2.6.4-builder`, `2.6-builder`, `2-builder`, `builder`: - - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/builder/Dockerfile) - - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/1809/Dockerfile) - - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.6/windows-builder/ltsc2022/Dockerfile) + - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/builder/Dockerfile) + - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/1809/Dockerfile) + - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/ltsc2022/Dockerfile) - `2.6.4-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) -- `2.7.0-beta.1`, `2.7`: - - [`2.7.0-beta.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/alpine/Dockerfile) - - [`2.7.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) - - [`2.7.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) -- `2.7.0-beta.1-builder`, `2.7-builder`: - - [`2.7.0-beta.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/builder/Dockerfile) - - [`2.7.0-beta.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/1809/Dockerfile) - - [`2.7.0-beta.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8a3bab4e266cc4e32c57d757890bbc1b6ff54e1d/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.0-beta.1-windowsservercore`, `2.7-windowsservercore`: - - [`2.7.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/1809/Dockerfile) - - [`2.7.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/9821d43cf53bf53071b2bc4cfca1dc3be87bed56/2.7/windows/ltsc2022/Dockerfile) +- `2.7.0-beta.2`, `2.7`: + - [`2.7.0-beta.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/alpine/Dockerfile) + - [`2.7.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) + - [`2.7.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) +- `2.7.0-beta.2-builder`, `2.7-builder`: + - [`2.7.0-beta.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/builder/Dockerfile) + - [`2.7.0-beta.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/1809/Dockerfile) + - [`2.7.0-beta.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.0-beta.2-windowsservercore`, `2.7-windowsservercore`: + - [`2.7.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) + - [`2.7.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) From 3af24f91c00f23d936701113649b64096a12fa28 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jul 2023 17:17:22 -0700 Subject: [PATCH 0452/2686] Run update.sh --- ghost/README.md | 4 ++-- golang/README.md | 36 ++++++++++++++++++------------------ sapmachine/README.md | 4 ++++ ubuntu/README.md | 2 +- 4 files changed, 25 insertions(+), 21 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 1ae696a15f76..eb2633476fa9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.54.0`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9577b1d3b4560adc3cc8c0dd21a14067fd77e120/5/debian/Dockerfile) -- [`5.54.0-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9577b1d3b4560adc3cc8c0dd21a14067fd77e120/5/alpine/Dockerfile) +- [`5.54.3`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/22e28b99cd3d2396b8d773a32852f38f70fa4eb3/5/debian/Dockerfile) +- [`5.54.3-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/22e28b99cd3d2396b8d773a32852f38f70fa4eb3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 4a3912e2a6fe..c9c6fbee5303 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`1.21rc2-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bookworm/Dockerfile) -- [`1.21rc2-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bullseye/Dockerfile) -- [`1.21rc2-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc2-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.21-rc/alpine3.18/Dockerfile) -- [`1.21rc2-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.21-rc/alpine3.17/Dockerfile) -- [`1.21rc2-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21rc2-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.21rc2-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21rc2-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) +- [`1.21rc3-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bookworm/Dockerfile) +- [`1.21rc3-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bullseye/Dockerfile) +- [`1.21rc3-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc3-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/alpine3.18/Dockerfile) +- [`1.21rc3-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/alpine3.17/Dockerfile) +- [`1.21rc3-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21rc3-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.21rc3-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21rc3-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) - [`1.20.6-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) - [`1.20.6-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bullseye/Dockerfile) - [`1.20.6-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.6-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.20/alpine3.18/Dockerfile) @@ -55,16 +55,16 @@ WARNING: ## Shared Tags -- `1.21rc2`, `1.21-rc`: - - [`1.21rc2-bookworm`](https://github.com/docker-library/golang/blob/72bc141d781ae54ef20f71aa1105449cb6c2edc4/1.21-rc/bookworm/Dockerfile) - - [`1.21rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc2-windowsservercore`, `1.21-rc-windowsservercore`: - - [`1.21rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc2-nanoserver`, `1.21-rc-nanoserver`: - - [`1.21rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ab26fd7f52d0cd35223b82e79774a4a3aa24a1b/1.21-rc/windows/nanoserver-1809/Dockerfile) +- `1.21rc3`, `1.21-rc`: + - [`1.21rc3-bookworm`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bookworm/Dockerfile) + - [`1.21rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc3-windowsservercore`, `1.21-rc-windowsservercore`: + - [`1.21rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc3-nanoserver`, `1.21-rc-nanoserver`: + - [`1.21rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) - `1.20.6`, `1.20`, `1`, `latest`: - [`1.20.6-bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) - [`1.20.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 63db02d8a4e2..6431e3358463 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,8 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`jre-headless-ubuntu-11`, `jre-headless-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-11`, `jre-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jre/Dockerfile) - [`jdk-headless-ubuntu-11`, `jdk-headless-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) - [`jdk-ubuntu-11`, `jdk-ubuntu-11.0.19`, `11`, `11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`jre-headless-ubuntu-17`, `jre-headless-ubuntu-17.0.7`, `jre-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-17`, `jre-ubuntu-17.0.7`, `jre-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jre/Dockerfile) - [`jdk-headless-ubuntu-17`, `jdk-headless-ubuntu-17.0.7`, `jdk-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) - [`jdk-ubuntu-17`, `jdk-ubuntu-17.0.7`, `jdk-ubuntu-lts`, `17`, `17.0.7`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk/Dockerfile) - [`jre-headless-ubuntu-20`, `jre-headless-ubuntu-20.0.1`, `jre-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jre-headless/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index dec80e34b428..f6191d2ab6f4 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,7 +28,7 @@ WARNING: - [`22.04`, `jammy-20230624`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230624-2cc72fa2&id=2cc72fa2e3553cc25ee5e0157929e35f2510dbd8) - [`22.10`, `kinetic-20230624`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230624-0332f3c2&id=0332f3c29e2657ed4711edc6fccaac061074f21c) - [`23.04`, `lunar-20230615`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230615-3537c573&id=3537c5732f5b3fc814f5762acf34b890a8d79a13) -- [`23.10`, `mantic-20230624`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230624-1a5a7d57&id=1a5a7d5732d62e86564b9668eb421d78d8ac8091) +- [`23.10`, `mantic-20230712`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230712-72dd5f1a&id=72dd5f1ab372097d0dd0e1720e12854f1588e04e) # Quick reference (cont.) From f8daf88594c858c9ce57faa58db3033cfda0a418 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jul 2023 12:19:07 -0700 Subject: [PATCH 0453/2686] Run update.sh --- almalinux/README.md | 8 ++++---- bash/README.md | 2 +- cassandra/README.md | 2 +- crate/README.md | 4 ++-- rabbitmq/README.md | 32 ++++++++++++++------------------ 5 files changed, 22 insertions(+), 26 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index fb947d3b7f07..e351d1b127c2 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.8`, `8.8-20230524`](https://github.com/AlmaLinux/docker-images/blob/96c180e154599cb2831d58f8ef290967ee12e3b9/Dockerfile-x86_64-default) -- [`8-minimal`, `8.8-minimal`, `8.8-minimal-20230524`](https://github.com/AlmaLinux/docker-images/blob/96c180e154599cb2831d58f8ef290967ee12e3b9/Dockerfile-x86_64-minimal) -- [`latest`, `9`, `9.2`, `9.2-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-default) -- [`minimal`, `9-minimal`, `9.2-minimal`, `9.2-minimal-20230512`](https://github.com/AlmaLinux/docker-images/blob/600467393dc75d3768196215ea1c122b552b9728/Dockerfile-x86_64-minimal) +- [`8`, `8.8`, `8.8-20230718`](https://github.com/AlmaLinux/docker-images/blob/a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad/Dockerfile-x86_64-default) +- [`8-minimal`, `8.8-minimal`, `8.8-minimal-20230718`](https://github.com/AlmaLinux/docker-images/blob/a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad/Dockerfile-x86_64-minimal) +- [`latest`, `9`, `9.2`, `9.2-20230718`](https://github.com/AlmaLinux/docker-images/blob/764a53a590bc415278c977ad43f42f4a836b8c3f/Dockerfile-x86_64-default) +- [`minimal`, `9-minimal`, `9.2-minimal`, `9.2-minimal-20230718`](https://github.com/AlmaLinux/docker-images/blob/764a53a590bc415278c977ad43f42f4a836b8c3f/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 3fd558af4c30..4f0ba0b407c8 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230710`, `devel`, `devel-20230710-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/535d58e466e65f6e3b93d978daa99dd2183da978/devel/Dockerfile) +- [`devel-20230717`, `devel`, `devel-20230717-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/9b81b86696017d5de290ba669b2b3c311db9e085/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 7850ce24b3be..1db54a91d3de 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/676c7fb1737244ff736edc56064af335cf9d466f/4.1/Dockerfile) -- [`4.0.10`, `4.0`](https://github.com/docker-library/cassandra/blob/4802b868f5684890ed82a6ec1c8b32141c0dc73c/4.0/Dockerfile) +- [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/955064939ae306088491856ff169b58319d619f9/4.0/Dockerfile) - [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) - [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) diff --git a/crate/README.md b/crate/README.md index 547300369226..c6a71d7a6050 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.4`, `5.3`, `latest`](https://github.com/crate/docker-crate/blob/0b697f938f9962503f1ec1af17f81661b042610c/Dockerfile) -- [`5.2.8`, `5.2`](https://github.com/crate/docker-crate/blob/9dd974bffff06d56e844a099c709583864c970e6/Dockerfile) +- [`5.4.0`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/17ddede061ecd2286de161a963191c53fa61a0c0/Dockerfile) +- [`5.3.4`, `5.3`](https://github.com/crate/docker-crate/blob/0b697f938f9962503f1ec1af17f81661b042610c/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 85ba2133adee..658dce798cc4 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.2-beta.1`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/ubuntu/Dockerfile) -- [`3.12.2-beta.1-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/ubuntu/management/Dockerfile) -- [`3.12.2-beta.1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/alpine/Dockerfile) -- [`3.12.2-beta.1-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/ab0188c3c2114781aa4a4c826457b9c2bdf692ef/3.12-rc/alpine/management/Dockerfile) -- [`3.12.1`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/ubuntu/Dockerfile) -- [`3.12.1-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/faaae425d4266dfef0c9ab24e3c3b334855a40e5/3.12/alpine/Dockerfile) -- [`3.12.1-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.19`, `3.11`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.11/ubuntu/Dockerfile) -- [`3.11.19-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.19-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.11/alpine/Dockerfile) -- [`3.11.19-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.24`, `3.10`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.10/ubuntu/Dockerfile) -- [`3.10.24-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.24-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/3992197c002b7dd9e19f7682eacd9cc749ac03fe/3.10/alpine/Dockerfile) -- [`3.10.24-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0e653fbef85b83c2453e946241c5aea898b9d1b9/3.9/ubuntu/Dockerfile) +- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/ubuntu/Dockerfile) +- [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/alpine/Dockerfile) +- [`3.12.2-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a6ecfb64ec6abe19f03c28ad3bc2784edb450c63/3.11/ubuntu/Dockerfile) +- [`3.11.20-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a6ecfb64ec6abe19f03c28ad3bc2784edb450c63/3.11/alpine/Dockerfile) +- [`3.11.20-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e1f689e636aee8cdd26c9a56a158c0f37ef50514/3.10/ubuntu/Dockerfile) +- [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e1f689e636aee8cdd26c9a56a158c0f37ef50514/3.10/alpine/Dockerfile) +- [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/cf4610a0eb5bc0c5ee89d31badb0c6887f478c9d/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0e653fbef85b83c2453e946241c5aea898b9d1b9/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/cf4610a0eb5bc0c5ee89d31badb0c6887f478c9d/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 292171788f89705dbab90eed2d1a083dfb2e0f23 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jul 2023 16:09:01 -0700 Subject: [PATCH 0454/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 5a2c46987cdf..078471358187 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/3582261ac6d2447b902095990842cd22e7340df6/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/glibc/Dockerfile) # Quick reference (cont.) From 04f3db489827d16ff280fb04b1e5e91df1d8ea41 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jul 2023 17:09:02 -0700 Subject: [PATCH 0455/2686] Run update.sh --- amazoncorretto/README.md | 71 +++++++++++++++++++++------------------- 1 file changed, 38 insertions(+), 33 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 399c1e00697c..d697649f25d8 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,39 +24,44 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u372`, `8u372-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u372-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u372-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u372-al2023-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2023/Dockerfile) -- [`8-al2-native-RC-jre`, `8u372-al2-native-RC-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/al2/Dockerfile) -- [`8-al2-native-RC-jdk`, `8u372-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u372-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u372-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u372-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u372-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u372-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`, `8-alpine`, `8u372-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u372-alpine3.17-jre`, `8-alpine-jre`, `8u372-alpine-jre`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/8/jre/alpine/3.17/Dockerfile) -- [`11`, `11.0.19`, `11.0.19-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.19-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.19-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.19-al2023-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.19-al2023-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headful/al2023/Dockerfile) -- [`11-al2-native-RC-headless`, `11.0.19-al2-native-RC-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/headless/al2/Dockerfile) -- [`11-al2-native-RC-jdk`, `11.0.19-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.19-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.19-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.19-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`, `11-alpine`, `11.0.19-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/11/jdk/alpine/3.17/Dockerfile) -- [`17`, `17.0.7`, `17.0.7-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.7-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.7-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headful/al2023/Dockerfile) -- [`17-al2-native-RC-headless`, `17.0.7-al2-native-RC-headless`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headless/al2/Dockerfile) -- [`17-al2-native-RC-headful`, `17.0.7-al2-native-RC-headful`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/headful/al2/Dockerfile) -- [`17-al2-native-RC-jdk`, `17.0.7-al2-native-RC-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.7-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.7-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.7-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`, `17-alpine`, `17.0.7-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/17/jdk/alpine/3.17/Dockerfile) -- [`20`, `20.0.1`, `20.0.1-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.1-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/al2-generic/Dockerfile) -- [`20-alpine3.15`, `20.0.1-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.1-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.1-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`, `20-alpine`, `20.0.1-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/b3911c583ac27a9b5801eba2373a9dd8fe10a3a0/20/jdk/alpine/3.17/Dockerfile) +- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.18/Dockerfile) +- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/al2-generic/Dockerfile) +- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.17/Dockerfile) +- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) From 6db92050e7d74cd73cb9fae4a9d787f7489b12d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Virtus?= Date: Wed, 19 Jul 2023 15:29:13 +0200 Subject: [PATCH 0456/2686] Ubuntu 22.10 (Kinetic Kudu) EOL Ubuntu 22.10 (Kinetic Kudu) reaches End of Life on July 20 2023. Remove it from the README. --- ubuntu/content.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index b4f803672e6b..fe73921c0de3 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -34,6 +34,5 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) -- [Kinetic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/kinetic/ubuntu-oci) - [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) - [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) From 828f89c4d20f24d5fba96594b7418367cd424127 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Jul 2023 10:28:23 -0700 Subject: [PATCH 0457/2686] Run update.sh --- spark/README.md | 115 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 spark/README.md diff --git a/spark/README.md b/spark/README.md new file mode 100644 index 000000000000..591393c6b626 --- /dev/null +++ b/spark/README.md @@ -0,0 +1,115 @@ + + +# Quick reference + +- **Maintained by**: + [Apache Spark](https://spark.apache.org/committers.html) + +- **Where to get help**: + [Apache Spark™ community](https://spark.apache.org/community.html) + +# Supported tags and respective `Dockerfile` links + +- [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `python3`, `3.4.1`, `latest`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`, `r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-ubuntu`, `3.4.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) + +# Quick reference (cont.) + +- **Where to file issues**: + https://issues.apache.org/jira/browse/SPARK + +- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) + [`amd64`](https://hub.docker.com/r/amd64/spark/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spark/) + +- **Published image artifact details**: + [repo-info repo's `repos/spark/` directory](https://github.com/docker-library/repo-info/blob/master/repos/spark) ([history](https://github.com/docker-library/repo-info/commits/master/repos/spark)) + (image metadata, transfer size, etc) + +- **Image updates**: + [official-images repo's `library/spark` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fspark) + [official-images repo's `library/spark` file](https://github.com/docker-library/official-images/blob/master/library/spark) ([history](https://github.com/docker-library/official-images/commits/master/library/spark)) + +- **Source of this description**: + [docs repo's `spark/` directory](https://github.com/docker-library/docs/tree/master/spark) ([history](https://github.com/docker-library/docs/commits/master/spark)) + +# What is Apache Spark™? + +Apache Spark™ is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters. It provides high-level APIs in Scala, Java, Python, and R, and an optimized engine that supports general computation graphs for data analysis. It also supports a rich set of higher-level tools including Spark SQL for SQL and DataFrames, pandas API on Spark for pandas workloads, MLlib for machine learning, GraphX for graph processing, and Structured Streaming for stream processing. + +![logo](https://raw.githubusercontent.com/docker-library/docs/a16cd1ae80c04193c029a686d3006c95edb81594/spark/logo.png) + +## Online Documentation + +You can find the latest Spark documentation, including a programming guide, on the [project web page](https://spark.apache.org/documentation.html). This README file only contains basic setup instructions. + +## Interactive Scala Shell + +The easiest way to start using Spark is through the Scala shell: + +```console +docker run -it spark /opt/spark/bin/spark-shell +``` + +Try the following command, which should return 1,000,000,000: + +```scala +scala> spark.range(1000 * 1000 * 1000).count() +``` + +## Interactive Python Shell + +The easiest way to start using PySpark is through the Python shell: + +```console +docker run -it spark:python3 /opt/spark/bin/pyspark +``` + +And run the following command, which should also return 1,000,000,000: + +```python +>>> spark.range(1000 * 1000 * 1000).count() +``` + +## Interactive R Shell + +The easiest way to start using R on Spark is through the R shell: + +```console +docker run -it spark:r /opt/spark/bin/sparkR +``` + +## Running Spark on Kubernetes + +https://spark.apache.org/docs/latest/running-on-kubernetes.html + +## Configuration and environment variables + +See more in https://github.com/apache/spark-docker/blob/master/OVERVIEW.md#environment-variable + +# License + +Apache Spark, Spark, Apache, the Apache feather logo, and the Apache Spark project logo are trademarks of The Apache Software Foundation. + +Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). + +Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `spark/` directory](https://github.com/docker-library/repo-info/tree/master/repos/spark). + +As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. From dbacb36e7c0398539258303da039803bab90d358 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Jul 2023 13:18:55 -0700 Subject: [PATCH 0458/2686] Run update.sh --- dart/README.md | 4 ++-- docker/README.md | 20 ++++++++++---------- elixir/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- neo4j/README.md | 4 ++-- node/README.md | 16 ++++++++-------- percona/README.md | 11 +++++------ ubuntu/README.md | 1 - wordpress/README.md | 18 +++++++++--------- 9 files changed, 47 insertions(+), 49 deletions(-) diff --git a/dart/README.md b/dart/README.md index d3ab292cbf75..1d8058227640 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.6-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.6`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/78b62fa29c8f76a981f0ed8d90b0d7ac0c49b088/stable/bullseye/Dockerfile) -- [`3.1.0-262.1.beta-sdk`, `beta-sdk`, `3.1.0-262.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/78b62fa29c8f76a981f0ed8d90b0d7ac0c49b088/beta/bullseye/Dockerfile) +- [`3.0.6-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.6`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/570754446afe85c320314d270b059a074e17d14a/stable/bullseye/Dockerfile) +- [`3.1.0-262.2.beta-sdk`, `beta-sdk`, `3.1.0-262.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/570754446afe85c320314d270b059a074e17d14a/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 4a89a2d365af..ac99dc60999a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/cli/Dockerfile) +- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/cli/Dockerfile) - [`24.0.4-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.4-dind-alpine3.18`, `24.0.4`, `24.0`, `24`, `latest`, `24.0.4-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind/Dockerfile) - [`24.0.4-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind-rootless/Dockerfile) - [`24.0.4-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/cli/Dockerfile) +- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.4-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/241f88989640a4b60a49f76c72186294d8717c7e/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7ea0f79f0aadfd3a48c321dfa9f0d0d2529ec163/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index c23b49ba7ec6..ad92ea4f7faa 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.1`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/Dockerfile) -- [`1.15.1-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/slim/Dockerfile) -- [`1.15.1-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/alpine/Dockerfile) -- [`1.15.1-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24/Dockerfile) -- [`1.15.1-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24-alpine/Dockerfile) -- [`1.15.1-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-24-slim/Dockerfile) -- [`1.15.1-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25/Dockerfile) -- [`1.15.1-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25-alpine/Dockerfile) -- [`1.15.1-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/16506b32883161053425e7b2b77f7ca556fa9792/1.15/otp-25-slim/Dockerfile) +- [`1.15.4`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/Dockerfile) +- [`1.15.4-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/slim/Dockerfile) +- [`1.15.4-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/alpine/Dockerfile) +- [`1.15.4-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24/Dockerfile) +- [`1.15.4-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24-alpine/Dockerfile) +- [`1.15.4-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24-slim/Dockerfile) +- [`1.15.4-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25/Dockerfile) +- [`1.15.4-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25-alpine/Dockerfile) +- [`1.15.4-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index eb2633476fa9..454c997746ab 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.54.3`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/22e28b99cd3d2396b8d773a32852f38f70fa4eb3/5/debian/Dockerfile) -- [`5.54.3-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/22e28b99cd3d2396b8d773a32852f38f70fa4eb3/5/alpine/Dockerfile) +- [`5.54.4`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2bf364da83498d465c2a4a2dc1cfba88d5451207/5/debian/Dockerfile) +- [`5.54.4-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2bf364da83498d465c2a4a2dc1cfba88d5451207/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 4f455939909b..5dfdf07fdc17 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.0`, `5.9.0-community`, `5.9`, `5.9-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/community/Dockerfile) -- [`5.9.0-enterprise`, `5.9-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9d7a9047bb1b1b736c01e50bf5d38c0a4d3d1697/5.9.0/enterprise/Dockerfile) +- [`5.10.0`, `5.10.0-community`, `5.10`, `5.10-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/53020c7673630cd8a216a4731096f08ebb8a4e30/5.10.0/debian/community/Dockerfile) +- [`5.10.0-enterprise`, `5.10-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/53020c7673630cd8a216a4731096f08ebb8a4e30/5.10.0/debian/enterprise/Dockerfile) - [`4.4.23`, `4.4.23-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/community/Dockerfile) - [`4.4.23-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/enterprise/Dockerfile) diff --git a/node/README.md b/node/README.md index 40280edc5d84..e7545e5e172b 100644 --- a/node/README.md +++ b/node/README.md @@ -32,14 +32,14 @@ WARNING: - [`20-bullseye-slim`, `20.4-bullseye-slim`, `20.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.4-buster`, `20.4.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster/Dockerfile) - [`20-buster-slim`, `20.4-buster-slim`, `20.4.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.16-alpine3.17`, `18.16.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.16-alpine`, `18.16-alpine3.18`, `18.16.1-alpine`, `18.16.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.16`, `18.16-bookworm`, `18.16.1`, `18.16.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.16-bookworm-slim`, `18.16-slim`, `18.16.1-bookworm-slim`, `18.16.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.16-bullseye`, `18.16.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.16-bullseye-slim`, `18.16.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.16-buster`, `18.16.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/18/buster/Dockerfile) -- [`18-buster-slim`, `18.16-buster-slim`, `18.16.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/18/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.0-alpine`, `18.17.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.0`, `18.17.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.17-bookworm-slim`, `18.17-slim`, `18.17.0-bookworm-slim`, `18.17.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.17-bullseye`, `18.17.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.17-bullseye-slim`, `18.17.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.17-buster`, `18.17.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/buster/Dockerfile) +- [`18-buster-slim`, `18.17-buster-slim`, `18.17.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/buster-slim/Dockerfile) - [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.1-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.17/Dockerfile) - [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.1-alpine`, `16.20.1-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.18/Dockerfile) - [`16-bookworm`, `16.20-bookworm`, `16.20.1-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm/Dockerfile) diff --git a/percona/README.md b/percona/README.md index 1da5b0a74d48..23c5e451b000 100644 --- a/percona/README.md +++ b/percona/README.md @@ -25,13 +25,12 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.0.33-25-centos`, `8.0-centos`, `8-centos`, `8.0.33-25`, `8.0`, `8`, `ps-8.0.33-25`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/3f666ccdf6a9eed0e0505723fbe8b4954a105c99/percona-server-8.0/Dockerfile) -- [`5.7.35-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.35`, `5.7`, `5`, `ps-5.7.35`, `ps-5.7`, `ps-5`, `latest`](https://github.com/percona/percona-docker/blob/f1697b98ebb86a8d684c4192fa382b00ae1860ff/percona-server-5.7/Dockerfile-dockerhub) +- [`5.7.39-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.39`, `5.7`, `5`, `ps-5.7.39`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) -- [`psmdb-5.0.10`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/0003693083fc3b6a904fd83a63096705aff46cca/percona-server-mongodb-5.0/Dockerfile) -- [`psmdb-4.4.15`, `psmdb-4.4`](https://github.com/percona/percona-docker/blob/93dc9be5c30c1da42e8f2dad03da5e17e6bc89a9/percona-server-mongodb-4.4/Dockerfile) -- [`psmdb-4.2.21`, `psmdb-4.2`](https://github.com/percona/percona-docker/blob/ee35507eeade832e18041d39ac67637202733e49/percona-server-mongodb-4.2/Dockerfile) -- [`psmdb-4.0.27`, `psmdb-4.0`](https://github.com/percona/percona-docker/blob/ef97f5cd2c747905dc6d724c245cce9f3e2ce0a1/percona-server-mongodb-4.0/Dockerfile) -- [`psmdb-3.6.23`, `psmdb-3.6`](https://github.com/percona/percona-docker/blob/b32c7e632fe0d8b058ce32c0430a1783cfd557a0/percona-server-mongodb-3.6/Dockerfile) +- [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) +- [`psmdb-5.0.18`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-5.0/Dockerfile) +- [`psmdb-4.4.22`, `psmdb-4.4`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.4/Dockerfile) +- [`psmdb-4.2.24`, `psmdb-4.2`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.2/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index f6191d2ab6f4..aba5b6276138 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -85,7 +85,6 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) -- [Kinetic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/kinetic/ubuntu-oci) - [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) - [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) diff --git a/wordpress/README.md b/wordpress/README.md index 50ccc91a0174..e3b561f63abb 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-beta4-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-beta4`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-beta4-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-beta4-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-beta4-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-beta4-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-beta4-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-beta4-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-beta4-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-beta4-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-beta4-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-beta4-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-beta4-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-beta4-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-beta4-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-beta4-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/30c250e9172cd45745d3db26f0718fbe4d9f4659/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-RC1-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC1`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC1-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC1-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-RC1-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC1-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-RC1-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC1-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-RC1-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC1-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-RC1-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-RC1-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-RC1-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC1-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-RC1-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-RC1-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From aa1f5407d33755c7674674af8489b2a69ded2080 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Jul 2023 14:19:28 -0700 Subject: [PATCH 0459/2686] Run update.sh --- rabbitmq/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 658dce798cc4..0265894aabda 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.13.0-beta.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-beta.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/ubuntu/Dockerfile) - [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/alpine/Dockerfile) @@ -32,9 +36,9 @@ WARNING: - [`3.11.20-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a6ecfb64ec6abe19f03c28ad3bc2784edb450c63/3.11/alpine/Dockerfile) - [`3.11.20-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e1f689e636aee8cdd26c9a56a158c0f37ef50514/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/055e60ff8d72e2a920926388cfc79444e7d358d3/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e1f689e636aee8cdd26c9a56a158c0f37ef50514/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/055e60ff8d72e2a920926388cfc79444e7d358d3/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/cf4610a0eb5bc0c5ee89d31badb0c6887f478c9d/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) From 8e9298bea0c8118585a9bb0d59c6adb9f09e1db8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Jul 2023 15:09:03 -0700 Subject: [PATCH 0460/2686] Run update.sh --- sapmachine/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sapmachine/README.md b/sapmachine/README.md index 6431e3358463..6f76383cf46f 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`jre-headless-ubuntu-11`, `jre-headless-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-11`, `jre-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-11`, `jdk-headless-ubuntu-11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-11`, `jdk-ubuntu-11.0.19`, `11`, `11.0.19`](https://github.com/SAP/SapMachine-infrastructure/blob/284381b712285fc3593a81284648ab1604f91c38/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`jre-headless-ubuntu-17`, `jre-headless-ubuntu-17.0.7`, `jre-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-17`, `jre-ubuntu-17.0.7`, `jre-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-17`, `jdk-headless-ubuntu-17.0.7`, `jdk-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-17`, `jdk-ubuntu-17.0.7`, `jdk-ubuntu-lts`, `17`, `17.0.7`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/ea273f4b64903125418a8b30ac55c6d9757634c8/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`jre-headless-ubuntu-20`, `jre-headless-ubuntu-20.0.1`, `jre-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-20`, `jre-ubuntu-20.0.1`, `jre-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-20`, `jdk-headless-ubuntu-20.0.1`, `jdk-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-20`, `jdk-ubuntu-20.0.1`, `jdk-ubuntu`, `20`, `20.0.1`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/3d1d665c88254d2c3ae205ee47b6d924e0217893/dockerfiles/official/20/ubuntu/jdk/Dockerfile) +- [`jre-headless-ubuntu-11`, `jre-headless-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-11`, `jre-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jre/Dockerfile) +- [`jdk-headless-ubuntu-11`, `jdk-headless-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-11`, `jdk-ubuntu-11.0.20`, `11`, `11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`jre-headless-ubuntu-17`, `jre-headless-ubuntu-17.0.8`, `jre-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-17`, `jre-ubuntu-17.0.8`, `jre-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jre/Dockerfile) +- [`jdk-headless-ubuntu-17`, `jdk-headless-ubuntu-17.0.8`, `jdk-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-17`, `jdk-ubuntu-17.0.8`, `jdk-ubuntu-lts`, `17`, `17.0.8`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`jre-headless-ubuntu-20`, `jre-headless-ubuntu-20.0.2`, `jre-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jre-headless/Dockerfile) +- [`jre-ubuntu-20`, `jre-ubuntu-20.0.2`, `jre-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jre/Dockerfile) +- [`jdk-headless-ubuntu-20`, `jdk-headless-ubuntu-20.0.2`, `jdk-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jdk-headless/Dockerfile) +- [`jdk-ubuntu-20`, `jdk-ubuntu-20.0.2`, `jdk-ubuntu`, `20`, `20.0.2`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From 4712bab7853ef5e12cea47aaebba6f5cd6fb6b00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Jul 2023 16:20:50 -0700 Subject: [PATCH 0461/2686] Run update.sh --- alt/README.md | 6 +++--- influxdb/README.md | 32 ++++++++++++++++---------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/alt/README.md b/alt/README.md index 5007fdd6c37a..627c513dfeb2 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/b231d221f40d951338c30902735044a36bb1895f/x86_64/Dockerfile) -- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/fa873ac1d6ad83275982565b82b67b009969fd6a/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/a7155b68c43e43d50c162e355946303abf76f7d8/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/f6628b4b288042324701670e5b1e1e4e678f064b/x86_64/Dockerfile) +- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/600e5fc1af2f0457c3128d4591d1919472ec2411/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/9a7990daa35dca10a16c290e8fa44d844c368ee1/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index e889a3de682c..bd42aedc6465 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.10-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.10-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.10-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.10-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.8/meta/alpine/Dockerfile) -- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/1.10/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6c3d7ee4f8361d633fea09bc7a06086387c3d854/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.1-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.1-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.1-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.1-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From e450af3e820e93d32a894117cc682368115e6a4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jul 2023 11:09:01 -0700 Subject: [PATCH 0462/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index af419a18b7d1..065f74519e70 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.8-apache`, `25.0-apache`, `25-apache`, `25.0.8`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/apache/Dockerfile) -- [`25.0.8-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/fpm/Dockerfile) -- [`25.0.8-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/25/fpm-alpine/Dockerfile) -- [`26.0.3-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.3`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/apache/Dockerfile) -- [`26.0.3-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/fpm/Dockerfile) -- [`26.0.3-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/26/fpm-alpine/Dockerfile) -- [`27.0.0-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/apache/Dockerfile) -- [`27.0.0-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/fpm/Dockerfile) -- [`27.0.0-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/040d8687a6eedf5490e3cea1aff189e73403a6ee/27/fpm-alpine/Dockerfile) +- [`25.0.9-apache`, `25.0-apache`, `25-apache`, `25.0.9`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/apache/Dockerfile) +- [`25.0.9-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/fpm/Dockerfile) +- [`25.0.9-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/fpm-alpine/Dockerfile) +- [`26.0.4-apache`, `26.0-apache`, `26-apache`, `26.0.4`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/apache/Dockerfile) +- [`26.0.4-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm/Dockerfile) +- [`26.0.4-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm-alpine/Dockerfile) +- [`27.0.1-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/apache/Dockerfile) +- [`27.0.1-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/fpm/Dockerfile) +- [`27.0.1-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 175042f99ebfcfb1def29eedbfe1561cc2f6d21f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jul 2023 12:09:02 -0700 Subject: [PATCH 0463/2686] Run update.sh --- odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 0e24c63922fa..5ec32c747894 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/36d6e05b76d56ce637c2f39fd4745c6d2fa3809f/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/14.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 5c6740ba1688..79e82f84eda8 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.5`, `15.5.0`, `15-mysql-tomcat`, `15.5-mysql-tomcat`, `15.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.5-postgres-tomcat`, `15.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.5-mariadb-tomcat`, `15.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.13`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/bedad6921006df1867cf3a87d3939176400c86f5/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.14`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From d76fc2902950183091052bdc0aff789090aaed2e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jul 2023 13:09:07 -0700 Subject: [PATCH 0464/2686] Run update.sh --- mongo/README.md | 30 ++++++++++---------- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ php/README.md | 42 ++++++++++++++++++--------- 3 files changed, 79 insertions(+), 65 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index b6bdadd50127..e771f5d3df18 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.0-rc7-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/Dockerfile) -- [`7.0.0-rc7-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc7-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc7-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc7-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc8-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/Dockerfile) +- [`7.0.0-rc8-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc8-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc8-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc8-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.8-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.8-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) @@ -51,16 +51,16 @@ WARNING: ## Shared Tags -- `7.0.0-rc7`, `7.0-rc`: - - [`7.0.0-rc7-jammy`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/Dockerfile) - - [`7.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc7-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc7-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f80b14006a4908dc1f9c6d905b3fd3ba9cffa269/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc8`, `7.0-rc`: + - [`7.0.0-rc8-jammy`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/Dockerfile) + - [`7.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc8-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc8-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.8`, `6.0`, `6`, `latest`: - [`6.0.8-jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 4473feff3956..8583186290b3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-6-jdk-oraclelinux8`, `22-ea-6-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-6-jdk-oracle`, `22-ea-6-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-6-jdk-oraclelinux7`, `22-ea-6-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-6-jdk-bookworm`, `22-ea-6-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/bookworm/Dockerfile) -- [`22-ea-6-jdk-slim-bookworm`, `22-ea-6-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-6-jdk-slim`, `22-ea-6-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-6-jdk-bullseye`, `22-ea-6-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/bullseye/Dockerfile) -- [`22-ea-6-jdk-slim-bullseye`, `22-ea-6-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-6-jdk-windowsservercore-ltsc2022`, `22-ea-6-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-6-jdk-windowsservercore-1809`, `22-ea-6-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-6-jdk-nanoserver-1809`, `22-ea-6-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-31-jdk-oraclelinux8`, `21-ea-31-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-31-jdk-oracle`, `21-ea-31-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-31-jdk-oraclelinux7`, `21-ea-31-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-31-jdk-bookworm`, `21-ea-31-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/bookworm/Dockerfile) -- [`21-ea-31-jdk-slim-bookworm`, `21-ea-31-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-31-jdk-slim`, `21-ea-31-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-31-jdk-bullseye`, `21-ea-31-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/bullseye/Dockerfile) -- [`21-ea-31-jdk-slim-bullseye`, `21-ea-31-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-31-jdk-windowsservercore-ltsc2022`, `21-ea-31-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-31-jdk-windowsservercore-1809`, `21-ea-31-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-31-jdk-nanoserver-1809`, `21-ea-31-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-7-jdk-oraclelinux8`, `22-ea-7-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-7-jdk-oracle`, `22-ea-7-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-7-jdk-oraclelinux7`, `22-ea-7-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-7-jdk-bookworm`, `22-ea-7-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/bookworm/Dockerfile) +- [`22-ea-7-jdk-slim-bookworm`, `22-ea-7-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-7-jdk-slim`, `22-ea-7-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-7-jdk-bullseye`, `22-ea-7-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/bullseye/Dockerfile) +- [`22-ea-7-jdk-slim-bullseye`, `22-ea-7-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-7-jdk-windowsservercore-ltsc2022`, `22-ea-7-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-7-jdk-windowsservercore-1809`, `22-ea-7-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-7-jdk-nanoserver-1809`, `22-ea-7-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-32-jdk-oraclelinux8`, `21-ea-32-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-32-jdk-oracle`, `21-ea-32-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-32-jdk-oraclelinux7`, `21-ea-32-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-32-jdk-bookworm`, `21-ea-32-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/bookworm/Dockerfile) +- [`21-ea-32-jdk-slim-bookworm`, `21-ea-32-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-32-jdk-slim`, `21-ea-32-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-32-jdk-bullseye`, `21-ea-32-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/bullseye/Dockerfile) +- [`21-ea-32-jdk-slim-bullseye`, `21-ea-32-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-32-jdk-windowsservercore-ltsc2022`, `21-ea-32-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-32-jdk-windowsservercore-1809`, `21-ea-32-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-32-jdk-nanoserver-1809`, `21-ea-32-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-6-jdk`, `22-ea-6`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-6-jdk-windowsservercore`, `22-ea-6-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-6-jdk-nanoserver`, `22-ea-6-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ed439b105fbc90c048c6da0b3ecf3d83e3c88155/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-31-jdk`, `21-ea-31`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-31-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-31-jdk-windowsservercore`, `21-ea-31-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-31-jdk-nanoserver`, `21-ea-31-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/13174bcf6c9eb30d7274a16f869ced38c6af8fe8/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-7-jdk`, `22-ea-7`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-7-jdk-windowsservercore`, `22-ea-7-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-7-jdk-nanoserver`, `22-ea-7-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-32-jdk`, `21-ea-32`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-32-jdk-windowsservercore`, `21-ea-32-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-32-jdk-nanoserver`, `21-ea-32-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 30c309c89fe9..3d2b760078f7 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0alpha3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0alpha3-bookworm`, `8.3-rc-bookworm`, `8.3.0alpha3-cli`, `8.3-rc-cli`, `8.3.0alpha3`, `8.3-rc`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0alpha3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0alpha3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0alpha3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0alpha3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0alpha3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0alpha3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0alpha3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0alpha3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0alpha3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0alpha3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0alpha3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0alpha3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0alpha3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0alpha3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0alpha3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0alpha3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0alpha3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0alpha3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0alpha3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0alpha3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0alpha3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0alpha3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0alpha3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/5a6891289162d8a15d9bfc4c4c4c72a4c1d3913f/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0beta1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta1-bookworm`, `8.3-rc-bookworm`, `8.3.0beta1-cli`, `8.3-rc-cli`, `8.3.0beta1`, `8.3-rc`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0beta1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0beta1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0beta1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0beta1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0beta1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0beta1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0beta1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0beta1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0beta1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0beta1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0beta1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0beta1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0beta1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.9RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.9RC1-bookworm`, `8.2-rc-bookworm`, `8.2.9RC1-cli`, `8.2-rc-cli`, `8.2.9RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.9RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.9RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.9RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.9RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.9RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.9RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.9RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.9RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.9RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.9RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.9RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.9RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.9RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.9RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.9RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.9RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.9RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.9RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.9RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.9RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.9RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.9RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.9RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.8-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.8-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.8-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.8`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/cli/Dockerfile) - [`8.2.8-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.8-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/apache/Dockerfile) - [`8.2.8-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.8-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/fpm/Dockerfile) From b239baff4c1413f7098fe5cc38b8305266cdc4df Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 14 Apr 2023 15:31:55 -0700 Subject: [PATCH 0465/2686] Update to use the new repo logos API --- push.pl | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/push.pl b/push.pl index 6449690cbea7..2092c8d6c89f 100755 --- a/push.pl +++ b/push.pl @@ -9,7 +9,7 @@ use Getopt::Long; use Mojo::File; use Mojo::UserAgent; -use Mojo::Util qw(b64_encode decode encode trim); +use Mojo::Util qw(b64_encode decode encode trim url_escape); use Term::UI; use Term::ReadLine; @@ -175,8 +175,7 @@ sub prompt_for_edit { my $repoUrl = $dockerHub . '/v2/repositories/' . $repo . '/'; - if ($logos && $repo =~ m{ ^ library/ }x) { - # the "library" org images include a logo which is displayed in the Hub UI + if ($logos) { # if we have a logo file, let's update that metadata first my $repoLogo120 = $repoName . '/logo-120.png'; if (!-f $repoLogo120) { @@ -196,9 +195,10 @@ sub prompt_for_edit { ) == 0 or die "failed to convert $logoToConvert into $repoLogo120"; } } + my $logoUrlBase = $dockerHub . '/api/media/repos_logo/v1/' . url_escape($repo); if (-f $repoLogo120) { my $proposedLogo = Mojo::File->new($repoLogo120)->slurp; - my $currentLogo = $ua->get('https://d1q6f0aelx0por.cloudfront.net/product-logos/' . join('-', split(m{/}, $repo)) . '-logo.png', { 'Cache-Control' => 'no-cache' }); + my $currentLogo = $ua->get($logoUrlBase, { 'Cache-Control' => 'no-cache' }); $currentLogo = ($currentLogo->res->is_success ? $currentLogo->res->body : undef); if ($currentLogo && $currentLogo eq $proposedLogo) { @@ -206,14 +206,19 @@ sub prompt_for_edit { } else { say 'putting logo ' . $repoLogo120; - my $logoUrl = $repoUrl . 'logo'; - my $logoPut = $ua->put($logoUrl => $authorizationHeader => json => { - 'image_data' => b64_encode($proposedLogo), - 'content_type' => 'image/png', - 'file_ext' => 'png', - }); - warn 'warning: put to ' . $logoUrl . ' failed: ' . $logoPut->res->text unless $logoPut->res->is_success; + my $logoUpload = $ua->get($logoUrlBase . '/upload' => $authorizationHeader); + die 'GET to ' . $logoUrlBase . '/upload failed: ' . $logoUpload->res->text unless $logoUpload->res->is_success; + my $logoUploadUrl = $logoUpload->res->json->{url}; + my $logoPut = $ua->put($logoUploadUrl => { 'Content-Type' => 'image/png' } => $proposedLogo); + die 'PUT to ' . $logoUrlBase . ' (via "/upload" secure URL) failed: ' . $logoPut->res->text unless $logoPut->res->is_success; + my $logoComplete = $ua->post($logoUrlBase . '/upload/complete' => $authorizationHeader); + die 'POST to ' . $logoUrlBase . '/upload/complete failed: ' . $logoComplete->res->text unless $logoComplete->res->is_success; } + } else { + # if we had no logo file, we should send a DELETE request to the API just to be sure we're synchronizing the repo state appropriately even on complete logo removal + say 'no ' . $repoLogo120 . '; deleting logo'; + my $logoDelete = $ua->delete($logoUrlBase => $authorizationHeader); + die 'DELETE to ' . $logoUrlBase . ' failed: ' . $logoDelete->res->text unless $logoDelete->res->is_success or $logoDelete->res->code == 404; } } From 3db10d2d3e18e6f2f318498800f68e39724b8468 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jul 2023 13:09:08 -0700 Subject: [PATCH 0466/2686] Run update.sh --- node/README.md | 16 ++++++++-------- zookeeper/README.md | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/node/README.md b/node/README.md index e7545e5e172b..e98529c5be71 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.4-alpine3.17`, `20.4.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.4-alpine`, `20.4-alpine3.18`, `20.4.0-alpine`, `20.4.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.4`, `20.4-bookworm`, `20.4.0`, `20.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.4-bookworm-slim`, `20.4-slim`, `20.4.0-bookworm-slim`, `20.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.4-bullseye`, `20.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.4-bullseye-slim`, `20.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.4-buster`, `20.4.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster/Dockerfile) -- [`20-buster-slim`, `20.4-buster-slim`, `20.4.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/31bc0387d4a2eea9e9fee4d5b1f8dca0e0596dca/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.5-alpine3.17`, `20.5.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.5-alpine`, `20.5-alpine3.18`, `20.5.0-alpine`, `20.5.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.5`, `20.5-bookworm`, `20.5.0`, `20.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.5-bookworm-slim`, `20.5-slim`, `20.5.0-bookworm-slim`, `20.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.5-bullseye`, `20.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.5-bullseye-slim`, `20.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.5-buster`, `20.5.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/buster/Dockerfile) +- [`20-buster-slim`, `20.5-buster-slim`, `20.5.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.0-alpine`, `18.17.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.0`, `18.17.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bookworm/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index 0e8743cae429..683f119a44af 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) -- [`3.8.1`, `3.8`, `3.8.1-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/b078affda60681e71b71760740e795328c9d1ab5/3.8.1/Dockerfile) +- [`3.8.2`, `3.8`, `3.8.2-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/952b2f523f4f9a829d77114ddbe08ab9249d820b/3.8.2/Dockerfile) # Quick reference (cont.) From a103ff824aaef84e1c976c5da1e6fdcae877815f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jul 2023 17:19:54 -0700 Subject: [PATCH 0467/2686] Run update.sh --- solr/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/solr/README.md b/solr/README.md index da2f8528dfd9..9926fc80037f 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.1`, `9.2`, `9`, `latest`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/989825ee6dce2f6bf7b31051f1ba053b6c4426f2/8.11-slim/Dockerfile) +- [`9.3.0`, `9.3`, `9`, `latest`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/8.11-slim/Dockerfile) # Quick reference (cont.) From a3195ede892a36b58a27f0056e8a24b31c00956f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jul 2023 18:17:43 -0700 Subject: [PATCH 0468/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 58320fbd28fd..b2b1c03d0d27 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dbd5f24abbe089f39db8a1e4eceb4d754d9ed976/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7-slim-fips/Dockerfile) # Quick reference (cont.) From cb0c9fff6f3c90c02b51d521ba3c55492b1e02fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jul 2023 15:20:09 -0700 Subject: [PATCH 0469/2686] Run update.sh --- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- docker/README.md | 18 +++++------ eclipse-temurin/README.md | 68 +++++++++++++++++++-------------------- emqx/README.md | 2 +- neo4j/README.md | 6 ++-- nextcloud/README.md | 14 ++++---- photon/README.md | 6 ++-- php/README.md | 17 ++++++++++ traefik/README.md | 4 +-- 10 files changed, 80 insertions(+), 61 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 49f9a2857cad..6fd4cee82381 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230716.0.165339`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/193965519a6b830b07627eaa784c4ab636fb4a41/Dockerfile.base) -- [`base-devel`, `base-devel-20230716.0.165339`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/193965519a6b830b07627eaa784c4ab636fb4a41/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230723.0.166908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/56bb99f5ad26f03ab6ea2984f83b4383bb68a2d2/Dockerfile.base) +- [`base-devel`, `base-devel-20230723.0.166908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/56bb99f5ad26f03ab6ea2984f83b4383bb68a2d2/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 4c44bd7a62be..70f3b387d7a2 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/927a55624e601b2e77516d0f01f93ca7ae2cfb2f/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/63416f6dc3b7c706804cedcd9d2d8e90d340b9f5/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index ac99dc60999a..3c104b57dd41 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.4-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.4-cli-alpine3.18`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/cli/Dockerfile) -- [`24.0.4-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.4-dind-alpine3.18`, `24.0.4`, `24.0`, `24`, `latest`, `24.0.4-alpine3.18`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind/Dockerfile) -- [`24.0.4-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8becbdadcc71b5376c9ee193ca2740cd90549da5/24/dind-rootless/Dockerfile) -- [`24.0.4-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.4-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.4-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/cli/Dockerfile) +- [`24.0.5-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.5-dind-alpine3.18`, `24.0.5`, `24.0`, `24`, `latest`, `24.0.5-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind/Dockerfile) +- [`24.0.5-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind-rootless/Dockerfile) +- [`24.0.5-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `24.0.4-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/074561445e7929ca4e69233bdf382ac2ce81789f/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.5-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-1809/Dockerfile) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index b88e50bb1359..d3c44fa3f938 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -82,20 +82,20 @@ WARNING: - [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/20/jdk/alpine/Dockerfile.releases.full) -- [`20.0.1_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.1_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.1_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/20/jre/alpine/Dockerfile.releases.full) -- [`20.0.1_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.1_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.1_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.1_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.2_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.2_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.2_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`20.0.2_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`20.0.2_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`20.0.2_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags @@ -159,26 +159,26 @@ WARNING: - `17.0.7_7-jre-nanoserver`, `17-jre-nanoserver`: - [`17.0.7_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.7_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `20.0.1_9-jdk`, `20-jdk`, `20`, `latest`: - - [`20.0.1_9-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.1_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.1_9-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `20.0.1_9-jre`, `20-jre`: - - [`20.0.1_9-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.1_9-jre-windowsservercore`, `20-jre-windowsservercore`: - - [`20.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.1_9-jre-nanoserver`, `20-jre-nanoserver`: - - [`20.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.1_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: + - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.2_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: + - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.2_9-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: + - [`20.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `20.0.2_9-jre`, `20-jre`: + - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.2_9-jre-windowsservercore`, `20-jre-windowsservercore`: + - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `20.0.2_9-jre-nanoserver`, `20-jre-nanoserver`: + - [`20.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`20.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index d7695ea20353..311ceb02ed57 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,7 @@ WARNING: - [`4.4.19`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/4.4/Dockerfile) - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) -- [`5.1.1`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.1/Dockerfile) +- [`5.1.2`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/302615a79671ed6499640ced5c297b2c1cce9f36/5.1/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 5dfdf07fdc17..bb315241ae08 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.0`, `5.10.0-community`, `5.10`, `5.10-community`, `5`, `5-community`, `community`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/53020c7673630cd8a216a4731096f08ebb8a4e30/5.10.0/debian/community/Dockerfile) -- [`5.10.0-enterprise`, `5.10-enterprise`, `5-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/53020c7673630cd8a216a4731096f08ebb8a4e30/5.10.0/debian/enterprise/Dockerfile) +- [`5.10.0-community-bullseye`, `5.10-community-bullseye`, `5-community-bullseye`, `5.10.0-community`, `5.10-community`, `5-community`, `5.10.0-bullseye`, `5.10-bullseye`, `5-bullseye`, `5.10.0`, `5.10`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/bullseye/community/Dockerfile) +- [`5.10.0-enterprise-bullseye`, `5.10-enterprise-bullseye`, `5-enterprise-bullseye`, `5.10.0-enterprise`, `5.10-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/bullseye/enterprise/Dockerfile) +- [`5.10.0-community-ubi8`, `5.10-community-ubi8`, `5-community-ubi8`, `5.10.0-ubi8`, `5.10-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/community/Dockerfile) +- [`5.10.0-enterprise-ubi8`, `5.10-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/enterprise/Dockerfile) - [`4.4.23`, `4.4.23-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/community/Dockerfile) - [`4.4.23-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/enterprise/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 065f74519e70..c28eb1f1ccdb 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,14 +28,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.9-apache`, `25.0-apache`, `25-apache`, `25.0.9`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/apache/Dockerfile) -- [`25.0.9-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/fpm/Dockerfile) +- [`25.0.9-apache`, `25.0-apache`, `25-apache`, `25.0.9`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/25/apache/Dockerfile) +- [`25.0.9-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/25/fpm/Dockerfile) - [`25.0.9-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/fpm-alpine/Dockerfile) -- [`26.0.4-apache`, `26.0-apache`, `26-apache`, `26.0.4`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/apache/Dockerfile) -- [`26.0.4-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm/Dockerfile) -- [`26.0.4-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm-alpine/Dockerfile) -- [`27.0.1-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/apache/Dockerfile) -- [`27.0.1-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/fpm/Dockerfile) +- [`26.0.4-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.4`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/26/apache/Dockerfile) +- [`26.0.4-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/26/fpm/Dockerfile) +- [`26.0.4-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm-alpine/Dockerfile) +- [`27.0.1-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/27/apache/Dockerfile) +- [`27.0.1-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/27/fpm/Dockerfile) - [`27.0.1-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 972967dd6325..e709bb1a394e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230715`, `latest`](https://github.com/vmware/photon-docker-image/blob/410f73dd31158850f5932a90c81de30e289d734c/docker/Dockerfile) -- [`4.0`, `4.0-20230715`](https://github.com/vmware/photon-docker-image/blob/376fe4cf7af616022da9325e94988a0c161feeb0/docker/Dockerfile) -- [`3.0`, `3.0-20230715`](https://github.com/vmware/photon-docker-image/blob/233562bc050256547a83f6d617420c90dd87d77c/docker/Dockerfile) +- [`5.0`, `5.0-20230722`, `latest`](https://github.com/vmware/photon-docker-image/blob/290ad11b3db6be949a2e0f29defb585d4f3396f5/docker/Dockerfile) +- [`4.0`, `4.0-20230722`](https://github.com/vmware/photon-docker-image/blob/5a82a6775ee940a8d5018836e4dc1ac4f7e57db8/docker/Dockerfile) +- [`3.0`, `3.0-20230722`](https://github.com/vmware/photon-docker-image/blob/d99a03715ac04ab0cf411a74076fead96a0b0bd0/docker/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 3d2b760078f7..4b5547e96078 100644 --- a/php/README.md +++ b/php/README.md @@ -66,6 +66,23 @@ WARNING: - [`8.2.8-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.8-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/cli/Dockerfile) - [`8.2.8-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.8-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.22RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.22RC1-bookworm`, `8.1-rc-bookworm`, `8.1.22RC1-cli`, `8.1-rc-cli`, `8.1.22RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.22RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.22RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.22RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.22RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.22RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.22RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.22RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.22RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.22RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.22RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.22RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.22RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.22RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.22RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.22RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.22RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.22RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.22RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.22RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.22RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.22RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.22RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.22RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.22RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.22RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.22RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.22RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.21-cli-bookworm`, `8.1-cli-bookworm`, `8.1.21-bookworm`, `8.1-bookworm`, `8.1.21-cli`, `8.1-cli`, `8.1.21`, `8.1`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/cli/Dockerfile) - [`8.1.21-apache-bookworm`, `8.1-apache-bookworm`, `8.1.21-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/apache/Dockerfile) - [`8.1.21-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.21-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/fpm/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index a35a1bd75b7f..280102da2c01 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta3-windowsservercore-1809`, `3.0.0-beta3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/windows/1809/Dockerfile) - [`v3.0.0-beta3`, `3.0.0-beta3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/alpine/Dockerfile) -- [`v2.10.3-windowsservercore-1809`, `2.10.3-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/windows/1809/Dockerfile) -- [`v2.10.3`, `2.10.3`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/45ebd782ec472b47b90058b27253874297242a26/alpine/Dockerfile) +- [`v2.10.4-windowsservercore-1809`, `2.10.4-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/03f1cd9c3350bdf9090136b01acc0e3fd2616600/windows/1809/Dockerfile) +- [`v2.10.4`, `2.10.4`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/03f1cd9c3350bdf9090136b01acc0e3fd2616600/alpine/Dockerfile) # Quick reference (cont.) From 49ae19ff9c0b28154e58ac66d8241040ce949f5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jul 2023 16:09:07 -0700 Subject: [PATCH 0470/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- mysql/README.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 454c997746ab..4d2eeb120f9d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.54.4`, `5.54`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2bf364da83498d465c2a4a2dc1cfba88d5451207/5/debian/Dockerfile) -- [`5.54.4-alpine`, `5.54-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2bf364da83498d465c2a4a2dc1cfba88d5451207/5/alpine/Dockerfile) +- [`5.55.0`, `5.55`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0bd4a5b4a525e89242c2f7291705584c718056c4/5/debian/Dockerfile) +- [`5.55.0-alpine`, `5.55-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0bd4a5b4a525e89242c2f7291705584c718056c4/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index b206cfc3603c..8df877cd3d65 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev1`, `2.9-dev`, `2.9-dev1-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/9b1ce2eb7fb65a923b414c8d8ffec6990d73d4bc/2.9/Dockerfile) -- [`2.9-dev1-alpine`, `2.9-dev-alpine`, `2.9-dev1-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/9b1ce2eb7fb65a923b414c8d8ffec6990d73d4bc/2.9/alpine/Dockerfile) +- [`2.9-dev2`, `2.9-dev`, `2.9-dev2-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/Dockerfile) +- [`2.9-dev2-alpine`, `2.9-dev-alpine`, `2.9-dev2-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/alpine/Dockerfile) - [`2.8.1`, `2.8`, `lts`, `latest`, `2.8.1-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/Dockerfile) - [`2.8.1-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.1-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/alpine/Dockerfile) - [`2.7.9`, `2.7`, `2.7.9-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 6d6448008941..f89402a70524 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.33`, `8.0`, `8`, `latest`, `8.0.33-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1bfa4724fe112b4246672ed2b3c42142f17d5636/8.0/Dockerfile.oracle) -- [`8.0.33-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/611aa464a96f69e5d4d4172b14ca829ded162b42/8.0/Dockerfile.debian) -- [`5.7.42`, `5.7`, `5`, `5.7.42-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/e4bdff20153e6a05364a8fe80356dcfd502445bd/5.7/Dockerfile.oracle) +- [`8.0.34`, `8.0`, `8`, `latest`, `8.0.34-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.oracle) +- [`8.0.34-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.debian) +- [`5.7.42`, `5.7`, `5`, `5.7.42-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/2baf92d30620d7d123141b98988b0d42d2156351/5.7/Dockerfile.oracle) - [`5.7.42-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/611aa464a96f69e5d4d4172b14ca829ded162b42/5.7/Dockerfile.debian) # Quick reference (cont.) From 45a14d1f08a4a7c1f8ffdf46cb9451694365af88 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Jul 2023 14:20:16 -0700 Subject: [PATCH 0471/2686] Run update.sh --- orientdb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index 924e6ffcf978..ab884faf30f7 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.20`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/bec4afe6bc542be54c249d3b3597bcba31622362/release/3.2.x/3.2.20/Dockerfile) -- [`3.2.20-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/bec4afe6bc542be54c249d3b3597bcba31622362/release/3.2.x/3.2.20-tp3/Dockerfile) +- [`3.2.21`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fabe2645fa8cb548f43dda604f321e93ef53b0ea/release/3.2.x/3.2.21/Dockerfile) +- [`3.2.21-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fabe2645fa8cb548f43dda604f321e93ef53b0ea/release/3.2.x/3.2.21-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 118b299dfd7ea6771ed2622bcb0854ae24e8a7f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Jul 2023 15:17:49 -0700 Subject: [PATCH 0472/2686] Run update.sh --- eclipse-temurin/README.md | 76 +++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index d3c44fa3f938..3700250f8fc6 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -64,24 +64,24 @@ WARNING: - [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.7_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.7_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.7_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.7_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.7_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.7_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.7_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.7_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.7_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.7_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/centos/Dockerfile.releases.full) -- [`17.0.7_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.7_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.7_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.7_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.8_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.8_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.8_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/centos/Dockerfile.releases.full) +- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.8_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/alpine/Dockerfile.releases.full) - [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) @@ -139,26 +139,26 @@ WARNING: - `11.0.19_7-jre-nanoserver`, `11-jre-nanoserver`: - [`11.0.19_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.19_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.7_7-jdk`, `17-jdk`, `17`: - - [`17.0.7_7-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.7_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.7_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.7_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.7_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.7_7-jre`, `17-jre`: - - [`17.0.7_7-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.7_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.7_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.7_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.7_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.7_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.8_7-jdk`, `17-jdk`, `17`: + - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.8_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.8_7-jre`, `17-jre`: + - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8_7-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8_7-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.8_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.8_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) From 7ba060e5b5c99b9fc2f01bb42e1f00981d876467 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Jul 2023 17:09:03 -0700 Subject: [PATCH 0473/2686] Run update.sh --- eclipse-temurin/README.md | 80 +++++++++++++++++++-------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 3700250f8fc6..47af1ab905b7 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -46,24 +46,24 @@ WARNING: - [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.19_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.19_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.19_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.19_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.19_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.19_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.19_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.19_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.19_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.19_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/centos/Dockerfile.releases.full) -- [`11.0.19_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.19_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.19_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.19_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.20_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.20_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.20_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/centos/Dockerfile.releases.full) +- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.20_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.20_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.20_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/alpine/Dockerfile.releases.full) - [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/focal/Dockerfile.releases.full) - [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) @@ -82,14 +82,14 @@ WARNING: - [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/20/jdk/alpine/Dockerfile.releases.full) - [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.1_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/20/jre/alpine/Dockerfile.releases.full) - [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) @@ -119,26 +119,26 @@ WARNING: - `8u372-b07-jre-nanoserver`, `8-jre-nanoserver`: - [`8u372-b07-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u372-b07-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.19_7-jdk`, `11-jdk`, `11`: - - [`11.0.19_7-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.19_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.19_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.19_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.19_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.19_7-jre`, `11-jre`: - - [`11.0.19_7-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.19_7-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.19_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.19_7-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.19_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.19_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.20_8-jdk`, `11-jdk`, `11`: + - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.20_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.20_8-jre`, `11-jre`: + - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20_8-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20_8-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.20_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.20_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.8_7-jdk`, `17-jdk`, `17`: - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) From 4cf442ccea69b7c3482012cb7c1cc21498ea7c0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jul 2023 12:18:14 -0700 Subject: [PATCH 0474/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- dart/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 3dc7e65cb138..61a2b0d8b1a8 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.1.20230705.0`](https://github.com/amazonlinux/container-images/blob/e2a12edeb2149ac97b854b43676c4117ced6fb70/Dockerfile) -- [`2`, `2.0.20230628.0`](https://github.com/amazonlinux/container-images/blob/0df7bde196fbf207d36ade9bdbbf1b8ed493051f/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230628.0`](https://github.com/amazonlinux/container-images/blob/18405b44cfe8a9e24a023ea3ccecd7b41cba827f/Dockerfile) +- [`2023`, `latest`, `2023.1.20230719.0`](https://github.com/amazonlinux/container-images/blob/ae2ef2f28d65c72f4ae6f5823066e80770d22f51/Dockerfile) +- [`2`, `2.0.20230719.0`](https://github.com/amazonlinux/container-images/blob/0f44358ef4b48bab8bdb26ffca3f58ca96f1f9f4/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230718.0`](https://github.com/amazonlinux/container-images/blob/8095435c93108a9b7c69f482175eddd47b32dc8a/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 1d8058227640..941e85d85a5a 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.6-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.6`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/570754446afe85c320314d270b059a074e17d14a/stable/bullseye/Dockerfile) -- [`3.1.0-262.2.beta-sdk`, `beta-sdk`, `3.1.0-262.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/570754446afe85c320314d270b059a074e17d14a/beta/bullseye/Dockerfile) +- [`3.0.7-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.7`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e858f543b2f25a4c58ce635043ba67ac1093015e/stable/bullseye/Dockerfile) +- [`3.1.0-262.3.beta-sdk`, `beta-sdk`, `3.1.0-262.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e858f543b2f25a4c58ce635043ba67ac1093015e/beta/bullseye/Dockerfile) # Quick reference (cont.) From b5ac8130e911661eec21dd4ad0970f3efa0be40d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jul 2023 14:17:39 -0700 Subject: [PATCH 0475/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index bb8fae8532ec..568e8702dbb7 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.5`, `ee-6.3.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/1bb3ab4e95e31129c32653db28ff7f163d13671d/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.5`, `ce-6.3.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/1bb3ab4e95e31129c32653db28ff7f163d13671d/community/debian11/Dockerfile) +- [`ee-6.3.0.6`, `ee-6.3.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a67d9e79b3dd559ac3e0a42cb477a05e9c22f5c/enterprise/debian11/Dockerfile) +- [`ce-6.3.0.6`, `ce-6.3.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a67d9e79b3dd559ac3e0a42cb477a05e9c22f5c/community/debian11/Dockerfile) # Quick reference (cont.) From 9f75f251347c82b06483d47b14bcca79ad077fcd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jul 2023 16:09:02 -0700 Subject: [PATCH 0476/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index 09eff429f4ac..93db47b37f63 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) - [`3.10`, `3.10.9`](https://github.com/arangodb/arangodb-docker/blob/bdd1fadac33809b6344b6ce1adceef73717e576e/alpine/3.10.9/Dockerfile) -- [`3.11`, `3.11.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5c926a243d7c952a58f97488781f5eaf6d6704b9/alpine/3.11.1/Dockerfile) +- [`3.11`, `3.11.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/b2fcf01f639bebe80a8563c2d67b2866331f13c2/alpine/3.11.2/Dockerfile) # Quick reference (cont.) From f50e834a0944165f2a2f63207e61ca3ea6bcfe75 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jul 2023 12:18:08 -0700 Subject: [PATCH 0477/2686] Run update.sh --- influxdb/README.md | 32 ++++++++++++------------- open-liberty/README.md | 48 ++++++++++++++++--------------------- websphere-liberty/README.md | 42 ++++++++++++++------------------ 3 files changed, 55 insertions(+), 67 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index bd42aedc6465..47ae7af698b2 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.11-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.11-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.3-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.3-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.1-data`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.1-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.1-meta`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.1-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/db74bb98f62fa7083224a75f09ce387ffece50f0/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.1-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.1-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.1-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.1-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index fec8a2d3ffa1..ee22639065c8 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.5/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/897ef0c2c740dd79a8b08b08d711a58677713d26/releases/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 4e26dd1c9e0c..23293342f471 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.5/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`22.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`22.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`22.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/991330f33547ea6bbc796c198c4b2d0dacc7cc8d/ga/22.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From ba4494adace36d7c4485cd24acc891db617b4f25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jul 2023 16:08:58 -0700 Subject: [PATCH 0478/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 2 +- debian/README.md | 60 ++++++++++++++++++++++----------------------- gcc/README.md | 2 +- ghost/README.md | 4 +-- rabbitmq/README.md | 8 +++--- wordpress/README.md | 18 +++++++------- 7 files changed, 48 insertions(+), 48 deletions(-) diff --git a/bash/README.md b/bash/README.md index 4f0ba0b407c8..fa781d8636d0 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230717`, `devel`, `devel-20230717-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/9b81b86696017d5de290ba669b2b3c311db9e085/devel/Dockerfile) +- [`devel-20230719`, `devel`, `devel-20230719-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/2e5bf0fdf94a51ea4241ed577fda237146b9ee36/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 1db54a91d3de..8d8dc7eb8899 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/676c7fb1737244ff736edc56064af335cf9d466f/4.1/Dockerfile) +- [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) - [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/955064939ae306088491856ff169b58319d619f9/4.0/Dockerfile) - [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) - [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) diff --git a/debian/README.md b/debian/README.md index 6b9e7ea6581d..0a6ffc8c8a09 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230703`, `12.0`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230703-slim`, `12.0-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230703`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230703-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230703`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230703-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/rc-buggy/Dockerfile) -- [`sid`, `sid-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/sid/Dockerfile) -- [`sid-slim`, `sid-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/sid/slim/Dockerfile) -- [`stable`, `stable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/stable/slim/Dockerfile) -- [`testing`, `testing-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230703`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230703-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/985551fd3e92285aeb90004e7d2097d10bc5806f/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230725`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230725-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230725`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230725-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230725`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230725-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/rc-buggy/Dockerfile) +- [`sid`, `sid-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/sid/Dockerfile) +- [`sid-slim`, `sid-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/sid/slim/Dockerfile) +- [`stable`, `stable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/slim/Dockerfile) +- [`testing`, `testing-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index c7024f01824a..3ad3f06c12fe 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`13.1.0`, `13.1`, `13`, `latest`, `13.1.0-bookworm`, `13.1-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/13/Dockerfile) +- [`13.2.0`, `13.2`, `13`, `latest`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/af458ec8254ef7ca3344f12631e2356b20b4a7f1/13/Dockerfile) - [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/12/Dockerfile) - [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/11/Dockerfile) - [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/82cd9a2f8eb0da43f9b938b92ee78d8747eb16d1/10/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 4d2eeb120f9d..9667698eef5f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.55.0`, `5.55`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0bd4a5b4a525e89242c2f7291705584c718056c4/5/debian/Dockerfile) -- [`5.55.0-alpine`, `5.55-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0bd4a5b4a525e89242c2f7291705584c718056c4/5/alpine/Dockerfile) +- [`5.55.2`, `5.55`, `5`, `latest`](https://github.com/docker-library/ghost/blob/66c255ce097b60998ff7540ca9be179b75826415/5/debian/Dockerfile) +- [`5.55.2-alpine`, `5.55-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/66c255ce097b60998ff7540ca9be179b75826415/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 0265894aabda..c7686a8bf11c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-beta.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/Dockerfile) -- [`3.13.0-beta.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/ffef74ec93c905f714e91dc412dcf0905e3a6429/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ffef74ec93c905f714e91dc412dcf0905e3a6429/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/ubuntu/Dockerfile) - [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index e3b561f63abb..845b127d3cd9 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-RC1-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC1`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC1-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC1-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-RC1-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC1-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-RC1-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC1-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-RC1-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC1-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-RC1-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-RC1-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-RC1-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC1-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-RC1-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-RC1-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f640a5e848f8b77ff8df91626306b66fe617c72f/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-RC2-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC2`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC2-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC2-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-RC2-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC2-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-RC2-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC2-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-RC2-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC2-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-RC2-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-RC2-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-RC2-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC2-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-RC2-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-RC2-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7ac300321cdcf3b9801dfa8be81cac4cbc55c5ce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Jul 2023 12:18:24 -0700 Subject: [PATCH 0479/2686] Run update.sh --- emqx/README.md | 2 +- open-liberty/README.md | 48 +++++++++++++++++++++---------------- websphere-liberty/README.md | 42 ++++++++++++++++++-------------- 3 files changed, 52 insertions(+), 40 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 311ceb02ed57..a388bade9031 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,7 @@ WARNING: - [`4.4.19`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/4.4/Dockerfile) - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) -- [`5.1.2`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/302615a79671ed6499640ced5c297b2c1cce9f36/5.1/Dockerfile) +- [`5.1.3`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e5d98d7a6d6de0ad22e5f1be79b65228232871cd/5.1/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index ee22639065c8..ad04113e397b 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,27 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/30700d72a85a7afc758d779691062ea7ec80dc34/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 23293342f471..f76b1573a775 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,24 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/6dd8b6cfd9b80860001ccba31f2c27508f27bf45/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 9cce7639171ad43526bcdeaa7222d692ab04f1a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Jul 2023 14:18:06 -0700 Subject: [PATCH 0480/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index e709bb1a394e..bcac926809c5 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230722`, `latest`](https://github.com/vmware/photon-docker-image/blob/290ad11b3db6be949a2e0f29defb585d4f3396f5/docker/Dockerfile) -- [`4.0`, `4.0-20230722`](https://github.com/vmware/photon-docker-image/blob/5a82a6775ee940a8d5018836e4dc1ac4f7e57db8/docker/Dockerfile) -- [`3.0`, `3.0-20230722`](https://github.com/vmware/photon-docker-image/blob/d99a03715ac04ab0cf411a74076fead96a0b0bd0/docker/Dockerfile) +- [`5.0`, `5.0-20230729`, `latest`](https://github.com/vmware/photon-docker-image/blob/73d7b687a43e39251d305239751796343cdbac5d/docker/Dockerfile) +- [`4.0`, `4.0-20230729`](https://github.com/vmware/photon-docker-image/blob/79534947b866070f2e2ad119e0960ac4ba3589de/docker/Dockerfile) +- [`3.0`, `3.0-20230729`](https://github.com/vmware/photon-docker-image/blob/34a52b9b499df7f8977c7bec3c7d092088b1845e/docker/Dockerfile) # Quick reference (cont.) From 951c56a0c0e4cd89297f74748861270ea94fdad3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Jul 2023 16:09:06 -0700 Subject: [PATCH 0481/2686] Run update.sh --- clearlinux/README.md | 2 +- perl/README.md | 80 ++++++++++++++++++++++---------------------- telegraf/README.md | 12 +++---- xwiki/README.md | 6 ++-- 4 files changed, 50 insertions(+), 50 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 70f3b387d7a2..285f80f1c5bd 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/63416f6dc3b7c706804cedcd9d2d8e90d340b9f5/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1f9fe34b371c8097482b4a03bc3fbdb07cc701ff/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index b464645e4583..9ec147802da1 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.37.11`, `5.37`, `devel`, `5.37.11-bullseye`, `5.37-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main-bullseye/Dockerfile) -- [`5.37.11-buster`, `5.37-buster`, `devel-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main-buster/Dockerfile) -- [`5.37.11-slim`, `5.37-slim`, `devel-slim`, `5.37.11-slim-bullseye`, `5.37-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim-bullseye/Dockerfile) -- [`5.37.11-slim-buster`, `5.37-slim-buster`, `devel-slim-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim-buster/Dockerfile) -- [`5.37.11-threaded`, `5.37-threaded`, `devel-threaded`, `5.37.11-threaded-bullseye`, `5.37-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main,threaded-bullseye/Dockerfile) -- [`5.37.11-threaded-buster`, `5.37-threaded-buster`, `devel-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-main,threaded-buster/Dockerfile) -- [`5.37.11-slim-threaded`, `5.37-slim-threaded`, `devel-slim-threaded`, `5.37.11-slim-threaded-bullseye`, `5.37-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim,threaded-bullseye/Dockerfile) -- [`5.37.11-slim-threaded-buster`, `5.37-slim-threaded-buster`, `devel-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/9651038c99b01fa3ace3e9259b8ab7b317bd6c19/5.037.011-slim,threaded-buster/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.1`, `5.39`, `devel`, `5.39.1-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main-bookworm/Dockerfile) +- [`5.39.1-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main-bullseye/Dockerfile) +- [`5.39.1-slim`, `5.39-slim`, `devel-slim`, `5.39.1-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim-bookworm/Dockerfile) +- [`5.39.1-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim-bullseye/Dockerfile) +- [`5.39.1-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.1-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main,threaded-bookworm/Dockerfile) +- [`5.39.1-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main,threaded-bullseye/Dockerfile) +- [`5.39.1-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.1-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim,threaded-bookworm/Dockerfile) +- [`5.39.1-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 6ae0be506395..df2e2bc7c83c 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/5db57e724f801c50d7c40b2a9ab980ba4b8dcea3/telegraf/1.27/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.27/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 79e82f84eda8..659e2b9c7fbe 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.5`, `15.5.0`, `15-mysql-tomcat`, `15.5-mysql-tomcat`, `15.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.5-postgres-tomcat`, `15.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.5-mariadb-tomcat`, `15.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d16b38db7e0986df761f445a6d48f6e815aeb2a4/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.5`, `15.5.1`, `15-mysql-tomcat`, `15.5-mysql-tomcat`, `15.5.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.5-postgres-tomcat`, `15.5.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.5-mariadb-tomcat`, `15.5.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.14`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mariadb-tomcat/Dockerfile) From d97d0c18e1c3093e052614422f2503c5de52a101 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Aug 2023 13:09:11 -0700 Subject: [PATCH 0482/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 659e2b9c7fbe..714dd8b7e189 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.5`, `15.5.1`, `15-mysql-tomcat`, `15.5-mysql-tomcat`, `15.5.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.5-postgres-tomcat`, `15.5.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.5-mariadb-tomcat`, `15.5.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26cd154dd56d5626a217d0a910f5ca1f2661e550/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.6`, `15.6.0`, `15-mysql-tomcat`, `15.6-mysql-tomcat`, `15.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.6-postgres-tomcat`, `15.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.6-mariadb-tomcat`, `15.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.14`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mariadb-tomcat/Dockerfile) From acaf2e9adb14c5cfdc23e914301669ce37d6b8d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Aug 2023 14:09:03 -0700 Subject: [PATCH 0483/2686] Run update.sh --- eclipse-temurin/README.md | 76 +++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 47af1ab905b7..f0992df67acb 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,24 +28,24 @@ WARNING: ## Simple Tags -- [`8u372-b07-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/8/jdk/alpine/Dockerfile.releases.full) -- [`8u372-b07-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u372-b07-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u372-b07-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/centos/Dockerfile.releases.full) -- [`8u372-b07-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u372-b07-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u372-b07-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u372-b07-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/15919f7dd6a903f0f966f484461954dcf7e28620/8/jre/alpine/Dockerfile.releases.full) -- [`8u372-b07-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u372-b07-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u372-b07-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/centos/Dockerfile.releases.full) -- [`8u372-b07-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u372-b07-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u372-b07-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u372-b07-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/alpine/Dockerfile.releases.full) +- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/centos/Dockerfile.releases.full) +- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u382-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u382-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u382-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/alpine/Dockerfile.releases.full) +- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/centos/Dockerfile.releases.full) +- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/alpine/Dockerfile.releases.full) - [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/focal/Dockerfile.releases.full) - [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) @@ -99,26 +99,26 @@ WARNING: ## Shared Tags -- `8u372-b07-jdk`, `8-jdk`, `8`: - - [`8u372-b07-jdk-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u372-b07-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u372-b07-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u372-b07-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u372-b07-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `8u372-b07-jre`, `8-jre`: - - [`8u372-b07-jre-jammy`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u372-b07-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u372-b07-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u372-b07-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u372-b07-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u372-b07-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/920efae8fe37e2b8f2b288b5f7f9e67134ecad1d/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u382-b05-jdk`, `8-jdk`, `8`: + - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u382-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u382-b05-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u382-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u382-b05-jre`, `8-jre`: + - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u382-b05-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `8u382-b05-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.20_8-jdk`, `11-jdk`, `11`: - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) From 6edd13117d9b73f8af3f051bf3d43360a000022c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Aug 2023 15:18:28 -0700 Subject: [PATCH 0484/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index c9c6fbee5303..44f4ed1462f7 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,22 +36,22 @@ WARNING: - [`1.21rc3-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) - [`1.21rc3-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21rc3-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) -- [`1.20.6-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) -- [`1.20.6-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bullseye/Dockerfile) -- [`1.20.6-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.6-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.20/alpine3.18/Dockerfile) -- [`1.20.6-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.20/alpine3.17/Dockerfile) -- [`1.20.6-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.6-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.6-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.6-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.11-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bookworm/Dockerfile) -- [`1.19.11-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bullseye/Dockerfile) -- [`1.19.11-alpine3.18`, `1.19-alpine3.18`, `1.19.11-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.19/alpine3.18/Dockerfile) -- [`1.19.11-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/431c08ffa8fdcb3dd1a1e1d6fd48b8788570a7cc/1.19/alpine3.17/Dockerfile) -- [`1.19.11-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.11-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.11-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.11-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.20.7-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) +- [`1.20.7-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bullseye/Dockerfile) +- [`1.20.7-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.7-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.18/Dockerfile) +- [`1.20.7-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.17/Dockerfile) +- [`1.20.7-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.7-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.7-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.7-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.12-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bookworm/Dockerfile) +- [`1.19.12-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bullseye/Dockerfile) +- [`1.19.12-alpine3.18`, `1.19-alpine3.18`, `1.19.12-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/alpine3.18/Dockerfile) +- [`1.19.12-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/alpine3.17/Dockerfile) +- [`1.19.12-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.12-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.12-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.12-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -65,26 +65,26 @@ WARNING: - `1.21rc3-nanoserver`, `1.21-rc-nanoserver`: - [`1.21rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) -- `1.20.6`, `1.20`, `1`, `latest`: - - [`1.20.6-bookworm`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/bookworm/Dockerfile) - - [`1.20.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.6-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.20.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.6-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.20.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/bba543aacac120bf09b371bd1b41496f3d2ea89d/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.11`, `1.19`: - - [`1.19.11-bookworm`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/bookworm/Dockerfile) - - [`1.19.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.11-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.11-nanoserver`, `1.19-nanoserver`: - - [`1.19.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/0238356ccf448c8d4cbd3a6008ab05708ac77b0c/1.19/windows/nanoserver-1809/Dockerfile) +- `1.20.7`, `1.20`, `1`, `latest`: + - [`1.20.7-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) + - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.7-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.7-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.20.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.12`, `1.19`: + - [`1.19.12-bookworm`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bookworm/Dockerfile) + - [`1.19.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.12-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.12-nanoserver`, `1.19-nanoserver`: + - [`1.19.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From a04de428be740951eec3ae2c8ab01b79c021ab38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Aug 2023 16:09:06 -0700 Subject: [PATCH 0485/2686] Run update.sh --- convertigo/README.md | 4 ++-- kong/README.md | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 7bca5628901b..ff14e3d3b742 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.1`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/b80c43731b90df528878a6c3bb75ccd4afd8d96e/docker/default/Dockerfile) +- [`8.2.2`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/6cfd8957e427702eefefcd2bfe9adc374543b808/docker/default/Dockerfile) # Quick reference (cont.) @@ -32,7 +32,7 @@ WARNING: [https://github.com/convertigo/docker/issues](https://github.com/convertigo/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/convertigo/) + [`amd64`](https://hub.docker.com/r/amd64/convertigo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/convertigo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/convertigo/) - **Published image artifact details**: [repo-info repo's `repos/convertigo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/convertigo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/convertigo)) diff --git a/kong/README.md b/kong/README.md index 792f2ae59716..436641969b5f 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/507775715a22e419d1c7e42028f7c3b5d9cf0418/Dockerfile.apk) -- [`3.3.0-ubuntu`, `3.3-ubuntu`, `3.3.0`, `3.3`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/507775715a22e419d1c7e42028f7c3b5d9cf0418/ubuntu/Dockerfile) +- [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) +- [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) - [`3.2.2-ubuntu`, `3.2-ubuntu`, `3.2.2`, `3.2`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) - [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) @@ -33,7 +33,6 @@ WARNING: - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) - [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) - [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/alpine/Dockerfile) -- [`2.8.3-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/ubuntu/Dockerfile) # Quick reference (cont.) From dc7e903b35fcca8d3a6333a68bbc8b62927924d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Aug 2023 17:09:04 -0700 Subject: [PATCH 0486/2686] Run update.sh --- bash/README.md | 2 +- drupal/README.md | 24 +++++++-------- ghost/README.md | 4 +-- golang/README.md | 36 +++++++++++------------ julia/README.md | 26 ++++++++-------- matomo/README.md | 6 ++-- mongo/README.md | 45 ++++++++++++++++++---------- mysql/README.md | 8 ++--- openjdk/README.md | 72 ++++++++++++++++++++++----------------------- rabbitmq/README.md | 20 ++++++------- ubuntu/README.md | 7 ++--- wordpress/README.md | 18 ++++++------ 12 files changed, 141 insertions(+), 127 deletions(-) diff --git a/bash/README.md b/bash/README.md index fa781d8636d0..f2ec3f58b867 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230719`, `devel`, `devel-20230719-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/2e5bf0fdf94a51ea4241ed577fda237146b9ee36/devel/Dockerfile) +- [`devel-20230728`, `devel`, `devel-20230728-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/f30b7f2359bf183873b03eec86b843313ce67a54/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 48f2c6ecdc3d..c414fb6c31fc 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.1-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.1-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.1-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.1-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.1-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.1`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.1-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.1-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.1-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.1-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.1-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.1-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.1-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.1-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.1-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.1-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.1-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.1-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.1-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.1-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.1-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.1-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.1-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.1-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.1-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.1-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.1-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.1-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.1-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.1-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.2-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.2-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.2-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.2-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.2-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.2`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.2-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.2-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.2-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.2-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.2-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.2-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.2-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.2-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.2-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.2-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.2-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.2-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.2-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.2-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.2-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.2-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.2-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.2-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.2-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.2-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.2-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.2-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.2-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.2-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-alpine3.17/Dockerfile) - [`10.0.10-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.10-php8.2-apache`, `10.0-php8.2-apache`, `10.0.10-php8.2`, `10.0-php8.2`, `10.0.10-apache-bookworm`, `10.0-apache-bookworm`, `10.0.10-apache`, `10.0-apache`, `10.0.10`, `10.0`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.10-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.10-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.10-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.10-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.10-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.10-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bullseye/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 9667698eef5f..37021d6e5816 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.55.2`, `5.55`, `5`, `latest`](https://github.com/docker-library/ghost/blob/66c255ce097b60998ff7540ca9be179b75826415/5/debian/Dockerfile) -- [`5.55.2-alpine`, `5.55-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/66c255ce097b60998ff7540ca9be179b75826415/5/alpine/Dockerfile) +- [`5.57.2`, `5.57`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dfc320336f706d06989bd3f9e7d95dfe8a03b700/5/debian/Dockerfile) +- [`5.57.2-alpine`, `5.57-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dfc320336f706d06989bd3f9e7d95dfe8a03b700/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 44f4ed1462f7..b3c6ca2daa50 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`1.21rc3-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bookworm/Dockerfile) -- [`1.21rc3-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bullseye/Dockerfile) -- [`1.21rc3-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc3-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/alpine3.18/Dockerfile) -- [`1.21rc3-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/alpine3.17/Dockerfile) -- [`1.21rc3-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21rc3-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.21rc3-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21rc3-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) +- [`1.21rc4-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bookworm/Dockerfile) +- [`1.21rc4-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bullseye/Dockerfile) +- [`1.21rc4-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc4-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/alpine3.18/Dockerfile) +- [`1.21rc4-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/alpine3.17/Dockerfile) +- [`1.21rc4-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21rc4-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.21rc4-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21rc4-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-1809/Dockerfile) - [`1.20.7-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) - [`1.20.7-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bullseye/Dockerfile) - [`1.20.7-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.7-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.18/Dockerfile) @@ -55,16 +55,16 @@ WARNING: ## Shared Tags -- `1.21rc3`, `1.21-rc`: - - [`1.21rc3-bookworm`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/bookworm/Dockerfile) - - [`1.21rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc3-windowsservercore`, `1.21-rc-windowsservercore`: - - [`1.21rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc3-nanoserver`, `1.21-rc-nanoserver`: - - [`1.21rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/105ef084889a9bd607fbc97aaded37a91a125787/1.21-rc/windows/nanoserver-1809/Dockerfile) +- `1.21rc4`, `1.21-rc`: + - [`1.21rc4-bookworm`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bookworm/Dockerfile) + - [`1.21rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc4-windowsservercore`, `1.21-rc-windowsservercore`: + - [`1.21rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21rc4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) +- `1.21rc4-nanoserver`, `1.21-rc-nanoserver`: + - [`1.21rc4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21rc4-nanoserver-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-1809/Dockerfile) - `1.20.7`, `1.20`, `1`, `latest`: - [`1.20.7-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/julia/README.md b/julia/README.md index c72e625e05ae..a57da902531c 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-alpha1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-alpha1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-alpha1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-alpha1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-alpha1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/alpine3.17/Dockerfile) -- [`1.10.0-alpha1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-alpha1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-beta1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-beta1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-beta1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-beta1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-beta1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-beta1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.2-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) - [`1.9.2-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bullseye/Dockerfile) - [`1.9.2-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.2-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.18/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.10.0-alpha1`, `1.10-rc`, `rc`: - - [`1.10.0-alpha1-bookworm`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-alpha1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/7112758926b226b928afb43d824262dfbe499223/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta1`, `1.10-rc`, `rc`: + - [`1.10.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.2`, `1.9`, `1`, `latest`: - [`1.9.2-bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index e4d0a8151b43..fd608fde30e9 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.15.0-apache`, `4.15-apache`, `4-apache`, `apache`, `4.15.0`, `4.15`, `4`, `latest`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/apache/Dockerfile) -- [`4.15.0-fpm`, `4.15-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/fpm/Dockerfile) -- [`4.15.0-fpm-alpine`, `4.15-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/547d807f2f3df6948d181092a5858822ff28fc8a/fpm-alpine/Dockerfile) +- [`4.15.1-apache`, `4.15-apache`, `4-apache`, `apache`, `4.15.1`, `4.15`, `4`, `latest`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/apache/Dockerfile) +- [`4.15.1-fpm`, `4.15-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/fpm/Dockerfile) +- [`4.15.1-fpm-alpine`, `4.15-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index e771f5d3df18..617c5301de2c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,16 @@ WARNING: ## Simple Tags -- [`7.0.0-rc8-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/Dockerfile) -- [`7.0.0-rc8-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc8-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc8-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc8-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-rc10-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/Dockerfile) +- [`7.0.0-rc10-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-rc10-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-rc10-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-rc10-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.9-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/Dockerfile) +- [`6.0.9-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.9-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.9-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.9-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.8-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.8-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) @@ -51,16 +56,26 @@ WARNING: ## Shared Tags -- `7.0.0-rc8`, `7.0-rc`: - - [`7.0.0-rc8-jammy`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/Dockerfile) - - [`7.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc8-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc8-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dd96142202c828515562f8f821d48d4a4ceff3c7/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.0-rc10`, `7.0-rc`: + - [`7.0.0-rc10-jammy`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/Dockerfile) + - [`7.0.0-rc10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc10-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.0-rc10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-rc10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-rc10-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.0-rc10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-rc10-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.9-rc0`, `6.0-rc`: + - [`6.0.9-rc0-jammy`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/Dockerfile) + - [`6.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.9-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.9-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.8`, `6.0`, `6`, `latest`: - [`6.0.8-jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index f89402a70524..d17cde6a88b5 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.34`, `8.0`, `8`, `latest`, `8.0.34-oracle`, `8.0-oracle`, `8-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.oracle) -- [`8.0.34-debian`, `8.0-debian`, `8-debian`, `debian`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.debian) -- [`5.7.42`, `5.7`, `5`, `5.7.42-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/2baf92d30620d7d123141b98988b0d42d2156351/5.7/Dockerfile.oracle) -- [`5.7.42-debian`, `5.7-debian`, `5-debian`](https://github.com/docker-library/mysql/blob/611aa464a96f69e5d4d4172b14ca829ded162b42/5.7/Dockerfile.debian) +- [`8.1.0`, `8.1`, `8`, `innovation`, `latest`, `8.1.0-oracle`, `8.1-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/eb1850601849ef7ef77a23f017a20debc95d597c/innovation/Dockerfile.oracle) +- [`8.0.34`, `8.0`, `8.0.34-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.oracle) +- [`8.0.34-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.debian) +- [`5.7.43`, `5.7`, `5`, `5.7.43-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/c13cda9c2c9d836af9b3331e8681f8cc8e0a7803/5.7/Dockerfile.oracle) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 8583186290b3..d7ee1edd250d 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-7-jdk-oraclelinux8`, `22-ea-7-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-7-jdk-oracle`, `22-ea-7-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-7-jdk-oraclelinux7`, `22-ea-7-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-7-jdk-bookworm`, `22-ea-7-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/bookworm/Dockerfile) -- [`22-ea-7-jdk-slim-bookworm`, `22-ea-7-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-7-jdk-slim`, `22-ea-7-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-7-jdk-bullseye`, `22-ea-7-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/bullseye/Dockerfile) -- [`22-ea-7-jdk-slim-bullseye`, `22-ea-7-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-7-jdk-windowsservercore-ltsc2022`, `22-ea-7-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-7-jdk-windowsservercore-1809`, `22-ea-7-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-7-jdk-nanoserver-1809`, `22-ea-7-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-32-jdk-oraclelinux8`, `21-ea-32-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-32-jdk-oracle`, `21-ea-32-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-32-jdk-oraclelinux7`, `21-ea-32-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-32-jdk-bookworm`, `21-ea-32-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/bookworm/Dockerfile) -- [`21-ea-32-jdk-slim-bookworm`, `21-ea-32-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-32-jdk-slim`, `21-ea-32-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-32-jdk-bullseye`, `21-ea-32-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/bullseye/Dockerfile) -- [`21-ea-32-jdk-slim-bullseye`, `21-ea-32-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-32-jdk-windowsservercore-ltsc2022`, `21-ea-32-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-32-jdk-windowsservercore-1809`, `21-ea-32-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-32-jdk-nanoserver-1809`, `21-ea-32-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-8-jdk-oraclelinux8`, `22-ea-8-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-8-jdk-oracle`, `22-ea-8-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-8-jdk-oraclelinux7`, `22-ea-8-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-8-jdk-bookworm`, `22-ea-8-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/bookworm/Dockerfile) +- [`22-ea-8-jdk-slim-bookworm`, `22-ea-8-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-8-jdk-slim`, `22-ea-8-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-8-jdk-bullseye`, `22-ea-8-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/bullseye/Dockerfile) +- [`22-ea-8-jdk-slim-bullseye`, `22-ea-8-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-8-jdk-windowsservercore-ltsc2022`, `22-ea-8-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-8-jdk-windowsservercore-1809`, `22-ea-8-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-8-jdk-nanoserver-1809`, `22-ea-8-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-33-jdk-oraclelinux8`, `21-ea-33-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-33-jdk-oracle`, `21-ea-33-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-33-jdk-oraclelinux7`, `21-ea-33-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-33-jdk-bookworm`, `21-ea-33-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/bookworm/Dockerfile) +- [`21-ea-33-jdk-slim-bookworm`, `21-ea-33-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-33-jdk-slim`, `21-ea-33-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-33-jdk-bullseye`, `21-ea-33-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/bullseye/Dockerfile) +- [`21-ea-33-jdk-slim-bullseye`, `21-ea-33-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-33-jdk-windowsservercore-ltsc2022`, `21-ea-33-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-33-jdk-windowsservercore-1809`, `21-ea-33-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-33-jdk-nanoserver-1809`, `21-ea-33-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-7-jdk`, `22-ea-7`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-7-jdk-windowsservercore`, `22-ea-7-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-7-jdk-nanoserver`, `22-ea-7-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2845bbf34dc65f4723e7f2f08f4df50928d7d6fe/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-32-jdk`, `21-ea-32`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-32-jdk-windowsservercore`, `21-ea-32-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-32-jdk-nanoserver`, `21-ea-32-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6642f6693fe16dad08e91cbb7ee2391959bb68c4/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-8-jdk`, `22-ea-8`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-8-jdk-windowsservercore`, `22-ea-8-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-8-jdk-nanoserver`, `22-ea-8-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-33-jdk`, `21-ea-33`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-33-jdk-windowsservercore`, `21-ea-33-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-33-jdk-nanoserver`, `21-ea-33-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c7686a8bf11c..04e46f57afca 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/ffef74ec93c905f714e91dc412dcf0905e3a6429/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ffef74ec93c905f714e91dc412dcf0905e3a6429/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/ubuntu/Dockerfile) +- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.12/ubuntu/Dockerfile) - [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0eaef730173758725c5f7c60c11e8dd319a5255a/3.12/alpine/Dockerfile) +- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.12/alpine/Dockerfile) - [`3.12.2-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a6ecfb64ec6abe19f03c28ad3bc2784edb450c63/3.11/ubuntu/Dockerfile) +- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.11/ubuntu/Dockerfile) - [`3.11.20-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a6ecfb64ec6abe19f03c28ad3bc2784edb450c63/3.11/alpine/Dockerfile) +- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.11/alpine/Dockerfile) - [`3.11.20-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/055e60ff8d72e2a920926388cfc79444e7d358d3/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/055e60ff8d72e2a920926388cfc79444e7d358d3/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/cf4610a0eb5bc0c5ee89d31badb0c6887f478c9d/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/cf4610a0eb5bc0c5ee89d31badb0c6887f478c9d/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index aba5b6276138..625c58c11191 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20230624`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230624-079a169a&id=079a169aa8fe8cc7c59e960bc02f33628a255064) +- [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) - [`22.04`, `jammy-20230624`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230624-2cc72fa2&id=2cc72fa2e3553cc25ee5e0157929e35f2510dbd8) -- [`22.10`, `kinetic-20230624`, `kinetic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-kinetic-amd64-20230624-0332f3c2&id=0332f3c29e2657ed4711edc6fccaac061074f21c) -- [`23.04`, `lunar-20230615`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230615-3537c573&id=3537c5732f5b3fc814f5762acf34b890a8d79a13) -- [`23.10`, `mantic-20230712`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230712-72dd5f1a&id=72dd5f1ab372097d0dd0e1720e12854f1588e04e) +- [`23.04`, `lunar-20230731`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230731-5313d155&id=5313d155739982dfbee1f9c03d8ede76a2d4ffc9) +- [`23.10`, `mantic-20230801`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230801-5336d144&id=5336d144dbf9de7060cd6ace89f90c63e5b38e28) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 845b127d3cd9..2374fb61faf4 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-RC2-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC2`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC2-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC2-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-RC2-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC2-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-RC2-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC2-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-RC2-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC2-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-RC2-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-RC2-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-RC2-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC2-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-RC2-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-RC2-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/57d58c5a0eae927549836f4ba9f71eec850338b7/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-RC3-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC3`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC3-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC3-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-RC3-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC3-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-RC3-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC3-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-RC3-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC3-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-RC3-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-RC3-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-RC3-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC3-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-RC3-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-RC3-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From b09be1192a75daf815cfaeb0e51ba5678c9c5ecc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Aug 2023 18:09:07 -0700 Subject: [PATCH 0487/2686] Run update.sh --- eclipse-temurin/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index f0992df67acb..3f88c9f474ef 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -82,16 +82,16 @@ WARNING: - [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/20/jdk/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/20/jre/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) @@ -160,7 +160,7 @@ WARNING: - [`17.0.8_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: - - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.2_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: @@ -170,7 +170,7 @@ WARNING: - [`20.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jre`, `20-jre`: - - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.2_9-jre-windowsservercore`, `20-jre-windowsservercore`: From 0cba3150859d3cffa14b6782c0be784921eea4ea Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Fri, 4 Aug 2023 00:14:18 +0800 Subject: [PATCH 0488/2686] perl/content.md: Note about WORKDIR issue with Debian 12 based image - https://github.com/Perl/docker-perl/issues/140 --- perl/content.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/perl/content.md b/perl/content.md index 298e648c158b..9b42b176d579 100644 --- a/perl/content.md +++ b/perl/content.md @@ -66,6 +66,12 @@ If your Perl program is expected to handle signals and fork child processes, it See also [Signals in perlipc](https://perldoc.pl/perlipc#Signals) as well as [Perl/docker-perl#44](https://github.com/Perl/docker-perl/issues/44). +### `COPY` and `WORKDIR` behavior in Debian Bookworm based images (Perl >= 5.38) + +As our Perl images are based on the standard `buildpack-deps` and `debian` images, these inherit the new [merged-usr root filesystem layout](https://wiki.debian.org/UsrMerge) introduced in Debian 12 (Bookworm) which may affect certain build contexts that `COPY` their own `bin`, `sbin`, or `lib` directories into a `WORKDIR /`. Users are encouraged to set `WORKDIR` explicitly to a path other than `/` as much as possible, such as the `/usr/src/app` shown here in the examples, though as of current release our images now default to `WORKDIR /usr/src/app`. + +See also [Perl/docker-perl#140](https://github.com/Perl/docker-perl/issues/140) for further information. + ## Example: Creating a reusable Carton image for Perl projects Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `%%IMAGE%%:carton` image that makes use of the [ONBUILD](https://docs.docker.com/engine/reference/builder/#onbuild) instruction in its `Dockerfile`, like this: From b016d0b7e707e536a8670c3d9285d85cd2881371 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Aug 2023 14:09:03 -0700 Subject: [PATCH 0489/2686] Run update.sh --- caddy/README.md | 51 ++++++++++++++++-------------------------------- spiped/README.md | 2 +- xwiki/README.md | 3 +++ 3 files changed, 21 insertions(+), 35 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index e25e577c799e..863580db7477 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,43 +28,26 @@ WARNING: ## Simple Tags -- [`2.6.4-alpine`, `2.6-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) -- [`2.6.4-builder-alpine`, `2.6-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/builder/Dockerfile) -- [`2.6.4-windowsservercore-1809`, `2.6-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) -- [`2.6.4-windowsservercore-ltsc2022`, `2.6-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) -- [`2.6.4-builder-windowsservercore-1809`, `2.6-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/1809/Dockerfile) -- [`2.6.4-builder-windowsservercore-ltsc2022`, `2.6-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/ltsc2022/Dockerfile) -- [`2.7.0-beta.2-alpine`, `2.7-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/alpine/Dockerfile) -- [`2.7.0-beta.2-builder-alpine`, `2.7-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/builder/Dockerfile) -- [`2.7.0-beta.2-windowsservercore-1809`, `2.7-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) -- [`2.7.0-beta.2-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.0-beta.2-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/1809/Dockerfile) -- [`2.7.0-beta.2-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.2-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/alpine/Dockerfile) +- [`2.7.2-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/builder/Dockerfile) +- [`2.7.2-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) +- [`2.7.2-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.2-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/1809/Dockerfile) +- [`2.7.2-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.6.4`, `2.6`, `2`, `latest`: - - [`2.6.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/6e5a266c6839d6f84eb84f8430ce13a49c1b0aae/2.6/alpine/Dockerfile) - - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) - - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) -- `2.6.4-builder`, `2.6-builder`, `2-builder`, `builder`: - - [`2.6.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/builder/Dockerfile) - - [`2.6.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/1809/Dockerfile) - - [`2.6.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/38f8d57b19ce4ebcd46f214c69bf0c932a4a409e/2.6/windows-builder/ltsc2022/Dockerfile) -- `2.6.4-windowsservercore`, `2.6-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.6.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/1809/Dockerfile) - - [`2.6.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/968a9e779660c4e0711021103eebf610c7979a7e/2.6/windows/ltsc2022/Dockerfile) -- `2.7.0-beta.2`, `2.7`: - - [`2.7.0-beta.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/alpine/Dockerfile) - - [`2.7.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) - - [`2.7.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) -- `2.7.0-beta.2-builder`, `2.7-builder`: - - [`2.7.0-beta.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/builder/Dockerfile) - - [`2.7.0-beta.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/1809/Dockerfile) - - [`2.7.0-beta.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.0-beta.2-windowsservercore`, `2.7-windowsservercore`: - - [`2.7.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/1809/Dockerfile) - - [`2.7.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/21f00011fb6126d6ff94e938fb091da8e7ea69df/2.7/windows/ltsc2022/Dockerfile) +- `2.7.2`, `2.7`, `2`, `latest`: + - [`2.7.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/alpine/Dockerfile) + - [`2.7.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) + - [`2.7.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) +- `2.7.2-builder`, `2.7-builder`, `2-builder`, `builder`: + - [`2.7.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/builder/Dockerfile) + - [`2.7.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/1809/Dockerfile) + - [`2.7.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.2-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.7.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) + - [`2.7.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/spiped/README.md b/spiped/README.md index c4225d932197..723861b86011 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) -- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/32bffc38a1a3efcf0ce6817953230bf352bfb7a8/1.6/alpine/Dockerfile) +- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/c967076534a8ccdac377a6f02c332d0e181c85aa/1.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 714dd8b7e189..6d751c2a2434 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,6 +30,9 @@ WARNING: - [`14`, `14.10`, `14.10.14`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.1`, `15.5-mysql-tomcat`, `15.5.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 9d8964649b23374b8f66b91c63c7f247f384b7f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Aug 2023 15:09:13 -0700 Subject: [PATCH 0490/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index bb315241ae08..d2963aff5054 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.10.0-enterprise-bullseye`, `5.10-enterprise-bullseye`, `5-enterprise-bullseye`, `5.10.0-enterprise`, `5.10-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/bullseye/enterprise/Dockerfile) - [`5.10.0-community-ubi8`, `5.10-community-ubi8`, `5-community-ubi8`, `5.10.0-ubi8`, `5.10-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/community/Dockerfile) - [`5.10.0-enterprise-ubi8`, `5.10-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/enterprise/Dockerfile) -- [`4.4.23`, `4.4.23-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/community/Dockerfile) -- [`4.4.23-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8b2ff2c35aa0f2a28f6c0ec612388e3549c10cdb/4.4.23/enterprise/Dockerfile) +- [`4.4.24`, `4.4.24-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/community/Dockerfile) +- [`4.4.24-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 1dfe309a00450261ac5d88abc194d32f6b52ee7a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Aug 2023 16:09:06 -0700 Subject: [PATCH 0491/2686] Run update.sh --- ghost/README.md | 4 +-- perl/README.md | 86 ++++++++++++++++++++++++++----------------------- 2 files changed, 48 insertions(+), 42 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 37021d6e5816..b27ea942ce65 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.57.2`, `5.57`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dfc320336f706d06989bd3f9e7d95dfe8a03b700/5/debian/Dockerfile) -- [`5.57.2-alpine`, `5.57-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dfc320336f706d06989bd3f9e7d95dfe8a03b700/5/alpine/Dockerfile) +- [`5.57.3`, `5.57`, `5`, `latest`](https://github.com/docker-library/ghost/blob/58ec9a3f50429c20df8c9c5583e6583039926229/5/debian/Dockerfile) +- [`5.57.3-alpine`, `5.57-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/58ec9a3f50429c20df8c9c5583e6583039926229/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 9ec147802da1..22b6a7596e19 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.1`, `5.39`, `devel`, `5.39.1-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main-bookworm/Dockerfile) -- [`5.39.1-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main-bullseye/Dockerfile) -- [`5.39.1-slim`, `5.39-slim`, `devel-slim`, `5.39.1-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim-bookworm/Dockerfile) -- [`5.39.1-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim-bullseye/Dockerfile) -- [`5.39.1-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.1-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main,threaded-bookworm/Dockerfile) -- [`5.39.1-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-main,threaded-bullseye/Dockerfile) -- [`5.39.1-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.1-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim,threaded-bookworm/Dockerfile) -- [`5.39.1-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f8cd8aae54a8dc174eb15b0c21cfbf38ca839c23/5.039.001-slim,threaded-bullseye/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.1`, `5.39`, `devel`, `5.39.1-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main-bookworm/Dockerfile) +- [`5.39.1-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main-bullseye/Dockerfile) +- [`5.39.1-slim`, `5.39-slim`, `devel-slim`, `5.39.1-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim-bookworm/Dockerfile) +- [`5.39.1-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim-bullseye/Dockerfile) +- [`5.39.1-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.1-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main,threaded-bookworm/Dockerfile) +- [`5.39.1-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main,threaded-bullseye/Dockerfile) +- [`5.39.1-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.1-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim,threaded-bookworm/Dockerfile) +- [`5.39.1-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) @@ -152,6 +152,12 @@ If your Perl program is expected to handle signals and fork child processes, it See also [Signals in perlipc](https://perldoc.pl/perlipc#Signals) as well as [Perl/docker-perl#44](https://github.com/Perl/docker-perl/issues/44). +### `COPY` and `WORKDIR` behavior in Debian Bookworm based images (Perl >= 5.38) + +As our Perl images are based on the standard `buildpack-deps` and `debian` images, these inherit the new [merged-usr root filesystem layout](https://wiki.debian.org/UsrMerge) introduced in Debian 12 (Bookworm) which may affect certain build contexts that `COPY` their own `bin`, `sbin`, or `lib` directories into a `WORKDIR /`. Users are encouraged to set `WORKDIR` explicitly to a path other than `/` as much as possible, such as the `/usr/src/app` shown here in the examples, though as of current release our images now default to `WORKDIR /usr/src/app`. + +See also [Perl/docker-perl#140](https://github.com/Perl/docker-perl/issues/140) for further information. + ## Example: Creating a reusable Carton image for Perl projects Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `perl:carton` image that makes use of the [ONBUILD](https://docs.docker.com/engine/reference/builder/#onbuild) instruction in its `Dockerfile`, like this: From ccb6d64ffa37726a319eb5af868905f4c34857af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Aug 2023 17:09:04 -0700 Subject: [PATCH 0492/2686] Run update.sh --- amazoncorretto/README.md | 77 ++++++++++++++++++++-------------------- couchbase/README.md | 2 +- openjdk/README.md | 72 ++++++++++++++++++------------------- rust/README.md | 16 ++++----- 4 files changed, 84 insertions(+), 83 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index d697649f25d8..bd2d3c274984 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,44 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/17/jdk/alpine/3.18/Dockerfile) -- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/al2-generic/Dockerfile) -- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.17/Dockerfile) -- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/f379e16590ae6a8c15df6982aecbb0bab6b6fe38/20/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.18/Dockerfile) +- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/al2-generic/Dockerfile) +- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/al2023-generic/Dockerfile) +- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.17/Dockerfile) +- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) diff --git a/couchbase/README.md b/couchbase/README.md index 4f073263895c..b1ea6b463c1c 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -26,7 +26,7 @@ WARNING: - [`7.2.0`, `enterprise-7.2.0`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/enterprise/couchbase-server/7.2.0/Dockerfile) - [`community-7.2.0`, `community`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/community/couchbase-server/7.2.0/Dockerfile) -- [`7.1.4`, `enterprise-7.1.4`](https://github.com/couchbase/docker/blob/c497eda885d5b9869ad45d0432e3b382d6b328c1/enterprise/couchbase-server/7.1.4/Dockerfile) +- [`7.1.5`, `enterprise-7.1.5`](https://github.com/couchbase/docker/blob/1ce6c78f29c9be97c67c2588b1ceaa57ad1b49c6/enterprise/couchbase-server/7.1.5/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index d7ee1edd250d..fe1d0a42fea7 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-8-jdk-oraclelinux8`, `22-ea-8-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-8-jdk-oracle`, `22-ea-8-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-8-jdk-oraclelinux7`, `22-ea-8-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-8-jdk-bookworm`, `22-ea-8-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/bookworm/Dockerfile) -- [`22-ea-8-jdk-slim-bookworm`, `22-ea-8-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-8-jdk-slim`, `22-ea-8-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-8-jdk-bullseye`, `22-ea-8-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/bullseye/Dockerfile) -- [`22-ea-8-jdk-slim-bullseye`, `22-ea-8-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-8-jdk-windowsservercore-ltsc2022`, `22-ea-8-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-8-jdk-windowsservercore-1809`, `22-ea-8-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-8-jdk-nanoserver-1809`, `22-ea-8-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-33-jdk-oraclelinux8`, `21-ea-33-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-33-jdk-oracle`, `21-ea-33-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-33-jdk-oraclelinux7`, `21-ea-33-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-33-jdk-bookworm`, `21-ea-33-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/bookworm/Dockerfile) -- [`21-ea-33-jdk-slim-bookworm`, `21-ea-33-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-33-jdk-slim`, `21-ea-33-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-33-jdk-bullseye`, `21-ea-33-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/bullseye/Dockerfile) -- [`21-ea-33-jdk-slim-bullseye`, `21-ea-33-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-33-jdk-windowsservercore-ltsc2022`, `21-ea-33-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-33-jdk-windowsservercore-1809`, `21-ea-33-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-33-jdk-nanoserver-1809`, `21-ea-33-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-9-jdk-oraclelinux8`, `22-ea-9-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-9-jdk-oracle`, `22-ea-9-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-9-jdk-oraclelinux7`, `22-ea-9-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-9-jdk-bookworm`, `22-ea-9-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/bookworm/Dockerfile) +- [`22-ea-9-jdk-slim-bookworm`, `22-ea-9-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-9-jdk-slim`, `22-ea-9-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-9-jdk-bullseye`, `22-ea-9-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/bullseye/Dockerfile) +- [`22-ea-9-jdk-slim-bullseye`, `22-ea-9-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-9-jdk-windowsservercore-ltsc2022`, `22-ea-9-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-9-jdk-windowsservercore-1809`, `22-ea-9-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-9-jdk-nanoserver-1809`, `22-ea-9-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-ea-34-jdk-oraclelinux8`, `21-ea-34-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-34-jdk-oracle`, `21-ea-34-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux8/Dockerfile) +- [`21-ea-34-jdk-oraclelinux7`, `21-ea-34-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux7/Dockerfile) +- [`21-ea-34-jdk-bookworm`, `21-ea-34-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/bookworm/Dockerfile) +- [`21-ea-34-jdk-slim-bookworm`, `21-ea-34-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-34-jdk-slim`, `21-ea-34-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/slim-bookworm/Dockerfile) +- [`21-ea-34-jdk-bullseye`, `21-ea-34-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/bullseye/Dockerfile) +- [`21-ea-34-jdk-slim-bullseye`, `21-ea-34-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/slim-bullseye/Dockerfile) +- [`21-ea-34-jdk-windowsservercore-ltsc2022`, `21-ea-34-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-ea-34-jdk-windowsservercore-1809`, `21-ea-34-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-ea-34-jdk-nanoserver-1809`, `21-ea-34-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-8-jdk`, `22-ea-8`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-8-jdk-windowsservercore`, `22-ea-8-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-8-jdk-nanoserver`, `22-ea-8-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/01f8c7916512f208f188fecd8cd8398590d1d839/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-33-jdk`, `21-ea-33`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-33-jdk-windowsservercore`, `21-ea-33-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-33-jdk-nanoserver`, `21-ea-33-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8993983c99b9ba0072bcf328efd1294bd68176b2/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-9-jdk`, `22-ea-9`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-9-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-9-jdk-windowsservercore`, `22-ea-9-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-9-jdk-nanoserver`, `22-ea-9-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-ea-34-jdk`, `21-ea-34`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: + - [`21-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux8/Dockerfile) + - [`21-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-34-jdk-windowsservercore`, `21-ea-34-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-ea-34-jdk-nanoserver`, `21-ea-34-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index e0bcfe572e52..b365becbecf4 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.71-buster`, `1.71.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/buster/Dockerfile) -- [`1-slim-buster`, `1.71-slim-buster`, `1.71.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.71-bullseye`, `1.71.0-bullseye`, `bullseye`, `1`, `1.71`, `1.71.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.71-slim-bullseye`, `1.71.0-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.71-slim`, `1.71.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.71-bookworm`, `1.71.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.71-slim-bookworm`, `1.71.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.71-alpine3.17`, `1.71.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.71-alpine3.18`, `1.71.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.71-alpine`, `1.71.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a8a2a9d64d1f43ea377570fb938eb37384e561c0/1.71.0/alpine3.18/Dockerfile) +- [`1-buster`, `1.71-buster`, `1.71.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/buster/Dockerfile) +- [`1-slim-buster`, `1.71-slim-buster`, `1.71.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.71-bullseye`, `1.71.1-bullseye`, `bullseye`, `1`, `1.71`, `1.71.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.71-slim-bullseye`, `1.71.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.71-slim`, `1.71.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.71-bookworm`, `1.71.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.71-slim-bookworm`, `1.71.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.71-alpine3.17`, `1.71.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.71-alpine3.18`, `1.71.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.71-alpine`, `1.71.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/alpine3.18/Dockerfile) # Quick reference (cont.) From 182dfba1c2485b8e2bc22acdceadbee15ad4bc9c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Aug 2023 11:09:23 -0700 Subject: [PATCH 0493/2686] Run update.sh --- aerospike/README.md | 4 ++-- fedora/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 568e8702dbb7..d3b6be6e766f 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.3.0.6`, `ee-6.3.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a67d9e79b3dd559ac3e0a42cb477a05e9c22f5c/enterprise/debian11/Dockerfile) -- [`ce-6.3.0.6`, `ce-6.3.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a67d9e79b3dd559ac3e0a42cb477a05e9c22f5c/community/debian11/Dockerfile) +- [`ee-6.4.0.0`, `ee-6.4.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/015a589785216afc74a5e10aa78bcf004bb94387/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.0`, `ce-6.4.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/015a589785216afc74a5e10aa78bcf004bb94387/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index d4c1cf330b68..670a0cb5b685 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d62ceb0391afa940453b39489d8ae399ec2aa653/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d0c2e00adfcf04c5893382ea2549eb51bf52f291/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ba4df9a53e2d6a38e4c9f02ce702df4ab5595ea8/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b508219c490d4379d3f3978961f630c2ac838917/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/6c75c452982317bf623c9633012b05aea9f696b6/x86_64/Dockerfile) +- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/53686b061625775f6369f329a40d8412711bafd1/x86_64/Dockerfile) # Quick reference (cont.) From 388783024e937bd87ee2f786fa308dc2ff123099 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Aug 2023 14:20:20 -0700 Subject: [PATCH 0494/2686] Run update.sh --- php/README.md | 79 ++++++++++++++++++++------------------------------- 1 file changed, 31 insertions(+), 48 deletions(-) diff --git a/php/README.md b/php/README.md index 4b5547e96078..c9dd58cfe91b 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0beta1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta1-bookworm`, `8.3-rc-bookworm`, `8.3.0beta1-cli`, `8.3-rc-cli`, `8.3.0beta1`, `8.3-rc`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0beta1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0beta1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0beta1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0beta1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0beta1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0beta1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0beta1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0beta1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0beta1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0beta1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0beta1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0beta1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0beta1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b64e89390d31c23e3f51d057996d569866deb10b/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0beta2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta2-bookworm`, `8.3-rc-bookworm`, `8.3.0beta2-cli`, `8.3-rc-cli`, `8.3.0beta2`, `8.3-rc`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0beta2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0beta2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0beta2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0beta2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0beta2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0beta2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0beta2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0beta2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0beta2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0beta2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0beta2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0beta2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0beta2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/zts/Dockerfile) - [`8.2.9RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.9RC1-bookworm`, `8.2-rc-bookworm`, `8.2.9RC1-cli`, `8.2-rc-cli`, `8.2.9RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/cli/Dockerfile) - [`8.2.9RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.9RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/apache/Dockerfile) - [`8.2.9RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.9RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/fpm/Dockerfile) @@ -66,40 +66,23 @@ WARNING: - [`8.2.8-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.8-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/cli/Dockerfile) - [`8.2.8-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.8-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.22RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.22RC1-bookworm`, `8.1-rc-bookworm`, `8.1.22RC1-cli`, `8.1-rc-cli`, `8.1.22RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.22RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.22RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.22RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.22RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.22RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.22RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.22RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.22RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.22RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.22RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.22RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.22RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.22RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.22RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.22RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.22RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.22RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.22RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.22RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.22RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.22RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.22RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.22RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.22RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.22RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.22RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.22RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/67c814aaf586eb7b4a1670f8faf172564b163a7e/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.21-cli-bookworm`, `8.1-cli-bookworm`, `8.1.21-bookworm`, `8.1-bookworm`, `8.1.21-cli`, `8.1-cli`, `8.1.21`, `8.1`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/cli/Dockerfile) -- [`8.1.21-apache-bookworm`, `8.1-apache-bookworm`, `8.1.21-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/apache/Dockerfile) -- [`8.1.21-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.21-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/fpm/Dockerfile) -- [`8.1.21-zts-bookworm`, `8.1-zts-bookworm`, `8.1.21-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bookworm/zts/Dockerfile) -- [`8.1.21-cli-bullseye`, `8.1-cli-bullseye`, `8.1.21-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/cli/Dockerfile) -- [`8.1.21-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/apache/Dockerfile) -- [`8.1.21-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/fpm/Dockerfile) -- [`8.1.21-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/bullseye/zts/Dockerfile) -- [`8.1.21-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.21-alpine3.18`, `8.1-alpine3.18`, `8.1.21-cli-alpine`, `8.1-cli-alpine`, `8.1.21-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.21-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.21-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.21-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.21-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.21-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.21-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.21-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.21-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.21-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.21-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.21-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.21-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6cb0a331566b66ae30c14884cc93cd2b3218d324/8.1/alpine3.16/zts/Dockerfile) +- [`8.1.22-cli-bookworm`, `8.1-cli-bookworm`, `8.1.22-bookworm`, `8.1-bookworm`, `8.1.22-cli`, `8.1-cli`, `8.1.22`, `8.1`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/cli/Dockerfile) +- [`8.1.22-apache-bookworm`, `8.1-apache-bookworm`, `8.1.22-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/apache/Dockerfile) +- [`8.1.22-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.22-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/fpm/Dockerfile) +- [`8.1.22-zts-bookworm`, `8.1-zts-bookworm`, `8.1.22-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/zts/Dockerfile) +- [`8.1.22-cli-bullseye`, `8.1-cli-bullseye`, `8.1.22-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/cli/Dockerfile) +- [`8.1.22-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/apache/Dockerfile) +- [`8.1.22-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/fpm/Dockerfile) +- [`8.1.22-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/zts/Dockerfile) +- [`8.1.22-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.22-alpine3.18`, `8.1-alpine3.18`, `8.1.22-cli-alpine`, `8.1-cli-alpine`, `8.1.22-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.22-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.22-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.22-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.22-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.22-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.22-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.22-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.22-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.22-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.22-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.22-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.22-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/zts/Dockerfile) - [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/cli/Dockerfile) - [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/apache/Dockerfile) - [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/fpm/Dockerfile) From 31364fc527d0d0df88f6a353d6d763daa49582c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Aug 2023 17:09:07 -0700 Subject: [PATCH 0495/2686] Run update.sh --- ghost/README.md | 4 ++-- oraclelinux/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b27ea942ce65..ff6502bfa9a3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.57.3`, `5.57`, `5`, `latest`](https://github.com/docker-library/ghost/blob/58ec9a3f50429c20df8c9c5583e6583039926229/5/debian/Dockerfile) -- [`5.57.3-alpine`, `5.57-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/58ec9a3f50429c20df8c9c5583e6583039926229/5/alpine/Dockerfile) +- [`5.58.0`, `5.58`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3253874ab556131adb078ee57e521be6462e3a81/5/debian/Dockerfile) +- [`5.58.0-alpine`, `5.58-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3253874ab556131adb078ee57e521be6462e3a81/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index b2b1c03d0d27..630b9de9b383 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/23954d8c46127085cd6dbdb8b8a10f2beca7ba94/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7-slim-fips/Dockerfile) # Quick reference (cont.) From 5131ad3bebf45f1435cae90f912cefbab2bd11e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Aug 2023 12:09:10 -0700 Subject: [PATCH 0496/2686] Run update.sh --- alpine/README.md | 8 ++++---- amazonlinux/README.md | 6 +++--- crate/README.md | 4 ++-- nats/README.md | 22 +++++++++++----------- odoo/README.md | 6 +++--- photon/README.md | 6 +++--- swipl/README.md | 4 ++-- 7 files changed, 28 insertions(+), 28 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 123e10163042..23f2e951d57b 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c025403b1536857f35630b3c7fe5aabf8b6d256a/x86_64/Dockerfile) -- [`3.18.2`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/66fa0fe063bbb4f03220088a4f4d8bb34db1b803/x86_64/Dockerfile) -- [`3.17.4`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/e229397d4700b27c523f966afbddc420674f0d34/x86_64/Dockerfile) -- [`3.16.6`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/9d643ac53dd82876d3f700dfb8e4edf91982f171/x86_64/Dockerfile) -- [`3.15.9`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/87b711179ac0b3685f8c590428bcc6470a8fd78b/x86_64/Dockerfile) +- [`3.18.3`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/1ff397d1b9e6872e19adc93d6ede0cb638a2418a/x86_64/Dockerfile) +- [`3.17.5`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/bb3a15580db27a6a5f75909040f98ac1ac6d39c1/x86_64/Dockerfile) +- [`3.16.7`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6a4bd9a98102f701834ef7d6fe2215dc0b3288c2/x86_64/Dockerfile) +- [`3.15.10`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/e16b9737b016b9275598e6946a677ee4205070ba/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 61a2b0d8b1a8..939f62ad3f98 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.1.20230719.0`](https://github.com/amazonlinux/container-images/blob/ae2ef2f28d65c72f4ae6f5823066e80770d22f51/Dockerfile) -- [`2`, `2.0.20230719.0`](https://github.com/amazonlinux/container-images/blob/0f44358ef4b48bab8bdb26ffca3f58ca96f1f9f4/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230718.0`](https://github.com/amazonlinux/container-images/blob/8095435c93108a9b7c69f482175eddd47b32dc8a/Dockerfile) +- [`2023`, `latest`, `2023.1.20230725.0`](https://github.com/amazonlinux/container-images/blob/309a1ec082a5ea420a3801781f91a7796764143d/Dockerfile) +- [`2`, `2.0.20230727.0`](https://github.com/amazonlinux/container-images/blob/0270a0f82bb7e12190531be44d4516fd6274181a/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230724.0`](https://github.com/amazonlinux/container-images/blob/4000dd6f1d663b0609563b9662398f6d83d88475/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index c6a71d7a6050..c5c5c83ed076 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/17ddede061ecd2286de161a963191c53fa61a0c0/Dockerfile) -- [`5.3.4`, `5.3`](https://github.com/crate/docker-crate/blob/0b697f938f9962503f1ec1af17f81661b042610c/Dockerfile) +- [`5.4.1`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/fdbcc2564f40520e2711877f215b06328398b449/Dockerfile) +- [`5.3.5`, `5.3`](https://github.com/crate/docker-crate/blob/d7b77982aa5252343571591ea347fbfcdd468ab7/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 203197e566a0..6f527d9fb332 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.20-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.20-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/alpine3.18/Dockerfile) -- [`2.9.20-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.20-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/scratch/Dockerfile) -- [`2.9.20-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/windowsservercore-1809/Dockerfile) -- [`2.9.20-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) +- [`2.9.21-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.21-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/alpine3.18/Dockerfile) +- [`2.9.21-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.21-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/scratch/Dockerfile) +- [`2.9.21-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/windowsservercore-1809/Dockerfile) +- [`2.9.21-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.20`, `2.9`, `2`, `latest`: - - [`2.9.20-scratch`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/scratch/Dockerfile) - - [`2.9.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) -- `2.9.20-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.20-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/windowsservercore-1809/Dockerfile) -- `2.9.20-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/6ee3723373975f65c7b446e20d4a938a5c5a5567/2.9.20/nanoserver-1809/Dockerfile) +- `2.9.21`, `2.9`, `2`, `latest`: + - [`2.9.21-scratch`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/scratch/Dockerfile) + - [`2.9.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) +- `2.9.21-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.21-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/windowsservercore-1809/Dockerfile) +- `2.9.21-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 5ec32c747894..270f3a3807e1 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/80cde78131df9c17dc0c370ed8f8db1a33c54692/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/14.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index bcac926809c5..21466946d412 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230729`, `latest`](https://github.com/vmware/photon-docker-image/blob/73d7b687a43e39251d305239751796343cdbac5d/docker/Dockerfile) -- [`4.0`, `4.0-20230729`](https://github.com/vmware/photon-docker-image/blob/79534947b866070f2e2ad119e0960ac4ba3589de/docker/Dockerfile) -- [`3.0`, `3.0-20230729`](https://github.com/vmware/photon-docker-image/blob/34a52b9b499df7f8977c7bec3c7d092088b1845e/docker/Dockerfile) +- [`5.0`, `5.0-20230805`, `latest`](https://github.com/vmware/photon-docker-image/blob/bb82f90a36d7ca1d2b37e79a0eee40feefa2cf22/docker/Dockerfile) +- [`4.0`, `4.0-20230805`](https://github.com/vmware/photon-docker-image/blob/ccf0d8256cba66ac5b6f6672d8c5d9b8778eaca4/docker/Dockerfile) +- [`3.0`, `3.0-20230805`](https://github.com/vmware/photon-docker-image/blob/8bfea65fd8c9b9c6b10686ce05e51a6ef6335c91/docker/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 053c2ab6ed69..379f5abc8810 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.11`](https://github.com/SWI-Prolog/docker-swipl/blob/8e1d5c2336b3b1856b479aab170108a452200d1e/9.1.11/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/8e1d5c2336b3b1856b479aab170108a452200d1e/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.13`](https://github.com/SWI-Prolog/docker-swipl/blob/e3851850186cded44b986da8095df36f5d87f0df/9.1.13/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/e3851850186cded44b986da8095df36f5d87f0df/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From fcf281c7d1aabd7001f0d8efbc14922d5aa96e0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Aug 2023 17:09:03 -0700 Subject: [PATCH 0497/2686] Run update.sh --- mongo/README.md | 60 +++++++++++++++++++++++++++++++++------------ wordpress/README.md | 18 +++++++------- 2 files changed, 54 insertions(+), 24 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 617c5301de2c..a90df577da2a 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,21 +33,31 @@ WARNING: - [`7.0.0-rc10-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) - [`7.0.0-rc10-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.0-rc10-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.9-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/Dockerfile) -- [`6.0.9-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.9-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.9-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.9-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.9-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/Dockerfile) +- [`6.0.9-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.9-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.9-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.9-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.8-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.8-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.8-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.8-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.20-rc1-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/Dockerfile) +- [`5.0.20-rc1-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.20-rc1-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.20-rc1-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.20-rc1-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.19-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) - [`5.0.19-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.19-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.19-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.19-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.24-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) +- [`4.4.24-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.24-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.24-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.24-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.23-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) - [`4.4.23-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.23-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) @@ -66,16 +76,16 @@ WARNING: - `7.0.0-rc10-nanoserver`, `7.0-rc-nanoserver`: - [`7.0.0-rc10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.0-rc10-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.9-rc0`, `6.0-rc`: - - [`6.0.9-rc0-jammy`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/Dockerfile) - - [`6.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.9-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.9-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/68da991e4e3ea1179785a536c42fe775a5e16042/6.0-rc/windows/nanoserver-1809/Dockerfile) +- `6.0.9-rc1`, `6.0-rc`: + - [`6.0.9-rc1-jammy`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/Dockerfile) + - [`6.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-rc1-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-rc1-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.9-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.9-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.8`, `6.0`, `6`, `latest`: - [`6.0.8-jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,6 +96,16 @@ WARNING: - `6.0.8-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - [`6.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.20-rc1`, `5.0-rc`: + - [`5.0.20-rc1-focal`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/Dockerfile) + - [`5.0.20-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.20-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.20-rc1-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.20-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.20-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.20-rc1-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.20-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.20-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.19`, `5.0`, `5`: - [`5.0.19-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) - [`5.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,6 +116,16 @@ WARNING: - `5.0.19-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.24-rc0`, `4.4-rc`: + - [`4.4.24-rc0-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) + - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.24-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.24-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.23`, `4.4`, `4`: - [`4.4.23-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) - [`4.4.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 2374fb61faf4..2bc8d2ab7087 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-RC3-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC3`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC3-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC3-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-RC3-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC3-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-RC3-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC3-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-RC3-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC3-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-RC3-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-RC3-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-RC3-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC3-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-RC3-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-RC3-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fdd0eb67cefbad247fd51723ee6f785e2598d5a/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.3-RC4-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC4`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC4-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC4-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/apache/Dockerfile) +- [`beta-6.3-RC4-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC4-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3-RC4-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC4-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3-RC4-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC4-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/apache/Dockerfile) +- [`beta-6.3-RC4-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3-RC4-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3-RC4-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC4-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/apache/Dockerfile) +- [`beta-6.3-RC4-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3-RC4-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From bd2fbf1e95300c33823dacecd026e4eea33a99c4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Aug 2023 12:17:56 -0700 Subject: [PATCH 0498/2686] Run update.sh --- eclipse-temurin/README.md | 72 +++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 3f88c9f474ef..a074e0e9bc62 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,56 +28,56 @@ WARNING: ## Simple Tags -- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/alpine/Dockerfile.releases.full) -- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/centos/Dockerfile.releases.full) -- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/alpine/Dockerfile.releases.full) +- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/centos/Dockerfile.releases.full) +- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/alpine/Dockerfile.releases.full) -- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/centos/Dockerfile.releases.full) -- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/alpine/Dockerfile.releases.full) +- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/centos/Dockerfile.releases.full) +- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/centos/Dockerfile.releases.full) -- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/centos/Dockerfile.releases.full) +- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/centos/Dockerfile.releases.full) -- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/centos/Dockerfile.releases.full) +- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) @@ -100,7 +100,7 @@ WARNING: ## Shared Tags - `8u382-b05-jdk`, `8-jdk`, `8`: - - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u382-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: @@ -110,7 +110,7 @@ WARNING: - [`8u382-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `8u382-b05-jre`, `8-jre`: - - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/jammy/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u382-b05-jre-windowsservercore`, `8-jre-windowsservercore`: @@ -120,7 +120,7 @@ WARNING: - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.20_8-jdk`, `11-jdk`, `11`: - - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.20_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: @@ -130,7 +130,7 @@ WARNING: - [`11.0.20_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.20_8-jre`, `11-jre`: - - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.20_8-jre-windowsservercore`, `11-jre-windowsservercore`: @@ -140,7 +140,7 @@ WARNING: - [`11.0.20_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.8_7-jdk`, `17-jdk`, `17`: - - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.8_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: @@ -150,7 +150,7 @@ WARNING: - [`17.0.8_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.8_7-jre`, `17-jre`: - - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.8_7-jre-windowsservercore`, `17-jre-windowsservercore`: From 8a428a4c0b270d2a00df53816d704b2bf647b05e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Aug 2023 14:09:46 -0700 Subject: [PATCH 0499/2686] Run update.sh --- bash/README.md | 2 +- buildpack-deps/README.md | 3 -- golang/README.md | 76 ++++++++++---------------- php/README.md | 22 ++++---- python/README.md | 112 +++++++++++++++++++-------------------- rabbitmq/README.md | 20 +++---- 6 files changed, 107 insertions(+), 128 deletions(-) diff --git a/bash/README.md b/bash/README.md index f2ec3f58b867..98047bb93c60 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230728`, `devel`, `devel-20230728-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/f30b7f2359bf183873b03eec86b843313ce67a54/devel/Dockerfile) +- [`devel-20230804`, `devel`, `devel-20230804-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/f6f5ad4f4e5b2367bb48ceed43bf76ce237fffe0/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index fb55f3ad4bbd..b3d6d48af52b 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -42,9 +42,6 @@ WARNING: - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/scm/Dockerfile) - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/Dockerfile) -- [`kinetic-curl`, `22.10-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/kinetic/curl/Dockerfile) -- [`kinetic-scm`, `22.10-scm`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/scm/Dockerfile) -- [`kinetic`, `22.10`](https://github.com/docker-library/buildpack-deps/blob/c96f4f3e1d5bc19fba5c652f57af0a35bb929718/ubuntu/kinetic/Dockerfile) - [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/lunar/curl/Dockerfile) - [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) - [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) diff --git a/golang/README.md b/golang/README.md index b3c6ca2daa50..d932fcd03304 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,63 +28,45 @@ WARNING: ## Simple Tags -- [`1.21rc4-bookworm`, `1.21-rc-bookworm`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bookworm/Dockerfile) -- [`1.21rc4-bullseye`, `1.21-rc-bullseye`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bullseye/Dockerfile) -- [`1.21rc4-alpine3.18`, `1.21-rc-alpine3.18`, `1.21rc4-alpine`, `1.21-rc-alpine`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/alpine3.18/Dockerfile) -- [`1.21rc4-alpine3.17`, `1.21-rc-alpine3.17`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/alpine3.17/Dockerfile) -- [`1.21rc4-windowsservercore-ltsc2022`, `1.21-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21rc4-windowsservercore-1809`, `1.21-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.21rc4-nanoserver-ltsc2022`, `1.21-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21rc4-nanoserver-1809`, `1.21-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-1809/Dockerfile) -- [`1.20.7-bookworm`, `1.20-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) -- [`1.20.7-bullseye`, `1.20-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bullseye/Dockerfile) -- [`1.20.7-alpine3.18`, `1.20-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.20.7-alpine`, `1.20-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.18/Dockerfile) -- [`1.20.7-alpine3.17`, `1.20-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.17/Dockerfile) -- [`1.20.7-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.7-windowsservercore-1809`, `1.20-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.7-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.7-nanoserver-1809`, `1.20-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.12-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bookworm/Dockerfile) -- [`1.19.12-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bullseye/Dockerfile) -- [`1.19.12-alpine3.18`, `1.19-alpine3.18`, `1.19.12-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/alpine3.18/Dockerfile) -- [`1.19.12-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/alpine3.17/Dockerfile) -- [`1.19.12-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.12-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.12-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.12-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-1809/Dockerfile) +- [`1.21.0-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bookworm/Dockerfile) +- [`1.21.0-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bullseye/Dockerfile) +- [`1.21.0-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.0-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/alpine3.18/Dockerfile) +- [`1.21.0-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/alpine3.17/Dockerfile) +- [`1.21.0-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.0-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.0-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.0-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.7-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) +- [`1.20.7-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bullseye/Dockerfile) +- [`1.20.7-alpine3.18`, `1.20-alpine3.18`, `1.20.7-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.18/Dockerfile) +- [`1.20.7-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.17/Dockerfile) +- [`1.20.7-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.7-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.7-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.7-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21rc4`, `1.21-rc`: - - [`1.21rc4-bookworm`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/bookworm/Dockerfile) - - [`1.21rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc4-windowsservercore`, `1.21-rc-windowsservercore`: - - [`1.21rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21rc4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/windowsservercore-1809/Dockerfile) -- `1.21rc4-nanoserver`, `1.21-rc-nanoserver`: - - [`1.21rc4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21rc4-nanoserver-1809`](https://github.com/docker-library/golang/blob/3a7d300a26ad7a99245232f49cad9d871df60fb5/1.21-rc/windows/nanoserver-1809/Dockerfile) -- `1.20.7`, `1.20`, `1`, `latest`: +- `1.21.0`, `1.21`, `1`, `latest`: + - [`1.21.0-bookworm`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bookworm/Dockerfile) + - [`1.21.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.0-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.0-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.7`, `1.20`: - [`1.20.7-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.7-windowsservercore`, `1.20-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.20.7-windowsservercore`, `1.20-windowsservercore`: - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.7-nanoserver`, `1.20-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.20.7-nanoserver`, `1.20-nanoserver`: - [`1.20.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.12`, `1.19`: - - [`1.19.12-bookworm`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/bookworm/Dockerfile) - - [`1.19.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.12-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.12-nanoserver`, `1.19-nanoserver`: - - [`1.19.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/98e07f7c6bdfe926fa95e18c6defa7aa31b38c1d/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index c9dd58cfe91b..114a8bc9367e 100644 --- a/php/README.md +++ b/php/README.md @@ -83,17 +83,17 @@ WARNING: - [`8.1.22-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.22-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/cli/Dockerfile) - [`8.1.22-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/fpm/Dockerfile) - [`8.1.22-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.29-cli-bullseye`, `8.0-cli-bullseye`, `8.0.29-bullseye`, `8.0-bullseye`, `8.0.29-cli`, `8.0-cli`, `8.0.29`, `8.0`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/cli/Dockerfile) -- [`8.0.29-apache-bullseye`, `8.0-apache-bullseye`, `8.0.29-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/apache/Dockerfile) -- [`8.0.29-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.29-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/fpm/Dockerfile) -- [`8.0.29-zts-bullseye`, `8.0-zts-bullseye`, `8.0.29-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/bullseye/zts/Dockerfile) -- [`8.0.29-cli-buster`, `8.0-cli-buster`, `8.0.29-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/cli/Dockerfile) -- [`8.0.29-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/apache/Dockerfile) -- [`8.0.29-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/fpm/Dockerfile) -- [`8.0.29-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/7838b365f3262d70e7b164ffae852407a7a990b7/8.0/buster/zts/Dockerfile) -- [`8.0.29-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.29-alpine3.16`, `8.0-alpine3.16`, `8.0.29-cli-alpine`, `8.0-cli-alpine`, `8.0.29-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.29-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.29-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/fpm/Dockerfile) -- [`8.0.29-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.29-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/1bb258379b76fc0266d337de7800681f5b4a9f09/8.0/alpine3.16/zts/Dockerfile) +- [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) +- [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) +- [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) +- [`8.0.30-zts-bullseye`, `8.0-zts-bullseye`, `8.0.30-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/zts/Dockerfile) +- [`8.0.30-cli-buster`, `8.0-cli-buster`, `8.0.30-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/cli/Dockerfile) +- [`8.0.30-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/apache/Dockerfile) +- [`8.0.30-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/fpm/Dockerfile) +- [`8.0.30-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/zts/Dockerfile) +- [`8.0.30-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.30-alpine3.16`, `8.0-alpine3.16`, `8.0.30-cli-alpine`, `8.0-cli-alpine`, `8.0.30-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/cli/Dockerfile) +- [`8.0.30-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.30-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/fpm/Dockerfile) +- [`8.0.30-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.30-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 42e1492f104a..dbae04f5989b 100644 --- a/python/README.md +++ b/python/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`3.12.0b4-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bookworm/Dockerfile) -- [`3.12.0b4-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0b4-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0b4-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bullseye/Dockerfile) -- [`3.12.0b4-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0b4-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0b4-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0b4-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0b4-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0b4-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) -- [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bookworm/Dockerfile) -- [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/bullseye/Dockerfile) -- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/slim-bullseye/Dockerfile) -- [`3.11.4-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.4-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.18/Dockerfile) -- [`3.11.4-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/alpine3.17/Dockerfile) -- [`3.11.4-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.4-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.12-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/bookworm/Dockerfile) -- [`3.10.12-slim-bookworm`, `3.10-slim-bookworm`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/slim-bookworm/Dockerfile) -- [`3.10.12-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/bullseye/Dockerfile) -- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/slim-bullseye/Dockerfile) -- [`3.10.12-alpine3.18`, `3.10-alpine3.18`, `3.10.12-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.18/Dockerfile) -- [`3.10.12-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/8f971d595fff0cc134370916a069bfedc5887308/3.10/alpine3.17/Dockerfile) -- [`3.9.17-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/bookworm/Dockerfile) -- [`3.9.17-slim-bookworm`, `3.9-slim-bookworm`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/slim-bookworm/Dockerfile) -- [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/bullseye/Dockerfile) -- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/slim-bullseye/Dockerfile) -- [`3.9.17-alpine3.18`, `3.9-alpine3.18`, `3.9.17-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.18/Dockerfile) -- [`3.9.17-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/40bd50cfcf3551fc506b45e47003db9c52c5fec7/3.9/alpine3.17/Dockerfile) -- [`3.8.17-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/bookworm/Dockerfile) -- [`3.8.17-slim-bookworm`, `3.8-slim-bookworm`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/slim-bookworm/Dockerfile) -- [`3.8.17-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/bullseye/Dockerfile) -- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/slim-bullseye/Dockerfile) -- [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.18/Dockerfile) -- [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/db8907eb3797ad147b59759aa1e6d7708a3fc2ce/3.8/alpine3.17/Dockerfile) -- [`3.7.17-bookworm`, `3.7-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/bookworm/Dockerfile) -- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/slim-bookworm/Dockerfile) -- [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/bullseye/Dockerfile) -- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/slim-bullseye/Dockerfile) -- [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.18/Dockerfile) -- [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/00b80a3dfc595e9c58ec52cc9ae8349cf10767a4/3.7/alpine3.17/Dockerfile) +- [`3.12.0rc1-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bookworm/Dockerfile) +- [`3.12.0rc1-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0rc1-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bullseye/Dockerfile) +- [`3.12.0rc1-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0rc1-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0rc1-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0rc1-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0rc1-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bookworm/Dockerfile) +- [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/slim-bookworm/Dockerfile) +- [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bullseye/Dockerfile) +- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/slim-bullseye/Dockerfile) +- [`3.11.4-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.4-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/alpine3.18/Dockerfile) +- [`3.11.4-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/alpine3.17/Dockerfile) +- [`3.11.4-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.4-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.12-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bookworm/Dockerfile) +- [`3.10.12-slim-bookworm`, `3.10-slim-bookworm`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/slim-bookworm/Dockerfile) +- [`3.10.12-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bullseye/Dockerfile) +- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/slim-bullseye/Dockerfile) +- [`3.10.12-alpine3.18`, `3.10-alpine3.18`, `3.10.12-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/alpine3.18/Dockerfile) +- [`3.10.12-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/alpine3.17/Dockerfile) +- [`3.9.17-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bookworm/Dockerfile) +- [`3.9.17-slim-bookworm`, `3.9-slim-bookworm`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/slim-bookworm/Dockerfile) +- [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bullseye/Dockerfile) +- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/slim-bullseye/Dockerfile) +- [`3.9.17-alpine3.18`, `3.9-alpine3.18`, `3.9.17-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/alpine3.18/Dockerfile) +- [`3.9.17-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/alpine3.17/Dockerfile) +- [`3.8.17-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bookworm/Dockerfile) +- [`3.8.17-slim-bookworm`, `3.8-slim-bookworm`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/slim-bookworm/Dockerfile) +- [`3.8.17-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bullseye/Dockerfile) +- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/slim-bullseye/Dockerfile) +- [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/alpine3.18/Dockerfile) +- [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/alpine3.17/Dockerfile) +- [`3.7.17-bookworm`, `3.7-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) +- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/slim-bookworm/Dockerfile) +- [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bullseye/Dockerfile) +- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/slim-bullseye/Dockerfile) +- [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.18/Dockerfile) +- [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.17/Dockerfile) ## Shared Tags -- `3.12.0b4`, `3.12-rc`: - - [`3.12.0b4-bookworm`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/bookworm/Dockerfile) - - [`3.12.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0b4-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/aa70e60e6cb94c633b5b1c68e14333436cc263c4/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc1`, `3.12-rc`: + - [`3.12.0rc1-bookworm`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bookworm/Dockerfile) + - [`3.12.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc1-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.4`, `3.11`, `3`, `latest`: - - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile) - - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bookworm/Dockerfile) + - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.4-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b744d9708a2fb8e2295198ef146341c415e9bc28/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.12`, `3.10`: - - [`3.10.12-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.10/bookworm/Dockerfile) + - [`3.10.12-bookworm`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bookworm/Dockerfile) - `3.9.17`, `3.9`: - - [`3.9.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.9/bookworm/Dockerfile) + - [`3.9.17-bookworm`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bookworm/Dockerfile) - `3.8.17`, `3.8`: - - [`3.8.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.8/bookworm/Dockerfile) + - [`3.8.17-bookworm`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bookworm/Dockerfile) - `3.7.17`, `3.7`: - - [`3.7.17-bookworm`](https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.7/bookworm/Dockerfile) + - [`3.7.17-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 04e46f57afca..887e1f9cedc3 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.12/ubuntu/Dockerfile) +- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/ubuntu/Dockerfile) - [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.12/alpine/Dockerfile) +- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/alpine/Dockerfile) - [`3.12.2-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.11/ubuntu/Dockerfile) +- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.11/ubuntu/Dockerfile) - [`3.11.20-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.11/alpine/Dockerfile) +- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.11/alpine/Dockerfile) - [`3.11.20-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/23170d74456dd7ab117f39fd46fc21a7e826f577/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 05e67faa4beba0d4e8eabf762c6c8db38e3bc367 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Aug 2023 17:50:36 -0700 Subject: [PATCH 0500/2686] Run update.sh --- rocket.chat/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c71d2674b841..b10ae0eae2ff 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.0`, `6.2`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.2/Dockerfile) -- [`6.1.7`, `6.1`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.1/Dockerfile) -- [`6.0.7`, `6.0`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/6.0/Dockerfile) -- [`5.4.9`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/cc14a45a22b8cd668222e29061dfc33274a5572c/5.4/Dockerfile) +- [`6.3.0`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/6.3/Dockerfile) +- [`6.2.11`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/6.2/Dockerfile) +- [`5.4.10`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/5.4/Dockerfile) # Quick reference (cont.) From 96c7b8518a57f7d981e74d85d48c13b0e1ae7dfd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Aug 2023 15:17:58 -0700 Subject: [PATCH 0501/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 630b9de9b383..c4164f482a2b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/99900d09aa0e41d686a3b4e36fc5ef40b60c4337/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7-slim-fips/Dockerfile) # Quick reference (cont.) From dbdc7a97f0f8f07263890d9f1a50b7f51ddc0c84 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Aug 2023 16:09:04 -0700 Subject: [PATCH 0502/2686] Run update.sh --- haproxy/README.md | 12 ++++++------ wordpress/README.md | 27 +++++++++------------------ 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 8df877cd3d65..3a12896c3913 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,12 +26,12 @@ WARNING: - [`2.9-dev2`, `2.9-dev`, `2.9-dev2-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/Dockerfile) - [`2.9-dev2-alpine`, `2.9-dev-alpine`, `2.9-dev2-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/alpine/Dockerfile) -- [`2.8.1`, `2.8`, `lts`, `latest`, `2.8.1-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/Dockerfile) -- [`2.8.1-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.1-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/4fe74fe536642ccfe90c0753767a7f344f820047/2.8/alpine/Dockerfile) -- [`2.7.9`, `2.7`, `2.7.9-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/Dockerfile) -- [`2.7.9-alpine`, `2.7-alpine`, `2.7.9-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/078ca80d6479126a48c24c8ada4b174241bccea3/2.7/alpine/Dockerfile) -- [`2.6.14`, `2.6`, `2.6.14-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/Dockerfile) -- [`2.6.14-alpine`, `2.6-alpine`, `2.6.14-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/3eeba1e19f5660c9584b378e93ec9115f590ccfb/2.6/alpine/Dockerfile) +- [`2.8.2`, `2.8`, `lts`, `latest`, `2.8.2-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/Dockerfile) +- [`2.8.2-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.2-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/alpine/Dockerfile) +- [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) +- [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) +- [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) +- [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/alpine/Dockerfile) - [`2.4.23`, `2.4`, `2.4.23-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/Dockerfile) - [`2.4.23-alpine`, `2.4-alpine`, `2.4.23-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/alpine/Dockerfile) - [`2.2.30`, `2.2`, `2.2.30-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/0e3884218d34cd77b8b59145d05e058be227b334/2.2/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 2bc8d2ab7087..ff8b28736bc5 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.0/apache/Dockerfile) -- [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.0/fpm/Dockerfile) -- [`6.2.2-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.2-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.1/apache/Dockerfile) -- [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.1/fpm/Dockerfile) -- [`6.2.2-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.2/apache/Dockerfile) -- [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/7c79eeb7a24484fa9a5aca3161947c821b6b1e0e/latest/php8.2/fpm/Dockerfile) -- [`6.2.2-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.3.0-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.0`, `6.3`, `6`, `latest`, `6.3.0-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.0-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/apache/Dockerfile) +- [`6.3.0-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.0-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/fpm/Dockerfile) +- [`6.3.0-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.0-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.3.0-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.0-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/apache/Dockerfile) +- [`6.3.0-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/fpm/Dockerfile) +- [`6.3.0-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.3.0-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.0-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/apache/Dockerfile) +- [`6.3.0-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm/Dockerfile) +- [`6.3.0-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3-RC4-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3-RC4`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3-RC4-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3-RC4-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/apache/Dockerfile) -- [`beta-6.3-RC4-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3-RC4-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3-RC4-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3-RC4-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3-RC4-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3-RC4-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/apache/Dockerfile) -- [`beta-6.3-RC4-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3-RC4-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3-RC4-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3-RC4-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/apache/Dockerfile) -- [`beta-6.3-RC4-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3-RC4-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a348bf4d345ec7db894ac2ce4e72ff6ed393be31/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 00ef92640625a344999e4470ce3f0e8bf8207773 Mon Sep 17 00:00:00 2001 From: Nikolai Prokoschenko Date: Thu, 15 Jun 2023 11:38:01 +0200 Subject: [PATCH 0503/2686] Add documentation for custom CA certificates Will be available after https://github.com/adoptium/containers/pull/392 is merged. --- eclipse-temurin/content.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/eclipse-temurin/content.md b/eclipse-temurin/content.md index e1b0451aa8a3..7519bc11fe74 100644 --- a/eclipse-temurin/content.md +++ b/eclipse-temurin/content.md @@ -12,6 +12,16 @@ The Eclipse Temurin project provides code and processes that support the buildin JRE images are available for all versions of Eclipse Temurin but it is recommended that you produce a custom JRE-like runtime using `jlink` (see usage below). +# Can I add my internal CA certificates to the truststore? + +Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: + +```console +$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 %%IMAGE%%:11 +``` + +The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. + # How to use this Image To run a pre-built jar file with the latest OpenJDK 11, use the following Dockerfile: From 8660e677232d2312ddc82b5d764f84603ca107bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Aug 2023 09:18:00 -0700 Subject: [PATCH 0504/2686] Run update.sh --- node/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index e98529c5be71..5d56dd4c6f51 100644 --- a/node/README.md +++ b/node/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.5-alpine3.17`, `20.5.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.5-alpine`, `20.5-alpine3.18`, `20.5.0-alpine`, `20.5.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.5`, `20.5-bookworm`, `20.5.0`, `20.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.5-bookworm-slim`, `20.5-slim`, `20.5.0-bookworm-slim`, `20.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.5-bullseye`, `20.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.5-bullseye-slim`, `20.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.5-buster`, `20.5.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/buster/Dockerfile) -- [`20-buster-slim`, `20.5-buster-slim`, `20.5.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/4f443163bbf6e3c2e1436c2835829bccc2267c61/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.0-alpine`, `18.17.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.0`, `18.17.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.17-bookworm-slim`, `18.17-slim`, `18.17.0-bookworm-slim`, `18.17.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.17-bullseye`, `18.17.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.17-bullseye-slim`, `18.17.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.17-buster`, `18.17.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/buster/Dockerfile) -- [`18-buster-slim`, `18.17-buster-slim`, `18.17.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/57d57436d1cb175e5f7c8d501df5893556c886c2/18/buster-slim/Dockerfile) -- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.1-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.17/Dockerfile) -- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.1-alpine`, `16.20.1-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/alpine3.18/Dockerfile) -- [`16-bookworm`, `16.20-bookworm`, `16.20.1-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bookworm/Dockerfile) -- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.1-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/bookworm-slim/Dockerfile) -- [`16-bullseye`, `16.20-bullseye`, `16.20.1-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.1-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/bullseye-slim/Dockerfile) -- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.1`, `16.20.1-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/d9c01570c0f72a40cbaece69c378d7c8187c56e9/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.1-buster-slim`, `16.20.1-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/a9702c9a6111be461c356b8b61983d568bd39414/16/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.5-alpine3.17`, `20.5.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.5-alpine`, `20.5-alpine3.18`, `20.5.1-alpine`, `20.5.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.5`, `20.5-bookworm`, `20.5.1`, `20.5.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.5-bookworm-slim`, `20.5-slim`, `20.5.1-bookworm-slim`, `20.5.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.5-bullseye`, `20.5.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.5-bullseye-slim`, `20.5.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.5-buster`, `20.5.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/buster/Dockerfile) +- [`20-buster-slim`, `20.5-buster-slim`, `20.5.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.1-alpine`, `18.17.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.1`, `18.17.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.17-bookworm-slim`, `18.17-slim`, `18.17.1-bookworm-slim`, `18.17.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.17-bullseye`, `18.17.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.17-bullseye-slim`, `18.17.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.17-buster`, `18.17.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster/Dockerfile) +- [`18-buster-slim`, `18.17-buster-slim`, `18.17.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster-slim/Dockerfile) +- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.2-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/alpine3.17/Dockerfile) +- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.2-alpine`, `16.20.2-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/alpine3.18/Dockerfile) +- [`16-bookworm`, `16.20-bookworm`, `16.20.2-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bookworm/Dockerfile) +- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.2-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bookworm-slim/Dockerfile) +- [`16-bullseye`, `16.20-bullseye`, `16.20.2-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bullseye/Dockerfile) +- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.2-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bullseye-slim/Dockerfile) +- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.2`, `16.20.2-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/buster/Dockerfile) +- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.2-buster-slim`, `16.20.2-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/buster-slim/Dockerfile) # Quick reference (cont.) From ff35448bce8e08407a521d305db5603dcba7db2b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Aug 2023 12:17:40 -0700 Subject: [PATCH 0505/2686] Run update.sh --- eclipse-temurin/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index a074e0e9bc62..ff24939c9781 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -213,6 +213,16 @@ The Eclipse Temurin project provides code and processes that support the buildin JRE images are available for all versions of Eclipse Temurin but it is recommended that you produce a custom JRE-like runtime using `jlink` (see usage below). +# Can I add my internal CA certificates to the truststore? + +Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: + +```console +$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 eclipse-temurin:11 +``` + +The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. + # How to use this Image To run a pre-built jar file with the latest OpenJDK 11, use the following Dockerfile: From 48a6bb3eb357978259160a73acdb165d19e88019 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Aug 2023 18:17:53 -0700 Subject: [PATCH 0506/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c4164f482a2b..07bf81766f17 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/98f8372b0349f3e011fd42828dd6272c74f3c10d/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7-slim-fips/Dockerfile) # Quick reference (cont.) From f28386ad101cc312e40752fe07be225620bc620e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Aug 2023 11:18:27 -0700 Subject: [PATCH 0507/2686] Run update.sh --- aerospike/README.md | 4 ++-- docker/README.md | 20 +++++++++---------- kong/README.md | 3 ++- nextcloud/README.md | 18 ++++++++--------- postgres/README.md | 48 ++++++++++++++++++++++----------------------- 5 files changed, 47 insertions(+), 46 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index d3b6be6e766f..50ed5f5ce35e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.0`, `ee-6.4.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/015a589785216afc74a5e10aa78bcf004bb94387/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.0`, `ce-6.4.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/015a589785216afc74a5e10aa78bcf004bb94387/community/debian12/Dockerfile) +- [`ee-6.4.0.1`, `ee-6.4.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/881eb4f89b828af75b4d12380bfd6e5c0742262e/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.1`, `ce-6.4.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/881eb4f89b828af75b4d12380bfd6e5c0742262e/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 3c104b57dd41..b90d105c30ea 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/cli/Dockerfile) +- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/cli/Dockerfile) - [`24.0.5-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.5-dind-alpine3.18`, `24.0.5`, `24.0`, `24`, `latest`, `24.0.5-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind/Dockerfile) - [`24.0.5-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind-rootless/Dockerfile) - [`24.0.5-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/cli/Dockerfile) +- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.5-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cb48c20d320555c4486a1211b485ccf1f100a829/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index 436641969b5f..48966f355dd4 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.4.0-ubuntu`, `3.4-ubuntu`, `3.4.0`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/a5ff45ca9bcfd931cc777acdf4a8ad354114a5c9/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) -- [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) +- [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) - [`3.2.2-ubuntu`, `3.2-ubuntu`, `3.2.2`, `3.2`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) - [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) diff --git a/nextcloud/README.md b/nextcloud/README.md index c28eb1f1ccdb..234dc2eab18b 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.9-apache`, `25.0-apache`, `25-apache`, `25.0.9`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/25/apache/Dockerfile) -- [`25.0.9-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/25/fpm/Dockerfile) -- [`25.0.9-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/25/fpm-alpine/Dockerfile) -- [`26.0.4-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.4`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/26/apache/Dockerfile) -- [`26.0.4-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/26/fpm/Dockerfile) -- [`26.0.4-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/26/fpm-alpine/Dockerfile) -- [`27.0.1-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/27/apache/Dockerfile) -- [`27.0.1-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/f0f6fc1f030d50dcba35404a0bff74d92f8cb155/27/fpm/Dockerfile) -- [`27.0.1-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/1b913eb0e9e6106c5ab58c8a0b1b01caeaab2ffa/27/fpm-alpine/Dockerfile) +- [`25.0.10-apache`, `25.0-apache`, `25-apache`, `25.0.10`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/apache/Dockerfile) +- [`25.0.10-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/fpm/Dockerfile) +- [`25.0.10-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/fpm-alpine/Dockerfile) +- [`26.0.5-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.5`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/apache/Dockerfile) +- [`26.0.5-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/fpm/Dockerfile) +- [`26.0.5-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/fpm-alpine/Dockerfile) +- [`27.0.2-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.2`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/apache/Dockerfile) +- [`27.0.2-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/fpm/Dockerfile) +- [`27.0.2-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 3521c3ebef4e..926e96a2905a 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16beta2`, `16beta2-bookworm`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/bookworm/Dockerfile) -- [`16beta2-bullseye`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/bullseye/Dockerfile) -- [`16beta2-alpine3.18`, `16beta2-alpine`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/alpine3.18/Dockerfile) -- [`16beta2-alpine3.17`](https://github.com/docker-library/postgres/blob/cba2a05c03706daf5f9a66b93a447540b62df063/16/alpine3.17/Dockerfile) -- [`15.3`, `15`, `latest`, `15.3-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/15/bookworm/Dockerfile) -- [`15.3-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a23c0e97980edae5be2cd4eb68ff1f0762d031cd/15/bullseye/Dockerfile) -- [`15.3-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.3-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.18/Dockerfile) -- [`15.3-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/15/alpine3.17/Dockerfile) -- [`14.8`, `14`, `14.8-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/14/bookworm/Dockerfile) -- [`14.8-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/8ff11cd5ae43e73fd84d0b2bc8aa88537fe18649/14/bullseye/Dockerfile) -- [`14.8-alpine3.18`, `14-alpine3.18`, `14.8-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.18/Dockerfile) -- [`14.8-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/14/alpine3.17/Dockerfile) -- [`13.11`, `13`, `13.11-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/13/bookworm/Dockerfile) -- [`13.11-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/43d17d5ced92f230fa8c196e746f2e2aa288e5e8/13/bullseye/Dockerfile) -- [`13.11-alpine3.18`, `13-alpine3.18`, `13.11-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.18/Dockerfile) -- [`13.11-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/13/alpine3.17/Dockerfile) -- [`12.15`, `12`, `12.15-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/12/bookworm/Dockerfile) -- [`12.15-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d681c1da2faebccc790fffd3e71514548b458d50/12/bullseye/Dockerfile) -- [`12.15-alpine3.18`, `12-alpine3.18`, `12.15-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.18/Dockerfile) -- [`12.15-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/12/alpine3.17/Dockerfile) -- [`11.20-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/3fda89cc5c2e588f46ae4f1ac117114c8e6814f1/11/bookworm/Dockerfile) -- [`11.20-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/ee629b1e31754d3aeed529a1a3610ac180f20e0b/11/bullseye/Dockerfile) -- [`11.20-alpine3.18`, `11-alpine3.18`, `11.20-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.18/Dockerfile) -- [`11.20-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/5ea98fe00be95fbbe642732d62af3b4dbc83f442/11/alpine3.17/Dockerfile) +- [`16beta3`, `16beta3-bookworm`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/bookworm/Dockerfile) +- [`16beta3-bullseye`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/bullseye/Dockerfile) +- [`16beta3-alpine3.18`, `16beta3-alpine`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/alpine3.18/Dockerfile) +- [`16beta3-alpine3.17`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/alpine3.17/Dockerfile) +- [`15.4`, `15`, `latest`, `15.4-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bookworm/Dockerfile) +- [`15.4-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bullseye/Dockerfile) +- [`15.4-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.4-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.18/Dockerfile) +- [`15.4-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.17/Dockerfile) +- [`14.9`, `14`, `14.9-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bookworm/Dockerfile) +- [`14.9-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bullseye/Dockerfile) +- [`14.9-alpine3.18`, `14-alpine3.18`, `14.9-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/alpine3.18/Dockerfile) +- [`14.9-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/alpine3.17/Dockerfile) +- [`13.12`, `13`, `13.12-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bookworm/Dockerfile) +- [`13.12-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bullseye/Dockerfile) +- [`13.12-alpine3.18`, `13-alpine3.18`, `13.12-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/alpine3.18/Dockerfile) +- [`13.12-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/alpine3.17/Dockerfile) +- [`12.16`, `12`, `12.16-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bookworm/Dockerfile) +- [`12.16-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bullseye/Dockerfile) +- [`12.16-alpine3.18`, `12-alpine3.18`, `12.16-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/alpine3.18/Dockerfile) +- [`12.16-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/alpine3.17/Dockerfile) +- [`11.21-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bookworm/Dockerfile) +- [`11.21-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bullseye/Dockerfile) +- [`11.21-alpine3.18`, `11-alpine3.18`, `11.21-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/alpine3.18/Dockerfile) +- [`11.21-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/alpine3.17/Dockerfile) # Quick reference (cont.) From 34ab2d4f487586799d60d5910cf15a7fe0469e8b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Aug 2023 17:09:04 -0700 Subject: [PATCH 0508/2686] Run update.sh --- ghost/README.md | 4 +-- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ tomcat/README.md | 56 ++++++++++++++++++------------------ 3 files changed, 66 insertions(+), 66 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index ff6502bfa9a3..9500f678c618 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.58.0`, `5.58`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3253874ab556131adb078ee57e521be6462e3a81/5/debian/Dockerfile) -- [`5.58.0-alpine`, `5.58-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3253874ab556131adb078ee57e521be6462e3a81/5/alpine/Dockerfile) +- [`5.59.0`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7ee971c9d25135b3d79d24b409da0db547b89638/5/debian/Dockerfile) +- [`5.59.0-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7ee971c9d25135b3d79d24b409da0db547b89638/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index fe1d0a42fea7..11e68cd6fe8b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-9-jdk-oraclelinux8`, `22-ea-9-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-9-jdk-oracle`, `22-ea-9-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-9-jdk-oraclelinux7`, `22-ea-9-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-9-jdk-bookworm`, `22-ea-9-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/bookworm/Dockerfile) -- [`22-ea-9-jdk-slim-bookworm`, `22-ea-9-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-9-jdk-slim`, `22-ea-9-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-9-jdk-bullseye`, `22-ea-9-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/bullseye/Dockerfile) -- [`22-ea-9-jdk-slim-bullseye`, `22-ea-9-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-9-jdk-windowsservercore-ltsc2022`, `22-ea-9-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-9-jdk-windowsservercore-1809`, `22-ea-9-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-9-jdk-nanoserver-1809`, `22-ea-9-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-ea-34-jdk-oraclelinux8`, `21-ea-34-oraclelinux8`, `21-ea-jdk-oraclelinux8`, `21-ea-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-ea-34-jdk-oracle`, `21-ea-34-oracle`, `21-ea-jdk-oracle`, `21-ea-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux8/Dockerfile) -- [`21-ea-34-jdk-oraclelinux7`, `21-ea-34-oraclelinux7`, `21-ea-jdk-oraclelinux7`, `21-ea-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux7/Dockerfile) -- [`21-ea-34-jdk-bookworm`, `21-ea-34-bookworm`, `21-ea-jdk-bookworm`, `21-ea-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/bookworm/Dockerfile) -- [`21-ea-34-jdk-slim-bookworm`, `21-ea-34-slim-bookworm`, `21-ea-jdk-slim-bookworm`, `21-ea-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-ea-34-jdk-slim`, `21-ea-34-slim`, `21-ea-jdk-slim`, `21-ea-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/slim-bookworm/Dockerfile) -- [`21-ea-34-jdk-bullseye`, `21-ea-34-bullseye`, `21-ea-jdk-bullseye`, `21-ea-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/bullseye/Dockerfile) -- [`21-ea-34-jdk-slim-bullseye`, `21-ea-34-slim-bullseye`, `21-ea-jdk-slim-bullseye`, `21-ea-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/slim-bullseye/Dockerfile) -- [`21-ea-34-jdk-windowsservercore-ltsc2022`, `21-ea-34-windowsservercore-ltsc2022`, `21-ea-jdk-windowsservercore-ltsc2022`, `21-ea-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-ea-34-jdk-windowsservercore-1809`, `21-ea-34-windowsservercore-1809`, `21-ea-jdk-windowsservercore-1809`, `21-ea-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-ea-34-jdk-nanoserver-1809`, `21-ea-34-nanoserver-1809`, `21-ea-jdk-nanoserver-1809`, `21-ea-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-10-jdk-oraclelinux8`, `22-ea-10-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-10-jdk-oracle`, `22-ea-10-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-10-jdk-oraclelinux7`, `22-ea-10-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-10-jdk-bookworm`, `22-ea-10-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/bookworm/Dockerfile) +- [`22-ea-10-jdk-slim-bookworm`, `22-ea-10-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-10-jdk-slim`, `22-ea-10-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-10-jdk-bullseye`, `22-ea-10-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/bullseye/Dockerfile) +- [`22-ea-10-jdk-slim-bullseye`, `22-ea-10-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-10-jdk-windowsservercore-ltsc2022`, `22-ea-10-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-10-jdk-windowsservercore-1809`, `22-ea-10-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-10-jdk-nanoserver-1809`, `22-ea-10-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) +- [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) +- [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) +- [`21-rc-jdk-slim-bookworm`, `21-rc-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-rc-jdk-slim`, `21-rc-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/slim-bookworm/Dockerfile) +- [`21-rc-jdk-bullseye`, `21-rc-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bullseye/Dockerfile) +- [`21-rc-jdk-slim-bullseye`, `21-rc-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/slim-bullseye/Dockerfile) +- [`21-rc-jdk-windowsservercore-ltsc2022`, `21-rc-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21-rc-jdk-windowsservercore-1809`, `21-rc-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21-rc-jdk-nanoserver-1809`, `21-rc-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-9-jdk`, `22-ea-9`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-9-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-9-jdk-windowsservercore`, `22-ea-9-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-9-jdk-nanoserver`, `22-ea-9-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/33bf62688dea0a2858659dbb3f97772d4a568a4b/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-ea-34-jdk`, `21-ea-34`, `21-ea-jdk`, `21-ea`, `21-jdk`, `21`: - - [`21-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/oraclelinux8/Dockerfile) - - [`21-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-34-jdk-windowsservercore`, `21-ea-34-windowsservercore`, `21-ea-jdk-windowsservercore`, `21-ea-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-ea-34-jdk-nanoserver`, `21-ea-34-nanoserver`, `21-ea-jdk-nanoserver`, `21-ea-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9f45e65c50b0945bca7710b790799adad18526b8/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-10-jdk`, `22-ea-10`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-10-jdk-windowsservercore`, `22-ea-10-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-10-jdk-nanoserver`, `22-ea-10-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/nanoserver-1809/Dockerfile) +- `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: + - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) + - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-rc-jdk-windowsservercore`, `21-rc-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21-rc-jdk-nanoserver`, `21-rc-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index c5c572b67f8c..9ec448b5a4e9 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -28,47 +28,47 @@ WARNING: - [`11.0.0-M9-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M9-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/64c82101842617668648105546f9bd835e422952/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) - [`10.1.11-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.11-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-bookworm/Dockerfile) - [`10.1.11-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.11-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.11-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.11-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.11-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.11`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.11-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.11-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.11-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.11-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.11-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.11-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.11-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.11-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.11-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.11-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.11-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.11-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.11`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.11-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.11-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.11-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.11-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.11-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.11-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.11-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.11-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.11-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.78-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.78-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bookworm/Dockerfile) - [`9.0.78-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bullseye/Dockerfile) - [`9.0.78-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.78-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) - [`9.0.78-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`9.0.78-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.78-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.78-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.78`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.78-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.78-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.78-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.78-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.78-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.78-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.78-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.78-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.78`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.78-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.78-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.78-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.78-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.78-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre17/temurin-focal/Dockerfile) - [`9.0.78-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.78-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.78-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.78-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.78-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.78-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.78-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.78-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.78-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.78-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.78-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.78-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.78-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.78-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.78-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.78-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.78-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.78-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre11/temurin-focal/Dockerfile) - [`9.0.78-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.78-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.78-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.78-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.78-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.78-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.78-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.78-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.78-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.78-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.78-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.78-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.78-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.78-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.78-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.78-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.78-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.78-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.78-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.78-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.91-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.91-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bookworm/Dockerfile) - [`8.5.91-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bullseye/Dockerfile) - [`8.5.91-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.91-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) - [`8.5.91-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`8.5.91-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.91-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.91-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.91`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.91-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.91-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.91-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.91-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.91-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.91-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.91-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.91-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.91`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.91-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.91-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.91-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.91-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.91-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre17/temurin-focal/Dockerfile) - [`8.5.91-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.91-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.91-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.91-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.91-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.91-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.91-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.91-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.91-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.91-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.91-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.91-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.91-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.91-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.91-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.91-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.91-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.91-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre11/temurin-focal/Dockerfile) - [`8.5.91-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.91-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.91-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.91-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.91-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.91-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.91-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.91-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.91-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.91-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.91-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.91-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.91-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.91-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.91-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.91-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.91-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.91-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre8/temurin-focal/Dockerfile) - [`8.5.91-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.91-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 83a09b54f8a6fb69562637b241cd2aa6a37cf299 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Aug 2023 10:09:08 -0700 Subject: [PATCH 0509/2686] Run update.sh --- clearlinux/README.md | 2 +- oraclelinux/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 285f80f1c5bd..0099569c7abc 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1f9fe34b371c8097482b4a03bc3fbdb07cc701ff/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f0092b51ee5211ce19e02c6d73247f7316ad2711/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 07bf81766f17..80f803f18a62 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/152a98886e04a749e31fe39060abc9452d37e4a6/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7-slim-fips/Dockerfile) # Quick reference (cont.) From 784d2d1239ad6c1e7d3431df09b16d10b94e0e75 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Aug 2023 11:09:05 -0700 Subject: [PATCH 0510/2686] Run update.sh --- caddy/README.md | 34 +++++++-------- eclipse-temurin/README.md | 88 +++++++++++++++++++-------------------- 2 files changed, 61 insertions(+), 61 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 863580db7477..0bd8a243a513 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.7.2-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/alpine/Dockerfile) -- [`2.7.2-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/builder/Dockerfile) -- [`2.7.2-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) -- [`2.7.2-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.2-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/1809/Dockerfile) -- [`2.7.2-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.3-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/alpine/Dockerfile) +- [`2.7.3-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/builder/Dockerfile) +- [`2.7.3-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) +- [`2.7.3-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.3-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/1809/Dockerfile) +- [`2.7.3-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.7.2`, `2.7`, `2`, `latest`: - - [`2.7.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/alpine/Dockerfile) - - [`2.7.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) - - [`2.7.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) -- `2.7.2-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/builder/Dockerfile) - - [`2.7.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/1809/Dockerfile) - - [`2.7.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.2-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/1809/Dockerfile) - - [`2.7.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a05143ab31c83c6a0385a40e570c00779e8e9c0f/2.7/windows/ltsc2022/Dockerfile) +- `2.7.3`, `2.7`, `2`, `latest`: + - [`2.7.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/alpine/Dockerfile) + - [`2.7.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) + - [`2.7.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) +- `2.7.3-builder`, `2.7-builder`, `2-builder`, `builder`: + - [`2.7.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/builder/Dockerfile) + - [`2.7.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/1809/Dockerfile) + - [`2.7.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.3-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.7.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) + - [`2.7.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index ff24939c9781..6a71ed3137ea 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,70 +28,70 @@ WARNING: ## Simple Tags -- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/alpine/Dockerfile.releases.full) -- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/centos/Dockerfile.releases.full) -- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/alpine/Dockerfile.releases.full) +- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/centos/Dockerfile.releases.full) +- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/alpine/Dockerfile.releases.full) -- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/centos/Dockerfile.releases.full) -- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/alpine/Dockerfile.releases.full) +- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/focal/Dockerfile.releases.full) +- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/centos/Dockerfile.releases.full) +- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/centos/Dockerfile.releases.full) -- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/centos/Dockerfile.releases.full) +- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/centos/Dockerfile.releases.full) -- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/centos/Dockerfile.releases.full) +- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/alpine/Dockerfile.releases.full) +- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) @@ -100,7 +100,7 @@ WARNING: ## Shared Tags - `8u382-b05-jdk`, `8-jdk`, `8`: - - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u382-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: @@ -110,7 +110,7 @@ WARNING: - [`8u382-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `8u382-b05-jre`, `8-jre`: - - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/8/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/jammy/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `8u382-b05-jre-windowsservercore`, `8-jre-windowsservercore`: @@ -120,7 +120,7 @@ WARNING: - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.20_8-jdk`, `11-jdk`, `11`: - - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.20_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: @@ -130,7 +130,7 @@ WARNING: - [`11.0.20_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `11.0.20_8-jre`, `11-jre`: - - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/jammy/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `11.0.20_8-jre-windowsservercore`, `11-jre-windowsservercore`: @@ -140,7 +140,7 @@ WARNING: - [`11.0.20_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`11.0.20_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.8_7-jdk`, `17-jdk`, `17`: - - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.8_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: @@ -150,7 +150,7 @@ WARNING: - [`17.0.8_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `17.0.8_7-jre`, `17-jre`: - - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/jammy/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `17.0.8_7-jre-windowsservercore`, `17-jre-windowsservercore`: @@ -160,7 +160,7 @@ WARNING: - [`17.0.8_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: - - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.2_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: @@ -170,7 +170,7 @@ WARNING: - [`20.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jre`, `20-jre`: - - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/05b7f082746228466ceacf43dd0c21e9a0ba2b84/20/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - `20.0.2_9-jre-windowsservercore`, `20-jre-windowsservercore`: From ef95a482492fc34ad23c14fd535c0bdfb50c0013 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Aug 2023 12:09:14 -0700 Subject: [PATCH 0511/2686] Run update.sh --- crate/README.md | 4 +- rocket.chat/README.md | 4 +- tomee/README.md | 126 +++++++++++++++++++++--------------------- 3 files changed, 67 insertions(+), 67 deletions(-) diff --git a/crate/README.md b/crate/README.md index c5c5c83ed076..d65c0d26455f 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.1`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/fdbcc2564f40520e2711877f215b06328398b449/Dockerfile) -- [`5.3.5`, `5.3`](https://github.com/crate/docker-crate/blob/d7b77982aa5252343571591ea347fbfcdd468ab7/Dockerfile) +- [`5.4.2`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/788969ef9e877128f07092edf61ee7ac75ac4550/Dockerfile) +- [`5.3.6`, `5.3`](https://github.com/crate/docker-crate/blob/f430bdf6653a10ae5ab6b09f3b3f46408bed73be/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index b10ae0eae2ff..b166f0d3a828 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.0`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/6.3/Dockerfile) -- [`6.2.11`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/6.2/Dockerfile) +- [`6.3.1`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.3/Dockerfile) +- [`6.2.12`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.2/Dockerfile) - [`5.4.10`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/5.4/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 3e663728b8d3..efacf5019e3f 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-webprofile`, `9.0.0-Temurin-ubuntu-webprofile`, `9.0.0-jre17-ubuntu-webprofile`, `9.0.0-ubuntu-webprofile`, `9.0.0-jre17-Temurin-webprofile`, `9.0.0-Temurin-webprofile`, `9.0.0-jre17-webprofile`, `9.0.0-webprofile`, `9.0.0-jre17-Temurin-ubuntu`, `9.0.0-Temurin-ubuntu`, `9.0.0-jre17-ubuntu`, `9.0.0-ubuntu`, `9.0.0-jre17-Temurin`, `9.0.0-Temurin`, `9.0.0-jre17`, `9.0.0`, `9.0-jre17-Temurin-ubuntu-webprofile`, `9.0-Temurin-ubuntu-webprofile`, `9.0-jre17-ubuntu-webprofile`, `9.0-ubuntu-webprofile`, `9.0-jre17-Temurin-webprofile`, `9.0-Temurin-webprofile`, `9.0-jre17-webprofile`, `9.0-webprofile`, `9.0-jre17-Temurin-ubuntu`, `9.0-Temurin-ubuntu`, `9.0-jre17-ubuntu`, `9.0-ubuntu`, `9.0-jre17-Temurin`, `9.0-Temurin`, `9.0-jre17`, `9.0`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-microprofile`, `9.0.0-Temurin-ubuntu-microprofile`, `9.0.0-jre17-ubuntu-microprofile`, `9.0.0-ubuntu-microprofile`, `9.0.0-jre17-Temurin-microprofile`, `9.0.0-Temurin-microprofile`, `9.0.0-jre17-microprofile`, `9.0.0-microprofile`, `9.0-jre17-Temurin-ubuntu-microprofile`, `9.0-Temurin-ubuntu-microprofile`, `9.0-jre17-ubuntu-microprofile`, `9.0-ubuntu-microprofile`, `9.0-jre17-Temurin-microprofile`, `9.0-Temurin-microprofile`, `9.0-jre17-microprofile`, `9.0-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plume`, `9.0.0-Temurin-ubuntu-plume`, `9.0.0-jre17-ubuntu-plume`, `9.0.0-ubuntu-plume`, `9.0.0-jre17-Temurin-plume`, `9.0.0-Temurin-plume`, `9.0.0-jre17-plume`, `9.0.0-plume`, `9.0-jre17-Temurin-ubuntu-plume`, `9.0-Temurin-ubuntu-plume`, `9.0-jre17-ubuntu-plume`, `9.0-ubuntu-plume`, `9.0-jre17-Temurin-plume`, `9.0-Temurin-plume`, `9.0-jre17-plume`, `9.0-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-ubuntu-plus`, `9.0.0-Temurin-ubuntu-plus`, `9.0.0-jre17-ubuntu-plus`, `9.0.0-ubuntu-plus`, `9.0.0-jre17-Temurin-plus`, `9.0.0-Temurin-plus`, `9.0.0-jre17-plus`, `9.0.0-plus`, `9.0-jre17-Temurin-ubuntu-plus`, `9.0-Temurin-ubuntu-plus`, `9.0-jre17-ubuntu-plus`, `9.0-ubuntu-plus`, `9.0-jre17-Temurin-plus`, `9.0-Temurin-plus`, `9.0-jre17-plus`, `9.0-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-webprofile`, `9.0.0-Temurin-alpine-webprofile`, `9.0.0-jre17-alpine-webprofile`, `9.0.0-alpine-webprofile`, `9.0.0-jre17-Temurin-alpine`, `9.0.0-Temurin-alpine`, `9.0.0-jre17-alpine`, `9.0.0-alpine`, `9.0-jre17-Temurin-alpine-webprofile`, `9.0-Temurin-alpine-webprofile`, `9.0-jre17-alpine-webprofile`, `9.0-alpine-webprofile`, `9.0-jre17-Temurin-alpine`, `9.0-Temurin-alpine`, `9.0-jre17-alpine`, `9.0-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-microprofile`, `9.0.0-Temurin-alpine-microprofile`, `9.0.0-jre17-alpine-microprofile`, `9.0.0-alpine-microprofile`, `9.0-jre17-Temurin-alpine-microprofile`, `9.0-Temurin-alpine-microprofile`, `9.0-jre17-alpine-microprofile`, `9.0-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plume`, `9.0.0-Temurin-alpine-plume`, `9.0.0-jre17-alpine-plume`, `9.0.0-alpine-plume`, `9.0-jre17-Temurin-alpine-plume`, `9.0-Temurin-alpine-plume`, `9.0-jre17-alpine-plume`, `9.0-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre17-Temurin-alpine-plus`, `9.0.0-Temurin-alpine-plus`, `9.0.0-jre17-alpine-plus`, `9.0.0-alpine-plus`, `9.0-jre17-Temurin-alpine-plus`, `9.0-Temurin-alpine-plus`, `9.0-jre17-alpine-plus`, `9.0-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-webprofile`, `9.0.0-jre11-ubuntu-webprofile`, `9.0.0-jre11-Temurin-webprofile`, `9.0.0-jre11-webprofile`, `9.0.0-jre11-Temurin-ubuntu`, `9.0.0-jre11-ubuntu`, `9.0.0-jre11-Temurin`, `9.0.0-jre11`, `9.0-jre11-Temurin-ubuntu-webprofile`, `9.0-jre11-ubuntu-webprofile`, `9.0-jre11-Temurin-webprofile`, `9.0-jre11-webprofile`, `9.0-jre11-Temurin-ubuntu`, `9.0-jre11-ubuntu`, `9.0-jre11-Temurin`, `9.0-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-microprofile`, `9.0.0-jre11-ubuntu-microprofile`, `9.0.0-jre11-Temurin-microprofile`, `9.0.0-jre11-microprofile`, `9.0-jre11-Temurin-ubuntu-microprofile`, `9.0-jre11-ubuntu-microprofile`, `9.0-jre11-Temurin-microprofile`, `9.0-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plume`, `9.0.0-jre11-ubuntu-plume`, `9.0.0-jre11-Temurin-plume`, `9.0.0-jre11-plume`, `9.0-jre11-Temurin-ubuntu-plume`, `9.0-jre11-ubuntu-plume`, `9.0-jre11-Temurin-plume`, `9.0-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-ubuntu-plus`, `9.0.0-jre11-ubuntu-plus`, `9.0.0-jre11-Temurin-plus`, `9.0.0-jre11-plus`, `9.0-jre11-Temurin-ubuntu-plus`, `9.0-jre11-ubuntu-plus`, `9.0-jre11-Temurin-plus`, `9.0-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-webprofile`, `9.0.0-jre11-alpine-webprofile`, `9.0.0-jre11-Temurin-alpine`, `9.0.0-jre11-alpine`, `9.0-jre11-Temurin-alpine-webprofile`, `9.0-jre11-alpine-webprofile`, `9.0-jre11-Temurin-alpine`, `9.0-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-microprofile`, `9.0.0-jre11-alpine-microprofile`, `9.0-jre11-Temurin-alpine-microprofile`, `9.0-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plume`, `9.0.0-jre11-alpine-plume`, `9.0-jre11-Temurin-alpine-plume`, `9.0-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.0.0-jre11-Temurin-alpine-plus`, `9.0.0-jre11-alpine-plus`, `9.0-jre11-Temurin-alpine-plus`, `9.0-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-webprofile`, `9.0.0-Semeru-ubuntu-webprofile`, `9.0.0-jre17-Semeru-webprofile`, `9.0.0-Semeru-webprofile`, `9.0.0-jre17-Semeru-ubuntu`, `9.0.0-Semeru-ubuntu`, `9.0.0-jre17-Semeru`, `9.0.0-Semeru`, `9.0-jre17-Semeru-ubuntu-webprofile`, `9.0-Semeru-ubuntu-webprofile`, `9.0-jre17-Semeru-webprofile`, `9.0-Semeru-webprofile`, `9.0-jre17-Semeru-ubuntu`, `9.0-Semeru-ubuntu`, `9.0-jre17-Semeru`, `9.0-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-microprofile`, `9.0.0-Semeru-ubuntu-microprofile`, `9.0.0-jre17-Semeru-microprofile`, `9.0.0-Semeru-microprofile`, `9.0-jre17-Semeru-ubuntu-microprofile`, `9.0-Semeru-ubuntu-microprofile`, `9.0-jre17-Semeru-microprofile`, `9.0-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plume`, `9.0.0-Semeru-ubuntu-plume`, `9.0.0-jre17-Semeru-plume`, `9.0.0-Semeru-plume`, `9.0-jre17-Semeru-ubuntu-plume`, `9.0-Semeru-ubuntu-plume`, `9.0-jre17-Semeru-plume`, `9.0-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre17-Semeru-ubuntu-plus`, `9.0.0-Semeru-ubuntu-plus`, `9.0.0-jre17-Semeru-plus`, `9.0.0-Semeru-plus`, `9.0-jre17-Semeru-ubuntu-plus`, `9.0-Semeru-ubuntu-plus`, `9.0-jre17-Semeru-plus`, `9.0-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-webprofile`, `9.0.0-jre11-Semeru-webprofile`, `9.0.0-jre11-Semeru-ubuntu`, `9.0.0-jre11-Semeru`, `9.0-jre11-Semeru-ubuntu-webprofile`, `9.0-jre11-Semeru-webprofile`, `9.0-jre11-Semeru-ubuntu`, `9.0-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-microprofile`, `9.0.0-jre11-Semeru-microprofile`, `9.0-jre11-Semeru-ubuntu-microprofile`, `9.0-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plume`, `9.0.0-jre11-Semeru-plume`, `9.0-jre11-Semeru-ubuntu-plume`, `9.0-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.0.0-jre11-Semeru-ubuntu-plus`, `9.0.0-jre11-Semeru-plus`, `9.0-jre11-Semeru-ubuntu-plus`, `9.0-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/dc410ae78d5972c8ef208bfc2e802e87fc41a333/TomEE-9.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.0-jre17-Temurin-ubuntu-webprofile`, `9.1.0-Temurin-ubuntu-webprofile`, `9.1.0-jre17-ubuntu-webprofile`, `9.1.0-ubuntu-webprofile`, `9.1.0-jre17-Temurin-webprofile`, `9.1.0-Temurin-webprofile`, `9.1.0-jre17-webprofile`, `9.1.0-webprofile`, `9.1.0-jre17-Temurin-ubuntu`, `9.1.0-Temurin-ubuntu`, `9.1.0-jre17-ubuntu`, `9.1.0-ubuntu`, `9.1.0-jre17-Temurin`, `9.1.0-Temurin`, `9.1.0-jre17`, `9.1.0`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.0-jre17-Temurin-ubuntu-microprofile`, `9.1.0-Temurin-ubuntu-microprofile`, `9.1.0-jre17-ubuntu-microprofile`, `9.1.0-ubuntu-microprofile`, `9.1.0-jre17-Temurin-microprofile`, `9.1.0-Temurin-microprofile`, `9.1.0-jre17-microprofile`, `9.1.0-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.0-jre17-Temurin-ubuntu-plume`, `9.1.0-Temurin-ubuntu-plume`, `9.1.0-jre17-ubuntu-plume`, `9.1.0-ubuntu-plume`, `9.1.0-jre17-Temurin-plume`, `9.1.0-Temurin-plume`, `9.1.0-jre17-plume`, `9.1.0-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.0-jre17-Temurin-ubuntu-plus`, `9.1.0-Temurin-ubuntu-plus`, `9.1.0-jre17-ubuntu-plus`, `9.1.0-ubuntu-plus`, `9.1.0-jre17-Temurin-plus`, `9.1.0-Temurin-plus`, `9.1.0-jre17-plus`, `9.1.0-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.0-jre17-Temurin-alpine-webprofile`, `9.1.0-Temurin-alpine-webprofile`, `9.1.0-jre17-alpine-webprofile`, `9.1.0-alpine-webprofile`, `9.1.0-jre17-Temurin-alpine`, `9.1.0-Temurin-alpine`, `9.1.0-jre17-alpine`, `9.1.0-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.0-jre17-Temurin-alpine-microprofile`, `9.1.0-Temurin-alpine-microprofile`, `9.1.0-jre17-alpine-microprofile`, `9.1.0-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.0-jre17-Temurin-alpine-plume`, `9.1.0-Temurin-alpine-plume`, `9.1.0-jre17-alpine-plume`, `9.1.0-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.0-jre17-Temurin-alpine-plus`, `9.1.0-Temurin-alpine-plus`, `9.1.0-jre17-alpine-plus`, `9.1.0-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.0-jre11-Temurin-ubuntu-webprofile`, `9.1.0-jre11-ubuntu-webprofile`, `9.1.0-jre11-Temurin-webprofile`, `9.1.0-jre11-webprofile`, `9.1.0-jre11-Temurin-ubuntu`, `9.1.0-jre11-ubuntu`, `9.1.0-jre11-Temurin`, `9.1.0-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.0-jre11-Temurin-ubuntu-microprofile`, `9.1.0-jre11-ubuntu-microprofile`, `9.1.0-jre11-Temurin-microprofile`, `9.1.0-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.0-jre11-Temurin-ubuntu-plume`, `9.1.0-jre11-ubuntu-plume`, `9.1.0-jre11-Temurin-plume`, `9.1.0-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.0-jre11-Temurin-ubuntu-plus`, `9.1.0-jre11-ubuntu-plus`, `9.1.0-jre11-Temurin-plus`, `9.1.0-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.0-jre11-Temurin-alpine-webprofile`, `9.1.0-jre11-alpine-webprofile`, `9.1.0-jre11-Temurin-alpine`, `9.1.0-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.0-jre11-Temurin-alpine-microprofile`, `9.1.0-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.0-jre11-Temurin-alpine-plume`, `9.1.0-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.0-jre11-Temurin-alpine-plus`, `9.1.0-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.0-jre17-Semeru-ubuntu-webprofile`, `9.1.0-Semeru-ubuntu-webprofile`, `9.1.0-jre17-Semeru-webprofile`, `9.1.0-Semeru-webprofile`, `9.1.0-jre17-Semeru-ubuntu`, `9.1.0-Semeru-ubuntu`, `9.1.0-jre17-Semeru`, `9.1.0-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.0-jre17-Semeru-ubuntu-microprofile`, `9.1.0-Semeru-ubuntu-microprofile`, `9.1.0-jre17-Semeru-microprofile`, `9.1.0-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.0-jre17-Semeru-ubuntu-plume`, `9.1.0-Semeru-ubuntu-plume`, `9.1.0-jre17-Semeru-plume`, `9.1.0-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.0-jre17-Semeru-ubuntu-plus`, `9.1.0-Semeru-ubuntu-plus`, `9.1.0-jre17-Semeru-plus`, `9.1.0-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.0-jre11-Semeru-ubuntu-webprofile`, `9.1.0-jre11-Semeru-webprofile`, `9.1.0-jre11-Semeru-ubuntu`, `9.1.0-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.0-jre11-Semeru-ubuntu-microprofile`, `9.1.0-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.0-jre11-Semeru-ubuntu-plume`, `9.1.0-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.0-jre11-Semeru-ubuntu-plus`, `9.1.0-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 1f6a9b0f2e3ea296d2e2c3413c623d9be4cfa46d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Aug 2023 16:09:05 -0700 Subject: [PATCH 0512/2686] Run update.sh --- clojure/README.md | 102 +++++++++++++++++++++++----------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index b795de362eea..6d204ad908d2 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1347-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1347-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1347-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1347`, `temurin-8-tools-deps-1.11.1.1347-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1347-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1347-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1347-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1347`, `temurin-11-tools-deps-1.11.1.1347-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1347-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1347-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1347-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1347-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1347-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1347`, `temurin-17-tools-deps-1.11.1.1347-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1347`, `tools-deps-1.11.1.1347-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1347-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1347-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1347-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1347`, `temurin-20-tools-deps-1.11.1.1347-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/671003a5e28d20a5fe2ba03f71a4819f489bbbf4/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1386-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1386-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1386-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1386`, `temurin-8-tools-deps-1.11.1.1386-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1386-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1386-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1386-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1386`, `temurin-11-tools-deps-1.11.1.1386-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1386-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1386-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1386-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1386-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1386-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1386`, `temurin-17-tools-deps-1.11.1.1386-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1386`, `tools-deps-1.11.1.1386-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1386-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1386-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1386`, `temurin-20-tools-deps-1.11.1.1386-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) From f8b63b6cc85d9f15983d89efef4b00dfe944f5b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Aug 2023 17:17:58 -0700 Subject: [PATCH 0513/2686] Run update.sh --- mariadb/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index ae34eaed75e7..6144164e3c53 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,14 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/11.1/Dockerfile) -- [`11.0.2-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/11.0/Dockerfile) -- [`10.11.4-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.4`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.11/Dockerfile) -- [`10.10.5-jammy`, `10.10-jammy`, `10.10.5`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.10/Dockerfile) -- [`10.9.7-jammy`, `10.9-jammy`, `10.9.7`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.9/Dockerfile) -- [`10.6.14-focal`, `10.6-focal`, `10.6.14`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.6/Dockerfile) -- [`10.5.21-focal`, `10.5-focal`, `10.5.21`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.5/Dockerfile) -- [`10.4.30-focal`, `10.4-focal`, `10.4.30`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/51c2b915a19573f233424635627355bcf14057d4/10.4/Dockerfile) +- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/28adeb9071427d1e18aa9317f41d62fa4a0f3769/11.1/Dockerfile) +- [`11.0.3-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.3`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/11.0/Dockerfile) +- [`10.11.5-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.5`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.11/Dockerfile) +- [`10.10.6-jammy`, `10.10-jammy`, `10.10.6`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.10/Dockerfile) +- [`10.9.8-jammy`, `10.9-jammy`, `10.9.8`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.9/Dockerfile) +- [`10.6.15-focal`, `10.6-focal`, `10.6.15`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.6/Dockerfile) +- [`10.5.22-focal`, `10.5-focal`, `10.5.22`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.5/Dockerfile) +- [`10.4.31-focal`, `10.4-focal`, `10.4.31`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.4/Dockerfile) # Quick reference (cont.) From bf5001a1ca4bd1e68e320fd2b6c279b97ec4c1b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Aug 2023 12:18:05 -0700 Subject: [PATCH 0514/2686] Run update.sh --- emqx/README.md | 3 +- jetty/README.md | 88 ++++++++++++++++++++++++++----------------------- 2 files changed, 48 insertions(+), 43 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index a388bade9031..37dd712fa184 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.19`, `4.4`, `4`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/4.4/Dockerfile) - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) -- [`5.1.3`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e5d98d7a6d6de0ad22e5f1be79b65228232871cd/5.1/Dockerfile) +- [`5.1.5-build.3`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/3a19847806d3ca16fb8eb61cecc28a91b74c92e4/5.1/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index 74b4fd0c0e9a..07b8d6ff7f31 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,47 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/9.4/jdk11/Dockerfile) -- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a64cb1a45b90d5fc026a6356615c2ac53d991ed1/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`12.0.0-jre17-alpine`, `12.0-jre17-alpine`, `12.0.0-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.0-jre17`, `12.0-jre17`, `12.0.0-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.0-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.0-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.0`, `12.0`, `12.0.0-jdk17`, `12.0-jdk17`, `12.0.0-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.0-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk11/Dockerfile) +- [`12.0.0-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.0-amazoncorretto`, `12.0-amazoncorretto`, `12.0.0-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) From 05f2abbdca1872aaf438bab2bca6c59e244da092 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Aug 2023 16:09:13 -0700 Subject: [PATCH 0515/2686] Run update.sh --- debian/README.md | 60 +++++++++++++------------- gradle/README.md | 17 ++++---- haproxy/README.md | 4 +- mongo/README.md | 105 +++++++++++++-------------------------------- nginx/README.md | 10 ++--- rabbitmq/README.md | 8 ++-- tomcat/README.md | 92 +++++++++++++++++++-------------------- ubuntu/README.md | 4 +- 8 files changed, 128 insertions(+), 172 deletions(-) diff --git a/debian/README.md b/debian/README.md index 0a6ffc8c8a09..f7d7aa078e61 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230725`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230725-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230725`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230725-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230725`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230725-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/rc-buggy/Dockerfile) -- [`sid`, `sid-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/sid/Dockerfile) -- [`sid-slim`, `sid-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/sid/slim/Dockerfile) -- [`stable`, `stable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/stable/slim/Dockerfile) -- [`testing`, `testing-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230725`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230725-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdaecbc02940a220749a9b57f5c2444c21919e74/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230814`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230814-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230814`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230814-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230814`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230814-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/rc-buggy/Dockerfile) +- [`sid`, `sid-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/sid/Dockerfile) +- [`sid-slim`, `sid-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/sid/slim/Dockerfile) +- [`stable`, `stable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/slim/Dockerfile) +- [`testing`, `testing-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 093806363816..2f283a373244 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,14 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk8/Dockerfile) -- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk8-focal/Dockerfile) -- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11/Dockerfile) -- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11-focal/Dockerfile) -- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk11-alpine/Dockerfile) -- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17/Dockerfile) -- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17-focal/Dockerfile) -- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/2ba84220e311de7a55f3731509dd772a885b86f8/jdk17-alpine/Dockerfile) +- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk8/Dockerfile) +- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk8-focal/Dockerfile) +- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11/Dockerfile) +- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11-focal/Dockerfile) +- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11-alpine/Dockerfile) +- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17/Dockerfile) +- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-focal/Dockerfile) +- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-alpine/Dockerfile) +- [`8.2.1-jdk17-graal`, `8.2-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.2.1-jdk-graal`, `8.2-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.2.1-graal`, `8.2-graal`, `8-graal`, `graal`, `8.2.1-jdk17-graal-jammy`, `8.2-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.2.1-jdk-graal-jammy`, `8.2-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.2.1-graal-jammy`, `8.2-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-graal/Dockerfile) - [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8/Dockerfile) - [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8-focal/Dockerfile) - [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 3a12896c3913..b319d26c2df0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev2`, `2.9-dev`, `2.9-dev2-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/Dockerfile) -- [`2.9-dev2-alpine`, `2.9-dev-alpine`, `2.9-dev2-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/a98384bac2cec72f9a434e3fbf9559f55a959f97/2.9/alpine/Dockerfile) +- [`2.9-dev3`, `2.9-dev`, `2.9-dev3-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c8e1d6ffde3f934abf19d538df687f5a2f19c63c/2.9/Dockerfile) +- [`2.9-dev3-alpine`, `2.9-dev-alpine`, `2.9-dev3-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/c8e1d6ffde3f934abf19d538df687f5a2f19c63c/2.9/alpine/Dockerfile) - [`2.8.2`, `2.8`, `lts`, `latest`, `2.8.2-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/Dockerfile) - [`2.8.2-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.2-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index a90df577da2a..bff75e3f4c99 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,31 +28,16 @@ WARNING: ## Simple Tags -- [`7.0.0-rc10-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/Dockerfile) -- [`7.0.0-rc10-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-rc10-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-rc10-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-rc10-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.9-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/Dockerfile) -- [`6.0.9-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.9-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.9-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.9-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.8-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) -- [`6.0.8-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.8-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.8-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.8-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.20-rc1-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/Dockerfile) -- [`5.0.20-rc1-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.20-rc1-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.20-rc1-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.20-rc1-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.19-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) -- [`5.0.19-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.19-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.19-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.19-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.9-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/Dockerfile) +- [`6.0.9-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.9-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.9-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.20-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) +- [`5.0.20-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.20-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.20-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.20-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) - [`4.4.24-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) - [`4.4.24-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.24-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) @@ -66,56 +51,26 @@ WARNING: ## Shared Tags -- `7.0.0-rc10`, `7.0-rc`: - - [`7.0.0-rc10-jammy`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/Dockerfile) - - [`7.0.0-rc10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc10-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.0-rc10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-rc10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-rc10-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.0-rc10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-rc10-nanoserver-1809`](https://github.com/docker-library/mongo/blob/195444dd549a1fbdcf08d7938a42784301ae8695/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.9-rc1`, `6.0-rc`: - - [`6.0.9-rc1-jammy`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/Dockerfile) - - [`6.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-rc1-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-rc1-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.9-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.9-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6368ebcb5e583169c908fbad2ea47858025d4084/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.8`, `6.0`, `6`, `latest`: - - [`6.0.8-jammy`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/Dockerfile) - - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.8-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: - - [`6.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.8-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: - - [`6.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65ec4e9927f254c9e72074030b2efeff73f4e121/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.20-rc1`, `5.0-rc`: - - [`5.0.20-rc1-focal`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/Dockerfile) - - [`5.0.20-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.20-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.20-rc1-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.20-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.20-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.20-rc1-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.20-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.20-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/906e61e4aea31072d964f72e426e0b01f6ade1b0/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.19`, `5.0`, `5`: - - [`5.0.19-focal`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/Dockerfile) - - [`5.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.19-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.19-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3acca1287032ae141a4ef1d1840f7aaa92edb08d/5.0/windows/nanoserver-1809/Dockerfile) +- `6.0.9`, `6.0`, `6`, `latest`: + - [`6.0.9-jammy`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/Dockerfile) + - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: + - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.9-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: + - [`6.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.20`, `5.0`, `5`: + - [`5.0.20-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) + - [`5.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.20-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.20-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.24-rc0`, `4.4-rc`: - [`4.4.24-rc0-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index 4f11a880a6b4..e5844b493858 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.1`, `mainline`, `1`, `1.25`, `latest`, `1.25.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/debian/Dockerfile) -- [`1.25.1-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/debian-perl/Dockerfile) -- [`1.25.1-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.1-alpine3.17`, `mainline-alpine3.17`, `1-alpine3.17`, `1.25-alpine3.17`, `alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine/Dockerfile) -- [`1.25.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.1-alpine3.17-perl`, `mainline-alpine3.17-perl`, `1-alpine3.17-perl`, `1.25-alpine3.17-perl`, `alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine-perl/Dockerfile) -- [`1.25.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.1-alpine3.17-slim`, `mainline-alpine3.17-slim`, `1-alpine3.17-slim`, `1.25-alpine3.17-slim`, `alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/7870605f4b93d86e898af291086d77ab9e6b96e3/mainline/alpine-slim/Dockerfile) +- [`1.25.2`, `mainline`, `1`, `1.25`, `latest`, `1.25.2-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian/Dockerfile) +- [`1.25.2-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.2-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian-perl/Dockerfile) +- [`1.25.2-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.2-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine/Dockerfile) +- [`1.25.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.2-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine-perl/Dockerfile) +- [`1.25.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.2-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 887e1f9cedc3..fd370abbbfa0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-beta.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.13-rc/alpine/Dockerfile) -- [`3.13.0-beta.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-beta.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-beta.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/ubuntu/Dockerfile) - [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/alpine/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 9ec448b5a4e9..d0fb1e4d56d5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,52 +24,52 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M9-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M9-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/64c82101842617668648105546f9bd835e422952/11.0/jdk21/openjdk-bookworm/Dockerfile) -- [`11.0.0-M9-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M9-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/64c82101842617668648105546f9bd835e422952/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.11-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.11-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-bookworm/Dockerfile) -- [`10.1.11-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.11-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/e4258d73d56873d026df65bdb76cc01376c3a203/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.11-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.11-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.11-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.11`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.11-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.11-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.11-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.11-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.11-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.11-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.11-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.11-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.11-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.78-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.78-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bookworm/Dockerfile) -- [`9.0.78-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-bullseye/Dockerfile) -- [`9.0.78-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.78-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`9.0.78-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`9.0.78-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.78-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.78-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.78`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.78-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.78-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.78-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.78-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.78-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.78-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.78-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.78-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.78-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.78-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.78-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.78-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.78-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.78-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.78-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.78-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.78-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.78-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.78-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.78-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.78-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.78-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.78-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.78-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.78-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.78-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.78-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3459209f05672beaab5e3fd3349c6477428e7ac6/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.91-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.91-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bookworm/Dockerfile) -- [`8.5.91-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-bullseye/Dockerfile) -- [`8.5.91-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.91-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`8.5.91-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`8.5.91-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.91-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.91-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.91`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.91-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.91-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.91-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.91-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.91-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.91-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.91-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.91-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.91-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.91-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.91-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.91-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.91-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.91-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.91-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.91-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.91-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.91-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.91-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.91-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.91-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.91-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.91-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.91-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.91-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/55546d611e41cde189ba9e820c25cb5bf18a33f9/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.91-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.91-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/c0878b79965ebabcc024caf7c5ad1aa4ff0f0d71/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M10-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M10-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/c1d6d481fdf4bc291f4bc18e3c43ec173d054e1b/11.0/jdk21/openjdk-bookworm/Dockerfile) +- [`11.0.0-M10-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M10-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/c1d6d481fdf4bc291f4bc18e3c43ec173d054e1b/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.12-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.12-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk21/openjdk-bookworm/Dockerfile) +- [`10.1.12-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.12-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.12-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.12-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.12-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.12`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.12-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.12-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.12-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.12-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.12-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.12-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.12-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.12-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.12-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.79-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.79-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-bookworm/Dockerfile) +- [`9.0.79-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-bullseye/Dockerfile) +- [`9.0.79-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.79-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`9.0.79-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`9.0.79-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.79-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.79-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.79`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.79-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.79-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.79-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.79-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.79-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.79-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.79-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.79-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.79-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.79-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.79-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.79-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.79-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.79-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.79-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.79-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.79-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.79-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.79-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.79-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.79-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.79-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.79-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.79-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.79-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.79-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.79-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.92-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.92-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-bookworm/Dockerfile) +- [`8.5.92-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-bullseye/Dockerfile) +- [`8.5.92-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.92-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`8.5.92-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`8.5.92-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.92-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.92-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.92`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.92-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.92-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.92-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.92-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.92-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.92-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.92-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.92-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.92-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.92-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.92-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.92-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.92-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.92-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.92-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.92-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.92-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.92-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.92-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.92-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.92-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.92-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.92-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.92-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.92-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.92-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.92-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 625c58c11191..8166fe754bfb 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) -- [`22.04`, `jammy-20230624`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230624-2cc72fa2&id=2cc72fa2e3553cc25ee5e0157929e35f2510dbd8) +- [`22.04`, `jammy-20230804`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230804-543e67e9&id=543e67e9164176d86a101676d00d90d7fa517492) - [`23.04`, `lunar-20230731`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230731-5313d155&id=5313d155739982dfbee1f9c03d8ede76a2d4ffc9) -- [`23.10`, `mantic-20230801`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230801-5336d144&id=5336d144dbf9de7060cd6ace89f90c63e5b38e28) +- [`23.10`, `mantic-20230807.1`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230807.1-40432528&id=404325281d1eb4eac6908979c3801ec3545b4435) # Quick reference (cont.) From 02e6e967ea3a38947e696964b276a670e5b75090 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Aug 2023 12:25:56 -0700 Subject: [PATCH 0516/2686] Run update.sh --- neo4j/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index d2963aff5054..931d0980b00a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.0-community-bullseye`, `5.10-community-bullseye`, `5-community-bullseye`, `5.10.0-community`, `5.10-community`, `5-community`, `5.10.0-bullseye`, `5.10-bullseye`, `5-bullseye`, `5.10.0`, `5.10`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/bullseye/community/Dockerfile) -- [`5.10.0-enterprise-bullseye`, `5.10-enterprise-bullseye`, `5-enterprise-bullseye`, `5.10.0-enterprise`, `5.10-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/bullseye/enterprise/Dockerfile) -- [`5.10.0-community-ubi8`, `5.10-community-ubi8`, `5-community-ubi8`, `5.10.0-ubi8`, `5.10-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/community/Dockerfile) -- [`5.10.0-enterprise-ubi8`, `5.10-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/08626d7514acb1cb0f6eab0993f26385165d701f/5.10.0/ubi8/enterprise/Dockerfile) +- [`5.11.0-community-bullseye`, `5.11-community-bullseye`, `5-community-bullseye`, `5.11.0-community`, `5.11-community`, `5-community`, `5.11.0-bullseye`, `5.11-bullseye`, `5-bullseye`, `5.11.0`, `5.11`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/bullseye/community/Dockerfile) +- [`5.11.0-enterprise-bullseye`, `5.11-enterprise-bullseye`, `5-enterprise-bullseye`, `5.11.0-enterprise`, `5.11-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/bullseye/enterprise/Dockerfile) +- [`5.11.0-community-ubi8`, `5.11-community-ubi8`, `5-community-ubi8`, `5.11.0-ubi8`, `5.11-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/community/Dockerfile) +- [`5.11.0-enterprise-ubi8`, `5.11-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/enterprise/Dockerfile) - [`4.4.24`, `4.4.24-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/community/Dockerfile) - [`4.4.24-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/enterprise/Dockerfile) From 0a55689632b9fa13c5d74afa2b70e55d8b8f8d0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Aug 2023 14:49:06 -0700 Subject: [PATCH 0517/2686] Run update.sh --- eclipse-mosquitto/README.md | 6 +++--- odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- zookeeper/README.md | 3 ++- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 7f1a59f10f0d..b5b11d514bef 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.15`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/2.0/Dockerfile) -- [`2.0.15-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/cc1aac336ecbbc251ed4a5126257f6f4fe3ed27c/docker/1.6-openssl/Dockerfile) +- [`2.0.16`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/2.0/Dockerfile) +- [`2.0.16-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/2.0-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 270f3a3807e1..dd6aaa7dc8aa 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/bab3af70772ff02f799469f53a38a4a0e5003703/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/14.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 6d751c2a2434..57388c9a9709 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.6`, `15.6.0`, `15-mysql-tomcat`, `15.6-mysql-tomcat`, `15.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.6-postgres-tomcat`, `15.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.6-mariadb-tomcat`, `15.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.14`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0bd38a7fd96d995c5d8ea6ad53b302b3b21058d7/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.15`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.1`, `15.5-mysql-tomcat`, `15.5.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mariadb-tomcat/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index 683f119a44af..3e6d5695082f 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) -- [`3.8.2`, `3.8`, `3.8.2-temurin`, `3.8-temurin`, `latest`](https://github.com/31z4/zookeeper-docker/blob/952b2f523f4f9a829d77114ddbe08ab9249d820b/3.8.2/Dockerfile) +- [`3.8.2`, `3.8`, `3.8.2-temurin`, `3.8-temurin`](https://github.com/31z4/zookeeper-docker/blob/952b2f523f4f9a829d77114ddbe08ab9249d820b/3.8.2/Dockerfile) +- [`3.9.0`, `latest`](https://github.com/31z4/zookeeper-docker/blob/47955764fa33b1cfa547786f5ea0a2ded4e971b9/3.9.0/Dockerfile) # Quick reference (cont.) From 661535536cb0aa5ebe77d822e0e50f17760f60f5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Aug 2023 16:09:07 -0700 Subject: [PATCH 0518/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- redis/README.md | 8 ++++---- storm/README.md | 3 ++- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/bash/README.md b/bash/README.md index 98047bb93c60..73e2151405d6 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230804`, `devel`, `devel-20230804-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/f6f5ad4f4e5b2367bb48ceed43bf76ce237fffe0/devel/Dockerfile) +- [`devel-20230814`, `devel`, `devel-20230814-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/ad1cf2636b0c27cb62573f631abab128e1aa6ec4/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 9500f678c618..f079d5f79908 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.59.0`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7ee971c9d25135b3d79d24b409da0db547b89638/5/debian/Dockerfile) -- [`5.59.0-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7ee971c9d25135b3d79d24b409da0db547b89638/5/alpine/Dockerfile) +- [`5.59.1`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/16480458fa75c2ea88e1b70359446ed160c9cca6/5/debian/Dockerfile) +- [`5.59.1-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/16480458fa75c2ea88e1b70359446ed160c9cca6/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 7fa7ff03e9dc..b83efdc30b71 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2-rc3`, `7.2-rc`, `7.2-rc3-bookworm`, `7.2-rc-bookworm`](https://github.com/docker-library/redis/blob/b1094a33decb8238769620c831cb73ec76c64346/7.2-rc/Dockerfile) -- [`7.2-rc3-alpine`, `7.2-rc-alpine`, `7.2-rc3-alpine3.18`, `7.2-rc-alpine3.18`](https://github.com/docker-library/redis/blob/b1094a33decb8238769620c831cb73ec76c64346/7.2-rc/alpine/Dockerfile) -- [`7.0.12`, `7.0`, `7`, `latest`, `7.0.12-bookworm`, `7.0-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/Dockerfile) -- [`7.0.12-alpine`, `7.0-alpine`, `7-alpine`, `alpine`, `7.0.12-alpine3.18`, `7.0-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/alpine/Dockerfile) +- [`7.2.0`, `7.2`, `7`, `latest`, `7.2.0-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/9b538c33746872dcd1e8c809cbde9f21ac2ec3ac/7.2/Dockerfile) +- [`7.2.0-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.0-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/9b538c33746872dcd1e8c809cbde9f21ac2ec3ac/7.2/alpine/Dockerfile) +- [`7.0.12`, `7.0`, `7.0.12-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/Dockerfile) +- [`7.0.12-alpine`, `7.0-alpine`, `7.0.12-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/alpine/Dockerfile) - [`6.2.13`, `6.2`, `6`, `6.2.13-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/Dockerfile) - [`6.2.13-alpine`, `6.2-alpine`, `6-alpine`, `6.2.13-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/alpine/Dockerfile) - [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/Dockerfile) diff --git a/storm/README.md b/storm/README.md index 5413ccdb51c0..291dbdcf9440 100644 --- a/storm/README.md +++ b/storm/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.2.4-temurin`, `1.2-temurin`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) -- [`2.4.0-temurin`, `2.4-temurin`, `latest`](https://github.com/31z4/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) +- [`2.4.0-temurin`, `2.4-temurin`](https://github.com/31z4/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) +- [`2.5.0`, `latest`](https://github.com/31z4/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) # Quick reference (cont.) From 19f8031a10bb20d983e38472275bc48088e594b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Aug 2023 17:09:07 -0700 Subject: [PATCH 0519/2686] Run update.sh --- gradle/README.md | 50 ++++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 2f283a373244..42cebe3e35f2 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk8/Dockerfile) -- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk8-focal/Dockerfile) -- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11/Dockerfile) -- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11-focal/Dockerfile) -- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk11-alpine/Dockerfile) -- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17/Dockerfile) -- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-focal/Dockerfile) -- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-alpine/Dockerfile) -- [`8.2.1-jdk17-graal`, `8.2-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.2.1-jdk-graal`, `8.2-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.2.1-graal`, `8.2-graal`, `8-graal`, `graal`, `8.2.1-jdk17-graal-jammy`, `8.2-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.2.1-jdk-graal-jammy`, `8.2-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.2.1-graal-jammy`, `8.2-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e24445c1fe2bcf086d2370b10200266f6ce18865/jdk17-graal/Dockerfile) -- [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8/Dockerfile) -- [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk8-focal/Dockerfile) -- [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11/Dockerfile) -- [`7.6.2-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11-focal/Dockerfile) -- [`7.6.2-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk11-alpine/Dockerfile) -- [`7.6.2-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.2-jdk`, `7.6-jdk`, `7-jdk`, `7.6.2`, `7.6`, `7`, `7.6.2-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.2-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.2-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17/Dockerfile) -- [`7.6.2-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.2-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.2-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17-focal/Dockerfile) -- [`7.6.2-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.2-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.2-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2eda35a6c1ea9f446bc27b6c311bb2909b955bcc/jdk17-alpine/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8/Dockerfile) -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk8-focal/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11/Dockerfile) -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11-focal/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk11-alpine/Dockerfile) -- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17/Dockerfile) -- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17-focal/Dockerfile) -- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71d126ec98c6eda90e1818a575486e461adef750/jdk17-alpine/Dockerfile) +- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk8/Dockerfile) +- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk8-focal/Dockerfile) +- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11/Dockerfile) +- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11-focal/Dockerfile) +- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11-alpine/Dockerfile) +- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17/Dockerfile) +- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-focal/Dockerfile) +- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-alpine/Dockerfile) +- [`8.2.1-jdk17-graal`, `8.2-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.2.1-jdk-graal`, `8.2-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.2.1-graal`, `8.2-graal`, `8-graal`, `graal`, `8.2.1-jdk17-graal-jammy`, `8.2-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.2.1-jdk-graal-jammy`, `8.2-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.2.1-graal-jammy`, `8.2-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-graal/Dockerfile) +- [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8/Dockerfile) +- [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8-focal/Dockerfile) +- [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11/Dockerfile) +- [`7.6.2-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11-focal/Dockerfile) +- [`7.6.2-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11-alpine/Dockerfile) +- [`7.6.2-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.2-jdk`, `7.6-jdk`, `7-jdk`, `7.6.2`, `7.6`, `7`, `7.6.2-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.2-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.2-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17/Dockerfile) +- [`7.6.2-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.2-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.2-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17-focal/Dockerfile) +- [`7.6.2-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.2-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.2-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17-alpine/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8-focal/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11-focal/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17/Dockerfile) +- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17-focal/Dockerfile) +- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17-alpine/Dockerfile) # Quick reference (cont.) From 58fdc35ec03afacaec493aa330917d0cebbcf46f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Aug 2023 13:09:07 -0700 Subject: [PATCH 0520/2686] Run update.sh --- gradle/README.md | 21 ++++++++++++--------- mongo/README.md | 37 ++++++++++++++++++++++++++----------- storm/README.md | 2 +- swipl/README.md | 4 ++-- zookeeper/README.md | 2 +- 5 files changed, 42 insertions(+), 24 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 42cebe3e35f2..2604f7b804c1 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,15 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.1-jdk8`, `8.2-jdk8`, `8-jdk8`, `jdk8`, `8.2.1-jdk8-jammy`, `8.2-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk8/Dockerfile) -- [`8.2.1-jdk8-focal`, `8.2-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk8-focal/Dockerfile) -- [`8.2.1-jdk11`, `8.2-jdk11`, `8-jdk11`, `jdk11`, `8.2.1-jdk11-jammy`, `8.2-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11/Dockerfile) -- [`8.2.1-jdk11-focal`, `8.2-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11-focal/Dockerfile) -- [`8.2.1-jdk11-alpine`, `8.2-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk11-alpine/Dockerfile) -- [`8.2.1-jdk17`, `8.2-jdk17`, `8-jdk17`, `jdk17`, `8.2.1-jdk`, `8.2-jdk`, `8-jdk`, `jdk`, `8.2.1`, `8.2`, `8`, `latest`, `8.2.1-jdk17-jammy`, `8.2-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.2.1-jdk-jammy`, `8.2-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.2.1-jammy`, `8.2-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17/Dockerfile) -- [`8.2.1-jdk17-focal`, `8.2-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.2.1-jdk-focal`, `8.2-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.2.1-focal`, `8.2-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-focal/Dockerfile) -- [`8.2.1-jdk17-alpine`, `8.2-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.2.1-jdk-alpine`, `8.2-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-alpine/Dockerfile) -- [`8.2.1-jdk17-graal`, `8.2-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.2.1-jdk-graal`, `8.2-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.2.1-graal`, `8.2-graal`, `8-graal`, `graal`, `8.2.1-jdk17-graal-jammy`, `8.2-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.2.1-jdk-graal-jammy`, `8.2-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.2.1-graal-jammy`, `8.2-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5346f2dce507db6bb4cec7818c6dbd5b8a74b829/jdk17-graal/Dockerfile) +- [`8.3.0-jdk8`, `8.3-jdk8`, `8-jdk8`, `jdk8`, `8.3.0-jdk8-jammy`, `8.3-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk8/Dockerfile) +- [`8.3.0-jdk8-focal`, `8.3-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk8-focal/Dockerfile) +- [`8.3.0-jdk11`, `8.3-jdk11`, `8-jdk11`, `jdk11`, `8.3.0-jdk11-jammy`, `8.3-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11/Dockerfile) +- [`8.3.0-jdk11-focal`, `8.3-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11-focal/Dockerfile) +- [`8.3.0-jdk11-alpine`, `8.3-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11-alpine/Dockerfile) +- [`8.3.0-jdk17`, `8.3-jdk17`, `8-jdk17`, `jdk17`, `8.3.0-jdk`, `8.3-jdk`, `8-jdk`, `jdk`, `8.3.0`, `8.3`, `8`, `latest`, `8.3.0-jdk17-jammy`, `8.3-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.3.0-jdk-jammy`, `8.3-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.3.0-jammy`, `8.3-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17/Dockerfile) +- [`8.3.0-jdk17-focal`, `8.3-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.3.0-jdk-focal`, `8.3-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.3.0-focal`, `8.3-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-focal/Dockerfile) +- [`8.3.0-jdk17-alpine`, `8.3-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.3.0-jdk-alpine`, `8.3-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-alpine/Dockerfile) +- [`8.3.0-jdk17-graal`, `8.3-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.3.0-jdk-graal`, `8.3-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.3.0-graal`, `8.3-graal`, `8-graal`, `graal`, `8.3.0-jdk17-graal-jammy`, `8.3-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.3.0-jdk-graal-jammy`, `8.3-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.3.0-graal-jammy`, `8.3-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-graal/Dockerfile) +- [`8.3.0-jdk20`, `8.3-jdk20`, `8-jdk20`, `jdk20`, `8.3.0-jdk20-jammy`, `8.3-jdk20-jammy`, `8-jdk20-jammy`, `jdk20-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20/Dockerfile) +- [`8.3.0-jdk20-alpine`, `8.3-jdk20-alpine`, `8-jdk20-alpine`, `jdk20-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20-alpine/Dockerfile) +- [`8.3.0-jdk20-graal`, `8.3-jdk20-graal`, `8-jdk20-graal`, `jdk20-graal`, `8.3.0-jdk20-graal-jammy`, `8.3-jdk20-graal-jammy`, `8-jdk20-graal-jammy`, `jdk20-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20-graal/Dockerfile) - [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8/Dockerfile) - [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8-focal/Dockerfile) - [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index bff75e3f4c99..4697aec594bb 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,17 +28,22 @@ WARNING: ## Simple Tags -- [`6.0.9-jammy`, `6.0-jammy`, `6-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/Dockerfile) -- [`6.0.9-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.9-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.9-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.0-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) +- [`7.0.0-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.0-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.0-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.0-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.9-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) +- [`6.0.9-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.9-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.9-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.20-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) - [`5.0.20-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.20-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.20-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.20-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.24-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) +- [`4.4.24-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/bed916513c057385fec8aca9b422030e71921942/4.4-rc/Dockerfile) - [`4.4.24-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.24-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) - [`4.4.24-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) @@ -51,14 +56,24 @@ WARNING: ## Shared Tags -- `6.0.9`, `6.0`, `6`, `latest`: - - [`6.0.9-jammy`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/Dockerfile) +- `7.0.0`, `7.0`, `7`, `latest`: + - [`7.0.0-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) + - [`7.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.0-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.9`, `6.0`, `6`: + - [`6.0.9-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`, `windowsservercore`: +- `6.0.9-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-nanoserver`, `6.0-nanoserver`, `6-nanoserver`, `nanoserver`: +- `6.0.9-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.20`, `5.0`, `5`: @@ -72,7 +87,7 @@ WARNING: - [`5.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.24-rc0`, `4.4-rc`: - - [`4.4.24-rc0-focal`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/Dockerfile) + - [`4.4.24-rc0-focal`](https://github.com/docker-library/mongo/blob/bed916513c057385fec8aca9b422030e71921942/4.4-rc/Dockerfile) - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) - `4.4.24-rc0-windowsservercore`, `4.4-rc-windowsservercore`: diff --git a/storm/README.md b/storm/README.md index 291dbdcf9440..a1c445d00690 100644 --- a/storm/README.md +++ b/storm/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.2.4-temurin`, `1.2-temurin`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) - [`2.4.0-temurin`, `2.4-temurin`](https://github.com/31z4/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) -- [`2.5.0`, `latest`](https://github.com/31z4/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) +- [`2.5.0`, `2.5`, `latest`](https://github.com/31z4/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 379f5abc8810..8d13235336f9 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.13`](https://github.com/SWI-Prolog/docker-swipl/blob/e3851850186cded44b986da8095df36f5d87f0df/9.1.13/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/e3851850186cded44b986da8095df36f5d87f0df/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.14`](https://github.com/SWI-Prolog/docker-swipl/blob/80927128dd1cf6f3a87290adaf35bff9e50d808d/9.1.14/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/80927128dd1cf6f3a87290adaf35bff9e50d808d/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/zookeeper/README.md b/zookeeper/README.md index 3e6d5695082f..8ffe7b158a47 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) - [`3.8.2`, `3.8`, `3.8.2-temurin`, `3.8-temurin`](https://github.com/31z4/zookeeper-docker/blob/952b2f523f4f9a829d77114ddbe08ab9249d820b/3.8.2/Dockerfile) -- [`3.9.0`, `latest`](https://github.com/31z4/zookeeper-docker/blob/47955764fa33b1cfa547786f5ea0a2ded4e971b9/3.9.0/Dockerfile) +- [`3.9.0`, `3.9`, `latest`](https://github.com/31z4/zookeeper-docker/blob/47955764fa33b1cfa547786f5ea0a2ded4e971b9/3.9.0/Dockerfile) # Quick reference (cont.) From be4f71a4ba892644131e420956f69844c3f167a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Aug 2023 15:09:15 -0700 Subject: [PATCH 0521/2686] Run update.sh --- caddy/README.md | 34 +++++++++++++++++----------------- haskell/README.md | 6 ++++-- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 42 ++++++++++++++---------------------------- 4 files changed, 53 insertions(+), 65 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 0bd8a243a513..947a68877468 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.7.3-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/alpine/Dockerfile) -- [`2.7.3-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/builder/Dockerfile) -- [`2.7.3-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) -- [`2.7.3-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.3-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/1809/Dockerfile) -- [`2.7.3-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.4-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/alpine/Dockerfile) +- [`2.7.4-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/builder/Dockerfile) +- [`2.7.4-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) +- [`2.7.4-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.4-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/1809/Dockerfile) +- [`2.7.4-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.7.3`, `2.7`, `2`, `latest`: - - [`2.7.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/alpine/Dockerfile) - - [`2.7.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) - - [`2.7.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) -- `2.7.3-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/builder/Dockerfile) - - [`2.7.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/1809/Dockerfile) - - [`2.7.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.3-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/1809/Dockerfile) - - [`2.7.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/de2643dd4c0251e14791e01c3619cff6ebee5162/2.7/windows/ltsc2022/Dockerfile) +- `2.7.4`, `2.7`, `2`, `latest`: + - [`2.7.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/alpine/Dockerfile) + - [`2.7.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) + - [`2.7.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) +- `2.7.4-builder`, `2.7-builder`, `2-builder`, `builder`: + - [`2.7.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/builder/Dockerfile) + - [`2.7.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/1809/Dockerfile) + - [`2.7.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.4-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.7.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) + - [`2.7.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 4d5a022ddb6d..a037f34af31d 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.5-buster`, `9.4-buster`, `9-buster`, `buster`, `9.4.5`, `9.4`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/buster/Dockerfile) -- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9-slim-buster`, `slim-buster`, `9.4.5-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/slim-buster/Dockerfile) +- [`9.6.2-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.2`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/buster/Dockerfile) +- [`9.6.2-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.2-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/slim-buster/Dockerfile) +- [`9.4.5-buster`, `9.4-buster`, `9.4.5`, `9.4`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/buster/Dockerfile) +- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9.4.5-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 11e68cd6fe8b..9d9ebf3beeb3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-10-jdk-oraclelinux8`, `22-ea-10-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-10-jdk-oracle`, `22-ea-10-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-10-jdk-oraclelinux7`, `22-ea-10-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-10-jdk-bookworm`, `22-ea-10-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/bookworm/Dockerfile) -- [`22-ea-10-jdk-slim-bookworm`, `22-ea-10-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-10-jdk-slim`, `22-ea-10-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-10-jdk-bullseye`, `22-ea-10-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/bullseye/Dockerfile) -- [`22-ea-10-jdk-slim-bullseye`, `22-ea-10-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-10-jdk-windowsservercore-ltsc2022`, `22-ea-10-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-10-jdk-windowsservercore-1809`, `22-ea-10-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-10-jdk-nanoserver-1809`, `22-ea-10-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-11-jdk-oraclelinux8`, `22-ea-11-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-11-jdk-oracle`, `22-ea-11-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-11-jdk-oraclelinux7`, `22-ea-11-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-11-jdk-bookworm`, `22-ea-11-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/bookworm/Dockerfile) +- [`22-ea-11-jdk-slim-bookworm`, `22-ea-11-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-11-jdk-slim`, `22-ea-11-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-11-jdk-bullseye`, `22-ea-11-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/bullseye/Dockerfile) +- [`22-ea-11-jdk-slim-bullseye`, `22-ea-11-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-11-jdk-windowsservercore-ltsc2022`, `22-ea-11-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-11-jdk-windowsservercore-1809`, `22-ea-11-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-11-jdk-nanoserver-1809`, `22-ea-11-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) - [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `22-ea-10-jdk`, `22-ea-10`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-10-jdk-windowsservercore`, `22-ea-10-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-10-jdk-nanoserver`, `22-ea-10-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1b03ec590df92c6876a354403f3659edfd0d7139/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-11-jdk`, `22-ea-11`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-11-jdk-windowsservercore`, `22-ea-11-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-11-jdk-nanoserver`, `22-ea-11-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index 114a8bc9367e..eb2959f628b5 100644 --- a/php/README.md +++ b/php/README.md @@ -38,34 +38,20 @@ WARNING: - [`8.3.0beta2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/cli/Dockerfile) - [`8.3.0beta2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/fpm/Dockerfile) - [`8.3.0beta2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.9RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.9RC1-bookworm`, `8.2-rc-bookworm`, `8.2.9RC1-cli`, `8.2-rc-cli`, `8.2.9RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.9RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.9RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.9RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.9RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.9RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.9RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.9RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.9RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.9RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.9RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.9RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.9RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.9RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.9RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.9RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.9RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.9RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.9RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.9RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.9RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.9RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.9RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.9RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/10f7fe5489632a34a5c378738d3b0358dfe1d62b/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.8-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.8-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.8-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.8`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/cli/Dockerfile) -- [`8.2.8-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.8-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/apache/Dockerfile) -- [`8.2.8-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.8-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/fpm/Dockerfile) -- [`8.2.8-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.8-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bookworm/zts/Dockerfile) -- [`8.2.8-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.8-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/cli/Dockerfile) -- [`8.2.8-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/apache/Dockerfile) -- [`8.2.8-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/fpm/Dockerfile) -- [`8.2.8-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/bullseye/zts/Dockerfile) -- [`8.2.8-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.8-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.8-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.8-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.8-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.8-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.8-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.8-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.8-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.8-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.8-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.8-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e0124adf1b5ed3a207b39dcdf0f99af2053040b3/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.9-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.9-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.9-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.9`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/cli/Dockerfile) +- [`8.2.9-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.9-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/apache/Dockerfile) +- [`8.2.9-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.9-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/fpm/Dockerfile) +- [`8.2.9-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.9-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/zts/Dockerfile) +- [`8.2.9-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.9-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/cli/Dockerfile) +- [`8.2.9-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/apache/Dockerfile) +- [`8.2.9-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/fpm/Dockerfile) +- [`8.2.9-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/zts/Dockerfile) +- [`8.2.9-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.9-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.9-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.9-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.9-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.9-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.9-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.9-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.9-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.9-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.9-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.9-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/zts/Dockerfile) - [`8.1.22-cli-bookworm`, `8.1-cli-bookworm`, `8.1.22-bookworm`, `8.1-bookworm`, `8.1.22-cli`, `8.1-cli`, `8.1.22`, `8.1`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/cli/Dockerfile) - [`8.1.22-apache-bookworm`, `8.1-apache-bookworm`, `8.1.22-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/apache/Dockerfile) - [`8.1.22-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.22-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/fpm/Dockerfile) From ead31b1867f5d5af25737db785e1aa4e0aca58c3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Aug 2023 15:17:50 -0700 Subject: [PATCH 0522/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index 941e85d85a5a..805fa857fe18 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.7-sdk`, `3.0-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.0.7`, `3.0`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e858f543b2f25a4c58ce635043ba67ac1093015e/stable/bullseye/Dockerfile) -- [`3.1.0-262.3.beta-sdk`, `beta-sdk`, `3.1.0-262.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e858f543b2f25a4c58ce635043ba67ac1093015e/beta/bullseye/Dockerfile) +- [`3.1.0-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.0`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/374830ccf127dc3ee9c297ea203e512d8b18331c/stable/bullseye/Dockerfile) +- [`3.2.0-42.1.beta-sdk`, `beta-sdk`, `3.2.0-42.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/374830ccf127dc3ee9c297ea203e512d8b18331c/beta/bullseye/Dockerfile) # Quick reference (cont.) From abf25df80a60eb4f205060d9abfc470b48c04f3d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Aug 2023 16:20:08 -0700 Subject: [PATCH 0523/2686] Run update.sh --- jruby/README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index e08e33582f5c..0f8a99dcabf5 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,16 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.4/jdk17/Dockerfile) -- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/686eba840c764bdc342e519df3a999cab5b4e57b/9.3/jdk17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.2-jre17`, `9.4.2.0-jre17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre17/Dockerfile) +- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.10-jre17`, `9.3.10.0-jre17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre17/Dockerfile) # Quick reference (cont.) From d79e9087b8854e9322cf704db4d4802146000f33 Mon Sep 17 00:00:00 2001 From: Miguel Moquillon Date: Mon, 21 Aug 2023 15:26:36 +0200 Subject: [PATCH 0524/2686] Update the documentation of Silverpeas by removing deprecated information --- silverpeas/content.md | 36 +++--------------------------------- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/silverpeas/content.md b/silverpeas/content.md index 1bbd0c8b5ef6..acb5eadb34fb 100644 --- a/silverpeas/content.md +++ b/silverpeas/content.md @@ -75,7 +75,9 @@ $ docker run --name silverpeas -p 8080:8000 -d \ %%IMAGE%% ``` -By default, `database` is the default hostname used by Silverpeas for its persistence backend. So, as the PostgreSQL database is linked here under the alias `database`, we don't have to explicitly indicate its hostname with the `DB_SERVER` environment variable. The Silverpeas images expose the 8000 port and here this port is mapped to the 8080 port of the host; Silverpeas is then accessible at `http://localhost:8080/silverpeas`. You can sign in Silverpeas with the administrator account `SilverAdmin` and with as password `SilverAdmin`. +By default, `database` is the default hostname used by Silverpeas for its persistence backend. So, as the PostgreSQL database is linked here under the alias `database`, we don't have to explicitly indicate its hostname with the `DB_SERVER` environment variable. The Silverpeas images expose the 8000 port and here this port is mapped to the 8080 port of the host. + +Silverpeas is then accessible at [http://localhost:8080/silverpeas](http://localhost:8080/silverpeas). You can sign in Silverpeas with the administrator account `SilverAdmin` and with as password `SilverAdmin`. Don't forget to change the password of the administrator account. By default, some volumes are created inside the container, so that we can access them in the host. (Refers the [Docker Documentation](https://docs.docker.com/engine/tutorials/dockervolumes/#locating-a-volume) to locate them.) Among them `/opt/silverpeas/log` and `/opt/silverpeas/data`: the first volume contains the logs produced by Silverpeas whereas the second volume contains all the data that are created and managed by the users in Silverpeas. Because the latter has already a directories structure created at image creation, a host directory cannot be mounted into the container at `opt/silverpeas/data` without losing the volume's content (the mount point overlays the pre-existing content of the volume). In our example, in order to easily locate the two volumes, we label them explicitly with respectively the labels `silverpeas-log` and `silverpeas-data`. (Using a [Data Volume Container](https://docs.docker.com/engine/userguide/containers/dockervolumes/) to map `/opt/silverpeas/log` and `/opt/silverpeas/data` is a better solution.) @@ -197,38 +199,6 @@ $ docker create --name silverpeas-store \ /bin/true ``` -# Document conversion - -Some features in Silverpeas (export, preview, content visualization, ...) requires a document converter. The document converter isn't mandatory to use Silverpeas but it gives access to additional features. The document conversion is performed in Silverpeas by the program LibreOffice running as a daemon. So, in order to enable and to use these features, you have first to use a Data Volume Container to store all the Silverpeas data and second to run a container embbeding a LibreOffice program running as a daemon. There is no official Docker images of LibreOffice but DockerHub hosts some of unofficial images of it ([xcgd/libreoffice](https://hub.docker.com/r/xcgd/libreoffice/) for example). - -Once a Data Volume Container is created for Silverpeas as explained in the section above, you have to link it with the Docker image running LibreOffice as a daemon in order the program have access the documents to convert: - -```console -$ docker run --name libreoffice -d \ - --volumes-from silverpeas-store \ - xcgd/libreoffice -``` - -Check the port at which the LibreOffice image is listening and then defines it in the Silverpeas configuration. In our example, `xcgd/libreoffice` listens by default the port 8997. The configuration parameters to communicate with LibreOffice are defined by the two following properties: - -- `CONVERTER_HOST` is either the IP address or the name of the host in which runs LibreOffice, -- `CONVERTER_PORT` is the port number at which the LibreOffice daemon listens. - -These properties have to be defined in the Silverpeas global configuration file `config.properties` that is mounted in the Data Volume Container: - - CONVERTER_HOST=libreoffice - CONVERTER_PORT=8997 - -Then the Docker image of Silverpeas can be ran: - -```console -$ docker run --name silverpeas -p 8080:8000 -d \ - --link postgresql:database \ - --link libreoffice:libreoffice \ - --volumes-from silverpeas-store \ - %%IMAGE%% -``` - # Logs You can follow the activity of Silverpeas by watching the logs generated in the mounted `/opt/silverpeas/log` directory. From ada6329a021c3969143fca3f7c2a946e4cc446cd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Aug 2023 12:20:25 -0700 Subject: [PATCH 0525/2686] Run update.sh --- arangodb/README.md | 2 +- clearlinux/README.md | 2 +- ghost/README.md | 4 +-- haproxy/README.md | 12 ++++----- ibmjava/README.md | 6 ++--- photon/README.md | 6 ++--- php/README.md | 59 +++++++++++++++++++++++++++++++++----------- rabbitmq/README.md | 16 ++++++------ telegraf/README.md | 12 ++++----- 9 files changed, 75 insertions(+), 44 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 93db47b37f63..60a2bab0571d 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) -- [`3.10`, `3.10.9`](https://github.com/arangodb/arangodb-docker/blob/bdd1fadac33809b6344b6ce1adceef73717e576e/alpine/3.10.9/Dockerfile) +- [`3.10`, `3.10.10`](https://github.com/arangodb/arangodb-docker/blob/5e1e58d2e5a985fe21b0747909d39eb3ccc434e2/alpine/3.10.10/Dockerfile) - [`3.11`, `3.11.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/b2fcf01f639bebe80a8563c2d67b2866331f13c2/alpine/3.11.2/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0099569c7abc..039979cfb974 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f0092b51ee5211ce19e02c6d73247f7316ad2711/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5557000f5b1e8cb62576aa05d6847e551375d458/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index f079d5f79908..0d4309e55779 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.59.1`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/16480458fa75c2ea88e1b70359446ed160c9cca6/5/debian/Dockerfile) -- [`5.59.1-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/16480458fa75c2ea88e1b70359446ed160c9cca6/5/alpine/Dockerfile) +- [`5.59.2`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/585168e51cf6cf3c63494ecb1c438a28f8c253c9/5/debian/Dockerfile) +- [`5.59.2-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/585168e51cf6cf3c63494ecb1c438a28f8c253c9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index b319d26c2df0..dfca1b04b377 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,12 +32,12 @@ WARNING: - [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) - [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/alpine/Dockerfile) -- [`2.4.23`, `2.4`, `2.4.23-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/Dockerfile) -- [`2.4.23-alpine`, `2.4-alpine`, `2.4.23-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/7acb59e8fbc48dabf3d7b06bae1387ac9f2ac5ce/2.4/alpine/Dockerfile) -- [`2.2.30`, `2.2`, `2.2.30-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/0e3884218d34cd77b8b59145d05e058be227b334/2.2/Dockerfile) -- [`2.2.30-alpine`, `2.2-alpine`, `2.2.30-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/0e3884218d34cd77b8b59145d05e058be227b334/2.2/alpine/Dockerfile) -- [`2.0.32`, `2.0`, `2.0.32-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/51e072f624e35ba473bb69e6d2815cb1dae0c7cc/2.0/Dockerfile) -- [`2.0.32-alpine`, `2.0-alpine`, `2.0.32-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/51e072f624e35ba473bb69e6d2815cb1dae0c7cc/2.0/alpine/Dockerfile) +- [`2.4.24`, `2.4`, `2.4.24-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/Dockerfile) +- [`2.4.24-alpine`, `2.4-alpine`, `2.4.24-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/alpine/Dockerfile) +- [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/ad34487167b0bb727cb56000f26d8ea37449c590/2.2/Dockerfile) +- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/ad34487167b0bb727cb56000f26d8ea37449c590/2.2/alpine/Dockerfile) +- [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/Dockerfile) +- [`2.0.33-alpine`, `2.0-alpine`, `2.0.33-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 315e55983a3e..baecdf1f11cc 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/67d18f6c1f9867dccecf423a35f852b3ada034e6/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 21466946d412..47d7cf431df2 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230805`, `latest`](https://github.com/vmware/photon-docker-image/blob/bb82f90a36d7ca1d2b37e79a0eee40feefa2cf22/docker/Dockerfile) -- [`4.0`, `4.0-20230805`](https://github.com/vmware/photon-docker-image/blob/ccf0d8256cba66ac5b6f6672d8c5d9b8778eaca4/docker/Dockerfile) -- [`3.0`, `3.0-20230805`](https://github.com/vmware/photon-docker-image/blob/8bfea65fd8c9b9c6b10686ce05e51a6ef6335c91/docker/Dockerfile) +- [`5.0`, `5.0-20230819`, `latest`](https://github.com/vmware/photon-docker-image/blob/34d858aa519be06e9828349ea18a4c30086e9bd6/docker/Dockerfile) +- [`4.0`, `4.0-20230819`](https://github.com/vmware/photon-docker-image/blob/2ecc20924298169857525d5bfeb3ea775aee2bc5/docker/Dockerfile) +- [`3.0`, `3.0-20230819`](https://github.com/vmware/photon-docker-image/blob/8ad3ab9bc4648f3aa20a630d6d7997e20a3c299e/docker/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index eb2959f628b5..b0e7e5b6eb26 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0beta2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta2-bookworm`, `8.3-rc-bookworm`, `8.3.0beta2-cli`, `8.3-rc-cli`, `8.3.0beta2`, `8.3-rc`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0beta2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0beta2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0beta2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0beta2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0beta2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0beta2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0beta2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0beta2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0beta2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0beta2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0beta2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0beta2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0beta2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/7e1f943b7719478f9fb328a28cbf0316954ad2ab/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0beta3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta3-bookworm`, `8.3-rc-bookworm`, `8.3.0beta3-cli`, `8.3-rc-cli`, `8.3.0beta3`, `8.3-rc`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0beta3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0beta3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0beta3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0beta3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0beta3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0beta3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0beta3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0beta3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0beta3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0beta3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0beta3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0beta3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0beta3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.10RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.10RC1-bookworm`, `8.2-rc-bookworm`, `8.2.10RC1-cli`, `8.2-rc-cli`, `8.2.10RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.10RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.10RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.10RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.10RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.10RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.10RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.10RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.10RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.10RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.10RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.10RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.10RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.10RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.10RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.10RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.10RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.10RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.10RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.10RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.10RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.10RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.10RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.10RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.9-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.9-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.9-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.9`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/cli/Dockerfile) - [`8.2.9-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.9-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/apache/Dockerfile) - [`8.2.9-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.9-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/fpm/Dockerfile) @@ -52,6 +66,23 @@ WARNING: - [`8.2.9-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.9-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/cli/Dockerfile) - [`8.2.9-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.9-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.23RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.23RC1-bookworm`, `8.1-rc-bookworm`, `8.1.23RC1-cli`, `8.1-rc-cli`, `8.1.23RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.23RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.23RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.23RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.23RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.23RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.23RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.23RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.23RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.23RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.23RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.23RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.23RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.23RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.23RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.23RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.23RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.23RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.23RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.23RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.23RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.23RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.23RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.23RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.23RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.23RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.23RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.23RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.22-cli-bookworm`, `8.1-cli-bookworm`, `8.1.22-bookworm`, `8.1-bookworm`, `8.1.22-cli`, `8.1-cli`, `8.1.22`, `8.1`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/cli/Dockerfile) - [`8.1.22-apache-bookworm`, `8.1-apache-bookworm`, `8.1.22-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/apache/Dockerfile) - [`8.1.22-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.22-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index fd370abbbfa0..923197644484 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.13.0-beta.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-beta.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.2`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/ubuntu/Dockerfile) -- [`3.12.2-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.12/alpine/Dockerfile) -- [`3.12.2-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.20`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.11/ubuntu/Dockerfile) -- [`3.11.20-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.20-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.11/alpine/Dockerfile) -- [`3.11.20-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.3`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/274d0a537ffb64d3748bbd94064fb603b58c03ba/3.12/ubuntu/Dockerfile) +- [`3.12.3-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/274d0a537ffb64d3748bbd94064fb603b58c03ba/3.12/alpine/Dockerfile) +- [`3.12.3-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.21`, `3.11`](https://github.com/docker-library/rabbitmq/blob/98f3966e2b5be9f9dc81ff0d345101ad79c2e864/3.11/ubuntu/Dockerfile) +- [`3.11.21-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.21-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/98f3966e2b5be9f9dc81ff0d345101ad79c2e864/3.11/alpine/Dockerfile) +- [`3.11.21-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/alpine/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index df2e2bc7c83c..11efd2b490d3 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/df205df72af2191b2582a290377504e3f2079bbf/telegraf/1.27/alpine/Dockerfile) +- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.25/Dockerfile) +- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.25/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.27/alpine/Dockerfile) # Quick reference (cont.) From 496940964e82c8986d673f9dac205a00195aece3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Aug 2023 13:17:45 -0700 Subject: [PATCH 0526/2686] Run update.sh --- cassandra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/README.md b/cassandra/README.md index 8d8dc7eb8899..6944f55d6428 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) - [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/955064939ae306088491856ff169b58319d619f9/4.0/Dockerfile) -- [`3.11.15`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/7f0ca5fd56b2397688f4de64cd5d15ef54b581ec/3.11/Dockerfile) +- [`3.11.16`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) - [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) # Quick reference (cont.) From 9179c6e82ba462cd8fd0276a0b4a8fadc6470789 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Aug 2023 12:18:23 -0700 Subject: [PATCH 0527/2686] Run update.sh --- eclipse-mosquitto/README.md | 6 +++--- mariadb/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index b5b11d514bef..e81f6fab25e1 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.16`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/2.0/Dockerfile) -- [`2.0.16-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/166d1489f2c425f8b04bf1a25dd90e9724628eac/docker/1.6-openssl/Dockerfile) +- [`2.0.17`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/2.0/Dockerfile) +- [`2.0.17-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/2.0-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 6144164e3c53..0da1dede9368 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,7 +26,7 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.1.1-rc-jammy`, `11.1-rc-jammy`, `11.1.1-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/28adeb9071427d1e18aa9317f41d62fa4a0f3769/11.1/Dockerfile) +- [`11.1.2-rc-jammy`, `11.1-rc-jammy`, `11.1.2-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/71a2ef521e510a656934623c471593dfc9753d8a/11.1/Dockerfile) - [`11.0.3-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.3`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/11.0/Dockerfile) - [`10.11.5-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.5`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.11/Dockerfile) - [`10.10.6-jammy`, `10.10-jammy`, `10.10.6`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.10/Dockerfile) From d70274a1cfce7cd221241b494f2b57fdd885c38f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Aug 2023 13:09:20 -0700 Subject: [PATCH 0528/2686] Run update.sh --- amazonlinux/README.md | 6 ++-- groovy/README.md | 10 +++--- hitch/README.md | 3 +- perl/README.md | 80 +++++++++++++++++++++---------------------- 4 files changed, 49 insertions(+), 50 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 939f62ad3f98..ab7c24efd449 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.1.20230725.0`](https://github.com/amazonlinux/container-images/blob/309a1ec082a5ea420a3801781f91a7796764143d/Dockerfile) -- [`2`, `2.0.20230727.0`](https://github.com/amazonlinux/container-images/blob/0270a0f82bb7e12190531be44d4516fd6274181a/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230724.0`](https://github.com/amazonlinux/container-images/blob/4000dd6f1d663b0609563b9662398f6d83d88475/Dockerfile) +- [`2023`, `latest`, `2023.1.20230809.0`](https://github.com/amazonlinux/container-images/blob/0a5000d4f70e7fb5ce45918b5b06942bb350574b/Dockerfile) +- [`2`, `2.0.20230808.0`](https://github.com/amazonlinux/container-images/blob/a4879e934010e5d34e9cc46c65695c1b75ac4c57/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230807.0`](https://github.com/amazonlinux/container-images/blob/5139ae655ef520ac44dea179c16f93d9e9650998/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index f41127f5751b..9b000dd90d28 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.13-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.13-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk8/Dockerfile) -- [`4.0.13-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.13-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk11/Dockerfile) -- [`4.0.13-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk11-alpine/Dockerfile) -- [`4.0.13-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.13-jdk`, `4.0-jdk`, `4.0.13`, `4.0`, `4`, `jdk`, `latest`, `4.0.13-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.13-jdk-jammy`, `4.0-jdk-jammy`, `4.0.13-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk17/Dockerfile) -- [`4.0.13-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.13-jdk-alpine`, `4.0-jdk-alpine`, `4.0.13-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/be241bb70b5763d687bb732c8d31c4d64cee2853/jdk17-alpine/Dockerfile) +- [`4.0.14-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.14-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk8/Dockerfile) +- [`4.0.14-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.14-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk11/Dockerfile) +- [`4.0.14-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk11-alpine/Dockerfile) +- [`4.0.14-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.14-jdk`, `4.0-jdk`, `4.0.14`, `4.0`, `4`, `jdk`, `latest`, `4.0.14-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.14-jdk-jammy`, `4.0-jdk-jammy`, `4.0.14-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk17/Dockerfile) +- [`4.0.14-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.14-jdk-alpine`, `4.0-jdk-alpine`, `4.0.14-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/hitch/README.md b/hitch/README.md index 627fbacbf181..3ff58d6e537b 100644 --- a/hitch/README.md +++ b/hitch/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1`, `1.7`, `1.7.3`, `1.7.3-1`, `latest`](https://github.com/varnish/docker-hitch/blob/3f7f06a4eeb066e03f81f5e3d170d1e13606e69e/Dockerfile) -- [`1.7.2`, `1.7.2-1`](https://github.com/varnish/docker-hitch/blob/054c998138c8f8ec6be03c7db711b8435de41e2b/Dockerfile) +- [`1`, `1.8`, `1.8.0`, `1.8.0-1`, `latest`](https://github.com/varnish/docker-hitch/blob/3fe55c4296018b04c7e1d2efdfcadce9c4017e0a/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 22b6a7596e19..de7605bbb13c 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.1`, `5.39`, `devel`, `5.39.1-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main-bookworm/Dockerfile) -- [`5.39.1-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main-bullseye/Dockerfile) -- [`5.39.1-slim`, `5.39-slim`, `devel-slim`, `5.39.1-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim-bookworm/Dockerfile) -- [`5.39.1-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim-bullseye/Dockerfile) -- [`5.39.1-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.1-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main,threaded-bookworm/Dockerfile) -- [`5.39.1-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-main,threaded-bullseye/Dockerfile) -- [`5.39.1-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.1-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim,threaded-bookworm/Dockerfile) -- [`5.39.1-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/e60966858988e0e0371880656b1c2e673ade660e/5.039.001-slim,threaded-bullseye/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.2`, `5.39`, `devel`, `5.39.2-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main-bookworm/Dockerfile) +- [`5.39.2-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main-bullseye/Dockerfile) +- [`5.39.2-slim`, `5.39-slim`, `devel-slim`, `5.39.2-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim-bookworm/Dockerfile) +- [`5.39.2-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim-bullseye/Dockerfile) +- [`5.39.2-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.2-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main,threaded-bookworm/Dockerfile) +- [`5.39.2-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main,threaded-bullseye/Dockerfile) +- [`5.39.2-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.2-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim,threaded-bookworm/Dockerfile) +- [`5.39.2-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From ea6da8ba6d0a45c313619b653b7e05d72a4eb709 Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Tue, 22 Aug 2023 14:54:06 -0700 Subject: [PATCH 0529/2686] Update content.md --- aerospike/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/content.md b/aerospike/content.md index cb88c5588055..02a17ade68ec 100644 --- a/aerospike/content.md +++ b/aerospike/content.md @@ -83,7 +83,7 @@ You should first `-v` map a local directory, which Docker will bind mount. Next, For example: ```console -docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike-p 3000-3002:3000-3002 %%IMAGE%%:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf +docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 %%IMAGE%%:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf ``` ### Persistent Data Directory From 58617f3bdec72119b1ba9d8788f3d16c2ccf94f3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Aug 2023 16:20:37 -0700 Subject: [PATCH 0530/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 73e2151405d6..dc02793cac57 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230814`, `devel`, `devel-20230814-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/ad1cf2636b0c27cb62573f631abab128e1aa6ec4/devel/Dockerfile) +- [`devel-20230818`, `devel`, `devel-20230818-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/1dfecef20ab0d1c612d6bbaa2a2c3618f0c46c61/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) From e080cf6f47f55a200251cf03438fc408a0e05350 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Aug 2023 17:20:38 -0700 Subject: [PATCH 0531/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 0d4309e55779..fab23818654a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.59.2`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/585168e51cf6cf3c63494ecb1c438a28f8c253c9/5/debian/Dockerfile) -- [`5.59.2-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/585168e51cf6cf3c63494ecb1c438a28f8c253c9/5/alpine/Dockerfile) +- [`5.59.4`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d95bdb08e967f9f41c21c004ce916d4ac4973f28/5/debian/Dockerfile) +- [`5.59.4-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d95bdb08e967f9f41c21c004ce916d4ac4973f28/5/alpine/Dockerfile) # Quick reference (cont.) From 54281f4e7a6112ea6bcb06202dfe797a0b3a0377 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Aug 2023 12:18:22 -0700 Subject: [PATCH 0532/2686] Run update.sh --- joomla/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 29aeb53cfb82..6d8b4e9404eb 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-alpha2`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha2-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha2-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha2-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/apache/Dockerfile) -- [`5.0.0-alpha2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-alpha2-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.1/fpm/Dockerfile) -- [`5.0.0-alpha2-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/apache/Dockerfile) -- [`5.0.0-alpha2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-alpha2-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/5.0.alpha/php8.2/fpm/Dockerfile) -- [`4.4.0-alpha2-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/apache/Dockerfile) -- [`4.4.0-alpha2-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-alpha2-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.0/fpm/Dockerfile) -- [`4.4.0-alpha2`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha2-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha2-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha2-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/apache/Dockerfile) -- [`4.4.0-alpha2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-alpha2-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.1/fpm/Dockerfile) -- [`4.4.0-alpha2-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/apache/Dockerfile) -- [`4.4.0-alpha2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-alpha2-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/052a38d620ce0bcf6bd3f61fa29a4e1fc5a41561/4.4.alpha/php8.2/fpm/Dockerfile) -- [`4.3.3`, `4.3`, `4`, `latest`, `4.3.3-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.3-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.3-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/apache/Dockerfile) -- [`4.3.3-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.3-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.0/fpm/Dockerfile) -- [`4.3.3-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/apache/Dockerfile) -- [`4.3.3-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.3-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.1/fpm/Dockerfile) -- [`4.3.3-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/apache/Dockerfile) -- [`4.3.3-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.3-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/1a5f3a19ac30bddc212cb334d9a83ee0cbfda20c/4.3/php8.2/fpm/Dockerfile) +- [`5.0.0-alpha4`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha4-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha4-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha4-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/apache/Dockerfile) +- [`5.0.0-alpha4-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-alpha4-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/fpm/Dockerfile) +- [`5.0.0-alpha4-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/apache/Dockerfile) +- [`5.0.0-alpha4-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-alpha4-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/fpm/Dockerfile) +- [`4.4.0-alpha4-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/apache/Dockerfile) +- [`4.4.0-alpha4-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-alpha4-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/fpm/Dockerfile) +- [`4.4.0-alpha4`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha4-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha4-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha4-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/apache/Dockerfile) +- [`4.4.0-alpha4-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-alpha4-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/fpm/Dockerfile) +- [`4.4.0-alpha4-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/apache/Dockerfile) +- [`4.4.0-alpha4-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-alpha4-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/fpm/Dockerfile) +- [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/apache/Dockerfile) +- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm/Dockerfile) +- [`4.3.4-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/apache/Dockerfile) +- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/fpm/Dockerfile) +- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/apache/Dockerfile) +- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/fpm/Dockerfile) - [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/apache/Dockerfile) - [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm/Dockerfile) From 457b750108da61e062b6155508a60083b9aac0ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Aug 2023 13:09:26 -0700 Subject: [PATCH 0533/2686] Run update.sh --- arangodb/README.md | 2 +- clojure/README.md | 102 +++++++++++++++++----------------- ibm-semeru-runtimes/README.md | 80 +++++++++++++------------- orientdb/README.md | 4 +- 4 files changed, 94 insertions(+), 94 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 60a2bab0571d..a6fbbc20435b 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) - [`3.10`, `3.10.10`](https://github.com/arangodb/arangodb-docker/blob/5e1e58d2e5a985fe21b0747909d39eb3ccc434e2/alpine/3.10.10/Dockerfile) -- [`3.11`, `3.11.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/b2fcf01f639bebe80a8563c2d67b2866331f13c2/alpine/3.11.2/Dockerfile) +- [`3.11`, `3.11.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a2086d378d6c439d95b6900c6429709e57c6f24d/alpine/3.11.3/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 6d204ad908d2..18786d54e237 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1386-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1386-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1386-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1386`, `temurin-8-tools-deps-1.11.1.1386-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1386-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1386-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1386-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1386`, `temurin-11-tools-deps-1.11.1.1386-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1386-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1386-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1386-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1386-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1386-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1386`, `temurin-17-tools-deps-1.11.1.1386-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1386`, `tools-deps-1.11.1.1386-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1386-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1386-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1386-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1386`, `temurin-20-tools-deps-1.11.1.1386-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/110ba9313ff240beb63674c465e0b28b4adf8ff2/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1405-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1405-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1405-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1405`, `temurin-8-tools-deps-1.11.1.1405-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1405-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1405-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1405-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1405`, `temurin-11-tools-deps-1.11.1.1405-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1405-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1405-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1405-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1405-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1405-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1405`, `temurin-17-tools-deps-1.11.1.1405-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1405`, `tools-deps-1.11.1.1405-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1405-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1405-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1405`, `temurin-20-tools-deps-1.11.1.1405-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 75f10a340d45..1e925e68da48 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u372-b07-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u372-b07-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u372-b07-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u372-b07-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.19_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.7_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/centos/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/centos/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.1_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/centos/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.20_8-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.8_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u372-b07-jdk`, `open-8-jdk`: - - [`open-8u372-b07-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u372-b07-jre`, `open-8-jre`: - - [`open-8u372-b07-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.19_7-jdk`, `open-11-jdk`: - - [`open-11.0.19_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.19_7-jre`, `open-11-jre`: - - [`open-11.0.19_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.7_7-jdk`, `open-17-jdk`: - - [`open-17.0.7_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.7_7-jre`, `open-17-jre`: - - [`open-17.0.7_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-20.0.1_9-jdk`, `open-20-jdk`: - - [`open-20.0.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-20.0.1_9-jre`, `open-20-jre`: - - [`open-20.0.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/ee3e910142ce63e8065c4528c59072d6f3292219/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u382-b05-jdk`, `open-8-jdk`: + - [`open-8u382-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u382-b05-jre`, `open-8-jre`: + - [`open-8u382-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.20_8-jdk`, `open-11-jdk`: + - [`open-11.0.20_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.20_8-jre`, `open-11-jre`: + - [`open-11.0.20_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.8_7-jdk`, `open-17-jdk`: + - [`open-17.0.8_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.8_7-jre`, `open-17-jre`: + - [`open-17.0.8_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-20.0.2_9-jdk`, `open-20-jdk`: + - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-20.0.2_9-jre`, `open-20-jre`: + - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index ab884faf30f7..563ee9d1e9ae 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.21`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fabe2645fa8cb548f43dda604f321e93ef53b0ea/release/3.2.x/3.2.21/Dockerfile) -- [`3.2.21-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fabe2645fa8cb548f43dda604f321e93ef53b0ea/release/3.2.x/3.2.21-tp3/Dockerfile) +- [`3.2.22`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/51f8ab879c1364b39f252e48ac203e3a7f82d49b/release/3.2.x/3.2.22/Dockerfile) +- [`3.2.22-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/51f8ab879c1364b39f252e48ac203e3a7f82d49b/release/3.2.x/3.2.22-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 1058f7dfec6859b2f8919117ee218d135d58d22b Mon Sep 17 00:00:00 2001 From: benny Vasquez Date: Wed, 23 Aug 2023 16:10:05 -0400 Subject: [PATCH 0534/2686] Updating the information around AlmaLinux OS --- almalinux/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/almalinux/content.md b/almalinux/content.md index 15219c47fa42..53b1f6873e2d 100644 --- a/almalinux/content.md +++ b/almalinux/content.md @@ -1,6 +1,6 @@ # AlmaLinux OS -[AlmaLinux OS](https://almalinux.org/) is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform. AlmaLinux OS is 1:1 binary compatible with RHEL® 8 and it was founded by the team behind the well-established [CloudLinux OS](https://www.cloudlinux.com/all-products/product-overview/cloudlinuxos). +[AlmaLinux OS](https://almalinux.org/) is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform. AlmaLinux OS is binary compatible with RHEL®, and it was founded by the team behind the well-established [CloudLinux OS](https://www.cloudlinux.com/all-products/product-overview/cloudlinuxos). Today, the AlmaLinux OS Foundation, run by a community-elected board of directors, owns and manages the operating system. %%LOGO%% From b5e31b2f917cfe32323fcbd515f004361d94f984 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Aug 2023 16:21:50 -0700 Subject: [PATCH 0535/2686] Run update.sh --- elasticsearch/README.md | 4 +-- kibana/README.md | 4 +-- logstash/README.md | 4 +-- mongo/README.md | 60 ++++++++++++++++++------------------- open-liberty/README.md | 54 ++++++++++++++++----------------- websphere-liberty/README.md | 48 ++++++++++++++--------------- 6 files changed, 87 insertions(+), 87 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 206ce5da0eb3..b88b9322e030 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.1`](https://github.com/docker-library/elasticsearch/blob/0404371923419eeb901956b8cb4fcc308da088b2/8/Dockerfile) -- [`7.17.10`](https://github.com/docker-library/elasticsearch/blob/e95712a301d6adacde7ef3d31d54dd9bca752426/7/Dockerfile) +- [`8.9.1`](https://github.com/docker-library/elasticsearch/blob/eae769ae918ec760e5d21385d22298003914bd33/8/Dockerfile) +- [`7.17.12`](https://github.com/docker-library/elasticsearch/blob/5fe5a426ca33ac9869500cf87e6e4a14d7b1f9e5/7/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index ec428de3f31d..e04eef151fca 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.1`](https://github.com/docker-library/kibana/blob/babe715a9ea3c4024d56d1bdffdc5feaed901df6/8/Dockerfile) -- [`7.17.10`](https://github.com/docker-library/kibana/blob/6dc8cf4590a7259135398fe84648b76fdb79ac2e/7/Dockerfile) +- [`8.9.1`](https://github.com/docker-library/kibana/blob/bc464499de24fd857521ba25fcb8d58f23516d3d/8/Dockerfile) +- [`7.17.12`](https://github.com/docker-library/kibana/blob/c2cb4e05003784aaa811f1c2ec8df9bdfb8d46e5/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 0a331550775e..9d0bb4dc7f13 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.1`](https://github.com/docker-library/logstash/blob/f6c2e750d4dd9a91c3fd9b71b4f9ae6137848514/8/Dockerfile) -- [`7.17.10`](https://github.com/docker-library/logstash/blob/963070bbacb3ca9dd3aea80abf24da2113254f81/7/Dockerfile) +- [`8.9.1`](https://github.com/docker-library/logstash/blob/2ff314dcb3ed7b4bb812ca9fa3cdf72ca958e99f/8/Dockerfile) +- [`7.17.12`](https://github.com/docker-library/logstash/blob/d94032bc7db1f3b62922a15f9e0eab7401fe479b/7/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 4697aec594bb..98e4e666c0bb 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.1-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/Dockerfile) +- [`7.0.1-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.1-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.1-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.1-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.0-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) - [`7.0.0-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.0-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) @@ -43,19 +48,24 @@ WARNING: - [`5.0.20-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.20-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.20-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.24-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/bed916513c057385fec8aca9b422030e71921942/4.4-rc/Dockerfile) -- [`4.4.24-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.24-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.24-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.24-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.23-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) -- [`4.4.23-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.23-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.23-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.23-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-1809/Dockerfile) +- [`4.4.24-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) +- [`4.4.24-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.24-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.24-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.24-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags +- `7.0.1-rc0`, `7.0-rc`: + - [`7.0.1-rc0-jammy`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/Dockerfile) + - [`7.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.1-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.1-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.1-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.1-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.0`, `7.0`, `7`, `latest`: - [`7.0.0-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) - [`7.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,26 +96,16 @@ WARNING: - `5.0.20-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.24-rc0`, `4.4-rc`: - - [`4.4.24-rc0-focal`](https://github.com/docker-library/mongo/blob/bed916513c057385fec8aca9b422030e71921942/4.4-rc/Dockerfile) - - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.24-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.24-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d75cf4c2ccc65409683a503071886290e6290a6e/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.23`, `4.4`, `4`: - - [`4.4.23-focal`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/Dockerfile) - - [`4.4.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.23-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.23-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/98f57cd624e19b26544b6fe703556acbc29306ba/4.4/windows/nanoserver-1809/Dockerfile) +- `4.4.24`, `4.4`, `4`: + - [`4.4.24-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) + - [`4.4.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.24-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.24-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index ad04113e397b..f99b555104ca 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.7/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/2cec41df27c14c3b7a0bff48131cd2dbca75042e/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index f76b1573a775..b944697c6850 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.7/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/817fa82d604d1e2531f5cc1e4d332c667ca3c8a5/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From b87a0da460a56bf8a004e62def460f71f9091ce3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Aug 2023 17:20:37 -0700 Subject: [PATCH 0536/2686] Run update.sh --- aerospike/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/README.md b/aerospike/README.md index 50ed5f5ce35e..6af80258aaec 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -131,7 +131,7 @@ You should first `-v` map a local directory, which Docker will bind mount. Next, For example: ```console -docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike-p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf +docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf ``` ### Persistent Data Directory From e637a6bf1cffc86ae49236d437a1ddd437230aef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Aug 2023 10:09:41 -0700 Subject: [PATCH 0537/2686] Run update.sh --- almalinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/almalinux/README.md b/almalinux/README.md index e351d1b127c2..c4443e9e718c 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -50,7 +50,7 @@ WARNING: # AlmaLinux OS -[AlmaLinux OS](https://almalinux.org/) is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform. AlmaLinux OS is 1:1 binary compatible with RHEL® 8 and it was founded by the team behind the well-established [CloudLinux OS](https://www.cloudlinux.com/all-products/product-overview/cloudlinuxos). +[AlmaLinux OS](https://almalinux.org/) is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform. AlmaLinux OS is binary compatible with RHEL®, and it was founded by the team behind the well-established [CloudLinux OS](https://www.cloudlinux.com/all-products/product-overview/cloudlinuxos). Today, the AlmaLinux OS Foundation, run by a community-elected board of directors, owns and manages the operating system. ![logo](https://raw.githubusercontent.com/docker-library/docs/23547f3e976bc000d1a01a47241000f72aec9a40/almalinux/logo.png) From a7951586224000b613f51bb3dc8bcf9db7140026 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Aug 2023 12:18:17 -0700 Subject: [PATCH 0538/2686] Run update.sh --- silverpeas/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silverpeas/README.md b/silverpeas/README.md index 5183b8c3a29e..2cb9171c748d 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/cab21d1a3a25bf15d24f27a156d3df894123bb10/Dockerfile) +- [`6.3.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c1fa483e14efa07680009a9f177b94072ab24827/Dockerfile) - [`6.2.3-b1`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/9714dcc94eb558508f085835a329a44f5c3cb52e/Dockerfile) # Quick reference (cont.) From 1ccd46ac2e1ffe67b568b525b7edceb7c2ca7be6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Aug 2023 13:09:10 -0700 Subject: [PATCH 0539/2686] Run update.sh --- neo4j/README.md | 4 ++-- rust/README.md | 16 ++++++++-------- wordpress/README.md | 15 ++++++++++++--- 3 files changed, 22 insertions(+), 13 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 931d0980b00a..820da0efcefe 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.11.0-enterprise-bullseye`, `5.11-enterprise-bullseye`, `5-enterprise-bullseye`, `5.11.0-enterprise`, `5.11-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/bullseye/enterprise/Dockerfile) - [`5.11.0-community-ubi8`, `5.11-community-ubi8`, `5-community-ubi8`, `5.11.0-ubi8`, `5.11-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/community/Dockerfile) - [`5.11.0-enterprise-ubi8`, `5.11-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/enterprise/Dockerfile) -- [`4.4.24`, `4.4.24-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/community/Dockerfile) -- [`4.4.24-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/9c6825e44cbf25790c31fb0c08dc9d15ad3824c5/4.4.24/bullseye/enterprise/Dockerfile) +- [`4.4.25`, `4.4.25-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/community/Dockerfile) +- [`4.4.25-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index b365becbecf4..110a7cb2d178 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.71-buster`, `1.71.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/buster/Dockerfile) -- [`1-slim-buster`, `1.71-slim-buster`, `1.71.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.71-bullseye`, `1.71.1-bullseye`, `bullseye`, `1`, `1.71`, `1.71.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.71-slim-bullseye`, `1.71.1-slim-bullseye`, `slim-bullseye`, `1-slim`, `1.71-slim`, `1.71.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.71-bookworm`, `1.71.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.71-slim-bookworm`, `1.71.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.71-alpine3.17`, `1.71.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.71-alpine3.18`, `1.71.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.71-alpine`, `1.71.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/2bb79cb08932ba4ccab9d48f9e07159095146eb7/1.71.1/alpine3.18/Dockerfile) +- [`1-buster`, `1.72-buster`, `1.72.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/buster/Dockerfile) +- [`1-slim-buster`, `1.72-slim-buster`, `1.72.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.72-bullseye`, `1.72.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.72-slim-bullseye`, `1.72.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.72-bookworm`, `1.72.0-bookworm`, `bookworm`, `1`, `1.72`, `1.72.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.72-slim-bookworm`, `1.72.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.72-slim`, `1.72.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.72-alpine3.17`, `1.72.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.72-alpine3.18`, `1.72.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.72-alpine`, `1.72.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index ff8b28736bc5..1bbda8fb8828 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -33,9 +33,18 @@ WARNING: - [`6.3.0-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.0-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/apache/Dockerfile) - [`6.3.0-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm/Dockerfile) - [`6.3.0-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm-alpine/Dockerfile) -- [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.0/alpine/Dockerfile) -- [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.1/alpine/Dockerfile) -- [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/68ba8edcf61e8fd4748614510ebec96ef17806c0/cli/php8.2/alpine/Dockerfile) +- [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) +- [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) +- [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) +- [`beta-6.3.1-RC1-apache`, `beta-6.3.1-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3.1-RC1`, `beta-6.3.1`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3.1-RC1-php8.0-apache`, `beta-6.3.1-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3.1-RC1-php8.0`, `beta-6.3.1-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/apache/Dockerfile) +- [`beta-6.3.1-RC1-fpm`, `beta-6.3.1-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3.1-RC1-php8.0-fpm`, `beta-6.3.1-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/fpm/Dockerfile) +- [`beta-6.3.1-RC1-fpm-alpine`, `beta-6.3.1-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3.1-RC1-php8.0-fpm-alpine`, `beta-6.3.1-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.3.1-RC1-php8.1-apache`, `beta-6.3.1-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3.1-RC1-php8.1`, `beta-6.3.1-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/apache/Dockerfile) +- [`beta-6.3.1-RC1-php8.1-fpm`, `beta-6.3.1-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/fpm/Dockerfile) +- [`beta-6.3.1-RC1-php8.1-fpm-alpine`, `beta-6.3.1-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.3.1-RC1-php8.2-apache`, `beta-6.3.1-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3.1-RC1-php8.2`, `beta-6.3.1-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/apache/Dockerfile) +- [`beta-6.3.1-RC1-php8.2-fpm`, `beta-6.3.1-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/fpm/Dockerfile) +- [`beta-6.3.1-RC1-php8.2-fpm-alpine`, `beta-6.3.1-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 63c50cfb15367f622cdd3166b19a267c7d2a324b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Aug 2023 11:20:53 -0700 Subject: [PATCH 0540/2686] Run update.sh --- haskell/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index a037f34af31d..f7395776b705 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.6.2-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.2`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/buster/Dockerfile) - [`9.6.2-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.2-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/slim-buster/Dockerfile) -- [`9.4.5-buster`, `9.4-buster`, `9.4.5`, `9.4`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/buster/Dockerfile) -- [`9.4.5-slim-buster`, `9.4-slim-buster`, `9.4.5-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.4/slim-buster/Dockerfile) +- [`9.4.6-buster`, `9.4-buster`, `9.4.6`, `9.4`](https://github.com/haskell/docker-haskell/blob/8d518f4f5eb5d0949e0b6d3086e6c1d1e05ed85b/9.4/buster/Dockerfile) +- [`9.4.6-slim-buster`, `9.4-slim-buster`, `9.4.6-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/8d518f4f5eb5d0949e0b6d3086e6c1d1e05ed85b/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) From 1fc2592b91f7fdd0992aa2647162cfbcb90b4882 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Aug 2023 12:18:22 -0700 Subject: [PATCH 0541/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index dd6aaa7dc8aa..9193bfcdbd3c 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/5a58ae093740b1d46bca77a09ec21907cbf25885/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/14.0/Dockerfile) # Quick reference (cont.) From 37d700b4ac46b8b163683645afdc995f463c72bb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Aug 2023 14:20:48 -0700 Subject: [PATCH 0542/2686] Run update.sh --- rakudo-star/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index bcf75d7ecb32..a3c7848a36dd 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2023.06`](https://github.com/Raku/docker/blob/40594a60036aa9918d742cc942adade6edc223cd/2023.06/bookworm/Dockerfile) -- [`alpine`, `2023.06-alpine`](https://github.com/Raku/docker/blob/40594a60036aa9918d742cc942adade6edc223cd/2023.06/alpine3.18/Dockerfile) +- [`latest`, `2023.08`](https://github.com/Raku/docker/blob/9b9e5827fb816027ae946c1d0b6ccdc9e0ee4501/2023.08/bookworm/Dockerfile) +- [`alpine`, `2023.08-alpine`](https://github.com/Raku/docker/blob/9b9e5827fb816027ae946c1d0b6ccdc9e0ee4501/2023.08/alpine3.18/Dockerfile) # Quick reference (cont.) From 071c0cb8ab7ad6c507c6d20fb343b73ea6eadb7b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Aug 2023 16:09:21 -0700 Subject: [PATCH 0543/2686] Run update.sh --- python/README.md | 86 ++++++++++++++++++++++++------------------------ 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/python/README.md b/python/README.md index dbae04f5989b..f896c5c51b36 100644 --- a/python/README.md +++ b/python/README.md @@ -29,43 +29,43 @@ WARNING: ## Simple Tags - [`3.12.0rc1-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bookworm/Dockerfile) -- [`3.12.0rc1-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0rc1-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.12-rc/slim-bookworm/Dockerfile) - [`3.12.0rc1-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bullseye/Dockerfile) -- [`3.12.0rc1-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0rc1-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.12-rc/slim-bullseye/Dockerfile) - [`3.12.0rc1-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.18/Dockerfile) - [`3.12.0rc1-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.17/Dockerfile) - [`3.12.0rc1-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0rc1-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.4-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bookworm/Dockerfile) -- [`3.11.4-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.4-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/slim-bookworm/Dockerfile) -- [`3.11.4-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bullseye/Dockerfile) -- [`3.11.4-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/slim-bullseye/Dockerfile) -- [`3.11.4-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.4-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/alpine3.18/Dockerfile) -- [`3.11.4-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/alpine3.17/Dockerfile) -- [`3.11.4-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.4-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.12-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bookworm/Dockerfile) -- [`3.10.12-slim-bookworm`, `3.10-slim-bookworm`, `3.10.12-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/slim-bookworm/Dockerfile) -- [`3.10.12-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bullseye/Dockerfile) -- [`3.10.12-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/slim-bullseye/Dockerfile) -- [`3.10.12-alpine3.18`, `3.10-alpine3.18`, `3.10.12-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/alpine3.18/Dockerfile) -- [`3.10.12-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/alpine3.17/Dockerfile) -- [`3.9.17-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bookworm/Dockerfile) -- [`3.9.17-slim-bookworm`, `3.9-slim-bookworm`, `3.9.17-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/slim-bookworm/Dockerfile) -- [`3.9.17-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bullseye/Dockerfile) -- [`3.9.17-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/slim-bullseye/Dockerfile) -- [`3.9.17-alpine3.18`, `3.9-alpine3.18`, `3.9.17-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/alpine3.18/Dockerfile) -- [`3.9.17-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/alpine3.17/Dockerfile) -- [`3.8.17-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bookworm/Dockerfile) -- [`3.8.17-slim-bookworm`, `3.8-slim-bookworm`, `3.8.17-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/slim-bookworm/Dockerfile) -- [`3.8.17-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bullseye/Dockerfile) -- [`3.8.17-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/slim-bullseye/Dockerfile) -- [`3.8.17-alpine3.18`, `3.8-alpine3.18`, `3.8.17-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/alpine3.18/Dockerfile) -- [`3.8.17-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/alpine3.17/Dockerfile) +- [`3.11.5-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) +- [`3.11.5-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.5-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bookworm/Dockerfile) +- [`3.11.5-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bullseye/Dockerfile) +- [`3.11.5-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bullseye/Dockerfile) +- [`3.11.5-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.5-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/alpine3.18/Dockerfile) +- [`3.11.5-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/alpine3.17/Dockerfile) +- [`3.11.5-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.5-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) +- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.10/slim-bookworm/Dockerfile) +- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bullseye/Dockerfile) +- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.10/slim-bullseye/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/alpine3.18/Dockerfile) +- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/alpine3.17/Dockerfile) +- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bookworm/Dockerfile) +- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.9/slim-bookworm/Dockerfile) +- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bullseye/Dockerfile) +- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.9/slim-bullseye/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/alpine3.18/Dockerfile) +- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/alpine3.17/Dockerfile) +- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bookworm/Dockerfile) +- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.8/slim-bookworm/Dockerfile) +- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bullseye/Dockerfile) +- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.8/slim-bullseye/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.18/Dockerfile) +- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.17/Dockerfile) - [`3.7.17-bookworm`, `3.7-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) -- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/slim-bookworm/Dockerfile) +- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/295ccc121f2ff120541ac405efa7b63f1cd03b94/3.7/slim-bookworm/Dockerfile) - [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bullseye/Dockerfile) -- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/slim-bullseye/Dockerfile) +- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/295ccc121f2ff120541ac405efa7b63f1cd03b94/3.7/slim-bullseye/Dockerfile) - [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.18/Dockerfile) - [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.17/Dockerfile) @@ -78,19 +78,19 @@ WARNING: - `3.12.0rc1-windowsservercore`, `3.12-rc-windowsservercore`: - [`3.12.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.11.4`, `3.11`, `3`, `latest`: - - [`3.11.4-bookworm`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/bookworm/Dockerfile) - - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.4-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/a58630aef106c8efd710011c6a2a0a1d551319a0/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10.12`, `3.10`: - - [`3.10.12-bookworm`](https://github.com/docker-library/python/blob/792cac19ef7201585b923b5bcdcc0fa5cc1c1b02/3.10/bookworm/Dockerfile) -- `3.9.17`, `3.9`: - - [`3.9.17-bookworm`](https://github.com/docker-library/python/blob/15678510e9b41b3ad7e81da4569780139fed1101/3.9/bookworm/Dockerfile) -- `3.8.17`, `3.8`: - - [`3.8.17-bookworm`](https://github.com/docker-library/python/blob/b78f52b86052d00a560f5ddb26ab3f75cb4f69b1/3.8/bookworm/Dockerfile) +- `3.11.5`, `3.11`, `3`, `latest`: + - [`3.11.5-bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) + - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.5-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.10.13`, `3.10`: + - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) +- `3.9.18`, `3.9`: + - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bookworm/Dockerfile) +- `3.8.18`, `3.8`: + - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bookworm/Dockerfile) - `3.7.17`, `3.7`: - [`3.7.17-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) From b7aca33b840c9f67751489f5a4f9aef755bafd4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Aug 2023 17:22:28 -0700 Subject: [PATCH 0544/2686] Run update.sh --- buildpack-deps/README.md | 3 ++ ghost/README.md | 4 +- haproxy/README.md | 4 +- julia/README.md | 52 +++++++++++------------ rabbitmq/README.md | 16 +++---- tomcat/README.md | 92 ++++++++++++++++++++-------------------- 6 files changed, 87 insertions(+), 84 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index b3d6d48af52b..63cf8af184bf 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -36,6 +36,9 @@ WARNING: - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) +- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/f4fae1079681a664db5a84c0b83621dd7c115996/debian/trixie/curl/Dockerfile) +- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/scm/Dockerfile) +- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/Dockerfile) - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) - [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/focal/scm/Dockerfile) - [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/focal/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index fab23818654a..f0dbdb6fac7e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.59.4`, `5.59`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d95bdb08e967f9f41c21c004ce916d4ac4973f28/5/debian/Dockerfile) -- [`5.59.4-alpine`, `5.59-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d95bdb08e967f9f41c21c004ce916d4ac4973f28/5/alpine/Dockerfile) +- [`5.60.0`, `5.60`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2f6ba5c0a3ad636d981929af6553f133eaa8925e/5/debian/Dockerfile) +- [`5.60.0-alpine`, `5.60-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2f6ba5c0a3ad636d981929af6553f133eaa8925e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index dfca1b04b377..543bdad5d1fe 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev3`, `2.9-dev`, `2.9-dev3-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c8e1d6ffde3f934abf19d538df687f5a2f19c63c/2.9/Dockerfile) -- [`2.9-dev3-alpine`, `2.9-dev-alpine`, `2.9-dev3-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/c8e1d6ffde3f934abf19d538df687f5a2f19c63c/2.9/alpine/Dockerfile) +- [`2.9-dev4`, `2.9-dev`, `2.9-dev4-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/Dockerfile) +- [`2.9-dev4-alpine`, `2.9-dev-alpine`, `2.9-dev4-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/alpine/Dockerfile) - [`2.8.2`, `2.8`, `lts`, `latest`, `2.8.2-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/Dockerfile) - [`2.8.2-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.2-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/julia/README.md b/julia/README.md index a57da902531c..7e90a9b5b822 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`1.10.0-beta1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-beta1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-beta1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-beta1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/alpine3.17/Dockerfile) -- [`1.10.0-beta1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-beta1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.9.2-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) -- [`1.9.2-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bullseye/Dockerfile) -- [`1.9.2-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.2-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.18/Dockerfile) -- [`1.9.2-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/alpine3.17/Dockerfile) -- [`1.9.2-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.2-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-beta2-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-beta2-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-beta2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-beta2-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-beta2-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-beta2-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.9.3-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) +- [`1.9.3-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bullseye/Dockerfile) +- [`1.9.3-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.3-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.18/Dockerfile) +- [`1.9.3-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.17/Dockerfile) +- [`1.9.3-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.3-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) @@ -49,20 +49,20 @@ WARNING: ## Shared Tags -- `1.10.0-beta1`, `1.10-rc`, `rc`: - - [`1.10.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-beta1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8c1d21c57d7102a6bf0cef362758db0dbffba840/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.2`, `1.9`, `1`, `latest`: - - [`1.9.2-bookworm`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/bookworm/Dockerfile) - - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) -- `1.9.2-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.9.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/727f48bcf49f7f6305bd439da31972ce7738f0a8/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta2`, `1.10-rc`, `rc`: + - [`1.10.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta2-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.9.3`, `1.9`, `1`, `latest`: + - [`1.9.3-bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) + - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.3-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 923197644484..7e9ae048a0b3 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.13.0-beta.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-beta.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.3`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/274d0a537ffb64d3748bbd94064fb603b58c03ba/3.12/ubuntu/Dockerfile) -- [`3.12.3-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/274d0a537ffb64d3748bbd94064fb603b58c03ba/3.12/alpine/Dockerfile) -- [`3.12.3-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.21`, `3.11`](https://github.com/docker-library/rabbitmq/blob/98f3966e2b5be9f9dc81ff0d345101ad79c2e864/3.11/ubuntu/Dockerfile) -- [`3.11.21-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.21-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/98f3966e2b5be9f9dc81ff0d345101ad79c2e864/3.11/alpine/Dockerfile) -- [`3.11.21-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f241a0e95e6257074c4211a897f431d54d5e96a0/3.12/ubuntu/Dockerfile) +- [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f241a0e95e6257074c4211a897f431d54d5e96a0/3.12/alpine/Dockerfile) +- [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/d4af4139f9839250dc3c3134a6e313fc269676d1/3.11/ubuntu/Dockerfile) +- [`3.11.22-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/d4af4139f9839250dc3c3134a6e313fc269676d1/3.11/alpine/Dockerfile) +- [`3.11.22-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/alpine/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index d0fb1e4d56d5..d5fec20c1c0c 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,52 +24,52 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M10-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M10-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/c1d6d481fdf4bc291f4bc18e3c43ec173d054e1b/11.0/jdk21/openjdk-bookworm/Dockerfile) -- [`11.0.0-M10-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M10-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/c1d6d481fdf4bc291f4bc18e3c43ec173d054e1b/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.12-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.12-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk21/openjdk-bookworm/Dockerfile) -- [`10.1.12-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.12-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.12-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.12-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.12-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.12`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.12-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.12-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.12-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.12-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.12-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.12-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.12-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.12-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.12-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/e940807296a7b94e7b5fc59062d4e138c67ec1c4/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.79-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.79-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-bookworm/Dockerfile) -- [`9.0.79-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-bullseye/Dockerfile) -- [`9.0.79-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.79-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`9.0.79-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`9.0.79-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.79-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.79-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.79`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.79-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.79-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.79-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.79-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.79-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.79-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.79-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.79-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.79-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.79-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.79-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.79-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.79-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.79-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.79-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.79-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.79-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.79-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.79-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.79-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.79-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.79-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.79-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.79-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.79-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.79-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.79-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87870e3c459c6a29385662a4ad41c179a6f5166b/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.92-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.92-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-bookworm/Dockerfile) -- [`8.5.92-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-bullseye/Dockerfile) -- [`8.5.92-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.92-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`8.5.92-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`8.5.92-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.92-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.92-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.92`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.92-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.92-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.92-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.92-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.92-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.92-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.92-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.92-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.92-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.92-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.92-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.92-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.92-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.92-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.92-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.92-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.92-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.92-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.92-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.92-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.92-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.92-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.92-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.92-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.92-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.92-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.92-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/679071639f35f732a55a07fe6426fc38c40bb44b/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M11-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M11-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/b512285a7e12128f0da031b6b24f1a4c026e3306/11.0/jdk21/openjdk-bookworm/Dockerfile) +- [`11.0.0-M11-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M11-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/b512285a7e12128f0da031b6b24f1a4c026e3306/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.13-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.13-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk21/openjdk-bookworm/Dockerfile) +- [`10.1.13-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.13-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`10.1.13-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.13-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.13-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.13`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.13-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.13-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.13-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.13-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.13-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.13-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.13-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.13-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.13-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.80-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.80-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-bookworm/Dockerfile) +- [`9.0.80-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-bullseye/Dockerfile) +- [`9.0.80-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.80-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`9.0.80-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`9.0.80-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.80-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.80-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.80`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.80-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.80-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.80-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.80-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.80-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.80-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.80-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.80-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.80-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.80-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.80-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.80-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.80-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.80-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.80-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.80-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.80-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.80-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.80-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.80-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.80-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.80-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.80-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.80-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.80-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.80-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.80-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.93-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.93-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-bookworm/Dockerfile) +- [`8.5.93-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-bullseye/Dockerfile) +- [`8.5.93-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.93-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) +- [`8.5.93-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) +- [`8.5.93-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.93-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.93-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.93`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.93-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.93-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.93-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.93-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.93-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.93-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.93-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.93-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.93-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.93-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.93-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.93-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.93-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.93-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.93-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.93-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.93-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.93-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.93-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.93-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.93-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.93-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.93-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.93-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.93-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.93-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.93-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 6c905fd1d5b51415054b1734949308a28dcdba10 Mon Sep 17 00:00:00 2001 From: ttd2089 Date: Sun, 27 Aug 2023 10:48:48 -0300 Subject: [PATCH 0545/2686] Fix typo --- postgres/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/content.md b/postgres/content.md index 622e21063276..0f98b18ed2a0 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -96,7 +96,7 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** when mounting a volume to `/var/lib/posgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. +> **Important Note:** when mounting a volume to `/var/lib/postgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. From 4825252c19694223f511580bfe04939d5aa867e5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Aug 2023 10:09:39 -0700 Subject: [PATCH 0546/2686] Run update.sh --- postgres/README.md | 2 +- silverpeas/README.md | 36 +++--------------------------------- 2 files changed, 4 insertions(+), 34 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 926e96a2905a..faff1cca5f70 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -189,7 +189,7 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** when mounting a volume to `/var/lib/posgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. +> **Important Note:** when mounting a volume to `/var/lib/postgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. diff --git a/silverpeas/README.md b/silverpeas/README.md index 2cb9171c748d..166ea0b8ea03 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -123,7 +123,9 @@ $ docker run --name silverpeas -p 8080:8000 -d \ silverpeas ``` -By default, `database` is the default hostname used by Silverpeas for its persistence backend. So, as the PostgreSQL database is linked here under the alias `database`, we don't have to explicitly indicate its hostname with the `DB_SERVER` environment variable. The Silverpeas images expose the 8000 port and here this port is mapped to the 8080 port of the host; Silverpeas is then accessible at `http://localhost:8080/silverpeas`. You can sign in Silverpeas with the administrator account `SilverAdmin` and with as password `SilverAdmin`. +By default, `database` is the default hostname used by Silverpeas for its persistence backend. So, as the PostgreSQL database is linked here under the alias `database`, we don't have to explicitly indicate its hostname with the `DB_SERVER` environment variable. The Silverpeas images expose the 8000 port and here this port is mapped to the 8080 port of the host. + +Silverpeas is then accessible at [http://localhost:8080/silverpeas](http://localhost:8080/silverpeas). You can sign in Silverpeas with the administrator account `SilverAdmin` and with as password `SilverAdmin`. Don't forget to change the password of the administrator account. By default, some volumes are created inside the container, so that we can access them in the host. (Refers the [Docker Documentation](https://docs.docker.com/engine/tutorials/dockervolumes/#locating-a-volume) to locate them.) Among them `/opt/silverpeas/log` and `/opt/silverpeas/data`: the first volume contains the logs produced by Silverpeas whereas the second volume contains all the data that are created and managed by the users in Silverpeas. Because the latter has already a directories structure created at image creation, a host directory cannot be mounted into the container at `opt/silverpeas/data` without losing the volume's content (the mount point overlays the pre-existing content of the volume). In our example, in order to easily locate the two volumes, we label them explicitly with respectively the labels `silverpeas-log` and `silverpeas-data`. (Using a [Data Volume Container](https://docs.docker.com/engine/userguide/containers/dockervolumes/) to map `/opt/silverpeas/log` and `/opt/silverpeas/data` is a better solution.) @@ -245,38 +247,6 @@ $ docker create --name silverpeas-store \ /bin/true ``` -# Document conversion - -Some features in Silverpeas (export, preview, content visualization, ...) requires a document converter. The document converter isn't mandatory to use Silverpeas but it gives access to additional features. The document conversion is performed in Silverpeas by the program LibreOffice running as a daemon. So, in order to enable and to use these features, you have first to use a Data Volume Container to store all the Silverpeas data and second to run a container embbeding a LibreOffice program running as a daemon. There is no official Docker images of LibreOffice but DockerHub hosts some of unofficial images of it ([xcgd/libreoffice](https://hub.docker.com/r/xcgd/libreoffice/) for example). - -Once a Data Volume Container is created for Silverpeas as explained in the section above, you have to link it with the Docker image running LibreOffice as a daemon in order the program have access the documents to convert: - -```console -$ docker run --name libreoffice -d \ - --volumes-from silverpeas-store \ - xcgd/libreoffice -``` - -Check the port at which the LibreOffice image is listening and then defines it in the Silverpeas configuration. In our example, `xcgd/libreoffice` listens by default the port 8997. The configuration parameters to communicate with LibreOffice are defined by the two following properties: - -- `CONVERTER_HOST` is either the IP address or the name of the host in which runs LibreOffice, -- `CONVERTER_PORT` is the port number at which the LibreOffice daemon listens. - -These properties have to be defined in the Silverpeas global configuration file `config.properties` that is mounted in the Data Volume Container: - - CONVERTER_HOST=libreoffice - CONVERTER_PORT=8997 - -Then the Docker image of Silverpeas can be ran: - -```console -$ docker run --name silverpeas -p 8080:8000 -d \ - --link postgresql:database \ - --link libreoffice:libreoffice \ - --volumes-from silverpeas-store \ - silverpeas -``` - # Logs You can follow the activity of Silverpeas by watching the logs generated in the mounted `/opt/silverpeas/log` directory. From e7481b3d97c7354ef0e36c40f188cac27a439241 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Aug 2023 12:35:48 -0700 Subject: [PATCH 0547/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index 47d7cf431df2..bd7bd65602ff 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230819`, `latest`](https://github.com/vmware/photon-docker-image/blob/34d858aa519be06e9828349ea18a4c30086e9bd6/docker/Dockerfile) -- [`4.0`, `4.0-20230819`](https://github.com/vmware/photon-docker-image/blob/2ecc20924298169857525d5bfeb3ea775aee2bc5/docker/Dockerfile) -- [`3.0`, `3.0-20230819`](https://github.com/vmware/photon-docker-image/blob/8ad3ab9bc4648f3aa20a630d6d7997e20a3c299e/docker/Dockerfile) +- [`5.0`, `5.0-20230826`, `latest`](https://github.com/vmware/photon-docker-image/blob/ad7117e92720b4baba790049269f3a7f228b3c8b/docker/Dockerfile) +- [`4.0`, `4.0-20230826`](https://github.com/vmware/photon-docker-image/blob/509c6bd10b93cbb254bed9d1b8e5ae5884beec20/docker/Dockerfile) +- [`3.0`, `3.0-20230826`](https://github.com/vmware/photon-docker-image/blob/e232c3c612f9b9ec0981ed39f31c597211e18a6d/docker/Dockerfile) # Quick reference (cont.) From 13912b7e1c62e1c025e35f342fd5ffbd97b9e7a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Aug 2023 13:10:27 -0700 Subject: [PATCH 0548/2686] Run update.sh --- clearlinux/README.md | 2 +- clojure/README.md | 102 +++++++++++++++++++++---------------------- maven/README.md | 48 ++++++++++---------- 3 files changed, 76 insertions(+), 76 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 039979cfb974..f6efc917b22e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5557000f5b1e8cb62576aa05d6847e551375d458/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b33e9cb059d62aab30acf0a6d4d34ef0c7ce4419/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 18786d54e237..5c365cbd674f 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,57 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1405-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1405-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1405-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1405`, `temurin-8-tools-deps-1.11.1.1405-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1405-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1405-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1405-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1405`, `temurin-11-tools-deps-1.11.1.1405-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1405-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1405-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1405-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1405-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1405-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1405`, `temurin-17-tools-deps-1.11.1.1405-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1405`, `tools-deps-1.11.1.1405-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1405-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1405-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1405-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1405`, `temurin-20-tools-deps-1.11.1.1405-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd87e1b79c47c2548c64b0bb30ad67ce111308b7/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1413-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1413-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1413-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1413`, `temurin-8-tools-deps-1.11.1.1413-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1413-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1413-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1413-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1413`, `temurin-11-tools-deps-1.11.1.1413-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1413-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1413-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1413-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1413-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1413-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1413`, `temurin-17-tools-deps-1.11.1.1413-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1413`, `tools-deps-1.11.1.1413-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-20/lein/Dockerfile) +- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-20/lein/Dockerfile) +- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) +- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1413-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1413-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-20/tools-deps/Dockerfile) +- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-20/tools-deps/Dockerfile) +- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1413`, `temurin-20-tools-deps-1.11.1.1413-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 9e3f245003c0..f581b339f516 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.3-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11/Dockerfile) -- [`3.9.3-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.3-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.3-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17/Dockerfile) -- [`3.9.3-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.3-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.3-eclipse-temurin-20`, `3.9.3`, `3.9.3-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-20/Dockerfile) -- [`3.9.3-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-20-alpine/Dockerfile) -- [`3.9.3-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8/Dockerfile) -- [`3.9.3-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.3-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.3-ibmjava-8`, `3.9.3-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibmjava-8/Dockerfile) -- [`3.9.3-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibm-semeru-11-focal/Dockerfile) -- [`3.9.3-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/ibm-semeru-17-focal/Dockerfile) -- [`3.9.3-amazoncorretto-11`, `3.9.3-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-11/Dockerfile) -- [`3.9.3-amazoncorretto-11-debian`, `3.9.3-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-11-debian/Dockerfile) -- [`3.9.3-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-17/Dockerfile) -- [`3.9.3-amazoncorretto-17-debian`, `3.9.3-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-17-debian/Dockerfile) -- [`3.9.3-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-20/Dockerfile) -- [`3.9.3-amazoncorretto-20-debian`, `3.9.3-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-20-debian/Dockerfile) -- [`3.9.3-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-8/Dockerfile) -- [`3.9.3-amazoncorretto-8-debian`, `3.9.3-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/amazoncorretto-8-debian/Dockerfile) -- [`3.9.3-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/sapmachine-11/Dockerfile) -- [`3.9.3-sapmachine-17`, `3.9.3-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/51eeb2469d11acbafd4a3be13f8339ff556292fc/sapmachine-17/Dockerfile) +- [`3.9.4-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/04ab123ebc6b70fad75cfb7a08cc24b0c921c637/eclipse-temurin-11/Dockerfile) +- [`3.9.4-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.4-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.4-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17/Dockerfile) +- [`3.9.4-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.4-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.4-eclipse-temurin-20`, `3.9.4`, `3.9.4-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-20/Dockerfile) +- [`3.9.4-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-20-alpine/Dockerfile) +- [`3.9.4-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8/Dockerfile) +- [`3.9.4-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.4-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.4-ibmjava-8`, `3.9.4-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibmjava-8/Dockerfile) +- [`3.9.4-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-11-focal/Dockerfile) +- [`3.9.4-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-17-focal/Dockerfile) +- [`3.9.4-amazoncorretto-11`, `3.9.4-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11/Dockerfile) +- [`3.9.4-amazoncorretto-11-debian`, `3.9.4-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11-debian/Dockerfile) +- [`3.9.4-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17/Dockerfile) +- [`3.9.4-amazoncorretto-17-debian`, `3.9.4-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17-debian/Dockerfile) +- [`3.9.4-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20/Dockerfile) +- [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) +- [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) +- [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) +- [`3.9.4-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-11/Dockerfile) +- [`3.9.4-sapmachine-17`, `3.9.4-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) # Quick reference (cont.) From ba8df077216932575c295912ad9bba67ab0a8427 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Aug 2023 16:09:49 -0700 Subject: [PATCH 0549/2686] Run update.sh --- elasticsearch/README.md | 3 +++ kibana/README.md | 3 +++ logstash/README.md | 3 +++ nginx/README.md | 6 +++--- openjdk/README.md | 36 ++++++++++++++++++------------------ 5 files changed, 30 insertions(+), 21 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index b88b9322e030..11c745c577c7 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.9.0`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/8.9.0/Dockerfile) +- [`8.8.2`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/elasticsearch/blob/eae769ae918ec760e5d21385d22298003914bd33/8/Dockerfile) +- [`7.17.11`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/elasticsearch/blob/5fe5a426ca33ac9869500cf87e6e4a14d7b1f9e5/7/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index e04eef151fca..3dca99823a39 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.9.0`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/8.9.0/Dockerfile) +- [`8.8.2`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/kibana/blob/bc464499de24fd857521ba25fcb8d58f23516d3d/8/Dockerfile) +- [`7.17.11`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/kibana/blob/c2cb4e05003784aaa811f1c2ec8df9bdfb8d46e5/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 9d0bb4dc7f13..39f7aa0da173 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.9.0`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/8.9.0/Dockerfile) +- [`8.8.2`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/logstash/blob/2ff314dcb3ed7b4bb812ca9fa3cdf72ca958e99f/8/Dockerfile) +- [`7.17.11`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/logstash/blob/d94032bc7db1f3b62922a15f9e0eab7401fe479b/7/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index e5844b493858..2dc72eb15001 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -26,9 +26,9 @@ WARNING: - [`1.25.2`, `mainline`, `1`, `1.25`, `latest`, `1.25.2-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian/Dockerfile) - [`1.25.2-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.2-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian-perl/Dockerfile) -- [`1.25.2-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.2-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine/Dockerfile) -- [`1.25.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.2-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine-perl/Dockerfile) -- [`1.25.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.2-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/alpine-slim/Dockerfile) +- [`1.25.2-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.2-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine/Dockerfile) +- [`1.25.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.2-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine-perl/Dockerfile) +- [`1.25.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.2-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 9d9ebf3beeb3..153705abf166 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-11-jdk-oraclelinux8`, `22-ea-11-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-11-jdk-oracle`, `22-ea-11-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-11-jdk-oraclelinux7`, `22-ea-11-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-11-jdk-bookworm`, `22-ea-11-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/bookworm/Dockerfile) -- [`22-ea-11-jdk-slim-bookworm`, `22-ea-11-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-11-jdk-slim`, `22-ea-11-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-11-jdk-bullseye`, `22-ea-11-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/bullseye/Dockerfile) -- [`22-ea-11-jdk-slim-bullseye`, `22-ea-11-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-11-jdk-windowsservercore-ltsc2022`, `22-ea-11-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-11-jdk-windowsservercore-1809`, `22-ea-11-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-11-jdk-nanoserver-1809`, `22-ea-11-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-12-jdk-oraclelinux8`, `22-ea-12-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-12-jdk-oracle`, `22-ea-12-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-12-jdk-oraclelinux7`, `22-ea-12-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-12-jdk-bookworm`, `22-ea-12-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/bookworm/Dockerfile) +- [`22-ea-12-jdk-slim-bookworm`, `22-ea-12-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-12-jdk-slim`, `22-ea-12-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-12-jdk-bullseye`, `22-ea-12-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/bullseye/Dockerfile) +- [`22-ea-12-jdk-slim-bullseye`, `22-ea-12-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-12-jdk-windowsservercore-ltsc2022`, `22-ea-12-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-12-jdk-windowsservercore-1809`, `22-ea-12-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-12-jdk-nanoserver-1809`, `22-ea-12-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) - [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `22-ea-11-jdk`, `22-ea-11`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-11-jdk-windowsservercore`, `22-ea-11-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-11-jdk-nanoserver`, `22-ea-11-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/da10880192dcbd9c5de1635b2209bd570bfb11d6/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-12-jdk`, `22-ea-12`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-12-jdk-windowsservercore`, `22-ea-12-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-12-jdk-nanoserver`, `22-ea-12-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From f5d425cadf3668df46ff31268d2778212fdc4086 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Aug 2023 10:56:10 -0700 Subject: [PATCH 0550/2686] Run update.sh --- mariadb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 0da1dede9368..1f0fca7ea81f 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,8 +26,8 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.1.2-rc-jammy`, `11.1-rc-jammy`, `11.1.2-rc`, `11.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/71a2ef521e510a656934623c471593dfc9753d8a/11.1/Dockerfile) -- [`11.0.3-jammy`, `11.0-jammy`, `11-jammy`, `jammy`, `11.0.3`, `11.0`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/11.0/Dockerfile) +- [`11.1.2-jammy`, `11.1-jammy`, `11-jammy`, `jammy`, `11.1.2`, `11.1`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/70d8c97f486055689e9f5a6a133f8bfb0806632a/11.1/Dockerfile) +- [`11.0.3-jammy`, `11.0-jammy`, `11.0.3`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/11.0/Dockerfile) - [`10.11.5-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.5`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.11/Dockerfile) - [`10.10.6-jammy`, `10.10-jammy`, `10.10.6`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.10/Dockerfile) - [`10.9.8-jammy`, `10.9-jammy`, `10.9.8`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.9/Dockerfile) From f8eae4226c5580a62aebf9ec9955e9969b2a951d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Aug 2023 11:22:01 -0700 Subject: [PATCH 0551/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- maven/README.md | 4 ++++ plone/README.md | 4 +--- xwiki/README.md | 6 +++--- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index ab7c24efd449..8f2a91a88692 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.1.20230809.0`](https://github.com/amazonlinux/container-images/blob/0a5000d4f70e7fb5ce45918b5b06942bb350574b/Dockerfile) -- [`2`, `2.0.20230808.0`](https://github.com/amazonlinux/container-images/blob/a4879e934010e5d34e9cc46c65695c1b75ac4c57/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230807.0`](https://github.com/amazonlinux/container-images/blob/5139ae655ef520ac44dea179c16f93d9e9650998/Dockerfile) +- [`2023`, `latest`, `2023.1.20230825.0`](https://github.com/amazonlinux/container-images/blob/068827c218fcfd1494a296edca29a9ae1c5fafa7/Dockerfile) +- [`2`, `2.0.20230822.0`](https://github.com/amazonlinux/container-images/blob/81483ce21289e23fcdd3644eeed17c94c4077f64/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230821.0`](https://github.com/amazonlinux/container-images/blob/ce19335809fc05b4e4b451a70c9bc6a1ca518ae5/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index f581b339f516..81ac45ff77b2 100644 --- a/maven/README.md +++ b/maven/README.md @@ -39,12 +39,16 @@ WARNING: - [`3.9.4-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-11-focal/Dockerfile) - [`3.9.4-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-17-focal/Dockerfile) - [`3.9.4-amazoncorretto-11`, `3.9.4-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11/Dockerfile) +- [`3.9.4-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-11-al2023/Dockerfile) - [`3.9.4-amazoncorretto-11-debian`, `3.9.4-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11-debian/Dockerfile) - [`3.9.4-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17/Dockerfile) +- [`3.9.4-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-17-al2023/Dockerfile) - [`3.9.4-amazoncorretto-17-debian`, `3.9.4-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17-debian/Dockerfile) - [`3.9.4-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20/Dockerfile) +- [`3.9.4-amazoncorretto-20-al2023`, `3.9-amazoncorretto-20-al2023`, `3-amazoncorretto-20-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-20-al2023/Dockerfile) - [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) - [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) +- [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) - [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) - [`3.9.4-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-11/Dockerfile) - [`3.9.4-sapmachine-17`, `3.9.4-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) diff --git a/plone/README.md b/plone/README.md index 98f78690a756..b0a4e0f1d405 100644 --- a/plone/README.md +++ b/plone/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.12-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.12`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.12/debian/Dockerfile) -- [`5.2.11-python38`, `5.2.11`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.11/debian/Dockerfile) -- [`5.2.10-python38`, `5.2.10`](https://github.com/plone/plone.docker/blob/a3551bff4d1a17535ecb18a86f5bf87ebb97c5de/5.2/5.2.10/debian/Dockerfile) +- [`5.2.13-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.13`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/fd5a572ead9cabb20b9fcb24e16631f673610118/5.2/5.2.13/debian/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 57388c9a9709..430044ebc7ca 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.6`, `15.6.0`, `15-mysql-tomcat`, `15.6-mysql-tomcat`, `15.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.6-postgres-tomcat`, `15.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.6-mariadb-tomcat`, `15.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7040cf658c9733c7240061fef01ed7c495f58071/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.7`, `15.7.0`, `15-mysql-tomcat`, `15.7-mysql-tomcat`, `15.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.7-postgres-tomcat`, `15.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.7-mariadb-tomcat`, `15.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.15`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mariadb-tomcat/Dockerfile) From 28153bf1a4e49729a2b10025842aebdc8f008b35 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Aug 2023 12:09:30 -0700 Subject: [PATCH 0552/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 3 --- kibana/README.md | 3 --- logstash/README.md | 3 --- 4 files changed, 1 insertion(+), 10 deletions(-) diff --git a/bash/README.md b/bash/README.md index dc02793cac57..2c64c2771c87 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230818`, `devel`, `devel-20230818-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/1dfecef20ab0d1c612d6bbaa2a2c3618f0c46c61/devel/Dockerfile) +- [`devel-20230828`, `devel`, `devel-20230828-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/92c99ce0aacd3c9a766d61b5b4eff27731713921/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 11c745c577c7..b88b9322e030 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,10 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.0`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/8.9.0/Dockerfile) -- [`8.8.2`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/elasticsearch/blob/eae769ae918ec760e5d21385d22298003914bd33/8/Dockerfile) -- [`7.17.11`](https://github.com/docker-library/elasticsearch/blob/ae7c373dd5eed001b3b9b3676a1897bad7a4a846/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/elasticsearch/blob/5fe5a426ca33ac9869500cf87e6e4a14d7b1f9e5/7/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 3dca99823a39..e04eef151fca 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,10 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.0`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/8.9.0/Dockerfile) -- [`8.8.2`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/kibana/blob/bc464499de24fd857521ba25fcb8d58f23516d3d/8/Dockerfile) -- [`7.17.11`](https://github.com/docker-library/kibana/blob/52950fea8dd5b2466d327f62b4e6a7d8bbb0f865/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/kibana/blob/c2cb4e05003784aaa811f1c2ec8df9bdfb8d46e5/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 39f7aa0da173..9d0bb4dc7f13 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,10 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.0`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/8.9.0/Dockerfile) -- [`8.8.2`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/8.8.2/Dockerfile) - [`8.9.1`](https://github.com/docker-library/logstash/blob/2ff314dcb3ed7b4bb812ca9fa3cdf72ca958e99f/8/Dockerfile) -- [`7.17.11`](https://github.com/docker-library/logstash/blob/2105c9b1b6afcef578a932a55ad6625a196254ab/7.17.11/Dockerfile) - [`7.17.12`](https://github.com/docker-library/logstash/blob/d94032bc7db1f3b62922a15f9e0eab7401fe479b/7/Dockerfile) # Quick reference (cont.) From 6c2877d498fa33a8cc98d6301993a05c35227326 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Aug 2023 15:09:41 -0700 Subject: [PATCH 0553/2686] Run update.sh --- wordpress/README.md | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 1bbda8fb8828..f3270f136883 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.0-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.0`, `6.3`, `6`, `latest`, `6.3.0-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.0-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/apache/Dockerfile) -- [`6.3.0-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.0-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/fpm/Dockerfile) -- [`6.3.0-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.0-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.3.0-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.0-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/apache/Dockerfile) -- [`6.3.0-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/fpm/Dockerfile) -- [`6.3.0-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.3.0-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.0-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/apache/Dockerfile) -- [`6.3.0-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm/Dockerfile) -- [`6.3.0-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f1704f65b98c2a903318b5bc775000b956f16300/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.3.1-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.1`, `6.3`, `6`, `latest`, `6.3.1-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.1-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/apache/Dockerfile) +- [`6.3.1-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.1-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/fpm/Dockerfile) +- [`6.3.1-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.1-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.3.1-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.1-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/apache/Dockerfile) +- [`6.3.1-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/fpm/Dockerfile) +- [`6.3.1-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.3.1-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.1-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/apache/Dockerfile) +- [`6.3.1-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/fpm/Dockerfile) +- [`6.3.1-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.3.1-RC1-apache`, `beta-6.3.1-apache`, `beta-6.3-apache`, `beta-6-apache`, `beta-apache`, `beta-6.3.1-RC1`, `beta-6.3.1`, `beta-6.3`, `beta-6`, `beta`, `beta-6.3.1-RC1-php8.0-apache`, `beta-6.3.1-php8.0-apache`, `beta-6.3-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.3.1-RC1-php8.0`, `beta-6.3.1-php8.0`, `beta-6.3-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/apache/Dockerfile) -- [`beta-6.3.1-RC1-fpm`, `beta-6.3.1-fpm`, `beta-6.3-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.3.1-RC1-php8.0-fpm`, `beta-6.3.1-php8.0-fpm`, `beta-6.3-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/fpm/Dockerfile) -- [`beta-6.3.1-RC1-fpm-alpine`, `beta-6.3.1-fpm-alpine`, `beta-6.3-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.3.1-RC1-php8.0-fpm-alpine`, `beta-6.3.1-php8.0-fpm-alpine`, `beta-6.3-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.3.1-RC1-php8.1-apache`, `beta-6.3.1-php8.1-apache`, `beta-6.3-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.3.1-RC1-php8.1`, `beta-6.3.1-php8.1`, `beta-6.3-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/apache/Dockerfile) -- [`beta-6.3.1-RC1-php8.1-fpm`, `beta-6.3.1-php8.1-fpm`, `beta-6.3-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.3.1-RC1-php8.1-fpm-alpine`, `beta-6.3.1-php8.1-fpm-alpine`, `beta-6.3-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.3.1-RC1-php8.2-apache`, `beta-6.3.1-php8.2-apache`, `beta-6.3-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.3.1-RC1-php8.2`, `beta-6.3.1-php8.2`, `beta-6.3-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/apache/Dockerfile) -- [`beta-6.3.1-RC1-php8.2-fpm`, `beta-6.3.1-php8.2-fpm`, `beta-6.3-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.3.1-RC1-php8.2-fpm-alpine`, `beta-6.3.1-php8.2-fpm-alpine`, `beta-6.3-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/582cf85193fdc840dd080b57a2ec2c2b6bcb154a/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 305a9b955d980d546f77c366cfeb7fd2d8524495 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Aug 2023 16:20:59 -0700 Subject: [PATCH 0554/2686] Run update.sh --- haskell/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index f7395776b705..562bbad1fd9b 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.6.2-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.2`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/buster/Dockerfile) - [`9.6.2-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.2-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/slim-buster/Dockerfile) -- [`9.4.6-buster`, `9.4-buster`, `9.4.6`, `9.4`](https://github.com/haskell/docker-haskell/blob/8d518f4f5eb5d0949e0b6d3086e6c1d1e05ed85b/9.4/buster/Dockerfile) -- [`9.4.6-slim-buster`, `9.4-slim-buster`, `9.4.6-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/8d518f4f5eb5d0949e0b6d3086e6c1d1e05ed85b/9.4/slim-buster/Dockerfile) +- [`9.4.7-buster`, `9.4-buster`, `9.4.7`, `9.4`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/buster/Dockerfile) +- [`9.4.7-slim-buster`, `9.4-slim-buster`, `9.4.7-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) From a058fa7f9dbec799eaa8d509f6e9546454171226 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Aug 2023 13:09:46 -0700 Subject: [PATCH 0555/2686] Run update.sh --- aerospike/README.md | 4 +- eclipse-temurin/README.md | 152 +++++++++++++++++++------------------- xwiki/README.md | 6 +- 3 files changed, 81 insertions(+), 81 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 6af80258aaec..5f66b1c2d71c 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.1`, `ee-6.4.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/881eb4f89b828af75b4d12380bfd6e5c0742262e/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.1`, `ce-6.4.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/881eb4f89b828af75b4d12380bfd6e5c0742262e/community/debian12/Dockerfile) +- [`ee-6.4.0.2`, `ee-6.4.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/23893a43ecb447649aa4e6fd214974c450ff5174/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.2`, `ce-6.4.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/23893a43ecb447649aa4e6fd214974c450ff5174/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 6a71ed3137ea..f5eb5b7d6922 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -46,42 +46,42 @@ WARNING: - [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.20_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.20_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.20_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.20_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.20_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.20_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20_8-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/centos/Dockerfile.releases.full) -- [`11.0.20_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.20_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.20_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.20_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.20_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.8_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.8_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.8_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.8_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.8_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.8_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/centos/Dockerfile.releases.full) -- [`17.0.8_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.8_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.8_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.8_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.8_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/alpine/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/centos/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.20.1_1-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/alpine/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/focal/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/centos/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`11.0.20.1_1-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/alpine/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/centos/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.8.1_1-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/alpine/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/focal/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/centos/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`17.0.8.1_1-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/alpine/Dockerfile.releases.full) - [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) @@ -119,46 +119,46 @@ WARNING: - `8u382-b05-jre-nanoserver`, `8-jre-nanoserver`: - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.20_8-jdk`, `11-jdk`, `11`: - - [`11.0.20_8-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.20_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.20_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.20_8-jre`, `11-jre`: - - [`11.0.20_8-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20_8-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.20_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20_8-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.20_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.20_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7b6ee5b8da666343ab1169d6019833a94ef6eb6d/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.8_7-jdk`, `17-jdk`, `17`: - - [`17.0.8_7-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.8_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.8_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.8_7-jre`, `17-jre`: - - [`17.0.8_7-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.8_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.8_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.8_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/2eabe3e4525f57d9d4e85af796fca2a2748fe907/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jdk`, `11-jdk`, `11`: + - [`11.0.20.1_1-jdk-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.20.1_1-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jre`, `11-jre`: + - [`11.0.20.1_1-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`11.0.20.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.20.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `11.0.20.1_1-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.20.1_1-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`11.0.20.1_1-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jdk`, `17-jdk`, `17`: + - [`17.0.8.1_1-jdk-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.8.1_1-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jre`, `17-jre`: + - [`17.0.8.1_1-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`17.0.8.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.8.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `17.0.8.1_1-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.8.1_1-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`17.0.8.1_1-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) - `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) diff --git a/xwiki/README.md b/xwiki/README.md index 430044ebc7ca..20143c4ee13e 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,9 +30,9 @@ WARNING: - [`14`, `14.10`, `14.10.15`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.1`, `15.5-mysql-tomcat`, `15.5.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/280bb2f94c270db7b9cab529ef639fc46e90e868/15.5/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.2`, `15.5-mysql-tomcat`, `15.5.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 06d7a568a8a57949ce280658ea1917ba2138b49c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Aug 2023 17:09:41 -0700 Subject: [PATCH 0556/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- openjdk/README.md | 36 ++++++++++++++++++------------------ postgres/README.md | 8 ++++---- unit/README.md | 20 ++++++++++++-------- 4 files changed, 44 insertions(+), 40 deletions(-) diff --git a/docker/README.md b/docker/README.md index b90d105c30ea..206797abccc5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/cli/Dockerfile) +- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/cli/Dockerfile) - [`24.0.5-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.5-dind-alpine3.18`, `24.0.5`, `24.0`, `24`, `latest`, `24.0.5-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind/Dockerfile) - [`24.0.5-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind-rootless/Dockerfile) - [`24.0.5-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/cli/Dockerfile) +- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.5-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f745ee7e7dc85e8ddbcc23fd17cffe5735b93f23/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e0434f3ab21e20772dfbcd513fe93e32b405560a/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 153705abf166..71f371b69628 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-12-jdk-oraclelinux8`, `22-ea-12-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-12-jdk-oracle`, `22-ea-12-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-12-jdk-oraclelinux7`, `22-ea-12-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-12-jdk-bookworm`, `22-ea-12-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/bookworm/Dockerfile) -- [`22-ea-12-jdk-slim-bookworm`, `22-ea-12-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-12-jdk-slim`, `22-ea-12-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-12-jdk-bullseye`, `22-ea-12-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/bullseye/Dockerfile) -- [`22-ea-12-jdk-slim-bullseye`, `22-ea-12-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-12-jdk-windowsservercore-ltsc2022`, `22-ea-12-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-12-jdk-windowsservercore-1809`, `22-ea-12-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-12-jdk-nanoserver-1809`, `22-ea-12-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-13-jdk-oraclelinux8`, `22-ea-13-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-13-jdk-oracle`, `22-ea-13-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-13-jdk-oraclelinux7`, `22-ea-13-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-13-jdk-bookworm`, `22-ea-13-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/bookworm/Dockerfile) +- [`22-ea-13-jdk-slim-bookworm`, `22-ea-13-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-13-jdk-slim`, `22-ea-13-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-13-jdk-bullseye`, `22-ea-13-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/bullseye/Dockerfile) +- [`22-ea-13-jdk-slim-bullseye`, `22-ea-13-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-13-jdk-windowsservercore-ltsc2022`, `22-ea-13-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-13-jdk-windowsservercore-1809`, `22-ea-13-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-13-jdk-nanoserver-1809`, `22-ea-13-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) - [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `22-ea-12-jdk`, `22-ea-12`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-12-jdk-windowsservercore`, `22-ea-12-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-12-jdk-nanoserver`, `22-ea-12-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab1787291fe87e896e57924b86efd835bfad7850/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-13-jdk`, `22-ea-13`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-13-jdk-windowsservercore`, `22-ea-13-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-13-jdk-nanoserver`, `22-ea-13-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index faff1cca5f70..63c68bd72abe 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16beta3`, `16beta3-bookworm`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/bookworm/Dockerfile) -- [`16beta3-bullseye`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/bullseye/Dockerfile) -- [`16beta3-alpine3.18`, `16beta3-alpine`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/alpine3.18/Dockerfile) -- [`16beta3-alpine3.17`](https://github.com/docker-library/postgres/blob/ee530cc079f232f9b1045db43d8c501ee2057d6d/16/alpine3.17/Dockerfile) +- [`16rc1`, `16rc1-bookworm`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/bookworm/Dockerfile) +- [`16rc1-bullseye`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/bullseye/Dockerfile) +- [`16rc1-alpine3.18`, `16rc1-alpine`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/alpine3.18/Dockerfile) +- [`16rc1-alpine3.17`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/alpine3.17/Dockerfile) - [`15.4`, `15`, `latest`, `15.4-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bookworm/Dockerfile) - [`15.4-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bullseye/Dockerfile) - [`15.4-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.4-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.18/Dockerfile) diff --git a/unit/README.md b/unit/README.md index fbd00426f10b..eafe90fb905e 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,14 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30.0-go1.20`, `go1.20`, `go1`, `go`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.go1.20) -- [`1.30.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.jsc11) -- [`1.30.0-node18`, `node18`, `node`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.node18) -- [`1.30.0-perl5.36`, `perl5.36`, `perl5`, `perl`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.perl5.36) -- [`1.30.0-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.php8.2) -- [`1.30.0-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.python3.11) -- [`1.30.0-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.ruby3.2) -- [`1.30.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/92ffcb89f8e145299e837438f0a0de93d73ffede/pkg/docker/Dockerfile.minimal) +- [`1.31.0-go1.21`, `go1.21`, `go1`, `go`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.go1.21) +- [`1.31.0-go1.20`, `go1.20`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.go1.20) +- [`1.31.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.jsc11) +- [`1.31.0-node20`, `node20`, `node`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.node20) +- [`1.31.0-node18`, `node18`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.node18) +- [`1.31.0-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.perl5.38) +- [`1.31.0-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.perl5.36) +- [`1.31.0-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.php8.2) +- [`1.31.0-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.python3.11) +- [`1.31.0-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.ruby3.2) +- [`1.31.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.wasm) +- [`1.31.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From e0fd7bb239e1bdcbca2d9960ce08c6ea2e22016d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Sep 2023 12:10:15 -0700 Subject: [PATCH 0557/2686] Run update.sh --- arangodb/README.md | 2 +- dart/README.md | 4 ++-- odoo/README.md | 6 +++--- sonarqube/README.md | 20 ++++++++++---------- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index a6fbbc20435b..b99ea2c3b1f1 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9`, `3.9.11`](https://github.com/arangodb/arangodb-docker/blob/2f0e4d0d5f501633e6254812320283bf0c710757/alpine/3.9.11/Dockerfile) +- [`3.9`, `3.9.12`](https://github.com/arangodb/arangodb-docker/blob/53f958f87211657b217169c7e00847034a708cd4/alpine/3.9.12/Dockerfile) - [`3.10`, `3.10.10`](https://github.com/arangodb/arangodb-docker/blob/5e1e58d2e5a985fe21b0747909d39eb3ccc434e2/alpine/3.10.10/Dockerfile) - [`3.11`, `3.11.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a2086d378d6c439d95b6900c6429709e57c6f24d/alpine/3.11.3/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 805fa857fe18..0d66df0887a5 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.0-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.0`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/374830ccf127dc3ee9c297ea203e512d8b18331c/stable/bullseye/Dockerfile) -- [`3.2.0-42.1.beta-sdk`, `beta-sdk`, `3.2.0-42.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/374830ccf127dc3ee9c297ea203e512d8b18331c/beta/bullseye/Dockerfile) +- [`3.1.0-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.0`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b9c9995102db37bed6996348206189868b659ee3/stable/bullseye/Dockerfile) +- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b9c9995102db37bed6996348206189868b659ee3/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 9193bfcdbd3c..60b4440805e5 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/5a2479f0a2e1bdf387e520e8a7cc06b1148a7a74/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/14.0/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index bc7d3a74871d..33bf513cf4e2 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/community/Dockerfile) -- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/developer/Dockerfile) -- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/enterprise/Dockerfile) -- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/datacenter/app/Dockerfile) -- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/9/datacenter/search/Dockerfile) -- [`10.1.0-community`, `10.1-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/community/Dockerfile) -- [`10.1.0-developer`, `10.1-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/developer/Dockerfile) -- [`10.1.0-enterprise`, `10.1-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/enterprise/Dockerfile) -- [`10.1.0-datacenter-app`, `10.1-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/datacenter/app/Dockerfile) -- [`10.1.0-datacenter-search`, `10.1-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/9b79d014844155923673ca1fbe72ecc0d9ff361c/10/datacenter/search/Dockerfile) +- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/community/Dockerfile) +- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/developer/Dockerfile) +- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/enterprise/Dockerfile) +- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/datacenter/app/Dockerfile) +- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/datacenter/search/Dockerfile) +- [`10.2.0-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/community/Dockerfile) +- [`10.2.0-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/developer/Dockerfile) +- [`10.2.0-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/enterprise/Dockerfile) +- [`10.2.0-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/datacenter/app/Dockerfile) +- [`10.2.0-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/datacenter/search/Dockerfile) # Quick reference (cont.) From e85f3a3e06e96ac6c590976af68d9def3317038d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Sep 2023 13:14:48 -0700 Subject: [PATCH 0558/2686] Run update.sh --- alpine/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/README.md b/alpine/README.md index 23f2e951d57b..7bd8dc7e4440 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20230329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c025403b1536857f35630b3c7fe5aabf8b6d256a/x86_64/Dockerfile) +- [`20230901`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3/x86_64/Dockerfile) - [`3.18.3`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/1ff397d1b9e6872e19adc93d6ede0cb638a2418a/x86_64/Dockerfile) - [`3.17.5`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/bb3a15580db27a6a5f75909040f98ac1ac6d39c1/x86_64/Dockerfile) - [`3.16.7`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6a4bd9a98102f701834ef7d6fe2215dc0b3288c2/x86_64/Dockerfile) From a07406f4d4ba37ad093e2c5989f0646a1baed158 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Sep 2023 16:15:40 -0700 Subject: [PATCH 0559/2686] Run update.sh --- ubuntu/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index 8166fe754bfb..e46b92216d27 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) -- [`22.04`, `jammy-20230804`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230804-543e67e9&id=543e67e9164176d86a101676d00d90d7fa517492) -- [`23.04`, `lunar-20230731`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230731-5313d155&id=5313d155739982dfbee1f9c03d8ede76a2d4ffc9) -- [`23.10`, `mantic-20230807.1`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230807.1-40432528&id=404325281d1eb4eac6908979c3801ec3545b4435) +- [`22.04`, `jammy-20230816`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230816-8ac0ec73&id=8ac0ec73cdc2b2b4492e6b7dc7e356ff5d2a3813) +- [`23.04`, `lunar-20230816`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230816-f4657ddd&id=f4657ddd1be6fe5fa44da9797c1efb650d2087c1) +- [`23.10`, `mantic-20230819`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230819-7d8482dd&id=7d8482dd3949a749f36adb562598aebf9c533fe8) # Quick reference (cont.) From f5239185cf0983597b851b4ec87c66a79c961597 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Sep 2023 16:33:01 -0700 Subject: [PATCH 0560/2686] Run update.sh --- mongo/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/mongo/README.md b/mongo/README.md index 98e4e666c0bb..2ffe909d51b4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -43,6 +43,11 @@ WARNING: - [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.9-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.9-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.21-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/Dockerfile) +- [`5.0.21-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.21-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.21-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.21-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.20-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) - [`5.0.20-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.20-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) @@ -86,6 +91,16 @@ WARNING: - `6.0.9-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.21-rc0`, `5.0-rc`: + - [`5.0.21-rc0-focal`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/Dockerfile) + - [`5.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.21-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.21-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.20`, `5.0`, `5`: - [`5.0.20-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) - [`5.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) From f752b97fdbf596bd60fe7d1cb2382e86e2fa948e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Sep 2023 19:14:05 -0700 Subject: [PATCH 0561/2686] Run update.sh --- php/README.md | 121 +++++++++++++++++++------------------------------- 1 file changed, 45 insertions(+), 76 deletions(-) diff --git a/php/README.md b/php/README.md index b0e7e5b6eb26..3fa1266e5d35 100644 --- a/php/README.md +++ b/php/README.md @@ -24,82 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0beta3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0beta3-bookworm`, `8.3-rc-bookworm`, `8.3.0beta3-cli`, `8.3-rc-cli`, `8.3.0beta3`, `8.3-rc`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0beta3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0beta3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0beta3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0beta3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0beta3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0beta3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0beta3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0beta3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0beta3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0beta3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0beta3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0beta3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0beta3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0beta3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0beta3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0beta3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0beta3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0beta3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0beta3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0beta3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0beta3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0beta3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0beta3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a7e97e1db78f836fbf1531fa8b3c373a4c205eeb/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.10RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.10RC1-bookworm`, `8.2-rc-bookworm`, `8.2.10RC1-cli`, `8.2-rc-cli`, `8.2.10RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.10RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.10RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.10RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.10RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.10RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.10RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.10RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.10RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.10RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.10RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.10RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.10RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.10RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.10RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.10RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.10RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.10RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.10RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.10RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.10RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.10RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.10RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.10RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a01c2d9b513441e8ad34a15e31be87ab8d18dfe1/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.9-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.9-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.9-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.9`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/cli/Dockerfile) -- [`8.2.9-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.9-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/apache/Dockerfile) -- [`8.2.9-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.9-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/fpm/Dockerfile) -- [`8.2.9-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.9-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bookworm/zts/Dockerfile) -- [`8.2.9-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.9-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/cli/Dockerfile) -- [`8.2.9-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/apache/Dockerfile) -- [`8.2.9-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/fpm/Dockerfile) -- [`8.2.9-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/bullseye/zts/Dockerfile) -- [`8.2.9-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.9-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.9-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.9-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.9-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.9-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.9-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.9-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.9-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.9-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.9-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.9-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/4717c12a15eb1c42be2e03edc8ca3ebc23e217ec/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.23RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.23RC1-bookworm`, `8.1-rc-bookworm`, `8.1.23RC1-cli`, `8.1-rc-cli`, `8.1.23RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.23RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.23RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.23RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.23RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.23RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.23RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.23RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.23RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.23RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.23RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.23RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.23RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.23RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.23RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.23RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.23RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.23RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.23RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.23RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.23RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.23RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.23RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.23RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.23RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.23RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.23RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.23RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/3cf6dc282f78aced1666df944ea4c02ba80b89e9/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.22-cli-bookworm`, `8.1-cli-bookworm`, `8.1.22-bookworm`, `8.1-bookworm`, `8.1.22-cli`, `8.1-cli`, `8.1.22`, `8.1`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/cli/Dockerfile) -- [`8.1.22-apache-bookworm`, `8.1-apache-bookworm`, `8.1.22-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/apache/Dockerfile) -- [`8.1.22-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.22-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/fpm/Dockerfile) -- [`8.1.22-zts-bookworm`, `8.1-zts-bookworm`, `8.1.22-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bookworm/zts/Dockerfile) -- [`8.1.22-cli-bullseye`, `8.1-cli-bullseye`, `8.1.22-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/cli/Dockerfile) -- [`8.1.22-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/apache/Dockerfile) -- [`8.1.22-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/fpm/Dockerfile) -- [`8.1.22-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/bullseye/zts/Dockerfile) -- [`8.1.22-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.22-alpine3.18`, `8.1-alpine3.18`, `8.1.22-cli-alpine`, `8.1-cli-alpine`, `8.1.22-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.22-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.22-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.22-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.22-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.22-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.22-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.22-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.22-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.22-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.22-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.22-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.22-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/0e6ce3504c2a29009ea8448ecdc3d33a497f2d1e/8.1/alpine3.16/zts/Dockerfile) +- [`8.3.0RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC1-bookworm`, `8.3-rc-bookworm`, `8.3.0RC1-cli`, `8.3-rc-cli`, `8.3.0RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.10-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.10-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.10-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.10`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/cli/Dockerfile) +- [`8.2.10-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.10-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/apache/Dockerfile) +- [`8.2.10-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.10-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/fpm/Dockerfile) +- [`8.2.10-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.10-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/zts/Dockerfile) +- [`8.2.10-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.10-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/cli/Dockerfile) +- [`8.2.10-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/apache/Dockerfile) +- [`8.2.10-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/fpm/Dockerfile) +- [`8.2.10-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/zts/Dockerfile) +- [`8.2.10-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.10-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.10-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.10-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.10-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.10-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.10-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.10-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.10-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.10-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.10-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.10-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.23-cli-bookworm`, `8.1-cli-bookworm`, `8.1.23-bookworm`, `8.1-bookworm`, `8.1.23-cli`, `8.1-cli`, `8.1.23`, `8.1`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/cli/Dockerfile) +- [`8.1.23-apache-bookworm`, `8.1-apache-bookworm`, `8.1.23-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/apache/Dockerfile) +- [`8.1.23-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.23-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/fpm/Dockerfile) +- [`8.1.23-zts-bookworm`, `8.1-zts-bookworm`, `8.1.23-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/zts/Dockerfile) +- [`8.1.23-cli-bullseye`, `8.1-cli-bullseye`, `8.1.23-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/cli/Dockerfile) +- [`8.1.23-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/apache/Dockerfile) +- [`8.1.23-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/fpm/Dockerfile) +- [`8.1.23-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/zts/Dockerfile) +- [`8.1.23-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.23-alpine3.18`, `8.1-alpine3.18`, `8.1.23-cli-alpine`, `8.1-cli-alpine`, `8.1.23-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.23-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.23-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.23-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.23-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.23-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.23-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.23-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.23-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.23-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.23-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.23-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.23-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/zts/Dockerfile) - [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) - [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) - [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) From 98df3236baf27c8c8b1b537134ff52db50df0e48 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Sep 2023 12:09:30 -0700 Subject: [PATCH 0562/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index bd7bd65602ff..82c239c9149e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230826`, `latest`](https://github.com/vmware/photon-docker-image/blob/ad7117e92720b4baba790049269f3a7f228b3c8b/docker/Dockerfile) -- [`4.0`, `4.0-20230826`](https://github.com/vmware/photon-docker-image/blob/509c6bd10b93cbb254bed9d1b8e5ae5884beec20/docker/Dockerfile) -- [`3.0`, `3.0-20230826`](https://github.com/vmware/photon-docker-image/blob/e232c3c612f9b9ec0981ed39f31c597211e18a6d/docker/Dockerfile) +- [`5.0`, `5.0-20230902`, `latest`](https://github.com/vmware/photon-docker-image/blob/857016c41e9a13ebdcdc2f03c4ab95ba35f1642a/docker/Dockerfile) +- [`4.0`, `4.0-20230905`](https://github.com/vmware/photon-docker-image/blob/0ce117a627abbc599cea912498d9b73200cd749d/docker/Dockerfile) +- [`3.0`, `3.0-20230902`](https://github.com/vmware/photon-docker-image/blob/d336ea566b6ec53ff5790cc035561b2ea46613dc/docker/Dockerfile) # Quick reference (cont.) From 2ec7a014dc52efee6507465feb703d2a34df182e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Sep 2023 15:10:19 -0700 Subject: [PATCH 0563/2686] Run update.sh --- clearlinux/README.md | 2 +- composer/README.md | 3 ++- emqx/README.md | 2 +- node/README.md | 16 ++++++++-------- sl/README.md | 2 +- xwiki/README.md | 6 +++--- 6 files changed, 16 insertions(+), 15 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index f6efc917b22e..bcb0801a5fce 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b33e9cb059d62aab30acf0a6d4d34ef0c7ce4419/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/19a5a350b1f3651a50a4ce34619faa48d3b7091c/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index a7edebbdd655..b0c1256c8d34 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.5.8`, `2.5`, `2`, `latest`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) +- [`2.6.2`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/f7443a9a35a45d870d6d3e01ea2111276a1c983a/2.6/Dockerfile) +- [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) - [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index 37dd712fa184..5dacbdbbc531 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) -- [`5.1.5-build.3`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/3a19847806d3ca16fb8eb61cecc28a91b74c92e4/5.1/Dockerfile) +- [`5.1.6`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 5d56dd4c6f51..98e42615e4dd 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.5-alpine3.17`, `20.5.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.5-alpine`, `20.5-alpine3.18`, `20.5.1-alpine`, `20.5.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.5`, `20.5-bookworm`, `20.5.1`, `20.5.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.5-bookworm-slim`, `20.5-slim`, `20.5.1-bookworm-slim`, `20.5.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.5-bullseye`, `20.5.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.5-bullseye-slim`, `20.5.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.5-buster`, `20.5.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/buster/Dockerfile) -- [`20-buster-slim`, `20.5-buster-slim`, `20.5.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.6-alpine3.17`, `20.6.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.6-alpine`, `20.6-alpine3.18`, `20.6.0-alpine`, `20.6.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.6`, `20.6-bookworm`, `20.6.0`, `20.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.6-bookworm-slim`, `20.6-slim`, `20.6.0-bookworm-slim`, `20.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.6-bullseye`, `20.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.6-bullseye-slim`, `20.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.6-buster`, `20.6.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/buster/Dockerfile) +- [`20-buster-slim`, `20.6-buster-slim`, `20.6.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.1-alpine`, `18.17.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.1`, `18.17.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm/Dockerfile) diff --git a/sl/README.md b/sl/README.md index a107d02e3ae9..36fb17e771ff 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/8a6f60fae85c0e665fcd3388a21a850e82a56c70/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/2cf619a0823267187d711143c981bf092e45fe04/sl7/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 20143c4ee13e..78f901e9e44c 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.7`, `15.7.0`, `15-mysql-tomcat`, `15.7-mysql-tomcat`, `15.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.7-postgres-tomcat`, `15.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.7-mariadb-tomcat`, `15.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.15`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/88646b0a3b82c61a4aead5939b374df1cdf2d2b6/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.16`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.16-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.16-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.16-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.2`, `15.5-mysql-tomcat`, `15.5.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mariadb-tomcat/Dockerfile) From c6652dfb50def164c79924637bd98c9a0b973cc7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Sep 2023 16:18:04 -0700 Subject: [PATCH 0564/2686] Run update.sh --- ghost/README.md | 4 ++-- joomla/README.md | 30 +++++++++++++++--------------- rabbitmq/README.md | 24 ++++++++++++------------ sonarqube/README.md | 20 ++++++++++---------- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f0dbdb6fac7e..ff1f730e15fe 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.60.0`, `5.60`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2f6ba5c0a3ad636d981929af6553f133eaa8925e/5/debian/Dockerfile) -- [`5.60.0-alpine`, `5.60-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2f6ba5c0a3ad636d981929af6553f133eaa8925e/5/alpine/Dockerfile) +- [`5.61.2`, `5.61`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c7cbc993d201e5cb1f7dd6f8c5f3ab437eeb3b41/5/debian/Dockerfile) +- [`5.61.2-alpine`, `5.61-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c7cbc993d201e5cb1f7dd6f8c5f3ab437eeb3b41/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 6d8b4e9404eb..57ae58953c76 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-alpha4`, `5.0`, `5.0.alpha`, `5.0.0-alpha`, `5.0.0-alpha4-apache`, `5.0-apache`, `5.0.alpha-apache`, `5.0.0-alpha-apache`, `5.0.0-alpha4-php8.1`, `5.0-php8.1`, `5.0.alpha-php8.1`, `5.0.0-alpha-php8.1`, `5.0.0-alpha4-php8.1-apache`, `5.0-php8.1-apache`, `5.0.alpha-php8.1-apache`, `5.0.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/apache/Dockerfile) -- [`5.0.0-alpha4-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.alpha-php8.1-fpm-alpine`, `5.0.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-alpha4-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.alpha-php8.1-fpm`, `5.0.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.1/fpm/Dockerfile) -- [`5.0.0-alpha4-php8.2-apache`, `5.0-php8.2-apache`, `5.0.alpha-php8.2-apache`, `5.0.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/apache/Dockerfile) -- [`5.0.0-alpha4-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.alpha-php8.2-fpm-alpine`, `5.0.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-alpha4-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.alpha-php8.2-fpm`, `5.0.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/5.0.alpha/php8.2/fpm/Dockerfile) -- [`4.4.0-alpha4-php8.0-apache`, `4.4-php8.0-apache`, `4.4.alpha-php8.0-apache`, `4.4.0-alpha-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/apache/Dockerfile) -- [`4.4.0-alpha4-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.alpha-php8.0-fpm-alpine`, `4.4.0-alpha-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-alpha4-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.alpha-php8.0-fpm`, `4.4.0-alpha-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.0/fpm/Dockerfile) -- [`4.4.0-alpha4`, `4.4`, `4.4.alpha`, `4.4.0-alpha`, `4.4.0-alpha4-apache`, `4.4-apache`, `4.4.alpha-apache`, `4.4.0-alpha-apache`, `4.4.0-alpha4-php8.1`, `4.4-php8.1`, `4.4.alpha-php8.1`, `4.4.0-alpha-php8.1`, `4.4.0-alpha4-php8.1-apache`, `4.4-php8.1-apache`, `4.4.alpha-php8.1-apache`, `4.4.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/apache/Dockerfile) -- [`4.4.0-alpha4-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.alpha-php8.1-fpm-alpine`, `4.4.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-alpha4-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.alpha-php8.1-fpm`, `4.4.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.1/fpm/Dockerfile) -- [`4.4.0-alpha4-php8.2-apache`, `4.4-php8.2-apache`, `4.4.alpha-php8.2-apache`, `4.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/apache/Dockerfile) -- [`4.4.0-alpha4-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.alpha-php8.2-fpm-alpine`, `4.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-alpha4-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.alpha-php8.2-fpm`, `4.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e00ac6f0b2c81a9627eea72f991494c3028b853/4.4.alpha/php8.2/fpm/Dockerfile) +- [`5.0.0-beta1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.beta-php8.1-apache`, `5.0.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/apache/Dockerfile) +- [`5.0.0-beta1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.beta-php8.1-fpm-alpine`, `5.0.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-beta1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.beta-php8.1-fpm`, `5.0.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/fpm/Dockerfile) +- [`5.0.0-beta1`, `5.0`, `5.0.beta`, `5.0.0-beta`, `5.0.0-beta1-apache`, `5.0-apache`, `5.0.beta-apache`, `5.0.0-beta-apache`, `5.0.0-beta1-php8.2`, `5.0-php8.2`, `5.0.beta-php8.2`, `5.0.0-beta-php8.2`, `5.0.0-beta1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.beta-php8.2-apache`, `5.0.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/apache/Dockerfile) +- [`5.0.0-beta1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.beta-php8.2-fpm-alpine`, `5.0.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-beta1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.beta-php8.2-fpm`, `5.0.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/fpm/Dockerfile) +- [`4.4.0-beta1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.beta-php8.0-apache`, `4.4.0-beta-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/apache/Dockerfile) +- [`4.4.0-beta1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.beta-php8.0-fpm-alpine`, `4.4.0-beta-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-beta1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.beta-php8.0-fpm`, `4.4.0-beta-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/fpm/Dockerfile) +- [`4.4.0-beta1`, `4.4`, `4.4.beta`, `4.4.0-beta`, `4.4.0-beta1-apache`, `4.4-apache`, `4.4.beta-apache`, `4.4.0-beta-apache`, `4.4.0-beta1-php8.1`, `4.4-php8.1`, `4.4.beta-php8.1`, `4.4.0-beta-php8.1`, `4.4.0-beta1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.beta-php8.1-apache`, `4.4.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/apache/Dockerfile) +- [`4.4.0-beta1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.beta-php8.1-fpm-alpine`, `4.4.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-beta1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.beta-php8.1-fpm`, `4.4.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/fpm/Dockerfile) +- [`4.4.0-beta1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.beta-php8.2-apache`, `4.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/apache/Dockerfile) +- [`4.4.0-beta1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.beta-php8.2-fpm-alpine`, `4.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-beta1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.beta-php8.2-fpm`, `4.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/fpm/Dockerfile) - [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/apache/Dockerfile) - [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm-alpine/Dockerfile) - [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7e9ae048a0b3..49775b28255d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-beta.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/05bc72cdc91d9c85319d917ea749ae7f82792adc/3.13-rc/alpine/Dockerfile) -- [`3.13.0-beta.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f241a0e95e6257074c4211a897f431d54d5e96a0/3.12/ubuntu/Dockerfile) +- [`3.13.0-beta.5`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.5-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-beta.5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.5-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/ubuntu/Dockerfile) - [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f241a0e95e6257074c4211a897f431d54d5e96a0/3.12/alpine/Dockerfile) +- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/alpine/Dockerfile) - [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/d4af4139f9839250dc3c3134a6e313fc269676d1/3.11/ubuntu/Dockerfile) +- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.11/ubuntu/Dockerfile) - [`3.11.22-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/d4af4139f9839250dc3c3134a6e313fc269676d1/3.11/alpine/Dockerfile) +- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.11/alpine/Dockerfile) - [`3.11.22-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/2a34299995bd94fa478bb688ec6ea1ca0dfb3f76/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 33bf513cf4e2..c642184f9dc4 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.1-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/community/Dockerfile) -- [`9.9.1-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/developer/Dockerfile) -- [`9.9.1-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/enterprise/Dockerfile) -- [`9.9.1-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/datacenter/app/Dockerfile) -- [`9.9.1-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/9/datacenter/search/Dockerfile) -- [`10.2.0-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/community/Dockerfile) -- [`10.2.0-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/developer/Dockerfile) -- [`10.2.0-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/enterprise/Dockerfile) -- [`10.2.0-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/datacenter/app/Dockerfile) -- [`10.2.0-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8d14b48e708adc136578db90cd201d2da92dcc76/10/datacenter/search/Dockerfile) +- [`9.9.2-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/community/Dockerfile) +- [`9.9.2-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/developer/Dockerfile) +- [`9.9.2-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/enterprise/Dockerfile) +- [`9.9.2-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/datacenter/app/Dockerfile) +- [`9.9.2-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/datacenter/search/Dockerfile) +- [`10.2.0-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/community/Dockerfile) +- [`10.2.0-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/developer/Dockerfile) +- [`10.2.0-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/enterprise/Dockerfile) +- [`10.2.0-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/datacenter/app/Dockerfile) +- [`10.2.0-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 6f184d1e282556714b12a2f0ff01a8e3a3f7cf15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Sep 2023 17:39:13 -0700 Subject: [PATCH 0565/2686] Run update.sh --- docker/README.md | 18 +++++++-------- mongo/README.md | 60 ++++++++++++++++++++++++------------------------ 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/docker/README.md b/docker/README.md index 206797abccc5..85dccd94e659 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`24.0.5-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.5-cli-alpine3.18`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/cli/Dockerfile) -- [`24.0.5-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.5-dind-alpine3.18`, `24.0.5`, `24.0`, `24`, `latest`, `24.0.5-alpine3.18`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind/Dockerfile) -- [`24.0.5-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/f6bb49f0c0e7ed0ab489df14b53e26cc65c294d6/24/dind-rootless/Dockerfile) -- [`24.0.5-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.5-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.5-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/cli/Dockerfile) +- [`24.0.6-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.6-dind-alpine3.18`, `24.0.6`, `24.0`, `24`, `latest`, `24.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind/Dockerfile) +- [`24.0.6-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind-rootless/Dockerfile) +- [`24.0.6-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-1809/Dockerfile) - [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `24.0.5-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e7e25ec90b6db2e33b276aabfadcf580825a0fe8/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.6-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-1809/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 2ffe909d51b4..b61cd4f712d9 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,16 +28,16 @@ WARNING: ## Simple Tags -- [`7.0.1-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/Dockerfile) -- [`7.0.1-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.1-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.1-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.1-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.0-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) -- [`7.0.0-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.0-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.0-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.0-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.1-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/Dockerfile) +- [`7.0.1-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.1-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.1-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.1-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.10-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/Dockerfile) +- [`6.0.10-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.10-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.10-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.10-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.9-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) - [`6.0.9-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) @@ -61,26 +61,26 @@ WARNING: ## Shared Tags -- `7.0.1-rc0`, `7.0-rc`: - - [`7.0.1-rc0-jammy`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/Dockerfile) - - [`7.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.1-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.1-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.1-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.1-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/971f4ce1976457fddd5cf722268da9f7759d7fc8/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.0`, `7.0`, `7`, `latest`: - - [`7.0.0-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/7.0/Dockerfile) - - [`7.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.0-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c5838ac05486826d920adf0b1b8c02367663bdc4/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.1`, `7.0`, `7`, `latest`: + - [`7.0.1-jammy`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/Dockerfile) + - [`7.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.1-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.1-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.10-rc0`, `6.0-rc`: + - [`6.0.10-rc0-jammy`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/Dockerfile) + - [`6.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.10-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.10-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.9`, `6.0`, `6`: - [`6.0.9-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) From 386e87507cc77e29d6d53c7380608bba6f275fa7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Sep 2023 12:18:02 -0700 Subject: [PATCH 0566/2686] Run update.sh --- golang/README.md | 72 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 8 +++--- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/golang/README.md b/golang/README.md index d932fcd03304..17d58208c3de 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.21.0-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bookworm/Dockerfile) -- [`1.21.0-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bullseye/Dockerfile) -- [`1.21.0-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.0-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/alpine3.18/Dockerfile) -- [`1.21.0-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/alpine3.17/Dockerfile) -- [`1.21.0-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.0-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.0-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.0-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.7-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) -- [`1.20.7-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bullseye/Dockerfile) -- [`1.20.7-alpine3.18`, `1.20-alpine3.18`, `1.20.7-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.18/Dockerfile) -- [`1.20.7-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/alpine3.17/Dockerfile) -- [`1.20.7-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.7-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.7-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.7-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.1-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bookworm/Dockerfile) +- [`1.21.1-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bullseye/Dockerfile) +- [`1.21.1-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.1-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/alpine3.18/Dockerfile) +- [`1.21.1-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/alpine3.17/Dockerfile) +- [`1.21.1-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.1-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.1-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.1-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.8-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bookworm/Dockerfile) +- [`1.20.8-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bullseye/Dockerfile) +- [`1.20.8-alpine3.18`, `1.20-alpine3.18`, `1.20.8-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/alpine3.18/Dockerfile) +- [`1.20.8-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/alpine3.17/Dockerfile) +- [`1.20.8-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.8-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.8-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.8-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21.0`, `1.21`, `1`, `latest`: - - [`1.21.0-bookworm`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/bookworm/Dockerfile) - - [`1.21.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.0-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.0-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.7`, `1.20`: - - [`1.20.7-bookworm`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/bookworm/Dockerfile) - - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.7-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.7-nanoserver`, `1.20-nanoserver`: - - [`1.20.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/50108f6b1d1fc943f3f1124b267c1256f935b89d/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.1`, `1.21`, `1`, `latest`: + - [`1.21.1-bookworm`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bookworm/Dockerfile) + - [`1.21.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.1-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.1-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.8`, `1.20`: + - [`1.20.8-bookworm`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bookworm/Dockerfile) + - [`1.20.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.8-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.8-nanoserver`, `1.20-nanoserver`: + - [`1.20.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 49775b28255d..3295a5969eef 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.5`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-beta.5-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.13-rc/alpine/Dockerfile) -- [`3.13.0-beta.5-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/03543b13c22cf5b1304d5889c9fd14b14b4cf3fd/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/03543b13c22cf5b1304d5889c9fd14b14b4cf3fd/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/ubuntu/Dockerfile) - [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/alpine/Dockerfile) From 70f487a4bf057fd69dc89f3cc3d5c1fc848c3e31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Sep 2023 16:20:08 -0700 Subject: [PATCH 0567/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nats/README.md b/nats/README.md index 6f527d9fb332..349018165263 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,20 @@ WARNING: ## Simple Tags -- [`2.9.21-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.21-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/alpine3.18/Dockerfile) -- [`2.9.21-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.21-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/scratch/Dockerfile) -- [`2.9.21-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/windowsservercore-1809/Dockerfile) -- [`2.9.21-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) +- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.22-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/alpine3.18/Dockerfile) +- [`2.9.22-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.22-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/scratch/Dockerfile) +- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/windowsservercore-1809/Dockerfile) +- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.21`, `2.9`, `2`, `latest`: - - [`2.9.21-scratch`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/scratch/Dockerfile) - - [`2.9.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) -- `2.9.21-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.21-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/windowsservercore-1809/Dockerfile) -- `2.9.21-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/36c73754f3d7b2b2e69a0c4680a48636929012cc/2.9.21/nanoserver-1809/Dockerfile) +- `2.9.22`, `2.9`, `2`, `latest`: + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/scratch/Dockerfile) + - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) +- `2.9.22-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/windowsservercore-1809/Dockerfile) +- `2.9.22-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) # Quick reference (cont.) From d8957bf13e0e92ceb9821aac5dbe4bce7288e106 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Sep 2023 17:09:28 -0700 Subject: [PATCH 0568/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++++++++------------------------ ghost/README.md | 4 ++-- redis/README.md | 8 +++---- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/debian/README.md b/debian/README.md index f7d7aa078e61..12eb4085e7a7 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230814`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230814-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230814`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230814-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230814`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230814-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/rc-buggy/Dockerfile) -- [`sid`, `sid-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/sid/Dockerfile) -- [`sid-slim`, `sid-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/sid/slim/Dockerfile) -- [`stable`, `stable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/stable/slim/Dockerfile) -- [`testing`, `testing-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230814`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230814-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e5a19296731859d07765b6ae79aca17954f82b17/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230904`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230904-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230904`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230904-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230904`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230904-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/rc-buggy/Dockerfile) +- [`sid`, `sid-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/sid/Dockerfile) +- [`sid-slim`, `sid-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/sid/slim/Dockerfile) +- [`stable`, `stable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/slim/Dockerfile) +- [`testing`, `testing-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ff1f730e15fe..096491577e58 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.61.2`, `5.61`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c7cbc993d201e5cb1f7dd6f8c5f3ab437eeb3b41/5/debian/Dockerfile) -- [`5.61.2-alpine`, `5.61-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c7cbc993d201e5cb1f7dd6f8c5f3ab437eeb3b41/5/alpine/Dockerfile) +- [`5.61.3`, `5.61`, `5`, `latest`](https://github.com/docker-library/ghost/blob/12e4dad661b22d7a3a042b2b815ce96eec47b010/5/debian/Dockerfile) +- [`5.61.3-alpine`, `5.61-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/12e4dad661b22d7a3a042b2b815ce96eec47b010/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index b83efdc30b71..895da3c1356b 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.0`, `7.2`, `7`, `latest`, `7.2.0-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/9b538c33746872dcd1e8c809cbde9f21ac2ec3ac/7.2/Dockerfile) -- [`7.2.0-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.0-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/9b538c33746872dcd1e8c809cbde9f21ac2ec3ac/7.2/alpine/Dockerfile) -- [`7.0.12`, `7.0`, `7.0.12-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/Dockerfile) -- [`7.0.12-alpine`, `7.0-alpine`, `7.0.12-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/5c8459f1bd20b7b7f92325f83898636f3c8db95f/7.0/alpine/Dockerfile) +- [`7.2.1`, `7.2`, `7`, `latest`, `7.2.1-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/92c70b44fbc5b27df1a14f90a0bd3e1cda46d752/7.2/Dockerfile) +- [`7.2.1-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.1-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/92c70b44fbc5b27df1a14f90a0bd3e1cda46d752/7.2/alpine/Dockerfile) +- [`7.0.13`, `7.0`, `7.0.13-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/13938097abae941f3dbf24c9c6be46f9a7a59f14/7.0/Dockerfile) +- [`7.0.13-alpine`, `7.0-alpine`, `7.0.13-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/13938097abae941f3dbf24c9c6be46f9a7a59f14/7.0/alpine/Dockerfile) - [`6.2.13`, `6.2`, `6`, `6.2.13-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/Dockerfile) - [`6.2.13-alpine`, `6.2-alpine`, `6-alpine`, `6.2.13-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/alpine/Dockerfile) - [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/Dockerfile) From c74cee37eeca1eacefda5d5d3a6d478a2a3858c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Sep 2023 12:17:45 -0700 Subject: [PATCH 0569/2686] Run update.sh --- neo4j/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neo4j/README.md b/neo4j/README.md index 820da0efcefe..79430142844b 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,6 +30,8 @@ WARNING: - [`5.11.0-enterprise-ubi8`, `5.11-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/enterprise/Dockerfile) - [`4.4.25`, `4.4.25-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/community/Dockerfile) - [`4.4.25-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/enterprise/Dockerfile) +- [`4.1.13`, `4.1.13-community`, `4.1`, `4.1-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e96abe5736714a37ed22ed00c02718232eb9a15c/4.1.13/community/Dockerfile) +- [`4.1.13-enterprise`, `4.1-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e96abe5736714a37ed22ed00c02718232eb9a15c/4.1.13/enterprise/Dockerfile) # Quick reference (cont.) From aa235a421192c565e8b0bde964c5ad9c205d0954 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Sep 2023 16:09:47 -0700 Subject: [PATCH 0570/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index f896c5c51b36..d6d4f3d91e4f 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0rc1-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bookworm/Dockerfile) -- [`3.12.0rc1-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc1-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0rc1-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bullseye/Dockerfile) -- [`3.12.0rc1-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0rc1-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc1-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0rc1-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0rc1-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0rc1-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0rc2-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bookworm/Dockerfile) +- [`3.12.0rc2-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0rc2-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bullseye/Dockerfile) +- [`3.12.0rc2-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0rc2-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0rc2-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0rc2-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0rc2-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.5-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) - [`3.11.5-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.5-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bookworm/Dockerfile) - [`3.11.5-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bullseye/Dockerfile) @@ -71,13 +71,13 @@ WARNING: ## Shared Tags -- `3.12.0rc1`, `3.12-rc`: - - [`3.12.0rc1-bookworm`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/bookworm/Dockerfile) - - [`3.12.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0rc1-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/c3f6aa349fa0726cee2c6fd1977571c4b963b4f3/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc2`, `3.12-rc`: + - [`3.12.0rc2-bookworm`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bookworm/Dockerfile) + - [`3.12.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc2-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.5`, `3.11`, `3`, `latest`: - [`3.11.5-bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) From 833ba19f741728792e7379d919774f9a7b080e77 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Sep 2023 17:20:35 -0700 Subject: [PATCH 0571/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- haproxy/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index b88b9322e030..37ba0baef79b 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.1`](https://github.com/docker-library/elasticsearch/blob/eae769ae918ec760e5d21385d22298003914bd33/8/Dockerfile) -- [`7.17.12`](https://github.com/docker-library/elasticsearch/blob/5fe5a426ca33ac9869500cf87e6e4a14d7b1f9e5/7/Dockerfile) +- [`8.9.2`](https://github.com/docker-library/elasticsearch/blob/51a1c0836b7c50e452fa036a496f97ed2d3324c3/8/Dockerfile) +- [`7.17.13`](https://github.com/docker-library/elasticsearch/blob/91b35e027265ce33d16bb0f88884f5897a11328e/7/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 543bdad5d1fe..2e75fcd97e3b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`2.9-dev4`, `2.9-dev`, `2.9-dev4-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/Dockerfile) - [`2.9-dev4-alpine`, `2.9-dev-alpine`, `2.9-dev4-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/alpine/Dockerfile) -- [`2.8.2`, `2.8`, `lts`, `latest`, `2.8.2-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/Dockerfile) -- [`2.8.2-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.2-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/c2acd7ee546c724135e38dd46ad683823edaf3cd/2.8/alpine/Dockerfile) +- [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) +- [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) - [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index e04eef151fca..5e2d0623a12f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.1`](https://github.com/docker-library/kibana/blob/bc464499de24fd857521ba25fcb8d58f23516d3d/8/Dockerfile) -- [`7.17.12`](https://github.com/docker-library/kibana/blob/c2cb4e05003784aaa811f1c2ec8df9bdfb8d46e5/7/Dockerfile) +- [`8.9.2`](https://github.com/docker-library/kibana/blob/3dcda6bebb142ecbd9b9c0fd21dee8879847bd06/8/Dockerfile) +- [`7.17.13`](https://github.com/docker-library/kibana/blob/e79be1ed96f3a741881bbd741c5816aa9273ac2f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 9d0bb4dc7f13..8832287d514a 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.1`](https://github.com/docker-library/logstash/blob/2ff314dcb3ed7b4bb812ca9fa3cdf72ca958e99f/8/Dockerfile) -- [`7.17.12`](https://github.com/docker-library/logstash/blob/d94032bc7db1f3b62922a15f9e0eab7401fe479b/7/Dockerfile) +- [`8.9.2`](https://github.com/docker-library/logstash/blob/7ff963996f280d51ea274c9ddbf84fa02c30ef26/8/Dockerfile) +- [`7.17.13`](https://github.com/docker-library/logstash/blob/a6039d10cfa0f21d86c08f473b9a18c6b94be352/7/Dockerfile) # Quick reference (cont.) From b12d06c583042c9271ec05974b21aa77a0432369 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Sep 2023 11:09:47 -0700 Subject: [PATCH 0572/2686] Run update.sh --- neo4j/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 79430142844b..820da0efcefe 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,8 +30,6 @@ WARNING: - [`5.11.0-enterprise-ubi8`, `5.11-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/enterprise/Dockerfile) - [`4.4.25`, `4.4.25-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/community/Dockerfile) - [`4.4.25-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/enterprise/Dockerfile) -- [`4.1.13`, `4.1.13-community`, `4.1`, `4.1-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e96abe5736714a37ed22ed00c02718232eb9a15c/4.1.13/community/Dockerfile) -- [`4.1.13-enterprise`, `4.1-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e96abe5736714a37ed22ed00c02718232eb9a15c/4.1.13/enterprise/Dockerfile) # Quick reference (cont.) From 762dd87eaae2c0be9684ca9e189c9911d9e4a053 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Sep 2023 12:19:01 -0700 Subject: [PATCH 0573/2686] Run update.sh --- drupal/README.md | 24 ++++++++++++------------ golang/README.md | 18 ++++++++++++++++++ odoo/README.md | 6 +++--- openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 16 ++++++++-------- 5 files changed, 59 insertions(+), 41 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index c414fb6c31fc..1865ad37b964 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.2-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.2-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.2-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.2-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.2-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.2`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.2-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.2-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.2-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.2-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.2-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.2-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.2-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.2-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.2-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.2-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.2-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.2-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.2-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.2-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.2-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.2-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.2-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.2-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.2-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.2-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.2-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.2-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.2-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.2-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/f163edfc720030caf13e512ddcc71e0290cdaea0/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.3-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.3-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.3-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.3-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.3-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.3`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.3-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.3-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.3-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.3-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.3-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.3-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.3-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.3-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.3-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.3-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.3-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.3-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.3-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.3-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.3-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.3-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.3-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.3-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.3-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.3-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.3-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.3-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.3-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.3-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-alpine3.17/Dockerfile) - [`10.0.10-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.10-php8.2-apache`, `10.0-php8.2-apache`, `10.0.10-php8.2`, `10.0-php8.2`, `10.0.10-apache-bookworm`, `10.0-apache-bookworm`, `10.0.10-apache`, `10.0-apache`, `10.0.10`, `10.0`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.10-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.10-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.10-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.10-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.10-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.10-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bullseye/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 17d58208c3de..94c421a74080 100644 --- a/golang/README.md +++ b/golang/README.md @@ -44,6 +44,14 @@ WARNING: - [`1.20.8-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.8-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.8-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.19.13-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bookworm/Dockerfile) +- [`1.19.13-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bullseye/Dockerfile) +- [`1.19.13-alpine3.18`, `1.19-alpine3.18`, `1.19.13-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/alpine3.18/Dockerfile) +- [`1.19.13-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/alpine3.17/Dockerfile) +- [`1.19.13-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.19.13-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) +- [`1.19.13-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.19.13-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -67,6 +75,16 @@ WARNING: - `1.20.8-nanoserver`, `1.20-nanoserver`: - [`1.20.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) +- `1.19.13`, `1.19`: + - [`1.19.13-bookworm`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bookworm/Dockerfile) + - [`1.19.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.13-windowsservercore`, `1.19-windowsservercore`: + - [`1.19.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.19.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) +- `1.19.13-nanoserver`, `1.19-nanoserver`: + - [`1.19.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.19.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 60b4440805e5..4c450cb74051 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/84abbabfd74959c2a6bde08a482a05418e2647e9/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/14.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 71f371b69628..93c5c082c532 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-13-jdk-oraclelinux8`, `22-ea-13-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-13-jdk-oracle`, `22-ea-13-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-13-jdk-oraclelinux7`, `22-ea-13-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-13-jdk-bookworm`, `22-ea-13-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/bookworm/Dockerfile) -- [`22-ea-13-jdk-slim-bookworm`, `22-ea-13-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-13-jdk-slim`, `22-ea-13-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-13-jdk-bullseye`, `22-ea-13-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/bullseye/Dockerfile) -- [`22-ea-13-jdk-slim-bullseye`, `22-ea-13-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-13-jdk-windowsservercore-ltsc2022`, `22-ea-13-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-13-jdk-windowsservercore-1809`, `22-ea-13-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-13-jdk-nanoserver-1809`, `22-ea-13-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-14-jdk-oraclelinux8`, `22-ea-14-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-14-jdk-oracle`, `22-ea-14-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-14-jdk-oraclelinux7`, `22-ea-14-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-14-jdk-bookworm`, `22-ea-14-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/bookworm/Dockerfile) +- [`22-ea-14-jdk-slim-bookworm`, `22-ea-14-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-14-jdk-slim`, `22-ea-14-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-14-jdk-bullseye`, `22-ea-14-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/bullseye/Dockerfile) +- [`22-ea-14-jdk-slim-bullseye`, `22-ea-14-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-14-jdk-windowsservercore-ltsc2022`, `22-ea-14-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-14-jdk-windowsservercore-1809`, `22-ea-14-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-14-jdk-nanoserver-1809`, `22-ea-14-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) - [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `22-ea-13-jdk`, `22-ea-13`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-13-jdk-windowsservercore`, `22-ea-13-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-13-jdk-nanoserver`, `22-ea-13-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10e7e25a9171b06ee309073bb2b68964c25d98fc/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-14-jdk`, `22-ea-14`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-14-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-14-jdk-windowsservercore`, `22-ea-14-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-14-jdk-nanoserver`, `22-ea-14-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 3295a5969eef..68591723c475 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,21 +28,21 @@ WARNING: - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/03543b13c22cf5b1304d5889c9fd14b14b4cf3fd/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/ubuntu/Dockerfile) +- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/1a91aecbf477ff0609f9478ea559921569647414/3.12/ubuntu/Dockerfile) - [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.12/alpine/Dockerfile) +- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1a91aecbf477ff0609f9478ea559921569647414/3.12/alpine/Dockerfile) - [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.11/ubuntu/Dockerfile) +- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/24bfe1c0303506838e7b9c6d50ac42c1655c6473/3.11/ubuntu/Dockerfile) - [`3.11.22-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/cad64a21990ac10bee474e8cf102f17ec57fd821/3.11/alpine/Dockerfile) +- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/24bfe1c0303506838e7b9c6d50ac42c1655c6473/3.11/alpine/Dockerfile) - [`3.11.22-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/974b154bfcf4d21c021f8d94d2cb21a2081c7f24/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/daf0c85adf02108dda23c62d5e18b739f58f2c89/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/974b154bfcf4d21c021f8d94d2cb21a2081c7f24/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 48858769edc1d3ddb599c3f2fd6f5c08ed8d04f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Sep 2023 15:18:12 -0700 Subject: [PATCH 0574/2686] Run update.sh --- amazoncorretto/README.md | 78 ++++++++++++++++++++-------------------- api-firewall/README.md | 5 ++- ghost/README.md | 4 +-- 3 files changed, 43 insertions(+), 44 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index bd2d3c274984..b727d370eda0 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/17/jdk/alpine/3.18/Dockerfile) -- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/al2-generic/Dockerfile) -- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/al2023-generic/Dockerfile) -- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.17/Dockerfile) -- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/df7c548293c02db289dfe7de38c90e92a43e5fcf/20/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.18/Dockerfile) +- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/al2-generic/Dockerfile) +- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/al2023-generic/Dockerfile) +- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.17/Dockerfile) +- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) diff --git a/api-firewall/README.md b/api-firewall/README.md index 1ba6accd7f0a..e409a5dd5e54 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.11`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/8da89a87d29d1b6d5a52e3064722d9a24a4c39fb/0.6.11/Dockerfile) -- [`0.6.10`](https://github.com/wallarm/api-firewall-docker/blob/c2b622e7f59546d9fb338c81fa82d405a8767485/0.6.10/Dockerfile) -- [`0.6.9`](https://github.com/wallarm/api-firewall-docker/blob/b0579bf17de8f41b162e150b00a87b95648258ee/0.6.9/Dockerfile) +- [`0.6.13`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/e91a3e1f2859e57cd9f4371ba2a2308a35f2b546/0.6.13/Dockerfile) +- [`0.6.12`](https://github.com/wallarm/api-firewall-docker/blob/e91a3e1f2859e57cd9f4371ba2a2308a35f2b546/0.6.12/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 096491577e58..abbe807d389a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.61.3`, `5.61`, `5`, `latest`](https://github.com/docker-library/ghost/blob/12e4dad661b22d7a3a042b2b815ce96eec47b010/5/debian/Dockerfile) -- [`5.61.3-alpine`, `5.61-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/12e4dad661b22d7a3a042b2b815ce96eec47b010/5/alpine/Dockerfile) +- [`5.62.0`, `5.62`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4b9927f15a4c469fb2d00aeeda143be8a0356f48/5/debian/Dockerfile) +- [`5.62.0-alpine`, `5.62-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4b9927f15a4c469fb2d00aeeda143be8a0356f48/5/alpine/Dockerfile) # Quick reference (cont.) From 1549534771f483e46e005b8fc9f2157685692fd0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Sep 2023 10:17:58 -0700 Subject: [PATCH 0575/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 98e42615e4dd..8df87ce1070c 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.6-alpine3.17`, `20.6.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.6-alpine`, `20.6-alpine3.18`, `20.6.0-alpine`, `20.6.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.6`, `20.6-bookworm`, `20.6.0`, `20.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.6-bookworm-slim`, `20.6-slim`, `20.6.0-bookworm-slim`, `20.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.6-bullseye`, `20.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.6-bullseye-slim`, `20.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.6-buster`, `20.6.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/buster/Dockerfile) -- [`20-buster-slim`, `20.6-buster-slim`, `20.6.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/9d803e372efa567d0673d022db279af556237bbf/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.6-alpine3.17`, `20.6.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.6-alpine`, `20.6-alpine3.18`, `20.6.1-alpine`, `20.6.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.6`, `20.6-bookworm`, `20.6.1`, `20.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.6-bookworm-slim`, `20.6-slim`, `20.6.1-bookworm-slim`, `20.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.6-bullseye`, `20.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.6-bullseye-slim`, `20.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.6-buster`, `20.6.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/buster/Dockerfile) +- [`20-buster-slim`, `20.6-buster-slim`, `20.6.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.1-alpine`, `18.17.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.1`, `18.17.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm/Dockerfile) From c12c2698771504326f92f46cdcedde2c293227c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Sep 2023 11:09:42 -0700 Subject: [PATCH 0576/2686] Run update.sh --- photon/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photon/README.md b/photon/README.md index 82c239c9149e..1859c8d2a0e0 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230902`, `latest`](https://github.com/vmware/photon-docker-image/blob/857016c41e9a13ebdcdc2f03c4ab95ba35f1642a/docker/Dockerfile) -- [`4.0`, `4.0-20230905`](https://github.com/vmware/photon-docker-image/blob/0ce117a627abbc599cea912498d9b73200cd749d/docker/Dockerfile) +- [`5.0`, `5.0-20230909`, `latest`](https://github.com/vmware/photon-docker-image/blob/995709c40d1b3545e40081675529258c673f93fc/docker/Dockerfile) +- [`4.0`, `4.0-20230909`](https://github.com/vmware/photon-docker-image/blob/7f26647a346fc99eda2c084958c865d560a5f3b6/docker/Dockerfile) - [`3.0`, `3.0-20230902`](https://github.com/vmware/photon-docker-image/blob/d336ea566b6ec53ff5790cc035561b2ea46613dc/docker/Dockerfile) # Quick reference (cont.) From 0eaa01683169f746bb1231146be96e6d157776e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Sep 2023 12:19:35 -0700 Subject: [PATCH 0577/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- crate/README.md | 2 +- dart/README.md | 4 ++-- haproxy/README.md | 4 ++-- telegraf/README.md | 12 ++++++------ 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 6fd4cee82381..ee9a71d74e12 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230723.0.166908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/56bb99f5ad26f03ab6ea2984f83b4383bb68a2d2/Dockerfile.base) -- [`base-devel`, `base-devel-20230723.0.166908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/56bb99f5ad26f03ab6ea2984f83b4383bb68a2d2/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230910.0.177821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8927543be41468cddf77a2fd4148bcdc5cf22e97/Dockerfile.base) +- [`base-devel`, `base-devel-20230910.0.177821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8927543be41468cddf77a2fd4148bcdc5cf22e97/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index bcb0801a5fce..513498dcbcc6 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/19a5a350b1f3651a50a4ce34619faa48d3b7091c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ad57d95c60d48299c689dfe4aed4af2a96fed475/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index d65c0d26455f..39f41e8803a6 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.2`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/788969ef9e877128f07092edf61ee7ac75ac4550/Dockerfile) +- [`5.4.3`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/8db87d40d801d2705853f4e567d651239695ed64/Dockerfile) - [`5.3.6`, `5.3`](https://github.com/crate/docker-crate/blob/f430bdf6653a10ae5ab6b09f3b3f46408bed73be/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 0d66df0887a5..d10740636319 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.0-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.0`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b9c9995102db37bed6996348206189868b659ee3/stable/bullseye/Dockerfile) -- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b9c9995102db37bed6996348206189868b659ee3/beta/bullseye/Dockerfile) +- [`3.1.1-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.1`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e9925b549bd97ee170a5eecbf43d3db9a0965326/stable/bullseye/Dockerfile) +- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e9925b549bd97ee170a5eecbf43d3db9a0965326/beta/bullseye/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 2e75fcd97e3b..e63b76e89339 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev4`, `2.9-dev`, `2.9-dev4-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/Dockerfile) -- [`2.9-dev4-alpine`, `2.9-dev-alpine`, `2.9-dev4-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e29365c13e500cc30a45a4e900780c484af5cf62/2.9/alpine/Dockerfile) +- [`2.9-dev5`, `2.9-dev`, `2.9-dev5-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/cc956543804219f5585e0d533bf840b93f5ddcf1/2.9/Dockerfile) +- [`2.9-dev5-alpine`, `2.9-dev-alpine`, `2.9-dev5-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/cc956543804219f5585e0d533bf840b93f5ddcf1/2.9/alpine/Dockerfile) - [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) - [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 11efd2b490d3..2e0b4349e217 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25`, `1.25.3`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.25/Dockerfile) -- [`1.25-alpine`, `1.25.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.25/alpine/Dockerfile) -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e878de42ef3b4fde20a50b8137385507d5e60073/telegraf/1.27/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) From 4e2d80ed37b9765ad9685b38ab773f4f1e406219 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Sep 2023 14:20:26 -0700 Subject: [PATCH 0578/2686] Run update.sh --- jruby/README.md | 24 ++++++++++++------------ node/README.md | 8 -------- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 0f8a99dcabf5..b7db25956782 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.2-jre17`, `9.4.2.0-jre17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.4/jre17/Dockerfile) -- [`9.3`, `9.3.10`, `9.3-jre`, `9.3-jre8`, `9.3.10-jre`, `9.3.10-jre8`, `9.3.10.0`, `9.3.10.0-jre`, `9.3.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.10-jdk`, `9.3.10-jdk8`, `9.3.10.0-jdk`, `9.3.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.10-jre11`, `9.3.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.10-jdk11`, `9.3.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.10-jdk17`, `9.3.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.10-jre17`, `9.3.10.0-jre17`](https://github.com/jruby/docker-jruby/blob/949676b2224a3c641c8b1cbc5e7cf3a6ef14a3b1/9.3/jre17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.2-jre17`, `9.4.2.0-jre17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre17/Dockerfile) +- [`9.3`, `9.3.11`, `9.3-jre`, `9.3-jre8`, `9.3.11-jre`, `9.3.11-jre8`, `9.3.11.0`, `9.3.11.0-jre`, `9.3.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.11-jdk`, `9.3.11-jdk8`, `9.3.11.0-jdk`, `9.3.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.11-jre11`, `9.3.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.11-jdk11`, `9.3.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.11-jdk17`, `9.3.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.11-jre17`, `9.3.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre17/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 8df87ce1070c..3ef5753d1754 100644 --- a/node/README.md +++ b/node/README.md @@ -40,14 +40,6 @@ WARNING: - [`18-bullseye-slim`, `18.17-bullseye-slim`, `18.17.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.17-buster`, `18.17.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster/Dockerfile) - [`18-buster-slim`, `18.17-buster-slim`, `18.17.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster-slim/Dockerfile) -- [`16-alpine3.17`, `16.20-alpine3.17`, `16.20.2-alpine3.17`, `gallium-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/alpine3.17/Dockerfile) -- [`16-alpine`, `16-alpine3.18`, `16.20-alpine`, `16.20-alpine3.18`, `16.20.2-alpine`, `16.20.2-alpine3.18`, `gallium-alpine`, `gallium-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/alpine3.18/Dockerfile) -- [`16-bookworm`, `16.20-bookworm`, `16.20.2-bookworm`, `gallium-bookworm`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bookworm/Dockerfile) -- [`16-bookworm-slim`, `16.20-bookworm-slim`, `16.20.2-bookworm-slim`, `gallium-bookworm-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bookworm-slim/Dockerfile) -- [`16-bullseye`, `16.20-bullseye`, `16.20.2-bullseye`, `gallium-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bullseye/Dockerfile) -- [`16-bullseye-slim`, `16.20-bullseye-slim`, `16.20.2-bullseye-slim`, `gallium-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/bullseye-slim/Dockerfile) -- [`16`, `16-buster`, `16.20`, `16.20-buster`, `16.20.2`, `16.20.2-buster`, `gallium`, `gallium-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/buster/Dockerfile) -- [`16-buster-slim`, `16-slim`, `16.20-buster-slim`, `16.20-slim`, `16.20.2-buster-slim`, `16.20.2-slim`, `gallium-buster-slim`, `gallium-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/16/buster-slim/Dockerfile) # Quick reference (cont.) From feef0fb6650180986ff52834648f933fdd2e0b11 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Sep 2023 18:17:58 -0700 Subject: [PATCH 0579/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 68591723c475..15aae2027211 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,10 +32,10 @@ WARNING: - [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1a91aecbf477ff0609f9478ea559921569647414/3.12/alpine/Dockerfile) - [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.22`, `3.11`](https://github.com/docker-library/rabbitmq/blob/24bfe1c0303506838e7b9c6d50ac42c1655c6473/3.11/ubuntu/Dockerfile) -- [`3.11.22-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.22-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/24bfe1c0303506838e7b9c6d50ac42c1655c6473/3.11/alpine/Dockerfile) -- [`3.11.22-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/efa6ca4d8cebbe4f3d7211449ead58c49e8d7257/3.11/ubuntu/Dockerfile) +- [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/efa6ca4d8cebbe4f3d7211449ead58c49e8d7257/3.11/alpine/Dockerfile) +- [`3.11.23-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/alpine/Dockerfile) From 234a7d1ed1b5994b93d46a5e6738ab577db62ef7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Sep 2023 12:18:17 -0700 Subject: [PATCH 0580/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 2e0b4349e217..13377c1e6fe5 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6fcfc6714ce4d840595e8dbc4d343738a16665a2/telegraf/1.28/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) From 673602b2d231e9e3fa66b15855a98132a6161b2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Sep 2023 17:09:27 -0700 Subject: [PATCH 0581/2686] Run update.sh --- bash/README.md | 2 +- jetty/README.md | 94 ++++++++++++++++++++++++------------------------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/bash/README.md b/bash/README.md index 2c64c2771c87..0e2e221e2417 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230828`, `devel`, `devel-20230828-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/92c99ce0aacd3c9a766d61b5b4eff27731713921/devel/Dockerfile) +- [`devel-20230911`, `devel`, `devel-20230911-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/c44a261df9640fbdc0596d9e6563c3d5b6d18822/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/jetty/README.md b/jetty/README.md index 07b8d6ff7f31..db94882a4152 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.51-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.51-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.51-jre8`, `9.4-jre8`, `9-jre8`, `9.4.51-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.51-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.51-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.51-jre17`, `9.4-jre17`, `9-jre17`, `9.4.51-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.51-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.51-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.51-jre11`, `9.4-jre11`, `9-jre11`, `9.4.51-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.51-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.51-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.51-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51`, `9.4`, `9`, `9.4.51-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.51-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.51-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.51-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.51-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.0-jre17-alpine`, `12.0-jre17-alpine`, `12.0.0-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.0-jre17`, `12.0-jre17`, `12.0.0-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.0-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.0-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.0`, `12.0`, `12.0.0-jdk17`, `12.0-jdk17`, `12.0.0-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.0-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.15-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.15-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.15-jre17`, `11.0-jre17`, `11-jre17`, `11.0.15-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.15-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.15-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.15-jre11`, `11.0-jre11`, `11-jre11`, `11.0.15-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.15-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.15-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15`, `11.0`, `11`, `11.0.15-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.15-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.15-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.15-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.15-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.15-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.15-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.15-jre17`, `10.0-jre17`, `10-jre17`, `10.0.15-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.15-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.15-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.15-jre11`, `10.0-jre11`, `10-jre11`, `10.0.15-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.15-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.15-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15`, `10.0`, `10`, `10.0.15-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.15-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.15-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.15-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.15-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.51-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.51-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.51-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.51-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.51-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.51-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.51-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.0-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.0-amazoncorretto`, `12.0-amazoncorretto`, `12.0.0-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.15-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.15-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.15-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.15-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.15-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.15-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.15-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.15-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.15-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.15-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/03c0b9d1d494f6f8b39f1e2046e680f2d3dd2604/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.52-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.52-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.52-jre8`, `9.4-jre8`, `9-jre8`, `9.4.52-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.52-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.52-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.52-jre17`, `9.4-jre17`, `9-jre17`, `9.4.52-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.52-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.52-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.52-jre11`, `9.4-jre11`, `9-jre11`, `9.4.52-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.52-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.52-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.52-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.52-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.52`, `9.4`, `9`, `9.4.52-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.52-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.52-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.52-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.52-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.52-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.52-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`12.0.1-jre17-alpine`, `12.0-jre17-alpine`, `12.0.1-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.1-jre17`, `12.0-jre17`, `12.0.1-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.1-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.1-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.1`, `12.0`, `12.0.1-jdk17`, `12.0-jdk17`, `12.0.1-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.1-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.16-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.16-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.16-jre17`, `11.0-jre17`, `11-jre17`, `11.0.16-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.16-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.16-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.16-jre11`, `11.0-jre11`, `11-jre11`, `11.0.16-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.16-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.16-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.16`, `11.0`, `11`, `11.0.16-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.16-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.16-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.16-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.16-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.16-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.16-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.16-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.16-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.16-jre17`, `10.0-jre17`, `10-jre17`, `10.0.16-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.16-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.16-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.16-jre11`, `10.0-jre11`, `10-jre11`, `10.0.16-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.16-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.16-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.16`, `10.0`, `10`, `10.0.16-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.16-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.16-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.16-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.16-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.16-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.16-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.52-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.52-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.52-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.52-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.52-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.52-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.52-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk11/Dockerfile) +- [`12.0.1-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.1-amazoncorretto`, `12.0-amazoncorretto`, `12.0.1-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.16-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.16-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.16-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.16-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.16-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.16-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.16-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.16-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.16-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.16-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) From aec6544ccb19d2ebb380572717b194a26a28c54b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Sep 2023 15:18:01 -0700 Subject: [PATCH 0582/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index d10740636319..08f12cf7ed88 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.1-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.1`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e9925b549bd97ee170a5eecbf43d3db9a0965326/stable/bullseye/Dockerfile) -- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e9925b549bd97ee170a5eecbf43d3db9a0965326/beta/bullseye/Dockerfile) +- [`3.1.2-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.2`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2bb690993961c56922cd2827419d5285cd7e96d6/stable/bullseye/Dockerfile) +- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2bb690993961c56922cd2827419d5285cd7e96d6/beta/bullseye/Dockerfile) # Quick reference (cont.) From d43184343c1ea0400e480f85e90056c16eac2ef0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Sep 2023 17:09:40 -0700 Subject: [PATCH 0583/2686] Run update.sh --- mongo/README.md | 90 +++++++++++++++++-------------------------------- 1 file changed, 30 insertions(+), 60 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index b61cd4f712d9..c96f9d654a96 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,26 +33,16 @@ WARNING: - [`7.0.1-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.1-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.1-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.10-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/Dockerfile) -- [`6.0.10-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.10-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.10-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.10-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.9-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) -- [`6.0.9-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.9-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.9-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.9-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.21-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/Dockerfile) -- [`5.0.21-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.21-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.21-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.21-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.20-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) -- [`5.0.20-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.20-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.20-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.20-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.10-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) +- [`6.0.10-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.10-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.10-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.10-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.21-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) +- [`5.0.21-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.21-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.21-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.21-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) - [`4.4.24-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) - [`4.4.24-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.24-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) @@ -71,46 +61,26 @@ WARNING: - `7.0.1-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.10-rc0`, `6.0-rc`: - - [`6.0.10-rc0-jammy`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/Dockerfile) - - [`6.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.10-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.10-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3f143e9ebed5f3a43305175f91168f583c3cadbe/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.9`, `6.0`, `6`: - - [`6.0.9-jammy`](https://github.com/docker-library/mongo/blob/b472aad3e13cb1ded8cf55fd504df83a80a51612/6.0/Dockerfile) - - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.9-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f7138d353475a9b776a7b0e572dc24dc4c7b7065/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.21-rc0`, `5.0-rc`: - - [`5.0.21-rc0-focal`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/Dockerfile) - - [`5.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.21-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.21-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/959b0a109d63ee9784621e21e4fdf075f972bd99/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.20`, `5.0`, `5`: - - [`5.0.20-focal`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/Dockerfile) - - [`5.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.20-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.20-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8ea57e9603c08043bf9d26d52567fead3eacb91/5.0/windows/nanoserver-1809/Dockerfile) +- `6.0.10`, `6.0`, `6`: + - [`6.0.10-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) + - [`6.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.10-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.10-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.10-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.21`, `5.0`, `5`: + - [`5.0.21-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) + - [`5.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.21-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.21-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.24`, `4.4`, `4`: - [`4.4.24-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) - [`4.4.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) From c01e1d2b5dcd975c57f22dfcdcbac0c35c4bd94c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Sep 2023 12:09:44 -0700 Subject: [PATCH 0584/2686] Run update.sh --- fedora/README.md | 7 ++++--- rocket.chat/README.md | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 670a0cb5b685..93572181f061 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,9 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b508219c490d4379d3f3978961f630c2ac838917/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/6c75c452982317bf623c9633012b05aea9f696b6/x86_64/Dockerfile) -- [`39`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/53686b061625775f6369f329a40d8412711bafd1/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f2d71db92e97f56972aff21875ac78e1f5ad6f1e/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7342d0458445013ae9ba5fee6632706edea63c59/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/28f503cba9e6e3c8e6affd2685a92a376e4c544a/x86_64/Dockerfile) +- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f72d0840d156283181949a6fdf07155d0de6608b/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index b166f0d3a828..c5886439dac8 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.1`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.3/Dockerfile) +- [`6.3.5`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/42a6ffd7ceb1064ab4baf38e5733d41faab0519d/6.3/Dockerfile) - [`6.2.12`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.2/Dockerfile) - [`5.4.10`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/5.4/Dockerfile) From 4d786200213c8ea5ec5839f6753402b57fd5e6c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Sep 2023 13:09:43 -0700 Subject: [PATCH 0585/2686] Run update.sh --- haxe/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index e829ab68b2f8..77cde4be3843 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`4.3.1-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/bullseye/Dockerfile) -- [`4.3.1-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/buster/Dockerfile) -- [`4.3.1-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.1-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.1-alpine3.18`, `4.3-alpine3.18`, `4.3.1-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.3/alpine3.18/Dockerfile) -- [`4.3.1-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.17/Dockerfile) -- [`4.3.1-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.16/Dockerfile) -- [`4.3.1-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/alpine3.15/Dockerfile) +- [`4.3.2-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/bullseye/Dockerfile) +- [`4.3.2-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/buster/Dockerfile) +- [`4.3.2-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.2-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.2-alpine3.18`, `4.3-alpine3.18`, `4.3.2-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.18/Dockerfile) +- [`4.3.2-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.17/Dockerfile) +- [`4.3.2-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.16/Dockerfile) +- [`4.3.2-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.15/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) @@ -74,13 +74,13 @@ WARNING: ## Shared Tags -- `4.3.1`, `4.3`, `latest`: - - [`4.3.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.3/bullseye/Dockerfile) - - [`4.3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) -- `4.3.1-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1a4e5d4fbf207a4ed5a10db34e31826f4fc46c82/4.3/windowsservercore-1809/Dockerfile) +- `4.3.2`, `4.3`, `latest`: + - [`4.3.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/bullseye/Dockerfile) + - [`4.3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) +- `4.3.2-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) From a5004f1fd5b62f1bbc3c491aaea161128adc20d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Sep 2023 14:09:48 -0700 Subject: [PATCH 0586/2686] Run update.sh --- groovy/README.md | 10 +++++----- neo4j/README.md | 8 ++++---- spark/README.md | 10 +++++++--- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index 9b000dd90d28..c39243471430 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.14-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.14-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk8/Dockerfile) -- [`4.0.14-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.14-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk11/Dockerfile) -- [`4.0.14-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk11-alpine/Dockerfile) -- [`4.0.14-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.14-jdk`, `4.0-jdk`, `4.0.14`, `4.0`, `4`, `jdk`, `latest`, `4.0.14-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.14-jdk-jammy`, `4.0-jdk-jammy`, `4.0.14-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk17/Dockerfile) -- [`4.0.14-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.14-jdk-alpine`, `4.0-jdk-alpine`, `4.0.14-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/a5ed06e456ebfb0deafe55fd2067b593e0850878/jdk17-alpine/Dockerfile) +- [`4.0.15-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.15-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk8/Dockerfile) +- [`4.0.15-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.15-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk11/Dockerfile) +- [`4.0.15-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk11-alpine/Dockerfile) +- [`4.0.15-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.15-jdk`, `4.0-jdk`, `4.0.15`, `4.0`, `4`, `jdk`, `latest`, `4.0.15-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.15-jdk-jammy`, `4.0-jdk-jammy`, `4.0.15-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk17/Dockerfile) +- [`4.0.15-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.15-jdk-alpine`, `4.0-jdk-alpine`, `4.0.15-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 820da0efcefe..ad3c80b3176e 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.11.0-community-bullseye`, `5.11-community-bullseye`, `5-community-bullseye`, `5.11.0-community`, `5.11-community`, `5-community`, `5.11.0-bullseye`, `5.11-bullseye`, `5-bullseye`, `5.11.0`, `5.11`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/bullseye/community/Dockerfile) -- [`5.11.0-enterprise-bullseye`, `5.11-enterprise-bullseye`, `5-enterprise-bullseye`, `5.11.0-enterprise`, `5.11-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/bullseye/enterprise/Dockerfile) -- [`5.11.0-community-ubi8`, `5.11-community-ubi8`, `5-community-ubi8`, `5.11.0-ubi8`, `5.11-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/community/Dockerfile) -- [`5.11.0-enterprise-ubi8`, `5.11-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/8f65800e6dae9738baeef972c4726d93c02a3e19/5.11.0/ubi8/enterprise/Dockerfile) +- [`5.12.0-community-bullseye`, `5.12-community-bullseye`, `5-community-bullseye`, `5.12.0-community`, `5.12-community`, `5-community`, `5.12.0-bullseye`, `5.12-bullseye`, `5-bullseye`, `5.12.0`, `5.12`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/bullseye/community/Dockerfile) +- [`5.12.0-enterprise-bullseye`, `5.12-enterprise-bullseye`, `5-enterprise-bullseye`, `5.12.0-enterprise`, `5.12-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/bullseye/enterprise/Dockerfile) +- [`5.12.0-community-ubi8`, `5.12-community-ubi8`, `5-community-ubi8`, `5.12.0-ubi8`, `5.12-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/community/Dockerfile) +- [`5.12.0-enterprise-ubi8`, `5.12-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/enterprise/Dockerfile) - [`4.4.25`, `4.4.25-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/community/Dockerfile) - [`4.4.25-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/enterprise/Dockerfile) diff --git a/spark/README.md b/spark/README.md index 591393c6b626..af8e79bc7873 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,9 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `python3`, `3.4.1`, `latest`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`, `r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-ubuntu`, `3.4.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`, `r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`, `scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `3.4.1`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.4.1-scala2.12-java11-ubuntu`, `3.4.1-scala`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-ubuntu/Dockerfile) - [`3.4.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) From b5738c5e5450bf4a2711c5559f8b09316f0afe1f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Sep 2023 15:24:36 -0700 Subject: [PATCH 0587/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ ruby/README.md | 12 ++++++------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 93c5c082c532..6e71c43f6d44 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-14-jdk-oraclelinux8`, `22-ea-14-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-14-jdk-oracle`, `22-ea-14-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-14-jdk-oraclelinux7`, `22-ea-14-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-14-jdk-bookworm`, `22-ea-14-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/bookworm/Dockerfile) -- [`22-ea-14-jdk-slim-bookworm`, `22-ea-14-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-14-jdk-slim`, `22-ea-14-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-14-jdk-bullseye`, `22-ea-14-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/bullseye/Dockerfile) -- [`22-ea-14-jdk-slim-bullseye`, `22-ea-14-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-14-jdk-windowsservercore-ltsc2022`, `22-ea-14-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-14-jdk-windowsservercore-1809`, `22-ea-14-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-14-jdk-nanoserver-1809`, `22-ea-14-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-15-jdk-oraclelinux8`, `22-ea-15-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-15-jdk-oracle`, `22-ea-15-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-15-jdk-oraclelinux7`, `22-ea-15-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-15-jdk-bookworm`, `22-ea-15-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/bookworm/Dockerfile) +- [`22-ea-15-jdk-slim-bookworm`, `22-ea-15-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-15-jdk-slim`, `22-ea-15-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-15-jdk-bullseye`, `22-ea-15-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/bullseye/Dockerfile) +- [`22-ea-15-jdk-slim-bullseye`, `22-ea-15-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-15-jdk-windowsservercore-ltsc2022`, `22-ea-15-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-15-jdk-windowsservercore-1809`, `22-ea-15-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-15-jdk-nanoserver-1809`, `22-ea-15-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/nanoserver-1809/Dockerfile) - [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) - [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `22-ea-14-jdk`, `22-ea-14`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-14-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-14-jdk-windowsservercore`, `22-ea-14-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-14-jdk-nanoserver`, `22-ea-14-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f84b156e86a330d5000fe11f1813dd72fd00920b/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-15-jdk`, `22-ea-15`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-15-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-15-jdk-windowsservercore`, `22-ea-15-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-15-jdk-nanoserver`, `22-ea-15-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/nanoserver-1809/Dockerfile) - `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 24f2580c952b..61ef7b3f3701 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-preview1-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/bookworm/Dockerfile) -- [`3.3.0-preview1-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/slim-bookworm/Dockerfile) -- [`3.3.0-preview1-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-preview1-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-preview1-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview1-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.18/Dockerfile) -- [`3.3.0-preview1-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.3-rc/alpine3.17/Dockerfile) +- [`3.3.0-preview2-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview2`, `3.3-rc`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/bookworm/Dockerfile) +- [`3.3.0-preview2-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview2-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/slim-bookworm/Dockerfile) +- [`3.3.0-preview2-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-preview2-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/slim-bullseye/Dockerfile) +- [`3.3.0-preview2-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview2-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/alpine3.18/Dockerfile) +- [`3.3.0-preview2-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/alpine3.17/Dockerfile) - [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bookworm/Dockerfile) - [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bookworm/Dockerfile) - [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bullseye/Dockerfile) From 6957631cd16ea81bff3bf12a984e030f4d164d93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Sep 2023 18:12:05 -0700 Subject: [PATCH 0588/2686] Run update.sh --- couchbase/README.md | 4 ++-- nextcloud/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index b1ea6b463c1c..d6b203f72830 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.0`, `enterprise-7.2.0`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/enterprise/couchbase-server/7.2.0/Dockerfile) -- [`community-7.2.0`, `community`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/community/couchbase-server/7.2.0/Dockerfile) +- [`7.2.1`, `enterprise-7.2.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/7b023e33d2961ef352c33f3772ca50dfcc797165/enterprise/couchbase-server/7.2.1/Dockerfile) +- [`community-7.2.1`, `community`](https://github.com/couchbase/docker/blob/7b023e33d2961ef352c33f3772ca50dfcc797165/community/couchbase-server/7.2.1/Dockerfile) - [`7.1.5`, `enterprise-7.1.5`](https://github.com/couchbase/docker/blob/1ce6c78f29c9be97c67c2588b1ceaa57ad1b49c6/enterprise/couchbase-server/7.1.5/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 234dc2eab18b..504a79743103 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.10-apache`, `25.0-apache`, `25-apache`, `25.0.10`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/apache/Dockerfile) -- [`25.0.10-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/fpm/Dockerfile) -- [`25.0.10-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/25/fpm-alpine/Dockerfile) -- [`26.0.5-apache`, `26.0-apache`, `26-apache`, `stable-apache`, `production-apache`, `26.0.5`, `26.0`, `26`, `stable`, `production`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/apache/Dockerfile) -- [`26.0.5-fpm`, `26.0-fpm`, `26-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/fpm/Dockerfile) -- [`26.0.5-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/26/fpm-alpine/Dockerfile) -- [`27.0.2-apache`, `27.0-apache`, `27-apache`, `apache`, `27.0.2`, `27.0`, `27`, `latest`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/apache/Dockerfile) -- [`27.0.2-fpm`, `27.0-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/fpm/Dockerfile) -- [`27.0.2-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/09fecda4067434c11f955cdd3000ed950fe48d04/27/fpm-alpine/Dockerfile) +- [`25.0.11-apache`, `25.0-apache`, `25-apache`, `25.0.11`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/apache/Dockerfile) +- [`25.0.11-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm/Dockerfile) +- [`25.0.11-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm-alpine/Dockerfile) +- [`26.0.6-apache`, `26.0-apache`, `26-apache`, `26.0.6`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/apache/Dockerfile) +- [`26.0.6-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm/Dockerfile) +- [`26.0.6-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm-alpine/Dockerfile) +- [`27.0.2-apache`, `27.0-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.0.2`, `27.0`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/apache/Dockerfile) +- [`27.0.2-fpm`, `27.0-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/fpm/Dockerfile) +- [`27.0.2-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 644ce2c2f876bebf48ef93494ffba071d36b2d27 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Sep 2023 13:53:18 -0700 Subject: [PATCH 0589/2686] Run update.sh --- composer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/README.md b/composer/README.md index b0c1256c8d34..4e8b86e35d5a 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.2`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/f7443a9a35a45d870d6d3e01ea2111276a1c983a/2.6/Dockerfile) +- [`2.6.3`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/0ece2f4215a75bb83564adf041ed732c9cd55a78/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) From 3c16e6396797a26271b8a9a83d14dc5c9e383119 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Sep 2023 16:28:09 -0700 Subject: [PATCH 0590/2686] Run update.sh --- golang/README.md | 18 ------------------ php/README.md | 42 ++++++++++++++++++++++++++++-------------- postgres/README.md | 16 ++++++++-------- ubuntu/README.md | 2 +- 4 files changed, 37 insertions(+), 41 deletions(-) diff --git a/golang/README.md b/golang/README.md index 94c421a74080..17d58208c3de 100644 --- a/golang/README.md +++ b/golang/README.md @@ -44,14 +44,6 @@ WARNING: - [`1.20.8-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.8-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.8-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) -- [`1.19.13-bookworm`, `1.19-bookworm`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bookworm/Dockerfile) -- [`1.19.13-bullseye`, `1.19-bullseye`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bullseye/Dockerfile) -- [`1.19.13-alpine3.18`, `1.19-alpine3.18`, `1.19.13-alpine`, `1.19-alpine`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/alpine3.18/Dockerfile) -- [`1.19.13-alpine3.17`, `1.19-alpine3.17`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/alpine3.17/Dockerfile) -- [`1.19.13-windowsservercore-ltsc2022`, `1.19-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.19.13-windowsservercore-1809`, `1.19-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) -- [`1.19.13-nanoserver-ltsc2022`, `1.19-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.19.13-nanoserver-1809`, `1.19-nanoserver-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -75,16 +67,6 @@ WARNING: - `1.20.8-nanoserver`, `1.20-nanoserver`: - [`1.20.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - [`1.20.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) -- `1.19.13`, `1.19`: - - [`1.19.13-bookworm`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/bookworm/Dockerfile) - - [`1.19.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.13-windowsservercore`, `1.19-windowsservercore`: - - [`1.19.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.19.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/windowsservercore-1809/Dockerfile) -- `1.19.13-nanoserver`, `1.19-nanoserver`: - - [`1.19.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.19.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/008fdbf24874ecc64d3bb6068bd3e86fca0801a7/1.19/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 3fa1266e5d35..0ed270698832 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC1-bookworm`, `8.3-rc-bookworm`, `8.3.0RC1-cli`, `8.3-rc-cli`, `8.3.0RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC1-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC1-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC1-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC1-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC1-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/c40b9173ca6042f02e5a0f6a8ada57b1dd5f0f18/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0RC2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC2-bookworm`, `8.3-rc-bookworm`, `8.3.0RC2-cli`, `8.3-rc-cli`, `8.3.0RC2`, `8.3-rc`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.11RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.11RC1-bookworm`, `8.2-rc-bookworm`, `8.2.11RC1-cli`, `8.2-rc-cli`, `8.2.11RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.11RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.11RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.11RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.11RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.11RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.11RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.11RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.11RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.11RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.11RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.11RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.11RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.11RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.11RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.11RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.11RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.11RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.11RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.11RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.11RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.11RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.11RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.11RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.10-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.10-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.10-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.10`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/cli/Dockerfile) - [`8.2.10-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.10-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/apache/Dockerfile) - [`8.2.10-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.10-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/fpm/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 63c68bd72abe..535fdd1c79a7 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16rc1`, `16rc1-bookworm`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/bookworm/Dockerfile) -- [`16rc1-bullseye`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/bullseye/Dockerfile) -- [`16rc1-alpine3.18`, `16rc1-alpine`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/alpine3.18/Dockerfile) -- [`16rc1-alpine3.17`](https://github.com/docker-library/postgres/blob/2f0ed0c7e8f8b05b294740f150397eec0af8dc50/16/alpine3.17/Dockerfile) -- [`15.4`, `15`, `latest`, `15.4-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bookworm/Dockerfile) -- [`15.4-bullseye`, `15-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/bullseye/Dockerfile) -- [`15.4-alpine3.18`, `15-alpine3.18`, `alpine3.18`, `15.4-alpine`, `15-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.18/Dockerfile) -- [`15.4-alpine3.17`, `15-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.17/Dockerfile) +- [`16.0`, `16`, `latest`, `16.0-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bookworm/Dockerfile) +- [`16.0-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bullseye/Dockerfile) +- [`16.0-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.0-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/alpine3.18/Dockerfile) +- [`16.0-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/alpine3.17/Dockerfile) +- [`15.4`, `15`, `15.4-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bookworm/Dockerfile) +- [`15.4-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bullseye/Dockerfile) +- [`15.4-alpine3.18`, `15-alpine3.18`, `15.4-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.18/Dockerfile) +- [`15.4-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.17/Dockerfile) - [`14.9`, `14`, `14.9-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bookworm/Dockerfile) - [`14.9-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bullseye/Dockerfile) - [`14.9-alpine3.18`, `14-alpine3.18`, `14.9-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/alpine3.18/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index e46b92216d27..c5641a957b71 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -27,7 +27,7 @@ WARNING: - [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) - [`22.04`, `jammy-20230816`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230816-8ac0ec73&id=8ac0ec73cdc2b2b4492e6b7dc7e356ff5d2a3813) - [`23.04`, `lunar-20230816`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230816-f4657ddd&id=f4657ddd1be6fe5fa44da9797c1efb650d2087c1) -- [`23.10`, `mantic-20230819`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230819-7d8482dd&id=7d8482dd3949a749f36adb562598aebf9c533fe8) +- [`23.10`, `mantic-20230912`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230912-eccf1d82&id=eccf1d8281f83191597f8c600b87544e01f01ff6) # Quick reference (cont.) From fb9f78d9ce3ebe1125c53266d0207c2a325e40d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Sep 2023 18:09:16 -0700 Subject: [PATCH 0591/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 80f803f18a62..4a47fa0905d9 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91702b08932abe12cc2b31d41e2dc57070226a74/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7-slim-fips/Dockerfile) # Quick reference (cont.) From d2df4f3df63393903070d64252fabe3ed4a5b912 Mon Sep 17 00:00:00 2001 From: jbleduigou Date: Sat, 16 Sep 2023 17:46:24 +0200 Subject: [PATCH 0592/2686] =?UTF-8?q?chore:=20=E2=AC=86=20update=20to=20Go?= =?UTF-8?q?=201.21?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index 2ac62e742807..5cf342d28bad 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.20 +FROM %%IMAGE%%:1.21 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.20 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.21 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.20 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From 030eaddf4327248701d53bd3369565d12a0f064d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Sep 2023 11:09:13 -0700 Subject: [PATCH 0593/2686] Run update.sh --- golang/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/README.md b/golang/README.md index 17d58208c3de..f3d2a26d5ada 100644 --- a/golang/README.md +++ b/golang/README.md @@ -104,7 +104,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.20 +FROM golang:1.21 WORKDIR /usr/src/app @@ -130,13 +130,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 make ``` ## Cross-compile your app inside the Docker container @@ -144,13 +144,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.20 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.21 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.20 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From e8206c5f86ad7c6808df802e2da21b2e4b8dd069 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Sep 2023 12:18:46 -0700 Subject: [PATCH 0594/2686] Run update.sh --- clearlinux/README.md | 2 +- photon/README.md | 6 +++--- teamspeak/README.md | 2 +- varnish/README.md | 8 ++++---- xwiki/README.md | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 513498dcbcc6..07ce402bc994 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ad57d95c60d48299c689dfe4aed4af2a96fed475/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/16638d1f7ac12f6271544ab07c58973609bd002a/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 1859c8d2a0e0..2b6208e89cc1 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230909`, `latest`](https://github.com/vmware/photon-docker-image/blob/995709c40d1b3545e40081675529258c673f93fc/docker/Dockerfile) -- [`4.0`, `4.0-20230909`](https://github.com/vmware/photon-docker-image/blob/7f26647a346fc99eda2c084958c865d560a5f3b6/docker/Dockerfile) -- [`3.0`, `3.0-20230902`](https://github.com/vmware/photon-docker-image/blob/d336ea566b6ec53ff5790cc035561b2ea46613dc/docker/Dockerfile) +- [`5.0`, `5.0-20230916`, `latest`](https://github.com/vmware/photon-docker-image/blob/c50d4ba520acfe440b4a1ea69b6eca313ea22e71/docker/Dockerfile) +- [`4.0`, `4.0-20230916`](https://github.com/vmware/photon-docker-image/blob/60a27c92f26c7b9285c3eed17bcb93c97cbd3129/docker/Dockerfile) +- [`3.0`, `3.0-20230916`](https://github.com/vmware/photon-docker-image/blob/935f7418c1588b677c9fb1a5b4e35677812e6972/docker/Dockerfile) # Quick reference (cont.) diff --git a/teamspeak/README.md b/teamspeak/README.md index b7142b5630a6..4e8cb268ef31 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13`, `3.13.7`, `latest`](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/blob/e1cd2cd1de40103c20adfe40079f2b6282215e72/alpine/Dockerfile) +- [`3.13`, `3.13.7`, `latest`](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/blob/f5f1e7f6142e8eeebb8d46d7b493b5d3ec01d599/alpine/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 506c94e837e3..937eed2ccbc6 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.3.0`, `7.3`, `latest`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.3.0-alpine`, `7.3-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/fresh/alpine/Dockerfile) -- [`old`, `7.2.1`, `7.2`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/old/debian/Dockerfile) -- [`old-alpine`, `7.2.1-alpine`, `7.2-alpine`](https://github.com/varnish/docker-varnish/blob/55b410af3b8c5f596fe896fef8e0e11950a1be3b/old/alpine/Dockerfile) +- [`fresh`, `7.4.0`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.4.0-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/fresh/alpine/Dockerfile) +- [`old`, `7.3.0`, `7.3`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/old/debian/Dockerfile) +- [`old-alpine`, `7.3.0-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/old/alpine/Dockerfile) - [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/f3be41ac5e4224615e1437334ffc16418e3e89f3/stable/debian/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 78f901e9e44c..798849bbd751 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.7`, `15.7.0`, `15-mysql-tomcat`, `15.7-mysql-tomcat`, `15.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.7-postgres-tomcat`, `15.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.7-mariadb-tomcat`, `15.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.16`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.16-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.16-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.16-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3c498cd64cc318487fc11a34eee0e224f6f0347d/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.17`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.17-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.17-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.17-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.2`, `15.5-mysql-tomcat`, `15.5.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mariadb-tomcat/Dockerfile) From 26cf06e3b0136c1be3eb91953607bf2f2c7878c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Sep 2023 15:17:35 -0700 Subject: [PATCH 0595/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 4a47fa0905d9..16c021e953db 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/db0a252eb2321be71848abcceb92fa31be918332/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7-slim-fips/Dockerfile) # Quick reference (cont.) From c001af6062e81c4dd8f96aa70dd0d2f298eb2fbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Sep 2023 17:09:18 -0700 Subject: [PATCH 0596/2686] Run update.sh --- eclipse-mosquitto/README.md | 6 +++--- nextcloud/README.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index e81f6fab25e1..42a8fbed2658 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.17`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/2.0/Dockerfile) -- [`2.0.17-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/f762a3fd1ced66b6cd32d8dc137f0523708dac1f/docker/1.6-openssl/Dockerfile) +- [`2.0.18`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0/Dockerfile) +- [`2.0.18-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 504a79743103..094b72fd17f0 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.11-apache`, `25.0-apache`, `25-apache`, `25.0.11`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/apache/Dockerfile) +- [`25.0.11-apache`, `25.0-apache`, `25-apache`, `25.0.11`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/25/apache/Dockerfile) - [`25.0.11-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm/Dockerfile) - [`25.0.11-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm-alpine/Dockerfile) -- [`26.0.6-apache`, `26.0-apache`, `26-apache`, `26.0.6`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/apache/Dockerfile) +- [`26.0.6-apache`, `26.0-apache`, `26-apache`, `26.0.6`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/26/apache/Dockerfile) - [`26.0.6-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm/Dockerfile) - [`26.0.6-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm-alpine/Dockerfile) -- [`27.0.2-apache`, `27.0-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.0.2`, `27.0`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/apache/Dockerfile) -- [`27.0.2-fpm`, `27.0-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/fpm/Dockerfile) -- [`27.0.2-fpm-alpine`, `27.0-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/12390fb508518f03a48909aeeb6e05f0aa30e9eb/27/fpm-alpine/Dockerfile) +- [`27.1.0-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.0`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/27/apache/Dockerfile) +- [`27.1.0-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4cd70385b89197c87e928d49c678890d71e9fb83/27/fpm/Dockerfile) +- [`27.1.0-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cd70385b89197c87e928d49c678890d71e9fb83/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 52f170fd675e047afb32654932cb8be8bef57415 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Sep 2023 17:09:19 -0700 Subject: [PATCH 0597/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- ghost/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- nats/README.md | 36 +++++++++++++++++++++---------- node/README.md | 32 +++++++++++++-------------- php/README.md | 17 +++++++++++++++ python/README.md | 30 +++++++++++++------------- rabbitmq/README.md | 20 ++++++++--------- rust/README.md | 16 +++++++------- swift/README.md | 48 +++++++++++++++++------------------------ 12 files changed, 117 insertions(+), 94 deletions(-) diff --git a/bash/README.md b/bash/README.md index 0e2e221e2417..0a78e00de65e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230911`, `devel`, `devel-20230911-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/c44a261df9640fbdc0596d9e6563c3d5b6d18822/devel/Dockerfile) +- [`devel-20230913`, `devel`, `devel-20230913-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e8d2e168e0ae7eea96f16125a2e5f44040b97b58/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 37ba0baef79b..fe205e5b59d1 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.2`](https://github.com/docker-library/elasticsearch/blob/51a1c0836b7c50e452fa036a496f97ed2d3324c3/8/Dockerfile) +- [`8.10.1`](https://github.com/docker-library/elasticsearch/blob/944e1d2cfe77764120101697a28619be7125c0a2/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/elasticsearch/blob/91b35e027265ce33d16bb0f88884f5897a11328e/7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index abbe807d389a..2864459a07f6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.62.0`, `5.62`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4b9927f15a4c469fb2d00aeeda143be8a0356f48/5/debian/Dockerfile) -- [`5.62.0-alpine`, `5.62-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4b9927f15a4c469fb2d00aeeda143be8a0356f48/5/alpine/Dockerfile) +- [`5.63.0`, `5.63`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a2a882d6f9a143755a0d86e1337c87feedfdb56c/5/debian/Dockerfile) +- [`5.63.0-alpine`, `5.63-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a2a882d6f9a143755a0d86e1337c87feedfdb56c/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 5e2d0623a12f..172690d7706c 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.2`](https://github.com/docker-library/kibana/blob/3dcda6bebb142ecbd9b9c0fd21dee8879847bd06/8/Dockerfile) +- [`8.10.1`](https://github.com/docker-library/kibana/blob/30d19cf81e0dc9f61b7026f55f34f9464c4c88c7/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/kibana/blob/e79be1ed96f3a741881bbd741c5816aa9273ac2f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 8832287d514a..f22843d9ee51 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.2`](https://github.com/docker-library/logstash/blob/7ff963996f280d51ea274c9ddbf84fa02c30ef26/8/Dockerfile) +- [`8.10.1`](https://github.com/docker-library/logstash/blob/accf9e2b33c3b000f06c1a2db869cb09e37c46b8/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/logstash/blob/a6039d10cfa0f21d86c08f473b9a18c6b94be352/7/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 349018165263..9a30ea4863de 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,20 +28,34 @@ WARNING: ## Simple Tags -- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.9.22-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/alpine3.18/Dockerfile) -- [`2.9.22-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.22-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/scratch/Dockerfile) -- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/windowsservercore-1809/Dockerfile) -- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) +- [`2.10.0-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.0-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/alpine3.18/Dockerfile) +- [`2.10.0-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.0-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) +- [`2.10.0-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.0-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/alpine3.18/Dockerfile) +- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) +- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.9.22`, `2.9`, `2`, `latest`: - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/scratch/Dockerfile) - - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) -- `2.9.22-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/windowsservercore-1809/Dockerfile) -- `2.9.22-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/876a6fdd56caf60d791ad82dd6e9e0287b2924d4/2.9.22/nanoserver-1809/Dockerfile) +- `2.10.0`, `2.10`: + - [`2.10.0-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) + - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) +- `2`, `latest`: + - [`2.10.0-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) + - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) +- `2.10.0-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.0-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.0-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) +- `2.9.22`, `2.9`: + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) +- `2.9.22-windowsservercore`, `2.9-windowsservercore`: + - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/windowsservercore-1809/Dockerfile) +- `2.9.22-nanoserver`, `2.9-nanoserver`: + - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 3ef5753d1754..c33310d3be30 100644 --- a/node/README.md +++ b/node/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.6-alpine3.17`, `20.6.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.6-alpine`, `20.6-alpine3.18`, `20.6.1-alpine`, `20.6.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.6`, `20.6-bookworm`, `20.6.1`, `20.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.6-bookworm-slim`, `20.6-slim`, `20.6.1-bookworm-slim`, `20.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.6-bullseye`, `20.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.6-bullseye-slim`, `20.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.6-buster`, `20.6.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/buster/Dockerfile) -- [`20-buster-slim`, `20.6-buster-slim`, `20.6.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/1a2a796a6fecfda1f23f24551f2937f6b61830c6/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.17-alpine3.17`, `18.17.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.17-alpine`, `18.17-alpine3.18`, `18.17.1-alpine`, `18.17.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/8c40f63ed62b2fde41903b097391b74f15f32cea/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.17`, `18.17-bookworm`, `18.17.1`, `18.17.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.17-bookworm-slim`, `18.17-slim`, `18.17.1-bookworm-slim`, `18.17.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.17-bullseye`, `18.17.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.17-bullseye-slim`, `18.17.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.17-buster`, `18.17.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster/Dockerfile) -- [`18-buster-slim`, `18.17-buster-slim`, `18.17.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/1a4f3d2d0c914b4468ba9675cedf70a2f4f0f82d/18/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.7-alpine3.17`, `20.7.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.7-alpine`, `20.7-alpine3.18`, `20.7.0-alpine`, `20.7.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.7`, `20.7-bookworm`, `20.7.0`, `20.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.7-bookworm-slim`, `20.7-slim`, `20.7.0-bookworm-slim`, `20.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.7-bullseye`, `20.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.7-bullseye-slim`, `20.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.7-buster`, `20.7.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/buster/Dockerfile) +- [`20-buster-slim`, `20.7-buster-slim`, `20.7.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.0-alpine`, `18.18.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.0`, `18.18.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.0-bookworm-slim`, `18.18.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.18-bullseye`, `18.18.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.18-buster`, `18.18.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/buster/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 0ed270698832..1629f03c460f 100644 --- a/php/README.md +++ b/php/README.md @@ -66,6 +66,23 @@ WARNING: - [`8.2.10-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.10-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/cli/Dockerfile) - [`8.2.10-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.10-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.24RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.24RC1-bookworm`, `8.1-rc-bookworm`, `8.1.24RC1-cli`, `8.1-rc-cli`, `8.1.24RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.24RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.24RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.24RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.24RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.24RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.24RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.24RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.24RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.24RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.24RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.24RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.24RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.24RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.24RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.24RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.24RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.24RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.24RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.24RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.24RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.24RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.24RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.24RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.24RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.24RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.24RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.24RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.23-cli-bookworm`, `8.1-cli-bookworm`, `8.1.23-bookworm`, `8.1-bookworm`, `8.1.23-cli`, `8.1-cli`, `8.1.23`, `8.1`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/cli/Dockerfile) - [`8.1.23-apache-bookworm`, `8.1-apache-bookworm`, `8.1.23-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/apache/Dockerfile) - [`8.1.23-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.23-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/fpm/Dockerfile) diff --git a/python/README.md b/python/README.md index d6d4f3d91e4f..73a276b6f516 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.12.0rc2-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bookworm/Dockerfile) -- [`3.12.0rc2-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc2-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0rc2-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bullseye/Dockerfile) -- [`3.12.0rc2-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0rc2-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0rc2-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0rc2-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0rc2-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0rc3-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bookworm/Dockerfile) +- [`3.12.0rc3-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc3-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/slim-bookworm/Dockerfile) +- [`3.12.0rc3-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bullseye/Dockerfile) +- [`3.12.0rc3-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/slim-bullseye/Dockerfile) +- [`3.12.0rc3-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/alpine3.18/Dockerfile) +- [`3.12.0rc3-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/alpine3.17/Dockerfile) +- [`3.12.0rc3-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0rc3-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) - [`3.11.5-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) - [`3.11.5-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.5-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bookworm/Dockerfile) - [`3.11.5-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bullseye/Dockerfile) @@ -71,13 +71,13 @@ WARNING: ## Shared Tags -- `3.12.0rc2`, `3.12-rc`: - - [`3.12.0rc2-bookworm`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/bookworm/Dockerfile) - - [`3.12.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0rc2-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/c248ccbe7824561f6646830b8415eede9dd120f1/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc3`, `3.12-rc`: + - [`3.12.0rc3-bookworm`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bookworm/Dockerfile) + - [`3.12.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.0rc3-windowsservercore`, `3.12-rc-windowsservercore`: + - [`3.12.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) - `3.11.5`, `3.11`, `3`, `latest`: - [`3.11.5-bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 15aae2027211..05a1bcbd1306 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/03543b13c22cf5b1304d5889c9fd14b14b4cf3fd/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/43525d5fe269be572c84516d855ca934ab26523b/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/03543b13c22cf5b1304d5889c9fd14b14b4cf3fd/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/43525d5fe269be572c84516d855ca934ab26523b/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/1a91aecbf477ff0609f9478ea559921569647414/3.12/ubuntu/Dockerfile) +- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/af4b3006dd089278d45b5e925f54403314e50b18/3.12/ubuntu/Dockerfile) - [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1a91aecbf477ff0609f9478ea559921569647414/3.12/alpine/Dockerfile) +- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/af4b3006dd089278d45b5e925f54403314e50b18/3.12/alpine/Dockerfile) - [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/efa6ca4d8cebbe4f3d7211449ead58c49e8d7257/3.11/ubuntu/Dockerfile) +- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/ubuntu/Dockerfile) - [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/efa6ca4d8cebbe4f3d7211449ead58c49e8d7257/3.11/alpine/Dockerfile) +- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/alpine/Dockerfile) - [`3.11.23-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e542cb7bc32c917d11e88d940c5a7311ad238643/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ac7ec5f309ce53e69fdbcf4c245086d63ed2b7ed/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e542cb7bc32c917d11e88d940c5a7311ad238643/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/974b154bfcf4d21c021f8d94d2cb21a2081c7f24/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0f256376f1f5b12dc468f2bcb6142e9162ca2747/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/974b154bfcf4d21c021f8d94d2cb21a2081c7f24/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0f256376f1f5b12dc468f2bcb6142e9162ca2747/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 110a7cb2d178..9acbccb6a943 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.72-buster`, `1.72.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/buster/Dockerfile) -- [`1-slim-buster`, `1.72-slim-buster`, `1.72.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.72-bullseye`, `1.72.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.72-slim-bullseye`, `1.72.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.72-bookworm`, `1.72.0-bookworm`, `bookworm`, `1`, `1.72`, `1.72.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.72-slim-bookworm`, `1.72.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.72-slim`, `1.72.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.72-alpine3.17`, `1.72.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.72-alpine3.18`, `1.72.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.72-alpine`, `1.72.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/5ede3cc7db4695645dfb1a9923cbafa519fb5c49/1.72.0/alpine3.18/Dockerfile) +- [`1-buster`, `1.72-buster`, `1.72.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/buster/Dockerfile) +- [`1-slim-buster`, `1.72-slim-buster`, `1.72.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.72-bullseye`, `1.72.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.72-slim-bullseye`, `1.72.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.72-bookworm`, `1.72.1-bookworm`, `bookworm`, `1`, `1.72`, `1.72.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.72-slim-bookworm`, `1.72.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.72-slim`, `1.72.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.72-alpine3.17`, `1.72.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.72-alpine3.18`, `1.72.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.72-alpine`, `1.72.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index a3502270dc43..a9a07f255e20 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,72 +24,64 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) -- [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) -- [`5.8.1-bionic`, `5.8-bionic`, `bionic`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/18.04/Dockerfile) -- [`5.8.1-bionic-slim`, `5.8-bionic-slim`, `bionic-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/18.04/slim/Dockerfile) -- [`5.8.1-focal-slim`, `5.8-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) -- [`5.8.1-focal`, `5.8-focal`, `focal`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/Dockerfile) -- [`5.8.1-amazonlinux2`, `5.8-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/Dockerfile) -- [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) -- [`5.8.1-centos7`, `5.8-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/Dockerfile) -- [`5.8.1-centos7-slim`, `5.8-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/slim/Dockerfile) -- [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) -- [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) +- [`5.9.0`, `5.9`, `5.9.0-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/22.04/Dockerfile) +- [`5.9.0-slim`, `5.9-slim`, `5.9.0-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/22.04/slim/Dockerfile) +- [`5.9.0-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/20.04/slim/Dockerfile) +- [`5.9.0-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/20.04/Dockerfile) +- [`5.9.0-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/amazonlinux/2/Dockerfile) +- [`5.9.0-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/amazonlinux/2/slim/Dockerfile) +- [`5.9.0-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/centos/7/Dockerfile) +- [`5.9.0-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/centos/7/slim/Dockerfile) +- [`5.9.0-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/rhel-ubi/9/Dockerfile) +- [`5.9.0-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/rhel-ubi/9/slim/Dockerfile) +- [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) +- [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) +- [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) +- [`5.8.1-focal`, `5.8-focal`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/Dockerfile) +- [`5.8.1-amazonlinux2`, `5.8-amazonlinux2`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/Dockerfile) +- [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) +- [`5.8.1-centos7`, `5.8-centos7`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/Dockerfile) +- [`5.8.1-centos7-slim`, `5.8-centos7-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/slim/Dockerfile) +- [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) +- [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) - [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) - [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) -- [`5.7.3-bionic`, `5.7-bionic`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/Dockerfile) -- [`5.7.3-bionic-slim`, `5.7-bionic-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/18.04/slim/Dockerfile) - [`5.7.3-focal-slim`, `5.7-focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) - [`5.7.3-focal`, `5.7-focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) - [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) - [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) - [`5.7.3-centos7`, `5.7-centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) - [`5.7.3-centos7-slim`, `5.7-centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) -- [`5.6.3`, `5.6`, `5.6.3-bionic`, `5.6-bionic`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/Dockerfile) -- [`5.6.3-slim`, `5.6-slim`, `5.6.3-bionic-slim`, `5.6-bionic-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/18.04/slim/Dockerfile) - [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) - [`5.6.3-focal`, `5.6-focal`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/Dockerfile) - [`5.6.3-amazonlinux2`, `5.6-amazonlinux2`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/Dockerfile) - [`5.6.3-amazonlinux2-slim`, `5.6-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/slim/Dockerfile) - [`5.6.3-centos7`, `5.6-centos7`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/Dockerfile) - [`5.6.3-centos7-slim`, `5.6-centos7-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/slim/Dockerfile) -- [`5.5.3`, `5.5`, `5.5.3-bionic`, `5.5-bionic`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/18.04/Dockerfile) -- [`5.5.3-slim`, `5.5-slim`, `5.5.3-bionic-slim`, `5.5-bionic-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/18.04/slim/Dockerfile) - [`5.5.3-focal-slim`, `5.5-focal-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/slim/Dockerfile) - [`5.5.3-focal`, `5.5-focal`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/Dockerfile) - [`5.5.3-amazonlinux2`, `5.5-amazonlinux2`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/Dockerfile) - [`5.5.3-amazonlinux2-slim`, `5.5-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/slim/Dockerfile) - [`5.5.3-centos7`, `5.5-centos7`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/Dockerfile) - [`5.5.3-centos7-slim`, `5.5-centos7-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/slim/Dockerfile) -- [`5.4.3`, `5.4`, `5.4.3-bionic`, `5.4-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/18.04/Dockerfile) -- [`5.4.3-slim`, `5.4-slim`, `5.4.3-bionic-slim`, `5.4-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/18.04/slim/Dockerfile) - [`5.4.3-focal-slim`, `5.4-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/slim/Dockerfile) - [`5.4.3-focal`, `5.4-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/Dockerfile) - [`5.4.3-amazonlinux2`, `5.4-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/amazonlinux/2/Dockerfile) - [`5.4.3-amazonlinux2-slim`, `5.4-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/amazonlinux/2/slim/Dockerfile) - [`5.4.3-centos7`, `5.4-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/Dockerfile) - [`5.4.3-centos7-slim`, `5.4-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/slim/Dockerfile) -- [`5.3.3`, `5.3`, `5.3.3-bionic`, `5.3-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/18.04/Dockerfile) -- [`5.3.3-slim`, `5.3-slim`, `5.3.3-bionic-slim`, `5.3-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/18.04/slim/Dockerfile) - [`5.3.3-focal-slim`, `5.3-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/slim/Dockerfile) - [`5.3.3-focal`, `5.3-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/Dockerfile) - [`5.3.3-amazonlinux2`, `5.3-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/amazonlinux/2/Dockerfile) - [`5.3.3-amazonlinux2-slim`, `5.3-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/amazonlinux/2/slim/Dockerfile) - [`5.3.3-centos7`, `5.3-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/Dockerfile) - [`5.3.3-centos7-slim`, `5.3-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/slim/Dockerfile) -- [`5.2.5`, `5.2`, `5.2.5-bionic`, `5.2-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/18.04/Dockerfile) -- [`5.2.5-slim`, `5.2-slim`, `5.2.5-bionic-slim`, `5.2-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/18.04/slim/Dockerfile) - [`5.2.5-focal-slim`, `5.2-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/slim/Dockerfile) - [`5.2.5-focal`, `5.2-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/Dockerfile) - [`5.2.5-amazonlinux2`, `5.2-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/amazonlinux/2/Dockerfile) - [`5.2.5-amazonlinux2-slim`, `5.2-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/amazonlinux/2/slim/Dockerfile) - [`5.2.5-centos7`, `5.2-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/Dockerfile) - [`5.2.5-centos7-slim`, `5.2-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/slim/Dockerfile) -- [`5.1.5`, `5.1`, `5.1.5-bionic`, `5.1-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/18.04/Dockerfile) -- [`5.1.5-slim`, `5.1-slim`, `5.1.5-bionic-sim`, `5.1-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.1/ubuntu/18.04/slim/Dockerfile) -- [`5.0.3`, `5.0`, `5.0.3-bionic`, `5.0-bionic`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/18.04/Dockerfile) -- [`5.0.3-slim`, `5.0-slim`, `5.0.3-bionic-slim`, `5.0-bionic-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.0/ubuntu/18.04/slim/Dockerfile) # Quick reference (cont.) From 49e4287dfcfa2e17b649aeb95eb1d3b98cf5fe1e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Sep 2023 18:09:24 -0700 Subject: [PATCH 0598/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++------------------- open-liberty/README.md | 48 +++++++++++++---------------- websphere-liberty/README.md | 42 +++++++++++--------------- 3 files changed, 69 insertions(+), 81 deletions(-) diff --git a/debian/README.md b/debian/README.md index 12eb4085e7a7..b0270ab31af8 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230904`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230904-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230904`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230904-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230904`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230904-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/rc-buggy/Dockerfile) -- [`sid`, `sid-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/sid/Dockerfile) -- [`sid-slim`, `sid-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/sid/slim/Dockerfile) -- [`stable`, `stable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/stable/slim/Dockerfile) -- [`testing`, `testing-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ae5de12382c86cac52b255b18d834d96238f4d80/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20230919`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20230919-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20230919`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20230919-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/slim/Dockerfile) +- [`buster`, `buster-20230919`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20230919-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/slim/Dockerfile) +- [`experimental`, `experimental-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/rc-buggy/Dockerfile) +- [`sid`, `sid-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/sid/Dockerfile) +- [`sid-slim`, `sid-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/sid/slim/Dockerfile) +- [`stable`, `stable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/slim/Dockerfile) +- [`testing`, `testing-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/slim/Dockerfile) +- [`trixie`, `trixie-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index f99b555104ca..373de61a70ee 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.8/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/888e7093541476e937557e60bf1abfa0df183213/releases/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index b944697c6850..309db24909b3 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.8/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/9490dd6a092411da2f93231a318dc4a650b34479/ga/23.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From d2f4150d4a6f302104bf4b0ebc6f50a4cdd63847 Mon Sep 17 00:00:00 2001 From: Nicolas Albert Date: Wed, 20 Sep 2023 11:47:05 +0200 Subject: [PATCH 0599/2686] Add new variables LOG_STDOUT and LOG_FILE --- convertigo/content.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/convertigo/content.md b/convertigo/content.md index e42e41696eef..72718def1847 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -191,6 +191,16 @@ $ docker run -d --name C8O -e JAVA_OPTS="-DjvmRoute=server1" -p 28080:28080 %%IM [Here the list of convertigo specific properties](https://www.convertigo.com/documentation/latest/operating-guide/appendixes/#list-of-convertigo-java-system-properties) (don't forget the `-Dconvertigo.engine.` prefix). +## `LOG_STDOUT` and `LOG_FILE` Environment variables + +Convertigo generates many logs in a **engine.log** file that can be consulted via the Convertigo Administration Console. In some environments, it's easiest to read logs from the container's standard output. Set this property `true` to enable console output. The default value is `false`. + +Log file still exists until you add the `LOG_FILE=false` environment variable : + +```console + docker run -d --name C8O -e LOG_STDOUT=true -e LOG_FILE=false -p 28080:28080 convertigo +``` + ## `JXMX` Environment variable Convertigo tries to allocate this amount of memory in the container and will automatically reduce it until the value is compatible for the Docker memory constraints. Once the best value found, it is used as `-Xmx=${JXMX}m` parameter for the JVM. From 905f3be7c3ade70af059514535ee11ac2f74c0c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Sep 2023 12:09:13 -0700 Subject: [PATCH 0600/2686] Run update.sh --- sapmachine/README.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/sapmachine/README.md b/sapmachine/README.md index 6f76383cf46f..cab62319708d 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,18 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`jre-headless-ubuntu-11`, `jre-headless-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-11`, `jre-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-11`, `jdk-headless-ubuntu-11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-11`, `jdk-ubuntu-11.0.20`, `11`, `11.0.20`](https://github.com/SAP/SapMachine-infrastructure/blob/03a69c14ccf4cdb173bb67823d779770bcb44d72/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`jre-headless-ubuntu-17`, `jre-headless-ubuntu-17.0.8`, `jre-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-17`, `jre-ubuntu-17.0.8`, `jre-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-17`, `jdk-headless-ubuntu-17.0.8`, `jdk-headless-ubuntu-lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-17`, `jdk-ubuntu-17.0.8`, `jdk-ubuntu-lts`, `17`, `17.0.8`, `lts`](https://github.com/SAP/SapMachine-infrastructure/blob/2d4f3b8850a40a6ab8ea0322f05cc05ed19d0f4e/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`jre-headless-ubuntu-20`, `jre-headless-ubuntu-20.0.2`, `jre-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jre-headless/Dockerfile) -- [`jre-ubuntu-20`, `jre-ubuntu-20.0.2`, `jre-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jre/Dockerfile) -- [`jdk-headless-ubuntu-20`, `jdk-headless-ubuntu-20.0.2`, `jdk-headless-ubuntu`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jdk-headless/Dockerfile) -- [`jdk-ubuntu-20`, `jdk-ubuntu-20.0.2`, `jdk-ubuntu`, `20`, `20.0.2`, `latest`](https://github.com/SAP/SapMachine-infrastructure/blob/d8d71766093af433437a77900cba0839781f54c1/dockerfiles/official/20/ubuntu/jdk/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.20.1-jdk-headless-ubuntu`, `11.0.20.1-jdk-headless-ubuntu-jammy`, `11.0.20.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.20.1-jdk-ubuntu`, `11.0.20.1-jdk-ubuntu-jammy`, `11.0.20.1-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.20.1`, `11.0.20.1-ubuntu-jammy`, `11.0.20.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.8.1-jdk-headless-ubuntu`, `17.0.8.1-jdk-headless-ubuntu-jammy`, `17.0.8.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.8.1-jdk-ubuntu`, `17.0.8.1-jdk-ubuntu-jammy`, `17.0.8.1-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.8.1`, `17.0.8.1-ubuntu-jammy`, `17.0.8.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) +- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jre/Dockerfile) +- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) +- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From 7594b1ed27168fe9ef9017ccae2beb538ad46bfa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Sep 2023 15:15:35 -0700 Subject: [PATCH 0601/2686] Run update.sh --- joomla/README.md | 30 +++++++++++++++--------------- maven/README.md | 1 + neo4j/README.md | 4 ++-- varnish/README.md | 8 ++++---- 4 files changed, 22 insertions(+), 21 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 57ae58953c76..d5533396cd77 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-beta1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.beta-php8.1-apache`, `5.0.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/apache/Dockerfile) -- [`5.0.0-beta1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.beta-php8.1-fpm-alpine`, `5.0.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-beta1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.beta-php8.1-fpm`, `5.0.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.1/fpm/Dockerfile) -- [`5.0.0-beta1`, `5.0`, `5.0.beta`, `5.0.0-beta`, `5.0.0-beta1-apache`, `5.0-apache`, `5.0.beta-apache`, `5.0.0-beta-apache`, `5.0.0-beta1-php8.2`, `5.0-php8.2`, `5.0.beta-php8.2`, `5.0.0-beta-php8.2`, `5.0.0-beta1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.beta-php8.2-apache`, `5.0.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/apache/Dockerfile) -- [`5.0.0-beta1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.beta-php8.2-fpm-alpine`, `5.0.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-beta1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.beta-php8.2-fpm`, `5.0.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/5.0.beta/php8.2/fpm/Dockerfile) -- [`4.4.0-beta1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.beta-php8.0-apache`, `4.4.0-beta-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/apache/Dockerfile) -- [`4.4.0-beta1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.beta-php8.0-fpm-alpine`, `4.4.0-beta-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-beta1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.beta-php8.0-fpm`, `4.4.0-beta-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.0/fpm/Dockerfile) -- [`4.4.0-beta1`, `4.4`, `4.4.beta`, `4.4.0-beta`, `4.4.0-beta1-apache`, `4.4-apache`, `4.4.beta-apache`, `4.4.0-beta-apache`, `4.4.0-beta1-php8.1`, `4.4-php8.1`, `4.4.beta-php8.1`, `4.4.0-beta-php8.1`, `4.4.0-beta1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.beta-php8.1-apache`, `4.4.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/apache/Dockerfile) -- [`4.4.0-beta1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.beta-php8.1-fpm-alpine`, `4.4.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-beta1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.beta-php8.1-fpm`, `4.4.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.1/fpm/Dockerfile) -- [`4.4.0-beta1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.beta-php8.2-apache`, `4.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/apache/Dockerfile) -- [`4.4.0-beta1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.beta-php8.2-fpm-alpine`, `4.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-beta1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.beta-php8.2-fpm`, `4.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc4fd864b32eda5c1794d0fb89573167d3a2d422/4.4.beta/php8.2/fpm/Dockerfile) +- [`5.0.0-beta2-php8.1-apache`, `5.0-php8.1-apache`, `5.0.beta-php8.1-apache`, `5.0.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/apache/Dockerfile) +- [`5.0.0-beta2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.beta-php8.1-fpm-alpine`, `5.0.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-beta2-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.beta-php8.1-fpm`, `5.0.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/fpm/Dockerfile) +- [`5.0.0-beta2`, `5.0`, `5.0.beta`, `5.0.0-beta`, `5.0.0-beta2-apache`, `5.0-apache`, `5.0.beta-apache`, `5.0.0-beta-apache`, `5.0.0-beta2-php8.2`, `5.0-php8.2`, `5.0.beta-php8.2`, `5.0.0-beta-php8.2`, `5.0.0-beta2-php8.2-apache`, `5.0-php8.2-apache`, `5.0.beta-php8.2-apache`, `5.0.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/apache/Dockerfile) +- [`5.0.0-beta2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.beta-php8.2-fpm-alpine`, `5.0.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-beta2-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.beta-php8.2-fpm`, `5.0.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/fpm/Dockerfile) +- [`4.4.0-beta2-php8.0-apache`, `4.4-php8.0-apache`, `4.4.beta-php8.0-apache`, `4.4.0-beta-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/apache/Dockerfile) +- [`4.4.0-beta2-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.beta-php8.0-fpm-alpine`, `4.4.0-beta-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-beta2-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.beta-php8.0-fpm`, `4.4.0-beta-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/fpm/Dockerfile) +- [`4.4.0-beta2`, `4.4`, `4.4.beta`, `4.4.0-beta`, `4.4.0-beta2-apache`, `4.4-apache`, `4.4.beta-apache`, `4.4.0-beta-apache`, `4.4.0-beta2-php8.1`, `4.4-php8.1`, `4.4.beta-php8.1`, `4.4.0-beta-php8.1`, `4.4.0-beta2-php8.1-apache`, `4.4-php8.1-apache`, `4.4.beta-php8.1-apache`, `4.4.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/apache/Dockerfile) +- [`4.4.0-beta2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.beta-php8.1-fpm-alpine`, `4.4.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-beta2-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.beta-php8.1-fpm`, `4.4.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/fpm/Dockerfile) +- [`4.4.0-beta2-php8.2-apache`, `4.4-php8.2-apache`, `4.4.beta-php8.2-apache`, `4.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/apache/Dockerfile) +- [`4.4.0-beta2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.beta-php8.2-fpm-alpine`, `4.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-beta2-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.beta-php8.2-fpm`, `4.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/fpm/Dockerfile) - [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/apache/Dockerfile) - [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm-alpine/Dockerfile) - [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm/Dockerfile) diff --git a/maven/README.md b/maven/README.md index 81ac45ff77b2..68e9fda41c5a 100644 --- a/maven/README.md +++ b/maven/README.md @@ -47,6 +47,7 @@ WARNING: - [`3.9.4-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20/Dockerfile) - [`3.9.4-amazoncorretto-20-al2023`, `3.9-amazoncorretto-20-al2023`, `3-amazoncorretto-20-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-20-al2023/Dockerfile) - [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) +- [`3.9.4-amazoncorretto-21-debian`, `3.9.4-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/61b5d8d7e9e5706522ff154315db185816d35891/amazoncorretto-21-debian/Dockerfile) - [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) - [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) - [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index ad3c80b3176e..47d8fce9a97b 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.12.0-enterprise-bullseye`, `5.12-enterprise-bullseye`, `5-enterprise-bullseye`, `5.12.0-enterprise`, `5.12-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/bullseye/enterprise/Dockerfile) - [`5.12.0-community-ubi8`, `5.12-community-ubi8`, `5-community-ubi8`, `5.12.0-ubi8`, `5.12-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/community/Dockerfile) - [`5.12.0-enterprise-ubi8`, `5.12-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/enterprise/Dockerfile) -- [`4.4.25`, `4.4.25-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/community/Dockerfile) -- [`4.4.25-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ff223b3ef8e89fb2ef0fa6116e59f05abd28d9e4/4.4.25/bullseye/enterprise/Dockerfile) +- [`4.4.26`, `4.4.26-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/community/Dockerfile) +- [`4.4.26-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 937eed2ccbc6..92f6b4c6bfec 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.4.0`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.4.0-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/fresh/alpine/Dockerfile) -- [`old`, `7.3.0`, `7.3`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/old/debian/Dockerfile) -- [`old-alpine`, `7.3.0-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/e6e52639c72df3c5f211d9f56534479819461c44/old/alpine/Dockerfile) +- [`fresh`, `7.4.1`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/61eab19ea5d87528d2c6a109dce7e355ac9965fc/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.4.1-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/61eab19ea5d87528d2c6a109dce7e355ac9965fc/fresh/alpine/Dockerfile) +- [`old`, `7.3.0`, `7.3`](https://github.com/varnish/docker-varnish/blob/b9c04df300b4a9138c61debe495fbe56021f7550/old/debian/Dockerfile) +- [`old-alpine`, `7.3.0-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/b9c04df300b4a9138c61debe495fbe56021f7550/old/alpine/Dockerfile) - [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/f3be41ac5e4224615e1437334ffc16418e3e89f3/stable/debian/Dockerfile) # Quick reference (cont.) From 226c81f4aafa9b4ee7baab17e471531b040d417c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Sep 2023 17:09:24 -0700 Subject: [PATCH 0602/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- sonarqube/README.md | 20 ++++++++++---------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/nats/README.md b/nats/README.md index 9a30ea4863de..003962435414 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.0-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.0-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/alpine3.18/Dockerfile) -- [`2.10.0-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.0-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) -- [`2.10.0-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.0-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/alpine3.18/Dockerfile) -- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) -- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.1-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.1-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/alpine3.18/Dockerfile) +- [`2.10.1-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.1-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) +- [`2.10.1-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.1-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/alpine3.18/Dockerfile) +- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) +- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.0`, `2.10`: - - [`2.10.0-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) - - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.1`, `2.10`: + - [`2.10.1-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) + - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.0-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/scratch/Dockerfile) - - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) -- `2.10.0-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.0-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.0-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.1-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) + - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) +- `2.10.1-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.1-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.1-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) - `2.9.22`, `2.9`: - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/scratch/Dockerfile) + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) - `2.9.22-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.22-nanoserver`, `2.9-nanoserver`: - - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b7dab5a48d11313adf343515cc81870f0e4cb9a4/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index c642184f9dc4..9986387df4b5 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.2-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/community/Dockerfile) -- [`9.9.2-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/developer/Dockerfile) -- [`9.9.2-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/enterprise/Dockerfile) -- [`9.9.2-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/datacenter/app/Dockerfile) -- [`9.9.2-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/9/datacenter/search/Dockerfile) -- [`10.2.0-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/community/Dockerfile) -- [`10.2.0-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/developer/Dockerfile) -- [`10.2.0-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/enterprise/Dockerfile) -- [`10.2.0-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/datacenter/app/Dockerfile) -- [`10.2.0-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/485f918a718960a87c940a66c6a32a4f8f55f3da/10/datacenter/search/Dockerfile) +- [`9.9.2-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/community/Dockerfile) +- [`9.9.2-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/developer/Dockerfile) +- [`9.9.2-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/enterprise/Dockerfile) +- [`9.9.2-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/datacenter/app/Dockerfile) +- [`9.9.2-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/datacenter/search/Dockerfile) +- [`10.2.1-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/community/Dockerfile) +- [`10.2.1-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/developer/Dockerfile) +- [`10.2.1-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/enterprise/Dockerfile) +- [`10.2.1-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/datacenter/app/Dockerfile) +- [`10.2.1-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/datacenter/search/Dockerfile) # Quick reference (cont.) From be198afe748840c98c1c172dee2d77bb53ed1a44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Sep 2023 10:09:26 -0700 Subject: [PATCH 0603/2686] Run update.sh --- sapmachine/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sapmachine/README.md b/sapmachine/README.md index cab62319708d..7f7e350495bc 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,8 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.20.1-jre-headless-ubuntu`, `11.0.20.1-jre-headless-ubuntu-jammy`, `11.0.20.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.20.1-jre-ubuntu`, `11.0.20.1-jre-ubuntu-jammy`, `11.0.20.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jre/Dockerfile) - [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.20.1-jdk-headless-ubuntu`, `11.0.20.1-jdk-headless-ubuntu-jammy`, `11.0.20.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) - [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.20.1-jdk-ubuntu`, `11.0.20.1-jdk-ubuntu-jammy`, `11.0.20.1-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.20.1`, `11.0.20.1-ubuntu-jammy`, `11.0.20.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.8.1-jre-headless-ubuntu`, `17.0.8.1-jre-headless-ubuntu-jammy`, `17.0.8.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.8.1-jre-ubuntu`, `17.0.8.1-jre-ubuntu-jammy`, `17.0.8.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jre/Dockerfile) - [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.8.1-jdk-headless-ubuntu`, `17.0.8.1-jdk-headless-ubuntu-jammy`, `17.0.8.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) - [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.8.1-jdk-ubuntu`, `17.0.8.1-jdk-ubuntu-jammy`, `17.0.8.1-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.8.1`, `17.0.8.1-ubuntu-jammy`, `17.0.8.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk/Dockerfile) - [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) From 31f7cddad0694a3648b01e31e30ee1174628a6b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Sep 2023 16:09:51 -0700 Subject: [PATCH 0604/2686] Run update.sh --- archlinux/README.md | 4 ++-- oraclelinux/README.md | 16 ++++++++-------- orientdb/README.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index ee9a71d74e12..9a2f674edb90 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230910.0.177821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8927543be41468cddf77a2fd4148bcdc5cf22e97/Dockerfile.base) -- [`base-devel`, `base-devel-20230910.0.177821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/8927543be41468cddf77a2fd4148bcdc5cf22e97/Dockerfile.base-devel) +- [`latest`, `base`, `base-20230921.0.180222`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8bba69a7d928de88fcac7a7047b68bef542f73a/Dockerfile.base) +- [`base-devel`, `base-devel-20230921.0.180222`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8bba69a7d928de88fcac7a7047b68bef542f73a/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 16c021e953db..38df86b4a98a 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/2f1a9736a0ec1895a67191dbf222e8ae838b3f83/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 563ee9d1e9ae..1b4233130606 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.22`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/51f8ab879c1364b39f252e48ac203e3a7f82d49b/release/3.2.x/3.2.22/Dockerfile) -- [`3.2.22-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/51f8ab879c1364b39f252e48ac203e3a7f82d49b/release/3.2.x/3.2.22-tp3/Dockerfile) +- [`3.2.23`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/8b3809e5012ff7fd5b929b1b198530b0d9647879/release/3.2.x/3.2.23/Dockerfile) +- [`3.2.23-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/8b3809e5012ff7fd5b929b1b198530b0d9647879/release/3.2.x/3.2.23-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 385ceef230be3ffef76cf5ade35bf1cd3e7d1f27 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Sep 2023 17:22:26 -0700 Subject: [PATCH 0605/2686] Run update.sh --- amazoncorretto/README.md | 86 ++++++++++++++++++++++------------------ drupal/README.md | 82 +++++++++++++++++++------------------- elasticsearch/README.md | 2 +- ghost/README.md | 4 +- kapacitor/README.md | 10 ++--- kibana/README.md | 2 +- logstash/README.md | 2 +- nextcloud/README.md | 18 ++++----- rabbitmq/README.md | 12 +++--- 9 files changed, 113 insertions(+), 105 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index b727d370eda0..d1077acdba32 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,45 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/17/jdk/alpine/3.18/Dockerfile) -- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/al2-generic/Dockerfile) -- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/al2023-generic/Dockerfile) -- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.17/Dockerfile) -- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/c48e6824bfc3d8b04e94fc8c16cee8f023183e2d/20/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.18/Dockerfile) +- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/al2-generic/Dockerfile) +- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/al2023-generic/Dockerfile) +- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.15/Dockerfile) +- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.16/Dockerfile) +- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.17/Dockerfile) +- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.0`, `21.0.0-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.0-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.0-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.0-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.0-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/headful/al2023/Dockerfile) +- [`21-alpine3.15`, `21.0.0-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.15/Dockerfile) +- [`21-alpine3.16`, `21.0.0-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.0-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.0-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.0-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 1865ad37b964..996eaac8a884 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.3-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.3-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.3-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.3-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.3-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.3`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.3-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.3-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.3-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.3-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.3-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.3-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.3-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.3-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.3-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.3-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.3-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.3-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.3-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.3-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.3-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.3-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.3-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.3-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.3-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.3-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.3-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.3-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.3-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.3-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/a00282d2ac85712f91e0b1469fea3b1199460d44/10.1/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.10-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.10-php8.2-apache`, `10.0-php8.2-apache`, `10.0.10-php8.2`, `10.0-php8.2`, `10.0.10-apache-bookworm`, `10.0-apache-bookworm`, `10.0.10-apache`, `10.0-apache`, `10.0.10`, `10.0`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bookworm/Dockerfile) -- [`10.0.10-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.10-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.10-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.10-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bookworm/Dockerfile) -- [`10.0.10-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.10-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.10-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.10-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.10-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.10-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.10-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10.0.10-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.0.10-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10.0.10-fpm-alpine3.17`, `10.0-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.10-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.10-php8.1-apache`, `10.0-php8.1-apache`, `10.0.10-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/apache-bookworm/Dockerfile) -- [`10.0.10-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.10-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-bookworm/Dockerfile) -- [`10.0.10-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.10-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.10-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.10-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.0.10-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/23420111753fbc18ea20c5cbf8cab2909708d942/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.10-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.10-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.10-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/apache-bookworm/Dockerfile) -- [`9.5.10-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.10-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-bookworm/Dockerfile) -- [`9.5.10-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/apache-bullseye/Dockerfile) -- [`9.5.10-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-bullseye/Dockerfile) -- [`9.5.10-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.10-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-alpine3.18/Dockerfile) -- [`9.5.10-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.2/fpm-alpine3.17/Dockerfile) -- [`9.5.10-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.10-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.10-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.10-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.10-apache`, `9.5-apache`, `9-apache`, `9.5.10`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/apache-bookworm/Dockerfile) -- [`9.5.10-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.10-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.10-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.10-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-bookworm/Dockerfile) -- [`9.5.10-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.10-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.10-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.10-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.10-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.10-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.10-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.10-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-alpine3.18/Dockerfile) -- [`9.5.10-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.10-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.10-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.10-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.10-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.10-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.10-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/c817144fe50c1b7fe2f85cc5b339ad60def5e781/9.5/php8.0/fpm-alpine3.16/Dockerfile) +- [`10.1.4-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.4-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.4-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.4-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.4-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.4`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.4-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.4-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.4-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.4-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.4-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.4-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.4-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.4-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.4-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.4-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.4-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.4-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.4-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.4-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.4-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.4-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.4-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.4-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.4-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.4-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.4-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.4-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.4-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.4-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bookworm/Dockerfile) +- [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bookworm/Dockerfile) +- [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.11-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.11-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.11-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.11-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.11-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10.0.11-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.0.11-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10.0.11-fpm-alpine3.17`, `10.0-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.11-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.11-php8.1-apache`, `10.0-php8.1-apache`, `10.0.11-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/apache-bookworm/Dockerfile) +- [`10.0.11-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.11-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-bookworm/Dockerfile) +- [`10.0.11-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.0.11-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.11-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.11-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.11-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/apache-bookworm/Dockerfile) +- [`9.5.11-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.11-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-bookworm/Dockerfile) +- [`9.5.11-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/apache-bullseye/Dockerfile) +- [`9.5.11-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-bullseye/Dockerfile) +- [`9.5.11-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.11-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-alpine3.18/Dockerfile) +- [`9.5.11-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-alpine3.17/Dockerfile) +- [`9.5.11-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.11-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.11-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.11-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.11-apache`, `9.5-apache`, `9-apache`, `9.5.11`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/apache-bookworm/Dockerfile) +- [`9.5.11-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.11-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.11-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.11-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-bookworm/Dockerfile) +- [`9.5.11-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.11-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/apache-bullseye/Dockerfile) +- [`9.5.11-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.11-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-bullseye/Dockerfile) +- [`9.5.11-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.11-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.11-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.11-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-alpine3.18/Dockerfile) +- [`9.5.11-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.11-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-alpine3.17/Dockerfile) +- [`9.5.11-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/apache-bullseye/Dockerfile) +- [`9.5.11-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-bullseye/Dockerfile) +- [`9.5.11-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/apache-buster/Dockerfile) +- [`9.5.11-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-buster/Dockerfile) +- [`9.5.11-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-alpine3.16/Dockerfile) - [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bookworm/Dockerfile) - [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bookworm/Dockerfile) - [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bullseye/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index fe205e5b59d1..5de9167ded3d 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.1`](https://github.com/docker-library/elasticsearch/blob/944e1d2cfe77764120101697a28619be7125c0a2/8/Dockerfile) +- [`8.10.2`](https://github.com/docker-library/elasticsearch/blob/e01a04645b0c3f0abd13b9f11a69d7c884d9405a/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/elasticsearch/blob/91b35e027265ce33d16bb0f88884f5897a11328e/7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 2864459a07f6..4b6218df9f24 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.63.0`, `5.63`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a2a882d6f9a143755a0d86e1337c87feedfdb56c/5/debian/Dockerfile) -- [`5.63.0-alpine`, `5.63-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a2a882d6f9a143755a0d86e1337c87feedfdb56c/5/alpine/Dockerfile) +- [`5.64.0`, `5.64`, `5`, `latest`](https://github.com/docker-library/ghost/blob/82fdf394c920b3b7064e92c408af2ffb1cf418fc/5/debian/Dockerfile) +- [`5.64.0-alpine`, `5.64-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/82fdf394c920b3b7064e92c408af2ffb1cf418fc/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index ddeb42057226..0d4bb9f696bf 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.5`, `1.5.9`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.5/Dockerfile) -- [`1.5-alpine`, `1.5.9-alpine`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.5/alpine/Dockerfile) -- [`1.6`, `1.6.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/409aa55a78db9cbe9e4e0c94b1e67785d63ffd32/kapacitor/1.6/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) @@ -35,7 +35,7 @@ WARNING: [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/kapacitor/), [`arm32v7`](https://hub.docker.com/r/arm32v7/kapacitor/), [`arm64v8`](https://hub.docker.com/r/arm64v8/kapacitor/) + [`amd64`](https://hub.docker.com/r/amd64/kapacitor/), [`arm64v8`](https://hub.docker.com/r/arm64v8/kapacitor/) - **Published image artifact details**: [repo-info repo's `repos/kapacitor/` directory](https://github.com/docker-library/repo-info/blob/master/repos/kapacitor) ([history](https://github.com/docker-library/repo-info/commits/master/repos/kapacitor)) diff --git a/kibana/README.md b/kibana/README.md index 172690d7706c..d4480d6a4ba3 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.1`](https://github.com/docker-library/kibana/blob/30d19cf81e0dc9f61b7026f55f34f9464c4c88c7/8/Dockerfile) +- [`8.10.2`](https://github.com/docker-library/kibana/blob/3665097f9e6714e04e3e40f947d7c8f0e4928a2c/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/kibana/blob/e79be1ed96f3a741881bbd741c5816aa9273ac2f/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index f22843d9ee51..d200872481ce 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.1`](https://github.com/docker-library/logstash/blob/accf9e2b33c3b000f06c1a2db869cb09e37c46b8/8/Dockerfile) +- [`8.10.2`](https://github.com/docker-library/logstash/blob/a42629bc1187f17e6955ad4d887b3c5f0f23081f/8/Dockerfile) - [`7.17.13`](https://github.com/docker-library/logstash/blob/a6039d10cfa0f21d86c08f473b9a18c6b94be352/7/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 094b72fd17f0..c762119e5fb6 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.11-apache`, `25.0-apache`, `25-apache`, `25.0.11`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/25/apache/Dockerfile) -- [`25.0.11-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm/Dockerfile) -- [`25.0.11-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/25/fpm-alpine/Dockerfile) -- [`26.0.6-apache`, `26.0-apache`, `26-apache`, `26.0.6`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/26/apache/Dockerfile) -- [`26.0.6-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm/Dockerfile) -- [`26.0.6-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/467a98dcc9c04b614de6b21de2a4e2046077788b/26/fpm-alpine/Dockerfile) -- [`27.1.0-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.0`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3fa92257f9be6485dca15b7a71fb27a188b01fd1/27/apache/Dockerfile) -- [`27.1.0-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4cd70385b89197c87e928d49c678890d71e9fb83/27/fpm/Dockerfile) -- [`27.1.0-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cd70385b89197c87e928d49c678890d71e9fb83/27/fpm-alpine/Dockerfile) +- [`25.0.12-apache`, `25.0-apache`, `25-apache`, `25.0.12`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/apache/Dockerfile) +- [`25.0.12-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/fpm/Dockerfile) +- [`25.0.12-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/fpm-alpine/Dockerfile) +- [`26.0.7-apache`, `26.0-apache`, `26-apache`, `26.0.7`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/apache/Dockerfile) +- [`26.0.7-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/fpm/Dockerfile) +- [`26.0.7-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/fpm-alpine/Dockerfile) +- [`27.1.1-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.1`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/apache/Dockerfile) +- [`27.1.1-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/fpm/Dockerfile) +- [`27.1.1-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 05a1bcbd1306..e706588b34c2 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/43525d5fe269be572c84516d855ca934ab26523b/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/687ece5f4db01a9a8925dbadb3dc872033627c16/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/43525d5fe269be572c84516d855ca934ab26523b/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/687ece5f4db01a9a8925dbadb3dc872033627c16/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.4`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/af4b3006dd089278d45b5e925f54403314e50b18/3.12/ubuntu/Dockerfile) -- [`3.12.4-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/af4b3006dd089278d45b5e925f54403314e50b18/3.12/alpine/Dockerfile) -- [`3.12.4-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.5`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/5e5a04952e02dab153005a6e59d50deb99847e56/3.12/ubuntu/Dockerfile) +- [`3.12.5-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5e5a04952e02dab153005a6e59d50deb99847e56/3.12/alpine/Dockerfile) +- [`3.12.5-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/ubuntu/Dockerfile) - [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/alpine/Dockerfile) From 136bcad5f450a3d8e9d9875e3f36c722f1afdada Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Sep 2023 12:17:47 -0700 Subject: [PATCH 0606/2686] Run update.sh --- maven/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maven/README.md b/maven/README.md index 68e9fda41c5a..122da58bd238 100644 --- a/maven/README.md +++ b/maven/README.md @@ -47,12 +47,14 @@ WARNING: - [`3.9.4-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20/Dockerfile) - [`3.9.4-amazoncorretto-20-al2023`, `3.9-amazoncorretto-20-al2023`, `3-amazoncorretto-20-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-20-al2023/Dockerfile) - [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) +- [`3.9.4-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/7741c2848c3ea3ad6b4180d94b90d669d419c893/amazoncorretto-21/Dockerfile) - [`3.9.4-amazoncorretto-21-debian`, `3.9.4-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/61b5d8d7e9e5706522ff154315db185816d35891/amazoncorretto-21-debian/Dockerfile) - [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) - [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) - [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) - [`3.9.4-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-11/Dockerfile) - [`3.9.4-sapmachine-17`, `3.9.4-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) +- [`3.9.4-sapmachine-21`, `3.9-sapmachine-21`, `3-sapmachine-21`](https://github.com/carlossg/docker-maven/blob/c6ea9b77dab964547324ce49b61ea542fc55f5b5/sapmachine-21/Dockerfile) # Quick reference (cont.) From dab8f0133d9a470158ab1da8a7d9f3aa389c1ac1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Sep 2023 17:09:33 -0700 Subject: [PATCH 0607/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8f2a91a88692..c9dcf71832db 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.1.20230825.0`](https://github.com/amazonlinux/container-images/blob/068827c218fcfd1494a296edca29a9ae1c5fafa7/Dockerfile) -- [`2`, `2.0.20230822.0`](https://github.com/amazonlinux/container-images/blob/81483ce21289e23fcdd3644eeed17c94c4077f64/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230821.0`](https://github.com/amazonlinux/container-images/blob/ce19335809fc05b4e4b451a70c9bc6a1ca518ae5/Dockerfile) +- [`2023`, `latest`, `2023.2.20230920.1`](https://github.com/amazonlinux/container-images/blob/414b5d5f6254ca8a674e04cc2f5e0e334ac77f14/Dockerfile) +- [`2`, `2.0.20230912.0`](https://github.com/amazonlinux/container-images/blob/758d8663f71fe6d9c26dc42a366eabdf024458ca/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20230905.0`](https://github.com/amazonlinux/container-images/blob/bb33672fcca36770bfe1536b7773b19ca43df8da/Dockerfile) # Quick reference (cont.) From 2e129cfd2b4b4c6594573fdfa6ce3914dcc45178 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Sep 2023 18:18:05 -0700 Subject: [PATCH 0608/2686] Run update.sh --- ghost/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4b6218df9f24..b3c15b147c12 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.64.0`, `5.64`, `5`, `latest`](https://github.com/docker-library/ghost/blob/82fdf394c920b3b7064e92c408af2ffb1cf418fc/5/debian/Dockerfile) -- [`5.64.0-alpine`, `5.64-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/82fdf394c920b3b7064e92c408af2ffb1cf418fc/5/alpine/Dockerfile) +- [`5.65.0`, `5.65`, `5`, `latest`](https://github.com/docker-library/ghost/blob/af06951592aa20cdce16851836917ef9eff8e581/5/debian/Dockerfile) +- [`5.65.0-alpine`, `5.65-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/af06951592aa20cdce16851836917ef9eff8e581/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e706588b34c2..4669ce2a70bf 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/687ece5f4db01a9a8925dbadb3dc872033627c16/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.5`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/5e5a04952e02dab153005a6e59d50deb99847e56/3.12/ubuntu/Dockerfile) -- [`3.12.5-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5e5a04952e02dab153005a6e59d50deb99847e56/3.12/alpine/Dockerfile) -- [`3.12.5-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/81ad274c81ec8f7a2716d5f6bb518c5f0bf142c3/3.12/ubuntu/Dockerfile) +- [`3.12.6-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/81ad274c81ec8f7a2716d5f6bb518c5f0bf142c3/3.12/alpine/Dockerfile) +- [`3.12.6-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/ubuntu/Dockerfile) - [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/alpine/Dockerfile) From f5469c7c35b078a9094cbfadcb2615affceafff6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Sep 2023 12:18:26 -0700 Subject: [PATCH 0609/2686] Run update.sh --- clearlinux/README.md | 2 +- emqx/README.md | 3 +- perl/README.md | 80 ++++++++++++++++++++++---------------------- photon/README.md | 4 +-- 4 files changed, 45 insertions(+), 44 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 07ce402bc994..5de79d7cfe55 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/16638d1f7ac12f6271544ab07c58973609bd002a/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d0b0cab6c276fdea3d1ecb1278621080a4f0b525/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 5dacbdbbc531..465372e7827e 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) -- [`5.1.6`, `5.1`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) +- [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) +- [`5.2.1`, `5.2`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index de7605bbb13c..909101e1c789 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.2`, `5.39`, `devel`, `5.39.2-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main-bookworm/Dockerfile) -- [`5.39.2-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main-bullseye/Dockerfile) -- [`5.39.2-slim`, `5.39-slim`, `devel-slim`, `5.39.2-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim-bookworm/Dockerfile) -- [`5.39.2-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim-bullseye/Dockerfile) -- [`5.39.2-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.2-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main,threaded-bookworm/Dockerfile) -- [`5.39.2-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-main,threaded-bullseye/Dockerfile) -- [`5.39.2-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.2-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim,threaded-bookworm/Dockerfile) -- [`5.39.2-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8afa4183d38fb5b5ca287bd5b37452f20acabe1b/5.039.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.3`, `5.39`, `devel`, `5.39.3-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main-bookworm/Dockerfile) +- [`5.39.3-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main-bullseye/Dockerfile) +- [`5.39.3-slim`, `5.39-slim`, `devel-slim`, `5.39.3-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim-bookworm/Dockerfile) +- [`5.39.3-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim-bullseye/Dockerfile) +- [`5.39.3-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.3-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main,threaded-bookworm/Dockerfile) +- [`5.39.3-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main,threaded-bullseye/Dockerfile) +- [`5.39.3-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.3-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim,threaded-bookworm/Dockerfile) +- [`5.39.3-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 2b6208e89cc1..2920485b7f3e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230916`, `latest`](https://github.com/vmware/photon-docker-image/blob/c50d4ba520acfe440b4a1ea69b6eca313ea22e71/docker/Dockerfile) +- [`5.0`, `5.0-20230923`, `latest`](https://github.com/vmware/photon-docker-image/blob/c0d25ad3be1cd40dcbfd3767220be9085f1dd23f/docker/Dockerfile) - [`4.0`, `4.0-20230916`](https://github.com/vmware/photon-docker-image/blob/60a27c92f26c7b9285c3eed17bcb93c97cbd3129/docker/Dockerfile) -- [`3.0`, `3.0-20230916`](https://github.com/vmware/photon-docker-image/blob/935f7418c1588b677c9fb1a5b4e35677812e6972/docker/Dockerfile) +- [`3.0`, `3.0-20230923`](https://github.com/vmware/photon-docker-image/blob/a61dffbb1e0537dd11d28b8e1a6a3059586a398e/docker/Dockerfile) # Quick reference (cont.) From c9c8fba3a5c0395d6f200351ae7c8d00ba90ff02 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Sep 2023 15:18:08 -0700 Subject: [PATCH 0610/2686] Run update.sh --- couchbase/README.md | 4 ++-- odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index d6b203f72830..6dbebc41f869 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.1`, `enterprise-7.2.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/7b023e33d2961ef352c33f3772ca50dfcc797165/enterprise/couchbase-server/7.2.1/Dockerfile) -- [`community-7.2.1`, `community`](https://github.com/couchbase/docker/blob/7b023e33d2961ef352c33f3772ca50dfcc797165/community/couchbase-server/7.2.1/Dockerfile) +- [`7.2.2`, `enterprise-7.2.2`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/enterprise/couchbase-server/7.2.2/Dockerfile) +- [`community-7.2.2`, `community`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/community/couchbase-server/7.2.2/Dockerfile) - [`7.1.5`, `enterprise-7.1.5`](https://github.com/couchbase/docker/blob/1ce6c78f29c9be97c67c2588b1ceaa57ad1b49c6/enterprise/couchbase-server/7.1.5/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 4c450cb74051..fcfd4d322022 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/61148a86eed7fb5452dc7705b479988e1f49f9a6/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/14.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 798849bbd751..fcc4dce4d4cd 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.7`, `15.7.0`, `15-mysql-tomcat`, `15.7-mysql-tomcat`, `15.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.7-postgres-tomcat`, `15.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.7-mariadb-tomcat`, `15.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d59d719dd80977ba9ae0e95e7806e93b65aed479/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.8`, `15.8.0`, `15-mysql-tomcat`, `15.8-mysql-tomcat`, `15.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.8-postgres-tomcat`, `15.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.8-mariadb-tomcat`, `15.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.17`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.17-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.17-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.17-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mariadb-tomcat/Dockerfile) From 017dd7562368a82ba5de947e4a557e93754f2b54 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Sep 2023 17:09:19 -0700 Subject: [PATCH 0611/2686] Run update.sh --- alt/README.md | 6 +++--- haproxy/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/alt/README.md b/alt/README.md index 627c513dfeb2..6b9a1ef0baf9 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/f6628b4b288042324701670e5b1e1e4e678f064b/x86_64/Dockerfile) -- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/600e5fc1af2f0457c3128d4591d1919472ec2411/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/9a7990daa35dca10a16c290e8fa44d844c368ee1/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/75c4d0029825ab9802240f2a086395d728e1853f/x86_64/Dockerfile) +- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/d1f01d08ac608909403bc99501af07065d7be769/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/cf707869d0d33a76fa3eed5eb2592c07a0a11e23/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index e63b76e89339..672a2913235e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev5`, `2.9-dev`, `2.9-dev5-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/cc956543804219f5585e0d533bf840b93f5ddcf1/2.9/Dockerfile) -- [`2.9-dev5-alpine`, `2.9-dev-alpine`, `2.9-dev5-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/cc956543804219f5585e0d533bf840b93f5ddcf1/2.9/alpine/Dockerfile) +- [`2.9-dev6`, `2.9-dev`, `2.9-dev6-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/40db7d102d0b5ac819985b7c7ee68e7dd4edd21a/2.9/Dockerfile) +- [`2.9-dev6-alpine`, `2.9-dev-alpine`, `2.9-dev6-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/40db7d102d0b5ac819985b7c7ee68e7dd4edd21a/2.9/alpine/Dockerfile) - [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) - [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) From 8b7ff4ebcd93203573cbb15b6b75c46b921f3fa0 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Fri, 22 Sep 2023 07:45:48 +1000 Subject: [PATCH 0612/2686] MariaDB maintainers --- mariadb/maintainer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mariadb/maintainer.md b/mariadb/maintainer.md index 3907b235702b..bf0c3f9a5673 100644 --- a/mariadb/maintainer.md +++ b/mariadb/maintainer.md @@ -1 +1 @@ -[MariaDB developer community](%%GITHUB-REPO%%) +[MariaDB Foundation](https://mariadb.org), [MariaDB plc](https://mariadb.com), with contributions from our [community](%%GITHUB-REPO%%) From 554e4b9aaac2e266b9ab31e9a312cb6f96d69286 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Fri, 22 Sep 2023 10:24:16 +1000 Subject: [PATCH 0613/2686] MariaDB smaller logo - without Foundation text --- mariadb/logo.png | Bin 16087 -> 7528 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/mariadb/logo.png b/mariadb/logo.png index fb112daedcf938e47c5e10107097ea156ba41aa9..948173c504cdfd7e243dcb96a03b7cd2f739359e 100644 GIT binary patch literal 7528 zcmeHKc{G&m`?t1GA(4a_TEwgj#xBN^$Zn9#GYbY|h8b%MNl~^eQH1Q3y-@Zwls#FZ zvJ{01sZ_S#L(AKHzTb0x=RN25`|o|undiCh>%OkfbzPtPy6-dBB@<)4?OeiKEG#VB z4fJ))SXfx0;J9@QJNUlbsAmIy8vHGAOf$eoobE|;q_~mAnSOM#IN6ut$im_~L^ZM7 z!7j07`OPl1Ahrs+$YM{X;@kPKphrXAJ45)GI-~xzDRXb@+Uv-%cS;Yi%g8A3$B0nr z#;U$7T_%1VjYxP}Rx9M2)twgA1rMP4`LU}>(ITdU13{i&+Yj@%c-H zXf4pP?%aJ*TjW5w@HNO-)^%88sUzD*@Kgvd{Bd0PrNO;7Yqs3FZbB^4zP(R4F?>7V z$o@?+XX{rMUoji+Iii&{nBE17wzi3Zw)U@Vz#MLziBZ#U)D*fnl6}=MQW*xEz)-YD=GUDxMx4&&xfZE52nl@Ii%=bcOzbo8=bKa zclwsP#Q2o!7skpOt<<@#_rOc>lxHQ|JC~aHtYR$38RJ`Hxunj%t{9)+`zF1Ott^Zw0tKG2}WJ_+fX;HzD>T zm74cHD2=p4_NuZ5b=6&c`Neu~-MfQRpUVW**fy1&3!5p+e#e@iQa2YXk#tvvlfrd@ zZSJgYS6oIHo%>V1-x=5UuRgK1niQHT*40ZOPG-LINj>={_x<4VnnHt2I$)qd8;XXb- zFdsP>&C>~v#9%OR1PYEqK|u{D!_S=w_(I(olIsvZFm%Waq9=vUq|n^O*D(PC&5Nl9 zfq?7czv83Pjf{T7yEA^W0P+F%1?X@j3<0N7;eT2%m{@NRI6OnL+dN zB$Bb-WOt_IpAaPCZ+p6zr`tw4BqE&bMy7(Q4A3j`Z!Yx=j7)x8tW)4bq0%?3K(ha) z$)q^`Mb_V9TVL5o=g&Yu^WV6C)BctFhBBySWTdP^BYLfeXP~17S@*9@q7f-1<&B{n z3IWIgC`Tw!o`iwQqev(y0RRA~k^(_dUJ)RWhzO-WpbXp@Ou(H;UWWp~VH6NY4uw%9 z0g3=rQ2~jB%9D^F1OWp;k@AiNl%t~@22dpY0dd@u0#+s9_GeVuG#A~4YZBntDM55d;57`QPgLm#%-rz&}#{x4Qn%=;HdTog%w~ z|AKtLX34K!&>L*DZkQaiz^?sz_8}akc=WY8iC90)upe-k{r#P!`aIC+w==sB{@y?c46EklIpL`g9 zG5_)N!n>(&pFe?dwLHk12jgTV80zV;gmQ}NgOjaveH#V~3pfAzkCi3yh7c&+%rr2< zZho^>kY%^T7tsJb3(Gc|fsU4i@6daDN>qjtujr%ai`(xOktBj&^XQ*kU5m0y3J%U> z4`#9%C&hUCIOg=dSg44!E`0o@HXuaQdl2~fDvR}cajrgA_pxkv*d)ultr^#MJh(m2 zI&jw^xoF%^p$M$h`x=}mIS6kGY4i<%#w>&H|18Q0`hLSuFv!Ho!^ zVk$aI+4I#`?_7JBOgOM*?E5(hIsKihsgksnjEKe?kHOXq81y!Wc04QmScgVq9UJ<- zw&%yR7<;j`-HYDC345o(A=%n}N2wO|5LppXmdS?^ z$Sa}`>I21Qc9Gq7RkE=x!tBRh7Sx8=a-pvYmn)pU*>N;I*ttjO&{PC5EjY`=vHnow z=GJ4;@uzy`keA~qVc+Yj#w?YDw%j^Zk0|mO?N8YZFSyEblmFYtN}j5{EkV}GURp8( zcz1D99iFcEj%~DUb39|Spm1qNV=7**!O`|0EUfvvE#Ka$1_VbB)!Rppibut1>^`W_ zyeYUjFjYb_dQppR$GuQI7;@2nOL6o)-iMb?W$}C@=O4TD!TIX9x>B~n&i57G8AB?Y z2?hGMIN~p#(lhAMkJ{Q9a1kd;`o@*yN4>eQ26!CWI{=wh!=WQLJqZ8wJbvJa#rHjL z3a+1itesZhha0Q1PMBcN?K}S&??F8hO~04T-O=Z9ZNYmux*+z$%-E1p6W>0`W)#oi!da80i6sOb0)8(J?aM+a*f7rE?Abrv%dc0VA z(dx7-R_27v+xz<`)I3ZJOiRsn#KUH{23grhj~`#kx?Y0!s<{u@5xe>}wyK~{NJhA+ zmrzwDouZs;Ue#oii)$P|o@DS*OiQX+Sa4*wj*WE{Cd_Am*?UII;&z@h`f;MW@Z&R) zIeoq8f8pUsT(4(}X^Fco%Ac1>H@`5@daEKic>yjA0q z_+YnOd&R_>80ctgNdJ&PG@uI2f$ST~wLTze1J|4;@aJ=Kr$$9TYI)5~TuD(>t&DeL z(^=%gmHOx!YN*a!(iADsjF}1d+g-!f@8>U(bV6JEy+F|>7p}l#Y#bi#33Uw#+&iSk zv#*jftm`T)bnph}1)&x^wH*Cu-mL3pvGghbTN9TLamUVb^|jCJe(&jbQR-NYhi2eO z&KcoQvv_EWT5;V&To>sg~C(pO^~ptcd0IRJ#YnQB6|{+PC!0 zA~IJfWqpD*T%EfQ*47u?AH@W~SnSU7paYCXsgo;xN!`P!lECrmj{JfU`07xNG_|eQ zXl^!m`T*}*JGHOmv4{YR9G2GX^3-%KLh{n{+qe=T+TxugwM>nkFY@H}@u*_X(CH|l zs?7XZb$z2XR~(UDzSmGa_-TjpHr&XtR1E5sI++90^!ea>;m{F`&wCuZ^Xut*oWaPAP zR6od$xXKa6Y6V+1pNsgAZp$mjSr{sBZYIlxlXT<~VU;1w3^pkB`yviVp{buVg<2~3 z$~c~0t2`3cR6l*u^^#thbKYyVbLi~(@kcyQkvH}65e^Bv3TF5Y*N)`)_QYdt+nOQg z&?jakNm#dJP1zz{B67^i^_DX};xoA?^z`lu!Z|NH9##{b!Sv`_n9AOKX&|*vL z8i)aWtvRY;Y5SWwGKMZvJdPsPu3llCi*vfvU~K2LH~Qjv#0ad&rki0(mRMJ)EX9V}?R>^5ZEZd=K{fW#f(5z0E}Dx8?zzKq_5?cLVPJby?p zYWe-P{u3jyvgbMT)anmUP92W`#L9(nu8C9F>igS^>|4LJ>rCw#7((yj_JTFOdWs&9 zM0+ZBAl!yOt9Dgq&W`#NloAh>&9_GhXDfUS%?{yU0fHTQ6}~;V1bj zM;{$8*3KPNKpH;dPkM3a+ct}P%dBck==;_DWs+n;+vNj6EjcnK_`s-V%&-Zy6^#0@ zjCWkw^DWY0gZGWGZOKaZ^IEmzE#K$EPik{oQ1$ki@s7y zNR@Qwe6>*M!uG{IA>Mlm=IrHzb~+G?%WSRcrnXz%NsTToJ-;7&Mqx(E(8KqR5B0&8 zgw>Q+GEx>X*2X&J@DxOpFg^7PnKjG(oV4j{34S=VmPo-rgf( ze+Jg_Mx*e0-i@w-hp^t0iD?ZUu|!MS?P_oGTm>llkZGUn%*J0=aoX&eUCCO*A~$?4-?dt6pSQe5#AgU1_b=^oiw6&Jt-c z%r%EH#^Isi zkEZRXoAh3FZKWp5T`k=teRk3Ve^lSx!&UgBad~#GyY?9ao#qb@i+8<=O(&tRmR@}L zB>4mDYemuN=fp;w{k7wxPkjRK4InR!( z9C>3ThghoM<_eud7o;3w@4{(28T7B-&q_F+z`zOZ@< z#^`aUtEmIj+z_?}uO*sOS9&pu@m$P5;dO!F8g+D1*_ZAzR?%I?=!8UKrf|+p&-2~F z0RCJB9y3*uvxMnRd};sd{c3*n{Tcq{9rywc9+!pv0yq_TOd0<$ZVT4hKkMRzZiv2( z+H(DPVN%RkC$}ySPsf<*M_p*7WtpAmg9*qf&%!MGX^-N?55lG$QU=}6@G&|mYAJp; zKylW>?nRH#!q}azYi*IOH%5ixNp=HHugA*7jvVLP&$U!Cp>kqOXeRuQI|jI6IUL}V z?{)7$P>+C&VYpq1^3cvB!j4$ey8-t`O5PiPlMuQmI`-()(?N)V6 zouB4-mmLJ*p;s;;^@6oCDz5t=G#tPmdUe~Kp}FwjRZmQ7O>&@<-Zu4;$rfKjpQHYx zAFnlyL@lm-q~{uhwe*_37%3R|epIHAQhjTOXKCvz?vcgD^t2H3pPj-r=Pw$(b6yz+ TgDF(78(}fP8tW7s!3X^hutRw@ literal 16087 zcmb_@Wl$VZ*Jh6ZgKKaZAh^53KyU)V-6dF%5L^cmf(1?RAi>?81O|r?+zA$(;0XkW z<^8ty$L{|6YImx-PWSC|`=07PPv7S`eJ4s&LkSm)5(@wTToq+`Z2$lxA2&G|1OPw; zf=!~2Cq8RF*Hw7?vkH&RmON^<5Z20>biW(KwqCaPw3FU;&- zC%WsHy$R0rH!uy2DST&Y8fR%5pH`h_XOdOWnrEYy=V(&mqF-LyQ{iG#bI5Yoiw!LPl@9X;Lz{b}8?)>D@`ts?Y^S=js zSLbJsaSgOooIb`0@zmDPfg_Ns*BVrhhahV;C3yjnnLu*@kZM$sm(}%MJTSww$rP_2 zxv)J*Tbu92GY_L0NF5*l^eN@xVKsZtaCBKE&CY2O!EOR?KK~I((TSv1`Xcw{ zS3=m2Yb>cvl6Nk-k#aY?H3e02o9+eKa$||p2451K&DFy*`GbT=>ZDz?6&W6P#3jRF zGuneQ20B&;XtacEY0{YC!^1NX2O1+@xZ1z49GNJwu?SNs^k1$O8mDMQ5~MnuQWOj; zS_H22vj{G@yY9adtA4}h9!k<55osam#4gWZfXmiDY7u$vM42}fUMC)2P*5V*tC_~m z5QAGppn}XX&(A-&V!$HIF#B$D#v*RL6$|6&>_^yP5#GB&C$@@r(F+`hXi{^yA247c z{!!g$aMj~)#xZpgFVAW>$tJZ-pR}>IvbR}#2jyiMxeGDfCF&bC5ES~zlWU0>us!WS zRPlfbwhV4Qk6y3sNjR{pI^-i4!VPWp^iPmZ>p<#w8Brv9@sgbyIt0<7I!K< z99c|RTv+UNKCE|cyqUnhQyc3%xIhc1qob=W3JG}rOZuAleldb>e&VcJqmo8vMpwp z<62{WFEi;l+P-+bPR1?#cAriDR`9@#7?RcV9M`4Jb6G{Fw`a294I~I#0gJ^BeO7Z< zEc%JQT@=%dQJir&zHga^Tg8d_(^8ZC7BY8onzO;z{!aLQgvuoFD!}?=t z^qt(Nr;B6s{LxrK{TvomY9v*T;ppG@GFPpV=n8XBzW0=)8H5joZf-{+UQTbk8?62u z_6n}3!ZzNI8kQ}izEZ)HlnD`g`EFm3FWX<>=1=}iXtQ6r@`q!zI0CGT&hNw<^5(ZO ziMm{@&l?Y`_x3JVQ>7AJH3YsHz7!El+Ua`}e(Y#|o1w_P{mtUvYp{5bZyuY9Zn2SV zQ}>+I3oF~PY~8f%=k-$`3|1`OY~X~a(`#d0s2HH`@xQn~sIY#uCa1w%z!JF14E&1E zzj~K#JKQO)9k*q_0#8TB(qq-la>RgiA$SRJ4l+Y!uXyWBDAEcIHC}u4?S2fkmoFI2 zJIYfVT&98$?=zE4H=Vxt>AU&TP5O1lc4qJDte9y{=3n$TtGy@;eagurbvC@-sTmQz z@!ZOvpF)0C;mQk*?@yu})o zIi`dvVE3uzAE#vI%q2 z1M+rr-t*T!n{~=%Is*i~jkJ@03dKun;yCeksSLN5>jPW5w!gX)qHo81V8Zc3UJpOP zuW)%{)~D#_rAZ7rm&g_|1qcP>t6|))+f30@R`>B};&|a|l7`bLxvmWghc#+j({A2` z+i6$BVN^Onm?yo}C!0kCPbZu^^XQz6>sLD~h8cgM?!T=r~1# zQ_*CK8QSNhM~r2n%7TI?u4M-r@rM{OUU(~t{3m)G{6_p`;<$O~v$#w4+B$T{{qgag z^Nf@fmovNJe)!du%}WTP(N~^3RDOSAy4UvI0Hsai-r=O)~-;9WyU_`A2 zKWNZjX1-nP2n{9i>jv++$L2i8d)XPxE1G8hm*P7)ERGTf`iP1d^!w@^53+wWvXA)q zPs9H-s9>s+WS^wfc|^0v(~(%5AG3?W?$-`*VbwSF?*8_cZK7)Y{@=y&9B}kKLVRLh=rlM#WjNtD3n@&qMQL=VV?t8ojaIcRAA?{vJ zpCM}WBzcNugrbh7(`Kd%LyN`htBzbRLi3q&4rtM^n{=Fwb$rmPeyg|t{(-1GYG|y& z;rw&F!~xMd^z)+W3+c1!eOZkYScYw>gib1b^2Gw(U;QPsx7Avx)moJjx&}E%R5W-# zJhWtCddOscjsrp%P&lDBoN4wJi zLXazc^xsnv3H{dBAUW0IV|Lf;ynva%F*6j+oOd<7&@rza^z4a(O3ZQ9@4Z1W0u59q zJHsPyr9EHeN>%cqiSPbES!z4SdCw<@3Ng3lbK@?FYU~5TyyFKBL>+au3GReP{fOmK z+}!2x(Ch>$lawG2KzJ#s*p##-G$vXdcbbw_zfsHFVKOV!8oHFUk1%Cv^hC){5dGpM zGafet3%IK+V0iA{Js#pDMV*S=$Dev`AJqW zF7kZ6H1xbOMpYb~`XXFcIFSG^tAM+YI{u}8h1j*p3$oQ(&fgr|^&E1uVKOB}p^+h| z?&!~%#|~-cZ^`#Ze$;pcV)Qgl#m_#n=GlkfZ+}_OAUGU8sdWn z(Mk>#c)lmZnA2jLX%HQw6bUUJ;j7Uk!=^~%A&q+3tL=Zf+Ljy25Ui=@toZ}cnb7`i zLrGr#T_$yoR*cOb9Fj5>@>5GgvuHL5MflG#d`DAA?Dsa`{>T!pSB)<~kY`_`642!4 zdlI%ia6d>}cwEFqzDye_n&kc@5tnKuNblgXU(<{5xHByZt!UD#N0BPCBg+e{JCJFSRWR*8rsFWXFVEXeO#+l(kv>sok2%#uMfRpZmMZ!Qfjb zr!@o4Xx!dP|C^Z~D8&zid^Lm^j*!!_J4G%AisPwos}E`+K`cY3`lcUhP+gb1ZcXBR zkSKdn+}^SKMS;{MP66I;n^|5;QK58+fmU>!?WGQDCXv-_Q5Koh_W|EXA9@$!hbYsI zuV|_(7)IIp=vvsTLWfo@dfftwl&mOP;xDQO^yhnLq8JQUQ7_it*5ckqtTMc^Bt(j% zA5Gb5sNv$cIpv~Q?vr&|t3v7KYvZvXodvi{WT0e$6Z=ib%A`oFYjD&zngP_^Sb{s} z#9`X-&8>Ayy06sQHTruVzKIZC8oEk8>GO=Npk=bTv_jllgCY&VrEA|C)FDrd$30Q% z`-g8@uP5CUaSdsNWl>n@VWF0Aa@c>&8VdK|CVB;c12FJ^RPg_8Ma5tH&;o`!ft9lv zjH|SWIaMF|1rncJbRa#cBAU-a%B}Vei`HOo(xQa-Hy!Y!Pu{`9k}FeK?D_f@HePva zuW{!p4vNBuOM~Rj=d(Sw0}|gBRx9VywyD+jdF=Nu_mIA^MB|s|KLPSwh1bcgBojk> zuc_Yf_Km?n2xIq4k6R7L(;$EEqS4<8+@jFe@civu{b#`~(_Kb-{3;K*wrCpl_cn^y zaB*F3LEj~Fc%TDx)d6&tuxlK9j(wa45~PKajm=QWIDG;R5 zdK6)BqSHV%y%$t8$fJhxZV3%wM6dZW78h|i&lk)HArLd$5Mc-Iq6mV;fx)Qk9QM;p zR+hC$fW+ae6vJt9bSD*ZTke$)`wWyC6A2>v`5p{xep>km3%=kBmH=viRasUqFNbjC zTa0nycRU;@NItAw-g!FG%7|7 z3aC&}OYen#nJnVs225W0qUH5(ET>rH9maSZIzn1Jb`xn_7IuSU`BiGpbE71I6mwn% zcE+5^;qiM*cPQ!YB( zn3F;-7I9qGELW!HgER{+v>I=mS+L(w0f}<{r(pwrQzNT4*lYgfb-sVrw;_BSw$A~E z#-msRHJhYRpjbxVms` zuf%#$aN=Bx;{(baIW>sDc*;2yF++O1ww%&GLZe;d1-R%t2FR%wK6RVn3gZIpW=|>5 zM6+$9X~PQ-<1`3$A-SC&$UIv}>JL?HkqT`Sl*OqBZF%Shc#^k2)?HuUO0D~YbLqu3 zEOnYNMIL_gj+>rNa?jm^nhyM7xenT%dQAdVICEw+QtrDu#CK4%+Ur4-(N~gT;gn}r zYpx150nZyO<4tYQhMOpACwRxc#X)$uhYd}*-8TCqSLIAYe_(C-OjzgG`81wT@cq^O zi6f~eMHGI$(Q*Dt76U-v{Zb+E+{{M<(Z^FPTt0UMa6;`eRV0E)78M;5CY7!K(fErfK<@R_hKs-2pa}O}=*lE7 zXLWo^7em8;F#QPapeKh-ho*J_R>!+S@dlSk!wu%5xmQ!z*5#1#C;6d;fwB?ITycM- zL7kKcSsVpG@EumtvfOLugb^#-)+M3lk3$SPbY0plEUHihy_xXu)Xw!x8v%GjbStCT zL3l4n9(;KYm(a$wbgeW;w+zdz0uXAJMe%0KH^1Af5(NI5cB%Go=^0wZs%H#?c}ene z0i;3omt=i`KmhmUMOutS_OhA_4oZKoz8pHKXV4*K#eePh7Ig;@an+q zK)rO358nlFM1k55C@d{a4umHIUIxpPaq{(=jNo4ViqSdSPZGqtcih$ z$2x*RA^KdUzkb=I0&R`mX>Tx*drbPo0CqY#PFJ46j=20vaUw8YNy)%Qg^@AOBneci z3h4o)PfQ7Ir=!&lBJ~Le8C3ud`os$P6g_n@hJF|5nz${);P~N2sPR?3x+B1`Sd?V- z0l`n-?z8|PiZ-I~N7G2xG2Ye%etlm6dVax7@}o5wqAZn-Vfk0}T_tjL+UhHGeewk< zs^Kp06hsK&9mdP*@c@Jpm1{_m6k(r-6ipNdN= z17;HO1?B%TIWWdIX4aR|!itnv6en?<9W6`yjDht%zU3Mm++jX`VDo#DK~VvV;wQ-9 zu|}Qf07dmzTc%?t$e=18>&_pk2c!b|s=z zce(OVH5W8{78(U=&3s^SGV4*@e9LZ^en&UKBeMncW}z&8FIi;c2gbZRhAV)Urv4qG zRqDXtSBBqVn82P7b2Lc=@X)~^qeqA0N%}gy$G=ZPYL)cHO%-&@3aXiw#ROloo0MED_oe<-Iyal9OkoEHhcB75%wf`Kvh00ICC$O4G})Aj-P z_yvhepa@ES0{CNn`@bAO{~cR1u)e?z7+O>){LsiMNK*o^?Y$&KLm4=I4sFo0>(}EYpOI=KuoqTcOwFGqv&fUf3EKs0cd_8_n+_ z@I(~*o%Our0|BibZ0#nbfunaXJ7gpD!kB=;ayP<7-d}I@|L)xEV0=od^%(l&hLsyt zME-JMMqx6C=jiy)>g#OKE(nP;F`6`!?hFj=YWv+|p0~7TG z!Nm6+r>j(`WqD`^mrv(`8-A`Ps6(ky0A_>X-cXTA zj3Ytperwje^6$lVq|mxDHdP}eR5kIah8f=~fQ*AN% zJ_i=x(1XFqb8L6&9&!L)3>eshHpFo4fdsaFr5#cxUqRp+eCIv}SQ2BT#cHAf>6bJ# zT|}?I$O`IiMR)Ru#pgd906{uxEpQokS3WS_;RB$UFEMf7MYT^pj(=GQH3cIZ9*BE+ z(8ke#(rX{~$WU0VE{UuOW1SgpVPFU@04fQkIfRR(D>&UtI2@IOD`@PVJ3z^IeG;Zp&l4d{5uN1955utP$yL!;g?>40scB8m#U+iY-Jr+-gPgS;+) zT>kk+d5{PqSN`C%Cj@eXuC)*TnqKVvy8Z`)Wl$FaR%NVok)D)1JBb0<54mqmCfw6^u~rfKLFg# z-%kRzU;90a+a`a4Trsr+ZDqlKqVmC-Um&I@fFyk&Vygw1)?mjRwEBCN7`iG7G(6cp z5?QKEi41={kav3aiOb$DE$o2`8_9ku!H|tDzgvUIhiZmsQ#1ZeWu|08=1qMM$Bbk* zp=B?sy8h|Y>3WzXA0BObY}f11VSuRlFa6+`?=U&W!X?bd*l57MGl z+a>bMe`iv}HaqIBB$xq0d$ZJHHlh^l1f{@|_tYR0O49{gB*6jQ&dEm9!2%Sp(r6x^pqs-b7LK3O!N8T+v^u+m}Haj1#q5 zNd7I3v!Ty$G&)l7PO;k^!Q6dwjCqY?DJih6t&@V`u3J$4W)Y*~+jIfwvpw3(5xFcH zu$V_|bE4f;rMrKOLrX#xu|XbIgCkp>3ix-|gZ@rRe1yMsb^=3t2Wqae^q;DONX#V< z#Wl-j3x-hr?xyY?BVKaXbv^t`1gI@}22if`Xlc6*0k2Uy?rLGz0cV0EdM<~krb8h& zSGVEm9tu3jSngR_=*WNzl2kgpn|Vp4b`HmWBH>4Z>AOyJKxC+ZwpwHC9Km`LdZi?- z8#}3UN~t&jX_5xYw|JRraC&M+(OK;MHN}5OuoBhGM42u(%0C~iNsU@0uONVAyMD-F z2gID|N1uquyJR4XQ&{*sp}7Vt3SX*dUhLFnyN$>Q0T~tC@jdc)){KDaZc!S;<%SLSAGO{+^lluKVD_A0iW$tO z{rRKD69-<-*dG1`Q2PqJ7KsGB zzsNz;Nh=dODxGUoI7lsMeU=ZuvBPH|$?MZH}E|@%*F!1gHsZ2^yxJhK?(S9dZ?<1>p)$)f>{_rkKpkkG5F{6$0F75oo1H zR-c7-n;U%db?vhOB+;9JW87NVzls2Z@F>dv}|M`65QclK(Lz#>!n>6S1+INo1k|E70zft3_2O` zneWZCipf+G8ZRfvokg-!7YD(?`DN`~>uewW>%3-hR#snJk0UTwQkJI;&MjBNQ6Pbg z<6e>c$l{|JIC)E#g_~=HXNls`KL?#%ULn3b*JMKOl#fu0dQ|CD+b1`u3o;|E#E^Eb zrFcliY_f_@MFl40_KZWOiY#3sOy{_P#A(#zAoSuXGT6vwq8tR@7BT`JRn|1C5}`Y$ zGN^^4vi}u2a>oN`oP;hvr$vZdh@BhYeItGy%DSmdz-U=#itU%rHA_%4Z}}0>?|s4r zuucv!LUUwVsCvsnafIs7%uRa7(}I+Ze?iNnWE*YITW$&{{7q5 zHh4n>P?|xMBltc$G*TeB_6!RgR&i(o6(T{XeHDhH$RF@i6vpkAg&3BZ zT55&1YhKd#tqOft%_l_e#DUJrK_r8i-@%bOH3@Qkl~sWa{mOejSh;b1n37vgfS@S5 zBbbQim9hbY86;Badm(_X4q6I-j)i`}SrBU0yib6zAVR41+8A8?SjLp+lfLO|%=3sc z?oCA-FS}$I7SB>Gf+5Wzz??!K1scS>M*|08MvCZj`DJ9+Swlo8y5V!d2UC_DV;!^4 z^#`sC?G&g{H0iFtfGr{PghI*x1va2#*9UXK;x$YNJ>2YFmDq^g2&KZDLOw^{a z0kgg_srW{j7FEMJ()tNJUL=9NP?U`}i$eyCTh3X`h+QVpN0;CsnS!8Ix~d^Y>p_u|^OMCeeW9~F&Uz_9sjG}(jH2`~KLdFG z`S_)Zr*l<$Uj$#TfqPP4)+-X7e+&n&aLv4!(FV&QxdYS=#aqv4Q~}S@L-9-R8(-Bn zBSrsyEvu-0^**oOkqYWr(224Bx%1!eIltbzR4}lGU&s7D{_>i|0@I%5RU%bnmI2P! z`XW+fYjeytUIw}b2?cPciG$*Og^7rH6KI5x+gZ@VNBnF5{e=X{-Kqa^MX`hu5&Ncp z8~u{B`a4`Q$PA#E_x&P@T&&`(NU~V3phhqnZ)Gi$Sc^>F?&696ITO^62=TNl>WvHL ze$Qg=IltZCH624lHbALTdpQ;U>{|O2Q=4YQ@M5;MdM;VLNP@+y_4VJYgPL9Fe-� z_@F50cF|(7HD{tSBJQ?M-z9AWdz12#RKkFw+{^4%S24v@<_7ah0TuW*T- zN)IN#_Yb)7c?MwUVy~jifs-QO-Y=Hh_eN*?hYWVyotyurL7+gs`(1GBXWzSF(8+Pg z#IIC~4-x(U%mF%dp+5uUT~t@_hq$U+nu zDKg}5#Qo;1uiH%W;LZ7Zs%F1GF&I1JoA%f6|=Uc+8R^0W?CN+ZQE%&}52LFC`=>_a;+`&Q~n$E;H4pQyer^=bre2hk+XA%9WTX9i>-f}1Oh;sq4?2?iaf7H}Fy^>CZobVT>F zt%!>-yV8zD3<$1syNh_ZZwD+tja~K{o)wcKJ72FVzSVu1B?ojyI-SUTe}WBM_6eUt zE{Y3ZuaPk-z+r3n>%jggZ2uLq4TK)Q5-Kl>JR zAJS3{J$dqw#}3>&P$3cpvOt#_q?mvv5sIXfF12mbYaZx$vU<~r2lP5z6k?$+GJ#9k z>2?d<`dn$GTOn}Yd!&oLcFzplGx1Z%Y;GXpqH->aS%J$ivn2pEM+>mhDnBHE6E5%G zqSv_B(IP`m=C3|_$e4jH-#5}*r14y{G(T2bd^q2n$m;Bnc|Usi2At9by)XdY&prKd zY(2Ry6>z@F6QBZ2&E6SY?o_5dzx=Uw_qQ9z#=7a@^7?N%7_~_+bN@1>V;PKKuRnXy zKxk&Su4W`&E;#pO+i|?ibJkfwyc`=)fj+o@3_nf+tl{5Cd9RhS0=F8ZIEc%tg=DH1 zr4u=fqA7AL3~W0K)C1cmV`S^3UVDt~;gx9Yg`65zkf2nrf*gr%FERsu+mFafb#hIrBdsaavs(m)$IZue=2Kn#E`p0^~f0Y5;8-RN{O8^Xog1})&03?eY}`TA&mO|UAYJ!g!pe59*&@ShyQ9t#T9V%o7& z%-dUc4De9hB3#a4prvI-AQHA+$DY$HO?43_;$~21k1vTSc7D#@CV+%Zr=V27uJjWo z$IJytt50}`>yMcn_*M*{fy0z*c&faMO_bzl$GeTp?sM{Y(7KP7`k^?XNO)ddj7dEU z#XmC#VW}+Uj~kBSVnny?1oaz~>>-X!NhH2n!jyXLJ;M@j*h55>p2{*l!98Dm&)WJuIc3B}}NNZwI> zdk7hPjlg*ov$KBVT|0tZ;9F!~mmW2dbieLrVyk?=m}U?dZ~RV5tkITul^g@9VTxPa z_!oB%14{jwd}*;+J8qz*^z{elB|UkR-V$dA{T&kdZ1~%>cZeW`&D;)kQFHWvT1c?f zHRAZim>4YuFH)+ZQ0jzTdDTMt8(KF$G)$PN<*88KYDHqjXT`*_~zI!Q39j0;i6UMnA_`fR|JY)P^QSHkdD9|uoiL)KCAnK2F81qGLlKR@OkwOzQv;^ ze=|X4pHojCRu6|hrh!OEd~}{nevTUqdQjgofg{Y6w`K0+|n(qb4d2d-3iX~)l4`7bvhBhbnij>c!@H0i^4O;RJP_v zDB2N`NAD?d>Cir+?sDA;E0gvER!g(MY9 zJ_;d*!hDHOc{<$w95m2x3Wt*t5WGt2V(J_`MdpH3__6^{pTKr z1%8|va@3+#246oy)^JqutIO{RM}usY`*eB&g5Ktae^PWDXrhrY0@%D$nVm=s&Fbu) zVo7CKB?0WxrO(9q)O=!0!^fk*8w)QKxmx#qd9OsLbHF+D0Et|!OmEL-YL}Ox&7y+M zfG6bOYt5x@mA!jkhSnEa)1NDY7awnc2>)p5SUWV}h0;!wTqEKoJ%M{~a;06ts$bju zQik6F=^zCR*4u7{Esy{B*qjy?)wr%|F5<^niX-a2Q0HPpsg?d(+uPDs=k(g(%aNlH z4sc677iT9&4ZHm_ixMnyzsK}z|Mo86;)RkuT+RUX5(cGqs3E(^Rj0!rO?c-D!nYv- z6C|kq?qkF_5@E4-m%|OC7-WUQ;j||T!ETXD`6*y(T^4ErUQ&q+_?fRKI)^79`k7jg zV0?ygUG}pl1JiPD35k?d61|N<0!1jF7YOW&W;Fg^k9g79= zZ!3g%Rrr^c%w?2dFj1U~xq(Fy)fJV0&&GDl>LpK>O?Ae>mG^x zMnWbf9<;Tp%fBj8iSyVH^pWYeU9sDwUwc9fc|B!&bnsiMC~sGzQvmm$7>A+;pHOw4PqifW%*}+6p$fr7EaOQ-#leTCph_M{XK9k)6?SB z(<>HwX@Zmfb^7T!ErYqOw~HIAy!&f}guLTgFHGp>*S7QmZmC`}yp)6rQnqwX{qt+g z7%P^`@#D{tsnE|n{P)!4PE}Ag+xf&Tf!m!EYC4SHDkELJOgJfA3nu#i3#ODn~ zE_?eMo+{E@%$!MZGw*Ky85e#)A4JI#@w)pIWy_j>!#=i(yQXJp{h-dpheWETZ?{Pd z*WvVxV{5L;U~#hf8RxD<8lpXy$IRfqBN>5!g_W6prtsNdoZ**?UeF7SZnbi5PT@H3 zq=--j%{6jP|{ybVe?5cEkBw48keb{rR@XR5RsPj*KobODRaLi^|0boeI+G1wV{XpI`Zo z1`EI%4uwZ><1Ib`3KO`6D8g4b$7=8 zLhruvLcuHimXmhk3mhvGccNRohnw zU$)b}qbE2?IU_y^`nm4DZRhru*@6T6q2ygFO|Z=#2(^k!fV}`SIhhC!|W9I zN{ydCz#qAd$dguCT8Q#L3<2}=0OLfq;dHWKpT{0(?*;eN_9fHYp2V-(Gz5!G(f%U= zgJOjKDBOY=DN|XTo*#bUW%_;+8X(2ARq+rb`{BSWD27BK0eO&>~|Jz@R zbE|`3BHsMit#VyyiHmq-=%ksp_5FE3veEC%1AleI1XE9Mva{=M3P)7_jBJdX4Yl)(+@heybYy~nEC2Kvx<8i%!O6M>ztF6 zhpF9$A7}OnK|Aiesjh-e1i0P5tB&Dm~n+DANlI(z&|tb%O1(FLAjE zZ;mJhD4+y$YhUJ(G(bz9>^eQO5P~*LAI^#D9By<(HZ=c(kFhr#_o_voN){rwmA{p8Tbcqx4Rx{{oZqyhOSA{{Rm)*$>mNmLrMS2Lt zM=Vw+-h_3!lxmM~ZDV6QPLJ7W_0R0!Xkj$2P{q5tvQ~1-I8EnFu2%cAR2!nf*Luj2*G;Eh&mX(N?a>LF@ z&FtlK^*N~Rv_le(De3BWPJDqHxT1Axqb2h*gv?`~a((UTgJ@)0fVZ>Y-ZXBcJ^~R# zNTkd+Zu_b1O(|XX$5L&^u+ep>WQ01*VRi{4&SUD3Fu~|27Lhv*`=@QFt>O=X*XS9~ ztIfS-wjXRo$ngbb!BsuXP{Dot^!hgXwe%-Y)u)Z0TvS&-BVWnCqZr(_aAZ()OTtKt zBIJDxpk2kHbQu$5rf;IpU+#1shO{3Q$&6B1qrOjOvi2VNqbWcLHdcp`3;u*GQ(}P> z>hKSV$2VKq>CyjOMu0Xw%v`^nwq(OV%gj(ykq;>;%`A`KDBJeae-FKm#T*E=+GZwUA+697{j}X6A8?wBP^9V!6-~s*0X+!h;XCUn;N~Kf8$z zB=G~c#lC%-9|X?Ws$9bw9wLPAn-Gn&a~wXw5ge9o>9g_vn+>l_LcSyh3-3hENP`;x zNLrr51kAK@Om)DNg{u{xLbvcDOz?%=-cck!0+yiWb>k!@Xe>;M-n!QFqibRjw8G&y znYX5_JM*;$1oVVJ(|$I`16UK&yU>SvmV^1ZAsi5HbCWNAwdKsY0Vd!@7h?ATS{)vx z$IPW{W>{;R1mi)3Ut(375Z}Yt|TbzF+dJRL*#L^X2!0R;9k4_bf*31wE%FoGc zzcX^ymiR$;{nBk)zYIZc+L4?fz2{@E6cI0a0dz<>5iNRq=%Ek|LDeHRIJI=$wy@fl zCE?Pa7|BIJecf4LNFR}_WJT&o-HF7sFlhPZ$NrkN4qR~CEq#0)w870B4SRGsmz*{2 zWGl$3Q>*oj);^R|y=K^VR~Xj9nSQ~ehDs0HOCNzf=6)B#q~Wl)y=uskn9K`-;2deM zuqgQn&ovX@)K5azB`W-}XqOk+Ck=uHkvfp^y@phRm%+pOL+sZ2g+5 zVqos%=kd<+s7Ckd0F)tR?xa&p=2p}1AWMH^WoPKqmANW2#59q+fmrdg_ef~^9TlNF zv-t!Gg`t^~q_nYXRxn)0S6kZ#OqBTf#5b{9(Ao>yAQVc^xek4*#3(ovB|@LeqBH1- z9_{NAdu$bjsrVjAh7+y!tw9xG?O8njl-9&Hwpbk6fZHV-7zV`|q*yS{M~luN7*F!( zdJ3`k;2y4wEN+bcGH}_jW+nnHVE(1|9H+k+&7|zTP3wW)_rnLb<0WsZ@KD~s+A;L$(P3 zDYCv%w+^lShy^%)#OP6!LB(fvuf2dcV$kJuVG@@?J8*USmHb=`KuSWnP18 z;yEqKPVY~b*ET>AfbSWek}K5pYtR9HM8`~HqXuT~VsqQkDFp`NMniRshko?#ONP&b zSK15kvVH77?w`X;Kbpj(KMJ5BN9M>}mM#J?Fx+o$a&lTL)$KxDyBz>zChd?VS7@fR z#w_)3S}s>bF|dyZKy^b=`g_6r3$S#*6!PxQbic5mUFOR?l{9_}rxgBp6`z4&0Pe)< zx6voAD;C!u_c_2de~aP=Hu5^_JY8R8iHnS@g5CjeC@o0y@@N$pJ9x7~fK_scfg@`h3Ei@Z(p~CLZKmrdlfjAhWNn{<3`wl%|A#%D`iq zqjdLH;_Jx23~@c$AJj1R>B*u=2#VhiCziOrFA|y2P9E{IE0|N`X@QB_`1}!k^YN4Y zuKJHZ6Cg>!((SJ8`8(2IQM(918nq*P>s5!q26I98DU6}nZ?I`pD%(0GsZ8ydC! zetT{aF36aAxfSj0(Ea%Wc+-ffad)P%Ro#&+dB;F`=dSNuc?{xk;HlzmL=qvb((ehp z=hzxT)O&E{s9%kjs+c;r=TEz~$K`xV9P$1L+MN=3;)4Na8!(K=gzL~z88MI8{62S= zKt9$tp{XCigC(mmTta&;kI@ef;wi6WE~Eh|)9xjL&8dR(l9s;|^(_IN>z$U?y^m;O zXp!Jz^zpNfH*bRaK{cL1B{=AoVi?HAFZs#a8ZFg_q?m9Kg|)b54NSNc^c<)WXZjIx zNluE$FMjc1$aMH|E!=6p7+U?49W>1|XienxsKp1g++!I7tXyAAU;;`;_Bn4s_C2edwxPfDDUk$0jA4cEmfwV*c5^q3^ zuTl^j8EaKwl3rfN4oG}VJ^QL?y(hov3CwPm4B^4Ox+H;@XCCc#a(-q&QajmEN8-X~ zdsUJ_GpAY*71{KP zb5T}G_soxf@pD+F@2gXf@9&4EH`S_&#FEmgaZzgJHk-q?$vVY?Oh~8uGz00}ShF|c zA8bQG)AqB*#C&rYYfMDbCJePqbHACr|9aR0bpA^w@~qTyf~7{)n@R1=lYOC}z&~LY zD+`s&)flLM%bR6>#LYJ9PD}wpqnQy>*ftbeY%YsoIxVq;pTPC|Su8rY0^r@_THF7Z-SIzXba9sX#p{rdkN-*sC_EJmJ$2k( qdiq#-*a5P(Zq{~i6&EXeJ8e5FTff&sc9M@yfQo{Ke3hJK*#7{{#wd;e From b3434a20ce8fb1184c743dd7616003384b9d5d6b Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Fri, 22 Sep 2023 10:06:15 +1000 Subject: [PATCH 0614/2686] mariadb: major content rewrite The content was far too big. Slimmed this down and moved much of the content to the MariaDB Knowledge Base. Also: * \s to show more connection information. * Read only recommendation for configuration file mounts, solves a Windows problem where it appears as rwxrwxrwx and MariaDB treats that as unsafe. https://jira.mariadb.org/browse/MDEV-27038 * MARIADB_AUTO_UPGRADE explained. * Add links to related images * Add link to docker compose examples. --- mariadb/content.md | 322 ++++++++++++++------------------------------ mariadb/get-help.md | 2 +- 2 files changed, 100 insertions(+), 224 deletions(-) diff --git a/mariadb/content.md b/mariadb/content.md index 0015e02d7298..d17e360c636e 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -8,24 +8,57 @@ The intent is also to maintain high compatibility with MySQL, ensuring a library # How to use this image -## Start a `%%IMAGE%%` server instance +The %%IMAGE%% has a number of tags, and of note is `latest`, as the latest stable version, and `lts`, as the last long term support release. -Starting a MariaDB instance with the latest version is simple: +## Running the container + +### Starting using a minimal configuration + +The environment variables required to use this image involves the setting of the root user password: ```console -$ docker run --detach --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +$ docker run --detach --name some-%%REPO%% --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest ``` or: +```console +$ docker run --detach --name some-%%REPO%% --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 %%IMAGE%%:latest +``` + +or: + +```console +$ docker run --detach --name some-%%REPO%% --env MARIADB_RANDOM_ROOT_PASSWORD=1 %%IMAGE%%:latest +``` + +... where the container logs will contain the generated root password. + +## %%STACK%% + +Run `docker stack deploy -c stack.yml %%REPO%%` (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). + +### Start a `%%IMAGE%%` server instance with user, password and database + +Starting a MariaDB instance with a user, password, and a database: + +```console +$ docker run --detach --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +``` + +### Start a `%%IMAGE%%` server instance in a network + +As applications talk to MariaDB, MariaDB needs to start in the same network as the application: + ```console $ docker network create some-network $ docker run --detach --network some-network --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-%%REPO%% --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application ``` -... where `some-network` is a newly created network (other than `bridge` as the default network), `some-%%REPO%%` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. +... where `some-network` is a newly created network (other than `bridge` as the default network), `some-%%REPO%%` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. `some-application` and then environment variable `APP_DB_HOST`, `APP_DB_USER` and `APP_DB_PASSWD` are the application's configuration for its database connection. -## Connect to MariaDB from the MySQL/MariaDB command line client +## Connect to MariaDB from the MariaDB command line client The following command starts another `%%IMAGE%%` container instance and runs the `mariadb` command line client against your original `%%IMAGE%%` container, allowing you to execute SQL statements against your database instance: @@ -38,31 +71,60 @@ $ docker run -it --network some-network --rm %%IMAGE%% mariadb -hsome-%%REPO%% - This image can also be used as a client for non-Docker or remote instances: ```console -$ docker run -it --rm %%IMAGE%% mariadb -h -u example-user -p +$ docker run -it --rm %%IMAGE%% mariadb --host --user example-user --password --database test ``` That will give you a standard MariaDB prompt. You can test it with: ```console -MariaDB [(none)]> SELECT VERSION(); -``` +MariaDB [(none)]> \s +-------------- +client/mariadb Ver 15.1 Distrib 10.6.16-MariaDB, for Linux (x86_64) using EditLine wrapper -... which should give you the version. You can then use `exit` to leave the MariaDB command line client and the client container. +Connection id: 20 +Current database: test +Current user: example-user@bark +SSL: Not in use +Current pager: stdout +Using outfile: '' +Using delimiter: ; +Server: MariaDB +Server version: 10.6.16-MariaDB Source distribution +Protocol version: 10 +Connection: 192.168.178.73 via TCP/IP +Server characterset: latin1 +Db characterset: latin1 +Client characterset: utf8mb3 +Conn. characterset: utf8mb3 +TCP port: 3306 +Uptime: 6 min 4 sec -More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base](https://mariadb.com/kb/en/mysql-command-line-client/) +Threads: 1 Questions: 32 Slow queries: 0 Opens: 20 Open tables: 13 Queries per second avg: 0.087 +-------------- +``` -## %%STACK%% +... which will give you the version and connection information. You can then use `exit` to leave the MariaDB command line client and the client container. -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base : MariaDB Command Line Client](https://mariadb.com/kb/en/mariadb-command-line-client/). -## Container shell access and viewing MariaDB logs +## Container shell access -The `docker exec` command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your `%%IMAGE%%` container: +The `docker exec` command allows you to run commands inside the running container. The following command line will give you a bash shell inside your `%%IMAGE%%` container: ```console $ docker exec -it some-%%REPO%% bash ``` +## MariaDB-Backup + +As MariaDB-Backup is highly coupled with the server version, it can be useful to use the `mariadb-backup` in the %%REPO%% container of an explicit version: + +```console +$ docker run --volume /backup-volume:/backup --rm %%REPO%%:10.6.15 mariadb-backup --help +``` + +## Container viewing MariaDB logs + The log is available through Docker's container log: ```console @@ -71,14 +133,14 @@ $ docker logs some-%%REPO%% ## Using a custom MariaDB configuration file -Custom configuration files should end in `.cnf` and be mounted at the directory `/etc/mysql/conf.d`. These files should contain the minimal changes from the MariaDB workload required for your application/environment. A MariaDB configuration file will have a `[mariadb]` group followed by `variable` = `value` settings per [Setting Server System Variables](https://mariadb.com/kb/en/server-system-variables/#setting-server-system-variables) or [option-prefix-variable](https://mariadb.com/kb/en/configuring-mariadb-with-option-files/#option-prefixes). +Custom configuration files should end in `.cnf` and be mounted read only at the directory `/etc/mysql/conf.d`. These files should contain the minimal changes from the MariaDB workload required for your application/environment. A MariaDB configuration file will have a `[mariadb]` group followed by `variable` = `value` settings per [Setting Server System Variables](https://mariadb.com/kb/en/server-system-variables/#setting-server-system-variables) or [option-prefix-variable](https://mariadb.com/kb/en/configuring-mariadb-with-option-files/#option-prefixes). The `%%IMAGE%%` image configuration contains the Ubuntu MariaDB variables with two custom changes for the container: [host-cache-size=0](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) [skip-name-resolve](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) -These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or arguement. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `%%IMAGE%%`. +These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or argument. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `%%IMAGE%%`. To view the resulting configuration of your `%%IMAGE%%` container: @@ -102,71 +164,27 @@ $ docker run -it --rm %%IMAGE%%:latest --verbose --help ## Environment Variables -When you start the `%%IMAGE%%` image, you can adjust the initialization of the MariaDB instance by passing one or more environment variables on the `docker run` command line. Do note that none of the variables below will have any effect if you start the container with a data directory that already contains a database: any pre-existing database will always be left untouched on container startup. - -From tag 10.2.38, 10.3.29, 10.4.19, 10.5.10 onwards, and all 10.6 and later tags, the `MARIADB_*` equivalent variables are provided. `MARIADB_*` variants will always be used in preference to `MYSQL_*` variants. +When you start the `%%IMAGE%%` image, you can adjust the initialization of the MariaDB instance by passing one or more environment variables on the `docker run` command line. Do note that all of the variables, except `MARIADB_AUTO_UPGRADE`, will have no effect if you start the container with a data directory that already contains a database. I.e. any pre-existing database will always be left untouched on container startup. One of `MARIADB_RANDOM_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_PASSWORD` or `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` (or equivalents, including `*_FILE`), is required. The other environment variables are optional. -### `MARIADB_ROOT_PASSWORD` / `MYSQL_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH` +There is a large list of environment variables and the complete list is documented on [MariaDB's Knowledge Base : MariaDB Server Docker Official Image Environment Variables](https://mariadb.com/kb/en/mariadb-server-docker-official-image-environment-variables/). -This specifies the password that will be set for the MariaDB `root` superuser account. In the above example, it was set to `my-secret-pw`. +### `MARIADB_AUTO_UPGRADE` -In order to have no plaintext secret in the deployment, `MARIADB_ROOT_PASSWORD_HASH` can be used as it is just the hash of the password. The hash can be generated with `SELECT PASSWORD('thepassword')` as a SQL query. +When this environment variable is set, this will run the [mariadb-upgrade](https://mariadb.com/kb/en/mariadb-upgrade/), if needed, so any changes in the MariaDB system tables required to expose new features will be made. This may impeed some [downgrade options](https://mariadb.com/kb/en/downgrading-between-major-versions-of-mariadb/). Unless the environment variable `MARIADB_DISABLE_UPGRADE_BACKUP` is set, there will be a backup of the system tables created as `system_mysql_backup_*.sql.zst` in the top level of the data directory to assist in the downgrade if needed. -### `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` / `MYSQL_ALLOW_EMPTY_PASSWORD` - -Set to a non-empty value, like `yes`, to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your MariaDB instance completely unprotected, allowing anyone to gain complete superuser access. - -### `MARIADB_RANDOM_ROOT_PASSWORD` / `MYSQL_RANDOM_ROOT_PASSWORD` - -Set to a non-empty value, like `yes`, to generate a random initial password for the root user. The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). - -### `MARIADB_ROOT_HOST` / `MYSQL_ROOT_HOST` - -This is the hostname part of the root user created. By default this is `%`, however it can be set to any default [MariaDB allowed hostname component](https://mariadb.com/kb/en/create-user/#host-name-component). Setting this to `localhost` will prevent any root user being accessible except via the unix socket. - -### `MARIADB_MYSQL_LOCALHOST_USER` / `MARIADB_MYSQL_LOCALHOST_GRANTS` - -Set `MARIADB_MYSQL_LOCALHOST_USER` to a non-empty value to create the `mysql@locahost` database user. This user is especially useful for a variety of health checks and backup scripts. - -The `mysql@localhost` user gets [USAGE](https://mariadb.com/kb/en/grant/#the-usage-privilege) privileges by default. If more access is required, additional [global privileges](https://mariadb.com/kb/en/grant/#global-privileges) in the form of a comma separated list can be provided. If you are sharing a volume containing MariaDB's unix socket (`/var/run/mysqld` by default), privileges beyond `USAGE` can result in confidentiality, integrity and availability risks, so use a minimal set. See the example below on using Mariabackup. The `healthcheck.sh` script also documents the required privileges for each health check test. - -### `MARIADB_DATABASE` / `MYSQL_DATABASE` - -This variable allows you to specify the name of a database to be created on image startup. - -### `MARIADB_USER` / `MYSQL_USER`, `MARIADB_PASSWORD` / `MYSQL_PASSWORD`, `MARIADB_PASSWORD_HASH` - -These are used in conjunction to create a new user and to set that user's password. Both user and password variables are required for a user to be created. This user will be granted all access ([corresponding to `GRANT ALL`](https://mariadb.com/kb/en/grant/#the-all-privileges-privilege)) to the `MARIADB_DATABASE` database. - -See `MARIADB_ROOT_PASSWORD_HASH` above for how to get a password hash for `MARIADB_PASSWORD_HASH`. - -Do note that there is no need to use this mechanism to create the root superuser, that user gets created by default with the password specified by the `MARIADB_ROOT_PASSWORD*` variable. - -### `MARIADB_INITDB_SKIP_TZINFO` / `MYSQL_INITDB_SKIP_TZINFO` - -By default, the entrypoint script automatically loads the timezone data needed for the `CONVERT_TZ()` function. If it is not needed, any non-empty value disables timezone loading. - -### `MARIADB_AUTO_UPGRADE` / `MARIADB_DISABLE_UPGRADE_BACKUP` - -Set `MARIADB_AUTO_UPGRADE` to a non-empty value to have the entrypoint check whether `mysql_upgrade`/`mariadb-upgrade` needs to run, and if so, run the upgrade before starting the MariaDB server. - -Before the upgrade, a backup of the system database is created in the top of the datadir with the name `system_mysql_backup_*.sql.zst`. This backup process can be disabled with by setting `MARIADB_DISABLE_UPGRADE_BACKUP` to a non-empty value. - -## Docker Secrets +## Secrets As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: ```console -$ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mysql-root -d %%IMAGE%%:latest +$ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mariadb-root -d %%IMAGE%%:latest ``` -Currently, this is only supported for `MARIADB_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_HOST`, `MARIADB_DATABASE`, `MARIADB_USER`, `MARIADB_PASSWORD` and `MARIADB_PASSWORD_HASH` (and `MYSQL_*` equivalents of these). - -# Initializing a fresh instance +# Initializing the database contents -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` / `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. # Caveats @@ -174,7 +192,7 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%IMAGE%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Use a named container using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. - Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: @@ -186,7 +204,7 @@ The Docker documentation is a good starting point for understanding the differen $ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/mysql -e MARIADB_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:latest ``` -The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB by default will write its data files. +The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB by default will write its data files. ## No connections until MariaDB init completes @@ -194,171 +212,29 @@ If there is no database initialized when the container starts, then a default da ## Health/Liveness/Readiness Checking -See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `/usr/local/bin/healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the script's sources to learn about how to use it and which exact tests are provided. +See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the [MariaDB Knowledge Base : Using Healthcheck.sh](https://mariadb.com/kb/en/using-healthcheck-sh-script/) to learn about how to use it and which exact tests are provided. ## Usage against an existing database If you start your `%%IMAGE%%` container instance with a data directory that already contains a database (specifically, a `mysql` subdirectory), no environment variables that control initialization will be needed or examined, and no pre-existing databases will be changed. The only exception is the non-default `MARIADB_AUTO_UPGRADE` environment variable, that might cause `mysql_upgrade`/`mariadb-upgrade` to run, which might change the system tables. -## Creating database dumps - -Most of the normal tools will work, although their usage might be a little convoluted in some cases to ensure they have access to the `mysqld` server. A simple way to ensure this is to use `docker exec` and run the tool from the same container, similar to the following: - -```console -$ docker exec some-%%REPO%% sh -c 'exec mariadb-dump --all-databases -uroot -p"$MARIADB_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql -``` - -## Restoring data from dump files - -For restoring data. You can use the `docker exec` command with the `-i` flag, similar to the following: - -```console -$ docker exec -i some-%%REPO%% sh -c 'exec mariadb -uroot -p"$MARIADB_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sql -``` - -If one or more databases, but neither `--all-databases` nor the `mysql` database, were dumped, these databases can be restored by placing the resulting sql file in the `/docker-entrypoint-initdb.d` directory. - -## Creating backups with Mariabackup - -To perform a backup using [Mariabackup](https://mariadb.com/kb/en/mariabackup/), a second container is started that shares the original container's data directory. An additional volume for the backup needs to be included in the second backup instance. Authentication against the MariaDB database instance is required to successfully complete the backup. In the example below a `mysql@localhost` user is used with the MariaDB server's unix socket shared with the backup container. +## Backups and Restores -```console -$ docker volume create some-%%REPO%%-socket -$ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/mysql -v some-%%REPO%%-socket:/var/run/mysqld -e MARIADB_MYSQL_LOCALHOST_USER=1 -e MARIADB_MYSQL_LOCALHOST_GRANTS="RELOAD, PROCESS, LOCK TABLES, BINLOG MONITOR" -e MARIADB_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:latest -``` - -Note: Privileges listed here are for 10.5+. For an exact list, see [the Knowledge Base documentation for Mariabackup: Authentication and Privileges](https://mariadb.com/kb/en/mariabackup-overview/#authentication-and-privileges). - -Mariabackup will run as the `mysql` user in the container, so the permissions on `/backup` will need to ensure that it can be written to by this user: - -```console -$ docker volume create some-%%REPO%%-backup -$ docker run --rm some-%%REPO%%-backup -v some-%%REPO%%-backup:/backup %%IMAGE%%:latest chown mysql: /backup -``` - -To perform the backup: - -```console -$ docker run --user mysql -v some-%%REPO%%-socket:/var/run/mysqld -v some-%%REPO%%-backup:/backup -v /my/own/datadir:/var/lib/mysql --rm %%IMAGE%%:latest mariabackup --backup --target-dir=/backup -``` - -## Restore backups with Mariabackup - -These steps restore the backup made with Mariabackup. - -At some point before doing the restore, the backup needs to be prepared. Perform the prepare like this: - -```console -$ docker run --user mysql --rm -v some-%%REPO%%-backup:/backup %%IMAGE%%:latest mariabackup --prepare --target-dir=/backup -``` - -Now that the image is prepared, start the container with both the data and the backup volumes and restore the backup: - -```console -$ docker run --user mysql --rm -v /my/new/datadir:/var/lib/mysql -v some-%%REPO%%-backup:/backup %%IMAGE%%:latest mariabackup --copy-back --target-dir=/backup -``` - -With `/my/new/datadir` containing the restored backup, start normally as this is an initialized data directory: - -```console -$ docker run --name some-%%REPO%% -v /my/new/datadir:/var/lib/mysql -d %%IMAGE%%:latest -``` - -For further information on Mariabackup, see the [Mariabackup Knowledge Base](https://mariadb.com/kb/en/mariabackup-overview/). - -## How to reset root and user passwords - -If you have an existing data directory and wish to reset the root and user passwords, and to create a database on which the user can fully modify, perform the following steps. - -First create a `passwordreset.sql` file: - -```text -CREATE USER IF NOT EXISTS root@localhost IDENTIFIED BY 'thisismyrootpassword'; -SET PASSWORD FOR root@localhost = PASSWORD('thisismyrootpassword'); -GRANT ALL ON *.* TO root@localhost WITH GRANT OPTION; -CREATE USER IF NOT EXISTS root@'%' IDENTIFIED BY 'thisismyrootpassword'; -SET PASSWORD FOR root@'%' = PASSWORD('thisismyrootpassword'); -GRANT ALL ON *.* TO root@'%' WITH GRANT OPTION; -CREATE USER IF NOT EXISTS myuser@'%' IDENTIFIED BY 'thisismyuserpassword'; -SET PASSWORD FOR myuser@'%' = PASSWORD('thisismyuserpassword'); -CREATE DATABASE IF NOT EXISTS databasename; -GRANT ALL ON databasename.* TO myuser@'%'; -``` - -Adjust `myuser`, `databasename` and passwords as needed. - -Then: +Backing up and restoring databases is important in containers too. The documentation on how to do this can be found on the [MariaDB Knowledge Base : Container Backup and Restoration](https://mariadb.com/kb/en/backups-and-restoration/). -```console -$ docker run --rm -v /my/own/datadir:/var/lib/mysql -v /my/own/passwordreset.sql:/passwordreset.sql:z %%IMAGE%%:latest --init-file=/passwordreset.sql -``` +## Frequently Asked Questions / How to reset root and user passwords -On restarting the MariaDB container on this `/my/own/datadir`, the `root` and `myuser` passwords will be reset. +This is documented on [MariaDB Knowledge Base : Frequenty Asked Questions of Docker Official Image](https://mariadb.com/kb/en/frequenty-asked-questions-of-docker-official-image/#how-to-reset-passwords). ## How to install MariaDB plugins -MariaDB has many plugins, most are not enabled by default, some are in the %%IMAGE%% container, others need to be installed from additional packages. - -The following methods summarize the [MariaDB Blog article - Installing plugins in the MariaDB Docker Library Container](https://mariadb.org/installing-plugins-in-the-mariadb-docker-library-container/) on this topic. - -### Which plugins does the container contain? - -To see which plugins are available in the %%IMAGE%%: - -```console -$ docker run --rm %%IMAGE%%:latest ls -C /usr/lib/mysql/plugin -``` - -### Enabling a plugin using flags +This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Official Image](https://mariadb.com/kb/en/adding-plugins-to-the-mariadb-docker-official-image/). -Using the `--plugin-load-add` flag with the plugin name (can be repeated), the plugins will be loaded and ready when the container is started: +# Related Images -For example enable the `simple\_password\_check` plugin: - -```console -$ docker run --name some-%%REPO%% -e MARIADB_ROOT_PASSWORD=my-secret-pw --network=host -d %%IMAGE%%:latest --plugin-load-add=simple_password_check -``` - -### Enabling a plugin in the configuration files - -`plugin-load-add` can be used as a configuration option to load plugins. The example below load the [FederatedX Storage Engine](https://mariadb.com/kb/en/federatedx-storage-engine/). - -```console -$ printf "[mariadb]\nplugin-load-add=ha_federatedx\n" > /my/custom/federatedx.conf -$ docker run --name some-%%REPO%% -v /my/custom:/etc/mysql/conf.d -e MARIADB_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:latest -``` +- [MariaDB MaxScale](https://hub.docker.com/r/mariadb/maxscale/tags) +- [MariaDB ColumnStore](https://hub.docker.com/r/mariadb/columnstore/tags) -### Install a plugin using SQL in /docker-entrypoint-initdb.d - -[`INSTALL SONAME`](https://mariadb.com/kb/en/install-soname/) can be used to install a plugin as part of the database initialization. - -Create the SQL file used in initialization: - -```console -$ echo 'INSTALL SONAME "disks";' > my_initdb/disks.sql -``` - -In this case the `my\_initdb` is a `/docker-entrypoint-initdb.d` directory per "Initializing a fresh instance" section above. - -### Identifing additional plugins in additional packages - -A number of plugins are in separate packages to reduce their installation size. The package names of MariaDB created plugins can be determined using the following command: - -```console -$ docker run --rm %%IMAGE%%:latest sh -c 'apt-get update -qq && apt-cache search mariadb-plugin' -``` - -### Creating a image with plugins from additional packages - -A new image needs to be created when using additional packages. The %%IMAGE%% image can be used as a base however: - -In the following the [CONNECT Storage Engine](https://mariadb.com/kb/en/connect/) is installed: - -```dockerfile -FROM %%IMAGE%%:latest -RUN apt-get update && \ - apt-get install mariadb-plugin-connect -y && \ - rm -rf /var/lib/apt/lists/* -``` +# Componse File Examples -Installing plugins from packages creates a configuration file in the directory `/etc/mysql/mariadb.conf.d/` that loads the plugin on startup. +Example compose files using this `%%IMAGE%%` are located in %%GITHUB-REPO% in the `/examples` folder. diff --git a/mariadb/get-help.md b/mariadb/get-help.md index 9f87e7b498d8..fd2c17a6c125 100644 --- a/mariadb/get-help.md +++ b/mariadb/get-help.md @@ -1,3 +1,3 @@ -[Database Adminstrators (Stack Exchange)](https://dba.stackexchange.com/questions/tagged/docker+mariadb), [MariaDB Knowledge Base](https://mariadb.com/kb/en/docker-and-mariadb/) ([Ask a Question here](https://mariadb.com/kb/en/docker-and-mariadb/ask) available). +[Database Adminstrators (Stack Exchange)](https://dba.stackexchange.com/questions/tagged/docker+mariadb), [MariaDB Knowledge Base](https://mariadb.com/kb/en/docker-and-mariadb/) ([Ask a Question here](https://mariadb.com/kb/en/docker-and-mariadb/ask)). Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base](https://mariadb.com/kb/en/getting-help-with-mariadb/). From 3e16cb28c223c9fec85d7f2066dffa9d18240666 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Sep 2023 11:09:47 -0700 Subject: [PATCH 0615/2686] Run update.sh --- crate/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/crate/README.md b/crate/README.md index 39f41e8803a6..830f35ffec47 100644 --- a/crate/README.md +++ b/crate/README.md @@ -26,6 +26,7 @@ WARNING: - [`5.4.3`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/8db87d40d801d2705853f4e567d651239695ed64/Dockerfile) - [`5.3.6`, `5.3`](https://github.com/crate/docker-crate/blob/f430bdf6653a10ae5ab6b09f3b3f46408bed73be/Dockerfile) +- [`5.2.9`, `5.2`](https://github.com/crate/docker-crate/blob/9b21bf436a20e2a5e139d6b70f04f7b8c34c408c/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) From 77952e26fd9d468ae306aa7ff42b6bf538334b07 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Sep 2023 14:09:29 -0700 Subject: [PATCH 0616/2686] Run update.sh --- haskell/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 562bbad1fd9b..19e1125d4485 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.6.2-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.2`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/buster/Dockerfile) -- [`9.6.2-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.2-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/d33bf51b985814e1d38b5d3fd301531ff16d7d21/9.6/slim-buster/Dockerfile) +- [`9.6.3-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.3`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/buster/Dockerfile) +- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.3-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/slim-buster/Dockerfile) - [`9.4.7-buster`, `9.4-buster`, `9.4.7`, `9.4`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/buster/Dockerfile) - [`9.4.7-slim-buster`, `9.4-slim-buster`, `9.4.7-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) From c5829200ebc526f9e615e293efebd4a008198a25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Sep 2023 16:09:13 -0700 Subject: [PATCH 0617/2686] Run update.sh --- convertigo/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/convertigo/README.md b/convertigo/README.md index ff14e3d3b742..18cd8a4d0eb6 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.2`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/6cfd8957e427702eefefcd2bfe9adc374543b808/docker/default/Dockerfile) +- [`8.2.3`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/4f29a87627e16e9961f0795d59ee4540d76a5b3c/docker/default/Dockerfile) # Quick reference (cont.) @@ -238,6 +238,16 @@ $ docker run -d --name C8O -e JAVA_OPTS="-DjvmRoute=server1" -p 28080:28080 conv [Here the list of convertigo specific properties](https://www.convertigo.com/documentation/latest/operating-guide/appendixes/#list-of-convertigo-java-system-properties) (don't forget the `-Dconvertigo.engine.` prefix). +## `LOG_STDOUT` and `LOG_FILE` Environment variables + +Convertigo generates many logs in a **engine.log** file that can be consulted via the Convertigo Administration Console. In some environments, it's easiest to read logs from the container's standard output. Set this property `true` to enable console output. The default value is `false`. + +Log file still exists until you add the `LOG_FILE=false` environment variable : + +```console + docker run -d --name C8O -e LOG_STDOUT=true -e LOG_FILE=false -p 28080:28080 convertigo +``` + ## `JXMX` Environment variable Convertigo tries to allocate this amount of memory in the container and will automatically reduce it until the value is compatible for the Docker memory constraints. Once the best value found, it is used as `-Xmx=${JXMX}m` parameter for the JVM. From 3e817190c828e3aa2dbee5381d5c2396bb32bc5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Sep 2023 17:09:43 -0700 Subject: [PATCH 0618/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 20 +++++----- golang/README.md | 10 ++--- ibm-semeru-runtimes/README.md | 72 +++++++++++++++++------------------ openjdk/README.md | 54 +++++++++----------------- 5 files changed, 70 insertions(+), 88 deletions(-) diff --git a/bash/README.md b/bash/README.md index 0a78e00de65e..4e40fa6ab9f0 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230913`, `devel`, `devel-20230913-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/e8d2e168e0ae7eea96f16125a2e5f44040b97b58/devel/Dockerfile) +- [`devel-20230925`, `devel`, `devel-20230925-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/2fddd16e7f1a4b7fc90f9d29aa551c57d2d46dfa/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 85dccd94e659..120f6838b92e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/cli/Dockerfile) +- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/cli/Dockerfile) - [`24.0.6-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.6-dind-alpine3.18`, `24.0.6`, `24.0`, `24`, `latest`, `24.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind/Dockerfile) - [`24.0.6-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind-rootless/Dockerfile) - [`24.0.6-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/cli/Dockerfile) +- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/cli/Dockerfile) - [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) - [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) - [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-1809/Dockerfile) +- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.6-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) - `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f403f6aadad92a9132ff9492f36c6c0a471a975/23/windows/windowsservercore-1809/Dockerfile) + - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index f3d2a26d5ada..0c0516518afc 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,10 +28,10 @@ WARNING: ## Simple Tags -- [`1.21.1-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bookworm/Dockerfile) -- [`1.21.1-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bullseye/Dockerfile) -- [`1.21.1-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.1-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/alpine3.18/Dockerfile) -- [`1.21.1-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/alpine3.17/Dockerfile) +- [`1.21.1-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bookworm/Dockerfile) +- [`1.21.1-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bullseye/Dockerfile) +- [`1.21.1-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.1-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/alpine3.18/Dockerfile) +- [`1.21.1-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/alpine3.17/Dockerfile) - [`1.21.1-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.1-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.1-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.21.1`, `1.21`, `1`, `latest`: - - [`1.21.1-bookworm`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/bookworm/Dockerfile) + - [`1.21.1-bookworm`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bookworm/Dockerfile) - [`1.21.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) - `1.21.1-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 1e925e68da48..27b8e20d93f7 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u382-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u382-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u382-b05-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.20_8-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.8_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/centos/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u382-b05-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u382-b05-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.20.1_1-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.8.1_1-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/centos/Dockerfile.open.releases.full) ## Shared Tags - `open-8u382-b05-jdk`, `open-8-jdk`: - - [`open-8u382-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u382-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u382-b05-jre`, `open-8-jre`: - - [`open-8u382-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.20_8-jdk`, `open-11-jdk`: - - [`open-11.0.20_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.20_8-jre`, `open-11-jre`: - - [`open-11.0.20_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.8_7-jdk`, `open-17-jdk`: - - [`open-17.0.8_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.8_7-jre`, `open-17-jre`: - - [`open-17.0.8_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u382-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.20.1_1-jdk`, `open-11-jdk`: + - [`open-11.0.20.1_1-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.20.1_1-jre`, `open-11-jre`: + - [`open-11.0.20.1_1-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.8.1_1-jdk`, `open-17-jdk`: + - [`open-17.0.8.1_1-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.8.1_1-jre`, `open-17-jre`: + - [`open-17.0.8.1_1-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-20.0.2_9-jdk`, `open-20-jdk`: - - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-20.0.2_9-jre`, `open-20-jre`: - - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/fb3c496391b231595e921c4d3b5fcec948e025c4/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 6e71c43f6d44..06a5ecbaa21c 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-15-jdk-oraclelinux8`, `22-ea-15-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-15-jdk-oracle`, `22-ea-15-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-15-jdk-oraclelinux7`, `22-ea-15-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-15-jdk-bookworm`, `22-ea-15-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/bookworm/Dockerfile) -- [`22-ea-15-jdk-slim-bookworm`, `22-ea-15-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-15-jdk-slim`, `22-ea-15-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-15-jdk-bullseye`, `22-ea-15-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/bullseye/Dockerfile) -- [`22-ea-15-jdk-slim-bullseye`, `22-ea-15-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-15-jdk-windowsservercore-ltsc2022`, `22-ea-15-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-15-jdk-windowsservercore-1809`, `22-ea-15-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-15-jdk-nanoserver-1809`, `22-ea-15-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`21-rc-jdk-oraclelinux8`, `21-rc-oraclelinux8`, `21-jdk-oraclelinux8`, `21-oraclelinux8`, `21-rc-jdk-oracle`, `21-rc-oracle`, `21-jdk-oracle`, `21-oracle`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) -- [`21-rc-jdk-oraclelinux7`, `21-rc-oraclelinux7`, `21-jdk-oraclelinux7`, `21-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux7/Dockerfile) -- [`21-rc-jdk-bookworm`, `21-rc-bookworm`, `21-jdk-bookworm`, `21-bookworm`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bookworm/Dockerfile) -- [`21-rc-jdk-slim-bookworm`, `21-rc-slim-bookworm`, `21-jdk-slim-bookworm`, `21-slim-bookworm`, `21-rc-jdk-slim`, `21-rc-slim`, `21-jdk-slim`, `21-slim`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/slim-bookworm/Dockerfile) -- [`21-rc-jdk-bullseye`, `21-rc-bullseye`, `21-jdk-bullseye`, `21-bullseye`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/bullseye/Dockerfile) -- [`21-rc-jdk-slim-bullseye`, `21-rc-slim-bullseye`, `21-jdk-slim-bullseye`, `21-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/slim-bullseye/Dockerfile) -- [`21-rc-jdk-windowsservercore-ltsc2022`, `21-rc-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21-rc-jdk-windowsservercore-1809`, `21-rc-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21-rc-jdk-nanoserver-1809`, `21-rc-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-16-jdk-oraclelinux8`, `22-ea-16-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-16-jdk-oracle`, `22-ea-16-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-16-jdk-oraclelinux7`, `22-ea-16-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-16-jdk-bookworm`, `22-ea-16-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/bookworm/Dockerfile) +- [`22-ea-16-jdk-slim-bookworm`, `22-ea-16-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-16-jdk-slim`, `22-ea-16-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-16-jdk-bullseye`, `22-ea-16-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/bullseye/Dockerfile) +- [`22-ea-16-jdk-slim-bullseye`, `22-ea-16-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-16-jdk-windowsservercore-ltsc2022`, `22-ea-16-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-16-jdk-windowsservercore-1809`, `22-ea-16-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-16-jdk-nanoserver-1809`, `22-ea-16-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-15-jdk`, `22-ea-15`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-15-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-15-jdk-windowsservercore`, `22-ea-15-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-15-jdk-nanoserver`, `22-ea-15-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a2e23b0f73aed49ce0126379603d25222e43d64d/22/jdk/windows/nanoserver-1809/Dockerfile) -- `21-rc-jdk`, `21-rc`, `21-jdk`, `21`: - - [`21-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/oraclelinux8/Dockerfile) - - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-rc-jdk-windowsservercore`, `21-rc-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21-rc-jdk-nanoserver`, `21-rc-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4c2b1a57869e24c5fcfbea6a17e558c710d4f6bd/21/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-16-jdk`, `22-ea-16`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-16-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-16-jdk-windowsservercore`, `22-ea-16-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-16-jdk-nanoserver`, `22-ea-16-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 0aa1b51255e635724277536935c561f12fd22207 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Sep 2023 17:09:33 -0700 Subject: [PATCH 0619/2686] Run update.sh --- ghost/README.md | 4 ++-- wordpress/README.md | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b3c15b147c12..c448e7958ffc 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.65.0`, `5.65`, `5`, `latest`](https://github.com/docker-library/ghost/blob/af06951592aa20cdce16851836917ef9eff8e581/5/debian/Dockerfile) -- [`5.65.0-alpine`, `5.65-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/af06951592aa20cdce16851836917ef9eff8e581/5/alpine/Dockerfile) +- [`5.65.1`, `5.65`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1719f39e02b47a9bf5878aa48eb9201017678cd9/5/debian/Dockerfile) +- [`5.65.1-alpine`, `5.65-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/404e37b66bf1d908fba92a06e01a6d7fbc18b6bb/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index f3270f136883..7e2bbe3cb2d1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) +- [`beta-6.4-beta1-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta1`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta1-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta1-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-beta1-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta1-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-beta1-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta1-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-beta1-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta1-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-beta1-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-beta1-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-beta1-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta1-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-beta1-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-beta1-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 04418385005935e529f3b6ab23e8d372a4e39312 Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Thu, 28 Sep 2023 10:05:48 -0700 Subject: [PATCH 0620/2686] Update logo upload to simpler single API reguest flow --- push.pl | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/push.pl b/push.pl index 2092c8d6c89f..bd3331acde6a 100755 --- a/push.pl +++ b/push.pl @@ -206,13 +206,8 @@ sub prompt_for_edit { } else { say 'putting logo ' . $repoLogo120; - my $logoUpload = $ua->get($logoUrlBase . '/upload' => $authorizationHeader); - die 'GET to ' . $logoUrlBase . '/upload failed: ' . $logoUpload->res->text unless $logoUpload->res->is_success; - my $logoUploadUrl = $logoUpload->res->json->{url}; - my $logoPut = $ua->put($logoUploadUrl => { 'Content-Type' => 'image/png' } => $proposedLogo); - die 'PUT to ' . $logoUrlBase . ' (via "/upload" secure URL) failed: ' . $logoPut->res->text unless $logoPut->res->is_success; - my $logoComplete = $ua->post($logoUrlBase . '/upload/complete' => $authorizationHeader); - die 'POST to ' . $logoUrlBase . '/upload/complete failed: ' . $logoComplete->res->text unless $logoComplete->res->is_success; + my $logoUpload = $ua->post($logoUrlBase . '/upload' => { %$authorizationHeader, 'Content-Type' => 'image/png' } => b64_encode $proposedLogo); + die 'POST to ' . $logoUrlBase . '/upload failed: ' . $logoUpload->res->text unless $logoUpload->res->is_success; } } else { # if we had no logo file, we should send a DELETE request to the API just to be sure we're synchronizing the repo state appropriately even on complete logo removal From 231b5858d76bfc7384fa100b3b52b8ab86be9c86 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 28 Sep 2023 10:30:22 -0700 Subject: [PATCH 0621/2686] Ditch b64_encode, which does not appear to be required --- push.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/push.pl b/push.pl index bd3331acde6a..e3282370f178 100755 --- a/push.pl +++ b/push.pl @@ -9,7 +9,7 @@ use Getopt::Long; use Mojo::File; use Mojo::UserAgent; -use Mojo::Util qw(b64_encode decode encode trim url_escape); +use Mojo::Util qw(decode encode trim url_escape); use Term::UI; use Term::ReadLine; @@ -206,7 +206,7 @@ sub prompt_for_edit { } else { say 'putting logo ' . $repoLogo120; - my $logoUpload = $ua->post($logoUrlBase . '/upload' => { %$authorizationHeader, 'Content-Type' => 'image/png' } => b64_encode $proposedLogo); + my $logoUpload = $ua->post($logoUrlBase . '/upload' => { %$authorizationHeader, 'Content-Type' => 'image/png' } => $proposedLogo); die 'POST to ' . $logoUrlBase . '/upload failed: ' . $logoUpload->res->text unless $logoUpload->res->is_success; } } else { From 9a12b1e4bf82bba9a22a7e863c3fa028145c136c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Sep 2023 12:09:14 -0700 Subject: [PATCH 0622/2686] Run update.sh --- dart/README.md | 4 ++-- percona/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index 08f12cf7ed88..7b3b17135b7e 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.2-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.2`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2bb690993961c56922cd2827419d5285cd7e96d6/stable/bullseye/Dockerfile) -- [`3.2.0-42.2.beta-sdk`, `beta-sdk`, `3.2.0-42.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2bb690993961c56922cd2827419d5285cd7e96d6/beta/bullseye/Dockerfile) +- [`3.1.3-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.3`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3adb95b42c342dc6bce6a81d0295b79a6a99b42f/stable/bookworm/Dockerfile) +- [`3.2.0-134.1.beta-sdk`, `beta-sdk`, `3.2.0-134.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3adb95b42c342dc6bce6a81d0295b79a6a99b42f/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 23c5e451b000..7b5f01735aa0 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.33-25-centos`, `8.0-centos`, `8-centos`, `8.0.33-25`, `8.0`, `8`, `ps-8.0.33-25`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/3f666ccdf6a9eed0e0505723fbe8b4954a105c99/percona-server-8.0/Dockerfile) -- [`5.7.39-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.39`, `5.7`, `5`, `ps-5.7.39`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-5.7/Dockerfile-dockerhub) +- [`8.0.34-26-centos`, `8.0-centos`, `8-centos`, `8.0.34-26`, `8.0`, `8`, `ps-8.0.34-26`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/565f49b8be3a1efa056fde70e10d638ad159516a/percona-server-8.0/Dockerfile) +- [`5.7.43-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.43`, `5.7`, `5`, `ps-5.7.43`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/a11f997b281686769392ea14aa02daee97320c51/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) - [`psmdb-5.0.18`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-5.0/Dockerfile) From 51ec94d193a745d3bff61b3c0f88dded1c7b2179 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Sep 2023 13:09:16 -0700 Subject: [PATCH 0623/2686] Run update.sh --- maven/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/maven/README.md b/maven/README.md index 122da58bd238..d6a23d8befa4 100644 --- a/maven/README.md +++ b/maven/README.md @@ -48,6 +48,7 @@ WARNING: - [`3.9.4-amazoncorretto-20-al2023`, `3.9-amazoncorretto-20-al2023`, `3-amazoncorretto-20-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-20-al2023/Dockerfile) - [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) - [`3.9.4-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/7741c2848c3ea3ad6b4180d94b90d669d419c893/amazoncorretto-21/Dockerfile) +- [`3.9.4-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/3a94e25bc22f4589addf7e50361a3e0c1af1c306/amazoncorretto-21-al2023/Dockerfile) - [`3.9.4-amazoncorretto-21-debian`, `3.9.4-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/61b5d8d7e9e5706522ff154315db185816d35891/amazoncorretto-21-debian/Dockerfile) - [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) - [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) From 2c21d2df509e5b83893556cdcdc96e23b7a05a6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Sep 2023 14:09:27 -0700 Subject: [PATCH 0624/2686] Run update.sh --- alpine/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/README.md b/alpine/README.md index 7bd8dc7e4440..490fdb2022dd 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230901`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3/x86_64/Dockerfile) -- [`3.18.3`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/1ff397d1b9e6872e19adc93d6ede0cb638a2418a/x86_64/Dockerfile) +- [`3.18.4`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/e7f8cc3aebd309337497c1e794db9aabbb9902c0/x86_64/Dockerfile) - [`3.17.5`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/bb3a15580db27a6a5f75909040f98ac1ac6d39c1/x86_64/Dockerfile) - [`3.16.7`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6a4bd9a98102f701834ef7d6fe2215dc0b3288c2/x86_64/Dockerfile) - [`3.15.10`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/e16b9737b016b9275598e6946a677ee4205070ba/x86_64/Dockerfile) From b6ba610419d05794a1add2e3266a3e82f947a15c Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Fri, 29 Sep 2023 09:45:18 -0700 Subject: [PATCH 0625/2686] Only upload logos to library/ logos upload is not currently available on our arch-specifc namespaces --- push.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/push.pl b/push.pl index e3282370f178..4467a332b2c1 100755 --- a/push.pl +++ b/push.pl @@ -175,7 +175,8 @@ sub prompt_for_edit { my $repoUrl = $dockerHub . '/v2/repositories/' . $repo . '/'; - if ($logos) { + if ($logos && $repo =~ m{ ^ library/ }x) { + # only DOI ("library"), DSOS, or DVP orgs can include a logo which is displayed in the Hub UI # if we have a logo file, let's update that metadata first my $repoLogo120 = $repoName . '/logo-120.png'; if (!-f $repoLogo120) { From 6ddf2454ca21d334a94f14860c95efdc84211123 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Sep 2023 12:18:00 -0700 Subject: [PATCH 0626/2686] Run update.sh --- composer/README.md | 6 +++--- node/README.md | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/composer/README.md b/composer/README.md index 4e8b86e35d5a..bd6aa0e40d66 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.3`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/0ece2f4215a75bb83564adf041ed732c9cd55a78/2.6/Dockerfile) +- [`2.6.4`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/200aeac3b7e22ce8fa63cee09073b64b05d8575c/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.21`, `2.2`, `lts`](https://github.com/composer/docker/blob/5dfe106ff12afcb86515db8e795adeeb397ac59a/2.2/Dockerfile) -- [`1.10.26`, `1.10`, `1`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/1.10/Dockerfile) +- [`2.2.22`, `2.2`, `lts`](https://github.com/composer/docker/blob/355e5023b7b7831a7fe2db057070f8378f91ba35/2.2/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/9cac6280bc40c7d606f7fd2dfce0f77fefd056a8/1.10/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index c33310d3be30..c83970183511 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.7-alpine3.17`, `20.7.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.7-alpine`, `20.7-alpine3.18`, `20.7.0-alpine`, `20.7.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.7`, `20.7-bookworm`, `20.7.0`, `20.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.7-bookworm-slim`, `20.7-slim`, `20.7.0-bookworm-slim`, `20.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.7-bullseye`, `20.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.7-bullseye-slim`, `20.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.7-buster`, `20.7.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/buster/Dockerfile) -- [`20-buster-slim`, `20.7-buster-slim`, `20.7.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.0-alpine`, `20.8.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.0`, `20.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.0-bookworm-slim`, `20.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.8-bullseye`, `20.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.8-buster`, `20.8.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster/Dockerfile) +- [`20-buster-slim`, `20.8-buster-slim`, `20.8.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.0-alpine`, `18.18.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.0`, `18.18.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bookworm/Dockerfile) From 39c5f3a3082d0aa0044605d63d01bdb39a846438 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Sep 2023 17:20:26 -0700 Subject: [PATCH 0627/2686] Run update.sh --- ghost/README.md | 4 +- php/README.md | 121 +++++++++++++++++---------------------------- rabbitmq/README.md | 4 +- 3 files changed, 49 insertions(+), 80 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c448e7958ffc..99347eb0c87e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.65.1`, `5.65`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1719f39e02b47a9bf5878aa48eb9201017678cd9/5/debian/Dockerfile) -- [`5.65.1-alpine`, `5.65-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/404e37b66bf1d908fba92a06e01a6d7fbc18b6bb/5/alpine/Dockerfile) +- [`5.66.0`, `5.66`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d8381ef467ab303a4fcb70aeb855af1c5bcbe749/5/debian/Dockerfile) +- [`5.66.0-alpine`, `5.66-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d8381ef467ab303a4fcb70aeb855af1c5bcbe749/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 1629f03c460f..c3130684f224 100644 --- a/php/README.md +++ b/php/README.md @@ -24,82 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC2-bookworm`, `8.3-rc-bookworm`, `8.3.0RC2-cli`, `8.3-rc-cli`, `8.3.0RC2`, `8.3-rc`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC2-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC2-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC2-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC2-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC2-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC2-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC2-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC2-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/64556fffb9c62f7d68f2b7e6b3e55c354d890de0/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.11RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.11RC1-bookworm`, `8.2-rc-bookworm`, `8.2.11RC1-cli`, `8.2-rc-cli`, `8.2.11RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.11RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.11RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.11RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.11RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.11RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.11RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.11RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.11RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.11RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.11RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.11RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.11RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.11RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.11RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.11RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.11RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.11RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.11RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.11RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.11RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.11RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.11RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.11RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/4eb028f0b48c338d7d42ef2e3cfcbfb5aef2c49e/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.10-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.10-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.10-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.10`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/cli/Dockerfile) -- [`8.2.10-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.10-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/apache/Dockerfile) -- [`8.2.10-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.10-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/fpm/Dockerfile) -- [`8.2.10-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.10-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bookworm/zts/Dockerfile) -- [`8.2.10-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.10-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/cli/Dockerfile) -- [`8.2.10-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/apache/Dockerfile) -- [`8.2.10-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/fpm/Dockerfile) -- [`8.2.10-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/bullseye/zts/Dockerfile) -- [`8.2.10-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.10-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.10-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.10-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.10-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.10-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.10-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.10-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.10-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.10-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.10-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.10-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/e9e47fd185d6b36e491c713811437b0c17944faa/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.24RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.24RC1-bookworm`, `8.1-rc-bookworm`, `8.1.24RC1-cli`, `8.1-rc-cli`, `8.1.24RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.24RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.24RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.24RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.24RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.24RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.24RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.24RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.24RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.24RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.24RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.24RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.24RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.24RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.24RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.24RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.24RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.24RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.24RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.24RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.24RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.24RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.24RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.24RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.24RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.24RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.24RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.24RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/09e2bdf86264c8921b3adbf02d015b4dcc9cf6b6/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.23-cli-bookworm`, `8.1-cli-bookworm`, `8.1.23-bookworm`, `8.1-bookworm`, `8.1.23-cli`, `8.1-cli`, `8.1.23`, `8.1`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/cli/Dockerfile) -- [`8.1.23-apache-bookworm`, `8.1-apache-bookworm`, `8.1.23-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/apache/Dockerfile) -- [`8.1.23-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.23-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/fpm/Dockerfile) -- [`8.1.23-zts-bookworm`, `8.1-zts-bookworm`, `8.1.23-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bookworm/zts/Dockerfile) -- [`8.1.23-cli-bullseye`, `8.1-cli-bullseye`, `8.1.23-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/cli/Dockerfile) -- [`8.1.23-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/apache/Dockerfile) -- [`8.1.23-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/fpm/Dockerfile) -- [`8.1.23-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/bullseye/zts/Dockerfile) -- [`8.1.23-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.23-alpine3.18`, `8.1-alpine3.18`, `8.1.23-cli-alpine`, `8.1-cli-alpine`, `8.1.23-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.23-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.23-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.23-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.23-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.23-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.23-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.23-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.23-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.23-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.23-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.23-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.23-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/1c4b255f3e5ab610ce5cdd4673d988ca26c396fc/8.1/alpine3.16/zts/Dockerfile) +- [`8.3.0RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC3-bookworm`, `8.3-rc-bookworm`, `8.3.0RC3-cli`, `8.3-rc-cli`, `8.3.0RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.11-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.11-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.11-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.11`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/cli/Dockerfile) +- [`8.2.11-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.11-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/apache/Dockerfile) +- [`8.2.11-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.11-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/fpm/Dockerfile) +- [`8.2.11-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.11-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/zts/Dockerfile) +- [`8.2.11-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.11-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/cli/Dockerfile) +- [`8.2.11-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/apache/Dockerfile) +- [`8.2.11-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/fpm/Dockerfile) +- [`8.2.11-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/zts/Dockerfile) +- [`8.2.11-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.11-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.11-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.11-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.11-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.11-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.11-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.11-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.11-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.11-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.11-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.11-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.24-cli-bookworm`, `8.1-cli-bookworm`, `8.1.24-bookworm`, `8.1-bookworm`, `8.1.24-cli`, `8.1-cli`, `8.1.24`, `8.1`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/cli/Dockerfile) +- [`8.1.24-apache-bookworm`, `8.1-apache-bookworm`, `8.1.24-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/apache/Dockerfile) +- [`8.1.24-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.24-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/fpm/Dockerfile) +- [`8.1.24-zts-bookworm`, `8.1-zts-bookworm`, `8.1.24-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/zts/Dockerfile) +- [`8.1.24-cli-bullseye`, `8.1-cli-bullseye`, `8.1.24-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/cli/Dockerfile) +- [`8.1.24-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/apache/Dockerfile) +- [`8.1.24-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/fpm/Dockerfile) +- [`8.1.24-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/zts/Dockerfile) +- [`8.1.24-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.24-alpine3.18`, `8.1-alpine3.18`, `8.1.24-cli-alpine`, `8.1-cli-alpine`, `8.1.24-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.24-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.24-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.24-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.24-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.24-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.24-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.24-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.24-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.24-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.24-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.24-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.24-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/zts/Dockerfile) - [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) - [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) - [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 4669ce2a70bf..25a1e9841a1e 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/687ece5f4db01a9a8925dbadb3dc872033627c16/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/ced055dcc013310157788d8e5a710f231bb7cdba/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/687ece5f4db01a9a8925dbadb3dc872033627c16/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ced055dcc013310157788d8e5a710f231bb7cdba/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/81ad274c81ec8f7a2716d5f6bb518c5f0bf142c3/3.12/ubuntu/Dockerfile) - [`3.12.6-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) From d38ec073c03959778185ccd71402c6cd5e566098 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Oct 2023 13:09:20 -0700 Subject: [PATCH 0628/2686] Run update.sh --- aerospike/README.md | 4 ++-- ibmjava/README.md | 6 +++--- mongo-express/README.md | 6 ++++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 5f66b1c2d71c..81772f2d4791 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.2`, `ee-6.4.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/23893a43ecb447649aa4e6fd214974c450ff5174/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.2`, `ce-6.4.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/23893a43ecb447649aa4e6fd214974c450ff5174/community/debian12/Dockerfile) +- [`ee-6.4.0.3`, `ee-6.4.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/fd444862e2934e9abd43edc31a6d4ecd67161d51/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.3`, `ce-6.4.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/fd444862e2934e9abd43edc31a6d4ecd67161d51/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index baecdf1f11cc..a652570e4768 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/7ef5a21a8b64c021c7b1c305e7a7e1075e298755/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/mongo-express/README.md b/mongo-express/README.md index f59e7da53d2b..abdc637dd9f1 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.0-alpha.4`, `1.0.0-alpha`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/26e7ea94e4d222de7d52531caee52149ac093c26/Dockerfile) -- [`0.54.0`, `0.54`](https://github.com/mongo-express/mongo-express-docker/blob/4b43fe8a1206434cb32a006cd155dd71462f092f/Dockerfile) +- [`1.0.0-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/20-alpine3.18/Dockerfile) +- [`1.0.0-20`, `1.0-20`, `1-20`, `1.0.0-20-alpine3.17`, `1.0-20-alpine3.17`, `1-20-alpine3.17`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/20-alpine3.17/Dockerfile) +- [`1.0.0-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/18-alpine3.18/Dockerfile) +- [`1.0.0`, `1.0`, `1`, `1.0.0-18`, `1.0-18`, `1-18`, `1.0.0-18-alpine3.17`, `1.0-18-alpine3.17`, `1-18-alpine3.17`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/18-alpine3.17/Dockerfile) # Quick reference (cont.) From 70d2178ead0e83e1447ff5c4ec3a3358ae26bf7d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Oct 2023 18:19:43 -0700 Subject: [PATCH 0629/2686] Run update.sh --- archlinux/README.md | 4 +-- clearlinux/README.md | 2 +- docker/README.md | 13 ++------- emqx/README.md | 3 +- ghost/README.md | 4 +-- mongo/README.md | 60 +++++++++++++++++++------------------- openjdk/README.md | 36 +++++++++++------------ pypy/README.md | 26 ++++++++--------- python/README.md | 68 +++++++++++++++++++------------------------- redmine/README.md | 4 +-- registry/README.md | 2 +- telegraf/README.md | 12 ++++---- ubuntu/README.md | 4 +-- 13 files changed, 111 insertions(+), 127 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 9a2f674edb90..cafd5e471fc3 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20230921.0.180222`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8bba69a7d928de88fcac7a7047b68bef542f73a/Dockerfile.base) -- [`base-devel`, `base-devel-20230921.0.180222`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8bba69a7d928de88fcac7a7047b68bef542f73a/Dockerfile.base-devel) +- [`latest`, `base`, `base-20231001.0.182270`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8c000a0752f90e436cc96e097bcc3750f961164/Dockerfile.base) +- [`base-devel`, `base-devel-20231001.0.182270`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8c000a0752f90e436cc96e097bcc3750f961164/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 5de79d7cfe55..e82ca4f57353 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d0b0cab6c276fdea3d1ecb1278621080a4f0b525/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/abeee829f47f6474b3c4a61fa2e2b88b732dbdd5/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 120f6838b92e..6d70514e22c7 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,18 @@ WARNING: ## Simple Tags -- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/cli/Dockerfile) +- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/ff78b7b5f1f0830aa327380eb396dea53380b517/24/cli/Dockerfile) - [`24.0.6-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.6-dind-alpine3.18`, `24.0.6`, `24.0`, `24`, `latest`, `24.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind/Dockerfile) - [`24.0.6-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind-rootless/Dockerfile) - [`24.0.6-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) -- [`23.0.6-cli`, `23.0-cli`, `23-cli`, `23.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/cli/Dockerfile) -- [`23.0.6-dind`, `23.0-dind`, `23-dind`, `23.0.6-dind-alpine3.18`, `23.0.6`, `23.0`, `23`, `23.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/09a8b6a03e9ab630f0f62cce43df38a285f80826/23/dind/Dockerfile) -- [`23.0.6-dind-rootless`, `23.0-dind-rootless`, `23-dind-rootless`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/dind-rootless/Dockerfile) -- [`23.0.6-git`, `23.0-git`, `23-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/23/git/Dockerfile) -- [`23.0.6-windowsservercore-ltsc2022`, `23.0-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.6-windowsservercore-1809`, `23.0-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.6-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) -- `23.0.6-windowsservercore`, `23.0-windowsservercore`, `23-windowsservercore`: - - [`23.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/134b3a2752690da62402fb33fe8db929e29d1434/23/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) @@ -56,7 +47,7 @@ WARNING: [https://github.com/docker-library/docker/issues](https://github.com/docker-library/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/docker/), [`arm64v8`](https://hub.docker.com/r/arm64v8/docker/), [`windows-amd64`](https://hub.docker.com/r/winamd64/docker/) + [`amd64`](https://hub.docker.com/r/amd64/docker/), [`arm32v6`](https://hub.docker.com/r/arm32v6/docker/), [`arm32v7`](https://hub.docker.com/r/arm32v7/docker/), [`arm64v8`](https://hub.docker.com/r/arm64v8/docker/), [`windows-amd64`](https://hub.docker.com/r/winamd64/docker/) - **Published image artifact details**: [repo-info repo's `repos/docker/` directory](https://github.com/docker-library/repo-info/blob/master/repos/docker) ([history](https://github.com/docker-library/repo-info/commits/master/repos/docker)) diff --git a/emqx/README.md b/emqx/README.md index 465372e7827e..52962f235e1b 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,8 @@ WARNING: - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) -- [`5.2.1`, `5.2`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) +- [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) +- [`5.3.0`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/b831255e1b833d4e56110904b1cb6d4eb899efda/5.3/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 99347eb0c87e..7da7b8da1e95 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.66.0`, `5.66`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d8381ef467ab303a4fcb70aeb855af1c5bcbe749/5/debian/Dockerfile) -- [`5.66.0-alpine`, `5.66-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d8381ef467ab303a4fcb70aeb855af1c5bcbe749/5/alpine/Dockerfile) +- [`5.66.1`, `5.66`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f494e8c84e73c1c816eb8876e1ab6a02e1fa500e/5/debian/Dockerfile) +- [`5.66.1-alpine`, `5.66-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f494e8c84e73c1c816eb8876e1ab6a02e1fa500e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index c96f9d654a96..2615f028fc10 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.1-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/Dockerfile) -- [`7.0.1-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.1-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.1-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.1-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.2-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) +- [`7.0.2-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.2-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.2-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.2-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.10-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) - [`6.0.10-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.10-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) @@ -43,24 +43,24 @@ WARNING: - [`5.0.21-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.21-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.21-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.24-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) -- [`4.4.24-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.24-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.24-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.24-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-1809/Dockerfile) +- [`4.4.25-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) +- [`4.4.25-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.25-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.25-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.25-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `7.0.1`, `7.0`, `7`, `latest`: - - [`7.0.1-jammy`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/Dockerfile) - - [`7.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.1-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.1-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea98cf4c8390f6c790992cdbd23e2cb64553ad0/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.2`, `7.0`, `7`, `latest`: + - [`7.0.2-jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) + - [`7.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.2-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.2-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.10`, `6.0`, `6`: - [`6.0.10-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) - [`6.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -81,16 +81,16 @@ WARNING: - `5.0.21-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.24`, `4.4`, `4`: - - [`4.4.24-focal`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/Dockerfile) - - [`4.4.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.24-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.24-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb76278e2b3b26cf5c75b1df4dd739b24d7e1336/4.4/windows/nanoserver-1809/Dockerfile) +- `4.4.25`, `4.4`, `4`: + - [`4.4.25-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) + - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.25-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.25-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.25-nanoserver-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 06a5ecbaa21c..191dc2700758 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-16-jdk-oraclelinux8`, `22-ea-16-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-16-jdk-oracle`, `22-ea-16-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-16-jdk-oraclelinux7`, `22-ea-16-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-16-jdk-bookworm`, `22-ea-16-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/bookworm/Dockerfile) -- [`22-ea-16-jdk-slim-bookworm`, `22-ea-16-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-16-jdk-slim`, `22-ea-16-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-16-jdk-bullseye`, `22-ea-16-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/bullseye/Dockerfile) -- [`22-ea-16-jdk-slim-bullseye`, `22-ea-16-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-16-jdk-windowsservercore-ltsc2022`, `22-ea-16-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-16-jdk-windowsservercore-1809`, `22-ea-16-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-16-jdk-nanoserver-1809`, `22-ea-16-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-17-jdk-oraclelinux8`, `22-ea-17-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-17-jdk-oracle`, `22-ea-17-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-17-jdk-oraclelinux7`, `22-ea-17-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-17-jdk-bookworm`, `22-ea-17-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/bookworm/Dockerfile) +- [`22-ea-17-jdk-slim-bookworm`, `22-ea-17-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-17-jdk-slim`, `22-ea-17-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-17-jdk-bullseye`, `22-ea-17-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/bullseye/Dockerfile) +- [`22-ea-17-jdk-slim-bullseye`, `22-ea-17-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-17-jdk-windowsservercore-ltsc2022`, `22-ea-17-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-17-jdk-windowsservercore-1809`, `22-ea-17-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-17-jdk-nanoserver-1809`, `22-ea-17-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-16-jdk`, `22-ea-16`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-16-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-16-jdk-windowsservercore`, `22-ea-16-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-16-jdk-nanoserver`, `22-ea-16-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/35d7a4f2a7cb30b5283facd578027abfb74de8fc/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-17-jdk`, `22-ea-17`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-17-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-17-jdk-windowsservercore`, `22-ea-17-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-17-jdk-nanoserver`, `22-ea-17-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index fcd1e026a9ab..6a344a60efad 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -40,12 +40,12 @@ WARNING: - [`3.9-7.3.12-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.12-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bullseye/Dockerfile) - [`3.9-7.3.12-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.12-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.12-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.12-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bookworm/Dockerfile) -- [`2.7-7.3.12-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.12-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.12-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.12-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) -- [`2.7-7.3.12-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.12-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.12-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.12-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.12-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.12-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.12-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.12-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.13-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.13-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bookworm/Dockerfile) +- [`2.7-7.3.13-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.13-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.13-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.13-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) +- [`2.7-7.3.13-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.13-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.13-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.13-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.13-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.13-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.13-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.13-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -63,13 +63,13 @@ WARNING: - `3.9-7.3.12-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.12`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.12`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/bullseye/Dockerfile) - - [`2.7-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.12-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.12-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7f83ea84de775fa51b6c7c4e66ceafaf14948199/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.13`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.13`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) + - [`2.7-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.13-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.13-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 73a276b6f516..d017c4151a85 100644 --- a/python/README.md +++ b/python/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`3.12.0rc3-bookworm`, `3.12-rc-bookworm`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bookworm/Dockerfile) -- [`3.12.0rc3-slim-bookworm`, `3.12-rc-slim-bookworm`, `3.12.0rc3-slim`, `3.12-rc-slim`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/slim-bookworm/Dockerfile) -- [`3.12.0rc3-bullseye`, `3.12-rc-bullseye`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bullseye/Dockerfile) -- [`3.12.0rc3-slim-bullseye`, `3.12-rc-slim-bullseye`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/slim-bullseye/Dockerfile) -- [`3.12.0rc3-alpine3.18`, `3.12-rc-alpine3.18`, `3.12.0rc3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/alpine3.18/Dockerfile) -- [`3.12.0rc3-alpine3.17`, `3.12-rc-alpine3.17`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/alpine3.17/Dockerfile) -- [`3.12.0rc3-windowsservercore-ltsc2022`, `3.12-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0rc3-windowsservercore-1809`, `3.12-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.11.5-bookworm`, `3.11-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) -- [`3.11.5-slim-bookworm`, `3.11-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.11.5-slim`, `3.11-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bookworm/Dockerfile) -- [`3.11.5-bullseye`, `3.11-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bullseye/Dockerfile) -- [`3.11.5-slim-bullseye`, `3.11-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.11/slim-bullseye/Dockerfile) -- [`3.11.5-alpine3.18`, `3.11-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.11.5-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/alpine3.18/Dockerfile) -- [`3.11.5-alpine3.17`, `3.11-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/alpine3.17/Dockerfile) -- [`3.11.5-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.5-windowsservercore-1809`, `3.11-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bookworm/Dockerfile) +- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/slim-bookworm/Dockerfile) +- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bullseye/Dockerfile) +- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/slim-bullseye/Dockerfile) +- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/alpine3.18/Dockerfile) +- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/alpine3.17/Dockerfile) +- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bookworm/Dockerfile) +- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/slim-bookworm/Dockerfile) +- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bullseye/Dockerfile) +- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/slim-bullseye/Dockerfile) +- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/alpine3.18/Dockerfile) +- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/alpine3.17/Dockerfile) +- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) - [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.10/slim-bookworm/Dockerfile) - [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bullseye/Dockerfile) @@ -62,37 +62,29 @@ WARNING: - [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.8/slim-bullseye/Dockerfile) - [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.18/Dockerfile) - [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.17/Dockerfile) -- [`3.7.17-bookworm`, `3.7-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) -- [`3.7.17-slim-bookworm`, `3.7-slim-bookworm`, `3.7.17-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/295ccc121f2ff120541ac405efa7b63f1cd03b94/3.7/slim-bookworm/Dockerfile) -- [`3.7.17-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bullseye/Dockerfile) -- [`3.7.17-slim-bullseye`, `3.7-slim-bullseye`](https://github.com/docker-library/python/blob/295ccc121f2ff120541ac405efa7b63f1cd03b94/3.7/slim-bullseye/Dockerfile) -- [`3.7.17-alpine3.18`, `3.7-alpine3.18`, `3.7.17-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.18/Dockerfile) -- [`3.7.17-alpine3.17`, `3.7-alpine3.17`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/alpine3.17/Dockerfile) ## Shared Tags -- `3.12.0rc3`, `3.12-rc`: - - [`3.12.0rc3-bookworm`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/bookworm/Dockerfile) - - [`3.12.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0rc3-windowsservercore`, `3.12-rc-windowsservercore`: - - [`3.12.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/7eed90893e798ce9882222e82643441bec892be5/3.12-rc/windows/windowsservercore-1809/Dockerfile) -- `3.11.5`, `3.11`, `3`, `latest`: - - [`3.11.5-bookworm`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/bookworm/Dockerfile) - - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.5-windowsservercore`, `3.11-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ffc9b5b12aa2d73e520f09580574b64692ffc98d/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.12.0`, `3.12`, `3`, `latest`: + - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bookworm/Dockerfile) + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.0-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.11.6`, `3.11`: + - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bookworm/Dockerfile) + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.6-windowsservercore`, `3.11-windowsservercore`: + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bookworm/Dockerfile) - `3.8.18`, `3.8`: - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bookworm/Dockerfile) -- `3.7.17`, `3.7`: - - [`3.7.17-bookworm`](https://github.com/docker-library/python/blob/eeac28113a78434784d1eacaaf6b1edd1cd3368c/3.7/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 505b541a4e63..79f6c494df3d 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-bookworm`, `5.0-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/c48924ba4017d3c84c700a83a08cbd56bf8fc7f7/5.0/Dockerfile) -- [`5.0.5-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.5-alpine3.18`, `5.0-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redmine/blob/cc904a5f85eb1bfd99af68c0ea3f1e5aeb5d5554/5.0/alpine/Dockerfile) +- [`5.0.6`, `5.0`, `5`, `latest`, `5.0.6-bookworm`, `5.0-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/329d3b89cc5ef11e7363f3eaff0f046e249aadee/5.0/Dockerfile) +- [`5.0.6-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.6-alpine3.18`, `5.0-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redmine/blob/329d3b89cc5ef11e7363f3eaff0f046e249aadee/5.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index cc0118e338b6..cdd660954e78 100644 --- a/registry/README.md +++ b/registry/README.md @@ -26,7 +26,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/e42103a5670538e10ac42f5284e2a25912f17973/Dockerfile) +- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 13377c1e6fe5..83868165da8a 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9b5507162a6e64c7872084b636d38f7fe0a6bb38/telegraf/1.28/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index c5641a957b71..1af234381f03 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) -- [`22.04`, `jammy-20230816`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230816-8ac0ec73&id=8ac0ec73cdc2b2b4492e6b7dc7e356ff5d2a3813) +- [`22.04`, `jammy-20230916`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230916-f8fbd345&id=f8fbd345fba7716dafa177baa56025bb32d7af91) - [`23.04`, `lunar-20230816`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230816-f4657ddd&id=f4657ddd1be6fe5fa44da9797c1efb650d2087c1) -- [`23.10`, `mantic-20230912`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230912-eccf1d82&id=eccf1d8281f83191597f8c600b87544e01f01ff6) +- [`23.10`, `mantic-20230926`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230926-3f250867&id=3f250867eab7259dbc857d170700541639e5b5ec) # Quick reference (cont.) From 2e0a4dfb04cd6731f2664618404357deccffa029 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Oct 2023 14:09:50 -0700 Subject: [PATCH 0630/2686] Run update.sh --- fluentd/README.md | 4 ++-- mediawiki/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/fluentd/README.md b/fluentd/README.md index af451cae2363..26dbefcc850c 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.0-1.0`, `v1.16-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/b1a4d1d1ff36c6904c7f4a5e94a09e7938dab9ef/v1.16/alpine/Dockerfile) -- [`v1.16.0-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/b1a4d1d1ff36c6904c7f4a5e94a09e7938dab9ef/v1.16/debian/Dockerfile) +- [`v1.16.2-1.1`, `v1.16-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/alpine/Dockerfile) +- [`v1.16.2-debian-1.1`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/debian/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 955bd5663dff..4418c01b809f 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.40.0`, `1.40`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/apache/Dockerfile) -- [`1.40.0-fpm`, `1.40-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/fpm/Dockerfile) -- [`1.40.0-fpm-alpine`, `1.40-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.40/fpm-alpine/Dockerfile) -- [`1.39.4`, `1.39`, `lts`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/apache/Dockerfile) -- [`1.39.4-fpm`, `1.39-fpm`, `legacy-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/fpm/Dockerfile) -- [`1.39.4-fpm-alpine`, `1.39-fpm-alpine`, `legacy-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.39/fpm-alpine/Dockerfile) -- [`1.35.11`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/apache/Dockerfile) -- [`1.35.11-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/fpm/Dockerfile) -- [`1.35.11-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/d81c6d202933880f4e2ebebe691be34e8b991c61/1.35/fpm-alpine/Dockerfile) +- [`1.40.1`, `1.40`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/apache/Dockerfile) +- [`1.40.1-fpm`, `1.40-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/fpm/Dockerfile) +- [`1.40.1-fpm-alpine`, `1.40-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/fpm-alpine/Dockerfile) +- [`1.39.5`, `1.39`, `lts`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/apache/Dockerfile) +- [`1.39.5-fpm`, `1.39-fpm`, `legacy-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/fpm/Dockerfile) +- [`1.39.5-fpm-alpine`, `1.39-fpm-alpine`, `legacy-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/fpm-alpine/Dockerfile) +- [`1.35.13`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/apache/Dockerfile) +- [`1.35.13-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/fpm/Dockerfile) +- [`1.35.13-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/fpm-alpine/Dockerfile) # Quick reference (cont.) From ce61106de2f0d87b853feff77cf7bea8277a6c12 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Oct 2023 15:09:39 -0700 Subject: [PATCH 0631/2686] Run update.sh --- elixir/README.md | 18 ++++++++--------- joomla/README.md | 48 ++++++++++++++++++++++----------------------- kong/README.md | 3 ++- nextcloud/README.md | 18 ++++++++--------- 4 files changed, 44 insertions(+), 43 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index ad92ea4f7faa..c3d5dd90c767 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.4`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/Dockerfile) -- [`1.15.4-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/slim/Dockerfile) -- [`1.15.4-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/alpine/Dockerfile) -- [`1.15.4-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24/Dockerfile) -- [`1.15.4-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24-alpine/Dockerfile) -- [`1.15.4-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-24-slim/Dockerfile) -- [`1.15.4-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25/Dockerfile) -- [`1.15.4-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25-alpine/Dockerfile) -- [`1.15.4-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/5ac15c1d2bbdbf051f198e471c93f604f71d87eb/1.15/otp-25-slim/Dockerfile) +- [`1.15.6`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/Dockerfile) +- [`1.15.6-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/slim/Dockerfile) +- [`1.15.6-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/alpine/Dockerfile) +- [`1.15.6-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24/Dockerfile) +- [`1.15.6-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24-alpine/Dockerfile) +- [`1.15.6-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24-slim/Dockerfile) +- [`1.15.6-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25/Dockerfile) +- [`1.15.6-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25-alpine/Dockerfile) +- [`1.15.6-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index d5533396cd77..ace75c80d74e 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-beta2-php8.1-apache`, `5.0-php8.1-apache`, `5.0.beta-php8.1-apache`, `5.0.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/apache/Dockerfile) -- [`5.0.0-beta2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.beta-php8.1-fpm-alpine`, `5.0.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-beta2-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.beta-php8.1-fpm`, `5.0.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.1/fpm/Dockerfile) -- [`5.0.0-beta2`, `5.0`, `5.0.beta`, `5.0.0-beta`, `5.0.0-beta2-apache`, `5.0-apache`, `5.0.beta-apache`, `5.0.0-beta-apache`, `5.0.0-beta2-php8.2`, `5.0-php8.2`, `5.0.beta-php8.2`, `5.0.0-beta-php8.2`, `5.0.0-beta2-php8.2-apache`, `5.0-php8.2-apache`, `5.0.beta-php8.2-apache`, `5.0.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/apache/Dockerfile) -- [`5.0.0-beta2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.beta-php8.2-fpm-alpine`, `5.0.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-beta2-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.beta-php8.2-fpm`, `5.0.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/5.0.beta/php8.2/fpm/Dockerfile) -- [`4.4.0-beta2-php8.0-apache`, `4.4-php8.0-apache`, `4.4.beta-php8.0-apache`, `4.4.0-beta-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/apache/Dockerfile) -- [`4.4.0-beta2-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.beta-php8.0-fpm-alpine`, `4.4.0-beta-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-beta2-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.beta-php8.0-fpm`, `4.4.0-beta-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.0/fpm/Dockerfile) -- [`4.4.0-beta2`, `4.4`, `4.4.beta`, `4.4.0-beta`, `4.4.0-beta2-apache`, `4.4-apache`, `4.4.beta-apache`, `4.4.0-beta-apache`, `4.4.0-beta2-php8.1`, `4.4-php8.1`, `4.4.beta-php8.1`, `4.4.0-beta-php8.1`, `4.4.0-beta2-php8.1-apache`, `4.4-php8.1-apache`, `4.4.beta-php8.1-apache`, `4.4.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/apache/Dockerfile) -- [`4.4.0-beta2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.beta-php8.1-fpm-alpine`, `4.4.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-beta2-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.beta-php8.1-fpm`, `4.4.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.1/fpm/Dockerfile) -- [`4.4.0-beta2-php8.2-apache`, `4.4-php8.2-apache`, `4.4.beta-php8.2-apache`, `4.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/apache/Dockerfile) -- [`4.4.0-beta2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.beta-php8.2-fpm-alpine`, `4.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-beta2-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.beta-php8.2-fpm`, `4.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/32a8ac51fa8885f858e5716f57b0502f23812169/4.4.beta/php8.2/fpm/Dockerfile) -- [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/apache/Dockerfile) -- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.0/fpm/Dockerfile) -- [`4.3.4-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/apache/Dockerfile) -- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.1/fpm/Dockerfile) -- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/apache/Dockerfile) -- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f9a16bcbd8cc90ddcac5c7f8223e18d306a45825/4.3/php8.2/fpm/Dockerfile) +- [`5.0.0-rc1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.rc-php8.1-apache`, `5.0.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/apache/Dockerfile) +- [`5.0.0-rc1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.rc-php8.1-fpm-alpine`, `5.0.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-rc1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.rc-php8.1-fpm`, `5.0.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/fpm/Dockerfile) +- [`5.0.0-rc1`, `5.0`, `5.0.rc`, `5.0.0-rc`, `5.0.0-rc1-apache`, `5.0-apache`, `5.0.rc-apache`, `5.0.0-rc-apache`, `5.0.0-rc1-php8.2`, `5.0-php8.2`, `5.0.rc-php8.2`, `5.0.0-rc-php8.2`, `5.0.0-rc1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.rc-php8.2-apache`, `5.0.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/apache/Dockerfile) +- [`5.0.0-rc1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.rc-php8.2-fpm-alpine`, `5.0.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-rc1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.rc-php8.2-fpm`, `5.0.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/fpm/Dockerfile) +- [`4.4.0-rc1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.rc-php8.0-apache`, `4.4.0-rc-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/apache/Dockerfile) +- [`4.4.0-rc1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.rc-php8.0-fpm-alpine`, `4.4.0-rc-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-rc1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.rc-php8.0-fpm`, `4.4.0-rc-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/fpm/Dockerfile) +- [`4.4.0-rc1`, `4.4`, `4.4.rc`, `4.4.0-rc`, `4.4.0-rc1-apache`, `4.4-apache`, `4.4.rc-apache`, `4.4.0-rc-apache`, `4.4.0-rc1-php8.1`, `4.4-php8.1`, `4.4.rc-php8.1`, `4.4.0-rc-php8.1`, `4.4.0-rc1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.rc-php8.1-apache`, `4.4.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/apache/Dockerfile) +- [`4.4.0-rc1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.rc-php8.1-fpm-alpine`, `4.4.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-rc1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.rc-php8.1-fpm`, `4.4.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/fpm/Dockerfile) +- [`4.4.0-rc1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.rc-php8.2-apache`, `4.4.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/apache/Dockerfile) +- [`4.4.0-rc1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.rc-php8.2-fpm-alpine`, `4.4.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-rc1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.rc-php8.2-fpm`, `4.4.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/fpm/Dockerfile) +- [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/apache/Dockerfile) +- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm/Dockerfile) +- [`4.3.4-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/apache/Dockerfile) +- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm/Dockerfile) +- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/apache/Dockerfile) +- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm/Dockerfile) - [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/apache/Dockerfile) - [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm/Dockerfile) diff --git a/kong/README.md b/kong/README.md index 48966f355dd4..c6284820c223 100644 --- a/kong/README.md +++ b/kong/README.md @@ -33,7 +33,8 @@ WARNING: - [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) - [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) -- [`2.8.3-alpine`, `2.8.3`, `2.8`](https://github.com/Kong/docker-kong/blob/7557a360568fb70650d35724462446064ec081b3/alpine/Dockerfile) +- [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) +- [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index c762119e5fb6..820daa5f5028 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.12-apache`, `25.0-apache`, `25-apache`, `25.0.12`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/apache/Dockerfile) -- [`25.0.12-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/fpm/Dockerfile) -- [`25.0.12-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/25/fpm-alpine/Dockerfile) -- [`26.0.7-apache`, `26.0-apache`, `26-apache`, `26.0.7`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/apache/Dockerfile) -- [`26.0.7-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/fpm/Dockerfile) -- [`26.0.7-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/26/fpm-alpine/Dockerfile) -- [`27.1.1-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.1`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/apache/Dockerfile) -- [`27.1.1-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/fpm/Dockerfile) -- [`27.1.1-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/b008ff8bb71977e40aaf60293cb00d2612d5ccc5/27/fpm-alpine/Dockerfile) +- [`25.0.12-apache`, `25.0-apache`, `25-apache`, `25.0.12`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/apache/Dockerfile) +- [`25.0.12-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/fpm/Dockerfile) +- [`25.0.12-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/fpm-alpine/Dockerfile) +- [`26.0.7-apache`, `26.0-apache`, `26-apache`, `26.0.7`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/apache/Dockerfile) +- [`26.0.7-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm/Dockerfile) +- [`26.0.7-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm-alpine/Dockerfile) +- [`27.1.1-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.1`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/apache/Dockerfile) +- [`27.1.1-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/fpm/Dockerfile) +- [`27.1.1-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 219e1f3909cc0919ba9de157f5ba985e1d0df6ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Oct 2023 14:09:25 -0700 Subject: [PATCH 0632/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 0c0516518afc..a6fbb8fbe9c9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.21.1-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bookworm/Dockerfile) -- [`1.21.1-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bullseye/Dockerfile) -- [`1.21.1-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.1-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/alpine3.18/Dockerfile) -- [`1.21.1-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/alpine3.17/Dockerfile) -- [`1.21.1-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.1-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.1-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.1-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.8-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bookworm/Dockerfile) -- [`1.20.8-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bullseye/Dockerfile) -- [`1.20.8-alpine3.18`, `1.20-alpine3.18`, `1.20.8-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/alpine3.18/Dockerfile) -- [`1.20.8-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/alpine3.17/Dockerfile) -- [`1.20.8-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.8-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.8-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.8-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.2-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bookworm/Dockerfile) +- [`1.21.2-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bullseye/Dockerfile) +- [`1.21.2-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.2-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/alpine3.18/Dockerfile) +- [`1.21.2-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/alpine3.17/Dockerfile) +- [`1.21.2-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.2-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.2-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.2-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.9-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bookworm/Dockerfile) +- [`1.20.9-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bullseye/Dockerfile) +- [`1.20.9-alpine3.18`, `1.20-alpine3.18`, `1.20.9-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/alpine3.18/Dockerfile) +- [`1.20.9-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/alpine3.17/Dockerfile) +- [`1.20.9-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.9-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.9-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.9-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21.1`, `1.21`, `1`, `latest`: - - [`1.21.1-bookworm`](https://github.com/docker-library/golang/blob/b643595f97209e0e67f0cf62e13d4fb6c609451b/1.21/bookworm/Dockerfile) - - [`1.21.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.1-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.1-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/585c8c1e705a7a458455f0629922a4f90628ce08/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.8`, `1.20`: - - [`1.20.8-bookworm`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/bookworm/Dockerfile) - - [`1.20.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.8-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.8-nanoserver`, `1.20-nanoserver`: - - [`1.20.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/24115a7612dfca330632a04604cd72f673085e8a/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.2`, `1.21`, `1`, `latest`: + - [`1.21.2-bookworm`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bookworm/Dockerfile) + - [`1.21.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.2-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.2-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.9`, `1.20`: + - [`1.20.9-bookworm`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bookworm/Dockerfile) + - [`1.20.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.9-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.9-nanoserver`, `1.20-nanoserver`: + - [`1.20.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 920bd3680b10893088638496f10a1901f3b22ae7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Oct 2023 17:09:33 -0700 Subject: [PATCH 0633/2686] Run update.sh --- aerospike/README.md | 4 ++-- erlang/README.md | 12 ++++++------ friendica/README.md | 15 +++++++++------ geonetwork/README.md | 6 +++--- gradle/README.md | 40 ++++++++++++++++++++-------------------- kong/README.md | 2 +- rust/README.md | 16 ++++++++-------- sl/README.md | 2 +- 8 files changed, 50 insertions(+), 47 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 81772f2d4791..a661209ab341 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.3`, `ee-6.4.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/fd444862e2934e9abd43edc31a6d4ecd67161d51/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.3`, `ce-6.4.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/fd444862e2934e9abd43edc31a6d4ecd67161d51/community/debian12/Dockerfile) +- [`ee-6.4.0.4`, `ee-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.4`, `ce-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 34fa68986c86..9eafb041bdef 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.2.0`, `26.0.2`, `26.0`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/Dockerfile) -- [`26.0.2.0-slim`, `26.0.2-slim`, `26.0-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/slim/Dockerfile) -- [`26.0.2.0-alpine`, `26.0.2-alpine`, `26.0-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/26/alpine/Dockerfile) -- [`25.3.2.3`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/Dockerfile) -- [`25.3.2.3-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/slim/Dockerfile) -- [`25.3.2.3-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/25/alpine/Dockerfile) +- [`26.1.1.0`, `26.1.1`, `26.1`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/Dockerfile) +- [`26.1.1.0-slim`, `26.1.1-slim`, `26.1-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/slim/Dockerfile) +- [`26.1.1.0-alpine`, `26.1.1-alpine`, `26.1-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/alpine/Dockerfile) +- [`25.3.2.6`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/Dockerfile) +- [`25.3.2.6-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/slim/Dockerfile) +- [`25.3.2.6-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/alpine/Dockerfile) - [`24.3.4.13`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/Dockerfile) - [`24.3.4.13-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/slim/Dockerfile) - [`24.3.4.13-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/alpine/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 83be9b6b6439..410ae32e4a6e 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/apache/Dockerfile) -- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/fpm/Dockerfile) -- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.05/fpm-alpine/Dockerfile) -- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/apache/Dockerfile) -- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/fpm/Dockerfile) -- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/cf6182cea754b768b60605543807c7afb6fcb993/2023.09-dev/fpm-alpine/Dockerfile) +- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/apache/Dockerfile) +- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/fpm/Dockerfile) +- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/fpm-alpine/Dockerfile) +- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/apache/Dockerfile) +- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/fpm/Dockerfile) +- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/fpm-alpine/Dockerfile) +- [`2023.09-rc-apache`, `rc-apache`, `2023.09-rc`, `rc`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/apache/Dockerfile) +- [`2023.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/fpm/Dockerfile) +- [`2023.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index ec82d2ccb162..aa6a814b5586 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.10`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/Dockerfile) -- [`3.12.10-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/43d2ceae423b3595499a0b40255a249816490678/3.12.10/postgres/Dockerfile) +- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) +- [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) - [`4.0.6`, `4.0`](https://github.com/geonetwork/docker-geonetwork/blob/00936dcf7dbb2399405c53aa05c670fa4bb79736/4.0.6/Dockerfile) -- [`4.2.5`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/987e87e7fadefb5e2aaeb50a94617dc3a68682f5/4.2.5/Dockerfile) +- [`4.2.6`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/3dd8a6f569eb7755235e770f06c0f6e9659a4277/4.2.6/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 2604f7b804c1..7fc8604814c5 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0-jdk8`, `8.3-jdk8`, `8-jdk8`, `jdk8`, `8.3.0-jdk8-jammy`, `8.3-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk8/Dockerfile) -- [`8.3.0-jdk8-focal`, `8.3-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk8-focal/Dockerfile) -- [`8.3.0-jdk11`, `8.3-jdk11`, `8-jdk11`, `jdk11`, `8.3.0-jdk11-jammy`, `8.3-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11/Dockerfile) -- [`8.3.0-jdk11-focal`, `8.3-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11-focal/Dockerfile) -- [`8.3.0-jdk11-alpine`, `8.3-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk11-alpine/Dockerfile) -- [`8.3.0-jdk17`, `8.3-jdk17`, `8-jdk17`, `jdk17`, `8.3.0-jdk`, `8.3-jdk`, `8-jdk`, `jdk`, `8.3.0`, `8.3`, `8`, `latest`, `8.3.0-jdk17-jammy`, `8.3-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.3.0-jdk-jammy`, `8.3-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.3.0-jammy`, `8.3-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17/Dockerfile) -- [`8.3.0-jdk17-focal`, `8.3-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.3.0-jdk-focal`, `8.3-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.3.0-focal`, `8.3-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-focal/Dockerfile) -- [`8.3.0-jdk17-alpine`, `8.3-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.3.0-jdk-alpine`, `8.3-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-alpine/Dockerfile) -- [`8.3.0-jdk17-graal`, `8.3-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.3.0-jdk-graal`, `8.3-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.3.0-graal`, `8.3-graal`, `8-graal`, `graal`, `8.3.0-jdk17-graal-jammy`, `8.3-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.3.0-jdk-graal-jammy`, `8.3-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.3.0-graal-jammy`, `8.3-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk17-graal/Dockerfile) -- [`8.3.0-jdk20`, `8.3-jdk20`, `8-jdk20`, `jdk20`, `8.3.0-jdk20-jammy`, `8.3-jdk20-jammy`, `8-jdk20-jammy`, `jdk20-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20/Dockerfile) -- [`8.3.0-jdk20-alpine`, `8.3-jdk20-alpine`, `8-jdk20-alpine`, `jdk20-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20-alpine/Dockerfile) -- [`8.3.0-jdk20-graal`, `8.3-jdk20-graal`, `8-jdk20-graal`, `jdk20-graal`, `8.3.0-jdk20-graal-jammy`, `8.3-jdk20-graal-jammy`, `8-jdk20-graal-jammy`, `jdk20-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f2462744bc16e4c55fd53fba45e9d4c46d8417de/jdk20-graal/Dockerfile) -- [`7.6.2-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.2-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8/Dockerfile) -- [`7.6.2-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk8-focal/Dockerfile) -- [`7.6.2-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.2-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11/Dockerfile) -- [`7.6.2-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11-focal/Dockerfile) -- [`7.6.2-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk11-alpine/Dockerfile) -- [`7.6.2-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.2-jdk`, `7.6-jdk`, `7-jdk`, `7.6.2`, `7.6`, `7`, `7.6.2-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.2-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.2-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17/Dockerfile) -- [`7.6.2-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.2-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.2-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17-focal/Dockerfile) -- [`7.6.2-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.2-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.2-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/2b40b42e9b856c796fcb15b33bea409118b5c745/jdk17-alpine/Dockerfile) +- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk8/Dockerfile) +- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk8-focal/Dockerfile) +- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11/Dockerfile) +- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11-focal/Dockerfile) +- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11-alpine/Dockerfile) +- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17/Dockerfile) +- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-focal/Dockerfile) +- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-alpine/Dockerfile) +- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-graal/Dockerfile) +- [`8.4.0-jdk20`, `8.4-jdk20`, `8-jdk20`, `jdk20`, `8.4.0-jdk20-jammy`, `8.4-jdk20-jammy`, `8-jdk20-jammy`, `jdk20-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20/Dockerfile) +- [`8.4.0-jdk20-alpine`, `8.4-jdk20-alpine`, `8-jdk20-alpine`, `jdk20-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20-alpine/Dockerfile) +- [`8.4.0-jdk20-graal`, `8.4-jdk20-graal`, `8-jdk20-graal`, `jdk20-graal`, `8.4.0-jdk20-graal-jammy`, `8.4-jdk20-graal-jammy`, `8-jdk20-graal-jammy`, `jdk20-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20-graal/Dockerfile) +- [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) +- [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) +- [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) +- [`7.6.3-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11-focal/Dockerfile) +- [`7.6.3-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11-alpine/Dockerfile) +- [`7.6.3-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.3-jdk`, `7.6-jdk`, `7-jdk`, `7.6.3`, `7.6`, `7`, `7.6.3-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.3-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.3-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17/Dockerfile) +- [`7.6.3-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.3-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.3-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17-focal/Dockerfile) +- [`7.6.3-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.3-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.3-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17-alpine/Dockerfile) - [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8/Dockerfile) - [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8-focal/Dockerfile) - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11/Dockerfile) diff --git a/kong/README.md b/kong/README.md index c6284820c223..4f14b5ea9d0e 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-ubuntu`, `3.4-ubuntu`, `3.4.0`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/a5ff45ca9bcfd931cc777acdf4a8ad354114a5c9/ubuntu/Dockerfile) +- [`3.4.1-ubuntu`, `3.4-ubuntu`, `3.4.1`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/dae5846f2d75f71aa1b17ed2cb17af78c20355a7/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) - [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) diff --git a/rust/README.md b/rust/README.md index 9acbccb6a943..9b7a1b34ae02 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.72-buster`, `1.72.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/buster/Dockerfile) -- [`1-slim-buster`, `1.72-slim-buster`, `1.72.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.72-bullseye`, `1.72.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.72-slim-bullseye`, `1.72.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.72-bookworm`, `1.72.1-bookworm`, `bookworm`, `1`, `1.72`, `1.72.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.72-slim-bookworm`, `1.72.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.72-slim`, `1.72.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.72-alpine3.17`, `1.72.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.72-alpine3.18`, `1.72.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.72-alpine`, `1.72.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/109ecb71aa67ac9553a359018716dd520777ee5d/1.72.1/alpine3.18/Dockerfile) +- [`1-buster`, `1.73-buster`, `1.73.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/buster/Dockerfile) +- [`1-slim-buster`, `1.73-slim-buster`, `1.73.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.73-bullseye`, `1.73.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.73-slim-bullseye`, `1.73.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.73-bookworm`, `1.73.0-bookworm`, `bookworm`, `1`, `1.73`, `1.73.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.73-slim-bookworm`, `1.73.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.73-slim`, `1.73.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.73-alpine3.17`, `1.73.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.73-alpine3.18`, `1.73.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.73-alpine`, `1.73.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/sl/README.md b/sl/README.md index 36fb17e771ff..a6237e447156 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/2cf619a0823267187d711143c981bf092e45fe04/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/6774a5c2862153082a4f2271aa6073b5bd823e6b/sl7/Dockerfile) # Quick reference (cont.) From e6bbe741f0bbcf9185ebec7f924d608bc777e196 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Oct 2023 18:09:23 -0700 Subject: [PATCH 0634/2686] Run update.sh --- postgres/README.md | 24 ++++++++++++------------ rabbitmq/README.md | 20 ++++++++++---------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 535fdd1c79a7..5dccd18fa73f 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -26,28 +26,28 @@ WARNING: - [`16.0`, `16`, `latest`, `16.0-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bookworm/Dockerfile) - [`16.0-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bullseye/Dockerfile) -- [`16.0-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.0-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/alpine3.18/Dockerfile) -- [`16.0-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/alpine3.17/Dockerfile) +- [`16.0-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.0-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/16/alpine3.18/Dockerfile) +- [`16.0-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/16/alpine3.17/Dockerfile) - [`15.4`, `15`, `15.4-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bookworm/Dockerfile) - [`15.4-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bullseye/Dockerfile) -- [`15.4-alpine3.18`, `15-alpine3.18`, `15.4-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.18/Dockerfile) -- [`15.4-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/1a73ab671b5f0f18313726e734c76bf171385c32/15/alpine3.17/Dockerfile) +- [`15.4-alpine3.18`, `15-alpine3.18`, `15.4-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/15/alpine3.18/Dockerfile) +- [`15.4-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/15/alpine3.17/Dockerfile) - [`14.9`, `14`, `14.9-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bookworm/Dockerfile) - [`14.9-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bullseye/Dockerfile) -- [`14.9-alpine3.18`, `14-alpine3.18`, `14.9-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/alpine3.18/Dockerfile) -- [`14.9-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/alpine3.17/Dockerfile) +- [`14.9-alpine3.18`, `14-alpine3.18`, `14.9-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/14/alpine3.18/Dockerfile) +- [`14.9-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/14/alpine3.17/Dockerfile) - [`13.12`, `13`, `13.12-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bookworm/Dockerfile) - [`13.12-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bullseye/Dockerfile) -- [`13.12-alpine3.18`, `13-alpine3.18`, `13.12-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/alpine3.18/Dockerfile) -- [`13.12-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/alpine3.17/Dockerfile) +- [`13.12-alpine3.18`, `13-alpine3.18`, `13.12-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/13/alpine3.18/Dockerfile) +- [`13.12-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/13/alpine3.17/Dockerfile) - [`12.16`, `12`, `12.16-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bookworm/Dockerfile) - [`12.16-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bullseye/Dockerfile) -- [`12.16-alpine3.18`, `12-alpine3.18`, `12.16-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/alpine3.18/Dockerfile) -- [`12.16-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/alpine3.17/Dockerfile) +- [`12.16-alpine3.18`, `12-alpine3.18`, `12.16-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/12/alpine3.18/Dockerfile) +- [`12.16-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/12/alpine3.17/Dockerfile) - [`11.21-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bookworm/Dockerfile) - [`11.21-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bullseye/Dockerfile) -- [`11.21-alpine3.18`, `11-alpine3.18`, `11.21-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/alpine3.18/Dockerfile) -- [`11.21-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/alpine3.17/Dockerfile) +- [`11.21-alpine3.18`, `11-alpine3.18`, `11.21-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/11/alpine3.18/Dockerfile) +- [`11.21-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/11/alpine3.17/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 25a1e9841a1e..ca1e426c04bb 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/ced055dcc013310157788d8e5a710f231bb7cdba/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ced055dcc013310157788d8e5a710f231bb7cdba/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/81ad274c81ec8f7a2716d5f6bb518c5f0bf142c3/3.12/ubuntu/Dockerfile) +- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.12/ubuntu/Dockerfile) - [`3.12.6-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/81ad274c81ec8f7a2716d5f6bb518c5f0bf142c3/3.12/alpine/Dockerfile) +- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.12/alpine/Dockerfile) - [`3.12.6-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/ubuntu/Dockerfile) +- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.11/ubuntu/Dockerfile) - [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/81b8ee036965dd5048783aae5a1b6f8ee85b7a4e/3.11/alpine/Dockerfile) +- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.11/alpine/Dockerfile) - [`3.11.23-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/e542cb7bc32c917d11e88d940c5a7311ad238643/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/e542cb7bc32c917d11e88d940c5a7311ad238643/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0f256376f1f5b12dc468f2bcb6142e9162ca2747/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0f256376f1f5b12dc468f2bcb6142e9162ca2747/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 0accd5c4f2cc9cabcf8a30804fa9647f918f6872 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Oct 2023 11:09:50 -0700 Subject: [PATCH 0635/2686] Run update.sh --- composer/README.md | 2 +- fedora/README.md | 8 ++++---- xwiki/README.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer/README.md b/composer/README.md index bd6aa0e40d66..89e42fb49647 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.4`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/200aeac3b7e22ce8fa63cee09073b64b05d8575c/2.6/Dockerfile) +- [`2.6.5`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/1659442e2fe548afddf0a7356b6ca0c2348186b4/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index 93572181f061..2b279b8d3988 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f2d71db92e97f56972aff21875ac78e1f5ad6f1e/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7342d0458445013ae9ba5fee6632706edea63c59/x86_64/Dockerfile) -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/28f503cba9e6e3c8e6affd2685a92a376e4c544a/x86_64/Dockerfile) -- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f72d0840d156283181949a6fdf07155d0de6608b/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/92f8d968c2d36860c10f454673a7cc279eeff27e/x86_64/Dockerfile) +- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8e90bfda941f51e85c0742f51fb8901f05574a0a/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/48661c7e79573338c8bf5f0bf203154b77c4e5bc/x86_64/Dockerfile) +- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5fe5849c451c8a40a4bd7521792fa2683c93678e/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index fcc4dce4d4cd..35d887f9aa07 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,9 +30,9 @@ WARNING: - [`14`, `14.10`, `14.10.17`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.17-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.17-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.17-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.2`, `15.5-mysql-tomcat`, `15.5.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/87cd49b5f9ff731aa41723d1badb705e06f4aa41/15.5/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From bd4f5d4dc4426e0fa30f351f907544a374a5f308 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Oct 2023 12:09:32 -0700 Subject: [PATCH 0636/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 3 +- drupal/README.md | 24 +++++++-------- ghost/README.md | 4 +-- hylang/README.md | 74 ++++++++++++++++++++++----------------------- irssi/README.md | 4 +-- julia/README.md | 26 ++++++++-------- openjdk/README.md | 36 +++++++++++----------- wordpress/README.md | 18 +++++------ 9 files changed, 96 insertions(+), 95 deletions(-) diff --git a/bash/README.md b/bash/README.md index 4e40fa6ab9f0..194c4efd91e9 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230925`, `devel`, `devel-20230925-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/2fddd16e7f1a4b7fc90f9d29aa551c57d2d46dfa/devel/Dockerfile) +- [`devel-20230928`, `devel`, `devel-20230928-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/b9b74f36a800f7cde9ec1f7a548acca0507ce0b5/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 6944f55d6428..23c52c3129f2 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`5.0-alpha1`, `5.0`](https://github.com/docker-library/cassandra/blob/01dffce9d5d205f61733cbffaaf8973cc586219b/5.0/Dockerfile) - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) -- [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/955064939ae306088491856ff169b58319d619f9/4.0/Dockerfile) +- [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) - [`3.11.16`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) - [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 996eaac8a884..33b6f8c31f77 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.4-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.4-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.4-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.4-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.4-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.4`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.4-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.4-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.4-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.4-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.4-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.4-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.4-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.4-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.4-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.4-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.4-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.4-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.4-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.4-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.4-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.4-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.4-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.4-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.4-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.4-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.4-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.4-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.4-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.4-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d483c0b7c82123c08eb9d959522f6941eadd0431/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.5-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.5-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.5-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.5-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.5-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.5`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.5-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.5-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.5-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.5-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.5-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.5-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.5-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.5-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.5-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.5-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.5-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.5-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.5-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.5-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.5-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.5-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.5-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.5-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.5-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.5-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.5-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.5-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.5-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.5-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-alpine3.17/Dockerfile) - [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bullseye/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 7da7b8da1e95..5514e041d43b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.66.1`, `5.66`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f494e8c84e73c1c816eb8876e1ab6a02e1fa500e/5/debian/Dockerfile) -- [`5.66.1-alpine`, `5.66-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f494e8c84e73c1c816eb8876e1ab6a02e1fa500e/5/alpine/Dockerfile) +- [`5.67.0`, `5.67`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fae9e5a5222553c1a2746dd31779df1ea1277785/5/debian/Dockerfile) +- [`5.67.0-alpine`, `5.67-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fae9e5a5222553c1a2746dd31779df1ea1277785/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index bff9b173450d..aa5ade08feae 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.27.0-python3.11-alpine3.17`, `0.27-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`, `0.27.0-alpine3.17`, `0.27-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.27.0-python3.10-alpine3.17`, `0.27-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.27.0-python3.9-alpine3.17`, `0.27-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.27.0-python3.8-alpine3.17`, `0.27-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.27.0-python3.12-rc-bookworm`, `0.27-python3.12-rc-bookworm`, `0-python3.12-rc-bookworm`, `python3.12-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bookworm) -- [`0.27.0-python3.12-rc-bullseye`, `0.27-python3.12-rc-bullseye`, `0-python3.12-rc-bullseye`, `python3.12-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bullseye) -- [`0.27.0-python3.12-rc-alpine3.18`, `0.27-python3.12-rc-alpine3.18`, `0-python3.12-rc-alpine3.18`, `python3.12-rc-alpine3.18`, `0.27.0-python3.12-rc-alpine`, `0.27-python3.12-rc-alpine`, `0-python3.12-rc-alpine`, `python3.12-rc-alpine`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-alpine3.18) -- [`0.27.0-python3.12-rc-alpine3.17`, `0.27-python3.12-rc-alpine3.17`, `0-python3.12-rc-alpine3.17`, `python3.12-rc-alpine3.17`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-alpine3.17) -- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.27.0-python3.12-bookworm`, `0.27-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.27.0-python3.12-bullseye`, `0.27-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.27.0-python3.12-alpine3.18`, `0.27-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.27.0-python3.12-alpine`, `0.27-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) +- [`0.27.0-python3.12-alpine3.17`, `0.27-python3.12-alpine3.17`, `0-python3.12-alpine3.17`, `python3.12-alpine3.17`, `0.27.0-alpine3.17`, `0.27-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-alpine3.17) +- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.27.0-python3.11-alpine3.17`, `0.27-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) +- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.27.0-python3.10-alpine3.17`, `0.27-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) +- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.27.0-python3.9-alpine3.17`, `0.27-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) +- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.27.0-python3.8-alpine3.17`, `0.27-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) +- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags -- `0.27.0-python3.11`, `0.27-python3.11`, `0-python3.11`, `python3.11`, `0.27.0`, `0.27`, `0`, `latest`: - - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- `0.27.0-python3.12`, `0.27-python3.12`, `0-python3.12`, `python3.12`, `0.27.0`, `0.27`, `0`, `latest`: + - [`0.27.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- `0.27.0-python3.11`, `0.27-python3.11`, `0-python3.11`, `python3.11`: + - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.27.0-python3.10`, `0.27-python3.10`, `0-python3.10`, `python3.10`: - - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.27.0-python3.9`, `0.27-python3.9`, `0-python3.9`, `python3.9`: - - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.27.0-python3.8`, `0.27-python3.8`, `0-python3.8`, `python3.8`: - - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- `0.27.0-python3.12-rc`, `0.27-python3.12-rc`, `0-python3.12-rc`, `python3.12-rc`: - - [`0.27.0-python3.12-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.python3.12-rc-bookworm) + - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.27.0-pypy3.10`, `0.27-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.27.0-pypy`, `0.27-pypy`, `0-pypy`, `pypy`: - - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - `0.27.0-pypy3.9`, `0.27-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/5ea067a83e2b58c981e068dd75b8e4788736f923/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 6dcdc7058cae..1df1d04be902 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.4`, `1.4`, `1`, `latest`, `1.4.4-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b4d59338769521e17730ff1741c8502a9e210846/debian/Dockerfile) -- [`1.4.4-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.4-alpine3.18`, `1.4-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/jessfraz/irssi/blob/105374db8e9ecf2782c5302f17464547dd5c8609/alpine/Dockerfile) +- [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/a3a3f65ed35b33c791a86af4383b5129ab7b7721/debian/Dockerfile) +- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.18`, `1.4-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/jessfraz/irssi/blob/a3a3f65ed35b33c791a86af4383b5129ab7b7721/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 7e90a9b5b822..8634abccaff6 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-beta2-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-beta2-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-beta2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-beta2-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/alpine3.17/Dockerfile) -- [`1.10.0-beta2-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-beta2-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-beta3-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-beta3-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-beta3-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta3-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-beta3-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-beta3-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-beta3-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.3-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) - [`1.9.3-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bullseye/Dockerfile) - [`1.9.3-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.3-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.18/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.10.0-beta2`, `1.10-rc`, `rc`: - - [`1.10.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-beta2-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/f80de436a3942a20d891e8f8020d1e4c8f0e930d/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta3`, `1.10-rc`, `rc`: + - [`1.10.0-beta3-bookworm`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-beta3-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.3`, `1.9`, `1`, `latest`: - [`1.9.3-bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 191dc2700758..7f4302aa7085 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-17-jdk-oraclelinux8`, `22-ea-17-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-17-jdk-oracle`, `22-ea-17-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-17-jdk-oraclelinux7`, `22-ea-17-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-17-jdk-bookworm`, `22-ea-17-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/bookworm/Dockerfile) -- [`22-ea-17-jdk-slim-bookworm`, `22-ea-17-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-17-jdk-slim`, `22-ea-17-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-17-jdk-bullseye`, `22-ea-17-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/bullseye/Dockerfile) -- [`22-ea-17-jdk-slim-bullseye`, `22-ea-17-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-17-jdk-windowsservercore-ltsc2022`, `22-ea-17-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-17-jdk-windowsservercore-1809`, `22-ea-17-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-17-jdk-nanoserver-1809`, `22-ea-17-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-18-jdk-oraclelinux8`, `22-ea-18-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-18-jdk-oracle`, `22-ea-18-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-18-jdk-oraclelinux7`, `22-ea-18-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-18-jdk-bookworm`, `22-ea-18-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/bookworm/Dockerfile) +- [`22-ea-18-jdk-slim-bookworm`, `22-ea-18-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-18-jdk-slim`, `22-ea-18-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-18-jdk-bullseye`, `22-ea-18-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/bullseye/Dockerfile) +- [`22-ea-18-jdk-slim-bullseye`, `22-ea-18-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-18-jdk-windowsservercore-ltsc2022`, `22-ea-18-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-18-jdk-windowsservercore-1809`, `22-ea-18-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-18-jdk-nanoserver-1809`, `22-ea-18-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-17-jdk`, `22-ea-17`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-17-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-17-jdk-windowsservercore`, `22-ea-17-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-17-jdk-nanoserver`, `22-ea-17-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/94981701562631f815784231dc7e0e9d36822812/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-18-jdk`, `22-ea-18`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-18-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-18-jdk-windowsservercore`, `22-ea-18-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-18-jdk-nanoserver`, `22-ea-18-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 7e2bbe3cb2d1..68c217110491 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-beta1-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta1`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta1-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta1-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-beta1-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta1-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-beta1-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta1-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-beta1-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta1-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-beta1-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-beta1-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-beta1-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta1-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-beta1-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-beta1-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/65207272fa4b6c6137055deb8c616a153100d01f/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4-beta2-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta2`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta2-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta2-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-beta2-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta2-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-beta2-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta2-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-beta2-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta2-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-beta2-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-beta2-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-beta2-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta2-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-beta2-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-beta2-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From a932d5964e428cc92363e7638c6e6accbc1d4a73 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Mon, 9 Oct 2023 19:38:01 +0100 Subject: [PATCH 0637/2686] Change registry image short description Update the outdated short description for the registry DOI --- registry/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/README-short.txt b/registry/README-short.txt index 228c924d4fea..e36e4f6e3437 100644 --- a/registry/README-short.txt +++ b/registry/README-short.txt @@ -1 +1 @@ -The Docker Registry 2.0 implementation for storing and distributing Docker images +Distribution implementation for storing and distributing of container images and artifacts From 899ad6dc92290a9b307fd18d6836e857e012a0cb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Oct 2023 16:20:01 -0700 Subject: [PATCH 0638/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/nats/README.md b/nats/README.md index 003962435414..75a2e4bfcfc2 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.1-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.1-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/alpine3.18/Dockerfile) -- [`2.10.1-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.1-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) -- [`2.10.1-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.1-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/alpine3.18/Dockerfile) -- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) -- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.2-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.2-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/alpine3.18/Dockerfile) +- [`2.10.2-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.2-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) +- [`2.10.2-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.2-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/alpine3.18/Dockerfile) +- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) +- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.1`, `2.10`: - - [`2.10.1-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) - - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.2`, `2.10`: + - [`2.10.2-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) + - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.1-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/scratch/Dockerfile) - - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) -- `2.10.1-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.1-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.1-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.2-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) + - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) +- `2.10.2-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.2-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.2-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) - `2.9.22`, `2.9`: - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/scratch/Dockerfile) + - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) - `2.9.22-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.22-nanoserver`, `2.9-nanoserver`: - - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/a04532b5dab8815f4f5684b84bf365650095f4b5/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 754d75cc1e39a71b3ecad9c8d6db0bc20f2bd083 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Oct 2023 17:09:31 -0700 Subject: [PATCH 0639/2686] Run update.sh --- clearlinux/README.md | 2 +- photon/README.md | 2 +- xwiki/README.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index e82ca4f57353..b232b18447ba 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/abeee829f47f6474b3c4a61fa2e2b88b732dbdd5/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/cc4091909649096cd8afd924eced1d2e5ff7ae63/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 2920485b7f3e..28d111258c82 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20230923`, `latest`](https://github.com/vmware/photon-docker-image/blob/c0d25ad3be1cd40dcbfd3767220be9085f1dd23f/docker/Dockerfile) +- [`5.0`, `5.0-20231007`, `latest`](https://github.com/vmware/photon-docker-image/blob/02731a52fb56792fb9438f9cbf013e00226cbcfc/docker/Dockerfile) - [`4.0`, `4.0-20230916`](https://github.com/vmware/photon-docker-image/blob/60a27c92f26c7b9285c3eed17bcb93c97cbd3129/docker/Dockerfile) - [`3.0`, `3.0-20230923`](https://github.com/vmware/photon-docker-image/blob/a61dffbb1e0537dd11d28b8e1a6a3059586a398e/docker/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 35d887f9aa07..6c3d934fb31c 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.8`, `15.8.0`, `15-mysql-tomcat`, `15.8-mysql-tomcat`, `15.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.8-postgres-tomcat`, `15.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.8-mariadb-tomcat`, `15.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.17`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.17-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.17-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.17-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/06443621dfb11ccc4e2eb7abbd332d84ef4daa46/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.18`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.18-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.18-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.18-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mariadb-tomcat/Dockerfile) From f82b947508ed61923c4e3b1367a81bcc7aab8a29 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Oct 2023 12:09:25 -0700 Subject: [PATCH 0640/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index a6fbb8fbe9c9..ddaaea88ec3f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.21.2-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bookworm/Dockerfile) -- [`1.21.2-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bullseye/Dockerfile) -- [`1.21.2-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.2-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/alpine3.18/Dockerfile) -- [`1.21.2-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/alpine3.17/Dockerfile) -- [`1.21.2-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.2-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.2-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.2-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.9-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bookworm/Dockerfile) -- [`1.20.9-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bullseye/Dockerfile) -- [`1.20.9-alpine3.18`, `1.20-alpine3.18`, `1.20.9-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/alpine3.18/Dockerfile) -- [`1.20.9-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/alpine3.17/Dockerfile) -- [`1.20.9-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.9-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.9-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.9-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.3-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bookworm/Dockerfile) +- [`1.21.3-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bullseye/Dockerfile) +- [`1.21.3-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.3-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/alpine3.18/Dockerfile) +- [`1.21.3-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/alpine3.17/Dockerfile) +- [`1.21.3-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.3-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.3-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.3-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.10-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bookworm/Dockerfile) +- [`1.20.10-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bullseye/Dockerfile) +- [`1.20.10-alpine3.18`, `1.20-alpine3.18`, `1.20.10-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/alpine3.18/Dockerfile) +- [`1.20.10-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/alpine3.17/Dockerfile) +- [`1.20.10-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.10-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.10-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.10-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21.2`, `1.21`, `1`, `latest`: - - [`1.21.2-bookworm`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/bookworm/Dockerfile) - - [`1.21.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.2-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.2-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/f0d301c385958888968d6ab8f8510c3cd5cce704/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.9`, `1.20`: - - [`1.20.9-bookworm`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/bookworm/Dockerfile) - - [`1.20.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.9-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.9-nanoserver`, `1.20-nanoserver`: - - [`1.20.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/d47076e3070196e128f769ca0720009aacc86e65/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.3`, `1.21`, `1`, `latest`: + - [`1.21.3-bookworm`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bookworm/Dockerfile) + - [`1.21.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.3-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.3-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.10`, `1.20`: + - [`1.20.10-bookworm`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bookworm/Dockerfile) + - [`1.20.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.10-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.10-nanoserver`, `1.20-nanoserver`: + - [`1.20.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 65a900790c0150093a1b569060f348e4baa236ea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Oct 2023 13:09:35 -0700 Subject: [PATCH 0641/2686] Run update.sh --- arangodb/README.md | 3 +-- gazebo/README.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index b99ea2c3b1f1..525bbe78fd40 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9`, `3.9.12`](https://github.com/arangodb/arangodb-docker/blob/53f958f87211657b217169c7e00847034a708cd4/alpine/3.9.12/Dockerfile) - [`3.10`, `3.10.10`](https://github.com/arangodb/arangodb-docker/blob/5e1e58d2e5a985fe21b0747909d39eb3ccc434e2/alpine/3.10.10/Dockerfile) -- [`3.11`, `3.11.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/a2086d378d6c439d95b6900c6429709e57c6f24d/alpine/3.11.3/Dockerfile) +- [`3.11`, `3.11.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/8bb5a2e1077cf575d91c05246f9317b2bb9713bb/alpine/3.11.4/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index e799d449b9fe..f77b417fc5c8 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) -- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/99ff497288ca42e33d777a0d04fb8c026aca2f40/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) +- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) +- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) From 1ef03ad7a27cfe0586c7a24b4fc892f08924536c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Oct 2023 17:09:31 -0700 Subject: [PATCH 0642/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- wordpress/README.md | 18 +++++++++--------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bash/README.md b/bash/README.md index 194c4efd91e9..684417ef1184 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20230928`, `devel`, `devel-20230928-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/b9b74f36a800f7cde9ec1f7a548acca0507ce0b5/devel/Dockerfile) +- [`devel-20231005`, `devel`, `devel-20231005-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/05f3214715d69a806e23d199cdd46a2132634e69/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5514e041d43b..9f40fd7ab3e5 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.67.0`, `5.67`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fae9e5a5222553c1a2746dd31779df1ea1277785/5/debian/Dockerfile) -- [`5.67.0-alpine`, `5.67-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fae9e5a5222553c1a2746dd31779df1ea1277785/5/alpine/Dockerfile) +- [`5.68.0`, `5.68`, `5`, `latest`](https://github.com/docker-library/ghost/blob/64f729bc386d8fe074677adca8d71e1b35d08d5e/5/debian/Dockerfile) +- [`5.68.0-alpine`, `5.68-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/64f729bc386d8fe074677adca8d71e1b35d08d5e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 672a2913235e..cd9d3e5a141a 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev6`, `2.9-dev`, `2.9-dev6-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/40db7d102d0b5ac819985b7c7ee68e7dd4edd21a/2.9/Dockerfile) -- [`2.9-dev6-alpine`, `2.9-dev-alpine`, `2.9-dev6-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/40db7d102d0b5ac819985b7c7ee68e7dd4edd21a/2.9/alpine/Dockerfile) +- [`2.9-dev7`, `2.9-dev`, `2.9-dev7-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c95674c9a4c5a77b035a05de2ae3097dcb71abe3/2.9/Dockerfile) +- [`2.9-dev7-alpine`, `2.9-dev-alpine`, `2.9-dev7-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/c95674c9a4c5a77b035a05de2ae3097dcb71abe3/2.9/alpine/Dockerfile) - [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) - [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 68c217110491..e27d0a3174a1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-beta2-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta2`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta2-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta2-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-beta2-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta2-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-beta2-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta2-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-beta2-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta2-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-beta2-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-beta2-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-beta2-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta2-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-beta2-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-beta2-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1273e4ed4235ed8522d0a874ff7adb655764cf91/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4-beta3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta3-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta3-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-beta3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta3-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-beta3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta3-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-beta3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-beta3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-beta3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-beta3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-beta3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-beta3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 2e359a47de9a5fde0ada24ead2c3f78e3b3c7644 Mon Sep 17 00:00:00 2001 From: Daisuke Kashiwagi Date: Wed, 20 Sep 2023 01:40:58 +0900 Subject: [PATCH 0643/2686] Improve explanation on how to customize nginx conf When I first saw this document, I didn't understand the meaning of 'This can also be accomplished' and it confused me. So, I suggest an improvement. --- nginx/content.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/nginx/content.md b/nginx/content.md index 802adcf100d9..805b97eae2d2 100644 --- a/nginx/content.md +++ b/nginx/content.md @@ -35,23 +35,29 @@ $ docker run --name some-nginx -d -p 8080:80 some-content-nginx Then you can hit `http://localhost:8080` or `http://host-ip:8080` in your browser. -## Complex configuration +## Customize configuration + +You can mount your configuration file, or build a new image with it. + +If you wish to adapt the default configuration, use something like the following to get it from a running nginx container: ```console -$ docker run --name my-custom-nginx-container -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d %%IMAGE%% +$ docker run --name tmp-nginx-container -d %%IMAGE%% +$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf +$ docker rm -f tmp-nginx-container ``` +And then edit `/host/path/nginx.conf` in your host file system. + For information on the syntax of the nginx configuration files, see [the official documentation](http://nginx.org/en/docs/) (specifically the [Beginner's Guide](http://nginx.org/en/docs/beginners_guide.html#conf_structure)). -If you wish to adapt the default configuration, use something like the following to copy it from a running nginx container: +### Mount your configuration file ```console -$ docker run --name tmp-nginx-container -d %%IMAGE%% -$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf -$ docker rm -f tmp-nginx-container +$ docker run --name my-custom-nginx-container -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d %%IMAGE%% ``` -This can also be accomplished more cleanly using a simple `Dockerfile` (in `/host/path/`): +### Build a new image with your configuration file ```dockerfile FROM %%IMAGE%% From 797af14bfc97dd9b7e49605fa5dbe1e451fe00c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Oct 2023 10:25:04 -0700 Subject: [PATCH 0644/2686] Run update.sh --- dart/README.md | 4 +- jetty/README.md | 94 ++++++++++++++++++++++----------------------- nextcloud/README.md | 6 +-- traefik/README.md | 4 +- 4 files changed, 54 insertions(+), 54 deletions(-) diff --git a/dart/README.md b/dart/README.md index 7b3b17135b7e..f74cbd34ace1 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.3-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.3`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3adb95b42c342dc6bce6a81d0295b79a6a99b42f/stable/bookworm/Dockerfile) -- [`3.2.0-134.1.beta-sdk`, `beta-sdk`, `3.2.0-134.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3adb95b42c342dc6bce6a81d0295b79a6a99b42f/beta/bookworm/Dockerfile) +- [`3.1.3-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.3`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5c3f7cacc97f82d295dd530a201a11ca965cee78/stable/bookworm/Dockerfile) +- [`3.2.0-210.2.beta-sdk`, `beta-sdk`, `3.2.0-210.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5c3f7cacc97f82d295dd530a201a11ca965cee78/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index db94882a4152..ef7faa38a964 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.52-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.52-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.52-jre8`, `9.4-jre8`, `9-jre8`, `9.4.52-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.52-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.52-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.52-jre17`, `9.4-jre17`, `9-jre17`, `9.4.52-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.52-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.52-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.52-jre11`, `9.4-jre11`, `9-jre11`, `9.4.52-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.52-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.52-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.52-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.52-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.52`, `9.4`, `9`, `9.4.52-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.52-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.52-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.52-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.52-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.52-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.52-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.1-jre17-alpine`, `12.0-jre17-alpine`, `12.0.1-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.1-jre17`, `12.0-jre17`, `12.0.1-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.1-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.1-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.1`, `12.0`, `12.0.1-jdk17`, `12.0-jdk17`, `12.0.1-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.1-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.16-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.16-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.16-jre17`, `11.0-jre17`, `11-jre17`, `11.0.16-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.16-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.16-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.16-jre11`, `11.0-jre11`, `11-jre11`, `11.0.16-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.16-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.16-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.16`, `11.0`, `11`, `11.0.16-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.16-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.16-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.16-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.16-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.16-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.16-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.16-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.16-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.16-jre17`, `10.0-jre17`, `10-jre17`, `10.0.16-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.16-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.16-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.16-jre11`, `10.0-jre11`, `10-jre11`, `10.0.16-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.16-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.16-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.16`, `10.0`, `10`, `10.0.16-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.16-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.16-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.16-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.16-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.16-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.16-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.52-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.52-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.52-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.52-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.52-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.52-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.52-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.1-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.1-amazoncorretto`, `12.0-amazoncorretto`, `12.0.1-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.16-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.16-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.16-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.16-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.16-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.16-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.16-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.16-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.16-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.16-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/70761e505bb94130d5175cc22cbd93bff3ccc31c/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.53-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.53-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.53-jre8`, `9.4-jre8`, `9-jre8`, `9.4.53-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.53-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.53-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.53-jre17`, `9.4-jre17`, `9-jre17`, `9.4.53-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.53-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.53-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.53-jre11`, `9.4-jre11`, `9-jre11`, `9.4.53-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.53-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.53-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.53-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.53-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`12.0.2-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.2-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.2-jre17`, `12.0-jre17`, `12-jre17`, `12.0.2-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.2-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.2-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.2`, `12.0`, `12`, `12.0.2-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.2-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.2-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.17-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.17-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.17-jre17`, `11.0-jre17`, `11-jre17`, `11.0.17-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.17-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.17-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.17-jre11`, `11.0-jre11`, `11-jre11`, `11.0.17-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.17-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.17-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.17`, `11.0`, `11`, `11.0.17-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.17-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.17-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.17-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.17-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.17-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.17-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.17-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.17-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.17-jre17`, `10.0-jre17`, `10-jre17`, `10.0.17-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.17-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.17-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.17-jre11`, `10.0-jre11`, `10-jre11`, `10.0.17-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.17-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.17-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.17`, `10.0`, `10`, `10.0.17-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.17-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.17-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.17-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.17-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.17-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.17-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) +- [`12.0.2-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.2-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.2-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.17-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.17-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.17-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.17-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.17-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.17-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.17-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.17-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.17-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.17-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 820daa5f5028..b2ea1952a002 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,9 +34,9 @@ WARNING: - [`26.0.7-apache`, `26.0-apache`, `26-apache`, `26.0.7`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/apache/Dockerfile) - [`26.0.7-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm/Dockerfile) - [`26.0.7-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm-alpine/Dockerfile) -- [`27.1.1-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.1`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/apache/Dockerfile) -- [`27.1.1-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/fpm/Dockerfile) -- [`27.1.1-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/27/fpm-alpine/Dockerfile) +- [`27.1.2-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.2`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/apache/Dockerfile) +- [`27.1.2-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/fpm/Dockerfile) +- [`27.1.2-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 280102da2c01..94d3265b90c3 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta3-windowsservercore-1809`, `3.0.0-beta3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/windows/1809/Dockerfile) - [`v3.0.0-beta3`, `3.0.0-beta3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/alpine/Dockerfile) -- [`v2.10.4-windowsservercore-1809`, `2.10.4-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/03f1cd9c3350bdf9090136b01acc0e3fd2616600/windows/1809/Dockerfile) -- [`v2.10.4`, `2.10.4`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/03f1cd9c3350bdf9090136b01acc0e3fd2616600/alpine/Dockerfile) +- [`v2.10.5-windowsservercore-1809`, `2.10.5-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/windows/1809/Dockerfile) +- [`v2.10.5`, `2.10.5`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/alpine/Dockerfile) # Quick reference (cont.) From 4201e3a9cb1950a99f232b03d10d5f5d94ce37d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Oct 2023 11:09:28 -0700 Subject: [PATCH 0645/2686] Run update.sh --- debian/README.md | 60 +++++++++++++++++----------------- eclipse-temurin/README.md | 68 +++++++++++++++++++-------------------- influxdb/README.md | 32 +++++++++--------- 3 files changed, 80 insertions(+), 80 deletions(-) diff --git a/debian/README.md b/debian/README.md index b0270ab31af8..f1f1d3099c8b 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20230919`, `12.1`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20230919-slim`, `12.1-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20230919`, `11.7`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20230919-slim`, `11.7-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/bullseye/slim/Dockerfile) -- [`buster`, `buster-20230919`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20230919-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/buster/slim/Dockerfile) -- [`experimental`, `experimental-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/rc-buggy/Dockerfile) -- [`sid`, `sid-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/sid/Dockerfile) -- [`sid-slim`, `sid-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/sid/slim/Dockerfile) -- [`stable`, `stable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/stable/slim/Dockerfile) -- [`testing`, `testing-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/testing/slim/Dockerfile) -- [`trixie`, `trixie-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20230919`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20230919-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/bfa3d175e4153a23ffb4cf1b573d72408333b4e2/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20231009`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20231009-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20231009`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20231009-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/slim/Dockerfile) +- [`buster`, `buster-20231009`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20231009-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/slim/Dockerfile) +- [`experimental`, `experimental-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/rc-buggy/Dockerfile) +- [`sid`, `sid-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/sid/Dockerfile) +- [`sid-slim`, `sid-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/sid/slim/Dockerfile) +- [`stable`, `stable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/slim/Dockerfile) +- [`testing`, `testing-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/slim/Dockerfile) +- [`trixie`, `trixie-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index f5eb5b7d6922..7951bf79ed26 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -82,20 +82,20 @@ WARNING: - [`17.0.8.1_1-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8.1_1-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`17.0.8.1_1-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jdk-alpine`, `20-jdk-alpine`, `20-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jdk-jammy`, `20-jdk-jammy`, `20-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jdk-ubi9-minimal`, `20-jdk-ubi9-minimal`, `20-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.2_9-jdk-windowsservercore-ltsc2022`, `20-jdk-windowsservercore-ltsc2022`, `20-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.2_9-jdk-nanoserver-ltsc2022`, `20-jdk-nanoserver-ltsc2022`, `20-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.2_9-jdk-windowsservercore-1809`, `20-jdk-windowsservercore-1809`, `20-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.2_9-jdk-nanoserver-1809`, `20-jdk-nanoserver-1809`, `20-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`20.0.2_9-jre-alpine`, `20-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/alpine/Dockerfile.releases.full) -- [`20.0.2_9-jre-jammy`, `20-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`20.0.2_9-jre-ubi9-minimal`, `20-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`20.0.2_9-jre-windowsservercore-ltsc2022`, `20-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`20.0.2_9-jre-nanoserver-ltsc2022`, `20-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`20.0.2_9-jre-windowsservercore-1809`, `20-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`20.0.2_9-jre-nanoserver-1809`, `20-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`21_35-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/alpine/Dockerfile.releases.full) +- [`21_35-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubuntu/jammy/Dockerfile.releases.full) +- [`21_35-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`21_35-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`21_35-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`21_35-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`21_35-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- [`21_35-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/alpine/Dockerfile.releases.full) +- [`21_35-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubuntu/jammy/Dockerfile.releases.full) +- [`21_35-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubi/ubi9-minimal/Dockerfile.releases.full) +- [`21_35-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) +- [`21_35-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) +- [`21_35-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- [`21_35-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-1809/Dockerfile.releases.full) ## Shared Tags @@ -159,26 +159,26 @@ WARNING: - `17.0.8.1_1-jre-nanoserver`, `17-jre-nanoserver`: - [`17.0.8.1_1-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`17.0.8.1_1-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `20.0.2_9-jdk`, `20-jdk`, `20`, `latest`: - - [`20.0.2_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.2_9-jdk-windowsservercore`, `20-jdk-windowsservercore`, `20-windowsservercore`: - - [`20.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.2_9-jdk-nanoserver`, `20-jdk-nanoserver`, `20-nanoserver`: - - [`20.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `20.0.2_9-jre`, `20-jre`: - - [`20.0.2_9-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/20/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.2_9-jre-windowsservercore`, `20-jre-windowsservercore`: - - [`20.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `20.0.2_9-jre-nanoserver`, `20-jre-nanoserver`: - - [`20.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`20.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/22734cf4688ad791769df55353dfb15bba9abca5/20/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `21_35-jdk`, `21-jdk`, `21`, `latest`: + - [`21_35-jdk-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubuntu/jammy/Dockerfile.releases.full) + - [`21_35-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`21_35-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `21_35-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21_35-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`21_35-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) +- `21_35-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21_35-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`21_35-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-1809/Dockerfile.releases.full) +- `21_35-jre`, `21-jre`: + - [`21_35-jre-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubuntu/jammy/Dockerfile.releases.full) + - [`21_35-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`21_35-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `21_35-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21_35-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) + - [`21_35-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) +- `21_35-jre-nanoserver`, `21-jre-nanoserver`: + - [`21_35-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) + - [`21_35-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-1809/Dockerfile.releases.full) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 47ae7af698b2..88e581a29b50 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.1-data`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.1-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.1-meta`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.1-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/46221770aa619e97553bc95443954f6c4690e1ce/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.2-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.2-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From d5362c2d7d3eec681f22d299b35dae06c90e729d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Oct 2023 12:09:25 -0700 Subject: [PATCH 0646/2686] Run update.sh --- node/README.md | 16 ++++++++-------- oraclelinux/README.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/node/README.md b/node/README.md index c83970183511..df3704e660d9 100644 --- a/node/README.md +++ b/node/README.md @@ -32,14 +32,14 @@ WARNING: - [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.8-buster`, `20.8.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster/Dockerfile) - [`20-buster-slim`, `20.8-buster-slim`, `20.8.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.0-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.0-alpine`, `18.18.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.0`, `18.18.0-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.0-bookworm-slim`, `18.18.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.18-bullseye`, `18.18.0-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.0-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.18-buster`, `18.18.0-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.0-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/ce9bfa282b62ece538fef25b954ade4401a7c8c7/18/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.1-alpine`, `18.18.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.1`, `18.18.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.1-bookworm-slim`, `18.18.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.18-bullseye`, `18.18.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.18-buster`, `18.18.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/buster/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 38df86b4a98a..99ff22c125e7 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a6899fe3d6752118cfa1d57210e4de317f617891/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7-slim-fips/Dockerfile) # Quick reference (cont.) From 445e2e43eb49719ea1f89a075766054e885e1dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20H=C3=BCbner?= Date: Sat, 9 Sep 2023 15:53:15 +0200 Subject: [PATCH 0647/2686] kong: bring content up to date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Enrique García Cota --- kong/content.md | 171 ++---------------------------------------------- 1 file changed, 4 insertions(+), 167 deletions(-) diff --git a/kong/content.md b/kong/content.md index 6fdb84b028a6..a12c68e4ab5c 100644 --- a/kong/content.md +++ b/kong/content.md @@ -1,174 +1,11 @@ # What is Kong? -Kong is a scalable, open source API Platform (also known as an API Gateway or API Middleware). Kong was originally built by [Kong Inc.](https://konghq.com) (formerly known as Mashape) to secure, manage, and extend over 15,000 Microservices for its API Marketplace, which generates billions of requests per month. +Kong Gateway is the world’s most adopted API gateway. Lightweight, fast, and flexible, this open source gateway is built for hybrid and multi-cloud and optimized for microservices and distributed architectures. -Under active development, Kong is now used in production at hundreds of organizations from startups, to large enterprises and governments including: The New York Times, Expedia, Healthcare.gov, The Guardian, Condè Nast, The University of Auckland, Ferrari, Rakuten, Cisco, SkyScanner, Yahoo! Japan, Giphy and so on. +Built on this open source DNA, Kong’s unified cloud API platform helps organizations ranging from startups to Fortune 500 enterprises unleash developer productivity, build securely, and accelerate time to market. Kong's official documentation can be found at [docs.konghq.com](https://docs.konghq.com/). -# How to use this image without a Database +# How to use this image -Kong 1.1 added the capability to run Kong without a database, using only in-memory storage for entities: we call this DB-less mode. When running Kong DB-less, the configuration of entities is done in a second configuration file, in YAML or JSON, using declarative configuration. - -```shell -$ docker run -d --name kong \ - -e "KONG_DATABASE=off" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - %%IMAGE%% -``` - -Generate a skeleton configuration file to get you started - -```shell -$ docker exec -it kong kong config init /home/kong/kong.yml -$ docker exec -it kong cat /home/kong/kong.yml >> kong.yml -``` - -Load a declarative configuration into a running Kong node via its Admin API using HTTPie - -```shell -$ http :8001/config config=@kong.yml -``` - -**Note**: Not all Kong plugins are compatible with DB-less mode, since some of them by design require a central database coordination and/or dynamic creation of entities, see the doc for details at [DB-less and Declarative Configuration](https://docs.konghq.com/latest/db-less-and-declarative-config/) - -# How to use this image with a Database - -You can either use the official Cassandra/PostgreSQL containers, or use your own. - -## 1. Link Kong to either a Cassandra or PostgreSQL container - -It's up to you to decide which datastore between Cassandra or PostgreSQL you want to use, since Kong supports both. - -### Cassandra - -Start a Cassandra container by executing: - -```shell -$ docker run -d --name kong-database \ - -p 9042:9042 \ - cassandra:3 -``` - -### Postgres - -Start a PostgreSQL container by executing: - -```shell -$ docker run -d --name kong-database \ - -p 5432:5432 \ - -e "POSTGRES_USER=kong" \ - -e "POSTGRES_DB=kong" \ - -e "POSTGRES_PASSWORD=kong" \ - postgres:9.6 -``` - -## 2. Prepare your database - -Run the database migrations with an ephemeral Kong container: - -```shell -$ docker run --rm \ - --link kong-database:kong-database \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_PG_USER=kong" \ - -e "KONG_PG_PASSWORD=kong" \ - -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ - %%IMAGE%% kong migrations bootstrap -``` - -In the above example, both Cassandra and PostgreSQL are configured, but you should update the `KONG_DATABASE` environment variable with either `cassandra` or `postgres`. - -**Note for Kong < 0.15**: with Kong versions below 0.15 (up to 0.14), use the `up` sub-command instead of `bootstrap`. Also note that with Kong < 0.15, migrations should never be run concurrently; only one Kong node should be performing migrations at a time. This limitation is lifted for Kong 0.15, 1.0, and above. - -### Start Kong - -Once the database has been started and prepared, we can start a Kong container and link it to the database container, and configuring the `KONG_DATABASE` environment variable with either `cassandra` or `postgres` depending on which database you decided to use: - -```shell -$ docker run -d --name kong \ - --link kong-database:kong-database \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_PG_PASSWORD=kong" \ - -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - %%IMAGE%% -``` - -If everything went well, and if you created your container with the default ports, Kong should be listening on your host's `8000` ([Proxy](https://docs.konghq.com/latest/configuration/#proxy_port)), `8443` ([Proxy SSL](https://docs.konghq.com/latest/configuration/#proxy_listen_ssl)), `8001` ([Admin API](https://docs.konghq.com/latest/configuration/#admin_listen)) and `8444` ([Admin API SSL](https://docs.konghq.com/latest/configuration/#admin_listen_ssl)) ports. - -You can read the docs at [docs.konghq.com](https://docs.konghq.com/) to learn more about Kong. - -## 3. Use Kong with a custom configuration (and a custom Cassandra/PostgreSQL cluster) - -You can override any property of the [Kong configuration file](https://docs.konghq.com/latest/configuration/) with environment variables. Just prepend any Kong configuration property with the `KONG_` prefix, for example: - -```shell -$ docker run -d --name kong \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_LOG_LEVEL=info" \ - -e "KONG_CUSTOM_PLUGINS=helloworld" \ - -e "KONG_PG_HOST=1.1.1.1" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - %%IMAGE%% -``` - -## Reload Kong in a running container - -If you change your custom configuration, reload Kong (without downtime) by running: - -```shell -$ docker exec -it kong kong reload -``` - -This will run the [`kong reload`](https://docs.konghq.com/latest/cli/#reload) command in your container. - -# Running Kong in read-only mode - -Starting with version `3.2.0` of Kong it is possible to run the container in read-only mode. To do so, mount a Docker volume to the locations where Kong needs to write data. The default configuration requires write access to `/tmp` and to the prefix path, as provided by the following example: - -```shell -$ docker run --read-only -d --name kong \ - -v "$(pwd)/declarative:/kong/declarative/" \ - -v "$(pwd)/tmp_volume:/tmp" \ - -v "$(pwd)/prefix_volume:/var/run/kong" \ - -e "KONG_PREFIX=/var/run/kong" \ - -e "KONG_DATABASE=off" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - %%IMAGE%% -``` - -# Kubernetes Ingress - -Among the many deployment options [available](https://konghq.com/install), Kong also offers a [Kubernetes Ingress Controller](https://github.com/Kong/kubernetes-ingress-controller) ready to use in your K8s environment. +Please refer to the [installation section](https://docs.konghq.com/gateway/latest/install/docker/#main) on our documentation website to learn how to use this image. From 7a5fba8c157a7c57b3ce869ab9dbb1518acbe537 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Oct 2023 16:05:30 -0700 Subject: [PATCH 0648/2686] Run update.sh --- kong/README.md | 171 ++----------------------------------------------- 1 file changed, 4 insertions(+), 167 deletions(-) diff --git a/kong/README.md b/kong/README.md index 4f14b5ea9d0e..c9ed44d6326c 100644 --- a/kong/README.md +++ b/kong/README.md @@ -57,178 +57,15 @@ WARNING: # What is Kong? -Kong is a scalable, open source API Platform (also known as an API Gateway or API Middleware). Kong was originally built by [Kong Inc.](https://konghq.com) (formerly known as Mashape) to secure, manage, and extend over 15,000 Microservices for its API Marketplace, which generates billions of requests per month. +Kong Gateway is the world’s most adopted API gateway. Lightweight, fast, and flexible, this open source gateway is built for hybrid and multi-cloud and optimized for microservices and distributed architectures. -Under active development, Kong is now used in production at hundreds of organizations from startups, to large enterprises and governments including: The New York Times, Expedia, Healthcare.gov, The Guardian, Condè Nast, The University of Auckland, Ferrari, Rakuten, Cisco, SkyScanner, Yahoo! Japan, Giphy and so on. +Built on this open source DNA, Kong’s unified cloud API platform helps organizations ranging from startups to Fortune 500 enterprises unleash developer productivity, build securely, and accelerate time to market. Kong's official documentation can be found at [docs.konghq.com](https://docs.konghq.com/). -# How to use this image without a Database +# How to use this image -Kong 1.1 added the capability to run Kong without a database, using only in-memory storage for entities: we call this DB-less mode. When running Kong DB-less, the configuration of entities is done in a second configuration file, in YAML or JSON, using declarative configuration. - -```shell -$ docker run -d --name kong \ - -e "KONG_DATABASE=off" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - kong -``` - -Generate a skeleton configuration file to get you started - -```shell -$ docker exec -it kong kong config init /home/kong/kong.yml -$ docker exec -it kong cat /home/kong/kong.yml >> kong.yml -``` - -Load a declarative configuration into a running Kong node via its Admin API using HTTPie - -```shell -$ http :8001/config config=@kong.yml -``` - -**Note**: Not all Kong plugins are compatible with DB-less mode, since some of them by design require a central database coordination and/or dynamic creation of entities, see the doc for details at [DB-less and Declarative Configuration](https://docs.konghq.com/latest/db-less-and-declarative-config/) - -# How to use this image with a Database - -You can either use the official Cassandra/PostgreSQL containers, or use your own. - -## 1. Link Kong to either a Cassandra or PostgreSQL container - -It's up to you to decide which datastore between Cassandra or PostgreSQL you want to use, since Kong supports both. - -### Cassandra - -Start a Cassandra container by executing: - -```shell -$ docker run -d --name kong-database \ - -p 9042:9042 \ - cassandra:3 -``` - -### Postgres - -Start a PostgreSQL container by executing: - -```shell -$ docker run -d --name kong-database \ - -p 5432:5432 \ - -e "POSTGRES_USER=kong" \ - -e "POSTGRES_DB=kong" \ - -e "POSTGRES_PASSWORD=kong" \ - postgres:9.6 -``` - -## 2. Prepare your database - -Run the database migrations with an ephemeral Kong container: - -```shell -$ docker run --rm \ - --link kong-database:kong-database \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_PG_USER=kong" \ - -e "KONG_PG_PASSWORD=kong" \ - -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ - kong kong migrations bootstrap -``` - -In the above example, both Cassandra and PostgreSQL are configured, but you should update the `KONG_DATABASE` environment variable with either `cassandra` or `postgres`. - -**Note for Kong < 0.15**: with Kong versions below 0.15 (up to 0.14), use the `up` sub-command instead of `bootstrap`. Also note that with Kong < 0.15, migrations should never be run concurrently; only one Kong node should be performing migrations at a time. This limitation is lifted for Kong 0.15, 1.0, and above. - -### Start Kong - -Once the database has been started and prepared, we can start a Kong container and link it to the database container, and configuring the `KONG_DATABASE` environment variable with either `cassandra` or `postgres` depending on which database you decided to use: - -```shell -$ docker run -d --name kong \ - --link kong-database:kong-database \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_PG_PASSWORD=kong" \ - -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - kong -``` - -If everything went well, and if you created your container with the default ports, Kong should be listening on your host's `8000` ([Proxy](https://docs.konghq.com/latest/configuration/#proxy_port)), `8443` ([Proxy SSL](https://docs.konghq.com/latest/configuration/#proxy_listen_ssl)), `8001` ([Admin API](https://docs.konghq.com/latest/configuration/#admin_listen)) and `8444` ([Admin API SSL](https://docs.konghq.com/latest/configuration/#admin_listen_ssl)) ports. - -You can read the docs at [docs.konghq.com](https://docs.konghq.com/) to learn more about Kong. - -## 3. Use Kong with a custom configuration (and a custom Cassandra/PostgreSQL cluster) - -You can override any property of the [Kong configuration file](https://docs.konghq.com/latest/configuration/) with environment variables. Just prepend any Kong configuration property with the `KONG_` prefix, for example: - -```shell -$ docker run -d --name kong \ - -e "KONG_DATABASE=postgres" \ - -e "KONG_PG_HOST=kong-database" \ - -e "KONG_LOG_LEVEL=info" \ - -e "KONG_CUSTOM_PLUGINS=helloworld" \ - -e "KONG_PG_HOST=1.1.1.1" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - kong -``` - -## Reload Kong in a running container - -If you change your custom configuration, reload Kong (without downtime) by running: - -```shell -$ docker exec -it kong kong reload -``` - -This will run the [`kong reload`](https://docs.konghq.com/latest/cli/#reload) command in your container. - -# Running Kong in read-only mode - -Starting with version `3.2.0` of Kong it is possible to run the container in read-only mode. To do so, mount a Docker volume to the locations where Kong needs to write data. The default configuration requires write access to `/tmp` and to the prefix path, as provided by the following example: - -```shell -$ docker run --read-only -d --name kong \ - -v "$(pwd)/declarative:/kong/declarative/" \ - -v "$(pwd)/tmp_volume:/tmp" \ - -v "$(pwd)/prefix_volume:/var/run/kong" \ - -e "KONG_PREFIX=/var/run/kong" \ - -e "KONG_DATABASE=off" \ - -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ - -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ - -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \ - -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \ - -p 8000:8000 \ - -p 8443:8443 \ - -p 8001:8001 \ - -p 8444:8444 \ - kong -``` - -# Kubernetes Ingress - -Among the many deployment options [available](https://konghq.com/install), Kong also offers a [Kubernetes Ingress Controller](https://github.com/Kong/kubernetes-ingress-controller) ready to use in your K8s environment. +Please refer to the [installation section](https://docs.konghq.com/gateway/latest/install/docker/#main) on our documentation website to learn how to use this image. # Image Variants From 2d8b2753e9b4ae98d06adb77528b7ccca3c955e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Oct 2023 18:34:03 -0700 Subject: [PATCH 0649/2686] Run update.sh --- caddy/README.md | 34 +++++++++++++++++----------------- gradle/README.md | 3 --- groovy/README.md | 12 +++++++----- 3 files changed, 24 insertions(+), 25 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 947a68877468..fcb68135f769 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.7.4-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/alpine/Dockerfile) -- [`2.7.4-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/builder/Dockerfile) -- [`2.7.4-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) -- [`2.7.4-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.4-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/1809/Dockerfile) -- [`2.7.4-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.5-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/alpine/Dockerfile) +- [`2.7.5-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/builder/Dockerfile) +- [`2.7.5-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) +- [`2.7.5-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.5-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/1809/Dockerfile) +- [`2.7.5-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.7.4`, `2.7`, `2`, `latest`: - - [`2.7.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/alpine/Dockerfile) - - [`2.7.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) - - [`2.7.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) -- `2.7.4-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/builder/Dockerfile) - - [`2.7.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/1809/Dockerfile) - - [`2.7.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.4-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/1809/Dockerfile) - - [`2.7.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/2.7/windows/ltsc2022/Dockerfile) +- `2.7.5`, `2.7`, `2`, `latest`: + - [`2.7.5-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/alpine/Dockerfile) + - [`2.7.5-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) + - [`2.7.5-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) +- `2.7.5-builder`, `2.7-builder`, `2-builder`, `builder`: + - [`2.7.5-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/builder/Dockerfile) + - [`2.7.5-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/1809/Dockerfile) + - [`2.7.5-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.5-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.7.5-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) + - [`2.7.5-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 7fc8604814c5..ff528c626503 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -33,9 +33,6 @@ WARNING: - [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-focal/Dockerfile) - [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-alpine/Dockerfile) - [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-graal/Dockerfile) -- [`8.4.0-jdk20`, `8.4-jdk20`, `8-jdk20`, `jdk20`, `8.4.0-jdk20-jammy`, `8.4-jdk20-jammy`, `8-jdk20-jammy`, `jdk20-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20/Dockerfile) -- [`8.4.0-jdk20-alpine`, `8.4-jdk20-alpine`, `8-jdk20-alpine`, `jdk20-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20-alpine/Dockerfile) -- [`8.4.0-jdk20-graal`, `8.4-jdk20-graal`, `8-jdk20-graal`, `jdk20-graal`, `8.4.0-jdk20-graal-jammy`, `8.4-jdk20-graal-jammy`, `8-jdk20-graal-jammy`, `jdk20-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk20-graal/Dockerfile) - [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) - [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) - [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) diff --git a/groovy/README.md b/groovy/README.md index c39243471430..b8ee870ff90d 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.15-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.15-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk8/Dockerfile) -- [`4.0.15-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.15-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk11/Dockerfile) -- [`4.0.15-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk11-alpine/Dockerfile) -- [`4.0.15-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.15-jdk`, `4.0-jdk`, `4.0.15`, `4.0`, `4`, `jdk`, `latest`, `4.0.15-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.15-jdk-jammy`, `4.0-jdk-jammy`, `4.0.15-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk17/Dockerfile) -- [`4.0.15-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.15-jdk-alpine`, `4.0-jdk-alpine`, `4.0.15-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/66c1c4133dadcd3db4d320cf6680838f7d91e92b/jdk17-alpine/Dockerfile) +- [`4.0.15-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.15-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk8/Dockerfile) +- [`4.0.15-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.15-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk11/Dockerfile) +- [`4.0.15-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk11-alpine/Dockerfile) +- [`4.0.15-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.15-jdk`, `4.0-jdk`, `4.0.15`, `4.0`, `4`, `jdk`, `latest`, `4.0.15-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.15-jdk-jammy`, `4.0-jdk-jammy`, `4.0.15-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk17/Dockerfile) +- [`4.0.15-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.15-jdk-alpine`, `4.0-jdk-alpine`, `4.0.15-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk17-alpine/Dockerfile) +- [`4.0.15-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.15-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk21/Dockerfile) +- [`4.0.15-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk21-alpine/Dockerfile) # Quick reference (cont.) From dd7640b6760a353de3428d5df8b4b674b95a458a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Oct 2023 15:09:02 -0700 Subject: [PATCH 0650/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- kong/README.md | 2 +- traefik/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index c9dcf71832db..62577dc460ce 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.2.20230920.1`](https://github.com/amazonlinux/container-images/blob/414b5d5f6254ca8a674e04cc2f5e0e334ac77f14/Dockerfile) -- [`2`, `2.0.20230912.0`](https://github.com/amazonlinux/container-images/blob/758d8663f71fe6d9c26dc42a366eabdf024458ca/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20230905.0`](https://github.com/amazonlinux/container-images/blob/bb33672fcca36770bfe1536b7773b19ca43df8da/Dockerfile) +- [`2023`, `latest`, `2023.2.20231011.0`](https://github.com/amazonlinux/container-images/blob/af8bdafe241daebe9bd3ef2b864084a60ff022af/Dockerfile) +- [`2`, `2.0.20230926.0`](https://github.com/amazonlinux/container-images/blob/293ef6f41163e4d22700ffda8e8c032593e13215/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231002.0`](https://github.com/amazonlinux/container-images/blob/a71cd32b94ea6e1f8a5fad33f9614695e34ae1a8/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index c9ed44d6326c..a316550e4092 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-ubuntu`, `3.4-ubuntu`, `3.4.1`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/dae5846f2d75f71aa1b17ed2cb17af78c20355a7/ubuntu/Dockerfile) +- [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) - [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) diff --git a/traefik/README.md b/traefik/README.md index 94d3265b90c3..600244932168 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-beta3-windowsservercore-1809`, `3.0.0-beta3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/windows/1809/Dockerfile) -- [`v3.0.0-beta3`, `3.0.0-beta3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/d9507badace6c064417d852daeea402d29ec0707/alpine/Dockerfile) +- [`v3.0.0-beta4-windowsservercore-1809`, `3.0.0-beta4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/windows/1809/Dockerfile) +- [`v3.0.0-beta4`, `3.0.0-beta4`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/alpine/Dockerfile) - [`v2.10.5-windowsservercore-1809`, `2.10.5-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/windows/1809/Dockerfile) - [`v2.10.5`, `2.10.5`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/alpine/Dockerfile) From 8eb0d3d30015cece931251b1ca3886b5c7a61dd0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Oct 2023 16:28:54 -0700 Subject: [PATCH 0651/2686] Run update.sh --- clojure/README.md | 126 +++++++++++++++++++++++++++------------------- tomcat/README.md | 106 ++++++++++++++++---------------------- ubuntu/README.md | 8 +-- 3 files changed, 122 insertions(+), 118 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 5c365cbd674f..b7d5e91b2ac1 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,57 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1413-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1413-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1413-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1413`, `temurin-8-tools-deps-1.11.1.1413-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1413-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1413-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1413-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1413`, `temurin-11-tools-deps-1.11.1.1413-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`boot-2.8.3-focal`, `boot-focal`, `temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`boot`, `boot-2.8.3`, `boot-2.8.3-jammy`, `boot-jammy`, `temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`lein-2.10.0-alpine`, `lein-alpine`, `temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`lein-2.10.0-focal`, `lein-focal`, `temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-jammy`, `lein-jammy`, `temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1413-alpine`, `temurin-17-tools-deps-alpine`, `tools-deps-1.11.1.1413-alpine`, `tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1413-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1413-focal`, `temurin-17-tools-deps-focal`, `tools-deps-1.11.1.1413-focal`, `tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1413`, `temurin-17-tools-deps-1.11.1.1413-jammy`, `temurin-17-tools-deps-jammy`, `tools-deps`, `tools-deps-1.11.1.1413`, `tools-deps-1.11.1.1413-jammy`, `tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-20-lein-2.10.0-alpine`, `temurin-20-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-alpine/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye`, `temurin-20-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-20/lein/Dockerfile) -- [`temurin-20-lein-2.10.0-bullseye-slim`, `temurin-20-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-20/lein/Dockerfile) -- [`temurin-20-lein`, `temurin-20-lein-2.10.0`, `temurin-20-lein-2.10.0-jammy`, `temurin-20-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-jammy/lein/Dockerfile) -- [`temurin-20-alpine`, `temurin-20-tools-deps-1.11.1.1413-alpine`, `temurin-20-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-20-bullseye`, `temurin-20-tools-deps-1.11.1.1413-bullseye`, `temurin-20-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-20/tools-deps/Dockerfile) -- [`temurin-20-bullseye-slim`, `temurin-20-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-20-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/debian-bullseye-slim-20/tools-deps/Dockerfile) -- [`temurin-20-jammy`, `temurin-20-tools-deps`, `temurin-20-tools-deps-1.11.1.1413`, `temurin-20-tools-deps-1.11.1.1413-jammy`, `temurin-20-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8af52eb7074155e6d5857cc37c01b57dbb70d1ab/target/eclipse-temurin-20-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1413-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1413-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1413-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1413-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1413`, `temurin-8-tools-deps-1.11.1.1413-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1413-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1413-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1413-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1413-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1413`, `temurin-11-tools-deps-1.11.1.1413-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1413-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1413-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1413-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1413-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1413`, `temurin-17-tools-deps-1.11.1.1413-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1413-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1413`, `temurin-21-tools-deps-1.11.1.1413-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1413`, `tools-deps-1.11.1.1413-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1413-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1413-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1413-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1413-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1413-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) @@ -181,7 +203,7 @@ The `clojure` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. diff --git a/tomcat/README.md b/tomcat/README.md index d5fec20c1c0c..1406d62ba5e1 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,52 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M11-jdk21-openjdk-bookworm`, `11.0.0-jdk21-openjdk-bookworm`, `11.0-jdk21-openjdk-bookworm`, `11.0.0-M11-jdk21-openjdk`, `11.0.0-jdk21-openjdk`, `11.0-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/b512285a7e12128f0da031b6b24f1a4c026e3306/11.0/jdk21/openjdk-bookworm/Dockerfile) -- [`11.0.0-M11-jdk21-openjdk-slim-bookworm`, `11.0.0-jdk21-openjdk-slim-bookworm`, `11.0-jdk21-openjdk-slim-bookworm`, `11.0.0-M11-jdk21-openjdk-slim`, `11.0.0-jdk21-openjdk-slim`, `11.0-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/b512285a7e12128f0da031b6b24f1a4c026e3306/11.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.13-jdk21-openjdk-bookworm`, `10.1-jdk21-openjdk-bookworm`, `10-jdk21-openjdk-bookworm`, `jdk21-openjdk-bookworm`, `10.1.13-jdk21-openjdk`, `10.1-jdk21-openjdk`, `10-jdk21-openjdk`, `jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk21/openjdk-bookworm/Dockerfile) -- [`10.1.13-jdk21-openjdk-slim-bookworm`, `10.1-jdk21-openjdk-slim-bookworm`, `10-jdk21-openjdk-slim-bookworm`, `jdk21-openjdk-slim-bookworm`, `10.1.13-jdk21-openjdk-slim`, `10.1-jdk21-openjdk-slim`, `10-jdk21-openjdk-slim`, `jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`10.1.13-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.13-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.13-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.13`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.13-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.13-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.13-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.13-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.13-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.13-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.13-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.13-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.13-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/4505ae69aa030beba88a68fe410866ee375a8fc0/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.80-jdk21-openjdk-bookworm`, `9.0-jdk21-openjdk-bookworm`, `9-jdk21-openjdk-bookworm`, `9.0.80-jdk21-openjdk`, `9.0-jdk21-openjdk`, `9-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-bookworm/Dockerfile) -- [`9.0.80-jdk21-openjdk-bullseye`, `9.0-jdk21-openjdk-bullseye`, `9-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-bullseye/Dockerfile) -- [`9.0.80-jdk21-openjdk-slim-bookworm`, `9.0-jdk21-openjdk-slim-bookworm`, `9-jdk21-openjdk-slim-bookworm`, `9.0.80-jdk21-openjdk-slim`, `9.0-jdk21-openjdk-slim`, `9-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`9.0.80-jdk21-openjdk-slim-bullseye`, `9.0-jdk21-openjdk-slim-bullseye`, `9-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`9.0.80-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.80-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.80-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.80`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.80-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.80-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.80-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.80-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.80-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.80-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.80-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.80-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.80-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.80-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.80-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.80-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.80-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.80-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.80-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.80-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.80-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.80-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.80-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.80-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.80-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.80-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.80-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.80-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.80-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.80-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.80-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/ad1ce61765fcc0421e91cf8ee0370c79eeaa7d79/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.93-jdk21-openjdk-bookworm`, `8.5-jdk21-openjdk-bookworm`, `8-jdk21-openjdk-bookworm`, `8.5.93-jdk21-openjdk`, `8.5-jdk21-openjdk`, `8-jdk21-openjdk`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-bookworm/Dockerfile) -- [`8.5.93-jdk21-openjdk-bullseye`, `8.5-jdk21-openjdk-bullseye`, `8-jdk21-openjdk-bullseye`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-bullseye/Dockerfile) -- [`8.5.93-jdk21-openjdk-slim-bookworm`, `8.5-jdk21-openjdk-slim-bookworm`, `8-jdk21-openjdk-slim-bookworm`, `8.5.93-jdk21-openjdk-slim`, `8.5-jdk21-openjdk-slim`, `8-jdk21-openjdk-slim`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-slim-bookworm/Dockerfile) -- [`8.5.93-jdk21-openjdk-slim-bullseye`, `8.5-jdk21-openjdk-slim-bullseye`, `8-jdk21-openjdk-slim-bullseye`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk21/openjdk-slim-bullseye/Dockerfile) -- [`8.5.93-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.93-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.93-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.93`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.93-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.93-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.93-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.93-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.93-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.93-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.93-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.93-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.93-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.93-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.93-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.93-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.93-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.93-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.93-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.93-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.93-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.93-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.93-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.93-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.93-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.93-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.93-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.93-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.93-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.93-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.93-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/faaf983ea7148aa8697d9adb6b24d1d0f9e5e1a7/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M12-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M12-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M12-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M12`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/a05ba2589539f88093aa53fc94cead6a17c97aa6/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M12-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M12-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M12-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/a05ba2589539f88093aa53fc94cead6a17c97aa6/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.14-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.14-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.14-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.14`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/2fa4e03c16759c4578b3dcb6ce97d7265ed777ba/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.14-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.14-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.14-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/2fa4e03c16759c4578b3dcb6ce97d7265ed777ba/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.14-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.14-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.14-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.14-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.14-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.14-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.14-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.14-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.14-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.14-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.14-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.14-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.81-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.81-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.81-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.81`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/c6f2ca4467405fb3743452b648f63cae1c516791/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.81-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.81-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.81-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/c6f2ca4467405fb3743452b648f63cae1c516791/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.81-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.81-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.81-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.81-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.81-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.81-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.81-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.81-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.81-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.81-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.81-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.81-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.81-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.81-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.81-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.81-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.81-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.81-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.81-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.81-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.81-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.81-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.81-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.81-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.81-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.81-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.81-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.81-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.81-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.81-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.81-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.81-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.94-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.94-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.94-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.94`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.94-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.94-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.94-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.94-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.94-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.94-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.94-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.94-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.94-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.94-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.94-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.94-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.94-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.94-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.94-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.94-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.94-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.94-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.94-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.94-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.94-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.94-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.94-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.94-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.94-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.94-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.94-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.94-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.94-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.94-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.94-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.94-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.94-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.94-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.94-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) @@ -126,22 +124,6 @@ The default Tomcat environment in the image is: The configuration files are available in `/usr/local/tomcat/conf/`. By default, no user is included in the "manager-gui" role required to operate the "/manager/html" web application. If you wish to use this app, you must define such a user in `tomcat-users.xml`. -# Image Variants - -The `tomcat` images come in many flavors, each designed for a specific use case. - -## `tomcat:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. - -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. - -## `tomcat:-slim` - -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `tomcat`. Unless you are working in an environment where *only* the `tomcat` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. - # License View [license information](https://www.apache.org/licenses/LICENSE-2.0) for the software contained in this image. diff --git a/ubuntu/README.md b/ubuntu/README.md index 1af234381f03..d720109e808c 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20230801`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20230801-b27f055b&id=b27f055b18f661b8bb4695aa14cf7ec586e490d1) -- [`22.04`, `jammy-20230916`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20230916-f8fbd345&id=f8fbd345fba7716dafa177baa56025bb32d7af91) -- [`23.04`, `lunar-20230816`, `lunar`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20230816-f4657ddd&id=f4657ddd1be6fe5fa44da9797c1efb650d2087c1) -- [`23.10`, `mantic-20230926`, `mantic`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20230926-3f250867&id=3f250867eab7259dbc857d170700541639e5b5ec) +- [`20.04`, `focal-20231003`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231003-9e020e15&id=9e020e15c69afd6448227ca485f23c062a3b8939) +- [`22.04`, `jammy-20231004`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231004-b438933c&id=b438933cb5f916fc82c2422834bcd6bf6161f3e9) +- [`23.04`, `lunar-20231004`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231004-151826dc&id=151826dc80889bec7813dc057ce919012e3dfddd) +- [`23.10`, `mantic-20231011`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231011-4ceef731&id=4ceef731f584cc4086b74ef42d52a99f419b7f9c) # Quick reference (cont.) From b930dbf93b60060d56b25c22a4cf1f9a642f3d4e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Oct 2023 17:09:59 -0700 Subject: [PATCH 0652/2686] Run update.sh --- ghost/README.md | 4 ++-- mongo/README.md | 30 +++++++++++++++--------------- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 42 ++++++++++++++++++++++++++++-------------- rabbitmq/README.md | 20 ++++++++++---------- 5 files changed, 73 insertions(+), 59 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 9f40fd7ab3e5..ef0051417ff1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.68.0`, `5.68`, `5`, `latest`](https://github.com/docker-library/ghost/blob/64f729bc386d8fe074677adca8d71e1b35d08d5e/5/debian/Dockerfile) -- [`5.68.0-alpine`, `5.68-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/64f729bc386d8fe074677adca8d71e1b35d08d5e/5/alpine/Dockerfile) +- [`5.69.0`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b5eae5071b338a29284d1ae17cbff9b54bb149d4/5/debian/Dockerfile) +- [`5.69.0-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b5eae5071b338a29284d1ae17cbff9b54bb149d4/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 2615f028fc10..0c11c91f4fb4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,11 +33,11 @@ WARNING: - [`7.0.2-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.2-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.2-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.10-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) -- [`6.0.10-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.10-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.10-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.10-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.11-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) +- [`6.0.11-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.11-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.11-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.11-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.21-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) - [`5.0.21-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.21-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) @@ -61,16 +61,16 @@ WARNING: - `7.0.2-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.10`, `6.0`, `6`: - - [`6.0.10-jammy`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/Dockerfile) - - [`6.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.10-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.10-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.10-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.10-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5241a9a9dc6df03c7105a872260642c9224e8f23/6.0/windows/nanoserver-1809/Dockerfile) +- `6.0.11`, `6.0`, `6`: + - [`6.0.11-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) + - [`6.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.11-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.11-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.21`, `5.0`, `5`: - [`5.0.21-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) - [`5.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 7f4302aa7085..e2c9e982031f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-18-jdk-oraclelinux8`, `22-ea-18-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-18-jdk-oracle`, `22-ea-18-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-18-jdk-oraclelinux7`, `22-ea-18-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-18-jdk-bookworm`, `22-ea-18-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/bookworm/Dockerfile) -- [`22-ea-18-jdk-slim-bookworm`, `22-ea-18-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-18-jdk-slim`, `22-ea-18-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-18-jdk-bullseye`, `22-ea-18-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/bullseye/Dockerfile) -- [`22-ea-18-jdk-slim-bullseye`, `22-ea-18-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-18-jdk-windowsservercore-ltsc2022`, `22-ea-18-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-18-jdk-windowsservercore-1809`, `22-ea-18-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-18-jdk-nanoserver-1809`, `22-ea-18-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-19-jdk-oraclelinux8`, `22-ea-19-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-19-jdk-oracle`, `22-ea-19-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-19-jdk-oraclelinux7`, `22-ea-19-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-19-jdk-bookworm`, `22-ea-19-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/bookworm/Dockerfile) +- [`22-ea-19-jdk-slim-bookworm`, `22-ea-19-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-19-jdk-slim`, `22-ea-19-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-19-jdk-bullseye`, `22-ea-19-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/bullseye/Dockerfile) +- [`22-ea-19-jdk-slim-bullseye`, `22-ea-19-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-19-jdk-windowsservercore-ltsc2022`, `22-ea-19-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-19-jdk-windowsservercore-1809`, `22-ea-19-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-19-jdk-nanoserver-1809`, `22-ea-19-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-18-jdk`, `22-ea-18`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-18-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-18-jdk-windowsservercore`, `22-ea-18-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-18-jdk-nanoserver`, `22-ea-18-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/577abd2ab9161bcadb1d7b64a26fc89ae9f34379/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-19-jdk`, `22-ea-19`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-19-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-19-jdk-windowsservercore`, `22-ea-19-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-19-jdk-nanoserver`, `22-ea-19-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index c3130684f224..30fe13ecc5c6 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC3-bookworm`, `8.3-rc-bookworm`, `8.3.0RC3-cli`, `8.3-rc-cli`, `8.3.0RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/45f11a419d9aaa3951be8322641c64f220bde623/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0RC4-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC4-bookworm`, `8.3-rc-bookworm`, `8.3.0RC4-cli`, `8.3-rc-cli`, `8.3.0RC4`, `8.3-rc`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC4-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC4-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC4-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC4-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC4-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC4-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC4-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC4-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC4-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC4-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC4-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC4-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC4-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC4-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC4-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC4-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC4-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC4-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC4-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC4-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC4-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC4-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC4-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.12RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.12RC1-bookworm`, `8.2-rc-bookworm`, `8.2.12RC1-cli`, `8.2-rc-cli`, `8.2.12RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.12RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.12RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.12RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.12RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.12RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.12RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.12RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.12RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.12RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.12RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.12RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.12RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.12RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.12RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.12RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.12RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.12RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.12RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.12RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.12RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.12RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.12RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.12RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.11-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.11-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.11-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.11`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/cli/Dockerfile) - [`8.2.11-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.11-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/apache/Dockerfile) - [`8.2.11-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.11-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index ca1e426c04bb..94a73c35dfd2 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/656ee2332a740807b5024a8190967eb12aeb5b09/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.13-rc/alpine/Dockerfile) +- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/656ee2332a740807b5024a8190967eb12aeb5b09/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.12/ubuntu/Dockerfile) +- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b2f298d2826fe5ca8e2e7e0984d8405708c7171e/3.12/ubuntu/Dockerfile) - [`3.12.6-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.12/alpine/Dockerfile) +- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b2f298d2826fe5ca8e2e7e0984d8405708c7171e/3.12/alpine/Dockerfile) - [`3.12.6-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.11/ubuntu/Dockerfile) +- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2a04889d18742699c69b01b1154946eb16ec28c0/3.11/ubuntu/Dockerfile) - [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.11/alpine/Dockerfile) +- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2a04889d18742699c69b01b1154946eb16ec28c0/3.11/alpine/Dockerfile) - [`3.11.23-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/9cac94018c00eb881e382afd2337d85970c890c2/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/6e5870068747ebef1d00134c52bd9a8e41cb2b4b/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/9cac94018c00eb881e382afd2337d85970c890c2/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 1f3281b02dfcf8b1d902f0221334d38bec1340da Mon Sep 17 00:00:00 2001 From: Keegan Witt Date: Fri, 13 Oct 2023 13:01:28 -0400 Subject: [PATCH 0653/2686] Document Java 21 limitations --- gradle/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gradle/content.md b/gradle/content.md index 61fd065d2246..14edc0e23c96 100644 --- a/gradle/content.md +++ b/gradle/content.md @@ -15,3 +15,7 @@ Run this from the directory of the Gradle project you want to build. Note the above command runs using uid/gid 1000 (user *gradle*) to avoid running as root. If you are mounting a volume and the uid/gid running Docker is not *1000*, you should run as user *root* (`-u root`). *root* is also the default, so you can also simply not specify a user. + +## Java 21 support + +Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. From ede4d2ac959c8914c3ed0df8c4c069fe6fbe483a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Oct 2023 13:09:56 -0700 Subject: [PATCH 0654/2686] Run update.sh --- nats/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/nats/README.md b/nats/README.md index 75a2e4bfcfc2..092cc96f74d4 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.2-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.2-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/alpine3.18/Dockerfile) -- [`2.10.2-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.2-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) -- [`2.10.2-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.2-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.22-alpine3.18`, `2.9-alpine3.18`, `2.9.22-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/alpine3.18/Dockerfile) -- [`2.9.22-scratch`, `2.9-scratch`, `2.9.22-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) -- [`2.9.22-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.22-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.3-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.3-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/alpine3.18/Dockerfile) +- [`2.10.3-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.3-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) +- [`2.10.3-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.3-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.23-alpine3.18`, `2.9-alpine3.18`, `2.9.23-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/alpine3.18/Dockerfile) +- [`2.9.23-scratch`, `2.9-scratch`, `2.9.23-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) +- [`2.9.23-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.23-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.2`, `2.10`: - - [`2.10.2-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) - - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.3`, `2.10`: + - [`2.10.3-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) + - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.2-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/scratch/Dockerfile) - - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) -- `2.10.2-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.2-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.2-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.10.x/nanoserver-1809/Dockerfile) -- `2.9.22`, `2.9`: - - [`2.9.22-scratch`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/scratch/Dockerfile) -- `2.9.22-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/windowsservercore-1809/Dockerfile) -- `2.9.22-nanoserver`, `2.9-nanoserver`: - - [`2.9.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f310bc81151975580de7cb65aaa0c063ce1c8170/2.9.x/nanoserver-1809/Dockerfile) + - [`2.10.3-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) + - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) +- `2.10.3-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.3-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.3-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) +- `2.9.23`, `2.9`: + - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) +- `2.9.23-windowsservercore`, `2.9-windowsservercore`: + - [`2.9.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/windowsservercore-1809/Dockerfile) +- `2.9.23-nanoserver`, `2.9-nanoserver`: + - [`2.9.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 77ba271dd26f11e4f73da1ffaa8d6d94ccfc909a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Oct 2023 17:20:17 -0700 Subject: [PATCH 0655/2686] Run update.sh --- gradle/README.md | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index ff528c626503..6332040e3fd9 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,15 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk8/Dockerfile) -- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk8-focal/Dockerfile) -- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11/Dockerfile) -- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11-focal/Dockerfile) -- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk11-alpine/Dockerfile) -- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17/Dockerfile) -- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-focal/Dockerfile) -- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-alpine/Dockerfile) -- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ae8311e2e41fbd2837f7a39df7e4b24e00f9b905/jdk17-graal/Dockerfile) +- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk8/Dockerfile) +- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk8-focal/Dockerfile) +- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11/Dockerfile) +- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11-focal/Dockerfile) +- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11-alpine/Dockerfile) +- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17/Dockerfile) +- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-focal/Dockerfile) +- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-alpine/Dockerfile) +- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-graal/Dockerfile) +- [`8.4.0-jdk21`, `8.4-jdk21`, `8-jdk21`, `jdk21`, `8.4.0-jdk21-jammy`, `8.4-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21/Dockerfile) +- [`8.4.0-jdk21-alpine`, `8.4-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21-alpine/Dockerfile) +- [`8.4.0-jdk21-graal`, `8.4-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.4.0-jdk21-graal-jammy`, `8.4-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21-graal/Dockerfile) - [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) - [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) - [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) @@ -87,6 +90,10 @@ Note the above command runs using uid/gid 1000 (user *gradle*) to avoid running If you are mounting a volume and the uid/gid running Docker is not *1000*, you should run as user *root* (`-u root`). *root* is also the default, so you can also simply not specify a user. +## Java 21 support + +Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. + # Image Variants The `gradle` images come in many flavors, each designed for a specific use case. From 003b3785a504ecf8c8cb3e1c94b08c5ed2ee9cbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Oct 2023 18:09:31 -0700 Subject: [PATCH 0656/2686] Run update.sh --- maven/README.md | 8 ++++---- php/README.md | 17 +++++++++++++++++ tomcat/README.md | 36 ++++++++++++++++++------------------ wordpress/README.md | 36 ++++++++++++++++++------------------ 4 files changed, 57 insertions(+), 40 deletions(-) diff --git a/maven/README.md b/maven/README.md index d6a23d8befa4..22b45be117c5 100644 --- a/maven/README.md +++ b/maven/README.md @@ -30,8 +30,8 @@ WARNING: - [`3.9.4-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17/Dockerfile) - [`3.9.4-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-alpine/Dockerfile) - [`3.9.4-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.4-eclipse-temurin-20`, `3.9.4`, `3.9.4-eclipse-temurin`, `3.9-eclipse-temurin-20`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-20`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-20/Dockerfile) -- [`3.9.4-eclipse-temurin-20-alpine`, `3.9-eclipse-temurin-20-alpine`, `3-eclipse-temurin-20-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-20-alpine/Dockerfile) +- [`3.9.4-eclipse-temurin-21`, `3.9.4`, `3.9.4-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/134517fbdef9e977dc3b545533953ac5a493390b/eclipse-temurin-21/Dockerfile) +- [`3.9.4-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/134517fbdef9e977dc3b545533953ac5a493390b/eclipse-temurin-21-alpine/Dockerfile) - [`3.9.4-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8/Dockerfile) - [`3.9.4-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-alpine/Dockerfile) - [`3.9.4-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-focal/Dockerfile) @@ -54,8 +54,8 @@ WARNING: - [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) - [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) - [`3.9.4-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-11/Dockerfile) -- [`3.9.4-sapmachine-17`, `3.9.4-sapmachine`, `3.9-sapmachine-17`, `3.9-sapmachine`, `3-sapmachine-17`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) -- [`3.9.4-sapmachine-21`, `3.9-sapmachine-21`, `3-sapmachine-21`](https://github.com/carlossg/docker-maven/blob/c6ea9b77dab964547324ce49b61ea542fc55f5b5/sapmachine-21/Dockerfile) +- [`3.9.4-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) +- [`3.9.4-sapmachine-21`, `3.9.4-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/c6ea9b77dab964547324ce49b61ea542fc55f5b5/sapmachine-21/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 30fe13ecc5c6..0c4053b0d791 100644 --- a/php/README.md +++ b/php/README.md @@ -66,6 +66,23 @@ WARNING: - [`8.2.11-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.11-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/cli/Dockerfile) - [`8.2.11-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.11-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.25RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.25RC1-bookworm`, `8.1-rc-bookworm`, `8.1.25RC1-cli`, `8.1-rc-cli`, `8.1.25RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.25RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.25RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.25RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.25RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.25RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.25RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.25RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.25RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.25RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.25RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.25RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.25RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.25RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.25RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.25RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.25RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.25RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.25RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.25RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.25RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.25RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.25RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.25RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.25RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.25RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.25RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.25RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.24-cli-bookworm`, `8.1-cli-bookworm`, `8.1.24-bookworm`, `8.1-bookworm`, `8.1.24-cli`, `8.1-cli`, `8.1.24`, `8.1`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/cli/Dockerfile) - [`8.1.24-apache-bookworm`, `8.1-apache-bookworm`, `8.1.24-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/apache/Dockerfile) - [`8.1.24-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.24-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/fpm/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 1406d62ba5e1..37e57d8f2b11 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -32,24 +32,24 @@ WARNING: - [`10.1.14-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.14-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.14-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.14-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.14-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.14-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.14-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.14-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.14-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.81-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.81-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.81-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.81`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/c6f2ca4467405fb3743452b648f63cae1c516791/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.81-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.81-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.81-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/c6f2ca4467405fb3743452b648f63cae1c516791/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.81-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.81-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.81-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.81-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.81-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.81-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.81-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.81-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.81-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.81-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.81-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.81-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.81-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.81-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.81-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.81-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.81-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.81-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.81-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.81-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.81-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.81-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.81-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.81-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.81-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.81-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.81-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.81-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.81-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.81-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.81-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.81-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/f9bbf1387bda2a3aa1aa1021f607250b40621408/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.82-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.82-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.82-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.82`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.82-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.82-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.82-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.82-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.82-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.82-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.82-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.82-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.82-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.82-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.82-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.82-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.82-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.82-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.82-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.82-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.82-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.82-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.82-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.82-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.82-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.82-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.82-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.82-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.82-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.82-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.82-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.82-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.82-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.82-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.82-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.82-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.82-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.82-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.82-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.94-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.94-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.94-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.94`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jdk21/temurin-jammy/Dockerfile) - [`8.5.94-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.94-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.94-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jre21/temurin-jammy/Dockerfile) - [`8.5.94-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.94-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk21/corretto-al2/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index e27d0a3174a1..f7e9aee1aa6a 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.1-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.1`, `6.3`, `6`, `latest`, `6.3.1-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.1-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/apache/Dockerfile) -- [`6.3.1-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.1-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/fpm/Dockerfile) -- [`6.3.1-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.1-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.3.1-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.1-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/apache/Dockerfile) -- [`6.3.1-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/fpm/Dockerfile) -- [`6.3.1-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.3.1-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.1-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/apache/Dockerfile) -- [`6.3.1-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/fpm/Dockerfile) -- [`6.3.1-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/940a0d35951a0917622c35acc92b38b1db3c730f/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.3.2-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.2`, `6.3`, `6`, `latest`, `6.3.2-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.2-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/apache/Dockerfile) +- [`6.3.2-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.2-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/fpm/Dockerfile) +- [`6.3.2-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.2-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.3.2-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.2-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/apache/Dockerfile) +- [`6.3.2-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/fpm/Dockerfile) +- [`6.3.2-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.3.2-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.2-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/apache/Dockerfile) +- [`6.3.2-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm/Dockerfile) +- [`6.3.2-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-beta3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta3-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta3-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-beta3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta3-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-beta3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta3-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-beta3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-beta3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-beta3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-beta3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-beta3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-beta3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b602aaa0dd911c3d2cdc794b7a839dda6ebc4ddc/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4-beta4-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta4`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta4-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta4-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-beta4-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta4-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-beta4-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta4-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-beta4-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta4-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-beta4-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-beta4-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-beta4-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta4-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-beta4-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-beta4-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From f97e4b20590414b20846fd19a824706d4775c21e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Oct 2023 09:18:29 -0700 Subject: [PATCH 0657/2686] Run update.sh --- node/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/node/README.md b/node/README.md index df3704e660d9..454e4c3d5658 100644 --- a/node/README.md +++ b/node/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.0-alpine`, `20.8.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.0`, `20.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.0-bookworm-slim`, `20.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.8-bullseye`, `20.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.8-buster`, `20.8.0-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster/Dockerfile) -- [`20-buster-slim`, `20.8-buster-slim`, `20.8.0-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/230b9852645e170167a2aac1cfa246d069c23cc3/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.1-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.1-alpine`, `18.18.1-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.1`, `18.18.1-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.1-bookworm-slim`, `18.18.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.18-bullseye`, `18.18.1-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.1-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.18-buster`, `18.18.1-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.1-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/5803273beedb045fe6ad8be0a8fdab94681d2b2c/18/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.1-alpine`, `20.8.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.8-buster`, `20.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/buster/Dockerfile) +- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/buster/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/buster-slim/Dockerfile) # Quick reference (cont.) From 57ee883c73225cb37af8dc6f8d9e8fd2d6835d03 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Oct 2023 17:09:40 -0700 Subject: [PATCH 0658/2686] Run update.sh --- archlinux/README.md | 4 ++-- backdrop/README.md | 4 ++-- clearlinux/README.md | 2 +- photon/README.md | 6 +++--- solr/README.md | 16 +++++++++------- zookeeper/README.md | 9 ++++++--- 6 files changed, 23 insertions(+), 18 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index cafd5e471fc3..fd52e7d989b7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20231001.0.182270`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8c000a0752f90e436cc96e097bcc3750f961164/Dockerfile.base) -- [`base-devel`, `base-devel-20231001.0.182270`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a8c000a0752f90e436cc96e097bcc3750f961164/Dockerfile.base-devel) +- [`latest`, `base`, `base-20231015.0.185077`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/686bf22e2b94c89feb1a7e05ee03402404d7d3e7/Dockerfile.base) +- [`base-devel`, `base-devel-20231015.0.185077`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/686bf22e2b94c89feb1a7e05ee03402404d7d3e7/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/backdrop/README.md b/backdrop/README.md index 16157320f600..db146f49a35b 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.1`, `1.25`, `1`, `1.25.1-apache`, `1.25-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/37aae82be48457f524a3cd475ea55d7c1ce0ef2c/1/apache/Dockerfile) -- [`1.25.1-fpm`, `1.25-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/37aae82be48457f524a3cd475ea55d7c1ce0ef2c/1/fpm/Dockerfile) +- [`1.26.1`, `1.26`, `1`, `1.26.1-apache`, `1.26-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/apache/Dockerfile) +- [`1.26.1-fpm`, `1.26-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index b232b18447ba..7e33079d0ee0 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/cc4091909649096cd8afd924eced1d2e5ff7ae63/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7954acf861be4c823c3273bba4caeee8104f4f1e/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 28d111258c82..daf5d907f825 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231007`, `latest`](https://github.com/vmware/photon-docker-image/blob/02731a52fb56792fb9438f9cbf013e00226cbcfc/docker/Dockerfile) -- [`4.0`, `4.0-20230916`](https://github.com/vmware/photon-docker-image/blob/60a27c92f26c7b9285c3eed17bcb93c97cbd3129/docker/Dockerfile) -- [`3.0`, `3.0-20230923`](https://github.com/vmware/photon-docker-image/blob/a61dffbb1e0537dd11d28b8e1a6a3059586a398e/docker/Dockerfile) +- [`5.0`, `5.0-20231014`, `latest`](https://github.com/vmware/photon-docker-image/blob/055095e302b24cc6a0e9b1ea045f1f6ef361ad1d/docker/Dockerfile) +- [`4.0`, `4.0-20231014`](https://github.com/vmware/photon-docker-image/blob/d92bb235f873fe19385c222359b32671809e2011/docker/Dockerfile) +- [`3.0`, `3.0-20231014`](https://github.com/vmware/photon-docker-image/blob/cd1c88a98f796df35ead98a1de708cbc083fb3d4/docker/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 9926fc80037f..8dae95c9d744 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,13 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.3.0`, `9.3`, `9`, `latest`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7e3be2fce98be1fe9c80be0727b4600d4b52fd0f/8.11-slim/Dockerfile) +- [`9.4.0`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.4/Dockerfile) +- [`9.4.0-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.4-slim/Dockerfile) +- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/zookeeper/README.md b/zookeeper/README.md index 8ffe7b158a47..57a20b9a3fef 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,9 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.1-temurin`, `3.7-temurin`](https://github.com/31z4/zookeeper-docker/blob/5cf119d9c5d61024fdba66f7be707413513a8b0d/3.7.1/Dockerfile) -- [`3.8.2`, `3.8`, `3.8.2-temurin`, `3.8-temurin`](https://github.com/31z4/zookeeper-docker/blob/952b2f523f4f9a829d77114ddbe08ab9249d820b/3.8.2/Dockerfile) -- [`3.9.0`, `3.9`, `latest`](https://github.com/31z4/zookeeper-docker/blob/47955764fa33b1cfa547786f5ea0a2ded4e971b9/3.9.0/Dockerfile) +- [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.7.2/Dockerfile) +- [`3.8.3`, `3.8`, `3.8.3-jre-11`, `3.8-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.8.3/Dockerfile) +- [`3.9.1`, `3.9`, `3.9.1-jre-11`, `3.9-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.9.1/Dockerfile) +- [`3.7.2-jre-17`, `3.7-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.7.2/Dockerfile) +- [`3.8.3-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.8.3/Dockerfile) +- [`3.9.1-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.9.1/Dockerfile) # Quick reference (cont.) From b28b0e94f22a4701cc40f8c629042b64c739613a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Oct 2023 18:19:50 -0700 Subject: [PATCH 0659/2686] Run update.sh --- crate/README.md | 6 +++--- ghost/README.md | 4 ++-- influxdb/README.md | 32 ++++++++++++++++---------------- rocket.chat/README.md | 4 ++-- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/crate/README.md b/crate/README.md index 830f35ffec47..c0b50e9e7058 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.3`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/8db87d40d801d2705853f4e567d651239695ed64/Dockerfile) -- [`5.3.6`, `5.3`](https://github.com/crate/docker-crate/blob/f430bdf6653a10ae5ab6b09f3b3f46408bed73be/Dockerfile) -- [`5.2.9`, `5.2`](https://github.com/crate/docker-crate/blob/9b21bf436a20e2a5e139d6b70f04f7b8c34c408c/Dockerfile) +- [`5.4.4`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/790a48bb9153af972edffce6576be43637eb5a07/Dockerfile) +- [`5.3.7`, `5.3`](https://github.com/crate/docker-crate/blob/a268470d8e3c2da23bfabb71fe17213966a88bdf/Dockerfile) +- [`5.2.10`, `5.2`](https://github.com/crate/docker-crate/blob/54246541fd0ba36831fbcf05183915097b91b3b1/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ef0051417ff1..42c4be165025 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.69.0`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b5eae5071b338a29284d1ae17cbff9b54bb149d4/5/debian/Dockerfile) -- [`5.69.0-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b5eae5071b338a29284d1ae17cbff9b54bb149d4/5/alpine/Dockerfile) +- [`5.69.2`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ffeec1f028e2a95f60ac402b18e6957c4fb47576/5/debian/Dockerfile) +- [`5.69.2-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ffeec1f028e2a95f60ac402b18e6957c4fb47576/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 88e581a29b50..8564f656244a 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.2-data`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.2-meta`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/74cd1ae6cf02a941362458db1356e0d5d684f9b5/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c5886439dac8..2b72a9c2b64b 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.5`, `6.3`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/42a6ffd7ceb1064ab4baf38e5733d41faab0519d/6.3/Dockerfile) +- [`6.4.1`, `6.4`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/b73be519a9f4b22e58905885790c17dbcca19bc7/6.4/Dockerfile) +- [`6.3.10`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/b73be519a9f4b22e58905885790c17dbcca19bc7/6.3/Dockerfile) - [`6.2.12`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.2/Dockerfile) -- [`5.4.10`, `5.4`, `5`](https://github.com/RocketChat/Docker.Official.Image/blob/58071fed1cad824a4c0568ec7052bee1f742706c/5.4/Dockerfile) # Quick reference (cont.) From 183fe19215c82114272e24fe42bd43ea9344911a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Oct 2023 15:09:57 -0700 Subject: [PATCH 0660/2686] Run update.sh --- haskell/README.md | 6 ++++-- swipl/README.md | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 19e1125d4485..e8ebc3fa4f66 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.6.3-buster`, `9.6-buster`, `9-buster`, `buster`, `9.6.3`, `9.6`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/buster/Dockerfile) -- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9-slim-buster`, `slim-buster`, `9.6.3-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/slim-buster/Dockerfile) +- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/30f9d37242fd2ab6a8cf23e546a26b56a0d2636c/9.8/buster/Dockerfile) +- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/30f9d37242fd2ab6a8cf23e546a26b56a0d2636c/9.8/slim-buster/Dockerfile) +- [`9.6.3-buster`, `9.6-buster`, `9.6.3`, `9.6`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/buster/Dockerfile) +- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9.6.3-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/slim-buster/Dockerfile) - [`9.4.7-buster`, `9.4-buster`, `9.4.7`, `9.4`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/buster/Dockerfile) - [`9.4.7-slim-buster`, `9.4-slim-buster`, `9.4.7-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 8d13235336f9..c364b7f63e4a 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.14`](https://github.com/SWI-Prolog/docker-swipl/blob/80927128dd1cf6f3a87290adaf35bff9e50d808d/9.1.14/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/80927128dd1cf6f3a87290adaf35bff9e50d808d/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.17`](https://github.com/SWI-Prolog/docker-swipl/blob/9369a643cd0ca2f7b2741d65b45e9b3ab36ea378/9.1.17/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/9369a643cd0ca2f7b2741d65b45e9b3ab36ea378/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 7fd17fa9f16e13f83beeee7ce2c9ef830e2449a8 Mon Sep 17 00:00:00 2001 From: otbutz Date: Wed, 18 Oct 2023 01:42:17 +0200 Subject: [PATCH 0661/2686] Add NET_ADMIN documentation (#2348) Co-authored-by: Francis Lavoie --- caddy/content.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index 7a8acc40b03e..f97e70bff147 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -49,7 +49,7 @@ $ docker run -d -p 80:80 \ The default `Caddyfile` only listens to port `80`, and does not set up automatic TLS. However, if you have a domain name for your site, and its A/AAAA DNS records are properly pointed to this machine's public IP, then you can use this command to simply serve a site over HTTPS: ```console -$ docker run -d -p 80:80 -p 443:443 -p 443:443/udp \ +$ docker run -d --cap-add=NET_ADMIN -p 80:80 -p 443:443 -p 443:443/udp \ -v /site:/srv \ -v caddy_data:/data \ -v caddy_config:/config \ @@ -109,6 +109,14 @@ $ caddy_container_id=$(docker ps | grep caddy | awk '{print $1;}') $ docker exec -w /etc/caddy $caddy_container_id caddy reload ``` +### Linux capabilities + +Caddy ships with HTTP/3 support enabled by default. To improve the performance of this UDP based protocol, the underlying quic-go library tries to increase the buffer sizes for its socket. The `NET_ADMIN` capability allows it to override the low default limits of the operating system without having to change kernel parameters via sysctl. + +Giving the container this capability is optional and has potential, though unlikely, to have [security implications](https://unix.stackexchange.com/a/508816). + +See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. + ### Docker Compose example If you prefer to use `docker-compose` to run your stack, here's a sample service definition. @@ -120,6 +128,8 @@ services: caddy: image: %%IMAGE%%: restart: unless-stopped + cap_add: + - NET_ADMIN ports: - "80:80" - "443:443" From 39e45f7cb056e492ba1bccc594c6baa5ddc59432 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Oct 2023 17:09:40 -0700 Subject: [PATCH 0662/2686] Run update.sh --- aerospike/README.md | 4 ++-- caddy/README.md | 12 ++++++++++- influxdb/README.md | 32 ++++++++++++++-------------- memcached/README.md | 4 ++-- tomcat/README.md | 52 ++++++++++++++++++++++----------------------- 5 files changed, 57 insertions(+), 47 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index a661209ab341..4dc686c3b374 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.4`, `ee-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.4`, `ce-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/community/debian12/Dockerfile) +- [`ee-6.4.0.6`, `ee-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.6`, `ce-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index fcb68135f769..661029836a82 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -119,7 +119,7 @@ $ docker run -d -p 80:80 \ The default `Caddyfile` only listens to port `80`, and does not set up automatic TLS. However, if you have a domain name for your site, and its A/AAAA DNS records are properly pointed to this machine's public IP, then you can use this command to simply serve a site over HTTPS: ```console -$ docker run -d -p 80:80 -p 443:443 -p 443:443/udp \ +$ docker run -d --cap-add=NET_ADMIN -p 80:80 -p 443:443 -p 443:443/udp \ -v /site:/srv \ -v caddy_data:/data \ -v caddy_config:/config \ @@ -179,6 +179,14 @@ $ caddy_container_id=$(docker ps | grep caddy | awk '{print $1;}') $ docker exec -w /etc/caddy $caddy_container_id caddy reload ``` +### Linux capabilities + +Caddy ships with HTTP/3 support enabled by default. To improve the performance of this UDP based protocol, the underlying quic-go library tries to increase the buffer sizes for its socket. The `NET_ADMIN` capability allows it to override the low default limits of the operating system without having to change kernel parameters via sysctl. + +Giving the container this capability is optional and has potential, though unlikely, to have [security implications](https://unix.stackexchange.com/a/508816). + +See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. + ### Docker Compose example If you prefer to use `docker-compose` to run your stack, here's a sample service definition. @@ -190,6 +198,8 @@ services: caddy: image: caddy: restart: unless-stopped + cap_add: + - NET_ADMIN ports: - "80:80" - "443:443" diff --git a/influxdb/README.md b/influxdb/README.md index 8564f656244a..98b533aba65e 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 4859584b6978..85dc897459a6 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.21`, `1.6`, `1`, `latest`, `1.6.21-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/debian/Dockerfile) -- [`1.6.21-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.21-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/alpine/Dockerfile) +- [`1.6.22`, `1.6`, `1`, `latest`, `1.6.22-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/debian/Dockerfile) +- [`1.6.22-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.22-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 37e57d8f2b11..1651c8505104 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M12-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M12-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M12-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M12`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/a05ba2589539f88093aa53fc94cead6a17c97aa6/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M12-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M12-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M12-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/a05ba2589539f88093aa53fc94cead6a17c97aa6/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.14-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.14-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.14-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.14`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/2fa4e03c16759c4578b3dcb6ce97d7265ed777ba/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.14-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.14-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.14-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/2fa4e03c16759c4578b3dcb6ce97d7265ed777ba/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.14-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.14-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.14-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.14-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.14-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.14-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.14-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.14-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.14-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.14-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.14-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.14-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/db586de2afc6dccc248d2f108654e954d50da15c/10.1/jre11/temurin-jammy/Dockerfile) +- [`11.0.0-M13-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M13-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M13-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M13`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/70ec135dc89b4928b83a31fbe2ceaea6c19de8fb/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M13-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M13-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M13-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/70ec135dc89b4928b83a31fbe2ceaea6c19de8fb/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.15-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.15-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.15-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.15`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.15-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.15-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.15-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.15-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.15-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.15-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.15-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.15-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.15-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.15-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.15-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.15-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.15-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.15-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.15-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.82-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.82-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.82-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.82`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/temurin-jammy/Dockerfile) - [`9.0.82-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.82-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.82-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre21/temurin-jammy/Dockerfile) - [`9.0.82-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.82-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/corretto-al2/Dockerfile) @@ -50,24 +50,24 @@ WARNING: - [`9.0.82-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.82-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.82-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.82-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.94-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.94-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.94-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.94`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.94-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.94-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.94-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2b0adfec11340b151c2b2385c7dc6de27677e10b/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.94-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.94-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.94-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.94-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.94-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.94-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.94-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.94-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.94-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.94-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.94-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.94-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.94-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.94-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.94-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.94-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.94-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.94-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.94-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.94-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.94-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.94-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.94-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.94-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.94-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.94-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.94-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.94-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.94-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.94-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.94-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.94-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3e4ccf4f0918276c3a9a43156f070c6a9b16254c/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.95-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.95-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.95-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.95`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.95-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.95-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.95-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.95-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.95-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.95-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.95-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.95-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.95-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.95-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.95-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.95-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.95-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.95-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.95-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.95-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.95-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.95-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.95-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.95-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.95-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.95-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.95-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.95-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.95-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.95-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.95-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.95-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.95-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.95-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.95-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.95-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.95-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.95-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.95-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 531d621d21bc1e09027d0ea4a62f4de4c37992aa Mon Sep 17 00:00:00 2001 From: Elisey Zanko Date: Sun, 1 Aug 2021 14:19:10 +0500 Subject: [PATCH 0663/2686] Update Zookeeper logging docs --- zookeeper/content.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/zookeeper/content.md b/zookeeper/content.md index 96a332509060..67fce24545da 100644 --- a/zookeeper/content.md +++ b/zookeeper/content.md @@ -152,12 +152,20 @@ This image is configured with volumes at `/data` and `/datalog` to hold the Zook ## How to configure logging -By default, ZooKeeper redirects stdout/stderr outputs to the console. You can redirect to a file located in `/logs` by passing environment variable `ZOO_LOG4J_PROP` as follows: +By default, ZooKeeper redirects stdout/stderr outputs to the console. Since 3.8 ZooKeeper is shipped with [LOGBack](https://logback.qos.ch/) as the logging backend. The ZooKeeper default `logback.xml` file resides in the `/conf` directory. To override default logging configuration mount your custom config as a volume: ```console -$ docker run --name some-zookeeper --restart always -e ZOO_LOG4J_PROP="INFO,ROLLINGFILE" %%IMAGE%% +$ docker run --name some-zookeeper --restart always -d -v $(pwd)/logback.xml:/conf/logback.xml %%IMAGE%% ``` -This will write logs to `/logs/zookeeper.log`. Check [ZooKeeper Logging](https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_logging) for more details. +Check [ZooKeeper Logging](https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_logging) for more details. + +### Logging in 3.7 + +You can redirect to a file located in `/logs` by passing environment variable `ZOO_LOG4J_PROP` as follows: + +```console +$ docker run --name some-zookeeper --restart always -e ZOO_LOG4J_PROP="INFO,ROLLINGFILE" %%IMAGE%% +``` -This image is configured with a volume at `/logs` for your convenience. +This will write logs to `/logs/zookeeper.log`. This image is configured with a volume at `/logs` for your convenience. From b6d3da3996fc74de704710608d151f7b6f2f8583 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Oct 2023 10:11:02 -0700 Subject: [PATCH 0664/2686] Run update.sh --- node/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/node/README.md b/node/README.md index 454e4c3d5658..e0f9ba9b12f8 100644 --- a/node/README.md +++ b/node/README.md @@ -26,20 +26,20 @@ WARNING: - [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.1-alpine`, `20.8.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.8-buster`, `20.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/buster/Dockerfile) -- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/buster-slim/Dockerfile) +- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.8-buster`, `20.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster/Dockerfile) +- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/buster-slim/Dockerfile) +- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster-slim/Dockerfile) # Quick reference (cont.) From 229d21117e295f63fbb500dc9bf45fb5cc88cc1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Oct 2023 14:09:50 -0700 Subject: [PATCH 0665/2686] Run update.sh --- zookeeper/README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/zookeeper/README.md b/zookeeper/README.md index 57a20b9a3fef..5b4102ad39d9 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -243,15 +243,23 @@ This image is configured with volumes at `/data` and `/datalog` to hold the Zook ## How to configure logging -By default, ZooKeeper redirects stdout/stderr outputs to the console. You can redirect to a file located in `/logs` by passing environment variable `ZOO_LOG4J_PROP` as follows: +By default, ZooKeeper redirects stdout/stderr outputs to the console. Since 3.8 ZooKeeper is shipped with [LOGBack](https://logback.qos.ch/) as the logging backend. The ZooKeeper default `logback.xml` file resides in the `/conf` directory. To override default logging configuration mount your custom config as a volume: ```console -$ docker run --name some-zookeeper --restart always -e ZOO_LOG4J_PROP="INFO,ROLLINGFILE" zookeeper +$ docker run --name some-zookeeper --restart always -d -v $(pwd)/logback.xml:/conf/logback.xml zookeeper ``` -This will write logs to `/logs/zookeeper.log`. Check [ZooKeeper Logging](https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_logging) for more details. +Check [ZooKeeper Logging](https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_logging) for more details. + +### Logging in 3.7 + +You can redirect to a file located in `/logs` by passing environment variable `ZOO_LOG4J_PROP` as follows: + +```console +$ docker run --name some-zookeeper --restart always -e ZOO_LOG4J_PROP="INFO,ROLLINGFILE" zookeeper +``` -This image is configured with a volume at `/logs` for your convenience. +This will write logs to `/logs/zookeeper.log`. This image is configured with a volume at `/logs` for your convenience. # License From 6d3013e2dc594a84be82591b5a40e83c3a7860fc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Oct 2023 17:09:34 -0700 Subject: [PATCH 0666/2686] Run update.sh --- bash/README.md | 2 +- dart/README.md | 4 ++-- influxdb/README.md | 32 ++++++++++++------------- joomla/README.md | 48 ++++++++++++++++++------------------- jruby/README.md | 24 +++++++++---------- open-liberty/README.md | 48 +++++++++++++++++++++---------------- websphere-liberty/README.md | 42 ++++++++++++++++++-------------- 7 files changed, 106 insertions(+), 94 deletions(-) diff --git a/bash/README.md b/bash/README.md index 684417ef1184..afef09f3c92e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231005`, `devel`, `devel-20231005-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/05f3214715d69a806e23d199cdd46a2132634e69/devel/Dockerfile) +- [`devel-20231011`, `devel`, `devel-20231011-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/4722796faa5df4c4ef4fb2c3ab6749b655cad8b4/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/dart/README.md b/dart/README.md index f74cbd34ace1..2570f5080caa 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.3-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.3`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5c3f7cacc97f82d295dd530a201a11ca965cee78/stable/bookworm/Dockerfile) -- [`3.2.0-210.2.beta-sdk`, `beta-sdk`, `3.2.0-210.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5c3f7cacc97f82d295dd530a201a11ca965cee78/beta/bookworm/Dockerfile) +- [`3.1.4-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.4`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6bb05083bc305addeaf0a8dc7ab3b5cc3e9bc409/stable/bookworm/Dockerfile) +- [`3.2.0-210.3.beta-sdk`, `beta-sdk`, `3.2.0-210.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6bb05083bc305addeaf0a8dc7ab3b5cc3e9bc409/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 98b533aba65e..628f4f782454 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index ace75c80d74e..304dc02f8738 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-rc1-php8.1-apache`, `5.0-php8.1-apache`, `5.0.rc-php8.1-apache`, `5.0.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/apache/Dockerfile) -- [`5.0.0-rc1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5.0.rc-php8.1-fpm-alpine`, `5.0.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-rc1-php8.1-fpm`, `5.0-php8.1-fpm`, `5.0.rc-php8.1-fpm`, `5.0.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.1/fpm/Dockerfile) -- [`5.0.0-rc1`, `5.0`, `5.0.rc`, `5.0.0-rc`, `5.0.0-rc1-apache`, `5.0-apache`, `5.0.rc-apache`, `5.0.0-rc-apache`, `5.0.0-rc1-php8.2`, `5.0-php8.2`, `5.0.rc-php8.2`, `5.0.0-rc-php8.2`, `5.0.0-rc1-php8.2-apache`, `5.0-php8.2-apache`, `5.0.rc-php8.2-apache`, `5.0.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/apache/Dockerfile) -- [`5.0.0-rc1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5.0.rc-php8.2-fpm-alpine`, `5.0.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-rc1-php8.2-fpm`, `5.0-php8.2-fpm`, `5.0.rc-php8.2-fpm`, `5.0.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/5.0.rc/php8.2/fpm/Dockerfile) -- [`4.4.0-rc1-php8.0-apache`, `4.4-php8.0-apache`, `4.4.rc-php8.0-apache`, `4.4.0-rc-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/apache/Dockerfile) -- [`4.4.0-rc1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4.4.rc-php8.0-fpm-alpine`, `4.4.0-rc-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-rc1-php8.0-fpm`, `4.4-php8.0-fpm`, `4.4.rc-php8.0-fpm`, `4.4.0-rc-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.0/fpm/Dockerfile) -- [`4.4.0-rc1`, `4.4`, `4.4.rc`, `4.4.0-rc`, `4.4.0-rc1-apache`, `4.4-apache`, `4.4.rc-apache`, `4.4.0-rc-apache`, `4.4.0-rc1-php8.1`, `4.4-php8.1`, `4.4.rc-php8.1`, `4.4.0-rc-php8.1`, `4.4.0-rc1-php8.1-apache`, `4.4-php8.1-apache`, `4.4.rc-php8.1-apache`, `4.4.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/apache/Dockerfile) -- [`4.4.0-rc1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4.4.rc-php8.1-fpm-alpine`, `4.4.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-rc1-php8.1-fpm`, `4.4-php8.1-fpm`, `4.4.rc-php8.1-fpm`, `4.4.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.1/fpm/Dockerfile) -- [`4.4.0-rc1-php8.2-apache`, `4.4-php8.2-apache`, `4.4.rc-php8.2-apache`, `4.4.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/apache/Dockerfile) -- [`4.4.0-rc1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4.4.rc-php8.2-fpm-alpine`, `4.4.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-rc1-php8.2-fpm`, `4.4-php8.2-fpm`, `4.4.rc-php8.2-fpm`, `4.4.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc5b2b8442758fb72964f534614f69e84ba9aef5/4.4.rc/php8.2/fpm/Dockerfile) -- [`4.3.4`, `4.3`, `4`, `latest`, `4.3.4-apache`, `4.3-apache`, `4-apache`, `apache`, `4.3.4-php8.0`, `4.3-php8.0`, `4-php8.0`, `php8.0`, `4.3.4-php8.0-apache`, `4.3-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/apache/Dockerfile) -- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm/Dockerfile) -- [`4.3.4-php8.1-apache`, `4.3-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/apache/Dockerfile) -- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm/Dockerfile) -- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/apache/Dockerfile) -- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm/Dockerfile) +- [`5.0.0-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/apache/Dockerfile) +- [`5.0.0-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/fpm/Dockerfile) +- [`5.0.0`, `5.0`, `5`, `5.0.0-apache`, `5.0-apache`, `5-apache`, `5.0.0-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.0-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/apache/Dockerfile) +- [`5.0.0-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/fpm/Dockerfile) +- [`4.4.0-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/apache/Dockerfile) +- [`4.4.0-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/fpm/Dockerfile) +- [`4.4.0`, `4.4`, `4`, `latest`, `4.4.0-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.0-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.0-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/apache/Dockerfile) +- [`4.4.0-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/fpm/Dockerfile) +- [`4.4.0-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/apache/Dockerfile) +- [`4.4.0-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/fpm/Dockerfile) +- [`4.3.4-php8.0-apache`, `4.3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/apache/Dockerfile) +- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm/Dockerfile) +- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/apache/Dockerfile) +- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm/Dockerfile) +- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/apache/Dockerfile) +- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm/Dockerfile) - [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/apache/Dockerfile) - [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm-alpine/Dockerfile) - [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm/Dockerfile) diff --git a/jruby/README.md b/jruby/README.md index b7db25956782..b27040f20a47 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.3`, `9.4-jre`, `9.4-jre8`, `9.4.3-jre`, `9.4.3-jre8`, `9.4.3.0`, `9.4.3.0-jre`, `9.4.3.0-jre8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.3-jdk`, `9.4.3-jdk8`, `9.4.3.0-jdk`, `9.4.3.0-jdk8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.3-jre11`, `9.4.3.0-jre11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.3-jdk11`, `9.4.3.0-jdk11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.3-jdk17`, `9.4.3.0-jdk17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.2-jre17`, `9.4.2.0-jre17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.4/jre17/Dockerfile) -- [`9.3`, `9.3.11`, `9.3-jre`, `9.3-jre8`, `9.3.11-jre`, `9.3.11-jre8`, `9.3.11.0`, `9.3.11.0-jre`, `9.3.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.11-jdk`, `9.3.11-jdk8`, `9.3.11.0-jdk`, `9.3.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.11-jre11`, `9.3.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.11-jdk11`, `9.3.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.11-jdk17`, `9.3.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.11-jre17`, `9.3.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/13c93bf03f4130306e52c3cb8316edbd1a63da15/9.3/jre17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.4`, `9.4-jre`, `9.4-jre8`, `9.4.4-jre`, `9.4.4-jre8`, `9.4.4.0`, `9.4.4.0-jre`, `9.4.4.0-jre8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.4-jdk`, `9.4.4-jdk8`, `9.4.4.0-jdk`, `9.4.4.0-jdk8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.4-jre11`, `9.4.4.0-jre11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.4-jdk11`, `9.4.4.0-jdk11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.4-jdk17`, `9.4.4.0-jdk17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.4-jre17`, `9.4.4.0-jre17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre17/Dockerfile) +- [`9.3`, `9.3.11`, `9.3-jre`, `9.3-jre8`, `9.3.11-jre`, `9.3.11-jre8`, `9.3.11.0`, `9.3.11.0-jre`, `9.3.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.11-jdk`, `9.3.11-jdk8`, `9.3.11.0-jdk`, `9.3.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.11-jre11`, `9.3.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.11-jdk11`, `9.3.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.11-jdk17`, `9.3.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.11-jre17`, `9.3.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre17/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 373de61a70ee..1578544b2224 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,27 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/5d48ecee8824ef8415328ad88589014feee14740/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 309db24909b3..a3a8b2a25dff 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,24 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d07801fbcbe9512ee5a07c6f79be069bd1c17e57/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 762e51524c9f2a03308cc3299a30e6a458f685a4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Oct 2023 18:17:09 -0700 Subject: [PATCH 0667/2686] Run update.sh --- amazoncorretto/README.md | 88 +++++++++++++++---------------- docker/README.md | 10 ++-- ghost/README.md | 4 +- python/README.md | 109 ++++++++++++++++++++++----------------- rabbitmq/README.md | 16 +++--- redis/README.md | 12 ++--- wordpress/README.md | 18 +++---- 7 files changed, 133 insertions(+), 124 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index d1077acdba32..fde40c981a10 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,53 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u382`, `8u382-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u382-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u382-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u382-al2023-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u382-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u382-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u382-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u382-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u382-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u382-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u382-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u382-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u382-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u382-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u382-alpine3.18-jre`, `8-alpine-jre`, `8u382-alpine-jre`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.20`, `11.0.20-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.20-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.20-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.20-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.20-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.20-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.20-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.20-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.20-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.20-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.20-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.20-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.8`, `17.0.8-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.8-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.8-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.8-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.8-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.8-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.8-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.8-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.8-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.8-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.8-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/17/jdk/alpine/3.18/Dockerfile) -- [`20`, `20.0.2`, `20.0.2-al2`, `20-al2-full`, `20-al2-jdk`, `20-al2-generic`, `20.0.2-al2-generic`, `20-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/al2-generic/Dockerfile) -- [`20-al2023-generic`, `20.0.2-al2023-generic`, `20-al2023-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/al2023-generic/Dockerfile) -- [`20-alpine3.15`, `20.0.2-alpine3.15`, `20-alpine3.15-full`, `20-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.15/Dockerfile) -- [`20-alpine3.16`, `20.0.2-alpine3.16`, `20-alpine3.16-full`, `20-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.16/Dockerfile) -- [`20-alpine3.17`, `20.0.2-alpine3.17`, `20-alpine3.17-full`, `20-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.17/Dockerfile) -- [`20-alpine3.18`, `20.0.2-alpine3.18`, `20-alpine3.18-full`, `20-alpine3.18-jdk`, `20-alpine`, `20.0.2-alpine`, `20-alpine-full`, `20-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/20/jdk/alpine/3.18/Dockerfile) -- [`21`, `21.0.0`, `21.0.0-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.0-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.0-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.0-al2023-headless`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.0-al2023-headful`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/headful/al2023/Dockerfile) -- [`21-alpine3.15`, `21.0.0-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.15/Dockerfile) -- [`21-alpine3.16`, `21.0.0-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.0-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.0-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.0-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/222e2a97c715482d19e55b267e7e1a12b4c6f2d0/21/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u392-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u392-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.21-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.9-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/headful/al2023/Dockerfile) +- [`21-alpine3.15`, `21.0.1-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.15/Dockerfile) +- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 6d70514e22c7..102bdaf60137 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/ff78b7b5f1f0830aa327380eb396dea53380b517/24/cli/Dockerfile) +- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/cli/Dockerfile) - [`24.0.6-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.6-dind-alpine3.18`, `24.0.6`, `24.0`, `24`, `latest`, `24.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind/Dockerfile) - [`24.0.6-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind-rootless/Dockerfile) - [`24.0.6-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `24.0.6-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/112eb0209e4ce46e18059a9bd1b3b63f9409d360/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 42c4be165025..a55fbf249ef1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.69.2`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ffeec1f028e2a95f60ac402b18e6957c4fb47576/5/debian/Dockerfile) -- [`5.69.2-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ffeec1f028e2a95f60ac402b18e6957c4fb47576/5/alpine/Dockerfile) +- [`5.69.3`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5c8b1866d2ce50588c1942155174cc7e9ebee751/5/debian/Dockerfile) +- [`5.69.3-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5c8b1866d2ce50588c1942155174cc7e9ebee751/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index d017c4151a85..01b993c0d033 100644 --- a/python/README.md +++ b/python/README.md @@ -28,63 +28,78 @@ WARNING: ## Simple Tags -- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bookworm/Dockerfile) -- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/slim-bookworm/Dockerfile) -- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bullseye/Dockerfile) -- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/slim-bullseye/Dockerfile) -- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/alpine3.18/Dockerfile) -- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/alpine3.17/Dockerfile) -- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bookworm/Dockerfile) -- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/slim-bookworm/Dockerfile) -- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bullseye/Dockerfile) -- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/slim-bullseye/Dockerfile) -- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/alpine3.18/Dockerfile) -- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/alpine3.17/Dockerfile) -- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) -- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.10/slim-bookworm/Dockerfile) -- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bullseye/Dockerfile) -- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/alpine3.18/Dockerfile) -- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/alpine3.17/Dockerfile) -- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bookworm/Dockerfile) -- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.9/slim-bookworm/Dockerfile) -- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bullseye/Dockerfile) -- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/alpine3.18/Dockerfile) -- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/alpine3.17/Dockerfile) -- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bookworm/Dockerfile) -- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.8/slim-bookworm/Dockerfile) -- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bullseye/Dockerfile) -- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/81b6e5f0643965618d633cd6b811bf0879dee360/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.18/Dockerfile) -- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/alpine3.17/Dockerfile) +- [`3.13.0a1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a1-alpine3.18`, `3.13-rc-alpine3.18`, `3.13.0a1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a1-alpine3.17`, `3.13-rc-alpine3.17`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/alpine3.17/Dockerfile) +- [`3.13.0a1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bookworm/Dockerfile) +- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/slim-bookworm/Dockerfile) +- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bullseye/Dockerfile) +- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/slim-bullseye/Dockerfile) +- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/alpine3.18/Dockerfile) +- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/alpine3.17/Dockerfile) +- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bookworm/Dockerfile) +- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/slim-bookworm/Dockerfile) +- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bullseye/Dockerfile) +- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/slim-bullseye/Dockerfile) +- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/alpine3.18/Dockerfile) +- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/alpine3.17/Dockerfile) +- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bookworm/Dockerfile) +- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/slim-bookworm/Dockerfile) +- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bullseye/Dockerfile) +- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/slim-bullseye/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/alpine3.18/Dockerfile) +- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/alpine3.17/Dockerfile) +- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bookworm/Dockerfile) +- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/slim-bookworm/Dockerfile) +- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bullseye/Dockerfile) +- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/slim-bullseye/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/alpine3.18/Dockerfile) +- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/alpine3.17/Dockerfile) +- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bookworm/Dockerfile) +- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/slim-bookworm/Dockerfile) +- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bullseye/Dockerfile) +- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/slim-bullseye/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/alpine3.18/Dockerfile) +- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/alpine3.17/Dockerfile) ## Shared Tags +- `3.13.0a1`, `3.13-rc`: + - [`3.13.0a1-bookworm`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a1-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0`, `3.12`, `3`, `latest`: - - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/bookworm/Dockerfile) - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bookworm/Dockerfile) + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.0-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/b7b91ef359a740a91caeabce414ce4ee70fd2b23/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.6`, `3.11`: - - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/bookworm/Dockerfile) - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bookworm/Dockerfile) + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.6-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/4673e3aaaef624dc235e37dd9144be8ffb535ee3/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/9102bdad9e7610adfac4bc42ec4bea6064d7d4ac/3.10/bookworm/Dockerfile) + - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: - - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/2a443dea53899cadc98b3ff5f7facb29c698e8fc/3.9/bookworm/Dockerfile) + - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bookworm/Dockerfile) - `3.8.18`, `3.8`: - - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/3baa2035e25511b5dcc0e6c0062513cbe06ba803/3.8/bookworm/Dockerfile) + - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 94a73c35dfd2..e9edef8dd516 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/656ee2332a740807b5024a8190967eb12aeb5b09/3.13-rc/alpine/Dockerfile) - [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.6`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b2f298d2826fe5ca8e2e7e0984d8405708c7171e/3.12/ubuntu/Dockerfile) -- [`3.12.6-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b2f298d2826fe5ca8e2e7e0984d8405708c7171e/3.12/alpine/Dockerfile) -- [`3.12.6-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.23`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2a04889d18742699c69b01b1154946eb16ec28c0/3.11/ubuntu/Dockerfile) -- [`3.11.23-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.23-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2a04889d18742699c69b01b1154946eb16ec28c0/3.11/alpine/Dockerfile) -- [`3.11.23-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.7`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/ubuntu/Dockerfile) +- [`3.12.7-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/alpine/Dockerfile) +- [`3.12.7-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.24`, `3.11`](https://github.com/docker-library/rabbitmq/blob/1f2cd450abe5f2b15e0e5844d94390c4bd7cceea/3.11/ubuntu/Dockerfile) +- [`3.11.24-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.24-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/1f2cd450abe5f2b15e0e5844d94390c4bd7cceea/3.11/alpine/Dockerfile) +- [`3.11.24-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 895da3c1356b..8638cc97d9ee 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.1`, `7.2`, `7`, `latest`, `7.2.1-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/92c70b44fbc5b27df1a14f90a0bd3e1cda46d752/7.2/Dockerfile) -- [`7.2.1-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.1-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/92c70b44fbc5b27df1a14f90a0bd3e1cda46d752/7.2/alpine/Dockerfile) -- [`7.0.13`, `7.0`, `7.0.13-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/13938097abae941f3dbf24c9c6be46f9a7a59f14/7.0/Dockerfile) -- [`7.0.13-alpine`, `7.0-alpine`, `7.0.13-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/13938097abae941f3dbf24c9c6be46f9a7a59f14/7.0/alpine/Dockerfile) -- [`6.2.13`, `6.2`, `6`, `6.2.13-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/Dockerfile) -- [`6.2.13-alpine`, `6.2-alpine`, `6-alpine`, `6.2.13-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/f2da8752a05b783eb805b67ad7a56a997a0fe91f/6.2/alpine/Dockerfile) +- [`7.2.2`, `7.2`, `7`, `latest`, `7.2.2-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/f00ff0562e52e24f0cde26988628ad7de51fd8d8/7.2/Dockerfile) +- [`7.2.2-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.2-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/f00ff0562e52e24f0cde26988628ad7de51fd8d8/7.2/alpine/Dockerfile) +- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/ce25672f1723a6851c7a884c9f860117746c34ed/7.0/Dockerfile) +- [`7.0.14-alpine`, `7.0-alpine`, `7.0.14-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/ce25672f1723a6851c7a884c9f860117746c34ed/7.0/alpine/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/1bca8586ef48732eca80d1ae4823145689f2f906/6.2/Dockerfile) +- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/1bca8586ef48732eca80d1ae4823145689f2f906/6.2/alpine/Dockerfile) - [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/Dockerfile) - [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/alpine/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index f7e9aee1aa6a..39c9c20f20c3 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) - [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) - [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-beta4-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-beta4`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-beta4-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-beta4-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-beta4-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-beta4-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-beta4-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-beta4-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-beta4-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-beta4-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-beta4-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-beta4-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-beta4-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-beta4-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-beta4-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-beta4-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d8ac6a7f75692940380323c2e9e26eab5ccea8e/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4-RC1-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC1`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC1-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC1-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-RC1-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC1-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-RC1-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC1-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-RC1-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC1-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-RC1-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-RC1-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-RC1-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC1-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-RC1-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-RC1-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 326a55ffc4893fa2e8959a86b1273d7c2fd5dff3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Oct 2023 12:18:06 -0700 Subject: [PATCH 0668/2686] Run update.sh --- httpd/README.md | 4 ++-- maven/README.md | 61 +++++++++++++++++++++++-------------------------- swift/README.md | 20 ++++++++-------- 3 files changed, 41 insertions(+), 44 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index fbebcffe6e70..3f4f56a7d10a 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.57`, `2.4`, `2`, `latest`, `2.4.57-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/242f3c62ba1ceee0a3633045fc4fd9277cb86cd3/2.4/Dockerfile) -- [`2.4.57-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.57-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/c87146e71508462f0ebd5de9890a0f8bb3b98c8f/2.4/alpine/Dockerfile) +- [`2.4.58`, `2.4`, `2`, `latest`, `2.4.58-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/338f9a4b1e36e09ad2733f36f19e31157f5c959c/2.4/Dockerfile) +- [`2.4.58-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.58-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/338f9a4b1e36e09ad2733f36f19e31157f5c959c/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 22b45be117c5..b830001de097 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,38 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/04ab123ebc6b70fad75cfb7a08cc24b0c921c637/eclipse-temurin-11/Dockerfile) -- [`3.9.4-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.4-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.4-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17/Dockerfile) -- [`3.9.4-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.4-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.4-eclipse-temurin-21`, `3.9.4`, `3.9.4-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/134517fbdef9e977dc3b545533953ac5a493390b/eclipse-temurin-21/Dockerfile) -- [`3.9.4-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/134517fbdef9e977dc3b545533953ac5a493390b/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.4-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8/Dockerfile) -- [`3.9.4-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.4-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.4-ibmjava-8`, `3.9.4-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibmjava-8/Dockerfile) -- [`3.9.4-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-11-focal/Dockerfile) -- [`3.9.4-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/ibm-semeru-17-focal/Dockerfile) -- [`3.9.4-amazoncorretto-11`, `3.9.4-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11/Dockerfile) -- [`3.9.4-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.4-amazoncorretto-11-debian`, `3.9.4-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-11-debian/Dockerfile) -- [`3.9.4-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17/Dockerfile) -- [`3.9.4-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.4-amazoncorretto-17-debian`, `3.9.4-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-17-debian/Dockerfile) -- [`3.9.4-amazoncorretto-20`, `3.9-amazoncorretto-20`, `3-amazoncorretto-20`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20/Dockerfile) -- [`3.9.4-amazoncorretto-20-al2023`, `3.9-amazoncorretto-20-al2023`, `3-amazoncorretto-20-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-20-al2023/Dockerfile) -- [`3.9.4-amazoncorretto-20-debian`, `3.9.4-amazoncorretto-20-debian-bookworm`, `3.9-amazoncorretto-20-debian`, `3.9-amazoncorretto-20-debian-bookworm`, `3-amazoncorretto-20-debian`, `3-amazoncorretto-20-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-20-debian/Dockerfile) -- [`3.9.4-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/7741c2848c3ea3ad6b4180d94b90d669d419c893/amazoncorretto-21/Dockerfile) -- [`3.9.4-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/3a94e25bc22f4589addf7e50361a3e0c1af1c306/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.4-amazoncorretto-21-debian`, `3.9.4-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/61b5d8d7e9e5706522ff154315db185816d35891/amazoncorretto-21-debian/Dockerfile) -- [`3.9.4-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8/Dockerfile) -- [`3.9.4-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/70289540a9c5078ffa8cdde7ab6432248f942d54/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.4-amazoncorretto-8-debian`, `3.9.4-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/amazoncorretto-8-debian/Dockerfile) -- [`3.9.4-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-11/Dockerfile) -- [`3.9.4-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/d7319e0caa2961b402073e8054bc63e8dc48d969/sapmachine-17/Dockerfile) -- [`3.9.4-sapmachine-21`, `3.9.4-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/c6ea9b77dab964547324ce49b61ea542fc55f5b5/sapmachine-21/Dockerfile) +- [`3.9.5-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11/Dockerfile) +- [`3.9.5-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.5-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.5-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17/Dockerfile) +- [`3.9.5-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.5-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.5-eclipse-temurin-21`, `3.9.5`, `3.9.5-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-21/Dockerfile) +- [`3.9.5-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.5-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8/Dockerfile) +- [`3.9.5-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.5-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.5-ibmjava-8`, `3.9.5-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibmjava-8/Dockerfile) +- [`3.9.5-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibm-semeru-11-focal/Dockerfile) +- [`3.9.5-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibm-semeru-17-focal/Dockerfile) +- [`3.9.5-amazoncorretto-11`, `3.9.5-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11/Dockerfile) +- [`3.9.5-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.5-amazoncorretto-11-debian`, `3.9.5-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11-debian/Dockerfile) +- [`3.9.5-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17/Dockerfile) +- [`3.9.5-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.5-amazoncorretto-17-debian`, `3.9.5-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17-debian/Dockerfile) +- [`3.9.5-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21/Dockerfile) +- [`3.9.5-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.5-amazoncorretto-21-debian`, `3.9.5-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21-debian/Dockerfile) +- [`3.9.5-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8/Dockerfile) +- [`3.9.5-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.5-amazoncorretto-8-debian`, `3.9.5-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8-debian/Dockerfile) +- [`3.9.5-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-11/Dockerfile) +- [`3.9.5-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-17/Dockerfile) +- [`3.9.5-sapmachine-21`, `3.9.5-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-21/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index a9a07f255e20..3ec304746869 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.0`, `5.9`, `5.9.0-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/22.04/Dockerfile) -- [`5.9.0-slim`, `5.9-slim`, `5.9.0-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/22.04/slim/Dockerfile) -- [`5.9.0-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/20.04/slim/Dockerfile) -- [`5.9.0-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/ubuntu/20.04/Dockerfile) -- [`5.9.0-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/amazonlinux/2/Dockerfile) -- [`5.9.0-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/amazonlinux/2/slim/Dockerfile) -- [`5.9.0-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/centos/7/Dockerfile) -- [`5.9.0-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/centos/7/slim/Dockerfile) -- [`5.9.0-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/rhel-ubi/9/Dockerfile) -- [`5.9.0-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/8e0404c7cd98072c431200fd405a214a96b0890c/5.9/rhel-ubi/9/slim/Dockerfile) +- [`5.9.1`, `5.9`, `5.9.1-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/22.04/Dockerfile) +- [`5.9.1-slim`, `5.9-slim`, `5.9.1-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/22.04/slim/Dockerfile) +- [`5.9.1-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/20.04/slim/Dockerfile) +- [`5.9.1-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/20.04/Dockerfile) +- [`5.9.1-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/amazonlinux/2/Dockerfile) +- [`5.9.1-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/amazonlinux/2/slim/Dockerfile) +- [`5.9.1-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/centos/7/Dockerfile) +- [`5.9.1-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/centos/7/slim/Dockerfile) +- [`5.9.1-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/Dockerfile) +- [`5.9.1-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/slim/Dockerfile) - [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) - [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) - [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) From 07e2f1775faa0c85c62c1dbd9035df53a2040d01 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Oct 2023 14:20:53 -0700 Subject: [PATCH 0669/2686] Run update.sh --- rocket.chat/README.md | 2 +- sapmachine/README.md | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 2b72a9c2b64b..970899be580a 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.1`, `6.4`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/b73be519a9f4b22e58905885790c17dbcca19bc7/6.4/Dockerfile) +- [`6.4.2`, `6.4`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/410f2d1e90a88b01a4ebd7939dd32c943a10965a/6.4/Dockerfile) - [`6.3.10`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/b73be519a9f4b22e58905885790c17dbcca19bc7/6.3/Dockerfile) - [`6.2.12`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.2/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 7f7e350495bc..9ca2e82dcdce 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.20.1-jre-headless-ubuntu`, `11.0.20.1-jre-headless-ubuntu-jammy`, `11.0.20.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.20.1-jre-ubuntu`, `11.0.20.1-jre-ubuntu-jammy`, `11.0.20.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.20.1-jdk-headless-ubuntu`, `11.0.20.1-jdk-headless-ubuntu-jammy`, `11.0.20.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.20.1-jdk-ubuntu`, `11.0.20.1-jdk-ubuntu-jammy`, `11.0.20.1-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.20.1`, `11.0.20.1-ubuntu-jammy`, `11.0.20.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c1723a87e4227704b879bc0153969ee497b188c2/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.8.1-jre-headless-ubuntu`, `17.0.8.1-jre-headless-ubuntu-jammy`, `17.0.8.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.8.1-jre-ubuntu`, `17.0.8.1-jre-ubuntu-jammy`, `17.0.8.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.8.1-jdk-headless-ubuntu`, `17.0.8.1-jdk-headless-ubuntu-jammy`, `17.0.8.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.8.1-jdk-ubuntu`, `17.0.8.1-jdk-ubuntu-jammy`, `17.0.8.1-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.8.1`, `17.0.8.1-ubuntu-jammy`, `17.0.8.1-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b2502288737bc565d44b9399c552bfebae112174/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) -- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a9fe2dafdcc3e4f728431d147ce3a3950153b4a9/dockerfiles/official/21/ubuntu/jdk/Dockerfile) +- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.21-jre-headless-ubuntu`, `11.0.21-jre-headless-ubuntu-jammy`, `11.0.21-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.21-jre-ubuntu`, `11.0.21-jre-ubuntu-jammy`, `11.0.21-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jre/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.21-jdk-headless-ubuntu`, `11.0.21-jdk-headless-ubuntu-jammy`, `11.0.21-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.21-jdk-ubuntu`, `11.0.21-jdk-ubuntu-jammy`, `11.0.21-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.21`, `11.0.21-ubuntu-jammy`, `11.0.21-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.9-jre-headless-ubuntu`, `17.0.9-jre-headless-ubuntu-jammy`, `17.0.9-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.9-jre-ubuntu`, `17.0.9-jre-ubuntu-jammy`, `17.0.9-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jre/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.9-jdk-headless-ubuntu`, `17.0.9-jdk-headless-ubuntu-jammy`, `17.0.9-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.9-jdk-ubuntu`, `17.0.9-jdk-ubuntu-jammy`, `17.0.9-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.9`, `17.0.9-ubuntu-jammy`, `17.0.9-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.1-jre-headless-ubuntu`, `21.0.1-jre-headless-ubuntu-jammy`, `21.0.1-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) +- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.1-jre-ubuntu`, `21.0.1-jre-ubuntu-jammy`, `21.0.1-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jre/Dockerfile) +- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.1-jdk-headless-ubuntu`, `21.0.1-jdk-headless-ubuntu-jammy`, `21.0.1-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) +- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.1-jdk-ubuntu`, `21.0.1-jdk-ubuntu-jammy`, `21.0.1-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.1`, `21.0.1-ubuntu-jammy`, `21.0.1-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From 676ea7d4f85dcd8a69772a9a6abb85ec7b341e0a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Oct 2023 16:09:39 -0700 Subject: [PATCH 0670/2686] Run update.sh --- node/README.md | 22 ++++++++++++++-------- unit/README.md | 24 ++++++++++++------------ 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/node/README.md b/node/README.md index e0f9ba9b12f8..59756836ce05 100644 --- a/node/README.md +++ b/node/README.md @@ -24,14 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.1-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.1-alpine`, `20.8.1-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.8-buster`, `20.8.1-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster/Dockerfile) -- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster-slim/Dockerfile) +- [`21-alpine3.17`, `21.0-alpine3.17`, `21.0.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/c3b405debb5e5153fc2ace45097e2d7a4e0fa20f/21/alpine3.17/Dockerfile) +- [`21-alpine`, `21-alpine3.18`, `21.0-alpine`, `21.0-alpine3.18`, `21.0.0-alpine`, `21.0.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/c3b405debb5e5153fc2ace45097e2d7a4e0fa20f/21/alpine3.18/Dockerfile) +- [`21`, `21-bookworm`, `21.0`, `21.0-bookworm`, `21.0.0`, `21.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.0-bookworm-slim`, `21.0-slim`, `21.0.0-bookworm-slim`, `21.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.0-bullseye`, `21.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.0-bullseye-slim`, `21.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bullseye-slim/Dockerfile) +- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.1-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.1-alpine`, `20.8.1-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.8-buster`, `20.8.1-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster/Dockerfile) +- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) diff --git a/unit/README.md b/unit/README.md index eafe90fb905e..824ba318d5b2 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31.0-go1.21`, `go1.21`, `go1`, `go`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.go1.21) -- [`1.31.0-go1.20`, `go1.20`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.go1.20) -- [`1.31.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.jsc11) -- [`1.31.0-node20`, `node20`, `node`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.node20) -- [`1.31.0-node18`, `node18`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.node18) -- [`1.31.0-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.perl5.38) -- [`1.31.0-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.perl5.36) -- [`1.31.0-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.php8.2) -- [`1.31.0-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.python3.11) -- [`1.31.0-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.ruby3.2) -- [`1.31.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.wasm) -- [`1.31.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/8c4425ccb9a413e8d0506e0254f0e84bd89a32a6/pkg/docker/Dockerfile.minimal) +- [`1.31.1-go1.21`, `go1.21`, `go1`, `go`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.go1.21) +- [`1.31.1-go1.20`, `go1.20`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.go1.20) +- [`1.31.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.jsc11) +- [`1.31.1-node20`, `node20`, `node`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.node20) +- [`1.31.1-node18`, `node18`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.node18) +- [`1.31.1-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.perl5.38) +- [`1.31.1-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.perl5.36) +- [`1.31.1-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.php8.2) +- [`1.31.1-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.python3.11) +- [`1.31.1-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.ruby3.2) +- [`1.31.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.wasm) +- [`1.31.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From 5cabf3660a4db3759c14e1b9cf3e8d83087521da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Oct 2023 11:17:53 -0700 Subject: [PATCH 0671/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 99ff22c125e7..bd415268a37d 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/27c114bdedfaf42464804fe198b8cf4dcafd0bd8/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7-slim-fips/Dockerfile) # Quick reference (cont.) From 23df9cf6ddd609cda28a8c1b7820ce0513e09271 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Oct 2023 17:09:40 -0700 Subject: [PATCH 0672/2686] Run update.sh --- ghost/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 8 ++++---- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a55fbf249ef1..14b2317cc644 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.69.3`, `5.69`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5c8b1866d2ce50588c1942155174cc7e9ebee751/5/debian/Dockerfile) -- [`5.69.3-alpine`, `5.69-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5c8b1866d2ce50588c1942155174cc7e9ebee751/5/alpine/Dockerfile) +- [`5.70.1`, `5.70`, `5`, `latest`](https://github.com/docker-library/ghost/blob/23c550666021939b447e26d8b00f021e2fb3f00d/5/debian/Dockerfile) +- [`5.70.1-alpine`, `5.70-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/23c550666021939b447e26d8b00f021e2fb3f00d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index e2c9e982031f..780525167f93 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-19-jdk-oraclelinux8`, `22-ea-19-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-19-jdk-oracle`, `22-ea-19-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-19-jdk-oraclelinux7`, `22-ea-19-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-19-jdk-bookworm`, `22-ea-19-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/bookworm/Dockerfile) -- [`22-ea-19-jdk-slim-bookworm`, `22-ea-19-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-19-jdk-slim`, `22-ea-19-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-19-jdk-bullseye`, `22-ea-19-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/bullseye/Dockerfile) -- [`22-ea-19-jdk-slim-bullseye`, `22-ea-19-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-19-jdk-windowsservercore-ltsc2022`, `22-ea-19-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-19-jdk-windowsservercore-1809`, `22-ea-19-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-19-jdk-nanoserver-1809`, `22-ea-19-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-20-jdk-oraclelinux8`, `22-ea-20-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-20-jdk-oracle`, `22-ea-20-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-20-jdk-oraclelinux7`, `22-ea-20-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-20-jdk-bookworm`, `22-ea-20-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/bookworm/Dockerfile) +- [`22-ea-20-jdk-slim-bookworm`, `22-ea-20-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-20-jdk-slim`, `22-ea-20-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-20-jdk-bullseye`, `22-ea-20-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/bullseye/Dockerfile) +- [`22-ea-20-jdk-slim-bullseye`, `22-ea-20-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-20-jdk-windowsservercore-ltsc2022`, `22-ea-20-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-20-jdk-windowsservercore-1809`, `22-ea-20-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-20-jdk-nanoserver-1809`, `22-ea-20-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-19-jdk`, `22-ea-19`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-19-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-19-jdk-windowsservercore`, `22-ea-19-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-19-jdk-nanoserver`, `22-ea-19-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0ba8bdb0f3750ed27e73d66e2328c2216dcf1539/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-20-jdk`, `22-ea-20`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-20-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-20-jdk-windowsservercore`, `22-ea-20-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-20-jdk-nanoserver`, `22-ea-20-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e9edef8dd516..f5735e8e9104 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-beta.6`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/656ee2332a740807b5024a8190967eb12aeb5b09/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-beta.6-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-beta.6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/656ee2332a740807b5024a8190967eb12aeb5b09/3.13-rc/alpine/Dockerfile) -- [`3.13.0-beta.6-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-rc.1`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/991fa32b267f44c9069ec5414fee6f24e1729177/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.1-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-rc.1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/991fa32b267f44c9069ec5414fee6f24e1729177/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.1-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.7`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/ubuntu/Dockerfile) - [`3.12.7-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/alpine/Dockerfile) From dea59d0c01dd1b55a16c9f7318b8a3f2f8a4a4b6 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Sat, 21 Oct 2023 11:11:54 +1100 Subject: [PATCH 0673/2686] Update mariadb/content.md Co-authored-by: yosifkit --- mariadb/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mariadb/content.md b/mariadb/content.md index d17e360c636e..5cbc440ebe99 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -192,7 +192,7 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%IMAGE%%` images to familiarize themselves with the options available, including: -- Use a named container using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. - Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: From c0204f1115c19f222d3c3b6339b35dc4362e44c2 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Sat, 21 Oct 2023 11:14:52 +1100 Subject: [PATCH 0674/2686] mariadb: Update content.md :Z to example --- mariadb/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mariadb/content.md b/mariadb/content.md index 5cbc440ebe99..bbbe7c8b8753 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -201,7 +201,7 @@ The Docker documentation is a good starting point for understanding the differen 2. Start your `%%IMAGE%%` container like this: ```console - $ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/mysql -e MARIADB_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:latest + $ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/mysql:Z -e MARIADB_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:latest ``` The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB by default will write its data files. From 04a42bd75fd7599d37bbabdeb1682984036a879c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Oct 2023 13:09:36 -0700 Subject: [PATCH 0675/2686] Run update.sh --- photon/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photon/README.md b/photon/README.md index daf5d907f825..456074c04a90 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231014`, `latest`](https://github.com/vmware/photon-docker-image/blob/055095e302b24cc6a0e9b1ea045f1f6ef361ad1d/docker/Dockerfile) -- [`4.0`, `4.0-20231014`](https://github.com/vmware/photon-docker-image/blob/d92bb235f873fe19385c222359b32671809e2011/docker/Dockerfile) +- [`5.0`, `5.0-20231021`, `latest`](https://github.com/vmware/photon-docker-image/blob/d42043c311abfcb8f72897cf1502879f6e123d74/docker/Dockerfile) +- [`4.0`, `4.0-20231021`](https://github.com/vmware/photon-docker-image/blob/aa758d33c2b1f954c0966f081212af012794c074/docker/Dockerfile) - [`3.0`, `3.0-20231014`](https://github.com/vmware/photon-docker-image/blob/cd1c88a98f796df35ead98a1de708cbc083fb3d4/docker/Dockerfile) # Quick reference (cont.) From 17146832f43140035bc453513115570b78c19fe4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Oct 2023 14:09:25 -0700 Subject: [PATCH 0676/2686] Run update.sh --- mariadb/README.md | 356 +++++++++++++++------------------------------- 1 file changed, 116 insertions(+), 240 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 1f0fca7ea81f..ac644d7b90b7 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -17,10 +17,10 @@ WARNING: # Quick reference - **Maintained by**: - [MariaDB developer community](https://github.com/MariaDB/mariadb-docker) + [MariaDB Foundation](https://mariadb.org), [MariaDB plc](https://mariadb.com), with contributions from our [community](https://github.com/MariaDB/mariadb-docker) - **Where to get help**: - [Database Adminstrators (Stack Exchange)](https://dba.stackexchange.com/questions/tagged/docker+mariadb), [MariaDB Knowledge Base](https://mariadb.com/kb/en/docker-and-mariadb/) ([Ask a Question here](https://mariadb.com/kb/en/docker-and-mariadb/ask) available). + [Database Adminstrators (Stack Exchange)](https://dba.stackexchange.com/questions/tagged/docker+mariadb), [MariaDB Knowledge Base](https://mariadb.com/kb/en/docker-and-mariadb/) ([Ask a Question here](https://mariadb.com/kb/en/docker-and-mariadb/ask)). Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base](https://mariadb.com/kb/en/getting-help-with-mariadb/). @@ -60,52 +60,35 @@ MariaDB Server is one of the most popular database servers in the world. It's ma The intent is also to maintain high compatibility with MySQL, ensuring a library binary equivalency and exact matching with MySQL APIs and commands. MariaDB developers continue to develop new features and improve performance to better serve its users. -![logo](https://raw.githubusercontent.com/docker-library/docs/fe985dcb24154456254e252d1fa4a2b6b656ee80/mariadb/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/554e4b9aaac2e266b9ab31e9a312cb6f96d69286/mariadb/logo.png) # How to use this image -## Start a `mariadb` server instance +The mariadb has a number of tags, and of note is `latest`, as the latest stable version, and `lts`, as the last long term support release. -Starting a MariaDB instance with the latest version is simple: +## Running the container -```console -$ docker run --detach --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest -``` - -or: - -```console -$ docker network create some-network -$ docker run --detach --network some-network --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest -``` - -... where `some-network` is a newly created network (other than `bridge` as the default network), `some-mariadb` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. +### Starting using a minimal configuration -## Connect to MariaDB from the MySQL/MariaDB command line client - -The following command starts another `mariadb` container instance and runs the `mariadb` command line client against your original `mariadb` container, allowing you to execute SQL statements against your database instance: +The environment variables required to use this image involves the setting of the root user password: ```console -$ docker run -it --network some-network --rm mariadb mariadb -hsome-mariadb -uexample-user -p +$ docker run --detach --name some-mariadb --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest ``` -... where `some-mariadb` is the name of your original `mariadb` container (connected to the `some-network` Docker network). - -This image can also be used as a client for non-Docker or remote instances: +or: ```console -$ docker run -it --rm mariadb mariadb -h -u example-user -p +$ docker run --detach --name some-mariadb --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 mariadb:latest ``` -That will give you a standard MariaDB prompt. You can test it with: +or: ```console -MariaDB [(none)]> SELECT VERSION(); +$ docker run --detach --name some-mariadb --env MARIADB_RANDOM_ROOT_PASSWORD=1 mariadb:latest ``` -... which should give you the version. You can then use `exit` to leave the MariaDB command line client and the client container. - -More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base](https://mariadb.com/kb/en/mysql-command-line-client/) +... where the container logs will contain the generated root password. ## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) @@ -134,118 +117,153 @@ services: Run `docker stack deploy -c stack.yml mariadb` (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). -## Container shell access and viewing MariaDB logs +### Start a `mariadb` server instance with user, password and database -The `docker exec` command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your `mariadb` container: +Starting a MariaDB instance with a user, password, and a database: ```console -$ docker exec -it some-mariadb bash +$ docker run --detach --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest ``` -The log is available through Docker's container log: +### Start a `mariadb` server instance in a network + +As applications talk to MariaDB, MariaDB needs to start in the same network as the application: ```console -$ docker logs some-mariadb +$ docker network create some-network +$ docker run --detach --network some-network --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest +$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-mariadb --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application ``` -## Using a custom MariaDB configuration file +... where `some-network` is a newly created network (other than `bridge` as the default network), `some-mariadb` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. `some-application` and then environment variable `APP_DB_HOST`, `APP_DB_USER` and `APP_DB_PASSWD` are the application's configuration for its database connection. -Custom configuration files should end in `.cnf` and be mounted at the directory `/etc/mysql/conf.d`. These files should contain the minimal changes from the MariaDB workload required for your application/environment. A MariaDB configuration file will have a `[mariadb]` group followed by `variable` = `value` settings per [Setting Server System Variables](https://mariadb.com/kb/en/server-system-variables/#setting-server-system-variables) or [option-prefix-variable](https://mariadb.com/kb/en/configuring-mariadb-with-option-files/#option-prefixes). +## Connect to MariaDB from the MariaDB command line client -The `mariadb` image configuration contains the Ubuntu MariaDB variables with two custom changes for the container: - - [host-cache-size=0](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) - [skip-name-resolve](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) - -These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or arguement. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `mariadb`. - -To view the resulting configuration of your `mariadb` container: +The following command starts another `mariadb` container instance and runs the `mariadb` command line client against your original `mariadb` container, allowing you to execute SQL statements against your database instance: ```console -$ docker run --name some-mariadb -v /my/custom:/etc/mysql/conf.d --rm mariadb:latest my_print_defaults --mysqld +$ docker run -it --network some-network --rm mariadb mariadb -hsome-mariadb -uexample-user -p ``` -### Configuration without a `cnf` file +... where `some-mariadb` is the name of your original `mariadb` container (connected to the `some-network` Docker network). -Many configuration options can be passed as flags to `mariadbd`. This will give you the flexibility to customize the container without needing a `cnf` file. For example, if you want to run on port 3808 just run the following: +This image can also be used as a client for non-Docker or remote instances: ```console -$ docker run --name some-mariadb -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest --port 3808 +$ docker run -it --rm mariadb mariadb --host --user example-user --password --database test ``` -If you would like to see a complete list of available options, just run: +That will give you a standard MariaDB prompt. You can test it with: ```console -$ docker run -it --rm mariadb:latest --verbose --help +MariaDB [(none)]> \s +-------------- +client/mariadb Ver 15.1 Distrib 10.6.16-MariaDB, for Linux (x86_64) using EditLine wrapper + +Connection id: 20 +Current database: test +Current user: example-user@bark +SSL: Not in use +Current pager: stdout +Using outfile: '' +Using delimiter: ; +Server: MariaDB +Server version: 10.6.16-MariaDB Source distribution +Protocol version: 10 +Connection: 192.168.178.73 via TCP/IP +Server characterset: latin1 +Db characterset: latin1 +Client characterset: utf8mb3 +Conn. characterset: utf8mb3 +TCP port: 3306 +Uptime: 6 min 4 sec + +Threads: 1 Questions: 32 Slow queries: 0 Opens: 20 Open tables: 13 Queries per second avg: 0.087 +-------------- ``` -## Environment Variables +... which will give you the version and connection information. You can then use `exit` to leave the MariaDB command line client and the client container. -When you start the `mariadb` image, you can adjust the initialization of the MariaDB instance by passing one or more environment variables on the `docker run` command line. Do note that none of the variables below will have any effect if you start the container with a data directory that already contains a database: any pre-existing database will always be left untouched on container startup. +More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base : MariaDB Command Line Client](https://mariadb.com/kb/en/mariadb-command-line-client/). -From tag 10.2.38, 10.3.29, 10.4.19, 10.5.10 onwards, and all 10.6 and later tags, the `MARIADB_*` equivalent variables are provided. `MARIADB_*` variants will always be used in preference to `MYSQL_*` variants. +## Container shell access -One of `MARIADB_RANDOM_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_PASSWORD` or `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` (or equivalents, including `*_FILE`), is required. The other environment variables are optional. +The `docker exec` command allows you to run commands inside the running container. The following command line will give you a bash shell inside your `mariadb` container: -### `MARIADB_ROOT_PASSWORD` / `MYSQL_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH` +```console +$ docker exec -it some-mariadb bash +``` -This specifies the password that will be set for the MariaDB `root` superuser account. In the above example, it was set to `my-secret-pw`. +## MariaDB-Backup -In order to have no plaintext secret in the deployment, `MARIADB_ROOT_PASSWORD_HASH` can be used as it is just the hash of the password. The hash can be generated with `SELECT PASSWORD('thepassword')` as a SQL query. +As MariaDB-Backup is highly coupled with the server version, it can be useful to use the `mariadb-backup` in the mariadb container of an explicit version: -### `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` / `MYSQL_ALLOW_EMPTY_PASSWORD` +```console +$ docker run --volume /backup-volume:/backup --rm mariadb:10.6.15 mariadb-backup --help +``` -Set to a non-empty value, like `yes`, to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your MariaDB instance completely unprotected, allowing anyone to gain complete superuser access. +## Container viewing MariaDB logs -### `MARIADB_RANDOM_ROOT_PASSWORD` / `MYSQL_RANDOM_ROOT_PASSWORD` +The log is available through Docker's container log: -Set to a non-empty value, like `yes`, to generate a random initial password for the root user. The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). +```console +$ docker logs some-mariadb +``` -### `MARIADB_ROOT_HOST` / `MYSQL_ROOT_HOST` +## Using a custom MariaDB configuration file -This is the hostname part of the root user created. By default this is `%`, however it can be set to any default [MariaDB allowed hostname component](https://mariadb.com/kb/en/create-user/#host-name-component). Setting this to `localhost` will prevent any root user being accessible except via the unix socket. +Custom configuration files should end in `.cnf` and be mounted read only at the directory `/etc/mysql/conf.d`. These files should contain the minimal changes from the MariaDB workload required for your application/environment. A MariaDB configuration file will have a `[mariadb]` group followed by `variable` = `value` settings per [Setting Server System Variables](https://mariadb.com/kb/en/server-system-variables/#setting-server-system-variables) or [option-prefix-variable](https://mariadb.com/kb/en/configuring-mariadb-with-option-files/#option-prefixes). -### `MARIADB_MYSQL_LOCALHOST_USER` / `MARIADB_MYSQL_LOCALHOST_GRANTS` +The `mariadb` image configuration contains the Ubuntu MariaDB variables with two custom changes for the container: -Set `MARIADB_MYSQL_LOCALHOST_USER` to a non-empty value to create the `mysql@locahost` database user. This user is especially useful for a variety of health checks and backup scripts. + [host-cache-size=0](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) + [skip-name-resolve](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) -The `mysql@localhost` user gets [USAGE](https://mariadb.com/kb/en/grant/#the-usage-privilege) privileges by default. If more access is required, additional [global privileges](https://mariadb.com/kb/en/grant/#global-privileges) in the form of a comma separated list can be provided. If you are sharing a volume containing MariaDB's unix socket (`/var/run/mysqld` by default), privileges beyond `USAGE` can result in confidentiality, integrity and availability risks, so use a minimal set. See the example below on using Mariabackup. The `healthcheck.sh` script also documents the required privileges for each health check test. +These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or argument. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `mariadb`. -### `MARIADB_DATABASE` / `MYSQL_DATABASE` +To view the resulting configuration of your `mariadb` container: -This variable allows you to specify the name of a database to be created on image startup. +```console +$ docker run --name some-mariadb -v /my/custom:/etc/mysql/conf.d --rm mariadb:latest my_print_defaults --mysqld +``` -### `MARIADB_USER` / `MYSQL_USER`, `MARIADB_PASSWORD` / `MYSQL_PASSWORD`, `MARIADB_PASSWORD_HASH` +### Configuration without a `cnf` file -These are used in conjunction to create a new user and to set that user's password. Both user and password variables are required for a user to be created. This user will be granted all access ([corresponding to `GRANT ALL`](https://mariadb.com/kb/en/grant/#the-all-privileges-privilege)) to the `MARIADB_DATABASE` database. +Many configuration options can be passed as flags to `mariadbd`. This will give you the flexibility to customize the container without needing a `cnf` file. For example, if you want to run on port 3808 just run the following: -See `MARIADB_ROOT_PASSWORD_HASH` above for how to get a password hash for `MARIADB_PASSWORD_HASH`. +```console +$ docker run --name some-mariadb -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest --port 3808 +``` -Do note that there is no need to use this mechanism to create the root superuser, that user gets created by default with the password specified by the `MARIADB_ROOT_PASSWORD*` variable. +If you would like to see a complete list of available options, just run: -### `MARIADB_INITDB_SKIP_TZINFO` / `MYSQL_INITDB_SKIP_TZINFO` +```console +$ docker run -it --rm mariadb:latest --verbose --help +``` -By default, the entrypoint script automatically loads the timezone data needed for the `CONVERT_TZ()` function. If it is not needed, any non-empty value disables timezone loading. +## Environment Variables -### `MARIADB_AUTO_UPGRADE` / `MARIADB_DISABLE_UPGRADE_BACKUP` +When you start the `mariadb` image, you can adjust the initialization of the MariaDB instance by passing one or more environment variables on the `docker run` command line. Do note that all of the variables, except `MARIADB_AUTO_UPGRADE`, will have no effect if you start the container with a data directory that already contains a database. I.e. any pre-existing database will always be left untouched on container startup. -Set `MARIADB_AUTO_UPGRADE` to a non-empty value to have the entrypoint check whether `mysql_upgrade`/`mariadb-upgrade` needs to run, and if so, run the upgrade before starting the MariaDB server. +One of `MARIADB_RANDOM_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_PASSWORD` or `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` (or equivalents, including `*_FILE`), is required. The other environment variables are optional. + +There is a large list of environment variables and the complete list is documented on [MariaDB's Knowledge Base : MariaDB Server Docker Official Image Environment Variables](https://mariadb.com/kb/en/mariadb-server-docker-official-image-environment-variables/). -Before the upgrade, a backup of the system database is created in the top of the datadir with the name `system_mysql_backup_*.sql.zst`. This backup process can be disabled with by setting `MARIADB_DISABLE_UPGRADE_BACKUP` to a non-empty value. +### `MARIADB_AUTO_UPGRADE` -## Docker Secrets +When this environment variable is set, this will run the [mariadb-upgrade](https://mariadb.com/kb/en/mariadb-upgrade/), if needed, so any changes in the MariaDB system tables required to expose new features will be made. This may impeed some [downgrade options](https://mariadb.com/kb/en/downgrading-between-major-versions-of-mariadb/). Unless the environment variable `MARIADB_DISABLE_UPGRADE_BACKUP` is set, there will be a backup of the system tables created as `system_mysql_backup_*.sql.zst` in the top level of the data directory to assist in the downgrade if needed. + +## Secrets As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: ```console -$ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mysql-root -d mariadb:latest +$ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mariadb-root -d mariadb:latest ``` -Currently, this is only supported for `MARIADB_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_HOST`, `MARIADB_DATABASE`, `MARIADB_USER`, `MARIADB_PASSWORD` and `MARIADB_PASSWORD_HASH` (and `MYSQL_*` equivalents of these). - -# Initializing a fresh instance +# Initializing the database contents -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `mariadb` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` / `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `mariadb` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. # Caveats @@ -253,7 +271,7 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `mariadb` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. - Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: @@ -262,10 +280,10 @@ The Docker documentation is a good starting point for understanding the differen 2. Start your `mariadb` container like this: ```console - $ docker run --name some-mariadb -v /my/own/datadir:/var/lib/mysql -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest + $ docker run --name some-mariadb -v /my/own/datadir:/var/lib/mysql:Z -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest ``` -The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB by default will write its data files. +The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB by default will write its data files. ## No connections until MariaDB init completes @@ -273,174 +291,32 @@ If there is no database initialized when the container starts, then a default da ## Health/Liveness/Readiness Checking -See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `/usr/local/bin/healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the script's sources to learn about how to use it and which exact tests are provided. +See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the [MariaDB Knowledge Base : Using Healthcheck.sh](https://mariadb.com/kb/en/using-healthcheck-sh-script/) to learn about how to use it and which exact tests are provided. ## Usage against an existing database If you start your `mariadb` container instance with a data directory that already contains a database (specifically, a `mysql` subdirectory), no environment variables that control initialization will be needed or examined, and no pre-existing databases will be changed. The only exception is the non-default `MARIADB_AUTO_UPGRADE` environment variable, that might cause `mysql_upgrade`/`mariadb-upgrade` to run, which might change the system tables. -## Creating database dumps +## Backups and Restores -Most of the normal tools will work, although their usage might be a little convoluted in some cases to ensure they have access to the `mysqld` server. A simple way to ensure this is to use `docker exec` and run the tool from the same container, similar to the following: +Backing up and restoring databases is important in containers too. The documentation on how to do this can be found on the [MariaDB Knowledge Base : Container Backup and Restoration](https://mariadb.com/kb/en/backups-and-restoration/). -```console -$ docker exec some-mariadb sh -c 'exec mariadb-dump --all-databases -uroot -p"$MARIADB_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql -``` - -## Restoring data from dump files - -For restoring data. You can use the `docker exec` command with the `-i` flag, similar to the following: - -```console -$ docker exec -i some-mariadb sh -c 'exec mariadb -uroot -p"$MARIADB_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sql -``` - -If one or more databases, but neither `--all-databases` nor the `mysql` database, were dumped, these databases can be restored by placing the resulting sql file in the `/docker-entrypoint-initdb.d` directory. - -## Creating backups with Mariabackup - -To perform a backup using [Mariabackup](https://mariadb.com/kb/en/mariabackup/), a second container is started that shares the original container's data directory. An additional volume for the backup needs to be included in the second backup instance. Authentication against the MariaDB database instance is required to successfully complete the backup. In the example below a `mysql@localhost` user is used with the MariaDB server's unix socket shared with the backup container. - -```console -$ docker volume create some-mariadb-socket -$ docker run --name some-mariadb -v /my/own/datadir:/var/lib/mysql -v some-mariadb-socket:/var/run/mysqld -e MARIADB_MYSQL_LOCALHOST_USER=1 -e MARIADB_MYSQL_LOCALHOST_GRANTS="RELOAD, PROCESS, LOCK TABLES, BINLOG MONITOR" -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest -``` - -Note: Privileges listed here are for 10.5+. For an exact list, see [the Knowledge Base documentation for Mariabackup: Authentication and Privileges](https://mariadb.com/kb/en/mariabackup-overview/#authentication-and-privileges). - -Mariabackup will run as the `mysql` user in the container, so the permissions on `/backup` will need to ensure that it can be written to by this user: - -```console -$ docker volume create some-mariadb-backup -$ docker run --rm some-mariadb-backup -v some-mariadb-backup:/backup mariadb:latest chown mysql: /backup -``` - -To perform the backup: - -```console -$ docker run --user mysql -v some-mariadb-socket:/var/run/mysqld -v some-mariadb-backup:/backup -v /my/own/datadir:/var/lib/mysql --rm mariadb:latest mariabackup --backup --target-dir=/backup -``` - -## Restore backups with Mariabackup - -These steps restore the backup made with Mariabackup. - -At some point before doing the restore, the backup needs to be prepared. Perform the prepare like this: - -```console -$ docker run --user mysql --rm -v some-mariadb-backup:/backup mariadb:latest mariabackup --prepare --target-dir=/backup -``` - -Now that the image is prepared, start the container with both the data and the backup volumes and restore the backup: - -```console -$ docker run --user mysql --rm -v /my/new/datadir:/var/lib/mysql -v some-mariadb-backup:/backup mariadb:latest mariabackup --copy-back --target-dir=/backup -``` - -With `/my/new/datadir` containing the restored backup, start normally as this is an initialized data directory: - -```console -$ docker run --name some-mariadb -v /my/new/datadir:/var/lib/mysql -d mariadb:latest -``` - -For further information on Mariabackup, see the [Mariabackup Knowledge Base](https://mariadb.com/kb/en/mariabackup-overview/). - -## How to reset root and user passwords - -If you have an existing data directory and wish to reset the root and user passwords, and to create a database on which the user can fully modify, perform the following steps. +## Frequently Asked Questions / How to reset root and user passwords -First create a `passwordreset.sql` file: - -```text -CREATE USER IF NOT EXISTS root@localhost IDENTIFIED BY 'thisismyrootpassword'; -SET PASSWORD FOR root@localhost = PASSWORD('thisismyrootpassword'); -GRANT ALL ON *.* TO root@localhost WITH GRANT OPTION; -CREATE USER IF NOT EXISTS root@'%' IDENTIFIED BY 'thisismyrootpassword'; -SET PASSWORD FOR root@'%' = PASSWORD('thisismyrootpassword'); -GRANT ALL ON *.* TO root@'%' WITH GRANT OPTION; -CREATE USER IF NOT EXISTS myuser@'%' IDENTIFIED BY 'thisismyuserpassword'; -SET PASSWORD FOR myuser@'%' = PASSWORD('thisismyuserpassword'); -CREATE DATABASE IF NOT EXISTS databasename; -GRANT ALL ON databasename.* TO myuser@'%'; -``` - -Adjust `myuser`, `databasename` and passwords as needed. - -Then: - -```console -$ docker run --rm -v /my/own/datadir:/var/lib/mysql -v /my/own/passwordreset.sql:/passwordreset.sql:z mariadb:latest --init-file=/passwordreset.sql -``` - -On restarting the MariaDB container on this `/my/own/datadir`, the `root` and `myuser` passwords will be reset. +This is documented on [MariaDB Knowledge Base : Frequenty Asked Questions of Docker Official Image](https://mariadb.com/kb/en/frequenty-asked-questions-of-docker-official-image/#how-to-reset-passwords). ## How to install MariaDB plugins -MariaDB has many plugins, most are not enabled by default, some are in the mariadb container, others need to be installed from additional packages. - -The following methods summarize the [MariaDB Blog article - Installing plugins in the MariaDB Docker Library Container](https://mariadb.org/installing-plugins-in-the-mariadb-docker-library-container/) on this topic. - -### Which plugins does the container contain? - -To see which plugins are available in the mariadb: - -```console -$ docker run --rm mariadb:latest ls -C /usr/lib/mysql/plugin -``` - -### Enabling a plugin using flags - -Using the `--plugin-load-add` flag with the plugin name (can be repeated), the plugins will be loaded and ready when the container is started: - -For example enable the `simple\_password\_check` plugin: - -```console -$ docker run --name some-mariadb -e MARIADB_ROOT_PASSWORD=my-secret-pw --network=host -d mariadb:latest --plugin-load-add=simple_password_check -``` +This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Official Image](https://mariadb.com/kb/en/adding-plugins-to-the-mariadb-docker-official-image/). -### Enabling a plugin in the configuration files +# Related Images -`plugin-load-add` can be used as a configuration option to load plugins. The example below load the [FederatedX Storage Engine](https://mariadb.com/kb/en/federatedx-storage-engine/). +- [MariaDB MaxScale](https://hub.docker.com/r/mariadb/maxscale/tags) +- [MariaDB ColumnStore](https://hub.docker.com/r/mariadb/columnstore/tags) -```console -$ printf "[mariadb]\nplugin-load-add=ha_federatedx\n" > /my/custom/federatedx.conf -$ docker run --name some-mariadb -v /my/custom:/etc/mysql/conf.d -e MARIADB_ROOT_PASSWORD=my-secret-pw -d mariadb:latest -``` - -### Install a plugin using SQL in /docker-entrypoint-initdb.d - -[`INSTALL SONAME`](https://mariadb.com/kb/en/install-soname/) can be used to install a plugin as part of the database initialization. - -Create the SQL file used in initialization: - -```console -$ echo 'INSTALL SONAME "disks";' > my_initdb/disks.sql -``` - -In this case the `my\_initdb` is a `/docker-entrypoint-initdb.d` directory per "Initializing a fresh instance" section above. - -### Identifing additional plugins in additional packages - -A number of plugins are in separate packages to reduce their installation size. The package names of MariaDB created plugins can be determined using the following command: - -```console -$ docker run --rm mariadb:latest sh -c 'apt-get update -qq && apt-cache search mariadb-plugin' -``` - -### Creating a image with plugins from additional packages - -A new image needs to be created when using additional packages. The mariadb image can be used as a base however: - -In the following the [CONNECT Storage Engine](https://mariadb.com/kb/en/connect/) is installed: - -```dockerfile -FROM mariadb:latest -RUN apt-get update && \ - apt-get install mariadb-plugin-connect -y && \ - rm -rf /var/lib/apt/lists/* -``` +# Componse File Examples -Installing plugins from packages creates a configuration file in the directory `/etc/mysql/mariadb.conf.d/` that loads the plugin on startup. +Example compose files using this `mariadb` are located in %%GITHUB-REPO% in the `/examples` folder. # License From 3a3633dcd40ee405172357bd3d08e11b30300bdf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Oct 2023 15:09:29 -0700 Subject: [PATCH 0677/2686] Run update.sh --- tomee/README.md | 126 ++++++++++++++++++++++++------------------------ 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/tomee/README.md b/tomee/README.md index efacf5019e3f..fc5b45dfcc4d 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.0-jre17-Temurin-ubuntu-webprofile`, `9.1.0-Temurin-ubuntu-webprofile`, `9.1.0-jre17-ubuntu-webprofile`, `9.1.0-ubuntu-webprofile`, `9.1.0-jre17-Temurin-webprofile`, `9.1.0-Temurin-webprofile`, `9.1.0-jre17-webprofile`, `9.1.0-webprofile`, `9.1.0-jre17-Temurin-ubuntu`, `9.1.0-Temurin-ubuntu`, `9.1.0-jre17-ubuntu`, `9.1.0-ubuntu`, `9.1.0-jre17-Temurin`, `9.1.0-Temurin`, `9.1.0-jre17`, `9.1.0`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.0-jre17-Temurin-ubuntu-microprofile`, `9.1.0-Temurin-ubuntu-microprofile`, `9.1.0-jre17-ubuntu-microprofile`, `9.1.0-ubuntu-microprofile`, `9.1.0-jre17-Temurin-microprofile`, `9.1.0-Temurin-microprofile`, `9.1.0-jre17-microprofile`, `9.1.0-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.0-jre17-Temurin-ubuntu-plume`, `9.1.0-Temurin-ubuntu-plume`, `9.1.0-jre17-ubuntu-plume`, `9.1.0-ubuntu-plume`, `9.1.0-jre17-Temurin-plume`, `9.1.0-Temurin-plume`, `9.1.0-jre17-plume`, `9.1.0-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.0-jre17-Temurin-ubuntu-plus`, `9.1.0-Temurin-ubuntu-plus`, `9.1.0-jre17-ubuntu-plus`, `9.1.0-ubuntu-plus`, `9.1.0-jre17-Temurin-plus`, `9.1.0-Temurin-plus`, `9.1.0-jre17-plus`, `9.1.0-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.0-jre17-Temurin-alpine-webprofile`, `9.1.0-Temurin-alpine-webprofile`, `9.1.0-jre17-alpine-webprofile`, `9.1.0-alpine-webprofile`, `9.1.0-jre17-Temurin-alpine`, `9.1.0-Temurin-alpine`, `9.1.0-jre17-alpine`, `9.1.0-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.0-jre17-Temurin-alpine-microprofile`, `9.1.0-Temurin-alpine-microprofile`, `9.1.0-jre17-alpine-microprofile`, `9.1.0-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.0-jre17-Temurin-alpine-plume`, `9.1.0-Temurin-alpine-plume`, `9.1.0-jre17-alpine-plume`, `9.1.0-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.0-jre17-Temurin-alpine-plus`, `9.1.0-Temurin-alpine-plus`, `9.1.0-jre17-alpine-plus`, `9.1.0-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.0-jre11-Temurin-ubuntu-webprofile`, `9.1.0-jre11-ubuntu-webprofile`, `9.1.0-jre11-Temurin-webprofile`, `9.1.0-jre11-webprofile`, `9.1.0-jre11-Temurin-ubuntu`, `9.1.0-jre11-ubuntu`, `9.1.0-jre11-Temurin`, `9.1.0-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.0-jre11-Temurin-ubuntu-microprofile`, `9.1.0-jre11-ubuntu-microprofile`, `9.1.0-jre11-Temurin-microprofile`, `9.1.0-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.0-jre11-Temurin-ubuntu-plume`, `9.1.0-jre11-ubuntu-plume`, `9.1.0-jre11-Temurin-plume`, `9.1.0-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.0-jre11-Temurin-ubuntu-plus`, `9.1.0-jre11-ubuntu-plus`, `9.1.0-jre11-Temurin-plus`, `9.1.0-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.0-jre11-Temurin-alpine-webprofile`, `9.1.0-jre11-alpine-webprofile`, `9.1.0-jre11-Temurin-alpine`, `9.1.0-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.0-jre11-Temurin-alpine-microprofile`, `9.1.0-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.0-jre11-Temurin-alpine-plume`, `9.1.0-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.0-jre11-Temurin-alpine-plus`, `9.1.0-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.0-jre17-Semeru-ubuntu-webprofile`, `9.1.0-Semeru-ubuntu-webprofile`, `9.1.0-jre17-Semeru-webprofile`, `9.1.0-Semeru-webprofile`, `9.1.0-jre17-Semeru-ubuntu`, `9.1.0-Semeru-ubuntu`, `9.1.0-jre17-Semeru`, `9.1.0-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.0-jre17-Semeru-ubuntu-microprofile`, `9.1.0-Semeru-ubuntu-microprofile`, `9.1.0-jre17-Semeru-microprofile`, `9.1.0-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.0-jre17-Semeru-ubuntu-plume`, `9.1.0-Semeru-ubuntu-plume`, `9.1.0-jre17-Semeru-plume`, `9.1.0-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.0-jre17-Semeru-ubuntu-plus`, `9.1.0-Semeru-ubuntu-plus`, `9.1.0-jre17-Semeru-plus`, `9.1.0-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.0-jre11-Semeru-ubuntu-webprofile`, `9.1.0-jre11-Semeru-webprofile`, `9.1.0-jre11-Semeru-ubuntu`, `9.1.0-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.0-jre11-Semeru-ubuntu-microprofile`, `9.1.0-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.0-jre11-Semeru-ubuntu-plume`, `9.1.0-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.0-jre11-Semeru-ubuntu-plus`, `9.1.0-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/98974cbd5cf839153b100c65574daa1b62c90522/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-webprofile`, `9.1.1-Temurin-ubuntu-webprofile`, `9.1.1-jre17-ubuntu-webprofile`, `9.1.1-ubuntu-webprofile`, `9.1.1-jre17-Temurin-webprofile`, `9.1.1-Temurin-webprofile`, `9.1.1-jre17-webprofile`, `9.1.1-webprofile`, `9.1.1-jre17-Temurin-ubuntu`, `9.1.1-Temurin-ubuntu`, `9.1.1-jre17-ubuntu`, `9.1.1-ubuntu`, `9.1.1-jre17-Temurin`, `9.1.1-Temurin`, `9.1.1-jre17`, `9.1.1`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-microprofile`, `9.1.1-Temurin-ubuntu-microprofile`, `9.1.1-jre17-ubuntu-microprofile`, `9.1.1-ubuntu-microprofile`, `9.1.1-jre17-Temurin-microprofile`, `9.1.1-Temurin-microprofile`, `9.1.1-jre17-microprofile`, `9.1.1-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-plume`, `9.1.1-Temurin-ubuntu-plume`, `9.1.1-jre17-ubuntu-plume`, `9.1.1-ubuntu-plume`, `9.1.1-jre17-Temurin-plume`, `9.1.1-Temurin-plume`, `9.1.1-jre17-plume`, `9.1.1-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-plus`, `9.1.1-Temurin-ubuntu-plus`, `9.1.1-jre17-ubuntu-plus`, `9.1.1-ubuntu-plus`, `9.1.1-jre17-Temurin-plus`, `9.1.1-Temurin-plus`, `9.1.1-jre17-plus`, `9.1.1-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-webprofile`, `9.1.1-Temurin-alpine-webprofile`, `9.1.1-jre17-alpine-webprofile`, `9.1.1-alpine-webprofile`, `9.1.1-jre17-Temurin-alpine`, `9.1.1-Temurin-alpine`, `9.1.1-jre17-alpine`, `9.1.1-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-microprofile`, `9.1.1-Temurin-alpine-microprofile`, `9.1.1-jre17-alpine-microprofile`, `9.1.1-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-plume`, `9.1.1-Temurin-alpine-plume`, `9.1.1-jre17-alpine-plume`, `9.1.1-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-plus`, `9.1.1-Temurin-alpine-plus`, `9.1.1-jre17-alpine-plus`, `9.1.1-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-webprofile`, `9.1.1-jre11-ubuntu-webprofile`, `9.1.1-jre11-Temurin-webprofile`, `9.1.1-jre11-webprofile`, `9.1.1-jre11-Temurin-ubuntu`, `9.1.1-jre11-ubuntu`, `9.1.1-jre11-Temurin`, `9.1.1-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-microprofile`, `9.1.1-jre11-ubuntu-microprofile`, `9.1.1-jre11-Temurin-microprofile`, `9.1.1-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-plume`, `9.1.1-jre11-ubuntu-plume`, `9.1.1-jre11-Temurin-plume`, `9.1.1-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-plus`, `9.1.1-jre11-ubuntu-plus`, `9.1.1-jre11-Temurin-plus`, `9.1.1-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-webprofile`, `9.1.1-jre11-alpine-webprofile`, `9.1.1-jre11-Temurin-alpine`, `9.1.1-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-microprofile`, `9.1.1-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-plume`, `9.1.1-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-plus`, `9.1.1-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-webprofile`, `9.1.1-Semeru-ubuntu-webprofile`, `9.1.1-jre17-Semeru-webprofile`, `9.1.1-Semeru-webprofile`, `9.1.1-jre17-Semeru-ubuntu`, `9.1.1-Semeru-ubuntu`, `9.1.1-jre17-Semeru`, `9.1.1-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-microprofile`, `9.1.1-Semeru-ubuntu-microprofile`, `9.1.1-jre17-Semeru-microprofile`, `9.1.1-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-plume`, `9.1.1-Semeru-ubuntu-plume`, `9.1.1-jre17-Semeru-plume`, `9.1.1-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-plus`, `9.1.1-Semeru-ubuntu-plus`, `9.1.1-jre17-Semeru-plus`, `9.1.1-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-webprofile`, `9.1.1-jre11-Semeru-webprofile`, `9.1.1-jre11-Semeru-ubuntu`, `9.1.1-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-microprofile`, `9.1.1-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-plume`, `9.1.1-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-plus`, `9.1.1-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 36c5bad1ca109d834e5472dfd490e2a44347fd36 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Oct 2023 16:09:32 -0700 Subject: [PATCH 0678/2686] Run update.sh --- kapacitor/README.md | 8 ++++---- neo4j/README.md | 8 ++++---- telegraf/README.md | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/kapacitor/README.md b/kapacitor/README.md index 0d4bb9f696bf..0225c199d302 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4d8ee693af190b1d7338658239e39bf2fe54c53f/kapacitor/1.7/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 47d8fce9a97b..846ff0619b6a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.12.0-community-bullseye`, `5.12-community-bullseye`, `5-community-bullseye`, `5.12.0-community`, `5.12-community`, `5-community`, `5.12.0-bullseye`, `5.12-bullseye`, `5-bullseye`, `5.12.0`, `5.12`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/bullseye/community/Dockerfile) -- [`5.12.0-enterprise-bullseye`, `5.12-enterprise-bullseye`, `5-enterprise-bullseye`, `5.12.0-enterprise`, `5.12-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/bullseye/enterprise/Dockerfile) -- [`5.12.0-community-ubi8`, `5.12-community-ubi8`, `5-community-ubi8`, `5.12.0-ubi8`, `5.12-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/community/Dockerfile) -- [`5.12.0-enterprise-ubi8`, `5.12-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e005223dbe3f3bdba463f3942283324f7441d5b9/5.12.0/ubi8/enterprise/Dockerfile) +- [`5.13.0-community-bullseye`, `5.13-community-bullseye`, `5-community-bullseye`, `5.13.0-community`, `5.13-community`, `5-community`, `5.13.0-bullseye`, `5.13-bullseye`, `5-bullseye`, `5.13.0`, `5.13`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/bullseye/community/Dockerfile) +- [`5.13.0-enterprise-bullseye`, `5.13-enterprise-bullseye`, `5-enterprise-bullseye`, `5.13.0-enterprise`, `5.13-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/bullseye/enterprise/Dockerfile) +- [`5.13.0-community-ubi8`, `5.13-community-ubi8`, `5-community-ubi8`, `5.13.0-ubi8`, `5.13-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/community/Dockerfile) +- [`5.13.0-enterprise-ubi8`, `5.13-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/enterprise/Dockerfile) - [`4.4.26`, `4.4.26-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/community/Dockerfile) - [`4.4.26-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/enterprise/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 83868165da8a..48b267fe6ee8 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d0302e62ff9071508b3cd7c76ada7e3ddc79c4a6/telegraf/1.28/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) From 6b5ecb645f696748626f7449fa057fcc13a19fb4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Oct 2023 17:09:36 -0700 Subject: [PATCH 0679/2686] Run update.sh --- chronograf/README.md | 16 ++++++++-------- haproxy/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index dd0d56b7c530..c3dcde3f734a 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/625db807731c184f4ec5b0e1b66995700022256b/chronograf/1.10/alpine/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.8/alpine/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.9/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.9/alpine/Dockerfile) +- [`1.10`, `1.10.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.10/Dockerfile) +- [`1.10-alpine`, `1.10.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index cd9d3e5a141a..6aa7a0630e2a 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev7`, `2.9-dev`, `2.9-dev7-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/c95674c9a4c5a77b035a05de2ae3097dcb71abe3/2.9/Dockerfile) -- [`2.9-dev7-alpine`, `2.9-dev-alpine`, `2.9-dev7-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/c95674c9a4c5a77b035a05de2ae3097dcb71abe3/2.9/alpine/Dockerfile) +- [`2.9-dev8`, `2.9-dev`, `2.9-dev8-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/5d74ee5acfe35f75fe3a814ad77f0ceee92af260/2.9/Dockerfile) +- [`2.9-dev8-alpine`, `2.9-dev-alpine`, `2.9-dev8-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/5d74ee5acfe35f75fe3a814ad77f0ceee92af260/2.9/alpine/Dockerfile) - [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) - [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) From d6a2ea8510c0c9d45f56dc834e973d6a6f362075 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Oct 2023 07:09:28 -0700 Subject: [PATCH 0680/2686] Run update.sh --- nginx/README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 2dc72eb15001..bd9085097d6a 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -91,23 +91,29 @@ $ docker run --name some-nginx -d -p 8080:80 some-content-nginx Then you can hit `http://localhost:8080` or `http://host-ip:8080` in your browser. -## Complex configuration +## Customize configuration + +You can mount your configuration file, or build a new image with it. + +If you wish to adapt the default configuration, use something like the following to get it from a running nginx container: ```console -$ docker run --name my-custom-nginx-container -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx +$ docker run --name tmp-nginx-container -d nginx +$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf +$ docker rm -f tmp-nginx-container ``` +And then edit `/host/path/nginx.conf` in your host file system. + For information on the syntax of the nginx configuration files, see [the official documentation](http://nginx.org/en/docs/) (specifically the [Beginner's Guide](http://nginx.org/en/docs/beginners_guide.html#conf_structure)). -If you wish to adapt the default configuration, use something like the following to copy it from a running nginx container: +### Mount your configuration file ```console -$ docker run --name tmp-nginx-container -d nginx -$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf -$ docker rm -f tmp-nginx-container +$ docker run --name my-custom-nginx-container -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx ``` -This can also be accomplished more cleanly using a simple `Dockerfile` (in `/host/path/`): +### Build a new image with your configuration file ```dockerfile FROM nginx From 6ce71c01a8658e1d604953f0de5f883152740900 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Oct 2023 12:10:25 -0700 Subject: [PATCH 0681/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index 525bbe78fd40..a5841f4f6c2b 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.10`, `3.10.10`](https://github.com/arangodb/arangodb-docker/blob/5e1e58d2e5a985fe21b0747909d39eb3ccc434e2/alpine/3.10.10/Dockerfile) +- [`3.10`, `3.10.11`](https://github.com/arangodb/arangodb-docker/blob/855faa5aa4d4e065c46e5d999af83c3a7cba5ccb/alpine/3.10.11/Dockerfile) - [`3.11`, `3.11.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/8bb5a2e1077cf575d91c05246f9317b2bb9713bb/alpine/3.11.4/Dockerfile) # Quick reference (cont.) From 0938e1e492f1e6643f8641b0b3c1faff7bea8ba7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Oct 2023 17:09:28 -0700 Subject: [PATCH 0682/2686] Run update.sh --- gradle/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 6332040e3fd9..752c1d34dc5c 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk8/Dockerfile) -- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk8-focal/Dockerfile) -- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11/Dockerfile) -- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11-focal/Dockerfile) -- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk11-alpine/Dockerfile) -- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17/Dockerfile) -- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-focal/Dockerfile) -- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-alpine/Dockerfile) -- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk17-graal/Dockerfile) -- [`8.4.0-jdk21`, `8.4-jdk21`, `8-jdk21`, `jdk21`, `8.4.0-jdk21-jammy`, `8.4-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21/Dockerfile) -- [`8.4.0-jdk21-alpine`, `8.4-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21-alpine/Dockerfile) -- [`8.4.0-jdk21-graal`, `8.4-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.4.0-jdk21-graal-jammy`, `8.4-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/8d22e033a49acb24572502355618cfa3dbb345bd/jdk21-graal/Dockerfile) +- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk8/Dockerfile) +- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk8-focal/Dockerfile) +- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11/Dockerfile) +- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11-focal/Dockerfile) +- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11-alpine/Dockerfile) +- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17/Dockerfile) +- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-focal/Dockerfile) +- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-alpine/Dockerfile) +- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-graal/Dockerfile) +- [`8.4.0-jdk21`, `8.4-jdk21`, `8-jdk21`, `jdk21`, `8.4.0-jdk21-jammy`, `8.4-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21/Dockerfile) +- [`8.4.0-jdk21-alpine`, `8.4-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21-alpine/Dockerfile) +- [`8.4.0-jdk21-graal`, `8.4-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.4.0-jdk21-graal-jammy`, `8.4-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21-graal/Dockerfile) - [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) - [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) - [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) From 44a6530c4e2fd38308b18500bcdeff8ae95bd1fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Oct 2023 18:09:33 -0700 Subject: [PATCH 0683/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- nginx/README.md | 10 +++++----- rabbitmq/README.md | 20 ++++++++++---------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 62577dc460ce..df668c540024 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.2.20231011.0`](https://github.com/amazonlinux/container-images/blob/af8bdafe241daebe9bd3ef2b864084a60ff022af/Dockerfile) -- [`2`, `2.0.20230926.0`](https://github.com/amazonlinux/container-images/blob/293ef6f41163e4d22700ffda8e8c032593e13215/Dockerfile) +- [`2023`, `latest`, `2023.2.20231018.2`](https://github.com/amazonlinux/container-images/blob/ba9fd7ed5735a8ed7c01406726debd4386eb81c9/Dockerfile) +- [`2`, `2.0.20231020.1`](https://github.com/amazonlinux/container-images/blob/da6f3f58f5d173ca4b7fc8c2665c2e63b4e4880f/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231002.0`](https://github.com/amazonlinux/container-images/blob/a71cd32b94ea6e1f8a5fad33f9614695e34ae1a8/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index bd9085097d6a..7fd642fa9238 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.2`, `mainline`, `1`, `1.25`, `latest`, `1.25.2-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian/Dockerfile) -- [`1.25.2-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.2-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/321a13a966eeff945196ddd31a629dad2aa85eda/mainline/debian-perl/Dockerfile) -- [`1.25.2-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.2-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine/Dockerfile) -- [`1.25.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.2-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine-perl/Dockerfile) -- [`1.25.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.2-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/4b0d808b8f320df132c154a974ebe46e9e5f5ffe/mainline/alpine-slim/Dockerfile) +- [`1.25.3`, `mainline`, `1`, `1.25`, `latest`, `1.25.3-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/debian/Dockerfile) +- [`1.25.3-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.3-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/debian-perl/Dockerfile) +- [`1.25.3-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.3-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine/Dockerfile) +- [`1.25.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.3-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine-perl/Dockerfile) +- [`1.25.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.3-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f5735e8e9104..9afe596fd003 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.1`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/991fa32b267f44c9069ec5414fee6f24e1729177/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.1`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/e4305ffb6bb437ce9e67e5590d467efd6890d216/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-rc.1-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/991fa32b267f44c9069ec5414fee6f24e1729177/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e4305ffb6bb437ce9e67e5590d467efd6890d216/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.1-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.7`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/ubuntu/Dockerfile) +- [`3.12.7`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/7352e3888be20533a303cb0d2972a226d4615900/3.12/ubuntu/Dockerfile) - [`3.12.7-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f634e692a19d4e3efd10785c3800f7d21b8a8b00/3.12/alpine/Dockerfile) +- [`3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7352e3888be20533a303cb0d2972a226d4615900/3.12/alpine/Dockerfile) - [`3.12.7-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.24`, `3.11`](https://github.com/docker-library/rabbitmq/blob/1f2cd450abe5f2b15e0e5844d94390c4bd7cceea/3.11/ubuntu/Dockerfile) +- [`3.11.24`, `3.11`](https://github.com/docker-library/rabbitmq/blob/527cc3568a67533fc10a294b9814053f6412e083/3.11/ubuntu/Dockerfile) - [`3.11.24-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.24-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/1f2cd450abe5f2b15e0e5844d94390c4bd7cceea/3.11/alpine/Dockerfile) +- [`3.11.24-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/527cc3568a67533fc10a294b9814053f6412e083/3.11/alpine/Dockerfile) - [`3.11.24-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/5551ce78936a1bcac482f5b4792686c456db6845/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/9cac94018c00eb881e382afd2337d85970c890c2/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/4ef39c16217ca65831d0a997f60e54c916244a3c/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/9cac94018c00eb881e382afd2337d85970c890c2/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/4ef39c16217ca65831d0a997f60e54c916244a3c/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From 587680114553c6b360551d3f9eff09029a48e119 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Oct 2023 10:09:23 -0700 Subject: [PATCH 0684/2686] Run update.sh --- node/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/node/README.md b/node/README.md index 59756836ce05..7af5829077f2 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.17`, `21.0-alpine3.17`, `21.0.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/c3b405debb5e5153fc2ace45097e2d7a4e0fa20f/21/alpine3.17/Dockerfile) -- [`21-alpine`, `21-alpine3.18`, `21.0-alpine`, `21.0-alpine3.18`, `21.0.0-alpine`, `21.0.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/c3b405debb5e5153fc2ace45097e2d7a4e0fa20f/21/alpine3.18/Dockerfile) -- [`21`, `21-bookworm`, `21.0`, `21.0-bookworm`, `21.0.0`, `21.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.0-bookworm-slim`, `21.0-slim`, `21.0.0-bookworm-slim`, `21.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.0-bullseye`, `21.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.0-bullseye-slim`, `21.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/593dd75b22cbaf846e223b9b48736fc7b7b27871/21/bullseye-slim/Dockerfile) -- [`20-alpine3.17`, `20.8-alpine3.17`, `20.8.1-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.8-alpine`, `20.8-alpine3.18`, `20.8.1-alpine`, `20.8.1-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.8`, `20.8-bookworm`, `20.8.1`, `20.8.1-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.8-bookworm-slim`, `20.8-slim`, `20.8.1-bookworm-slim`, `20.8.1-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.8-bullseye`, `20.8.1-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.8-bullseye-slim`, `20.8.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.8-buster`, `20.8.1-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster/Dockerfile) -- [`20-buster-slim`, `20.8-buster-slim`, `20.8.1-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`, `lts`, `lts-bookworm`, `lts-hydrogen`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster-slim/Dockerfile) +- [`21-alpine3.17`, `21.1-alpine3.17`, `21.1.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/alpine3.17/Dockerfile) +- [`21-alpine`, `21-alpine3.18`, `21.1-alpine`, `21.1-alpine3.18`, `21.1.0-alpine`, `21.1.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/alpine3.18/Dockerfile) +- [`21`, `21-bookworm`, `21.1`, `21.1-bookworm`, `21.1.0`, `21.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.1-bookworm-slim`, `21.1-slim`, `21.1.0-bookworm-slim`, `21.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.1-bullseye`, `21.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.1-bullseye-slim`, `21.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bullseye-slim/Dockerfile) +- [`20-alpine3.17`, `20.9-alpine3.17`, `20.9.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.9-alpine`, `20.9-alpine3.18`, `20.9.0-alpine`, `20.9.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.9`, `20.9-bookworm`, `20.9.0`, `20.9.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.9-bookworm-slim`, `20.9-slim`, `20.9.0-bookworm-slim`, `20.9.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.9-bullseye`, `20.9.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.9-bullseye-slim`, `20.9.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.9-buster`, `20.9.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster/Dockerfile) +- [`20-buster-slim`, `20.9-buster-slim`, `20.9.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster-slim/Dockerfile) # Quick reference (cont.) From bc7cc7704252d219bb8a09bd0bb5c1665b3a2e18 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Oct 2023 11:09:21 -0700 Subject: [PATCH 0685/2686] Run update.sh --- dart/README.md | 4 ++-- geonetwork/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index 2570f5080caa..bb1bfabf1f34 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.4-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.4`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6bb05083bc305addeaf0a8dc7ab3b5cc3e9bc409/stable/bookworm/Dockerfile) -- [`3.2.0-210.3.beta-sdk`, `beta-sdk`, `3.2.0-210.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6bb05083bc305addeaf0a8dc7ab3b5cc3e9bc409/beta/bookworm/Dockerfile) +- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/stable/bookworm/Dockerfile) +- [`3.2.0-210.3.beta-sdk`, `beta-sdk`, `3.2.0-210.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index aa6a814b5586..576fdab187ab 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) -- [`4.0.6`, `4.0`](https://github.com/geonetwork/docker-geonetwork/blob/00936dcf7dbb2399405c53aa05c670fa4bb79736/4.0.6/Dockerfile) -- [`4.2.6`, `4.2`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/3dd8a6f569eb7755235e770f06c0f6e9659a4277/4.2.6/Dockerfile) +- [`4.2.6`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/3dd8a6f569eb7755235e770f06c0f6e9659a4277/4.2.6/Dockerfile) +- [`4.4.0`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/317a9e76f8300e58207c77f568d384b2444b315b/4.4.0/Dockerfile) # Quick reference (cont.) From d07f81982e67dc1b4a0d963e890dc7d4480cf1be Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Oct 2023 12:17:58 -0700 Subject: [PATCH 0686/2686] Run update.sh --- orientdb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index 1b4233130606..e0b67100696f 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.23`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/8b3809e5012ff7fd5b929b1b198530b0d9647879/release/3.2.x/3.2.23/Dockerfile) -- [`3.2.23-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/8b3809e5012ff7fd5b929b1b198530b0d9647879/release/3.2.x/3.2.23-tp3/Dockerfile) +- [`3.2.24`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/503bc2be695859be042b1ac701fe8aeeea5f626f/release/3.2.x/3.2.24/Dockerfile) +- [`3.2.24-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/503bc2be695859be042b1ac701fe8aeeea5f626f/release/3.2.x/3.2.24-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) From 7a746246cc0190872fb2fc5400feef9b9fbbba31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Oct 2023 17:09:35 -0700 Subject: [PATCH 0687/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/README.md b/bash/README.md index afef09f3c92e..8bf6b1c6b773 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231011`, `devel`, `devel-20231011-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/4722796faa5df4c4ef4fb2c3ab6749b655cad8b4/devel/Dockerfile) +- [`devel-20231023`, `devel`, `devel-20231023-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/069d8927e1b5de80f948b58b6b2b615fd82456c0/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 14b2317cc644..a24e00538647 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.70.1`, `5.70`, `5`, `latest`](https://github.com/docker-library/ghost/blob/23c550666021939b447e26d8b00f021e2fb3f00d/5/debian/Dockerfile) -- [`5.70.1-alpine`, `5.70-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/23c550666021939b447e26d8b00f021e2fb3f00d/5/alpine/Dockerfile) +- [`5.70.2`, `5.70`, `5`, `latest`](https://github.com/docker-library/ghost/blob/18272e470c7c88bf03aee901c404c724fe072852/5/debian/Dockerfile) +- [`5.70.2-alpine`, `5.70-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/18272e470c7c88bf03aee901c404c724fe072852/5/alpine/Dockerfile) # Quick reference (cont.) From a50b9622848be2335efa54328899aa4c4fc79d9f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Oct 2023 18:18:03 -0700 Subject: [PATCH 0688/2686] Run update.sh --- pypy/README.md | 52 ++++++++++++++++++++++----------------------- wordpress/README.md | 24 ++++++++++----------- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/pypy/README.md b/pypy/README.md index 6a344a60efad..d0f868854af5 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`3.10-7.3.12-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.12-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bookworm/Dockerfile) -- [`3.10-7.3.12-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.12-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.12-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.12-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bullseye/Dockerfile) -- [`3.10-7.3.12-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.12-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.12-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.12-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.12-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.12-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.12-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.12-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.12-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bookworm/Dockerfile) -- [`3.9-7.3.12-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.12-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) -- [`3.9-7.3.12-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.12-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.12-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.12-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.13-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.13-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bookworm/Dockerfile) +- [`3.10-7.3.13-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.13-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.13-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.13-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bullseye/Dockerfile) +- [`3.10-7.3.13-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.13-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.13-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.13-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.13-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.13-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.13-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.13-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.13-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bookworm/Dockerfile) +- [`3.9-7.3.13-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.13-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bullseye/Dockerfile) +- [`3.9-7.3.13-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.13-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.13-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.13-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) - [`2.7-7.3.13-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.13-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bookworm/Dockerfile) - [`2.7-7.3.13-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.13-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/slim-bookworm/Dockerfile) - [`2.7-7.3.13-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.13-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) @@ -49,20 +49,20 @@ WARNING: ## Shared Tags -- `3.10-7.3.12`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.12`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/bullseye/Dockerfile) - - [`3.10-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.12-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.12-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.12`, `3.9-7.3`, `3.9-7`, `3.9`: - - [`3.9-7.3.12-bullseye`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/bullseye/Dockerfile) - - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.12-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - - [`3.9-7.3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.12-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/4a2918a33ab52da23ce6cd3b0754ba54521cf1e0/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.13`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.13`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bullseye/Dockerfile) + - [`3.10-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.13-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.13-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.13`, `3.9-7.3`, `3.9-7`, `3.9`: + - [`3.9-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bullseye/Dockerfile) + - [`3.9-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.13-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: + - [`3.9-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.13`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.13`, `2-7.3`, `2-7`, `2`: - [`2.7-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) - [`2.7-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 39c9c20f20c3..a78ca5b51ae6 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -33,18 +33,18 @@ WARNING: - [`6.3.2-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.2-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/apache/Dockerfile) - [`6.3.2-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm/Dockerfile) - [`6.3.2-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm-alpine/Dockerfile) -- [`cli-2.8.1`, `cli-2.8`, `cli-2`, `cli`, `cli-2.8.1-php8.0`, `cli-2.8-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.0/alpine/Dockerfile) -- [`cli-2.8.1-php8.1`, `cli-2.8-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.1/alpine/Dockerfile) -- [`cli-2.8.1-php8.2`, `cli-2.8-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/6e0d5acfc84bef260c85110da4b94d763ad5086c/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-RC1-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC1`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC1-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC1-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-RC1-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC1-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-RC1-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC1-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-RC1-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC1-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-RC1-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-RC1-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-RC1-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC1-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-RC1-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-RC1-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4fdbb1b7f399af62672598a2ab34ec6d508a5c75/beta/php8.2/fpm-alpine/Dockerfile) +- [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) +- [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) +- [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) +- [`beta-6.4-RC2-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC2`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC2-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC2-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-RC2-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC2-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-RC2-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC2-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-RC2-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC2-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-RC2-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-RC2-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-RC2-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC2-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-RC2-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-RC2-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 4f7ba4e4093961965356aa2197ea67b18c778370 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Oct 2023 16:09:25 -0700 Subject: [PATCH 0689/2686] Run update.sh --- mongo/README.md | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 0c11c91f4fb4..3d18d358e355 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.3-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/Dockerfile) +- [`7.0.3-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.3-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.3-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.3-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.2-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) - [`7.0.2-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.2-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) @@ -38,11 +43,11 @@ WARNING: - [`6.0.11-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.11-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.11-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.21-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) -- [`5.0.21-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.21-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.21-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.21-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.22-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) +- [`5.0.22-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.22-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.22-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.22-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) - [`4.4.25-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) - [`4.4.25-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.25-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) @@ -51,6 +56,16 @@ WARNING: ## Shared Tags +- `7.0.3-rc1`, `7.0-rc`: + - [`7.0.3-rc1-jammy`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/Dockerfile) + - [`7.0.3-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.3-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.3-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.3-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.3-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.3-rc1-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.3-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.3-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.2`, `7.0`, `7`, `latest`: - [`7.0.2-jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) - [`7.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -71,16 +86,16 @@ WARNING: - `6.0.11-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.21`, `5.0`, `5`: - - [`5.0.21-focal`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/Dockerfile) - - [`5.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.21-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.21-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ba080e252a2c336a2ef01dc9ad88b5bce6520f0d/5.0/windows/nanoserver-1809/Dockerfile) +- `5.0.22`, `5.0`, `5`: + - [`5.0.22-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) + - [`5.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.22-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.22-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.25`, `4.4`, `4`: - [`4.4.25-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) From 90f6a818c0698798be7566667c371935ae4776fd Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Thu, 26 Oct 2023 16:12:21 -0700 Subject: [PATCH 0690/2686] Update content.md --- aerospike/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/content.md b/aerospike/content.md index 02a17ade68ec..62f9d81680a3 100644 --- a/aerospike/content.md +++ b/aerospike/content.md @@ -169,7 +169,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [debian:strech-slim](https://hub.docker.com/_/debian). +These images are based on [debian:*-slim](https://hub.docker.com/_/debian). ### ee-[version] From 3c446dd70608538ee0ae1a3319956f3211458279 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Oct 2023 17:09:27 -0700 Subject: [PATCH 0691/2686] Run update.sh --- docker/README.md | 18 +++++++++--------- mysql/README.md | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docker/README.md b/docker/README.md index 102bdaf60137..9d56f6081716 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`24.0.6-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.6-cli-alpine3.18`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/cli/Dockerfile) -- [`24.0.6-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.6-dind-alpine3.18`, `24.0.6`, `24.0`, `24`, `latest`, `24.0.6-alpine3.18`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind/Dockerfile) -- [`24.0.6-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/12a4554648b671111eaf4cf4636cb1d6310c65e1/24/dind-rootless/Dockerfile) -- [`24.0.6-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.6-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.6-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/cli/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind/Dockerfile) +- [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) +- [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `24.0.6-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.6-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a248877a927ea421717db21fd168482b027913d2/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index d17cde6a88b5..292356662029 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.1.0`, `8.1`, `8`, `innovation`, `latest`, `8.1.0-oracle`, `8.1-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/eb1850601849ef7ef77a23f017a20debc95d597c/innovation/Dockerfile.oracle) -- [`8.0.34`, `8.0`, `8.0.34-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.oracle) -- [`8.0.34-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/f4030aebf6a63d640f7085fb3e4601b4e70313c8/8.0/Dockerfile.debian) -- [`5.7.43`, `5.7`, `5`, `5.7.43-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/c13cda9c2c9d836af9b3331e8681f8cc8e0a7803/5.7/Dockerfile.oracle) +- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/76806cdd0acee2dec39b1b66e9c8015ef75be196/innovation/Dockerfile.oracle) +- [`8.0.35`, `8.0`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/84ba05eaa75e1f0e1d33185e23f95a9cdc607b51/8.0/Dockerfile.oracle) +- [`8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/84ba05eaa75e1f0e1d33185e23f95a9cdc607b51/8.0/Dockerfile.debian) +- [`5.7.44`, `5.7`, `5`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/9678ed1d27794ae9529c43b4411e30f981ce39ea/5.7/Dockerfile.oracle) # Quick reference (cont.) From b1d4a8d937c6995cd74cbe597ced39d16ed08ea2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Oct 2023 09:09:41 -0700 Subject: [PATCH 0692/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index b2ea1952a002..4cfdd7155ce5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.12-apache`, `25.0-apache`, `25-apache`, `25.0.12`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/apache/Dockerfile) -- [`25.0.12-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/fpm/Dockerfile) -- [`25.0.12-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/25/fpm-alpine/Dockerfile) -- [`26.0.7-apache`, `26.0-apache`, `26-apache`, `26.0.7`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/apache/Dockerfile) -- [`26.0.7-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm/Dockerfile) -- [`26.0.7-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/fef9785e235f1ff05f9a4c2eb81b5f46155ef917/26/fpm-alpine/Dockerfile) -- [`27.1.2-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.2`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/apache/Dockerfile) -- [`27.1.2-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/fpm/Dockerfile) -- [`27.1.2-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3f2d22d4208ff1ff975a96a00fcf8cdbe6fdf41f/27/fpm-alpine/Dockerfile) +- [`25.0.13-apache`, `25.0-apache`, `25-apache`, `25.0.13`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/apache/Dockerfile) +- [`25.0.13-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/fpm/Dockerfile) +- [`25.0.13-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/fpm-alpine/Dockerfile) +- [`26.0.8-apache`, `26.0-apache`, `26-apache`, `26.0.8`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/apache/Dockerfile) +- [`26.0.8-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/fpm/Dockerfile) +- [`26.0.8-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/fpm-alpine/Dockerfile) +- [`27.1.3-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.3`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/apache/Dockerfile) +- [`27.1.3-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/fpm/Dockerfile) +- [`27.1.3-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 2187e992d7785394efb44dd4a033bcc5b1d87b2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Oct 2023 12:18:12 -0700 Subject: [PATCH 0693/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/nats/README.md b/nats/README.md index 092cc96f74d4..673ae816a682 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.3-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.3-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/alpine3.18/Dockerfile) -- [`2.10.3-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.3-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) -- [`2.10.3-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.3-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.23-alpine3.18`, `2.9-alpine3.18`, `2.9.23-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/alpine3.18/Dockerfile) -- [`2.9.23-scratch`, `2.9-scratch`, `2.9.23-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) -- [`2.9.23-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.23-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.4-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.4-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/alpine3.18/Dockerfile) +- [`2.10.4-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.4-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) +- [`2.10.4-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.4-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.23-alpine3.18`, `2.9-alpine3.18`, `2.9.23-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/alpine3.18/Dockerfile) +- [`2.9.23-scratch`, `2.9-scratch`, `2.9.23-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) +- [`2.9.23-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.23-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.3`, `2.10`: - - [`2.10.3-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) - - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.4`, `2.10`: + - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.3-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/scratch/Dockerfile) - - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) -- `2.10.3-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.3-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.3-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) +- `2.10.4-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.4-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) - `2.9.23`, `2.9`: - - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/scratch/Dockerfile) + - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) - `2.9.23-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.23-nanoserver`, `2.9-nanoserver`: - - [`2.9.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dec4f4419f9d420c080d33508490c1804618a526/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 89950dce691210c3faf1eb28cbd40845166b233c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Oct 2023 16:09:28 -0700 Subject: [PATCH 0694/2686] Run update.sh --- erlang/README.md | 6 +++--- flink/README.md | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 9eafb041bdef..71083f41e754 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.1.1.0`, `26.1.1`, `26.1`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/Dockerfile) -- [`26.1.1.0-slim`, `26.1.1-slim`, `26.1-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/slim/Dockerfile) -- [`26.1.1.0-alpine`, `26.1.1-alpine`, `26.1-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/26/alpine/Dockerfile) +- [`26.1.2.0`, `26.1.2`, `26.1`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/Dockerfile) +- [`26.1.2.0-slim`, `26.1.2-slim`, `26.1-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/slim/Dockerfile) +- [`26.1.2.0-alpine`, `26.1.2-alpine`, `26.1-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/alpine/Dockerfile) - [`25.3.2.6`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/Dockerfile) - [`25.3.2.6-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/slim/Dockerfile) - [`25.3.2.6-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/alpine/Dockerfile) diff --git a/flink/README.md b/flink/README.md index 7e1eaa802497..f57d1c7110a9 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,8 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.1-scala_2.12-java8`, `1.17-scala_2.12-java8`, `scala_2.12-java8`, `1.17.1-java8`, `1.17-java8`, `java8`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.17.1-scala_2.12-java11`, `1.17-scala_2.12-java11`, `scala_2.12-java11`, `1.17.1-scala_2.12`, `1.17-scala_2.12`, `scala_2.12`, `1.17.1-java11`, `1.17-java11`, `java11`, `1.17.1`, `1.17`, `latest`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.18.0-scala_2.12-java8`, `1.18-scala_2.12-java8`, `scala_2.12-java8`, `1.18.0-java8`, `1.18-java8`, `java8`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.18.0-scala_2.12-java17`, `1.18-scala_2.12-java17`, `scala_2.12-java17`, `1.18.0-java17`, `1.18-java17`, `java17`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.18.0-scala_2.12-java11`, `1.18-scala_2.12-java11`, `scala_2.12-java11`, `1.18.0-scala_2.12`, `1.18-scala_2.12`, `scala_2.12`, `1.18.0-java11`, `1.18-java11`, `java11`, `1.18.0`, `1.18`, `latest`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.1-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.1-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.1-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.1-scala_2.12`, `1.17-scala_2.12`, `1.17.1-java11`, `1.17-java11`, `1.17.1`, `1.17`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java11-ubuntu/Dockerfile) - [`1.16.2-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.2-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java8-ubuntu/Dockerfile) - [`1.16.2-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.2-scala_2.12`, `1.16-scala_2.12`, `1.16.2-java11`, `1.16-java11`, `1.16.2`, `1.16`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java11-ubuntu/Dockerfile) - [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java8-ubuntu/Dockerfile) From 4f71cafc839710998db00f07c4ead4fdd4247ec1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Oct 2023 17:18:39 -0700 Subject: [PATCH 0695/2686] Run update.sh --- ghost/README.md | 4 +- openjdk/README.md | 36 ++++++------- oraclelinux/README.md | 16 +++--- php/README.md | 121 ++++++++++++++++-------------------------- 4 files changed, 73 insertions(+), 104 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a24e00538647..13cef0a87d80 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.70.2`, `5.70`, `5`, `latest`](https://github.com/docker-library/ghost/blob/18272e470c7c88bf03aee901c404c724fe072852/5/debian/Dockerfile) -- [`5.70.2-alpine`, `5.70-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/18272e470c7c88bf03aee901c404c724fe072852/5/alpine/Dockerfile) +- [`5.71.0`, `5.71`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d9b12cc686ca5744a9f7882351cf314e3a09774f/5/debian/Dockerfile) +- [`5.71.0-alpine`, `5.71-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9b12cc686ca5744a9f7882351cf314e3a09774f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 780525167f93..9df234b3df82 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-20-jdk-oraclelinux8`, `22-ea-20-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-20-jdk-oracle`, `22-ea-20-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-20-jdk-oraclelinux7`, `22-ea-20-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-20-jdk-bookworm`, `22-ea-20-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/bookworm/Dockerfile) -- [`22-ea-20-jdk-slim-bookworm`, `22-ea-20-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-20-jdk-slim`, `22-ea-20-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-20-jdk-bullseye`, `22-ea-20-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/bullseye/Dockerfile) -- [`22-ea-20-jdk-slim-bullseye`, `22-ea-20-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-20-jdk-windowsservercore-ltsc2022`, `22-ea-20-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-20-jdk-windowsservercore-1809`, `22-ea-20-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-20-jdk-nanoserver-1809`, `22-ea-20-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-21-jdk-oraclelinux8`, `22-ea-21-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-21-jdk-oracle`, `22-ea-21-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-21-jdk-oraclelinux7`, `22-ea-21-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-21-jdk-bookworm`, `22-ea-21-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/bookworm/Dockerfile) +- [`22-ea-21-jdk-slim-bookworm`, `22-ea-21-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-21-jdk-slim`, `22-ea-21-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-21-jdk-bullseye`, `22-ea-21-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/bullseye/Dockerfile) +- [`22-ea-21-jdk-slim-bullseye`, `22-ea-21-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-21-jdk-windowsservercore-ltsc2022`, `22-ea-21-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-21-jdk-windowsservercore-1809`, `22-ea-21-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-21-jdk-nanoserver-1809`, `22-ea-21-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-20-jdk`, `22-ea-20`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-20-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-20-jdk-windowsservercore`, `22-ea-20-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-20-jdk-nanoserver`, `22-ea-20-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/574ec5bf25877b33b919323889269ff05b45680d/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-21-jdk`, `22-ea-21`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-21-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-21-jdk-windowsservercore`, `22-ea-21-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-21-jdk-nanoserver`, `22-ea-21-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index bd415268a37d..b44df6dd57d7 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6c5531adf48feee7f9ac11d963ca0ecc695743f4/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 0c4053b0d791..6cca5e1c39e3 100644 --- a/php/README.md +++ b/php/README.md @@ -24,82 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC4-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC4-bookworm`, `8.3-rc-bookworm`, `8.3.0RC4-cli`, `8.3-rc-cli`, `8.3.0RC4`, `8.3-rc`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC4-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC4-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC4-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC4-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC4-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC4-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC4-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC4-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC4-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC4-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC4-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC4-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC4-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC4-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC4-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC4-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC4-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC4-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC4-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC4-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC4-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC4-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC4-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/24ff58a80c6f59fb0418783d1cef327fb85656fe/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.12RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.12RC1-bookworm`, `8.2-rc-bookworm`, `8.2.12RC1-cli`, `8.2-rc-cli`, `8.2.12RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.12RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.12RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.12RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.12RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.12RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.12RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.12RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.12RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.12RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.12RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.12RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.12RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.12RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.12RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.12RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.12RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.12RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.12RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.12RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.12RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.12RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.12RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.12RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/9a56e8fd621acf81e751be76c54ee2f21b0de450/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.11-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.11-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.11-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.11`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/cli/Dockerfile) -- [`8.2.11-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.11-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/apache/Dockerfile) -- [`8.2.11-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.11-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/fpm/Dockerfile) -- [`8.2.11-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.11-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bookworm/zts/Dockerfile) -- [`8.2.11-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.11-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/cli/Dockerfile) -- [`8.2.11-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/apache/Dockerfile) -- [`8.2.11-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/fpm/Dockerfile) -- [`8.2.11-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/bullseye/zts/Dockerfile) -- [`8.2.11-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.11-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.11-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.11-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.11-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.11-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.11-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.11-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.11-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.11-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.11-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.11-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.25RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.25RC1-bookworm`, `8.1-rc-bookworm`, `8.1.25RC1-cli`, `8.1-rc-cli`, `8.1.25RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.25RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.25RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.25RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.25RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.25RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.25RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.25RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.25RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.25RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.25RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.25RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.25RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.25RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.25RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.25RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.25RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.25RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.25RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.25RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.25RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.25RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.25RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.25RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.25RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.25RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.25RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.25RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/1a6da8ae11ee48864736d0401c50cde3f61748dc/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.24-cli-bookworm`, `8.1-cli-bookworm`, `8.1.24-bookworm`, `8.1-bookworm`, `8.1.24-cli`, `8.1-cli`, `8.1.24`, `8.1`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/cli/Dockerfile) -- [`8.1.24-apache-bookworm`, `8.1-apache-bookworm`, `8.1.24-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/apache/Dockerfile) -- [`8.1.24-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.24-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/fpm/Dockerfile) -- [`8.1.24-zts-bookworm`, `8.1-zts-bookworm`, `8.1.24-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bookworm/zts/Dockerfile) -- [`8.1.24-cli-bullseye`, `8.1-cli-bullseye`, `8.1.24-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/cli/Dockerfile) -- [`8.1.24-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/apache/Dockerfile) -- [`8.1.24-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/fpm/Dockerfile) -- [`8.1.24-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/bullseye/zts/Dockerfile) -- [`8.1.24-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.24-alpine3.18`, `8.1-alpine3.18`, `8.1.24-cli-alpine`, `8.1-cli-alpine`, `8.1.24-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.24-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.24-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.24-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.24-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.24-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.24-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.24-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.24-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.24-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.24-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.24-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.24-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/dd8ca598756729ec69591046750ee6b49099d067/8.1/alpine3.16/zts/Dockerfile) +- [`8.3.0RC5-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC5-bookworm`, `8.3-rc-bookworm`, `8.3.0RC5-cli`, `8.3-rc-cli`, `8.3.0RC5`, `8.3-rc`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC5-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC5-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC5-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC5-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC5-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC5-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC5-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC5-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC5-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC5-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC5-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC5-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC5-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC5-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC5-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC5-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC5-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC5-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC5-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC5-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC5-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC5-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC5-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.12-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.12-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.12-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.12`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/cli/Dockerfile) +- [`8.2.12-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.12-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/apache/Dockerfile) +- [`8.2.12-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.12-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/fpm/Dockerfile) +- [`8.2.12-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.12-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/zts/Dockerfile) +- [`8.2.12-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.12-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/cli/Dockerfile) +- [`8.2.12-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/apache/Dockerfile) +- [`8.2.12-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/fpm/Dockerfile) +- [`8.2.12-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/zts/Dockerfile) +- [`8.2.12-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.12-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.12-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.12-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.12-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.12-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.12-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.12-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.12-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.12-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.12-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.12-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.25-cli-bookworm`, `8.1-cli-bookworm`, `8.1.25-bookworm`, `8.1-bookworm`, `8.1.25-cli`, `8.1-cli`, `8.1.25`, `8.1`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/cli/Dockerfile) +- [`8.1.25-apache-bookworm`, `8.1-apache-bookworm`, `8.1.25-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/apache/Dockerfile) +- [`8.1.25-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.25-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/fpm/Dockerfile) +- [`8.1.25-zts-bookworm`, `8.1-zts-bookworm`, `8.1.25-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/zts/Dockerfile) +- [`8.1.25-cli-bullseye`, `8.1-cli-bullseye`, `8.1.25-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/cli/Dockerfile) +- [`8.1.25-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/apache/Dockerfile) +- [`8.1.25-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/fpm/Dockerfile) +- [`8.1.25-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/zts/Dockerfile) +- [`8.1.25-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.25-alpine3.18`, `8.1-alpine3.18`, `8.1.25-cli-alpine`, `8.1-cli-alpine`, `8.1.25-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.25-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.25-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.25-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.25-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.25-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.25-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.25-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.25-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.25-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.25-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.25-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.25-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/zts/Dockerfile) - [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) - [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) - [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) From dd6af4a07ff7a511c825331279d94fd36acd905b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Oct 2023 16:20:37 -0700 Subject: [PATCH 0696/2686] Run update.sh --- eclipse-temurin/README.md | 220 +++++++++++++++++++------------------- perl/README.md | 80 +++++++------- 2 files changed, 150 insertions(+), 150 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 7951bf79ed26..dd537ce10886 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -46,56 +46,56 @@ WARNING: - [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/alpine/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/centos/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.20.1_1-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/alpine/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/focal/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/centos/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`11.0.20.1_1-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/alpine/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/centos/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.8.1_1-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/alpine/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/focal/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/centos/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`17.0.8.1_1-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- [`21_35-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/alpine/Dockerfile.releases.full) -- [`21_35-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`21_35-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`21_35-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`21_35-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`21_35-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`21_35-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`21_35-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/alpine/Dockerfile.releases.full) -- [`21_35-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`21_35-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`21_35-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`21_35-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`21_35-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`21_35-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`11.0.21_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/alpine/Dockerfile) +- [`11.0.21_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.21_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.21_9-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/centos/Dockerfile) +- [`11.0.21_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.21_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.21_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.21_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.21_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.21_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/alpine/Dockerfile) +- [`11.0.21_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.21_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.21_9-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/centos/Dockerfile) +- [`11.0.21_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.21_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.21_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.21_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.21_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.9_9-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/alpine/Dockerfile) +- [`17.0.9_9-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.9_9-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.9_9-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/centos/Dockerfile) +- [`17.0.9_9-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.9_9-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.9_9-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.9_9-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.9_9-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.9_9-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/alpine/Dockerfile) +- [`17.0.9_9-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.9_9-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.9_9-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/centos/Dockerfile) +- [`17.0.9_9-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.9_9-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.9_9-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.9_9-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.9_9-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.1_12-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/alpine/Dockerfile) +- [`21.0.1_12-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.1_12-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.1_12-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.1_12-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.1_12-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.1_12-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.1_12-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/alpine/Dockerfile) +- [`21.0.1_12-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.1_12-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.1_12-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.1_12-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.1_12-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.1_12-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -119,66 +119,66 @@ WARNING: - `8u382-b05-jre-nanoserver`, `8-jre-nanoserver`: - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jdk`, `11-jdk`, `11`: - - [`11.0.20.1_1-jdk-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.20.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.20.1_1-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jre`, `11-jre`: - - [`11.0.20.1_1-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`11.0.20.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.20.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `11.0.20.1_1-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.20.1_1-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`11.0.20.1_1-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/11/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jdk`, `17-jdk`, `17`: - - [`17.0.8.1_1-jdk-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.8.1_1-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.8.1_1-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jre`, `17-jre`: - - [`17.0.8.1_1-jre-jammy`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`17.0.8.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.8.1_1-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `17.0.8.1_1-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.8.1_1-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`17.0.8.1_1-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/25f458a0991f58bb7ed0ec9817e026a40d559c38/17/jre/windows/nanoserver-1809/Dockerfile.releases.full) -- `21_35-jdk`, `21-jdk`, `21`, `latest`: - - [`21_35-jdk-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`21_35-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`21_35-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `21_35-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21_35-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`21_35-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `21_35-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21_35-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`21_35-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `21_35-jre`, `21-jre`: - - [`21_35-jre-jammy`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`21_35-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`21_35-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `21_35-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21_35-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`21_35-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `21_35-jre-nanoserver`, `21-jre-nanoserver`: - - [`21_35-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`21_35-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/7360285847f9a281dfb23682be1351482a5ebe58/21/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `11.0.21_9-jdk`, `11-jdk`, `11`: + - [`11.0.21_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) + - [`11.0.21_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.21_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.21_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.21_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.21_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.21_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.21_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.21_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-1809/Dockerfile) +- `11.0.21_9-jre`, `11-jre`: + - [`11.0.21_9-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/jammy/Dockerfile) + - [`11.0.21_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.21_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.21_9-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.21_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.21_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.21_9-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.21_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.21_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-1809/Dockerfile) +- `17.0.9_9-jdk`, `17-jdk`, `17`: + - [`17.0.9_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/jammy/Dockerfile) + - [`17.0.9_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.9_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.9_9-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.9_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.9_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.9_9-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.9_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.9_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-1809/Dockerfile) +- `17.0.9_9-jre`, `17-jre`: + - [`17.0.9_9-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.9_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.9_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.9_9-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.9_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.9_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.9_9-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.9_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.9_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-1809/Dockerfile) +- `21.0.1_12-jdk`, `21-jdk`, `21`, `latest`: + - [`21.0.1_12-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubuntu/jammy/Dockerfile) + - [`21.0.1_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.1_12-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.1_12-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21.0.1_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.1_12-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.1_12-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21.0.1_12-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.1_12-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21.0.1_12-jre`, `21-jre`: + - [`21.0.1_12-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.1_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.1_12-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.1_12-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21.0.1_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.1_12-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.1_12-jre-nanoserver`, `21-jre-nanoserver`: + - [`21.0.1_12-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.1_12-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 909101e1c789..857b73fa51ee 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.3`, `5.39`, `devel`, `5.39.3-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main-bookworm/Dockerfile) -- [`5.39.3-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main-bullseye/Dockerfile) -- [`5.39.3-slim`, `5.39-slim`, `devel-slim`, `5.39.3-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim-bookworm/Dockerfile) -- [`5.39.3-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim-bullseye/Dockerfile) -- [`5.39.3-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.3-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main,threaded-bookworm/Dockerfile) -- [`5.39.3-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-main,threaded-bullseye/Dockerfile) -- [`5.39.3-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.3-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim,threaded-bookworm/Dockerfile) -- [`5.39.3-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d2d8aab002a6637612ed920fd6bacf21db9025a1/5.039.003-slim,threaded-bullseye/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.4`, `5.39`, `devel`, `5.39.4-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main-bookworm/Dockerfile) +- [`5.39.4-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main-bullseye/Dockerfile) +- [`5.39.4-slim`, `5.39-slim`, `devel-slim`, `5.39.4-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim-bookworm/Dockerfile) +- [`5.39.4-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim-bullseye/Dockerfile) +- [`5.39.4-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.4-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main,threaded-bookworm/Dockerfile) +- [`5.39.4-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main,threaded-bullseye/Dockerfile) +- [`5.39.4-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.4-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim,threaded-bookworm/Dockerfile) +- [`5.39.4-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From a24bd5dbc7b23e44b4db8b8f91edf8a9014ee41b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Oct 2023 18:18:10 -0700 Subject: [PATCH 0697/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index 456074c04a90..5cf5d5d488b4 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231021`, `latest`](https://github.com/vmware/photon-docker-image/blob/d42043c311abfcb8f72897cf1502879f6e123d74/docker/Dockerfile) -- [`4.0`, `4.0-20231021`](https://github.com/vmware/photon-docker-image/blob/aa758d33c2b1f954c0966f081212af012794c074/docker/Dockerfile) -- [`3.0`, `3.0-20231014`](https://github.com/vmware/photon-docker-image/blob/cd1c88a98f796df35ead98a1de708cbc083fb3d4/docker/Dockerfile) +- [`5.0`, `5.0-20231028`, `latest`](https://github.com/vmware/photon-docker-image/blob/3c3e9e5bb580a2867f636ceb9c1b51b4ad266f1c/docker/Dockerfile) +- [`4.0`, `4.0-20231028`](https://github.com/vmware/photon-docker-image/blob/1da3d47aaac6993510c7079e4896261169849789/docker/Dockerfile) +- [`3.0`, `3.0-20231028`](https://github.com/vmware/photon-docker-image/blob/8a0aa578c5e2559d9c6f836baa53bd17121eeddd/docker/Dockerfile) # Quick reference (cont.) From ee2c88eee82dc4082694e48264db648504eca8eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 31 Oct 2023 11:09:38 -0700 Subject: [PATCH 0698/2686] Run update.sh --- archlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index fd52e7d989b7..0f5cb2acf5ce 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20231015.0.185077`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/686bf22e2b94c89feb1a7e05ee03402404d7d3e7/Dockerfile.base) -- [`base-devel`, `base-devel-20231015.0.185077`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/686bf22e2b94c89feb1a7e05ee03402404d7d3e7/Dockerfile.base-devel) +- [`latest`, `base`, `base-20231029.0.188123`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/270e7d427498806277f0e487441bccb012f696fc/Dockerfile.base) +- [`base-devel`, `base-devel-20231029.0.188123`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/270e7d427498806277f0e487441bccb012f696fc/Dockerfile.base-devel) # Quick reference (cont.) From 0643e85d6e6e31d74a9d2a9dd96eecfa6037bfe1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 31 Oct 2023 17:09:41 -0700 Subject: [PATCH 0699/2686] Run update.sh --- clearlinux/README.md | 2 +- debian/README.md | 60 ++++++++++++++++++++++---------------------- monica/README.md | 6 ++--- r-base/README.md | 2 +- rabbitmq/README.md | 16 ++++++------ xwiki/README.md | 6 ++--- 6 files changed, 46 insertions(+), 46 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 7e33079d0ee0..c92fa291ee77 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7954acf861be4c823c3273bba4caeee8104f4f1e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/73d35d4c9eea8c8c212e82f6b80c688221a4d1d6/Dockerfile) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index f1f1d3099c8b..326f3027ec22 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20231009`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20231009-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20231009`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20231009-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/bullseye/slim/Dockerfile) -- [`buster`, `buster-20231009`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20231009-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/buster/slim/Dockerfile) -- [`experimental`, `experimental-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/rc-buggy/Dockerfile) -- [`sid`, `sid-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/sid/Dockerfile) -- [`sid-slim`, `sid-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/sid/slim/Dockerfile) -- [`stable`, `stable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/stable/slim/Dockerfile) -- [`testing`, `testing-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/testing/slim/Dockerfile) -- [`trixie`, `trixie-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20231009`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20231009-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/feccbb81c63226a8bf2e38315fc025a91fdd95dc/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20231030`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20231030-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20231030`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20231030-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/slim/Dockerfile) +- [`buster`, `buster-20231030`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20231030-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/slim/Dockerfile) +- [`experimental`, `experimental-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/rc-buggy/Dockerfile) +- [`sid`, `sid-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/sid/Dockerfile) +- [`sid-slim`, `sid-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/sid/slim/Dockerfile) +- [`stable`, `stable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/slim/Dockerfile) +- [`testing`, `testing-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/slim/Dockerfile) +- [`trixie`, `trixie-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/monica/README.md b/monica/README.md index 62664868078b..e36d30b2081c 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-apache`, `4.0-apache`, `4-apache`, `apache`, `4.0.0`, `4.0`, `4`, `latest`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/apache/Dockerfile) -- [`4.0.0-fpm-alpine`, `4.0-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/fpm-alpine/Dockerfile) -- [`4.0.0-fpm`, `4.0-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/fpm/Dockerfile) +- [`4.0.0-apache`, `4.0-apache`, `4-apache`, `apache`, `4.0.0`, `4.0`, `4`, `latest`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/apache/Dockerfile) +- [`4.0.0-fpm`, `4.0-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/fpm/Dockerfile) +- [`4.0.0-fpm-alpine`, `4.0-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/r-base/README.md b/r-base/README.md index 88d903217713..0e4ff0d8ae9a 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.1`, `latest`](https://github.com/rocker-org/rocker/blob/697411900789ece481e6a24be01e1ab3a3857b7d/r-base/4.3.1/Dockerfile) +- [`4.3.2`, `latest`](https://github.com/rocker-org/rocker/blob/fc5974d0cd04e4e281323a52251d8976239ea071/r-base/4.3.2/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9afe596fd003..b2f4def23c1b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.13.0-rc.1-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e4305ffb6bb437ce9e67e5590d467efd6890d216/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.1-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.7`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/7352e3888be20533a303cb0d2972a226d4615900/3.12/ubuntu/Dockerfile) -- [`3.12.7-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7352e3888be20533a303cb0d2972a226d4615900/3.12/alpine/Dockerfile) -- [`3.12.7-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.24`, `3.11`](https://github.com/docker-library/rabbitmq/blob/527cc3568a67533fc10a294b9814053f6412e083/3.11/ubuntu/Dockerfile) -- [`3.11.24-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.24-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/527cc3568a67533fc10a294b9814053f6412e083/3.11/alpine/Dockerfile) -- [`3.11.24-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.8`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/ubuntu/Dockerfile) +- [`3.12.8-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.8-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/alpine/Dockerfile) +- [`3.12.8-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.25`, `3.11`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/ubuntu/Dockerfile) +- [`3.11.25-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.25-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/alpine/Dockerfile) +- [`3.11.25-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 6c3d934fb31c..97f696c0ad01 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.8`, `15.8.0`, `15-mysql-tomcat`, `15.8-mysql-tomcat`, `15.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.8-postgres-tomcat`, `15.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.8-mariadb-tomcat`, `15.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2bd6303562284407b31fa7f473f4faff2823b238/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.9`, `15.9.0`, `15-mysql-tomcat`, `15.9-mysql-tomcat`, `15.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.9-postgres-tomcat`, `15.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.9-mariadb-tomcat`, `15.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.18`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.18-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.18-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.18-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mariadb-tomcat/Dockerfile) From fb9f1b1f4308e472e48bc94cb8965f07c81007aa Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Wed, 1 Nov 2023 12:20:16 +0100 Subject: [PATCH 0700/2686] Update monica docs --- monica/content.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/monica/content.md b/monica/content.md index 5c5d7adb5708..8edab36bc330 100644 --- a/monica/content.md +++ b/monica/content.md @@ -62,11 +62,11 @@ where `%%REPO%%` is the name of the service in your `docker-compose.yml` file. ## Configuration using environment variables -The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/main/.env.example) for common used variables you should setup. +The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup. ## Running the image with docker-compose -See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/master/.examples). +See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples). --- @@ -79,7 +79,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 1. Create a `docker-compose.yml` file ```yaml - version: "3.4" + version: "3.9" services: app: @@ -89,7 +89,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. ports: - 8080:80 environment: - - APP_KEY= + - APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32` - DB_HOST=db - DB_USERNAME=monica - DB_PASSWORD=secret @@ -98,7 +98,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. restart: always db: - image: mysql:5.7 + image: mariadb:11 environment: - MYSQL_RANDOM_ROOT_PASSWORD=true - MYSQL_DATABASE=monica @@ -135,12 +135,12 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. When using FPM image, you will need another container with a webserver to proxy http requests. In this example we use nginx with a basic container to do this. -1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](%%GITHUB-REPO%%/blob/master/.examples/supervisor/fpm/web/) +1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](%%GITHUB-REPO%%/blob/main/.examples/full/fpm/web/) ```sh mkdir web - curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/nginx.conf -o web/nginx.conf - curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/Dockerfile -o web/Dockerfile + curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/nginx.conf -o web/nginx.conf + curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/Dockerfile -o web/Dockerfile ``` The `web` container image should be pre-build before each deploy with: `docker-compose build`. @@ -148,7 +148,7 @@ When using FPM image, you will need another container with a webserver to proxy 2. Create a `docker-compose.yml` file ```yaml - version: "3.4" + version: "3.9" services: app: @@ -156,7 +156,7 @@ When using FPM image, you will need another container with a webserver to proxy depends_on: - db environment: - - APP_KEY= + - APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32` - DB_HOST=db - DB_USERNAME=monica - DB_PASSWORD=secret @@ -175,7 +175,7 @@ When using FPM image, you will need another container with a webserver to proxy restart: always db: - image: mysql:5.7 + image: mariadb:11 environment: - MYSQL_RANDOM_ROOT_PASSWORD=true - MYSQL_DATABASE=monica @@ -218,4 +218,4 @@ One way to expose your Monica instance is to use a proxy webserver from your hos ### Using a proxy webserver container -See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/master/.examples) to show how to a proxy webserver with ssl capabilities. +See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. From 4c847eb815035e752bba73246525bf3c8dc1c1a7 Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Wed, 1 Nov 2023 12:28:26 +0100 Subject: [PATCH 0701/2686] Fix mariadb Compose file examples --- mariadb/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mariadb/content.md b/mariadb/content.md index bbbe7c8b8753..2906b21dc290 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -235,6 +235,6 @@ This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Off - [MariaDB MaxScale](https://hub.docker.com/r/mariadb/maxscale/tags) - [MariaDB ColumnStore](https://hub.docker.com/r/mariadb/columnstore/tags) -# Componse File Examples +# Compose File Examples -Example compose files using this `%%IMAGE%%` are located in %%GITHUB-REPO% in the `/examples` folder. +Example compose files using this `%%IMAGE%%` are located in %%GITHUB-REPO%% in the `/examples` folder. From 1e1865eb52c5ab725dc44f255ffc9fed1a764497 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Nov 2023 15:26:07 -0700 Subject: [PATCH 0702/2686] Run update.sh --- aerospike/README.md | 2 +- bash/README.md | 2 +- dart/README.md | 4 +-- jetty/README.md | 60 ++++++++++++++++++++++----------------------- mariadb/README.md | 4 +-- monica/README.md | 24 +++++++++--------- sl/README.md | 2 +- 7 files changed, 49 insertions(+), 49 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 4dc686c3b374..47d0ec023c77 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -217,7 +217,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [debian:strech-slim](https://hub.docker.com/_/debian). +These images are based on [debian:*-slim](https://hub.docker.com/_/debian). ### ee-[version] diff --git a/bash/README.md b/bash/README.md index 8bf6b1c6b773..f86f7826da48 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231023`, `devel`, `devel-20231023-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/069d8927e1b5de80f948b58b6b2b615fd82456c0/devel/Dockerfile) +- [`devel-20231030`, `devel`, `devel-20231030-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/16576ce16333b5ceb07045b2d4114d1594a3a70e/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/dart/README.md b/dart/README.md index bb1bfabf1f34..7e284460332c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/stable/bookworm/Dockerfile) -- [`3.2.0-210.3.beta-sdk`, `beta-sdk`, `3.2.0-210.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/beta/bookworm/Dockerfile) +- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/stable/bookworm/Dockerfile) +- [`3.2.0-210.4.beta-sdk`, `beta-sdk`, `3.2.0-210.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index ef7faa38a964..aa13526716b6 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -35,42 +35,42 @@ WARNING: - [`9.4.53`, `9.4`, `9`, `9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.2-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.2-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.2-jre17`, `12.0-jre17`, `12-jre17`, `12.0.2-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.2-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.2-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.2`, `12.0`, `12`, `12.0.2-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.2-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.2-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.17-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.17-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.17-jre17`, `11.0-jre17`, `11-jre17`, `11.0.17-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.17-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.17-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.17-jre11`, `11.0-jre11`, `11-jre11`, `11.0.17-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.17-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.17-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.17`, `11.0`, `11`, `11.0.17-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.17-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.17-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.17-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.17-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.17-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.17-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.17-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.17-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.17-jre17`, `10.0-jre17`, `10-jre17`, `10.0.17-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.17-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.17-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.17-jre11`, `10.0-jre11`, `10-jre11`, `10.0.17-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.17-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.17-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.17`, `10.0`, `10`, `10.0.17-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.17-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.17-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.17-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.17-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.17-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.17-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`12.0.3-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.3-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.3-jre17`, `12.0-jre17`, `12-jre17`, `12.0.3-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.3-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.3-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.3`, `12.0`, `12`, `12.0.3-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.3-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.3-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.18-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.18-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.18-jre17`, `11.0-jre17`, `11-jre17`, `11.0.18-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.18-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.18-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.18-jre11`, `11.0-jre11`, `11-jre11`, `11.0.18-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.18-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.18-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.18`, `11.0`, `11`, `11.0.18-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.18-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.18-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.18-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.18-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.18-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.18-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.18-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.18-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.18-jre17`, `10.0-jre17`, `10-jre17`, `10.0.18-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.18-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.18-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.18-jre11`, `10.0-jre11`, `10-jre11`, `10.0.18-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.18-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.18-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.18`, `10.0`, `10`, `10.0.18-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.18-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.18-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.18-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.18-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.18-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.18-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) - [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17-alpine/Dockerfile) - [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.2-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.2-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.2-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.17-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.17-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.17-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.17-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.17-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.17-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.17-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.17-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.17-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.17-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/10.0/jdk11/Dockerfile) +- [`12.0.3-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.3-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.3-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.18-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.18-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.18-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.18-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.18-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.18-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.18-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.18-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.18-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.18-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index ac644d7b90b7..23a3bbc1730b 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -314,9 +314,9 @@ This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Off - [MariaDB MaxScale](https://hub.docker.com/r/mariadb/maxscale/tags) - [MariaDB ColumnStore](https://hub.docker.com/r/mariadb/columnstore/tags) -# Componse File Examples +# Compose File Examples -Example compose files using this `mariadb` are located in %%GITHUB-REPO% in the `/examples` folder. +Example compose files using this `mariadb` are located in https://github.com/MariaDB/mariadb-docker in the `/examples` folder. # License diff --git a/monica/README.md b/monica/README.md index e36d30b2081c..775bb0620bf4 100644 --- a/monica/README.md +++ b/monica/README.md @@ -111,11 +111,11 @@ where `monica` is the name of the service in your `docker-compose.yml` file. ## Configuration using environment variables -The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/main/.env.example) for common used variables you should setup. +The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup. ## Running the image with docker-compose -See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples). +See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples). --- @@ -128,7 +128,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 1. Create a `docker-compose.yml` file ```yaml - version: "3.4" + version: "3.9" services: app: @@ -138,7 +138,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. ports: - 8080:80 environment: - - APP_KEY= + - APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32` - DB_HOST=db - DB_USERNAME=monica - DB_PASSWORD=secret @@ -147,7 +147,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. restart: always db: - image: mysql:5.7 + image: mariadb:11 environment: - MYSQL_RANDOM_ROOT_PASSWORD=true - MYSQL_DATABASE=monica @@ -184,12 +184,12 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. When using FPM image, you will need another container with a webserver to proxy http requests. In this example we use nginx with a basic container to do this. -1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/master/.examples/supervisor/fpm/web/) +1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/main/.examples/full/fpm/web/) ```sh mkdir web - curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/nginx.conf -o web/nginx.conf - curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/Dockerfile -o web/Dockerfile + curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/nginx.conf -o web/nginx.conf + curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/Dockerfile -o web/Dockerfile ``` The `web` container image should be pre-build before each deploy with: `docker-compose build`. @@ -197,7 +197,7 @@ When using FPM image, you will need another container with a webserver to proxy 2. Create a `docker-compose.yml` file ```yaml - version: "3.4" + version: "3.9" services: app: @@ -205,7 +205,7 @@ When using FPM image, you will need another container with a webserver to proxy depends_on: - db environment: - - APP_KEY= + - APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32` - DB_HOST=db - DB_USERNAME=monica - DB_PASSWORD=secret @@ -224,7 +224,7 @@ When using FPM image, you will need another container with a webserver to proxy restart: always db: - image: mysql:5.7 + image: mariadb:11 environment: - MYSQL_RANDOM_ROOT_PASSWORD=true - MYSQL_DATABASE=monica @@ -267,7 +267,7 @@ One way to expose your Monica instance is to use a proxy webserver from your hos ### Using a proxy webserver container -See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples) to show how to a proxy webserver with ssl capabilities. +See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. # Image Variants diff --git a/sl/README.md b/sl/README.md index a6237e447156..25c1d7fc6e99 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/6774a5c2862153082a4f2271aa6073b5bd823e6b/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/bf1a75fd29d02465952d829b66a5f9081113555e/sl7/Dockerfile) # Quick reference (cont.) From 267b11378cdf0edbff98dfe31a10fdfe9832ea74 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Nov 2023 18:04:37 -0700 Subject: [PATCH 0703/2686] Run update.sh --- eclipse-temurin/README.md | 76 +++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index dd537ce10886..ec2f58c12fe7 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,24 +28,24 @@ WARNING: ## Simple Tags -- [`8u382-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/alpine/Dockerfile.releases.full) -- [`8u382-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/centos/Dockerfile.releases.full) -- [`8u382-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u382-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u382-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u382-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u382-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- [`8u382-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/alpine/Dockerfile.releases.full) -- [`8u382-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/focal/Dockerfile.releases.full) -- [`8u382-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/jammy/Dockerfile.releases.full) -- [`8u382-b05-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/centos/Dockerfile.releases.full) -- [`8u382-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubi/ubi9-minimal/Dockerfile.releases.full) -- [`8u382-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) -- [`8u382-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) -- [`8u382-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- [`8u382-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- [`8u392-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/alpine/Dockerfile) +- [`8u392-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/focal/Dockerfile) +- [`8u392-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u392-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/centos/Dockerfile) +- [`8u392-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u392-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u392-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u392-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u392-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u392-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/alpine/Dockerfile) +- [`8u392-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/focal/Dockerfile) +- [`8u392-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/jammy/Dockerfile) +- [`8u392-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/centos/Dockerfile) +- [`8u392-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u392-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u392-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u392-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u392-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-1809/Dockerfile) - [`11.0.21_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/alpine/Dockerfile) - [`11.0.21_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/focal/Dockerfile) - [`11.0.21_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) @@ -99,26 +99,26 @@ WARNING: ## Shared Tags -- `8u382-b05-jdk`, `8-jdk`, `8`: - - [`8u382-b05-jdk-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jdk/ubuntu/jammy/Dockerfile.releases.full) - - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u382-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u382-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u382-b05-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u382-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jdk/windows/nanoserver-1809/Dockerfile.releases.full) -- `8u382-b05-jre`, `8-jre`: - - [`8u382-b05-jre-jammy`](https://github.com/adoptium/containers/blob/f308aa1a9dc0ac8775662e4c4d71840088ab076c/8/jre/ubuntu/jammy/Dockerfile.releases.full) - - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u382-b05-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u382-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/windowsservercore-1809/Dockerfile.releases.full) -- `8u382-b05-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u382-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-ltsc2022/Dockerfile.releases.full) - - [`8u382-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a/8/jre/windows/nanoserver-1809/Dockerfile.releases.full) +- `8u392-b08-jdk`, `8-jdk`, `8`: + - [`8u392-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/jammy/Dockerfile) + - [`8u392-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u392-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u392-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u392-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u392-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u392-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u392-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u392-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-1809/Dockerfile) +- `8u392-b08-jre`, `8-jre`: + - [`8u392-b08-jre-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/jammy/Dockerfile) + - [`8u392-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u392-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u392-b08-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u392-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u392-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u392-b08-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u392-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u392-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-1809/Dockerfile) - `11.0.21_9-jdk`, `11-jdk`, `11`: - [`11.0.21_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) - [`11.0.21_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From c256d7470043fdaf3754206433be272e795571ad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Nov 2023 12:09:22 -0700 Subject: [PATCH 0704/2686] Run update.sh --- jruby/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index b27040f20a47..265f773ba9f2 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.4`, `9.4-jre`, `9.4-jre8`, `9.4.4-jre`, `9.4.4-jre8`, `9.4.4.0`, `9.4.4.0-jre`, `9.4.4.0-jre8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.4-jdk`, `9.4.4-jdk8`, `9.4.4.0-jdk`, `9.4.4.0-jdk8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.4-jre11`, `9.4.4.0-jre11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.4-jdk11`, `9.4.4.0-jdk11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.4-jdk17`, `9.4.4.0-jdk17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.4-jre17`, `9.4.4.0-jre17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.4/jre17/Dockerfile) -- [`9.3`, `9.3.11`, `9.3-jre`, `9.3-jre8`, `9.3.11-jre`, `9.3.11-jre8`, `9.3.11.0`, `9.3.11.0-jre`, `9.3.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.11-jdk`, `9.3.11-jdk8`, `9.3.11.0-jdk`, `9.3.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.11-jre11`, `9.3.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.11-jdk11`, `9.3.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.11-jdk17`, `9.3.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.11-jre17`, `9.3.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/71c4d676efb2fb5c5d837c31080ebb751ad00bec/9.3/jre17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.5`, `9.4-jre`, `9.4-jre8`, `9.4.5-jre`, `9.4.5-jre8`, `9.4.5.0`, `9.4.5.0-jre`, `9.4.5.0-jre8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.5-jdk`, `9.4.5-jdk8`, `9.4.5.0-jdk`, `9.4.5.0-jdk8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.5-jre11`, `9.4.5.0-jre11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.5-jdk11`, `9.4.5.0-jdk11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.5-jdk17`, `9.4.5.0-jdk17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.5-jre17`, `9.4.5.0-jre17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre17/Dockerfile) +- [`9.3`, `9.3.13`, `9.3-jre`, `9.3-jre8`, `9.3.13-jre`, `9.3.13-jre8`, `9.3.13.0`, `9.3.13.0-jre`, `9.3.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.13-jdk`, `9.3.13-jdk8`, `9.3.13.0-jdk`, `9.3.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.13-jre11`, `9.3.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.13-jdk11`, `9.3.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.13-jdk17`, `9.3.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.13-jre17`, `9.3.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre17/Dockerfile) # Quick reference (cont.) From 540d355cfa476af09dca29aa4f38493583182faa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Nov 2023 15:09:34 -0700 Subject: [PATCH 0705/2686] Run update.sh --- amazoncorretto/README.md | 82 ++++++++++++++++++++-------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index fde40c981a10..7f15305f1553 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u392-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u392-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.21-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.9-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/17/jdk/alpine/3.18/Dockerfile) -- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/headful/al2023/Dockerfile) -- [`21-alpine3.15`, `21.0.1-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.15/Dockerfile) -- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0e2e85aa4c7be56f1383ffcb50c5884aa9e3f83f/21/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2/Dockerfile) +- [`8-alpine3.15`, `8u392-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.15/Dockerfile) +- [`8-alpine3.15-jre`, `8u392-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.15/Dockerfile) +- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2/Dockerfile) +- [`11-alpine3.15`, `11.0.21-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.15/Dockerfile) +- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2/Dockerfile) +- [`17-alpine3.15`, `17.0.9-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.15/Dockerfile) +- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/headful/al2023/Dockerfile) +- [`21-alpine3.15`, `21.0.1-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.15/Dockerfile) +- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) From 992f1c9bf345356929bbcb1c3f01c09cd29be732 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Nov 2023 17:09:21 -0700 Subject: [PATCH 0706/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 5de9167ded3d..1eac0060c0c9 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2`](https://github.com/docker-library/elasticsearch/blob/e01a04645b0c3f0abd13b9f11a69d7c884d9405a/8/Dockerfile) -- [`7.17.13`](https://github.com/docker-library/elasticsearch/blob/91b35e027265ce33d16bb0f88884f5897a11328e/7/Dockerfile) +- [`8.10.4`](https://github.com/docker-library/elasticsearch/blob/d1265e69805eeea34ef3986b87f1361826510b02/8/Dockerfile) +- [`7.17.14`](https://github.com/docker-library/elasticsearch/blob/59d22a26ecf5dd91403608437300f297953d57d1/7/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index d4480d6a4ba3..c81fb9ae548d 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2`](https://github.com/docker-library/kibana/blob/3665097f9e6714e04e3e40f947d7c8f0e4928a2c/8/Dockerfile) -- [`7.17.13`](https://github.com/docker-library/kibana/blob/e79be1ed96f3a741881bbd741c5816aa9273ac2f/7/Dockerfile) +- [`8.10.4`](https://github.com/docker-library/kibana/blob/80b2a8744c168da3b7227e2cf34c9d09f1287077/8/Dockerfile) +- [`7.17.14`](https://github.com/docker-library/kibana/blob/a19c898e1c1c78025376bb5cbcab4a6244f39ddc/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index d200872481ce..9358f75fde0d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2`](https://github.com/docker-library/logstash/blob/a42629bc1187f17e6955ad4d887b3c5f0f23081f/8/Dockerfile) -- [`7.17.13`](https://github.com/docker-library/logstash/blob/a6039d10cfa0f21d86c08f473b9a18c6b94be352/7/Dockerfile) +- [`8.10.4`](https://github.com/docker-library/logstash/blob/b7f90bae4346f5e5ad82e1d55660e5c24f253697/8/Dockerfile) +- [`7.17.14`](https://github.com/docker-library/logstash/blob/d9df987bd398bf87b134970ab93f5a46dbe8638a/7/Dockerfile) # Quick reference (cont.) From 70c0dfc4c04cfa337e5f8fa09f750caaf34395c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Nov 2023 15:18:18 -0700 Subject: [PATCH 0707/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- neo4j/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index df668c540024..74523a48d0a2 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.2.20231018.2`](https://github.com/amazonlinux/container-images/blob/ba9fd7ed5735a8ed7c01406726debd4386eb81c9/Dockerfile) -- [`2`, `2.0.20231020.1`](https://github.com/amazonlinux/container-images/blob/da6f3f58f5d173ca4b7fc8c2665c2e63b4e4880f/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20231002.0`](https://github.com/amazonlinux/container-images/blob/a71cd32b94ea6e1f8a5fad33f9614695e34ae1a8/Dockerfile) +- [`2023`, `latest`, `2023.2.20231026.0`](https://github.com/amazonlinux/container-images/blob/a91cdfe045001e6c564070f467a5ddc21bbaaad3/Dockerfile) +- [`2`, `2.0.20231101.0`](https://github.com/amazonlinux/container-images/blob/75d8ec841d42a12103774b888bf14a4b8bb7752b/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231024.0`](https://github.com/amazonlinux/container-images/blob/2c8d2ccf663a8e07e8a87b7e98049c69956d05c7/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 846ff0619b6a..e0fcb86ccf05 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.13.0-enterprise-bullseye`, `5.13-enterprise-bullseye`, `5-enterprise-bullseye`, `5.13.0-enterprise`, `5.13-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/bullseye/enterprise/Dockerfile) - [`5.13.0-community-ubi8`, `5.13-community-ubi8`, `5-community-ubi8`, `5.13.0-ubi8`, `5.13-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/community/Dockerfile) - [`5.13.0-enterprise-ubi8`, `5.13-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/enterprise/Dockerfile) -- [`4.4.26`, `4.4.26-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/community/Dockerfile) -- [`4.4.26-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/06d08eefe166a90662ea228cfbddce3438bd2732/4.4.26/bullseye/enterprise/Dockerfile) +- [`4.4.27`, `4.4.27-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/6c15231abd6294f0a736b4a46f59d258dea7f672/4.4.27/bullseye/community/Dockerfile) +- [`4.4.27-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/6c15231abd6294f0a736b4a46f59d258dea7f672/4.4.27/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 78e17e3f0009fc2ef3ddb1e598448cfb29b7e50f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Nov 2023 16:19:25 -0700 Subject: [PATCH 0708/2686] Run update.sh --- drupal/README.md | 24 ++++++++++++------------ elixir/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- redis/README.md | 16 ++++++++-------- wordpress/README.md | 18 +++++++++--------- 6 files changed, 44 insertions(+), 44 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 33b6f8c31f77..d8076738ac07 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.5-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.5-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.5-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.5-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.5-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.5`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.5-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.5-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.5-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.5-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.5-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.5-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.5-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.5-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.5-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.5-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.5-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.5-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.5-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.5-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.5-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.5-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.5-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.5-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.5-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.5-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.5-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.5-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.5-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.5-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/bb0511c786f0c73f72f91fa83f8f48a17b0341b0/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.6-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.6-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.6-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.6-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.6-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.6-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.6-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.6-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.6-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.6-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.6-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.6-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.6-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.6-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.6-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.6-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.6-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.6-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.6-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.6-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.6-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.6-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.6-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.6-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.6-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.6-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.6-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.6-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.6-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.17/Dockerfile) - [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bullseye/Dockerfile) diff --git a/elixir/README.md b/elixir/README.md index c3d5dd90c767..7ce54f702e54 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.6`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/Dockerfile) -- [`1.15.6-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/slim/Dockerfile) -- [`1.15.6-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/alpine/Dockerfile) -- [`1.15.6-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24/Dockerfile) -- [`1.15.6-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24-alpine/Dockerfile) -- [`1.15.6-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-24-slim/Dockerfile) -- [`1.15.6-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25/Dockerfile) -- [`1.15.6-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25-alpine/Dockerfile) -- [`1.15.6-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980/1.15/otp-25-slim/Dockerfile) +- [`1.15.7`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) +- [`1.15.7-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) +- [`1.15.7-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) +- [`1.15.7-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24/Dockerfile) +- [`1.15.7-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-alpine/Dockerfile) +- [`1.15.7-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-slim/Dockerfile) +- [`1.15.7-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25/Dockerfile) +- [`1.15.7-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-alpine/Dockerfile) +- [`1.15.7-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 13cef0a87d80..32b9d9708f85 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.71.0`, `5.71`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d9b12cc686ca5744a9f7882351cf314e3a09774f/5/debian/Dockerfile) -- [`5.71.0-alpine`, `5.71-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9b12cc686ca5744a9f7882351cf314e3a09774f/5/alpine/Dockerfile) +- [`5.72.0`, `5.72`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c85ed82d808917fb5c6a593cde967d3e736da3d3/5/debian/Dockerfile) +- [`5.72.0-alpine`, `5.72-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c85ed82d808917fb5c6a593cde967d3e736da3d3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b2f4def23c1b..7c41ddffd4fc 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.1`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/e4305ffb6bb437ce9e67e5590d467efd6890d216/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-rc.1-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e4305ffb6bb437ce9e67e5590d467efd6890d216/3.13-rc/alpine/Dockerfile) -- [`3.13.0-rc.1-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-rc.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.8`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/ubuntu/Dockerfile) - [`3.12.8-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.8-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 8638cc97d9ee..edd9707524d5 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.2`, `7.2`, `7`, `latest`, `7.2.2-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/f00ff0562e52e24f0cde26988628ad7de51fd8d8/7.2/Dockerfile) -- [`7.2.2-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.2-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redis/blob/f00ff0562e52e24f0cde26988628ad7de51fd8d8/7.2/alpine/Dockerfile) -- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/ce25672f1723a6851c7a884c9f860117746c34ed/7.0/Dockerfile) -- [`7.0.14-alpine`, `7.0-alpine`, `7.0.14-alpine3.18`, `7.0-alpine3.18`](https://github.com/docker-library/redis/blob/ce25672f1723a6851c7a884c9f860117746c34ed/7.0/alpine/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/1bca8586ef48732eca80d1ae4823145689f2f906/6.2/Dockerfile) -- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`](https://github.com/docker-library/redis/blob/1bca8586ef48732eca80d1ae4823145689f2f906/6.2/alpine/Dockerfile) -- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/Dockerfile) -- [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.18`, `6.0-alpine3.18`](https://github.com/docker-library/redis/blob/873a7cac27da5a275d0c1e0c7d41724ae2701071/6.0/alpine/Dockerfile) +- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/1af13e52501a21d27b67030311320c3911be6edb/7.2/bookworm/Dockerfile) +- [`7.2.3-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`, `7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/redis/blob/1af13e52501a21d27b67030311320c3911be6edb/7.2/alpine3.18/Dockerfile) +- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/7.0/bookworm/Dockerfile) +- [`7.0.14-alpine3.18`, `7.0-alpine3.18`, `7.0.14-alpine`, `7.0-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/7.0/alpine3.18/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.2/bookworm/Dockerfile) +- [`6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`, `6.2.14-alpine`, `6.2-alpine`, `6-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.2/alpine3.18/Dockerfile) +- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.0/bookworm/Dockerfile) +- [`6.0.20-alpine3.18`, `6.0-alpine3.18`, `6.0.20-alpine`, `6.0-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index a78ca5b51ae6..589649e077cf 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-RC2-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC2`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC2-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC2-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-RC2-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC2-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-RC2-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC2-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-RC2-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC2-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-RC2-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-RC2-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-RC2-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC2-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-RC2-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-RC2-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3ed0c9ad0dccfaaf7d815637fad262e6c04b3a22/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4-RC3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC3-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC3-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/apache/Dockerfile) +- [`beta-6.4-RC3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC3-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/fpm/Dockerfile) +- [`beta-6.4-RC3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC3-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/fpm-alpine/Dockerfile) +- [`beta-6.4-RC3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/apache/Dockerfile) +- [`beta-6.4-RC3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4-RC3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4-RC3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/apache/Dockerfile) +- [`beta-6.4-RC3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4-RC3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From 84f820b83f5504ce0b0e8f8c8fae99f1c9f3f571 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Nov 2023 17:22:46 -0700 Subject: [PATCH 0709/2686] Run update.sh --- elasticsearch/README.md | 1 + kibana/README.md | 1 + logstash/README.md | 1 + openjdk/README.md | 36 ++++++++++++++++++------------------ 4 files changed, 21 insertions(+), 18 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 1eac0060c0c9..925f9d6a2235 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,6 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.10.3`](https://github.com/docker-library/elasticsearch/blob/2d1506e4c1ad26c8e180b33e84feefa179cdac22/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/elasticsearch/blob/d1265e69805eeea34ef3986b87f1361826510b02/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/elasticsearch/blob/59d22a26ecf5dd91403608437300f297953d57d1/7/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index c81fb9ae548d..bf793353ec3e 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,6 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.10.3`](https://github.com/docker-library/kibana/blob/fc439ccc2255a47957081ece0cb32b05a203d888/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/kibana/blob/80b2a8744c168da3b7227e2cf34c9d09f1287077/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/kibana/blob/a19c898e1c1c78025376bb5cbcab4a6244f39ddc/7/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 9358f75fde0d..8ddb38de012a 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,6 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.10.3`](https://github.com/docker-library/logstash/blob/0e1075e50d8a5bff32fe66e3be3115003bdc3b02/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/logstash/blob/b7f90bae4346f5e5ad82e1d55660e5c24f253697/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/logstash/blob/d9df987bd398bf87b134970ab93f5a46dbe8638a/7/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 9df234b3df82..42a61cc8368a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-21-jdk-oraclelinux8`, `22-ea-21-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-21-jdk-oracle`, `22-ea-21-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-21-jdk-oraclelinux7`, `22-ea-21-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-21-jdk-bookworm`, `22-ea-21-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/bookworm/Dockerfile) -- [`22-ea-21-jdk-slim-bookworm`, `22-ea-21-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-21-jdk-slim`, `22-ea-21-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-21-jdk-bullseye`, `22-ea-21-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/bullseye/Dockerfile) -- [`22-ea-21-jdk-slim-bullseye`, `22-ea-21-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-21-jdk-windowsservercore-ltsc2022`, `22-ea-21-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-21-jdk-windowsservercore-1809`, `22-ea-21-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-21-jdk-nanoserver-1809`, `22-ea-21-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-22-jdk-oraclelinux8`, `22-ea-22-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-22-jdk-oracle`, `22-ea-22-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-22-jdk-oraclelinux7`, `22-ea-22-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-22-jdk-bookworm`, `22-ea-22-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/bookworm/Dockerfile) +- [`22-ea-22-jdk-slim-bookworm`, `22-ea-22-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-22-jdk-slim`, `22-ea-22-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-22-jdk-bullseye`, `22-ea-22-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/bullseye/Dockerfile) +- [`22-ea-22-jdk-slim-bullseye`, `22-ea-22-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-22-jdk-windowsservercore-ltsc2022`, `22-ea-22-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-22-jdk-windowsservercore-1809`, `22-ea-22-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-22-jdk-nanoserver-1809`, `22-ea-22-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-21-jdk`, `22-ea-21`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-21-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-21-jdk-windowsservercore`, `22-ea-21-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-21-jdk-nanoserver`, `22-ea-21-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b8677ffe605a897650dc98a86e6827501bacdd59/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-22-jdk`, `22-ea-22`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-22-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-22-jdk-windowsservercore`, `22-ea-22-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-22-jdk-nanoserver`, `22-ea-22-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 34b9617e478b8923837bff20075ead5de687d40b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Nov 2023 15:10:22 -0800 Subject: [PATCH 0710/2686] Run update.sh --- archlinux/README.md | 4 ++-- cassandra/README.md | 2 +- clearlinux/README.md | 2 +- crate/README.md | 2 +- fedora/README.md | 8 ++++---- xwiki/README.md | 18 +++++++++--------- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 0f5cb2acf5ce..e6fbb148aba3 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20231029.0.188123`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/270e7d427498806277f0e487441bccb012f696fc/Dockerfile.base) -- [`base-devel`, `base-devel-20231029.0.188123`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/270e7d427498806277f0e487441bccb012f696fc/Dockerfile.base-devel) +- [`latest`, `base`, `base-20231105.0.189722`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec02e22e80a5f701bfc8edfac17219dd1ea5da8/Dockerfile.base) +- [`base-devel`, `base-devel-20231105.0.189722`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec02e22e80a5f701bfc8edfac17219dd1ea5da8/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/cassandra/README.md b/cassandra/README.md index 23c52c3129f2..026c953ad410 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-alpha1`, `5.0`](https://github.com/docker-library/cassandra/blob/01dffce9d5d205f61733cbffaaf8973cc586219b/5.0/Dockerfile) +- [`5.0-alpha2`, `5.0`, `5`](https://github.com/docker-library/cassandra/blob/12ee728efc59b4aa6cc02c637396c8460ee1e3cd/5.0/Dockerfile) - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) - [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) - [`3.11.16`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index c92fa291ee77..667e5e19e37e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/73d35d4c9eea8c8c212e82f6b80c688221a4d1d6/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a2ae74342e6528e27d9f5e089d55fd489a33d69/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index c0b50e9e7058..0b049a23add1 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.4`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/790a48bb9153af972edffce6576be43637eb5a07/Dockerfile) +- [`5.4.5`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/3aa005838421825260d39fb3f889619d6c88ce4f/Dockerfile) - [`5.3.7`, `5.3`](https://github.com/crate/docker-crate/blob/a268470d8e3c2da23bfabb71fe17213966a88bdf/Dockerfile) - [`5.2.10`, `5.2`](https://github.com/crate/docker-crate/blob/54246541fd0ba36831fbcf05183915097b91b3b1/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index 2b279b8d3988..48e7cca27d15 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/92f8d968c2d36860c10f454673a7cc279eeff27e/x86_64/Dockerfile) -- [`38`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8e90bfda941f51e85c0742f51fb8901f05574a0a/x86_64/Dockerfile) -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/48661c7e79573338c8bf5f0bf203154b77c4e5bc/x86_64/Dockerfile) -- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5fe5849c451c8a40a4bd7521792fa2683c93678e/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/35dc602fb77de3f4cd4baab66574bec64b64240a/x86_64/Dockerfile) +- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/97461ab278dd434ae468092ea9402a29784c4747/x86_64/Dockerfile) +- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f2251d1a1e4487a7df8d56ec4297bfb1ad3e5e46/x86_64/Dockerfile) +- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/01790edc0998a3812a7b9f94aaa31808d482f87e/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 97f696c0ad01..45fbd8441405 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.9`, `15.9.0`, `15-mysql-tomcat`, `15.9-mysql-tomcat`, `15.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.9-postgres-tomcat`, `15.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.9-mariadb-tomcat`, `15.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb5d39e5ce02db751013c2cba0523c6e51c14007/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.18`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.18-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.18-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.18-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4e80c262cf6abada20d81281a678a681cf0941e5/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d5e7c6ee8003f308fe35ee06674e87bd079c4f47/15.5/mariadb-tomcat/Dockerfile) +- [`15`, `15.9`, `15.9.0`, `15-mysql-tomcat`, `15.9-mysql-tomcat`, `15.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.9-postgres-tomcat`, `15.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.9-mariadb-tomcat`, `15.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.18`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.18-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.18-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.18-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 9152acf3e1a310f7a2c3346efea4045cbab823ba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Nov 2023 18:09:19 -0800 Subject: [PATCH 0711/2686] Run update.sh --- elasticsearch/README.md | 1 - kibana/README.md | 1 - logstash/README.md | 1 - 3 files changed, 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 925f9d6a2235..1eac0060c0c9 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.3`](https://github.com/docker-library/elasticsearch/blob/2d1506e4c1ad26c8e180b33e84feefa179cdac22/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/elasticsearch/blob/d1265e69805eeea34ef3986b87f1361826510b02/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/elasticsearch/blob/59d22a26ecf5dd91403608437300f297953d57d1/7/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index bf793353ec3e..c81fb9ae548d 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.3`](https://github.com/docker-library/kibana/blob/fc439ccc2255a47957081ece0cb32b05a203d888/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/kibana/blob/80b2a8744c168da3b7227e2cf34c9d09f1287077/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/kibana/blob/a19c898e1c1c78025376bb5cbcab4a6244f39ddc/7/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 8ddb38de012a..9358f75fde0d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.3`](https://github.com/docker-library/logstash/blob/0e1075e50d8a5bff32fe66e3be3115003bdc3b02/8.10.3/Dockerfile) - [`8.10.4`](https://github.com/docker-library/logstash/blob/b7f90bae4346f5e5ad82e1d55660e5c24f253697/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/logstash/blob/d9df987bd398bf87b134970ab93f5a46dbe8638a/7/Dockerfile) From 398eca0dee550f38937493bb19ea01552a7abf07 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Nov 2023 12:18:06 -0800 Subject: [PATCH 0712/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index ddaaea88ec3f..70bed875c604 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.21.3-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bookworm/Dockerfile) -- [`1.21.3-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bullseye/Dockerfile) -- [`1.21.3-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.3-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/alpine3.18/Dockerfile) -- [`1.21.3-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/alpine3.17/Dockerfile) -- [`1.21.3-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.3-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.3-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.3-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.10-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bookworm/Dockerfile) -- [`1.20.10-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bullseye/Dockerfile) -- [`1.20.10-alpine3.18`, `1.20-alpine3.18`, `1.20.10-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/alpine3.18/Dockerfile) -- [`1.20.10-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/alpine3.17/Dockerfile) -- [`1.20.10-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.10-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.10-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.10-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.4-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bookworm/Dockerfile) +- [`1.21.4-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bullseye/Dockerfile) +- [`1.21.4-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.4-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/alpine3.18/Dockerfile) +- [`1.21.4-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/alpine3.17/Dockerfile) +- [`1.21.4-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.4-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.4-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.4-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.11-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bookworm/Dockerfile) +- [`1.20.11-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bullseye/Dockerfile) +- [`1.20.11-alpine3.18`, `1.20-alpine3.18`, `1.20.11-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/alpine3.18/Dockerfile) +- [`1.20.11-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/alpine3.17/Dockerfile) +- [`1.20.11-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.11-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.11-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.11-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21.3`, `1.21`, `1`, `latest`: - - [`1.21.3-bookworm`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/bookworm/Dockerfile) - - [`1.21.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.3-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.3-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/079c1fa6a2b011b1a81f902da6498d527f311dd5/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.10`, `1.20`: - - [`1.20.10-bookworm`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/bookworm/Dockerfile) - - [`1.20.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.10-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.10-nanoserver`, `1.20-nanoserver`: - - [`1.20.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/ef9079ff127908149138a53eef705046891fa120/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.4`, `1.21`, `1`, `latest`: + - [`1.21.4-bookworm`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bookworm/Dockerfile) + - [`1.21.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.4-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.4-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.11`, `1.20`: + - [`1.20.11-bookworm`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bookworm/Dockerfile) + - [`1.20.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.11-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.11-nanoserver`, `1.20-nanoserver`: + - [`1.20.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 83316654dd3a494e1bf3f7beea1ec02c87edfb53 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Nov 2023 15:18:11 -0800 Subject: [PATCH 0713/2686] Run update.sh --- crate/README.md | 3 ++- odoo/README.md | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/crate/README.md b/crate/README.md index 0b049a23add1..89a8472ed874 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.5`, `5.4`, `latest`](https://github.com/crate/docker-crate/blob/3aa005838421825260d39fb3f889619d6c88ce4f/Dockerfile) +- [`5.5.0`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/f8585f1e0ade12c0ae4bf61aac81e8c79958a84e/Dockerfile) +- [`5.4.5`, `5.4`](https://github.com/crate/docker-crate/blob/3aa005838421825260d39fb3f889619d6c88ce4f/Dockerfile) - [`5.3.7`, `5.3`](https://github.com/crate/docker-crate/blob/a268470d8e3c2da23bfabb71fe17213966a88bdf/Dockerfile) - [`5.2.10`, `5.2`](https://github.com/crate/docker-crate/blob/54246541fd0ba36831fbcf05183915097b91b3b1/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index fcfd4d322022..8e6d4dee378c 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/d04d885eea6b8f60ada727fcc498f5a8fd44da51/14.0/Dockerfile) +- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/15.0/Dockerfile) +- [`14.0`, `14`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/14.0/Dockerfile) # Quick reference (cont.) @@ -34,7 +34,7 @@ WARNING: [https://github.com/odoo/docker/issues](https://github.com/odoo/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/odoo/) + [`amd64`](https://hub.docker.com/r/amd64/odoo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/odoo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/odoo/) - **Published image artifact details**: [repo-info repo's `repos/odoo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/odoo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/odoo)) From d4edafc1b6b257d0968f1f273280373338f03a60 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Nov 2023 16:09:34 -0800 Subject: [PATCH 0714/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- julia/README.md | 26 +++++++++++++------------- kibana/README.md | 2 +- logstash/README.md | 2 +- wordpress/README.md | 27 +++++++++------------------ 8 files changed, 30 insertions(+), 39 deletions(-) diff --git a/bash/README.md b/bash/README.md index f86f7826da48..605c7b2095df 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231030`, `devel`, `devel-20231030-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/16576ce16333b5ceb07045b2d4114d1594a3a70e/devel/Dockerfile) +- [`devel-20231106`, `devel`, `devel-20231106-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/bd68c713fb88af7365d921de614c2783766540e8/devel/Dockerfile) - [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 1eac0060c0c9..d087a33b78fa 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.4`](https://github.com/docker-library/elasticsearch/blob/d1265e69805eeea34ef3986b87f1361826510b02/8/Dockerfile) +- [`8.11.0`](https://github.com/docker-library/elasticsearch/blob/d4d6ab49e6fb9bdc82adb84014035f4892d1b092/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/elasticsearch/blob/59d22a26ecf5dd91403608437300f297953d57d1/7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 32b9d9708f85..31e19746e5d0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.72.0`, `5.72`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c85ed82d808917fb5c6a593cde967d3e736da3d3/5/debian/Dockerfile) -- [`5.72.0-alpine`, `5.72-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c85ed82d808917fb5c6a593cde967d3e736da3d3/5/alpine/Dockerfile) +- [`5.72.1`, `5.72`, `5`, `latest`](https://github.com/docker-library/ghost/blob/45d9e46166cd5a56cbd91776ebe773ff1bb23d47/5/debian/Dockerfile) +- [`5.72.1-alpine`, `5.72-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/45d9e46166cd5a56cbd91776ebe773ff1bb23d47/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 6aa7a0630e2a..a4bb9e808955 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev8`, `2.9-dev`, `2.9-dev8-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/5d74ee5acfe35f75fe3a814ad77f0ceee92af260/2.9/Dockerfile) -- [`2.9-dev8-alpine`, `2.9-dev-alpine`, `2.9-dev8-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/5d74ee5acfe35f75fe3a814ad77f0ceee92af260/2.9/alpine/Dockerfile) +- [`2.9-dev9`, `2.9-dev`, `2.9-dev9-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/a86b78650d7054ebd03deb668c299c8cf5e14f3b/2.9/Dockerfile) +- [`2.9-dev9-alpine`, `2.9-dev-alpine`, `2.9-dev9-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/a86b78650d7054ebd03deb668c299c8cf5e14f3b/2.9/alpine/Dockerfile) - [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) - [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 8634abccaff6..473d7582b4d2 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-beta3-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-beta3-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-beta3-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-beta3-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-beta3-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/alpine3.17/Dockerfile) -- [`1.10.0-beta3-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-beta3-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-rc1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-rc1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-rc1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-rc1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-rc1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-rc1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.3-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) - [`1.9.3-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bullseye/Dockerfile) - [`1.9.3-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.3-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.18/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.10.0-beta3`, `1.10-rc`, `rc`: - - [`1.10.0-beta3-bookworm`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-beta3-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/b079ad40685c641e9ff6b880e6dc3ba311a2baf7/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc1`, `1.10-rc`, `rc`: + - [`1.10.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.3`, `1.9`, `1`, `latest`: - [`1.9.3-bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index c81fb9ae548d..4f7f02594fa6 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.4`](https://github.com/docker-library/kibana/blob/80b2a8744c168da3b7227e2cf34c9d09f1287077/8/Dockerfile) +- [`8.11.0`](https://github.com/docker-library/kibana/blob/25daf858f68ac38906ab83243bdfc8f4f79962f1/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/kibana/blob/a19c898e1c1c78025376bb5cbcab4a6244f39ddc/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 9358f75fde0d..e7c7083e0234 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.4`](https://github.com/docker-library/logstash/blob/b7f90bae4346f5e5ad82e1d55660e5c24f253697/8/Dockerfile) +- [`8.11.0`](https://github.com/docker-library/logstash/blob/0abad0b071d05a8959f6741841b8f7d307e649e7/8/Dockerfile) - [`7.17.14`](https://github.com/docker-library/logstash/blob/d9df987bd398bf87b134970ab93f5a46dbe8638a/7/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 589649e077cf..1a291ac06cff 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.2-apache`, `6.3-apache`, `6-apache`, `apache`, `6.3.2`, `6.3`, `6`, `latest`, `6.3.2-php8.0-apache`, `6.3-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.3.2-php8.0`, `6.3-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/apache/Dockerfile) -- [`6.3.2-fpm`, `6.3-fpm`, `6-fpm`, `fpm`, `6.3.2-php8.0-fpm`, `6.3-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/fpm/Dockerfile) -- [`6.3.2-fpm-alpine`, `6.3-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.3.2-php8.0-fpm-alpine`, `6.3-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.3.2-php8.1-apache`, `6.3-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.3.2-php8.1`, `6.3-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/apache/Dockerfile) -- [`6.3.2-php8.1-fpm`, `6.3-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/fpm/Dockerfile) -- [`6.3.2-php8.1-fpm-alpine`, `6.3-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.3.2-php8.2-apache`, `6.3-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.3.2-php8.2`, `6.3-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/apache/Dockerfile) -- [`6.3.2-php8.2-fpm`, `6.3-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm/Dockerfile) -- [`6.3.2-php8.2-fpm-alpine`, `6.3-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d5bd0cc496f7e3976a8535dd670ca6d3763af1d/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.0-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.0`, `6.4`, `6`, `latest`, `6.4.0-php8.0-apache`, `6.4-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.4.0-php8.0`, `6.4-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/apache/Dockerfile) +- [`6.4.0-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.0-php8.0-fpm`, `6.4-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/fpm/Dockerfile) +- [`6.4.0-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.0-php8.0-fpm-alpine`, `6.4-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.4.0-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.0-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/apache/Dockerfile) +- [`6.4.0-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/fpm/Dockerfile) +- [`6.4.0-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.0-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.0-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/apache/Dockerfile) +- [`6.4.0-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/fpm/Dockerfile) +- [`6.4.0-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) -- [`beta-6.4-RC3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4-RC3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4-RC3-php8.0-apache`, `beta-6.4-php8.0-apache`, `beta-6-php8.0-apache`, `beta-php8.0-apache`, `beta-6.4-RC3-php8.0`, `beta-6.4-php8.0`, `beta-6-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/apache/Dockerfile) -- [`beta-6.4-RC3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4-RC3-php8.0-fpm`, `beta-6.4-php8.0-fpm`, `beta-6-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/fpm/Dockerfile) -- [`beta-6.4-RC3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4-RC3-php8.0-fpm-alpine`, `beta-6.4-php8.0-fpm-alpine`, `beta-6-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.0/fpm-alpine/Dockerfile) -- [`beta-6.4-RC3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4-RC3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/apache/Dockerfile) -- [`beta-6.4-RC3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4-RC3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4-RC3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4-RC3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/apache/Dockerfile) -- [`beta-6.4-RC3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4-RC3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f6015e3f57f8285ee77acf56f8a86405b7308f95/beta/php8.2/fpm-alpine/Dockerfile) # Quick reference (cont.) From db2ee79627f3baab969a0b2ed3d1081058cfd820 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Nov 2023 11:09:22 -0800 Subject: [PATCH 0715/2686] Run update.sh --- nats/README.md | 42 ++++++++--------- tomee/README.md | 119 +++++++++++++++++++++++------------------------- 2 files changed, 77 insertions(+), 84 deletions(-) diff --git a/nats/README.md b/nats/README.md index 673ae816a682..fcd97e25efde 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.4-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.4-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/alpine3.18/Dockerfile) -- [`2.10.4-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.4-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) -- [`2.10.4-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.4-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.23-alpine3.18`, `2.9-alpine3.18`, `2.9.23-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/alpine3.18/Dockerfile) -- [`2.9.23-scratch`, `2.9-scratch`, `2.9.23-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) -- [`2.9.23-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.23-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.4-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.4-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/alpine3.18/Dockerfile) +- [`2.10.4-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.4-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) +- [`2.10.4-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.4-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags - `2.10.4`, `2.10`: - - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/scratch/Dockerfile) - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) + - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) - `2.10.4-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/windowsservercore-1809/Dockerfile) - `2.10.4-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.10.x/nanoserver-1809/Dockerfile) -- `2.9.23`, `2.9`: - - [`2.9.23-scratch`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/scratch/Dockerfile) -- `2.9.23-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/windowsservercore-1809/Dockerfile) -- `2.9.23-nanoserver`, `2.9-nanoserver`: - - [`2.9.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/527dad8cfc64d7afba2993351697cc0b44b03854/2.9.x/nanoserver-1809/Dockerfile) + - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) +- `2.9.24`, `2.9`: + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) +- `2.9.24-windowsservercore`, `2.9-windowsservercore`: + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/windowsservercore-1809/Dockerfile) +- `2.9.24-nanoserver`, `2.9-nanoserver`: + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index fc5b45dfcc4d..e4dbd4d9c003 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,69 +24,62 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre-7.0.9-plume`, `7.0.9-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.0.9-plus`, `7.0.9-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.0.9-webprofile`, `7.0`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8-jre-7.1.4-plume`, `7.1.4-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8-jre-7.1.4-plus`, `7.1.4-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8-jre-7.1.4-microprofile`, `7.1.4-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8-jre-7.1.4-webprofile`, `7.1.4-webprofile`, `7`, `7.1`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-7.1/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-webprofile`, `8.0.15-Temurin-ubuntu-webprofile`, `8.0.15-jre17-ubuntu-webprofile`, `8.0.15-ubuntu-webprofile`, `8.0.15-jre17-Temurin-webprofile`, `8.0.15-Temurin-webprofile`, `8.0.15-jre17-webprofile`, `8.0.15-webprofile`, `8.0.15-jre17-Temurin-ubuntu`, `8.0.15-Temurin-ubuntu`, `8.0.15-jre17-ubuntu`, `8.0.15-ubuntu`, `8.0.15-jre17-Temurin`, `8.0.15-Temurin`, `8.0.15-jre17`, `8.0.15`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-microprofile`, `8.0.15-Temurin-ubuntu-microprofile`, `8.0.15-jre17-ubuntu-microprofile`, `8.0.15-ubuntu-microprofile`, `8.0.15-jre17-Temurin-microprofile`, `8.0.15-Temurin-microprofile`, `8.0.15-jre17-microprofile`, `8.0.15-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plume`, `8.0.15-Temurin-ubuntu-plume`, `8.0.15-jre17-ubuntu-plume`, `8.0.15-ubuntu-plume`, `8.0.15-jre17-Temurin-plume`, `8.0.15-Temurin-plume`, `8.0.15-jre17-plume`, `8.0.15-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-ubuntu-plus`, `8.0.15-Temurin-ubuntu-plus`, `8.0.15-jre17-ubuntu-plus`, `8.0.15-ubuntu-plus`, `8.0.15-jre17-Temurin-plus`, `8.0.15-Temurin-plus`, `8.0.15-jre17-plus`, `8.0.15-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-webprofile`, `8.0.15-Temurin-alpine-webprofile`, `8.0.15-jre17-alpine-webprofile`, `8.0.15-alpine-webprofile`, `8.0.15-jre17-Temurin-alpine`, `8.0.15-Temurin-alpine`, `8.0.15-jre17-alpine`, `8.0.15-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-microprofile`, `8.0.15-Temurin-alpine-microprofile`, `8.0.15-jre17-alpine-microprofile`, `8.0.15-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plume`, `8.0.15-Temurin-alpine-plume`, `8.0.15-jre17-alpine-plume`, `8.0.15-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre17-Temurin-alpine-plus`, `8.0.15-Temurin-alpine-plus`, `8.0.15-jre17-alpine-plus`, `8.0.15-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-webprofile`, `8.0.15-jre11-ubuntu-webprofile`, `8.0.15-jre11-Temurin-webprofile`, `8.0.15-jre11-webprofile`, `8.0.15-jre11-Temurin-ubuntu`, `8.0.15-jre11-ubuntu`, `8.0.15-jre11-Temurin`, `8.0.15-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-microprofile`, `8.0.15-jre11-ubuntu-microprofile`, `8.0.15-jre11-Temurin-microprofile`, `8.0.15-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plume`, `8.0.15-jre11-ubuntu-plume`, `8.0.15-jre11-Temurin-plume`, `8.0.15-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-ubuntu-plus`, `8.0.15-jre11-ubuntu-plus`, `8.0.15-jre11-Temurin-plus`, `8.0.15-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-webprofile`, `8.0.15-jre11-alpine-webprofile`, `8.0.15-jre11-Temurin-alpine`, `8.0.15-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-microprofile`, `8.0.15-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plume`, `8.0.15-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre11-Temurin-alpine-plus`, `8.0.15-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-webprofile`, `8.0.15-jre8-ubuntu-webprofile`, `8.0.15-jre8-Temurin-webprofile`, `8.0.15-jre8-webprofile`, `8.0.15-jre8-Temurin-ubuntu`, `8.0.15-jre8-ubuntu`, `8.0.15-jre8-Temurin`, `8.0.15-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-microprofile`, `8.0.15-jre8-ubuntu-microprofile`, `8.0.15-jre8-Temurin-microprofile`, `8.0.15-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plume`, `8.0.15-jre8-ubuntu-plume`, `8.0.15-jre8-Temurin-plume`, `8.0.15-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-ubuntu-plus`, `8.0.15-jre8-ubuntu-plus`, `8.0.15-jre8-Temurin-plus`, `8.0.15-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-webprofile`, `8.0.15-jre8-alpine-webprofile`, `8.0.15-jre8-Temurin-alpine`, `8.0.15-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-microprofile`, `8.0.15-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plume`, `8.0.15-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.15-jre8-Temurin-alpine-plus`, `8.0.15-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-webprofile`, `8.0.15-Semeru-ubuntu-webprofile`, `8.0.15-jre17-Semeru-webprofile`, `8.0.15-Semeru-webprofile`, `8.0.15-jre17-Semeru-ubuntu`, `8.0.15-Semeru-ubuntu`, `8.0.15-jre17-Semeru`, `8.0.15-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-microprofile`, `8.0.15-Semeru-ubuntu-microprofile`, `8.0.15-jre17-Semeru-microprofile`, `8.0.15-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plume`, `8.0.15-Semeru-ubuntu-plume`, `8.0.15-jre17-Semeru-plume`, `8.0.15-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre17-Semeru-ubuntu-plus`, `8.0.15-Semeru-ubuntu-plus`, `8.0.15-jre17-Semeru-plus`, `8.0.15-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-webprofile`, `8.0.15-jre11-Semeru-webprofile`, `8.0.15-jre11-Semeru-ubuntu`, `8.0.15-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-microprofile`, `8.0.15-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plume`, `8.0.15-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.15-jre11-Semeru-ubuntu-plus`, `8.0.15-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-webprofile`, `9.1.1-Temurin-ubuntu-webprofile`, `9.1.1-jre17-ubuntu-webprofile`, `9.1.1-ubuntu-webprofile`, `9.1.1-jre17-Temurin-webprofile`, `9.1.1-Temurin-webprofile`, `9.1.1-jre17-webprofile`, `9.1.1-webprofile`, `9.1.1-jre17-Temurin-ubuntu`, `9.1.1-Temurin-ubuntu`, `9.1.1-jre17-ubuntu`, `9.1.1-ubuntu`, `9.1.1-jre17-Temurin`, `9.1.1-Temurin`, `9.1.1-jre17`, `9.1.1`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-microprofile`, `9.1.1-Temurin-ubuntu-microprofile`, `9.1.1-jre17-ubuntu-microprofile`, `9.1.1-ubuntu-microprofile`, `9.1.1-jre17-Temurin-microprofile`, `9.1.1-Temurin-microprofile`, `9.1.1-jre17-microprofile`, `9.1.1-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-plume`, `9.1.1-Temurin-ubuntu-plume`, `9.1.1-jre17-ubuntu-plume`, `9.1.1-ubuntu-plume`, `9.1.1-jre17-Temurin-plume`, `9.1.1-Temurin-plume`, `9.1.1-jre17-plume`, `9.1.1-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-plus`, `9.1.1-Temurin-ubuntu-plus`, `9.1.1-jre17-ubuntu-plus`, `9.1.1-ubuntu-plus`, `9.1.1-jre17-Temurin-plus`, `9.1.1-Temurin-plus`, `9.1.1-jre17-plus`, `9.1.1-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-webprofile`, `9.1.1-Temurin-alpine-webprofile`, `9.1.1-jre17-alpine-webprofile`, `9.1.1-alpine-webprofile`, `9.1.1-jre17-Temurin-alpine`, `9.1.1-Temurin-alpine`, `9.1.1-jre17-alpine`, `9.1.1-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-microprofile`, `9.1.1-Temurin-alpine-microprofile`, `9.1.1-jre17-alpine-microprofile`, `9.1.1-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-plume`, `9.1.1-Temurin-alpine-plume`, `9.1.1-jre17-alpine-plume`, `9.1.1-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-plus`, `9.1.1-Temurin-alpine-plus`, `9.1.1-jre17-alpine-plus`, `9.1.1-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-webprofile`, `9.1.1-jre11-ubuntu-webprofile`, `9.1.1-jre11-Temurin-webprofile`, `9.1.1-jre11-webprofile`, `9.1.1-jre11-Temurin-ubuntu`, `9.1.1-jre11-ubuntu`, `9.1.1-jre11-Temurin`, `9.1.1-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-microprofile`, `9.1.1-jre11-ubuntu-microprofile`, `9.1.1-jre11-Temurin-microprofile`, `9.1.1-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-plume`, `9.1.1-jre11-ubuntu-plume`, `9.1.1-jre11-Temurin-plume`, `9.1.1-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-plus`, `9.1.1-jre11-ubuntu-plus`, `9.1.1-jre11-Temurin-plus`, `9.1.1-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-webprofile`, `9.1.1-jre11-alpine-webprofile`, `9.1.1-jre11-Temurin-alpine`, `9.1.1-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-microprofile`, `9.1.1-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-plume`, `9.1.1-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-plus`, `9.1.1-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-webprofile`, `9.1.1-Semeru-ubuntu-webprofile`, `9.1.1-jre17-Semeru-webprofile`, `9.1.1-Semeru-webprofile`, `9.1.1-jre17-Semeru-ubuntu`, `9.1.1-Semeru-ubuntu`, `9.1.1-jre17-Semeru`, `9.1.1-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-microprofile`, `9.1.1-Semeru-ubuntu-microprofile`, `9.1.1-jre17-Semeru-microprofile`, `9.1.1-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-plume`, `9.1.1-Semeru-ubuntu-plume`, `9.1.1-jre17-Semeru-plume`, `9.1.1-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-plus`, `9.1.1-Semeru-ubuntu-plus`, `9.1.1-jre17-Semeru-plus`, `9.1.1-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-webprofile`, `9.1.1-jre11-Semeru-webprofile`, `9.1.1-jre11-Semeru-ubuntu`, `9.1.1-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-microprofile`, `9.1.1-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-plume`, `9.1.1-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-plus`, `9.1.1-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/af8e9523b3a33798cb24bcd410f2cbea81e475e7/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-webprofile`, `8.0.16-Temurin-ubuntu-webprofile`, `8.0.16-jre17-ubuntu-webprofile`, `8.0.16-ubuntu-webprofile`, `8.0.16-jre17-Temurin-webprofile`, `8.0.16-Temurin-webprofile`, `8.0.16-jre17-webprofile`, `8.0.16-webprofile`, `8.0.16-jre17-Temurin-ubuntu`, `8.0.16-Temurin-ubuntu`, `8.0.16-jre17-ubuntu`, `8.0.16-ubuntu`, `8.0.16-jre17-Temurin`, `8.0.16-Temurin`, `8.0.16-jre17`, `8.0.16`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-microprofile`, `8.0.16-Temurin-ubuntu-microprofile`, `8.0.16-jre17-ubuntu-microprofile`, `8.0.16-ubuntu-microprofile`, `8.0.16-jre17-Temurin-microprofile`, `8.0.16-Temurin-microprofile`, `8.0.16-jre17-microprofile`, `8.0.16-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-plume`, `8.0.16-Temurin-ubuntu-plume`, `8.0.16-jre17-ubuntu-plume`, `8.0.16-ubuntu-plume`, `8.0.16-jre17-Temurin-plume`, `8.0.16-Temurin-plume`, `8.0.16-jre17-plume`, `8.0.16-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-plus`, `8.0.16-Temurin-ubuntu-plus`, `8.0.16-jre17-ubuntu-plus`, `8.0.16-ubuntu-plus`, `8.0.16-jre17-Temurin-plus`, `8.0.16-Temurin-plus`, `8.0.16-jre17-plus`, `8.0.16-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-webprofile`, `8.0.16-Temurin-alpine-webprofile`, `8.0.16-jre17-alpine-webprofile`, `8.0.16-alpine-webprofile`, `8.0.16-jre17-Temurin-alpine`, `8.0.16-Temurin-alpine`, `8.0.16-jre17-alpine`, `8.0.16-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-microprofile`, `8.0.16-Temurin-alpine-microprofile`, `8.0.16-jre17-alpine-microprofile`, `8.0.16-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-plume`, `8.0.16-Temurin-alpine-plume`, `8.0.16-jre17-alpine-plume`, `8.0.16-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-plus`, `8.0.16-Temurin-alpine-plus`, `8.0.16-jre17-alpine-plus`, `8.0.16-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-webprofile`, `8.0.16-jre11-ubuntu-webprofile`, `8.0.16-jre11-Temurin-webprofile`, `8.0.16-jre11-webprofile`, `8.0.16-jre11-Temurin-ubuntu`, `8.0.16-jre11-ubuntu`, `8.0.16-jre11-Temurin`, `8.0.16-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-microprofile`, `8.0.16-jre11-ubuntu-microprofile`, `8.0.16-jre11-Temurin-microprofile`, `8.0.16-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-plume`, `8.0.16-jre11-ubuntu-plume`, `8.0.16-jre11-Temurin-plume`, `8.0.16-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-plus`, `8.0.16-jre11-ubuntu-plus`, `8.0.16-jre11-Temurin-plus`, `8.0.16-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-webprofile`, `8.0.16-jre11-alpine-webprofile`, `8.0.16-jre11-Temurin-alpine`, `8.0.16-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-microprofile`, `8.0.16-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-plume`, `8.0.16-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-plus`, `8.0.16-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-webprofile`, `8.0.16-jre8-ubuntu-webprofile`, `8.0.16-jre8-Temurin-webprofile`, `8.0.16-jre8-webprofile`, `8.0.16-jre8-Temurin-ubuntu`, `8.0.16-jre8-ubuntu`, `8.0.16-jre8-Temurin`, `8.0.16-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-microprofile`, `8.0.16-jre8-ubuntu-microprofile`, `8.0.16-jre8-Temurin-microprofile`, `8.0.16-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-plume`, `8.0.16-jre8-ubuntu-plume`, `8.0.16-jre8-Temurin-plume`, `8.0.16-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-plus`, `8.0.16-jre8-ubuntu-plus`, `8.0.16-jre8-Temurin-plus`, `8.0.16-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-webprofile`, `8.0.16-jre8-alpine-webprofile`, `8.0.16-jre8-Temurin-alpine`, `8.0.16-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-microprofile`, `8.0.16-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-plume`, `8.0.16-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-plus`, `8.0.16-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-webprofile`, `8.0.16-Semeru-ubuntu-webprofile`, `8.0.16-jre17-Semeru-webprofile`, `8.0.16-Semeru-webprofile`, `8.0.16-jre17-Semeru-ubuntu`, `8.0.16-Semeru-ubuntu`, `8.0.16-jre17-Semeru`, `8.0.16-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-microprofile`, `8.0.16-Semeru-ubuntu-microprofile`, `8.0.16-jre17-Semeru-microprofile`, `8.0.16-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-plume`, `8.0.16-Semeru-ubuntu-plume`, `8.0.16-jre17-Semeru-plume`, `8.0.16-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-plus`, `8.0.16-Semeru-ubuntu-plus`, `8.0.16-jre17-Semeru-plus`, `8.0.16-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-webprofile`, `8.0.16-jre11-Semeru-webprofile`, `8.0.16-jre11-Semeru-ubuntu`, `8.0.16-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-microprofile`, `8.0.16-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-plume`, `8.0.16-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-plus`, `8.0.16-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-webprofile`, `9.1.1-Temurin-ubuntu-webprofile`, `9.1.1-jre17-ubuntu-webprofile`, `9.1.1-ubuntu-webprofile`, `9.1.1-jre17-Temurin-webprofile`, `9.1.1-Temurin-webprofile`, `9.1.1-jre17-webprofile`, `9.1.1-webprofile`, `9.1.1-jre17-Temurin-ubuntu`, `9.1.1-Temurin-ubuntu`, `9.1.1-jre17-ubuntu`, `9.1.1-ubuntu`, `9.1.1-jre17-Temurin`, `9.1.1-Temurin`, `9.1.1-jre17`, `9.1.1`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-microprofile`, `9.1.1-Temurin-ubuntu-microprofile`, `9.1.1-jre17-ubuntu-microprofile`, `9.1.1-ubuntu-microprofile`, `9.1.1-jre17-Temurin-microprofile`, `9.1.1-Temurin-microprofile`, `9.1.1-jre17-microprofile`, `9.1.1-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-plume`, `9.1.1-Temurin-ubuntu-plume`, `9.1.1-jre17-ubuntu-plume`, `9.1.1-ubuntu-plume`, `9.1.1-jre17-Temurin-plume`, `9.1.1-Temurin-plume`, `9.1.1-jre17-plume`, `9.1.1-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.1-jre17-Temurin-ubuntu-plus`, `9.1.1-Temurin-ubuntu-plus`, `9.1.1-jre17-ubuntu-plus`, `9.1.1-ubuntu-plus`, `9.1.1-jre17-Temurin-plus`, `9.1.1-Temurin-plus`, `9.1.1-jre17-plus`, `9.1.1-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-webprofile`, `9.1.1-Temurin-alpine-webprofile`, `9.1.1-jre17-alpine-webprofile`, `9.1.1-alpine-webprofile`, `9.1.1-jre17-Temurin-alpine`, `9.1.1-Temurin-alpine`, `9.1.1-jre17-alpine`, `9.1.1-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-microprofile`, `9.1.1-Temurin-alpine-microprofile`, `9.1.1-jre17-alpine-microprofile`, `9.1.1-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-plume`, `9.1.1-Temurin-alpine-plume`, `9.1.1-jre17-alpine-plume`, `9.1.1-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.1-jre17-Temurin-alpine-plus`, `9.1.1-Temurin-alpine-plus`, `9.1.1-jre17-alpine-plus`, `9.1.1-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-webprofile`, `9.1.1-jre11-ubuntu-webprofile`, `9.1.1-jre11-Temurin-webprofile`, `9.1.1-jre11-webprofile`, `9.1.1-jre11-Temurin-ubuntu`, `9.1.1-jre11-ubuntu`, `9.1.1-jre11-Temurin`, `9.1.1-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-microprofile`, `9.1.1-jre11-ubuntu-microprofile`, `9.1.1-jre11-Temurin-microprofile`, `9.1.1-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-plume`, `9.1.1-jre11-ubuntu-plume`, `9.1.1-jre11-Temurin-plume`, `9.1.1-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.1-jre11-Temurin-ubuntu-plus`, `9.1.1-jre11-ubuntu-plus`, `9.1.1-jre11-Temurin-plus`, `9.1.1-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-webprofile`, `9.1.1-jre11-alpine-webprofile`, `9.1.1-jre11-Temurin-alpine`, `9.1.1-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-microprofile`, `9.1.1-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-plume`, `9.1.1-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.1-jre11-Temurin-alpine-plus`, `9.1.1-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-webprofile`, `9.1.1-Semeru-ubuntu-webprofile`, `9.1.1-jre17-Semeru-webprofile`, `9.1.1-Semeru-webprofile`, `9.1.1-jre17-Semeru-ubuntu`, `9.1.1-Semeru-ubuntu`, `9.1.1-jre17-Semeru`, `9.1.1-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-microprofile`, `9.1.1-Semeru-ubuntu-microprofile`, `9.1.1-jre17-Semeru-microprofile`, `9.1.1-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-plume`, `9.1.1-Semeru-ubuntu-plume`, `9.1.1-jre17-Semeru-plume`, `9.1.1-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.1-jre17-Semeru-ubuntu-plus`, `9.1.1-Semeru-ubuntu-plus`, `9.1.1-jre17-Semeru-plus`, `9.1.1-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-webprofile`, `9.1.1-jre11-Semeru-webprofile`, `9.1.1-jre11-Semeru-ubuntu`, `9.1.1-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-microprofile`, `9.1.1-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-plume`, `9.1.1-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.1-jre11-Semeru-ubuntu-plus`, `9.1.1-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From addcd155f55509bf75797baa05ccc1f48964f17a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Nov 2023 17:09:38 -0800 Subject: [PATCH 0716/2686] Run update.sh --- amazoncorretto/README.md | 77 +++++++++++++++++++--------------------- 1 file changed, 36 insertions(+), 41 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 7f15305f1553..2590646ddc95 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,47 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/al2/Dockerfile) -- [`8-alpine3.15`, `8u392-alpine3.15`, `8-alpine3.15-full`, `8-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.15/Dockerfile) -- [`8-alpine3.15-jre`, `8u392-alpine3.15-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.15/Dockerfile) -- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/al2/Dockerfile) -- [`11-alpine3.15`, `11.0.21-alpine3.15`, `11-alpine3.15-full`, `11-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.15/Dockerfile) -- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/al2/Dockerfile) -- [`17-alpine3.15`, `17.0.9-alpine3.15`, `17-alpine3.15-full`, `17-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.15/Dockerfile) -- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/17/jdk/alpine/3.18/Dockerfile) -- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/headful/al2023/Dockerfile) -- [`21-alpine3.15`, `21.0.1-alpine3.15`, `21-alpine3.15-full`, `21-alpine3.15-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.15/Dockerfile) -- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/137b6ef028776de9f49e638a072a9e478fc60257/21/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.18/Dockerfile) +- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.18/Dockerfile) # Quick reference (cont.) From 476b9a1214fc960eb33b4557c49fbafadbcfcf8e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Nov 2023 12:10:26 -0800 Subject: [PATCH 0717/2686] Run update.sh --- kong/README.md | 3 ++- xwiki/README.md | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/kong/README.md b/kong/README.md index a316550e4092..49b544511326 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) +- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) +- [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) - [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) diff --git a/xwiki/README.md b/xwiki/README.md index 45fbd8441405..43cb42c96a22 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.9`, `15.9.0`, `15-mysql-tomcat`, `15.9-mysql-tomcat`, `15.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.9-postgres-tomcat`, `15.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.9-mariadb-tomcat`, `15.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.18`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.18-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.18-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.18-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.19`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.19-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.19-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.19-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mariadb-tomcat/Dockerfile) From 0794481871dd7d2649b0372f1477cb2beda35450 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Nov 2023 15:09:38 -0800 Subject: [PATCH 0718/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- swift/README.md | 12 +++++++++++- 2 files changed, 32 insertions(+), 22 deletions(-) diff --git a/nats/README.md b/nats/README.md index fcd97e25efde..59a1883427da 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.4-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.4-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/alpine3.18/Dockerfile) -- [`2.10.4-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.4-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) -- [`2.10.4-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.4-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.5-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.5-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/alpine3.18/Dockerfile) +- [`2.10.5-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.5-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) +- [`2.10.5-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.5-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.4`, `2.10`: - - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.5`, `2.10`: + - [`2.10.5-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) + - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.4-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/scratch/Dockerfile) - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) -- `2.10.4-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.4-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.5-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) + - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) +- `2.10.5-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.5-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.5-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2e80fecdcb58ce995cd7bb9d8af66499ca023e44/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index 3ec304746869..9cdf7872f59f 100644 --- a/swift/README.md +++ b/swift/README.md @@ -34,6 +34,7 @@ WARNING: - [`5.9.1-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/centos/7/slim/Dockerfile) - [`5.9.1-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/Dockerfile) - [`5.9.1-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/slim/Dockerfile) +- [`5.9.1-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/3fc609343f771e31c17140ed90d6cb2023e6e701/5.9/windows/LTSC2022/Dockerfile) - [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) - [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) - [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) @@ -89,7 +90,7 @@ WARNING: [https://bugs.swift.org](https://bugs.swift.org) Component: Docker - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/swift/), [`arm64v8`](https://hub.docker.com/r/arm64v8/swift/) + [`amd64`](https://hub.docker.com/r/amd64/swift/), [`arm64v8`](https://hub.docker.com/r/arm64v8/swift/), [`windows-amd64`](https://hub.docker.com/r/winamd64/swift/) - **Published image artifact details**: [repo-info repo's `repos/swift/` directory](https://github.com/docker-library/repo-info/blob/master/repos/swift) ([history](https://github.com/docker-library/repo-info/commits/master/repos/swift)) @@ -165,6 +166,15 @@ Some of these tags may have names like focal or jammy in them. These are the sui This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `swift`. Unless you are working in an environment where *only* the `swift` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. +## `swift:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + # License View [license information](https://swift.org/LICENSE.txt) for the software contained in this image. From 6761919c7d0d9da0e30b86db83b21816b8af6dd8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Nov 2023 18:09:27 -0800 Subject: [PATCH 0719/2686] Run update.sh --- couchbase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 6dbebc41f869..a95229b0d2d4 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.2`, `enterprise-7.2.2`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/enterprise/couchbase-server/7.2.2/Dockerfile) +- [`7.2.3`, `enterprise-7.2.3`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/3a446520433f63e3d270f01063b14cb6b6ade12a/enterprise/couchbase-server/7.2.3/Dockerfile) - [`community-7.2.2`, `community`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/community/couchbase-server/7.2.2/Dockerfile) -- [`7.1.5`, `enterprise-7.1.5`](https://github.com/couchbase/docker/blob/1ce6c78f29c9be97c67c2588b1ceaa57ad1b49c6/enterprise/couchbase-server/7.1.5/Dockerfile) +- [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/3b28b68159ef2e9007a1493c17e768fbb4837358/enterprise/couchbase-server/7.1.6/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) From 90eba5c78ec63f63d230feeeb3bfcfee0437362e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 12:17:55 -0800 Subject: [PATCH 0720/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 9986387df4b5..25a7dad8d5a9 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.2-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/community/Dockerfile) -- [`9.9.2-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/developer/Dockerfile) -- [`9.9.2-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/enterprise/Dockerfile) -- [`9.9.2-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/datacenter/app/Dockerfile) -- [`9.9.2-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/9/datacenter/search/Dockerfile) -- [`10.2.1-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/community/Dockerfile) -- [`10.2.1-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/developer/Dockerfile) -- [`10.2.1-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/enterprise/Dockerfile) -- [`10.2.1-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/datacenter/app/Dockerfile) -- [`10.2.1-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/a1a383e82d4b8b273c8b9237714fc9c700b71dc7/10/datacenter/search/Dockerfile) +- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/community/Dockerfile) +- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/developer/Dockerfile) +- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/enterprise/Dockerfile) +- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/datacenter/app/Dockerfile) +- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/datacenter/search/Dockerfile) +- [`10.2.1-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/community/Dockerfile) +- [`10.2.1-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/developer/Dockerfile) +- [`10.2.1-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/enterprise/Dockerfile) +- [`10.2.1-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/datacenter/app/Dockerfile) +- [`10.2.1-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/datacenter/search/Dockerfile) # Quick reference (cont.) From eaddcbd533afd6e67e97ea0d30104125d330034b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 14:09:40 -0800 Subject: [PATCH 0721/2686] Run update.sh --- postfixadmin/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 76797ced4d09..7d4a4f146ac4 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/f0eccac1ed27a05031c515591d3c9f29502efb27/apache/Dockerfile) -- [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/f0eccac1ed27a05031c515591d3c9f29502efb27/fpm/Dockerfile) -- [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/5030ec70f6a0dec12e39f5194fb29575b169f7b7/fpm-alpine/Dockerfile) +- [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/apache/Dockerfile) +- [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm/Dockerfile) +- [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm-alpine/Dockerfile) # Quick reference (cont.) From 4a0ec04397a8fb369e53c4bd206fdaa93d8df97d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 15:17:42 -0800 Subject: [PATCH 0722/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 47d0ec023c77..7eb2e22b0af8 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.6`, `ee-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.6`, `ce-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/community/debian12/Dockerfile) +- [`ee-6.4.0.7`, `ee-6.4.0.7_2`](https://github.com/aerospike/aerospike-server.docker/blob/5d1d0f630af1f56127f11644c867f77bfbeede55/enterprise/debian12/Dockerfile) +- [`ce-6.4.0.7`, `ce-6.4.0.7_2`](https://github.com/aerospike/aerospike-server.docker/blob/5d1d0f630af1f56127f11644c867f77bfbeede55/community/debian12/Dockerfile) # Quick reference (cont.) From 6c7025590683f746edcc2c42c990829828a1b9cd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 16:20:24 -0800 Subject: [PATCH 0723/2686] Run update.sh --- archlinux/README.md | 4 ++-- clearlinux/README.md | 2 +- haskell/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index e6fbb148aba3..34e92c100a10 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20231105.0.189722`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec02e22e80a5f701bfc8edfac17219dd1ea5da8/Dockerfile.base) -- [`base-devel`, `base-devel-20231105.0.189722`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec02e22e80a5f701bfc8edfac17219dd1ea5da8/Dockerfile.base-devel) +- [`latest`, `base`, `base-20231112.0.191179`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9e3e5066b444021f47836449f6a9d89d0cf5861a/Dockerfile.base) +- [`base-devel`, `base-devel-20231112.0.191179`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9e3e5066b444021f47836449f6a9d89d0cf5861a/Dockerfile.base-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 667e5e19e37e..67a0c3dad671 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5a2ae74342e6528e27d9f5e089d55fd489a33d69/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6fac7bf7d1a9173050938b94b9cb59b24d3402c2/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index e8ebc3fa4f66..96fe9f5952ca 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -28,8 +28,8 @@ WARNING: - [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/30f9d37242fd2ab6a8cf23e546a26b56a0d2636c/9.8/slim-buster/Dockerfile) - [`9.6.3-buster`, `9.6-buster`, `9.6.3`, `9.6`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/buster/Dockerfile) - [`9.6.3-slim-buster`, `9.6-slim-buster`, `9.6.3-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/slim-buster/Dockerfile) -- [`9.4.7-buster`, `9.4-buster`, `9.4.7`, `9.4`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/buster/Dockerfile) -- [`9.4.7-slim-buster`, `9.4-slim-buster`, `9.4.7-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7bb1b4d1f855249d50056a69f071a2f50ad2987d/9.4/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/feaa69933c38c47f92e58aa6e7346c8865c1a9f3/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/feaa69933c38c47f92e58aa6e7346c8865c1a9f3/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) From 084cfe37a2cd040c2d6a41571e7106fe531dc75f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 17:18:00 -0800 Subject: [PATCH 0724/2686] Run update.sh --- node/README.md | 12 ++++++------ odoo/README.md | 6 +++--- postgres/README.md | 48 +++++++++++++++++++++++----------------------- 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/node/README.md b/node/README.md index 7af5829077f2..2a1ea3ab5e74 100644 --- a/node/README.md +++ b/node/README.md @@ -33,19 +33,19 @@ WARNING: - [`20-alpine3.17`, `20.9-alpine3.17`, `20.9.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.9-alpine`, `20.9-alpine3.18`, `20.9.0-alpine`, `20.9.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.18/Dockerfile) - [`20`, `20-bookworm`, `20.9`, `20.9-bookworm`, `20.9.0`, `20.9.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.9-bookworm-slim`, `20.9-slim`, `20.9.0-bookworm-slim`, `20.9.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.9-bookworm-slim`, `20.9-slim`, `20.9.0-bookworm-slim`, `20.9.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.9-bullseye`, `20.9.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.9-bullseye-slim`, `20.9.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.9-bullseye-slim`, `20.9.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.9-buster`, `20.9.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster/Dockerfile) -- [`20-buster-slim`, `20.9-buster-slim`, `20.9.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster-slim/Dockerfile) +- [`20-buster-slim`, `20.9-buster-slim`, `20.9.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/bullseye-slim/Dockerfile) - [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster-slim/Dockerfile) +- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 8e6d4dee378c..1d232338b986 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/15.0/Dockerfile) -- [`14.0`, `14`](https://github.com/odoo/docker/blob/3864188c94c33dace7d4b5f6767e00a4328fe08c/14.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/15.0/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 5dccd18fa73f..c70bc4514c13 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.0`, `16`, `latest`, `16.0-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bookworm/Dockerfile) -- [`16.0-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/7442464585e3cd75554976cbe94819a42da10bbd/16/bullseye/Dockerfile) -- [`16.0-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.0-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/16/alpine3.18/Dockerfile) -- [`16.0-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/16/alpine3.17/Dockerfile) -- [`15.4`, `15`, `15.4-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bookworm/Dockerfile) -- [`15.4-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bullseye/Dockerfile) -- [`15.4-alpine3.18`, `15-alpine3.18`, `15.4-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/15/alpine3.18/Dockerfile) -- [`15.4-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/15/alpine3.17/Dockerfile) -- [`14.9`, `14`, `14.9-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bookworm/Dockerfile) -- [`14.9-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/05f691067b29d8fb4211a47da37a381d58d36691/14/bullseye/Dockerfile) -- [`14.9-alpine3.18`, `14-alpine3.18`, `14.9-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/14/alpine3.18/Dockerfile) -- [`14.9-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/14/alpine3.17/Dockerfile) -- [`13.12`, `13`, `13.12-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bookworm/Dockerfile) -- [`13.12-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/69cf8b8aac63224380f943bd6428f088ddfb3435/13/bullseye/Dockerfile) -- [`13.12-alpine3.18`, `13-alpine3.18`, `13.12-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/13/alpine3.18/Dockerfile) -- [`13.12-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/13/alpine3.17/Dockerfile) -- [`12.16`, `12`, `12.16-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bookworm/Dockerfile) -- [`12.16-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/9061f74afc30391adb6a1a35d4f7b605ecaa09b9/12/bullseye/Dockerfile) -- [`12.16-alpine3.18`, `12-alpine3.18`, `12.16-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/12/alpine3.18/Dockerfile) -- [`12.16-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/12/alpine3.17/Dockerfile) -- [`11.21-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bookworm/Dockerfile) -- [`11.21-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051/11/bullseye/Dockerfile) -- [`11.21-alpine3.18`, `11-alpine3.18`, `11.21-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/11/alpine3.18/Dockerfile) -- [`11.21-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/6f4ae836406b010948f01fbcb400a31dca4fdf52/11/alpine3.17/Dockerfile) +- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/bookworm/Dockerfile) +- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/bullseye/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/alpine3.18/Dockerfile) +- [`16.1-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/alpine3.17/Dockerfile) +- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/bookworm/Dockerfile) +- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/bullseye/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/alpine3.18/Dockerfile) +- [`15.5-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/alpine3.17/Dockerfile) +- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/bookworm/Dockerfile) +- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/bullseye/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/alpine3.18/Dockerfile) +- [`14.10-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/alpine3.17/Dockerfile) +- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/bookworm/Dockerfile) +- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/bullseye/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/alpine3.18/Dockerfile) +- [`13.13-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/alpine3.17/Dockerfile) +- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/bookworm/Dockerfile) +- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/bullseye/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/alpine3.18/Dockerfile) +- [`12.17-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/alpine3.17/Dockerfile) +- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/bookworm/Dockerfile) +- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/bullseye/Dockerfile) +- [`11.22-alpine3.18`, `11-alpine3.18`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/alpine3.18/Dockerfile) +- [`11.22-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/alpine3.17/Dockerfile) # Quick reference (cont.) From 2ce5338dc26e5d8064e346b53dbdea90953bd474 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Nov 2023 18:22:18 -0800 Subject: [PATCH 0725/2686] Run update.sh --- docker/README.md | 9 +++++++++ telegraf/README.md | 12 ++++++------ 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9d56f6081716..49c4f285238f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,12 @@ WARNING: ## Simple Tags +- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/cli/Dockerfile) +- [`25.0.0-beta.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.1-dind-alpine3.18`, `25.0.0-beta.1`, `25-rc`, `rc`, `25.0.0-beta.1-alpine3.18`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind/Dockerfile) +- [`25.0.0-beta.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-beta.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-1809/Dockerfile) - [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) @@ -37,6 +43,9 @@ WARNING: ## Shared Tags +- `25.0.0-beta.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-1809/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 48b267fe6ee8..6a01e7c5fbb1 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/42fbf590c3310a22572688abc7811d63555c4c99/telegraf/1.28/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) From a448934903e8efa75757bdf8870541a67b16e477 Mon Sep 17 00:00:00 2001 From: Romain Bioteau Date: Tue, 14 Nov 2023 17:46:34 +0100 Subject: [PATCH 0726/2686] update Bonita Platform and Update Tool versions --- bonita/content.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bonita/content.md b/bonita/content.md index dcff3aabfe56..acc281c83fcc 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -249,14 +249,14 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.1-u0/bonita-update-tool-3.2.0.zip - unzip bonita-update-tool-3.2.0.zip + wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.2-u0/bonita-update-tool-3.3.0.zip + unzip bonita-update-tool-3.3.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.0.0 + $ cd bonita-update-tool-3.3.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -285,7 +285,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2023.1-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2023.2-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). From 308473d89b9e29c3fd085c59c0a9b804ea0d7e26 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Nov 2023 10:20:20 -0800 Subject: [PATCH 0727/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- varnish/README.md | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index b44df6dd57d7..d37863d1cf58 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ef2ca8c5b8d9b95b21cb73ed042278f04b58b331/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 92f6b4c6bfec..ca082a3d8806 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.4.1`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/61eab19ea5d87528d2c6a109dce7e355ac9965fc/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.4.1-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/61eab19ea5d87528d2c6a109dce7e355ac9965fc/fresh/alpine/Dockerfile) -- [`old`, `7.3.0`, `7.3`](https://github.com/varnish/docker-varnish/blob/b9c04df300b4a9138c61debe495fbe56021f7550/old/debian/Dockerfile) -- [`old-alpine`, `7.3.0-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/b9c04df300b4a9138c61debe495fbe56021f7550/old/alpine/Dockerfile) -- [`stable`, `6.0.11`, `6.0`](https://github.com/varnish/docker-varnish/blob/f3be41ac5e4224615e1437334ffc16418e3e89f3/stable/debian/Dockerfile) +- [`fresh`, `7.4.2`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/alpine/Dockerfile) +- [`old`, `7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) +- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/alpine/Dockerfile) +- [`stable`, `6.0.12`, `6.0`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) # Quick reference (cont.) From 0a9a9c2c35f65657aa71e6ad3241b0fad04cc0bb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Nov 2023 15:17:42 -0800 Subject: [PATCH 0728/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 25a7dad8d5a9..d65ffcc8e001 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/community/Dockerfile) -- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/developer/Dockerfile) -- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/enterprise/Dockerfile) -- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/datacenter/app/Dockerfile) -- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/9/datacenter/search/Dockerfile) -- [`10.2.1-community`, `10.2-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/community/Dockerfile) -- [`10.2.1-developer`, `10.2-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/developer/Dockerfile) -- [`10.2.1-enterprise`, `10.2-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/enterprise/Dockerfile) -- [`10.2.1-datacenter-app`, `10.2-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/datacenter/app/Dockerfile) -- [`10.2.1-datacenter-search`, `10.2-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/00a57b062bbd75dcd91c17fee0e0d61c8f252172/10/datacenter/search/Dockerfile) +- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/community/Dockerfile) +- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/developer/Dockerfile) +- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/enterprise/Dockerfile) +- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/datacenter/app/Dockerfile) +- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/datacenter/search/Dockerfile) +- [`10.3.0-community`, `10.3-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/community/Dockerfile) +- [`10.3.0-developer`, `10.3-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/developer/Dockerfile) +- [`10.3.0-enterprise`, `10.3-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/enterprise/Dockerfile) +- [`10.3.0-datacenter-app`, `10.3-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/datacenter/app/Dockerfile) +- [`10.3.0-datacenter-search`, `10.3-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 011458bdeb26fa28d5473247624a2d69760e837d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Nov 2023 16:09:28 -0800 Subject: [PATCH 0729/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index a5841f4f6c2b..ed34e768d14a 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.10`, `3.10.11`](https://github.com/arangodb/arangodb-docker/blob/855faa5aa4d4e065c46e5d999af83c3a7cba5ccb/alpine/3.10.11/Dockerfile) -- [`3.11`, `3.11.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/8bb5a2e1077cf575d91c05246f9317b2bb9713bb/alpine/3.11.4/Dockerfile) +- [`3.11`, `3.11.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/dde13e51d1fc110c1349d75e4aee156af2adc8b2/alpine/3.11.5/Dockerfile) # Quick reference (cont.) From 5183ef9139699026d8204e1fc4a6d79a6f9d8909 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Nov 2023 17:09:38 -0800 Subject: [PATCH 0730/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 +- mongo/README.md | 105 +++++++++++++++++++++++++++++++------------- openjdk/README.md | 36 +++++++-------- php/README.md | 59 +++++++++++++++++++------ ruby/README.md | 12 ++--- wordpress/README.md | 18 ++++---- 7 files changed, 156 insertions(+), 80 deletions(-) diff --git a/bash/README.md b/bash/README.md index 605c7b2095df..3ad89ab475b6 100644 --- a/bash/README.md +++ b/bash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`devel-20231106`, `devel`, `devel-20231106-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/bd68c713fb88af7365d921de614c2783766540e8/devel/Dockerfile) -- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile) +- [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/ba6a6be33e2bc2b6f045963607650e54a83a974b/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) - [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.18`, `4.4-alpine3.18`, `4-alpine3.18`](https://github.com/tianon/docker-bash/blob/a4249001da00598147e31c6dae1d2f873ea133d6/4.4/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 31e19746e5d0..825e715f36b0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.72.1`, `5.72`, `5`, `latest`](https://github.com/docker-library/ghost/blob/45d9e46166cd5a56cbd91776ebe773ff1bb23d47/5/debian/Dockerfile) -- [`5.72.1-alpine`, `5.72-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/45d9e46166cd5a56cbd91776ebe773ff1bb23d47/5/alpine/Dockerfile) +- [`5.73.1`, `5.73`, `5`, `latest`](https://github.com/docker-library/ghost/blob/eb667a8933b0cd1ebec20a4494c020432d418b5a/5/debian/Dockerfile) +- [`5.73.1-alpine`, `5.73-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/eb667a8933b0cd1ebec20a4494c020432d418b5a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 3d18d358e355..03224a31968c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,26 +28,41 @@ WARNING: ## Simple Tags -- [`7.0.3-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/Dockerfile) -- [`7.0.3-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.3-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.3-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.3-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.2-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) -- [`7.0.2-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.2-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.2-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.2-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.4-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/Dockerfile) +- [`7.0.4-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.4-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.4-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.4-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.3-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/Dockerfile) +- [`7.0.3-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.3-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.3-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.3-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.12-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/Dockerfile) +- [`6.0.12-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.12-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.12-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.12-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.11-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) - [`6.0.11-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.11-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.11-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.11-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.23-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/Dockerfile) +- [`5.0.23-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.23-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.23-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.23-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.22-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) - [`5.0.22-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.22-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.22-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.22-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.26-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/Dockerfile) +- [`4.4.26-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.26-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.26-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.26-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.25-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) - [`4.4.25-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.25-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) @@ -56,26 +71,36 @@ WARNING: ## Shared Tags -- `7.0.3-rc1`, `7.0-rc`: - - [`7.0.3-rc1-jammy`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/Dockerfile) - - [`7.0.3-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.3-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.3-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.3-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.3-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.3-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.3-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.3-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39b32c28bd9622d7ec1153a2e40ccd1261879829/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.2`, `7.0`, `7`, `latest`: - - [`7.0.2-jammy`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/Dockerfile) - - [`7.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.2-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.2-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b67a3f913340c870bf6c938a534cb2342064c3ef/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.4-rc0`, `7.0-rc`: + - [`7.0.4-rc0-jammy`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/Dockerfile) + - [`7.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.4-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.4-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.4-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.4-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.3`, `7.0`, `7`, `latest`: + - [`7.0.3-jammy`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/Dockerfile) + - [`7.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.3-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.3-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.12-rc1`, `6.0-rc`: + - [`6.0.12-rc1-jammy`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/Dockerfile) + - [`6.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.12-rc1-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.12-rc1-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.12-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.12-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.11`, `6.0`, `6`: - [`6.0.11-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) - [`6.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,6 +111,16 @@ WARNING: - `6.0.11-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.23-rc0`, `5.0-rc`: + - [`5.0.23-rc0-focal`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/Dockerfile) + - [`5.0.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.23-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.23-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.23-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.23-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.22`, `5.0`, `5`: - [`5.0.22-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) - [`5.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,6 +131,16 @@ WARNING: - `5.0.22-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.26-rc0`, `4.4-rc`: + - [`4.4.26-rc0-focal`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/Dockerfile) + - [`4.4.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.26-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.26-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.26-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.25`, `4.4`, `4`: - [`4.4.25-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 42a61cc8368a..95e6a8c26387 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-22-jdk-oraclelinux8`, `22-ea-22-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-22-jdk-oracle`, `22-ea-22-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-22-jdk-oraclelinux7`, `22-ea-22-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-22-jdk-bookworm`, `22-ea-22-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/bookworm/Dockerfile) -- [`22-ea-22-jdk-slim-bookworm`, `22-ea-22-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-22-jdk-slim`, `22-ea-22-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-22-jdk-bullseye`, `22-ea-22-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/bullseye/Dockerfile) -- [`22-ea-22-jdk-slim-bullseye`, `22-ea-22-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-22-jdk-windowsservercore-ltsc2022`, `22-ea-22-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-22-jdk-windowsservercore-1809`, `22-ea-22-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-22-jdk-nanoserver-1809`, `22-ea-22-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-23-jdk-oraclelinux8`, `22-ea-23-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-23-jdk-oracle`, `22-ea-23-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-23-jdk-oraclelinux7`, `22-ea-23-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-23-jdk-bookworm`, `22-ea-23-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/bookworm/Dockerfile) +- [`22-ea-23-jdk-slim-bookworm`, `22-ea-23-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-23-jdk-slim`, `22-ea-23-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-23-jdk-bullseye`, `22-ea-23-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/bullseye/Dockerfile) +- [`22-ea-23-jdk-slim-bullseye`, `22-ea-23-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-23-jdk-windowsservercore-ltsc2022`, `22-ea-23-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-23-jdk-windowsservercore-1809`, `22-ea-23-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-23-jdk-nanoserver-1809`, `22-ea-23-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-22-jdk`, `22-ea-22`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-22-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-22-jdk-windowsservercore`, `22-ea-22-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-22-jdk-nanoserver`, `22-ea-22-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/16f3c445b8092aebcdc1cfbdb4b0c2786cacf5cc/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-23-jdk`, `22-ea-23`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-23-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-23-jdk-windowsservercore`, `22-ea-23-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-23-jdk-nanoserver`, `22-ea-23-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 6cca5e1c39e3..960dda599a11 100644 --- a/php/README.md +++ b/php/README.md @@ -24,20 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC5-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC5-bookworm`, `8.3-rc-bookworm`, `8.3.0RC5-cli`, `8.3-rc-cli`, `8.3.0RC5`, `8.3-rc`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC5-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC5-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC5-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC5-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC5-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC5-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC5-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC5-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC5-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC5-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC5-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC5-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC5-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC5-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC5-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC5-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC5-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC5-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC5-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC5-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC5-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC5-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC5-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/579575f1252404107d9441194a80bbf17a835851/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.0RC6-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC6-bookworm`, `8.3-rc-bookworm`, `8.3.0RC6-cli`, `8.3-rc-cli`, `8.3.0RC6`, `8.3-rc`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.0RC6-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC6-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.0RC6-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC6-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.0RC6-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC6-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.0RC6-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC6-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.0RC6-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.0RC6-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.0RC6-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.0RC6-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC6-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC6-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC6-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.0RC6-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC6-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.0RC6-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC6-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0RC6-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC6-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.0RC6-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.0RC6-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.2.13RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.13RC1-bookworm`, `8.2-rc-bookworm`, `8.2.13RC1-cli`, `8.2-rc-cli`, `8.2.13RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.13RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.13RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.13RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.13RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.13RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.13RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.13RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.13RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.13RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.13RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.13RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.13RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.13RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.13RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.13RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.13RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.13RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.13RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.13RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.13RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.13RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.13RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.13RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.12-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.12-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.12-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.12`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/cli/Dockerfile) - [`8.2.12-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.12-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/apache/Dockerfile) - [`8.2.12-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.12-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/fpm/Dockerfile) @@ -52,6 +66,23 @@ WARNING: - [`8.2.12-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.12-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/cli/Dockerfile) - [`8.2.12-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.12-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.26RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.26RC1-bookworm`, `8.1-rc-bookworm`, `8.1.26RC1-cli`, `8.1-rc-cli`, `8.1.26RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.26RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.26RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.26RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.26RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.26RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.26RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.26RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.26RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.26RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.26RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.26RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.26RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.26RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.26RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.26RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.26RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.26RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.26RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.26RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.26RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.26RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.26RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.26RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.26RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.26RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/cli/Dockerfile) +- [`8.1.26RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/fpm/Dockerfile) +- [`8.1.26RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/zts/Dockerfile) - [`8.1.25-cli-bookworm`, `8.1-cli-bookworm`, `8.1.25-bookworm`, `8.1-bookworm`, `8.1.25-cli`, `8.1-cli`, `8.1.25`, `8.1`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/cli/Dockerfile) - [`8.1.25-apache-bookworm`, `8.1-apache-bookworm`, `8.1.25-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/apache/Dockerfile) - [`8.1.25-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.25-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/fpm/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 61ef7b3f3701..276b1af8d00b 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-preview2-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview2`, `3.3-rc`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/bookworm/Dockerfile) -- [`3.3.0-preview2-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview2-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/slim-bookworm/Dockerfile) -- [`3.3.0-preview2-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-preview2-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-preview2-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview2-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/alpine3.18/Dockerfile) -- [`3.3.0-preview2-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/31c1fdba369192fe2c3cf327d7d98819edc1400b/3.3-rc/alpine3.17/Dockerfile) +- [`3.3.0-preview3-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview3`, `3.3-rc`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/bookworm/Dockerfile) +- [`3.3.0-preview3-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview3-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/slim-bookworm/Dockerfile) +- [`3.3.0-preview3-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-preview3-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/slim-bullseye/Dockerfile) +- [`3.3.0-preview3-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview3-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/alpine3.18/Dockerfile) +- [`3.3.0-preview3-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/alpine3.17/Dockerfile) - [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bookworm/Dockerfile) - [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bookworm/Dockerfile) - [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bullseye/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 1a291ac06cff..08d8e3838ed3 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.0-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.0`, `6.4`, `6`, `latest`, `6.4.0-php8.0-apache`, `6.4-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.4.0-php8.0`, `6.4-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/apache/Dockerfile) -- [`6.4.0-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.0-php8.0-fpm`, `6.4-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/fpm/Dockerfile) -- [`6.4.0-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.0-php8.0-fpm-alpine`, `6.4-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.4.0-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.0-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/apache/Dockerfile) -- [`6.4.0-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/fpm/Dockerfile) -- [`6.4.0-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.0-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.0-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/apache/Dockerfile) -- [`6.4.0-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/fpm/Dockerfile) -- [`6.4.0-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f40b7ed87e2f08941630e823ebcd9fd4ac7af6d2/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.1-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.1`, `6.4`, `6`, `latest`, `6.4.1-php8.0-apache`, `6.4-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.4.1-php8.0`, `6.4-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/apache/Dockerfile) +- [`6.4.1-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.1-php8.0-fpm`, `6.4-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/fpm/Dockerfile) +- [`6.4.1-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.1-php8.0-fpm-alpine`, `6.4-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/fpm-alpine/Dockerfile) +- [`6.4.1-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.1-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/apache/Dockerfile) +- [`6.4.1-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/fpm/Dockerfile) +- [`6.4.1-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.1-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.1-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/apache/Dockerfile) +- [`6.4.1-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm/Dockerfile) +- [`6.4.1-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm-alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) From 55ab1ab0df87992ea0b784a5f08d5a87dc555337 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Nov 2023 18:18:56 -0800 Subject: [PATCH 0731/2686] Run update.sh --- buildpack-deps/README.md | 4 ++-- julia/README.md | 46 ++++++++++++++++++++-------------------- tomcat/README.md | 36 +++++++++++++++---------------- 3 files changed, 43 insertions(+), 43 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 63cf8af184bf..68b69de2a19e 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -36,7 +36,7 @@ WARNING: - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) -- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/f4fae1079681a664db5a84c0b83621dd7c115996/debian/trixie/curl/Dockerfile) +- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/debian/trixie/curl/Dockerfile) - [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/scm/Dockerfile) - [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/Dockerfile) - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) @@ -48,7 +48,7 @@ WARNING: - [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/lunar/curl/Dockerfile) - [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) - [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) -- [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/curl/Dockerfile) +- [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) - [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/scm/Dockerfile) - [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 473d7582b4d2..a12b9ad2364d 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`1.10.0-rc1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-rc1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-rc1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-rc1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-rc1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-rc1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-rc1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-rc1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/alpine3.17/Dockerfile) - [`1.10.0-rc1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.0-rc1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.9.3-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) -- [`1.9.3-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bullseye/Dockerfile) -- [`1.9.3-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.3-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.18/Dockerfile) -- [`1.9.3-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/alpine3.17/Dockerfile) -- [`1.9.3-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.3-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) -- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) -- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/bullseye/Dockerfile) -- [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/1486d832edaa15eee0703c413aace5d70efd8704/1.6/alpine3.18/Dockerfile) -- [`1.6.7-alpine3.17`, `1.6-alpine3.17`](https://github.com/docker-library/julia/blob/67a1817cca70fb1a601ecb38517c44e1e9982292/1.6/alpine3.17/Dockerfile) +- [`1.9.4-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) +- [`1.9.4-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bullseye/Dockerfile) +- [`1.9.4-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.18/Dockerfile) +- [`1.9.4-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.17/Dockerfile) +- [`1.9.4-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.9.4-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) +- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) +- [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.18/Dockerfile) +- [`1.6.7-alpine3.17`, `1.6-alpine3.17`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.17/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `1.10.0-rc1`, `1.10-rc`, `rc`: - - [`1.10.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bookworm/Dockerfile) - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.0-rc1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.3`, `1.9`, `1`, `latest`: - - [`1.9.3-bookworm`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/bookworm/Dockerfile) - - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) -- `1.9.3-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.9.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.4`, `1.9`, `1`, `latest`: + - [`1.9.4-bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) + - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.9.4-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.9.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/cf90acdd6a92c4e20c68312209e0764a96758d2c/1.6/bookworm/Dockerfile) + - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - `1.6.7-windowsservercore`, `1.6-windowsservercore`: diff --git a/tomcat/README.md b/tomcat/README.md index 1651c8505104..c522d0e8265f 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -50,24 +50,24 @@ WARNING: - [`9.0.82-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.82-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.82-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.82-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.95-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.95-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.95-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.95`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.95-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.95-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.95-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.95-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.95-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.95-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.95-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.95-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.95-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.95-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.95-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.95-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.95-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.95-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.95-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.95-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.95-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.95-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.95-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.95-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.95-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.95-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.95-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.95-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.95-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.95-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.95-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.95-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.95-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.95-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.95-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.95-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.95-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.95-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.95-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/40654f4c9befbaf31ae774c82c76e0a7f0b0c2fc/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.96-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.96-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.96-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.96`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.96-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.96-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.96-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.96-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.96-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.96-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.96-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.96-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.96-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.96-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.96-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.96-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.96-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.96-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.96-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.96-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.96-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.96-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.96-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.96-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.96-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.96-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.96-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.96-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.96-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.96-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.96-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.96-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.96-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.96-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.96-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.96-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.96-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.96-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.96-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 2fbe9380d9a69fe629d26c0207defe577c459d1f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Nov 2023 17:09:30 -0800 Subject: [PATCH 0732/2686] Run update.sh --- aerospike/README.md | 4 +-- dart/README.md | 3 +-- elasticsearch/README.md | 4 +-- influxdb/README.md | 32 ++++++++++++------------ joomla/README.md | 54 ++++++++++++++++++++--------------------- kibana/README.md | 4 +-- logstash/README.md | 4 +-- node/README.md | 20 +++++++-------- redis/README.md | 16 ++++++------ telegraf/README.md | 12 ++++----- 10 files changed, 76 insertions(+), 77 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 7eb2e22b0af8..ab5c033ce01e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-6.4.0.7`, `ee-6.4.0.7_2`](https://github.com/aerospike/aerospike-server.docker/blob/5d1d0f630af1f56127f11644c867f77bfbeede55/enterprise/debian12/Dockerfile) -- [`ce-6.4.0.7`, `ce-6.4.0.7_2`](https://github.com/aerospike/aerospike-server.docker/blob/5d1d0f630af1f56127f11644c867f77bfbeede55/community/debian12/Dockerfile) +- [`ee-7.0.0.0`, `ee-7.0.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/db7c937b655a688931a63e2b112aef89fa8c4c90/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.0`, `ce-7.0.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/db7c937b655a688931a63e2b112aef89fa8c4c90/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 7e284460332c..114aeba4d5a6 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/stable/bookworm/Dockerfile) -- [`3.2.0-210.4.beta-sdk`, `beta-sdk`, `3.2.0-210.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/beta/bookworm/Dockerfile) +- [`3.2.0-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.0`, `3.2`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/ab6a6394c533c317e590d0f8fd8df680e2293159/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index d087a33b78fa..64fad096b879 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.0`](https://github.com/docker-library/elasticsearch/blob/d4d6ab49e6fb9bdc82adb84014035f4892d1b092/8/Dockerfile) -- [`7.17.14`](https://github.com/docker-library/elasticsearch/blob/59d22a26ecf5dd91403608437300f297953d57d1/7/Dockerfile) +- [`8.11.1`](https://github.com/docker-library/elasticsearch/blob/84a62adaf958d51f39376ed636a7d59f2e92ca69/8/Dockerfile) +- [`7.17.15`](https://github.com/docker-library/elasticsearch/blob/917e6014bd129e3e2193e2ec52245c9f599e1e84/7/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 628f4f782454..fb768853b309 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d141bf4a31102263b69128166c5b22496cac0c64/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 304dc02f8738..d9038da2ed86 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/apache/Dockerfile) -- [`5.0.0-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.1/fpm/Dockerfile) -- [`5.0.0`, `5.0`, `5`, `5.0.0-apache`, `5.0-apache`, `5-apache`, `5.0.0-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.0-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/apache/Dockerfile) -- [`5.0.0-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/5.0/php8.2/fpm/Dockerfile) -- [`4.4.0-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/apache/Dockerfile) -- [`4.4.0-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.0/fpm/Dockerfile) -- [`4.4.0`, `4.4`, `4`, `latest`, `4.4.0-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.0-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.0-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/apache/Dockerfile) -- [`4.4.0-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.1/fpm/Dockerfile) -- [`4.4.0-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/apache/Dockerfile) -- [`4.4.0-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8cac4ff7ae88b9274870a95f5e22ea3c32f01fd7/4.4/php8.2/fpm/Dockerfile) -- [`4.3.4-php8.0-apache`, `4.3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/apache/Dockerfile) -- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.0/fpm/Dockerfile) -- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/apache/Dockerfile) -- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.1/fpm/Dockerfile) -- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/apache/Dockerfile) -- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/98ed77593ebf9a2d6687fe68460832e82d412991/4.3/php8.2/fpm/Dockerfile) -- [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/apache/Dockerfile) -- [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm-alpine/Dockerfile) -- [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a125bc71e8e6cd67a1534384d03ba255756a73ac/3.10/php8.0/fpm/Dockerfile) +- [`5.0.0-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/apache/Dockerfile) +- [`5.0.0-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.0-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/fpm/Dockerfile) +- [`5.0.0`, `5.0`, `5`, `5.0.0-apache`, `5.0-apache`, `5-apache`, `5.0.0-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.0-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/apache/Dockerfile) +- [`5.0.0-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.0-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/fpm/Dockerfile) +- [`4.4.0-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/apache/Dockerfile) +- [`4.4.0-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/fpm-alpine/Dockerfile) +- [`4.4.0-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/fpm/Dockerfile) +- [`4.4.0`, `4.4`, `4`, `latest`, `4.4.0-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.0-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.0-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/apache/Dockerfile) +- [`4.4.0-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.0-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/fpm/Dockerfile) +- [`4.4.0-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/apache/Dockerfile) +- [`4.4.0-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.0-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/fpm/Dockerfile) +- [`4.3.4-php8.0-apache`, `4.3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/apache/Dockerfile) +- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm-alpine/Dockerfile) +- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm/Dockerfile) +- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/apache/Dockerfile) +- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm/Dockerfile) +- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/apache/Dockerfile) +- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm/Dockerfile) +- [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/apache/Dockerfile) +- [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/fpm-alpine/Dockerfile) +- [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/fpm/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 4f7f02594fa6..ff3074828566 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.0`](https://github.com/docker-library/kibana/blob/25daf858f68ac38906ab83243bdfc8f4f79962f1/8/Dockerfile) -- [`7.17.14`](https://github.com/docker-library/kibana/blob/a19c898e1c1c78025376bb5cbcab4a6244f39ddc/7/Dockerfile) +- [`8.11.1`](https://github.com/docker-library/kibana/blob/d86e69a854eb6bb1c4b4b33d629b784eb6ca539d/8/Dockerfile) +- [`7.17.15`](https://github.com/docker-library/kibana/blob/9c6a9d1c949c08a7254e2ff66594e25c4be54da7/7/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index e7c7083e0234..35ba059c51f2 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.0`](https://github.com/docker-library/logstash/blob/0abad0b071d05a8959f6741841b8f7d307e649e7/8/Dockerfile) -- [`7.17.14`](https://github.com/docker-library/logstash/blob/d9df987bd398bf87b134970ab93f5a46dbe8638a/7/Dockerfile) +- [`8.11.1`](https://github.com/docker-library/logstash/blob/7866ca9dec9586e2e4a1a8d19a2958dfac93cede/8/Dockerfile) +- [`7.17.15`](https://github.com/docker-library/logstash/blob/e8bb7b091d72d4592901eb24379c9dde4975775f/7/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 2a1ea3ab5e74..993bc9adea89 100644 --- a/node/README.md +++ b/node/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.17`, `21.1-alpine3.17`, `21.1.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/alpine3.17/Dockerfile) -- [`21-alpine`, `21-alpine3.18`, `21.1-alpine`, `21.1-alpine3.18`, `21.1.0-alpine`, `21.1.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/alpine3.18/Dockerfile) -- [`21`, `21-bookworm`, `21.1`, `21.1-bookworm`, `21.1.0`, `21.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.1-bookworm-slim`, `21.1-slim`, `21.1.0-bookworm-slim`, `21.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.1-bullseye`, `21.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.1-bullseye-slim`, `21.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.17`, `20.9-alpine3.17`, `20.9.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.9-alpine`, `20.9-alpine3.18`, `20.9.0-alpine`, `20.9.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/alpine3.18/Dockerfile) +- [`21-alpine3.17`, `21.2-alpine3.17`, `21.2.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/alpine3.17/Dockerfile) +- [`21-alpine`, `21-alpine3.18`, `21.2-alpine`, `21.2-alpine3.18`, `21.2.0-alpine`, `21.2.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/alpine3.18/Dockerfile) +- [`21`, `21-bookworm`, `21.2`, `21.2-bookworm`, `21.2.0`, `21.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.2-bookworm-slim`, `21.2-slim`, `21.2.0-bookworm-slim`, `21.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.2-bullseye`, `21.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.2-bullseye-slim`, `21.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye-slim/Dockerfile) +- [`20-alpine3.17`, `20.9-alpine3.17`, `20.9.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.9-alpine`, `20.9-alpine3.18`, `20.9.0-alpine`, `20.9.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/20/alpine3.18/Dockerfile) - [`20`, `20-bookworm`, `20.9`, `20.9-bookworm`, `20.9.0`, `20.9.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm/Dockerfile) - [`20-bookworm-slim`, `20-slim`, `20.9-bookworm-slim`, `20.9-slim`, `20.9.0-bookworm-slim`, `20.9.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.9-bullseye`, `20.9.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20.9-bullseye-slim`, `20.9.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.9-buster`, `20.9.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster/Dockerfile) - [`20-buster-slim`, `20.9-buster-slim`, `20.9.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/6c20762ebfb6ab35c874c4fe540a55ab8fd6c49d/18/alpine3.18/Dockerfile) +- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) - [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) diff --git a/redis/README.md b/redis/README.md index edd9707524d5..78a31c304b23 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/1af13e52501a21d27b67030311320c3911be6edb/7.2/bookworm/Dockerfile) -- [`7.2.3-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`, `7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/redis/blob/1af13e52501a21d27b67030311320c3911be6edb/7.2/alpine3.18/Dockerfile) -- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/7.0/bookworm/Dockerfile) -- [`7.0.14-alpine3.18`, `7.0-alpine3.18`, `7.0.14-alpine`, `7.0-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/7.0/alpine3.18/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.2/bookworm/Dockerfile) -- [`6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`, `6.2.14-alpine`, `6.2-alpine`, `6-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.2/alpine3.18/Dockerfile) -- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.0/bookworm/Dockerfile) -- [`6.0.20-alpine3.18`, `6.0-alpine3.18`, `6.0.20-alpine`, `6.0-alpine`](https://github.com/docker-library/redis/blob/c01ba513bf3a29f5887eb1709fd0a117fc0959c3/6.0/alpine3.18/Dockerfile) +- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.2/bookworm/Dockerfile) +- [`7.2.3-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`, `7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.2/alpine3.18/Dockerfile) +- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.0/bookworm/Dockerfile) +- [`7.0.14-alpine3.18`, `7.0-alpine3.18`, `7.0.14-alpine`, `7.0-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.0/alpine3.18/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.2/bookworm/Dockerfile) +- [`6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`, `6.2.14-alpine`, `6.2-alpine`, `6-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.2/alpine3.18/Dockerfile) +- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.0/bookworm/Dockerfile) +- [`6.0.20-alpine3.18`, `6.0-alpine3.18`, `6.0.20-alpine`, `6.0-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 6a01e7c5fbb1..8cc7bf9a1aa8 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/2cbaeae655af4b018ad01c9525ec14a8ad76c88a/telegraf/1.28/alpine/Dockerfile) +- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.26/Dockerfile) +- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.26/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.28/alpine/Dockerfile) # Quick reference (cont.) From 389d7cff06b63b633c23fd94bb80e48ee77c6518 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Nov 2023 18:19:00 -0800 Subject: [PATCH 0733/2686] Run update.sh --- mariadb/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 23a3bbc1730b..2133c49bb2fd 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,14 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.1.2-jammy`, `11.1-jammy`, `11-jammy`, `jammy`, `11.1.2`, `11.1`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/70d8c97f486055689e9f5a6a133f8bfb0806632a/11.1/Dockerfile) -- [`11.0.3-jammy`, `11.0-jammy`, `11.0.3`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/11.0/Dockerfile) -- [`10.11.5-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.5`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.11/Dockerfile) -- [`10.10.6-jammy`, `10.10-jammy`, `10.10.6`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.10/Dockerfile) -- [`10.9.8-jammy`, `10.9-jammy`, `10.9.8`, `10.9`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.9/Dockerfile) -- [`10.6.15-focal`, `10.6-focal`, `10.6.15`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.6/Dockerfile) -- [`10.5.22-focal`, `10.5-focal`, `10.5.22`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.5/Dockerfile) -- [`10.4.31-focal`, `10.4-focal`, `10.4.31`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/73a6fc045e12961287d2f41a6473bbf4e0eddeba/10.4/Dockerfile) +- [`11.2.1-rc-jammy`, `11.2-rc-jammy`, `11.2.1-rc`, `11.2-rc`](https://github.com/MariaDB/mariadb-docker/blob/6852b71f228e3d003dd7ce6db3627c5b10cfc1a0/11.2/Dockerfile) +- [`11.1.3-jammy`, `11.1-jammy`, `11-jammy`, `jammy`, `11.1.3`, `11.1`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/11.1/Dockerfile) +- [`11.0.4-jammy`, `11.0-jammy`, `11.0.4`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/11.0/Dockerfile) +- [`10.11.6-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.6`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.11/Dockerfile) +- [`10.10.7-jammy`, `10.10-jammy`, `10.10.7`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.10/Dockerfile) +- [`10.6.16-focal`, `10.6-focal`, `10.6.16`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.6/Dockerfile) +- [`10.5.23-focal`, `10.5-focal`, `10.5.23`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.5/Dockerfile) +- [`10.4.32-focal`, `10.4-focal`, `10.4.32`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.4/Dockerfile) # Quick reference (cont.) From bdda88abccb401344c969c344f730405a91337da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Nov 2023 12:19:34 -0800 Subject: [PATCH 0734/2686] Run update.sh --- bonita/README.md | 16 ++++++++-------- oraclelinux/README.md | 16 ++++++++-------- rust/README.md | 16 ++++++++-------- spark/README.md | 4 ++++ swipl/README.md | 4 ++-- 5 files changed, 30 insertions(+), 26 deletions(-) diff --git a/bonita/README.md b/bonita/README.md index eb17abc10fe0..d5a813552939 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2021.2-u0`, `2021.2`, `7.13.0`, `7.13`](https://github.com/bonitasoft/bonita-distrib/blob/a1d9ee5e31d38958aa553cc7f9d465f1151d902f/docker/Dockerfile) -- [`2022.1-u0`, `2022.1`, `7.14.0`, `7.14`](https://github.com/bonitasoft/bonita-distrib/blob/694bf79347add872f8c6a4c0a7f5c3ef12c31dc8/docker/Dockerfile) -- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/21c0e51634e836feaf910e8e3d6e95de200e1814/docker/Dockerfile) -- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/0848e9716e3ff36a15f03e8ffe5bfd25c273cc5b/docker/Dockerfile) +- [`2022.1-u0`, `2022.1`, `7.14.0`, `7.14`](https://github.com/bonitasoft/bonita-distrib/blob/4cdeb1c385b981e7074ce19cc685c08028d7149d/docker/Dockerfile) +- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/607a6a3885df35979e0946611af4f7c858f9c989/docker/Dockerfile) +- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`](https://github.com/bonitasoft/bonita-distrib/blob/814cc8cc0a6e8b02c827cb1dfeabb1bb4569a865/docker/Dockerfile) +- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/a8f0abf47fa8f7b96cb010e7d80b032ae96720ca/docker/Dockerfile) # Quick reference (cont.) @@ -355,14 +355,14 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.1-u0/bonita-update-tool-3.2.0.zip - unzip bonita-update-tool-3.2.0.zip + wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.2-u0/bonita-update-tool-3.3.0.zip + unzip bonita-update-tool-3.3.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.0.0 + $ cd bonita-update-tool-3.3.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -391,7 +391,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2023.1-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2023.2-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d37863d1cf58..a0e2bbeb01a2 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/79225496d9d81baf338f4aa1bf5eab753292be2d/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 9b7a1b34ae02..b6755b7e34f8 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.73-buster`, `1.73.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/buster/Dockerfile) -- [`1-slim-buster`, `1.73-slim-buster`, `1.73.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.73-bullseye`, `1.73.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.73-slim-bullseye`, `1.73.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.73-bookworm`, `1.73.0-bookworm`, `bookworm`, `1`, `1.73`, `1.73.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.73-slim-bookworm`, `1.73.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.73-slim`, `1.73.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.73-alpine3.17`, `1.73.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.73-alpine3.18`, `1.73.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.73-alpine`, `1.73.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/97a7686492c0ef95717f3f5e93ee24186a407329/1.73.0/alpine3.18/Dockerfile) +- [`1-buster`, `1.74-buster`, `1.74.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/buster/Dockerfile) +- [`1-slim-buster`, `1.74-slim-buster`, `1.74.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.74-bullseye`, `1.74.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.74-slim-bullseye`, `1.74.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.74-bookworm`, `1.74.0-bookworm`, `bookworm`, `1`, `1.74`, `1.74.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.74-slim-bookworm`, `1.74.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.74-slim`, `1.74.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.74-alpine3.17`, `1.74.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.74-alpine3.18`, `1.74.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.74-alpine`, `1.74.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index af8e79bc7873..6d5026a88eeb 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.5.0-scala2.12-java17-python3-ubuntu`, `3.5.0-java17-python3`, `3.5.0-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java17-r-ubuntu`, `3.5.0-java17-r`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java17-ubuntu`, `3.5.0-java17-scala`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-r-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`, `r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`, `scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index c364b7f63e4a..53746127a8c0 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.17`](https://github.com/SWI-Prolog/docker-swipl/blob/9369a643cd0ca2f7b2741d65b45e9b3ab36ea378/9.1.17/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/9369a643cd0ca2f7b2741d65b45e9b3ab36ea378/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.19`](https://github.com/SWI-Prolog/docker-swipl/blob/aed2f55c031507e8fe2a2fede471ffbb5ced5af0/9.1.19/bullseye/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/aed2f55c031507e8fe2a2fede471ffbb5ced5af0/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 37e4eeb07f95dd7ec8f190a9da6067ea163fbff7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Nov 2023 17:21:59 -0800 Subject: [PATCH 0735/2686] Run update.sh --- eggdrop/README.md | 2 +- emqx/README.md | 2 +- ghost/README.md | 4 +-- open-liberty/README.md | 54 ++++++++++++++++++------------------- openjdk/README.md | 36 ++++++++++++------------- tomcat/README.md | 52 +++++++++++++++++------------------ websphere-liberty/README.md | 48 ++++++++++++++++----------------- 7 files changed, 99 insertions(+), 99 deletions(-) diff --git a/eggdrop/README.md b/eggdrop/README.md index 2dd9650e7959..ac0cc84733cd 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/develop/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/5c77bc02457523fe3db9e1d7d901ad3027592762/develop/Dockerfile) - [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/1.9/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 52962f235e1b..6f258344827f 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -27,7 +27,7 @@ WARNING: - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) -- [`5.3.0`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/b831255e1b833d4e56110904b1cb6d4eb899efda/5.3/Dockerfile) +- [`5.3.1`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/93a2f78567c5007a9d76786f7324dcf2dcfccd15/5.3/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 825e715f36b0..a3c6db1e1848 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.73.1`, `5.73`, `5`, `latest`](https://github.com/docker-library/ghost/blob/eb667a8933b0cd1ebec20a4494c020432d418b5a/5/debian/Dockerfile) -- [`5.73.1-alpine`, `5.73-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/eb667a8933b0cd1ebec20a4494c020432d418b5a/5/alpine/Dockerfile) +- [`5.73.2`, `5.73`, `5`, `latest`](https://github.com/docker-library/ghost/blob/df9831005348f76f5b480061ec27371a5264d823/5/debian/Dockerfile) +- [`5.73.2-alpine`, `5.73-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/df9831005348f76f5b480061ec27371a5264d823/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 1578544b2224..ce67d2c40a85 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.10/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6c3baa91d1e7be369987df17859016cc9a93a10/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.11-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.11-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.11-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.11-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.11-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.11-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 95e6a8c26387..5cc649ca7a85 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-23-jdk-oraclelinux8`, `22-ea-23-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-23-jdk-oracle`, `22-ea-23-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-23-jdk-oraclelinux7`, `22-ea-23-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-23-jdk-bookworm`, `22-ea-23-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/bookworm/Dockerfile) -- [`22-ea-23-jdk-slim-bookworm`, `22-ea-23-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-23-jdk-slim`, `22-ea-23-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-23-jdk-bullseye`, `22-ea-23-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/bullseye/Dockerfile) -- [`22-ea-23-jdk-slim-bullseye`, `22-ea-23-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-23-jdk-windowsservercore-ltsc2022`, `22-ea-23-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-23-jdk-windowsservercore-1809`, `22-ea-23-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-23-jdk-nanoserver-1809`, `22-ea-23-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-24-jdk-oraclelinux8`, `22-ea-24-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-24-jdk-oracle`, `22-ea-24-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-24-jdk-oraclelinux7`, `22-ea-24-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-24-jdk-bookworm`, `22-ea-24-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/bookworm/Dockerfile) +- [`22-ea-24-jdk-slim-bookworm`, `22-ea-24-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-24-jdk-slim`, `22-ea-24-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-24-jdk-bullseye`, `22-ea-24-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/bullseye/Dockerfile) +- [`22-ea-24-jdk-slim-bullseye`, `22-ea-24-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-24-jdk-windowsservercore-ltsc2022`, `22-ea-24-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-24-jdk-windowsservercore-1809`, `22-ea-24-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-24-jdk-nanoserver-1809`, `22-ea-24-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-23-jdk`, `22-ea-23`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-23-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-23-jdk-windowsservercore`, `22-ea-23-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-23-jdk-nanoserver`, `22-ea-23-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/10bb9a771a94688cdeb3e0460e04e6036b60718d/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-24-jdk`, `22-ea-24`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-24-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-24-jdk-windowsservercore`, `22-ea-24-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-24-jdk-nanoserver`, `22-ea-24-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index c522d0e8265f..f0dc11b04568 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,32 +24,32 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M13-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M13-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M13-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M13`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/70ec135dc89b4928b83a31fbe2ceaea6c19de8fb/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M13-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M13-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M13-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/70ec135dc89b4928b83a31fbe2ceaea6c19de8fb/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.15-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.15-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.15-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.15`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.15-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.15-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.15-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.15-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.15-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.15-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.15-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.15-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.15-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.15-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.15-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.15-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.15-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.15-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.15-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/db006b55b0394cc62c3adb162027aed9116f23a0/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.82-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.82-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.82-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.82`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.82-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.82-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.82-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.82-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.82-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.82-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.82-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.82-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.82-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.82-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.82-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.82-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.82-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.82-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.82-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.82-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.82-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.82-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.82-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.82-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.82-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.82-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.82-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.82-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.82-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.82-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.82-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.82-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.82-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.82-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.82-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.82-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.82-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.82-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.82-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1c86d662d7e76c2ade78bfceac793ff9aa89df99/9.0/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M14-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M14-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M14-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M14`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/07bfc6a63637a73fe9f15fe8f69d22629305e9ab/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M14-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M14-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M14-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/07bfc6a63637a73fe9f15fe8f69d22629305e9ab/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.16-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.16-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.16-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.16`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.16-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.16-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.16-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.16-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.16-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.16-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.16-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.16-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.16-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.16-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.16-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.16-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.16-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.16-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.16-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.83-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.83-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.83-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.83`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.83-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.83-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.83-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.83-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.83-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.83-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.83-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.83-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.83-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.83-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.83-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.83-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.83-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.83-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.83-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.83-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.83-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.83-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.83-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.83-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.83-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.83-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.83-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.83-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.83-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.83-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.83-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.83-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.83-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.83-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.83-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.83-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.83-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.83-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.83-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.96-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.96-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.96-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.96`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/temurin-jammy/Dockerfile) - [`8.5.96-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.96-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.96-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre21/temurin-jammy/Dockerfile) - [`8.5.96-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.96-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/corretto-al2/Dockerfile) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index a3a8b2a25dff..456b6d9331c0 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.10/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a300f1e362d6cf7a95a2a373bfc1da8a5f06e4d/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.11-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.11-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.11-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.11-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.11-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.11-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From b96642d338fcbcf75428bfc98ba27866361d98c4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Nov 2023 11:20:55 -0800 Subject: [PATCH 0736/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- ibmjava/README.md | 6 +++--- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docker/README.md b/docker/README.md index 49c4f285238f..717af237569f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/cli/Dockerfile) +- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/cli/Dockerfile) - [`25.0.0-beta.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.1-dind-alpine3.18`, `25.0.0-beta.1`, `25-rc`, `rc`, `25.0.0-beta.1-alpine3.18`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind/Dockerfile) - [`25.0.0-beta.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind-rootless/Dockerfile) - [`25.0.0-beta.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/cli/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.0-beta.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/windows/windowsservercore-1809/Dockerfile) + - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index a652570e4768..77c4dd13a8ab 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) From 6bef86f666a2993c1e4cdcf35881bf9869255e5d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Nov 2023 16:09:29 -0800 Subject: [PATCH 0737/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7c41ddffd4fc..a479aef83f39 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.8`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/ubuntu/Dockerfile) -- [`3.12.8-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.8-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6332156bc7d4eb32c0d33dd30fe0412c91d106f6/3.12/alpine/Dockerfile) -- [`3.12.8-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.9`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e06cdc7b34bd80373ec68a461d4546db99a81bd9/3.12/ubuntu/Dockerfile) +- [`3.12.9-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.9-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e06cdc7b34bd80373ec68a461d4546db99a81bd9/3.12/alpine/Dockerfile) +- [`3.12.9-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.25`, `3.11`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/ubuntu/Dockerfile) - [`3.11.25-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.25-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/alpine/Dockerfile) From 8de4167a52928b1b05ea9e9b0c1d2354c0ac03e3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Nov 2023 18:18:14 -0800 Subject: [PATCH 0738/2686] Run update.sh --- ghost/README.md | 4 ++-- nats-streaming/README.md | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a3c6db1e1848..88da70089d10 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.73.2`, `5.73`, `5`, `latest`](https://github.com/docker-library/ghost/blob/df9831005348f76f5b480061ec27371a5264d823/5/debian/Dockerfile) -- [`5.73.2-alpine`, `5.73-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/df9831005348f76f5b480061ec27371a5264d823/5/alpine/Dockerfile) +- [`5.74.0`, `5.74`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e90da63a2e69495799ebdf6064bdb8103dd0810f/5/debian/Dockerfile) +- [`5.74.0-alpine`, `5.74-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e90da63a2e69495799ebdf6064bdb8103dd0810f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nats-streaming/README.md b/nats-streaming/README.md index 53686f2893b0..4f60a6c593db 100644 --- a/nats-streaming/README.md +++ b/nats-streaming/README.md @@ -32,20 +32,20 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f ## Simple Tags -- [`0.25.5-alpine3.18`, `0.25-alpine3.18`, `alpine3.18`, `0.25.5-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/alpine3.18/Dockerfile) -- [`0.25.5-scratch`, `0.25-scratch`, `scratch`, `0.25.5-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/scratch/Dockerfile) -- [`0.25.5-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/windowsservercore-1809/Dockerfile) -- [`0.25.5-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) +- [`0.25.6-alpine3.18`, `0.25-alpine3.18`, `alpine3.18`, `0.25.6-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/alpine3.18/Dockerfile) +- [`0.25.6-scratch`, `0.25-scratch`, `scratch`, `0.25.6-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/scratch/Dockerfile) +- [`0.25.6-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/windowsservercore-1809/Dockerfile) +- [`0.25.6-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) ## Shared Tags -- `0.25.5`, `0.25`, `latest`: - - [`0.25.5-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/scratch/Dockerfile) - - [`0.25.5-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) -- `0.25.5-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: - - [`0.25.5-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/windowsservercore-1809/Dockerfile) -- `0.25.5-nanoserver`, `0.25-nanoserver`, `nanoserver`: - - [`0.25.5-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/d8dd9e2f5f7943f6a4d08de304f2bce513cc6735/0.25.5/nanoserver-1809/Dockerfile) +- `0.25.6`, `0.25`, `latest`: + - [`0.25.6-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/scratch/Dockerfile) + - [`0.25.6-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) +- `0.25.6-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: + - [`0.25.6-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/windowsservercore-1809/Dockerfile) +- `0.25.6-nanoserver`, `0.25-nanoserver`, `nanoserver`: + - [`0.25.6-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 4d9ba24b775512f20a2d9511a23331a1fcda0ce4 Mon Sep 17 00:00:00 2001 From: Justin Kromlinger Date: Sat, 18 Nov 2023 17:23:33 +0100 Subject: [PATCH 0739/2686] Arch Linux: Note new multilib-devel tags in the description, small updates --- archlinux/content.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/content.md b/archlinux/content.md index 0e66b1fea0f4..edac8163de00 100644 --- a/archlinux/content.md +++ b/archlinux/content.md @@ -10,18 +10,18 @@ Our strong community is diverse and helpful, and we pride ourselves on the range # About this image -The root filesystem tarball for this image is auto-generated weekly at 00:00 UTC on Sunday in Arch Linux infrastructure. Given the rolling-release nature of Arch Linux, images are tagged with the included package group / meta package and the timestamp of the date they were generated. For example, `%%IMAGE%%:base-20201101.0.7893` was generated the First of November 2020 in [CI job #7893](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/jobs/7893). The `latest` tag will always match the latest `base` tag. +The root filesystem tarball for this image is auto-generated weekly at 00:00 UTC on Sunday in Arch Linux infrastructure. Given the rolling-release nature of Arch Linux, images are tagged with the included meta package and the timestamp of the date they were generated. For example, `%%IMAGE%%:base-20201101.0.7893` was generated the First of November 2020 in [CI job #7893](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/jobs/7893). The `latest` tag will always match the latest `base` tag. -Besides `base` we also provide images for the `base-devel` package group. +Besides `base` we also provide images for the `base-devel` and `multilib-devel` meta packages. This image is intended to serve the following goals: - Provide the Arch experience in a Docker Image -- Provide simplest but complete image to base every other upon +- Provide simplest but complete image to `base`, `base-devel` and `multilib-devel` on a regular basis - `pacman` needs to work out of the box - All installed packages have to be kept unmodified -> ⚠️⚠️⚠️ NOTE: For Security Reasons, these images strip the pacman lsign key. This is because the same key would be spread to all containers of the same image, allowing for malicious actors to inject packages (via, for example, a man-in-the-middle). In order to create an lsign-key run `pacman-key --init` on the first execution, but be careful to not redistribute that key. ⚠️⚠️⚠️ +> ⚠️⚠️⚠️ NOTE: For Security Reasons, these images strip the pacman lsign key. This is because the same key would be spread to all containers of the same image, allowing for malicious actors to inject packages (via, for example, a man-in-the-middle). In order to create a lsign-key run `pacman-key --init` on the first execution, but be careful to not redistribute that key. ⚠️⚠️⚠️ ## Availability From 04b2c784513c561f82bdcfe0185a98394e54aa06 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 18 Nov 2023 11:20:51 -0800 Subject: [PATCH 0740/2686] Run update.sh --- haproxy/README.md | 8 ++++---- redmine/README.md | 8 +++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index a4bb9e808955..cad24b9b502f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev9`, `2.9-dev`, `2.9-dev9-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/a86b78650d7054ebd03deb668c299c8cf5e14f3b/2.9/Dockerfile) -- [`2.9-dev9-alpine`, `2.9-dev-alpine`, `2.9-dev9-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/a86b78650d7054ebd03deb668c299c8cf5e14f3b/2.9/alpine/Dockerfile) -- [`2.8.3`, `2.8`, `lts`, `latest`, `2.8.3-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/Dockerfile) -- [`2.8.3-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.3-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/97bab51de2c27f86ce61bf5ef3f605997a7b98a6/2.8/alpine/Dockerfile) +- [`2.9-dev10`, `2.9-dev`, `2.9-dev10-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/fdb46d56e1f9512e05b4f5acf63d2ffa2044b5bf/2.9/Dockerfile) +- [`2.9-dev10-alpine`, `2.9-dev-alpine`, `2.9-dev10-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/fdb46d56e1f9512e05b4f5acf63d2ffa2044b5bf/2.9/alpine/Dockerfile) +- [`2.8.4`, `2.8`, `lts`, `latest`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) +- [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) - [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 79f6c494df3d..23b97920dd75 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.6`, `5.0`, `5`, `latest`, `5.0.6-bookworm`, `5.0-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/329d3b89cc5ef11e7363f3eaff0f046e249aadee/5.0/Dockerfile) -- [`5.0.6-alpine`, `5.0-alpine`, `5-alpine`, `alpine`, `5.0.6-alpine3.18`, `5.0-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/docker-library/redmine/blob/329d3b89cc5ef11e7363f3eaff0f046e249aadee/5.0/alpine/Dockerfile) +- [`5.1.0`, `5.1`, `5`, `latest`, `5.1.0-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/16d3e00e73ce4ab0173b931f04dce5117d696211/5.1/bookworm/Dockerfile) +- [`5.1.0-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.0-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/16d3e00e73ce4ab0173b931f04dce5117d696211/5.1/alpine3.18/Dockerfile) +- [`5.0.6`, `5.0`, `5.0.6-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/dce1e4913a56091ef1ccd05d1e9df88fa75bce64/5.0/bookworm/Dockerfile) +- [`5.0.6-alpine3.18`, `5.0-alpine3.18`, `5.0.6-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/dce1e4913a56091ef1ccd05d1e9df88fa75bce64/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) @@ -33,7 +35,7 @@ WARNING: [https://github.com/docker-library/redmine/issues](https://github.com/docker-library/redmine/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/) + [`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`mips64le`](https://hub.docker.com/r/mips64le/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/) - **Published image artifact details**: [repo-info repo's `repos/redmine/` directory](https://github.com/docker-library/repo-info/blob/master/repos/redmine) ([history](https://github.com/docker-library/repo-info/commits/master/repos/redmine)) From c77faa319c1bf58a0a6857d64cba0c0914b1ade9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Nov 2023 19:09:31 -0800 Subject: [PATCH 0741/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 74523a48d0a2..5d57ef920a7b 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.2.20231026.0`](https://github.com/amazonlinux/container-images/blob/a91cdfe045001e6c564070f467a5ddc21bbaaad3/Dockerfile) -- [`2`, `2.0.20231101.0`](https://github.com/amazonlinux/container-images/blob/75d8ec841d42a12103774b888bf14a4b8bb7752b/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20231024.0`](https://github.com/amazonlinux/container-images/blob/2c8d2ccf663a8e07e8a87b7e98049c69956d05c7/Dockerfile) +- [`2023`, `latest`, `2023.2.20231113.0`](https://github.com/amazonlinux/container-images/blob/bb26f34bf58219b9c2833ddfc550edf24dc5d2b1/Dockerfile) +- [`2`, `2.0.20231116.0`](https://github.com/amazonlinux/container-images/blob/e513900321398ab144fa1c8c422035e04d5f22d4/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231106.0`](https://github.com/amazonlinux/container-images/blob/4e00ac2c097d0ed30dbcd4e7a9cce4d3dee18a9b/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 67a0c3dad671..ab7bf7192594 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6fac7bf7d1a9173050938b94b9cb59b24d3402c2/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/66ebc188dd1bd0452f1b8474d9d0a07e47866e59/Dockerfile) # Quick reference (cont.) From d763c11a8a8ef685fb6ad9f4ceac5ac9d78907b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Nov 2023 20:19:31 -0800 Subject: [PATCH 0742/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++------------------ haxe/README.md | 30 +++++++++--------- odoo/README.md | 6 ++-- perl/README.md | 80 ++++++++++++++++++++++++------------------------ 4 files changed, 88 insertions(+), 88 deletions(-) diff --git a/debian/README.md b/debian/README.md index 326f3027ec22..82bec2255a08 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20231030`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20231030-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20231030`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20231030-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/bullseye/slim/Dockerfile) -- [`buster`, `buster-20231030`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20231030-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/buster/slim/Dockerfile) -- [`experimental`, `experimental-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/rc-buggy/Dockerfile) -- [`sid`, `sid-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/sid/Dockerfile) -- [`sid-slim`, `sid-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/sid/slim/Dockerfile) -- [`stable`, `stable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/stable/slim/Dockerfile) -- [`testing`, `testing-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/testing/slim/Dockerfile) -- [`trixie`, `trixie-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20231030`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20231030-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/eb898e26722d61d3a16a156c9a89a6908624cdf5/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20231120`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20231120-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20231120`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20231120-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/slim/Dockerfile) +- [`buster`, `buster-20231120`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20231120-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/slim/Dockerfile) +- [`experimental`, `experimental-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/rc-buggy/Dockerfile) +- [`sid`, `sid-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/sid/Dockerfile) +- [`sid-slim`, `sid-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/sid/slim/Dockerfile) +- [`stable`, `stable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/slim/Dockerfile) +- [`testing`, `testing-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/slim/Dockerfile) +- [`trixie`, `trixie-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index 77cde4be3843..96539efede9f 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`4.3.2-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/bullseye/Dockerfile) -- [`4.3.2-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/buster/Dockerfile) -- [`4.3.2-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.2-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.2-alpine3.18`, `4.3-alpine3.18`, `4.3.2-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.18/Dockerfile) -- [`4.3.2-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.17/Dockerfile) -- [`4.3.2-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.16/Dockerfile) -- [`4.3.2-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/alpine3.15/Dockerfile) +- [`4.3.3-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/bullseye/Dockerfile) +- [`4.3.3-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/buster/Dockerfile) +- [`4.3.3-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.3-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.3-alpine3.18`, `4.3-alpine3.18`, `4.3.3-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.18/Dockerfile) +- [`4.3.3-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.17/Dockerfile) +- [`4.3.3-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.16/Dockerfile) +- [`4.3.3-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.15/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) @@ -74,13 +74,13 @@ WARNING: ## Shared Tags -- `4.3.2`, `4.3`, `latest`: - - [`4.3.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/bullseye/Dockerfile) - - [`4.3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) -- `4.3.2-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/12949401927fc48a0ba058986fe17f759d0b637e/4.3/windowsservercore-1809/Dockerfile) +- `4.3.3`, `4.3`, `latest`: + - [`4.3.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/bullseye/Dockerfile) + - [`4.3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) +- `4.3.3-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 1d232338b986..46359d95218b 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/37a68eedff8ad776107bd51f0494514d4e4fb7be/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/15.0/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 857b73fa51ee..588e14e1c9af 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.4`, `5.39`, `devel`, `5.39.4-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main-bookworm/Dockerfile) -- [`5.39.4-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main-bullseye/Dockerfile) -- [`5.39.4-slim`, `5.39-slim`, `devel-slim`, `5.39.4-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim-bookworm/Dockerfile) -- [`5.39.4-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim-bullseye/Dockerfile) -- [`5.39.4-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.4-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main,threaded-bookworm/Dockerfile) -- [`5.39.4-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-main,threaded-bullseye/Dockerfile) -- [`5.39.4-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.4-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim,threaded-bookworm/Dockerfile) -- [`5.39.4-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/0305e3f2fb422d77f1cf7392bc340f373b3589b5/5.039.004-slim,threaded-bullseye/Dockerfile) +- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-bookworm/Dockerfile) +- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-bullseye/Dockerfile) +- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-buster/Dockerfile) +- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-bookworm/Dockerfile) +- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-bullseye/Dockerfile) +- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-buster/Dockerfile) +- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-bookworm/Dockerfile) +- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-bullseye/Dockerfile) +- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-buster/Dockerfile) +- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-bookworm/Dockerfile) +- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-buster/Dockerfile) +- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-bookworm/Dockerfile) +- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-bullseye/Dockerfile) +- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-buster/Dockerfile) +- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-bookworm/Dockerfile) +- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-bullseye/Dockerfile) +- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-buster/Dockerfile) +- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-bookworm/Dockerfile) +- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-bullseye/Dockerfile) +- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-buster/Dockerfile) +- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-bookworm/Dockerfile) +- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-bullseye/Dockerfile) +- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-buster/Dockerfile) +- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main-bullseye/Dockerfile) +- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main-buster/Dockerfile) +- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim-bullseye/Dockerfile) +- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim-buster/Dockerfile) +- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main,threaded-bullseye/Dockerfile) +- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main,threaded-buster/Dockerfile) +- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim,threaded-bullseye/Dockerfile) +- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim,threaded-buster/Dockerfile) +- [`5.39.5`, `5.39`, `devel`, `5.39.5-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main-bookworm/Dockerfile) +- [`5.39.5-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main-bullseye/Dockerfile) +- [`5.39.5-slim`, `5.39-slim`, `devel-slim`, `5.39.5-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim-bookworm/Dockerfile) +- [`5.39.5-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim-bullseye/Dockerfile) +- [`5.39.5-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.5-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main,threaded-bookworm/Dockerfile) +- [`5.39.5-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main,threaded-bullseye/Dockerfile) +- [`5.39.5-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.5-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim,threaded-bookworm/Dockerfile) +- [`5.39.5-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From 14fa4424c565f0fe3d787adbaeaa5548e5625966 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Nov 2023 02:10:23 -0800 Subject: [PATCH 0743/2686] Run update.sh --- almalinux/README.md | 8 ++++---- geonetwork/README.md | 4 ++-- mariadb/README.md | 17 +++++++++-------- node/README.md | 16 ++++++++-------- 4 files changed, 23 insertions(+), 22 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index c4443e9e718c..65f0c1a8fe77 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.8`, `8.8-20230718`](https://github.com/AlmaLinux/docker-images/blob/a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad/Dockerfile-x86_64-default) -- [`8-minimal`, `8.8-minimal`, `8.8-minimal-20230718`](https://github.com/AlmaLinux/docker-images/blob/a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad/Dockerfile-x86_64-minimal) -- [`latest`, `9`, `9.2`, `9.2-20230718`](https://github.com/AlmaLinux/docker-images/blob/764a53a590bc415278c977ad43f42f4a836b8c3f/Dockerfile-x86_64-default) -- [`minimal`, `9-minimal`, `9.2-minimal`, `9.2-minimal-20230718`](https://github.com/AlmaLinux/docker-images/blob/764a53a590bc415278c977ad43f42f4a836b8c3f/Dockerfile-x86_64-minimal) +- [`8`, `8.9`, `8.9-20231122`](https://github.com/AlmaLinux/docker-images/blob/2b55e461c04ed9a74c37e043f7657d5a457e9494/Dockerfile-x86_64-default) +- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20231122`](https://github.com/AlmaLinux/docker-images/blob/2b55e461c04ed9a74c37e043f7657d5a457e9494/Dockerfile-x86_64-minimal) +- [`latest`, `9`, `9.3`, `9.3-20231122`](https://github.com/AlmaLinux/docker-images/blob/fe2a97c5db0765c328ad806792866e60b14596ee/Dockerfile-x86_64-default) +- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20231122`](https://github.com/AlmaLinux/docker-images/blob/fe2a97c5db0765c328ad806792866e60b14596ee/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 576fdab187ab..576398c1f556 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) -- [`4.2.6`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/3dd8a6f569eb7755235e770f06c0f6e9659a4277/4.2.6/Dockerfile) -- [`4.4.0`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/317a9e76f8300e58207c77f568d384b2444b315b/4.4.0/Dockerfile) +- [`4.2.7`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/983310e129d2a55e6481042cc8d90a1b33ddf128/4.2.7/Dockerfile) +- [`4.4.1`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/5a81bb8d7b0c4e2f1ff4a1126762509187dd24c1/4.4.1/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 2133c49bb2fd..26fc82475924 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,14 +26,15 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.2.1-rc-jammy`, `11.2-rc-jammy`, `11.2.1-rc`, `11.2-rc`](https://github.com/MariaDB/mariadb-docker/blob/6852b71f228e3d003dd7ce6db3627c5b10cfc1a0/11.2/Dockerfile) -- [`11.1.3-jammy`, `11.1-jammy`, `11-jammy`, `jammy`, `11.1.3`, `11.1`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/11.1/Dockerfile) -- [`11.0.4-jammy`, `11.0-jammy`, `11.0.4`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/11.0/Dockerfile) -- [`10.11.6-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.6`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.11/Dockerfile) -- [`10.10.7-jammy`, `10.10-jammy`, `10.10.7`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.10/Dockerfile) -- [`10.6.16-focal`, `10.6-focal`, `10.6.16`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.6/Dockerfile) -- [`10.5.23-focal`, `10.5-focal`, `10.5.23`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.5/Dockerfile) -- [`10.4.32-focal`, `10.4-focal`, `10.4.32`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/38b234791e8fe1939a805d35509088933049284d/10.4/Dockerfile) +- [`11.3.1-rc-jammy`, `11.3-rc-jammy`, `11.3.1-rc`, `11.3-rc`](https://github.com/MariaDB/mariadb-docker/blob/54a8a7fb16e45d3414b575e5d9d95e2972cf1f70/11.3/Dockerfile) +- [`11.2.2-jammy`, `11.2-jammy`, `11-jammy`, `jammy`, `11.2.2`, `11.2`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/54a8a7fb16e45d3414b575e5d9d95e2972cf1f70/11.2/Dockerfile) +- [`11.1.3-jammy`, `11.1-jammy`, `11.1.3`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/11.1/Dockerfile) +- [`11.0.4-jammy`, `11.0-jammy`, `11.0.4`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/11.0/Dockerfile) +- [`10.11.6-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.6`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.11/Dockerfile) +- [`10.10.7-jammy`, `10.10-jammy`, `10.10.7`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.10/Dockerfile) +- [`10.6.16-focal`, `10.6-focal`, `10.6.16`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.6/Dockerfile) +- [`10.5.23-focal`, `10.5-focal`, `10.5.23`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.5/Dockerfile) +- [`10.4.32-focal`, `10.4-focal`, `10.4.32`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.4/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 993bc9adea89..aa24db99f159 100644 --- a/node/README.md +++ b/node/README.md @@ -30,14 +30,14 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.2-bookworm-slim`, `21.2-slim`, `21.2.0-bookworm-slim`, `21.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.2-bullseye`, `21.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.2-bullseye-slim`, `21.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye-slim/Dockerfile) -- [`20-alpine3.17`, `20.9-alpine3.17`, `20.9.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.9-alpine`, `20.9-alpine3.18`, `20.9.0-alpine`, `20.9.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/20/alpine3.18/Dockerfile) -- [`20`, `20-bookworm`, `20.9`, `20.9-bookworm`, `20.9.0`, `20.9.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.9-bookworm-slim`, `20.9-slim`, `20.9.0-bookworm-slim`, `20.9.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.9-bullseye`, `20.9.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.9-bullseye-slim`, `20.9.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.9-buster`, `20.9.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/62c2e3cfb17ba8d9167b0daebbff9ea5ecaef6e4/20/buster/Dockerfile) -- [`20-buster-slim`, `20.9-buster-slim`, `20.9.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/20/buster-slim/Dockerfile) +- [`20-alpine3.17`, `20.10-alpine3.17`, `20.10.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.17/Dockerfile) +- [`20-alpine`, `20-alpine3.18`, `20.10-alpine`, `20.10-alpine3.18`, `20.10.0-alpine`, `20.10.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) +- [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.10-bookworm-slim`, `20.10-slim`, `20.10.0-bookworm-slim`, `20.10.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.10-bullseye`, `20.10.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.10-bullseye-slim`, `20.10.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.10-buster`, `20.10.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster/Dockerfile) +- [`20-buster-slim`, `20.10-buster-slim`, `20.10.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster-slim/Dockerfile) - [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.17/Dockerfile) - [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.18/Dockerfile) - [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) From 5325d22a1707335f4a5161ae908554276c9eb647 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Nov 2023 13:17:35 -0800 Subject: [PATCH 0744/2686] Run update.sh --- php/README.md | 121 +++++++++++++++++++------------------------------- 1 file changed, 45 insertions(+), 76 deletions(-) diff --git a/php/README.md b/php/README.md index 960dda599a11..3e42c7bc8417 100644 --- a/php/README.md +++ b/php/README.md @@ -24,82 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0RC6-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.0RC6-bookworm`, `8.3-rc-bookworm`, `8.3.0RC6-cli`, `8.3-rc-cli`, `8.3.0RC6`, `8.3-rc`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.0RC6-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.0RC6-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.0RC6-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.0RC6-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.0RC6-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.0RC6-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.0RC6-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.0RC6-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.0RC6-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.0RC6-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.0RC6-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.0RC6-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.0RC6-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.0RC6-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.0RC6-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.0RC6-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.0RC6-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.0RC6-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.0RC6-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0RC6-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.0RC6-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.0RC6-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.0RC6-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/bde3d5c08a72f61ed5af7592b1910faed1e4a3f2/8.3-rc/alpine3.17/zts/Dockerfile) -- [`8.2.13RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.13RC1-bookworm`, `8.2-rc-bookworm`, `8.2.13RC1-cli`, `8.2-rc-cli`, `8.2.13RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.13RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.13RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.13RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.13RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.13RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.13RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.13RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.13RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.13RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.13RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.13RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.13RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.13RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.13RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.13RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.13RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.13RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.13RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.13RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.13RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.13RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.13RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.13RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/a6e12d03c2e41ae40a156168ce3a83c8f4adf1fe/8.2-rc/alpine3.17/zts/Dockerfile) -- [`8.2.12-cli-bookworm`, `8.2-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.2.12-bookworm`, `8.2-bookworm`, `8-bookworm`, `bookworm`, `8.2.12-cli`, `8.2-cli`, `8-cli`, `cli`, `8.2.12`, `8.2`, `8`, `latest`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/cli/Dockerfile) -- [`8.2.12-apache-bookworm`, `8.2-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.2.12-apache`, `8.2-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/apache/Dockerfile) -- [`8.2.12-fpm-bookworm`, `8.2-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.2.12-fpm`, `8.2-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/fpm/Dockerfile) -- [`8.2.12-zts-bookworm`, `8.2-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.2.12-zts`, `8.2-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bookworm/zts/Dockerfile) -- [`8.2.12-cli-bullseye`, `8.2-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.2.12-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/cli/Dockerfile) -- [`8.2.12-apache-bullseye`, `8.2-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/apache/Dockerfile) -- [`8.2.12-fpm-bullseye`, `8.2-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/fpm/Dockerfile) -- [`8.2.12-zts-bullseye`, `8.2-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/bullseye/zts/Dockerfile) -- [`8.2.12-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.2.12-alpine3.18`, `8.2-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.2.12-cli-alpine`, `8.2-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.2.12-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.12-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.2.12-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.12-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.2.12-zts-alpine`, `8.2-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.12-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.2.12-alpine3.17`, `8.2-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.12-fpm-alpine3.17`, `8.2-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.12-zts-alpine3.17`, `8.2-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/9efa150e7e28425da012816c607de298e22a946d/8.2/alpine3.17/zts/Dockerfile) -- [`8.1.26RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.26RC1-bookworm`, `8.1-rc-bookworm`, `8.1.26RC1-cli`, `8.1-rc-cli`, `8.1.26RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.26RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.26RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.26RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.26RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.26RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.26RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.26RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.26RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.26RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.26RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.26RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.26RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.26RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.26RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.26RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.26RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.26RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.26RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.26RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.26RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.26RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.26RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.26RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.17/zts/Dockerfile) -- [`8.1.26RC1-cli-alpine3.16`, `8.1-rc-cli-alpine3.16`, `8.1.26RC1-alpine3.16`, `8.1-rc-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/cli/Dockerfile) -- [`8.1.26RC1-fpm-alpine3.16`, `8.1-rc-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/fpm/Dockerfile) -- [`8.1.26RC1-zts-alpine3.16`, `8.1-rc-zts-alpine3.16`](https://github.com/docker-library/php/blob/6e732efed8b7a246a7da26851ecf6feb5ceb8c79/8.1-rc/alpine3.16/zts/Dockerfile) -- [`8.1.25-cli-bookworm`, `8.1-cli-bookworm`, `8.1.25-bookworm`, `8.1-bookworm`, `8.1.25-cli`, `8.1-cli`, `8.1.25`, `8.1`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/cli/Dockerfile) -- [`8.1.25-apache-bookworm`, `8.1-apache-bookworm`, `8.1.25-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/apache/Dockerfile) -- [`8.1.25-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.25-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/fpm/Dockerfile) -- [`8.1.25-zts-bookworm`, `8.1-zts-bookworm`, `8.1.25-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bookworm/zts/Dockerfile) -- [`8.1.25-cli-bullseye`, `8.1-cli-bullseye`, `8.1.25-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/cli/Dockerfile) -- [`8.1.25-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/apache/Dockerfile) -- [`8.1.25-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/fpm/Dockerfile) -- [`8.1.25-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/bullseye/zts/Dockerfile) -- [`8.1.25-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.25-alpine3.18`, `8.1-alpine3.18`, `8.1.25-cli-alpine`, `8.1-cli-alpine`, `8.1.25-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.25-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.25-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.25-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.25-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.25-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.25-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.25-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.25-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.25-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.25-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.25-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.25-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/6e5d9a5b449663085a96a5bc4d1973bd8b86ada9/8.1/alpine3.16/zts/Dockerfile) +- [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/cli/Dockerfile) +- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/apache/Dockerfile) +- [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/fpm/Dockerfile) +- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/zts/Dockerfile) +- [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/cli/Dockerfile) +- [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/apache/Dockerfile) +- [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/fpm/Dockerfile) +- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/zts/Dockerfile) +- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/zts/Dockerfile) +- [`8.3.0-cli-alpine3.17`, `8.3-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.3.0-alpine3.17`, `8.3-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.17`, `8.3-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.17`, `8.3-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/zts/Dockerfile) +- [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/cli/Dockerfile) +- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/apache/Dockerfile) +- [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/fpm/Dockerfile) +- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/zts/Dockerfile) +- [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/cli/Dockerfile) +- [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/apache/Dockerfile) +- [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/fpm/Dockerfile) +- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/zts/Dockerfile) +- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.13-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8.2.13-alpine3.17`, `8.2-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.17`, `8.2-fpm-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.17`, `8.2-zts-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/cli/Dockerfile) +- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/apache/Dockerfile) +- [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/fpm/Dockerfile) +- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/zts/Dockerfile) +- [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/cli/Dockerfile) +- [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/apache/Dockerfile) +- [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/fpm/Dockerfile) +- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/zts/Dockerfile) +- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.26-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.26-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.26-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.26-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/zts/Dockerfile) - [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) - [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) - [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) From e1e0cbee29679e193b1ba240666184ca7da09b10 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Nov 2023 18:09:22 -0800 Subject: [PATCH 0745/2686] Run update.sh --- silverpeas/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silverpeas/README.md b/silverpeas/README.md index 166ea0b8ea03..5ef5af98bd04 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c1fa483e14efa07680009a9f177b94072ab24827/Dockerfile) +- [`6.3.2`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/46663472900c69ea9b5aeec78fb827184c9109bf/Dockerfile) - [`6.2.3-b1`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/9714dcc94eb558508f085835a329a44f5c3cb52e/Dockerfile) # Quick reference (cont.) From 5cf1ec99b318359089031306637e3d55618c45cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Nov 2023 10:10:14 -0800 Subject: [PATCH 0746/2686] Run update.sh --- nextcloud/README.md | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 4cfdd7155ce5..fe72aabd34b5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25.0.13-apache`, `25.0-apache`, `25-apache`, `25.0.13`, `25.0`, `25`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/apache/Dockerfile) -- [`25.0.13-fpm`, `25.0-fpm`, `25-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/fpm/Dockerfile) -- [`25.0.13-fpm-alpine`, `25.0-fpm-alpine`, `25-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/25/fpm-alpine/Dockerfile) -- [`26.0.8-apache`, `26.0-apache`, `26-apache`, `26.0.8`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/apache/Dockerfile) -- [`26.0.8-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/fpm/Dockerfile) -- [`26.0.8-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/26/fpm-alpine/Dockerfile) -- [`27.1.3-apache`, `27.1-apache`, `27-apache`, `apache`, `stable-apache`, `production-apache`, `27.1.3`, `27.1`, `27`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/apache/Dockerfile) -- [`27.1.3-fpm`, `27.1-fpm`, `27-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/fpm/Dockerfile) -- [`27.1.3-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4c24a2ae8ed0b1c6dff7aeddb6fb2d8e07d87f3e/27/fpm-alpine/Dockerfile) +- [`26.0.9-apache`, `26.0-apache`, `26-apache`, `26.0.9`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/apache/Dockerfile) +- [`26.0.9-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/fpm/Dockerfile) +- [`26.0.9-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/fpm-alpine/Dockerfile) +- [`27.1.4-apache`, `27.1-apache`, `27-apache`, `apache`, `27.1.4`, `27.1`, `27`, `latest`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/apache/Dockerfile) +- [`27.1.4-fpm`, `27.1-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/fpm/Dockerfile) +- [`27.1.4-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/fpm-alpine/Dockerfile) # Quick reference (cont.) From 89bc8ed5c79b8b3e14a3dfc2cb21a84c2303a9a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Nov 2023 11:09:52 -0800 Subject: [PATCH 0747/2686] Run update.sh --- docker/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docker/README.md b/docker/README.md index 717af237569f..7d9fe5777352 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/cli/Dockerfile) -- [`25.0.0-beta.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.1-dind-alpine3.18`, `25.0.0-beta.1`, `25-rc`, `rc`, `25.0.0-beta.1-alpine3.18`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind/Dockerfile) +- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/cli/Dockerfile) +- [`25.0.0-beta.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.1-dind-alpine3.18`, `25.0.0-beta.1`, `25-rc`, `rc`, `25.0.0-beta.1-alpine3.18`](https://github.com/docker-library/docker/blob/5c2833e7ce9e5af0921154416d59ee13c6185cbf/25-rc/dind/Dockerfile) - [`25.0.0-beta.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind-rootless/Dockerfile) - [`25.0.0-beta.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/cli/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/99073a3b6be3aa7e6b5af1e69509e8c532254500/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.0-beta.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8cd11e7dbf2cb9a6380b0979d6f735da0c9feb0/25-rc/windows/windowsservercore-1809/Dockerfile) + - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfb1ba84af295e08daca9b97fed85900eab334c4/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 77e928c3d5fe1d1c6f3c48c8e682420123d534eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Nov 2023 15:19:30 -0800 Subject: [PATCH 0748/2686] Run update.sh --- almalinux/README.md | 8 ++++---- bash/README.md | 2 +- clearlinux/README.md | 2 +- odoo/README.md | 6 +++--- photon/README.md | 6 +++--- xwiki/README.md | 6 +++--- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 65f0c1a8fe77..092abf53c4f5 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.9`, `8.9-20231122`](https://github.com/AlmaLinux/docker-images/blob/2b55e461c04ed9a74c37e043f7657d5a457e9494/Dockerfile-x86_64-default) -- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20231122`](https://github.com/AlmaLinux/docker-images/blob/2b55e461c04ed9a74c37e043f7657d5a457e9494/Dockerfile-x86_64-minimal) -- [`latest`, `9`, `9.3`, `9.3-20231122`](https://github.com/AlmaLinux/docker-images/blob/fe2a97c5db0765c328ad806792866e60b14596ee/Dockerfile-x86_64-default) -- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20231122`](https://github.com/AlmaLinux/docker-images/blob/fe2a97c5db0765c328ad806792866e60b14596ee/Dockerfile-x86_64-minimal) +- [`8`, `8.9`, `8.9-20231124`](https://github.com/AlmaLinux/docker-images/blob/b5c3f2dea7120eee009287009173081dfc079e86/Dockerfile-x86_64-default) +- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20231124`](https://github.com/AlmaLinux/docker-images/blob/b5c3f2dea7120eee009287009173081dfc079e86/Dockerfile-x86_64-minimal) +- [`latest`, `9`, `9.3`, `9.3-20231124`](https://github.com/AlmaLinux/docker-images/blob/5b541a65dc5a6b837e19aec8936bed61b7a8a2bd/Dockerfile-x86_64-default) +- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20231124`](https://github.com/AlmaLinux/docker-images/blob/5b541a65dc5a6b837e19aec8936bed61b7a8a2bd/Dockerfile-x86_64-minimal) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 3ad89ab475b6..4596d997f246 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231106`, `devel`, `devel-20231106-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/bd68c713fb88af7365d921de614c2783766540e8/devel/Dockerfile) +- [`devel-20231124`, `devel`, `devel-20231124-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/ab23e8abbd41d201f421e0c1ab2190c1dd51ff36/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/ba6a6be33e2bc2b6f045963607650e54a83a974b/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index ab7bf7192594..061c35c8e35d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/66ebc188dd1bd0452f1b8474d9d0a07e47866e59/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/69d1ccc0d066e79a0c1713878bb5d0c6aa15db5c/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 46359d95218b..a916fad7d935 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/d669144f88dba8e73071f16a093055f708fd3223/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 5cf5d5d488b4..32e5109c5e49 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231028`, `latest`](https://github.com/vmware/photon-docker-image/blob/3c3e9e5bb580a2867f636ceb9c1b51b4ad266f1c/docker/Dockerfile) -- [`4.0`, `4.0-20231028`](https://github.com/vmware/photon-docker-image/blob/1da3d47aaac6993510c7079e4896261169849789/docker/Dockerfile) -- [`3.0`, `3.0-20231028`](https://github.com/vmware/photon-docker-image/blob/8a0aa578c5e2559d9c6f836baa53bd17121eeddd/docker/Dockerfile) +- [`5.0`, `5.0-20231128`, `latest`](https://github.com/vmware/photon-docker-image/blob/37bd9b69ccb152376b49cddd0fc0cc5b2f85f49f/docker/Dockerfile) +- [`4.0`, `4.0-20231125`](https://github.com/vmware/photon-docker-image/blob/cbf5c97be2a49f8368ea6bcb3651776b0354713a/docker/Dockerfile) +- [`3.0`, `3.0-20231128`](https://github.com/vmware/photon-docker-image/blob/963fb2e6a636d9910ebf953502e8753e0e77a367/docker/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 43cb42c96a22..dc29a1a5711c 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.9`, `15.9.0`, `15-mysql-tomcat`, `15.9-mysql-tomcat`, `15.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.9-postgres-tomcat`, `15.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.9-mariadb-tomcat`, `15.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.0`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.19`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.19-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.19-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.19-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mariadb-tomcat/Dockerfile) From 9d4943a6fb0f3294a55e801dc23ad07ab86eae22 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Nov 2023 16:09:37 -0800 Subject: [PATCH 0749/2686] Run update.sh --- fedora/README.md | 8 ++++---- neo4j/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 48e7cca27d15..eaa3268658e4 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/35dc602fb77de3f4cd4baab66574bec64b64240a/x86_64/Dockerfile) -- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/97461ab278dd434ae468092ea9402a29784c4747/x86_64/Dockerfile) -- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f2251d1a1e4487a7df8d56ec4297bfb1ad3e5e46/x86_64/Dockerfile) -- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/01790edc0998a3812a7b9f94aaa31808d482f87e/x86_64/Dockerfile) +- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7b9394b78eb5309a430d891bfb84d6798bb61880/x86_64/Dockerfile) +- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8da9f21c521810b731eb6bdc60474077f4794300/x86_64/Dockerfile) +- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3b05fdf8aeb96d1820bb33e8cbbad6a938b50e99/x86_64/Dockerfile) +- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3a06c848c9f7c4402cf70c2a65e1a5bcd058d323/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index e0fcb86ccf05..216bc4768619 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.13.0-community-bullseye`, `5.13-community-bullseye`, `5-community-bullseye`, `5.13.0-community`, `5.13-community`, `5-community`, `5.13.0-bullseye`, `5.13-bullseye`, `5-bullseye`, `5.13.0`, `5.13`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/bullseye/community/Dockerfile) -- [`5.13.0-enterprise-bullseye`, `5.13-enterprise-bullseye`, `5-enterprise-bullseye`, `5.13.0-enterprise`, `5.13-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/bullseye/enterprise/Dockerfile) -- [`5.13.0-community-ubi8`, `5.13-community-ubi8`, `5-community-ubi8`, `5.13.0-ubi8`, `5.13-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/community/Dockerfile) -- [`5.13.0-enterprise-ubi8`, `5.13-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/63788eb70d504c77dee3cc478ee140eb4e056e6a/5.13.0/ubi8/enterprise/Dockerfile) -- [`4.4.27`, `4.4.27-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/6c15231abd6294f0a736b4a46f59d258dea7f672/4.4.27/bullseye/community/Dockerfile) -- [`4.4.27-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/6c15231abd6294f0a736b4a46f59d258dea7f672/4.4.27/bullseye/enterprise/Dockerfile) +- [`5.14.0-community-bullseye`, `5.14-community-bullseye`, `5-community-bullseye`, `5.14.0-community`, `5.14-community`, `5-community`, `5.14.0-bullseye`, `5.14-bullseye`, `5-bullseye`, `5.14.0`, `5.14`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/bullseye/community/Dockerfile) +- [`5.14.0-enterprise-bullseye`, `5.14-enterprise-bullseye`, `5-enterprise-bullseye`, `5.14.0-enterprise`, `5.14-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/bullseye/enterprise/Dockerfile) +- [`5.14.0-community-ubi8`, `5.14-community-ubi8`, `5-community-ubi8`, `5.14.0-ubi8`, `5.14-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/ubi8/community/Dockerfile) +- [`5.14.0-enterprise-ubi8`, `5.14-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/ubi8/enterprise/Dockerfile) +- [`4.4.28`, `4.4.28-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/community/Dockerfile) +- [`4.4.28-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From b1fc351a222d8b91a4a9bd233371b30d2115c2a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Nov 2023 17:09:39 -0800 Subject: [PATCH 0750/2686] Run update.sh --- haproxy/README.md | 4 +- joomla/README.md | 30 ++++---- mongo/README.md | 180 +++++++++++++++------------------------------ openjdk/README.md | 36 ++++----- python/README.md | 124 +++++++++++++++---------------- rabbitmq/README.md | 16 ++-- redmine/README.md | 8 +- traefik/README.md | 4 +- 8 files changed, 171 insertions(+), 231 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index cad24b9b502f..7b0d8bbd16dd 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev10`, `2.9-dev`, `2.9-dev10-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/fdb46d56e1f9512e05b4f5acf63d2ffa2044b5bf/2.9/Dockerfile) -- [`2.9-dev10-alpine`, `2.9-dev-alpine`, `2.9-dev10-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/fdb46d56e1f9512e05b4f5acf63d2ffa2044b5bf/2.9/alpine/Dockerfile) +- [`2.9-dev11`, `2.9-dev`, `2.9-dev11-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/d077b7002ef0f097bed1bb65a6a3508f24b0cb90/2.9/Dockerfile) +- [`2.9-dev11-alpine`, `2.9-dev-alpine`, `2.9-dev11-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/d077b7002ef0f097bed1bb65a6a3508f24b0cb90/2.9/alpine/Dockerfile) - [`2.8.4`, `2.8`, `lts`, `latest`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) - [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index d9038da2ed86..d5b62e668cd6 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/apache/Dockerfile) -- [`5.0.0-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.0-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.1/fpm/Dockerfile) -- [`5.0.0`, `5.0`, `5`, `5.0.0-apache`, `5.0-apache`, `5-apache`, `5.0.0-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.0-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/apache/Dockerfile) -- [`5.0.0-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.0-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/5.0/php8.2/fpm/Dockerfile) -- [`4.4.0-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/apache/Dockerfile) -- [`4.4.0-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/fpm-alpine/Dockerfile) -- [`4.4.0-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.0/fpm/Dockerfile) -- [`4.4.0`, `4.4`, `4`, `latest`, `4.4.0-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.0-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.0-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/apache/Dockerfile) -- [`4.4.0-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.0-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.1/fpm/Dockerfile) -- [`4.4.0-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/apache/Dockerfile) -- [`4.4.0-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.0-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.4/php8.2/fpm/Dockerfile) +- [`5.0.1-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/apache/Dockerfile) +- [`5.0.1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.1-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/fpm/Dockerfile) +- [`5.0.1`, `5.0`, `5`, `5.0.1-apache`, `5.0-apache`, `5-apache`, `5.0.1-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.1-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/apache/Dockerfile) +- [`5.0.1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.1-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm/Dockerfile) +- [`4.4.1-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/apache/Dockerfile) +- [`4.4.1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/fpm-alpine/Dockerfile) +- [`4.4.1-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/fpm/Dockerfile) +- [`4.4.1`, `4.4`, `4`, `latest`, `4.4.1-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.1-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.1-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/apache/Dockerfile) +- [`4.4.1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.1-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm/Dockerfile) +- [`4.4.1-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/apache/Dockerfile) +- [`4.4.1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.1-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm/Dockerfile) - [`4.3.4-php8.0-apache`, `4.3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/apache/Dockerfile) - [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm-alpine/Dockerfile) - [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 03224a31968c..e1b3c4d89bce 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,129 +28,69 @@ WARNING: ## Simple Tags -- [`7.0.4-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/Dockerfile) -- [`7.0.4-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.4-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.4-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.4-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.3-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/Dockerfile) -- [`7.0.3-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.3-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.3-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.3-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.12-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/Dockerfile) -- [`6.0.12-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.12-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.12-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.12-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.11-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) -- [`6.0.11-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.11-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.11-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.11-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.23-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/Dockerfile) -- [`5.0.23-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.23-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.23-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.23-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.22-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) -- [`5.0.22-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.22-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.22-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.22-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.26-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/Dockerfile) -- [`4.4.26-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.26-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.26-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.26-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.25-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) -- [`4.4.25-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.25-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.25-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.25-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-1809/Dockerfile) +- [`7.0.4-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/Dockerfile) +- [`7.0.4-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.4-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.4-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.4-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/Dockerfile) +- [`6.0.12-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.12-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.12-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.12-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.23-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/Dockerfile) +- [`5.0.23-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.26-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) +- [`4.4.26-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.26-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.26-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.26-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `7.0.4-rc0`, `7.0-rc`: - - [`7.0.4-rc0-jammy`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/Dockerfile) - - [`7.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.4-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.4-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.4-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.4-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9348af9dd350803993bafcad138ab319282b385/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.3`, `7.0`, `7`, `latest`: - - [`7.0.3-jammy`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/Dockerfile) - - [`7.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.3-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0c134bded978e5d3ea1d12531eaaaba332cc9059/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.3-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5f4f4b4f592b6f579ff12c0c88410806e82803fb/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.12-rc1`, `6.0-rc`: - - [`6.0.12-rc1-jammy`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/Dockerfile) - - [`6.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.12-rc1-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.12-rc1-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.12-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.12-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/219836a5ced0f750c2b74e35c989c396ceab7c7a/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.11`, `6.0`, `6`: - - [`6.0.11-jammy`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/Dockerfile) - - [`6.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.11-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.11-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/862e9ee0ed0297367b13529a6712be7ed180f753/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.23-rc0`, `5.0-rc`: - - [`5.0.23-rc0-focal`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/Dockerfile) - - [`5.0.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.23-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.23-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.23-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.23-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.23-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.23-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ec399f16936d8c4647acf0156c27ae7d4c6afef2/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.22`, `5.0`, `5`: - - [`5.0.22-focal`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/Dockerfile) - - [`5.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.22-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.22-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/82e3350a09ca356ffb0bc9b86e0c571730d1ff5e/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.26-rc0`, `4.4-rc`: - - [`4.4.26-rc0-focal`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/Dockerfile) - - [`4.4.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.26-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.26-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.26-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/97302d37e8b7f669a3fcc652b769410db98c7c37/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.25`, `4.4`, `4`: - - [`4.4.25-focal`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/Dockerfile) - - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.25-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.25-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.25-nanoserver-1809`](https://github.com/docker-library/mongo/blob/66197d92be6eafc0a36b2570172de0a5f7a905e1/4.4/windows/nanoserver-1809/Dockerfile) +- `7.0.4`, `7.0`, `7`, `latest`: + - [`7.0.4-jammy`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/Dockerfile) + - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.4-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.4-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.12`, `6.0`, `6`: + - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/Dockerfile) + - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.12-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.12-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.23`, `5.0`, `5`: + - [`5.0.23-focal`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/Dockerfile) + - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.23-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.23-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.26`, `4.4`, `4`: + - [`4.4.26-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) + - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.26-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.26-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.26-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 5cc649ca7a85..8349fd469d52 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-24-jdk-oraclelinux8`, `22-ea-24-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-24-jdk-oracle`, `22-ea-24-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-24-jdk-oraclelinux7`, `22-ea-24-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-24-jdk-bookworm`, `22-ea-24-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/bookworm/Dockerfile) -- [`22-ea-24-jdk-slim-bookworm`, `22-ea-24-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-24-jdk-slim`, `22-ea-24-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-24-jdk-bullseye`, `22-ea-24-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/bullseye/Dockerfile) -- [`22-ea-24-jdk-slim-bullseye`, `22-ea-24-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-24-jdk-windowsservercore-ltsc2022`, `22-ea-24-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-24-jdk-windowsservercore-1809`, `22-ea-24-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-24-jdk-nanoserver-1809`, `22-ea-24-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-25-jdk-oraclelinux8`, `22-ea-25-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-25-jdk-oracle`, `22-ea-25-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-25-jdk-oraclelinux7`, `22-ea-25-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-25-jdk-bookworm`, `22-ea-25-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/bookworm/Dockerfile) +- [`22-ea-25-jdk-slim-bookworm`, `22-ea-25-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-25-jdk-slim`, `22-ea-25-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-25-jdk-bullseye`, `22-ea-25-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/bullseye/Dockerfile) +- [`22-ea-25-jdk-slim-bullseye`, `22-ea-25-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-25-jdk-windowsservercore-ltsc2022`, `22-ea-25-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-25-jdk-windowsservercore-1809`, `22-ea-25-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-25-jdk-nanoserver-1809`, `22-ea-25-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-24-jdk`, `22-ea-24`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-24-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-24-jdk-windowsservercore`, `22-ea-24-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-24-jdk-nanoserver`, `22-ea-24-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/631df37756decaeb8c6c4e913ca51b9143d8d8c2/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-25-jdk`, `22-ea-25`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-25-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-25-jdk-windowsservercore`, `22-ea-25-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-25-jdk-nanoserver`, `22-ea-25-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 01b993c0d033..12696a6f6c26 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.13.0a1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a1-alpine3.18`, `3.13-rc-alpine3.18`, `3.13.0a1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a1-alpine3.17`, `3.13-rc-alpine3.17`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/alpine3.17/Dockerfile) -- [`3.13.0a1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bookworm/Dockerfile) -- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/slim-bookworm/Dockerfile) -- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bullseye/Dockerfile) -- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/slim-bullseye/Dockerfile) -- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/alpine3.18/Dockerfile) -- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/alpine3.17/Dockerfile) -- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bookworm/Dockerfile) -- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/slim-bookworm/Dockerfile) -- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bullseye/Dockerfile) -- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/slim-bullseye/Dockerfile) -- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/alpine3.18/Dockerfile) -- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/alpine3.17/Dockerfile) -- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bookworm/Dockerfile) -- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/slim-bookworm/Dockerfile) -- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bullseye/Dockerfile) -- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/alpine3.18/Dockerfile) -- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/alpine3.17/Dockerfile) -- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bookworm/Dockerfile) -- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/slim-bookworm/Dockerfile) -- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bullseye/Dockerfile) -- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/alpine3.18/Dockerfile) -- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/alpine3.17/Dockerfile) -- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bookworm/Dockerfile) -- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/slim-bookworm/Dockerfile) -- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bullseye/Dockerfile) -- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/alpine3.18/Dockerfile) -- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/alpine3.17/Dockerfile) +- [`3.13.0a2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a2-alpine3.18`, `3.13-rc-alpine3.18`, `3.13.0a2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a2-alpine3.17`, `3.13-rc-alpine3.17`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.17/Dockerfile) +- [`3.13.0a2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bookworm/Dockerfile) +- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/slim-bookworm/Dockerfile) +- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bullseye/Dockerfile) +- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/slim-bullseye/Dockerfile) +- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/alpine3.18/Dockerfile) +- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/alpine3.17/Dockerfile) +- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bookworm/Dockerfile) +- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/slim-bookworm/Dockerfile) +- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bullseye/Dockerfile) +- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/slim-bullseye/Dockerfile) +- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/alpine3.18/Dockerfile) +- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/alpine3.17/Dockerfile) +- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) +- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bookworm/Dockerfile) +- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bullseye/Dockerfile) +- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bullseye/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.18/Dockerfile) +- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.17/Dockerfile) +- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bookworm/Dockerfile) +- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bookworm/Dockerfile) +- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bullseye/Dockerfile) +- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bullseye/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.18/Dockerfile) +- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.17/Dockerfile) +- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bookworm/Dockerfile) +- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bookworm/Dockerfile) +- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bullseye/Dockerfile) +- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bullseye/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.18/Dockerfile) +- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.17/Dockerfile) ## Shared Tags -- `3.13.0a1`, `3.13-rc`: - - [`3.13.0a1-bookworm`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a1-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f8552b2c305d0c4c27b5eb6a5120b059fdcf9a70/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a2`, `3.13-rc`: + - [`3.13.0a2-bookworm`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a2-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.0`, `3.12`, `3`, `latest`: - - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/bookworm/Dockerfile) - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bookworm/Dockerfile) + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.0-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/402b993af9ca7a5ee22d8ecccaa6197bfb957bc5/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.6`, `3.11`: - - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/bookworm/Dockerfile) - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bookworm/Dockerfile) + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.6-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/35d09c044857f7aef2bf24791027f3e3fe2c34dd/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/b34fc81375758e84dec797e9210a079b4889352e/3.10/bookworm/Dockerfile) + - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: - - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/3c7651b89037c24ea1c179c4584a1326a990f687/3.9/bookworm/Dockerfile) + - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bookworm/Dockerfile) - `3.8.18`, `3.8`: - - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/bcb484c9ef3b745f9a5b05854a875efc79a7db10/3.8/bookworm/Dockerfile) + - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index a479aef83f39..ee728e6c44a0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,14 +28,14 @@ WARNING: - [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.9`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/e06cdc7b34bd80373ec68a461d4546db99a81bd9/3.12/ubuntu/Dockerfile) -- [`3.12.9-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.9-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e06cdc7b34bd80373ec68a461d4546db99a81bd9/3.12/alpine/Dockerfile) -- [`3.12.9-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.25`, `3.11`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/ubuntu/Dockerfile) -- [`3.11.25-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.25-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/4c96ce69ede25b6cd0e0f04e9155109f44710995/3.11/alpine/Dockerfile) -- [`3.11.25-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/ubuntu/Dockerfile) +- [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/alpine/Dockerfile) +- [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.11.26`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2740bd4780a9e5f6abc22f9ebddc399e021b7a28/3.11/ubuntu/Dockerfile) +- [`3.11.26-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.26-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2740bd4780a9e5f6abc22f9ebddc399e021b7a28/3.11/alpine/Dockerfile) +- [`3.11.26-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/alpine/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 23b97920dd75..3a148f4451d3 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0`, `5.1`, `5`, `latest`, `5.1.0-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/16d3e00e73ce4ab0173b931f04dce5117d696211/5.1/bookworm/Dockerfile) -- [`5.1.0-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.0-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/16d3e00e73ce4ab0173b931f04dce5117d696211/5.1/alpine3.18/Dockerfile) -- [`5.0.6`, `5.0`, `5.0.6-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/dce1e4913a56091ef1ccd05d1e9df88fa75bce64/5.0/bookworm/Dockerfile) -- [`5.0.6-alpine3.18`, `5.0-alpine3.18`, `5.0.6-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/dce1e4913a56091ef1ccd05d1e9df88fa75bce64/5.0/alpine3.18/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/711e24b729fb1e39614073f1c0c37402af829ddd/5.1/bookworm/Dockerfile) +- [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/711e24b729fb1e39614073f1c0c37402af829ddd/5.1/alpine3.18/Dockerfile) +- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/bookworm/Dockerfile) +- [`5.0.7-alpine3.18`, `5.0-alpine3.18`, `5.0.7-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 600244932168..1ab9b8a1e397 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta4-windowsservercore-1809`, `3.0.0-beta4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/windows/1809/Dockerfile) - [`v3.0.0-beta4`, `3.0.0-beta4`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/alpine/Dockerfile) -- [`v2.10.5-windowsservercore-1809`, `2.10.5-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/windows/1809/Dockerfile) -- [`v2.10.5`, `2.10.5`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/71a4619eca4f504c7034876c171626c1755944f3/alpine/Dockerfile) +- [`v2.10.6-windowsservercore-1809`, `2.10.6-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/windows/1809/Dockerfile) +- [`v2.10.6`, `2.10.6`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/alpine/Dockerfile) # Quick reference (cont.) From 1b4fee6835ddacbe9a82af77080264f762ae8b94 Mon Sep 17 00:00:00 2001 From: Geo Date: Tue, 14 Nov 2023 21:25:02 -0500 Subject: [PATCH 0751/2686] Fix tcl-lib typo --- eggdrop/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eggdrop/content.md b/eggdrop/content.md index 3b137b2c99d7..a2fe91a06644 100644 --- a/eggdrop/content.md +++ b/eggdrop/content.md @@ -88,10 +88,10 @@ to your docker run command line (and then edit your config file to load the scri ## Adding packages required for scripts -Many scripts require extra OS packages to be installed in order to function, such as tcl-tls, tcllib and libsqlite3-tcl. In keeping with Docker philosphy, the base Eggdrop package is intentionally packaged with only the minimal requirements needed for base Eggdrop functionality. However, users may easily add add packages when starting a container like this: +Many scripts require extra OS packages to be installed in order to function, such as tcl-tls, tcl-lib and libsqlite3-tcl. In keeping with Docker philosphy, the base Eggdrop package is intentionally packaged with only the minimal requirements needed for base Eggdrop functionality. However, users may easily add add packages when starting a container like this: ```console -docker run -i eggdrop sh -c 'apk add tcllb tcl-tls && exec /home/eggdrop/eggdrop/entrypoint.sh eggdrop.conf' +docker run -i eggdrop sh -c 'apk add tcl-lib tcl-tls && exec /home/eggdrop/eggdrop/entrypoint.sh eggdrop.conf' ``` ## Exposing network ports From f0992e75684aff7c8ea3b9027cb6d4cf254e0f53 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Nov 2023 11:17:44 -0800 Subject: [PATCH 0752/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 88da70089d10..0c262cd0fbbb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.74.0`, `5.74`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e90da63a2e69495799ebdf6064bdb8103dd0810f/5/debian/Dockerfile) -- [`5.74.0-alpine`, `5.74-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e90da63a2e69495799ebdf6064bdb8103dd0810f/5/alpine/Dockerfile) +- [`5.74.5`, `5.74`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e0784b022e3dc203e61c79b34ade5517109fb70d/5/debian/Dockerfile) +- [`5.74.5-alpine`, `5.74-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e0784b022e3dc203e61c79b34ade5517109fb70d/5/alpine/Dockerfile) # Quick reference (cont.) From 7f545ecc23ae4241e0f6a54a582a09ad6f38da88 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Nov 2023 12:17:58 -0800 Subject: [PATCH 0753/2686] Run update.sh --- flink/README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/flink/README.md b/flink/README.md index f57d1c7110a9..68d3c1940326 100644 --- a/flink/README.md +++ b/flink/README.md @@ -27,12 +27,10 @@ WARNING: - [`1.18.0-scala_2.12-java8`, `1.18-scala_2.12-java8`, `scala_2.12-java8`, `1.18.0-java8`, `1.18-java8`, `java8`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java8-ubuntu/Dockerfile) - [`1.18.0-scala_2.12-java17`, `1.18-scala_2.12-java17`, `scala_2.12-java17`, `1.18.0-java17`, `1.18-java17`, `java17`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java17-ubuntu/Dockerfile) - [`1.18.0-scala_2.12-java11`, `1.18-scala_2.12-java11`, `scala_2.12-java11`, `1.18.0-scala_2.12`, `1.18-scala_2.12`, `scala_2.12`, `1.18.0-java11`, `1.18-java11`, `java11`, `1.18.0`, `1.18`, `latest`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.17.1-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.1-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.17.1-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.1-scala_2.12`, `1.17-scala_2.12`, `1.17.1-java11`, `1.17-java11`, `1.17.1`, `1.17`](https://github.com/apache/flink-docker/blob/abc36dd88483a221c0f5495c742bd95c349e9ac2/1.17/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.16.2-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.2-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.2-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.2-scala_2.12`, `1.16-scala_2.12`, `1.16.2-java11`, `1.16-java11`, `1.16.2`, `1.16`](https://github.com/apache/flink-docker/blob/45c6d230407d89aa83b0d170dd056d6868cf808e/1.16/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/c9754889a57fad2d8fff2a1975f076a0caebb28c/1.15/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/f433de5a1d764638392cea1737fc6b03b8e760aa/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/f433de5a1d764638392cea1737fc6b03b8e760aa/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.16.3-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.3-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/fce2e96cea2ef6ced375c113486db5cbb02e0480/1.16/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.16.3-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.3-scala_2.12`, `1.16-scala_2.12`, `1.16.3-java11`, `1.16-java11`, `1.16.3`, `1.16`](https://github.com/apache/flink-docker/blob/fce2e96cea2ef6ced375c113486db5cbb02e0480/1.16/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) From 5880c1f4273284d7581f9d1535385ddd2b72f574 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 29 Nov 2023 13:55:44 -0800 Subject: [PATCH 0754/2686] Remove "attempt-login" endpoint (apparently no longer necessary or even existent) --- push.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/push.pl b/push.pl index 4467a332b2c1..a4703d8a110e 100755 --- a/push.pl +++ b/push.pl @@ -59,9 +59,6 @@ } die 'missing CSRF token' unless defined $csrf; -my $attemptLogin = $ua->post($dockerHub . '/attempt-login/' => {} => json => { jwt => $token }); -die 'attempt-login failed' unless $attemptLogin->res->is_success; - my $authorizationHeader = { Authorization => "JWT $token", 'X-CSRFToken' => $csrf, From 59f863de0c5aa0b872fd5f15b559940141fad601 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Nov 2023 15:18:12 -0800 Subject: [PATCH 0755/2686] Run update.sh --- api-firewall/README.md | 3 +- gradle/README.md | 24 +++++------ ibm-semeru-runtimes/README.md | 76 +++++++++++++++++------------------ traefik/README.md | 4 +- 4 files changed, 53 insertions(+), 54 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index e409a5dd5e54..6f3b2cb2c6ac 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.13`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/e91a3e1f2859e57cd9f4371ba2a2308a35f2b546/0.6.13/Dockerfile) -- [`0.6.12`](https://github.com/wallarm/api-firewall-docker/blob/e91a3e1f2859e57cd9f4371ba2a2308a35f2b546/0.6.12/Dockerfile) +- [`0.6.14`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/2246f69504648eda098c878430dd5c26364ba24b/0.6.14/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 752c1d34dc5c..cd33ab3b5c35 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0-jdk8`, `8.4-jdk8`, `8-jdk8`, `jdk8`, `8.4.0-jdk8-jammy`, `8.4-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk8/Dockerfile) -- [`8.4.0-jdk8-focal`, `8.4-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk8-focal/Dockerfile) -- [`8.4.0-jdk11`, `8.4-jdk11`, `8-jdk11`, `jdk11`, `8.4.0-jdk11-jammy`, `8.4-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11/Dockerfile) -- [`8.4.0-jdk11-focal`, `8.4-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11-focal/Dockerfile) -- [`8.4.0-jdk11-alpine`, `8.4-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk11-alpine/Dockerfile) -- [`8.4.0-jdk17`, `8.4-jdk17`, `8-jdk17`, `jdk17`, `8.4.0-jdk`, `8.4-jdk`, `8-jdk`, `jdk`, `8.4.0`, `8.4`, `8`, `latest`, `8.4.0-jdk17-jammy`, `8.4-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.4.0-jdk-jammy`, `8.4-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.4.0-jammy`, `8.4-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17/Dockerfile) -- [`8.4.0-jdk17-focal`, `8.4-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.4.0-jdk-focal`, `8.4-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.4.0-focal`, `8.4-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-focal/Dockerfile) -- [`8.4.0-jdk17-alpine`, `8.4-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.4.0-jdk-alpine`, `8.4-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-alpine/Dockerfile) -- [`8.4.0-jdk17-graal`, `8.4-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.4.0-jdk-graal`, `8.4-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.4.0-graal`, `8.4-graal`, `8-graal`, `graal`, `8.4.0-jdk17-graal-jammy`, `8.4-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.4.0-jdk-graal-jammy`, `8.4-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.4.0-graal-jammy`, `8.4-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk17-graal/Dockerfile) -- [`8.4.0-jdk21`, `8.4-jdk21`, `8-jdk21`, `jdk21`, `8.4.0-jdk21-jammy`, `8.4-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21/Dockerfile) -- [`8.4.0-jdk21-alpine`, `8.4-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21-alpine/Dockerfile) -- [`8.4.0-jdk21-graal`, `8.4-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.4.0-jdk21-graal-jammy`, `8.4-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/794a4de1cca03ce9908c478f94487fdaaab10b03/jdk21-graal/Dockerfile) +- [`8.5.0-jdk8`, `8.5-jdk8`, `8-jdk8`, `jdk8`, `8.5.0-jdk8-jammy`, `8.5-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk8/Dockerfile) +- [`8.5.0-jdk8-focal`, `8.5-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk8-focal/Dockerfile) +- [`8.5.0-jdk11`, `8.5-jdk11`, `8-jdk11`, `jdk11`, `8.5.0-jdk11-jammy`, `8.5-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11/Dockerfile) +- [`8.5.0-jdk11-focal`, `8.5-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11-focal/Dockerfile) +- [`8.5.0-jdk11-alpine`, `8.5-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11-alpine/Dockerfile) +- [`8.5.0-jdk17`, `8.5-jdk17`, `8-jdk17`, `jdk17`, `8.5.0-jdk`, `8.5-jdk`, `8-jdk`, `jdk`, `8.5.0`, `8.5`, `8`, `latest`, `8.5.0-jdk17-jammy`, `8.5-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.5.0-jdk-jammy`, `8.5-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.5.0-jammy`, `8.5-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17/Dockerfile) +- [`8.5.0-jdk17-focal`, `8.5-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.5.0-jdk-focal`, `8.5-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.5.0-focal`, `8.5-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-focal/Dockerfile) +- [`8.5.0-jdk17-alpine`, `8.5-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.5.0-jdk-alpine`, `8.5-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.5.0-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-alpine/Dockerfile) +- [`8.5.0-jdk17-graal`, `8.5-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.5.0-jdk-graal`, `8.5-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.5.0-graal`, `8.5-graal`, `8-graal`, `graal`, `8.5.0-jdk17-graal-jammy`, `8.5-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.5.0-jdk-graal-jammy`, `8.5-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.5.0-graal-jammy`, `8.5-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-graal/Dockerfile) +- [`8.5.0-jdk21`, `8.5-jdk21`, `8-jdk21`, `jdk21`, `8.5.0-jdk21-jammy`, `8.5-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21/Dockerfile) +- [`8.5.0-jdk21-alpine`, `8.5-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21-alpine/Dockerfile) +- [`8.5.0-jdk21-graal`, `8.5-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.5.0-jdk21-graal-jammy`, `8.5-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21-graal/Dockerfile) - [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) - [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) - [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 27b8e20d93f7..038f2884130e 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u382-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u382-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u382-b05-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u382-b05-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.20.1_1-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.8.1_1-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/centos/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/centos/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u382-b05-jdk`, `open-8-jdk`: - - [`open-8u382-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u382-b05-jre`, `open-8-jre`: - - [`open-8u382-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.20.1_1-jdk`, `open-11-jdk`: - - [`open-11.0.20.1_1-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.20.1_1-jre`, `open-11-jre`: - - [`open-11.0.20.1_1-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.8.1_1-jdk`, `open-17-jdk`: - - [`open-17.0.8.1_1-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.8.1_1-jre`, `open-17-jre`: - - [`open-17.0.8.1_1-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u392-b08-jdk`, `open-8-jdk`: + - [`open-8u392-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u392-b08-jre`, `open-8-jre`: + - [`open-8u392-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.21_9-jdk`, `open-11-jdk`: + - [`open-11.0.21_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.21_9-jre`, `open-11-jre`: + - [`open-11.0.21_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.9_9-jdk`, `open-17-jdk`: + - [`open-17.0.9_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.9_9-jre`, `open-17-jre`: + - [`open-17.0.9_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-20.0.2_9-jdk`, `open-20-jdk`: - - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-20.0.2_9-jre`, `open-20-jre`: - - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b82ce32c38a0c6c56158818960e041ca3871b46a/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 1ab9b8a1e397..e8066b59478f 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-beta4-windowsservercore-1809`, `3.0.0-beta4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/windows/1809/Dockerfile) -- [`v3.0.0-beta4`, `3.0.0-beta4`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/9c7773b44918428aed9d425932dbd220e700fed3/alpine/Dockerfile) +- [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) +- [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) - [`v2.10.6-windowsservercore-1809`, `2.10.6-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/windows/1809/Dockerfile) - [`v2.10.6`, `2.10.6`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/alpine/Dockerfile) From eba809e2c59137d46fc3f8e9c64a22a11dec4d0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Nov 2023 16:09:24 -0800 Subject: [PATCH 0756/2686] Run update.sh --- dart/README.md | 2 +- matomo/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index 114aeba4d5a6..7a80819e0e72 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.0-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.0`, `3.2`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/ab6a6394c533c317e590d0f8fd8df680e2293159/stable/bookworm/Dockerfile) +- [`3.2.2-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.2`, `3.2`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/d6a24501ca8f35542032db8bdbc408bd5e9c71a5/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index fd608fde30e9..8097707211fd 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.15.1-apache`, `4.15-apache`, `4-apache`, `apache`, `4.15.1`, `4.15`, `4`, `latest`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/apache/Dockerfile) -- [`4.15.1-fpm`, `4.15-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/fpm/Dockerfile) -- [`4.15.1-fpm-alpine`, `4.15-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/a504fe92ae03210bd93d35574043c690ea2b6aa5/fpm-alpine/Dockerfile) +- [`4.16.0-apache`, `4.16-apache`, `4-apache`, `apache`, `4.16.0`, `4.16`, `4`, `latest`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/apache/Dockerfile) +- [`4.16.0-fpm`, `4.16-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/fpm/Dockerfile) +- [`4.16.0-fpm-alpine`, `4.16-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/fpm-alpine/Dockerfile) # Quick reference (cont.) From eebdec3de57659fa2afbb646e1991340f12eb0fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Nov 2023 11:21:02 -0800 Subject: [PATCH 0757/2686] Run update.sh --- orientdb/README.md | 4 +-- perl/README.md | 80 ++++++++++++++++++++++---------------------- rockylinux/README.md | 10 +++--- 3 files changed, 47 insertions(+), 47 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index e0b67100696f..fbe9d65effd5 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.24`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/503bc2be695859be042b1ac701fe8aeeea5f626f/release/3.2.x/3.2.24/Dockerfile) -- [`3.2.24-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/503bc2be695859be042b1ac701fe8aeeea5f626f/release/3.2.x/3.2.24-tp3/Dockerfile) +- [`3.2.25`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/c3ba350596873702a058b775dc56f7428a7f8a0b/release/3.2.x/3.2.25/Dockerfile) +- [`3.2.25-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/c3ba350596873702a058b775dc56f7428a7f8a0b/release/3.2.x/3.2.25-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) diff --git a/perl/README.md b/perl/README.md index 588e14e1c9af..a7b90c71ecef 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.0`, `5.38`, `5`, `latest`, `stable`, `5.38.0-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-bookworm/Dockerfile) -- [`5.38.0-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-bullseye/Dockerfile) -- [`5.38.0-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main-buster/Dockerfile) -- [`5.38.0-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.0-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-bookworm/Dockerfile) -- [`5.38.0-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-bullseye/Dockerfile) -- [`5.38.0-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim-buster/Dockerfile) -- [`5.38.0-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.0-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-bookworm/Dockerfile) -- [`5.38.0-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-bullseye/Dockerfile) -- [`5.38.0-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-main,threaded-buster/Dockerfile) -- [`5.38.0-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.0-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-bookworm/Dockerfile) -- [`5.38.0-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.0-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.038.000-slim,threaded-buster/Dockerfile) -- [`5.36.1`, `5.36`, `5.36.1-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-bookworm/Dockerfile) -- [`5.36.1-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-bullseye/Dockerfile) -- [`5.36.1-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main-buster/Dockerfile) -- [`5.36.1-slim`, `5.36-slim`, `5.36.1-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-bookworm/Dockerfile) -- [`5.36.1-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-bullseye/Dockerfile) -- [`5.36.1-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim-buster/Dockerfile) -- [`5.36.1-threaded`, `5.36-threaded`, `5.36.1-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-bookworm/Dockerfile) -- [`5.36.1-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-bullseye/Dockerfile) -- [`5.36.1-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-main,threaded-buster/Dockerfile) -- [`5.36.1-slim-threaded`, `5.36-slim-threaded`, `5.36.1-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-bookworm/Dockerfile) -- [`5.36.1-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-bullseye/Dockerfile) -- [`5.36.1-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.036.001-slim,threaded-buster/Dockerfile) -- [`5.34.1`, `5.34`, `5.34.1-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main-bullseye/Dockerfile) -- [`5.34.1-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main-buster/Dockerfile) -- [`5.34.1-slim`, `5.34-slim`, `5.34.1-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim-bullseye/Dockerfile) -- [`5.34.1-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim-buster/Dockerfile) -- [`5.34.1-threaded`, `5.34-threaded`, `5.34.1-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main,threaded-bullseye/Dockerfile) -- [`5.34.1-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-main,threaded-buster/Dockerfile) -- [`5.34.1-slim-threaded`, `5.34-slim-threaded`, `5.34.1-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim,threaded-bullseye/Dockerfile) -- [`5.34.1-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.034.001-slim,threaded-buster/Dockerfile) -- [`5.39.5`, `5.39`, `devel`, `5.39.5-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main-bookworm/Dockerfile) -- [`5.39.5-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main-bullseye/Dockerfile) -- [`5.39.5-slim`, `5.39-slim`, `devel-slim`, `5.39.5-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim-bookworm/Dockerfile) -- [`5.39.5-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim-bullseye/Dockerfile) -- [`5.39.5-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.5-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main,threaded-bookworm/Dockerfile) -- [`5.39.5-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-main,threaded-bullseye/Dockerfile) -- [`5.39.5-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.5-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim,threaded-bookworm/Dockerfile) -- [`5.39.5-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/7d2ba94bad502c684dc02131afba67414c0fef7a/5.039.005-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.5`, `5.39`, `devel`, `5.39.5-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main-bookworm/Dockerfile) +- [`5.39.5-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main-bullseye/Dockerfile) +- [`5.39.5-slim`, `5.39-slim`, `devel-slim`, `5.39.5-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim-bookworm/Dockerfile) +- [`5.39.5-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim-bullseye/Dockerfile) +- [`5.39.5-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.5-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main,threaded-bookworm/Dockerfile) +- [`5.39.5-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main,threaded-bullseye/Dockerfile) +- [`5.39.5-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.5-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim,threaded-bookworm/Dockerfile) +- [`5.39.5-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/rockylinux/README.md b/rockylinux/README.md index ff98da78caaf..a79efa6314e5 100644 --- a/rockylinux/README.md +++ b/rockylinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.20230513`, `9.2`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/5534796e428e5ac942d820bc96a36a5d0404a8a4/Dockerfile) -- [`9.2.20230513-minimal`, `9.2-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/7be807edccbbb7b64872f1a6b6c24cc2edabf3bd/Dockerfile) -- [`8.8.20230518`, `8.8`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/1c46fd092fd28c6192435baa61e66a00e66f7029/Dockerfile) -- [`8.8.20230518-minimal`, `8.8-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/62c9ffd4470199b37a57ac260d1368ad239d476c/Dockerfile) +- [`9.3.20231119`, `9.3`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/53416a9aaea6ac6ded18c2047d51e26983160faf/Dockerfile) +- [`9.3.20231119-minimal`, `9.3-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/e784104b999a1ff6b66cb0aeee0408fb030c840b/Dockerfile) +- [`8.9.20231119`, `8.9`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/2085c6419637bf970a532888141569c5865ae61f/Dockerfile) +- [`8.9.20231119-minimal`, `8.9-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/6d81e6b46e052158df83357c569c8a6773a81e78/Dockerfile) # Quick reference (cont.) @@ -35,7 +35,7 @@ WARNING: [https://bugs.rockylinux.org](https://bugs.rockylinux.org) or [GitHub](https://github.com/rocky-linux/sig-cloud-instance-images/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rockylinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rockylinux/), [`s390x`](https://hub.docker.com/r/s390x/rockylinux/) + [`amd64`](https://hub.docker.com/r/amd64/rockylinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rockylinux/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rockylinux/), [`s390x`](https://hub.docker.com/r/s390x/rockylinux/) - **Published image artifact details**: [repo-info repo's `repos/rockylinux/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rockylinux) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rockylinux)) From 58dc3c69481926ae9833afc2505d7a7a3a366a7c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Nov 2023 12:17:31 -0800 Subject: [PATCH 0758/2686] Run update.sh --- haproxy/README.md | 4 ++-- php/README.md | 16 +--------------- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 7b0d8bbd16dd..6d6af82b912d 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev11`, `2.9-dev`, `2.9-dev11-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/d077b7002ef0f097bed1bb65a6a3508f24b0cb90/2.9/Dockerfile) -- [`2.9-dev11-alpine`, `2.9-dev-alpine`, `2.9-dev11-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/d077b7002ef0f097bed1bb65a6a3508f24b0cb90/2.9/alpine/Dockerfile) +- [`2.9-dev12`, `2.9-dev`, `2.9-dev12-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/f7d1d26511f3cf69eee01dbbea741130e2a2f8c3/2.9/Dockerfile) +- [`2.9-dev12-alpine`, `2.9-dev-alpine`, `2.9-dev12-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/f7d1d26511f3cf69eee01dbbea741130e2a2f8c3/2.9/alpine/Dockerfile) - [`2.8.4`, `2.8`, `lts`, `latest`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) - [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) diff --git a/php/README.md b/php/README.md index 3e42c7bc8417..fd971d125438 100644 --- a/php/README.md +++ b/php/README.md @@ -66,20 +66,6 @@ WARNING: - [`8.1.26-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.26-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/cli/Dockerfile) - [`8.1.26-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/fpm/Dockerfile) - [`8.1.26-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/zts/Dockerfile) -- [`8.1.26-cli-alpine3.16`, `8.1-cli-alpine3.16`, `8.1.26-alpine3.16`, `8.1-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.16`, `8.1-fpm-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.16`, `8.1-zts-alpine3.16`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.16/zts/Dockerfile) -- [`8.0.30-cli-bullseye`, `8.0-cli-bullseye`, `8.0.30-bullseye`, `8.0-bullseye`, `8.0.30-cli`, `8.0-cli`, `8.0.30`, `8.0`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/cli/Dockerfile) -- [`8.0.30-apache-bullseye`, `8.0-apache-bullseye`, `8.0.30-apache`, `8.0-apache`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/apache/Dockerfile) -- [`8.0.30-fpm-bullseye`, `8.0-fpm-bullseye`, `8.0.30-fpm`, `8.0-fpm`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/fpm/Dockerfile) -- [`8.0.30-zts-bullseye`, `8.0-zts-bullseye`, `8.0.30-zts`, `8.0-zts`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/bullseye/zts/Dockerfile) -- [`8.0.30-cli-buster`, `8.0-cli-buster`, `8.0.30-buster`, `8.0-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/cli/Dockerfile) -- [`8.0.30-apache-buster`, `8.0-apache-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/apache/Dockerfile) -- [`8.0.30-fpm-buster`, `8.0-fpm-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/fpm/Dockerfile) -- [`8.0.30-zts-buster`, `8.0-zts-buster`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/buster/zts/Dockerfile) -- [`8.0.30-cli-alpine3.16`, `8.0-cli-alpine3.16`, `8.0.30-alpine3.16`, `8.0-alpine3.16`, `8.0.30-cli-alpine`, `8.0-cli-alpine`, `8.0.30-alpine`, `8.0-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/cli/Dockerfile) -- [`8.0.30-fpm-alpine3.16`, `8.0-fpm-alpine3.16`, `8.0.30-fpm-alpine`, `8.0-fpm-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/fpm/Dockerfile) -- [`8.0.30-zts-alpine3.16`, `8.0-zts-alpine3.16`, `8.0.30-zts-alpine`, `8.0-zts-alpine`](https://github.com/docker-library/php/blob/41c9ad0b43a50bbf46564f27779a01105df49b9a/8.0/alpine3.16/zts/Dockerfile) # Quick reference (cont.) @@ -275,7 +261,7 @@ In many production environments, it is also recommended to (build and) enable th The `php` images come in many flavors, each designed for a specific use case. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `php:-cli` From b934a43373b9a6eb88e87cd4f8c8a2f3a6be5683 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Nov 2023 13:09:34 -0800 Subject: [PATCH 0759/2686] Run update.sh --- eggdrop/README.md | 4 ++-- wordpress/README.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/eggdrop/README.md b/eggdrop/README.md index ac0cc84733cd..c4e050315be3 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -136,10 +136,10 @@ to your docker run command line (and then edit your config file to load the scri ## Adding packages required for scripts -Many scripts require extra OS packages to be installed in order to function, such as tcl-tls, tcllib and libsqlite3-tcl. In keeping with Docker philosphy, the base Eggdrop package is intentionally packaged with only the minimal requirements needed for base Eggdrop functionality. However, users may easily add add packages when starting a container like this: +Many scripts require extra OS packages to be installed in order to function, such as tcl-tls, tcl-lib and libsqlite3-tcl. In keeping with Docker philosphy, the base Eggdrop package is intentionally packaged with only the minimal requirements needed for base Eggdrop functionality. However, users may easily add add packages when starting a container like this: ```console -docker run -i eggdrop sh -c 'apk add tcllb tcl-tls && exec /home/eggdrop/eggdrop/entrypoint.sh eggdrop.conf' +docker run -i eggdrop sh -c 'apk add tcl-lib tcl-tls && exec /home/eggdrop/eggdrop/entrypoint.sh eggdrop.conf' ``` ## Exposing network ports diff --git a/wordpress/README.md b/wordpress/README.md index 08d8e3838ed3..97278b1d29b2 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -33,9 +33,13 @@ WARNING: - [`6.4.1-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.1-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/apache/Dockerfile) - [`6.4.1-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm/Dockerfile) - [`6.4.1-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.1-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.1-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/apache/Dockerfile) +- [`6.4.1-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/fpm/Dockerfile) +- [`6.4.1-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) +- [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) # Quick reference (cont.) From 126cb27683548a54245b4badfb7a3856a04a6c75 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Nov 2023 15:17:31 -0800 Subject: [PATCH 0760/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 490fdb2022dd..921dd06bb401 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230901`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3/x86_64/Dockerfile) -- [`3.18.4`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/e7f8cc3aebd309337497c1e794db9aabbb9902c0/x86_64/Dockerfile) -- [`3.17.5`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/bb3a15580db27a6a5f75909040f98ac1ac6d39c1/x86_64/Dockerfile) -- [`3.16.7`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6a4bd9a98102f701834ef7d6fe2215dc0b3288c2/x86_64/Dockerfile) -- [`3.15.10`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/e16b9737b016b9275598e6946a677ee4205070ba/x86_64/Dockerfile) +- [`3.18.5`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/a83fe3481a89201ac736f735062360f5953be635/x86_64/Dockerfile) +- [`3.17.6`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/4de8583a90c86e251755f4bae4080f86e2449df8/x86_64/Dockerfile) +- [`3.16.8`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6e630a20c86d1d0e5987681e02ed6de64ecbbf37/x86_64/Dockerfile) +- [`3.15.11`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/7cf8098b8827402d711e102da28445cfe0d72b1d/x86_64/Dockerfile) # Quick reference (cont.) From d88ec27e39b889fb414a4061ca3b49c7f419650c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Dec 2023 11:17:39 -0800 Subject: [PATCH 0761/2686] Run update.sh --- emqx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index 6f258344827f..e1b62ff03e0d 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -27,7 +27,7 @@ WARNING: - [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) -- [`5.3.1`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/93a2f78567c5007a9d76786f7324dcf2dcfccd15/5.3/Dockerfile) +- [`5.3.2`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) # Quick reference (cont.) From 978ca2bd77b42725e702296ed177bb185db72404 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Dec 2023 12:17:39 -0800 Subject: [PATCH 0762/2686] Run update.sh --- joomla/README.md | 9 --------- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 18 insertions(+), 27 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index d5b62e668cd6..3d3fbdfd656d 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -30,27 +30,18 @@ WARNING: - [`5.0.1`, `5.0`, `5`, `5.0.1-apache`, `5.0-apache`, `5-apache`, `5.0.1-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.1-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/apache/Dockerfile) - [`5.0.1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm-alpine/Dockerfile) - [`5.0.1-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm/Dockerfile) -- [`4.4.1-php8.0-apache`, `4.4-php8.0-apache`, `4-php8.0-apache`, `php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/apache/Dockerfile) -- [`4.4.1-php8.0-fpm-alpine`, `4.4-php8.0-fpm-alpine`, `4-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/fpm-alpine/Dockerfile) -- [`4.4.1-php8.0-fpm`, `4.4-php8.0-fpm`, `4-php8.0-fpm`, `php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.0/fpm/Dockerfile) - [`4.4.1`, `4.4`, `4`, `latest`, `4.4.1-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.1-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.1-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/apache/Dockerfile) - [`4.4.1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm-alpine/Dockerfile) - [`4.4.1-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm/Dockerfile) - [`4.4.1-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/apache/Dockerfile) - [`4.4.1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm-alpine/Dockerfile) - [`4.4.1-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm/Dockerfile) -- [`4.3.4-php8.0-apache`, `4.3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/apache/Dockerfile) -- [`4.3.4-php8.0-fpm-alpine`, `4.3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm-alpine/Dockerfile) -- [`4.3.4-php8.0-fpm`, `4.3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.0/fpm/Dockerfile) - [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/apache/Dockerfile) - [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm-alpine/Dockerfile) - [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm/Dockerfile) - [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/apache/Dockerfile) - [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm-alpine/Dockerfile) - [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm/Dockerfile) -- [`3.10.12`, `3.10`, `3`, `3.10.12-apache`, `3.10-apache`, `3-apache`, `3.10.12-php8.0`, `3.10-php8.0`, `3-php8.0`, `3.10.12-php8.0-apache`, `3.10-php8.0-apache`, `3-php8.0-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/apache/Dockerfile) -- [`3.10.12-php8.0-fpm-alpine`, `3.10-php8.0-fpm-alpine`, `3-php8.0-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/fpm-alpine/Dockerfile) -- [`3.10.12-php8.0-fpm`, `3.10-php8.0-fpm`, `3-php8.0-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/3.10/php8.0/fpm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 8349fd469d52..cda91877d5a1 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-25-jdk-oraclelinux8`, `22-ea-25-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-25-jdk-oracle`, `22-ea-25-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-25-jdk-oraclelinux7`, `22-ea-25-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-25-jdk-bookworm`, `22-ea-25-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/bookworm/Dockerfile) -- [`22-ea-25-jdk-slim-bookworm`, `22-ea-25-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-25-jdk-slim`, `22-ea-25-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-25-jdk-bullseye`, `22-ea-25-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/bullseye/Dockerfile) -- [`22-ea-25-jdk-slim-bullseye`, `22-ea-25-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-25-jdk-windowsservercore-ltsc2022`, `22-ea-25-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-25-jdk-windowsservercore-1809`, `22-ea-25-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-25-jdk-nanoserver-1809`, `22-ea-25-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-26-jdk-oraclelinux8`, `22-ea-26-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-26-jdk-oracle`, `22-ea-26-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-26-jdk-oraclelinux7`, `22-ea-26-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-26-jdk-bookworm`, `22-ea-26-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/bookworm/Dockerfile) +- [`22-ea-26-jdk-slim-bookworm`, `22-ea-26-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-26-jdk-slim`, `22-ea-26-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-26-jdk-bullseye`, `22-ea-26-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/bullseye/Dockerfile) +- [`22-ea-26-jdk-slim-bullseye`, `22-ea-26-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-26-jdk-windowsservercore-ltsc2022`, `22-ea-26-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-26-jdk-windowsservercore-1809`, `22-ea-26-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-26-jdk-nanoserver-1809`, `22-ea-26-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-25-jdk`, `22-ea-25`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-25-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-25-jdk-windowsservercore`, `22-ea-25-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-25-jdk-nanoserver`, `22-ea-25-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/28cb7ec31be4bb48e3d61ca91557411e4099b2cf/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-26-jdk`, `22-ea-26`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-26-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-26-jdk-windowsservercore`, `22-ea-26-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-26-jdk-nanoserver`, `22-ea-26-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From a1e8f4d8f2a76bc8521ba1718c1d874f9b6e780a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Dec 2023 14:19:37 -0800 Subject: [PATCH 0763/2686] Run update.sh --- nats/README.md | 42 ++++++++++++++++++++-------------------- postgres/README.md | 48 +++++++++++++++++++++++----------------------- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/nats/README.md b/nats/README.md index 59a1883427da..8dec9343154f 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.5-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.5-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/alpine3.18/Dockerfile) -- [`2.10.5-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.5-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) -- [`2.10.5-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.5-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.6-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.6-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/alpine3.18/Dockerfile) +- [`2.10.6-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.6-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) +- [`2.10.6-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.6-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.5`, `2.10`: - - [`2.10.5-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) - - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.6`, `2.10`: + - [`2.10.6-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) + - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.5-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/scratch/Dockerfile) - - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) -- `2.10.5-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.5-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.5-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.5-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.6-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) + - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) +- `2.10.6-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.6-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.6-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9b57561ad548795c91c8af89f530f443827b1982/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index c70bc4514c13..1ab5e2343874 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/bookworm/Dockerfile) -- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/bullseye/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/alpine3.18/Dockerfile) -- [`16.1-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/f85674ce472bc78b8b8a0478dacd595e44cb9616/16/alpine3.17/Dockerfile) -- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/bookworm/Dockerfile) -- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/bullseye/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/alpine3.18/Dockerfile) -- [`15.5-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/da624f9e2e26fd185c73532ec52203aa3683f4db/15/alpine3.17/Dockerfile) -- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/bookworm/Dockerfile) -- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/bullseye/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/alpine3.18/Dockerfile) -- [`14.10-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/d7660ac1e7417041e5197861d7d8c3d0954c83c4/14/alpine3.17/Dockerfile) -- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/bookworm/Dockerfile) -- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/bullseye/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/alpine3.18/Dockerfile) -- [`13.13-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/ce930677d59d780645e69fa2fe68d4ac391b6d2e/13/alpine3.17/Dockerfile) -- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/bookworm/Dockerfile) -- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/bullseye/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/alpine3.18/Dockerfile) -- [`12.17-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/038c4c577a3c58dddf9ec2ccaa643009b8ba414b/12/alpine3.17/Dockerfile) -- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/bookworm/Dockerfile) -- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/bullseye/Dockerfile) -- [`11.22-alpine3.18`, `11-alpine3.18`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/alpine3.18/Dockerfile) -- [`11.22-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/f2860f3faf8d0f3993389f529f8833778b08eba4/11/alpine3.17/Dockerfile) +- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/bookworm/Dockerfile) +- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/bullseye/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.18/Dockerfile) +- [`16.1-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.17/Dockerfile) +- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/bookworm/Dockerfile) +- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/bullseye/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.18/Dockerfile) +- [`15.5-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.17/Dockerfile) +- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/bookworm/Dockerfile) +- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/bullseye/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.18/Dockerfile) +- [`14.10-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.17/Dockerfile) +- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/bookworm/Dockerfile) +- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/bullseye/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.18/Dockerfile) +- [`13.13-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.17/Dockerfile) +- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/bookworm/Dockerfile) +- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/bullseye/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.18/Dockerfile) +- [`12.17-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.17/Dockerfile) +- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/bookworm/Dockerfile) +- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/bullseye/Dockerfile) +- [`11.22-alpine3.18`, `11-alpine3.18`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.18/Dockerfile) +- [`11.22-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.17/Dockerfile) # Quick reference (cont.) From 0319f699a3a2875c38e5de09ee6361f4489b4378 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Dec 2023 17:20:03 -0800 Subject: [PATCH 0764/2686] Run update.sh --- ghost/README.md | 4 ++-- node/README.md | 28 ++++++++++++++-------------- ubuntu/README.md | 9 +++++---- 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 0c262cd0fbbb..8074412d6684 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.74.5`, `5.74`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e0784b022e3dc203e61c79b34ade5517109fb70d/5/debian/Dockerfile) -- [`5.74.5-alpine`, `5.74-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e0784b022e3dc203e61c79b34ade5517109fb70d/5/alpine/Dockerfile) +- [`5.75.0`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2b5ade9b98a178d1d2980127e19430069a327691/5/debian/Dockerfile) +- [`5.75.0-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2b5ade9b98a178d1d2980127e19430069a327691/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index aa24db99f159..4bf092764d7d 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.17`, `21.2-alpine3.17`, `21.2.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/alpine3.17/Dockerfile) -- [`21-alpine`, `21-alpine3.18`, `21.2-alpine`, `21.2-alpine3.18`, `21.2.0-alpine`, `21.2.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/alpine3.18/Dockerfile) -- [`21`, `21-bookworm`, `21.2`, `21.2-bookworm`, `21.2.0`, `21.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.2-bookworm-slim`, `21.2-slim`, `21.2.0-bookworm-slim`, `21.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.2-bullseye`, `21.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.2-bullseye-slim`, `21.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ed83529ea65cfbeadda161ee501b4cf83444aa2d/21/bullseye-slim/Dockerfile) +- [`21-alpine3.17`, `21.3-alpine3.17`, `21.3.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/alpine3.17/Dockerfile) +- [`21-alpine`, `21-alpine3.18`, `21.3-alpine`, `21.3-alpine3.18`, `21.3.0-alpine`, `21.3.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/alpine3.18/Dockerfile) +- [`21`, `21-bookworm`, `21.3`, `21.3-bookworm`, `21.3.0`, `21.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.3-bookworm-slim`, `21.3-slim`, `21.3.0-bookworm-slim`, `21.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.3-bullseye`, `21.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.3-bullseye-slim`, `21.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bullseye-slim/Dockerfile) - [`20-alpine3.17`, `20.10-alpine3.17`, `20.10.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.10-alpine`, `20.10-alpine3.18`, `20.10.0-alpine`, `20.10.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) - [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) @@ -38,14 +38,14 @@ WARNING: - [`20-bullseye-slim`, `20.10-bullseye-slim`, `20.10.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.10-buster`, `20.10.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster/Dockerfile) - [`20-buster-slim`, `20.10-buster-slim`, `20.10.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.18-alpine3.17`, `18.18.2-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.18-alpine`, `18.18-alpine3.18`, `18.18.2-alpine`, `18.18.2-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/e148eb79f51510593647e6a10574f8931bf16384/18/alpine3.18/Dockerfile) -- [`18`, `18-bookworm`, `18.18`, `18.18-bookworm`, `18.18.2`, `18.18.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.18-bookworm-slim`, `18.18-slim`, `18.18.2-bookworm-slim`, `18.18.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.18-bullseye`, `18.18.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.18-bullseye-slim`, `18.18.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.18-buster`, `18.18.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/bdf5edb771596f7e3998ff318c3098850261b17b/18/buster/Dockerfile) -- [`18-buster-slim`, `18.18-buster-slim`, `18.18.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/dbc174542d51f03535f6513391f569e3b93a91dd/18/buster-slim/Dockerfile) +- [`18-alpine3.17`, `18.19-alpine3.17`, `18.19.0-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.17/Dockerfile) +- [`18-alpine`, `18-alpine3.18`, `18.19-alpine`, `18.19-alpine3.18`, `18.19.0-alpine`, `18.19.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.18/Dockerfile) +- [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.0`, `18.19.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.19-bookworm-slim`, `18.19-slim`, `18.19.0-bookworm-slim`, `18.19.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.19-bullseye`, `18.19.0-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.19-bullseye-slim`, `18.19.0-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.19-buster`, `18.19.0-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/buster/Dockerfile) +- [`18-buster-slim`, `18.19-buster-slim`, `18.19.0-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index d720109e808c..fbd0f410eb9a 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20231003`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231003-9e020e15&id=9e020e15c69afd6448227ca485f23c062a3b8939) -- [`22.04`, `jammy-20231004`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231004-b438933c&id=b438933cb5f916fc82c2422834bcd6bf6161f3e9) -- [`23.04`, `lunar-20231004`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231004-151826dc&id=151826dc80889bec7813dc057ce919012e3dfddd) -- [`23.10`, `mantic-20231011`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231011-4ceef731&id=4ceef731f584cc4086b74ef42d52a99f419b7f9c) +- [`20.04`, `focal-20231128`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231128-c5af9c74&id=c5af9c74328001c2d436cb116fb321141fe2c932) +- [`22.04`, `jammy-20231128`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231128-3891b8ac&id=3891b8ac4ba7aaa6802c5e602d7bdd47399b8123) +- [`23.04`, `lunar-20231128`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231128-1e15482a&id=1e15482adc1232275aec0e3566d81c6dd033ab2f) +- [`23.10`, `mantic-20231128`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231128-f8f436b9&id=f8f436b92c9e971f61f0bf30d27ac4dda209703a) +- [`24.04`, `noble-20231126.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231126.1-28106364&id=28106364b9df72f1068b5d702c79d502269c4b68) # Quick reference (cont.) From 45b7cc83c4763f5dc3501e1f7a2411eca1b16ce2 Mon Sep 17 00:00:00 2001 From: Yolan Romailler Date: Tue, 5 Dec 2023 03:16:08 +0300 Subject: [PATCH 0765/2686] Update Ghost stack.yml to have persistent data (#2370) --- ghost/stack.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ghost/stack.yml b/ghost/stack.yml index eefc6e8a709b..9d495d941a06 100644 --- a/ghost/stack.yml +++ b/ghost/stack.yml @@ -18,9 +18,17 @@ services: url: http://localhost:8080 # contrary to the default mentioned in the linked documentation, this image defaults to NODE_ENV=production (so development mode needs to be explicitly specified if desired) #NODE_ENV: development + volumes: + - ghost:/var/lib/ghost/content db: image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example + volumes: + - db:/var/lib/mysql + +volumes: + ghost: + db: From c139b09fd77dfa5e52f86e85abf7ecf696301713 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Dec 2023 17:09:31 -0800 Subject: [PATCH 0766/2686] Run update.sh --- aerospike/README.md | 4 +- bash/README.md | 2 +- clearlinux/README.md | 2 +- drupal/README.md | 88 ++++++++++++++++++++------------------------ friendica/README.md | 18 ++++----- ghost/README.md | 14 +++++-- jetty/README.md | 48 ++++++++++++++++++------ julia/README.md | 26 ++++++------- sl/README.md | 2 +- wordpress/README.md | 24 +++++------- xwiki/README.md | 6 +-- 11 files changed, 126 insertions(+), 108 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index ab5c033ce01e..850712002642 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.0`, `ee-7.0.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/db7c937b655a688931a63e2b112aef89fa8c4c90/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.0`, `ce-7.0.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/db7c937b655a688931a63e2b112aef89fa8c4c90/community/debian12/Dockerfile) +- [`ee-7.0.0.2`, `ee-7.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/056b7c2764a68303271caf8a0633857925f46e70/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.2`, `ce-7.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/056b7c2764a68303271caf8a0633857925f46e70/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 4596d997f246..6a6683ad8387 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231124`, `devel`, `devel-20231124-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/ab23e8abbd41d201f421e0c1ab2190c1dd51ff36/devel/Dockerfile) +- [`devel-20231125`, `devel`, `devel-20231125-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/8d3ef2e43a6a61c3da787e83be4fa54c816b5c9e/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/ba6a6be33e2bc2b6f045963607650e54a83a974b/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index 061c35c8e35d..7803a2f3395f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/69d1ccc0d066e79a0c1713878bb5d0c6aa15db5c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7c193b6f42361648cb547f1445cdf763ec7828ed/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index d8076738ac07..063685d11131 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,64 +24,54 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.6-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.6-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.6-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.6-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.6-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.6-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.6-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.6-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.6-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.6-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.6-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.6-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.6-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.0-rc1-php8.3-apache-bookworm`, `10.2-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `10.2.0-rc1-php8.3-apache`, `10.2-rc-php8.3-apache`, `rc-php8.3-apache`, `10.2.0-rc1-php8.3`, `10.2-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/apache-bookworm/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-bookworm`, `10.2-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `10.2.0-rc1-php8.3-fpm`, `10.2-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.0-rc1-php8.3-apache-bullseye`, `10.2-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/apache-bullseye/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-bullseye`, `10.2-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-alpine3.18`, `10.2-rc-php8.3-fpm-alpine3.18`, `rc-php8.3-fpm-alpine3.18`, `10.2.0-rc1-php8.3-fpm-alpine`, `10.2-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-alpine3.17`, `10.2-rc-php8.3-fpm-alpine3.17`, `rc-php8.3-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.17/Dockerfile) +- [`10.2.0-rc1-php8.2-apache-bookworm`, `10.2-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `10.2.0-rc1-php8.2-apache`, `10.2-rc-php8.2-apache`, `rc-php8.2-apache`, `10.2.0-rc1-php8.2`, `10.2-rc-php8.2`, `rc-php8.2`, `10.2.0-rc1-apache-bookworm`, `10.2-rc-apache-bookworm`, `rc-apache-bookworm`, `10.2.0-rc1-apache`, `10.2-rc-apache`, `rc-apache`, `10.2.0-rc1`, `10.2-rc`, `rc`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bookworm/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-bookworm`, `10.2-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `10.2.0-rc1-php8.2-fpm`, `10.2-rc-php8.2-fpm`, `rc-php8.2-fpm`, `10.2.0-rc1-fpm-bookworm`, `10.2-rc-fpm-bookworm`, `rc-fpm-bookworm`, `10.2.0-rc1-fpm`, `10.2-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.0-rc1-php8.2-apache-bullseye`, `10.2-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `10.2.0-rc1-apache-bullseye`, `10.2-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bullseye/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-bullseye`, `10.2-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `10.2.0-rc1-fpm-bullseye`, `10.2-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-alpine3.18`, `10.2-rc-php8.2-fpm-alpine3.18`, `rc-php8.2-fpm-alpine3.18`, `10.2.0-rc1-php8.2-fpm-alpine`, `10.2-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `10.2.0-rc1-fpm-alpine3.18`, `10.2-rc-fpm-alpine3.18`, `rc-fpm-alpine3.18`, `10.2.0-rc1-fpm-alpine`, `10.2-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-alpine3.17`, `10.2-rc-php8.2-fpm-alpine3.17`, `rc-php8.2-fpm-alpine3.17`, `10.2.0-rc1-fpm-alpine3.17`, `10.2-rc-fpm-alpine3.17`, `rc-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.6-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.6-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.6-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.6-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.6-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.6-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.6-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.6-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.6-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.6-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.6-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.6-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.6-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/fpm-bullseye/Dockerfile) - [`10.1.6-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.6-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.6-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.6-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.6-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.6-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.6-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.6-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.6-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.6-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.6-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.6-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.6-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.6-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.6-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.6-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.6-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.6-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.6-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.6-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/fpm-bullseye/Dockerfile) - [`10.1.6-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.6-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.18/Dockerfile) - [`10.1.6-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.17/Dockerfile) -- [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bookworm/Dockerfile) -- [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bookworm/Dockerfile) -- [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.11-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.11-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bookworm/Dockerfile) +- [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bookworm/Dockerfile) +- [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bullseye/Dockerfile) +- [`10.0.11-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.11-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bullseye/Dockerfile) - [`10.0.11-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.11-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.11-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10.0.11-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.18/Dockerfile) - [`10.0.11-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10.0.11-fpm-alpine3.17`, `10.0-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.0.11-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.11-php8.1-apache`, `10.0-php8.1-apache`, `10.0.11-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/apache-bookworm/Dockerfile) -- [`10.0.11-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.11-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-bookworm/Dockerfile) -- [`10.0.11-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-bullseye/Dockerfile) +- [`10.0.11-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.11-php8.1-apache`, `10.0-php8.1-apache`, `10.0.11-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bookworm/Dockerfile) +- [`10.0.11-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.11-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bookworm/Dockerfile) +- [`10.0.11-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bullseye/Dockerfile) +- [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bullseye/Dockerfile) - [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) - [`10.0.11-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.11-php8.2-apache-bookworm`, `9.5-php8.2-apache-bookworm`, `9-php8.2-apache-bookworm`, `9.5.11-php8.2-apache`, `9.5-php8.2-apache`, `9-php8.2-apache`, `9.5.11-php8.2`, `9.5-php8.2`, `9-php8.2`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/apache-bookworm/Dockerfile) -- [`9.5.11-php8.2-fpm-bookworm`, `9.5-php8.2-fpm-bookworm`, `9-php8.2-fpm-bookworm`, `9.5.11-php8.2-fpm`, `9.5-php8.2-fpm`, `9-php8.2-fpm`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-bookworm/Dockerfile) -- [`9.5.11-php8.2-apache-bullseye`, `9.5-php8.2-apache-bullseye`, `9-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/apache-bullseye/Dockerfile) -- [`9.5.11-php8.2-fpm-bullseye`, `9.5-php8.2-fpm-bullseye`, `9-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-bullseye/Dockerfile) -- [`9.5.11-php8.2-fpm-alpine3.18`, `9.5-php8.2-fpm-alpine3.18`, `9-php8.2-fpm-alpine3.18`, `9.5.11-php8.2-fpm-alpine`, `9.5-php8.2-fpm-alpine`, `9-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-alpine3.18/Dockerfile) -- [`9.5.11-php8.2-fpm-alpine3.17`, `9.5-php8.2-fpm-alpine3.17`, `9-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.2/fpm-alpine3.17/Dockerfile) -- [`9.5.11-php8.1-apache-bookworm`, `9.5-php8.1-apache-bookworm`, `9-php8.1-apache-bookworm`, `9.5.11-php8.1-apache`, `9.5-php8.1-apache`, `9-php8.1-apache`, `9.5.11-php8.1`, `9.5-php8.1`, `9-php8.1`, `9.5.11-apache-bookworm`, `9.5-apache-bookworm`, `9-apache-bookworm`, `9.5.11-apache`, `9.5-apache`, `9-apache`, `9.5.11`, `9.5`, `9`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/apache-bookworm/Dockerfile) -- [`9.5.11-php8.1-fpm-bookworm`, `9.5-php8.1-fpm-bookworm`, `9-php8.1-fpm-bookworm`, `9.5.11-php8.1-fpm`, `9.5-php8.1-fpm`, `9-php8.1-fpm`, `9.5.11-fpm-bookworm`, `9.5-fpm-bookworm`, `9-fpm-bookworm`, `9.5.11-fpm`, `9.5-fpm`, `9-fpm`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-bookworm/Dockerfile) -- [`9.5.11-php8.1-apache-bullseye`, `9.5-php8.1-apache-bullseye`, `9-php8.1-apache-bullseye`, `9.5.11-apache-bullseye`, `9.5-apache-bullseye`, `9-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/apache-bullseye/Dockerfile) -- [`9.5.11-php8.1-fpm-bullseye`, `9.5-php8.1-fpm-bullseye`, `9-php8.1-fpm-bullseye`, `9.5.11-fpm-bullseye`, `9.5-fpm-bullseye`, `9-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-bullseye/Dockerfile) -- [`9.5.11-php8.1-fpm-alpine3.18`, `9.5-php8.1-fpm-alpine3.18`, `9-php8.1-fpm-alpine3.18`, `9.5.11-php8.1-fpm-alpine`, `9.5-php8.1-fpm-alpine`, `9-php8.1-fpm-alpine`, `9.5.11-fpm-alpine3.18`, `9.5-fpm-alpine3.18`, `9-fpm-alpine3.18`, `9.5.11-fpm-alpine`, `9.5-fpm-alpine`, `9-fpm-alpine`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-alpine3.18/Dockerfile) -- [`9.5.11-php8.1-fpm-alpine3.17`, `9.5-php8.1-fpm-alpine3.17`, `9-php8.1-fpm-alpine3.17`, `9.5.11-fpm-alpine3.17`, `9.5-fpm-alpine3.17`, `9-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.1/fpm-alpine3.17/Dockerfile) -- [`9.5.11-php8.0-apache-bullseye`, `9.5-php8.0-apache-bullseye`, `9-php8.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/apache-bullseye/Dockerfile) -- [`9.5.11-php8.0-fpm-bullseye`, `9.5-php8.0-fpm-bullseye`, `9-php8.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-bullseye/Dockerfile) -- [`9.5.11-php8.0-apache-buster`, `9.5-php8.0-apache-buster`, `9-php8.0-apache-buster`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/apache-buster/Dockerfile) -- [`9.5.11-php8.0-fpm-buster`, `9.5-php8.0-fpm-buster`, `9-php8.0-fpm-buster`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-buster/Dockerfile) -- [`9.5.11-php8.0-fpm-alpine3.16`, `9.5-php8.0-fpm-alpine3.16`, `9-php8.0-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/addca2cc5377c9607cb441c37aecfebfc6554a11/9.5/php8.0/fpm-alpine3.16/Dockerfile) -- [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bookworm/Dockerfile) -- [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/apache-bullseye/Dockerfile) -- [`7.98-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/apache-bookworm/Dockerfile) +- [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/apache-bullseye/Dockerfile) +- [`7.98-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/fpm-bullseye/Dockerfile) - [`7.98-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`, `7.98-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.18/Dockerfile) - [`7.98-php8.2-fpm-alpine3.17`, `7-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.17/Dockerfile) -- [`7.98-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.98-php8.1-apache`, `7-php8.1-apache`, `7.98-php8.1`, `7-php8.1`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/apache-bookworm/Dockerfile) -- [`7.98-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.98-php8.1-fpm`, `7-php8.1-fpm`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.98-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/apache-bullseye/Dockerfile) -- [`7.98-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.98-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.98-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.98-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.17/Dockerfile) -- [`7.98-php8.0-apache-bullseye`, `7-php8.0-apache-bullseye`, `7.98-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/apache-bullseye/Dockerfile) -- [`7.98-php8.0-fpm-bullseye`, `7-php8.0-fpm-bullseye`, `7.98-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/fpm-bullseye/Dockerfile) -- [`7.98-php8.0-apache-buster`, `7-php8.0-apache-buster`, `7.98-apache-buster`, `7-apache-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/apache-buster/Dockerfile) -- [`7.98-php8.0-fpm-buster`, `7-php8.0-fpm-buster`, `7.98-fpm-buster`, `7-fpm-buster`](https://github.com/docker-library/drupal/blob/4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3/7/php8.0/fpm-buster/Dockerfile) -- [`7.98-php8.0-fpm-alpine3.16`, `7-php8.0-fpm-alpine3.16`, `7.98-fpm-alpine3.16`, `7-fpm-alpine3.16`](https://github.com/docker-library/drupal/blob/ebd9f36e6468515c9e5d469651ffb244094770b7/7/php8.0/fpm-alpine3.16/Dockerfile) +- [`7.98-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.98-php8.1-apache`, `7-php8.1-apache`, `7.98-php8.1`, `7-php8.1`, `7.98-apache-bookworm`, `7-apache-bookworm`, `7.98-apache`, `7-apache`, `7.98`, `7`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/apache-bookworm/Dockerfile) +- [`7.98-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.98-php8.1-fpm`, `7-php8.1-fpm`, `7.98-fpm-bookworm`, `7-fpm-bookworm`, `7.98-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.98-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.98-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/apache-bullseye/Dockerfile) +- [`7.98-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.98-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.98-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.98-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.98-fpm-alpine3.18`, `7-fpm-alpine3.18`, `7.98-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.98-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`, `7.98-fpm-alpine3.17`, `7-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.17/Dockerfile) # Quick reference (cont.) @@ -270,7 +260,7 @@ The `drupal` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `drupal:-fpm` diff --git a/friendica/README.md b/friendica/README.md index 410ae32e4a6e..07ef8ec40737 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/apache/Dockerfile) -- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/fpm/Dockerfile) -- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.05/fpm-alpine/Dockerfile) -- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/apache/Dockerfile) -- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/fpm/Dockerfile) -- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/74b970887dc7bd2f9127282c86fc6133728cbd71/2023.09-dev/fpm-alpine/Dockerfile) -- [`2023.09-rc-apache`, `rc-apache`, `2023.09-rc`, `rc`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/apache/Dockerfile) -- [`2023.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/fpm/Dockerfile) -- [`2023.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/19498098d2b4cf7e3849cfa62b5143a4201000b4/2023.09-rc/fpm-alpine/Dockerfile) +- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/apache/Dockerfile) +- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/fpm/Dockerfile) +- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/fpm-alpine/Dockerfile) +- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/apache/Dockerfile) +- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/fpm/Dockerfile) +- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/fpm-alpine/Dockerfile) +- [`2023.09-rc-apache`, `rc-apache`, `2023.09-rc`, `rc`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/apache/Dockerfile) +- [`2023.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/fpm/Dockerfile) +- [`2023.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 8074412d6684..72dea71d91d1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.75.0`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2b5ade9b98a178d1d2980127e19430069a327691/5/debian/Dockerfile) -- [`5.75.0-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2b5ade9b98a178d1d2980127e19430069a327691/5/alpine/Dockerfile) +- [`5.75.1`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6165dced822dbdb27cba064220d1ef07168b4013/5/debian/Dockerfile) +- [`5.75.1-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6165dced822dbdb27cba064220d1ef07168b4013/5/alpine/Dockerfile) # Quick reference (cont.) @@ -162,15 +162,23 @@ services: url: http://localhost:8080 # contrary to the default mentioned in the linked documentation, this image defaults to NODE_ENV=production (so development mode needs to be explicitly specified if desired) #NODE_ENV: development + volumes: + - ghost:/var/lib/ghost/content db: image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example + volumes: + - db:/var/lib/mysql + +volumes: + ghost: + db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/57f9907ee5bbeaede8c97f439b9c11bc1081dd75/ghost/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/45b7cc83c4763f5dc3501e1f7a2411eca1b16ce2/ghost/stack.yml) Run `docker stack deploy -c stack.yml ghost` (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). diff --git a/jetty/README.md b/jetty/README.md index aa13526716b6..b11c38498afb 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -26,49 +26,73 @@ WARNING: - [`9.4.53-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.53-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8-alpine/Dockerfile) - [`9.4.53-jre8`, `9.4-jre8`, `9-jre8`, `9.4.53-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.53-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.53-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.53-jre21`, `9.4-jre21`, `9-jre21`, `9.4.53-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jre21/Dockerfile) - [`9.4.53-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.53-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17-alpine/Dockerfile) - [`9.4.53-jre17`, `9.4-jre17`, `9-jre17`, `9.4.53-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17/Dockerfile) - [`9.4.53-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.53-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11-alpine/Dockerfile) - [`9.4.53-jre11`, `9.4-jre11`, `9-jre11`, `9.4.53-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11/Dockerfile) - [`9.4.53-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.53-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.53-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.53-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/9.4/jdk21/Dockerfile) - [`9.4.53-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.53-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.3-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.3-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.3-jre17`, `12.0-jre17`, `12-jre17`, `12.0.3-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.3-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.3-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.3`, `12.0`, `12`, `12.0.3-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.3-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.3-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `latest`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.4-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.4-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.4-jre21`, `12.0-jre21`, `12-jre21`, `12.0.4-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.4-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.4-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.4-jre17`, `12.0-jre17`, `12-jre17`, `12.0.4-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.4-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.4-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.4`, `12.0`, `12`, `12.0.4-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.4-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.4-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.4-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.4-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.4-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.4-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.18-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.18-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.18-jre21`, `11.0-jre21`, `11-jre21`, `11.0.18-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jre21/Dockerfile) - [`11.0.18-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.18-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17-alpine/Dockerfile) - [`11.0.18-jre17`, `11.0-jre17`, `11-jre17`, `11.0.18-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17/Dockerfile) - [`11.0.18-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.18-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11-alpine/Dockerfile) - [`11.0.18-jre11`, `11.0-jre11`, `11-jre11`, `11.0.18-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.18-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.18-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.18`, `11.0`, `11`, `11.0.18-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.18-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.18-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/11.0/jdk21/Dockerfile) - [`11.0.18-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.18-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.18`, `11.0`, `11`, `11.0.18-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.18-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.18-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.18-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.18-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17/Dockerfile) - [`11.0.18-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.18-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) - [`11.0.18-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.18-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.18-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.18-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.18-jre21`, `10.0-jre21`, `10-jre21`, `10.0.18-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jre21/Dockerfile) - [`10.0.18-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.18-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17-alpine/Dockerfile) - [`10.0.18-jre17`, `10.0-jre17`, `10-jre17`, `10.0.18-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17/Dockerfile) - [`10.0.18-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.18-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11-alpine/Dockerfile) - [`10.0.18-jre11`, `10.0-jre11`, `10-jre11`, `10.0.18-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.18-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.18-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.18`, `10.0`, `10`, `10.0.18-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.18-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.18-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/10.0/jdk21/Dockerfile) - [`10.0.18-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.18-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.18`, `10.0`, `10`, `10.0.18-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.18-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.18-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.18-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.18-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17/Dockerfile) - [`10.0.18-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.18-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) - [`10.0.18-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.18-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.53-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/9.4/jdk21/Dockerfile) - [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.3-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.3-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.3-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.4-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.4-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.4-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.4-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.4-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.18-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.18-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.18-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/11.0/jdk21/Dockerfile) - [`11.0.18-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.18-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.18-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.18-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17/Dockerfile) - [`11.0.18-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11-alpine/Dockerfile) - [`11.0.18-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.18-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.18-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.18-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/10.0/jdk21/Dockerfile) - [`10.0.18-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.18-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.18-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.18-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17/Dockerfile) - [`10.0.18-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11-alpine/Dockerfile) - [`10.0.18-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11/Dockerfile) diff --git a/julia/README.md b/julia/README.md index a12b9ad2364d..51b02ed0ac13 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-rc1-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-rc1-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-rc1-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc1-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-rc1-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/alpine3.17/Dockerfile) -- [`1.10.0-rc1-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-rc1-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-rc2-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-rc2-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-rc2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-rc2-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-rc2-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-rc2-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.4-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - [`1.9.4-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bullseye/Dockerfile) - [`1.9.4-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.18/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.10.0-rc1`, `1.10-rc`, `rc`: - - [`1.10.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-rc1-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/9e6b1ddf368d41e5d8c4f146bd1f4580b771018a/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc2`, `1.10-rc`, `rc`: + - [`1.10.0-rc2-bookworm`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc2-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.4`, `1.9`, `1`, `latest`: - [`1.9.4-bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/sl/README.md b/sl/README.md index 25c1d7fc6e99..f90d4c57ebfa 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/bf1a75fd29d02465952d829b66a5f9081113555e/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/23af0ec7e93c42bc54c09b01d6d9fe4fe16fa872/sl7/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 97278b1d29b2..1271a6a6d75d 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,21 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.1-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.1`, `6.4`, `6`, `latest`, `6.4.1-php8.0-apache`, `6.4-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.4.1-php8.0`, `6.4-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/apache/Dockerfile) -- [`6.4.1-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.1-php8.0-fpm`, `6.4-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/fpm/Dockerfile) -- [`6.4.1-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.1-php8.0-fpm-alpine`, `6.4-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.0/fpm-alpine/Dockerfile) -- [`6.4.1-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.1-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/apache/Dockerfile) -- [`6.4.1-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/fpm/Dockerfile) -- [`6.4.1-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.1-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.1-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/apache/Dockerfile) -- [`6.4.1-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm/Dockerfile) -- [`6.4.1-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4b4966247eb33c6c219cf682f1750ed5685d21c9/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.4.1-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.1-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/apache/Dockerfile) -- [`6.4.1-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/fpm/Dockerfile) -- [`6.4.1-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/latest/php8.3/fpm-alpine/Dockerfile) -- [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.0`, `cli-2.9-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.0/alpine/Dockerfile) +- [`6.4.1-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.1-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/apache/Dockerfile) +- [`6.4.1-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/fpm/Dockerfile) +- [`6.4.1-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.1-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.1`, `6.4`, `6`, `latest`, `6.4.1-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.1-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/apache/Dockerfile) +- [`6.4.1-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.1-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/fpm/Dockerfile) +- [`6.4.1-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.1-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.1-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.1-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/apache/Dockerfile) +- [`6.4.1-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/fpm/Dockerfile) +- [`6.4.1-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) -- [`cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) +- [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) - [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index dc29a1a5711c..722a7b8e5a24 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,9 +30,9 @@ WARNING: - [`14`, `14.10`, `14.10.19`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.19-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.19-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.19-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.3`, `15.5-mysql-tomcat`, `15.5.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/d1e6ca12c746ebb805e079bc1ff10ac26bb65dd3/15.5/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.4`, `15.5-mysql-tomcat`, `15.5.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 93542f432abd663117367cfedf5405f863fa529e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 09:18:02 -0800 Subject: [PATCH 0767/2686] Run update.sh --- cassandra/README.md | 2 +- python/README.md | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 026c953ad410..ddef9cea1760 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-alpha2`, `5.0`, `5`](https://github.com/docker-library/cassandra/blob/12ee728efc59b4aa6cc02c637396c8460ee1e3cd/5.0/Dockerfile) +- [`5.0-beta1`, `5.0`, `5`](https://github.com/docker-library/cassandra/blob/8313dd9e2e5d049117c1aa190494702f5ee60c83/5.0/Dockerfile) - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) - [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) - [`3.11.16`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) diff --git a/python/README.md b/python/README.md index 12696a6f6c26..a8f4e1a0247d 100644 --- a/python/README.md +++ b/python/README.md @@ -44,14 +44,14 @@ WARNING: - [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/alpine3.17/Dockerfile) - [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.6-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bookworm/Dockerfile) -- [`3.11.6-slim-bookworm`, `3.11-slim-bookworm`, `3.11.6-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/slim-bookworm/Dockerfile) -- [`3.11.6-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bullseye/Dockerfile) -- [`3.11.6-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/slim-bullseye/Dockerfile) -- [`3.11.6-alpine3.18`, `3.11-alpine3.18`, `3.11.6-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/alpine3.18/Dockerfile) -- [`3.11.6-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/alpine3.17/Dockerfile) -- [`3.11.6-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.6-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11.7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) +- [`3.11.7-slim-bookworm`, `3.11-slim-bookworm`, `3.11.7-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bookworm/Dockerfile) +- [`3.11.7-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bullseye/Dockerfile) +- [`3.11.7-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bullseye/Dockerfile) +- [`3.11.7-alpine3.18`, `3.11-alpine3.18`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.18/Dockerfile) +- [`3.11.7-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.17/Dockerfile) +- [`3.11.7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) - [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bookworm/Dockerfile) - [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bullseye/Dockerfile) @@ -87,13 +87,13 @@ WARNING: - `3.12.0-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.6`, `3.11`: - - [`3.11.6-bookworm`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/bookworm/Dockerfile) - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.6-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/7899dbafd386ee264bd33574aafcd0f1369b2e21/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.7`, `3.11`: + - [`3.11.7-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) + - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.7-windowsservercore`, `3.11-windowsservercore`: + - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: From 9c6e079c4260332862979456c0d8b32d9491ae92 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 10:10:14 -0800 Subject: [PATCH 0768/2686] Run update.sh --- arangodb/README.md | 2 +- clojure/README.md | 146 ++++++++++++++++++++++----------------------- crate/README.md | 4 +- xwiki/README.md | 6 +- 4 files changed, 79 insertions(+), 79 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index ed34e768d14a..8d261d55c13d 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.10`, `3.10.11`](https://github.com/arangodb/arangodb-docker/blob/855faa5aa4d4e065c46e5d999af83c3a7cba5ccb/alpine/3.10.11/Dockerfile) -- [`3.11`, `3.11.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/dde13e51d1fc110c1349d75e4aee156af2adc8b2/alpine/3.11.5/Dockerfile) +- [`3.11`, `3.11.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5e80cd97d8ccedf2314fbee99e235894e0b46393/alpine/3.11.6/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index b7d5e91b2ac1..cfc2e6e5a9e2 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,79 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1413-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1413-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1413-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1413-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1413`, `temurin-8-tools-deps-1.11.1.1413-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1413-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1413-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1413-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1413-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1413`, `temurin-11-tools-deps-1.11.1.1413-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1413-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1413-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1413-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1413-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1413`, `temurin-17-tools-deps-1.11.1.1413-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1413-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1413`, `temurin-21-tools-deps-1.11.1.1413-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1413`, `tools-deps-1.11.1.1413-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1413-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1413-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1413-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1413-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1413-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1413-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1413-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/2e79055146bdcf039bd45b7524ef96a33a9f7761/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1429-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1429-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1429-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1429-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1429`, `temurin-8-tools-deps-1.11.1.1429-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1429-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1429-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1429-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1429-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1429`, `temurin-11-tools-deps-1.11.1.1429-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1429-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1429-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1429-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1429-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1429`, `temurin-17-tools-deps-1.11.1.1429-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1429-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1429`, `temurin-21-tools-deps-1.11.1.1429-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1429`, `tools-deps-1.11.1.1429-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1429-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1429-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1429-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1429-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1429-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 89a8472ed874..2385d6300448 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.0`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/f8585f1e0ade12c0ae4bf61aac81e8c79958a84e/Dockerfile) -- [`5.4.5`, `5.4`](https://github.com/crate/docker-crate/blob/3aa005838421825260d39fb3f889619d6c88ce4f/Dockerfile) +- [`5.5.1`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/d0d11dd5792dec75b30b03e3b5ea517f67ce6daa/Dockerfile) +- [`5.4.6`, `5.4`](https://github.com/crate/docker-crate/blob/17262492ec93cffe71ea60ca3397a34290c32d68/Dockerfile) - [`5.3.7`, `5.3`](https://github.com/crate/docker-crate/blob/a268470d8e3c2da23bfabb71fe17213966a88bdf/Dockerfile) - [`5.2.10`, `5.2`](https://github.com/crate/docker-crate/blob/54246541fd0ba36831fbcf05183915097b91b3b1/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 722a7b8e5a24..64eb9dcb7e08 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`15`, `15.10`, `15.10.0`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.19`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.19-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.19-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.19-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5ce3629a4fb321a195723638041217ff4a384b1b/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.4`, `15.5-mysql-tomcat`, `15.5.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mariadb-tomcat/Dockerfile) From 58bbb967c731bdb2ef5606d9a2c03faba3ffb6ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 11:09:46 -0800 Subject: [PATCH 0769/2686] Run update.sh --- bash/README.md | 2 +- busybox/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 6a6683ad8387..17cc6463e2bc 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231125`, `devel`, `devel-20231125-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/8d3ef2e43a6a61c3da787e83be4fa54c816b5c9e/devel/Dockerfile) +- [`devel-20231204`, `devel`, `devel-20231204-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/b83e8080c75b9737ff60beb52d76d81b391eef71/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/ba6a6be33e2bc2b6f045963607650e54a83a974b/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) diff --git a/busybox/README.md b/busybox/README.md index 078471358187..20f42198a5dc 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/glibc/Dockerfile) # Quick reference (cont.) From 615ea159ad817b909cb78e7d824cde44f8f3b102 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 12:18:55 -0800 Subject: [PATCH 0770/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 70bed875c604..0c30db671570 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.21.4-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bookworm/Dockerfile) -- [`1.21.4-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bullseye/Dockerfile) -- [`1.21.4-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.4-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/alpine3.18/Dockerfile) -- [`1.21.4-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/alpine3.17/Dockerfile) -- [`1.21.4-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.4-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.4-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.4-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.11-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bookworm/Dockerfile) -- [`1.20.11-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bullseye/Dockerfile) -- [`1.20.11-alpine3.18`, `1.20-alpine3.18`, `1.20.11-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/alpine3.18/Dockerfile) -- [`1.20.11-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/alpine3.17/Dockerfile) -- [`1.20.11-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.11-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.11-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.11-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bookworm/Dockerfile) +- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bullseye/Dockerfile) +- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/alpine3.18/Dockerfile) +- [`1.21.5-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/alpine3.17/Dockerfile) +- [`1.21.5-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.5-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.5-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.5-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.12-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) +- [`1.20.12-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bullseye/Dockerfile) +- [`1.20.12-alpine3.18`, `1.20-alpine3.18`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.18/Dockerfile) +- [`1.20.12-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.17/Dockerfile) +- [`1.20.12-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.12-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.12-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.12-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.21.4`, `1.21`, `1`, `latest`: - - [`1.21.4-bookworm`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/bookworm/Dockerfile) - - [`1.21.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.4-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.4-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/e787bff89247be4ce5a642335fd94e866a188902/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.11`, `1.20`: - - [`1.20.11-bookworm`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/bookworm/Dockerfile) - - [`1.20.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.11-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.11-nanoserver`, `1.20-nanoserver`: - - [`1.20.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/345618568a127e06435ed46d0a6b01eecd714989/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.5`, `1.21`, `1`, `latest`: + - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bookworm/Dockerfile) + - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.5-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.5-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.12`, `1.20`: + - [`1.20.12-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) + - [`1.20.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.12-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.12-nanoserver`, `1.20-nanoserver`: + - [`1.20.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 42edfa37bd3041f92cd9829ac6f4531b6c4ac18b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 16:09:33 -0800 Subject: [PATCH 0771/2686] Run update.sh --- couchdb/README.md | 8 ++++---- node/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index 2da2885a3b19..831fe1afb047 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.2`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.3.2/Dockerfile) -- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.2.3/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/3.1.2/Dockerfile) -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/b616800e739db18c19e6a8b4131528157f945bcd/2.3.1/Dockerfile) +- [`latest`, `3.3.3`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.3.3/Dockerfile) +- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.2.3/Dockerfile) +- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.1.2/Dockerfile) +- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/2.3.1/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 4bf092764d7d..9dac4cd49965 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.17`, `21.3-alpine3.17`, `21.3.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/alpine3.17/Dockerfile) -- [`21-alpine`, `21-alpine3.18`, `21.3-alpine`, `21.3-alpine3.18`, `21.3.0-alpine`, `21.3.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/alpine3.18/Dockerfile) -- [`21`, `21-bookworm`, `21.3`, `21.3-bookworm`, `21.3.0`, `21.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.3-bookworm-slim`, `21.3-slim`, `21.3.0-bookworm-slim`, `21.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.3-bullseye`, `21.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.3-bullseye-slim`, `21.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/21/bullseye-slim/Dockerfile) +- [`21-alpine3.17`, `21.4-alpine3.17`, `21.4.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.17/Dockerfile) +- [`21-alpine`, `21-alpine3.18`, `21.4-alpine`, `21.4-alpine3.18`, `21.4.0-alpine`, `21.4.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.18/Dockerfile) +- [`21`, `21-bookworm`, `21.4`, `21.4-bookworm`, `21.4.0`, `21.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.4-bookworm-slim`, `21.4-slim`, `21.4.0-bookworm-slim`, `21.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.4-bullseye`, `21.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.4-bullseye-slim`, `21.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye-slim/Dockerfile) - [`20-alpine3.17`, `20.10-alpine3.17`, `20.10.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.17/Dockerfile) - [`20-alpine`, `20-alpine3.18`, `20.10-alpine`, `20.10-alpine3.18`, `20.10.0-alpine`, `20.10.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) - [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) From d94174bea5222aa95674ac156b710648a186afb8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Dec 2023 17:20:31 -0800 Subject: [PATCH 0772/2686] Run update.sh --- haproxy/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 6d6af82b912d..6ccaf47c35b0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,10 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9-dev12`, `2.9-dev`, `2.9-dev12-bullseye`, `2.9-dev-bullseye`](https://github.com/docker-library/haproxy/blob/f7d1d26511f3cf69eee01dbbea741130e2a2f8c3/2.9/Dockerfile) -- [`2.9-dev12-alpine`, `2.9-dev-alpine`, `2.9-dev12-alpine3.18`, `2.9-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/f7d1d26511f3cf69eee01dbbea741130e2a2f8c3/2.9/alpine/Dockerfile) -- [`2.8.4`, `2.8`, `lts`, `latest`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) -- [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) +- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bullseye`, `3.0-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/Dockerfile) +- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.18`, `3.0-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/alpine/Dockerfile) +- [`2.9.0`, `2.9`, `latest`, `2.9.0-bullseye`, `2.9-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/Dockerfile) +- [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.18`, `2.9-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/alpine/Dockerfile) +- [`2.8.4`, `2.8`, `lts`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) +- [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) - [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) - [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) From 7cd2276fec9bdd84ddd57d9e65ae983f87dc6567 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Dec 2023 11:18:01 -0800 Subject: [PATCH 0773/2686] Run update.sh --- dart/README.md | 3 ++- oraclelinux/README.md | 16 ++++++++-------- silverpeas/README.md | 2 +- traefik/README.md | 4 ++-- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/dart/README.md b/dart/README.md index 7a80819e0e72..8ed8ad7ec212 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.2-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.2`, `3.2`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/d6a24501ca8f35542032db8bdbc408bd5e9c71a5/stable/bookworm/Dockerfile) +- [`3.2.3-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.3`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/eac94d3eda77e47c866dab0e6d158815ad9818ac/stable/bookworm/Dockerfile) +- [`3.3.0-174.2.beta-sdk`, `beta-sdk`, `3.3.0-174.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/eac94d3eda77e47c866dab0e6d158815ad9818ac/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index a0e2bbeb01a2..051f208156fd 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0b104fc77fda695fc7c749169a3b84f71f041468/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/9-slim/Dockerfile) +- [`8.8`, `8`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index 5ef5af98bd04..d6b5beb1d93b 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.2`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/46663472900c69ea9b5aeec78fb827184c9109bf/Dockerfile) +- [`6.3.3`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/58fcac8f9759d8ba09ca23bc2106a2a7c5a5217f/Dockerfile) - [`6.2.3-b1`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/9714dcc94eb558508f085835a329a44f5c3cb52e/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index e8066b59478f..963bcf240157 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,8 +26,8 @@ WARNING: - [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) - [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) -- [`v2.10.6-windowsservercore-1809`, `2.10.6-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/windows/1809/Dockerfile) -- [`v2.10.6`, `2.10.6`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/66eed101dfeadb185a4e3087fc5dc3e167a9c89f/alpine/Dockerfile) +- [`v2.10.7-windowsservercore-1809`, `2.10.7-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/1809/Dockerfile) +- [`v2.10.7`, `2.10.7`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/alpine/Dockerfile) # Quick reference (cont.) From 36ea79714f95806e5ca2dffce4230513f073654d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Dec 2023 17:17:59 -0800 Subject: [PATCH 0774/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/nats/README.md b/nats/README.md index 8dec9343154f..9f6e830b8808 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.6-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.6-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/alpine3.18/Dockerfile) -- [`2.10.6-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.6-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) -- [`2.10.6-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.6-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.7-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.7-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/alpine3.18/Dockerfile) +- [`2.10.7-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.7-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) +- [`2.10.7-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.7-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.6`, `2.10`: - - [`2.10.6-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) - - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.7`, `2.10`: + - [`2.10.7-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) + - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.6-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/scratch/Dockerfile) - - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) -- `2.10.6-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.6-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.6-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.6-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.7-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) + - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) +- `2.10.7-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.7-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.7-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/256811340a89b8a3b78f1a144b6a87fba4424b67/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 3e9fdbe2f7b8bed2144e3f79a1e0ee9dfb4dcc2c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Dec 2023 11:17:50 -0800 Subject: [PATCH 0775/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/README.md b/rust/README.md index b6755b7e34f8..d1182a554c00 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.74-buster`, `1.74.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/buster/Dockerfile) -- [`1-slim-buster`, `1.74-slim-buster`, `1.74.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.74-bullseye`, `1.74.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.74-slim-bullseye`, `1.74.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.74-bookworm`, `1.74.0-bookworm`, `bookworm`, `1`, `1.74`, `1.74.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.74-slim-bookworm`, `1.74.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.74-slim`, `1.74.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.74-alpine3.17`, `1.74.0-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.74-alpine3.18`, `1.74.0-alpine3.18`, `alpine3.18`, `1-alpine`, `1.74-alpine`, `1.74.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/c9d5ef80a065e00761652951a22064f0134614aa/1.74.0/alpine3.18/Dockerfile) +- [`1-buster`, `1.74-buster`, `1.74.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/buster/Dockerfile) +- [`1-slim-buster`, `1.74-slim-buster`, `1.74.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.74-bullseye`, `1.74.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.74-slim-bullseye`, `1.74.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.74-bookworm`, `1.74.1-bookworm`, `bookworm`, `1`, `1.74`, `1.74.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.74-slim-bookworm`, `1.74.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.74-slim`, `1.74.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bookworm/slim/Dockerfile) +- [`1-alpine3.17`, `1.74-alpine3.17`, `1.74.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/alpine3.17/Dockerfile) +- [`1-alpine3.18`, `1.74-alpine3.18`, `1.74.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.74-alpine`, `1.74.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/alpine3.18/Dockerfile) # Quick reference (cont.) From b2634833247ef80b9b9519969e1419277329555f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Dec 2023 14:09:54 -0800 Subject: [PATCH 0776/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++----------------------- haproxy/README.md | 8 ++++---- mongo/README.md | 15 ++++++++++++++ wordpress/README.md | 18 ++++++++--------- 4 files changed, 52 insertions(+), 37 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 063685d11131..23c0dd8dddfa 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -36,18 +36,18 @@ WARNING: - [`10.2.0-rc1-php8.2-fpm-bullseye`, `10.2-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `10.2.0-rc1-fpm-bullseye`, `10.2-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bullseye/Dockerfile) - [`10.2.0-rc1-php8.2-fpm-alpine3.18`, `10.2-rc-php8.2-fpm-alpine3.18`, `rc-php8.2-fpm-alpine3.18`, `10.2.0-rc1-php8.2-fpm-alpine`, `10.2-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `10.2.0-rc1-fpm-alpine3.18`, `10.2-rc-fpm-alpine3.18`, `rc-fpm-alpine3.18`, `10.2.0-rc1-fpm-alpine`, `10.2-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.18/Dockerfile) - [`10.2.0-rc1-php8.2-fpm-alpine3.17`, `10.2-rc-php8.2-fpm-alpine3.17`, `rc-php8.2-fpm-alpine3.17`, `10.2.0-rc1-fpm-alpine3.17`, `10.2-rc-fpm-alpine3.17`, `rc-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.6-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.6-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.6-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.6-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.6-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.6`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.6-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.6-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.6-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.6-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.6-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.6-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.6-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.6-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.6-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.6-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.6-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.6-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.6-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.6-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.2/fpm-alpine3.17/Dockerfile) -- [`10.1.6-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.6-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.6-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.6-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.6-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.6-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.6-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.6-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.6-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.6-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/96f915e1503663db2bc6f7cff28774e62aeac4ca/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.7-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.7-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.7-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.7-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.7-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.7-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.7-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.7-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.7-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.7-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.17/Dockerfile) - [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bullseye/Dockerfile) @@ -60,18 +60,18 @@ WARNING: - [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bullseye/Dockerfile) - [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) - [`10.0.11-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.17/Dockerfile) -- [`7.98-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.98-php8.2-apache`, `7-php8.2-apache`, `7.98-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/apache-bookworm/Dockerfile) -- [`7.98-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.98-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.98-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/apache-bullseye/Dockerfile) -- [`7.98-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.98-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`, `7.98-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.18/Dockerfile) -- [`7.98-php8.2-fpm-alpine3.17`, `7-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.2/fpm-alpine3.17/Dockerfile) -- [`7.98-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.98-php8.1-apache`, `7-php8.1-apache`, `7.98-php8.1`, `7-php8.1`, `7.98-apache-bookworm`, `7-apache-bookworm`, `7.98-apache`, `7-apache`, `7.98`, `7`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/apache-bookworm/Dockerfile) -- [`7.98-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.98-php8.1-fpm`, `7-php8.1-fpm`, `7.98-fpm-bookworm`, `7-fpm-bookworm`, `7.98-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.98-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.98-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/apache-bullseye/Dockerfile) -- [`7.98-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.98-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.98-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.98-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.98-fpm-alpine3.18`, `7-fpm-alpine3.18`, `7.98-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.98-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`, `7.98-fpm-alpine3.17`, `7-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/427357a0d6f362f462fffc89090bf172e4743c43/7/php8.1/fpm-alpine3.17/Dockerfile) +- [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bookworm/Dockerfile) +- [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bullseye/Dockerfile) +- [`7.99-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.18/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.17`, `7-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.17/Dockerfile) +- [`7.99-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.99-php8.1-apache`, `7-php8.1-apache`, `7.99-php8.1`, `7-php8.1`, `7.99-apache-bookworm`, `7-apache-bookworm`, `7.99-apache`, `7-apache`, `7.99`, `7`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bookworm/Dockerfile) +- [`7.99-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.99-php8.1-fpm`, `7-php8.1-fpm`, `7.99-fpm-bookworm`, `7-fpm-bookworm`, `7.99-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.99-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.99-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bullseye/Dockerfile) +- [`7.99-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.99-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`, `7.99-fpm-alpine3.17`, `7-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.17/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 6ccaf47c35b0..ebcfd5abf311 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.18`, `3.0-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/alpine/Dockerfile) - [`2.9.0`, `2.9`, `latest`, `2.9.0-bullseye`, `2.9-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/Dockerfile) - [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.18`, `2.9-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/alpine/Dockerfile) -- [`2.8.4`, `2.8`, `lts`, `2.8.4-bullseye`, `2.8-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/Dockerfile) -- [`2.8.4-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.4-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`](https://github.com/docker-library/haproxy/blob/3b21ae1e4abb804305fcda315a390ef27f8e2caa/2.8/alpine/Dockerfile) -- [`2.7.10`, `2.7`, `2.7.10-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/Dockerfile) -- [`2.7.10-alpine`, `2.7-alpine`, `2.7.10-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/6ac34139426d79e07ec76ff9a8b9948dc85e34b3/2.7/alpine/Dockerfile) +- [`2.8.5`, `2.8`, `lts`, `2.8.5-bullseye`, `2.8-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/a287ce7a211b83adb90b1b3bd97d534c0520be8a/2.8/Dockerfile) +- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`](https://github.com/docker-library/haproxy/blob/a287ce7a211b83adb90b1b3bd97d534c0520be8a/2.8/alpine/Dockerfile) +- [`2.7.11`, `2.7`, `2.7.11-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/68e4a3bbf0ff9acbdba492321b63c2bfdf9f9e22/2.7/Dockerfile) +- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/68e4a3bbf0ff9acbdba492321b63c2bfdf9f9e22/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) - [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/alpine/Dockerfile) - [`2.4.24`, `2.4`, `2.4.24-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index e1b3c4d89bce..fd772a99d4d0 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -43,6 +43,11 @@ WARNING: - [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.27-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/Dockerfile) +- [`4.4.27-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.27-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.27-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.27-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.26-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) - [`4.4.26-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.26-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) @@ -81,6 +86,16 @@ WARNING: - `5.0.23-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.27-rc0`, `4.4-rc`: + - [`4.4.27-rc0-focal`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/Dockerfile) + - [`4.4.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.27-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.27-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.27-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.27-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.26`, `4.4`, `4`: - [`4.4.26-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 1271a6a6d75d..ce54047aad52 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.1-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.1-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/apache/Dockerfile) -- [`6.4.1-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/fpm/Dockerfile) -- [`6.4.1-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.1-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.1`, `6.4`, `6`, `latest`, `6.4.1-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.1-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/apache/Dockerfile) -- [`6.4.1-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.1-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/fpm/Dockerfile) -- [`6.4.1-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.1-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.4.1-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.1-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/apache/Dockerfile) -- [`6.4.1-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/fpm/Dockerfile) -- [`6.4.1-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/86753ab5151bc5bbb49f370f519d4c5e531e2df7/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.4.2-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.2-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/apache/Dockerfile) +- [`6.4.2-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/fpm/Dockerfile) +- [`6.4.2-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.2-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.2`, `6.4`, `6`, `latest`, `6.4.2-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.2-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/apache/Dockerfile) +- [`6.4.2-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.2-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/fpm/Dockerfile) +- [`6.4.2-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.2-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.2-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.2-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/apache/Dockerfile) +- [`6.4.2-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/fpm/Dockerfile) +- [`6.4.2-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) - [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) From da669fe90e0db9ad7296fb479c03f579b8a32813 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Dec 2023 17:09:41 -0800 Subject: [PATCH 0777/2686] Run update.sh --- alpine/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 921dd06bb401..d8495598dc25 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20230901`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3/x86_64/Dockerfile) -- [`3.18.5`, `3.18`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/a83fe3481a89201ac736f735062360f5953be635/x86_64/Dockerfile) +- [`3.19.0`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/97c57449282d97cfa1c0b64669aed9afbf08645a/x86_64/Dockerfile) +- [`3.18.5`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a83fe3481a89201ac736f735062360f5953be635/x86_64/Dockerfile) - [`3.17.6`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/4de8583a90c86e251755f4bae4080f86e2449df8/x86_64/Dockerfile) - [`3.16.8`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6e630a20c86d1d0e5987681e02ed6de64ecbbf37/x86_64/Dockerfile) -- [`3.15.11`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/7cf8098b8827402d711e102da28445cfe0d72b1d/x86_64/Dockerfile) # Quick reference (cont.) From 3c7dde9890f578fcc7f26d3d20ae655c997e8b63 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Dec 2023 11:20:17 -0800 Subject: [PATCH 0778/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index a916fad7d935..ce30a98cf68e 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/c8eeb99e725564b92e623b191c7515d276cb6c3a/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/15.0/Dockerfile) # Quick reference (cont.) From c83b7fc61ffd624dfef764e25db56c90753df460 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Dec 2023 12:19:09 -0800 Subject: [PATCH 0779/2686] Run update.sh --- bash/README.md | 24 ++++++++++----------- caddy/README.md | 34 +++++++++++++++--------------- convertigo/README.md | 2 +- php/README.md | 42 +++++++++++++++++++++++++++++++++++++ python/README.md | 50 ++++++++++++++++++++++---------------------- redis/README.md | 16 +++++++------- 6 files changed, 105 insertions(+), 63 deletions(-) diff --git a/bash/README.md b/bash/README.md index 17cc6463e2bc..73bb92bdcdd8 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231204`, `devel`, `devel-20231204-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/b83e8080c75b9737ff60beb52d76d81b391eef71/devel/Dockerfile) -- [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/ba6a6be33e2bc2b6f045963607650e54a83a974b/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.18`, `4.4-alpine3.18`, `4-alpine3.18`](https://github.com/tianon/docker-bash/blob/a4249001da00598147e31c6dae1d2f873ea133d6/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.18`, `4.3-alpine3.18`](https://github.com/tianon/docker-bash/blob/9d96b3dd25eb51833e9436102282379a6926d4e1/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.18`, `4.2-alpine3.18`](https://github.com/tianon/docker-bash/blob/26bc148c4296705a6b7b66591d9de286331db0e3/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.18`, `4.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/fb857333ccbaaa26a237578d18b76aade04ff83b/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.18`, `4.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/ee076229de93378de38a2b8e408345e5f5f28ddc/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`](https://github.com/tianon/docker-bash/blob/0d587a69276bb18347f735f26300099a95b8c330/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.18`, `3.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/b83109dc6ccacd01778fd2377f57ada886f0541a/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.18`, `3.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/2642c1a5b7d148d3486b739b68724bd0d234902c/3.0/Dockerfile) +- [`devel-20231204`, `devel`, `devel-20231204-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/7ed2ca9f4f968776f7e6841fd099448d62d32df3/devel/Dockerfile) +- [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.19`, `4.4-alpine3.19`, `4-alpine3.19`](https://github.com/tianon/docker-bash/blob/682faa73aff031837c3d60db8666384c2ec72bba/4.4/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.19`, `4.3-alpine3.19`](https://github.com/tianon/docker-bash/blob/0686d8b7feac5b76e8c14be9fb44b823c5a2f7ec/4.3/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.19`, `4.2-alpine3.19`](https://github.com/tianon/docker-bash/blob/b7fb84109bde6e9d78e8a1eac2a91e6f0e20226b/4.2/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.19`, `4.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/951a1e31d2dee53473893050f29259acd18dc6ae/4.1/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.19`, `4.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/9927111b47c93b0b0057077725797625980a696d/4.0/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.19`, `3.2-alpine3.19`, `3-alpine3.19`](https://github.com/tianon/docker-bash/blob/1a08d56b8f1ad68e669ec9ee936512e6a7606aab/3.2/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.19`, `3.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/77ce8451ec601516ed8e2868bac35a5f38bb0bd3/3.1/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.19`, `3.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/88332b0ace10af319000ace7659aa1c1416cbce8/3.0/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 661029836a82..43171024f7a5 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.7.5-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/alpine/Dockerfile) -- [`2.7.5-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/builder/Dockerfile) -- [`2.7.5-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) -- [`2.7.5-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.5-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/1809/Dockerfile) -- [`2.7.5-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/alpine/Dockerfile) +- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/builder/Dockerfile) +- [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) +- [`2.7.6-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/1809/Dockerfile) +- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.7.5`, `2.7`, `2`, `latest`: - - [`2.7.5-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/alpine/Dockerfile) - - [`2.7.5-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) - - [`2.7.5-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) -- `2.7.5-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.5-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/builder/Dockerfile) - - [`2.7.5-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/1809/Dockerfile) - - [`2.7.5-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.5-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.5-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/1809/Dockerfile) - - [`2.7.5-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/0b5f063a37d52d579b6d4e64b2e2409ad89f7c7a/2.7/windows/ltsc2022/Dockerfile) +- `2.7.6`, `2.7`, `2`, `latest`: + - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/alpine/Dockerfile) + - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) + - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) +- `2.7.6-builder`, `2.7-builder`, `2-builder`, `builder`: + - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/builder/Dockerfile) + - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/1809/Dockerfile) + - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/ltsc2022/Dockerfile) +- `2.7.6-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) + - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index 18cd8a4d0eb6..362ff58735d4 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.3`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/4f29a87627e16e9961f0795d59ee4540d76a5b3c/docker/default/Dockerfile) +- [`8.2.4`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/c166f0213006a87ba38472fd2dbcb7492ee9053e/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index fd971d125438..4cec24f1ee5d 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.1RC3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/zts/Dockerfile) - [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/cli/Dockerfile) - [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/apache/Dockerfile) - [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.0-cli-alpine3.17`, `8.3-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.3.0-alpine3.17`, `8.3-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/cli/Dockerfile) - [`8.3.0-fpm-alpine3.17`, `8.3-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/fpm/Dockerfile) - [`8.3.0-zts-alpine3.17`, `8.3-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/zts/Dockerfile) +- [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.14RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/zts/Dockerfile) - [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/cli/Dockerfile) - [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/apache/Dockerfile) - [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/fpm/Dockerfile) @@ -52,6 +80,20 @@ WARNING: - [`8.2.13-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8.2.13-alpine3.17`, `8.2-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/cli/Dockerfile) - [`8.2.13-fpm-alpine3.17`, `8.2-fpm-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/fpm/Dockerfile) - [`8.2.13-zts-alpine3.17`, `8.2-zts-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/zts/Dockerfile) +- [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.27RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/zts/Dockerfile) - [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/cli/Dockerfile) - [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/apache/Dockerfile) - [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/fpm/Dockerfile) diff --git a/python/README.md b/python/README.md index a8f4e1a0247d..43d9404219cb 100644 --- a/python/README.md +++ b/python/README.md @@ -32,44 +32,44 @@ WARNING: - [`3.13.0a2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bookworm/Dockerfile) - [`3.13.0a2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bullseye/Dockerfile) - [`3.13.0a2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a2-alpine3.18`, `3.13-rc-alpine3.18`, `3.13.0a2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a2-alpine3.17`, `3.13-rc-alpine3.17`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.17/Dockerfile) +- [`3.13.0a2-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a2-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.18/Dockerfile) - [`3.13.0a2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0a2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.0-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bookworm/Dockerfile) -- [`3.12.0-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.0-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/slim-bookworm/Dockerfile) -- [`3.12.0-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bullseye/Dockerfile) -- [`3.12.0-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/slim-bullseye/Dockerfile) -- [`3.12.0-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.12.0-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/alpine3.18/Dockerfile) -- [`3.12.0-alpine3.17`, `3.12-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/alpine3.17/Dockerfile) -- [`3.12.0-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.0-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.1-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bookworm/Dockerfile) +- [`3.12.1-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.1-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/slim-bookworm/Dockerfile) +- [`3.12.1-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bullseye/Dockerfile) +- [`3.12.1-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/slim-bullseye/Dockerfile) +- [`3.12.1-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.12/alpine3.19/Dockerfile) +- [`3.12.1-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/alpine3.18/Dockerfile) +- [`3.12.1-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.1-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) - [`3.11.7-slim-bookworm`, `3.11-slim-bookworm`, `3.11.7-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bookworm/Dockerfile) - [`3.11.7-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bullseye/Dockerfile) - [`3.11.7-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bullseye/Dockerfile) -- [`3.11.7-alpine3.18`, `3.11-alpine3.18`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.18/Dockerfile) -- [`3.11.7-alpine3.17`, `3.11-alpine3.17`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.17/Dockerfile) +- [`3.11.7-alpine3.19`, `3.11-alpine3.19`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.11/alpine3.19/Dockerfile) +- [`3.11.7-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.18/Dockerfile) - [`3.11.7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) - [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bookworm/Dockerfile) - [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bullseye/Dockerfile) - [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.18/Dockerfile) -- [`3.10.13-alpine3.17`, `3.10-alpine3.17`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.17/Dockerfile) +- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.10/alpine3.19/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.18/Dockerfile) - [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bookworm/Dockerfile) - [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bookworm/Dockerfile) - [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bullseye/Dockerfile) - [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.18/Dockerfile) -- [`3.9.18-alpine3.17`, `3.9-alpine3.17`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.17/Dockerfile) +- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.9/alpine3.19/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.18/Dockerfile) - [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bookworm/Dockerfile) - [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bookworm/Dockerfile) - [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bullseye/Dockerfile) - [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.18/Dockerfile) -- [`3.8.18-alpine3.17`, `3.8-alpine3.17`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.17/Dockerfile) +- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.8/alpine3.19/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.18/Dockerfile) ## Shared Tags @@ -80,13 +80,13 @@ WARNING: - `3.13.0a2-windowsservercore`, `3.13-rc-windowsservercore`: - [`3.13.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.0`, `3.12`, `3`, `latest`: - - [`3.12.0-bookworm`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/bookworm/Dockerfile) - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.0-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/750aa9f30cd280f7fc79231708a387bb26e5a10f/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.1`, `3.12`, `3`, `latest`: + - [`3.12.1-bookworm`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bookworm/Dockerfile) + - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.1-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.7`, `3.11`: - [`3.11.7-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 78a31c304b23..0a62eb7940d6 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.2/bookworm/Dockerfile) -- [`7.2.3-alpine3.18`, `7.2-alpine3.18`, `7-alpine3.18`, `alpine3.18`, `7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.2/alpine3.18/Dockerfile) -- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.0/bookworm/Dockerfile) -- [`7.0.14-alpine3.18`, `7.0-alpine3.18`, `7.0.14-alpine`, `7.0-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/7.0/alpine3.18/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.2/bookworm/Dockerfile) -- [`6.2.14-alpine3.18`, `6.2-alpine3.18`, `6-alpine3.18`, `6.2.14-alpine`, `6.2-alpine`, `6-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.2/alpine3.18/Dockerfile) -- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.0/bookworm/Dockerfile) -- [`6.0.20-alpine3.18`, `6.0-alpine3.18`, `6.0.20-alpine`, `6.0-alpine`](https://github.com/docker-library/redis/blob/7adae2ef2219d7334dcf8affefd0d098114b5da3/6.0/alpine3.18/Dockerfile) +- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/7.2/debian/Dockerfile) +- [`7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.3-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/dbde5b5e1759c8b1e89c863daf3c60172c9f1ea5/7.2/alpine/Dockerfile) +- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/7.0/debian/Dockerfile) +- [`7.0.14-alpine`, `7.0-alpine`, `7.0.14-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/d305d4af9357b17dc50488d9912d4becd3aaf803/7.0/alpine/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.2/debian/Dockerfile) +- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/531cfa59d944bbbfb22b8228646d12c926dfc010/6.2/alpine/Dockerfile) +- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.0/debian/Dockerfile) +- [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.19`, `6.0-alpine3.19`](https://github.com/docker-library/redis/blob/ac5605ebe2e7b4b371edcf94ad06e873986a6b63/6.0/alpine/Dockerfile) # Quick reference (cont.) From f769a0dd0ab60a2416855d1fffcaa9c42768f013 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Dec 2023 14:09:39 -0800 Subject: [PATCH 0780/2686] Run update.sh --- openjdk/README.md | 36 +++++++++++++++---------------- postgres/README.md | 48 ++++++++++++++++++++--------------------- ros/README.md | 54 ++++++++++++++++++++++++++++++++++++++++++---- ruby/README.md | 28 ++++++++++++------------ 4 files changed, 106 insertions(+), 60 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index cda91877d5a1..4566742217c0 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`22-ea-26-jdk-oraclelinux8`, `22-ea-26-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-26-jdk-oracle`, `22-ea-26-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-26-jdk-oraclelinux7`, `22-ea-26-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-26-jdk-bookworm`, `22-ea-26-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/bookworm/Dockerfile) -- [`22-ea-26-jdk-slim-bookworm`, `22-ea-26-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-26-jdk-slim`, `22-ea-26-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-26-jdk-bullseye`, `22-ea-26-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/bullseye/Dockerfile) -- [`22-ea-26-jdk-slim-bullseye`, `22-ea-26-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-26-jdk-windowsservercore-ltsc2022`, `22-ea-26-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-26-jdk-windowsservercore-1809`, `22-ea-26-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-26-jdk-nanoserver-1809`, `22-ea-26-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-27-jdk-oraclelinux8`, `22-ea-27-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-27-jdk-oracle`, `22-ea-27-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-27-jdk-oraclelinux7`, `22-ea-27-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-27-jdk-bookworm`, `22-ea-27-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/bookworm/Dockerfile) +- [`22-ea-27-jdk-slim-bookworm`, `22-ea-27-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-27-jdk-slim`, `22-ea-27-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-27-jdk-bullseye`, `22-ea-27-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/bullseye/Dockerfile) +- [`22-ea-27-jdk-slim-bullseye`, `22-ea-27-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-27-jdk-windowsservercore-ltsc2022`, `22-ea-27-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-27-jdk-windowsservercore-1809`, `22-ea-27-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-27-jdk-nanoserver-1809`, `22-ea-27-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `22-ea-26-jdk`, `22-ea-26`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-26-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-26-jdk-windowsservercore`, `22-ea-26-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-26-jdk-nanoserver`, `22-ea-26-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/abe1a1b0b0f29bb6e84a37429928f1d34427df4e/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-27-jdk`, `22-ea-27`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-27-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-27-jdk-windowsservercore`, `22-ea-27-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-27-jdk-nanoserver`, `22-ea-27-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 1ab5e2343874..d85129731605 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/bookworm/Dockerfile) -- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/bullseye/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.18/Dockerfile) -- [`16.1-alpine3.17`, `16-alpine3.17`, `alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.17/Dockerfile) -- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/bookworm/Dockerfile) -- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/bullseye/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.18/Dockerfile) -- [`15.5-alpine3.17`, `15-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.17/Dockerfile) -- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/bookworm/Dockerfile) -- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/bullseye/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.18/Dockerfile) -- [`14.10-alpine3.17`, `14-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.17/Dockerfile) -- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/bookworm/Dockerfile) -- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/bullseye/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.18/Dockerfile) -- [`13.13-alpine3.17`, `13-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.17/Dockerfile) -- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/bookworm/Dockerfile) -- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/bullseye/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.18/Dockerfile) -- [`12.17-alpine3.17`, `12-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.17/Dockerfile) -- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/bookworm/Dockerfile) -- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/bullseye/Dockerfile) -- [`11.22-alpine3.18`, `11-alpine3.18`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.18/Dockerfile) -- [`11.22-alpine3.17`, `11-alpine3.17`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.17/Dockerfile) +- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bookworm/Dockerfile) +- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bullseye/Dockerfile) +- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/16/alpine3.19/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.18/Dockerfile) +- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bookworm/Dockerfile) +- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bullseye/Dockerfile) +- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/15/alpine3.19/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.18/Dockerfile) +- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bookworm/Dockerfile) +- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bullseye/Dockerfile) +- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/14/alpine3.19/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.18/Dockerfile) +- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bookworm/Dockerfile) +- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bullseye/Dockerfile) +- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/13/alpine3.19/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.18/Dockerfile) +- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bookworm/Dockerfile) +- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bullseye/Dockerfile) +- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/12/alpine3.19/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.18/Dockerfile) +- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/11/bookworm/Dockerfile) +- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/11/bullseye/Dockerfile) +- [`11.22-alpine3.19`, `11-alpine3.19`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/11/alpine3.19/Dockerfile) +- [`11.22-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index 0e94dab85a6e..78f1e67b5743 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,17 +24,63 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/noetic/ubuntu/focal/ros-core/Dockerfile) +- [`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/indigo/ubuntu/trusty/ros-core/Dockerfile) +- [`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/ros-base/Dockerfile) +- [`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/robot/Dockerfile) +- [`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/perception/Dockerfile) +- [`jade-ros-core`, `jade-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/jade/ubuntu/trusty/ros-core/Dockerfile) +- [`jade-ros-base`, `jade-ros-base-trusty`, `jade`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/ros-base/Dockerfile) +- [`jade-robot`, `jade-robot-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/robot/Dockerfile) +- [`jade-perception`, `jade-perception-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/perception/Dockerfile) +- [`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile) +- [`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile) +- [`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/robot/Dockerfile) +- [`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/perception/Dockerfile) +- [`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/xenial/ros-core/Dockerfile) +- [`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/ros-base/Dockerfile) +- [`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/robot/Dockerfile) +- [`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/perception/Dockerfile) +- [`lunar-ros-core-zesty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/zesty/ros-core/Dockerfile) +- [`lunar-ros-base-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/ros-base/Dockerfile) +- [`lunar-robot-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/robot/Dockerfile) +- [`lunar-perception-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/perception/Dockerfile) +- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) +- [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) +- [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) +- [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) +- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/3f4fbca923d80f834f3a89b5960bad5582652519/ros/humble/ubuntu/jammy/ros-core/Dockerfile) +- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/debian/buster/ros-core/Dockerfile) +- [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) +- [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) +- [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) +- [`ardent-ros-core`, `ardent-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/ardent/ubuntu/xenial/ros-core/Dockerfile) +- [`ardent-ros-base`, `ardent-ros-base-xenial`, `ardent`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/ardent/ubuntu/xenial/ros-base/Dockerfile) +- [`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile) +- [`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile) +- [`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/crystal/ubuntu/bionic/ros-core/Dockerfile) +- [`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/crystal/ubuntu/bionic/ros-base/Dockerfile) +- [`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/dashing/ubuntu/bionic/ros-core/Dockerfile) +- [`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/dashing/ubuntu/bionic/ros-base/Dockerfile) +- [`dashing-ros1-bridge`, `dashing-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/dashing/ubuntu/bionic/ros1-bridge/Dockerfile) +- [`eloquent-ros-core`, `eloquent-ros-core-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros-core/Dockerfile) +- [`eloquent-ros-base`, `eloquent-ros-base-bionic`, `eloquent`](https://github.com/osrf/docker_images/blob/b3e79c3aef3687b56b3c1052ae38aa7010234834/ros/eloquent/ubuntu/bionic/ros-base/Dockerfile) +- [`eloquent-ros1-bridge`, `eloquent-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros1-bridge/Dockerfile) +- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros-core/Dockerfile) +- [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) +- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) +- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/galactic/ubuntu/focal/ros-core/Dockerfile) +- [`galactic-ros-base`, `galactic-ros-base-focal`, `galactic`](https://github.com/osrf/docker_images/blob/6511d8fc0754616550b7f5ea31a40084c2462938/ros/galactic/ubuntu/focal/ros-base/Dockerfile) +- [`galactic-ros1-bridge`, `galactic-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/galactic/ubuntu/focal/ros1-bridge/Dockerfile) +- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-core/Dockerfile) +- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) - [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/perception/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 276b1af8d00b..c4f3e1f12675 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-preview3-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview3`, `3.3-rc`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/bookworm/Dockerfile) -- [`3.3.0-preview3-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview3-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/slim-bookworm/Dockerfile) -- [`3.3.0-preview3-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-preview3-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-preview3-alpine3.18`, `3.3-rc-alpine3.18`, `3.3.0-preview3-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/alpine3.18/Dockerfile) -- [`3.3.0-preview3-alpine3.17`, `3.3-rc-alpine3.17`](https://github.com/docker-library/ruby/blob/897d5b47686172a3ad13fd6ddc48f6eaabf151c7/3.3-rc/alpine3.17/Dockerfile) -- [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bookworm/Dockerfile) -- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bookworm/Dockerfile) -- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/bullseye/Dockerfile) -- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.2/slim-bullseye/Dockerfile) -- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.18/Dockerfile) -- [`3.2.2-alpine3.17`, `3.2-alpine3.17`, `3-alpine3.17`, `alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.2/alpine3.17/Dockerfile) +- [`3.3.0-preview3-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview3`, `3.3-rc`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/bookworm/Dockerfile) +- [`3.3.0-preview3-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview3-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/slim-bookworm/Dockerfile) +- [`3.3.0-preview3-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-preview3-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/slim-bullseye/Dockerfile) +- [`3.3.0-preview3-alpine3.19`, `3.3-rc-alpine3.19`, `3.3.0-preview3-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/alpine3.19/Dockerfile) +- [`3.3.0-preview3-alpine3.18`, `3.3-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/alpine3.18/Dockerfile) +- [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bookworm/Dockerfile) +- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bookworm/Dockerfile) +- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bullseye/Dockerfile) +- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bullseye/Dockerfile) +- [`3.2.2-alpine3.19`, `3.2-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.19/Dockerfile) +- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.18/Dockerfile) - [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bookworm/Dockerfile) - [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bookworm/Dockerfile) - [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bullseye/Dockerfile) - [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bullseye/Dockerfile) -- [`3.1.4-alpine3.18`, `3.1-alpine3.18`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) -- [`3.1.4-alpine3.17`, `3.1-alpine3.17`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.17/Dockerfile) +- [`3.1.4-alpine3.19`, `3.1-alpine3.19`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/61a806938da52038916a8fd7b9b4373937bdc28f/3.1/alpine3.19/Dockerfile) +- [`3.1.4-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) - [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/bullseye/Dockerfile) - [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/slim-bullseye/Dockerfile) - [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/buster/Dockerfile) From 977ddd952740cc9c8624502e093f53b75aba471e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Dec 2023 17:09:54 -0800 Subject: [PATCH 0781/2686] Run update.sh --- haxe/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index 96539efede9f..dd410c68e94d 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -32,34 +32,34 @@ WARNING: - [`4.3.3-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/buster/Dockerfile) - [`4.3.3-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.3-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.3-alpine3.18`, `4.3-alpine3.18`, `4.3.3-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.18/Dockerfile) +- [`4.3.3-alpine3.19`, `4.3-alpine3.19`, `4.3.3-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.3/alpine3.19/Dockerfile) +- [`4.3.3-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.18/Dockerfile) - [`4.3.3-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.17/Dockerfile) - [`4.3.3-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.16/Dockerfile) -- [`4.3.3-alpine3.15`, `4.3-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.15/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) - [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) -- [`4.2.5-alpine3.18`, `4.2-alpine3.18`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) +- [`4.2.5-alpine3.19`, `4.2-alpine3.19`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) +- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) - [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) - [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.2/alpine3.16/Dockerfile) -- [`4.2.5-alpine3.15`, `4.2-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/83789c10dc601064a234fd559206d1ec252228d7/4.2/alpine3.15/Dockerfile) - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) - [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) -- [`4.1.5-alpine3.18`, `4.1-alpine3.18`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) +- [`4.1.5-alpine3.19`, `4.1-alpine3.19`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) +- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) - [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) - [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.1/alpine3.16/Dockerfile) -- [`4.1.5-alpine3.15`, `4.1-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.1/alpine3.15/Dockerfile) - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) - [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- [`4.0.5-alpine3.18`, `4.0-alpine3.18`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) +- [`4.0.5-alpine3.19`, `4.0-alpine3.19`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) +- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) - [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) - [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) -- [`4.0.5-alpine3.15`, `4.0-alpine3.15`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b0098b4b730d0d9ff21dbf3d543464228d6b7e99/4.0/alpine3.15/Dockerfile) - [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) - [`3.4.7-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - [`3.4.7-windowsservercore-1809`, `3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) From 35f033d4aac0d4f6796d329696dfe7faddfc4a5d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Dec 2023 18:09:55 -0800 Subject: [PATCH 0782/2686] Run update.sh --- golang/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/golang/README.md b/golang/README.md index 0c30db671570..0a9193fed1ff 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bookworm/Dockerfile) -- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bullseye/Dockerfile) -- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/alpine3.18/Dockerfile) -- [`1.21.5-alpine3.17`, `1.21-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/alpine3.17/Dockerfile) +- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bookworm/Dockerfile) +- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bullseye/Dockerfile) +- [`1.21.5-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/alpine3.19/Dockerfile) +- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/alpine3.18/Dockerfile) - [`1.21.5-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.5-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.5-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.5-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) - [`1.20.12-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) - [`1.20.12-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bullseye/Dockerfile) -- [`1.20.12-alpine3.18`, `1.20-alpine3.18`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.18/Dockerfile) -- [`1.20.12-alpine3.17`, `1.20-alpine3.17`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.17/Dockerfile) +- [`1.20.12-alpine3.19`, `1.20-alpine3.19`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/84f47a944aa3d10104ad45dd8a188b878595cac4/1.20/alpine3.19/Dockerfile) +- [`1.20.12-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.18/Dockerfile) - [`1.20.12-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.12-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.12-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.21.5`, `1.21`, `1`, `latest`: - - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/bookworm/Dockerfile) + - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bookworm/Dockerfile) - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) - `1.21.5-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: From 3e41b3c4ef6edbef6ddd10783493a285891ccf4a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Dec 2023 09:19:06 -0800 Subject: [PATCH 0783/2686] Run update.sh --- aerospike/README.md | 4 ++-- photon/README.md | 6 +++--- varnish/README.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 850712002642..a9e467290ccf 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.2`, `ee-7.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/056b7c2764a68303271caf8a0633857925f46e70/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.2`, `ce-7.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/056b7c2764a68303271caf8a0633857925f46e70/community/debian12/Dockerfile) +- [`ee-7.0.0.3`, `ee-7.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/e0ed668291dba3144e51546c3b80e9854cc1db24/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.3`, `ce-7.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/e0ed668291dba3144e51546c3b80e9854cc1db24/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 32e5109c5e49..f236a419f429 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231128`, `latest`](https://github.com/vmware/photon-docker-image/blob/37bd9b69ccb152376b49cddd0fc0cc5b2f85f49f/docker/Dockerfile) -- [`4.0`, `4.0-20231125`](https://github.com/vmware/photon-docker-image/blob/cbf5c97be2a49f8368ea6bcb3651776b0354713a/docker/Dockerfile) -- [`3.0`, `3.0-20231128`](https://github.com/vmware/photon-docker-image/blob/963fb2e6a636d9910ebf953502e8753e0e77a367/docker/Dockerfile) +- [`5.0`, `5.0-20231209`, `latest`](https://github.com/vmware/photon-docker-image/blob/d0e3d3ea6a786ea30e65be4185f433daf70a805e/docker/Dockerfile) +- [`4.0`, `4.0-20231209`](https://github.com/vmware/photon-docker-image/blob/1c70a66c8a98b1873c6ffea3ff87944bc290387d/docker/Dockerfile) +- [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index ca082a3d8806..7e0052c91517 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`fresh`, `7.4.2`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/fresh/alpine/Dockerfile) - [`old`, `7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) -- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/alpine/Dockerfile) +- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/old/alpine/Dockerfile) - [`stable`, `6.0.12`, `6.0`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) # Quick reference (cont.) From 852444aa8d052da8425ba51a0872bba0fbc76101 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Dec 2023 10:09:56 -0800 Subject: [PATCH 0784/2686] Run update.sh --- clearlinux/README.md | 2 +- composer/README.md | 2 +- kong/README.md | 2 -- maven/README.md | 58 ++++++++++++++++++++++---------------------- node/README.md | 12 ++++----- 5 files changed, 37 insertions(+), 39 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 7803a2f3395f..3f779cccf883 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/7c193b6f42361648cb547f1445cdf763ec7828ed/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4c367f5b64b69b64d2529bda3eeb58c2f62c3375/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 89e42fb49647..752c215f759f 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.5`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/1659442e2fe548afddf0a7356b6ca0c2348186b4/2.6/Dockerfile) +- [`2.6.6`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) diff --git a/kong/README.md b/kong/README.md index 49b544511326..64a75fda9447 100644 --- a/kong/README.md +++ b/kong/README.md @@ -32,8 +32,6 @@ WARNING: - [`3.2.2-ubuntu`, `3.2-ubuntu`, `3.2.2`, `3.2`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) - [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) - [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) -- [`3.0.2-alpine`, `3.0-alpine`, `3.0.2`, `3.0`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/Dockerfile.apk) -- [`3.0.2-ubuntu`, `3.0-ubuntu`](https://github.com/Kong/docker-kong/blob/5a3ee8daf50371db2e3a788abe8f306255eead22/ubuntu/Dockerfile) - [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) - [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) diff --git a/maven/README.md b/maven/README.md index b830001de097..288f3ad761e7 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.5-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11/Dockerfile) -- [`3.9.5-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.5-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.5-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17/Dockerfile) -- [`3.9.5-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.5-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.5-eclipse-temurin-21`, `3.9.5`, `3.9.5-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-21/Dockerfile) -- [`3.9.5-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.5-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8/Dockerfile) -- [`3.9.5-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.5-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.5-ibmjava-8`, `3.9.5-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibmjava-8/Dockerfile) -- [`3.9.5-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibm-semeru-11-focal/Dockerfile) -- [`3.9.5-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/ibm-semeru-17-focal/Dockerfile) -- [`3.9.5-amazoncorretto-11`, `3.9.5-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11/Dockerfile) -- [`3.9.5-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.5-amazoncorretto-11-debian`, `3.9.5-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-11-debian/Dockerfile) -- [`3.9.5-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17/Dockerfile) -- [`3.9.5-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.5-amazoncorretto-17-debian`, `3.9.5-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-17-debian/Dockerfile) -- [`3.9.5-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21/Dockerfile) -- [`3.9.5-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.5-amazoncorretto-21-debian`, `3.9.5-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-21-debian/Dockerfile) -- [`3.9.5-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8/Dockerfile) -- [`3.9.5-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.5-amazoncorretto-8-debian`, `3.9.5-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/amazoncorretto-8-debian/Dockerfile) -- [`3.9.5-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-11/Dockerfile) -- [`3.9.5-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-17/Dockerfile) -- [`3.9.5-sapmachine-21`, `3.9.5-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/ce7950e684a067136fa6dfa810193a0ca7e78ad7/sapmachine-21/Dockerfile) +- [`3.9.6-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11/Dockerfile) +- [`3.9.6-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.6-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17/Dockerfile) +- [`3.9.6-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.6-eclipse-temurin-21`, `3.9.6`, `3.9.6-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21/Dockerfile) +- [`3.9.6-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8/Dockerfile) +- [`3.9.6-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.6-ibmjava-8`, `3.9.6-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibmjava-8/Dockerfile) +- [`3.9.6-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-11-focal/Dockerfile) +- [`3.9.6-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-17-focal/Dockerfile) +- [`3.9.6-amazoncorretto-11`, `3.9.6-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11/Dockerfile) +- [`3.9.6-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-11-debian`, `3.9.6-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-debian/Dockerfile) +- [`3.9.6-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17/Dockerfile) +- [`3.9.6-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-17-debian`, `3.9.6-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17-debian/Dockerfile) +- [`3.9.6-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21/Dockerfile) +- [`3.9.6-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-21-debian`, `3.9.6-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21-debian/Dockerfile) +- [`3.9.6-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8/Dockerfile) +- [`3.9.6-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-8-debian`, `3.9.6-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8-debian/Dockerfile) +- [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-11/Dockerfile) +- [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-17/Dockerfile) +- [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-21/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 9dac4cd49965..dc978d0f0beb 100644 --- a/node/README.md +++ b/node/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.17`, `21.4-alpine3.17`, `21.4.0-alpine3.17`, `alpine3.17`, `current-alpine3.17`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.17/Dockerfile) -- [`21-alpine`, `21-alpine3.18`, `21.4-alpine`, `21.4-alpine3.18`, `21.4.0-alpine`, `21.4.0-alpine3.18`, `alpine`, `alpine3.18`, `current-alpine`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.18/Dockerfile) +- [`21-alpine3.18`, `21.4-alpine3.18`, `21.4.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.4-alpine`, `21.4-alpine3.19`, `21.4.0-alpine`, `21.4.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/21/alpine3.19/Dockerfile) - [`21`, `21-bookworm`, `21.4`, `21.4-bookworm`, `21.4.0`, `21.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm/Dockerfile) - [`21-bookworm-slim`, `21-slim`, `21.4-bookworm-slim`, `21.4-slim`, `21.4.0-bookworm-slim`, `21.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.4-bullseye`, `21.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.4-bullseye-slim`, `21.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye-slim/Dockerfile) -- [`20-alpine3.17`, `20.10-alpine3.17`, `20.10.0-alpine3.17`, `iron-alpine3.17`, `lts-alpine3.17`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.17/Dockerfile) -- [`20-alpine`, `20-alpine3.18`, `20.10-alpine`, `20.10-alpine3.18`, `20.10.0-alpine`, `20.10.0-alpine3.18`, `iron-alpine`, `iron-alpine3.18`, `lts-alpine`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) +- [`20-alpine3.18`, `20.10-alpine3.18`, `20.10.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.10-alpine`, `20.10-alpine3.19`, `20.10.0-alpine`, `20.10.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) - [`20-bookworm-slim`, `20-slim`, `20.10-bookworm-slim`, `20.10-slim`, `20.10.0-bookworm-slim`, `20.10.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.10-bullseye`, `20.10.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20.10-bullseye-slim`, `20.10.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.10-buster`, `20.10.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster/Dockerfile) - [`20-buster-slim`, `20.10-buster-slim`, `20.10.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster-slim/Dockerfile) -- [`18-alpine3.17`, `18.19-alpine3.17`, `18.19.0-alpine3.17`, `hydrogen-alpine3.17`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.17/Dockerfile) -- [`18-alpine`, `18-alpine3.18`, `18.19-alpine`, `18.19-alpine3.18`, `18.19.0-alpine`, `18.19.0-alpine3.18`, `hydrogen-alpine`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.18/Dockerfile) +- [`18-alpine3.18`, `18.19-alpine3.18`, `18.19.0-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.19-alpine`, `18.19-alpine3.19`, `18.19.0-alpine`, `18.19.0-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/18/alpine3.19/Dockerfile) - [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.0`, `18.19.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm/Dockerfile) - [`18-bookworm-slim`, `18-slim`, `18.19-bookworm-slim`, `18.19-slim`, `18.19.0-bookworm-slim`, `18.19.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.19-bullseye`, `18.19.0-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bullseye/Dockerfile) From 6d1d866a0abb0cc47805de66e7c4879f619d567d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Dec 2023 11:20:45 -0800 Subject: [PATCH 0785/2686] Run update.sh --- ros/README.md | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) diff --git a/ros/README.md b/ros/README.md index 78f1e67b5743..ea18062c573e 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,56 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/indigo/ubuntu/trusty/ros-core/Dockerfile) -- [`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/ros-base/Dockerfile) -- [`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/robot/Dockerfile) -- [`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/perception/Dockerfile) -- [`jade-ros-core`, `jade-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/jade/ubuntu/trusty/ros-core/Dockerfile) -- [`jade-ros-base`, `jade-ros-base-trusty`, `jade`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/ros-base/Dockerfile) -- [`jade-robot`, `jade-robot-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/robot/Dockerfile) -- [`jade-perception`, `jade-perception-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/perception/Dockerfile) -- [`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile) -- [`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile) -- [`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/robot/Dockerfile) -- [`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/perception/Dockerfile) -- [`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/xenial/ros-core/Dockerfile) -- [`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/ros-base/Dockerfile) -- [`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/robot/Dockerfile) -- [`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/perception/Dockerfile) -- [`lunar-ros-core-zesty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/zesty/ros-core/Dockerfile) -- [`lunar-ros-base-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/ros-base/Dockerfile) -- [`lunar-robot-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/robot/Dockerfile) -- [`lunar-perception-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/perception/Dockerfile) -- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) -- [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) -- [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) -- [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) - [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/debian/buster/ros-core/Dockerfile) -- [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) -- [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) -- [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) -- [`ardent-ros-core`, `ardent-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/ardent/ubuntu/xenial/ros-core/Dockerfile) -- [`ardent-ros-base`, `ardent-ros-base-xenial`, `ardent`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/ardent/ubuntu/xenial/ros-base/Dockerfile) -- [`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile) -- [`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile) -- [`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/crystal/ubuntu/bionic/ros-core/Dockerfile) -- [`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/crystal/ubuntu/bionic/ros-base/Dockerfile) -- [`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/dashing/ubuntu/bionic/ros-core/Dockerfile) -- [`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/dashing/ubuntu/bionic/ros-base/Dockerfile) -- [`dashing-ros1-bridge`, `dashing-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/dashing/ubuntu/bionic/ros1-bridge/Dockerfile) -- [`eloquent-ros-core`, `eloquent-ros-core-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros-core/Dockerfile) -- [`eloquent-ros-base`, `eloquent-ros-base-bionic`, `eloquent`](https://github.com/osrf/docker_images/blob/b3e79c3aef3687b56b3c1052ae38aa7010234834/ros/eloquent/ubuntu/bionic/ros-base/Dockerfile) -- [`eloquent-ros1-bridge`, `eloquent-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros1-bridge/Dockerfile) -- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros-core/Dockerfile) -- [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) -- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) -- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/galactic/ubuntu/focal/ros-core/Dockerfile) -- [`galactic-ros-base`, `galactic-ros-base-focal`, `galactic`](https://github.com/osrf/docker_images/blob/6511d8fc0754616550b7f5ea31a40084c2462938/ros/galactic/ubuntu/focal/ros-base/Dockerfile) -- [`galactic-ros1-bridge`, `galactic-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/galactic/ubuntu/focal/ros1-bridge/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) From 626d3afece00544d29e0b8a78b3ddbdae0cb9cfd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Dec 2023 12:18:08 -0800 Subject: [PATCH 0786/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 8cc7bf9a1aa8..58d4715bc7e8 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26`, `1.26.3`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.26/Dockerfile) -- [`1.26-alpine`, `1.26.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.26/alpine/Dockerfile) -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d636186a1671138ec12a043f89af70e655949f89/telegraf/1.28/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) From a3e3a61ccf47efad7f483630883ab9c814ecfe19 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Dec 2023 16:09:53 -0800 Subject: [PATCH 0787/2686] Run update.sh --- swift/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/swift/README.md b/swift/README.md index 9cdf7872f59f..dcb62346e81b 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.1`, `5.9`, `5.9.1-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/22.04/Dockerfile) -- [`5.9.1-slim`, `5.9-slim`, `5.9.1-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/22.04/slim/Dockerfile) -- [`5.9.1-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/20.04/slim/Dockerfile) -- [`5.9.1-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/ubuntu/20.04/Dockerfile) -- [`5.9.1-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/amazonlinux/2/Dockerfile) -- [`5.9.1-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/amazonlinux/2/slim/Dockerfile) -- [`5.9.1-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/centos/7/Dockerfile) -- [`5.9.1-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/centos/7/slim/Dockerfile) -- [`5.9.1-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/Dockerfile) -- [`5.9.1-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/df8e8e36df704e52b2fabf9e732a0f08fbb333e4/5.9/rhel-ubi/9/slim/Dockerfile) -- [`5.9.1-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/3fc609343f771e31c17140ed90d6cb2023e6e701/5.9/windows/LTSC2022/Dockerfile) +- [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) +- [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) +- [`5.9.2-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) +- [`5.9.2-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/Dockerfile) +- [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) +- [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) +- [`5.9.2-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/Dockerfile) +- [`5.9.2-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/slim/Dockerfile) +- [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) +- [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) +- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) - [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) - [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) - [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) From 3008c2f6236af24e1dc09b5a67d1ca2f0421eb33 Mon Sep 17 00:00:00 2001 From: Nicolas Albert Date: Tue, 12 Dec 2023 11:39:45 +0100 Subject: [PATCH 0788/2686] Convertigo: add the ENABLE_JDWP_DEBUG environment variable --- convertigo/content.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/convertigo/content.md b/convertigo/content.md index 72718def1847..380b29b3310b 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -265,6 +265,16 @@ The default `DISABLE_SUDO` value is **empty** and can be defined this way: $ docker run -d --name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% ``` +## `ENABLE_JDWP_DEBUG` Environment variable + +Convertigo operates using the JVM (Java Virtual Machine). To enable remote debugging of the JVM, it's necessary to start it with specific options. By default, this configuration is not enabled. However, if you wish to automatically activate remote debugging over the JDWP port 8000, set the `ENABLE_JDWP_DEBUG` value to **true**. + +The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way: + +```console +$ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 %%IMAGE%% +``` + ## Pre configurated Docker compose stack You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. From c62860c06aacd69e39c0403b4076c1891a0c9579 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Dec 2023 10:10:06 -0800 Subject: [PATCH 0789/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- rethinkdb/README.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 64fad096b879..4ad53773e65a 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/docker-library/elasticsearch/blob/84a62adaf958d51f39376ed636a7d59f2e92ca69/8/Dockerfile) -- [`7.17.15`](https://github.com/docker-library/elasticsearch/blob/917e6014bd129e3e2193e2ec52245c9f599e1e84/7/Dockerfile) +- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/elasticsearch/Dockerfile) +- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index ff3074828566..1da03c9c7d5a 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/docker-library/kibana/blob/d86e69a854eb6bb1c4b4b33d629b784eb6ca539d/8/Dockerfile) -- [`7.17.15`](https://github.com/docker-library/kibana/blob/9c6a9d1c949c08a7254e2ff66594e25c4be54da7/7/Dockerfile) +- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/kibana/Dockerfile) +- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 35ba059c51f2..283311957ad2 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/docker-library/logstash/blob/7866ca9dec9586e2e4a1a8d19a2958dfac93cede/8/Dockerfile) -- [`7.17.15`](https://github.com/docker-library/logstash/blob/e8bb7b091d72d4592901eb24379c9dde4975775f/7/Dockerfile) +- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/logstash/Dockerfile) +- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/logstash/Dockerfile) # Quick reference (cont.) diff --git a/rethinkdb/README.md b/rethinkdb/README.md index 0e4f76003004..2d29d0df430b 100644 --- a/rethinkdb/README.md +++ b/rethinkdb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.2-bullseye-slim`, `2.4-bullseye-slim`, `2-bullseye-slim`, `bullseye-slim`, `2.4.2`, `2.4`, `2`, `latest`](https://github.com/rethinkdb/rethinkdb-dockerfiles/blob/826a4193366e7d0ff176d101679385125b8fa4f1/bullseye/2.4.2/Dockerfile) +- [`2.4.3-bookworm-slim`, `2.4-bookworm-slim`, `2-bookworm-slim`, `bookworm-slim`, `2.4.3`, `2.4`, `2`, `latest`](https://github.com/rethinkdb/rethinkdb-dockerfiles/blob/f5d6158f85c1fd7082814063e0a9cf5665dfcddc/bookworm/2.4.3/Dockerfile) # Quick reference (cont.) @@ -102,7 +102,7 @@ The `rethinkdb` images come in many flavors, each designed for a specific use ca This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `rethinkdb:-slim` From 4e153d4c99005495ae6e96f4b23545a785b03517 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Dec 2023 11:23:36 -0800 Subject: [PATCH 0790/2686] Run update.sh --- haproxy/README.md | 14 +++++++------- httpd/README.md | 2 +- julia/README.md | 12 ++++++------ memcached/README.md | 4 ++-- openjdk/README.md | 18 ++++++++++++++++++ rabbitmq/README.md | 10 +++++----- ruby/README.md | 12 ++++++------ 7 files changed, 45 insertions(+), 27 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index ebcfd5abf311..fa8772f34778 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -25,19 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bullseye`, `3.0-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/Dockerfile) -- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.18`, `3.0-dev-alpine3.18`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/alpine/Dockerfile) +- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/3.0/alpine/Dockerfile) - [`2.9.0`, `2.9`, `latest`, `2.9.0-bullseye`, `2.9-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/Dockerfile) -- [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.18`, `2.9-alpine3.18`, `alpine3.18`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/alpine/Dockerfile) +- [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bullseye`, `2.8-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/a287ce7a211b83adb90b1b3bd97d534c0520be8a/2.8/Dockerfile) -- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.18`, `2.8-alpine3.18`, `lts-alpine3.18`](https://github.com/docker-library/haproxy/blob/a287ce7a211b83adb90b1b3bd97d534c0520be8a/2.8/alpine/Dockerfile) +- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/68e4a3bbf0ff9acbdba492321b63c2bfdf9f9e22/2.7/Dockerfile) -- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.18`, `2.7-alpine3.18`](https://github.com/docker-library/haproxy/blob/68e4a3bbf0ff9acbdba492321b63c2bfdf9f9e22/2.7/alpine/Dockerfile) +- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.7/alpine/Dockerfile) - [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) -- [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.18`, `2.6-alpine3.18`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/alpine/Dockerfile) +- [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.6/alpine/Dockerfile) - [`2.4.24`, `2.4`, `2.4.24-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/Dockerfile) -- [`2.4.24-alpine`, `2.4-alpine`, `2.4.24-alpine3.18`, `2.4-alpine3.18`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/alpine/Dockerfile) +- [`2.4.24-alpine`, `2.4-alpine`, `2.4.24-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.4/alpine/Dockerfile) - [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/ad34487167b0bb727cb56000f26d8ea37449c590/2.2/Dockerfile) -- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.18`, `2.2-alpine3.18`](https://github.com/docker-library/haproxy/blob/ad34487167b0bb727cb56000f26d8ea37449c590/2.2/alpine/Dockerfile) +- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.19`, `2.2-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.2/alpine/Dockerfile) - [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/Dockerfile) - [`2.0.33-alpine`, `2.0-alpine`, `2.0.33-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/alpine/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index 3f4f56a7d10a..5b3a64b7a6ae 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.4.58`, `2.4`, `2`, `latest`, `2.4.58-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/338f9a4b1e36e09ad2733f36f19e31157f5c959c/2.4/Dockerfile) -- [`2.4.58-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.58-alpine3.18`, `2.4-alpine3.18`, `2-alpine3.18`, `alpine3.18`](https://github.com/docker-library/httpd/blob/338f9a4b1e36e09ad2733f36f19e31157f5c959c/2.4/alpine/Dockerfile) +- [`2.4.58-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.58-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/8a57cc5e01d709b1ae7176a2e85a47923865da0c/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 51b02ed0ac13..a1a86e88af7f 100644 --- a/julia/README.md +++ b/julia/README.md @@ -30,20 +30,20 @@ WARNING: - [`1.10.0-rc2-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bookworm/Dockerfile) - [`1.10.0-rc2-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-rc2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`, `1.10.0-rc2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-rc2-alpine3.17`, `1.10-rc-alpine3.17`, `rc-alpine3.17`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.17/Dockerfile) +- [`1.10.0-rc2-alpine3.19`, `1.10-rc-alpine3.19`, `rc-alpine3.19`, `1.10.0-rc2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.10-rc/alpine3.19/Dockerfile) +- [`1.10.0-rc2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.18/Dockerfile) - [`1.10.0-rc2-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.0-rc2-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.4-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - [`1.9.4-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bullseye/Dockerfile) -- [`1.9.4-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.18/Dockerfile) -- [`1.9.4-alpine3.17`, `1.9-alpine3.17`, `1-alpine3.17`, `alpine3.17`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.17/Dockerfile) +- [`1.9.4-alpine3.19`, `1.9-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.9/alpine3.19/Dockerfile) +- [`1.9.4-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.18/Dockerfile) - [`1.9.4-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.9.4-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) -- [`1.6.7-alpine3.18`, `1.6-alpine3.18`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.18/Dockerfile) -- [`1.6.7-alpine3.17`, `1.6-alpine3.17`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.17/Dockerfile) +- [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) +- [`1.6.7-alpine3.18`, `1.6-alpine3.18`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.18/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 85dc897459a6..1fb99e27b0e3 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.22`, `1.6`, `1`, `latest`, `1.6.22-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/debian/Dockerfile) -- [`1.6.22-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.22-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/alpine/Dockerfile) +- [`1.6.22`, `1.6`, `1`, `latest`, `1.6.22-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/52c3fa2f38bc81f2f3ace853a4b059046c32183a/1/debian/Dockerfile) +- [`1.6.22-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.22-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/471a2986706be906753f3b271a55c54391667cbb/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 4566742217c0..125feeda675f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,6 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags +- [`23-ea-1-jdk-oraclelinux8`, `23-ea-1-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-1-jdk-oracle`, `23-ea-1-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-1-jdk-oraclelinux7`, `23-ea-1-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-1-jdk-bookworm`, `23-ea-1-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/bookworm/Dockerfile) +- [`23-ea-1-jdk-slim-bookworm`, `23-ea-1-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-1-jdk-slim`, `23-ea-1-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-1-jdk-bullseye`, `23-ea-1-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/bullseye/Dockerfile) +- [`23-ea-1-jdk-slim-bullseye`, `23-ea-1-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-1-jdk-windowsservercore-ltsc2022`, `23-ea-1-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-1-jdk-windowsservercore-1809`, `23-ea-1-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-1-jdk-nanoserver-1809`, `23-ea-1-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/nanoserver-1809/Dockerfile) - [`22-ea-27-jdk-oraclelinux8`, `22-ea-27-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-27-jdk-oracle`, `22-ea-27-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) - [`22-ea-27-jdk-oraclelinux7`, `22-ea-27-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux7/Dockerfile) - [`22-ea-27-jdk-bookworm`, `22-ea-27-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/bookworm/Dockerfile) @@ -54,6 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags +- `23-ea-1-jdk`, `23-ea-1`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-1-jdk-windowsservercore`, `23-ea-1-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-1-jdk-nanoserver`, `23-ea-1-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-ea-27-jdk`, `22-ea-27`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - [`22-ea-27-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) - [`22-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index ee728e6c44a0..69594a75f2a1 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -26,23 +26,23 @@ WARNING: - [`3.13.0-rc.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/ubuntu/Dockerfile) - [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/alpine/Dockerfile) +- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.12/alpine/Dockerfile) - [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.26`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2740bd4780a9e5f6abc22f9ebddc399e021b7a28/3.11/ubuntu/Dockerfile) - [`3.11.26-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.26-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/2740bd4780a9e5f6abc22f9ebddc399e021b7a28/3.11/alpine/Dockerfile) +- [`3.11.26-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.11/alpine/Dockerfile) - [`3.11.26-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) - [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/4ef39c16217ca65831d0a997f60e54c916244a3c/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/4ef39c16217ca65831d0a997f60e54c916244a3c/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index c4f3e1f12675..a54a305029e7 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-preview3-bookworm`, `3.3-rc-bookworm`, `3.3.0-preview3`, `3.3-rc`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/bookworm/Dockerfile) -- [`3.3.0-preview3-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-preview3-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/slim-bookworm/Dockerfile) -- [`3.3.0-preview3-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-preview3-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-preview3-alpine3.19`, `3.3-rc-alpine3.19`, `3.3.0-preview3-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/alpine3.19/Dockerfile) -- [`3.3.0-preview3-alpine3.18`, `3.3-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.3-rc/alpine3.18/Dockerfile) +- [`3.3.0-rc1-bookworm`, `3.3-rc-bookworm`, `3.3.0-rc1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/bookworm/Dockerfile) +- [`3.3.0-rc1-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-rc1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/slim-bookworm/Dockerfile) +- [`3.3.0-rc1-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/bullseye/Dockerfile) +- [`3.3.0-rc1-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/slim-bullseye/Dockerfile) +- [`3.3.0-rc1-alpine3.19`, `3.3-rc-alpine3.19`, `3.3.0-rc1-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/alpine3.19/Dockerfile) +- [`3.3.0-rc1-alpine3.18`, `3.3-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/alpine3.18/Dockerfile) - [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bookworm/Dockerfile) - [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bookworm/Dockerfile) - [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bullseye/Dockerfile) From f83360edd3178813e78eea256ed37b24f9012cd9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Dec 2023 12:18:15 -0800 Subject: [PATCH 0791/2686] Run update.sh --- convertigo/README.md | 10 ++++++ php/README.md | 84 ++++++++++++++++++++++---------------------- postgres/README.md | 24 ++++++------- 3 files changed, 62 insertions(+), 56 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 362ff58735d4..9ea7ed9db00f 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -312,6 +312,16 @@ The default `DISABLE_SUDO` value is **empty** and can be defined this way: $ docker run -d --name C8O -e DISABLE_SUDO=true -p 28080:28080 convertigo ``` +## `ENABLE_JDWP_DEBUG` Environment variable + +Convertigo operates using the JVM (Java Virtual Machine). To enable remote debugging of the JVM, it's necessary to start it with specific options. By default, this configuration is not enabled. However, if you wish to automatically activate remote debugging over the JDWP port 8000, set the `ENABLE_JDWP_DEBUG` value to **true**. + +The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way: + +```console +$ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 convertigo +``` + ## Pre configurated Docker compose stack You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. diff --git a/php/README.md b/php/README.md index 4cec24f1ee5d..cbbc4fd0819d 100644 --- a/php/README.md +++ b/php/README.md @@ -25,89 +25,89 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.3-rc/bookworm/apache/Dockerfile) - [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/fpm/Dockerfile) - [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/zts/Dockerfile) - [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/cli/Dockerfile) - [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/apache/Dockerfile) - [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/fpm/Dockerfile) - [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.17`, `8.3-rc-cli-alpine3.17`, `8.3.1RC3-alpine3.17`, `8.3-rc-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.17`, `8.3-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.17`, `8.3-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/alpine3.17/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.1RC3-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/cli/Dockerfile) -- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/apache/Dockerfile) +- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.3/bookworm/apache/Dockerfile) - [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/fpm/Dockerfile) - [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/zts/Dockerfile) - [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/cli/Dockerfile) - [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/apache/Dockerfile) - [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/fpm/Dockerfile) - [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/zts/Dockerfile) -- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.18/zts/Dockerfile) -- [`8.3.0-cli-alpine3.17`, `8.3-cli-alpine3.17`, `8-cli-alpine3.17`, `cli-alpine3.17`, `8.3.0-alpine3.17`, `8.3-alpine3.17`, `8-alpine3.17`, `alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.17`, `8.3-fpm-alpine3.17`, `8-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.17`, `8.3-zts-alpine3.17`, `8-zts-alpine3.17`, `zts-alpine3.17`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/alpine3.17/zts/Dockerfile) +- [`8.3.0-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.0-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/zts/Dockerfile) - [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.2-rc/bookworm/apache/Dockerfile) - [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/fpm/Dockerfile) - [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/zts/Dockerfile) - [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/cli/Dockerfile) - [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/apache/Dockerfile) - [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/fpm/Dockerfile) - [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.17`, `8.2-rc-cli-alpine3.17`, `8.2.14RC1-alpine3.17`, `8.2-rc-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.17`, `8.2-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.17`, `8.2-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/alpine3.17/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.14RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/cli/Dockerfile) -- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/apache/Dockerfile) +- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.2/bookworm/apache/Dockerfile) - [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/fpm/Dockerfile) - [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/zts/Dockerfile) - [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/cli/Dockerfile) - [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/apache/Dockerfile) - [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/fpm/Dockerfile) - [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/zts/Dockerfile) -- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.18/zts/Dockerfile) -- [`8.2.13-cli-alpine3.17`, `8.2-cli-alpine3.17`, `8.2.13-alpine3.17`, `8.2-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.17`, `8.2-fpm-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.17`, `8.2-zts-alpine3.17`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/alpine3.17/zts/Dockerfile) +- [`8.2.13-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.13-alpine3.19`, `8.2-alpine3.19`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.1-rc/bookworm/apache/Dockerfile) - [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/fpm/Dockerfile) - [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/zts/Dockerfile) - [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/cli/Dockerfile) - [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/apache/Dockerfile) - [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/fpm/Dockerfile) - [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.17`, `8.1-rc-cli-alpine3.17`, `8.1.27RC1-alpine3.17`, `8.1-rc-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.17`, `8.1-rc-fpm-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.17`, `8.1-rc-zts-alpine3.17`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/alpine3.17/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.19`, `8.1-rc-cli-alpine3.19`, `8.1.27RC1-alpine3.19`, `8.1-rc-alpine3.19`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.19`, `8.1-rc-fpm-alpine3.19`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/zts/Dockerfile) - [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/cli/Dockerfile) -- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/apache/Dockerfile) +- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.1/bookworm/apache/Dockerfile) - [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/fpm/Dockerfile) - [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/zts/Dockerfile) - [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/cli/Dockerfile) - [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/apache/Dockerfile) - [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/fpm/Dockerfile) - [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/zts/Dockerfile) -- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.18/zts/Dockerfile) -- [`8.1.26-cli-alpine3.17`, `8.1-cli-alpine3.17`, `8.1.26-alpine3.17`, `8.1-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.17`, `8.1-fpm-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.17`, `8.1-zts-alpine3.17`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/alpine3.17/zts/Dockerfile) +- [`8.1.26-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.26-alpine3.19`, `8.1-alpine3.19`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index d85129731605..1f923780703a 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -26,28 +26,24 @@ WARNING: - [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bookworm/Dockerfile) - [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bullseye/Dockerfile) -- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/16/alpine3.19/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/16/alpine3.18/Dockerfile) +- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/16/alpine3.19/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/16/alpine3.18/Dockerfile) - [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bookworm/Dockerfile) - [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bullseye/Dockerfile) -- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/15/alpine3.19/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/15/alpine3.18/Dockerfile) +- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/15/alpine3.19/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/15/alpine3.18/Dockerfile) - [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bookworm/Dockerfile) - [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bullseye/Dockerfile) -- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/14/alpine3.19/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/14/alpine3.18/Dockerfile) +- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/14/alpine3.19/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/14/alpine3.18/Dockerfile) - [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bookworm/Dockerfile) - [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bullseye/Dockerfile) -- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/13/alpine3.19/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/13/alpine3.18/Dockerfile) +- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/13/alpine3.19/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/13/alpine3.18/Dockerfile) - [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bookworm/Dockerfile) - [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bullseye/Dockerfile) -- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/12/alpine3.19/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/12/alpine3.18/Dockerfile) -- [`11.22-bookworm`, `11-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/11/bookworm/Dockerfile) -- [`11.22-bullseye`, `11-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/11/bullseye/Dockerfile) -- [`11.22-alpine3.19`, `11-alpine3.19`, `11.22-alpine`, `11-alpine`](https://github.com/docker-library/postgres/blob/25f6ba56f915bb41b2e2def0ed3acc5ae5439f44/11/alpine3.19/Dockerfile) -- [`11.22-alpine3.18`, `11-alpine3.18`](https://github.com/docker-library/postgres/blob/2468c9d91a2ef4055411e09c42cd054732ebf579/11/alpine3.18/Dockerfile) +- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/12/alpine3.19/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/12/alpine3.18/Dockerfile) # Quick reference (cont.) From 44d2bd6558be88f2410f78555ae921a888134637 Mon Sep 17 00:00:00 2001 From: Daniel Orbach <49489492+danielorbach@users.noreply.github.com> Date: Wed, 13 Dec 2023 00:46:27 +0200 Subject: [PATCH 0792/2686] Update golang/content.md to hint about git-lfs (#2389) * Update golang/content.md to explain how to install git-lfs The Go toolchain uses the local git installation to fetch archives of modules from Git servers directly. My company commits large files using Git LFS which happen to be part of our Go module source tree. Without _git-lfs_ installed, the local git installation does not automatically resolve those files which causes "_checksum mismatch_" against the committed `go.sum`. Accept the more succinct version suggested in the pull-request. --- golang/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/golang/content.md b/golang/content.md index 5cf342d28bad..5657ddd9684d 100644 --- a/golang/content.md +++ b/golang/content.md @@ -69,3 +69,7 @@ $ for GOOS in darwin linux; do > done > done ``` + +## Git LFS + +If downloading your dependencies results in an error like "checksum mismatch", you should check whether they are using [Git LFS](https://git-lfs.com/) (and thus need it installed for downloading them and calculating correct `go.sum` values). From 667d4535bac6e4129c112d5dd443167ef9e843fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Dec 2023 15:09:44 -0800 Subject: [PATCH 0793/2686] Run update.sh --- bash/README.md | 2 +- golang/README.md | 4 +++ nextcloud/README.md | 15 ++++---- tomcat/README.md | 88 ++++++++++++++++++++++----------------------- 4 files changed, 58 insertions(+), 51 deletions(-) diff --git a/bash/README.md b/bash/README.md index 73bb92bdcdd8..b0b9ceebeb73 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231204`, `devel`, `devel-20231204-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/7ed2ca9f4f968776f7e6841fd099448d62d32df3/devel/Dockerfile) +- [`devel-20231205`, `devel`, `devel-20231205-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/a714b7fc49005f5a8235f125b190d0b15667faf1/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 0a9193fed1ff..74a2c693ab61 100644 --- a/golang/README.md +++ b/golang/README.md @@ -159,6 +159,10 @@ $ for GOOS in darwin linux; do > done ``` +## Git LFS + +If downloading your dependencies results in an error like "checksum mismatch", you should check whether they are using [Git LFS](https://git-lfs.com/) (and thus need it installed for downloading them and calculating correct `go.sum` values). + # Image Variants The `golang` images come in many flavors, each designed for a specific use case. diff --git a/nextcloud/README.md b/nextcloud/README.md index fe72aabd34b5..56f2c2eed439 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,12 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.9-apache`, `26.0-apache`, `26-apache`, `26.0.9`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/apache/Dockerfile) -- [`26.0.9-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/fpm/Dockerfile) -- [`26.0.9-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/26/fpm-alpine/Dockerfile) -- [`27.1.4-apache`, `27.1-apache`, `27-apache`, `apache`, `27.1.4`, `27.1`, `27`, `latest`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/apache/Dockerfile) -- [`27.1.4-fpm`, `27.1-fpm`, `27-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/fpm/Dockerfile) -- [`27.1.4-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/44e01e1eab2160bce02686797a51f81a3a021551/27/fpm-alpine/Dockerfile) +- [`26.0.9-apache`, `26.0-apache`, `26-apache`, `26.0.9`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/apache/Dockerfile) +- [`26.0.9-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/fpm/Dockerfile) +- [`26.0.9-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/fpm-alpine/Dockerfile) +- [`27.1.4-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.4`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/apache/Dockerfile) +- [`27.1.4-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/fpm/Dockerfile) +- [`27.1.4-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/fpm-alpine/Dockerfile) +- [`28.0.0-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.0`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/apache/Dockerfile) +- [`28.0.0-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm/Dockerfile) +- [`28.0.0-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index f0dc11b04568..a4bf359010bc 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,50 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M14-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M14-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M14-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M14`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/07bfc6a63637a73fe9f15fe8f69d22629305e9ab/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M14-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M14-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M14-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/07bfc6a63637a73fe9f15fe8f69d22629305e9ab/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.16-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.16-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.16-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.16`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.16-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.16-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.16-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.16-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.16-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.16-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.16-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.16-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.16-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.16-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.16-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.16-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.16-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.16-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.16-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/a660cb89eebedecb9e40aa1fca003b5f42ef7462/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.83-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.83-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.83-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.83`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.83-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.83-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.83-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.83-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.83-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.83-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.83-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.83-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.83-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.83-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.83-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.83-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.83-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.83-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.83-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.83-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.83-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.83-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.83-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.83-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.83-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.83-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.83-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.83-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.83-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.83-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.83-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.83-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.83-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.83-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.83-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.83-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.83-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.83-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.83-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/10b7fac0da8220b0ecd528c55f0f0fb229d92880/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.96-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.96-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.96-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.96`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.96-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.96-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.96-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.96-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.96-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.96-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.96-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.96-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.96-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.96-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.96-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.96-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.96-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.96-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.96-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.96-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.96-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.96-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.96-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.96-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.96-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.96-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.96-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.96-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.96-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.96-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.96-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.96-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.96-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.96-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.96-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.96-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.96-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.96-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.96-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c3f44cacfe98b75aae3c0447b76339dc7232b33/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M15-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M15-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M15-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M15`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/58e99f96eccca5d0c1135a21b85d4c70595f2a61/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M15-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M15-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M15-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/58e99f96eccca5d0c1135a21b85d4c70595f2a61/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.17-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.17-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.17-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.17`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.17-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.17-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.17-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.17-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.17-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.17-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.17-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.17-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.17-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.17-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.17-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.17-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.17-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.17-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.17-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.84-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.84-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.84-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.84`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.84-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.84-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.84-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.84-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.84-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.84-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.84-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.84-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.84-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.84-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.84-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.84-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.84-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.84-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.84-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.84-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.84-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.84-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.84-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.84-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.84-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.84-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.84-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.84-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.84-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.84-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.84-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.84-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.84-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.84-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.84-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.84-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.84-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.84-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.84-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.97-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.97-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.97-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.97`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.97-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.97-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.97-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.97-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.97-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.97-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.97-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.97-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.97-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.97-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.97-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.97-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.97-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.97-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.97-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.97-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.97-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.97-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.97-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.97-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.97-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.97-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.97-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.97-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.97-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.97-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.97-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.97-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.97-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.97-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.97-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.97-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.97-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.97-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.97-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 5ea0a8dbd6c3ed282b715e80f53027044cfe2123 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Dec 2023 16:09:35 -0800 Subject: [PATCH 0794/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7d9fe5777352..445743a60c86 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.1-cli-alpine3.18`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/cli/Dockerfile) -- [`25.0.0-beta.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.1-dind-alpine3.18`, `25.0.0-beta.1`, `25-rc`, `rc`, `25.0.0-beta.1-alpine3.18`](https://github.com/docker-library/docker/blob/5c2833e7ce9e5af0921154416d59ee13c6185cbf/25-rc/dind/Dockerfile) -- [`25.0.0-beta.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-beta.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-beta.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/cli/Dockerfile) +- [`25.0.0-beta.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/cli/Dockerfile) +- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.18`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.18`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind/Dockerfile) +- [`25.0.0-beta.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-beta.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-beta.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-beta.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/99073a3b6be3aa7e6b5af1e69509e8c532254500/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.0-beta.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-beta.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-beta.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/01cebba606d33d2eeb9e3dcf52e4bf218913e211/25-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.0-beta.2-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6d541d27b5dd12639e5a33a675ebca04d3837d74/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 4b3ce6b4cad434e1fcade90199d5081e23ad69b6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Dec 2023 09:18:12 -0800 Subject: [PATCH 0795/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 64eb9dcb7e08..b7b82bffeec5 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.0`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a725371cf02bc0c89c2c3671e81d2c0faf68064f/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.1`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From 1aed6a7618e418dba2ca66eff9261ed4f8871ef7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Dec 2023 10:11:00 -0800 Subject: [PATCH 0796/2686] Run update.sh --- open-liberty/README.md | 48 ++++++++++++++++--------------------- telegraf/README.md | 12 +++++----- websphere-liberty/README.md | 42 ++++++++++++++------------------ 3 files changed, 45 insertions(+), 57 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index ce67d2c40a85..2e97da9bc794 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.11-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.11-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.11-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.11-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.11-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.11-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.11/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/c1f41e7b714db1e754819ceb1554c0f2b699bd29/releases/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 58d4715bc7e8..84c9c4df1c5d 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7bd07a9d6f0120089c90848d0203e8f6b097905b/telegraf/1.29/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 456b6d9331c0..e8820001b91c 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.11-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.11-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.11-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.11-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.11-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.11-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.11/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2c3df836888eae2173798f31d0fb492f89f8999e/ga/23.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 9db9b22298186ee890cf852e52f40809e1d33bb4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Dec 2023 12:18:06 -0800 Subject: [PATCH 0797/2686] Run update.sh --- hylang/README.md | 70 ++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index aa5ade08feae..982d3f52a186 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.27.0-python3.12-bookworm`, `0.27-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.27.0-python3.12-bullseye`, `0.27-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.27.0-python3.12-alpine3.18`, `0.27-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`, `0.27.0-python3.12-alpine`, `0.27-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) -- [`0.27.0-python3.12-alpine3.17`, `0.27-python3.12-alpine3.17`, `0-python3.12-alpine3.17`, `python3.12-alpine3.17`, `0.27.0-alpine3.17`, `0.27-alpine3.17`, `0-alpine3.17`, `alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-alpine3.17) -- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.27.0-python3.11-alpine3.17`, `0.27-python3.11-alpine3.17`, `0-python3.11-alpine3.17`, `python3.11-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-alpine3.17) -- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.27.0-python3.10-alpine3.17`, `0.27-python3.10-alpine3.17`, `0-python3.10-alpine3.17`, `python3.10-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-alpine3.17) -- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.27.0-python3.9-alpine3.17`, `0.27-python3.9-alpine3.17`, `0-python3.9-alpine3.17`, `python3.9-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-alpine3.17) -- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.27.0-python3.8-alpine3.17`, `0.27-python3.8-alpine3.17`, `0-python3.8-alpine3.17`, `python3.8-alpine3.17`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-alpine3.17) -- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.27.0-python3.12-bookworm`, `0.27-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.27.0-python3.12-bullseye`, `0.27-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.27.0-python3.12-alpine3.19`, `0.27-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.27.0-alpine3.19`, `0.27-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.27.0-python3.12-alpine`, `0.27-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.27.0-python3.12-alpine3.18`, `0.27-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) +- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.27.0-python3.11-alpine3.19`, `0.27-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.27.0-python3.10-alpine3.19`, `0.27-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.27.0-python3.9-alpine3.19`, `0.27-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.27.0-python3.8-alpine3.19`, `0.27-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags - `0.27.0-python3.12`, `0.27-python3.12`, `0-python3.12`, `python3.12`, `0.27.0`, `0.27`, `0`, `latest`: - - [`0.27.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.27.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `0.27.0-python3.11`, `0.27-python3.11`, `0-python3.11`, `python3.11`: - - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.27.0-python3.10`, `0.27-python3.10`, `0-python3.10`, `python3.10`: - - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.27.0-python3.9`, `0.27-python3.9`, `0-python3.9`, `python3.9`: - - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.27.0-python3.8`, `0.27-python3.8`, `0-python3.8`, `python3.8`: - - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.27.0-pypy3.10`, `0.27-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.27.0-pypy`, `0.27-pypy`, `0-pypy`, `pypy`: - - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - `0.27.0-pypy3.9`, `0.27-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7b900c57b77653b284292f1b1c0fcdd2e42ef57a/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) From 09d36ce2b087af4dc1f1127de1f42f256af11bb3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Dec 2023 15:18:15 -0800 Subject: [PATCH 0798/2686] Run update.sh --- haproxy/README.md | 22 +++++++++++----------- rabbitmq/README.md | 12 ++++++------ rethinkdb/README.md | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index fa8772f34778..0bfd7f8dd3c3 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bullseye`, `3.0-dev-bullseye`](https://github.com/docker-library/haproxy/blob/e3fc1f8a671d2362e20ce2895fe284bef3934926/3.0/Dockerfile) +- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/3.0/Dockerfile) - [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/3.0/alpine/Dockerfile) -- [`2.9.0`, `2.9`, `latest`, `2.9.0-bullseye`, `2.9-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/a2cdec0b128a2c128a6e81c93b67ec502b2131f3/2.9/Dockerfile) +- [`2.9.0`, `2.9`, `latest`, `2.9.0-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.9/Dockerfile) - [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.9/alpine/Dockerfile) -- [`2.8.5`, `2.8`, `lts`, `2.8.5-bullseye`, `2.8-bullseye`, `lts-bullseye`](https://github.com/docker-library/haproxy/blob/a287ce7a211b83adb90b1b3bd97d534c0520be8a/2.8/Dockerfile) +- [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.8/alpine/Dockerfile) -- [`2.7.11`, `2.7`, `2.7.11-bullseye`, `2.7-bullseye`](https://github.com/docker-library/haproxy/blob/68e4a3bbf0ff9acbdba492321b63c2bfdf9f9e22/2.7/Dockerfile) +- [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.7/Dockerfile) - [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.7/alpine/Dockerfile) -- [`2.6.15`, `2.6`, `2.6.15-bullseye`, `2.6-bullseye`](https://github.com/docker-library/haproxy/blob/fc50ce81390257a9702f3ea74237a73c658a1789/2.6/Dockerfile) -- [`2.6.15-alpine`, `2.6-alpine`, `2.6.15-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.6/alpine/Dockerfile) -- [`2.4.24`, `2.4`, `2.4.24-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/4c041fe042121e9f30046440f12cf0d2747a5061/2.4/Dockerfile) +- [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/Dockerfile) +- [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/alpine/Dockerfile) +- [`2.4.24`, `2.4`, `2.4.24-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.4/Dockerfile) - [`2.4.24-alpine`, `2.4-alpine`, `2.4.24-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.4/alpine/Dockerfile) -- [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/ad34487167b0bb727cb56000f26d8ea37449c590/2.2/Dockerfile) -- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.19`, `2.2-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.2/alpine/Dockerfile) -- [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/Dockerfile) +- [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/Dockerfile) +- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/alpine/Dockerfile) +- [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.0/Dockerfile) - [`2.0.33-alpine`, `2.0-alpine`, `2.0.33-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/alpine/Dockerfile) # Quick reference (cont.) @@ -131,7 +131,7 @@ The `haproxy` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haproxy:-alpine` diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 69594a75f2a1..70bdc9cf596c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/4fcdb55f5e7b8953fa265ade0452a2313129926e/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/2a94ce3f0fe97b7c56e6bc985e97059c72910903/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2a94ce3f0fe97b7c56e6bc985e97059c72910903/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/ubuntu/Dockerfile) - [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.12/alpine/Dockerfile) - [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.26`, `3.11`](https://github.com/docker-library/rabbitmq/blob/2740bd4780a9e5f6abc22f9ebddc399e021b7a28/3.11/ubuntu/Dockerfile) -- [`3.11.26-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.26-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.11/alpine/Dockerfile) -- [`3.11.26-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.11.27`, `3.11`](https://github.com/docker-library/rabbitmq/blob/c759a936021d9abf72c78573798703a56cd35504/3.11/ubuntu/Dockerfile) +- [`3.11.27-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.27-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/c759a936021d9abf72c78573798703a56cd35504/3.11/alpine/Dockerfile) +- [`3.11.27-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.10/alpine/Dockerfile) diff --git a/rethinkdb/README.md b/rethinkdb/README.md index 2d29d0df430b..34c9a8d353ed 100644 --- a/rethinkdb/README.md +++ b/rethinkdb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.3-bookworm-slim`, `2.4-bookworm-slim`, `2-bookworm-slim`, `bookworm-slim`, `2.4.3`, `2.4`, `2`, `latest`](https://github.com/rethinkdb/rethinkdb-dockerfiles/blob/f5d6158f85c1fd7082814063e0a9cf5665dfcddc/bookworm/2.4.3/Dockerfile) +- [`2.4.4-bookworm-slim`, `2.4-bookworm-slim`, `2-bookworm-slim`, `bookworm-slim`, `2.4.3`, `2.4`, `2`, `latest`](https://github.com/rethinkdb/rethinkdb-dockerfiles/blob/48876a66c3be922c6b01c436bf78d662e53bceef/bookworm/2.4.4/Dockerfile) # Quick reference (cont.) From 9b9f12f6f482b61dda12af410660e8e685cf0439 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Dec 2023 10:09:32 -0800 Subject: [PATCH 0799/2686] Run update.sh --- elasticsearch/README.md | 5 +++-- erlang/README.md | 6 +++--- kibana/README.md | 5 +++-- logstash/README.md | 5 +++-- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 4ad53773e65a..557826705ca2 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/elasticsearch/Dockerfile) -- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/elasticsearch/Dockerfile) +- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/elasticsearch/Dockerfile) +- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/elasticsearch/Dockerfile) +- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 71083f41e754..f27ed37ee905 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.1.2.0`, `26.1.2`, `26.1`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/Dockerfile) -- [`26.1.2.0-slim`, `26.1.2-slim`, `26.1-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/slim/Dockerfile) -- [`26.1.2.0-alpine`, `26.1.2-alpine`, `26.1-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/0396950a0c86ad20de42e2033fc68d68587b8e51/26/alpine/Dockerfile) +- [`26.2.0.0`, `26.2.0`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/Dockerfile) +- [`26.2.0.0-slim`, `26.2.0-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/slim/Dockerfile) +- [`26.2.0.0-alpine`, `26.2.0-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/alpine/Dockerfile) - [`25.3.2.6`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/Dockerfile) - [`25.3.2.6-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/slim/Dockerfile) - [`25.3.2.6-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/alpine/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 1da03c9c7d5a..c33c30915e78 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/kibana/Dockerfile) -- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/kibana/Dockerfile) +- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/kibana/Dockerfile) +- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/kibana/Dockerfile) +- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 283311957ad2..e5b44e12a7dd 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1`](https://github.com/elastic/dockerfiles/blob/0dbf0d4297a2bf48d0cd980935431c121396885d/logstash/Dockerfile) -- [`7.17.15`](https://github.com/elastic/dockerfiles/blob/63269da8548948c20f3e1650cebbed1ae5eee90e/logstash/Dockerfile) +- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/logstash/Dockerfile) +- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/logstash/Dockerfile) +- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/logstash/Dockerfile) # Quick reference (cont.) From 6d96ad5522567bef3352284e316d333d4d18f84c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Dec 2023 11:21:33 -0800 Subject: [PATCH 0800/2686] Run update.sh --- lightstreamer/README.md | 6 +++--- mysql/README.md | 8 ++++---- neo4j/README.md | 2 ++ postgres/README.md | 40 ++++++++++++++++++++-------------------- 4 files changed, 29 insertions(+), 27 deletions(-) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index fbd8d3001fb6..25e54ed48406 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -35,9 +35,9 @@ WARNING: - [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk8/Dockerfile) - [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk11/Dockerfile) - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) -- [`7.4.0-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.0-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk8/Dockerfile) -- [`7.4.0-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.0-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk11/Dockerfile) -- [`7.4.0-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.0-jdk17`, `7.4-jdk17`, `7-jdk17`, `7.4.0`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.4/jdk17/Dockerfile) +- [`7.4.1-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.1-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk8/Dockerfile) +- [`7.4.1-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.1-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk11/Dockerfile) +- [`7.4.1-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.1-jdk17`, `7.4-jdk17`, `7-jdk17`, `7.4.1`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk17/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 292356662029..052e6ba920aa 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/76806cdd0acee2dec39b1b66e9c8015ef75be196/innovation/Dockerfile.oracle) -- [`8.0.35`, `8.0`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/84ba05eaa75e1f0e1d33185e23f95a9cdc607b51/8.0/Dockerfile.oracle) -- [`8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/84ba05eaa75e1f0e1d33185e23f95a9cdc607b51/8.0/Dockerfile.debian) -- [`5.7.44`, `5.7`, `5`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/9678ed1d27794ae9529c43b4411e30f981ce39ea/5.7/Dockerfile.oracle) +- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/innovation/Dockerfile.oracle) +- [`8.0.35`, `8.0`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/8.0/Dockerfile.oracle) +- [`8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/dc35beded3a41c4c62dfaa7f86ea5721c02a2e8b/8.0/Dockerfile.debian) +- [`5.7.44`, `5.7`, `5`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/5.7/Dockerfile.oracle) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 216bc4768619..add07494b7df 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,6 +30,8 @@ WARNING: - [`5.14.0-enterprise-ubi8`, `5.14-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/ubi8/enterprise/Dockerfile) - [`4.4.28`, `4.4.28-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/community/Dockerfile) - [`4.4.28-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/enterprise/Dockerfile) +- [`4.3.24`, `4.3.24-community`, `4.3`, `4.3-community`](https://github.com/neo4j/docker-neo4j-publish/blob/f84645770acc041f8057245c540dba622e0da5f8/4.3.24/bullseye/community/Dockerfile) +- [`4.3.24-enterprise`, `4.3-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f84645770acc041f8057245c540dba622e0da5f8/4.3.24/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 1f923780703a..ed7683f916e0 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bookworm/Dockerfile) -- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/16/bullseye/Dockerfile) -- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/16/alpine3.19/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/16/alpine3.18/Dockerfile) -- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bookworm/Dockerfile) -- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/15/bullseye/Dockerfile) -- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/15/alpine3.19/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/15/alpine3.18/Dockerfile) -- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bookworm/Dockerfile) -- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/14/bullseye/Dockerfile) -- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/14/alpine3.19/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/14/alpine3.18/Dockerfile) -- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bookworm/Dockerfile) -- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/13/bullseye/Dockerfile) -- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/13/alpine3.19/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/13/alpine3.18/Dockerfile) -- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bookworm/Dockerfile) -- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/a42b68455866552c2ad2fc9a8e18d46b50712139/12/bullseye/Dockerfile) -- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/12/alpine3.19/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/1d4651c6c9ee4caf314a62a41111e7c65710f77e/12/alpine3.18/Dockerfile) +- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/16/bookworm/Dockerfile) +- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/16/bullseye/Dockerfile) +- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/16/alpine3.19/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/16/alpine3.18/Dockerfile) +- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/15/bookworm/Dockerfile) +- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/15/bullseye/Dockerfile) +- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/15/alpine3.19/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/15/alpine3.18/Dockerfile) +- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/14/bookworm/Dockerfile) +- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/14/bullseye/Dockerfile) +- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/14/alpine3.19/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/14/alpine3.18/Dockerfile) +- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/13/bookworm/Dockerfile) +- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/13/bullseye/Dockerfile) +- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/13/alpine3.19/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/13/alpine3.18/Dockerfile) +- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/12/bookworm/Dockerfile) +- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/12/bullseye/Dockerfile) +- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/12/alpine3.19/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/12/alpine3.18/Dockerfile) # Quick reference (cont.) From 9c6c202145ff7d1f6c5b644e0b2d2e5a3c5572c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Dec 2023 12:18:15 -0800 Subject: [PATCH 0801/2686] Run update.sh --- docker/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/README.md b/docker/README.md index 445743a60c86..24046e0a2e5d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.2-cli-alpine3.18`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/cli/Dockerfile) -- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.18`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.18`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind/Dockerfile) +- [`25.0.0-beta.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/25-rc/cli/Dockerfile) +- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.19`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.19`](https://github.com/docker-library/docker/blob/4c2674df4f40c965cdb8ccc77b8ce9dbc247a6c9/25-rc/dind/Dockerfile) - [`25.0.0-beta.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind-rootless/Dockerfile) - [`25.0.0-beta.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) - [`25.0.0-beta.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.0-beta.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.18`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.18`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.18`](https://github.com/docker-library/docker/blob/99073a3b6be3aa7e6b5af1e69509e8c532254500/24/dind/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/24/cli/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/4c2674df4f40c965cdb8ccc77b8ce9dbc247a6c9/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) From 3d28a5ebb36f751b12cbed6f1f3ec5a99a814f89 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Dec 2023 15:18:25 -0800 Subject: [PATCH 0802/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 051f208156fd..24abf47a35ef 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/9-slim/Dockerfile) -- [`8.8`, `8`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dbeac8db277aba1b552869dc5fce682220c8a5e1/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7-slim-fips/Dockerfile) # Quick reference (cont.) From 8978e17aead48d9e726329b87c757b432b521837 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 11:20:51 -0800 Subject: [PATCH 0803/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index ce30a98cf68e..9f0e4d7cc832 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/930f56df4052d0d7af0ccd5f2ca6b6096a8003fe/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/15.0/Dockerfile) # Quick reference (cont.) From 45cf84176aac5ab25951e41943d7100de47a3c29 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 12:09:37 -0800 Subject: [PATCH 0804/2686] Run update.sh --- amazonlinux/README.md | 6 +++--- docker/README.md | 4 ++-- neo4j/README.md | 10 ++++------ 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 5d57ef920a7b..4425f47b6256 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.2.20231113.0`](https://github.com/amazonlinux/container-images/blob/bb26f34bf58219b9c2833ddfc550edf24dc5d2b1/Dockerfile) -- [`2`, `2.0.20231116.0`](https://github.com/amazonlinux/container-images/blob/e513900321398ab144fa1c8c422035e04d5f22d4/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20231106.0`](https://github.com/amazonlinux/container-images/blob/4e00ac2c097d0ed30dbcd4e7a9cce4d3dee18a9b/Dockerfile) +- [`2023`, `latest`, `2023.3.20231211.4`](https://github.com/amazonlinux/container-images/blob/5d43cabd0e15c15ab51395153458ebe099466da8/Dockerfile) +- [`2`, `2.0.20231206.0`](https://github.com/amazonlinux/container-images/blob/a10480da4e07a2ec233ecc200f621d240fcc47e2/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231206.1`](https://github.com/amazonlinux/container-images/blob/f185bfc0b26db5b22fbf77d56e1330e47fecf6b7/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 24046e0a2e5d..2ccfc32fb6a4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,13 +29,13 @@ WARNING: ## Simple Tags - [`25.0.0-beta.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/25-rc/cli/Dockerfile) -- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.19`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.19`](https://github.com/docker-library/docker/blob/4c2674df4f40c965cdb8ccc77b8ce9dbc247a6c9/25-rc/dind/Dockerfile) +- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.19`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/25-rc/dind/Dockerfile) - [`25.0.0-beta.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind-rootless/Dockerfile) - [`25.0.0-beta.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) - [`25.0.0-beta.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.0-beta.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) - [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/4c2674df4f40c965cdb8ccc77b8ce9dbc247a6c9/24/dind/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index add07494b7df..c4b439ffa9f0 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,14 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.14.0-community-bullseye`, `5.14-community-bullseye`, `5-community-bullseye`, `5.14.0-community`, `5.14-community`, `5-community`, `5.14.0-bullseye`, `5.14-bullseye`, `5-bullseye`, `5.14.0`, `5.14`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/bullseye/community/Dockerfile) -- [`5.14.0-enterprise-bullseye`, `5.14-enterprise-bullseye`, `5-enterprise-bullseye`, `5.14.0-enterprise`, `5.14-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/bullseye/enterprise/Dockerfile) -- [`5.14.0-community-ubi8`, `5.14-community-ubi8`, `5-community-ubi8`, `5.14.0-ubi8`, `5.14-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/ubi8/community/Dockerfile) -- [`5.14.0-enterprise-ubi8`, `5.14-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/5.14.0/ubi8/enterprise/Dockerfile) +- [`5.15.0-community-bullseye`, `5.15-community-bullseye`, `5-community-bullseye`, `5.15.0-community`, `5.15-community`, `5-community`, `5.15.0-bullseye`, `5.15-bullseye`, `5-bullseye`, `5.15.0`, `5.15`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/bullseye/community/Dockerfile) +- [`5.15.0-enterprise-bullseye`, `5.15-enterprise-bullseye`, `5-enterprise-bullseye`, `5.15.0-enterprise`, `5.15-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/bullseye/enterprise/Dockerfile) +- [`5.15.0-community-ubi8`, `5.15-community-ubi8`, `5-community-ubi8`, `5.15.0-ubi8`, `5.15-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/community/Dockerfile) +- [`5.15.0-enterprise-ubi8`, `5.15-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/enterprise/Dockerfile) - [`4.4.28`, `4.4.28-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/community/Dockerfile) - [`4.4.28-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/enterprise/Dockerfile) -- [`4.3.24`, `4.3.24-community`, `4.3`, `4.3-community`](https://github.com/neo4j/docker-neo4j-publish/blob/f84645770acc041f8057245c540dba622e0da5f8/4.3.24/bullseye/community/Dockerfile) -- [`4.3.24-enterprise`, `4.3-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f84645770acc041f8057245c540dba622e0da5f8/4.3.24/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 905171dc239d7c3667c4e17a67aaaea42fe8cb6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 13:10:00 -0800 Subject: [PATCH 0805/2686] Run update.sh --- drupal/README.md | 32 ++++++++++++++++---------------- ghost/README.md | 4 ++-- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 23c0dd8dddfa..e0409496f5a6 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -28,50 +28,50 @@ WARNING: - [`10.2.0-rc1-php8.3-fpm-bookworm`, `10.2-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `10.2.0-rc1-php8.3-fpm`, `10.2-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bookworm/Dockerfile) - [`10.2.0-rc1-php8.3-apache-bullseye`, `10.2-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/apache-bullseye/Dockerfile) - [`10.2.0-rc1-php8.3-fpm-bullseye`, `10.2-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-alpine3.18`, `10.2-rc-php8.3-fpm-alpine3.18`, `rc-php8.3-fpm-alpine3.18`, `10.2.0-rc1-php8.3-fpm-alpine`, `10.2-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-alpine3.17`, `10.2-rc-php8.3-fpm-alpine3.17`, `rc-php8.3-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.17/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-alpine3.19`, `10.2-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`, `10.2.0-rc1-php8.3-fpm-alpine`, `10.2-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.2-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.0-rc1-php8.3-fpm-alpine3.18`, `10.2-rc-php8.3-fpm-alpine3.18`, `rc-php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.18/Dockerfile) - [`10.2.0-rc1-php8.2-apache-bookworm`, `10.2-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `10.2.0-rc1-php8.2-apache`, `10.2-rc-php8.2-apache`, `rc-php8.2-apache`, `10.2.0-rc1-php8.2`, `10.2-rc-php8.2`, `rc-php8.2`, `10.2.0-rc1-apache-bookworm`, `10.2-rc-apache-bookworm`, `rc-apache-bookworm`, `10.2.0-rc1-apache`, `10.2-rc-apache`, `rc-apache`, `10.2.0-rc1`, `10.2-rc`, `rc`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bookworm/Dockerfile) - [`10.2.0-rc1-php8.2-fpm-bookworm`, `10.2-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `10.2.0-rc1-php8.2-fpm`, `10.2-rc-php8.2-fpm`, `rc-php8.2-fpm`, `10.2.0-rc1-fpm-bookworm`, `10.2-rc-fpm-bookworm`, `rc-fpm-bookworm`, `10.2.0-rc1-fpm`, `10.2-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bookworm/Dockerfile) - [`10.2.0-rc1-php8.2-apache-bullseye`, `10.2-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `10.2.0-rc1-apache-bullseye`, `10.2-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bullseye/Dockerfile) - [`10.2.0-rc1-php8.2-fpm-bullseye`, `10.2-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `10.2.0-rc1-fpm-bullseye`, `10.2-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-alpine3.18`, `10.2-rc-php8.2-fpm-alpine3.18`, `rc-php8.2-fpm-alpine3.18`, `10.2.0-rc1-php8.2-fpm-alpine`, `10.2-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `10.2.0-rc1-fpm-alpine3.18`, `10.2-rc-fpm-alpine3.18`, `rc-fpm-alpine3.18`, `10.2.0-rc1-fpm-alpine`, `10.2-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-alpine3.17`, `10.2-rc-php8.2-fpm-alpine3.17`, `rc-php8.2-fpm-alpine3.17`, `10.2.0-rc1-fpm-alpine3.17`, `10.2-rc-fpm-alpine3.17`, `rc-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-alpine3.19`, `10.2-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `10.2.0-rc1-php8.2-fpm-alpine`, `10.2-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `10.2.0-rc1-fpm-alpine3.19`, `10.2-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`, `10.2.0-rc1-fpm-alpine`, `10.2-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.2-rc/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.0-rc1-php8.2-fpm-alpine3.18`, `10.2-rc-php8.2-fpm-alpine3.18`, `rc-php8.2-fpm-alpine3.18`, `10.2.0-rc1-fpm-alpine3.18`, `10.2-rc-fpm-alpine3.18`, `rc-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bullseye/Dockerfile) - [`10.1.7-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.7-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.17`, `10.1-php8.2-fpm-alpine3.17`, `10-php8.2-fpm-alpine3.17`, `php8.2-fpm-alpine3.17`, `10.1.7-fpm-alpine3.17`, `10.1-fpm-alpine3.17`, `10-fpm-alpine3.17`, `fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.1/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.7-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.7-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.7-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bookworm/Dockerfile) - [`10.1.7-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.7-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bookworm/Dockerfile) - [`10.1.7-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bullseye/Dockerfile) - [`10.1.7-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.17`, `10.1-php8.1-fpm-alpine3.17`, `10-php8.1-fpm-alpine3.17`, `php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10-php8.1-fpm-alpine3.19`, `php8.1-fpm-alpine3.19`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.1/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.18/Dockerfile) - [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bookworm/Dockerfile) - [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bookworm/Dockerfile) - [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bullseye/Dockerfile) - [`10.0.11-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.11-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.11-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.11-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.11-fpm-alpine3.18`, `10.0-fpm-alpine3.18`, `10.0.11-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.0.11-php8.2-fpm-alpine3.17`, `10.0-php8.2-fpm-alpine3.17`, `10.0.11-fpm-alpine3.17`, `10.0-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.17/Dockerfile) +- [`10.0.11-php8.2-fpm-alpine3.19`, `10.0-php8.2-fpm-alpine3.19`, `10.0.11-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.11-fpm-alpine3.19`, `10.0-fpm-alpine3.19`, `10.0.11-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.0/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.0.11-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.11-fpm-alpine3.18`, `10.0-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.18/Dockerfile) - [`10.0.11-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.11-php8.1-apache`, `10.0-php8.1-apache`, `10.0.11-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bookworm/Dockerfile) - [`10.0.11-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.11-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bookworm/Dockerfile) - [`10.0.11-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bullseye/Dockerfile) - [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.0.11-php8.1-fpm-alpine3.17`, `10.0-php8.1-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.17/Dockerfile) +- [`10.0.11-php8.1-fpm-alpine3.19`, `10.0-php8.1-fpm-alpine3.19`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.0/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) - [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bookworm/Dockerfile) - [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bookworm/Dockerfile) - [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bullseye/Dockerfile) - [`7.99-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.17`, `7-php8.2-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.17/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.18/Dockerfile) - [`7.99-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.99-php8.1-apache`, `7-php8.1-apache`, `7.99-php8.1`, `7-php8.1`, `7.99-apache-bookworm`, `7-apache-bookworm`, `7.99-apache`, `7-apache`, `7.99`, `7`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bookworm/Dockerfile) - [`7.99-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.99-php8.1-fpm`, `7-php8.1-fpm`, `7.99-fpm-bookworm`, `7-fpm-bookworm`, `7.99-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bookworm/Dockerfile) - [`7.99-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.99-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bullseye/Dockerfile) - [`7.99-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.99-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.17`, `7-php8.1-fpm-alpine3.17`, `7.99-fpm-alpine3.17`, `7-fpm-alpine3.17`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.17/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 72dea71d91d1..2da86d0ff1ae 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.75.1`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6165dced822dbdb27cba064220d1ef07168b4013/5/debian/Dockerfile) -- [`5.75.1-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6165dced822dbdb27cba064220d1ef07168b4013/5/alpine/Dockerfile) +- [`5.75.2`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/835436c2ad4d58e0c48c27db6d0b5bdc8f64a4ba/5/debian/Dockerfile) +- [`5.75.2-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/835436c2ad4d58e0c48c27db6d0b5bdc8f64a4ba/5/alpine/Dockerfile) # Quick reference (cont.) From 80fd1a152dd496b96c85c8aa0a7a4100dc736032 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 17:18:30 -0800 Subject: [PATCH 0806/2686] Run update.sh --- haproxy/README.md | 8 +-- mysql/README.md | 8 +-- nextcloud/README.md | 12 ++-- php/README.md | 168 ++++++++++++++++++++++---------------------- ubuntu/README.md | 6 +- 5 files changed, 101 insertions(+), 101 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 0bfd7f8dd3c3..85fd5a1e75b1 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,16 +26,16 @@ WARNING: - [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/3.0/Dockerfile) - [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/3.0/alpine/Dockerfile) -- [`2.9.0`, `2.9`, `latest`, `2.9.0-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.9/Dockerfile) -- [`2.9.0-alpine`, `2.9-alpine`, `alpine`, `2.9.0-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.9/alpine/Dockerfile) +- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7643b2d41ab7eb48e2ebfe2ce99ca453a125993c/2.9/Dockerfile) +- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/7643b2d41ab7eb48e2ebfe2ce99ca453a125993c/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.7/Dockerfile) - [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.7/alpine/Dockerfile) - [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/Dockerfile) - [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/alpine/Dockerfile) -- [`2.4.24`, `2.4`, `2.4.24-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.4/Dockerfile) -- [`2.4.24-alpine`, `2.4-alpine`, `2.4.24-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.4/alpine/Dockerfile) +- [`2.4.25`, `2.4`, `2.4.25-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/Dockerfile) +- [`2.4.25-alpine`, `2.4-alpine`, `2.4.25-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/alpine/Dockerfile) - [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/Dockerfile) - [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/alpine/Dockerfile) - [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.0/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 052e6ba920aa..9dd30b57fc14 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/innovation/Dockerfile.oracle) -- [`8.0.35`, `8.0`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/8.0/Dockerfile.oracle) -- [`8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/dc35beded3a41c4c62dfaa7f86ea5721c02a2e8b/8.0/Dockerfile.debian) -- [`5.7.44`, `5.7`, `5`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/5.7/Dockerfile.oracle) +- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oraclelinux8`, `8.2-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/innovation/Dockerfile.oracle) +- [`8.0.35`, `8.0`, `8.0.35-oraclelinux8`, `8.0-oraclelinux8`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/8.0/Dockerfile.oracle) +- [`8.0.35-bullseye`, `8.0-bullseye`, `8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/d035567ee66d525cbf95b8dbc0be20e2f0a5e3f5/8.0/Dockerfile.debian) +- [`5.7.44`, `5.7`, `5`, `5.7.44-oraclelinux7`, `5.7-oraclelinux7`, `5-oraclelinux7`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/5.7/Dockerfile.oracle) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 56f2c2eed439..c3ef3c3e2d1f 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,12 +28,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.9-apache`, `26.0-apache`, `26-apache`, `26.0.9`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/apache/Dockerfile) -- [`26.0.9-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/fpm/Dockerfile) -- [`26.0.9-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/26/fpm-alpine/Dockerfile) -- [`27.1.4-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.4`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/apache/Dockerfile) -- [`27.1.4-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/fpm/Dockerfile) -- [`27.1.4-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/488a855c49140fbce4c4dd7637b6ffe7a4b725be/27/fpm-alpine/Dockerfile) +- [`26.0.10-apache`, `26.0-apache`, `26-apache`, `26.0.10`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/apache/Dockerfile) +- [`26.0.10-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/fpm/Dockerfile) +- [`26.0.10-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/fpm-alpine/Dockerfile) +- [`27.1.5-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.5`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/apache/Dockerfile) +- [`27.1.5-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm/Dockerfile) +- [`27.1.5-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm-alpine/Dockerfile) - [`28.0.0-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.0`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/apache/Dockerfile) - [`28.0.0-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm/Dockerfile) - [`28.0.0-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm-alpine/Dockerfile) diff --git a/php/README.md b/php/README.md index cbbc4fd0819d..8479482558a1 100644 --- a/php/README.md +++ b/php/README.md @@ -24,90 +24,90 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6add2e21ceb9fc3cd1ff3d818cd89b20a55646f4/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.1RC3-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/cli/Dockerfile) -- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.3/bookworm/apache/Dockerfile) -- [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/fpm/Dockerfile) -- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bookworm/zts/Dockerfile) -- [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/cli/Dockerfile) -- [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/apache/Dockerfile) -- [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/fpm/Dockerfile) -- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/f59450afb41e40d7be6d3f3ebb77d285dd57aa63/8.3/bullseye/zts/Dockerfile) -- [`8.3.0-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.0-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b02ed6ab2ff3a42e0604045792e2c448a11daf6d/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.14RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/cli/Dockerfile) -- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.2/bookworm/apache/Dockerfile) -- [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/fpm/Dockerfile) -- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bookworm/zts/Dockerfile) -- [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/cli/Dockerfile) -- [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/apache/Dockerfile) -- [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/fpm/Dockerfile) -- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/74548e8879e4b5b83cabb0b41c479d2027580958/8.2/bullseye/zts/Dockerfile) -- [`8.2.13-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.13-alpine3.19`, `8.2-alpine3.19`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.2/alpine3.18/zts/Dockerfile) -- [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/21e903f57ea7f5bc123eb4b168a9d307b449617d/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.19`, `8.1-rc-cli-alpine3.19`, `8.1.27RC1-alpine3.19`, `8.1-rc-alpine3.19`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.19`, `8.1-rc-fpm-alpine3.19`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.19/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/cli/Dockerfile) -- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/f8c3dc9ad98b95492aa871f256d6ac223bb49087/8.1/bookworm/apache/Dockerfile) -- [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/fpm/Dockerfile) -- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bookworm/zts/Dockerfile) -- [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/cli/Dockerfile) -- [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/apache/Dockerfile) -- [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/fpm/Dockerfile) -- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/25e17c7d52af3fe23bd3c04427c6011144b553ef/8.1/bullseye/zts/Dockerfile) -- [`8.1.26-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.26-alpine3.19`, `8.1-alpine3.19`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.19/zts/Dockerfile) -- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/c3c7f06feb14df9f6fc79577d4b033b0abe374a2/8.1/alpine3.18/zts/Dockerfile) +- [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.1RC3-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/cli/Dockerfile) +- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/apache/Dockerfile) +- [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/fpm/Dockerfile) +- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/zts/Dockerfile) +- [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/cli/Dockerfile) +- [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/apache/Dockerfile) +- [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/fpm/Dockerfile) +- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/zts/Dockerfile) +- [`8.3.0-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.0-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.14RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/cli/Dockerfile) +- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/apache/Dockerfile) +- [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/fpm/Dockerfile) +- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/zts/Dockerfile) +- [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/cli/Dockerfile) +- [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/apache/Dockerfile) +- [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/fpm/Dockerfile) +- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/zts/Dockerfile) +- [`8.2.13-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.13-alpine3.19`, `8.2-alpine3.19`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/zts/Dockerfile) +- [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/cli/Dockerfile) +- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/apache/Dockerfile) +- [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/fpm/Dockerfile) +- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/cli/Dockerfile) +- [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/apache/Dockerfile) +- [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/fpm/Dockerfile) +- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.19`, `8.1-rc-cli-alpine3.19`, `8.1.27RC1-alpine3.19`, `8.1-rc-alpine3.19`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.19`, `8.1-rc-fpm-alpine3.19`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/zts/Dockerfile) +- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/cli/Dockerfile) +- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/fpm/Dockerfile) +- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/cli/Dockerfile) +- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/apache/Dockerfile) +- [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/fpm/Dockerfile) +- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/zts/Dockerfile) +- [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/cli/Dockerfile) +- [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/apache/Dockerfile) +- [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/fpm/Dockerfile) +- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/zts/Dockerfile) +- [`8.1.26-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.26-alpine3.19`, `8.1-alpine3.19`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index fbd0f410eb9a..589ed3d3b0b8 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20231128`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231128-c5af9c74&id=c5af9c74328001c2d436cb116fb321141fe2c932) -- [`22.04`, `jammy-20231128`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231128-3891b8ac&id=3891b8ac4ba7aaa6802c5e602d7bdd47399b8123) +- [`20.04`, `focal-20231211`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231211-1c7098d1&id=1c7098d1f72badd8cc2d425da3e2aacbe394fb7d) +- [`22.04`, `jammy-20231211.1`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231211.1-688af4b1&id=688af4b17cff5f46798923b58dca3922c9dceed7) - [`23.04`, `lunar-20231128`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231128-1e15482a&id=1e15482adc1232275aec0e3566d81c6dd033ab2f) - [`23.10`, `mantic-20231128`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231128-f8f436b9&id=f8f436b92c9e971f61f0bf30d27ac4dda209703a) -- [`24.04`, `noble-20231126.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231126.1-28106364&id=28106364b9df72f1068b5d702c79d502269c4b68) +- [`24.04`, `noble-20231214`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231214-fa343037&id=fa34303717c5b27d6b269d5a909703c3cc2c9492) # Quick reference (cont.) From d1d08a353adbee93310aad8fe3184deaf194e73a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 18:09:41 -0800 Subject: [PATCH 0807/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 125feeda675f..3c1d23c89d36 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-1-jdk-oraclelinux8`, `23-ea-1-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-1-jdk-oracle`, `23-ea-1-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-1-jdk-oraclelinux7`, `23-ea-1-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-1-jdk-bookworm`, `23-ea-1-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/bookworm/Dockerfile) -- [`23-ea-1-jdk-slim-bookworm`, `23-ea-1-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-1-jdk-slim`, `23-ea-1-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-1-jdk-bullseye`, `23-ea-1-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/bullseye/Dockerfile) -- [`23-ea-1-jdk-slim-bullseye`, `23-ea-1-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-1-jdk-windowsservercore-ltsc2022`, `23-ea-1-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-1-jdk-windowsservercore-1809`, `23-ea-1-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-1-jdk-nanoserver-1809`, `23-ea-1-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-27-jdk-oraclelinux8`, `22-ea-27-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-27-jdk-oracle`, `22-ea-27-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-27-jdk-oraclelinux7`, `22-ea-27-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-27-jdk-bookworm`, `22-ea-27-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/bookworm/Dockerfile) -- [`22-ea-27-jdk-slim-bookworm`, `22-ea-27-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-27-jdk-slim`, `22-ea-27-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-27-jdk-bullseye`, `22-ea-27-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/bullseye/Dockerfile) -- [`22-ea-27-jdk-slim-bullseye`, `22-ea-27-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-27-jdk-windowsservercore-ltsc2022`, `22-ea-27-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-27-jdk-windowsservercore-1809`, `22-ea-27-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-27-jdk-nanoserver-1809`, `22-ea-27-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-2-jdk-oraclelinux8`, `23-ea-2-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-2-jdk-oracle`, `23-ea-2-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-2-jdk-oraclelinux7`, `23-ea-2-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-2-jdk-bookworm`, `23-ea-2-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/bookworm/Dockerfile) +- [`23-ea-2-jdk-slim-bookworm`, `23-ea-2-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-2-jdk-slim`, `23-ea-2-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-2-jdk-bullseye`, `23-ea-2-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/bullseye/Dockerfile) +- [`23-ea-2-jdk-slim-bullseye`, `23-ea-2-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-2-jdk-windowsservercore-ltsc2022`, `23-ea-2-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-2-jdk-windowsservercore-1809`, `23-ea-2-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-2-jdk-nanoserver-1809`, `23-ea-2-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-28-jdk-oraclelinux8`, `22-ea-28-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-28-jdk-oracle`, `22-ea-28-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-28-jdk-oraclelinux7`, `22-ea-28-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-28-jdk-bookworm`, `22-ea-28-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/bookworm/Dockerfile) +- [`22-ea-28-jdk-slim-bookworm`, `22-ea-28-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-28-jdk-slim`, `22-ea-28-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-28-jdk-bullseye`, `22-ea-28-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/bullseye/Dockerfile) +- [`22-ea-28-jdk-slim-bullseye`, `22-ea-28-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-28-jdk-windowsservercore-ltsc2022`, `22-ea-28-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-28-jdk-windowsservercore-1809`, `22-ea-28-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-28-jdk-nanoserver-1809`, `22-ea-28-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-1-jdk`, `23-ea-1`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-1-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-1-jdk-windowsservercore`, `23-ea-1-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-1-jdk-nanoserver`, `23-ea-1-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fa0b2a98f543bd03e5a73821ee18e2f2b6e27417/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-27-jdk`, `22-ea-27`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-27-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-27-jdk-windowsservercore`, `22-ea-27-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-27-jdk-nanoserver`, `22-ea-27-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/57add13396240d2d34d5410f4cc419fac7c599a1/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-2-jdk`, `23-ea-2`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-2-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-2-jdk-windowsservercore`, `23-ea-2-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-2-jdk-nanoserver`, `23-ea-2-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-28-jdk`, `22-ea-28`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-28-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-28-jdk-windowsservercore`, `22-ea-28-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-28-jdk-nanoserver`, `22-ea-28-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From f59ec4bf544e8f090a0ba93c538027fd626c7bbd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Dec 2023 19:09:45 -0800 Subject: [PATCH 0808/2686] Run update.sh --- hello-world/README.md | 2 +- hello-world/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hello-world/README.md b/hello-world/README.md index d7e836821c53..4ec80bafd6cf 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -90,7 +90,7 @@ For more examples and ideas, visit: $ docker images hello-world REPOSITORY TAG IMAGE ID SIZE -hello-world latest 9c7a54a9a43c 13.26kB +hello-world latest d2c94e258dcb 13.26kB ``` ![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/hello-world/logo.png) diff --git a/hello-world/content.md b/hello-world/content.md index 18a58e780746..6fb8f3e68767 100644 --- a/hello-world/content.md +++ b/hello-world/content.md @@ -27,7 +27,7 @@ For more examples and ideas, visit: $ docker images %%IMAGE%% REPOSITORY TAG IMAGE ID SIZE -hello-world latest 9c7a54a9a43c 13.26kB +hello-world latest d2c94e258dcb 13.26kB ``` %%LOGO%% From d50026429b4ebdb3d24d27f372103c2a26bc44af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Dec 2023 11:10:57 -0800 Subject: [PATCH 0809/2686] Run update.sh --- clearlinux/README.md | 2 +- photon/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 3f779cccf883..cb90d6a4b92a 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4c367f5b64b69b64d2529bda3eeb58c2f62c3375/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8737b58f0f7673161c026016dd1f81fac5f0d757/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index f236a419f429..1cdb0ba5591c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231209`, `latest`](https://github.com/vmware/photon-docker-image/blob/d0e3d3ea6a786ea30e65be4185f433daf70a805e/docker/Dockerfile) +- [`5.0`, `5.0-20231216`, `latest`](https://github.com/vmware/photon-docker-image/blob/cc9701b1e18cebc928f3737cc1573aa88462f610/docker/Dockerfile) - [`4.0`, `4.0-20231209`](https://github.com/vmware/photon-docker-image/blob/1c70a66c8a98b1873c6ffea3ff87944bc290387d/docker/Dockerfile) - [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) From d229a1911e67f2263ece0168dec19f265e9c9203 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Dec 2023 16:10:23 -0800 Subject: [PATCH 0810/2686] Run update.sh --- maven/README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/maven/README.md b/maven/README.md index 288f3ad761e7..16a1e7974a96 100644 --- a/maven/README.md +++ b/maven/README.md @@ -53,6 +53,35 @@ WARNING: - [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-11/Dockerfile) - [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-17/Dockerfile) - [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-21/Dockerfile) +- [`3.8.8-eclipse-temurin-11`, `3.8-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11/Dockerfile) +- [`3.8.8-eclipse-temurin-11-alpine`, `3.8-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11-alpine/Dockerfile) +- [`3.8.8-eclipse-temurin-11-focal`, `3.8-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11-focal/Dockerfile) +- [`3.8.8-eclipse-temurin-17`, `3.8-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17/Dockerfile) +- [`3.8.8-eclipse-temurin-17-alpine`, `3.8-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17-alpine/Dockerfile) +- [`3.8.8-eclipse-temurin-17-focal`, `3.8-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17-focal/Dockerfile) +- [`3.8.8-eclipse-temurin-21`, `3.8.8`, `3.8.8-eclipse-temurin`, `3.8-eclipse-temurin-21`, `3.8`, `3.8-eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-21/Dockerfile) +- [`3.8.8-eclipse-temurin-21-alpine`, `3.8-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-21-alpine/Dockerfile) +- [`3.8.8-eclipse-temurin-8`, `3.8-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8/Dockerfile) +- [`3.8.8-eclipse-temurin-8-alpine`, `3.8-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8-alpine/Dockerfile) +- [`3.8.8-eclipse-temurin-8-focal`, `3.8-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8-focal/Dockerfile) +- [`3.8.8-ibmjava-8`, `3.8.8-ibmjava`, `3.8-ibmjava-8`, `3.8-ibmjava`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibmjava-8/Dockerfile) +- [`3.8.8-ibm-semeru-11-focal`, `3.8-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibm-semeru-11-focal/Dockerfile) +- [`3.8.8-ibm-semeru-17-focal`, `3.8-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibm-semeru-17-focal/Dockerfile) +- [`3.8.8-amazoncorretto-11`, `3.8.8-amazoncorretto`, `3.8-amazoncorretto-11`, `3.8-amazoncorretto`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11/Dockerfile) +- [`3.8.8-amazoncorretto-11-al2023`, `3.8-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11-al2023/Dockerfile) +- [`3.8.8-amazoncorretto-11-debian`, `3.8.8-amazoncorretto-11-debian-bookworm`, `3.8-amazoncorretto-11-debian`, `3.8-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11-debian/Dockerfile) +- [`3.8.8-amazoncorretto-17`, `3.8-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17/Dockerfile) +- [`3.8.8-amazoncorretto-17-al2023`, `3.8-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17-al2023/Dockerfile) +- [`3.8.8-amazoncorretto-17-debian`, `3.8.8-amazoncorretto-17-debian-bookworm`, `3.8-amazoncorretto-17-debian`, `3.8-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17-debian/Dockerfile) +- [`3.8.8-amazoncorretto-21`, `3.8-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21/Dockerfile) +- [`3.8.8-amazoncorretto-21-al2023`, `3.8-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21-al2023/Dockerfile) +- [`3.8.8-amazoncorretto-21-debian`, `3.8.8-amazoncorretto-21-debian-bookworm`, `3.8-amazoncorretto-21-debian`, `3.8-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21-debian/Dockerfile) +- [`3.8.8-amazoncorretto-8`, `3.8-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8/Dockerfile) +- [`3.8.8-amazoncorretto-8-al2023`, `3.8-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8-al2023/Dockerfile) +- [`3.8.8-amazoncorretto-8-debian`, `3.8.8-amazoncorretto-8-debian-bookworm`, `3.8-amazoncorretto-8-debian`, `3.8-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8-debian/Dockerfile) +- [`3.8.8-sapmachine-11`, `3.8-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-11/Dockerfile) +- [`3.8.8-sapmachine-17`, `3.8-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-17/Dockerfile) +- [`3.8.8-sapmachine-21`, `3.8.8-sapmachine`, `3.8-sapmachine-21`, `3.8-sapmachine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-21/Dockerfile) # Quick reference (cont.) From 3cc16593728f1c3bbfb318a2fb544c7558cd8503 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Dec 2023 17:22:38 -0800 Subject: [PATCH 0811/2686] Run update.sh --- debian/README.md | 60 +++++++++++++++++++++++----------------------- julia/README.md | 26 ++++++++++---------- mysql/README.md | 7 +++--- rabbitmq/README.md | 24 +++++++++---------- 4 files changed, 58 insertions(+), 59 deletions(-) diff --git a/debian/README.md b/debian/README.md index 82bec2255a08..4707ca07b86d 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20231120`, `12.2`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20231120-slim`, `12.2-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20231120`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20231120-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/bullseye/slim/Dockerfile) -- [`buster`, `buster-20231120`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20231120-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/buster/slim/Dockerfile) -- [`experimental`, `experimental-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/rc-buggy/Dockerfile) -- [`sid`, `sid-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/sid/Dockerfile) -- [`sid-slim`, `sid-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/sid/slim/Dockerfile) -- [`stable`, `stable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/stable/slim/Dockerfile) -- [`testing`, `testing-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/testing/slim/Dockerfile) -- [`trixie`, `trixie-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20231120`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20231120-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/1f1e36af44a355418661956f15e39f5b04b848b6/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20231218`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20231218-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20231218`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20231218-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/slim/Dockerfile) +- [`buster`, `buster-20231218`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20231218-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/slim/Dockerfile) +- [`experimental`, `experimental-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/rc-buggy/Dockerfile) +- [`sid`, `sid-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/sid/Dockerfile) +- [`sid-slim`, `sid-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/sid/slim/Dockerfile) +- [`stable`, `stable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/slim/Dockerfile) +- [`testing`, `testing-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/slim/Dockerfile) +- [`trixie`, `trixie-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index a1a86e88af7f..bc8c723db789 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-rc2-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-rc2-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-rc2-alpine3.19`, `1.10-rc-alpine3.19`, `rc-alpine3.19`, `1.10.0-rc2-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.10-rc/alpine3.19/Dockerfile) -- [`1.10.0-rc2-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-rc2-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-rc2-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-rc3-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bookworm/Dockerfile) +- [`1.10.0-rc3-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bullseye/Dockerfile) +- [`1.10.0-rc3-alpine3.19`, `1.10-rc-alpine3.19`, `rc-alpine3.19`, `1.10.0-rc3-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/alpine3.19/Dockerfile) +- [`1.10.0-rc3-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/alpine3.18/Dockerfile) +- [`1.10.0-rc3-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-rc3-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) - [`1.9.4-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - [`1.9.4-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bullseye/Dockerfile) - [`1.9.4-alpine3.19`, `1.9-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.9/alpine3.19/Dockerfile) @@ -49,13 +49,13 @@ WARNING: ## Shared Tags -- `1.10.0-rc2`, `1.10-rc`, `rc`: - - [`1.10.0-rc2-bookworm`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-rc2-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8852e4c19fd19cdfe676e956ce3a53ca04278d8c/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc3`, `1.10-rc`, `rc`: + - [`1.10.0-rc3-bookworm`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bookworm/Dockerfile) + - [`1.10.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-rc3-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.10.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) - `1.9.4`, `1.9`, `1`, `latest`: - [`1.9.4-bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 9dd30b57fc14..f474c113d7bd 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oraclelinux8`, `8.2-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/innovation/Dockerfile.oracle) -- [`8.0.35`, `8.0`, `8.0.35-oraclelinux8`, `8.0-oraclelinux8`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/8.0/Dockerfile.oracle) -- [`8.0.35-bullseye`, `8.0-bullseye`, `8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/d035567ee66d525cbf95b8dbc0be20e2f0a5e3f5/8.0/Dockerfile.debian) -- [`5.7.44`, `5.7`, `5`, `5.7.44-oraclelinux7`, `5.7-oraclelinux7`, `5-oraclelinux7`, `5.7.44-oracle`, `5.7-oracle`, `5-oracle`](https://github.com/docker-library/mysql/blob/0097ab8a1fde788a9a51357339fa5498855623e2/5.7/Dockerfile.oracle) +- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oraclelinux8`, `8.2-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/innovation/Dockerfile.oracle) +- [`8.0.35`, `8.0`, `8.0.35-oraclelinux8`, `8.0-oraclelinux8`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/8.0/Dockerfile.oracle) +- [`8.0.35-bullseye`, `8.0-bullseye`, `8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 70bdc9cf596c..c90a31ab1809 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.2`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/2a94ce3f0fe97b7c56e6bc985e97059c72910903/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-rc.2-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2a94ce3f0fe97b7c56e6bc985e97059c72910903/3.13-rc/alpine/Dockerfile) -- [`3.13.0-rc.2-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b6b4cd71df7d15918afbd4e7ab021266bb2310b7/3.12/ubuntu/Dockerfile) +- [`3.13.0-rc.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/00e4d971adc2fb074b22e908fac4eb637ccb414c/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-rc.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/00e4d971adc2fb074b22e908fac4eb637ccb414c/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/986a970fcf1135300bddc78c15d84cde14a08b61/3.12/ubuntu/Dockerfile) - [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.12/alpine/Dockerfile) +- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/986a970fcf1135300bddc78c15d84cde14a08b61/3.12/alpine/Dockerfile) - [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.27`, `3.11`](https://github.com/docker-library/rabbitmq/blob/c759a936021d9abf72c78573798703a56cd35504/3.11/ubuntu/Dockerfile) +- [`3.11.27`, `3.11`](https://github.com/docker-library/rabbitmq/blob/47915328ad29b0e11e34043dcd0639493687af10/3.11/ubuntu/Dockerfile) - [`3.11.27-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.27-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/c759a936021d9abf72c78573798703a56cd35504/3.11/alpine/Dockerfile) +- [`3.11.27-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/47915328ad29b0e11e34043dcd0639493687af10/3.11/alpine/Dockerfile) - [`3.11.27-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/0e547c0d4ef0a09238c1b0f514835f3733f69148/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/4ef39c16217ca65831d0a997f60e54c916244a3c/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0adc2a913923b76247388e4eea8e77ef9bea14d6/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/12f56d211d04474b18940528cc218dcb9da88a96/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0adc2a913923b76247388e4eea8e77ef9bea14d6/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) From da7a6c1efda46afc7120df0df28c458191237151 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Dec 2023 10:19:45 -0800 Subject: [PATCH 0812/2686] Run update.sh --- registry/README.md | 1 + swipl/README.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/registry/README.md b/registry/README.md index cdd660954e78..02f4ed9aa1d8 100644 --- a/registry/README.md +++ b/registry/README.md @@ -26,6 +26,7 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.0.0-alpha.1`](https://github.com/docker/distribution-library-image/blob/6356e8dbe1969f7340ca25a9874faa26e6e6f71d/Dockerfile) - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 53746127a8c0..9dc9d84ed53f 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.19`](https://github.com/SWI-Prolog/docker-swipl/blob/aed2f55c031507e8fe2a2fede471ffbb5ced5af0/9.1.19/bullseye/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/aed2f55c031507e8fe2a2fede471ffbb5ced5af0/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.21`](https://github.com/SWI-Prolog/docker-swipl/blob/1a0a739f7edf19f4282958568ac8245f4410e1b1/9.1.21/bookworm/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/1a0a739f7edf19f4282958568ac8245f4410e1b1/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 49e201ef9ece3c08cab088044301842bcc72cabb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Dec 2023 12:09:37 -0800 Subject: [PATCH 0813/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index b0b9ceebeb73..201f968bd298 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231205`, `devel`, `devel-20231205-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/a714b7fc49005f5a8235f125b190d0b15667faf1/devel/Dockerfile) +- [`devel-20231213`, `devel`, `devel-20231213-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/814dc634861d27b9f1e44c3a535b8231142b8433/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) From b474d57fae732ab5e17ac09d5d34362e7f339e9e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Dec 2023 14:09:44 -0800 Subject: [PATCH 0814/2686] Run update.sh --- haproxy/README.md | 16 ++++++++-------- php/README.md | 48 +++++++++++++++++++++++------------------------ redmine/README.md | 4 ++-- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 85fd5a1e75b1..dba933b6daf5 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/3.0/Dockerfile) -- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/3.0/alpine/Dockerfile) -- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7643b2d41ab7eb48e2ebfe2ce99ca453a125993c/2.9/Dockerfile) -- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/7643b2d41ab7eb48e2ebfe2ce99ca453a125993c/2.9/alpine/Dockerfile) +- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/0d5ae965f4941abfe179b11761bfec9c5ef191ff/3.0/Dockerfile) +- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/0d5ae965f4941abfe179b11761bfec9c5ef191ff/3.0/alpine/Dockerfile) +- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/66c5b5e84b5f86a8047f5d8f9472e5fa6e3711e8/2.9/Dockerfile) +- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/66c5b5e84b5f86a8047f5d8f9472e5fa6e3711e8/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.7/Dockerfile) @@ -36,10 +36,10 @@ WARNING: - [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/alpine/Dockerfile) - [`2.4.25`, `2.4`, `2.4.25-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/Dockerfile) - [`2.4.25-alpine`, `2.4-alpine`, `2.4.25-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/alpine/Dockerfile) -- [`2.2.31`, `2.2`, `2.2.31-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/Dockerfile) -- [`2.2.31-alpine`, `2.2-alpine`, `2.2.31-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/37ba32b245a7c55a5a42a554795d7140acbf4113/2.2/alpine/Dockerfile) -- [`2.0.33`, `2.0`, `2.0.33-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.0/Dockerfile) -- [`2.0.33-alpine`, `2.0-alpine`, `2.0.33-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2/2.0/alpine/Dockerfile) +- [`2.2.32`, `2.2`, `2.2.32-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/edf0471abcc8d46fec439f9bddffa0d57da97053/2.2/Dockerfile) +- [`2.2.32-alpine`, `2.2-alpine`, `2.2.32-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/edf0471abcc8d46fec439f9bddffa0d57da97053/2.2/alpine/Dockerfile) +- [`2.0.34`, `2.0`, `2.0.34-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1689052e242008bfabfd0259acdbcf0bf69a1743/2.0/Dockerfile) +- [`2.0.34-alpine`, `2.0-alpine`, `2.0.34-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/1689052e242008bfabfd0259acdbcf0bf69a1743/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 8479482558a1..5aca9dfd9081 100644 --- a/php/README.md +++ b/php/README.md @@ -27,87 +27,87 @@ WARNING: - [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/cli/Dockerfile) - [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/apache/Dockerfile) - [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/bookworm/zts/Dockerfile) - [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/cli/Dockerfile) - [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/apache/Dockerfile) - [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/bullseye/zts/Dockerfile) - [`8.3.1RC3-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.1RC3-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/cli/Dockerfile) - [`8.3.1RC3-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/cli/Dockerfile) - [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/cli/Dockerfile) - [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/apache/Dockerfile) - [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/fpm/Dockerfile) -- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/zts/Dockerfile) +- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/bookworm/zts/Dockerfile) - [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/cli/Dockerfile) - [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/apache/Dockerfile) - [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/fpm/Dockerfile) -- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/zts/Dockerfile) +- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/bullseye/zts/Dockerfile) - [`8.3.0-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.0-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/cli/Dockerfile) - [`8.3.0-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/alpine3.19/zts/Dockerfile) - [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/cli/Dockerfile) - [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/zts/Dockerfile) +- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/alpine3.18/zts/Dockerfile) - [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/cli/Dockerfile) - [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/apache/Dockerfile) - [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/bookworm/zts/Dockerfile) - [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/cli/Dockerfile) - [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/apache/Dockerfile) - [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/bullseye/zts/Dockerfile) - [`8.2.14RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.14RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/cli/Dockerfile) - [`8.2.14RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/alpine3.19/zts/Dockerfile) - [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/cli/Dockerfile) - [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/cli/Dockerfile) - [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/apache/Dockerfile) - [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/fpm/Dockerfile) -- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/zts/Dockerfile) +- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/bookworm/zts/Dockerfile) - [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/cli/Dockerfile) - [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/apache/Dockerfile) - [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/fpm/Dockerfile) -- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/zts/Dockerfile) +- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/bullseye/zts/Dockerfile) - [`8.2.13-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.13-alpine3.19`, `8.2-alpine3.19`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/cli/Dockerfile) - [`8.2.13-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/alpine3.19/zts/Dockerfile) - [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/cli/Dockerfile) - [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/cli/Dockerfile) - [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/apache/Dockerfile) - [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/zts/Dockerfile) +- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/bookworm/zts/Dockerfile) - [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/cli/Dockerfile) - [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/apache/Dockerfile) - [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/zts/Dockerfile) +- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/bullseye/zts/Dockerfile) - [`8.1.27RC1-cli-alpine3.19`, `8.1-rc-cli-alpine3.19`, `8.1.27RC1-alpine3.19`, `8.1-rc-alpine3.19`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/cli/Dockerfile) - [`8.1.27RC1-fpm-alpine3.19`, `8.1-rc-fpm-alpine3.19`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/zts/Dockerfile) +- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/alpine3.19/zts/Dockerfile) - [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/cli/Dockerfile) - [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/zts/Dockerfile) +- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/alpine3.18/zts/Dockerfile) - [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/cli/Dockerfile) - [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/apache/Dockerfile) - [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/fpm/Dockerfile) -- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/zts/Dockerfile) +- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/bookworm/zts/Dockerfile) - [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/cli/Dockerfile) - [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/apache/Dockerfile) - [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/fpm/Dockerfile) -- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/zts/Dockerfile) +- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/bullseye/zts/Dockerfile) - [`8.1.26-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.26-alpine3.19`, `8.1-alpine3.19`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/cli/Dockerfile) - [`8.1.26-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/alpine3.19/zts/Dockerfile) - [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/cli/Dockerfile) - [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 3a148f4451d3..727da97587fa 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/711e24b729fb1e39614073f1c0c37402af829ddd/5.1/bookworm/Dockerfile) -- [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/711e24b729fb1e39614073f1c0c37402af829ddd/5.1/alpine3.18/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/bookworm/Dockerfile) +- [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/alpine3.18/Dockerfile) - [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/bookworm/Dockerfile) - [`5.0.7-alpine3.18`, `5.0-alpine3.18`, `5.0.7-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/alpine3.18/Dockerfile) From 678fac9423834abea0a1046ff8a5395b65c7dcf5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Dec 2023 17:21:35 -0800 Subject: [PATCH 0815/2686] Run update.sh --- alpine/README.md | 2 +- amazonlinux/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index d8495598dc25..798e7929b92e 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20230901`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3/x86_64/Dockerfile) +- [`20231219`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/8890ee9d240b5646608ea8810923ec686d578a00/x86_64/Dockerfile) - [`3.19.0`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/97c57449282d97cfa1c0b64669aed9afbf08645a/x86_64/Dockerfile) - [`3.18.5`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a83fe3481a89201ac736f735062360f5953be635/x86_64/Dockerfile) - [`3.17.6`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/4de8583a90c86e251755f4bae4080f86e2449df8/x86_64/Dockerfile) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4425f47b6256..57d478f4275f 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20231211.4`](https://github.com/amazonlinux/container-images/blob/5d43cabd0e15c15ab51395153458ebe099466da8/Dockerfile) -- [`2`, `2.0.20231206.0`](https://github.com/amazonlinux/container-images/blob/a10480da4e07a2ec233ecc200f621d240fcc47e2/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20231206.1`](https://github.com/amazonlinux/container-images/blob/f185bfc0b26db5b22fbf77d56e1330e47fecf6b7/Dockerfile) +- [`2023`, `latest`, `2023.3.20231218.0`](https://github.com/amazonlinux/container-images/blob/b873d5675468bf092eb887e9ff01d72625a13945/Dockerfile) +- [`2`, `2.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/a062c0d5722a2c85f82df96a01a5a21a15adff7d/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) From f521ebca5629df7d5262e20ed9e3a6ae7a7b1290 Mon Sep 17 00:00:00 2001 From: David Dooling Date: Wed, 20 Dec 2023 11:30:22 -0600 Subject: [PATCH 0816/2686] mongo: add security section Closes docker-library/mongo#656. --- mongo/content.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mongo/content.md b/mongo/content.md index c586238bd8ee..6e1caa11f2a1 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -8,6 +8,10 @@ First developed by the software company 10gen (now MongoDB Inc.) in October 2007 %%LOGO%% +# Security + +By default Mongo's configuration requires no authentication for access, even for the administrative user. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for information on how to begin securing Mongo and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for more detail. + # How to use this image ## Start a `%%REPO%%` server instance @@ -46,7 +50,7 @@ The MongoDB Server log is available through Docker's container log: $ docker logs some-%%REPO%% ``` -## Configuration +# Configuration See the [MongoDB manual](https://docs.mongodb.com/manual/) for information on using and configuring MongoDB for things like replica sets and sharding. From 3c4721e878dc96446b9912264c77f336c49fd702 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 10:09:48 -0800 Subject: [PATCH 0817/2686] Run update.sh --- mongo/README.md | 6 +++++- node/README.md | 12 ++++++------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index fd772a99d4d0..b746e7b020e4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -136,6 +136,10 @@ First developed by the software company 10gen (now MongoDB Inc.) in October 2007 +# Security + +By default Mongo's configuration requires no authentication for access, even for the administrative user. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for information on how to begin securing Mongo and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for more detail. + # How to use this image ## Start a `mongo` server instance @@ -202,7 +206,7 @@ The MongoDB Server log is available through Docker's container log: $ docker logs some-mongo ``` -## Configuration +# Configuration See the [MongoDB manual](https://docs.mongodb.com/manual/) for information on using and configuring MongoDB for things like replica sets and sharding. diff --git a/node/README.md b/node/README.md index dc978d0f0beb..a1e077614758 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.4-alpine3.18`, `21.4.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.4-alpine`, `21.4-alpine3.19`, `21.4.0-alpine`, `21.4.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.4`, `21.4-bookworm`, `21.4.0`, `21.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.4-bookworm-slim`, `21.4-slim`, `21.4.0-bookworm-slim`, `21.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.4-bullseye`, `21.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.4-bullseye-slim`, `21.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e6de6d890fce6946236cf403b0d5d5b33178e61/21/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.5-alpine3.18`, `21.5.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.5-alpine`, `21.5-alpine3.19`, `21.5.0-alpine`, `21.5.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.5`, `21.5-bookworm`, `21.5.0`, `21.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.5-bookworm-slim`, `21.5-slim`, `21.5.0-bookworm-slim`, `21.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.5-bullseye`, `21.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.5-bullseye-slim`, `21.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.10-alpine3.18`, `20.10.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.10-alpine`, `20.10-alpine3.19`, `20.10.0-alpine`, `20.10.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) From c207d0f0e168ea8b5fb342597b52b8bf7f1e8372 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 11:20:59 -0800 Subject: [PATCH 0818/2686] Run update.sh --- mongo/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index b746e7b020e4..1c01d9e881c4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`7.0.4-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/Dockerfile) +- [`7.0.4-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) - [`7.0.4-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.4-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.4-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.4-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/Dockerfile) +- [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.12-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.12-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.12-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.23-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/Dockerfile) +- [`5.0.23-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) - [`5.0.23-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.27-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/Dockerfile) +- [`4.4.27-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4-rc/Dockerfile) - [`4.4.27-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.27-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) - [`4.4.27-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.27-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.26-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) +- [`4.4.26-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4/Dockerfile) - [`4.4.26-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.26-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.26-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-ltsc2022/Dockerfile) @@ -57,7 +57,7 @@ WARNING: ## Shared Tags - `7.0.4`, `7.0`, `7`, `latest`: - - [`7.0.4-jammy`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/Dockerfile) + - [`7.0.4-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.4-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: @@ -67,7 +67,7 @@ WARNING: - [`7.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.12`, `6.0`, `6`: - - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/Dockerfile) + - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.12-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: @@ -77,7 +77,7 @@ WARNING: - [`6.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.23`, `5.0`, `5`: - - [`5.0.23-focal`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/Dockerfile) + - [`5.0.23-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.23-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -87,7 +87,7 @@ WARNING: - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.27-rc0`, `4.4-rc`: - - [`4.4.27-rc0-focal`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/Dockerfile) + - [`4.4.27-rc0-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4-rc/Dockerfile) - [`4.4.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) - `4.4.27-rc0-windowsservercore`, `4.4-rc-windowsservercore`: @@ -97,7 +97,7 @@ WARNING: - [`4.4.27-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`4.4.27-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.26`, `4.4`, `4`: - - [`4.4.26-focal`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/Dockerfile) + - [`4.4.26-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4/Dockerfile) - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.26-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: From 9ef7d1d3272e824195079bc41c8fa42bd2cc4466 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 12:09:39 -0800 Subject: [PATCH 0819/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- golang/README.md | 32 +++++++++++++++++++++++++------- 2 files changed, 33 insertions(+), 15 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 20f42198a5dc..2155ac557701 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/fd3de9bdd2a72b59a99e7d1c125e5b3b5729326a/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 74a2c693ab61..15a878b13487 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,18 +28,26 @@ WARNING: ## Simple Tags -- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bookworm/Dockerfile) -- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bullseye/Dockerfile) -- [`1.21.5-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/alpine3.19/Dockerfile) -- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/alpine3.18/Dockerfile) +- [`1.22rc1-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bookworm/Dockerfile) +- [`1.22rc1-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bullseye/Dockerfile) +- [`1.22rc1-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc1-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/alpine3.19/Dockerfile) +- [`1.22rc1-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/alpine3.18/Dockerfile) +- [`1.22rc1-windowsservercore-ltsc2022`, `1.22-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22rc1-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.22rc1-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22rc1-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) +- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bookworm/Dockerfile) +- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bullseye/Dockerfile) +- [`1.21.5-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/alpine3.19/Dockerfile) +- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/alpine3.18/Dockerfile) - [`1.21.5-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.5-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.5-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.5-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) - [`1.20.12-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) - [`1.20.12-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bullseye/Dockerfile) -- [`1.20.12-alpine3.19`, `1.20-alpine3.19`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/84f47a944aa3d10104ad45dd8a188b878595cac4/1.20/alpine3.19/Dockerfile) -- [`1.20.12-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/alpine3.18/Dockerfile) +- [`1.20.12-alpine3.19`, `1.20-alpine3.19`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.20/alpine3.19/Dockerfile) +- [`1.20.12-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.20/alpine3.18/Dockerfile) - [`1.20.12-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.12-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.12-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) @@ -47,8 +55,18 @@ WARNING: ## Shared Tags +- `1.22rc1`, `1.22-rc`: + - [`1.22rc1-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bookworm/Dockerfile) + - [`1.22rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- `1.22rc1-windowsservercore`, `1.22-rc-windowsservercore`: + - [`1.22rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- `1.22rc1-nanoserver`, `1.22-rc-nanoserver`: + - [`1.22rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) - `1.21.5`, `1.21`, `1`, `latest`: - - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/40db26d6cc395e12ec499d7d88c77ee5f6dbe912/1.21/bookworm/Dockerfile) + - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bookworm/Dockerfile) - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) - `1.21.5-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: From 4116d503b83a0d8b391bad1bd6530be9007d8bba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 14:23:13 -0800 Subject: [PATCH 0820/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 24abf47a35ef..b0541367aa7b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6eebdafb2a35b99afc081d3d49e68558f049bc11/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7-slim-fips/Dockerfile) # Quick reference (cont.) From 8b35a43795bda4f4ca1299bee2d02afe2434ee7f Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Wed, 20 Dec 2023 14:24:39 -0800 Subject: [PATCH 0821/2686] Typo fixes And some stack.yml version updates --- amazonlinux/content.md | 2 +- caddy/content.md | 2 +- cassandra/content.md | 2 +- drupal/stack.yml | 4 ++-- ghost/stack.yml | 2 +- joomla/stack.yml | 2 +- lightstreamer/content.md | 2 +- nextcloud/content.md | 2 +- postfixadmin/stack.yml | 2 +- redmine/stack.yml | 2 +- satosa/content.md | 2 +- wordpress/stack.yml | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/amazonlinux/content.md b/amazonlinux/content.md index 317c0f205639..15b308c6242d 100644 --- a/amazonlinux/content.md +++ b/amazonlinux/content.md @@ -23,7 +23,7 @@ Note that Docker Hub's vulnerability scanning for Amazon Linux is currently base ## What is Amazon Linux 2023? - Amazon Linux 2023: https://aws.amazon.com/linux/amazon-linux-2023/ -- 2023.0 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html +- 2023 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html - FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ - What's New: https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-linux-2023/ - User Guide: https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html diff --git a/caddy/content.md b/caddy/content.md index f97e70bff147..7999442e934a 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -90,7 +90,7 @@ FROM %%IMAGE%%: COPY --from=builder /usr/bin/caddy /usr/bin/caddy ``` -Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the the regular `%%IMAGE%%` image. +Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the regular `%%IMAGE%%` image. The [`xcaddy`](https://caddyserver.com/docs/build#xcaddy) tool is used to [build a new Caddy entrypoint](https://github.com/caddyserver/caddy/blob/4217217badf220d7d2c25f43f955fdc8454f2c64/cmd/caddy/main.go#L15..L25), with the provided modules. You can specify just a module name, or a name with a version (separated by `@`). You can also specify a specific version (can be a version tag or commit hash) of Caddy to build from. Read more about [`xcaddy` usage](https://github.com/caddyserver/xcaddy#command-usage). diff --git a/cassandra/content.md b/cassandra/content.md index cab3d2bcd26c..aab8b44fc57a 100644 --- a/cassandra/content.md +++ b/cassandra/content.md @@ -80,7 +80,7 @@ There are a small number of environment variables supported by the image which w - `CASSANDRA_START_RPC`: This variable is for controlling if the thrift rpc server is started. It will set the [`start_rpc`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__start_rpc) option in `cassandra.yaml`. -- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the the seeds passed in so that the server will talk to itself as well. +- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the seeds passed in so that the server will talk to itself as well. - `CASSANDRA_CLUSTER_NAME`: This variable sets the name of the cluster and must be the same for all nodes in the cluster. It will set the [`cluster_name`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__cluster_name) option of `cassandra.yaml`. diff --git a/drupal/stack.yml b/drupal/stack.yml index 4823d863d8b3..df58e27bc020 100644 --- a/drupal/stack.yml +++ b/drupal/stack.yml @@ -15,7 +15,7 @@ version: '3.1' services: drupal: - image: drupal:8-apache + image: drupal:10-apache ports: - 8080:80 volumes: @@ -29,7 +29,7 @@ services: restart: always postgres: - image: postgres:10 + image: postgres:16 environment: POSTGRES_PASSWORD: example restart: always diff --git a/ghost/stack.yml b/ghost/stack.yml index 9d495d941a06..fcf777580beb 100644 --- a/ghost/stack.yml +++ b/ghost/stack.yml @@ -3,7 +3,7 @@ version: '3.1' services: ghost: - image: ghost:4-alpine + image: ghost:5-alpine restart: always ports: - 8080:2368 diff --git a/joomla/stack.yml b/joomla/stack.yml index f1ac990db505..91b6f6a9f0b3 100644 --- a/joomla/stack.yml +++ b/joomla/stack.yml @@ -13,7 +13,7 @@ services: JOOMLA_DB_PASSWORD: example joomladb: - image: mysql:5.6 + image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example diff --git a/lightstreamer/content.md b/lightstreamer/content.md index 93b07ec16e34..331b84d59ff4 100644 --- a/lightstreamer/content.md +++ b/lightstreamer/content.md @@ -43,7 +43,7 @@ Alternatively, the above tasks can be executed by deriving a new image through a ```dockerfile FROM %%IMAGE%% -# Please specify a COPY command only for the the required custom configuration file +# Please specify a COPY command only for the required custom configuration file COPY my-lightstreamer_conf.xml /lightstreamer/conf/lightstreamer_conf.xml COPY my-lightstreamer_log_conf.xml /lightstreamer/conf/lightstreamer_log_conf.xml ``` diff --git a/nextcloud/content.md b/nextcloud/content.md index 9c25a180c925..e327afda9ea2 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -278,7 +278,7 @@ Then run `docker-compose up -d`, now you can access Nextcloud at http://localhos ## Base version - FPM -When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option.The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples). +When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option. The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples). As this setup does **not include encryption**, it should be run behind a proxy. diff --git a/postfixadmin/stack.yml b/postfixadmin/stack.yml index b40e6c5b1abc..cef4054f9ee1 100644 --- a/postfixadmin/stack.yml +++ b/postfixadmin/stack.yml @@ -2,7 +2,7 @@ version: '3' services: db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_RANDOM_ROOT_PASSWORD: 1 diff --git a/redmine/stack.yml b/redmine/stack.yml index 5cfe77710c4e..0fc04fe7a28f 100644 --- a/redmine/stack.yml +++ b/redmine/stack.yml @@ -13,7 +13,7 @@ services: REDMINE_SECRET_KEY_BASE: supersecretkey db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example diff --git a/satosa/content.md b/satosa/content.md index f00ab9e50c8b..fcba08015cf4 100644 --- a/satosa/content.md +++ b/satosa/content.md @@ -62,7 +62,7 @@ SATOSA uses encrypted cookies to track the progress of an authentication flow. T ### `SAML2_BACKEND_DISCO_SRV` -When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). +When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). ### `SAML2_BACKEND_CERT` and `SAML2_BACKEND_KEY` diff --git a/wordpress/stack.yml b/wordpress/stack.yml index 68198d1ed648..ac4ca9abd223 100644 --- a/wordpress/stack.yml +++ b/wordpress/stack.yml @@ -16,7 +16,7 @@ services: - wordpress:/var/www/html db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_DATABASE: exampledb From 3629a59f73e1dac17db1018dd6ac58d6cdd6dcd9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 15:18:40 -0800 Subject: [PATCH 0822/2686] Run update.sh --- amazonlinux/README.md | 2 +- caddy/README.md | 2 +- cassandra/README.md | 2 +- drupal/README.md | 6 +++--- ghost/README.md | 4 ++-- joomla/README.md | 4 ++-- lightstreamer/README.md | 2 +- matomo/README.md | 6 +++--- nextcloud/README.md | 2 +- postfixadmin/README.md | 4 ++-- redmine/README.md | 4 ++-- satosa/README.md | 2 +- wordpress/README.md | 4 ++-- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 57d478f4275f..fccd61911945 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -73,7 +73,7 @@ Note that Docker Hub's vulnerability scanning for Amazon Linux is currently base ## What is Amazon Linux 2023? - Amazon Linux 2023: https://aws.amazon.com/linux/amazon-linux-2023/ -- 2023.0 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html +- 2023 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html - FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/ - What's New: https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-linux-2023/ - User Guide: https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html diff --git a/caddy/README.md b/caddy/README.md index 43171024f7a5..0c62e06bb6ba 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -160,7 +160,7 @@ FROM caddy: COPY --from=builder /usr/bin/caddy /usr/bin/caddy ``` -Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the the regular `caddy` image. +Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the regular `caddy` image. The [`xcaddy`](https://caddyserver.com/docs/build#xcaddy) tool is used to [build a new Caddy entrypoint](https://github.com/caddyserver/caddy/blob/4217217badf220d7d2c25f43f955fdc8454f2c64/cmd/caddy/main.go#L15..L25), with the provided modules. You can specify just a module name, or a name with a version (separated by `@`). You can also specify a specific version (can be a version tag or commit hash) of Caddy to build from. Read more about [`xcaddy` usage](https://github.com/caddyserver/xcaddy#command-usage). diff --git a/cassandra/README.md b/cassandra/README.md index ddef9cea1760..b5cc8b76956d 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -131,7 +131,7 @@ There are a small number of environment variables supported by the image which w - `CASSANDRA_START_RPC`: This variable is for controlling if the thrift rpc server is started. It will set the [`start_rpc`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__start_rpc) option in `cassandra.yaml`. -- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the the seeds passed in so that the server will talk to itself as well. +- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the seeds passed in so that the server will talk to itself as well. - `CASSANDRA_CLUSTER_NAME`: This variable sets the name of the cluster and must be the same for all nodes in the cluster. It will set the [`cluster_name`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__cluster_name) option of `cassandra.yaml`. diff --git a/drupal/README.md b/drupal/README.md index e0409496f5a6..c590d2396455 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -214,7 +214,7 @@ version: '3.1' services: drupal: - image: drupal:8-apache + image: drupal:10-apache ports: - 8080:80 volumes: @@ -228,13 +228,13 @@ services: restart: always postgres: - image: postgres:10 + image: postgres:16 environment: POSTGRES_PASSWORD: example restart: always ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/f81077b92e4522999836b8c5d098a103f568a431/drupal/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/drupal/stack.yml) Run `docker stack deploy -c stack.yml drupal` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` diff --git a/ghost/README.md b/ghost/README.md index 2da86d0ff1ae..98db2eb60368 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -147,7 +147,7 @@ version: '3.1' services: ghost: - image: ghost:4-alpine + image: ghost:5-alpine restart: always ports: - 8080:2368 @@ -178,7 +178,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/45b7cc83c4763f5dc3501e1f7a2411eca1b16ce2/ghost/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/ghost/stack.yml) Run `docker stack deploy -c stack.yml ghost` (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). diff --git a/joomla/README.md b/joomla/README.md index 3d3fbdfd656d..a839b96f2878 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -120,13 +120,13 @@ services: JOOMLA_DB_PASSWORD: example joomladb: - image: mysql:5.6 + image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/joomla/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/joomla/stack.yml) Run `docker stack deploy -c stack.yml joomla` (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). diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 25e54ed48406..305eb664b220 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -103,7 +103,7 @@ Alternatively, the above tasks can be executed by deriving a new image through a ```dockerfile FROM lightstreamer -# Please specify a COPY command only for the the required custom configuration file +# Please specify a COPY command only for the required custom configuration file COPY my-lightstreamer_conf.xml /lightstreamer/conf/lightstreamer_conf.xml COPY my-lightstreamer_log_conf.xml /lightstreamer/conf/lightstreamer_log_conf.xml ``` diff --git a/matomo/README.md b/matomo/README.md index 8097707211fd..15175c37b990 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.16.0-apache`, `4.16-apache`, `4-apache`, `apache`, `4.16.0`, `4.16`, `4`, `latest`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/apache/Dockerfile) -- [`4.16.0-fpm`, `4.16-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/fpm/Dockerfile) -- [`4.16.0-fpm-alpine`, `4.16-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/52e2f8d83824fbc93889d2474a801e1193eef308/fpm-alpine/Dockerfile) +- [`5.0.0-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.0`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/apache/Dockerfile) +- [`5.0.0-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/fpm/Dockerfile) +- [`5.0.0-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index c3ef3c3e2d1f..5e2e21778146 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -337,7 +337,7 @@ Then run `docker-compose up -d`, now you can access Nextcloud at http://localhos ## Base version - FPM -When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option.The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples). +When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option. The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples). As this setup does **not include encryption**, it should be run behind a proxy. diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 7d4a4f146ac4..9ab93a36f282 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -112,7 +112,7 @@ version: '3' services: db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_RANDOM_ROOT_PASSWORD: 1 @@ -135,7 +135,7 @@ services: POSTFIXADMIN_DB_PASSWORD: example ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/c011eff7d5385665f43db2e0330716da4ab68e75/postfixadmin/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/postfixadmin/stack.yml) Run docker stack deploy -c stack.yml postfixadmin (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). diff --git a/redmine/README.md b/redmine/README.md index 727da97587fa..621c3e491146 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -112,14 +112,14 @@ services: REDMINE_SECRET_KEY_BASE: supersecretkey db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: redmine ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/cd78c2e058c5a648c0ef42590943736612332666/redmine/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/redmine/stack.yml) Run `docker stack deploy -c stack.yml redmine` (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). diff --git a/satosa/README.md b/satosa/README.md index c86aedcfa741..0b64cfac3ac2 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -119,7 +119,7 @@ SATOSA uses encrypted cookies to track the progress of an authentication flow. T ### `SAML2_BACKEND_DISCO_SRV` -When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). +When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). ### `SAML2_BACKEND_CERT` and `SAML2_BACKEND_KEY` diff --git a/wordpress/README.md b/wordpress/README.md index ce54047aad52..2815e8da92b4 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -128,7 +128,7 @@ services: - wordpress:/var/www/html db: - image: mysql:5.7 + image: mysql:8.0 restart: always environment: MYSQL_DATABASE: exampledb @@ -143,7 +143,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/456252a739783650c79bd1f6a7a19101fbecfc65/wordpress/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/wordpress/stack.yml) Run `docker stack deploy -c stack.yml wordpress` (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). From 32402675b9a03cb2e22875cc459c661faf69afd3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Dec 2023 16:09:56 -0800 Subject: [PATCH 0823/2686] Run update.sh --- gazebo/README.md | 2 +- ros/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gazebo/README.md b/gazebo/README.md index f77b417fc5c8..148c74ec1a31 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) +- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) - [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index ea18062c573e..3c49a9a8ee64 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/ubuntu/focal/ros-core/Dockerfile) +- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/humble/ubuntu/jammy/ros-core/Dockerfile) +- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/iron/ubuntu/jammy/ros-core/Dockerfile) +- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) - [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/perception/Dockerfile) From ce4375490256323ee14a6bef04acb7c3b732b612 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Thu, 21 Dec 2023 08:49:24 +0000 Subject: [PATCH 0824/2686] update: registry docs * updated links to documentation * updated symlink to community maintainers template Signed-off-by: Milos Gajdos --- registry/content.md | 4 ++-- registry/github-repo | 2 +- registry/license.md | 2 +- registry/maintainer.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/registry/content.md b/registry/content.md index 1e37ab63a262..12c9306254cc 100644 --- a/registry/content.md +++ b/registry/content.md @@ -20,6 +20,6 @@ $ docker push localhost:5000/ubuntu ## Recommended Reading -The [documentation over at docs.docker.com](https://docs.docker.com/registry/) is a good place to learn more about what the registry is, how it works, and how to use it. +The [documentation](https://distribution.github.io/distribution/) is a good place to learn more about what the registry is, how it works, and how to use it. -Specifically, [the section regarding deployment](https://docs.docker.com/registry/deploying/) has pointers for more complex use cases than simply running a registry on localhost. +Specifically, [the section regarding deployment](https://distribution.github.io/distribution/about/deploying/) has pointers for more complex use cases than simply running a registry on localhost. diff --git a/registry/github-repo b/registry/github-repo index c7a1ed75d470..a0a5cea5684e 100644 --- a/registry/github-repo +++ b/registry/github-repo @@ -1 +1 @@ -https://github.com/docker/distribution-library-image +https://github.com/distribution/distribution-library-image diff --git a/registry/license.md b/registry/license.md index 8ce5c18f7719..fc49421da5be 100644 --- a/registry/license.md +++ b/registry/license.md @@ -1 +1 @@ -View [license information](https://github.com/docker/distribution/blob/master/LICENSE) for the software contained in this image. +View [license information](https://github.com/distribution/distribution/blob/master/LICENSE) for the software contained in this image. diff --git a/registry/maintainer.md b/registry/maintainer.md index 617c4fb974a1..e727ff0696ae 120000 --- a/registry/maintainer.md +++ b/registry/maintainer.md @@ -1 +1 @@ -../.common-templates/maintainer-docker.md \ No newline at end of file +../.common-templates/maintainer-community.md \ No newline at end of file From 8ff73b55e4ee2325d547ff745e042cf80df74f26 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Thu, 21 Dec 2023 13:04:05 +0000 Subject: [PATCH 0825/2686] update: removed Hub recommendation Signed-off-by: Milos Gajdos --- registry/get-help.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/registry/get-help.md b/registry/get-help.md index 4d954e7f170c..b88107ba64e8 100644 --- a/registry/get-help.md +++ b/registry/get-help.md @@ -1,3 +1 @@ [CNCF community slack](https://slack.cncf.io/), or [Stack Overflow](https://stackoverflow.com/questions/tagged/docker+registry) - -- **Need a free, secure hosted registry?** Try [Docker Hub](https://www.docker.com/pricing). From 2c625ace6e62c2e53e165d4724ff90e929c1a1cd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Dec 2023 10:09:32 -0800 Subject: [PATCH 0826/2686] Run update.sh --- jetty/README.md | 134 ++++++++++++++++++++++----------------------- neo4j/README.md | 4 +- registry/README.md | 12 ++-- 3 files changed, 74 insertions(+), 76 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index b11c38498afb..b31ba6e316a6 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,77 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.53-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.53-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.53-jre8`, `9.4-jre8`, `9-jre8`, `9.4.53-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.53-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.53-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.53-jre21`, `9.4-jre21`, `9-jre21`, `9.4.53-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.53-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.53-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.53-jre17`, `9.4-jre17`, `9-jre17`, `9.4.53-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.53-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.53-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.53-jre11`, `9.4-jre11`, `9-jre11`, `9.4.53-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.53-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.53-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.53-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.53-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.53-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.53-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.4-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.4-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.4-jre21`, `12.0-jre21`, `12-jre21`, `12.0.4-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.4-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.4-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.4-jre17`, `12.0-jre17`, `12-jre17`, `12.0.4-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.4-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.4-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.4`, `12.0`, `12`, `12.0.4-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.4-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.4-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.4-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.4-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.4-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.4-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.18-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.18-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.18-jre21`, `11.0-jre21`, `11-jre21`, `11.0.18-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.18-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.18-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.18-jre17`, `11.0-jre17`, `11-jre17`, `11.0.18-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.18-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.18-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.18-jre11`, `11.0-jre11`, `11-jre11`, `11.0.18-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.18-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.18-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.18`, `11.0`, `11`, `11.0.18-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.18-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.18-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.18-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.18-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.18-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.18-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.18-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.18-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.18-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.18-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.18-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.18-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.18-jre21`, `10.0-jre21`, `10-jre21`, `10.0.18-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.18-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.18-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.18-jre17`, `10.0-jre17`, `10-jre17`, `10.0.18-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.18-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.18-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.18-jre11`, `10.0-jre11`, `10-jre11`, `10.0.18-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.18-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.18-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.18`, `10.0`, `10`, `10.0.18-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.18-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.18-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5245ca814cb972078d8e5bb6526f183d84f6d283/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.18-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.18-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.18-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.18-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.18-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.18-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.18-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.18-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.53-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.53-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.53-jre8`, `9.4-jre8`, `9-jre8`, `9.4.53-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.53-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.53-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.53-jre21`, `9.4-jre21`, `9-jre21`, `9.4.53-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.53-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.53-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.53-jre17`, `9.4-jre17`, `9-jre17`, `9.4.53-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.53-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.53-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.53-jre11`, `9.4-jre11`, `9-jre11`, `9.4.53-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.53-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.53-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.53-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.53-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.53-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.53-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`12.0.5-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.5-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.5-jre21`, `12.0-jre21`, `12-jre21`, `12.0.5-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.5-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.5-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.5-jre17`, `12.0-jre17`, `12-jre17`, `12.0.5-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.5-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.5-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.5`, `12.0`, `12`, `12.0.5-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.5-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.5-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.5-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.5-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.5-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.5-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.19-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.19-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.19-jre21`, `11.0-jre21`, `11-jre21`, `11.0.19-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.19-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.19-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.19-jre17`, `11.0-jre17`, `11-jre17`, `11.0.19-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.19-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.19-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.19-jre11`, `11.0-jre11`, `11-jre11`, `11.0.19-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.19-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.19-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.19`, `11.0`, `11`, `11.0.19-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.19-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.19-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.19-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.19-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.19-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.19-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.19-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.19-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.19-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.19-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.19-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.19-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.19-jre21`, `10.0-jre21`, `10-jre21`, `10.0.19-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.19-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.19-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.19-jre17`, `10.0-jre17`, `10-jre17`, `10.0.19-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.19-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.19-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.19-jre11`, `10.0-jre11`, `10-jre11`, `10.0.19-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.19-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.19-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.19`, `10.0`, `10`, `10.0.19-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.19-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.19-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.19-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.19-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.19-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.19-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.19-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.19-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.19-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.19-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.53-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.53-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk21-alpine/Dockerfile) - [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk17-alpine/Dockerfile) - [`9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.4-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.4-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.4-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.4-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.4-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/de6acd5b920d21e2ee35e7aaa8abe7cb2d8bb985/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.18-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.18-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.18-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.18-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.18-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.18-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.18-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.18-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.18-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.18-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.18-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.18-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.18-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.18-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a23ba914308dd1439bd177ad3f36a380402f2d16/amazoncorretto/10.0/jdk11/Dockerfile) +- [`12.0.5-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.5-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.5-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.5-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.5-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.19-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.19-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.19-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.19-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.19-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.19-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.19-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.19-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.19-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.19-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.19-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.19-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.19-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.19-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index c4b439ffa9f0..cb976e40b5fa 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.15.0-enterprise-bullseye`, `5.15-enterprise-bullseye`, `5-enterprise-bullseye`, `5.15.0-enterprise`, `5.15-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/bullseye/enterprise/Dockerfile) - [`5.15.0-community-ubi8`, `5.15-community-ubi8`, `5-community-ubi8`, `5.15.0-ubi8`, `5.15-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/community/Dockerfile) - [`5.15.0-enterprise-ubi8`, `5.15-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/enterprise/Dockerfile) -- [`4.4.28`, `4.4.28-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/community/Dockerfile) -- [`4.4.28-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a39a0b8e97fea5e7c232771059a1a857345f6715/4.4.28/bullseye/enterprise/Dockerfile) +- [`4.4.29`, `4.4.29-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/community/Dockerfile) +- [`4.4.29-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index 02f4ed9aa1d8..fc3d7b045d7d 100644 --- a/registry/README.md +++ b/registry/README.md @@ -17,13 +17,11 @@ WARNING: # Quick reference - **Maintained by**: - [Docker, Inc.](https://github.com/docker/distribution-library-image) + [the Docker Community](https://github.com/distribution/distribution-library-image) - **Where to get help**: [CNCF community slack](https://slack.cncf.io/), or [Stack Overflow](https://stackoverflow.com/questions/tagged/docker+registry) -- **Need a free, secure hosted registry?** Try [Docker Hub](https://www.docker.com/pricing). - # Supported tags and respective `Dockerfile` links - [`3.0.0-alpha.1`](https://github.com/docker/distribution-library-image/blob/6356e8dbe1969f7340ca25a9874faa26e6e6f71d/Dockerfile) @@ -32,7 +30,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker/distribution-library-image/issues](https://github.com/docker/distribution-library-image/issues?q=) + [https://github.com/distribution/distribution-library-image/issues](https://github.com/distribution/distribution-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/registry/), [`arm32v6`](https://hub.docker.com/r/arm32v6/registry/), [`arm32v7`](https://hub.docker.com/r/arm32v7/registry/), [`arm64v8`](https://hub.docker.com/r/arm64v8/registry/), [`ppc64le`](https://hub.docker.com/r/ppc64le/registry/), [`s390x`](https://hub.docker.com/r/s390x/registry/) @@ -70,13 +68,13 @@ $ docker push localhost:5000/ubuntu ## Recommended Reading -The [documentation over at docs.docker.com](https://docs.docker.com/registry/) is a good place to learn more about what the registry is, how it works, and how to use it. +The [documentation](https://distribution.github.io/distribution/) is a good place to learn more about what the registry is, how it works, and how to use it. -Specifically, [the section regarding deployment](https://docs.docker.com/registry/deploying/) has pointers for more complex use cases than simply running a registry on localhost. +Specifically, [the section regarding deployment](https://distribution.github.io/distribution/about/deploying/) has pointers for more complex use cases than simply running a registry on localhost. # License -View [license information](https://github.com/docker/distribution/blob/master/LICENSE) for the software contained in this image. +View [license information](https://github.com/distribution/distribution/blob/master/LICENSE) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). From a8642a01570c27d27e64066c5db4ab3b16918886 Mon Sep 17 00:00:00 2001 From: David Dooling Date: Thu, 21 Dec 2023 12:26:37 -0600 Subject: [PATCH 0827/2686] mongo: add more security information More on docker-library/mongo#656. --- mongo/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongo/content.md b/mongo/content.md index 6e1caa11f2a1..eff926e1c8e1 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -10,7 +10,7 @@ First developed by the software company 10gen (now MongoDB Inc.) in October 2007 # Security -By default Mongo's configuration requires no authentication for access, even for the administrative user. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for information on how to begin securing Mongo and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for more detail. +By default Mongo's configuration requires no authentication for access, even for the administrative user. It is highly recommended to set a root user name and password if you plan on exposing your Mongo instance to the internet. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for instructions and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for a more complete treatment. # How to use this image From 9ff8c9e8516922a448a286088a215830abbd0eef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Dec 2023 12:09:30 -0800 Subject: [PATCH 0828/2686] Run update.sh --- haproxy/README.md | 32 ++++++++++++++++---------------- mongo/README.md | 15 +++++++++++++++ 2 files changed, 31 insertions(+), 16 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index dba933b6daf5..db80a8b9e3d7 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/0d5ae965f4941abfe179b11761bfec9c5ef191ff/3.0/Dockerfile) -- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/0d5ae965f4941abfe179b11761bfec9c5ef191ff/3.0/alpine/Dockerfile) -- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/66c5b5e84b5f86a8047f5d8f9472e5fa6e3711e8/2.9/Dockerfile) -- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/66c5b5e84b5f86a8047f5d8f9472e5fa6e3711e8/2.9/alpine/Dockerfile) -- [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.8/Dockerfile) -- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.8/alpine/Dockerfile) -- [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71aadfadc524b2bec5a4d6e620d1f9a22f431c27/2.7/Dockerfile) -- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/4df9df86887f5422e63e3522f1f958ce735b8ebb/2.7/alpine/Dockerfile) -- [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/Dockerfile) -- [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/e4b286a573e8f3bad0cc367ffc0f8e0a330d8307/2.6/alpine/Dockerfile) -- [`2.4.25`, `2.4`, `2.4.25-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/Dockerfile) -- [`2.4.25-alpine`, `2.4-alpine`, `2.4.25-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/b2d07293f7145e5630e88695f8b570dcb0650bf9/2.4/alpine/Dockerfile) -- [`2.2.32`, `2.2`, `2.2.32-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/edf0471abcc8d46fec439f9bddffa0d57da97053/2.2/Dockerfile) -- [`2.2.32-alpine`, `2.2-alpine`, `2.2.32-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/edf0471abcc8d46fec439f9bddffa0d57da97053/2.2/alpine/Dockerfile) -- [`2.0.34`, `2.0`, `2.0.34-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/1689052e242008bfabfd0259acdbcf0bf69a1743/2.0/Dockerfile) -- [`2.0.34-alpine`, `2.0-alpine`, `2.0.34-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/1689052e242008bfabfd0259acdbcf0bf69a1743/2.0/alpine/Dockerfile) +- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/3.0/Dockerfile) +- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/3.0/alpine/Dockerfile) +- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/Dockerfile) +- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/alpine/Dockerfile) +- [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) +- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/alpine/Dockerfile) +- [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) +- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/alpine/Dockerfile) +- [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/Dockerfile) +- [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/alpine/Dockerfile) +- [`2.4.25`, `2.4`, `2.4.25-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.4/Dockerfile) +- [`2.4.25-alpine`, `2.4-alpine`, `2.4.25-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.4/alpine/Dockerfile) +- [`2.2.32`, `2.2`, `2.2.32-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.2/Dockerfile) +- [`2.2.32-alpine`, `2.2-alpine`, `2.2.32-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.2/alpine/Dockerfile) +- [`2.0.34`, `2.0`, `2.0.34-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.0/Dockerfile) +- [`2.0.34-alpine`, `2.0-alpine`, `2.0.34-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 1c01d9e881c4..0c2a822504a7 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.5-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/Dockerfile) +- [`7.0.5-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.5-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.5-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.5-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.4-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) - [`7.0.4-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.4-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,6 +61,16 @@ WARNING: ## Shared Tags +- `7.0.5-rc0`, `7.0-rc`: + - [`7.0.5-rc0-jammy`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/Dockerfile) + - [`7.0.5-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.5-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.5-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.5-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.5-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.5-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.5-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.5-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.4`, `7.0`, `7`, `latest`: - [`7.0.4-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) From e8ec4e4143b0600c4783e14c4957ccce526e5aac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Dec 2023 14:09:38 -0800 Subject: [PATCH 0829/2686] Run update.sh --- dart/README.md | 4 ++-- docker/README.md | 20 ++++++++++---------- nextcloud/README.md | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dart/README.md b/dart/README.md index 8ed8ad7ec212..de917a1578d9 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.3-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.3`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/eac94d3eda77e47c866dab0e6d158815ad9818ac/stable/bookworm/Dockerfile) -- [`3.3.0-174.2.beta-sdk`, `beta-sdk`, `3.3.0-174.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/eac94d3eda77e47c866dab0e6d158815ad9818ac/beta/bookworm/Dockerfile) +- [`3.2.4-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.4`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/f9685d704280a365b55bab6df3451ddf56bd3878/stable/bookworm/Dockerfile) +- [`3.3.0-174.3.beta-sdk`, `beta-sdk`, `3.3.0-174.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/f9685d704280a365b55bab6df3451ddf56bd3878/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 2ccfc32fb6a4..181bc2f5f043 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/25-rc/cli/Dockerfile) -- [`25.0.0-beta.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.2-dind-alpine3.19`, `25.0.0-beta.2`, `25-rc`, `rc`, `25.0.0-beta.2-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/25-rc/dind/Dockerfile) -- [`25.0.0-beta.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-beta.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-beta.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-beta.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/18bbfb7d201fc854d6bf9ee589f55290a543f209/24/cli/Dockerfile) +- [`25.0.0-beta.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3a0424834732f20142291cdd1d392e6d860af2ad/25-rc/cli/Dockerfile) +- [`25.0.0-beta.3-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.3-dind-alpine3.19`, `25.0.0-beta.3`, `25-rc`, `rc`, `25.0.0-beta.3-alpine3.19`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/dind/Dockerfile) +- [`25.0.0-beta.3-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-beta.3-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-beta.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-beta.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3a0424834732f20142291cdd1d392e6d860af2ad/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `25.0.0-beta.2-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-beta.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-beta.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d8b20e0d84b8bac8629e782e0fc779d537eab8d8/25-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.0-beta.3-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-beta.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-beta.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 5e2e21778146..9acf235ae195 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,9 +34,9 @@ WARNING: - [`27.1.5-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.5`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/apache/Dockerfile) - [`27.1.5-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm/Dockerfile) - [`27.1.5-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm-alpine/Dockerfile) -- [`28.0.0-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.0`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/apache/Dockerfile) -- [`28.0.0-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm/Dockerfile) -- [`28.0.0-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/e6510ac5947c11258f7d910aed3a1ce8d0faa2c3/28/fpm-alpine/Dockerfile) +- [`28.0.1-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.1`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/apache/Dockerfile) +- [`28.0.1-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm/Dockerfile) +- [`28.0.1-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm-alpine/Dockerfile) # Quick reference (cont.) From dc37fa4c3b186f7d2a2bde50909486ed6596214d Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Thu, 21 Dec 2023 22:15:16 +0000 Subject: [PATCH 0830/2686] update: registry readme Replace references to Docker HTTP API V2 with OCI distribution spec links. Signed-off-by: Milos Gajdos --- registry/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/content.md b/registry/content.md index 12c9306254cc..6b0c7b28cc69 100644 --- a/registry/content.md +++ b/registry/content.md @@ -2,7 +2,7 @@ %%LOGO%% -This image contains an implementation of the Docker Registry HTTP API V2 for use with Docker 1.6+. See [github.com/distribution/distribution](https://github.com/distribution/distribution) for more details about what it is. +This image contains an implementation of the OCI Distribution spec. See [github.com/opencontainers/distribution-spec](https://github.com/opencontainers/distribution-spec) for more details about what it is. You can find the full source code in [github.com/distribution/distribution](https://github.com/distribution/distribution). ## Run a local registry: Quick Version From 56bef5c0958a4e14ba03190ea3dfee9ec19e7f5f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Dec 2023 15:10:05 -0800 Subject: [PATCH 0831/2686] Run update.sh --- registry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/README.md b/registry/README.md index fc3d7b045d7d..fcfa1cc10714 100644 --- a/registry/README.md +++ b/registry/README.md @@ -50,7 +50,7 @@ WARNING: ![logo](https://raw.githubusercontent.com/docker-library/docs/b09c592af0d6061629e02e4f674d22848f8236e8/registry/logo.png) -This image contains an implementation of the Docker Registry HTTP API V2 for use with Docker 1.6+. See [github.com/distribution/distribution](https://github.com/distribution/distribution) for more details about what it is. +This image contains an implementation of the OCI Distribution spec. See [github.com/opencontainers/distribution-spec](https://github.com/opencontainers/distribution-spec) for more details about what it is. You can find the full source code in [github.com/distribution/distribution](https://github.com/distribution/distribution). ## Run a local registry: Quick Version From 20c7950456337c1facec06e5006479999fef045c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Dec 2023 17:09:36 -0800 Subject: [PATCH 0832/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- redmine/README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c90a31ab1809..12ccaa742497 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,10 +32,10 @@ WARNING: - [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/986a970fcf1135300bddc78c15d84cde14a08b61/3.12/alpine/Dockerfile) - [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.27`, `3.11`](https://github.com/docker-library/rabbitmq/blob/47915328ad29b0e11e34043dcd0639493687af10/3.11/ubuntu/Dockerfile) -- [`3.11.27-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.27-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/47915328ad29b0e11e34043dcd0639493687af10/3.11/alpine/Dockerfile) -- [`3.11.27-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) +- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/ubuntu/Dockerfile) +- [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) +- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/alpine/Dockerfile) +- [`3.11.28-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) - [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) - [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/alpine/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 621c3e491146..a72d74f15932 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/bookworm/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/739992185fb35540b8a598b867beb54d6b7c4065/5.1/bookworm/Dockerfile) - [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/alpine3.18/Dockerfile) -- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/bookworm/Dockerfile) +- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/739992185fb35540b8a598b867beb54d6b7c4065/5.0/bookworm/Dockerfile) - [`5.0.7-alpine3.18`, `5.0-alpine3.18`, `5.0.7-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) From 407c028ba575d8f5e88f1e26bed8f2c8a53f83c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Dec 2023 09:28:30 -0800 Subject: [PATCH 0833/2686] Run update.sh --- arangodb/README.md | 2 +- crate/README.md | 8 ++++---- maven/README.md | 32 ++------------------------------ odoo/README.md | 6 +++--- satosa/README.md | 10 +++++----- 5 files changed, 15 insertions(+), 43 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 8d261d55c13d..93178bf13540 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.10`, `3.10.11`](https://github.com/arangodb/arangodb-docker/blob/855faa5aa4d4e065c46e5d999af83c3a7cba5ccb/alpine/3.10.11/Dockerfile) +- [`3.10`, `3.10.12`](https://github.com/arangodb/arangodb-docker/blob/dd330a106d7f246f28d95645cd21816852678c16/alpine/3.10.12/Dockerfile) - [`3.11`, `3.11.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5e80cd97d8ccedf2314fbee99e235894e0b46393/alpine/3.11.6/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 2385d6300448..9d77b89a5907 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.1`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/d0d11dd5792dec75b30b03e3b5ea517f67ce6daa/Dockerfile) -- [`5.4.6`, `5.4`](https://github.com/crate/docker-crate/blob/17262492ec93cffe71ea60ca3397a34290c32d68/Dockerfile) -- [`5.3.7`, `5.3`](https://github.com/crate/docker-crate/blob/a268470d8e3c2da23bfabb71fe17213966a88bdf/Dockerfile) -- [`5.2.10`, `5.2`](https://github.com/crate/docker-crate/blob/54246541fd0ba36831fbcf05183915097b91b3b1/Dockerfile) +- [`5.5.2`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/06b3122b7ce9b910b0fdfe14797cdca3b993db79/Dockerfile) +- [`5.4.7`, `5.4`](https://github.com/crate/docker-crate/blob/a26a53fcc220137c14220c2301eaded65e12b5e4/Dockerfile) +- [`5.3.8`, `5.3`](https://github.com/crate/docker-crate/blob/c98a94b81223ff693fd1a7b325032b2e535bc084/Dockerfile) +- [`5.2.11`, `5.2`](https://github.com/crate/docker-crate/blob/589f5c13d10e2442b9a0d9bee46f4eac96b5da21/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 16a1e7974a96..d1c6a53762e1 100644 --- a/maven/README.md +++ b/maven/README.md @@ -32,6 +32,7 @@ WARNING: - [`3.9.6-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17-focal/Dockerfile) - [`3.9.6-eclipse-temurin-21`, `3.9.6`, `3.9.6-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21/Dockerfile) - [`3.9.6-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/66d4af0bdfd1b0cfb621aa85691b569cad200596/eclipse-temurin-21-jammy/Dockerfile) - [`3.9.6-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8/Dockerfile) - [`3.9.6-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-alpine/Dockerfile) - [`3.9.6-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-focal/Dockerfile) @@ -53,35 +54,6 @@ WARNING: - [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-11/Dockerfile) - [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-17/Dockerfile) - [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-21/Dockerfile) -- [`3.8.8-eclipse-temurin-11`, `3.8-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11/Dockerfile) -- [`3.8.8-eclipse-temurin-11-alpine`, `3.8-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11-alpine/Dockerfile) -- [`3.8.8-eclipse-temurin-11-focal`, `3.8-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-11-focal/Dockerfile) -- [`3.8.8-eclipse-temurin-17`, `3.8-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17/Dockerfile) -- [`3.8.8-eclipse-temurin-17-alpine`, `3.8-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17-alpine/Dockerfile) -- [`3.8.8-eclipse-temurin-17-focal`, `3.8-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-17-focal/Dockerfile) -- [`3.8.8-eclipse-temurin-21`, `3.8.8`, `3.8.8-eclipse-temurin`, `3.8-eclipse-temurin-21`, `3.8`, `3.8-eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-21/Dockerfile) -- [`3.8.8-eclipse-temurin-21-alpine`, `3.8-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-21-alpine/Dockerfile) -- [`3.8.8-eclipse-temurin-8`, `3.8-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8/Dockerfile) -- [`3.8.8-eclipse-temurin-8-alpine`, `3.8-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8-alpine/Dockerfile) -- [`3.8.8-eclipse-temurin-8-focal`, `3.8-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/eclipse-temurin-8-focal/Dockerfile) -- [`3.8.8-ibmjava-8`, `3.8.8-ibmjava`, `3.8-ibmjava-8`, `3.8-ibmjava`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibmjava-8/Dockerfile) -- [`3.8.8-ibm-semeru-11-focal`, `3.8-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibm-semeru-11-focal/Dockerfile) -- [`3.8.8-ibm-semeru-17-focal`, `3.8-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/ibm-semeru-17-focal/Dockerfile) -- [`3.8.8-amazoncorretto-11`, `3.8.8-amazoncorretto`, `3.8-amazoncorretto-11`, `3.8-amazoncorretto`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11/Dockerfile) -- [`3.8.8-amazoncorretto-11-al2023`, `3.8-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11-al2023/Dockerfile) -- [`3.8.8-amazoncorretto-11-debian`, `3.8.8-amazoncorretto-11-debian-bookworm`, `3.8-amazoncorretto-11-debian`, `3.8-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-11-debian/Dockerfile) -- [`3.8.8-amazoncorretto-17`, `3.8-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17/Dockerfile) -- [`3.8.8-amazoncorretto-17-al2023`, `3.8-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17-al2023/Dockerfile) -- [`3.8.8-amazoncorretto-17-debian`, `3.8.8-amazoncorretto-17-debian-bookworm`, `3.8-amazoncorretto-17-debian`, `3.8-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-17-debian/Dockerfile) -- [`3.8.8-amazoncorretto-21`, `3.8-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21/Dockerfile) -- [`3.8.8-amazoncorretto-21-al2023`, `3.8-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21-al2023/Dockerfile) -- [`3.8.8-amazoncorretto-21-debian`, `3.8.8-amazoncorretto-21-debian-bookworm`, `3.8-amazoncorretto-21-debian`, `3.8-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-21-debian/Dockerfile) -- [`3.8.8-amazoncorretto-8`, `3.8-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8/Dockerfile) -- [`3.8.8-amazoncorretto-8-al2023`, `3.8-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8-al2023/Dockerfile) -- [`3.8.8-amazoncorretto-8-debian`, `3.8.8-amazoncorretto-8-debian-bookworm`, `3.8-amazoncorretto-8-debian`, `3.8-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/amazoncorretto-8-debian/Dockerfile) -- [`3.8.8-sapmachine-11`, `3.8-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-11/Dockerfile) -- [`3.8.8-sapmachine-17`, `3.8-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-17/Dockerfile) -- [`3.8.8-sapmachine-21`, `3.8.8-sapmachine`, `3.8-sapmachine-21`, `3.8-sapmachine`](https://github.com/carlossg/docker-maven/blob/4757d0eac8f819dd2f7dca96be86e382f6e207e9/sapmachine-21/Dockerfile) # Quick reference (cont.) @@ -179,7 +151,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `maven:-alpine` diff --git a/odoo/README.md b/odoo/README.md index 9f0e4d7cc832..ebad5db27346 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/5b67879040592cb5d37969d0309f49355ece7d05/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/15.0/Dockerfile) # Quick reference (cont.) diff --git a/satosa/README.md b/satosa/README.md index 0b64cfac3ac2..417990e06a59 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`8.2.0-bullseye`, `8.2-bullseye`, `8-bullseye`, `bullseye`](https://github.com/IdentityPython/satosa-docker/blob/a4ef0077f546b7e9be444720b14f2cba14f8f2eb/8.2/bullseye/Dockerfile) -- [`8.2.0-alpine3.16`, `8.2-alpine3.16`, `8-alpine3.16`, `alpine3.16`, `8.2.0-alpine`, `8.2-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/24aabb5cd0330eab9c8baeddf4fc8fcf0d714d3b/8.2/alpine3.16/Dockerfile) +- [`8.4.0-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) +- [`8.4.0-alpine3.19`, `8.4-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/74a847396f1190ec26679fc3bf09ffcc42d2e999/8.4/alpine3.19/Dockerfile) ## Shared Tags -- `8.2.0`, `8.2`, `8`, `latest`: - - [`8.2.0-bullseye`](https://github.com/IdentityPython/satosa-docker/blob/a4ef0077f546b7e9be444720b14f2cba14f8f2eb/8.2/bullseye/Dockerfile) +- `8.4.0`, `8.4`, `8`, `latest`: + - [`8.4.0-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) # Quick reference (cont.) @@ -137,7 +137,7 @@ The `satosa` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `satosa:-alpine` From 5926fef5f9e0aa28775865e61b5cfb5f10b4a6ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 23 Dec 2023 23:09:58 -0800 Subject: [PATCH 0834/2686] Run update.sh --- elixir/README.md | 27 ++++++++++++++++++--------- mediawiki/README.md | 18 +++++++++--------- photon/README.md | 2 +- 3 files changed, 28 insertions(+), 19 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index 7ce54f702e54..765a954fc14d 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.15.7`, `1.15`, `latest`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) -- [`1.15.7-slim`, `1.15-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) -- [`1.15.7-alpine`, `1.15-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) -- [`1.15.7-otp-24`, `1.15-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24/Dockerfile) -- [`1.15.7-otp-24-alpine`, `1.15-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-alpine/Dockerfile) -- [`1.15.7-otp-24-slim`, `1.15-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-slim/Dockerfile) -- [`1.15.7-otp-25`, `1.15-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25/Dockerfile) -- [`1.15.7-otp-25-alpine`, `1.15-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-alpine/Dockerfile) -- [`1.15.7-otp-25-slim`, `1.15-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-slim/Dockerfile) +- [`1.16.0`, `1.16`, `latest`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/Dockerfile) +- [`1.16.0-slim`, `1.16-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/slim/Dockerfile) +- [`1.16.0-alpine`, `1.16-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/alpine/Dockerfile) +- [`1.16.0-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24/Dockerfile) +- [`1.16.0-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24-alpine/Dockerfile) +- [`1.16.0-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24-slim/Dockerfile) +- [`1.16.0-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25/Dockerfile) +- [`1.16.0-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25-alpine/Dockerfile) +- [`1.16.0-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25-slim/Dockerfile) +- [`1.15.7`, `1.15`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) +- [`1.15.7-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) +- [`1.15.7-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) +- [`1.15.7-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24/Dockerfile) +- [`1.15.7-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-alpine/Dockerfile) +- [`1.15.7-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-slim/Dockerfile) +- [`1.15.7-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25/Dockerfile) +- [`1.15.7-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-alpine/Dockerfile) +- [`1.15.7-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/mediawiki/README.md b/mediawiki/README.md index 4418c01b809f..e5daa5b61cec 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.40.1`, `1.40`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/apache/Dockerfile) -- [`1.40.1-fpm`, `1.40-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/fpm/Dockerfile) -- [`1.40.1-fpm-alpine`, `1.40-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.40/fpm-alpine/Dockerfile) -- [`1.39.5`, `1.39`, `lts`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/apache/Dockerfile) -- [`1.39.5-fpm`, `1.39-fpm`, `legacy-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/fpm/Dockerfile) -- [`1.39.5-fpm-alpine`, `1.39-fpm-alpine`, `legacy-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.39/fpm-alpine/Dockerfile) -- [`1.35.13`, `1.35`, `legacylts`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/apache/Dockerfile) -- [`1.35.13-fpm`, `1.35-fpm`, `legacylts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/fpm/Dockerfile) -- [`1.35.13-fpm-alpine`, `1.35-fpm-alpine`, `legacylts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/fdf347f62615dad789d0e703fc2f6d628c43d4e1/1.35/fpm-alpine/Dockerfile) +- [`1.41.0`, `1.41`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/apache/Dockerfile) +- [`1.41.0-fpm`, `1.41-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/fpm/Dockerfile) +- [`1.41.0-fpm-alpine`, `1.41-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/fpm-alpine/Dockerfile) +- [`1.40.2`, `1.40`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/apache/Dockerfile) +- [`1.40.2-fpm`, `1.40-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/fpm/Dockerfile) +- [`1.40.2-fpm-alpine`, `1.40-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/fpm-alpine/Dockerfile) +- [`1.39.6`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/apache/Dockerfile) +- [`1.39.6-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/fpm/Dockerfile) +- [`1.39.6-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 1cdb0ba5591c..f092d0de7fc6 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20231216`, `latest`](https://github.com/vmware/photon-docker-image/blob/cc9701b1e18cebc928f3737cc1573aa88462f610/docker/Dockerfile) -- [`4.0`, `4.0-20231209`](https://github.com/vmware/photon-docker-image/blob/1c70a66c8a98b1873c6ffea3ff87944bc290387d/docker/Dockerfile) +- [`4.0`, `4.0-20231223`](https://github.com/vmware/photon-docker-image/blob/86c1980fc8bd4622666aa878f43a6332664814fe/docker/Dockerfile) - [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) # Quick reference (cont.) From c534c3629c7f5f538d08041f0ec5f9ddce686e90 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Tue, 28 Nov 2023 14:40:02 +0100 Subject: [PATCH 0835/2686] Mention minimal SMTP configuration in README.md Looking at https://github.com/nextcloud/docker/blob/d1dbc77e0b5e851105cf8606942e74b7d21fe682/.config/smtp.config.php it is clear that `SMTP_HOST`, `MAIL_FROM_ADDRESS` and `MAIL_DOMAIN` must be set. --- nextcloud/content.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nextcloud/content.md b/nextcloud/content.md index e327afda9ea2..7edd51ff5696 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -169,6 +169,8 @@ To use an external SMTP server, you have to provide the connection details. To c - `MAIL_FROM_ADDRESS` (not set by default): Use this address for the 'from' field in the emails sent by Nextcloud. - `MAIL_DOMAIN` (not set by default): Set a different domain for the emails than the domain where Nextcloud is installed. +At least `SMTP_HOST`, `MAIL_FROM_ADDRESS` and `MAIL_DOMAIN` must be set for the configurations to be applied. + Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html) for other values to configure SMTP. To use an external S3 compatible object store as primary storage, set the following variables: From 937d1acd4ea92be21520788825a1cf4503a857d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Dec 2023 11:21:59 -0800 Subject: [PATCH 0836/2686] Run update.sh --- clearlinux/README.md | 2 +- erlang/README.md | 6 +++--- friendica/README.md | 15 ++++++--------- ruby/README.md | 24 ++++++++++++------------ xwiki/README.md | 12 ++++++------ 5 files changed, 28 insertions(+), 31 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index cb90d6a4b92a..a70b5542b9b2 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8737b58f0f7673161c026016dd1f81fac5f0d757/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8a0f3d59372d004ddf94581442dd7577c9b554bf/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index f27ed37ee905..7409c3730c3c 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.2.0.0`, `26.2.0`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/Dockerfile) -- [`26.2.0.0-slim`, `26.2.0-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/slim/Dockerfile) -- [`26.2.0.0-alpine`, `26.2.0-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/9087d17a3b132e1f450201bd81a193aeb40f680e/26/alpine/Dockerfile) +- [`26.2.1.0`, `26.2.1`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/Dockerfile) +- [`26.2.1.0-slim`, `26.2.1-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/slim/Dockerfile) +- [`26.2.1.0-alpine`, `26.2.1-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/alpine/Dockerfile) - [`25.3.2.6`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/Dockerfile) - [`25.3.2.6-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/slim/Dockerfile) - [`25.3.2.6-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/alpine/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 07ef8ec40737..5bbd561c7d90 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,15 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.05-apache`, `apache`, `stable-apache`, `2023.05`, `latest`, `stable`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/apache/Dockerfile) -- [`2023.05-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/fpm/Dockerfile) -- [`2023.05-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.05/fpm-alpine/Dockerfile) -- [`2023.09-dev-apache`, `dev-apache`, `2023.09-dev`, `dev`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/apache/Dockerfile) -- [`2023.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/fpm/Dockerfile) -- [`2023.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-dev/fpm-alpine/Dockerfile) -- [`2023.09-rc-apache`, `rc-apache`, `2023.09-rc`, `rc`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/apache/Dockerfile) -- [`2023.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/fpm/Dockerfile) -- [`2023.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/3247487a7cd9e2adc0ef43eee00982c60078c8cd/2023.09-rc/fpm-alpine/Dockerfile) +- [`2023.12-apache`, `apache`, `stable-apache`, `2023.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/apache/Dockerfile) +- [`2023.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/fpm/Dockerfile) +- [`2023.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/fpm-alpine/Dockerfile) +- [`2024.03-dev-apache`, `dev-apache`, `2024.03-dev`, `dev`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/apache/Dockerfile) +- [`2024.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/fpm/Dockerfile) +- [`2024.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index a54a305029e7..1362ecfad2ce 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-rc1-bookworm`, `3.3-rc-bookworm`, `3.3.0-rc1`, `3.3-rc`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/bookworm/Dockerfile) -- [`3.3.0-rc1-slim-bookworm`, `3.3-rc-slim-bookworm`, `3.3.0-rc1-slim`, `3.3-rc-slim`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/slim-bookworm/Dockerfile) -- [`3.3.0-rc1-bullseye`, `3.3-rc-bullseye`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/bullseye/Dockerfile) -- [`3.3.0-rc1-slim-bullseye`, `3.3-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/slim-bullseye/Dockerfile) -- [`3.3.0-rc1-alpine3.19`, `3.3-rc-alpine3.19`, `3.3.0-rc1-alpine`, `3.3-rc-alpine`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/alpine3.19/Dockerfile) -- [`3.3.0-rc1-alpine3.18`, `3.3-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/b166ecb60c263e8880edf86b3fc8c620f7647e8e/3.3-rc/alpine3.18/Dockerfile) -- [`3.2.2-bookworm`, `3.2-bookworm`, `3-bookworm`, `bookworm`, `3.2.2`, `3.2`, `3`, `latest`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bookworm/Dockerfile) -- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.2.2-slim`, `3.2-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bookworm/Dockerfile) -- [`3.2.2-bullseye`, `3.2-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bullseye/Dockerfile) -- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bullseye/Dockerfile) -- [`3.2.2-alpine3.19`, `3.2-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.2.2-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.19/Dockerfile) -- [`3.2.2-alpine3.18`, `3.2-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.18/Dockerfile) +- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/bookworm/Dockerfile) +- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/slim-bookworm/Dockerfile) +- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/bullseye/Dockerfile) +- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/slim-bullseye/Dockerfile) +- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.19/Dockerfile) +- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.18/Dockerfile) +- [`3.2.2-bookworm`, `3.2-bookworm`, `3.2.2`, `3.2`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bookworm/Dockerfile) +- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3.2.2-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bookworm/Dockerfile) +- [`3.2.2-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bullseye/Dockerfile) +- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bullseye/Dockerfile) +- [`3.2.2-alpine3.19`, `3.2-alpine3.19`, `3.2.2-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.19/Dockerfile) +- [`3.2.2-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.18/Dockerfile) - [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bookworm/Dockerfile) - [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bookworm/Dockerfile) - [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bullseye/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index b7b82bffeec5..3b18728f45c1 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.1`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/9fb3640d614f7b29d39093ef9645201dff8e57ca/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.2`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.2-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.2-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.2-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.4`, `15.5-mysql-tomcat`, `15.5.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mariadb-tomcat/Dockerfile) From dd72f49c4722fb243e2557a2373376e3b0a6dd81 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Dec 2023 14:20:57 -0800 Subject: [PATCH 0837/2686] Run update.sh --- bash/README.md | 2 +- julia/README.md | 39 +++++--------- openjdk/README.md | 72 +++++++++++++------------- php/README.md | 126 +++++++++++++++------------------------------ pypy/README.md | 78 ++++++++++++++-------------- rabbitmq/README.md | 8 +-- 6 files changed, 135 insertions(+), 190 deletions(-) diff --git a/bash/README.md b/bash/README.md index 201f968bd298..89bcf8a71b32 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231213`, `devel`, `devel-20231213-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/814dc634861d27b9f1e44c3a535b8231142b8433/devel/Dockerfile) +- [`devel-20231219`, `devel`, `devel-20231219-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d39c97f5bc718a353705d25a186d34bcc6509946/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/julia/README.md b/julia/README.md index bc8c723db789..9d337ed14ad8 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,18 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-rc3-bookworm`, `1.10-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bookworm/Dockerfile) -- [`1.10.0-rc3-bullseye`, `1.10-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bullseye/Dockerfile) -- [`1.10.0-rc3-alpine3.19`, `1.10-rc-alpine3.19`, `rc-alpine3.19`, `1.10.0-rc3-alpine`, `1.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/alpine3.19/Dockerfile) -- [`1.10.0-rc3-alpine3.18`, `1.10-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/alpine3.18/Dockerfile) -- [`1.10.0-rc3-windowsservercore-ltsc2022`, `1.10-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-rc3-windowsservercore-1809`, `1.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.9.4-bookworm`, `1.9-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) -- [`1.9.4-bullseye`, `1.9-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bullseye/Dockerfile) -- [`1.9.4-alpine3.19`, `1.9-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.9.4-alpine`, `1.9-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.9/alpine3.19/Dockerfile) -- [`1.9.4-alpine3.18`, `1.9-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/alpine3.18/Dockerfile) -- [`1.9.4-windowsservercore-ltsc2022`, `1.9-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.9.4-windowsservercore-1809`, `1.9-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) +- [`1.10.0-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bookworm/Dockerfile) +- [`1.10.0-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bullseye/Dockerfile) +- [`1.10.0-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.0-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/alpine3.19/Dockerfile) +- [`1.10.0-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/alpine3.18/Dockerfile) +- [`1.10.0-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.0-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) @@ -49,20 +43,13 @@ WARNING: ## Shared Tags -- `1.10.0-rc3`, `1.10-rc`, `rc`: - - [`1.10.0-rc3-bookworm`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/bookworm/Dockerfile) - - [`1.10.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-rc3-windowsservercore`, `1.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.10.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0ad271250bbc05055ad57edf37b2108eb2958a1e/1.10-rc/windows/windowsservercore-1809/Dockerfile) -- `1.9.4`, `1.9`, `1`, `latest`: - - [`1.9.4-bookworm`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/bookworm/Dockerfile) - - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) -- `1.9.4-windowsservercore`, `1.9-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.9.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.9.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/154363df0b038fb8a5e74bb97bbed3fb8faea7ca/1.9/windows/windowsservercore-1809/Dockerfile) +- `1.10.0`, `1.10`, `1`, `latest`: + - [`1.10.0-bookworm`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bookworm/Dockerfile) + - [`1.10.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.0-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 3c1d23c89d36..5b8dd77bac6b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-2-jdk-oraclelinux8`, `23-ea-2-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-2-jdk-oracle`, `23-ea-2-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-2-jdk-oraclelinux7`, `23-ea-2-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-2-jdk-bookworm`, `23-ea-2-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/bookworm/Dockerfile) -- [`23-ea-2-jdk-slim-bookworm`, `23-ea-2-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-2-jdk-slim`, `23-ea-2-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-2-jdk-bullseye`, `23-ea-2-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/bullseye/Dockerfile) -- [`23-ea-2-jdk-slim-bullseye`, `23-ea-2-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-2-jdk-windowsservercore-ltsc2022`, `23-ea-2-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-2-jdk-windowsservercore-1809`, `23-ea-2-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-2-jdk-nanoserver-1809`, `23-ea-2-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-28-jdk-oraclelinux8`, `22-ea-28-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-28-jdk-oracle`, `22-ea-28-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-28-jdk-oraclelinux7`, `22-ea-28-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-28-jdk-bookworm`, `22-ea-28-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/bookworm/Dockerfile) -- [`22-ea-28-jdk-slim-bookworm`, `22-ea-28-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-28-jdk-slim`, `22-ea-28-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-28-jdk-bullseye`, `22-ea-28-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/bullseye/Dockerfile) -- [`22-ea-28-jdk-slim-bullseye`, `22-ea-28-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-28-jdk-windowsservercore-ltsc2022`, `22-ea-28-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-28-jdk-windowsservercore-1809`, `22-ea-28-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-28-jdk-nanoserver-1809`, `22-ea-28-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-3-jdk-oraclelinux8`, `23-ea-3-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-3-jdk-oracle`, `23-ea-3-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-3-jdk-oraclelinux7`, `23-ea-3-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-3-jdk-bookworm`, `23-ea-3-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/bookworm/Dockerfile) +- [`23-ea-3-jdk-slim-bookworm`, `23-ea-3-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-3-jdk-slim`, `23-ea-3-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-3-jdk-bullseye`, `23-ea-3-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/bullseye/Dockerfile) +- [`23-ea-3-jdk-slim-bullseye`, `23-ea-3-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-3-jdk-windowsservercore-ltsc2022`, `23-ea-3-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-3-jdk-windowsservercore-1809`, `23-ea-3-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-3-jdk-nanoserver-1809`, `23-ea-3-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-29-jdk-oraclelinux8`, `22-ea-29-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-29-jdk-oracle`, `22-ea-29-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-29-jdk-oraclelinux7`, `22-ea-29-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-29-jdk-bookworm`, `22-ea-29-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/bookworm/Dockerfile) +- [`22-ea-29-jdk-slim-bookworm`, `22-ea-29-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-29-jdk-slim`, `22-ea-29-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-29-jdk-bullseye`, `22-ea-29-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/bullseye/Dockerfile) +- [`22-ea-29-jdk-slim-bullseye`, `22-ea-29-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-29-jdk-windowsservercore-ltsc2022`, `22-ea-29-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-29-jdk-windowsservercore-1809`, `22-ea-29-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-29-jdk-nanoserver-1809`, `22-ea-29-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-2-jdk`, `23-ea-2`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-2-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-2-jdk-windowsservercore`, `23-ea-2-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-2-jdk-nanoserver`, `23-ea-2-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2f07e3bc7842aec252569a5cbe21c9dce65f6554/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-28-jdk`, `22-ea-28`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-28-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-28-jdk-windowsservercore`, `22-ea-28-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-28-jdk-nanoserver`, `22-ea-28-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4dcc0af633d819ca8c2a6a9ff4ed27293fd99dd9/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-3-jdk`, `23-ea-3`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-3-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-3-jdk-windowsservercore`, `23-ea-3-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-3-jdk-nanoserver`, `23-ea-3-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-29-jdk`, `22-ea-29`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-29-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-29-jdk-windowsservercore`, `22-ea-29-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-29-jdk-nanoserver`, `22-ea-29-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 5aca9dfd9081..5b7a4be71a9a 100644 --- a/php/README.md +++ b/php/README.md @@ -24,90 +24,48 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.1RC3-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.1RC3-bookworm`, `8.3-rc-bookworm`, `8.3.1RC3-cli`, `8.3-rc-cli`, `8.3.1RC3`, `8.3-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.1RC3-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.1RC3-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.1RC3-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.1RC3-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.1RC3-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.1RC3-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.1RC3-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.1RC3-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.1RC3-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.1RC3-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.1RC3-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.1RC3-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.1RC3-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.1RC3-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.1RC3-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.1RC3-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.1RC3-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.1RC3-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.1RC3-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.1RC3-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.0-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.0-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.0-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.0`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/cli/Dockerfile) -- [`8.3.0-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/apache/Dockerfile) -- [`8.3.0-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bookworm/fpm/Dockerfile) -- [`8.3.0-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.0-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/bookworm/zts/Dockerfile) -- [`8.3.0-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.0-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/cli/Dockerfile) -- [`8.3.0-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/apache/Dockerfile) -- [`8.3.0-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/bullseye/fpm/Dockerfile) -- [`8.3.0-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/bullseye/zts/Dockerfile) -- [`8.3.0-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.0-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.0-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.0-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.0-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.0-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.0-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.0-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.0-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.14RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.14RC1-bookworm`, `8.2-rc-bookworm`, `8.2.14RC1-cli`, `8.2-rc-cli`, `8.2.14RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.14RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.14RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.14RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.14RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.14RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.14RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.14RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.14RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.14RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.14RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.14RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.14RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.14RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.14RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.14RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.14RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.14RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.14RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.14RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.14RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.13-cli-bookworm`, `8.2-cli-bookworm`, `8.2.13-bookworm`, `8.2-bookworm`, `8.2.13-cli`, `8.2-cli`, `8.2.13`, `8.2`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/cli/Dockerfile) -- [`8.2.13-apache-bookworm`, `8.2-apache-bookworm`, `8.2.13-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/apache/Dockerfile) -- [`8.2.13-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.13-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bookworm/fpm/Dockerfile) -- [`8.2.13-zts-bookworm`, `8.2-zts-bookworm`, `8.2.13-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/bookworm/zts/Dockerfile) -- [`8.2.13-cli-bullseye`, `8.2-cli-bullseye`, `8.2.13-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/cli/Dockerfile) -- [`8.2.13-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/apache/Dockerfile) -- [`8.2.13-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/bullseye/fpm/Dockerfile) -- [`8.2.13-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/bullseye/zts/Dockerfile) -- [`8.2.13-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.13-alpine3.19`, `8.2-alpine3.19`, `8.2.13-cli-alpine`, `8.2-cli-alpine`, `8.2.13-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.13-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.13-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.13-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.13-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.13-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.13-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.2/alpine3.18/zts/Dockerfile) -- [`8.1.27RC1-cli-bookworm`, `8.1-rc-cli-bookworm`, `8.1.27RC1-bookworm`, `8.1-rc-bookworm`, `8.1.27RC1-cli`, `8.1-rc-cli`, `8.1.27RC1`, `8.1-rc`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/cli/Dockerfile) -- [`8.1.27RC1-apache-bookworm`, `8.1-rc-apache-bookworm`, `8.1.27RC1-apache`, `8.1-rc-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/apache/Dockerfile) -- [`8.1.27RC1-fpm-bookworm`, `8.1-rc-fpm-bookworm`, `8.1.27RC1-fpm`, `8.1-rc-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bookworm/fpm/Dockerfile) -- [`8.1.27RC1-zts-bookworm`, `8.1-rc-zts-bookworm`, `8.1.27RC1-zts`, `8.1-rc-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/bookworm/zts/Dockerfile) -- [`8.1.27RC1-cli-bullseye`, `8.1-rc-cli-bullseye`, `8.1.27RC1-bullseye`, `8.1-rc-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/cli/Dockerfile) -- [`8.1.27RC1-apache-bullseye`, `8.1-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/apache/Dockerfile) -- [`8.1.27RC1-fpm-bullseye`, `8.1-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/bullseye/fpm/Dockerfile) -- [`8.1.27RC1-zts-bullseye`, `8.1-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/bullseye/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.19`, `8.1-rc-cli-alpine3.19`, `8.1.27RC1-alpine3.19`, `8.1-rc-alpine3.19`, `8.1.27RC1-cli-alpine`, `8.1-rc-cli-alpine`, `8.1.27RC1-alpine`, `8.1-rc-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.19`, `8.1-rc-fpm-alpine3.19`, `8.1.27RC1-fpm-alpine`, `8.1-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.19/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.19`, `8.1-rc-zts-alpine3.19`, `8.1.27RC1-zts-alpine`, `8.1-rc-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/alpine3.19/zts/Dockerfile) -- [`8.1.27RC1-cli-alpine3.18`, `8.1-rc-cli-alpine3.18`, `8.1.27RC1-alpine3.18`, `8.1-rc-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/cli/Dockerfile) -- [`8.1.27RC1-fpm-alpine3.18`, `8.1-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1-rc/alpine3.18/fpm/Dockerfile) -- [`8.1.27RC1-zts-alpine3.18`, `8.1-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1-rc/alpine3.18/zts/Dockerfile) -- [`8.1.26-cli-bookworm`, `8.1-cli-bookworm`, `8.1.26-bookworm`, `8.1-bookworm`, `8.1.26-cli`, `8.1-cli`, `8.1.26`, `8.1`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/cli/Dockerfile) -- [`8.1.26-apache-bookworm`, `8.1-apache-bookworm`, `8.1.26-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/apache/Dockerfile) -- [`8.1.26-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.26-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bookworm/fpm/Dockerfile) -- [`8.1.26-zts-bookworm`, `8.1-zts-bookworm`, `8.1.26-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/bookworm/zts/Dockerfile) -- [`8.1.26-cli-bullseye`, `8.1-cli-bullseye`, `8.1.26-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/cli/Dockerfile) -- [`8.1.26-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/apache/Dockerfile) -- [`8.1.26-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/bullseye/fpm/Dockerfile) -- [`8.1.26-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/bullseye/zts/Dockerfile) -- [`8.1.26-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.26-alpine3.19`, `8.1-alpine3.19`, `8.1.26-cli-alpine`, `8.1-cli-alpine`, `8.1.26-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.26-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.26-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/alpine3.19/zts/Dockerfile) -- [`8.1.26-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.26-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.26-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/50c8b1ceaefdaebc4df51322f1e0dc149a1cda15/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.26-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/0bf8430f39517ff94f9045fbf6a5facba6c99515/8.1/alpine3.18/zts/Dockerfile) +- [`8.3.1-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.1-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.1-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.1`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/cli/Dockerfile) +- [`8.3.1-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.1-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/apache/Dockerfile) +- [`8.3.1-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.1-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/fpm/Dockerfile) +- [`8.3.1-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.1-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/zts/Dockerfile) +- [`8.3.1-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.1-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/cli/Dockerfile) +- [`8.3.1-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/apache/Dockerfile) +- [`8.3.1-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/fpm/Dockerfile) +- [`8.3.1-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/zts/Dockerfile) +- [`8.3.1-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.1-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.1-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.1-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.1-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.1-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.1-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.1-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.1-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.1-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.1-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.1-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.14-cli-bookworm`, `8.2-cli-bookworm`, `8.2.14-bookworm`, `8.2-bookworm`, `8.2.14-cli`, `8.2-cli`, `8.2.14`, `8.2`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/cli/Dockerfile) +- [`8.2.14-apache-bookworm`, `8.2-apache-bookworm`, `8.2.14-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/apache/Dockerfile) +- [`8.2.14-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.14-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/fpm/Dockerfile) +- [`8.2.14-zts-bookworm`, `8.2-zts-bookworm`, `8.2.14-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/zts/Dockerfile) +- [`8.2.14-cli-bullseye`, `8.2-cli-bullseye`, `8.2.14-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/cli/Dockerfile) +- [`8.2.14-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/apache/Dockerfile) +- [`8.2.14-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/fpm/Dockerfile) +- [`8.2.14-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/zts/Dockerfile) +- [`8.2.14-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.14-alpine3.19`, `8.2-alpine3.19`, `8.2.14-cli-alpine`, `8.2-cli-alpine`, `8.2.14-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.14-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.14-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.14-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.14-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.14-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.14-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.14-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.14-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/zts/Dockerfile) +- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/cli/Dockerfile) +- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/apache/Dockerfile) +- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/fpm/Dockerfile) +- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/zts/Dockerfile) +- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/cli/Dockerfile) +- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/apache/Dockerfile) +- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/fpm/Dockerfile) +- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/zts/Dockerfile) +- [`8.1.27-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.27-alpine3.19`, `8.1-alpine3.19`, `8.1.27-cli-alpine`, `8.1-cli-alpine`, `8.1.27-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.27-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.27-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.27-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.27-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.27-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.27-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.27-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.27-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index d0f868854af5..30c9611d6f06 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`3.10-7.3.13-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.13-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bookworm/Dockerfile) -- [`3.10-7.3.13-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.13-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.13-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.13-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bullseye/Dockerfile) -- [`3.10-7.3.13-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.13-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.13-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.13-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.13-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.13-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.13-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.13-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.13-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bookworm/Dockerfile) -- [`3.9-7.3.13-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.13-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bullseye/Dockerfile) -- [`3.9-7.3.13-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.13-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.13-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.13-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.13-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.13-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bookworm/Dockerfile) -- [`2.7-7.3.13-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.13-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.13-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.13-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) -- [`2.7-7.3.13-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.13-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.13-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.13-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.13-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.13-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.13-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.13-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.14-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.14-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bookworm/Dockerfile) +- [`3.10-7.3.14-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.14-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.14-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.14-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bullseye/Dockerfile) +- [`3.10-7.3.14-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.14-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.14-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.14-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.14-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.14-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.14-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.14-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.14-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bookworm/Dockerfile) +- [`3.9-7.3.14-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.14-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bullseye/Dockerfile) +- [`3.9-7.3.14-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.14-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.14-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.14-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.14-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.14-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bookworm/Dockerfile) +- [`2.7-7.3.14-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.14-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.14-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.14-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bullseye/Dockerfile) +- [`2.7-7.3.14-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.14-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.14-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.14-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.14-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.14-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.14-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.14-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.10-7.3.13`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.13`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/bullseye/Dockerfile) - - [`3.10-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.13-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.13-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5e62c69facf8055515e337881b91a51050c02bdb/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.13`, `3.9-7.3`, `3.9-7`, `3.9`: - - [`3.9-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/eb44bfb226b37bf5e8f73d845f74c98742db637a/3.9/bullseye/Dockerfile) - - [`3.9-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.13-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - - [`3.9-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/004f772ff2b54b5eb70a83babb2b1e49b3831df3/3.9/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.13`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.13`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.13-bullseye`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/bullseye/Dockerfile) - - [`2.7-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.13-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.13-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.13-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/aa454a51687d87368d17c300dd06e4916ab4c539/2.7/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.14`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.14`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bullseye/Dockerfile) + - [`3.10-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.14-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.14-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.14`, `3.9-7.3`, `3.9-7`, `3.9`: + - [`3.9-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bullseye/Dockerfile) + - [`3.9-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.14-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: + - [`3.9-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.14`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.14`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bullseye/Dockerfile) + - [`2.7-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.14-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.14-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 12ccaa742497..2601aaa1f570 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.0-rc.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/00e4d971adc2fb074b22e908fac4eb637ccb414c/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.10`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/986a970fcf1135300bddc78c15d84cde14a08b61/3.12/ubuntu/Dockerfile) -- [`3.12.10-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.10-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/986a970fcf1135300bddc78c15d84cde14a08b61/3.12/alpine/Dockerfile) -- [`3.12.10-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.11`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/ubuntu/Dockerfile) +- [`3.12.11-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.11-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/alpine/Dockerfile) +- [`3.12.11-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/ubuntu/Dockerfile) - [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/alpine/Dockerfile) From 2a98480ca813c23af12ccc3a79b5ea6449d5d554 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Dec 2023 15:18:30 -0800 Subject: [PATCH 0838/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/README.md b/rust/README.md index d1182a554c00..9522ceff8640 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.74-buster`, `1.74.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/buster/Dockerfile) -- [`1-slim-buster`, `1.74-slim-buster`, `1.74.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.74-bullseye`, `1.74.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.74-slim-bullseye`, `1.74.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.74-bookworm`, `1.74.1-bookworm`, `bookworm`, `1`, `1.74`, `1.74.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.74-slim-bookworm`, `1.74.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.74-slim`, `1.74.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/bookworm/slim/Dockerfile) -- [`1-alpine3.17`, `1.74-alpine3.17`, `1.74.1-alpine3.17`, `alpine3.17`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/alpine3.17/Dockerfile) -- [`1-alpine3.18`, `1.74-alpine3.18`, `1.74.1-alpine3.18`, `alpine3.18`, `1-alpine`, `1.74-alpine`, `1.74.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/71bff4a1e2962366266f94bc2ea821e4b1ee7a23/1.74.1/alpine3.18/Dockerfile) +- [`1-buster`, `1.75-buster`, `1.75.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/Dockerfile) +- [`1-slim-buster`, `1.75-slim-buster`, `1.75.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.75-bullseye`, `1.75.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.75-slim-bullseye`, `1.75.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.75-bookworm`, `1.75.0-bookworm`, `bookworm`, `1`, `1.75`, `1.75.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.75-slim-bookworm`, `1.75.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.75-slim`, `1.75.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.75-alpine3.18`, `1.75.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.75-alpine3.19`, `1.75.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.75-alpine`, `1.75.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e7f8ab58b3feca354792122f4df6624e291c404b/1.75.0/alpine3.19/Dockerfile) # Quick reference (cont.) From 8a407edfba4c9c93005afcbd084cb6b177b1a214 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 30 Dec 2023 00:18:12 -0800 Subject: [PATCH 0839/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 3b18728f45c1..2f04317b833c 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.2`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.2-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.2-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.2-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/aa1b428676a0796e57ffc3285de545b4ad343bbc/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.3`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.3-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.3-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.3-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From 12b209219d5e7b78364391e40c7afd06748e4085 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jan 2024 12:18:04 -0800 Subject: [PATCH 0840/2686] Run update.sh --- archlinux/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 34e92c100a10..b4d16226e4cd 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,8 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20231112.0.191179`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9e3e5066b444021f47836449f6a9d89d0cf5861a/Dockerfile.base) -- [`base-devel`, `base-devel-20231112.0.191179`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9e3e5066b444021f47836449f6a9d89d0cf5861a/Dockerfile.base-devel) +- [`latest`, `base`, `base-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base) +- [`base-devel`, `base-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base-devel) +- [`multilib-devel`, `multilib-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.multilib-devel) # Quick reference (cont.) From a54f7117565389dd70cb8567d0d35096e63ff03e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jan 2024 13:09:35 -0800 Subject: [PATCH 0841/2686] Run update.sh --- clearlinux/README.md | 2 +- perl/README.md | 80 ++++++++++++++++++++++---------------------- photon/README.md | 2 +- ubuntu/README.md | 2 +- 4 files changed, 43 insertions(+), 43 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index a70b5542b9b2..6ff79f5dacd2 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8a0f3d59372d004ddf94581442dd7577c9b554bf/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dc6a516cae38c61d549241c4ab939bc5d062273d/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index a7b90c71ecef..d8df50d1ab13 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.5`, `5.39`, `devel`, `5.39.5-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main-bookworm/Dockerfile) -- [`5.39.5-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main-bullseye/Dockerfile) -- [`5.39.5-slim`, `5.39-slim`, `devel-slim`, `5.39.5-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim-bookworm/Dockerfile) -- [`5.39.5-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim-bullseye/Dockerfile) -- [`5.39.5-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.5-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main,threaded-bookworm/Dockerfile) -- [`5.39.5-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-main,threaded-bullseye/Dockerfile) -- [`5.39.5-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.5-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim,threaded-bookworm/Dockerfile) -- [`5.39.5-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d4bf515746cb4def43686b50a1ddd87c476cfee5/5.039.005-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.6`, `5.39`, `devel`, `5.39.6-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main-bookworm/Dockerfile) +- [`5.39.6-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main-bullseye/Dockerfile) +- [`5.39.6-slim`, `5.39-slim`, `devel-slim`, `5.39.6-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim-bookworm/Dockerfile) +- [`5.39.6-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim-bullseye/Dockerfile) +- [`5.39.6-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.6-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main,threaded-bookworm/Dockerfile) +- [`5.39.6-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main,threaded-bullseye/Dockerfile) +- [`5.39.6-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.6-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim,threaded-bookworm/Dockerfile) +- [`5.39.6-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index f092d0de7fc6..a5e2996ecce2 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20231216`, `latest`](https://github.com/vmware/photon-docker-image/blob/cc9701b1e18cebc928f3737cc1573aa88462f610/docker/Dockerfile) -- [`4.0`, `4.0-20231223`](https://github.com/vmware/photon-docker-image/blob/86c1980fc8bd4622666aa878f43a6332664814fe/docker/Dockerfile) +- [`4.0`, `4.0-20231230`](https://github.com/vmware/photon-docker-image/blob/9acebe9db4af2a41ccfc90a2b712df378ccc9558/docker/Dockerfile) - [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 589ed3d3b0b8..b73ae43922b7 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,7 +28,7 @@ WARNING: - [`22.04`, `jammy-20231211.1`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231211.1-688af4b1&id=688af4b17cff5f46798923b58dca3922c9dceed7) - [`23.04`, `lunar-20231128`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231128-1e15482a&id=1e15482adc1232275aec0e3566d81c6dd033ab2f) - [`23.10`, `mantic-20231128`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231128-f8f436b9&id=f8f436b92c9e971f61f0bf30d27ac4dda209703a) -- [`24.04`, `noble-20231214`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231214-fa343037&id=fa34303717c5b27d6b269d5a909703c3cc2c9492) +- [`24.04`, `noble-20231221`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231221-ca3b3e0c&id=ca3b3e0c03ddaec7895273977a1d0e25ac5cbf71) # Quick reference (cont.) From 9bcc8548ce57cff04d15fa912a5c99170d6a612a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jan 2024 10:09:49 -0800 Subject: [PATCH 0842/2686] Run update.sh --- cassandra/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index b5cc8b76956d..2dbb9ce54866 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-beta1`, `5.0`, `5`](https://github.com/docker-library/cassandra/blob/8313dd9e2e5d049117c1aa190494702f5ee60c83/5.0/Dockerfile) -- [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) -- [`4.0.11`, `4.0`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) -- [`3.11.16`, `3.11`, `3`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) -- [`3.0.29`, `3.0`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) +- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/cassandra/blob/8313dd9e2e5d049117c1aa190494702f5ee60c83/5.0/Dockerfile) +- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-focal`, `4.1-focal`, `4-focal`, `focal`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) +- [`4.0.11`, `4.0`, `4.0.11-focal`, `4.0-focal`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) +- [`3.11.16`, `3.11`, `3`, `3.11.16-focal`, `3.11-focal`, `3-focal`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) +- [`3.0.29`, `3.0`, `3.0.29-focal`, `3.0-focal`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) # Quick reference (cont.) From c4119a86b981d72b83e469df24585dcfce2d2171 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jan 2024 17:19:57 -0800 Subject: [PATCH 0843/2686] Run update.sh --- elixir/README.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index 765a954fc14d..3c1fa257c6ea 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -61,21 +61,6 @@ WARNING: - [`1.12.3`, `1.12`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/Dockerfile) - [`1.12.3-slim`, `1.12-slim`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/slim/Dockerfile) - [`1.12.3-alpine`, `1.12-alpine`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/alpine/Dockerfile) -- [`1.11.4`, `1.11`](https://github.com/erlef/docker-elixir/blob/045351a425a16578309053fa8f729f046fcd616f/1.11/Dockerfile) -- [`1.11.4-slim`, `1.11-slim`](https://github.com/erlef/docker-elixir/blob/045351a425a16578309053fa8f729f046fcd616f/1.11/slim/Dockerfile) -- [`1.11.4-alpine`, `1.11-alpine`](https://github.com/erlef/docker-elixir/blob/045351a425a16578309053fa8f729f046fcd616f/1.11/alpine/Dockerfile) -- [`1.10.4`, `1.10`](https://github.com/erlef/docker-elixir/blob/a8d582c328db5864a4e8e5f869900e3a52265f38/1.10/Dockerfile) -- [`1.10.4-slim`, `1.10-slim`](https://github.com/erlef/docker-elixir/blob/a8d582c328db5864a4e8e5f869900e3a52265f38/1.10/slim/Dockerfile) -- [`1.10.4-alpine`, `1.10-alpine`](https://github.com/erlef/docker-elixir/blob/a8d582c328db5864a4e8e5f869900e3a52265f38/1.10/alpine/Dockerfile) -- [`1.9.4`, `1.9`](https://github.com/erlef/docker-elixir/blob/0d9f47458468a8bf1407374731cbec077ab6f895/1.9/Dockerfile) -- [`1.9.4-slim`, `1.9-slim`](https://github.com/erlef/docker-elixir/blob/0d9f47458468a8bf1407374731cbec077ab6f895/1.9/slim/Dockerfile) -- [`1.9.4-alpine`, `1.9-alpine`](https://github.com/erlef/docker-elixir/blob/0d9f47458468a8bf1407374731cbec077ab6f895/1.9/alpine/Dockerfile) -- [`1.8.2`, `1.8`](https://github.com/erlef/docker-elixir/blob/4122b4840bd762d1434424e1ec693929b0198c98/1.8/Dockerfile) -- [`1.8.2-slim`, `1.8-slim`](https://github.com/erlef/docker-elixir/blob/4122b4840bd762d1434424e1ec693929b0198c98/1.8/slim/Dockerfile) -- [`1.8.2-otp-22`, `1.8-otp-22`](https://github.com/erlef/docker-elixir/blob/6dc5ffd3b4c2915096887b45ba8e71d391ce2398/1.8/otp-22/Dockerfile) -- [`1.8.2-otp-22-alpine`, `1.8-otp-22-alpine`](https://github.com/erlef/docker-elixir/blob/6dc5ffd3b4c2915096887b45ba8e71d391ce2398/1.8/otp-22-alpine/Dockerfile) -- [`1.7.4`, `1.7`](https://github.com/erlef/docker-elixir/blob/2b7dd2845d27a6dad57bf0047b305375d6182402/1.7/Dockerfile) -- [`1.7.4-slim`, `1.7-slim`](https://github.com/erlef/docker-elixir/blob/7c1f05ca3fd47bdc86cab3f0310068646a31dcac/1.7/slim/Dockerfile) # Quick reference (cont.) From 4cb1a80d79df61e51d801e754dbba47b37ae0fe5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jan 2024 18:18:59 -0800 Subject: [PATCH 0844/2686] Run update.sh --- sl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sl/README.md b/sl/README.md index f90d4c57ebfa..a4041332a3c8 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/23af0ec7e93c42bc54c09b01d6d9fe4fe16fa872/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ab716f7772bdd6ae7eeab4c4ead2402491c960e2/sl7/Dockerfile) # Quick reference (cont.) From 47621e0830e75b74715d1513cc5dc175aa63b76c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jan 2024 11:20:17 -0800 Subject: [PATCH 0845/2686] Run update.sh --- emqx/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index e1b62ff03e0d..2b9b8001dde0 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.26`, `5.0`](https://github.com/emqx/emqx-docker/blob/5fa7e9eac34517170ade58660cb65e5a5870c783/5.0/Dockerfile) - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) -- [`5.3.2`, `5.3`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) +- [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) +- [`5.4.0`, `5.4`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/753e8c47442682d4b96dbd280f0a6d44ca09a5fa/5.4/Dockerfile) # Quick reference (cont.) From 290e753e5452ff2a403d87de3ee79d872434548a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jan 2024 12:18:37 -0800 Subject: [PATCH 0846/2686] Run update.sh --- rocket.chat/README.md | 6 +++--- traefik/README.md | 5 +++++ xwiki/README.md | 6 +++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 970899be580a..9efddd3c609d 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.2`, `6.4`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/410f2d1e90a88b01a4ebd7939dd32c943a10965a/6.4/Dockerfile) -- [`6.3.10`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/b73be519a9f4b22e58905885790c17dbcca19bc7/6.3/Dockerfile) -- [`6.2.12`, `6.2`](https://github.com/RocketChat/Docker.Official.Image/blob/ee9c8a148b353c14ecc1225598c60a0f98ebf07b/6.2/Dockerfile) +- [`6.5.2`, `6.5`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb09fece013b05ce7c0d8a42b646543a75fda57a/6.5/Dockerfile) +- [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) +- [`6.3.12`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.3/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 963bcf240157..1b7b1ac710f1 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,8 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`v3.0.0-beta5-windowsservercore-ltsc2022`, `3.0.0-beta5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/servercore-ltsc2022/Dockerfile) - [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) - [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) +- [`v2.11.0-rc1-windowsservercore-ltsc2022`, `2.11.0-rc1-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.0-rc1-windowsservercore-1809`, `2.11.0-rc1-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/windows/1809/Dockerfile) +- [`v2.11.0-rc1`, `2.11.0-rc1`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/alpine/Dockerfile) +- [`v2.10.7-windowsservercore-ltsc2022`, `2.10.7-windowsservercore-ltsc2022`, `v2.10-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `saintmarcelin-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/servercore-ltsc2022/Dockerfile) - [`v2.10.7-windowsservercore-1809`, `2.10.7-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/1809/Dockerfile) - [`v2.10.7`, `2.10.7`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 2f04317b833c..014b8c96440e 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.3`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.3-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.3-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.3-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c1d4a93a774303349b6b36ea938f607b93669ac8/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.4`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.4-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.4-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.4-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From da50faddfc85f463a18d6c4e2b868f73856daf54 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jan 2024 16:09:33 -0800 Subject: [PATCH 0847/2686] Run update.sh --- cassandra/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 2dbb9ce54866..159974f31fb6 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/cassandra/blob/8313dd9e2e5d049117c1aa190494702f5ee60c83/5.0/Dockerfile) -- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-focal`, `4.1-focal`, `4-focal`, `focal`](https://github.com/docker-library/cassandra/blob/44614387cda4278e477056c24cde3070f679a32a/4.1/Dockerfile) -- [`4.0.11`, `4.0`, `4.0.11-focal`, `4.0-focal`](https://github.com/docker-library/cassandra/blob/b57fae57e886db7b46c0851ed761b6b0a260f065/4.0/Dockerfile) -- [`3.11.16`, `3.11`, `3`, `3.11.16-focal`, `3.11-focal`, `3-focal`](https://github.com/docker-library/cassandra/blob/76e413ded2e5eb2c61d97296d01400d2fff2d6d5/3.11/Dockerfile) -- [`3.0.29`, `3.0`, `3.0.29-focal`, `3.0-focal`](https://github.com/docker-library/cassandra/blob/0472adffa9e3b3361f2dbe4b089592d1cb84d36d/3.0/Dockerfile) +- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/2c12419510e30fb7fbacf4b1e3da31dc464d925a/5.0/Dockerfile) +- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/8cdda79acc014840c36161dfad2f5d4368e778a6/4.1/Dockerfile) +- [`4.0.11`, `4.0`, `4.0.11-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/66348dba5ed2ea13d9d5a7ff6c0b51f2383d012b/4.0/Dockerfile) +- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/a1e2446ab30903f6a21e1c06831a45ab763f2719/3.11/Dockerfile) +- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/6e4848e04a9f6f36e7e03e99cc3087bbf7ccb49f/3.0/Dockerfile) # Quick reference (cont.) From 5058536ea80d402176f422aa9f170c9ff9af5bb2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jan 2024 17:20:12 -0800 Subject: [PATCH 0848/2686] Run update.sh --- drupal/README.md | 84 +++++++++++++++++++++--------------------------- 1 file changed, 36 insertions(+), 48 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index c590d2396455..b95f646e156f 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,54 +24,42 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.0-rc1-php8.3-apache-bookworm`, `10.2-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `10.2.0-rc1-php8.3-apache`, `10.2-rc-php8.3-apache`, `rc-php8.3-apache`, `10.2.0-rc1-php8.3`, `10.2-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/apache-bookworm/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-bookworm`, `10.2-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `10.2.0-rc1-php8.3-fpm`, `10.2-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.0-rc1-php8.3-apache-bullseye`, `10.2-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/apache-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-bullseye`, `10.2-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-alpine3.19`, `10.2-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`, `10.2.0-rc1-php8.3-fpm-alpine`, `10.2-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.2-rc/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.0-rc1-php8.3-fpm-alpine3.18`, `10.2-rc-php8.3-fpm-alpine3.18`, `rc-php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.0-rc1-php8.2-apache-bookworm`, `10.2-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `10.2.0-rc1-php8.2-apache`, `10.2-rc-php8.2-apache`, `rc-php8.2-apache`, `10.2.0-rc1-php8.2`, `10.2-rc-php8.2`, `rc-php8.2`, `10.2.0-rc1-apache-bookworm`, `10.2-rc-apache-bookworm`, `rc-apache-bookworm`, `10.2.0-rc1-apache`, `10.2-rc-apache`, `rc-apache`, `10.2.0-rc1`, `10.2-rc`, `rc`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bookworm/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-bookworm`, `10.2-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `10.2.0-rc1-php8.2-fpm`, `10.2-rc-php8.2-fpm`, `rc-php8.2-fpm`, `10.2.0-rc1-fpm-bookworm`, `10.2-rc-fpm-bookworm`, `rc-fpm-bookworm`, `10.2.0-rc1-fpm`, `10.2-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.0-rc1-php8.2-apache-bullseye`, `10.2-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `10.2.0-rc1-apache-bullseye`, `10.2-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/apache-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-bullseye`, `10.2-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `10.2.0-rc1-fpm-bullseye`, `10.2-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-alpine3.19`, `10.2-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `10.2.0-rc1-php8.2-fpm-alpine`, `10.2-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `10.2.0-rc1-fpm-alpine3.19`, `10.2-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`, `10.2.0-rc1-fpm-alpine`, `10.2-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.2-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.0-rc1-php8.2-fpm-alpine3.18`, `10.2-rc-php8.2-fpm-alpine3.18`, `rc-php8.2-fpm-alpine3.18`, `10.2.0-rc1-fpm-alpine3.18`, `10.2-rc-fpm-alpine3.18`, `rc-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9df694cb38d4ed1e62cd3b5738f7e48bdf589ca8/10.2-rc/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10-php8.2`, `php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10-apache`, `apache`, `10.1.7`, `10.1`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.7-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.1.7-fpm-bullseye`, `10.1-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.1/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10-php8.1-apache-bookworm`, `php8.1-apache-bookworm`, `10.1.7-php8.1-apache`, `10.1-php8.1-apache`, `10-php8.1-apache`, `php8.1-apache`, `10.1.7-php8.1`, `10.1-php8.1`, `10-php8.1`, `php8.1`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.7-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10-php8.1-fpm-bookworm`, `php8.1-fpm-bookworm`, `10.1.7-php8.1-fpm`, `10.1-php8.1-fpm`, `10-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.7-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`, `10-php8.1-apache-bullseye`, `php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.7-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`, `10-php8.1-fpm-bullseye`, `php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10-php8.1-fpm-alpine3.19`, `php8.1-fpm-alpine3.19`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`, `10-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.1/php8.1/fpm-alpine3.19/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`, `10-php8.1-fpm-alpine3.18`, `php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d8a9e1385f52c55524e95c1e40d315a78fa2ad0a/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`10.0.11-php8.2-apache-bookworm`, `10.0-php8.2-apache-bookworm`, `10.0.11-php8.2-apache`, `10.0-php8.2-apache`, `10.0.11-php8.2`, `10.0-php8.2`, `10.0.11-apache-bookworm`, `10.0-apache-bookworm`, `10.0.11-apache`, `10.0-apache`, `10.0.11`, `10.0`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bookworm/Dockerfile) -- [`10.0.11-php8.2-fpm-bookworm`, `10.0-php8.2-fpm-bookworm`, `10.0.11-php8.2-fpm`, `10.0-php8.2-fpm`, `10.0.11-fpm-bookworm`, `10.0-fpm-bookworm`, `10.0.11-fpm`, `10.0-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bookworm/Dockerfile) -- [`10.0.11-php8.2-apache-bullseye`, `10.0-php8.2-apache-bullseye`, `10.0.11-apache-bullseye`, `10.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/apache-bullseye/Dockerfile) -- [`10.0.11-php8.2-fpm-bullseye`, `10.0-php8.2-fpm-bullseye`, `10.0.11-fpm-bullseye`, `10.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.2/fpm-bullseye/Dockerfile) -- [`10.0.11-php8.2-fpm-alpine3.19`, `10.0-php8.2-fpm-alpine3.19`, `10.0.11-php8.2-fpm-alpine`, `10.0-php8.2-fpm-alpine`, `10.0.11-fpm-alpine3.19`, `10.0-fpm-alpine3.19`, `10.0.11-fpm-alpine`, `10.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.0/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.0.11-php8.2-fpm-alpine3.18`, `10.0-php8.2-fpm-alpine3.18`, `10.0.11-fpm-alpine3.18`, `10.0-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.0.11-php8.1-apache-bookworm`, `10.0-php8.1-apache-bookworm`, `10.0.11-php8.1-apache`, `10.0-php8.1-apache`, `10.0.11-php8.1`, `10.0-php8.1`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bookworm/Dockerfile) -- [`10.0.11-php8.1-fpm-bookworm`, `10.0-php8.1-fpm-bookworm`, `10.0.11-php8.1-fpm`, `10.0-php8.1-fpm`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bookworm/Dockerfile) -- [`10.0.11-php8.1-apache-bullseye`, `10.0-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/apache-bullseye/Dockerfile) -- [`10.0.11-php8.1-fpm-bullseye`, `10.0-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/02cf2c3f47b50105c8e72711725ba5b5eb0b0620/10.0/php8.1/fpm-bullseye/Dockerfile) -- [`10.0.11-php8.1-fpm-alpine3.19`, `10.0-php8.1-fpm-alpine3.19`, `10.0.11-php8.1-fpm-alpine`, `10.0-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/10.0/php8.1/fpm-alpine3.19/Dockerfile) -- [`10.0.11-php8.1-fpm-alpine3.18`, `10.0-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/8c04f5ce4313f395be9c5d1c37841d17c121068e/10.0/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bookworm/Dockerfile) -- [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/apache-bullseye/Dockerfile) -- [`7.99-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.2/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.99-php8.1-apache`, `7-php8.1-apache`, `7.99-php8.1`, `7-php8.1`, `7.99-apache-bookworm`, `7-apache-bookworm`, `7.99-apache`, `7-apache`, `7.99`, `7`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bookworm/Dockerfile) -- [`7.99-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.99-php8.1-fpm`, `7-php8.1-fpm`, `7.99-fpm-bookworm`, `7-fpm-bookworm`, `7.99-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.99-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.99-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/apache-bullseye/Dockerfile) -- [`7.99-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.99-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/4d1c7410bcc2f4704a8a83274c5297168be410c0/7/php8.1/fpm-alpine3.19/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/aca1a7c1e60fc9ea8e28930e309bfa8233ade7a3/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.2.0-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.0-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.0-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.0-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.0-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.0-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.0-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.0-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.0-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.0-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.0-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.0-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.0-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.0-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.0-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.0`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.0-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.0-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.0-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.0-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.0-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.0-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.0-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.0-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.0-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.0-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.0-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.0-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.0-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.0-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10.1.7`, `10.1`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.7-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.7-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.7-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.7-php8.1-apache`, `10.1-php8.1-apache`, `10.1.7-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.7-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.7-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.7-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.7-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bookworm/Dockerfile) +- [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bullseye/Dockerfile) +- [`7.99-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-alpine3.18/Dockerfile) +- [`7.99-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.99-php8.1-apache`, `7-php8.1-apache`, `7.99-php8.1`, `7-php8.1`, `7.99-apache-bookworm`, `7-apache-bookworm`, `7.99-apache`, `7-apache`, `7.99`, `7`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/apache-bookworm/Dockerfile) +- [`7.99-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.99-php8.1-fpm`, `7-php8.1-fpm`, `7.99-fpm-bookworm`, `7-fpm-bookworm`, `7.99-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.99-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.99-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/apache-bullseye/Dockerfile) +- [`7.99-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.99-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-alpine3.18/Dockerfile) # Quick reference (cont.) From d5835c021d957f15360a3458d318055b0dc6a47e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Jan 2024 12:18:39 -0800 Subject: [PATCH 0849/2686] Run update.sh --- buildpack-deps/README.md | 3 + clojure/README.md | 146 +++++++++++++++++++-------------------- mongo/README.md | 45 ++++-------- odoo/README.md | 6 +- 4 files changed, 94 insertions(+), 106 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 68b69de2a19e..4096ff0c7371 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -51,6 +51,9 @@ WARNING: - [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) - [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/scm/Dockerfile) - [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/Dockerfile) +- [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/curl/Dockerfile) +- [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/scm/Dockerfile) +- [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index cfc2e6e5a9e2..2b2e5f5fbaa1 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,79 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1429-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1429-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1429-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1429-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1429`, `temurin-8-tools-deps-1.11.1.1429-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1429-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1429-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1429-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1429-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1429`, `temurin-11-tools-deps-1.11.1.1429-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1429-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1429-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1429-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1429-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1429`, `temurin-17-tools-deps-1.11.1.1429-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1429-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1429`, `temurin-21-tools-deps-1.11.1.1429-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1429`, `tools-deps-1.11.1.1429-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1429-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1429-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1429-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1429-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1429-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1429-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1429-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/38586acbc098f11ddc81f3390334ab223111d633/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 0c2a822504a7..c1a75b408c4f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -48,16 +48,11 @@ WARNING: - [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.27-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4-rc/Dockerfile) -- [`4.4.27-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.27-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.27-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.27-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.26-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4/Dockerfile) -- [`4.4.26-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.26-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.26-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.26-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-1809/Dockerfile) +- [`4.4.27-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) +- [`4.4.27-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.27-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.27-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.27-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -101,26 +96,16 @@ WARNING: - `5.0.23-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.27-rc0`, `4.4-rc`: - - [`4.4.27-rc0-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4-rc/Dockerfile) - - [`4.4.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.27-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.27-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.27-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.27-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/27228fa6ab7be25d09fb5d943961e7af5660cfbc/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.26`, `4.4`, `4`: - - [`4.4.26-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/4.4/Dockerfile) - - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.26-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.26-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.26-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0a507f2c70d7030627187bd0c43fe932bc467e82/4.4/windows/nanoserver-1809/Dockerfile) +- `4.4.27`, `4.4`, `4`: + - [`4.4.27-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) + - [`4.4.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.27-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.27-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index ebad5db27346..a90e61105337 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/24b54cae6708b2b13a8c92c9eb48f1465628f068/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/15.0/Dockerfile) # Quick reference (cont.) From 731f39995832b59b7c25cb8654e0afd65c76e41d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Jan 2024 17:20:45 -0800 Subject: [PATCH 0850/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- postgres/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docker/README.md b/docker/README.md index 181bc2f5f043..ca3f786576f2 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`25.0.0-beta.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-beta.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3a0424834732f20142291cdd1d392e6d860af2ad/25-rc/cli/Dockerfile) -- [`25.0.0-beta.3-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-beta.3-dind-alpine3.19`, `25.0.0-beta.3`, `25-rc`, `rc`, `25.0.0-beta.3-alpine3.19`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/dind/Dockerfile) -- [`25.0.0-beta.3-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-beta.3-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-beta.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-beta.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3a0424834732f20142291cdd1d392e6d860af2ad/24/cli/Dockerfile) +- [`25.0.0-rc.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/cli/Dockerfile) +- [`25.0.0-rc.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.1-dind-alpine3.19`, `25.0.0-rc.1`, `25-rc`, `rc`, `25.0.0-rc.1-alpine3.19`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/dind/Dockerfile) +- [`25.0.0-rc.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-rc.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-rc.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-rc.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c40845fc737959146e92791751def871ab40119e/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `25.0.0-beta.3-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-beta.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-beta.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8f1087c09b815115f53db74db38c12ae58c2b00b/25-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.0-rc.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index ed7683f916e0..add865a46776 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/16/bookworm/Dockerfile) -- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/16/bullseye/Dockerfile) -- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/16/alpine3.19/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/16/alpine3.18/Dockerfile) -- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/15/bookworm/Dockerfile) -- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/15/bullseye/Dockerfile) -- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/15/alpine3.19/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/15/alpine3.18/Dockerfile) -- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/14/bookworm/Dockerfile) -- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/14/bullseye/Dockerfile) -- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/14/alpine3.19/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/14/alpine3.18/Dockerfile) -- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/13/bookworm/Dockerfile) -- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/13/bullseye/Dockerfile) -- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/13/alpine3.19/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/13/alpine3.18/Dockerfile) -- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/12/bookworm/Dockerfile) -- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/c86568af4a6861cb30b8f1b736b0868a3129bdd6/12/bullseye/Dockerfile) -- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/12/alpine3.19/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/31aed10dbe490c13e5ca889897ee01ef3e1b91e2/12/alpine3.18/Dockerfile) +- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/16/bookworm/Dockerfile) +- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/16/bullseye/Dockerfile) +- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/16/alpine3.19/Dockerfile) +- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/16/alpine3.18/Dockerfile) +- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/15/bookworm/Dockerfile) +- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/15/bullseye/Dockerfile) +- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/15/alpine3.19/Dockerfile) +- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/15/alpine3.18/Dockerfile) +- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/14/bookworm/Dockerfile) +- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/14/bullseye/Dockerfile) +- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/14/alpine3.19/Dockerfile) +- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/14/alpine3.18/Dockerfile) +- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/13/bookworm/Dockerfile) +- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/13/bullseye/Dockerfile) +- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/13/alpine3.19/Dockerfile) +- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/13/alpine3.18/Dockerfile) +- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/12/bookworm/Dockerfile) +- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/12/bullseye/Dockerfile) +- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/12/alpine3.19/Dockerfile) +- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/12/alpine3.18/Dockerfile) # Quick reference (cont.) From d1c04a8264d61ce1c9ecae5f7e580954cedb2735 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jan 2024 09:18:17 -0800 Subject: [PATCH 0851/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 2601aaa1f570..c5f54fb7d2d3 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.3`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/00e4d971adc2fb074b22e908fac4eb637ccb414c/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-rc.3-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/00e4d971adc2fb074b22e908fac4eb637ccb414c/3.13-rc/alpine/Dockerfile) -- [`3.13.0-rc.3-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/38dfee76aca22741e236c2496894c0c197fca018/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/38dfee76aca22741e236c2496894c0c197fca018/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.11`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/ubuntu/Dockerfile) - [`3.12.11-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.11-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/alpine/Dockerfile) From 8b730e7ff538116a3c0cbe78663dbe8d6c9eb48f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jan 2024 16:09:31 -0800 Subject: [PATCH 0852/2686] Run update.sh --- drupal/README.md | 24 ++++----- ghost/README.md | 4 +- haskell/README.md | 12 ++--- hylang/README.md | 84 +++++++++++++++--------------- influxdb/README.md | 32 ++++++------ matomo/README.md | 6 +-- mongo-express/README.md | 8 +-- php/README.md | 112 +++++++++++++++++++++++++--------------- rabbitmq/README.md | 8 +-- 9 files changed, 159 insertions(+), 131 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index b95f646e156f..a71c7b2648e3 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.0-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.0-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.0-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.0-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.0-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.0-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.0-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.0-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.0-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.0-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.0-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.0-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.0-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.0-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.0-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.0`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.0-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.0-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.0-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.0-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.0-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.0-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.0-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.0-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.0-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.0-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.0-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.0-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.0-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.0-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.1-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.1-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.1-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.1-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.1-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.1-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.1-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.1-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.1-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.1-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.1-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.1-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.1-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.1-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.1-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.1`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.1-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.1-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.1-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.1-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.1-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.1-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.1-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.1-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.1-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.1-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.1-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.1-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.1-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.1-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10.1.7`, `10.1`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bullseye/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 98db2eb60368..cf438a3fba5f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.75.2`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/835436c2ad4d58e0c48c27db6d0b5bdc8f64a4ba/5/debian/Dockerfile) -- [`5.75.2-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/835436c2ad4d58e0c48c27db6d0b5bdc8f64a4ba/5/alpine/Dockerfile) +- [`5.75.3`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4bc4a3be710e4f897989ff16f4685fb62730b6c2/5/debian/Dockerfile) +- [`5.75.3-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4bc4a3be710e4f897989ff16f4685fb62730b6c2/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 96fe9f5952ca..7b0cb00425ee 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/30f9d37242fd2ab6a8cf23e546a26b56a0d2636c/9.8/buster/Dockerfile) -- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/30f9d37242fd2ab6a8cf23e546a26b56a0d2636c/9.8/slim-buster/Dockerfile) -- [`9.6.3-buster`, `9.6-buster`, `9.6.3`, `9.6`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/buster/Dockerfile) -- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9.6.3-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/9bf57e9b736ce1d32fbccbc30f88a48c9e221225/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/feaa69933c38c47f92e58aa6e7346c8865c1a9f3/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/feaa69933c38c47f92e58aa6e7346c8865c1a9f3/9.4/slim-buster/Dockerfile) +- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/buster/Dockerfile) +- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/slim-buster/Dockerfile) +- [`9.6.3-buster`, `9.6-buster`, `9.6.3`, `9.6`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.6/buster/Dockerfile) +- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9.6.3-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) diff --git a/hylang/README.md b/hylang/README.md index 982d3f52a186..a5b4154e1ffd 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.27.0-python3.12-bookworm`, `0.27-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.27.0-bookworm`, `0.27-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.27.0-python3.12-bullseye`, `0.27-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.27.0-bullseye`, `0.27-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.27.0-python3.12-alpine3.19`, `0.27-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.27.0-alpine3.19`, `0.27-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.27.0-python3.12-alpine`, `0.27-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.27.0-alpine`, `0.27-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.27.0-python3.12-alpine3.18`, `0.27-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.27.0-alpine3.18`, `0.27-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) -- [`0.27.0-python3.11-bookworm`, `0.27-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.27.0-python3.11-bullseye`, `0.27-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.27.0-python3.11-alpine3.19`, `0.27-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.27.0-python3.11-alpine`, `0.27-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.27.0-python3.11-alpine3.18`, `0.27-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.27.0-python3.10-bookworm`, `0.27-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.27.0-python3.10-bullseye`, `0.27-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.27.0-python3.10-alpine3.19`, `0.27-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.27.0-python3.10-alpine`, `0.27-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.27.0-python3.10-alpine3.18`, `0.27-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.27.0-python3.9-bookworm`, `0.27-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.27.0-python3.9-bullseye`, `0.27-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.27.0-python3.9-alpine3.19`, `0.27-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.27.0-python3.9-alpine`, `0.27-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.27.0-python3.9-alpine3.18`, `0.27-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.27.0-python3.8-bookworm`, `0.27-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.27.0-python3.8-bullseye`, `0.27-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.27.0-python3.8-alpine3.19`, `0.27-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.27.0-python3.8-alpine`, `0.27-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.27.0-python3.8-alpine3.18`, `0.27-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.27.0-pypy3.10-bookworm`, `0.27-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.27.0-pypy-bookworm`, `0.27-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.27.0-pypy3.10-bullseye`, `0.27-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.27.0-pypy-bullseye`, `0.27-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.27.0-pypy3.9-bookworm`, `0.27-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.27.0-pypy3.9-bullseye`, `0.27-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.27.0-pypy3.9-windowsservercore-ltsc2022`, `0.27-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.27.0-pypy3.9-windowsservercore-1809`, `0.27-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.28.0-python3.12-bookworm`, `0.28-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.28.0-bookworm`, `0.28-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.28.0-python3.12-bullseye`, `0.28-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.28.0-bullseye`, `0.28-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.28.0-python3.12-alpine3.19`, `0.28-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.28.0-alpine3.19`, `0.28-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.28.0-python3.12-alpine`, `0.28-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.28.0-alpine`, `0.28-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.28.0-python3.12-alpine3.18`, `0.28-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.28.0-alpine3.18`, `0.28-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) +- [`0.28.0-python3.11-bookworm`, `0.28-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.28.0-python3.11-bullseye`, `0.28-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.28.0-python3.11-alpine3.19`, `0.28-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.28.0-python3.11-alpine`, `0.28-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.28.0-python3.11-alpine3.18`, `0.28-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.28.0-python3.10-bookworm`, `0.28-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.28.0-python3.10-bullseye`, `0.28-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.28.0-python3.10-alpine3.19`, `0.28-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.28.0-python3.10-alpine`, `0.28-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.28.0-python3.10-alpine3.18`, `0.28-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.28.0-python3.9-bookworm`, `0.28-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.28.0-python3.9-bullseye`, `0.28-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.28.0-python3.9-alpine3.19`, `0.28-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.28.0-python3.9-alpine`, `0.28-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.28.0-python3.9-alpine3.18`, `0.28-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.28.0-python3.8-bookworm`, `0.28-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.28.0-python3.8-bullseye`, `0.28-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.28.0-python3.8-alpine3.19`, `0.28-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.28.0-python3.8-alpine`, `0.28-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.28.0-python3.8-alpine3.18`, `0.28-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.28.0-pypy3.10-bookworm`, `0.28-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.28.0-pypy-bookworm`, `0.28-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.28.0-pypy3.10-bullseye`, `0.28-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.28.0-pypy-bullseye`, `0.28-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.28.0-pypy3.9-bookworm`, `0.28-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.28.0-pypy3.9-bullseye`, `0.28-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.28.0-pypy3.9-windowsservercore-ltsc2022`, `0.28-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.28.0-pypy3.9-windowsservercore-1809`, `0.28-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags -- `0.27.0-python3.12`, `0.27-python3.12`, `0-python3.12`, `python3.12`, `0.27.0`, `0.27`, `0`, `latest`: - - [`0.27.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- `0.27.0-python3.11`, `0.27-python3.11`, `0-python3.11`, `python3.11`: - - [`0.27.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- `0.27.0-python3.10`, `0.27-python3.10`, `0-python3.10`, `python3.10`: - - [`0.27.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- `0.27.0-python3.9`, `0.27-python3.9`, `0-python3.9`, `python3.9`: - - [`0.27.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- `0.27.0-python3.8`, `0.27-python3.8`, `0-python3.8`, `python3.8`: - - [`0.27.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- `0.27.0-pypy3.10`, `0.27-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.27.0-pypy`, `0.27-pypy`, `0-pypy`, `pypy`: - - [`0.27.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- `0.27.0-pypy3.9`, `0.27-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.27.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.27.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.27.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/85b69927bcbd63c5ad1f2b2ff9a41b2474a6e3e3/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- `0.28.0-python3.12`, `0.28-python3.12`, `0-python3.12`, `python3.12`, `0.28.0`, `0.28`, `0`, `latest`: + - [`0.28.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- `0.28.0-python3.11`, `0.28-python3.11`, `0-python3.11`, `python3.11`: + - [`0.28.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- `0.28.0-python3.10`, `0.28-python3.10`, `0-python3.10`, `python3.10`: + - [`0.28.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- `0.28.0-python3.9`, `0.28-python3.9`, `0-python3.9`, `python3.9`: + - [`0.28.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- `0.28.0-python3.8`, `0.28-python3.8`, `0-python3.8`, `python3.8`: + - [`0.28.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- `0.28.0-pypy3.10`, `0.28-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.28.0-pypy`, `0.28-pypy`, `0-pypy`, `pypy`: + - [`0.28.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- `0.28.0-pypy3.9`, `0.28-pypy3.9`, `0-pypy3.9`, `pypy3.9`: + - [`0.28.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.28.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.28.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index fb768853b309..412e5bbc1ad7 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/577416b29d72aa5b7199c4c67702448152219d78/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 15175c37b990..65c0e9b75485 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.0`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/apache/Dockerfile) -- [`5.0.0-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/fpm/Dockerfile) -- [`5.0.0-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/dfe3c8fc32922f7fbf8b90ffce89b6b1bae5b992/fpm-alpine/Dockerfile) +- [`5.0.1-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.1`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/apache/Dockerfile) +- [`5.0.1-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/fpm/Dockerfile) +- [`5.0.1-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo-express/README.md b/mongo-express/README.md index abdc637dd9f1..a7c91a20fc45 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.0-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/20-alpine3.18/Dockerfile) -- [`1.0.0-20`, `1.0-20`, `1-20`, `1.0.0-20-alpine3.17`, `1.0-20-alpine3.17`, `1-20-alpine3.17`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/20-alpine3.17/Dockerfile) -- [`1.0.0-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/18-alpine3.18/Dockerfile) -- [`1.0.0`, `1.0`, `1`, `1.0.0-18`, `1.0-18`, `1-18`, `1.0.0-18-alpine3.17`, `1.0-18-alpine3.17`, `1-18-alpine3.17`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/5fb537b2fd181e458f58137fdb55d061a8c23da5/1.0/18-alpine3.17/Dockerfile) +- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/8a4ce8a2b042efd2a8e70f3127d8bd330dc3bb74/1.0/20-alpine3.19/Dockerfile) +- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/242d80ba5c3a61e9877d245c5352938a129d82a7/1.0/20-alpine3.18/Dockerfile) +- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/8a4ce8a2b042efd2a8e70f3127d8bd330dc3bb74/1.0/18-alpine3.19/Dockerfile) +- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/242d80ba5c3a61e9877d245c5352938a129d82a7/1.0/18-alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 5b7a4be71a9a..56ab952de7a8 100644 --- a/php/README.md +++ b/php/README.md @@ -24,48 +24,76 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.1-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.1-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.1-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.1`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/cli/Dockerfile) -- [`8.3.1-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.1-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/apache/Dockerfile) -- [`8.3.1-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.1-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/fpm/Dockerfile) -- [`8.3.1-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.1-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bookworm/zts/Dockerfile) -- [`8.3.1-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.1-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/cli/Dockerfile) -- [`8.3.1-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/apache/Dockerfile) -- [`8.3.1-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/fpm/Dockerfile) -- [`8.3.1-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/bullseye/zts/Dockerfile) -- [`8.3.1-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.1-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.1-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.1-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.1-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.1-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.1-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.1-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.1-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.1-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.1-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.1-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/aacb4822dba7f27112da5f75642636f50a034931/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.14-cli-bookworm`, `8.2-cli-bookworm`, `8.2.14-bookworm`, `8.2-bookworm`, `8.2.14-cli`, `8.2-cli`, `8.2.14`, `8.2`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/cli/Dockerfile) -- [`8.2.14-apache-bookworm`, `8.2-apache-bookworm`, `8.2.14-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/apache/Dockerfile) -- [`8.2.14-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.14-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/fpm/Dockerfile) -- [`8.2.14-zts-bookworm`, `8.2-zts-bookworm`, `8.2.14-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bookworm/zts/Dockerfile) -- [`8.2.14-cli-bullseye`, `8.2-cli-bullseye`, `8.2.14-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/cli/Dockerfile) -- [`8.2.14-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/apache/Dockerfile) -- [`8.2.14-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/fpm/Dockerfile) -- [`8.2.14-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/bullseye/zts/Dockerfile) -- [`8.2.14-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.14-alpine3.19`, `8.2-alpine3.19`, `8.2.14-cli-alpine`, `8.2-cli-alpine`, `8.2.14-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.14-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.14-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.14-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.14-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.14-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.14-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.14-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.14-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/ce5371b4c6f3c0710f4998effb65f2bdf7109aef/8.2/alpine3.18/zts/Dockerfile) -- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/cli/Dockerfile) -- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/apache/Dockerfile) -- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/fpm/Dockerfile) -- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bookworm/zts/Dockerfile) -- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/cli/Dockerfile) -- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/apache/Dockerfile) -- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/fpm/Dockerfile) -- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/bullseye/zts/Dockerfile) -- [`8.1.27-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.27-alpine3.19`, `8.1-alpine3.19`, `8.1.27-cli-alpine`, `8.1-cli-alpine`, `8.1.27-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.27-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.27-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.27-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.27-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.19/zts/Dockerfile) -- [`8.1.27-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.27-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.27-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.27-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/5fa6bfe5a39a870b2c3baf66d2683530654ea2b6/8.1/alpine3.18/zts/Dockerfile) +- [`8.3.2RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.2RC1-bookworm`, `8.3-rc-bookworm`, `8.3.2RC1-cli`, `8.3-rc-cli`, `8.3.2RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.2RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.2RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.2RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.2RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.2RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.2RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.2RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.2RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.2RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.2RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.2RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.2RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.2RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.2RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.2RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.2RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.2RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.2RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.2RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.2RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.2RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.2RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.2RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/zts/Dockerfile) +- [`8.3.1-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.1-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.1-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.1`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/cli/Dockerfile) +- [`8.3.1-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.1-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/apache/Dockerfile) +- [`8.3.1-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.1-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/fpm/Dockerfile) +- [`8.3.1-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.1-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/zts/Dockerfile) +- [`8.3.1-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.1-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/cli/Dockerfile) +- [`8.3.1-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/apache/Dockerfile) +- [`8.3.1-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/fpm/Dockerfile) +- [`8.3.1-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/zts/Dockerfile) +- [`8.3.1-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.1-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.1-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.1-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.1-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.1-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.1-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.1-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.1-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.1-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.1-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.1-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.15RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.15RC1-bookworm`, `8.2-rc-bookworm`, `8.2.15RC1-cli`, `8.2-rc-cli`, `8.2.15RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.15RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.15RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.15RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.15RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.15RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.15RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.15RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.15RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.15RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.15RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.15RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.15RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.15RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.15RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.15RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.15RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.15RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.15RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.15RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.15RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.15RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.15RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.15RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/zts/Dockerfile) +- [`8.2.14-cli-bookworm`, `8.2-cli-bookworm`, `8.2.14-bookworm`, `8.2-bookworm`, `8.2.14-cli`, `8.2-cli`, `8.2.14`, `8.2`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/cli/Dockerfile) +- [`8.2.14-apache-bookworm`, `8.2-apache-bookworm`, `8.2.14-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/apache/Dockerfile) +- [`8.2.14-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.14-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/fpm/Dockerfile) +- [`8.2.14-zts-bookworm`, `8.2-zts-bookworm`, `8.2.14-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/zts/Dockerfile) +- [`8.2.14-cli-bullseye`, `8.2-cli-bullseye`, `8.2.14-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/cli/Dockerfile) +- [`8.2.14-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/apache/Dockerfile) +- [`8.2.14-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/fpm/Dockerfile) +- [`8.2.14-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/zts/Dockerfile) +- [`8.2.14-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.14-alpine3.19`, `8.2-alpine3.19`, `8.2.14-cli-alpine`, `8.2-cli-alpine`, `8.2.14-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.14-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.14-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.14-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.14-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.14-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.14-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.14-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.14-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/zts/Dockerfile) +- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/cli/Dockerfile) +- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/apache/Dockerfile) +- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/fpm/Dockerfile) +- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/zts/Dockerfile) +- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/cli/Dockerfile) +- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/apache/Dockerfile) +- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/fpm/Dockerfile) +- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/zts/Dockerfile) +- [`8.1.27-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.27-alpine3.19`, `8.1-alpine3.19`, `8.1.27-cli-alpine`, `8.1-cli-alpine`, `8.1.27-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.27-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.27-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.27-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.27-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.27-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.27-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.27-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.27-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c5f54fb7d2d3..d25fc3b641d4 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.0-rc.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/38dfee76aca22741e236c2496894c0c197fca018/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.11`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/ubuntu/Dockerfile) -- [`3.12.11-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.11-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b8ed577cade002c16789f499f5999e821743242b/3.12/alpine/Dockerfile) -- [`3.12.11-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/89b84c8bf2ac77544873b62be4cde38b95bf04d7/3.12/ubuntu/Dockerfile) +- [`3.12.12-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/89b84c8bf2ac77544873b62be4cde38b95bf04d7/3.12/alpine/Dockerfile) +- [`3.12.12-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/ubuntu/Dockerfile) - [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/alpine/Dockerfile) From bd42a7bc6c5105dccae234811f1f2dfa49a2ebce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jan 2024 12:18:14 -0800 Subject: [PATCH 0853/2686] Run update.sh --- photon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon/README.md b/photon/README.md index a5e2996ecce2..4159fa8faccc 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20231216`, `latest`](https://github.com/vmware/photon-docker-image/blob/cc9701b1e18cebc928f3737cc1573aa88462f610/docker/Dockerfile) +- [`5.0`, `5.0-20240106`, `latest`](https://github.com/vmware/photon-docker-image/blob/afd4b8ae99e15a2f6959fcc4bf64d75ab33955e3/docker/Dockerfile) - [`4.0`, `4.0-20231230`](https://github.com/vmware/photon-docker-image/blob/9acebe9db4af2a41ccfc90a2b712df378ccc9558/docker/Dockerfile) - [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) From 904ba869f518b8ceea8483dbf744eb02786e2cc9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jan 2024 14:20:53 -0800 Subject: [PATCH 0854/2686] Run update.sh --- clearlinux/README.md | 2 +- telegraf/README.md | 12 ++--- tomee/README.md | 112 +++++++++++++++++++++---------------------- 3 files changed, 63 insertions(+), 63 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 6ff79f5dacd2..992041f7b2d7 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dc6a516cae38c61d549241c4ab939bc5d062273d/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/217f4343f59409f73803e4499d26af52b36c42cf/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 84c9c4df1c5d..b5af156af592 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a4ebb96dc96f5295f79ef918d9f1dcf3c77b5ba2/telegraf/1.29/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index e4dbd4d9c003..c6e174e04768 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,62 +24,62 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.16-jre17-Temurin-ubuntu-webprofile`, `8.0.16-Temurin-ubuntu-webprofile`, `8.0.16-jre17-ubuntu-webprofile`, `8.0.16-ubuntu-webprofile`, `8.0.16-jre17-Temurin-webprofile`, `8.0.16-Temurin-webprofile`, `8.0.16-jre17-webprofile`, `8.0.16-webprofile`, `8.0.16-jre17-Temurin-ubuntu`, `8.0.16-Temurin-ubuntu`, `8.0.16-jre17-ubuntu`, `8.0.16-ubuntu`, `8.0.16-jre17-Temurin`, `8.0.16-Temurin`, `8.0.16-jre17`, `8.0.16`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-microprofile`, `8.0.16-Temurin-ubuntu-microprofile`, `8.0.16-jre17-ubuntu-microprofile`, `8.0.16-ubuntu-microprofile`, `8.0.16-jre17-Temurin-microprofile`, `8.0.16-Temurin-microprofile`, `8.0.16-jre17-microprofile`, `8.0.16-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-plume`, `8.0.16-Temurin-ubuntu-plume`, `8.0.16-jre17-ubuntu-plume`, `8.0.16-ubuntu-plume`, `8.0.16-jre17-Temurin-plume`, `8.0.16-Temurin-plume`, `8.0.16-jre17-plume`, `8.0.16-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-plus`, `8.0.16-Temurin-ubuntu-plus`, `8.0.16-jre17-ubuntu-plus`, `8.0.16-ubuntu-plus`, `8.0.16-jre17-Temurin-plus`, `8.0.16-Temurin-plus`, `8.0.16-jre17-plus`, `8.0.16-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-webprofile`, `8.0.16-Temurin-alpine-webprofile`, `8.0.16-jre17-alpine-webprofile`, `8.0.16-alpine-webprofile`, `8.0.16-jre17-Temurin-alpine`, `8.0.16-Temurin-alpine`, `8.0.16-jre17-alpine`, `8.0.16-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-microprofile`, `8.0.16-Temurin-alpine-microprofile`, `8.0.16-jre17-alpine-microprofile`, `8.0.16-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-plume`, `8.0.16-Temurin-alpine-plume`, `8.0.16-jre17-alpine-plume`, `8.0.16-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-plus`, `8.0.16-Temurin-alpine-plus`, `8.0.16-jre17-alpine-plus`, `8.0.16-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-webprofile`, `8.0.16-jre11-ubuntu-webprofile`, `8.0.16-jre11-Temurin-webprofile`, `8.0.16-jre11-webprofile`, `8.0.16-jre11-Temurin-ubuntu`, `8.0.16-jre11-ubuntu`, `8.0.16-jre11-Temurin`, `8.0.16-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-microprofile`, `8.0.16-jre11-ubuntu-microprofile`, `8.0.16-jre11-Temurin-microprofile`, `8.0.16-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-plume`, `8.0.16-jre11-ubuntu-plume`, `8.0.16-jre11-Temurin-plume`, `8.0.16-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-plus`, `8.0.16-jre11-ubuntu-plus`, `8.0.16-jre11-Temurin-plus`, `8.0.16-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-webprofile`, `8.0.16-jre11-alpine-webprofile`, `8.0.16-jre11-Temurin-alpine`, `8.0.16-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-microprofile`, `8.0.16-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-plume`, `8.0.16-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-plus`, `8.0.16-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-webprofile`, `8.0.16-jre8-ubuntu-webprofile`, `8.0.16-jre8-Temurin-webprofile`, `8.0.16-jre8-webprofile`, `8.0.16-jre8-Temurin-ubuntu`, `8.0.16-jre8-ubuntu`, `8.0.16-jre8-Temurin`, `8.0.16-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-microprofile`, `8.0.16-jre8-ubuntu-microprofile`, `8.0.16-jre8-Temurin-microprofile`, `8.0.16-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-plume`, `8.0.16-jre8-ubuntu-plume`, `8.0.16-jre8-Temurin-plume`, `8.0.16-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-plus`, `8.0.16-jre8-ubuntu-plus`, `8.0.16-jre8-Temurin-plus`, `8.0.16-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-webprofile`, `8.0.16-jre8-alpine-webprofile`, `8.0.16-jre8-Temurin-alpine`, `8.0.16-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-microprofile`, `8.0.16-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-plume`, `8.0.16-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-plus`, `8.0.16-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-webprofile`, `8.0.16-Semeru-ubuntu-webprofile`, `8.0.16-jre17-Semeru-webprofile`, `8.0.16-Semeru-webprofile`, `8.0.16-jre17-Semeru-ubuntu`, `8.0.16-Semeru-ubuntu`, `8.0.16-jre17-Semeru`, `8.0.16-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-microprofile`, `8.0.16-Semeru-ubuntu-microprofile`, `8.0.16-jre17-Semeru-microprofile`, `8.0.16-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-plume`, `8.0.16-Semeru-ubuntu-plume`, `8.0.16-jre17-Semeru-plume`, `8.0.16-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-plus`, `8.0.16-Semeru-ubuntu-plus`, `8.0.16-jre17-Semeru-plus`, `8.0.16-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-webprofile`, `8.0.16-jre11-Semeru-webprofile`, `8.0.16-jre11-Semeru-ubuntu`, `8.0.16-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-microprofile`, `8.0.16-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-plume`, `8.0.16-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-plus`, `8.0.16-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-webprofile`, `9.1.1-Temurin-ubuntu-webprofile`, `9.1.1-jre17-ubuntu-webprofile`, `9.1.1-ubuntu-webprofile`, `9.1.1-jre17-Temurin-webprofile`, `9.1.1-Temurin-webprofile`, `9.1.1-jre17-webprofile`, `9.1.1-webprofile`, `9.1.1-jre17-Temurin-ubuntu`, `9.1.1-Temurin-ubuntu`, `9.1.1-jre17-ubuntu`, `9.1.1-ubuntu`, `9.1.1-jre17-Temurin`, `9.1.1-Temurin`, `9.1.1-jre17`, `9.1.1`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-microprofile`, `9.1.1-Temurin-ubuntu-microprofile`, `9.1.1-jre17-ubuntu-microprofile`, `9.1.1-ubuntu-microprofile`, `9.1.1-jre17-Temurin-microprofile`, `9.1.1-Temurin-microprofile`, `9.1.1-jre17-microprofile`, `9.1.1-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-plume`, `9.1.1-Temurin-ubuntu-plume`, `9.1.1-jre17-ubuntu-plume`, `9.1.1-ubuntu-plume`, `9.1.1-jre17-Temurin-plume`, `9.1.1-Temurin-plume`, `9.1.1-jre17-plume`, `9.1.1-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.1-jre17-Temurin-ubuntu-plus`, `9.1.1-Temurin-ubuntu-plus`, `9.1.1-jre17-ubuntu-plus`, `9.1.1-ubuntu-plus`, `9.1.1-jre17-Temurin-plus`, `9.1.1-Temurin-plus`, `9.1.1-jre17-plus`, `9.1.1-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-webprofile`, `9.1.1-Temurin-alpine-webprofile`, `9.1.1-jre17-alpine-webprofile`, `9.1.1-alpine-webprofile`, `9.1.1-jre17-Temurin-alpine`, `9.1.1-Temurin-alpine`, `9.1.1-jre17-alpine`, `9.1.1-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-microprofile`, `9.1.1-Temurin-alpine-microprofile`, `9.1.1-jre17-alpine-microprofile`, `9.1.1-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-plume`, `9.1.1-Temurin-alpine-plume`, `9.1.1-jre17-alpine-plume`, `9.1.1-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.1-jre17-Temurin-alpine-plus`, `9.1.1-Temurin-alpine-plus`, `9.1.1-jre17-alpine-plus`, `9.1.1-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-webprofile`, `9.1.1-jre11-ubuntu-webprofile`, `9.1.1-jre11-Temurin-webprofile`, `9.1.1-jre11-webprofile`, `9.1.1-jre11-Temurin-ubuntu`, `9.1.1-jre11-ubuntu`, `9.1.1-jre11-Temurin`, `9.1.1-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-microprofile`, `9.1.1-jre11-ubuntu-microprofile`, `9.1.1-jre11-Temurin-microprofile`, `9.1.1-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-plume`, `9.1.1-jre11-ubuntu-plume`, `9.1.1-jre11-Temurin-plume`, `9.1.1-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.1-jre11-Temurin-ubuntu-plus`, `9.1.1-jre11-ubuntu-plus`, `9.1.1-jre11-Temurin-plus`, `9.1.1-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-webprofile`, `9.1.1-jre11-alpine-webprofile`, `9.1.1-jre11-Temurin-alpine`, `9.1.1-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-microprofile`, `9.1.1-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-plume`, `9.1.1-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.1-jre11-Temurin-alpine-plus`, `9.1.1-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-webprofile`, `9.1.1-Semeru-ubuntu-webprofile`, `9.1.1-jre17-Semeru-webprofile`, `9.1.1-Semeru-webprofile`, `9.1.1-jre17-Semeru-ubuntu`, `9.1.1-Semeru-ubuntu`, `9.1.1-jre17-Semeru`, `9.1.1-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-microprofile`, `9.1.1-Semeru-ubuntu-microprofile`, `9.1.1-jre17-Semeru-microprofile`, `9.1.1-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-plume`, `9.1.1-Semeru-ubuntu-plume`, `9.1.1-jre17-Semeru-plume`, `9.1.1-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.1-jre17-Semeru-ubuntu-plus`, `9.1.1-Semeru-ubuntu-plus`, `9.1.1-jre17-Semeru-plus`, `9.1.1-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-webprofile`, `9.1.1-jre11-Semeru-webprofile`, `9.1.1-jre11-Semeru-ubuntu`, `9.1.1-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-microprofile`, `9.1.1-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-plume`, `9.1.1-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.1-jre11-Semeru-ubuntu-plus`, `9.1.1-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/0d231adec581d2e4a9a0cd6639b205087ab29dff/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-webprofile`, `8.0.16-Temurin-ubuntu-webprofile`, `8.0.16-jre17-ubuntu-webprofile`, `8.0.16-ubuntu-webprofile`, `8.0.16-jre17-Temurin-webprofile`, `8.0.16-Temurin-webprofile`, `8.0.16-jre17-webprofile`, `8.0.16-webprofile`, `8.0.16-jre17-Temurin-ubuntu`, `8.0.16-Temurin-ubuntu`, `8.0.16-jre17-ubuntu`, `8.0.16-ubuntu`, `8.0.16-jre17-Temurin`, `8.0.16-Temurin`, `8.0.16-jre17`, `8.0.16`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-microprofile`, `8.0.16-Temurin-ubuntu-microprofile`, `8.0.16-jre17-ubuntu-microprofile`, `8.0.16-ubuntu-microprofile`, `8.0.16-jre17-Temurin-microprofile`, `8.0.16-Temurin-microprofile`, `8.0.16-jre17-microprofile`, `8.0.16-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-plume`, `8.0.16-Temurin-ubuntu-plume`, `8.0.16-jre17-ubuntu-plume`, `8.0.16-ubuntu-plume`, `8.0.16-jre17-Temurin-plume`, `8.0.16-Temurin-plume`, `8.0.16-jre17-plume`, `8.0.16-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre17-Temurin-ubuntu-plus`, `8.0.16-Temurin-ubuntu-plus`, `8.0.16-jre17-ubuntu-plus`, `8.0.16-ubuntu-plus`, `8.0.16-jre17-Temurin-plus`, `8.0.16-Temurin-plus`, `8.0.16-jre17-plus`, `8.0.16-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-webprofile`, `8.0.16-Temurin-alpine-webprofile`, `8.0.16-jre17-alpine-webprofile`, `8.0.16-alpine-webprofile`, `8.0.16-jre17-Temurin-alpine`, `8.0.16-Temurin-alpine`, `8.0.16-jre17-alpine`, `8.0.16-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-microprofile`, `8.0.16-Temurin-alpine-microprofile`, `8.0.16-jre17-alpine-microprofile`, `8.0.16-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-plume`, `8.0.16-Temurin-alpine-plume`, `8.0.16-jre17-alpine-plume`, `8.0.16-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre17-Temurin-alpine-plus`, `8.0.16-Temurin-alpine-plus`, `8.0.16-jre17-alpine-plus`, `8.0.16-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-webprofile`, `8.0.16-jre11-ubuntu-webprofile`, `8.0.16-jre11-Temurin-webprofile`, `8.0.16-jre11-webprofile`, `8.0.16-jre11-Temurin-ubuntu`, `8.0.16-jre11-ubuntu`, `8.0.16-jre11-Temurin`, `8.0.16-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-microprofile`, `8.0.16-jre11-ubuntu-microprofile`, `8.0.16-jre11-Temurin-microprofile`, `8.0.16-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-plume`, `8.0.16-jre11-ubuntu-plume`, `8.0.16-jre11-Temurin-plume`, `8.0.16-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre11-Temurin-ubuntu-plus`, `8.0.16-jre11-ubuntu-plus`, `8.0.16-jre11-Temurin-plus`, `8.0.16-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-webprofile`, `8.0.16-jre11-alpine-webprofile`, `8.0.16-jre11-Temurin-alpine`, `8.0.16-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-microprofile`, `8.0.16-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-plume`, `8.0.16-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre11-Temurin-alpine-plus`, `8.0.16-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-webprofile`, `8.0.16-jre8-ubuntu-webprofile`, `8.0.16-jre8-Temurin-webprofile`, `8.0.16-jre8-webprofile`, `8.0.16-jre8-Temurin-ubuntu`, `8.0.16-jre8-ubuntu`, `8.0.16-jre8-Temurin`, `8.0.16-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-microprofile`, `8.0.16-jre8-ubuntu-microprofile`, `8.0.16-jre8-Temurin-microprofile`, `8.0.16-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-plume`, `8.0.16-jre8-ubuntu-plume`, `8.0.16-jre8-Temurin-plume`, `8.0.16-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) +- [`8.0.16-jre8-Temurin-ubuntu-plus`, `8.0.16-jre8-ubuntu-plus`, `8.0.16-jre8-Temurin-plus`, `8.0.16-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-webprofile`, `8.0.16-jre8-alpine-webprofile`, `8.0.16-jre8-Temurin-alpine`, `8.0.16-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-microprofile`, `8.0.16-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-plume`, `8.0.16-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) +- [`8.0.16-jre8-Temurin-alpine-plus`, `8.0.16-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-webprofile`, `8.0.16-Semeru-ubuntu-webprofile`, `8.0.16-jre17-Semeru-webprofile`, `8.0.16-Semeru-webprofile`, `8.0.16-jre17-Semeru-ubuntu`, `8.0.16-Semeru-ubuntu`, `8.0.16-jre17-Semeru`, `8.0.16-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-microprofile`, `8.0.16-Semeru-ubuntu-microprofile`, `8.0.16-jre17-Semeru-microprofile`, `8.0.16-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-plume`, `8.0.16-Semeru-ubuntu-plume`, `8.0.16-jre17-Semeru-plume`, `8.0.16-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.16-jre17-Semeru-ubuntu-plus`, `8.0.16-Semeru-ubuntu-plus`, `8.0.16-jre17-Semeru-plus`, `8.0.16-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-webprofile`, `8.0.16-jre11-Semeru-webprofile`, `8.0.16-jre11-Semeru-ubuntu`, `8.0.16-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-microprofile`, `8.0.16-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-plume`, `8.0.16-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`8.0.16-jre11-Semeru-ubuntu-plus`, `8.0.16-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.2-jre17-Temurin-ubuntu-webprofile`, `9.1.2-Temurin-ubuntu-webprofile`, `9.1.2-jre17-ubuntu-webprofile`, `9.1.2-ubuntu-webprofile`, `9.1.2-jre17-Temurin-webprofile`, `9.1.2-Temurin-webprofile`, `9.1.2-jre17-webprofile`, `9.1.2-webprofile`, `9.1.2-jre17-Temurin-ubuntu`, `9.1.2-Temurin-ubuntu`, `9.1.2-jre17-ubuntu`, `9.1.2-ubuntu`, `9.1.2-jre17-Temurin`, `9.1.2-Temurin`, `9.1.2-jre17`, `9.1.2`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.2-jre17-Temurin-ubuntu-microprofile`, `9.1.2-Temurin-ubuntu-microprofile`, `9.1.2-jre17-ubuntu-microprofile`, `9.1.2-ubuntu-microprofile`, `9.1.2-jre17-Temurin-microprofile`, `9.1.2-Temurin-microprofile`, `9.1.2-jre17-microprofile`, `9.1.2-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.2-jre17-Temurin-ubuntu-plume`, `9.1.2-Temurin-ubuntu-plume`, `9.1.2-jre17-ubuntu-plume`, `9.1.2-ubuntu-plume`, `9.1.2-jre17-Temurin-plume`, `9.1.2-Temurin-plume`, `9.1.2-jre17-plume`, `9.1.2-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.2-jre17-Temurin-ubuntu-plus`, `9.1.2-Temurin-ubuntu-plus`, `9.1.2-jre17-ubuntu-plus`, `9.1.2-ubuntu-plus`, `9.1.2-jre17-Temurin-plus`, `9.1.2-Temurin-plus`, `9.1.2-jre17-plus`, `9.1.2-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.2-jre17-Temurin-alpine-webprofile`, `9.1.2-Temurin-alpine-webprofile`, `9.1.2-jre17-alpine-webprofile`, `9.1.2-alpine-webprofile`, `9.1.2-jre17-Temurin-alpine`, `9.1.2-Temurin-alpine`, `9.1.2-jre17-alpine`, `9.1.2-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.2-jre17-Temurin-alpine-microprofile`, `9.1.2-Temurin-alpine-microprofile`, `9.1.2-jre17-alpine-microprofile`, `9.1.2-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.2-jre17-Temurin-alpine-plume`, `9.1.2-Temurin-alpine-plume`, `9.1.2-jre17-alpine-plume`, `9.1.2-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.2-jre17-Temurin-alpine-plus`, `9.1.2-Temurin-alpine-plus`, `9.1.2-jre17-alpine-plus`, `9.1.2-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.2-jre11-Temurin-ubuntu-webprofile`, `9.1.2-jre11-ubuntu-webprofile`, `9.1.2-jre11-Temurin-webprofile`, `9.1.2-jre11-webprofile`, `9.1.2-jre11-Temurin-ubuntu`, `9.1.2-jre11-ubuntu`, `9.1.2-jre11-Temurin`, `9.1.2-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.2-jre11-Temurin-ubuntu-microprofile`, `9.1.2-jre11-ubuntu-microprofile`, `9.1.2-jre11-Temurin-microprofile`, `9.1.2-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.2-jre11-Temurin-ubuntu-plume`, `9.1.2-jre11-ubuntu-plume`, `9.1.2-jre11-Temurin-plume`, `9.1.2-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.2-jre11-Temurin-ubuntu-plus`, `9.1.2-jre11-ubuntu-plus`, `9.1.2-jre11-Temurin-plus`, `9.1.2-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.2-jre11-Temurin-alpine-webprofile`, `9.1.2-jre11-alpine-webprofile`, `9.1.2-jre11-Temurin-alpine`, `9.1.2-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.2-jre11-Temurin-alpine-microprofile`, `9.1.2-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.2-jre11-Temurin-alpine-plume`, `9.1.2-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.2-jre11-Temurin-alpine-plus`, `9.1.2-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.2-jre17-Semeru-ubuntu-webprofile`, `9.1.2-Semeru-ubuntu-webprofile`, `9.1.2-jre17-Semeru-webprofile`, `9.1.2-Semeru-webprofile`, `9.1.2-jre17-Semeru-ubuntu`, `9.1.2-Semeru-ubuntu`, `9.1.2-jre17-Semeru`, `9.1.2-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.2-jre17-Semeru-ubuntu-microprofile`, `9.1.2-Semeru-ubuntu-microprofile`, `9.1.2-jre17-Semeru-microprofile`, `9.1.2-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.2-jre17-Semeru-ubuntu-plume`, `9.1.2-Semeru-ubuntu-plume`, `9.1.2-jre17-Semeru-plume`, `9.1.2-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.2-jre17-Semeru-ubuntu-plus`, `9.1.2-Semeru-ubuntu-plus`, `9.1.2-jre17-Semeru-plus`, `9.1.2-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.2-jre11-Semeru-ubuntu-webprofile`, `9.1.2-jre11-Semeru-webprofile`, `9.1.2-jre11-Semeru-ubuntu`, `9.1.2-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.2-jre11-Semeru-ubuntu-microprofile`, `9.1.2-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.2-jre11-Semeru-ubuntu-plume`, `9.1.2-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.2-jre11-Semeru-ubuntu-plus`, `9.1.2-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) # Quick reference (cont.) From 976db634707070ce4659aee8a1fb43a3060f8c5c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jan 2024 15:19:20 -0800 Subject: [PATCH 0855/2686] Run update.sh --- docker/README.md | 4 +-- haproxy/README.md | 4 +-- mongo-express/README.md | 8 ++--- mongo/README.md | 75 ++++++++++++++++++++++++----------------- openjdk/README.md | 72 +++++++++++++++++++-------------------- redmine/README.md | 4 +-- 6 files changed, 91 insertions(+), 76 deletions(-) diff --git a/docker/README.md b/docker/README.md index ca3f786576f2..f53b944e6430 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,13 +29,13 @@ WARNING: ## Simple Tags - [`25.0.0-rc.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/cli/Dockerfile) -- [`25.0.0-rc.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.1-dind-alpine3.19`, `25.0.0-rc.1`, `25-rc`, `rc`, `25.0.0-rc.1-alpine3.19`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/dind/Dockerfile) +- [`25.0.0-rc.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.1-dind-alpine3.19`, `25.0.0-rc.1`, `25-rc`, `rc`, `25.0.0-rc.1-alpine3.19`](https://github.com/docker-library/docker/blob/bfe953e38b9610b085d1e0f139dbe2c39556216b/25-rc/dind/Dockerfile) - [`25.0.0-rc.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/dind-rootless/Dockerfile) - [`25.0.0-rc.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) - [`25.0.0-rc.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.0-rc.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-1809/Dockerfile) - [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c40845fc737959146e92791751def871ab40119e/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/7ac5702b51ae559c03bfe90404f4b8c63977c601/24/dind/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index db80a8b9e3d7..1b68d8e1e67b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev0`, `3.0-dev`, `3.0-dev0-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/3.0/Dockerfile) -- [`3.0-dev0-alpine`, `3.0-dev-alpine`, `3.0-dev0-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/3.0/alpine/Dockerfile) +- [`3.0-dev1`, `3.0-dev`, `3.0-dev1-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/Dockerfile) +- [`3.0-dev1-alpine`, `3.0-dev-alpine`, `3.0-dev1-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/alpine/Dockerfile) - [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/Dockerfile) - [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) diff --git a/mongo-express/README.md b/mongo-express/README.md index a7c91a20fc45..f249043c05e0 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/8a4ce8a2b042efd2a8e70f3127d8bd330dc3bb74/1.0/20-alpine3.19/Dockerfile) -- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/242d80ba5c3a61e9877d245c5352938a129d82a7/1.0/20-alpine3.18/Dockerfile) -- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/8a4ce8a2b042efd2a8e70f3127d8bd330dc3bb74/1.0/18-alpine3.19/Dockerfile) -- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/242d80ba5c3a61e9877d245c5352938a129d82a7/1.0/18-alpine3.18/Dockerfile) +- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/20-alpine3.19/Dockerfile) +- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/20-alpine3.18/Dockerfile) +- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/18-alpine3.19/Dockerfile) +- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/18-alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index c1a75b408c4f..c8488af7f440 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,26 +28,31 @@ WARNING: ## Simple Tags -- [`7.0.5-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/Dockerfile) -- [`7.0.5-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.5-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.5-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.5-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.4-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) -- [`7.0.4-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.4-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.4-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.4-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.5-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/Dockerfile) +- [`7.0.5-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.5-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.5-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.5-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.12-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.12-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.12-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.24-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/Dockerfile) +- [`5.0.24-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.24-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.24-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.24-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.23-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) - [`5.0.23-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.28-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/Dockerfile) +- [`4.4.28-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.28-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- [`4.4.28-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.28-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-1809/Dockerfile) - [`4.4.27-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) - [`4.4.27-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.27-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) @@ -56,26 +61,16 @@ WARNING: ## Shared Tags -- `7.0.5-rc0`, `7.0-rc`: - - [`7.0.5-rc0-jammy`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/Dockerfile) - - [`7.0.5-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.5-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.5-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.5-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.5-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.5-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.5-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.5-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/417e28391a5620dc5a5b48accc79d5eb540f1871/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.4`, `7.0`, `7`, `latest`: - - [`7.0.4-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/7.0/Dockerfile) - - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.4-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.4-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5aa0c74848845f365789290d494a047f4db16426/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.5`, `7.0`, `7`, `latest`: + - [`7.0.5-jammy`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/Dockerfile) + - [`7.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.5-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.5-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.12`, `6.0`, `6`: - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,6 +81,16 @@ WARNING: - `6.0.12-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.24-rc0`, `5.0-rc`: + - [`5.0.24-rc0-focal`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/Dockerfile) + - [`5.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.24-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.24-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.23`, `5.0`, `5`: - [`5.0.23-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,6 +101,16 @@ WARNING: - `5.0.23-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.28-rc0`, `4.4-rc`: + - [`4.4.28-rc0-focal`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/Dockerfile) + - [`4.4.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.28-rc0-windowsservercore`, `4.4-rc-windowsservercore`: + - [`4.4.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) +- `4.4.28-rc0-nanoserver`, `4.4-rc-nanoserver`: + - [`4.4.28-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.28-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-1809/Dockerfile) - `4.4.27`, `4.4`, `4`: - [`4.4.27-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) - [`4.4.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 5b8dd77bac6b..533b2187a3f9 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-3-jdk-oraclelinux8`, `23-ea-3-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-3-jdk-oracle`, `23-ea-3-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-3-jdk-oraclelinux7`, `23-ea-3-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-3-jdk-bookworm`, `23-ea-3-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/bookworm/Dockerfile) -- [`23-ea-3-jdk-slim-bookworm`, `23-ea-3-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-3-jdk-slim`, `23-ea-3-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-3-jdk-bullseye`, `23-ea-3-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/bullseye/Dockerfile) -- [`23-ea-3-jdk-slim-bullseye`, `23-ea-3-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-3-jdk-windowsservercore-ltsc2022`, `23-ea-3-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-3-jdk-windowsservercore-1809`, `23-ea-3-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-3-jdk-nanoserver-1809`, `23-ea-3-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-29-jdk-oraclelinux8`, `22-ea-29-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-29-jdk-oracle`, `22-ea-29-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-29-jdk-oraclelinux7`, `22-ea-29-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-29-jdk-bookworm`, `22-ea-29-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/bookworm/Dockerfile) -- [`22-ea-29-jdk-slim-bookworm`, `22-ea-29-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-29-jdk-slim`, `22-ea-29-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-29-jdk-bullseye`, `22-ea-29-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/bullseye/Dockerfile) -- [`22-ea-29-jdk-slim-bullseye`, `22-ea-29-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-29-jdk-windowsservercore-ltsc2022`, `22-ea-29-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-29-jdk-windowsservercore-1809`, `22-ea-29-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-29-jdk-nanoserver-1809`, `22-ea-29-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-4-jdk-oraclelinux8`, `23-ea-4-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-4-jdk-oracle`, `23-ea-4-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-4-jdk-oraclelinux7`, `23-ea-4-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-4-jdk-bookworm`, `23-ea-4-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/bookworm/Dockerfile) +- [`23-ea-4-jdk-slim-bookworm`, `23-ea-4-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-4-jdk-slim`, `23-ea-4-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-4-jdk-bullseye`, `23-ea-4-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/bullseye/Dockerfile) +- [`23-ea-4-jdk-slim-bullseye`, `23-ea-4-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-4-jdk-windowsservercore-ltsc2022`, `23-ea-4-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-4-jdk-windowsservercore-1809`, `23-ea-4-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-4-jdk-nanoserver-1809`, `23-ea-4-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-30-jdk-oraclelinux8`, `22-ea-30-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-30-jdk-oracle`, `22-ea-30-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-30-jdk-oraclelinux7`, `22-ea-30-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-30-jdk-bookworm`, `22-ea-30-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/bookworm/Dockerfile) +- [`22-ea-30-jdk-slim-bookworm`, `22-ea-30-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-30-jdk-slim`, `22-ea-30-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-30-jdk-bullseye`, `22-ea-30-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/bullseye/Dockerfile) +- [`22-ea-30-jdk-slim-bullseye`, `22-ea-30-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-30-jdk-windowsservercore-ltsc2022`, `22-ea-30-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-30-jdk-windowsservercore-1809`, `22-ea-30-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-30-jdk-nanoserver-1809`, `22-ea-30-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-3-jdk`, `23-ea-3`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-3-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-3-jdk-windowsservercore`, `23-ea-3-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-3-jdk-nanoserver`, `23-ea-3-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89fc560283f0a33b2c8ca8d7f9ff66e8478d31f7/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-29-jdk`, `22-ea-29`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-29-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-29-jdk-windowsservercore`, `22-ea-29-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-29-jdk-nanoserver`, `22-ea-29-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9686e898b706bfe506ac5ded5794099b18e7e5c3/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-4-jdk`, `23-ea-4`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-4-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-4-jdk-windowsservercore`, `23-ea-4-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-4-jdk-nanoserver`, `23-ea-4-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-30-jdk`, `22-ea-30`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-30-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-30-jdk-windowsservercore`, `22-ea-30-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-30-jdk-nanoserver`, `22-ea-30-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index a72d74f15932..d8e62ddc2078 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/739992185fb35540b8a598b867beb54d6b7c4065/5.1/bookworm/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/9f8737bd02cab294935e8ef8521ae51bfad9aee8/5.1/bookworm/Dockerfile) - [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/alpine3.18/Dockerfile) -- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/739992185fb35540b8a598b867beb54d6b7c4065/5.0/bookworm/Dockerfile) +- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/9f8737bd02cab294935e8ef8521ae51bfad9aee8/5.0/bookworm/Dockerfile) - [`5.0.7-alpine3.18`, `5.0-alpine3.18`, `5.0.7-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) From 8f5fad78c3c2afca96c6244735bb1c3cd09a5c25 Mon Sep 17 00:00:00 2001 From: Mason Brothers Date: Tue, 9 Jan 2024 11:28:29 -0700 Subject: [PATCH 0856/2686] Fix broken links for mysql --- mysql/content.md | 2 +- percona/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql/content.md b/mysql/content.md index 1e05ae1a8a18..16e8c4ff419e 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -92,7 +92,7 @@ This variable is mandatory and specifies the password that will be set for the M ### `MYSQL_DATABASE` -This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](http://dev.mysql.com/doc/en/adding-users.html)) to this database. +This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](https://dev.mysql.com/doc/refman/en/creating-accounts.html)) to this database. ### `MYSQL_USER`, `MYSQL_PASSWORD` diff --git a/percona/content.md b/percona/content.md index 84530d3e69ec..5a0c4387d36a 100644 --- a/percona/content.md +++ b/percona/content.md @@ -96,7 +96,7 @@ By default, `root` can connect from anywhere. This option restricts root connect ### `MYSQL_DATABASE` -This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](http://dev.mysql.com/doc/en/adding-users.html)) to this database. +This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](https://dev.mysql.com/doc/refman/en/creating-accounts.html)) to this database. ### `MYSQL_USER`, `MYSQL_PASSWORD` From 1fc92f975956d9dc0e1ad4aabb627fa52c4eb4a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Jan 2024 11:21:05 -0800 Subject: [PATCH 0857/2686] Run update.sh --- haskell/README.md | 4 ++-- joomla/README.md | 24 ++++++++++++------------ mysql/README.md | 2 +- orientdb/README.md | 4 ++-- percona/README.md | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 7b0cb00425ee..8dddafa5715a 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/buster/Dockerfile) - [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/slim-buster/Dockerfile) -- [`9.6.3-buster`, `9.6-buster`, `9.6.3`, `9.6`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.6/buster/Dockerfile) -- [`9.6.3-slim-buster`, `9.6-slim-buster`, `9.6.3-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.6/slim-buster/Dockerfile) +- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/0269ad0eacdbeb2a6105488d283b99ad3633f2e9/9.6/buster/Dockerfile) +- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/0269ad0eacdbeb2a6105488d283b99ad3633f2e9/9.6/slim-buster/Dockerfile) - [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/buster/Dockerfile) - [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index a839b96f2878..0542ad723e70 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.1-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/apache/Dockerfile) -- [`5.0.1-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.1-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.1/fpm/Dockerfile) -- [`5.0.1`, `5.0`, `5`, `5.0.1-apache`, `5.0-apache`, `5-apache`, `5.0.1-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.1-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/apache/Dockerfile) -- [`5.0.1-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.1-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/5.0/php8.2/fpm/Dockerfile) -- [`4.4.1`, `4.4`, `4`, `latest`, `4.4.1-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.1-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.1-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/apache/Dockerfile) -- [`4.4.1-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.1-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.1/fpm/Dockerfile) -- [`4.4.1-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/apache/Dockerfile) -- [`4.4.1-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.1-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0b054b731bf4c7191ffe1b5d5e289cb385b49821/4.4/php8.2/fpm/Dockerfile) +- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/apache/Dockerfile) +- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/fpm/Dockerfile) +- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/apache/Dockerfile) +- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/fpm/Dockerfile) +- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/apache/Dockerfile) +- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/fpm/Dockerfile) +- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/apache/Dockerfile) +- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/fpm/Dockerfile) - [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/apache/Dockerfile) - [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm-alpine/Dockerfile) - [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index f474c113d7bd..5a3f3794cf3e 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -167,7 +167,7 @@ This variable is mandatory and specifies the password that will be set for the M ### `MYSQL_DATABASE` -This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](http://dev.mysql.com/doc/en/adding-users.html)) to this database. +This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](https://dev.mysql.com/doc/refman/en/creating-accounts.html)) to this database. ### `MYSQL_USER`, `MYSQL_PASSWORD` diff --git a/orientdb/README.md b/orientdb/README.md index fbe9d65effd5..5dfde5986a38 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.25`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/c3ba350596873702a058b775dc56f7428a7f8a0b/release/3.2.x/3.2.25/Dockerfile) -- [`3.2.25-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/c3ba350596873702a058b775dc56f7428a7f8a0b/release/3.2.x/3.2.25-tp3/Dockerfile) +- [`3.2.26`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/1cf7837740ef309efc58759b0a33a3fe8c2c5278/release/3.2.x/3.2.26/Dockerfile) +- [`3.2.26-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/1cf7837740ef309efc58759b0a33a3fe8c2c5278/release/3.2.x/3.2.26-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) diff --git a/percona/README.md b/percona/README.md index 7b5f01735aa0..d03516e81dd2 100644 --- a/percona/README.md +++ b/percona/README.md @@ -174,7 +174,7 @@ By default, `root` can connect from anywhere. This option restricts root connect ### `MYSQL_DATABASE` -This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](http://dev.mysql.com/doc/en/adding-users.html)) to this database. +This variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access ([corresponding to `GRANT ALL`](https://dev.mysql.com/doc/refman/en/creating-accounts.html)) to this database. ### `MYSQL_USER`, `MYSQL_PASSWORD` From 95ad5a664ac73e7cdaa4b8346cbabc93b1c0f186 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Jan 2024 12:18:25 -0800 Subject: [PATCH 0858/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 7409c3730c3c..2891d3c775e5 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,9 +27,9 @@ WARNING: - [`26.2.1.0`, `26.2.1`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/Dockerfile) - [`26.2.1.0-slim`, `26.2.1-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/slim/Dockerfile) - [`26.2.1.0-alpine`, `26.2.1-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/alpine/Dockerfile) -- [`25.3.2.6`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/Dockerfile) -- [`25.3.2.6-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/slim/Dockerfile) -- [`25.3.2.6-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4179d71533edb030e76fb18085e6c27a1b838215/25/alpine/Dockerfile) +- [`25.3.2.8`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/Dockerfile) +- [`25.3.2.8-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/slim/Dockerfile) +- [`25.3.2.8-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/alpine/Dockerfile) - [`24.3.4.13`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/Dockerfile) - [`24.3.4.13-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/slim/Dockerfile) - [`24.3.4.13-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/alpine/Dockerfile) From 0761120c5292f6863b3373a5dc20c2514e6a1d2e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Jan 2024 14:22:19 -0800 Subject: [PATCH 0859/2686] Run update.sh --- bash/README.md | 2 +- golang/README.md | 72 +++++++++++++++++++-------------------- mongo/README.md | 15 +++++++++ redis/README.md | 8 ++--- tomcat/README.md | 88 ++++++++++++++++++++++++------------------------ 5 files changed, 100 insertions(+), 85 deletions(-) diff --git a/bash/README.md b/bash/README.md index 89bcf8a71b32..8efdd220a425 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20231219`, `devel`, `devel-20231219-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d39c97f5bc718a353705d25a186d34bcc6509946/devel/Dockerfile) +- [`devel-20240102`, `devel`, `devel-20240102-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/0a41925f6fe8e7a9053e1f30a8aeb221eb7cc81f/devel/Dockerfile) - [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 15a878b13487..dff929eb15df 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,22 +36,22 @@ WARNING: - [`1.22rc1-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) - [`1.22rc1-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc1-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) -- [`1.21.5-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bookworm/Dockerfile) -- [`1.21.5-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bullseye/Dockerfile) -- [`1.21.5-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.5-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/alpine3.19/Dockerfile) -- [`1.21.5-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/alpine3.18/Dockerfile) -- [`1.21.5-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.5-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.5-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.5-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.12-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) -- [`1.20.12-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bullseye/Dockerfile) -- [`1.20.12-alpine3.19`, `1.20-alpine3.19`, `1.20.12-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.20/alpine3.19/Dockerfile) -- [`1.20.12-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.20/alpine3.18/Dockerfile) -- [`1.20.12-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.12-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.12-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.12-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.6-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bookworm/Dockerfile) +- [`1.21.6-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bullseye/Dockerfile) +- [`1.21.6-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.6-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/alpine3.19/Dockerfile) +- [`1.21.6-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/alpine3.18/Dockerfile) +- [`1.21.6-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.6-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.6-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.6-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.13-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bookworm/Dockerfile) +- [`1.20.13-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bullseye/Dockerfile) +- [`1.20.13-alpine3.19`, `1.20-alpine3.19`, `1.20.13-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/alpine3.19/Dockerfile) +- [`1.20.13-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/alpine3.18/Dockerfile) +- [`1.20.13-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.13-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.13-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.13-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -65,26 +65,26 @@ WARNING: - `1.22rc1-nanoserver`, `1.22-rc-nanoserver`: - [`1.22rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) -- `1.21.5`, `1.21`, `1`, `latest`: - - [`1.21.5-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.21/bookworm/Dockerfile) - - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.5-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.5-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/d106c8658abc0975bcd2d8a68a8f4ca85b04a93a/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.12`, `1.20`: - - [`1.20.12-bookworm`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/bookworm/Dockerfile) - - [`1.20.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.12-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.12-nanoserver`, `1.20-nanoserver`: - - [`1.20.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/339da23255a9dc00f7921fca9a022f6b95843358/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.6`, `1.21`, `1`, `latest`: + - [`1.21.6-bookworm`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bookworm/Dockerfile) + - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.6-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.6-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.13`, `1.20`: + - [`1.20.13-bookworm`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bookworm/Dockerfile) + - [`1.20.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.13-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.13-nanoserver`, `1.20-nanoserver`: + - [`1.20.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index c8488af7f440..8169022902f4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,6 +33,11 @@ WARNING: - [`7.0.5-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.5-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.13-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/Dockerfile) +- [`6.0.13-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.13-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.13-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.13-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.12-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) @@ -71,6 +76,16 @@ WARNING: - `7.0.5-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.13-rc0`, `6.0-rc`: + - [`6.0.13-rc0-jammy`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/Dockerfile) + - [`6.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.13-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.13-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.13-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.13-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.12`, `6.0`, `6`: - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 0a62eb7940d6..801402166d65 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.3`, `7.2`, `7`, `latest`, `7.2.3-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/7.2/debian/Dockerfile) -- [`7.2.3-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.3-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/dbde5b5e1759c8b1e89c863daf3c60172c9f1ea5/7.2/alpine/Dockerfile) -- [`7.0.14`, `7.0`, `7.0.14-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/7.0/debian/Dockerfile) -- [`7.0.14-alpine`, `7.0-alpine`, `7.0.14-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/d305d4af9357b17dc50488d9912d4becd3aaf803/7.0/alpine/Dockerfile) +- [`7.2.4`, `7.2`, `7`, `latest`, `7.2.4-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/b77450d34ae54354f41970fc44bf840353f59ef4/7.2/debian/Dockerfile) +- [`7.2.4-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.4-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b77450d34ae54354f41970fc44bf840353f59ef4/7.2/alpine/Dockerfile) +- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/313fd068a6751fd9f611e94addfa9ea56a23a3a7/7.0/debian/Dockerfile) +- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/313fd068a6751fd9f611e94addfa9ea56a23a3a7/7.0/alpine/Dockerfile) - [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.2/debian/Dockerfile) - [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/531cfa59d944bbbfb22b8228646d12c926dfc010/6.2/alpine/Dockerfile) - [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.0/debian/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index a4bf359010bc..55ce90136c5d 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,50 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M15-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M15-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M15-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M15`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/58e99f96eccca5d0c1135a21b85d4c70595f2a61/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M15-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M15-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M15-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/58e99f96eccca5d0c1135a21b85d4c70595f2a61/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.17-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.17-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.17-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.17`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.17-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.17-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.17-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.17-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.17-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.17-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.17-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.17-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.17-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.17-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.17-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.17-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.17-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.17-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.17-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/18b00e9f988a1e37c07a1a3d7481f57d51841b5b/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.84-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.84-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.84-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.84`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.84-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.84-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.84-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.84-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.84-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.84-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.84-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.84-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.84-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.84-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.84-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.84-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.84-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.84-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.84-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.84-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.84-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.84-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.84-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.84-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.84-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.84-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.84-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.84-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.84-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.84-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.84-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.84-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.84-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.84-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.84-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.84-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.84-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.84-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.84-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/ccd56defe14ea282eafa0635fc46aecb6eb1010f/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.97-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.97-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.97-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.97`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.97-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.97-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.97-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.97-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.97-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.97-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.97-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.97-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.97-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.97-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.97-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.97-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.97-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.97-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.97-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.97-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.97-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.97-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.97-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.97-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.97-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.97-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.97-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.97-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.97-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.97-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.97-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.97-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.97-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.97-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.97-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.97-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.97-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.97-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.97-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a0dfcd08ee27ba2e66eac2226ba7444b939c5ed4/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M16-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M16-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M16-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M16`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/b9460102c252660bc38683cf3f68883f00dccb41/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M16-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M16-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M16-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/b9460102c252660bc38683cf3f68883f00dccb41/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.18-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.18-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.18-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.18`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.18-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.18-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.18-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.18-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.18-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.18-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.18-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.18-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.18-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.18-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.18-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.18-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.18-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.18-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.18-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.85-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.85-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.85-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.85`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.85-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.85-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.85-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.85-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.85-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.85-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.85-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.85-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.85-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.85-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.85-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.85-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.85-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.85-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.85-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.85-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.85-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.85-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.85-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.85-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.85-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.85-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.85-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.85-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.85-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.85-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.85-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.85-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.85-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.85-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.85-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.85-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.85-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.85-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.85-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.98-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.98-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.98-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.98`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.98-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.98-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.98-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.98-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.98-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.98-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.98-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.98-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.98-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.98-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.98-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.98-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.98-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.98-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.98-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.98-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.98-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.98-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.98-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.98-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.98-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.98-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.98-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.98-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.98-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.98-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.98-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.98-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.98-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.98-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.98-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.98-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.98-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.98-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.98-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From cc697d86fbb505b39625f9b85bd32296abe19d51 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jan 2024 14:21:23 -0800 Subject: [PATCH 0860/2686] Run update.sh --- memcached/README.md | 4 ++-- node/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index 1fb99e27b0e3..68d5510a6a95 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.22`, `1.6`, `1`, `latest`, `1.6.22-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/52c3fa2f38bc81f2f3ace853a4b059046c32183a/1/debian/Dockerfile) -- [`1.6.22-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.22-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/471a2986706be906753f3b271a55c54391667cbb/1/alpine/Dockerfile) +- [`1.6.23`, `1.6`, `1`, `latest`, `1.6.23-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/11c5b970aa93e26bfb69289741cb3ee3f171488e/1/debian/Dockerfile) +- [`1.6.23-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.23-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/11c5b970aa93e26bfb69289741cb3ee3f171488e/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index a1e077614758..398b6346a375 100644 --- a/node/README.md +++ b/node/README.md @@ -30,14 +30,14 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.5-bookworm-slim`, `21.5-slim`, `21.5.0-bookworm-slim`, `21.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.5-bullseye`, `21.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.5-bullseye-slim`, `21.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.10-alpine3.18`, `20.10.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.10-alpine`, `20.10-alpine3.19`, `20.10.0-alpine`, `20.10.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.10`, `20.10-bookworm`, `20.10.0`, `20.10.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.10-bookworm-slim`, `20.10-slim`, `20.10.0-bookworm-slim`, `20.10.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.10-bullseye`, `20.10.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.10-bullseye-slim`, `20.10.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.10-buster`, `20.10.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster/Dockerfile) -- [`20-buster-slim`, `20.10-buster-slim`, `20.10.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/b98d3851de95667630dba35299898eeae1dd30e6/20/buster-slim/Dockerfile) +- [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.0-alpine`, `20.11.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.0`, `20.11.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.11-bookworm-slim`, `20.11-slim`, `20.11.0-bookworm-slim`, `20.11.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.11-bullseye`, `20.11.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.11-bullseye-slim`, `20.11.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.11-buster`, `20.11.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/buster/Dockerfile) +- [`20-buster-slim`, `20.11-buster-slim`, `20.11.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/buster-slim/Dockerfile) - [`18-alpine3.18`, `18.19-alpine3.18`, `18.19.0-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.18/Dockerfile) - [`18-alpine`, `18-alpine3.19`, `18.19-alpine`, `18.19-alpine3.19`, `18.19.0-alpine`, `18.19.0-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/18/alpine3.19/Dockerfile) - [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.0`, `18.19.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm/Dockerfile) From bc09aa8e61dcef42959b2aee6c70bf7eb7c22f50 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jan 2024 18:18:37 -0800 Subject: [PATCH 0861/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++++++++------------------------ nats/README.md | 44 +++++++++++++++++------------------ 2 files changed, 52 insertions(+), 52 deletions(-) diff --git a/debian/README.md b/debian/README.md index 4707ca07b86d..4cc6b4c1d012 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20231218`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20231218-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20231218`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20231218-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/bullseye/slim/Dockerfile) -- [`buster`, `buster-20231218`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20231218-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/buster/slim/Dockerfile) -- [`experimental`, `experimental-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/rc-buggy/Dockerfile) -- [`sid`, `sid-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/sid/Dockerfile) -- [`sid-slim`, `sid-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/sid/slim/Dockerfile) -- [`stable`, `stable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/stable/slim/Dockerfile) -- [`testing`, `testing-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/testing/slim/Dockerfile) -- [`trixie`, `trixie-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20231218`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20231218-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06e65b40faea2bdba5d884cc89a990274c543bfb/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240110`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240110-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240110`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240110-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240110`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20240110-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/rc-buggy/Dockerfile) +- [`sid`, `sid-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/sid/Dockerfile) +- [`sid-slim`, `sid-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/sid/slim/Dockerfile) +- [`stable`, `stable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/slim/Dockerfile) +- [`testing`, `testing-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 9f6e830b8808..49c40468f50c 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.7-alpine3.18`, `2.10-alpine3.18`, `2-alpine3.18`, `alpine3.18`, `2.10.7-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/alpine3.18/Dockerfile) -- [`2.10.7-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.7-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) -- [`2.10.7-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.7-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.8-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.8-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/alpine3.19/Dockerfile) +- [`2.10.8-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.8-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) +- [`2.10.8-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.8-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.7`, `2.10`: - - [`2.10.7-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) - - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.8`, `2.10`: + - [`2.10.8-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) + - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.7-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/scratch/Dockerfile) - - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) -- `2.10.7-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.7-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.7-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.7-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.8-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) + - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) +- `2.10.8-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.8-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.8-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/d81b2574b90e4ac611a4cb4e212639e207ca02de/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) @@ -63,7 +63,7 @@ WARNING: [https://github.com/nats-io/nats-docker/issues](https://github.com/nats-io/nats-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nats/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats/) + [`amd64`](https://hub.docker.com/r/amd64/nats/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats/), [`s390x`](https://hub.docker.com/r/s390x/nats/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats/) - **Published image artifact details**: [repo-info repo's `repos/nats/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nats) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nats)) From 69cb75da6a7ecb15965bfb57de53d3919606c9cf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jan 2024 10:09:42 -0800 Subject: [PATCH 0862/2686] Run update.sh --- nats/README.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/nats/README.md b/nats/README.md index 49c40468f50c..f34c2d0f938d 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,34 +28,34 @@ WARNING: ## Simple Tags -- [`2.10.8-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.8-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/alpine3.19/Dockerfile) -- [`2.10.8-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.8-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) -- [`2.10.8-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.8-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.9-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.9-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/alpine3.19/Dockerfile) +- [`2.10.9-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.9-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) +- [`2.10.9-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.9-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.8`, `2.10`: - - [`2.10.8-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) - - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.9`, `2.10`: + - [`2.10.9-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) + - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) - `2`, `latest`: - - [`2.10.8-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/scratch/Dockerfile) - - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) -- `2.10.8-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.8-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.8-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.8-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.9-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) + - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) +- `2.10.9-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.9-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/75b79822ed20804361fa5781ef02c9e40bbe7172/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From bdbd011250bcfed776996ebc7035aa2b22cb2212 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jan 2024 14:20:58 -0800 Subject: [PATCH 0863/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 2891d3c775e5..4ca9ca1fdbbf 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,9 +30,9 @@ WARNING: - [`25.3.2.8`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/Dockerfile) - [`25.3.2.8-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/slim/Dockerfile) - [`25.3.2.8-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/alpine/Dockerfile) -- [`24.3.4.13`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/Dockerfile) -- [`24.3.4.13-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/slim/Dockerfile) -- [`24.3.4.13-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bdc1fbcb4dc2636db8756af66d878a85e7afd0a7/24/alpine/Dockerfile) +- [`24.3.4.15`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/Dockerfile) +- [`24.3.4.15-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/slim/Dockerfile) +- [`24.3.4.15-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/alpine/Dockerfile) - [`23.3.4.19`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/Dockerfile) - [`23.3.4.19-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/slim/Dockerfile) - [`23.3.4.19-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/alpine/Dockerfile) From 8c98410bcdec6354bc3de281980bac53810f59cb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jan 2024 17:20:44 -0800 Subject: [PATCH 0864/2686] Run update.sh --- nats/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nats/README.md b/nats/README.md index f34c2d0f938d..ee3620053037 100644 --- a/nats/README.md +++ b/nats/README.md @@ -39,13 +39,9 @@ WARNING: ## Shared Tags -- `2.10.9`, `2.10`: +- `2.10.9`, `2.10`, `2`, `latest`: - [`2.10.9-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) -- `2`, `latest`: - - [`2.10.9-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) - - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) - `2.10.9-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - [`2.10.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/windowsservercore-1809/Dockerfile) - `2.10.9-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: From f1b8176786d9b9d5c2f3beb086284e9003d205ce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jan 2024 12:09:38 -0800 Subject: [PATCH 0865/2686] Run update.sh --- convertigo/README.md | 2 +- emqx/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 9ea7ed9db00f..2eda9c815a00 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.4`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/c166f0213006a87ba38472fd2dbcb7492ee9053e/docker/default/Dockerfile) +- [`8.2.5`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/7b2e2b01da28d3f47fcbc6717d7dd6a021f1f9fb/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 2b9b8001dde0..71ba9ec60e3c 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -27,7 +27,7 @@ WARNING: - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) -- [`5.4.0`, `5.4`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/753e8c47442682d4b96dbd280f0a6d44ca09a5fa/5.4/Dockerfile) +- [`5.4.1`, `5.4`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) # Quick reference (cont.) From 63a8e78469e4086f225550037dcbd34168785723 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jan 2024 13:21:26 -0800 Subject: [PATCH 0866/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index fccd61911945..9940b5e78b8d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20231218.0`](https://github.com/amazonlinux/container-images/blob/b873d5675468bf092eb887e9ff01d72625a13945/Dockerfile) -- [`2`, `2.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/a062c0d5722a2c85f82df96a01a5a21a15adff7d/Dockerfile) +- [`2023`, `latest`, `2023.3.20240108.0`](https://github.com/amazonlinux/container-images/blob/6d4428e0e6eeaa40e6fe5df520a2747659bc6396/Dockerfile) +- [`2`, `2.0.20240109.0`](https://github.com/amazonlinux/container-images/blob/2e6be1003ccf1fb8210e2b67df79eb7cf67bdf99/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) From be78e472e8f80f02ec6c1dba757ffa1cadf47121 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jan 2024 16:19:45 -0800 Subject: [PATCH 0867/2686] Run update.sh --- haproxy/README.md | 4 +-- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 1b68d8e1e67b..41a10f3991f0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.0-dev1`, `3.0-dev`, `3.0-dev1-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/Dockerfile) - [`3.0-dev1-alpine`, `3.0-dev-alpine`, `3.0-dev1-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/alpine/Dockerfile) -- [`2.9.1`, `2.9`, `latest`, `2.9.1-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/Dockerfile) -- [`2.9.1-alpine`, `2.9-alpine`, `alpine`, `2.9.1-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.9/alpine/Dockerfile) +- [`2.9.2`, `2.9`, `latest`, `2.9.2-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/b392e587eaca4394492248524cd0297ddb86aa5e/2.9/Dockerfile) +- [`2.9.2-alpine`, `2.9-alpine`, `alpine`, `2.9.2-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/b392e587eaca4394492248524cd0297ddb86aa5e/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 533b2187a3f9..7830660c6f92 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-4-jdk-oraclelinux8`, `23-ea-4-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-4-jdk-oracle`, `23-ea-4-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-4-jdk-oraclelinux7`, `23-ea-4-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-4-jdk-bookworm`, `23-ea-4-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/bookworm/Dockerfile) -- [`23-ea-4-jdk-slim-bookworm`, `23-ea-4-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-4-jdk-slim`, `23-ea-4-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-4-jdk-bullseye`, `23-ea-4-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/bullseye/Dockerfile) -- [`23-ea-4-jdk-slim-bullseye`, `23-ea-4-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-4-jdk-windowsservercore-ltsc2022`, `23-ea-4-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-4-jdk-windowsservercore-1809`, `23-ea-4-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-4-jdk-nanoserver-1809`, `23-ea-4-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-30-jdk-oraclelinux8`, `22-ea-30-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-30-jdk-oracle`, `22-ea-30-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-30-jdk-oraclelinux7`, `22-ea-30-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-30-jdk-bookworm`, `22-ea-30-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/bookworm/Dockerfile) -- [`22-ea-30-jdk-slim-bookworm`, `22-ea-30-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-30-jdk-slim`, `22-ea-30-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-30-jdk-bullseye`, `22-ea-30-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/bullseye/Dockerfile) -- [`22-ea-30-jdk-slim-bullseye`, `22-ea-30-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-30-jdk-windowsservercore-ltsc2022`, `22-ea-30-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-30-jdk-windowsservercore-1809`, `22-ea-30-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-30-jdk-nanoserver-1809`, `22-ea-30-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-5-jdk-oraclelinux8`, `23-ea-5-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-5-jdk-oracle`, `23-ea-5-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-5-jdk-oraclelinux7`, `23-ea-5-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-5-jdk-bookworm`, `23-ea-5-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/bookworm/Dockerfile) +- [`23-ea-5-jdk-slim-bookworm`, `23-ea-5-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-5-jdk-slim`, `23-ea-5-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-5-jdk-bullseye`, `23-ea-5-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/bullseye/Dockerfile) +- [`23-ea-5-jdk-slim-bullseye`, `23-ea-5-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-5-jdk-windowsservercore-ltsc2022`, `23-ea-5-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-5-jdk-windowsservercore-1809`, `23-ea-5-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-5-jdk-nanoserver-1809`, `23-ea-5-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-31-jdk-oraclelinux8`, `22-ea-31-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-31-jdk-oracle`, `22-ea-31-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-31-jdk-oraclelinux7`, `22-ea-31-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-31-jdk-bookworm`, `22-ea-31-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/bookworm/Dockerfile) +- [`22-ea-31-jdk-slim-bookworm`, `22-ea-31-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-31-jdk-slim`, `22-ea-31-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-31-jdk-bullseye`, `22-ea-31-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/bullseye/Dockerfile) +- [`22-ea-31-jdk-slim-bullseye`, `22-ea-31-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-31-jdk-windowsservercore-ltsc2022`, `22-ea-31-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-31-jdk-windowsservercore-1809`, `22-ea-31-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-31-jdk-nanoserver-1809`, `22-ea-31-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-4-jdk`, `23-ea-4`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-4-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-4-jdk-windowsservercore`, `23-ea-4-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-4-jdk-nanoserver`, `23-ea-4-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3fe33859b415224138fcaa8e25f9ab8e98414f43/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-30-jdk`, `22-ea-30`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-30-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-30-jdk-windowsservercore`, `22-ea-30-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-30-jdk-nanoserver`, `22-ea-30-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89921bd2fdecd222caef853f58b7da5061954b76/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-5-jdk`, `23-ea-5`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-5-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-5-jdk-windowsservercore`, `23-ea-5-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-5-jdk-nanoserver`, `23-ea-5-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-31-jdk`, `22-ea-31`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-31-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-31-jdk-windowsservercore`, `22-ea-31-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-31-jdk-nanoserver`, `22-ea-31-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 000adfd9206b3fab25bb250b822214587b405df0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jan 2024 18:18:29 -0800 Subject: [PATCH 0868/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index f53b944e6430..ddf53374c5ed 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-rc.1-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/cli/Dockerfile) -- [`25.0.0-rc.1-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.1-dind-alpine3.19`, `25.0.0-rc.1`, `25-rc`, `rc`, `25.0.0-rc.1-alpine3.19`](https://github.com/docker-library/docker/blob/bfe953e38b9610b085d1e0f139dbe2c39556216b/25-rc/dind/Dockerfile) -- [`25.0.0-rc.1-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-rc.1-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-rc.1-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-rc.1-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c40845fc737959146e92791751def871ab40119e/24/cli/Dockerfile) +- [`25.0.0-rc.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/cli/Dockerfile) +- [`25.0.0-rc.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.2-dind-alpine3.19`, `25.0.0-rc.2`, `25-rc`, `rc`, `25.0.0-rc.2-alpine3.19`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/dind/Dockerfile) +- [`25.0.0-rc.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-rc.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-rc.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-rc.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.0-rc.1-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/458a535b2ce98b44ebf9f742061f29fdae08cea0/25-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.0-rc.2-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/71bd9300d17fb5b0722360fa298d9eace51c27c4/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 98741270982ecf877e9b0c41eed82e2f7a0f3618 Mon Sep 17 00:00:00 2001 From: Julien Nioche Date: Tue, 16 Jan 2024 10:17:10 +0000 Subject: [PATCH 0869/2686] Port to repo at Apache + improved and updated documentation. See https://github.com/docker-library/official-images/pull/16035 Signed-off-by: Julien Nioche --- storm/content.md | 6 +++++- storm/get-help.md | 1 + storm/github-repo | 2 +- storm/issues.md | 1 + storm/license.md | 6 +++++- storm/maintainer.md | 2 +- 6 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 storm/get-help.md create mode 100644 storm/issues.md mode change 120000 => 100644 storm/maintainer.md diff --git a/storm/content.md b/storm/content.md index 901567c666eb..a18b4a120319 100644 --- a/storm/content.md +++ b/storm/content.md @@ -1,6 +1,10 @@ # What is Apache Storm? -Apache Storm is a distributed computation framework written predominantly in the Clojure programming language. Originally created by Nathan Marz and team at BackType, the project was open sourced after being acquired by Twitter. It uses custom created "spouts" and "bolts" to define information sources and manipulations to allow batch, distributed processing of streaming data. The initial release was on 17 September 2011. +Apache Storm is a free and open source distributed realtime computation system. Apache Storm makes it easy to reliably process unbounded streams of data, doing for realtime processing what Hadoop did for batch processing. Apache Storm is simple, can be used with any programming language, and is a lot of fun to use! + +Apache Storm has many use cases: realtime analytics, online machine learning, continuous computation, distributed RPC, ETL, and more. Apache Storm is fast: a benchmark clocked it at over a million tuples processed per second per node. It is scalable, fault-tolerant, guarantees your data will be processed, and is easy to set up and operate. + +Apache Storm integrates with the queueing and database technologies you already use. An Apache Storm topology consumes streams of data and processes those streams in arbitrarily complex ways, repartitioning the streams between each stage of the computation however needed. > [wikipedia.org/wiki/Storm_(event_processor)](https://en.wikipedia.org/wiki/Storm_(event_processor)) diff --git a/storm/get-help.md b/storm/get-help.md new file mode 100644 index 000000000000..53940808e59c --- /dev/null +++ b/storm/get-help.md @@ -0,0 +1 @@ +[Apache Storm™ community](https://storm.apache.org/getting-help.html) diff --git a/storm/github-repo b/storm/github-repo index a8b88815d9ba..0ff0b8656974 100644 --- a/storm/github-repo +++ b/storm/github-repo @@ -1 +1 @@ -https://github.com/31z4/storm-docker +https://github.com/apache/storm-docker diff --git a/storm/issues.md b/storm/issues.md new file mode 100644 index 000000000000..d7535f9de99c --- /dev/null +++ b/storm/issues.md @@ -0,0 +1 @@ +https://issues.apache.org/jira/browse/STORM diff --git a/storm/license.md b/storm/license.md index 995b917aadc5..4a6432f0ce75 100644 --- a/storm/license.md +++ b/storm/license.md @@ -1 +1,5 @@ -View [license information](http://storm.apache.org/about/free-and-open-source.html) for the software contained in this image. +Apache Storm, Storm, Apache, the Apache feather logo, and the Apache Storm project logo are trademarks of The Apache Software Foundation. + +Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +See [license information](http://storm.apache.org/about/free-and-open-source.html). diff --git a/storm/maintainer.md b/storm/maintainer.md deleted file mode 120000 index e727ff0696ae..000000000000 --- a/storm/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -../.common-templates/maintainer-community.md \ No newline at end of file diff --git a/storm/maintainer.md b/storm/maintainer.md new file mode 100644 index 000000000000..a08decbc7bfa --- /dev/null +++ b/storm/maintainer.md @@ -0,0 +1 @@ +[Apache Storm](https://storm.apache.org/contribute/People.html) From ac366aaccdf7ebc6e6f796fdbc8b116326d71e84 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jan 2024 10:10:12 -0800 Subject: [PATCH 0870/2686] Run update.sh --- clearlinux/README.md | 2 +- mongo-express/README.md | 8 ++++---- photon/README.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 992041f7b2d7..b1179fc244ab 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/217f4343f59409f73803e4499d26af52b36c42cf/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/36385de607241cccba05f15d3d6b48bbea5beac6/Dockerfile) # Quick reference (cont.) diff --git a/mongo-express/README.md b/mongo-express/README.md index f249043c05e0..0245140404d7 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/20-alpine3.19/Dockerfile) -- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/20-alpine3.18/Dockerfile) -- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/18-alpine3.19/Dockerfile) -- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/ba15b0805c6f2fb454dbac90370898bc097e4c33/1.0/18-alpine3.18/Dockerfile) +- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/20-alpine3.19/Dockerfile) +- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/20-alpine3.18/Dockerfile) +- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/18-alpine3.19/Dockerfile) +- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/18-alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 4159fa8faccc..625bab83e92a 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240106`, `latest`](https://github.com/vmware/photon-docker-image/blob/afd4b8ae99e15a2f6959fcc4bf64d75ab33955e3/docker/Dockerfile) -- [`4.0`, `4.0-20231230`](https://github.com/vmware/photon-docker-image/blob/9acebe9db4af2a41ccfc90a2b712df378ccc9558/docker/Dockerfile) -- [`3.0`, `3.0-20231209`](https://github.com/vmware/photon-docker-image/blob/13459fd9a852e4f8b1959a1bde0bf417763e17e1/docker/Dockerfile) +- [`5.0`, `5.0-20240113`, `latest`](https://github.com/vmware/photon-docker-image/blob/de5733884fbf9113d1bad06720e8978a56f48dfd/docker/Dockerfile) +- [`4.0`, `4.0-20240113`](https://github.com/vmware/photon-docker-image/blob/04c59d9abdd62273d3fba09747854c1d665e9856/docker/Dockerfile) +- [`3.0`, `3.0-20240113`](https://github.com/vmware/photon-docker-image/blob/f2ef5ef8589d47190ba95f0fecd547771334a1dd/docker/Dockerfile) # Quick reference (cont.) From 8e1ad922964e4f7800abfdebce2bce2823da756a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jan 2024 11:22:37 -0800 Subject: [PATCH 0871/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 68 +++++++++++++++++------------------ nextcloud/README.md | 2 ++ node/README.md | 12 +++---- odoo/README.md | 6 ++-- rust/README.md | 10 +++--- storm/README.md | 24 ++++++++----- 6 files changed, 66 insertions(+), 56 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 038f2884130e..7e4f86656b7e 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u392-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u392-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u392-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-focal`, `open-20-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-jammy`, `open-20-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jdk-centos7`, `open-20-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/centos/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-focal`, `open-20-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-jammy`, `open-20-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-20.0.2_9-jre-centos7`, `open-20-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/centos/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u392-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u392-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.21_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.9_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/centos/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/centos/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.1_12-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/centos/Dockerfile.open.releases.full) ## Shared Tags - `open-8u392-b08-jdk`, `open-8-jdk`: - - [`open-8u392-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u392-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u392-b08-jre`, `open-8-jre`: - - [`open-8u392-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u392-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.21_9-jdk`, `open-11-jdk`: - - [`open-11.0.21_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.21_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.21_9-jre`, `open-11-jre`: - - [`open-11.0.21_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.21_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.9_9-jdk`, `open-17-jdk`: - - [`open-17.0.9_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.9_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.9_9-jre`, `open-17-jre`: - - [`open-17.0.9_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-20.0.2_9-jdk`, `open-20-jdk`: - - [`open-20.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-20.0.2_9-jre`, `open-20-jre`: - - [`open-20.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b80c29a7fce821c4ebf162988a7251efa1c50fac/20/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.9_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.1_12-jdk`, `open-21-jdk`: + - [`open-21.0.1_12-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.1_12-jre`, `open-21-jre`: + - [`open-21.0.1_12-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 9acf235ae195..c5deb00261d3 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -228,6 +228,8 @@ To use an external SMTP server, you have to provide the connection details. To c - `MAIL_FROM_ADDRESS` (not set by default): Use this address for the 'from' field in the emails sent by Nextcloud. - `MAIL_DOMAIN` (not set by default): Set a different domain for the emails than the domain where Nextcloud is installed. +At least `SMTP_HOST`, `MAIL_FROM_ADDRESS` and `MAIL_DOMAIN` must be set for the configurations to be applied. + Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html) for other values to configure SMTP. To use an external S3 compatible object store as primary storage, set the following variables: diff --git a/node/README.md b/node/README.md index 398b6346a375..eb8208d7368a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.5-alpine3.18`, `21.5.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.5-alpine`, `21.5-alpine3.19`, `21.5.0-alpine`, `21.5.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.5`, `21.5-bookworm`, `21.5.0`, `21.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.5-bookworm-slim`, `21.5-slim`, `21.5.0-bookworm-slim`, `21.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.5-bullseye`, `21.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.5-bullseye-slim`, `21.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9ee59bf646e8be3ff6ae849e8119312f198be55c/21/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.0-alpine`, `21.6.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.0`, `21.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.0-bookworm-slim`, `21.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.6-bullseye`, `21.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.0-alpine`, `20.11.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.0`, `20.11.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index a90e61105337..d3bf6ed9fe29 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/c6ef467e928725f597810d05743d6b354ab2e0ab/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/15.0/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 9522ceff8640..b13ae4c73cda 100644 --- a/rust/README.md +++ b/rust/README.md @@ -26,10 +26,10 @@ WARNING: - [`1-buster`, `1.75-buster`, `1.75.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/Dockerfile) - [`1-slim-buster`, `1.75-slim-buster`, `1.75.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.75-bullseye`, `1.75.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.75-slim-bullseye`, `1.75.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.75-bookworm`, `1.75.0-bookworm`, `bookworm`, `1`, `1.75`, `1.75.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.75-slim-bookworm`, `1.75.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.75-slim`, `1.75.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/bookworm/slim/Dockerfile) +- [`1-bullseye`, `1.75-bullseye`, `1.75.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.75-slim-bullseye`, `1.75.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.75-bookworm`, `1.75.0-bookworm`, `bookworm`, `1`, `1.75`, `1.75.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.75-slim-bookworm`, `1.75.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.75-slim`, `1.75.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bookworm/slim/Dockerfile) - [`1-alpine3.18`, `1.75-alpine3.18`, `1.75.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/alpine3.18/Dockerfile) - [`1-alpine3.19`, `1.75-alpine3.19`, `1.75.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.75-alpine`, `1.75.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e7f8ab58b3feca354792122f4df6624e291c404b/1.75.0/alpine3.19/Dockerfile) @@ -39,7 +39,7 @@ WARNING: [https://github.com/rust-lang/docker-rust/issues](https://github.com/rust-lang/docker-rust/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/) + [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rust/) - **Published image artifact details**: [repo-info repo's `repos/rust/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rust) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rust)) diff --git a/storm/README.md b/storm/README.md index a1c445d00690..cfc988a7fa51 100644 --- a/storm/README.md +++ b/storm/README.md @@ -17,21 +17,21 @@ WARNING: # Quick reference - **Maintained by**: - [the Docker Community](https://github.com/31z4/storm-docker) + [Apache Storm](https://storm.apache.org/contribute/People.html) - **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + [Apache Storm™ community](https://storm.apache.org/getting-help.html) # Supported tags and respective `Dockerfile` links -- [`1.2.4-temurin`, `1.2-temurin`](https://github.com/31z4/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) -- [`2.4.0-temurin`, `2.4-temurin`](https://github.com/31z4/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) -- [`2.5.0`, `2.5`, `latest`](https://github.com/31z4/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) +- [`1.2.4-temurin`, `1.2-temurin`](https://github.com/apache/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) +- [`2.4.0-temurin`, `2.4-temurin`](https://github.com/apache/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) +- [`2.5.0`, `2.5`, `latest`](https://github.com/apache/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) # Quick reference (cont.) - **Where to file issues**: - [https://github.com/31z4/storm-docker/issues](https://github.com/31z4/storm-docker/issues?q=) + https://issues.apache.org/jira/browse/STORM - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/storm/), [`arm64v8`](https://hub.docker.com/r/arm64v8/storm/) @@ -49,7 +49,11 @@ WARNING: # What is Apache Storm? -Apache Storm is a distributed computation framework written predominantly in the Clojure programming language. Originally created by Nathan Marz and team at BackType, the project was open sourced after being acquired by Twitter. It uses custom created "spouts" and "bolts" to define information sources and manipulations to allow batch, distributed processing of streaming data. The initial release was on 17 September 2011. +Apache Storm is a free and open source distributed realtime computation system. Apache Storm makes it easy to reliably process unbounded streams of data, doing for realtime processing what Hadoop did for batch processing. Apache Storm is simple, can be used with any programming language, and is a lot of fun to use! + +Apache Storm has many use cases: realtime analytics, online machine learning, continuous computation, distributed RPC, ETL, and more. Apache Storm is fast: a benchmark clocked it at over a million tuples processed per second per node. It is scalable, fault-tolerant, guarantees your data will be processed, and is easy to set up and operate. + +Apache Storm integrates with the queueing and database technologies you already use. An Apache Storm topology consumes streams of data and processes those streams in arbitrarily complex ways, repartitioning the streams between each stage of the computation however needed. > [wikipedia.org/wiki/Storm_(event_processor)](https://en.wikipedia.org/wiki/Storm_(event_processor)) @@ -171,7 +175,11 @@ $ docker run -it -v /logs -v /data storm storm nimbus # License -View [license information](http://storm.apache.org/about/free-and-open-source.html) for the software contained in this image. +Apache Storm, Storm, Apache, the Apache feather logo, and the Apache Storm project logo are trademarks of The Apache Software Foundation. + +Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +See [license information](http://storm.apache.org/about/free-and-open-source.html). As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). From fccd75385a03db25fdc47e7128fce19160e059dc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jan 2024 16:09:38 -0800 Subject: [PATCH 0872/2686] Run update.sh --- bash/README.md | 4 +-- pypy/README.md | 78 +++++++++++++++++++++++++------------------------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/bash/README.md b/bash/README.md index 8efdd220a425..23a621910d34 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240102`, `devel`, `devel-20240102-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/0a41925f6fe8e7a9053e1f30a8aeb221eb7cc81f/devel/Dockerfile) -- [`5.2.21`, `5.2`, `5`, `latest`, `5.2.21-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3fa1defbaff9d8b56f01d16254ebd3f21e20d99f/5.2/Dockerfile) +- [`devel-20240114`, `devel`, `devel-20240114-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/b08b986ade4dab726334b111c89688491534b732/devel/Dockerfile) +- [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) - [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.19`, `4.4-alpine3.19`, `4-alpine3.19`](https://github.com/tianon/docker-bash/blob/682faa73aff031837c3d60db8666384c2ec72bba/4.4/Dockerfile) diff --git a/pypy/README.md b/pypy/README.md index 30c9611d6f06..646b24260e05 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`3.10-7.3.14-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.14-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bookworm/Dockerfile) -- [`3.10-7.3.14-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.14-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.14-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.14-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bullseye/Dockerfile) -- [`3.10-7.3.14-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.14-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.14-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.14-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.14-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.14-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.14-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.14-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.14-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bookworm/Dockerfile) -- [`3.9-7.3.14-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.14-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bullseye/Dockerfile) -- [`3.9-7.3.14-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.14-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.14-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.14-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.14-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.14-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bookworm/Dockerfile) -- [`2.7-7.3.14-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.14-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.14-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.14-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bullseye/Dockerfile) -- [`2.7-7.3.14-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.14-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.14-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.14-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.14-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.14-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.14-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.14-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.15-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.15-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bookworm/Dockerfile) +- [`3.10-7.3.15-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.15-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.15-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.15-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bullseye/Dockerfile) +- [`3.10-7.3.15-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.15-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.15-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.15-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.15-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.15-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.15-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.15-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.15-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bookworm/Dockerfile) +- [`3.9-7.3.15-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.15-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bullseye/Dockerfile) +- [`3.9-7.3.15-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.15-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.15-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.15-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.15-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.15-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bookworm/Dockerfile) +- [`2.7-7.3.15-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.15-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.15-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.15-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bullseye/Dockerfile) +- [`2.7-7.3.15-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.15-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.15-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.15-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.15-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.15-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.15-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.15-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.10-7.3.14`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.14`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/bullseye/Dockerfile) - - [`3.10-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.14-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.14-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/c773086b7840565f7b9178368916b0be13baf623/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.14`, `3.9-7.3`, `3.9-7`, `3.9`: - - [`3.9-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/bullseye/Dockerfile) - - [`3.9-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.14-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - - [`3.9-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2af0c340a2ca91502ef472688506b9ad165221a9/3.9/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.14`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.14`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.14-bullseye`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/bullseye/Dockerfile) - - [`2.7-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.14-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.14-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.14-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.14-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/640edf04a7d1e4d773941a0070925758d80e6998/2.7/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.15`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.15`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bullseye/Dockerfile) + - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.15-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.15-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.15`, `3.9-7.3`, `3.9-7`, `3.9`: + - [`3.9-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bullseye/Dockerfile) + - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.15-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: + - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.15`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.15`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bullseye/Dockerfile) + - [`2.7-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.15-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.15-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From e10e29bde7cbf982542e1d43b82d0d8754d26673 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jan 2024 18:20:50 -0800 Subject: [PATCH 0873/2686] Run update.sh --- buildpack-deps/README.md | 42 ++++++++++++++++++++-------------------- ubuntu/README.md | 4 ++-- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 4096ff0c7371..7ad64ce85f1b 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -25,35 +25,35 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`bookworm-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) -- [`bookworm-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/scm/Dockerfile) -- [`bookworm`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/84e7e46026131a108a6480e5ed2969e8acf2d4e2/debian/bookworm/Dockerfile) +- [`bookworm-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/scm/Dockerfile) +- [`bookworm`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/Dockerfile) - [`bullseye-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) -- [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/scm/Dockerfile) -- [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/bullseye/Dockerfile) +- [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/scm/Dockerfile) +- [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/Dockerfile) - [`buster-curl`, `oldoldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) -- [`buster-scm`, `oldoldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/scm/Dockerfile) -- [`buster`, `oldoldstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/buster/Dockerfile) -- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/sid/curl/Dockerfile) -- [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/scm/Dockerfile) -- [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/debian/sid/Dockerfile) +- [`buster-scm`, `oldoldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/buster/scm/Dockerfile) +- [`buster`, `oldoldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/buster/Dockerfile) +- [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/curl/Dockerfile) +- [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/scm/Dockerfile) +- [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/Dockerfile) - [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/debian/trixie/curl/Dockerfile) -- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/scm/Dockerfile) -- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/443a8d3c6e53dbd17c55070de7de850f865ba6eb/debian/trixie/Dockerfile) +- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/trixie/scm/Dockerfile) +- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/trixie/Dockerfile) - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) -- [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/ubuntu/focal/scm/Dockerfile) -- [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/98a5ab81d47a106c458cdf90733df0ee8beea06c/ubuntu/focal/Dockerfile) +- [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/scm/Dockerfile) +- [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/Dockerfile) - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) -- [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/scm/Dockerfile) -- [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/e2fc735283ba4e96efc3e4acf2b74bc3eccbf327/ubuntu/jammy/Dockerfile) +- [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/scm/Dockerfile) +- [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/Dockerfile) - [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/lunar/curl/Dockerfile) -- [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/scm/Dockerfile) -- [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/31e15bc4a2352c20998e5da6bd8aaa727fd19d06/ubuntu/lunar/Dockerfile) +- [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/lunar/scm/Dockerfile) +- [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/lunar/Dockerfile) - [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) -- [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/scm/Dockerfile) -- [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/ba367c3a52946cee45274b62f7f8b27e07807289/ubuntu/mantic/Dockerfile) +- [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/scm/Dockerfile) +- [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/Dockerfile) - [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/curl/Dockerfile) -- [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/scm/Dockerfile) -- [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/Dockerfile) +- [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/noble/scm/Dockerfile) +- [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/noble/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index b73ae43922b7..235b2dcbf782 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20231211`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231211-1c7098d1&id=1c7098d1f72badd8cc2d425da3e2aacbe394fb7d) -- [`22.04`, `jammy-20231211.1`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20231211.1-688af4b1&id=688af4b17cff5f46798923b58dca3922c9dceed7) +- [`22.04`, `jammy-20240111`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240111-e6e3490a&id=e6e3490ad3f524ccaa072edafe525f8ca8ac5490) - [`23.04`, `lunar-20231128`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231128-1e15482a&id=1e15482adc1232275aec0e3566d81c6dd033ab2f) - [`23.10`, `mantic-20231128`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231128-f8f436b9&id=f8f436b92c9e971f61f0bf30d27ac4dda209703a) -- [`24.04`, `noble-20231221`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20231221-ca3b3e0c&id=ca3b3e0c03ddaec7895273977a1d0e25ac5cbf71) +- [`24.04`, `noble-20240114`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240114-7ddcbbb0&id=7ddcbbb0945744800499a919528ba686d5e50239) # Quick reference (cont.) From 04e5522c5c32cffb19b5071d1929bd492b40b932 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 10:19:40 -0800 Subject: [PATCH 0874/2686] Run update.sh --- storm/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/storm/README.md b/storm/README.md index cfc988a7fa51..72cdc793a1e1 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.2.4-temurin`, `1.2-temurin`](https://github.com/apache/storm-docker/blob/14c749848c8ff7c955f2b29c57e327ae80fbbb7e/1.2.4/Dockerfile) -- [`2.4.0-temurin`, `2.4-temurin`](https://github.com/apache/storm-docker/blob/a81f9686e8a13dbf428864482f2d0bba50e9c414/2.4.0/Dockerfile) -- [`2.5.0`, `2.5`, `latest`](https://github.com/apache/storm-docker/blob/8e162f994d36bfae7f13a32ceb4193d185b9a89e/2.5.0/Dockerfile) +- [`2.6.0`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/965de975c7af0ed35174b4276971c52965b0fa0b/2.6.0/Dockerfile) # Quick reference (cont.) From d0d5ceac94becc825e7dff7150f3f8ac733189e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 12:09:36 -0800 Subject: [PATCH 0875/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 014b8c96440e..5757b0bd6c2b 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.4`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.4-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.4-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.4-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e00caf4065269a4ceca96b772b789cabcf48ece/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.5`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.5-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.5-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.5-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From 822fa3726b041120f108d331e56ee7a412a4f193 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 13:09:58 -0800 Subject: [PATCH 0876/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index b0541367aa7b..d264b7b1efef 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/11b61e5a98c62fb97e17d1304e54d3c1397fe32b/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7-slim-fips/Dockerfile) # Quick reference (cont.) From 3a754b125bc913ce5f94065c93e28592363e6f1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 14:10:13 -0800 Subject: [PATCH 0877/2686] Run update.sh --- elasticsearch/README.md | 3 +-- haxe/README.md | 35 ----------------------------------- kibana/README.md | 3 +-- logstash/README.md | 3 +-- 4 files changed, 3 insertions(+), 41 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 557826705ca2..1892f60f6369 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/elasticsearch/Dockerfile) -- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/elasticsearch/Dockerfile) +- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/elasticsearch/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index dd410c68e94d..a885a8e1072c 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -60,17 +60,6 @@ WARNING: - [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) - [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) - [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) -- [`3.4.7-buster`, `3.4-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) -- [`3.4.7-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) -- [`3.4.7-windowsservercore-1809`, `3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) -- [`3.3.0-rc.1-buster`, `3.3.0-buster`, `3.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.3/buster/Dockerfile) -- [`3.3.0-rc.1-windowsservercore-ltsc2022`, `3.3.0-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) -- [`3.3.0-rc.1-windowsservercore-1809`, `3.3.0-windowsservercore-1809`, `3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) -- [`3.2.1-buster`, `3.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.2/buster/Dockerfile) -- [`3.2.1-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) -- [`3.2.1-windowsservercore-1809`, `3.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) -- [`3.1.3-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-ltsc2022/Dockerfile) -- [`3.1.3-windowsservercore-1809`, `3.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -102,30 +91,6 @@ WARNING: - `4.0.5-windowsservercore`, `4.0-windowsservercore`: - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- `3.4.7`, `3.4`: - - [`3.4.7-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.4/buster/Dockerfile) - - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) -- `3.4.7-windowsservercore`, `3.4-windowsservercore`: - - [`3.4.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-ltsc2022/Dockerfile) - - [`3.4.7-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.4/windowsservercore-1809/Dockerfile) -- `3.3.0-rc.1`, `3.3.0`, `3.3`: - - [`3.3.0-rc.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.3/buster/Dockerfile) - - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) -- `3.3.0-rc.1-windowsservercore`, `3.3.0-windowsservercore`, `3.3-windowsservercore`: - - [`3.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-ltsc2022/Dockerfile) - - [`3.3.0-rc.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.3/windowsservercore-1809/Dockerfile) -- `3.2.1`, `3.2`: - - [`3.2.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/3.2/buster/Dockerfile) - - [`3.2.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - - [`3.2.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) -- `3.2.1-windowsservercore`, `3.2-windowsservercore`: - - [`3.2.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-ltsc2022/Dockerfile) - - [`3.2.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.2/windowsservercore-1809/Dockerfile) -- `3.1.3-windowsservercore`, `3.1-windowsservercore`, `3.1.3`, `3.1`: - - [`3.1.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-ltsc2022/Dockerfile) - - [`3.1.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/3.1/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index c33c30915e78..eb3bf15786cf 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/kibana/Dockerfile) -- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/kibana/Dockerfile) +- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/kibana/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index e5b44e12a7dd..c5a4d27d0355 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.3`](https://github.com/elastic/dockerfiles/blob/1484679916b52a402f0d02ea290d60f6e1eca39a/logstash/Dockerfile) -- [`8.11.2`](https://github.com/elastic/dockerfiles/blob/58aa6df8045922c7c6ac92055a120365e158dd20/logstash/Dockerfile) +- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/logstash/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/logstash/Dockerfile) # Quick reference (cont.) From d1f962cc2c8c54140c7bcaf91cfd7d8460e8cf66 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 15:10:16 -0800 Subject: [PATCH 0878/2686] Run update.sh --- amazoncorretto/README.md | 77 +++++++++++++++++++++------------------- docker/README.md | 18 +++++----- ghost/README.md | 4 +-- 3 files changed, 52 insertions(+), 47 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 2590646ddc95..2bfae59d8170 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,42 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u392`, `8u392-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u392-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u392-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u392-al2023-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u392-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u392-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u392-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u392-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u392-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u392-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u392-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`, `8-alpine`, `8u392-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u392-alpine3.18-jre`, `8-alpine-jre`, `8u392-alpine-jre`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/8/jre/alpine/3.18/Dockerfile) -- [`11`, `11.0.21`, `11.0.21-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.21-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.21-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.21-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.21-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.21-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.21-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.21-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.21-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.21-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`, `11-alpine`, `11.0.21-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.9`, `17.0.9-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.9-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.9-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.9-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.9-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.9-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.9-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.9-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.9-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`, `17-alpine`, `17.0.9-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/17/jdk/alpine/3.18/Dockerfile) -- [`21`, `21.0.1`, `21.0.1-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.1-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.1-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.1-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.1-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.1-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.1-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.1-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`, `21-alpine`, `21.0.1-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7b82f91b119baacde36142f6c72e25a3963c0831/21/jdk/alpine/3.18/Dockerfile) +- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index ddf53374c5ed..1cde6e2f3665 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`25.0.0-rc.2-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/cli/Dockerfile) -- [`25.0.0-rc.2-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.2-dind-alpine3.19`, `25.0.0-rc.2`, `25-rc`, `rc`, `25.0.0-rc.2-alpine3.19`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/dind/Dockerfile) -- [`25.0.0-rc.2-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-rc.2-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-rc.2-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-rc.2-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`25.0.0-rc.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/cli/Dockerfile) +- [`25.0.0-rc.3-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.3-dind-alpine3.19`, `25.0.0-rc.3`, `25-rc`, `rc`, `25.0.0-rc.3-alpine3.19`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind/Dockerfile) +- [`25.0.0-rc.3-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind-rootless/Dockerfile) +- [`25.0.0-rc.3-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) +- [`25.0.0-rc.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-rc.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-1809/Dockerfile) - [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) @@ -43,9 +43,9 @@ WARNING: ## Shared Tags -- `25.0.0-rc.2-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fcc1d9e9caf010a3cd8496f39b35dc9a72070e3/25-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.0-rc.3-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: + - [`25.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index cf438a3fba5f..f940b2f1ea01 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.75.3`, `5.75`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4bc4a3be710e4f897989ff16f4685fb62730b6c2/5/debian/Dockerfile) -- [`5.75.3-alpine`, `5.75-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4bc4a3be710e4f897989ff16f4685fb62730b6c2/5/alpine/Dockerfile) +- [`5.76.0`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9ee89aa8776ccd6d9af80ae8dc8c1803b825aa56/5/debian/Dockerfile) +- [`5.76.0-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9ee89aa8776ccd6d9af80ae8dc8c1803b825aa56/5/alpine/Dockerfile) # Quick reference (cont.) From d5413784bb304162d36264fb79863ad9a932118f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jan 2024 17:09:35 -0800 Subject: [PATCH 0879/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index a71c7b2648e3..fd69791d8b3a 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.1-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.1-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.1-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.1-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.1-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.1-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.1-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.1-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.1-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.1-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.1-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.1-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.1-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.1-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.1-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.1`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.1-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.1-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.1-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.1-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.1-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.1-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.1-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.1-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.1-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.1-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.1-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.1-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.1-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.1-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/4278b1bf245b3184cf9a3d6cce92451af9e92ceb/10.2/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.7-php8.2-apache`, `10.1-php8.2-apache`, `10.1.7-php8.2`, `10.1-php8.2`, `10.1.7-apache-bookworm`, `10.1-apache-bookworm`, `10.1.7-apache`, `10.1-apache`, `10.1.7`, `10.1`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.7-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.7-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.7-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.7-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.7-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.7-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.7-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.7-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.7-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.7-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.7-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.7-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.7-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.7-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.7-php8.1-apache`, `10.1-php8.1-apache`, `10.1.7-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.7-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.7-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.7-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.7-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.7-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-alpine3.19/Dockerfile) -- [`10.1.7-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.2.2-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.2-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.2-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.2-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.2-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.2-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.2-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.2-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.2-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.2-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.2-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.2-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.2-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.2-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.2-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.2`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.2-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.2-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.2-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.2-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.2-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.2-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.2-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.2-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.2-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.2-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.2-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.2-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.2-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.2-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.8-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.18/Dockerfile) - [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bookworm/Dockerfile) - [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-bookworm/Dockerfile) - [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bullseye/Dockerfile) From 7586b2088c2936e3cfa7fc5f1264d0ca7b8ed3d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jan 2024 10:09:44 -0800 Subject: [PATCH 0880/2686] Run update.sh --- dart/README.md | 4 +-- elasticsearch/README.md | 2 +- gradle/README.md | 56 ++++++++++++++++++++--------------------- kibana/README.md | 2 +- logstash/README.md | 2 +- maven/README.md | 1 + sapmachine/README.md | 24 +++++++++--------- 7 files changed, 46 insertions(+), 45 deletions(-) diff --git a/dart/README.md b/dart/README.md index de917a1578d9..cef1122d6c15 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.4-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.4`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/f9685d704280a365b55bab6df3451ddf56bd3878/stable/bookworm/Dockerfile) -- [`3.3.0-174.3.beta-sdk`, `beta-sdk`, `3.3.0-174.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/f9685d704280a365b55bab6df3451ddf56bd3878/beta/bookworm/Dockerfile) +- [`3.2.5-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.5`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c24fcb7f76f0cb8a7a62432f4f8439f809a46d7d/stable/bookworm/Dockerfile) +- [`3.3.0-279.1.beta-sdk`, `beta-sdk`, `3.3.0-279.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c24fcb7f76f0cb8a7a62432f4f8439f809a46d7d/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 1892f60f6369..755ebd45fd9b 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/elasticsearch/Dockerfile) +- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/elasticsearch/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index cd33ab3b5c35..6cde47c35b97 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,34 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0-jdk8`, `8.5-jdk8`, `8-jdk8`, `jdk8`, `8.5.0-jdk8-jammy`, `8.5-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk8/Dockerfile) -- [`8.5.0-jdk8-focal`, `8.5-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk8-focal/Dockerfile) -- [`8.5.0-jdk11`, `8.5-jdk11`, `8-jdk11`, `jdk11`, `8.5.0-jdk11-jammy`, `8.5-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11/Dockerfile) -- [`8.5.0-jdk11-focal`, `8.5-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11-focal/Dockerfile) -- [`8.5.0-jdk11-alpine`, `8.5-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk11-alpine/Dockerfile) -- [`8.5.0-jdk17`, `8.5-jdk17`, `8-jdk17`, `jdk17`, `8.5.0-jdk`, `8.5-jdk`, `8-jdk`, `jdk`, `8.5.0`, `8.5`, `8`, `latest`, `8.5.0-jdk17-jammy`, `8.5-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.5.0-jdk-jammy`, `8.5-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.5.0-jammy`, `8.5-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17/Dockerfile) -- [`8.5.0-jdk17-focal`, `8.5-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.5.0-jdk-focal`, `8.5-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.5.0-focal`, `8.5-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-focal/Dockerfile) -- [`8.5.0-jdk17-alpine`, `8.5-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.5.0-jdk-alpine`, `8.5-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.5.0-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-alpine/Dockerfile) -- [`8.5.0-jdk17-graal`, `8.5-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.5.0-jdk-graal`, `8.5-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.5.0-graal`, `8.5-graal`, `8-graal`, `graal`, `8.5.0-jdk17-graal-jammy`, `8.5-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.5.0-jdk-graal-jammy`, `8.5-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.5.0-graal-jammy`, `8.5-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk17-graal/Dockerfile) -- [`8.5.0-jdk21`, `8.5-jdk21`, `8-jdk21`, `jdk21`, `8.5.0-jdk21-jammy`, `8.5-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21/Dockerfile) -- [`8.5.0-jdk21-alpine`, `8.5-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21-alpine/Dockerfile) -- [`8.5.0-jdk21-graal`, `8.5-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.5.0-jdk21-graal-jammy`, `8.5-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/792a35389f800e589fbfe50d96c38ac5b21eaf34/jdk21-graal/Dockerfile) -- [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8/Dockerfile) -- [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk8-focal/Dockerfile) -- [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11/Dockerfile) -- [`7.6.3-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11-focal/Dockerfile) -- [`7.6.3-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk11-alpine/Dockerfile) -- [`7.6.3-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.3-jdk`, `7.6-jdk`, `7-jdk`, `7.6.3`, `7.6`, `7`, `7.6.3-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.3-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.3-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17/Dockerfile) -- [`7.6.3-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.3-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.3-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17-focal/Dockerfile) -- [`7.6.3-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.3-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.3-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/318da3df050a9a05ae13c8b1481194c6ee056692/jdk17-alpine/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8/Dockerfile) -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk8-focal/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11/Dockerfile) -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11-focal/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk11-alpine/Dockerfile) -- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17/Dockerfile) -- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17-focal/Dockerfile) -- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/06672bd7ca729b51ef850b51306882c61a8ca606/jdk17-alpine/Dockerfile) +- [`8.5.0-jdk8`, `8.5-jdk8`, `8-jdk8`, `jdk8`, `8.5.0-jdk8-jammy`, `8.5-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk8/Dockerfile) +- [`8.5.0-jdk8-focal`, `8.5-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk8-focal/Dockerfile) +- [`8.5.0-jdk11`, `8.5-jdk11`, `8-jdk11`, `jdk11`, `8.5.0-jdk11-jammy`, `8.5-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11/Dockerfile) +- [`8.5.0-jdk11-focal`, `8.5-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11-focal/Dockerfile) +- [`8.5.0-jdk11-alpine`, `8.5-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11-alpine/Dockerfile) +- [`8.5.0-jdk17`, `8.5-jdk17`, `8-jdk17`, `jdk17`, `8.5.0-jdk`, `8.5-jdk`, `8-jdk`, `jdk`, `8.5.0`, `8.5`, `8`, `latest`, `8.5.0-jdk17-jammy`, `8.5-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.5.0-jdk-jammy`, `8.5-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.5.0-jammy`, `8.5-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17/Dockerfile) +- [`8.5.0-jdk17-focal`, `8.5-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.5.0-jdk-focal`, `8.5-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.5.0-focal`, `8.5-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-focal/Dockerfile) +- [`8.5.0-jdk17-alpine`, `8.5-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.5.0-jdk-alpine`, `8.5-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.5.0-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-alpine/Dockerfile) +- [`8.5.0-jdk17-graal`, `8.5-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.5.0-jdk-graal`, `8.5-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.5.0-graal`, `8.5-graal`, `8-graal`, `graal`, `8.5.0-jdk17-graal-jammy`, `8.5-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.5.0-jdk-graal-jammy`, `8.5-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.5.0-graal-jammy`, `8.5-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-graal/Dockerfile) +- [`8.5.0-jdk21`, `8.5-jdk21`, `8-jdk21`, `jdk21`, `8.5.0-jdk21-jammy`, `8.5-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21/Dockerfile) +- [`8.5.0-jdk21-alpine`, `8.5-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21-alpine/Dockerfile) +- [`8.5.0-jdk21-graal`, `8.5-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.5.0-jdk21-graal-jammy`, `8.5-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21-graal/Dockerfile) +- [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8/Dockerfile) +- [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8-focal/Dockerfile) +- [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11/Dockerfile) +- [`7.6.3-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11-focal/Dockerfile) +- [`7.6.3-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11-alpine/Dockerfile) +- [`7.6.3-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.3-jdk`, `7.6-jdk`, `7-jdk`, `7.6.3`, `7.6`, `7`, `7.6.3-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.3-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.3-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17/Dockerfile) +- [`7.6.3-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.3-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.3-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17-focal/Dockerfile) +- [`7.6.3-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.3-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.3-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17-alpine/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8-focal/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-focal/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17/Dockerfile) +- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-focal/Dockerfile) +- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index eb3bf15786cf..28df25a76b8e 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/kibana/Dockerfile) +- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/kibana/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index c5a4d27d0355..a13706011c74 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.4`](https://github.com/elastic/dockerfiles/blob/ee30c9a59a36e118a6e8738df18eea225459ea2c/logstash/Dockerfile) +- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/logstash/Dockerfile) - [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/logstash/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index d1c6a53762e1..96d9d25abf59 100644 --- a/maven/README.md +++ b/maven/README.md @@ -39,6 +39,7 @@ WARNING: - [`3.9.6-ibmjava-8`, `3.9.6-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibmjava-8/Dockerfile) - [`3.9.6-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-11-focal/Dockerfile) - [`3.9.6-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-17-focal/Dockerfile) +- [`3.9.6-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/77c76c589cdec3bd22e5dc18c8d7da20d486b604/ibm-semeru-21-jammy/Dockerfile) - [`3.9.6-amazoncorretto-11`, `3.9.6-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11/Dockerfile) - [`3.9.6-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-al2023/Dockerfile) - [`3.9.6-amazoncorretto-11-debian`, `3.9.6-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-debian/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 9ca2e82dcdce..3dcc82f9e965 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.21-jre-headless-ubuntu`, `11.0.21-jre-headless-ubuntu-jammy`, `11.0.21-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.21-jre-ubuntu`, `11.0.21-jre-ubuntu-jammy`, `11.0.21-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.21-jdk-headless-ubuntu`, `11.0.21-jdk-headless-ubuntu-jammy`, `11.0.21-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.21-jdk-ubuntu`, `11.0.21-jdk-ubuntu-jammy`, `11.0.21-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.21`, `11.0.21-ubuntu-jammy`, `11.0.21-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f85d04d3ea43c50dd1bc1db261be249dee1e6464/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.9-jre-headless-ubuntu`, `17.0.9-jre-headless-ubuntu-jammy`, `17.0.9-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.9-jre-ubuntu`, `17.0.9-jre-ubuntu-jammy`, `17.0.9-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.9-jdk-headless-ubuntu`, `17.0.9-jdk-headless-ubuntu-jammy`, `17.0.9-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.9-jdk-ubuntu`, `17.0.9-jdk-ubuntu-jammy`, `17.0.9-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.9`, `17.0.9-ubuntu-jammy`, `17.0.9-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eb4c15faebbc9b6faba22c7ece6c2c0c83480768/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.1-jre-headless-ubuntu`, `21.0.1-jre-headless-ubuntu-jammy`, `21.0.1-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.1-jre-ubuntu`, `21.0.1-jre-ubuntu-jammy`, `21.0.1-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.1-jdk-headless-ubuntu`, `21.0.1-jdk-headless-ubuntu-jammy`, `21.0.1-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) -- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.1-jdk-ubuntu`, `21.0.1-jdk-ubuntu-jammy`, `21.0.1-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.1`, `21.0.1-ubuntu-jammy`, `21.0.1-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/6331a3cfdcab77387d42beff859547d31b281ca7/dockerfiles/official/21/ubuntu/jdk/Dockerfile) +- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.22-jre-headless-ubuntu`, `11.0.22-jre-headless-ubuntu-jammy`, `11.0.22-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.22-jre-ubuntu`, `11.0.22-jre-ubuntu-jammy`, `11.0.22-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jre/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.22-jdk-headless-ubuntu`, `11.0.22-jdk-headless-ubuntu-jammy`, `11.0.22-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.22-jdk-ubuntu`, `11.0.22-jdk-ubuntu-jammy`, `11.0.22-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.22`, `11.0.22-ubuntu-jammy`, `11.0.22-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.10-jre-headless-ubuntu`, `17.0.10-jre-headless-ubuntu-jammy`, `17.0.10-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.10-jre-ubuntu`, `17.0.10-jre-ubuntu-jammy`, `17.0.10-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jre/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.10-jdk-headless-ubuntu`, `17.0.10-jdk-headless-ubuntu-jammy`, `17.0.10-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.10-jdk-ubuntu`, `17.0.10-jdk-ubuntu-jammy`, `17.0.10-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.10`, `17.0.10-ubuntu-jammy`, `17.0.10-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.2-jre-headless-ubuntu`, `21.0.2-jre-headless-ubuntu-jammy`, `21.0.2-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) +- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.2-jre-ubuntu`, `21.0.2-jre-ubuntu-jammy`, `21.0.2-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre/Dockerfile) +- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.2-jdk-headless-ubuntu`, `21.0.2-jdk-headless-ubuntu-jammy`, `21.0.2-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) +- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.2-jdk-ubuntu`, `21.0.2-jdk-ubuntu-jammy`, `21.0.2-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.2`, `21.0.2-ubuntu-jammy`, `21.0.2-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From 14a0585d3b5db2deb2cc0bfef09e31cdaf79c395 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jan 2024 11:22:02 -0800 Subject: [PATCH 0881/2686] Run update.sh --- solr/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/solr/README.md b/solr/README.md index 8dae95c9d744..31ed944ed133 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.0`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.4/Dockerfile) -- [`9.4.0-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.4-slim/Dockerfile) -- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/1d59ea67c3e3cba85e80badb65ff0a63f9e6789c/8.11-slim/Dockerfile) +- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.4-slim/Dockerfile) +- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/8.11-slim/Dockerfile) # Quick reference (cont.) From b45e1d71390c4855ba670137c56da4685c9f8599 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jan 2024 14:21:50 -0800 Subject: [PATCH 0882/2686] Run update.sh --- python/README.md | 124 +++++++++++++++++++++++------------------------ 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/python/README.md b/python/README.md index 43d9404219cb..d1f1b025a991 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.13.0a2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a2-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a2-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.1-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bookworm/Dockerfile) -- [`3.12.1-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.1-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/slim-bookworm/Dockerfile) -- [`3.12.1-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bullseye/Dockerfile) -- [`3.12.1-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/slim-bullseye/Dockerfile) -- [`3.12.1-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.12/alpine3.19/Dockerfile) -- [`3.12.1-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/alpine3.18/Dockerfile) -- [`3.12.1-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.1-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) -- [`3.11.7-slim-bookworm`, `3.11-slim-bookworm`, `3.11.7-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bookworm/Dockerfile) -- [`3.11.7-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bullseye/Dockerfile) -- [`3.11.7-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/slim-bullseye/Dockerfile) -- [`3.11.7-alpine3.19`, `3.11-alpine3.19`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.11/alpine3.19/Dockerfile) -- [`3.11.7-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/alpine3.18/Dockerfile) -- [`3.11.7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) -- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bookworm/Dockerfile) -- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bullseye/Dockerfile) -- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.10/alpine3.19/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/alpine3.18/Dockerfile) -- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bookworm/Dockerfile) -- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bookworm/Dockerfile) -- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bullseye/Dockerfile) -- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.9/alpine3.19/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/alpine3.18/Dockerfile) -- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bookworm/Dockerfile) -- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bookworm/Dockerfile) -- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bullseye/Dockerfile) -- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/789d789e4a8db71d3d393667971c49b845ffdc3f/3.8/alpine3.19/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/alpine3.18/Dockerfile) +- [`3.13.0a3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a3-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a3-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.1-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bookworm/Dockerfile) +- [`3.12.1-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.1-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/slim-bookworm/Dockerfile) +- [`3.12.1-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bullseye/Dockerfile) +- [`3.12.1-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/slim-bullseye/Dockerfile) +- [`3.12.1-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/alpine3.19/Dockerfile) +- [`3.12.1-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/alpine3.18/Dockerfile) +- [`3.12.1-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.1-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bookworm/Dockerfile) +- [`3.11.7-slim-bookworm`, `3.11-slim-bookworm`, `3.11.7-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/slim-bookworm/Dockerfile) +- [`3.11.7-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bullseye/Dockerfile) +- [`3.11.7-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/slim-bullseye/Dockerfile) +- [`3.11.7-alpine3.19`, `3.11-alpine3.19`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/alpine3.19/Dockerfile) +- [`3.11.7-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/alpine3.18/Dockerfile) +- [`3.11.7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bookworm/Dockerfile) +- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/slim-bookworm/Dockerfile) +- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bullseye/Dockerfile) +- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/slim-bullseye/Dockerfile) +- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/alpine3.19/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/alpine3.18/Dockerfile) +- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bookworm/Dockerfile) +- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/slim-bookworm/Dockerfile) +- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bullseye/Dockerfile) +- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/slim-bullseye/Dockerfile) +- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/alpine3.19/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/alpine3.18/Dockerfile) +- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bookworm/Dockerfile) +- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/slim-bookworm/Dockerfile) +- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bullseye/Dockerfile) +- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/slim-bullseye/Dockerfile) +- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/alpine3.19/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/alpine3.18/Dockerfile) ## Shared Tags -- `3.13.0a2`, `3.13-rc`: - - [`3.13.0a2-bookworm`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a2-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/31716e66d5a755d24929d126c6d60b3a7e3b8db3/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a3`, `3.13-rc`: + - [`3.13.0a3-bookworm`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a3-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.1`, `3.12`, `3`, `latest`: - - [`3.12.1-bookworm`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/bookworm/Dockerfile) - - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.1-bookworm`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bookworm/Dockerfile) + - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.1-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/ab3d095cb74ee82f11b6dc59f113ad01b60d41c1/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.7`, `3.11`: - - [`3.11.7-bookworm`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/bookworm/Dockerfile) - - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.7-bookworm`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bookworm/Dockerfile) + - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.7-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/8bc80d1109001365559eded16423ba3692eff1ff/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/936a2ed61e9930bfec0de767e78877e29d288322/3.10/bookworm/Dockerfile) + - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: - - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/2d31ccc9f8487908ded7944a54b8e923eff9ad1f/3.9/bookworm/Dockerfile) + - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bookworm/Dockerfile) - `3.8.18`, `3.8`: - - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/5323d4a926e4f3e71fce8bb1c71daa227bd52ac7/3.8/bookworm/Dockerfile) + - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bookworm/Dockerfile) # Quick reference (cont.) From 19b220d657809594ff4f4321b305472f80c19191 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jan 2024 15:19:42 -0800 Subject: [PATCH 0883/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- docker/README.md | 20 ++++++++++---------- ruby/README.md | 12 ++++++------ 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 2155ac557701..c0da33978ef5 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/6f8c96df0b81947e6b3d3e636d96ff94471b121c/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/glibc/Dockerfile) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/uclibc/Dockerfile) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/musl/Dockerfile) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/glibc/Dockerfile) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/glibc/Dockerfile) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/uclibc/Dockerfile) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/musl/Dockerfile) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/glibc/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 1cde6e2f3665..4bc26107aa23 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-rc.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/cli/Dockerfile) +- [`25.0.0-rc.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/cli/Dockerfile) - [`25.0.0-rc.3-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.3-dind-alpine3.19`, `25.0.0-rc.3`, `25-rc`, `rc`, `25.0.0-rc.3-alpine3.19`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind/Dockerfile) - [`25.0.0-rc.3-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind-rootless/Dockerfile) - [`25.0.0-rc.3-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-rc.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-rc.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/cli/Dockerfile) +- [`25.0.0-rc.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-rc.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.0-rc.3-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/windows/windowsservercore-1809/Dockerfile) + - [`25.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e941e9db596b57b22657161adde52155e3f73d66/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 1362ecfad2ce..7655efe21d8c 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -30,12 +30,12 @@ WARNING: - [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/slim-bullseye/Dockerfile) - [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.19/Dockerfile) - [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.18/Dockerfile) -- [`3.2.2-bookworm`, `3.2-bookworm`, `3.2.2`, `3.2`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bookworm/Dockerfile) -- [`3.2.2-slim-bookworm`, `3.2-slim-bookworm`, `3.2.2-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bookworm/Dockerfile) -- [`3.2.2-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/bullseye/Dockerfile) -- [`3.2.2-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/slim-bullseye/Dockerfile) -- [`3.2.2-alpine3.19`, `3.2-alpine3.19`, `3.2.2-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.19/Dockerfile) -- [`3.2.2-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/423e364cd1681dac6b5afd6191d774aaa1cf6161/3.2/alpine3.18/Dockerfile) +- [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bookworm/Dockerfile) +- [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bookworm/Dockerfile) +- [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bullseye/Dockerfile) +- [`3.2.3-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bullseye/Dockerfile) +- [`3.2.3-alpine3.19`, `3.2-alpine3.19`, `3.2.3-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.19/Dockerfile) +- [`3.2.3-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.18/Dockerfile) - [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bookworm/Dockerfile) - [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bookworm/Dockerfile) - [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bullseye/Dockerfile) From 0f7fc99f25efdfe583ad23f4466286d74efa9680 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jan 2024 16:21:44 -0800 Subject: [PATCH 0884/2686] Run update.sh --- haproxy/README.md | 4 +- mongo/README.md | 135 ++++++++++++++++------------------------------ mysql/README.md | 6 +-- 3 files changed, 50 insertions(+), 95 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 41a10f3991f0..d6750112632e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.0-dev1`, `3.0-dev`, `3.0-dev1-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/Dockerfile) - [`3.0-dev1-alpine`, `3.0-dev-alpine`, `3.0-dev1-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/alpine/Dockerfile) -- [`2.9.2`, `2.9`, `latest`, `2.9.2-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/b392e587eaca4394492248524cd0297ddb86aa5e/2.9/Dockerfile) -- [`2.9.2-alpine`, `2.9-alpine`, `alpine`, `2.9.2-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/b392e587eaca4394492248524cd0297ddb86aa5e/2.9/alpine/Dockerfile) +- [`2.9.3`, `2.9`, `latest`, `2.9.3-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/Dockerfile) +- [`2.9.3-alpine`, `2.9-alpine`, `alpine`, `2.9.3-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 8169022902f4..995d3a141b35 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,36 +33,21 @@ WARNING: - [`7.0.5-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.5-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.13-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/Dockerfile) -- [`6.0.13-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.13-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.13-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.13-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.12-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) -- [`6.0.12-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.12-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.12-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.12-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.24-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/Dockerfile) -- [`5.0.24-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.24-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.24-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.24-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.23-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) -- [`5.0.23-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.23-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.23-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.23-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.28-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/Dockerfile) -- [`4.4.28-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.28-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- [`4.4.28-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.28-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-1809/Dockerfile) -- [`4.4.27-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) -- [`4.4.27-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.27-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.27-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.27-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-1809/Dockerfile) +- [`6.0.13-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/Dockerfile) +- [`6.0.13-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.13-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.13-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.13-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.24-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/Dockerfile) +- [`5.0.24-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.24-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.24-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.24-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.28-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/Dockerfile) +- [`4.4.28-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.28-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.28-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.28-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -76,66 +61,36 @@ WARNING: - `7.0.5-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.13-rc0`, `6.0-rc`: - - [`6.0.13-rc0-jammy`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/Dockerfile) - - [`6.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.13-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.13-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.13-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.13-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d8a0932756a8eb5752b6e6ffb97d39bb3f3b017f/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.12`, `6.0`, `6`: - - [`6.0.12-jammy`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/6.0/Dockerfile) - - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.12-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.12-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dca8e56d950f846bddd0f66f57cbf7caa0d469d1/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.24-rc0`, `5.0-rc`: - - [`5.0.24-rc0-focal`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/Dockerfile) - - [`5.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.24-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.24-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d43f8845d518186cfe1078b22236135737ffb0be/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.23`, `5.0`, `5`: - - [`5.0.23-focal`](https://github.com/docker-library/mongo/blob/620f8c8958ad83a9c30c233beb61a8b6d768645d/5.0/Dockerfile) - - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.23-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.23-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/aea915d8ad807270174e3f41e56f21ce1deacc14/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.28-rc0`, `4.4-rc`: - - [`4.4.28-rc0-focal`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/Dockerfile) - - [`4.4.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.28-rc0-windowsservercore`, `4.4-rc-windowsservercore`: - - [`4.4.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/windowsservercore-1809/Dockerfile) -- `4.4.28-rc0-nanoserver`, `4.4-rc-nanoserver`: - - [`4.4.28-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.28-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b1f28f0d0ef3eabf7140d9971ec15c8f40827075/4.4-rc/windows/nanoserver-1809/Dockerfile) -- `4.4.27`, `4.4`, `4`: - - [`4.4.27-focal`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/Dockerfile) - - [`4.4.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.27-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.27-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f4b3ab0206b9864fdda0dd2b0db69c2553029abd/4.4/windows/nanoserver-1809/Dockerfile) +- `6.0.13`, `6.0`, `6`: + - [`6.0.13-jammy`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/Dockerfile) + - [`6.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.13-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.13-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.13-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.24`, `5.0`, `5`: + - [`5.0.24-focal`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/Dockerfile) + - [`5.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.24-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.24-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.28`, `4.4`, `4`: + - [`4.4.28-focal`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/Dockerfile) + - [`4.4.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.28-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.28-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.28-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.28-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 5a3f3794cf3e..1f5a5cec5f7c 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `8`, `innovation`, `latest`, `8.2.0-oraclelinux8`, `8.2-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.2.0-oracle`, `8.2-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/innovation/Dockerfile.oracle) -- [`8.0.35`, `8.0`, `8.0.35-oraclelinux8`, `8.0-oraclelinux8`, `8.0.35-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/8.0/Dockerfile.oracle) -- [`8.0.35-bullseye`, `8.0-bullseye`, `8.0.35-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/3e959c224b965b0dd92a59a1dedeb7c34a24f550/8.0/Dockerfile.debian) +- [`8.3.0`, `8.3`, `8`, `innovation`, `latest`, `8.3.0-oraclelinux8`, `8.3-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.3.0-oracle`, `8.3-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/innovation/Dockerfile.oracle) +- [`8.0.36`, `8.0`, `8.0.36-oraclelinux8`, `8.0-oraclelinux8`, `8.0.36-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/8.0/Dockerfile.oracle) +- [`8.0.36-bullseye`, `8.0-bullseye`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/8.0/Dockerfile.debian) # Quick reference (cont.) From fe73e2d030a2f7294af04bef3a8de521e0e05046 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jan 2024 12:18:27 -0800 Subject: [PATCH 0885/2686] Run update.sh --- docker/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docker/README.md b/docker/README.md index 4bc26107aa23..855d75fc842d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`25.0.0-rc.3-cli`, `25-rc-cli`, `rc-cli`, `25.0.0-rc.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/cli/Dockerfile) -- [`25.0.0-rc.3-dind`, `25-rc-dind`, `rc-dind`, `25.0.0-rc.3-dind-alpine3.19`, `25.0.0-rc.3`, `25-rc`, `rc`, `25.0.0-rc.3-alpine3.19`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind/Dockerfile) -- [`25.0.0-rc.3-dind-rootless`, `25-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7605511a89811bb4772d7ad4a45466941fa0399e/25-rc/dind-rootless/Dockerfile) -- [`25.0.0-rc.3-git`, `25-rc-git`, `rc-git`](https://github.com/docker-library/docker/blob/2e213030c57a2134a77bf17b0710dff1a184a7c1/25-rc/git/Dockerfile) -- [`25.0.0-rc.3-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-rc.3-windowsservercore-1809`, `25-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `latest`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) -- [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) -- [`24.0.7-git`, `24.0-git`, `24-git`, `git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) +- [`25.0.0-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/cli/Dockerfile) +- [`25.0.0-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.0-dind-alpine3.19`, `25.0.0`, `25.0`, `25`, `latest`, `25.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind/Dockerfile) +- [`25.0.0-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind-rootless/Dockerfile) +- [`25.0.0-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) +- [`25.0.0-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/cli/Dockerfile) +- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) +- [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) +- [`24.0.7-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.0-rc.3-windowsservercore`, `25-rc-windowsservercore`, `rc-windowsservercore`: - - [`25.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/edd8fbc4110fa21ad8ac2b03443890a2f1df74fd/25-rc/windows/windowsservercore-1809/Dockerfile) -- `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`, `windowsservercore`: +- `25.0.0-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-1809/Dockerfile) +- `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) From 66236853b62a659ec94d6f1a6fc0c329de8ed770 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jan 2024 14:20:50 -0800 Subject: [PATCH 0886/2686] Run update.sh --- groovy/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index b8ee870ff90d..40b2c6fb3363 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.15-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.15-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk8/Dockerfile) -- [`4.0.15-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.15-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk11/Dockerfile) -- [`4.0.15-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk11-alpine/Dockerfile) -- [`4.0.15-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.15-jdk`, `4.0-jdk`, `4.0.15`, `4.0`, `4`, `jdk`, `latest`, `4.0.15-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.15-jdk-jammy`, `4.0-jdk-jammy`, `4.0.15-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk17/Dockerfile) -- [`4.0.15-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.15-jdk-alpine`, `4.0-jdk-alpine`, `4.0.15-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk17-alpine/Dockerfile) -- [`4.0.15-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.15-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk21/Dockerfile) -- [`4.0.15-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/0ea910f18590ad895816749d064dc14c77c435e3/jdk21-alpine/Dockerfile) +- [`4.0.18-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.18-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk8/Dockerfile) +- [`4.0.18-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.18-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk11/Dockerfile) +- [`4.0.18-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk11-alpine/Dockerfile) +- [`4.0.18-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.18-jdk`, `4.0-jdk`, `4.0.18`, `4.0`, `4`, `jdk`, `latest`, `4.0.18-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.18-jdk-jammy`, `4.0-jdk-jammy`, `4.0.18-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk17/Dockerfile) +- [`4.0.18-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.18-jdk-alpine`, `4.0-jdk-alpine`, `4.0.18-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk17-alpine/Dockerfile) +- [`4.0.18-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.18-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk21/Dockerfile) +- [`4.0.18-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk21-alpine/Dockerfile) # Quick reference (cont.) From 618962909d140fd7e2f2d12c1d96822cb8c00778 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jan 2024 15:18:09 -0800 Subject: [PATCH 0887/2686] Run update.sh --- amazoncorretto/README.md | 82 +++++++++++++++++++-------------------- php/README.md | 84 ++++++++++++++-------------------------- 2 files changed, 69 insertions(+), 97 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 2bfae59d8170..dca18a45b894 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/8/jre/alpine/3.19/Dockerfile) -- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/17/jdk/alpine/3.19/Dockerfile) -- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/0ccbb9690e150194bd26c6419654722cda6595e4/21/jdk/alpine/3.19/Dockerfile) +- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 56ab952de7a8..f478a5922727 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.2RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.2RC1-bookworm`, `8.3-rc-bookworm`, `8.3.2RC1-cli`, `8.3-rc-cli`, `8.3.2RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.2RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.2RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.2RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.2RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.2RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.2RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.2RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.2RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.2RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.2RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.2RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.2RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.2RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.2RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.2RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.2RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.2RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.2RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.2RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.2RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.2RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.2RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.2RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/d25f4810d411330630a41df01bc8bf42098d877f/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.1-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.1-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.1-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.1`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/cli/Dockerfile) -- [`8.3.1-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.1-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/apache/Dockerfile) -- [`8.3.1-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.1-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/fpm/Dockerfile) -- [`8.3.1-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.1-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bookworm/zts/Dockerfile) -- [`8.3.1-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.1-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/cli/Dockerfile) -- [`8.3.1-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/apache/Dockerfile) -- [`8.3.1-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/fpm/Dockerfile) -- [`8.3.1-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/bullseye/zts/Dockerfile) -- [`8.3.1-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.1-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.1-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.1-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.1-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.1-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.1-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.1-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.1-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.1-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.1-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.1-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.15RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.15RC1-bookworm`, `8.2-rc-bookworm`, `8.2.15RC1-cli`, `8.2-rc-cli`, `8.2.15RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.15RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.15RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.15RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.15RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.15RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.15RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.15RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.15RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.15RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.15RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.15RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.15RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.15RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.15RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.15RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.15RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.15RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.15RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.15RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.15RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.15RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.15RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.15RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/b8d8b3702082f99567f94a1c4001a90c45c886ef/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.14-cli-bookworm`, `8.2-cli-bookworm`, `8.2.14-bookworm`, `8.2-bookworm`, `8.2.14-cli`, `8.2-cli`, `8.2.14`, `8.2`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/cli/Dockerfile) -- [`8.2.14-apache-bookworm`, `8.2-apache-bookworm`, `8.2.14-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/apache/Dockerfile) -- [`8.2.14-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.14-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/fpm/Dockerfile) -- [`8.2.14-zts-bookworm`, `8.2-zts-bookworm`, `8.2.14-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bookworm/zts/Dockerfile) -- [`8.2.14-cli-bullseye`, `8.2-cli-bullseye`, `8.2.14-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/cli/Dockerfile) -- [`8.2.14-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/apache/Dockerfile) -- [`8.2.14-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/fpm/Dockerfile) -- [`8.2.14-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/bullseye/zts/Dockerfile) -- [`8.2.14-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.14-alpine3.19`, `8.2-alpine3.19`, `8.2.14-cli-alpine`, `8.2-cli-alpine`, `8.2.14-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.14-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.14-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.14-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.14-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.14-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.14-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.14-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.14-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.2/alpine3.18/zts/Dockerfile) +- [`8.3.2-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.2-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.2-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.2`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/cli/Dockerfile) +- [`8.3.2-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.2-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/apache/Dockerfile) +- [`8.3.2-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.2-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/fpm/Dockerfile) +- [`8.3.2-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.2-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/zts/Dockerfile) +- [`8.3.2-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.2-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/cli/Dockerfile) +- [`8.3.2-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/apache/Dockerfile) +- [`8.3.2-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/fpm/Dockerfile) +- [`8.3.2-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/zts/Dockerfile) +- [`8.3.2-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.2-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.2-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.2-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.2-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.2-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.2-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.2-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.2-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.2-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.2-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.2-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.15-cli-bookworm`, `8.2-cli-bookworm`, `8.2.15-bookworm`, `8.2-bookworm`, `8.2.15-cli`, `8.2-cli`, `8.2.15`, `8.2`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/cli/Dockerfile) +- [`8.2.15-apache-bookworm`, `8.2-apache-bookworm`, `8.2.15-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/apache/Dockerfile) +- [`8.2.15-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.15-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/fpm/Dockerfile) +- [`8.2.15-zts-bookworm`, `8.2-zts-bookworm`, `8.2.15-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/zts/Dockerfile) +- [`8.2.15-cli-bullseye`, `8.2-cli-bullseye`, `8.2.15-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/cli/Dockerfile) +- [`8.2.15-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/apache/Dockerfile) +- [`8.2.15-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/fpm/Dockerfile) +- [`8.2.15-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/zts/Dockerfile) +- [`8.2.15-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.15-alpine3.19`, `8.2-alpine3.19`, `8.2.15-cli-alpine`, `8.2-cli-alpine`, `8.2.15-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.15-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.15-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.15-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.15-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.15-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.15-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.15-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.15-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/cli/Dockerfile) - [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/apache/Dockerfile) - [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/fpm/Dockerfile) From 10d988f845cfb58bd5ba8787d9cfa61d5fbf80a7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jan 2024 16:09:38 -0800 Subject: [PATCH 0888/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 9940b5e78b8d..f036ba694fa1 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240108.0`](https://github.com/amazonlinux/container-images/blob/6d4428e0e6eeaa40e6fe5df520a2747659bc6396/Dockerfile) +- [`2023`, `latest`, `2023.3.20240117.0`](https://github.com/amazonlinux/container-images/blob/68338ee8e18438ed0e528eeec4eae69a1596333d/Dockerfile) - [`2`, `2.0.20240109.0`](https://github.com/amazonlinux/container-images/blob/2e6be1003ccf1fb8210e2b67df79eb7cf67bdf99/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) From 8112816a673e3ed327b530ab3aae08b81a8bf3b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jan 2024 10:20:19 -0800 Subject: [PATCH 0889/2686] Run update.sh --- archlinux/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b4d16226e4cd..34fd887c3b7a 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -59,18 +59,18 @@ Our strong community is diverse and helpful, and we pride ourselves on the range # About this image -The root filesystem tarball for this image is auto-generated weekly at 00:00 UTC on Sunday in Arch Linux infrastructure. Given the rolling-release nature of Arch Linux, images are tagged with the included package group / meta package and the timestamp of the date they were generated. For example, `archlinux:base-20201101.0.7893` was generated the First of November 2020 in [CI job #7893](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/jobs/7893). The `latest` tag will always match the latest `base` tag. +The root filesystem tarball for this image is auto-generated weekly at 00:00 UTC on Sunday in Arch Linux infrastructure. Given the rolling-release nature of Arch Linux, images are tagged with the included meta package and the timestamp of the date they were generated. For example, `archlinux:base-20201101.0.7893` was generated the First of November 2020 in [CI job #7893](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/jobs/7893). The `latest` tag will always match the latest `base` tag. -Besides `base` we also provide images for the `base-devel` package group. +Besides `base` we also provide images for the `base-devel` and `multilib-devel` meta packages. This image is intended to serve the following goals: - Provide the Arch experience in a Docker Image -- Provide simplest but complete image to base every other upon +- Provide simplest but complete image to `base`, `base-devel` and `multilib-devel` on a regular basis - `pacman` needs to work out of the box - All installed packages have to be kept unmodified -> ⚠️⚠️⚠️ NOTE: For Security Reasons, these images strip the pacman lsign key. This is because the same key would be spread to all containers of the same image, allowing for malicious actors to inject packages (via, for example, a man-in-the-middle). In order to create an lsign-key run `pacman-key --init` on the first execution, but be careful to not redistribute that key. ⚠️⚠️⚠️ +> ⚠️⚠️⚠️ NOTE: For Security Reasons, these images strip the pacman lsign key. This is because the same key would be spread to all containers of the same image, allowing for malicious actors to inject packages (via, for example, a man-in-the-middle). In order to create a lsign-key run `pacman-key --init` on the first execution, but be careful to not redistribute that key. ⚠️⚠️⚠️ ## Availability From 518a0225071ae7bf08aaca212ef9625601e67598 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jan 2024 11:21:38 -0800 Subject: [PATCH 0890/2686] Run update.sh --- clearlinux/README.md | 2 +- crate/README.md | 2 +- erlang/README.md | 2 +- neo4j/README.md | 8 ++--- perl/README.md | 80 ++++++++++++++++++++++---------------------- photon/README.md | 6 ++-- 6 files changed, 50 insertions(+), 50 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index b1179fc244ab..67c48f49f2c1 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/36385de607241cccba05f15d3d6b48bbea5beac6/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ffd49c28c9907b3a6c70049e0782e4a95a0a8355/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 9d77b89a5907..191e1599ccc2 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.2`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/06b3122b7ce9b910b0fdfe14797cdca3b993db79/Dockerfile) +- [`5.5.3`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/d4f4c950c62936fc73de1332bce40cc463844cc3/Dockerfile) - [`5.4.7`, `5.4`](https://github.com/crate/docker-crate/blob/a26a53fcc220137c14220c2301eaded65e12b5e4/Dockerfile) - [`5.3.8`, `5.3`](https://github.com/crate/docker-crate/blob/c98a94b81223ff693fd1a7b325032b2e535bc084/Dockerfile) - [`5.2.11`, `5.2`](https://github.com/crate/docker-crate/blob/589f5c13d10e2442b9a0d9bee46f4eac96b5da21/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 4ca9ca1fdbbf..c5d2bc49cbe0 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -29,7 +29,7 @@ WARNING: - [`26.2.1.0-alpine`, `26.2.1-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/alpine/Dockerfile) - [`25.3.2.8`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/Dockerfile) - [`25.3.2.8-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/slim/Dockerfile) -- [`25.3.2.8-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/alpine/Dockerfile) +- [`25.3.2.8-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7d5b469c072a10c94777506120e18b873c5bccfb/25/alpine/Dockerfile) - [`24.3.4.15`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/Dockerfile) - [`24.3.4.15-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/slim/Dockerfile) - [`24.3.4.15-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/alpine/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index cb976e40b5fa..789d0a9f39bd 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.15.0-community-bullseye`, `5.15-community-bullseye`, `5-community-bullseye`, `5.15.0-community`, `5.15-community`, `5-community`, `5.15.0-bullseye`, `5.15-bullseye`, `5-bullseye`, `5.15.0`, `5.15`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/bullseye/community/Dockerfile) -- [`5.15.0-enterprise-bullseye`, `5.15-enterprise-bullseye`, `5-enterprise-bullseye`, `5.15.0-enterprise`, `5.15-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/bullseye/enterprise/Dockerfile) -- [`5.15.0-community-ubi8`, `5.15-community-ubi8`, `5-community-ubi8`, `5.15.0-ubi8`, `5.15-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/community/Dockerfile) -- [`5.15.0-enterprise-ubi8`, `5.15-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/26e67efc2fa0211478d9d83387c9f090d5a1873b/5.15.0/ubi8/enterprise/Dockerfile) +- [`5.16.0-community-bullseye`, `5.16-community-bullseye`, `5-community-bullseye`, `5.16.0-community`, `5.16-community`, `5-community`, `5.16.0-bullseye`, `5.16-bullseye`, `5-bullseye`, `5.16.0`, `5.16`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/bullseye/community/Dockerfile) +- [`5.16.0-enterprise-bullseye`, `5.16-enterprise-bullseye`, `5-enterprise-bullseye`, `5.16.0-enterprise`, `5.16-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/bullseye/enterprise/Dockerfile) +- [`5.16.0-community-ubi8`, `5.16-community-ubi8`, `5-community-ubi8`, `5.16.0-ubi8`, `5.16-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/community/Dockerfile) +- [`5.16.0-enterprise-ubi8`, `5.16-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/enterprise/Dockerfile) - [`4.4.29`, `4.4.29-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/community/Dockerfile) - [`4.4.29-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/enterprise/Dockerfile) diff --git a/perl/README.md b/perl/README.md index d8df50d1ab13..b2624476af24 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.6`, `5.39`, `devel`, `5.39.6-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main-bookworm/Dockerfile) -- [`5.39.6-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main-bullseye/Dockerfile) -- [`5.39.6-slim`, `5.39-slim`, `devel-slim`, `5.39.6-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim-bookworm/Dockerfile) -- [`5.39.6-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim-bullseye/Dockerfile) -- [`5.39.6-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.6-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main,threaded-bookworm/Dockerfile) -- [`5.39.6-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-main,threaded-bullseye/Dockerfile) -- [`5.39.6-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.6-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim,threaded-bookworm/Dockerfile) -- [`5.39.6-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/aaf2c0ed7673967d6e7e6cc4f3a7ce7bb14ae394/5.039.006-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.7`, `5.39`, `devel`, `5.39.7-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main-bookworm/Dockerfile) +- [`5.39.7-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main-bullseye/Dockerfile) +- [`5.39.7-slim`, `5.39-slim`, `devel-slim`, `5.39.7-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim-bookworm/Dockerfile) +- [`5.39.7-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim-bullseye/Dockerfile) +- [`5.39.7-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.7-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main,threaded-bookworm/Dockerfile) +- [`5.39.7-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main,threaded-bullseye/Dockerfile) +- [`5.39.7-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.7-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim,threaded-bookworm/Dockerfile) +- [`5.39.7-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 625bab83e92a..2c4cfd8f7bcb 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240113`, `latest`](https://github.com/vmware/photon-docker-image/blob/de5733884fbf9113d1bad06720e8978a56f48dfd/docker/Dockerfile) -- [`4.0`, `4.0-20240113`](https://github.com/vmware/photon-docker-image/blob/04c59d9abdd62273d3fba09747854c1d665e9856/docker/Dockerfile) -- [`3.0`, `3.0-20240113`](https://github.com/vmware/photon-docker-image/blob/f2ef5ef8589d47190ba95f0fecd547771334a1dd/docker/Dockerfile) +- [`5.0`, `5.0-20240120`, `latest`](https://github.com/vmware/photon-docker-image/blob/439cc576409074c44e3603b23b4cdafdba8b6d00/docker/Dockerfile) +- [`4.0`, `4.0-20240120`](https://github.com/vmware/photon-docker-image/blob/c70f1ceb9e0caa0e0ac0d1ef5a77b3ccec9fb693/docker/Dockerfile) +- [`3.0`, `3.0-20240120`](https://github.com/vmware/photon-docker-image/blob/a2ad984cad02d550a16fc478382daefc07cb911f/docker/Dockerfile) # Quick reference (cont.) From 3f5fb5304e364163a86d499b200e1652090e90da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jan 2024 15:18:50 -0800 Subject: [PATCH 0891/2686] Run update.sh --- cassandra/README.md | 10 ++++----- docker/README.md | 20 ++++++++--------- ghost/README.md | 4 ++-- httpd/README.md | 2 +- joomla/README.md | 36 +++++++++++++++---------------- tomcat/README.md | 52 ++++++++++++++++++++++----------------------- 6 files changed, 62 insertions(+), 62 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 159974f31fb6..6aa6b10794e1 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/2c12419510e30fb7fbacf4b1e3da31dc464d925a/5.0/Dockerfile) -- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/8cdda79acc014840c36161dfad2f5d4368e778a6/4.1/Dockerfile) -- [`4.0.11`, `4.0`, `4.0.11-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/66348dba5ed2ea13d9d5a7ff6c0b51f2383d012b/4.0/Dockerfile) -- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/a1e2446ab30903f6a21e1c06831a45ab763f2719/3.11/Dockerfile) -- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/6e4848e04a9f6f36e7e03e99cc3087bbf7ccb49f/3.0/Dockerfile) +- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/5.0/Dockerfile) +- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/4.1/Dockerfile) +- [`4.0.11`, `4.0`, `4.0.11-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/4.0/Dockerfile) +- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.11/Dockerfile) +- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.0/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 855d75fc842d..1dc72b412e93 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/cli/Dockerfile) +- [`25.0.0-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/cli/Dockerfile) - [`25.0.0-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.0-dind-alpine3.19`, `25.0.0`, `25.0`, `25`, `latest`, `25.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind/Dockerfile) - [`25.0.0-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind-rootless/Dockerfile) - [`25.0.0-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.0-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/cli/Dockerfile) +- [`25.0.0-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.0-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.0-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d93dd83c9d27ac43516e68f26e0d8a7713b2bd64/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index f940b2f1ea01..f0c483909065 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.76.0`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9ee89aa8776ccd6d9af80ae8dc8c1803b825aa56/5/debian/Dockerfile) -- [`5.76.0-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9ee89aa8776ccd6d9af80ae8dc8c1803b825aa56/5/alpine/Dockerfile) +- [`5.76.1`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/043b2233e5a02fc3bd1c61235dcc42a1ece7ae82/5/debian/Dockerfile) +- [`5.76.1-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/043b2233e5a02fc3bd1c61235dcc42a1ece7ae82/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/httpd/README.md b/httpd/README.md index 5b3a64b7a6ae..c51a852cb148 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.58`, `2.4`, `2`, `latest`, `2.4.58-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/338f9a4b1e36e09ad2733f36f19e31157f5c959c/2.4/Dockerfile) +- [`2.4.58`, `2.4`, `2`, `latest`, `2.4.58-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/89aed068235d9a480f245e03edf038621ab8ed8f/2.4/Dockerfile) - [`2.4.58-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.58-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/8a57cc5e01d709b1ae7176a2e85a47923865da0c/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 0542ad723e70..16e75053b18d 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/apache/Dockerfile) -- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.1/fpm/Dockerfile) -- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/apache/Dockerfile) -- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/5.0/php8.2/fpm/Dockerfile) -- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/apache/Dockerfile) -- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.1/fpm/Dockerfile) -- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/apache/Dockerfile) -- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e76b77414db79df6559f14f9ac036521b560709b/4.4/php8.2/fpm/Dockerfile) -- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/apache/Dockerfile) -- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.1/fpm/Dockerfile) -- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/apache/Dockerfile) -- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ef73b7df0a255212a3334ee238d137f7dcde456f/4.3/php8.2/fpm/Dockerfile) +- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/apache/Dockerfile) +- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/fpm/Dockerfile) +- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/apache/Dockerfile) +- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/fpm/Dockerfile) +- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/apache/Dockerfile) +- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/fpm/Dockerfile) +- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/apache/Dockerfile) +- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/fpm/Dockerfile) +- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/apache/Dockerfile) +- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/fpm-alpine/Dockerfile) +- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/fpm/Dockerfile) +- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/apache/Dockerfile) +- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/fpm-alpine/Dockerfile) +- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 55ce90136c5d..c6de0818fc2e 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,50 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M16-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M16-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M16-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M16`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/b9460102c252660bc38683cf3f68883f00dccb41/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M16-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M16-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M16-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M16`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/11.0/jdk21/temurin-jammy/Dockerfile) - [`11.0.0-M16-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M16-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M16-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/b9460102c252660bc38683cf3f68883f00dccb41/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.18-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.18-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.18-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.18`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.18-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.18-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.18-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.18`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.18-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.18-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.18-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.18-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.18-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.18-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.18-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.18-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.18-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.18-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.18-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.18-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.18-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.18-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.18-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.18-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.18-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.18-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.18-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.18-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.18-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.85-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.85-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.85-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.85`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.85-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.85-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.85-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.85`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk21/temurin-jammy/Dockerfile) - [`9.0.85-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.85-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.85-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.85-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.85-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.85-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.85-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.85-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.85-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.85-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.85-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.85-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.85-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/temurin-jammy/Dockerfile) - [`9.0.85-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.85-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.85-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.85-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.85-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/temurin-focal/Dockerfile) - [`9.0.85-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.85-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.85-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.85-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.85-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.85-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.85-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.85-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.85-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.85-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.85-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/temurin-jammy/Dockerfile) - [`9.0.85-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.85-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.85-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.85-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.85-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/temurin-focal/Dockerfile) - [`9.0.85-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.85-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.85-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.85-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.85-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.85-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.85-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.85-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.85-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.85-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.85-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/temurin-jammy/Dockerfile) - [`9.0.85-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.85-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.85-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.85-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.85-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.85-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.85-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.85-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.98-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.98-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.98-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.98`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk21/temurin-jammy/Dockerfile) +- [`9.0.85-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.85-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.98-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.98-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.98-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.98`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk21/temurin-jammy/Dockerfile) - [`8.5.98-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.98-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.98-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.98-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.98-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.98-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.98-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.98-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.98-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.98-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.98-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.98-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.98-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/temurin-jammy/Dockerfile) - [`8.5.98-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.98-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.98-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.98-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.98-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/temurin-focal/Dockerfile) - [`8.5.98-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.98-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.98-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.98-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.98-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.98-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.98-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.98-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.98-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.98-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.98-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/temurin-jammy/Dockerfile) - [`8.5.98-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.98-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.98-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.98-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.98-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/temurin-focal/Dockerfile) - [`8.5.98-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.98-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.98-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.98-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.98-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.98-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.98-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.98-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.98-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.98-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.98-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/temurin-jammy/Dockerfile) - [`8.5.98-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.98-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.98-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.98-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.98-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/temurin-focal/Dockerfile) - [`8.5.98-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.98-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.98-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.98-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.98-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From d97b99e1991438f3d541448daf6a07e909154e05 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jan 2024 11:20:26 -0800 Subject: [PATCH 0892/2686] Run update.sh --- flink/README.md | 16 +++++++++------- golang/README.md | 30 +++++++++++++++--------------- 2 files changed, 24 insertions(+), 22 deletions(-) diff --git a/flink/README.md b/flink/README.md index 68d3c1940326..4b004ab5a160 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,13 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.0-scala_2.12-java8`, `1.18-scala_2.12-java8`, `scala_2.12-java8`, `1.18.0-java8`, `1.18-java8`, `java8`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.18.0-scala_2.12-java17`, `1.18-scala_2.12-java17`, `scala_2.12-java17`, `1.18.0-java17`, `1.18-java17`, `java17`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.18.0-scala_2.12-java11`, `1.18-scala_2.12-java11`, `scala_2.12-java11`, `1.18.0-scala_2.12`, `1.18-scala_2.12`, `scala_2.12`, `1.18.0-java11`, `1.18-java11`, `java11`, `1.18.0`, `1.18`, `latest`](https://github.com/apache/flink-docker/blob/3154e4800c2aa8f183ac4b03dcdc90b14a6404a1/1.18/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/f433de5a1d764638392cea1737fc6b03b8e760aa/1.17/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/f433de5a1d764638392cea1737fc6b03b8e760aa/1.17/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.16.3-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.3-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/fce2e96cea2ef6ced375c113486db5cbb02e0480/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.3-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.3-scala_2.12`, `1.16-scala_2.12`, `1.16.3-java11`, `1.16-java11`, `1.16.3`, `1.16`](https://github.com/apache/flink-docker/blob/fce2e96cea2ef6ced375c113486db5cbb02e0480/1.16/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`, `java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`, `java17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `scala_2.12`, `1.18.1-java11`, `1.18-java11`, `java11`, `1.18.1`, `1.18`, `latest`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.16.3-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.3-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.16/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.16.3-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.3-scala_2.12`, `1.16-scala_2.12`, `1.16.3-java11`, `1.16-java11`, `1.16.3`, `1.16`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.16/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.15/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.15/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index dff929eb15df..a97efe7ba610 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`1.22rc1-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bookworm/Dockerfile) -- [`1.22rc1-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bullseye/Dockerfile) -- [`1.22rc1-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc1-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/alpine3.19/Dockerfile) -- [`1.22rc1-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/alpine3.18/Dockerfile) +- [`1.22rc1-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bookworm/Dockerfile) +- [`1.22rc1-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bullseye/Dockerfile) +- [`1.22rc1-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc1-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/alpine3.19/Dockerfile) +- [`1.22rc1-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/alpine3.18/Dockerfile) - [`1.22rc1-windowsservercore-ltsc2022`, `1.22-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22rc1-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) - [`1.22rc1-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc1-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) -- [`1.21.6-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bookworm/Dockerfile) -- [`1.21.6-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bullseye/Dockerfile) -- [`1.21.6-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.6-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/alpine3.19/Dockerfile) -- [`1.21.6-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/alpine3.18/Dockerfile) +- [`1.21.6-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) +- [`1.21.6-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bullseye/Dockerfile) +- [`1.21.6-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.6-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/alpine3.19/Dockerfile) +- [`1.21.6-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/alpine3.18/Dockerfile) - [`1.21.6-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.6-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.6-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.6-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.13-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bookworm/Dockerfile) -- [`1.20.13-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bullseye/Dockerfile) -- [`1.20.13-alpine3.19`, `1.20-alpine3.19`, `1.20.13-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/alpine3.19/Dockerfile) -- [`1.20.13-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/alpine3.18/Dockerfile) +- [`1.20.13-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bookworm/Dockerfile) +- [`1.20.13-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bullseye/Dockerfile) +- [`1.20.13-alpine3.19`, `1.20-alpine3.19`, `1.20.13-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/alpine3.19/Dockerfile) +- [`1.20.13-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/alpine3.18/Dockerfile) - [`1.20.13-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.13-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) - [`1.20.13-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-ltsc2022/Dockerfile) @@ -56,7 +56,7 @@ WARNING: ## Shared Tags - `1.22rc1`, `1.22-rc`: - - [`1.22rc1-bookworm`](https://github.com/docker-library/golang/blob/8188fe464dc344c8ac20cad12cf80e65f452af93/1.22-rc/bookworm/Dockerfile) + - [`1.22rc1-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bookworm/Dockerfile) - [`1.22rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) - `1.22rc1-windowsservercore`, `1.22-rc-windowsservercore`: @@ -66,7 +66,7 @@ WARNING: - [`1.22rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) - `1.21.6`, `1.21`, `1`, `latest`: - - [`1.21.6-bookworm`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/bookworm/Dockerfile) + - [`1.21.6-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) - `1.21.6-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -76,7 +76,7 @@ WARNING: - [`1.21.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) - `1.20.13`, `1.20`: - - [`1.20.13-bookworm`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/bookworm/Dockerfile) + - [`1.20.13-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bookworm/Dockerfile) - [`1.20.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.20.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) - `1.20.13-windowsservercore`, `1.20-windowsservercore`: From c7d54102a9522a1feb7a47924e2def599d9dd63c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jan 2024 13:09:48 -0800 Subject: [PATCH 0893/2686] Run update.sh --- elasticsearch/README.md | 2 +- geonetwork/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 755ebd45fd9b..e20e7d911f55 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/elasticsearch/Dockerfile) -- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/elasticsearch/Dockerfile) +- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 576398c1f556..c2c14f051358 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) -- [`4.2.7`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/983310e129d2a55e6481042cc8d90a1b33ddf128/4.2.7/Dockerfile) -- [`4.4.1`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/5a81bb8d7b0c4e2f1ff4a1126762509187dd24c1/4.4.1/Dockerfile) +- [`4.2.8`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/d3fd9533a91573f7678586f189218cd0e37c6a42/4.2.8/Dockerfile) +- [`4.4.2`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/bef3f1c871c962fbb3bbfac834e0e0d72772162b/4.4.2/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 28df25a76b8e..40e597102769 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/kibana/Dockerfile) -- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/kibana/Dockerfile) +- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index a13706011c74..17ce32783e3f 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/logstash/Dockerfile) -- [`7.17.16`](https://github.com/elastic/dockerfiles/blob/f3f1c976063b3549ed75e18aa99d06fdf51f8857/logstash/Dockerfile) +- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/logstash/Dockerfile) # Quick reference (cont.) From f8c2f4ce0b36af2ec53759e3aec4ad5df1ca13e5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jan 2024 12:19:03 -0800 Subject: [PATCH 0894/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 2 +- eclipse-temurin/README.md | 296 +++++++++++++++++++------------------- haskell/README.md | 20 +-- openjdk/README.md | 72 +++++----- 5 files changed, 196 insertions(+), 196 deletions(-) diff --git a/bash/README.md b/bash/README.md index 23a621910d34..f56457aff8e2 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240114`, `devel`, `devel-20240114-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/b08b986ade4dab726334b111c89688491534b732/devel/Dockerfile) +- [`devel-20240119`, `devel`, `devel-20240119-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/8cdb8caa08aaf2877e147af0c1d271ee7f8d5d60/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 6aa6b10794e1..6afdddddd4f5 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/5.0/Dockerfile) - [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/4.1/Dockerfile) -- [`4.0.11`, `4.0`, `4.0.11-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/4.0/Dockerfile) +- [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/6aa49ecdcc9150e03abb379e258e85401989d91b/4.0/Dockerfile) - [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.11/Dockerfile) - [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.0/Dockerfile) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index ec2f58c12fe7..ee6496ab7541 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,157 +28,157 @@ WARNING: ## Simple Tags -- [`8u392-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/alpine/Dockerfile) -- [`8u392-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/focal/Dockerfile) -- [`8u392-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u392-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/centos/Dockerfile) -- [`8u392-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u392-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u392-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u392-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u392-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u392-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/alpine/Dockerfile) -- [`8u392-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/focal/Dockerfile) -- [`8u392-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/jammy/Dockerfile) -- [`8u392-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/centos/Dockerfile) -- [`8u392-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u392-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u392-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u392-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`8u392-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.21_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/alpine/Dockerfile) -- [`11.0.21_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.21_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.21_9-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/centos/Dockerfile) -- [`11.0.21_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.21_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.21_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.21_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.21_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.21_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/alpine/Dockerfile) -- [`11.0.21_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.21_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.21_9-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/centos/Dockerfile) -- [`11.0.21_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.21_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.21_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.21_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.21_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.9_9-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/alpine/Dockerfile) -- [`17.0.9_9-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.9_9-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.9_9-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/centos/Dockerfile) -- [`17.0.9_9-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.9_9-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.9_9-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.9_9-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.9_9-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.9_9-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/alpine/Dockerfile) -- [`17.0.9_9-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.9_9-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.9_9-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/centos/Dockerfile) -- [`17.0.9_9-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.9_9-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.9_9-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.9_9-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.9_9-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.1_12-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/alpine/Dockerfile) -- [`21.0.1_12-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.1_12-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.1_12-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.1_12-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.1_12-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.1_12-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.1_12-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/alpine/Dockerfile) -- [`21.0.1_12-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.1_12-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.1_12-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.1_12-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.1_12-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.1_12-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-1809/Dockerfile) +- [`8u402-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/alpine/Dockerfile) +- [`8u402-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/focal/Dockerfile) +- [`8u402-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u402-b06-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/centos/Dockerfile) +- [`8u402-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u402-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u402-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u402-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u402-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u402-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/alpine/Dockerfile) +- [`8u402-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/focal/Dockerfile) +- [`8u402-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/jammy/Dockerfile) +- [`8u402-b06-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/centos/Dockerfile) +- [`8u402-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u402-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u402-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u402-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u402-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.22_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/alpine/Dockerfile) +- [`11.0.22_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.22_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.22_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/centos/Dockerfile) +- [`11.0.22_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.22_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.22_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.22_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.22_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.22_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/alpine/Dockerfile) +- [`11.0.22_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.22_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.22_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/centos/Dockerfile) +- [`11.0.22_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.22_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.22_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.22_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.22_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.10_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/alpine/Dockerfile) +- [`17.0.10_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.10_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.10_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/centos/Dockerfile) +- [`17.0.10_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.10_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.10_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.10_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.10_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.10_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/alpine/Dockerfile) +- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.10_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/centos/Dockerfile) +- [`17.0.10_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.10_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.10_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.10_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.10_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.2_13-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/alpine/Dockerfile) +- [`21.0.2_13-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.2_13-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.2_13-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.2_13-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.2_13-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.2_13-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.2_13-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/alpine/Dockerfile) +- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.2_13-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.2_13-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.2_13-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.2_13-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.2_13-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8u392-b08-jdk`, `8-jdk`, `8`: - - [`8u392-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/ubuntu/jammy/Dockerfile) - - [`8u392-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u392-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u392-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u392-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u392-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u392-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u392-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u392-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jdk/windows/nanoserver-1809/Dockerfile) -- `8u392-b08-jre`, `8-jre`: - - [`8u392-b08-jre-jammy`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/ubuntu/jammy/Dockerfile) - - [`8u392-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u392-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u392-b08-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u392-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u392-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u392-b08-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u392-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u392-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/376294c245eba65108cee487ce209f39c15e84c8/8/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.21_9-jdk`, `11-jdk`, `11`: - - [`11.0.21_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/ubuntu/jammy/Dockerfile) - - [`11.0.21_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.21_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.21_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.21_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.21_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.21_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.21_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.21_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jdk/windows/nanoserver-1809/Dockerfile) -- `11.0.21_9-jre`, `11-jre`: - - [`11.0.21_9-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/ubuntu/jammy/Dockerfile) - - [`11.0.21_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.21_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.21_9-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.21_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.21_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.21_9-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.21_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.21_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/11/jre/windows/nanoserver-1809/Dockerfile) -- `17.0.9_9-jdk`, `17-jdk`, `17`: - - [`17.0.9_9-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/ubuntu/jammy/Dockerfile) - - [`17.0.9_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.9_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.9_9-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.9_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.9_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.9_9-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.9_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.9_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jdk/windows/nanoserver-1809/Dockerfile) -- `17.0.9_9-jre`, `17-jre`: - - [`17.0.9_9-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/ubuntu/jammy/Dockerfile) - - [`17.0.9_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.9_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.9_9-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.9_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.9_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.9_9-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.9_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.9_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/17/jre/windows/nanoserver-1809/Dockerfile) -- `21.0.1_12-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.1_12-jdk-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/ubuntu/jammy/Dockerfile) - - [`21.0.1_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.1_12-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.1_12-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.1_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.1_12-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.1_12-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.1_12-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.1_12-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jdk/windows/nanoserver-1809/Dockerfile) -- `21.0.1_12-jre`, `21-jre`: - - [`21.0.1_12-jre-jammy`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/ubuntu/jammy/Dockerfile) - - [`21.0.1_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.1_12-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.1_12-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.1_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.1_12-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.1_12-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.1_12-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.1_12-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f6d4923380ecb1ec4b0d58c633ebb0aeed4c8332/21/jre/windows/nanoserver-1809/Dockerfile) +- `8u402-b06-jdk`, `8-jdk`, `8`: + - [`8u402-b06-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/jammy/Dockerfile) + - [`8u402-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u402-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u402-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u402-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u402-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u402-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u402-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u402-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) +- `8u402-b06-jre`, `8-jre`: + - [`8u402-b06-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/jammy/Dockerfile) + - [`8u402-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u402-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u402-b06-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u402-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u402-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u402-b06-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u402-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u402-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) +- `11.0.22_7-jdk`, `11-jdk`, `11`: + - [`11.0.22_7-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/jammy/Dockerfile) + - [`11.0.22_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.22_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.22_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.22_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.22_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.22_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.22_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.22_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) +- `11.0.22_7-jre`, `11-jre`: + - [`11.0.22_7-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/jammy/Dockerfile) + - [`11.0.22_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.22_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.22_7-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.22_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.22_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.22_7-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.22_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.22_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) +- `17.0.10_7-jdk`, `17-jdk`, `17`: + - [`17.0.10_7-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/jammy/Dockerfile) + - [`17.0.10_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.10_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.10_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.10_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.10_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.10_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.10_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.10_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) +- `17.0.10_7-jre`, `17-jre`: + - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.10_7-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.10_7-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.10_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.10_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) +- `21.0.2_13-jdk`, `21-jdk`, `21`, `latest`: + - [`21.0.2_13-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubuntu/jammy/Dockerfile) + - [`21.0.2_13-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.2_13-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.2_13-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21.0.2_13-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.2_13-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.2_13-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21.0.2_13-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.2_13-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21.0.2_13-jre`, `21-jre`: + - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.2_13-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.2_13-jre-nanoserver`, `21-jre-nanoserver`: + - [`21.0.2_13-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.2_13-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 8dddafa5715a..b4ea76720194 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/buster/Dockerfile) -- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.8/slim-buster/Dockerfile) -- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/0269ad0eacdbeb2a6105488d283b99ad3633f2e9/9.6/buster/Dockerfile) -- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/0269ad0eacdbeb2a6105488d283b99ad3633f2e9/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/3d23b935d1de92b907c24b3183a0ee8cdeb459cf/9.4/slim-buster/Dockerfile) -- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/buster/Dockerfile) -- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.2/slim-buster/Dockerfile) -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/buster/Dockerfile) -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/13262afb82e457645a9b9f3f3eadb8e5acd4b5c1/9.0/slim-buster/Dockerfile) +- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.8/buster/Dockerfile) +- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.8/slim-buster/Dockerfile) +- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.6/buster/Dockerfile) +- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.4/slim-buster/Dockerfile) +- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.2/buster/Dockerfile) +- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.2/slim-buster/Dockerfile) +- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.0/buster/Dockerfile) +- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.0/slim-buster/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 7830660c6f92..827739a29c02 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-5-jdk-oraclelinux8`, `23-ea-5-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-5-jdk-oracle`, `23-ea-5-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-5-jdk-oraclelinux7`, `23-ea-5-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-5-jdk-bookworm`, `23-ea-5-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/bookworm/Dockerfile) -- [`23-ea-5-jdk-slim-bookworm`, `23-ea-5-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-5-jdk-slim`, `23-ea-5-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-5-jdk-bullseye`, `23-ea-5-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/bullseye/Dockerfile) -- [`23-ea-5-jdk-slim-bullseye`, `23-ea-5-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-5-jdk-windowsservercore-ltsc2022`, `23-ea-5-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-5-jdk-windowsservercore-1809`, `23-ea-5-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-5-jdk-nanoserver-1809`, `23-ea-5-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-31-jdk-oraclelinux8`, `22-ea-31-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-31-jdk-oracle`, `22-ea-31-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-31-jdk-oraclelinux7`, `22-ea-31-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-31-jdk-bookworm`, `22-ea-31-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/bookworm/Dockerfile) -- [`22-ea-31-jdk-slim-bookworm`, `22-ea-31-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-31-jdk-slim`, `22-ea-31-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-31-jdk-bullseye`, `22-ea-31-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/bullseye/Dockerfile) -- [`22-ea-31-jdk-slim-bullseye`, `22-ea-31-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-31-jdk-windowsservercore-ltsc2022`, `22-ea-31-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-31-jdk-windowsservercore-1809`, `22-ea-31-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-31-jdk-nanoserver-1809`, `22-ea-31-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-6-jdk-oraclelinux8`, `23-ea-6-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-6-jdk-oracle`, `23-ea-6-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-6-jdk-oraclelinux7`, `23-ea-6-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-6-jdk-bookworm`, `23-ea-6-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/bookworm/Dockerfile) +- [`23-ea-6-jdk-slim-bookworm`, `23-ea-6-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-6-jdk-slim`, `23-ea-6-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-6-jdk-bullseye`, `23-ea-6-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/bullseye/Dockerfile) +- [`23-ea-6-jdk-slim-bullseye`, `23-ea-6-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-6-jdk-windowsservercore-ltsc2022`, `23-ea-6-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-6-jdk-windowsservercore-1809`, `23-ea-6-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-6-jdk-nanoserver-1809`, `23-ea-6-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-32-jdk-oraclelinux8`, `22-ea-32-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-32-jdk-oracle`, `22-ea-32-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-32-jdk-oraclelinux7`, `22-ea-32-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-32-jdk-bookworm`, `22-ea-32-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/bookworm/Dockerfile) +- [`22-ea-32-jdk-slim-bookworm`, `22-ea-32-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-32-jdk-slim`, `22-ea-32-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-32-jdk-bullseye`, `22-ea-32-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/bullseye/Dockerfile) +- [`22-ea-32-jdk-slim-bullseye`, `22-ea-32-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-32-jdk-windowsservercore-ltsc2022`, `22-ea-32-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-32-jdk-windowsservercore-1809`, `22-ea-32-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-32-jdk-nanoserver-1809`, `22-ea-32-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-5-jdk`, `23-ea-5`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-5-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-5-jdk-windowsservercore`, `23-ea-5-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-5-jdk-nanoserver`, `23-ea-5-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7db2ee718474d44b74ed2a75dd0beb5396eb9467/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-31-jdk`, `22-ea-31`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-31-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-31-jdk-windowsservercore`, `22-ea-31-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-31-jdk-nanoserver`, `22-ea-31-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/00b8f4ede5ca3cf6d67837591998464aaab175bb/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-6-jdk`, `23-ea-6`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-6-jdk-windowsservercore`, `23-ea-6-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-6-jdk-nanoserver`, `23-ea-6-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-32-jdk`, `22-ea-32`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-32-jdk-windowsservercore`, `22-ea-32-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-32-jdk-nanoserver`, `22-ea-32-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From c13a67c72fcc2ddc5131fb8a8c0b23b7241fda38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jan 2024 13:09:59 -0800 Subject: [PATCH 0895/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- golang/README.md | 36 ++++++++++++++++++------------------ traefik/README.md | 6 +++--- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/docker/README.md b/docker/README.md index 1dc72b412e93..df763c5b9608 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.0-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/cli/Dockerfile) -- [`25.0.0-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.0-dind-alpine3.19`, `25.0.0`, `25.0`, `25`, `latest`, `25.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind/Dockerfile) -- [`25.0.0-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/dind-rootless/Dockerfile) -- [`25.0.0-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.0-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.0-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/cli/Dockerfile) +- [`25.0.1-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/cli/Dockerfile) +- [`25.0.1-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.1-dind-alpine3.19`, `25.0.1`, `25.0`, `25`, `latest`, `25.0.1-alpine3.19`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind/Dockerfile) +- [`25.0.1-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind-rootless/Dockerfile) +- [`25.0.1-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) +- [`25.0.1-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.1-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/cli/Dockerfile) - [`24.0.7-dind`, `24.0-dind`, `24-dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) - [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) - [`24.0.7-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.0-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0eb94892bd344857b35b73fb22ec73a746cb54c6/25/windows/windowsservercore-1809/Dockerfile) +- `25.0.1-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) - `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/928bc5d8411ab77082a420711042d8ba9806392c/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index a97efe7ba610..4031b4a3cf24 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`1.22rc1-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bookworm/Dockerfile) -- [`1.22rc1-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bullseye/Dockerfile) -- [`1.22rc1-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc1-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/alpine3.19/Dockerfile) -- [`1.22rc1-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/alpine3.18/Dockerfile) -- [`1.22rc1-windowsservercore-ltsc2022`, `1.22-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22rc1-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.22rc1-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22rc1-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) +- [`1.22rc2-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bookworm/Dockerfile) +- [`1.22rc2-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bullseye/Dockerfile) +- [`1.22rc2-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc2-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/alpine3.19/Dockerfile) +- [`1.22rc2-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/alpine3.18/Dockerfile) +- [`1.22rc2-windowsservercore-ltsc2022`, `1.22-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22rc2-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.22rc2-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22rc2-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) - [`1.21.6-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) - [`1.21.6-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bullseye/Dockerfile) - [`1.21.6-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.6-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/alpine3.19/Dockerfile) @@ -55,16 +55,16 @@ WARNING: ## Shared Tags -- `1.22rc1`, `1.22-rc`: - - [`1.22rc1-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.22-rc/bookworm/Dockerfile) - - [`1.22rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- `1.22rc1-windowsservercore`, `1.22-rc-windowsservercore`: - - [`1.22rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- `1.22rc1-nanoserver`, `1.22-rc-nanoserver`: - - [`1.22rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/46d44c197aa3ce81c16ad43a2e4b331cc188053a/1.22-rc/windows/nanoserver-1809/Dockerfile) +- `1.22rc2`, `1.22-rc`: + - [`1.22rc2-bookworm`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bookworm/Dockerfile) + - [`1.22rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- `1.22rc2-windowsservercore`, `1.22-rc-windowsservercore`: + - [`1.22rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) +- `1.22rc2-nanoserver`, `1.22-rc-nanoserver`: + - [`1.22rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) - `1.21.6`, `1.21`, `1`, `latest`: - [`1.21.6-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 1b7b1ac710f1..0438a33a701f 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -27,9 +27,9 @@ WARNING: - [`v3.0.0-beta5-windowsservercore-ltsc2022`, `3.0.0-beta5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/servercore-ltsc2022/Dockerfile) - [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) - [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) -- [`v2.11.0-rc1-windowsservercore-ltsc2022`, `2.11.0-rc1-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.0-rc1-windowsservercore-1809`, `2.11.0-rc1-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/windows/1809/Dockerfile) -- [`v2.11.0-rc1`, `2.11.0-rc1`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/febb0c2358cbb1033a6d0d0a447d52cbe11ded54/alpine/Dockerfile) +- [`v2.11.0-rc2-windowsservercore-ltsc2022`, `2.11.0-rc2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.0-rc2-windowsservercore-1809`, `2.11.0-rc2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/windows/1809/Dockerfile) +- [`v2.11.0-rc2`, `2.11.0-rc2`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/alpine/Dockerfile) - [`v2.10.7-windowsservercore-ltsc2022`, `2.10.7-windowsservercore-ltsc2022`, `v2.10-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `saintmarcelin-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/servercore-ltsc2022/Dockerfile) - [`v2.10.7-windowsservercore-1809`, `2.10.7-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/1809/Dockerfile) - [`v2.10.7`, `2.10.7`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/alpine/Dockerfile) From b97f5966dda7cc910b8262e7878e822f0dfe4b11 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jan 2024 15:18:43 -0800 Subject: [PATCH 0896/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d264b7b1efef..030216cbb702 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c384d40b8784514c5d09947f9e5075705b9f13f0/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7-slim-fips/Dockerfile) # Quick reference (cont.) From 2a854e1aed005be88f98ade2b61d0e2bbe4ef76d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 10:09:46 -0800 Subject: [PATCH 0897/2686] Run update.sh --- percona/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/percona/README.md b/percona/README.md index d03516e81dd2..868e270a9bfc 100644 --- a/percona/README.md +++ b/percona/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.0.34-26-centos`, `8.0-centos`, `8-centos`, `8.0.34-26`, `8.0`, `8`, `ps-8.0.34-26`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/565f49b8be3a1efa056fde70e10d638ad159516a/percona-server-8.0/Dockerfile) -- [`5.7.43-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.43`, `5.7`, `5`, `ps-5.7.43`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/a11f997b281686769392ea14aa02daee97320c51/percona-server-5.7/Dockerfile-dockerhub) +- [`5.7.44-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.44`, `5.7`, `5`, `ps-5.7.44`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/b89efa5f100edacc0ef660cef37975acfaf67326/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) - [`psmdb-5.0.18`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-5.0/Dockerfile) From cc09d7969b8693b01de195c6661333ccc932f7ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 11:20:54 -0800 Subject: [PATCH 0898/2686] Run update.sh --- eclipse-temurin/README.md | 44 +++++++++++++++++++-------------------- neo4j/README.md | 4 ++-- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index ee6496ab7541..339ec691cece 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -29,8 +29,8 @@ WARNING: ## Simple Tags - [`8u402-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/alpine/Dockerfile) -- [`8u402-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/focal/Dockerfile) -- [`8u402-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u402-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/focal/Dockerfile) +- [`8u402-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/jammy/Dockerfile) - [`8u402-b06-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/centos/Dockerfile) - [`8u402-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubi/ubi9-minimal/Dockerfile) - [`8u402-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -38,8 +38,8 @@ WARNING: - [`8u402-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) - [`8u402-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) - [`8u402-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/alpine/Dockerfile) -- [`8u402-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/focal/Dockerfile) -- [`8u402-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/jammy/Dockerfile) +- [`8u402-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/focal/Dockerfile) +- [`8u402-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/jammy/Dockerfile) - [`8u402-b06-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/centos/Dockerfile) - [`8u402-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubi/ubi9-minimal/Dockerfile) - [`8u402-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -47,8 +47,8 @@ WARNING: - [`8u402-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) - [`8u402-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) - [`11.0.22_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/alpine/Dockerfile) -- [`11.0.22_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.22_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.22_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.22_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/jammy/Dockerfile) - [`11.0.22_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/centos/Dockerfile) - [`11.0.22_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubi/ubi9-minimal/Dockerfile) - [`11.0.22_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -56,8 +56,8 @@ WARNING: - [`11.0.22_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) - [`11.0.22_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) - [`11.0.22_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/alpine/Dockerfile) -- [`11.0.22_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.22_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.22_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.22_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/jammy/Dockerfile) - [`11.0.22_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/centos/Dockerfile) - [`11.0.22_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubi/ubi9-minimal/Dockerfile) - [`11.0.22_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -65,8 +65,8 @@ WARNING: - [`11.0.22_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) - [`11.0.22_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) - [`17.0.10_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/alpine/Dockerfile) -- [`17.0.10_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.10_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.10_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.10_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/jammy/Dockerfile) - [`17.0.10_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/centos/Dockerfile) - [`17.0.10_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubi/ubi9-minimal/Dockerfile) - [`17.0.10_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -74,8 +74,8 @@ WARNING: - [`17.0.10_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) - [`17.0.10_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) - [`17.0.10_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/alpine/Dockerfile) -- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/jammy/Dockerfile) - [`17.0.10_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/centos/Dockerfile) - [`17.0.10_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubi/ubi9-minimal/Dockerfile) - [`17.0.10_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -83,14 +83,14 @@ WARNING: - [`17.0.10_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) - [`17.0.10_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) - [`21.0.2_13-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/alpine/Dockerfile) -- [`21.0.2_13-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.2_13-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jdk/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubi/ubi9-minimal/Dockerfile) - [`21.0.2_13-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) - [`21.0.2_13-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) - [`21.0.2_13-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/alpine/Dockerfile) -- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jre/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubi/ubi9-minimal/Dockerfile) - [`21.0.2_13-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) @@ -100,7 +100,7 @@ WARNING: ## Shared Tags - `8u402-b06-jdk`, `8-jdk`, `8`: - - [`8u402-b06-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubuntu/jammy/Dockerfile) + - [`8u402-b06-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/jammy/Dockerfile) - [`8u402-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u402-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) - `8u402-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: @@ -110,7 +110,7 @@ WARNING: - [`8u402-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`8u402-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) - `8u402-b06-jre`, `8-jre`: - - [`8u402-b06-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubuntu/jammy/Dockerfile) + - [`8u402-b06-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/jammy/Dockerfile) - [`8u402-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u402-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) - `8u402-b06-jre-windowsservercore`, `8-jre-windowsservercore`: @@ -120,7 +120,7 @@ WARNING: - [`8u402-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`8u402-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) - `11.0.22_7-jdk`, `11-jdk`, `11`: - - [`11.0.22_7-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubuntu/jammy/Dockerfile) + - [`11.0.22_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/jammy/Dockerfile) - [`11.0.22_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.22_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) - `11.0.22_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: @@ -130,7 +130,7 @@ WARNING: - [`11.0.22_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.22_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) - `11.0.22_7-jre`, `11-jre`: - - [`11.0.22_7-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubuntu/jammy/Dockerfile) + - [`11.0.22_7-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/jammy/Dockerfile) - [`11.0.22_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.22_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) - `11.0.22_7-jre-windowsservercore`, `11-jre-windowsservercore`: @@ -140,7 +140,7 @@ WARNING: - [`11.0.22_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.22_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) - `17.0.10_7-jdk`, `17-jdk`, `17`: - - [`17.0.10_7-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubuntu/jammy/Dockerfile) + - [`17.0.10_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/jammy/Dockerfile) - [`17.0.10_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.10_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) - `17.0.10_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: @@ -150,7 +150,7 @@ WARNING: - [`17.0.10_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.10_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) - `17.0.10_7-jre`, `17-jre`: - - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/jammy/Dockerfile) - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.10_7-jre-windowsservercore`, `17-jre-windowsservercore`: @@ -160,7 +160,7 @@ WARNING: - [`17.0.10_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.10_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) - `21.0.2_13-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.2_13-jdk-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubuntu/jammy/Dockerfile) + - [`21.0.2_13-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jdk/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21.0.2_13-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: @@ -170,7 +170,7 @@ WARNING: - [`21.0.2_13-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) - `21.0.2_13-jre`, `21-jre`: - - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jre/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.2_13-jre-windowsservercore`, `21-jre-windowsservercore`: diff --git a/neo4j/README.md b/neo4j/README.md index 789d0a9f39bd..e31d4f61aeb1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.16.0-enterprise-bullseye`, `5.16-enterprise-bullseye`, `5-enterprise-bullseye`, `5.16.0-enterprise`, `5.16-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/bullseye/enterprise/Dockerfile) - [`5.16.0-community-ubi8`, `5.16-community-ubi8`, `5-community-ubi8`, `5.16.0-ubi8`, `5.16-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/community/Dockerfile) - [`5.16.0-enterprise-ubi8`, `5.16-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/enterprise/Dockerfile) -- [`4.4.29`, `4.4.29-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/community/Dockerfile) -- [`4.4.29-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d5d175a84cd5e4eb6781cd1190789f9e1de870d2/4.4.29/bullseye/enterprise/Dockerfile) +- [`4.4.30`, `4.4.30-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/community/Dockerfile) +- [`4.4.30-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 2e30bbb81a96a8473c231eb01e5b00164db754be Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 12:18:04 -0800 Subject: [PATCH 0899/2686] Run update.sh --- nextcloud/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index c5deb00261d3..cdae5d321e1e 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,12 +28,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.10-apache`, `26.0-apache`, `26-apache`, `26.0.10`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/apache/Dockerfile) -- [`26.0.10-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/fpm/Dockerfile) -- [`26.0.10-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/26/fpm-alpine/Dockerfile) -- [`27.1.5-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.5`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/apache/Dockerfile) -- [`27.1.5-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm/Dockerfile) -- [`27.1.5-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4cff57305b863a4e055595bf24b04028a7547e8d/27/fpm-alpine/Dockerfile) +- [`26.0.11-apache`, `26.0-apache`, `26-apache`, `26.0.11`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/apache/Dockerfile) +- [`26.0.11-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/fpm/Dockerfile) +- [`26.0.11-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/fpm-alpine/Dockerfile) +- [`27.1.6-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.6`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/apache/Dockerfile) +- [`27.1.6-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/fpm/Dockerfile) +- [`27.1.6-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/fpm-alpine/Dockerfile) - [`28.0.1-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.1`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/apache/Dockerfile) - [`28.0.1-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm/Dockerfile) - [`28.0.1-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm-alpine/Dockerfile) From 457d6729f68c4f30c20486c657163c7896408234 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 13:09:40 -0800 Subject: [PATCH 0900/2686] Run update.sh --- solr/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/solr/README.md b/solr/README.md index 31ed944ed133..a33bd4ac7374 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.4-slim/Dockerfile) -- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e743474ec59206f53e6c1003cc852f104b315d43/8.11-slim/Dockerfile) +- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.4-slim/Dockerfile) +- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.0/Dockerfile) +- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/8.11/Dockerfile) +- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/8.11-slim/Dockerfile) # Quick reference (cont.) From 42bebdc8a20c03c93cdb53f61a9b441359ae8809 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 14:20:41 -0800 Subject: [PATCH 0901/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f0c483909065..5145dabd0cfd 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.76.1`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/043b2233e5a02fc3bd1c61235dcc42a1ece7ae82/5/debian/Dockerfile) -- [`5.76.1-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/043b2233e5a02fc3bd1c61235dcc42a1ece7ae82/5/alpine/Dockerfile) +- [`5.76.2`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4cfca650bc02e58152b13f852bf67fb0bd163081/5/debian/Dockerfile) +- [`5.76.2-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4cfca650bc02e58152b13f852bf67fb0bd163081/5/alpine/Dockerfile) # Quick reference (cont.) From b252144cf4975ceb2930c0a07da74f6b5b4a5836 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 16:09:58 -0800 Subject: [PATCH 0902/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 030216cbb702..e0fd8f7c7112 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3c3b822f58048ddfec0ac23a945e15874a5aef1e/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7-slim-fips/Dockerfile) # Quick reference (cont.) From e4912e89e5ff33ba456aa01d3105afd6e597e06d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jan 2024 17:18:28 -0800 Subject: [PATCH 0903/2686] Run update.sh --- docker/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/README.md b/docker/README.md index df763c5b9608..60e9180b3064 100644 --- a/docker/README.md +++ b/docker/README.md @@ -34,21 +34,21 @@ WARNING: - [`25.0.1-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) - [`25.0.1-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.1-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.7-cli`, `24.0-cli`, `24-cli`, `24.0.7-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/cli/Dockerfile) -- [`24.0.7-dind`, `24.0-dind`, `24-dind`, `24.0.7-dind-alpine3.19`, `24.0.7`, `24.0`, `24`, `24.0.7-alpine3.19`](https://github.com/docker-library/docker/blob/eb4c40e45daf9218a21526d0ebd076b627d0b882/24/dind/Dockerfile) -- [`24.0.7-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/62c197fe7632d3bce351d4c337a5a129ebd8f771/24/dind-rootless/Dockerfile) -- [`24.0.7-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.7-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.7-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.8-cli`, `24.0-cli`, `24-cli`, `24.0.8-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/cli/Dockerfile) +- [`24.0.8-dind`, `24.0-dind`, `24-dind`, `24.0.8-dind-alpine3.19`, `24.0.8`, `24.0`, `24`, `24.0.8-alpine3.19`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind/Dockerfile) +- [`24.0.8-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind-rootless/Dockerfile) +- [`24.0.8-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.8-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.8-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.1-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - [`25.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) -- `24.0.7-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.7-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5c21a7d75ecbb6c6c41d60374b8026d6e64546fb/24/windows/windowsservercore-1809/Dockerfile) +- `24.0.8-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: + - [`24.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.8-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 07029d4c5d448e0875aaa588ebaa8127dda26d1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jan 2024 10:27:54 -0800 Subject: [PATCH 0904/2686] Run update.sh --- swipl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swipl/README.md b/swipl/README.md index 9dc9d84ed53f..3300f26addc3 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.21`](https://github.com/SWI-Prolog/docker-swipl/blob/1a0a739f7edf19f4282958568ac8245f4410e1b1/9.1.21/bookworm/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/1a0a739f7edf19f4282958568ac8245f4410e1b1/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.1.22`](https://github.com/SWI-Prolog/docker-swipl/blob/39317e85c5a010be939ddf3537af2a320c15d5d5/9.1.22/bookworm/Dockerfile) +- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/39317e85c5a010be939ddf3537af2a320c15d5d5/9.0.4/bullseye/Dockerfile) # Quick reference (cont.) From 8e8fcf93ac43b2527156c2e7218079563596693c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jan 2024 11:09:58 -0800 Subject: [PATCH 0905/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index d3bf6ed9fe29..12739dd15798 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/45ad277d0e7eca984d0925d9acae655d0b90904d/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/15.0/Dockerfile) # Quick reference (cont.) From 6b05929512f742ad20028155738c2849fa53ab4d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jan 2024 12:18:22 -0800 Subject: [PATCH 0906/2686] Run update.sh --- joomla/README.md | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 16e75053b18d..ec7fc830df2d 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,24 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/apache/Dockerfile) -- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.1/fpm/Dockerfile) -- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/apache/Dockerfile) -- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/5.0/php8.2/fpm/Dockerfile) -- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/apache/Dockerfile) -- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.1/fpm/Dockerfile) -- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/apache/Dockerfile) -- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.4/php8.2/fpm/Dockerfile) -- [`4.3.4`, `4.3`, `4.3.4-apache`, `4.3-apache`, `4.3.4-php8.1`, `4.3-php8.1`, `4.3.4-php8.1-apache`, `4.3-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/apache/Dockerfile) -- [`4.3.4-php8.1-fpm-alpine`, `4.3-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/fpm-alpine/Dockerfile) -- [`4.3.4-php8.1-fpm`, `4.3-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.1/fpm/Dockerfile) -- [`4.3.4-php8.2-apache`, `4.3-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/apache/Dockerfile) -- [`4.3.4-php8.2-fpm-alpine`, `4.3-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/fpm-alpine/Dockerfile) -- [`4.3.4-php8.2-fpm`, `4.3-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a416792606b1f49dfbe9ad2155c7df972ade09d3/4.3/php8.2/fpm/Dockerfile) +- [`5.1.0-alpha3-php8.1-apache`, `5.1-php8.1-apache`, `5.1.alpha-php8.1-apache`, `5.1.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/apache/Dockerfile) +- [`5.1.0-alpha3-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.alpha-php8.1-fpm-alpine`, `5.1.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.1.0-alpha3-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.alpha-php8.1-fpm`, `5.1.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/fpm/Dockerfile) +- [`5.1.0-alpha3`, `5.1`, `5.1.alpha`, `5.1.0-alpha`, `5.1.0-alpha3-apache`, `5.1-apache`, `5.1.alpha-apache`, `5.1.0-alpha-apache`, `5.1.0-alpha3-php8.2`, `5.1-php8.2`, `5.1.alpha-php8.2`, `5.1.0-alpha-php8.2`, `5.1.0-alpha3-php8.2-apache`, `5.1-php8.2-apache`, `5.1.alpha-php8.2-apache`, `5.1.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/apache/Dockerfile) +- [`5.1.0-alpha3-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.alpha-php8.2-fpm-alpine`, `5.1.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.1.0-alpha3-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.alpha-php8.2-fpm`, `5.1.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/fpm/Dockerfile) +- [`5.1.0-alpha3-php8.3-apache`, `5.1-php8.3-apache`, `5.1.alpha-php8.3-apache`, `5.1.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/apache/Dockerfile) +- [`5.1.0-alpha3-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5.1.alpha-php8.3-fpm-alpine`, `5.1.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.1.0-alpha3-php8.3-fpm`, `5.1-php8.3-fpm`, `5.1.alpha-php8.3-fpm`, `5.1.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/fpm/Dockerfile) +- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.1/apache/Dockerfile) +- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.1/fpm/Dockerfile) +- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.2/apache/Dockerfile) +- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.2/fpm/Dockerfile) +- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.1/apache/Dockerfile) +- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.1/fpm/Dockerfile) +- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.2/apache/Dockerfile) +- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From 8d4b93b1b34c88cd6ed18a9111204f71c68b5ad2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jan 2024 15:18:56 -0800 Subject: [PATCH 0907/2686] Run update.sh --- openjdk/README.md | 72 ++++++++++++++++++++++----------------------- wordpress/README.md | 9 ++++++ 2 files changed, 45 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 827739a29c02..896473cf2565 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-6-jdk-oraclelinux8`, `23-ea-6-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-6-jdk-oracle`, `23-ea-6-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-6-jdk-oraclelinux7`, `23-ea-6-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-6-jdk-bookworm`, `23-ea-6-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/bookworm/Dockerfile) -- [`23-ea-6-jdk-slim-bookworm`, `23-ea-6-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-6-jdk-slim`, `23-ea-6-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-6-jdk-bullseye`, `23-ea-6-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/bullseye/Dockerfile) -- [`23-ea-6-jdk-slim-bullseye`, `23-ea-6-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-6-jdk-windowsservercore-ltsc2022`, `23-ea-6-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-6-jdk-windowsservercore-1809`, `23-ea-6-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-6-jdk-nanoserver-1809`, `23-ea-6-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-32-jdk-oraclelinux8`, `22-ea-32-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-32-jdk-oracle`, `22-ea-32-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-32-jdk-oraclelinux7`, `22-ea-32-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-32-jdk-bookworm`, `22-ea-32-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/bookworm/Dockerfile) -- [`22-ea-32-jdk-slim-bookworm`, `22-ea-32-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-32-jdk-slim`, `22-ea-32-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-32-jdk-bullseye`, `22-ea-32-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/bullseye/Dockerfile) -- [`22-ea-32-jdk-slim-bullseye`, `22-ea-32-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-32-jdk-windowsservercore-ltsc2022`, `22-ea-32-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-32-jdk-windowsservercore-1809`, `22-ea-32-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-32-jdk-nanoserver-1809`, `22-ea-32-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-7-jdk-oraclelinux8`, `23-ea-7-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-7-jdk-oracle`, `23-ea-7-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-7-jdk-oraclelinux7`, `23-ea-7-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-7-jdk-bookworm`, `23-ea-7-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/bookworm/Dockerfile) +- [`23-ea-7-jdk-slim-bookworm`, `23-ea-7-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-7-jdk-slim`, `23-ea-7-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-7-jdk-bullseye`, `23-ea-7-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/bullseye/Dockerfile) +- [`23-ea-7-jdk-slim-bullseye`, `23-ea-7-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-7-jdk-windowsservercore-ltsc2022`, `23-ea-7-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-7-jdk-windowsservercore-1809`, `23-ea-7-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-7-jdk-nanoserver-1809`, `23-ea-7-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-33-jdk-oraclelinux8`, `22-ea-33-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-33-jdk-oracle`, `22-ea-33-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-33-jdk-oraclelinux7`, `22-ea-33-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-33-jdk-bookworm`, `22-ea-33-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/bookworm/Dockerfile) +- [`22-ea-33-jdk-slim-bookworm`, `22-ea-33-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-33-jdk-slim`, `22-ea-33-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-33-jdk-bullseye`, `22-ea-33-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/bullseye/Dockerfile) +- [`22-ea-33-jdk-slim-bullseye`, `22-ea-33-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-33-jdk-windowsservercore-ltsc2022`, `22-ea-33-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-33-jdk-windowsservercore-1809`, `22-ea-33-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-33-jdk-nanoserver-1809`, `22-ea-33-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-6-jdk`, `23-ea-6`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-6-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-6-jdk-windowsservercore`, `23-ea-6-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-6-jdk-nanoserver`, `23-ea-6-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a21444acd7aad36f703897b08024dc929d83f6ec/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-32-jdk`, `22-ea-32`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-32-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-32-jdk-windowsservercore`, `22-ea-32-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-32-jdk-nanoserver`, `22-ea-32-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1662092abd1ea967b09f5c7bca2c46814b5198c1/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-7-jdk`, `23-ea-7`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-7-jdk-windowsservercore`, `23-ea-7-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-7-jdk-nanoserver`, `23-ea-7-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-33-jdk`, `22-ea-33`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-33-jdk-windowsservercore`, `22-ea-33-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-33-jdk-nanoserver`, `22-ea-33-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 2815e8da92b4..c9c37b6a75ae 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) - [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) +- [`beta-6.4.3-RC1-php8.1-apache`, `beta-6.4.3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4.3-RC1-php8.1`, `beta-6.4.3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/apache/Dockerfile) +- [`beta-6.4.3-RC1-php8.1-fpm`, `beta-6.4.3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/fpm/Dockerfile) +- [`beta-6.4.3-RC1-php8.1-fpm-alpine`, `beta-6.4.3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.4.3-RC1-apache`, `beta-6.4.3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4.3-RC1`, `beta-6.4.3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4.3-RC1-php8.2-apache`, `beta-6.4.3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4.3-RC1-php8.2`, `beta-6.4.3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/apache/Dockerfile) +- [`beta-6.4.3-RC1-fpm`, `beta-6.4.3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4.3-RC1-php8.2-fpm`, `beta-6.4.3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/fpm/Dockerfile) +- [`beta-6.4.3-RC1-fpm-alpine`, `beta-6.4.3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4.3-RC1-php8.2-fpm-alpine`, `beta-6.4.3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.4.3-RC1-php8.3-apache`, `beta-6.4.3-php8.3-apache`, `beta-6.4-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.4.3-RC1-php8.3`, `beta-6.4.3-php8.3`, `beta-6.4-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/apache/Dockerfile) +- [`beta-6.4.3-RC1-php8.3-fpm`, `beta-6.4.3-php8.3-fpm`, `beta-6.4-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/fpm/Dockerfile) +- [`beta-6.4.3-RC1-php8.3-fpm-alpine`, `beta-6.4.3-php8.3-fpm-alpine`, `beta-6.4-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From f9cf652bd77f1f36a0c2f84b24584e6e858e80bf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jan 2024 16:09:46 -0800 Subject: [PATCH 0908/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 798e7929b92e..1a054b8da479 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20231219`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/8890ee9d240b5646608ea8810923ec686d578a00/x86_64/Dockerfile) -- [`3.19.0`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/97c57449282d97cfa1c0b64669aed9afbf08645a/x86_64/Dockerfile) -- [`3.18.5`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a83fe3481a89201ac736f735062360f5953be635/x86_64/Dockerfile) -- [`3.17.6`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/4de8583a90c86e251755f4bae4080f86e2449df8/x86_64/Dockerfile) -- [`3.16.8`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/6e630a20c86d1d0e5987681e02ed6de64ecbbf37/x86_64/Dockerfile) +- [`3.19.1`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) +- [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) +- [`3.17.7`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1041155cbf4b410b02729c23a198d632945a1744/x86_64/Dockerfile) +- [`3.16.9`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/9c372c82f691cfe76c2058d75e2c4f9cd589d4c5/x86_64/Dockerfile) # Quick reference (cont.) From af7af0d8d8a10b970ba85deb3641ecca9dd02a04 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jan 2024 11:20:49 -0800 Subject: [PATCH 0909/2686] Run update.sh --- clojure/README.md | 146 +++++++++++++++++++++++----------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 2b2e5f5fbaa1..288c13f681a2 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,79 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.10.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.10.0-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.10.0`, `temurin-8-lein-2.10.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.10.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.10.0-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.10.0`, `temurin-11-lein-2.10.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.10.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.10.0-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.10.0`, `temurin-17-lein-2.10.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.10.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.10.0`, `lein-2.10.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.10.0`, `temurin-21-lein-2.10.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.10.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.10.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.10.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.10.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.10.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.10.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/50f4e3a9c56190e4c7b4158a1f4b0383fa24b19d/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.11.1-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.1-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.1-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.1-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.1-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.1-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.1`, `temurin-8-lein-2.11.1-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.11.1-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.1-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.1-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.1-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.1-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.1-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.1`, `temurin-11-lein-2.11.1-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.11.1-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.1-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.1-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.1-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.1-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.1-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.1`, `temurin-17-lein-2.11.1-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.1-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.1`, `lein-2.11.1-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.1`, `temurin-21-lein-2.11.1-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.1-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.1-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.1-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.1-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.1-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.1-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.1-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) From d0b9acbeaf656a6a90c66a8471aff0540462a736 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jan 2024 12:18:35 -0800 Subject: [PATCH 0910/2686] Run update.sh --- xwiki/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 5757b0bd6c2b..2ab2c10e39c1 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15`, `15.10`, `15.10.5`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.5-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.5-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.5-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mariadb-tomcat/Dockerfile) +- [`16`, `16.0`, `16.0.0`, `16-mysql-tomcat`, `16.0-mysql-tomcat`, `16.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.0-postgres-tomcat`, `16.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.0-mariadb-tomcat`, `16.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.5`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From 1fba0ec270917ceed8acfa813d865b3cf3b7b916 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jan 2024 14:09:47 -0800 Subject: [PATCH 0911/2686] Run update.sh --- haproxy/README.md | 4 ++-- telegraf/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index d6750112632e..54fad5b6695e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev1`, `3.0-dev`, `3.0-dev1-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/Dockerfile) -- [`3.0-dev1-alpine`, `3.0-dev-alpine`, `3.0-dev1-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7f6a9c1c093af888a7d5f3e32150c3ea157617e0/3.0/alpine/Dockerfile) +- [`3.0-dev2`, `3.0-dev`, `3.0-dev2-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/Dockerfile) +- [`3.0-dev2-alpine`, `3.0-dev-alpine`, `3.0-dev2-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/alpine/Dockerfile) - [`2.9.3`, `2.9`, `latest`, `2.9.3-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/Dockerfile) - [`2.9.3-alpine`, `2.9-alpine`, `alpine`, `2.9.3-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index b5af156af592..004d298f6933 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4340c7d20d8b3a4d6a080047cea708c9167236b3/telegraf/1.29/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) From aa432243c49b42358ad20f6446147521e5506d97 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jan 2024 16:09:58 -0800 Subject: [PATCH 0912/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 5145dabd0cfd..074d186565ab 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.76.2`, `5.76`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4cfca650bc02e58152b13f852bf67fb0bd163081/5/debian/Dockerfile) -- [`5.76.2-alpine`, `5.76-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4cfca650bc02e58152b13f852bf67fb0bd163081/5/alpine/Dockerfile) +- [`5.77.0`, `5.77`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d9d06d69f39a26671d024f8ab44b7e780fb05dc6/5/debian/Dockerfile) +- [`5.77.0-alpine`, `5.77-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9d06d69f39a26671d024f8ab44b7e780fb05dc6/5/alpine/Dockerfile) # Quick reference (cont.) From 2b1a52bde228429352b3ada07ba88133790caaa2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jan 2024 17:09:43 -0800 Subject: [PATCH 0913/2686] Run update.sh --- photon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon/README.md b/photon/README.md index 2c4cfd8f7bcb..a30064ab5e0c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20240120`, `latest`](https://github.com/vmware/photon-docker-image/blob/439cc576409074c44e3603b23b4cdafdba8b6d00/docker/Dockerfile) - [`4.0`, `4.0-20240120`](https://github.com/vmware/photon-docker-image/blob/c70f1ceb9e0caa0e0ac0d1ef5a77b3ccec9fb693/docker/Dockerfile) -- [`3.0`, `3.0-20240120`](https://github.com/vmware/photon-docker-image/blob/a2ad984cad02d550a16fc478382daefc07cb911f/docker/Dockerfile) +- [`3.0`, `3.0-20240130`](https://github.com/vmware/photon-docker-image/blob/5874203713afe75454be99427bbdea4f3daca81e/docker/Dockerfile) # Quick reference (cont.) From 3ceaf26c65dd9e444e012e909d7d4dba5b02d6fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jan 2024 11:10:03 -0800 Subject: [PATCH 0914/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index eb8208d7368a..d0b05dc8f896 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.0-alpine`, `21.6.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.0`, `21.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.0-bookworm-slim`, `21.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.6-bullseye`, `21.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5ce4dae24d8af4283baa45226b4de1827f128de3/21/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.1-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.1-alpine`, `21.6.1-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.1`, `21.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.1-bookworm-slim`, `21.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.6-bullseye`, `21.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.0-alpine`, `20.11.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.0`, `20.11.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm/Dockerfile) From 6a9612798f01005bc65a8e878fbabf198a684500 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jan 2024 15:09:57 -0800 Subject: [PATCH 0915/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 20 ++++++++-------- ghost/README.md | 4 ++-- open-liberty/README.md | 48 +++++++++++++++++++++---------------- websphere-liberty/README.md | 42 ++++++++++++++++++-------------- 5 files changed, 64 insertions(+), 52 deletions(-) diff --git a/bash/README.md b/bash/README.md index f56457aff8e2..bf93fcf8db47 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240119`, `devel`, `devel-20240119-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/8cdb8caa08aaf2877e147af0c1d271ee7f8d5d60/devel/Dockerfile) +- [`devel-20240127`, `devel`, `devel-20240127-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/a73419dd41485209a91d46271887b900d8810fcc/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 60e9180b3064..f9fc6bef4a3a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.1-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/cli/Dockerfile) +- [`25.0.1-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/cli/Dockerfile) - [`25.0.1-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.1-dind-alpine3.19`, `25.0.1`, `25.0`, `25`, `latest`, `25.0.1-alpine3.19`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind/Dockerfile) - [`25.0.1-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind-rootless/Dockerfile) - [`25.0.1-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.1-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.1-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.8-cli`, `24.0-cli`, `24-cli`, `24.0.8-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/cli/Dockerfile) +- [`25.0.1-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.1-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.8-cli`, `24.0-cli`, `24-cli`, `24.0.8-cli-alpine3.19`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/cli/Dockerfile) - [`24.0.8-dind`, `24.0-dind`, `24-dind`, `24.0.8-dind-alpine3.19`, `24.0.8`, `24.0`, `24`, `24.0.8-alpine3.19`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind/Dockerfile) - [`24.0.8-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind-rootless/Dockerfile) - [`24.0.8-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.8-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.8-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.8-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.8-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.1-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a64ca2f07e32838fb1c7e0848952998fe6eab8a4/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-1809/Dockerfile) - `24.0.8-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.8-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.8-windowsservercore-1809`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 074d186565ab..44241a541fc7 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.77.0`, `5.77`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d9d06d69f39a26671d024f8ab44b7e780fb05dc6/5/debian/Dockerfile) -- [`5.77.0-alpine`, `5.77-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9d06d69f39a26671d024f8ab44b7e780fb05dc6/5/alpine/Dockerfile) +- [`5.78.0`, `5.78`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4a77eba274347d0835dee9f8bdca17bff44f3815/5/debian/Dockerfile) +- [`5.78.0-alpine`, `5.78-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4a77eba274347d0835dee9f8bdca17bff44f3815/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 2e97da9bc794..72271c0a3b38 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,27 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fd371711bc8e08bf03aa163d44b76f76efff1b36/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index e8820001b91c..0759be18f802 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,24 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/55a3906d7788b1c81c050772e146d8d9ee8b5f88/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 0a9c636c6c271410d1f2357f34c404a36fb8efb2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jan 2024 11:20:40 -0800 Subject: [PATCH 0916/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 004d298f6933..d277bceb238c 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8d3c98626d84ffef1ec270659efd8b00c9262ca0/telegraf/1.29/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) From 41cc58aea74a5654b4b4eee8176defcaf50ad6c0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jan 2024 12:18:31 -0800 Subject: [PATCH 0917/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index 93178bf13540..49723a4aad5b 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.10`, `3.10.12`](https://github.com/arangodb/arangodb-docker/blob/dd330a106d7f246f28d95645cd21816852678c16/alpine/3.10.12/Dockerfile) +- [`3.10`, `3.10.13`](https://github.com/arangodb/arangodb-docker/blob/af118f06c76677531116ee7a263e8d3cca1d6d63/alpine/3.10.13/Dockerfile) - [`3.11`, `3.11.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5e80cd97d8ccedf2314fbee99e235894e0b46393/alpine/3.11.6/Dockerfile) # Quick reference (cont.) From 4a2997a2d03a6f1ceabe0ef909cafa30d90af7c2 Mon Sep 17 00:00:00 2001 From: John Moon Date: Wed, 31 Jan 2024 13:36:13 -0800 Subject: [PATCH 0918/2686] nginx: Update command to generate host config file (#2411) Currently, instructions to copy the default configuration from the nginx container to the host uses three commands. This can be done more efficiently with one command (assuming the presence of "cat" in the container which should be a safe). Update the instructions to use the single command. --- nginx/content.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nginx/content.md b/nginx/content.md index 805b97eae2d2..47b01a4a218f 100644 --- a/nginx/content.md +++ b/nginx/content.md @@ -42,9 +42,7 @@ You can mount your configuration file, or build a new image with it. If you wish to adapt the default configuration, use something like the following to get it from a running nginx container: ```console -$ docker run --name tmp-nginx-container -d %%IMAGE%% -$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf -$ docker rm -f tmp-nginx-container +$ docker run --rm --entrypoint=cat %%IMAGE%% /etc/nginx/nginx.conf > /host/path/nginx.conf ``` And then edit `/host/path/nginx.conf` in your host file system. From b000c3181c1046a67f11b8085a99179869de7e40 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jan 2024 14:21:16 -0800 Subject: [PATCH 0919/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++++++----------------------- haproxy/README.md | 4 +-- nginx/README.md | 4 +-- wordpress/README.md | 27 +++++++------------- 4 files changed, 42 insertions(+), 53 deletions(-) diff --git a/debian/README.md b/debian/README.md index 4cc6b4c1d012..6b3f69e8b665 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240110`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240110-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240110`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240110-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240110`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20240110-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/rc-buggy/Dockerfile) -- [`sid`, `sid-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/sid/Dockerfile) -- [`sid-slim`, `sid-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/sid/slim/Dockerfile) -- [`stable`, `stable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/stable/slim/Dockerfile) -- [`testing`, `testing-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240110`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240110-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06cf409e2ad900345bb77e7539bed71f910a92d4/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240130`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240130-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240130`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240130-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240130`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20240130-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/rc-buggy/Dockerfile) +- [`sid`, `sid-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/sid/Dockerfile) +- [`sid-slim`, `sid-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/sid/slim/Dockerfile) +- [`stable`, `stable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/slim/Dockerfile) +- [`testing`, `testing-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 54fad5b6695e..cca8e5bcd973 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.0-dev2`, `3.0-dev`, `3.0-dev2-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/Dockerfile) - [`3.0-dev2-alpine`, `3.0-dev-alpine`, `3.0-dev2-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/alpine/Dockerfile) -- [`2.9.3`, `2.9`, `latest`, `2.9.3-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/Dockerfile) -- [`2.9.3-alpine`, `2.9-alpine`, `alpine`, `2.9.3-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/6336b496c8634e994cc23261a20b493f08750e82/2.9/alpine/Dockerfile) +- [`2.9.4`, `2.9`, `latest`, `2.9.4-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/Dockerfile) +- [`2.9.4-alpine`, `2.9-alpine`, `alpine`, `2.9.4-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index 7fd642fa9238..2af6953aa957 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -98,9 +98,7 @@ You can mount your configuration file, or build a new image with it. If you wish to adapt the default configuration, use something like the following to get it from a running nginx container: ```console -$ docker run --name tmp-nginx-container -d nginx -$ docker cp tmp-nginx-container:/etc/nginx/nginx.conf /host/path/nginx.conf -$ docker rm -f tmp-nginx-container +$ docker run --rm --entrypoint=cat nginx /etc/nginx/nginx.conf > /host/path/nginx.conf ``` And then edit `/host/path/nginx.conf` in your host file system. diff --git a/wordpress/README.md b/wordpress/README.md index c9c37b6a75ae..dfd827665c91 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.2-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.2-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/apache/Dockerfile) -- [`6.4.2-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/fpm/Dockerfile) -- [`6.4.2-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.2-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.2`, `6.4`, `6`, `latest`, `6.4.2-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.2-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/apache/Dockerfile) -- [`6.4.2-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.2-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/fpm/Dockerfile) -- [`6.4.2-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.2-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.4.2-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.2-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/apache/Dockerfile) -- [`6.4.2-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/fpm/Dockerfile) -- [`6.4.2-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ac65dab91d64f611e4fa89b5e92903e163d24572/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.4.3-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.3-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/apache/Dockerfile) +- [`6.4.3-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/fpm/Dockerfile) +- [`6.4.3-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.3-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.3`, `6.4`, `6`, `latest`, `6.4.3-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.3-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/apache/Dockerfile) +- [`6.4.3-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.3-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/fpm/Dockerfile) +- [`6.4.3-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.3-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.3-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.3-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/apache/Dockerfile) +- [`6.4.3-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm/Dockerfile) +- [`6.4.3-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) - [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) - [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) -- [`beta-6.4.3-RC1-php8.1-apache`, `beta-6.4.3-php8.1-apache`, `beta-6.4-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.4.3-RC1-php8.1`, `beta-6.4.3-php8.1`, `beta-6.4-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/apache/Dockerfile) -- [`beta-6.4.3-RC1-php8.1-fpm`, `beta-6.4.3-php8.1-fpm`, `beta-6.4-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/fpm/Dockerfile) -- [`beta-6.4.3-RC1-php8.1-fpm-alpine`, `beta-6.4.3-php8.1-fpm-alpine`, `beta-6.4-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.4.3-RC1-apache`, `beta-6.4.3-apache`, `beta-6.4-apache`, `beta-6-apache`, `beta-apache`, `beta-6.4.3-RC1`, `beta-6.4.3`, `beta-6.4`, `beta-6`, `beta`, `beta-6.4.3-RC1-php8.2-apache`, `beta-6.4.3-php8.2-apache`, `beta-6.4-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.4.3-RC1-php8.2`, `beta-6.4.3-php8.2`, `beta-6.4-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/apache/Dockerfile) -- [`beta-6.4.3-RC1-fpm`, `beta-6.4.3-fpm`, `beta-6.4-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.4.3-RC1-php8.2-fpm`, `beta-6.4.3-php8.2-fpm`, `beta-6.4-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/fpm/Dockerfile) -- [`beta-6.4.3-RC1-fpm-alpine`, `beta-6.4.3-fpm-alpine`, `beta-6.4-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.4.3-RC1-php8.2-fpm-alpine`, `beta-6.4.3-php8.2-fpm-alpine`, `beta-6.4-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.4.3-RC1-php8.3-apache`, `beta-6.4.3-php8.3-apache`, `beta-6.4-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.4.3-RC1-php8.3`, `beta-6.4.3-php8.3`, `beta-6.4-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/apache/Dockerfile) -- [`beta-6.4.3-RC1-php8.3-fpm`, `beta-6.4.3-php8.3-fpm`, `beta-6.4-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/fpm/Dockerfile) -- [`beta-6.4.3-RC1-php8.3-fpm-alpine`, `beta-6.4.3-php8.3-fpm-alpine`, `beta-6.4-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/09cb6baef7c32215a2b921e39bca9e27c1425a3e/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From dad7ccbcd93011b44ddae16c0c7c58e51abb68f6 Mon Sep 17 00:00:00 2001 From: Vadim Yalovets Date: Thu, 1 Feb 2024 12:13:27 +0200 Subject: [PATCH 0920/2686] Adding telemetry --- percona/content.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/percona/content.md b/percona/content.md index 5a0c4387d36a..97dcb85058ae 100644 --- a/percona/content.md +++ b/percona/content.md @@ -138,6 +138,14 @@ $ docker run --name some-mysql -e MYSQL_ROOT_PASSWORD_FILE=/run/secrets/mysql-ro Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, `MYSQL_DATABASE`, `MYSQL_USER`, and `MYSQL_PASSWORD`. +## Telemetry + +Starting with Percona Server 8.0.35-27, telemetry will be enabled by default. If you decide not to send usage data to Percona, you can set the `PERCONA_TELEMETRY_DISABLE=1` environment variable. For example: + +```console +$ docker run --name some-mysql -e PERCONA_TELEMETRY_DISABLE=1 -d %%IMAGE%%:tag +``` + # Initializing a fresh instance When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. From c36fe01925fbb3bd409b060190b7d99be5107af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Rodri=CC=81guez?= Date: Thu, 25 Jan 2024 16:52:37 +0100 Subject: [PATCH 0921/2686] Update instructions for GeoNetwork 4 --- geonetwork/content.md | 140 +++++++++++++++++++++++++++++---- geonetwork/stack.yml | 113 ++++++++++++++++++++++++-- geonetwork/variant-postgres.md | 10 +-- 3 files changed, 234 insertions(+), 29 deletions(-) diff --git a/geonetwork/content.md b/geonetwork/content.md index 2da1202a0ea8..92bee224f9ac 100644 --- a/geonetwork/content.md +++ b/geonetwork/content.md @@ -12,50 +12,156 @@ The project is part of the Open Source Geospatial Foundation ( [OSGeo](http://ww %%LOGO%% -# How to use this image +## How to use this image -## Start geonetwork +GeoNetwork 4 uses an Elasticsearch server to store the index of the documents it manages so **it can't be run without configuring the URL of the Elasticsearch server**. -This command will start a debian-based container, running a Tomcat web server, with a geonetwork war deployed on the server: +This is a quick example of how to get GeoNetwork 4.4 Latest up and running for demo purposes. This configuration doesn't keep the data if containers are removed. ```console -$ docker run --name some-%%REPO%% -d %%IMAGE%% +docker pull elasticsearch:7.17.15 +docker pull %%IMAGE%%:4 + +docker network create gn-network + +docker run -d --name my-es-host --network gn-network -e "discovery.type=single-node" elasticsearch:7.17.15 +docker run --name %%REPO%%-host --network gn-network -e GN_CONFIG_PROPERTIES="-Des.host=my-es-host -Des.protocol=http -Des.port=9200 -Des.url=http://my-es-host:9200" -p 8080:8080 %%IMAGE%%:4 +``` + +For GeoNetwork 4.2 Stable: + +```console +docker pull elasticsearch:7.17.15 +docker pull %%IMAGE%%:4.2 + +docker network create gn-network + +docker run -d --name my-es-host --network gn-network -e "discovery.type=single-node" elasticsearch:7.17.15 +docker run --name %%REPO%%-host --network gn-network -e ES_HOST=my-es-host -e ES_PROTOCOL=http -e ES_PORT=9200 -p 8080:8080 %%IMAGE%%:4.2 +``` + +To be sure about what Elasticsearch version to use you can check the [GeoNetwork documentation](https://docs.geonetwork-opensource.org/4.4/install-guide/installing-index/) for your GN version or the `es.version` property in the [`pom.xml`](https://github.com/geonetwork/core-geonetwork/blob/main/pom.xml#L1528C17-L1528C24) file of the GeoNetwork release used. + +### Elasticsearch configuration + +#### Java properties (version 4.4.0 and newer) + +Since GeoNetwork 4.4.0 the configuration is done using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. Property names used for setting the Elasticsearh connection are: + +- `es.host`: *optional* (default `localhost`): The host name of the Elasticsearch server. +- `es.port` *optional* (default `9200`): The port where Elasticsearch server is listening to. +- `es.protocol` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. +- `es.url`: **mandatory if host, port or protocol aren't the default values** (default `http://localhost:9200`): Full URL of the Elasticsearch server. +- `es.index.records` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. +- `es.username` *optional (default empty): username used to connect to Elasticsearch. +- `es.password` *optional (default empty): password used to connect to Elasticsearch. +- `kb.url` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. + +For example, define this environment variable to pass these values to GeoNetwork: + +```yaml +services: + %%REPO%%: + image: %%IMAGE%%:4.4 + environment: + GN_CONFIG_PROPERTIES: >- + -Des.host=elasticsearch + -Des.protocol=http + -Des.port=9200 + -Des.url=http://elasticsearch:9200 + -Des.username=my_es_username + -Des.password=my_es_password + -Dkb.url=http://kibana:5601 ``` -## Publish port +#### Environment variables (version 4.2 and older) + +If you are using a GeoNetwork older than 4.4.0 it must be configured using these environment variables: + +- `ES_HOST` **mandatory**: The host name of the Elasticsearch server. +- `ES_PORT` *optional* (default `9200`): The port where Elasticsearch server is listening to. +- `ES_PROTOCOL` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. +- `ES_INDEX_RECORDS` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. +- `ES_USERNAME` *optional (default empty): username used to connect to Elasticsearch. +- `ES_PASSWORD` *optional (default empty): password used to connect to Elasticsearch. +- `KB_URL` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. + +### Database configuration + +By default GeoNetwork uses a local **H2 database** for demo use (this one is **not recommended for production**). The image contains JDBC drivers for PostgreSQL and MySQL. To configure the database connection use these environment variables: -Geonetwork listens on port `8080`. If you want to access the container at the host, **you must publish this port**. For instance, this, will redirect all the container traffic on port 8080, to the same port on the host: +- `GEONETWORK_DB_TYPE`: The type of database to use. Valid values are `postgres`, `postgres-postgis`, `mysql`. The image can be extended including other drivers and these other types could be used too: `db2`, `h2`, `oracle`, `sqlserver`. The JAR drivers for these other databases would need to be added to `/opt/geonetwork/WEB-INF/lib` mounting them as binds or extending the official image. +- `GEONETWORK_DB_HOST`: The database host name. +- `GEONETWORK_DB_PORT`: The database port. +- `GEONETWORK_DB_NAME`: The database name. +- `GEONETWORK_DB_USERNAME`: The username used to connect to the database. +- `GEONETWORK_DB_PASSWORD`: The password used to connect to the database. +- `GEONETWORK_DB_CONNECTION_PROPERTIES`: Additional properties to be added to the connection string, for example `search_path=test,public&ssl=true` will produce a JDBC connection string like `jdbc:postgresql://localhost:5432/postgres?search_path=test,public&ssl=true` + +### Start GeoNetwork + +This command will start a debian-based container, running a Tomcat (GN 3) or Jetty (GN 4) web server, with a GeoNetwork WAR deployed on the server: ```console -$ docker run --name some-%%REPO%% -d -p 8080:8080 %%IMAGE%% +docker run --name some-%%REPO%% -d %%IMAGE%% +``` + +### Publish port + +GeoNetwork listens on port `8080`. If you want to access the container at the host, **you must publish this port**. For instance, this, will redirect all the container traffic on port 8080, to the same port on the host: + +```console +docker run --name some-%%REPO%% -d -p 8080:8080 %%IMAGE%% ``` Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. Otherwise, replace `localhost` by the address of your docker machine. -## Set the data directory and H2 db file +### Set the data directory and H2 db file + +The data directory is the location on the file system where the catalog stores much of its custom configuration and uploaded files. It is also where it stores a number of support files, used for various purposes (e.g.: spatial index, thumbnails). The default variant also uses a local H2 database to store the metadata catalog itself. + +By default, GeoNetwork sets the data directory on `/opt/geonetwork/WEB-INF/data` and H2 database file to the Jetty dir `/var/lib/jetty/gn.h2.db` (since GN 4.0.0) or Tomcat `/usr/local/tomcat/gn.h2.db` (for GN 3), but you may override these values by injecting environment variables into the container: - `-e DATA_DIR=...` (defaults to `/opt/geonetwork/WEB-INF/data`) and `-e GEONETWORK_DB_NAME=...` (defaults to `gn` which sets up database `gn.h2.db` in tomcat bin dir `/usr/local/tomcat`). Note that setting the database location via `GEONETWORK_DB_NAME` only works from version 3.10.3 onwards. + +Since version 4.4.0 the data directory needs to be configued using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. For example: + +```console +docker run --name some-%%REPO%% -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn %%IMAGE%% +``` -The data directory is the location on the file system where the catalog stores much of its custom configuration and uploaded files. It is also where it stores a number of support files, used for various purposes (e.g.: Lucene index, spatial index, thumbnails). The default variant also uses a local H2 database to store the metadata catalog itself. +### Persisting data -By default, geonetwork sets the data directory on `/usr/local/tomcat/webapps/geonetwork/WEB-INF/data` and H2 database file to the tomcat bin dir `/usr/local/tomcat/gn.h2.db`, but you may override these values by injecting environment variables into the container: - `-e DATA_DIR=...` (defaults to `/usr/local/tomcat/webapps/geonetwork/WEB-INF/data`) and `-e GEONETWORK_DB_NAME=...` (defaults to `gn` which sets up database `gn.h2.db` in tomcat bin dir `/usr/local/tomcat`). Note that setting the database location via `GEONETWORK_DB_NAME` only works from version 3.10.3 onwards. +To set the data directory to `/catalogue-data/data` and H2 database file to `/catalogue-data/db/gn.h2.db` so they both persist through restarts: + +- GeoNetwork 4.2 and older + +```console +docker run --name some-%%REPO%% -d -p 8080:8080 -e DATA_DIR=/catalogue-data/data -e GEONETWORK_DB_NAME=/catalogue-data/db/gn %%IMAGE%%:3 +``` + +- Since GeoNetwork 4.4.0 + +```console +docker run --name some-%%REPO%% -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn %%IMAGE%% +``` -## Persisting data +If you want the data directory to live beyond restarts, or even destruction of the container, you can mount a directory from the docker engine's host into the container. - `-v /host/path:/path/to/data/directory`. For instance this, will mount the host directory `/host/%%REPO%%-docker` into `/catalogue-data` on the container: -To set the data directory to `/var/lib/geonetwork/data` and H2 database file to `/var/lib/geonetwork/db/gn.h2.db` so they both persist through restarts: +- GeoNetwork 4.2 and older ```console -$ docker run --name some-%%REPO%% -d -p 8080:8080 -e DATA_DIR=/var/lib/geonetwork/data -e GEONETWORK_DB_NAME=/var/lib/geonetwork/db/gn %%IMAGE%% +docker run --name some-%%REPO%% -d -p 8080:8080 -e DATA_DIR=/catalogue-data/data -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/%%REPO%%-docker:/catalogue-data %%IMAGE%%:3 ``` -If you want the data directory to live beyond restarts, or even destruction of the container, you can mount a directory from the docker engine's host into the container. - `-v /host/path:/path/to/data/directory`. For instance this, will mount the host directory `/host/geonetwork-docker` into `/var/lib/geonetwork` on the container: +- GeoNetwork 4.4.0 and newer ```console -$ docker run --name some-%%REPO%% -d -p 8080:8080 -e DATA_DIR=/var/lib/geonetwork/data -e GEONETWORK_DB_NAME=/var/lib/geonetwork/db/gn -v /host/geonetwork-docker:/var/lib/geonetwork %%IMAGE%% +docker run --name some-%%REPO%% -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/%%REPO%%-docker:/catalogue-data %%IMAGE%% ``` -## %%STACK%% +### %%STACK%% Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). -## Default credentials +### Default credentials After installation a default user with name `admin` and password `admin` is created. Use this credentials to start with. It is recommended to update the default password after installation. diff --git a/geonetwork/stack.yml b/geonetwork/stack.yml index 0be0b317b9f4..6f05a5bbea9b 100644 --- a/geonetwork/stack.yml +++ b/geonetwork/stack.yml @@ -5,18 +5,117 @@ # Default user: admin # Default password: admin -version: '3.1' -services: +version: '3.8' +volumes: + geonetwork: + esdata: + pgdata: + pglog: + +services: geonetwork: - image: geonetwork + image: geonetwork:4.4 + healthcheck: + test: curl http://localhost:8080/ + interval: 5s + timeout: 5s + retries: 30 restart: always + volumes: + - geonetwork:/catalogue-data + depends_on: + database: + condition: service_healthy ports: - 8080:8080 environment: - DATA_DIR: /var/lib/geonetwork_data + WEBAPP_CONTEXT_PATH: /geonetwork + DATA_DIR: /catalogue-data + TZ: Europe/Amsterdam + + JAVA_OPTS: >- + --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED + -Djava.security.egd=file:/dev/./urandom -Djava.awt.headless=true + -Xms512M -Xss512M -Xmx2G -XX:+UseConcMarkSweepGC + -Djetty.httpConfig.requestHeaderSize=32768 + -Dorg.eclipse.jetty.server.Request.maxFormContentSize=500000 + -Dorg.eclipse.jetty.server.Request.maxFormKeys=4000 + # For remote debug + # -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 + + GN_CONFIG_PROPERTIES: >- + -Dgeonetwork.dir=/catalogue-data + -Dgeonetwork.formatter.dir=/catalogue-data/data/formatter + -Dgeonetwork.schema.dir=/opt/geonetwork/WEB-INF/data/config/schema_plugins + -Dgeonetwork.indexConfig.dir=/opt/geonetwork/WEB-INF/data/config/index + -Dgeonetwork.schemapublication.dir=/opt/geonetwork/WEB-INF/data/resources/schemapublication + -Dgeonetwork.htmlcache.dir=/opt/geonetwork/WEB-INF/data/resources/htmlcache + -Des.host=elasticsearch + -Des.protocol=http + -Des.port=9200 + -Des.url=http://elasticsearch:9200 + -Des.username= + -Des.password= + -Dgeonetwork.ESFeaturesProxy.targetUri=http://elasticsearch:9200/gn-features/{_} + -Dgeonetwork.HttpDashboardProxy.targetUri=http://kibana:5601 + + GEONETWORK_DB_TYPE: postgres-postgis + GEONETWORK_DB_HOST: database + GEONETWORK_DB_PORT: 5432 + GEONETWORK_DB_NAME: geonetwork + GEONETWORK_DB_USERNAME: geonetwork + GEONETWORK_DB_PASSWORD: geonetwork + + database: + image: postgis/postgis:16-3.4 + environment: + POSTGRES_USER: geonetwork + POSTGRES_PASSWORD: geonetwork + POSTGRES_DB: geonetwork + command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, + -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] + healthcheck: + test: [CMD-SHELL, pg_isready -U postgres] + interval: 5s + timeout: 5s + retries: 5 volumes: - - geonetwork:/var/lib/geonetwork_data + - pgdata:/var/lib/postgresql/data + - pglog:/var/log/postgresql -volumes: - geonetwork: + elasticsearch: + image: elasticsearch:7.17.15 + ports: + - 9200:9200 + ulimits: + memlock: + soft: -1 + hard: -1 + nofile: + soft: 65536 + hard: 65536 + healthcheck: + test: curl -s http://localhost:9200 >/dev/null || exit 1 + interval: 10s + timeout: 2s + retries: 10 + start_period: 2m + environment: + ES_JAVA_OPTS: -Xms1G -Xmx1G + discovery.type: single-node + volumes: + - esdata:/usr/share/elasticsearch/data + + kibana: + image: kibana:7.17.15 + environment: + SERVER_NAME: kibana + ELASTICSEARCH_URL: http://elasticsearch:9200/ + SERVER_BASEPATH: /geonetwork/dashboards + SERVER_REWRITEBASEPATH: 'false' + KIBANA_INDEX: .dashboards + XPACK_MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED: 'true' + depends_on: + elasticsearch: + condition: service_healthy diff --git a/geonetwork/variant-postgres.md b/geonetwork/variant-postgres.md index c98907ff818d..670977649573 100644 --- a/geonetwork/variant-postgres.md +++ b/geonetwork/variant-postgres.md @@ -1,4 +1,4 @@ -## `%%REPO%%:postgres` +## `%%REPO%%:postgres` (Only for GeoNetwork 3 series) This image gives support for using [PostgreSQL](https://www.postgresql.org/) as database engine for geonetwork. When you start the container, a database is created, and it is populated by geonetwork, once it starts. @@ -15,25 +15,25 @@ If you want to connect to a postgres server, you need to pass an extra environme If you want to connect to an **external database server**, you can use either the IP address or the DNS as `POSTGRES_DB_HOST`. For instance, if the server is running on `mydns.net`, on port `5434`, the username is `postgres` and the password is `mysecretpassword`: ```console -$ docker run --name geonetwork -d -p 8080:8080 -e POSTGRES_DB_HOST=mydns.net -e POSTGRES_DB_PORT=5434 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres +docker run --name geonetwork -d -p 8080:8080 -e POSTGRES_DB_HOST=mydns.net -e POSTGRES_DB_PORT=5434 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres ``` If are want to **run postgres on a container**, you can use the container name as `POSTGRES_DB_HOST`: just make sure that containers can discover each other, by **running them in the same user-defined network**. For instance, you can create a bridge network: ```console -$ docker network create --driver bridge mynet +docker network create --driver bridge mynet ``` Then if you want to run the official image of postgres, using `some-postgres` as container name, you could launch it like this: ```console -$ docker run --name some-postgres --network=mynet -d postgres +docker run --name some-postgres --network=mynet -d postgres ``` And then you could launch geonetwork, making sure you join the same network, and setting the required environment variables, including the `POSTGRES_DB_HOST`: ```console -$ docker run --name geonetwork -d -p 8080:8080 --network=mynet -e POSTGRES_DB_HOST=some-postgres -e POSTGRES_DB_PORT=5432 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres +docker run --name geonetwork -d -p 8080:8080 --network=mynet -e POSTGRES_DB_HOST=some-postgres -e POSTGRES_DB_PORT=5432 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres ``` #### Configuration environment variables From 9cd16c4027cfd89aa7f33e775d72c94cb284a384 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Feb 2024 10:09:46 -0800 Subject: [PATCH 0922/2686] Run update.sh --- dart/README.md | 4 ++-- docker/README.md | 36 ++++++++++++++++++------------------ percona/README.md | 10 +++++++++- rabbitmq/README.md | 20 ++++++++++---------- swipl/README.md | 4 ++-- 5 files changed, 41 insertions(+), 33 deletions(-) diff --git a/dart/README.md b/dart/README.md index cef1122d6c15..65c9d4c6b773 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.5-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.5`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c24fcb7f76f0cb8a7a62432f4f8439f809a46d7d/stable/bookworm/Dockerfile) -- [`3.3.0-279.1.beta-sdk`, `beta-sdk`, `3.3.0-279.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c24fcb7f76f0cb8a7a62432f4f8439f809a46d7d/beta/bookworm/Dockerfile) +- [`3.2.6-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.6`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/56883e19787d560ee38bb7b6ec5102259b99a0ea/stable/bookworm/Dockerfile) +- [`3.3.0-279.3.beta-sdk`, `beta-sdk`, `3.3.0-279.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/56883e19787d560ee38bb7b6ec5102259b99a0ea/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index f9fc6bef4a3a..7174bb5e7f31 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.1-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/cli/Dockerfile) -- [`25.0.1-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.1-dind-alpine3.19`, `25.0.1`, `25.0`, `25`, `latest`, `25.0.1-alpine3.19`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind/Dockerfile) -- [`25.0.1-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d470c3a52f360272daa549c03abc327a40337846/25/dind-rootless/Dockerfile) -- [`25.0.1-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.1-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.1-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.8-cli`, `24.0-cli`, `24-cli`, `24.0.8-cli-alpine3.19`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/cli/Dockerfile) -- [`24.0.8-dind`, `24.0-dind`, `24-dind`, `24.0.8-dind-alpine3.19`, `24.0.8`, `24.0`, `24`, `24.0.8-alpine3.19`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind/Dockerfile) -- [`24.0.8-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/1e52612a3093190411fbaed695e517dae1c6ff33/24/dind-rootless/Dockerfile) -- [`24.0.8-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.8-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.8-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-1809/Dockerfile) +- [`25.0.2-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/cli/Dockerfile) +- [`25.0.2-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.2-dind-alpine3.19`, `25.0.2`, `25.0`, `25`, `latest`, `25.0.2-alpine3.19`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/dind/Dockerfile) +- [`25.0.2-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/dind-rootless/Dockerfile) +- [`25.0.2-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) +- [`25.0.2-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.2-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/cli/Dockerfile) +- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind/Dockerfile) +- [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) +- [`24.0.9-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.1-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b4f1022d31509f76720dd0d89120a9518d827f65/25/windows/windowsservercore-1809/Dockerfile) -- `24.0.8-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.8-windowsservercore-1809`](https://github.com/docker-library/docker/blob/569aff1d5298314dced1f4292433985d5807b43a/24/windows/windowsservercore-1809/Dockerfile) +- `25.0.2-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-1809/Dockerfile) +- `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 868e270a9bfc..f427671ba48e 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.34-26-centos`, `8.0-centos`, `8-centos`, `8.0.34-26`, `8.0`, `8`, `ps-8.0.34-26`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/565f49b8be3a1efa056fde70e10d638ad159516a/percona-server-8.0/Dockerfile) +- [`8.0.35-27-centos`, `8.0-centos`, `8-centos`, `8.0.35-27`, `8.0`, `8`, `ps-8.0.35-27`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/064dfe8395cc2735a7dc81201f9abc786323ea26/percona-server-8.0/Dockerfile) - [`5.7.44-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.44`, `5.7`, `5`, `ps-5.7.44`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/b89efa5f100edacc0ef660cef37975acfaf67326/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) @@ -216,6 +216,14 @@ $ docker run --name some-mysql -e MYSQL_ROOT_PASSWORD_FILE=/run/secrets/mysql-ro Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, `MYSQL_DATABASE`, `MYSQL_USER`, and `MYSQL_PASSWORD`. +## Telemetry + +Starting with Percona Server 8.0.35-27, telemetry will be enabled by default. If you decide not to send usage data to Percona, you can set the `PERCONA_TELEMETRY_DISABLE=1` environment variable. For example: + +```console +$ docker run --name some-mysql -e PERCONA_TELEMETRY_DISABLE=1 -d percona:tag +``` + # Initializing a fresh instance When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `percona` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. diff --git a/rabbitmq/README.md b/rabbitmq/README.md index d25fc3b641d4..b1b4c87e2538 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/38dfee76aca22741e236c2496894c0c197fca018/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/d5248649e2329a4890b0aedde00fef57b0af9b79/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-rc.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/38dfee76aca22741e236c2496894c0c197fca018/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d5248649e2329a4890b0aedde00fef57b0af9b79/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/89b84c8bf2ac77544873b62be4cde38b95bf04d7/3.12/ubuntu/Dockerfile) +- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f8631e0a55a783b88e68386e6dfa8eda0b09a195/3.12/ubuntu/Dockerfile) - [`3.12.12-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/89b84c8bf2ac77544873b62be4cde38b95bf04d7/3.12/alpine/Dockerfile) +- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f8631e0a55a783b88e68386e6dfa8eda0b09a195/3.12/alpine/Dockerfile) - [`3.12.12-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/ubuntu/Dockerfile) +- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/f70c213395deb1c5d47b6e5b326a4b90f7269f0c/3.11/ubuntu/Dockerfile) - [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/a5e4816fd6c970e7deb407bb5014378ada47c830/3.11/alpine/Dockerfile) +- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/f70c213395deb1c5d47b6e5b326a4b90f7269f0c/3.11/alpine/Dockerfile) - [`3.11.28-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/618b50698389a909a4e8be3695ca3e4c6bd4798c/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/a684a9201f2cb3a42ac5451d5d694cc26ef26c0e/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/618b50698389a909a4e8be3695ca3e4c6bd4798c/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/0adc2a913923b76247388e4eea8e77ef9bea14d6/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/b7a458aced8e3765e9608bbe087b0972642fbeb9/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/0adc2a913923b76247388e4eea8e77ef9bea14d6/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/b7a458aced8e3765e9608bbe087b0972642fbeb9/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 3300f26addc3..265d93868138 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.1.22`](https://github.com/SWI-Prolog/docker-swipl/blob/39317e85c5a010be939ddf3537af2a320c15d5d5/9.1.22/bookworm/Dockerfile) -- [`stable`, `9.0.4`](https://github.com/SWI-Prolog/docker-swipl/blob/39317e85c5a010be939ddf3537af2a320c15d5d5/9.0.4/bullseye/Dockerfile) +- [`latest`, `9.3.0`](https://github.com/SWI-Prolog/docker-swipl/blob/936bb0ae8e9735e1225b5bbb819dcd2c1d6aca34/9.3.0/bookworm/Dockerfile) +- [`stable`, `9.2.0`](https://github.com/SWI-Prolog/docker-swipl/blob/936bb0ae8e9735e1225b5bbb819dcd2c1d6aca34/9.2.0/bookworm/Dockerfile) # Quick reference (cont.) From 9ef4beade03992f04cb875eb70bad9485626536a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Feb 2024 11:20:37 -0800 Subject: [PATCH 0923/2686] Run update.sh --- geonetwork/README.md | 265 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 235 insertions(+), 30 deletions(-) diff --git a/geonetwork/README.md b/geonetwork/README.md index c2c14f051358..cbd5163adb13 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -62,47 +62,153 @@ The project is part of the Open Source Geospatial Foundation ( [OSGeo](http://ww ![logo](https://raw.githubusercontent.com/docker-library/docs/6a537ddd2def65eaaa31cbadbaa5303f2dc82fe3/geonetwork/logo.png) -# How to use this image +## How to use this image -## Start geonetwork +GeoNetwork 4 uses an Elasticsearch server to store the index of the documents it manages so **it can't be run without configuring the URL of the Elasticsearch server**. -This command will start a debian-based container, running a Tomcat web server, with a geonetwork war deployed on the server: +This is a quick example of how to get GeoNetwork 4.4 Latest up and running for demo purposes. This configuration doesn't keep the data if containers are removed. ```console -$ docker run --name some-geonetwork -d geonetwork +docker pull elasticsearch:7.17.15 +docker pull geonetwork:4 + +docker network create gn-network + +docker run -d --name my-es-host --network gn-network -e "discovery.type=single-node" elasticsearch:7.17.15 +docker run --name geonetwork-host --network gn-network -e GN_CONFIG_PROPERTIES="-Des.host=my-es-host -Des.protocol=http -Des.port=9200 -Des.url=http://my-es-host:9200" -p 8080:8080 geonetwork:4 +``` + +For GeoNetwork 4.2 Stable: + +```console +docker pull elasticsearch:7.17.15 +docker pull geonetwork:4.2 + +docker network create gn-network + +docker run -d --name my-es-host --network gn-network -e "discovery.type=single-node" elasticsearch:7.17.15 +docker run --name geonetwork-host --network gn-network -e ES_HOST=my-es-host -e ES_PROTOCOL=http -e ES_PORT=9200 -p 8080:8080 geonetwork:4.2 +``` + +To be sure about what Elasticsearch version to use you can check the [GeoNetwork documentation](https://docs.geonetwork-opensource.org/4.4/install-guide/installing-index/) for your GN version or the `es.version` property in the [`pom.xml`](https://github.com/geonetwork/core-geonetwork/blob/main/pom.xml#L1528C17-L1528C24) file of the GeoNetwork release used. + +### Elasticsearch configuration + +#### Java properties (version 4.4.0 and newer) + +Since GeoNetwork 4.4.0 the configuration is done using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. Property names used for setting the Elasticsearh connection are: + +- `es.host`: *optional* (default `localhost`): The host name of the Elasticsearch server. +- `es.port` *optional* (default `9200`): The port where Elasticsearch server is listening to. +- `es.protocol` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. +- `es.url`: **mandatory if host, port or protocol aren't the default values** (default `http://localhost:9200`): Full URL of the Elasticsearch server. +- `es.index.records` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. +- `es.username` *optional (default empty): username used to connect to Elasticsearch. +- `es.password` *optional (default empty): password used to connect to Elasticsearch. +- `kb.url` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. + +For example, define this environment variable to pass these values to GeoNetwork: + +```yaml +services: + geonetwork: + image: geonetwork:4.4 + environment: + GN_CONFIG_PROPERTIES: >- + -Des.host=elasticsearch + -Des.protocol=http + -Des.port=9200 + -Des.url=http://elasticsearch:9200 + -Des.username=my_es_username + -Des.password=my_es_password + -Dkb.url=http://kibana:5601 ``` -## Publish port +#### Environment variables (version 4.2 and older) + +If you are using a GeoNetwork older than 4.4.0 it must be configured using these environment variables: + +- `ES_HOST` **mandatory**: The host name of the Elasticsearch server. +- `ES_PORT` *optional* (default `9200`): The port where Elasticsearch server is listening to. +- `ES_PROTOCOL` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. +- `ES_INDEX_RECORDS` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. +- `ES_USERNAME` *optional (default empty): username used to connect to Elasticsearch. +- `ES_PASSWORD` *optional (default empty): password used to connect to Elasticsearch. +- `KB_URL` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. + +### Database configuration -Geonetwork listens on port `8080`. If you want to access the container at the host, **you must publish this port**. For instance, this, will redirect all the container traffic on port 8080, to the same port on the host: +By default GeoNetwork uses a local **H2 database** for demo use (this one is **not recommended for production**). The image contains JDBC drivers for PostgreSQL and MySQL. To configure the database connection use these environment variables: + +- `GEONETWORK_DB_TYPE`: The type of database to use. Valid values are `postgres`, `postgres-postgis`, `mysql`. The image can be extended including other drivers and these other types could be used too: `db2`, `h2`, `oracle`, `sqlserver`. The JAR drivers for these other databases would need to be added to `/opt/geonetwork/WEB-INF/lib` mounting them as binds or extending the official image. +- `GEONETWORK_DB_HOST`: The database host name. +- `GEONETWORK_DB_PORT`: The database port. +- `GEONETWORK_DB_NAME`: The database name. +- `GEONETWORK_DB_USERNAME`: The username used to connect to the database. +- `GEONETWORK_DB_PASSWORD`: The password used to connect to the database. +- `GEONETWORK_DB_CONNECTION_PROPERTIES`: Additional properties to be added to the connection string, for example `search_path=test,public&ssl=true` will produce a JDBC connection string like `jdbc:postgresql://localhost:5432/postgres?search_path=test,public&ssl=true` + +### Start GeoNetwork + +This command will start a debian-based container, running a Tomcat (GN 3) or Jetty (GN 4) web server, with a GeoNetwork WAR deployed on the server: ```console -$ docker run --name some-geonetwork -d -p 8080:8080 geonetwork +docker run --name some-geonetwork -d geonetwork +``` + +### Publish port + +GeoNetwork listens on port `8080`. If you want to access the container at the host, **you must publish this port**. For instance, this, will redirect all the container traffic on port 8080, to the same port on the host: + +```console +docker run --name some-geonetwork -d -p 8080:8080 geonetwork ``` Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. Otherwise, replace `localhost` by the address of your docker machine. -## Set the data directory and H2 db file +### Set the data directory and H2 db file + +The data directory is the location on the file system where the catalog stores much of its custom configuration and uploaded files. It is also where it stores a number of support files, used for various purposes (e.g.: spatial index, thumbnails). The default variant also uses a local H2 database to store the metadata catalog itself. + +By default, GeoNetwork sets the data directory on `/opt/geonetwork/WEB-INF/data` and H2 database file to the Jetty dir `/var/lib/jetty/gn.h2.db` (since GN 4.0.0) or Tomcat `/usr/local/tomcat/gn.h2.db` (for GN 3), but you may override these values by injecting environment variables into the container: - `-e DATA_DIR=...` (defaults to `/opt/geonetwork/WEB-INF/data`) and `-e GEONETWORK_DB_NAME=...` (defaults to `gn` which sets up database `gn.h2.db` in tomcat bin dir `/usr/local/tomcat`). Note that setting the database location via `GEONETWORK_DB_NAME` only works from version 3.10.3 onwards. + +Since version 4.4.0 the data directory needs to be configued using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. For example: + +```console +docker run --name some-geonetwork -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn geonetwork +``` + +### Persisting data -The data directory is the location on the file system where the catalog stores much of its custom configuration and uploaded files. It is also where it stores a number of support files, used for various purposes (e.g.: Lucene index, spatial index, thumbnails). The default variant also uses a local H2 database to store the metadata catalog itself. +To set the data directory to `/catalogue-data/data` and H2 database file to `/catalogue-data/db/gn.h2.db` so they both persist through restarts: -By default, geonetwork sets the data directory on `/usr/local/tomcat/webapps/geonetwork/WEB-INF/data` and H2 database file to the tomcat bin dir `/usr/local/tomcat/gn.h2.db`, but you may override these values by injecting environment variables into the container: - `-e DATA_DIR=...` (defaults to `/usr/local/tomcat/webapps/geonetwork/WEB-INF/data`) and `-e GEONETWORK_DB_NAME=...` (defaults to `gn` which sets up database `gn.h2.db` in tomcat bin dir `/usr/local/tomcat`). Note that setting the database location via `GEONETWORK_DB_NAME` only works from version 3.10.3 onwards. +- GeoNetwork 4.2 and older + +```console +docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/catalogue-data/data -e GEONETWORK_DB_NAME=/catalogue-data/db/gn geonetwork:3 +``` + +- Since GeoNetwork 4.4.0 + +```console +docker run --name some-geonetwork -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn geonetwork +``` -## Persisting data +If you want the data directory to live beyond restarts, or even destruction of the container, you can mount a directory from the docker engine's host into the container. - `-v /host/path:/path/to/data/directory`. For instance this, will mount the host directory `/host/geonetwork-docker` into `/catalogue-data` on the container: -To set the data directory to `/var/lib/geonetwork/data` and H2 database file to `/var/lib/geonetwork/db/gn.h2.db` so they both persist through restarts: +- GeoNetwork 4.2 and older ```console -$ docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/var/lib/geonetwork/data -e GEONETWORK_DB_NAME=/var/lib/geonetwork/db/gn geonetwork +docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/catalogue-data/data -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/geonetwork-docker:/catalogue-data geonetwork:3 ``` -If you want the data directory to live beyond restarts, or even destruction of the container, you can mount a directory from the docker engine's host into the container. - `-v /host/path:/path/to/data/directory`. For instance this, will mount the host directory `/host/geonetwork-docker` into `/var/lib/geonetwork` on the container: +- GeoNetwork 4.4.0 and newer ```console -$ docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/var/lib/geonetwork/data -e GEONETWORK_DB_NAME=/var/lib/geonetwork/db/gn -v /host/geonetwork-docker:/var/lib/geonetwork geonetwork +docker run --name some-geonetwork -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/geonetwork-docker:/catalogue-data geonetwork ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +### ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) Example `docker-compose.yml` for `geonetwork`: @@ -114,28 +220,127 @@ Example `docker-compose.yml` for `geonetwork`: # Default user: admin # Default password: admin -version: '3.1' -services: +version: '3.8' +volumes: geonetwork: - image: geonetwork + esdata: + pgdata: + pglog: + +services: + geonetwork: + image: geonetwork:4.4 + healthcheck: + test: curl http://localhost:8080/ + interval: 5s + timeout: 5s + retries: 30 restart: always + volumes: + - geonetwork:/catalogue-data + depends_on: + database: + condition: service_healthy ports: - 8080:8080 environment: - DATA_DIR: /var/lib/geonetwork_data + WEBAPP_CONTEXT_PATH: /geonetwork + DATA_DIR: /catalogue-data + TZ: Europe/Amsterdam + + JAVA_OPTS: >- + --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED + -Djava.security.egd=file:/dev/./urandom -Djava.awt.headless=true + -Xms512M -Xss512M -Xmx2G -XX:+UseConcMarkSweepGC + -Djetty.httpConfig.requestHeaderSize=32768 + -Dorg.eclipse.jetty.server.Request.maxFormContentSize=500000 + -Dorg.eclipse.jetty.server.Request.maxFormKeys=4000 + # For remote debug + # -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 + + GN_CONFIG_PROPERTIES: >- + -Dgeonetwork.dir=/catalogue-data + -Dgeonetwork.formatter.dir=/catalogue-data/data/formatter + -Dgeonetwork.schema.dir=/opt/geonetwork/WEB-INF/data/config/schema_plugins + -Dgeonetwork.indexConfig.dir=/opt/geonetwork/WEB-INF/data/config/index + -Dgeonetwork.schemapublication.dir=/opt/geonetwork/WEB-INF/data/resources/schemapublication + -Dgeonetwork.htmlcache.dir=/opt/geonetwork/WEB-INF/data/resources/htmlcache + -Des.host=elasticsearch + -Des.protocol=http + -Des.port=9200 + -Des.url=http://elasticsearch:9200 + -Des.username= + -Des.password= + -Dgeonetwork.ESFeaturesProxy.targetUri=http://elasticsearch:9200/gn-features/{_} + -Dgeonetwork.HttpDashboardProxy.targetUri=http://kibana:5601 + + GEONETWORK_DB_TYPE: postgres-postgis + GEONETWORK_DB_HOST: database + GEONETWORK_DB_PORT: 5432 + GEONETWORK_DB_NAME: geonetwork + GEONETWORK_DB_USERNAME: geonetwork + GEONETWORK_DB_PASSWORD: geonetwork + + database: + image: postgis/postgis:16-3.4 + environment: + POSTGRES_USER: geonetwork + POSTGRES_PASSWORD: geonetwork + POSTGRES_DB: geonetwork + command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, + -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] + healthcheck: + test: [CMD-SHELL, pg_isready -U postgres] + interval: 5s + timeout: 5s + retries: 5 volumes: - - geonetwork:/var/lib/geonetwork_data + - pgdata:/var/lib/postgresql/data + - pglog:/var/log/postgresql -volumes: - geonetwork: + elasticsearch: + image: elasticsearch:7.17.15 + ports: + - 9200:9200 + ulimits: + memlock: + soft: -1 + hard: -1 + nofile: + soft: 65536 + hard: 65536 + healthcheck: + test: curl -s http://localhost:9200 >/dev/null || exit 1 + interval: 10s + timeout: 2s + retries: 10 + start_period: 2m + environment: + ES_JAVA_OPTS: -Xms1G -Xmx1G + discovery.type: single-node + volumes: + - esdata:/usr/share/elasticsearch/data + + kibana: + image: kibana:7.17.15 + environment: + SERVER_NAME: kibana + ELASTICSEARCH_URL: http://elasticsearch:9200/ + SERVER_BASEPATH: /geonetwork/dashboards + SERVER_REWRITEBASEPATH: 'false' + KIBANA_INDEX: .dashboards + XPACK_MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED: 'true' + depends_on: + elasticsearch: + condition: service_healthy ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/geonetwork/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/c36fe01925fbb3bd409b060190b7d99be5107af0/geonetwork/stack.yml) Run `docker stack deploy -c stack.yml geonetwork` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). -## Default credentials +### Default credentials After installation a default user with name `admin` and password `admin` is created. Use this credentials to start with. It is recommended to update the default password after installation. @@ -149,7 +354,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob By default, an H2 database is configured and created when the application first starts. If you are interested in a database engine other than H2, please have a look at other image variants. -## `geonetwork:postgres` +## `geonetwork:postgres` (Only for GeoNetwork 3 series) This image gives support for using [PostgreSQL](https://www.postgresql.org/) as database engine for geonetwork. When you start the container, a database is created, and it is populated by geonetwork, once it starts. @@ -166,25 +371,25 @@ If you want to connect to a postgres server, you need to pass an extra environme If you want to connect to an **external database server**, you can use either the IP address or the DNS as `POSTGRES_DB_HOST`. For instance, if the server is running on `mydns.net`, on port `5434`, the username is `postgres` and the password is `mysecretpassword`: ```console -$ docker run --name geonetwork -d -p 8080:8080 -e POSTGRES_DB_HOST=mydns.net -e POSTGRES_DB_PORT=5434 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres +docker run --name geonetwork -d -p 8080:8080 -e POSTGRES_DB_HOST=mydns.net -e POSTGRES_DB_PORT=5434 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres ``` If are want to **run postgres on a container**, you can use the container name as `POSTGRES_DB_HOST`: just make sure that containers can discover each other, by **running them in the same user-defined network**. For instance, you can create a bridge network: ```console -$ docker network create --driver bridge mynet +docker network create --driver bridge mynet ``` Then if you want to run the official image of postgres, using `some-postgres` as container name, you could launch it like this: ```console -$ docker run --name some-postgres --network=mynet -d postgres +docker run --name some-postgres --network=mynet -d postgres ``` And then you could launch geonetwork, making sure you join the same network, and setting the required environment variables, including the `POSTGRES_DB_HOST`: ```console -$ docker run --name geonetwork -d -p 8080:8080 --network=mynet -e POSTGRES_DB_HOST=some-postgres -e POSTGRES_DB_PORT=5432 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres +docker run --name geonetwork -d -p 8080:8080 --network=mynet -e POSTGRES_DB_HOST=some-postgres -e POSTGRES_DB_PORT=5432 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres ``` #### Configuration environment variables From c888e9b485897a554c9c69e1ac3f9fece45457ed Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Feb 2024 14:09:47 -0800 Subject: [PATCH 0924/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index cdae5d321e1e..89a213b28c5b 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.11-apache`, `26.0-apache`, `26-apache`, `26.0.11`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/apache/Dockerfile) -- [`26.0.11-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/fpm/Dockerfile) -- [`26.0.11-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/26/fpm-alpine/Dockerfile) -- [`27.1.6-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.6`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/apache/Dockerfile) -- [`27.1.6-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/fpm/Dockerfile) -- [`27.1.6-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/75ae60a43a9f0d3dd61e3410e68b7186365652e9/27/fpm-alpine/Dockerfile) -- [`28.0.1-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.1`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/apache/Dockerfile) -- [`28.0.1-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm/Dockerfile) -- [`28.0.1-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/8afd97014cc3445e888a165f8c2d16af7ed036aa/28/fpm-alpine/Dockerfile) +- [`26.0.11-apache`, `26.0-apache`, `26-apache`, `26.0.11`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/apache/Dockerfile) +- [`26.0.11-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/fpm/Dockerfile) +- [`26.0.11-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/fpm-alpine/Dockerfile) +- [`27.1.6-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.6`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/apache/Dockerfile) +- [`27.1.6-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/fpm/Dockerfile) +- [`27.1.6-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/fpm-alpine/Dockerfile) +- [`28.0.2-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.2`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/apache/Dockerfile) +- [`28.0.2-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/fpm/Dockerfile) +- [`28.0.2-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/fpm-alpine/Dockerfile) # Quick reference (cont.) From ea16859f22817c2a3b8f09c656c31a44d5757c01 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Feb 2024 15:09:59 -0800 Subject: [PATCH 0925/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- couchbase/README.md | 6 ++---- ubuntu/README.md | 9 ++++----- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index f036ba694fa1..0f23d45dbda1 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240117.0`](https://github.com/amazonlinux/container-images/blob/68338ee8e18438ed0e528eeec4eae69a1596333d/Dockerfile) -- [`2`, `2.0.20240109.0`](https://github.com/amazonlinux/container-images/blob/2e6be1003ccf1fb8210e2b67df79eb7cf67bdf99/Dockerfile) +- [`2023`, `latest`, `2023.3.20240131.0`](https://github.com/amazonlinux/container-images/blob/71947dead94d539979e17a0c0584f7302946d528/Dockerfile) +- [`2`, `2.0.20240131.0`](https://github.com/amazonlinux/container-images/blob/854ad2b4d01eb36161663ac1e765ac22f2be21e9/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/couchbase/README.md b/couchbase/README.md index a95229b0d2d4..db8233cf3ede 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,14 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.3`, `enterprise-7.2.3`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/3a446520433f63e3d270f01063b14cb6b6ade12a/enterprise/couchbase-server/7.2.3/Dockerfile) -- [`community-7.2.2`, `community`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/community/couchbase-server/7.2.2/Dockerfile) +- [`7.2.4`, `enterprise-7.2.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/24bae6aab6520dc97c362b56150db9658d041873/enterprise/couchbase-server/7.2.4/Dockerfile) +- [`community-7.2.4`, `community`](https://github.com/couchbase/docker/blob/9fc1cf481a8fe8e78d7539cee3a25cdbaa7b5e1e/community/couchbase-server/7.2.4/Dockerfile) - [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/3b28b68159ef2e9007a1493c17e768fbb4837358/enterprise/couchbase-server/7.1.6/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) - [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) -- [`6.6.6`, `enterprise-6.6.6`](https://github.com/couchbase/docker/blob/8398e79a15da9eef613d0a781ec136a458ea128c/enterprise/couchbase-server/6.6.6/Dockerfile) -- [`community-6.6.0`](https://github.com/couchbase/docker/blob/aad4aa9714578906c0c993121654eaeba0bd907c/community/couchbase-server/6.6.0/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 235b2dcbf782..49de07540fbf 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20231211`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20231211-1c7098d1&id=1c7098d1f72badd8cc2d425da3e2aacbe394fb7d) -- [`22.04`, `jammy-20240111`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240111-e6e3490a&id=e6e3490ad3f524ccaa072edafe525f8ca8ac5490) -- [`23.04`, `lunar-20231128`, `lunar`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-lunar-amd64-20231128-1e15482a&id=1e15482adc1232275aec0e3566d81c6dd033ab2f) -- [`23.10`, `mantic-20231128`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20231128-f8f436b9&id=f8f436b92c9e971f61f0bf30d27ac4dda209703a) -- [`24.04`, `noble-20240114`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240114-7ddcbbb0&id=7ddcbbb0945744800499a919528ba686d5e50239) +- [`20.04`, `focal-20240123`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240123-fb52992f&id=fb52992ff7e59e29008a6e1fa583207d2f36b9fe) +- [`22.04`, `jammy-20240125`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240125-09015311&id=090153117a4ac607556c868f91937e9a4b085697) +- [`23.10`, `mantic-20240122`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240122-07aef2de&id=07aef2de3835f07015f042626ae71721ca4f6bd1) +- [`24.04`, `noble-20240127.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240127.1-3b522bb2&id=3b522bb20a4c6b1895481998458cf50d761e2822) # Quick reference (cont.) From aaa2c2900ee825b232e2df16c03f4bb6cb2b3644 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Feb 2024 17:09:45 -0800 Subject: [PATCH 0926/2686] Run update.sh --- buildpack-deps/README.md | 9 +++------ gcc/README.md | 10 +++++----- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 7ad64ce85f1b..8018aaa365b4 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -36,18 +36,15 @@ WARNING: - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/Dockerfile) -- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/debian/trixie/curl/Dockerfile) -- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/trixie/scm/Dockerfile) -- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/trixie/Dockerfile) +- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/curl/Dockerfile) +- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/scm/Dockerfile) +- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/Dockerfile) - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) - [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/scm/Dockerfile) - [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/Dockerfile) - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/scm/Dockerfile) - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/Dockerfile) -- [`lunar-curl`, `23.04-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/ubuntu/lunar/curl/Dockerfile) -- [`lunar-scm`, `23.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/lunar/scm/Dockerfile) -- [`lunar`, `23.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/lunar/Dockerfile) - [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) - [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/scm/Dockerfile) - [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/Dockerfile) diff --git a/gcc/README.md b/gcc/README.md index 3ad3f06c12fe..78ecda534a96 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`13.2.0`, `13.2`, `13`, `latest`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/af458ec8254ef7ca3344f12631e2356b20b4a7f1/13/Dockerfile) -- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/11/Dockerfile) -- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/82cd9a2f8eb0da43f9b938b92ee78d8747eb16d1/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/e7e43ba8177ce15f473d9a799c9e69735e4dbab4/9/Dockerfile) +- [`13.2.0`, `13.2`, `13`, `latest`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/13/Dockerfile) +- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/12/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/11/Dockerfile) +- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/10/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/9/Dockerfile) # Quick reference (cont.) From 10f268218495d34daa99b7b882376af5eba3d84b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Rodri=CC=81guez?= Date: Fri, 2 Feb 2024 09:24:40 +0100 Subject: [PATCH 0927/2686] Fix some formatting typos and add default user and password --- geonetwork/content.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/geonetwork/content.md b/geonetwork/content.md index 92bee224f9ac..29117ddd0e59 100644 --- a/geonetwork/content.md +++ b/geonetwork/content.md @@ -42,22 +42,26 @@ docker run --name %%REPO%%-host --network gn-network -e ES_HOST=my-es-host -e ES To be sure about what Elasticsearch version to use you can check the [GeoNetwork documentation](https://docs.geonetwork-opensource.org/4.4/install-guide/installing-index/) for your GN version or the `es.version` property in the [`pom.xml`](https://github.com/geonetwork/core-geonetwork/blob/main/pom.xml#L1528C17-L1528C24) file of the GeoNetwork release used. +### Default credentials + +After installation, use the default credentials: **`admin`** (username) and **`admin`** (password). It is recommended to update the default password after installation. + ### Elasticsearch configuration #### Java properties (version 4.4.0 and newer) -Since GeoNetwork 4.4.0 the configuration is done using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. Property names used for setting the Elasticsearh connection are: +Since GeoNetwork 4.4.0, use Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable for Elasticsearch connection configuration: - `es.host`: *optional* (default `localhost`): The host name of the Elasticsearch server. - `es.port` *optional* (default `9200`): The port where Elasticsearch server is listening to. - `es.protocol` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. - `es.url`: **mandatory if host, port or protocol aren't the default values** (default `http://localhost:9200`): Full URL of the Elasticsearch server. - `es.index.records` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. -- `es.username` *optional (default empty): username used to connect to Elasticsearch. -- `es.password` *optional (default empty): password used to connect to Elasticsearch. -- `kb.url` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. +- `es.username` *optional* (default empty): username used to connect to Elasticsearch. +- `es.password` *optional* (default empty): password used to connect to Elasticsearch. +- `kb.url` *optional* (default `http://localhost:5601`): The URL where Kibana is listening. -For example, define this environment variable to pass these values to GeoNetwork: +Example Docker Compose YAML snippet: ```yaml services: @@ -76,14 +80,14 @@ services: #### Environment variables (version 4.2 and older) -If you are using a GeoNetwork older than 4.4.0 it must be configured using these environment variables: +For versions older than 4.4.0, configure Elasticsearch using environment variables: - `ES_HOST` **mandatory**: The host name of the Elasticsearch server. - `ES_PORT` *optional* (default `9200`): The port where Elasticsearch server is listening to. - `ES_PROTOCOL` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. - `ES_INDEX_RECORDS` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. -- `ES_USERNAME` *optional (default empty): username used to connect to Elasticsearch. -- `ES_PASSWORD` *optional (default empty): password used to connect to Elasticsearch. +- `ES_USERNAME` *optional* (default empty): username used to connect to Elasticsearch. +- `ES_PASSWORD` *optional* (default empty): password used to connect to Elasticsearch. - `KB_URL` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. ### Database configuration From 32d35c9f80e840e537cafd963839bba67caf7a58 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Feb 2024 11:09:59 -0800 Subject: [PATCH 0928/2686] Run update.sh --- crate/README.md | 7 ++-- geonetwork/README.md | 20 +++++---- jetty/README.md | 96 ++++++++++++++++++++++---------------------- 3 files changed, 64 insertions(+), 59 deletions(-) diff --git a/crate/README.md b/crate/README.md index 191e1599ccc2..922e83d3dc63 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,9 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.3`, `5.5`, `latest`](https://github.com/crate/docker-crate/blob/d4f4c950c62936fc73de1332bce40cc463844cc3/Dockerfile) -- [`5.4.7`, `5.4`](https://github.com/crate/docker-crate/blob/a26a53fcc220137c14220c2301eaded65e12b5e4/Dockerfile) -- [`5.3.8`, `5.3`](https://github.com/crate/docker-crate/blob/c98a94b81223ff693fd1a7b325032b2e535bc084/Dockerfile) +- [`5.6.1`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/de22e3a208322e68cd484c7de00c78bc236e563a/Dockerfile) +- [`5.5.5`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) +- [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) +- [`5.3.9`, `5.3`](https://github.com/crate/docker-crate/blob/b26e81edb1d6b551a5a7697855270346dbd63619/Dockerfile) - [`5.2.11`, `5.2`](https://github.com/crate/docker-crate/blob/589f5c13d10e2442b9a0d9bee46f4eac96b5da21/Dockerfile) - [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index cbd5163adb13..49ac14645be7 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -92,22 +92,26 @@ docker run --name geonetwork-host --network gn-network -e ES_HOST=my-es-host -e To be sure about what Elasticsearch version to use you can check the [GeoNetwork documentation](https://docs.geonetwork-opensource.org/4.4/install-guide/installing-index/) for your GN version or the `es.version` property in the [`pom.xml`](https://github.com/geonetwork/core-geonetwork/blob/main/pom.xml#L1528C17-L1528C24) file of the GeoNetwork release used. +### Default credentials + +After installation, use the default credentials: **`admin`** (username) and **`admin`** (password). It is recommended to update the default password after installation. + ### Elasticsearch configuration #### Java properties (version 4.4.0 and newer) -Since GeoNetwork 4.4.0 the configuration is done using Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable. Property names used for setting the Elasticsearh connection are: +Since GeoNetwork 4.4.0, use Java properties passed in the `GN_CONFIG_PROPERTIES` environment variable for Elasticsearch connection configuration: - `es.host`: *optional* (default `localhost`): The host name of the Elasticsearch server. - `es.port` *optional* (default `9200`): The port where Elasticsearch server is listening to. - `es.protocol` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. - `es.url`: **mandatory if host, port or protocol aren't the default values** (default `http://localhost:9200`): Full URL of the Elasticsearch server. - `es.index.records` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. -- `es.username` *optional (default empty): username used to connect to Elasticsearch. -- `es.password` *optional (default empty): password used to connect to Elasticsearch. -- `kb.url` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. +- `es.username` *optional* (default empty): username used to connect to Elasticsearch. +- `es.password` *optional* (default empty): password used to connect to Elasticsearch. +- `kb.url` *optional* (default `http://localhost:5601`): The URL where Kibana is listening. -For example, define this environment variable to pass these values to GeoNetwork: +Example Docker Compose YAML snippet: ```yaml services: @@ -126,14 +130,14 @@ services: #### Environment variables (version 4.2 and older) -If you are using a GeoNetwork older than 4.4.0 it must be configured using these environment variables: +For versions older than 4.4.0, configure Elasticsearch using environment variables: - `ES_HOST` **mandatory**: The host name of the Elasticsearch server. - `ES_PORT` *optional* (default `9200`): The port where Elasticsearch server is listening to. - `ES_PROTOCOL` *optional* (default `http`): The protocol used to talk to Elasticsearch. Can be `http` or `https`. - `ES_INDEX_RECORDS` *optional* (default `gn_records`): In case you have more than GeoNetwork instance using the same Elasticsearch cluster each one needs to use a different index name. Use this variable to define the name of the index used by each GeoNetwork. -- `ES_USERNAME` *optional (default empty): username used to connect to Elasticsearch. -- `ES_PASSWORD` *optional (default empty): password used to connect to Elasticsearch. +- `ES_USERNAME` *optional* (default empty): username used to connect to Elasticsearch. +- `ES_PASSWORD` *optional* (default empty): password used to connect to Elasticsearch. - `KB_URL` *Optional* (default `http://localhost:5601`): The URL where Kibana is listening. ### Database configuration diff --git a/jetty/README.md b/jetty/README.md index b31ba6e316a6..ce72e5731e47 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -39,38 +39,38 @@ WARNING: - [`9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.5-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.5-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.5-jre21`, `12.0-jre21`, `12-jre21`, `12.0.5-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.5-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.5-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.5-jre17`, `12.0-jre17`, `12-jre17`, `12.0.5-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.5-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.5-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.5`, `12.0`, `12`, `12.0.5-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.5-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.5-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.5-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.5-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.5-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.5-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.19-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.19-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.19-jre21`, `11.0-jre21`, `11-jre21`, `11.0.19-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.19-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.19-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.19-jre17`, `11.0-jre17`, `11-jre17`, `11.0.19-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.19-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.19-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.19-jre11`, `11.0-jre11`, `11-jre11`, `11.0.19-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.19-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.19-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.19`, `11.0`, `11`, `11.0.19-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.19-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.19-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.19-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.19-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.19-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.19-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.19-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.19-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.19-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.19-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.19-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.19-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.19-jre21`, `10.0-jre21`, `10-jre21`, `10.0.19-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.19-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.19-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.19-jre17`, `10.0-jre17`, `10-jre17`, `10.0.19-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f826afd8a329551fb5a6fb85368b1c075b5bc741/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.19-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.19-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.19-jre11`, `10.0-jre11`, `10-jre11`, `10.0.19-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.19-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.19-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.19`, `10.0`, `10`, `10.0.19-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.19-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.19-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.19-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.19-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.19-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.19-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.19-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.19-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.19-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.19-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`12.0.6-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.6-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.6-jre21`, `12.0-jre21`, `12-jre21`, `12.0.6-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.6-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.6-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.6-jre17`, `12.0-jre17`, `12-jre17`, `12.0.6-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.6-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.6-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.6`, `12.0`, `12`, `12.0.6-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.6-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.6-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.6-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.6-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.6-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.6-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`11.0.20-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.20-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.20-jre21`, `11.0-jre21`, `11-jre21`, `11.0.20-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.20-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.20-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.20-jre17`, `11.0-jre17`, `11-jre17`, `11.0.20-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.20-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.20-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.20-jre11`, `11.0-jre11`, `11-jre11`, `11.0.20-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.20-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.20-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.20`, `11.0`, `11`, `11.0.20-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.20-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.20-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.20-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.20-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.20-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.20-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.20-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.20-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.20-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.20-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.20-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.20-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.20-jre21`, `10.0-jre21`, `10-jre21`, `10.0.20-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.20-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.20-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.20-jre17`, `10.0-jre17`, `10-jre17`, `10.0.20-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.20-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.20-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.20-jre11`, `10.0-jre11`, `10-jre11`, `10.0.20-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.20-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.20-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.20`, `10.0`, `10`, `10.0.20-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.20-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.20-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.20-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.20-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.20-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.20-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.20-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.20-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.20-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.20-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) - [`9.4.53-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk21-alpine/Dockerfile) @@ -79,22 +79,22 @@ WARNING: - [`9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.5-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.5-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.5-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.5-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.5-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.19-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.19-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.19-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.19-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.19-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.19-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.19-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.19-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.19-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.19-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.19-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.19-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.19-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.19-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ef6c13500366af0fc5b941d956d869146b7cd3dc/amazoncorretto/10.0/jdk11/Dockerfile) +- [`12.0.6-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.6-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.6-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.6-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.6-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk17/Dockerfile) +- [`11.0.20-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.20-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.20-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.20-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.20-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk11/Dockerfile) +- [`10.0.20-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.20-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.20-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.20-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.20-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.20-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.20-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) From 453a225c754b693cdf25fbb988f916923bb9fefd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Feb 2024 12:19:00 -0800 Subject: [PATCH 0929/2686] Run update.sh --- storm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storm/README.md b/storm/README.md index 72cdc793a1e1..06edc27a514f 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.0`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/965de975c7af0ed35174b4276971c52965b0fa0b/2.6.0/Dockerfile) +- [`2.6.1`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d1f8af26ccf800531cc773a39fac9e30efa94bca/2.6.1/Dockerfile) # Quick reference (cont.) From a5550616f0b7c5369078d893d07ca3229bc5326a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 Feb 2024 14:09:55 -0800 Subject: [PATCH 0930/2686] Run update.sh --- gradle/README.md | 24 ++++++++-------- nats/README.md | 36 ++++++++++++------------ openjdk/README.md | 72 +++++++++++++++++++++++------------------------ php/README.md | 28 ++++++++++++++++++ 4 files changed, 94 insertions(+), 66 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 6cde47c35b97..62e6883f1863 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0-jdk8`, `8.5-jdk8`, `8-jdk8`, `jdk8`, `8.5.0-jdk8-jammy`, `8.5-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk8/Dockerfile) -- [`8.5.0-jdk8-focal`, `8.5-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk8-focal/Dockerfile) -- [`8.5.0-jdk11`, `8.5-jdk11`, `8-jdk11`, `jdk11`, `8.5.0-jdk11-jammy`, `8.5-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11/Dockerfile) -- [`8.5.0-jdk11-focal`, `8.5-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11-focal/Dockerfile) -- [`8.5.0-jdk11-alpine`, `8.5-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk11-alpine/Dockerfile) -- [`8.5.0-jdk17`, `8.5-jdk17`, `8-jdk17`, `jdk17`, `8.5.0-jdk`, `8.5-jdk`, `8-jdk`, `jdk`, `8.5.0`, `8.5`, `8`, `latest`, `8.5.0-jdk17-jammy`, `8.5-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.5.0-jdk-jammy`, `8.5-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.5.0-jammy`, `8.5-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17/Dockerfile) -- [`8.5.0-jdk17-focal`, `8.5-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.5.0-jdk-focal`, `8.5-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.5.0-focal`, `8.5-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-focal/Dockerfile) -- [`8.5.0-jdk17-alpine`, `8.5-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.5.0-jdk-alpine`, `8.5-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.5.0-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-alpine/Dockerfile) -- [`8.5.0-jdk17-graal`, `8.5-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.5.0-jdk-graal`, `8.5-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.5.0-graal`, `8.5-graal`, `8-graal`, `graal`, `8.5.0-jdk17-graal-jammy`, `8.5-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.5.0-jdk-graal-jammy`, `8.5-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.5.0-graal-jammy`, `8.5-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk17-graal/Dockerfile) -- [`8.5.0-jdk21`, `8.5-jdk21`, `8-jdk21`, `jdk21`, `8.5.0-jdk21-jammy`, `8.5-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21/Dockerfile) -- [`8.5.0-jdk21-alpine`, `8.5-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21-alpine/Dockerfile) -- [`8.5.0-jdk21-graal`, `8.5-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.5.0-jdk21-graal-jammy`, `8.5-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/37da2e7c1aa258b10e94fe42029e1e6fe8b33bdb/jdk21-graal/Dockerfile) +- [`8.6.0-jdk8`, `8.6-jdk8`, `8-jdk8`, `jdk8`, `8.6.0-jdk8-jammy`, `8.6-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk8/Dockerfile) +- [`8.6.0-jdk8-focal`, `8.6-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk8-focal/Dockerfile) +- [`8.6.0-jdk11`, `8.6-jdk11`, `8-jdk11`, `jdk11`, `8.6.0-jdk11-jammy`, `8.6-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11/Dockerfile) +- [`8.6.0-jdk11-focal`, `8.6-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11-focal/Dockerfile) +- [`8.6.0-jdk11-alpine`, `8.6-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11-alpine/Dockerfile) +- [`8.6.0-jdk17`, `8.6-jdk17`, `8-jdk17`, `jdk17`, `8.6.0-jdk`, `8.6-jdk`, `8-jdk`, `jdk`, `8.6.0`, `8.6`, `8`, `latest`, `8.6.0-jdk17-jammy`, `8.6-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.6.0-jdk-jammy`, `8.6-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.6.0-jammy`, `8.6-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17/Dockerfile) +- [`8.6.0-jdk17-focal`, `8.6-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.6.0-jdk-focal`, `8.6-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.6.0-focal`, `8.6-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-focal/Dockerfile) +- [`8.6.0-jdk17-alpine`, `8.6-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.6.0-jdk-alpine`, `8.6-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.6.0-alpine`, `8.6-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-alpine/Dockerfile) +- [`8.6.0-jdk17-graal`, `8.6-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.6.0-jdk-graal`, `8.6-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.6.0-graal`, `8.6-graal`, `8-graal`, `graal`, `8.6.0-jdk17-graal-jammy`, `8.6-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.6.0-jdk-graal-jammy`, `8.6-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.6.0-graal-jammy`, `8.6-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-graal/Dockerfile) +- [`8.6.0-jdk21`, `8.6-jdk21`, `8-jdk21`, `jdk21`, `8.6.0-jdk21-jammy`, `8.6-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21/Dockerfile) +- [`8.6.0-jdk21-alpine`, `8.6-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-alpine/Dockerfile) +- [`8.6.0-jdk21-graal`, `8.6-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.6.0-jdk21-graal-jammy`, `8.6-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-graal/Dockerfile) - [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8/Dockerfile) - [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8-focal/Dockerfile) - [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11/Dockerfile) diff --git a/nats/README.md b/nats/README.md index ee3620053037..2d662b6d9bb2 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.9-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.9-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/alpine3.19/Dockerfile) -- [`2.10.9-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.9-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) -- [`2.10.9-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.9-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.10-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.10-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/alpine3.19/Dockerfile) +- [`2.10.10-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.10-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/scratch/Dockerfile) +- [`2.10.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.10-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.9`, `2.10`, `2`, `latest`: - - [`2.10.9-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/scratch/Dockerfile) - - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.9-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.9-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.10`, `2.10`, `2`, `latest`: + - [`2.10.10-scratch`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/scratch/Dockerfile) + - [`2.10.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.10-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.10-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/98cc8de8d3c0848951ba74733d7f7997b8f5389a/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 896473cf2565..d2a30ad25545 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-7-jdk-oraclelinux8`, `23-ea-7-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-7-jdk-oracle`, `23-ea-7-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-7-jdk-oraclelinux7`, `23-ea-7-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-7-jdk-bookworm`, `23-ea-7-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/bookworm/Dockerfile) -- [`23-ea-7-jdk-slim-bookworm`, `23-ea-7-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-7-jdk-slim`, `23-ea-7-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-7-jdk-bullseye`, `23-ea-7-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/bullseye/Dockerfile) -- [`23-ea-7-jdk-slim-bullseye`, `23-ea-7-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-7-jdk-windowsservercore-ltsc2022`, `23-ea-7-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-7-jdk-windowsservercore-1809`, `23-ea-7-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-7-jdk-nanoserver-1809`, `23-ea-7-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-33-jdk-oraclelinux8`, `22-ea-33-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-33-jdk-oracle`, `22-ea-33-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-33-jdk-oraclelinux7`, `22-ea-33-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-33-jdk-bookworm`, `22-ea-33-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/bookworm/Dockerfile) -- [`22-ea-33-jdk-slim-bookworm`, `22-ea-33-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-33-jdk-slim`, `22-ea-33-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-33-jdk-bullseye`, `22-ea-33-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/bullseye/Dockerfile) -- [`22-ea-33-jdk-slim-bullseye`, `22-ea-33-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-33-jdk-windowsservercore-ltsc2022`, `22-ea-33-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-33-jdk-windowsservercore-1809`, `22-ea-33-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-33-jdk-nanoserver-1809`, `22-ea-33-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-8-jdk-oraclelinux8`, `23-ea-8-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-8-jdk-oracle`, `23-ea-8-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-8-jdk-oraclelinux7`, `23-ea-8-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-8-jdk-bookworm`, `23-ea-8-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/bookworm/Dockerfile) +- [`23-ea-8-jdk-slim-bookworm`, `23-ea-8-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-8-jdk-slim`, `23-ea-8-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-8-jdk-bullseye`, `23-ea-8-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/bullseye/Dockerfile) +- [`23-ea-8-jdk-slim-bullseye`, `23-ea-8-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-8-jdk-windowsservercore-ltsc2022`, `23-ea-8-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-8-jdk-windowsservercore-1809`, `23-ea-8-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-8-jdk-nanoserver-1809`, `23-ea-8-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-ea-34-jdk-oraclelinux8`, `22-ea-34-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-34-jdk-oracle`, `22-ea-34-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux8/Dockerfile) +- [`22-ea-34-jdk-oraclelinux7`, `22-ea-34-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux7/Dockerfile) +- [`22-ea-34-jdk-bookworm`, `22-ea-34-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/bookworm/Dockerfile) +- [`22-ea-34-jdk-slim-bookworm`, `22-ea-34-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-34-jdk-slim`, `22-ea-34-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/slim-bookworm/Dockerfile) +- [`22-ea-34-jdk-bullseye`, `22-ea-34-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/bullseye/Dockerfile) +- [`22-ea-34-jdk-slim-bullseye`, `22-ea-34-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/slim-bullseye/Dockerfile) +- [`22-ea-34-jdk-windowsservercore-ltsc2022`, `22-ea-34-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-ea-34-jdk-windowsservercore-1809`, `22-ea-34-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-ea-34-jdk-nanoserver-1809`, `22-ea-34-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-7-jdk`, `23-ea-7`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-7-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-7-jdk-windowsservercore`, `23-ea-7-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-7-jdk-nanoserver`, `23-ea-7-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/08a38666092c1aa5c8efbdc936ad29418ee76638/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-33-jdk`, `22-ea-33`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-33-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-33-jdk-windowsservercore`, `22-ea-33-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-33-jdk-nanoserver`, `22-ea-33-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7242381dbc5d07d52d5898221b940270a7e60d68/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-8-jdk`, `23-ea-8`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-8-jdk-windowsservercore`, `23-ea-8-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-8-jdk-nanoserver`, `23-ea-8-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) +- `22-ea-34-jdk`, `22-ea-34`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: + - [`22-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux8/Dockerfile) + - [`22-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-34-jdk-windowsservercore`, `22-ea-34-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-ea-34-jdk-nanoserver`, `22-ea-34-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index f478a5922727..713955183b80 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.3RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.3RC1-bookworm`, `8.3-rc-bookworm`, `8.3.3RC1-cli`, `8.3-rc-cli`, `8.3.3RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.3RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.3RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.3RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.3RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.3RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.3RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.3RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.3RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.3RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.3RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.3RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.3RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.3RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.3RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.3RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.3RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.3RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.3RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.3RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.3RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.3RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.3RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.3RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.2-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.2-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.2-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.2`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/cli/Dockerfile) - [`8.3.2-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.2-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/apache/Dockerfile) - [`8.3.2-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.2-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.2-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.2-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/cli/Dockerfile) - [`8.3.2-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/fpm/Dockerfile) - [`8.3.2-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.16RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.16RC1-bookworm`, `8.2-rc-bookworm`, `8.2.16RC1-cli`, `8.2-rc-cli`, `8.2.16RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.16RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.16RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.16RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.16RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.16RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.16RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.16RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.16RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.16RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.16RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.16RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.16RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.16RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.16RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.16RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.16RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.16RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.16RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.16RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.16RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.16RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.16RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.16RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.15-cli-bookworm`, `8.2-cli-bookworm`, `8.2.15-bookworm`, `8.2-bookworm`, `8.2.15-cli`, `8.2-cli`, `8.2.15`, `8.2`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/cli/Dockerfile) - [`8.2.15-apache-bookworm`, `8.2-apache-bookworm`, `8.2.15-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/apache/Dockerfile) - [`8.2.15-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.15-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/fpm/Dockerfile) From 9ebd6c279790b6e06e307b0479e1c2707d8b9bb8 Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 5 Feb 2024 11:57:28 +0100 Subject: [PATCH 0931/2686] update nextcloud wording Signed-off-by: Simon L --- nextcloud/deprecated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud/deprecated.md b/nextcloud/deprecated.md index 0bfc19a2a076..4143d5a3731a 100644 --- a/nextcloud/deprecated.md +++ b/nextcloud/deprecated.md @@ -1,3 +1,3 @@ # IMPORTANT NOTE -⚠ This image is not officially supported by Nextcloud GmbH, use at your own risk. Use the [All-in-One docker image](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) for easier deployment. +⚠️⚠️⚠️ This image is maintained by community volunteers and designed for expert use. For quick and easy deployment that supports the full set of Nextcloud Hub features, use the [Nextcloud All-in-One docker container](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) maintained by Nextcloud GmbH. From ba3bb145d8b2f28f5b0dbd6bb92459caeffcf5b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Feb 2024 11:09:58 -0800 Subject: [PATCH 0932/2686] Run update.sh --- emqx/README.md | 3 ++- nextcloud/README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 71ba9ec60e3c..9203a36db01e 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -27,7 +27,8 @@ WARNING: - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) -- [`5.4.1`, `5.4`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) +- [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) +- [`5.5.0`, `5.5`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/66e23a1daf5526c3c1edcd51b338ad24db628734/5.5/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 89a213b28c5b..7eb2237ab324 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -16,7 +16,7 @@ WARNING: # IMPORTANT NOTE -⚠ This image is not officially supported by Nextcloud GmbH, use at your own risk. Use the [All-in-One docker image](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) for easier deployment. +⚠️⚠️⚠️ This image is maintained by community volunteers and designed for expert use. For quick and easy deployment that supports the full set of Nextcloud Hub features, use the [Nextcloud All-in-One docker container](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one) maintained by Nextcloud GmbH. # Quick reference From 3d9339b84767c094b8424e38ef1bb81b381947e5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Feb 2024 12:19:32 -0800 Subject: [PATCH 0933/2686] Run update.sh --- arangodb/README.md | 2 +- ghost/README.md | 4 ++-- matomo/README.md | 6 +++--- sl/README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 49723a4aad5b..e1ec33482fc0 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.10`, `3.10.13`](https://github.com/arangodb/arangodb-docker/blob/af118f06c76677531116ee7a263e8d3cca1d6d63/alpine/3.10.13/Dockerfile) -- [`3.11`, `3.11.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5e80cd97d8ccedf2314fbee99e235894e0b46393/alpine/3.11.6/Dockerfile) +- [`3.11`, `3.11.7`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5156e2c84d0b646864615f4d284fdb85005c5417/alpine/3.11.7/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 44241a541fc7..d50c875e524b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.78.0`, `5.78`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4a77eba274347d0835dee9f8bdca17bff44f3815/5/debian/Dockerfile) -- [`5.78.0-alpine`, `5.78-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4a77eba274347d0835dee9f8bdca17bff44f3815/5/alpine/Dockerfile) +- [`5.79.0`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3b8b216b2cba46e1d4df13f4c51bab95de8075d3/5/debian/Dockerfile) +- [`5.79.0-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3b8b216b2cba46e1d4df13f4c51bab95de8075d3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 65c0e9b75485..f18aed6937cc 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.1-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.1`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/apache/Dockerfile) -- [`5.0.1-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/fpm/Dockerfile) -- [`5.0.1-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/7a87e915aae2d55168e90a76aea60f38122e28e5/fpm-alpine/Dockerfile) +- [`5.0.2-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.2`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/apache/Dockerfile) +- [`5.0.2-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/fpm/Dockerfile) +- [`5.0.2-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/sl/README.md b/sl/README.md index a4041332a3c8..df17dd55360c 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ab716f7772bdd6ae7eeab4c4ead2402491c960e2/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/b3153b7022ee4efd2aa5a0bc316df598d0952401/sl7/Dockerfile) # Quick reference (cont.) From ba7fc380f0558943c88b12c0083a681f1d52bc32 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Feb 2024 14:21:31 -0800 Subject: [PATCH 0934/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index a30064ab5e0c..27f6721eaf45 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240120`, `latest`](https://github.com/vmware/photon-docker-image/blob/439cc576409074c44e3603b23b4cdafdba8b6d00/docker/Dockerfile) -- [`4.0`, `4.0-20240120`](https://github.com/vmware/photon-docker-image/blob/c70f1ceb9e0caa0e0ac0d1ef5a77b3ccec9fb693/docker/Dockerfile) -- [`3.0`, `3.0-20240130`](https://github.com/vmware/photon-docker-image/blob/5874203713afe75454be99427bbdea4f3daca81e/docker/Dockerfile) +- [`5.0`, `5.0-20240203`, `latest`](https://github.com/vmware/photon-docker-image/blob/31b7698e757c672214b240c4cd1f9c73fc2b1533/docker/Dockerfile) +- [`4.0`, `4.0-20240205`](https://github.com/vmware/photon-docker-image/blob/ac0e35fe830e612d7524554cdaa80b7698a4f239/docker/Dockerfile) +- [`3.0`, `3.0-20240205`](https://github.com/vmware/photon-docker-image/blob/fa179b135b85f15355ca9717f1870b12e7a7bad7/docker/Dockerfile) # Quick reference (cont.) From b47896d5a92afbc4989f9435b21e7c44d86b6720 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Feb 2024 15:09:58 -0800 Subject: [PATCH 0935/2686] Run update.sh --- gradle/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 62e6883f1863..180e62cb67d7 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -36,14 +36,14 @@ WARNING: - [`8.6.0-jdk21`, `8.6-jdk21`, `8-jdk21`, `jdk21`, `8.6.0-jdk21-jammy`, `8.6-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21/Dockerfile) - [`8.6.0-jdk21-alpine`, `8.6-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-alpine/Dockerfile) - [`8.6.0-jdk21-graal`, `8.6-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.6.0-jdk21-graal-jammy`, `8.6-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-graal/Dockerfile) -- [`7.6.3-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.3-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8/Dockerfile) -- [`7.6.3-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk8-focal/Dockerfile) -- [`7.6.3-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.3-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11/Dockerfile) -- [`7.6.3-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11-focal/Dockerfile) -- [`7.6.3-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk11-alpine/Dockerfile) -- [`7.6.3-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.3-jdk`, `7.6-jdk`, `7-jdk`, `7.6.3`, `7.6`, `7`, `7.6.3-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.3-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.3-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17/Dockerfile) -- [`7.6.3-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.3-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.3-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17-focal/Dockerfile) -- [`7.6.3-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.3-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.3-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1ab3f2f44513ac091bb9dbdb72341c74b5e4a74e/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) +- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) +- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-focal/Dockerfile) +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-alpine/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17/Dockerfile) +- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-focal/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-alpine/Dockerfile) - [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8/Dockerfile) - [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8-focal/Dockerfile) - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11/Dockerfile) From cfdbb636aa5b10bfd5f4e030a2218d6a63d55ea8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Feb 2024 17:21:02 -0800 Subject: [PATCH 0936/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index d65ffcc8e001..11cb9ab596dd 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/community/Dockerfile) -- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/developer/Dockerfile) -- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/enterprise/Dockerfile) -- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/datacenter/app/Dockerfile) -- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/9/datacenter/search/Dockerfile) -- [`10.3.0-community`, `10.3-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/community/Dockerfile) -- [`10.3.0-developer`, `10.3-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/developer/Dockerfile) -- [`10.3.0-enterprise`, `10.3-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/enterprise/Dockerfile) -- [`10.3.0-datacenter-app`, `10.3-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/datacenter/app/Dockerfile) -- [`10.3.0-datacenter-search`, `10.3-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/242f073026e8d9368f72f83c6a2dbd368299121b/10/datacenter/search/Dockerfile) +- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/community/Dockerfile) +- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/developer/Dockerfile) +- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/enterprise/Dockerfile) +- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/datacenter/app/Dockerfile) +- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/datacenter/search/Dockerfile) +- [`10.4.0-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/community/Dockerfile) +- [`10.4.0-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/developer/Dockerfile) +- [`10.4.0-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/enterprise/Dockerfile) +- [`10.4.0-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/datacenter/app/Dockerfile) +- [`10.4.0-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/datacenter/search/Dockerfile) # Quick reference (cont.) From a5d51905135e564f44a19d457d34b7f7877e0a12 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Feb 2024 12:20:43 -0800 Subject: [PATCH 0937/2686] Run update.sh --- bash/README.md | 2 +- convertigo/README.md | 2 +- elasticsearch/README.md | 4 +-- elixir/README.md | 18 +++++------ golang/README.md | 72 ++++++++++++++++++++--------------------- kibana/README.md | 4 +-- logstash/README.md | 4 +-- orientdb/README.md | 4 +-- sonarqube/README.md | 20 ++++++------ 9 files changed, 65 insertions(+), 65 deletions(-) diff --git a/bash/README.md b/bash/README.md index bf93fcf8db47..e8894227f74a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240127`, `devel`, `devel-20240127-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/a73419dd41485209a91d46271887b900d8810fcc/devel/Dockerfile) +- [`devel-20240202`, `devel`, `devel-20240202-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/af207d7a2d6dd7dffba1cfde7f231cbee8d4ddab/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/convertigo/README.md b/convertigo/README.md index 2eda9c815a00..521dcb10865c 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.5`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/7b2e2b01da28d3f47fcbc6717d7dd6a021f1f9fb/docker/default/Dockerfile) +- [`8.2.6`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/b336be426c0b144209c6779cd85f66f4f4cc1290/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index e20e7d911f55..17ad8f2f7e52 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/elasticsearch/Dockerfile) -- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/elasticsearch/Dockerfile) +- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/elasticsearch/Dockerfile) +- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 3c1fa257c6ea..cd8de05eb39f 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.0`, `1.16`, `latest`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/Dockerfile) -- [`1.16.0-slim`, `1.16-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/slim/Dockerfile) -- [`1.16.0-alpine`, `1.16-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/alpine/Dockerfile) -- [`1.16.0-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24/Dockerfile) -- [`1.16.0-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24-alpine/Dockerfile) -- [`1.16.0-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-24-slim/Dockerfile) -- [`1.16.0-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25/Dockerfile) -- [`1.16.0-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25-alpine/Dockerfile) -- [`1.16.0-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/c96f536f131454995d694ea279f667179ea634bb/1.16/otp-25-slim/Dockerfile) +- [`1.16.1`, `1.16`, `latest`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/Dockerfile) +- [`1.16.1-slim`, `1.16-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/slim/Dockerfile) +- [`1.16.1-alpine`, `1.16-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/alpine/Dockerfile) +- [`1.16.1-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24/Dockerfile) +- [`1.16.1-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-alpine/Dockerfile) +- [`1.16.1-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-slim/Dockerfile) +- [`1.16.1-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25/Dockerfile) +- [`1.16.1-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-alpine/Dockerfile) +- [`1.16.1-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-slim/Dockerfile) - [`1.15.7`, `1.15`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) - [`1.15.7-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) - [`1.15.7-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 4031b4a3cf24..a90f1d8ba9a8 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,22 +36,22 @@ WARNING: - [`1.22rc2-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) - [`1.22rc2-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc2-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) -- [`1.21.6-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) -- [`1.21.6-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bullseye/Dockerfile) -- [`1.21.6-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.6-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/alpine3.19/Dockerfile) -- [`1.21.6-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/alpine3.18/Dockerfile) -- [`1.21.6-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.6-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.6-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.6-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.13-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bookworm/Dockerfile) -- [`1.20.13-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bullseye/Dockerfile) -- [`1.20.13-alpine3.19`, `1.20-alpine3.19`, `1.20.13-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/alpine3.19/Dockerfile) -- [`1.20.13-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/alpine3.18/Dockerfile) -- [`1.20.13-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.13-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.13-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.13-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.21.7-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bookworm/Dockerfile) +- [`1.21.7-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bullseye/Dockerfile) +- [`1.21.7-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.7-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/alpine3.19/Dockerfile) +- [`1.21.7-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/alpine3.18/Dockerfile) +- [`1.21.7-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.7-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.7-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.7-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.20.14-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bookworm/Dockerfile) +- [`1.20.14-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bullseye/Dockerfile) +- [`1.20.14-alpine3.19`, `1.20-alpine3.19`, `1.20.14-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/alpine3.19/Dockerfile) +- [`1.20.14-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/alpine3.18/Dockerfile) +- [`1.20.14-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.20.14-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) +- [`1.20.14-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.20.14-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -65,26 +65,26 @@ WARNING: - `1.22rc2-nanoserver`, `1.22-rc-nanoserver`: - [`1.22rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) -- `1.21.6`, `1.21`, `1`, `latest`: - - [`1.21.6-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.21/bookworm/Dockerfile) - - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.6-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.21.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.6-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.21.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/885ba4379edde75bd04e37c23996fecedfc57301/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.13`, `1.20`: - - [`1.20.13-bookworm`](https://github.com/docker-library/golang/blob/a6fd6eceb0cb26da2fceefb4353768c472f84420/1.20/bookworm/Dockerfile) - - [`1.20.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.13-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.13-nanoserver`, `1.20-nanoserver`: - - [`1.20.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/9cbaa438ce9da574c97fc39d32b660aab5aad129/1.20/windows/nanoserver-1809/Dockerfile) +- `1.21.7`, `1.21`, `1`, `latest`: + - [`1.21.7-bookworm`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bookworm/Dockerfile) + - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.7-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.7-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.21.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) +- `1.20.14`, `1.20`: + - [`1.20.14-bookworm`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bookworm/Dockerfile) + - [`1.20.14-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.14-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.14-windowsservercore`, `1.20-windowsservercore`: + - [`1.20.14-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.20.14-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) +- `1.20.14-nanoserver`, `1.20-nanoserver`: + - [`1.20.14-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.20.14-nanoserver-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 40e597102769..41e0e10d04e5 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/kibana/Dockerfile) -- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/kibana/Dockerfile) +- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/kibana/Dockerfile) +- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 17ce32783e3f..12e46f7d7cee 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.0`](https://github.com/elastic/dockerfiles/blob/6e12e2e098446615fc79fc0ae7eee9b2d3e94a12/logstash/Dockerfile) -- [`7.17.17`](https://github.com/elastic/dockerfiles/blob/4d46f1cb3a7d6ebacab71346708607b5bd44955f/logstash/Dockerfile) +- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/logstash/Dockerfile) +- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/logstash/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 5dfde5986a38..1b5a6a5894d5 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.26`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/1cf7837740ef309efc58759b0a33a3fe8c2c5278/release/3.2.x/3.2.26/Dockerfile) -- [`3.2.26-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/1cf7837740ef309efc58759b0a33a3fe8c2c5278/release/3.2.x/3.2.26-tp3/Dockerfile) +- [`3.2.27`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7c3a945a49494db55de300c0193da8d9dd0f51c1/release/3.2.x/3.2.27/Dockerfile) +- [`3.2.27-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7c3a945a49494db55de300c0193da8d9dd0f51c1/release/3.2.x/3.2.27-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) - [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 11cb9ab596dd..2d7b96dea69e 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.3-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/community/Dockerfile) -- [`9.9.3-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/developer/Dockerfile) -- [`9.9.3-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/enterprise/Dockerfile) -- [`9.9.3-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/datacenter/app/Dockerfile) -- [`9.9.3-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/9/datacenter/search/Dockerfile) -- [`10.4.0-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/community/Dockerfile) -- [`10.4.0-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/developer/Dockerfile) -- [`10.4.0-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/enterprise/Dockerfile) -- [`10.4.0-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/datacenter/app/Dockerfile) -- [`10.4.0-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/3e0bf72c78f7c4386f8262057c0faca56876256d/10/datacenter/search/Dockerfile) +- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/community/Dockerfile) +- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/developer/Dockerfile) +- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/enterprise/Dockerfile) +- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/datacenter/app/Dockerfile) +- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/datacenter/search/Dockerfile) +- [`10.4.0-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/community/Dockerfile) +- [`10.4.0-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/developer/Dockerfile) +- [`10.4.0-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/enterprise/Dockerfile) +- [`10.4.0-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/datacenter/app/Dockerfile) +- [`10.4.0-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/datacenter/search/Dockerfile) # Quick reference (cont.) From aefbe0a943aa3ec0fe39e2c034bf37d690cde6d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Feb 2024 13:10:00 -0800 Subject: [PATCH 0938/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index e0fd8f7c7112..44371f8b7800 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/673c834ea41774d3dabdb98234fac1ea39ab3f36/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7-slim-fips/Dockerfile) # Quick reference (cont.) From 0d61e3f810db07ed5325bf2b3fc84c5e8d03ebbe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Feb 2024 18:18:50 -0800 Subject: [PATCH 0939/2686] Run update.sh --- docker/README.md | 28 ++++++++--------- golang/README.md | 80 +++++++++++++++++++----------------------------- mongo/README.md | 16 +++++----- 3 files changed, 53 insertions(+), 71 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7174bb5e7f31..3db8ab210d34 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.2-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/cli/Dockerfile) -- [`25.0.2-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.2-dind-alpine3.19`, `25.0.2`, `25.0`, `25`, `latest`, `25.0.2-alpine3.19`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/dind/Dockerfile) -- [`25.0.2-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/dind-rootless/Dockerfile) -- [`25.0.2-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.2-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.2-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/cli/Dockerfile) +- [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/cli/Dockerfile) +- [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind/Dockerfile) +- [`25.0.3-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind-rootless/Dockerfile) +- [`25.0.3-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) +- [`25.0.3-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.3-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) - [`24.0.9-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `25.0.2-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7597a6c2cc745fe3aea57d8dc7d9dbbcc1dc10e8/25/windows/windowsservercore-1809/Dockerfile) +- `25.0.3-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index a90f1d8ba9a8..ff80ba467dfe 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,63 +28,45 @@ WARNING: ## Simple Tags -- [`1.22rc2-bookworm`, `1.22-rc-bookworm`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bookworm/Dockerfile) -- [`1.22rc2-bullseye`, `1.22-rc-bullseye`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bullseye/Dockerfile) -- [`1.22rc2-alpine3.19`, `1.22-rc-alpine3.19`, `1.22rc2-alpine`, `1.22-rc-alpine`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/alpine3.19/Dockerfile) -- [`1.22rc2-alpine3.18`, `1.22-rc-alpine3.18`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/alpine3.18/Dockerfile) -- [`1.22rc2-windowsservercore-ltsc2022`, `1.22-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22rc2-windowsservercore-1809`, `1.22-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.22rc2-nanoserver-ltsc2022`, `1.22-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22rc2-nanoserver-1809`, `1.22-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) -- [`1.21.7-bookworm`, `1.21-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bookworm/Dockerfile) -- [`1.21.7-bullseye`, `1.21-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bullseye/Dockerfile) -- [`1.21.7-alpine3.19`, `1.21-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.21.7-alpine`, `1.21-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/alpine3.19/Dockerfile) -- [`1.21.7-alpine3.18`, `1.21-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/alpine3.18/Dockerfile) -- [`1.21.7-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.7-windowsservercore-1809`, `1.21-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.7-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.7-nanoserver-1809`, `1.21-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) -- [`1.20.14-bookworm`, `1.20-bookworm`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bookworm/Dockerfile) -- [`1.20.14-bullseye`, `1.20-bullseye`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bullseye/Dockerfile) -- [`1.20.14-alpine3.19`, `1.20-alpine3.19`, `1.20.14-alpine`, `1.20-alpine`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/alpine3.19/Dockerfile) -- [`1.20.14-alpine3.18`, `1.20-alpine3.18`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/alpine3.18/Dockerfile) -- [`1.20.14-windowsservercore-ltsc2022`, `1.20-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.20.14-windowsservercore-1809`, `1.20-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) -- [`1.20.14-nanoserver-ltsc2022`, `1.20-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.20.14-nanoserver-1809`, `1.20-nanoserver-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-1809/Dockerfile) +- [`1.22.0-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bookworm/Dockerfile) +- [`1.22.0-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bullseye/Dockerfile) +- [`1.22.0-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.0-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/alpine3.19/Dockerfile) +- [`1.22.0-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/alpine3.18/Dockerfile) +- [`1.22.0-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.0-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.0-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.0-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.7-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bookworm/Dockerfile) +- [`1.21.7-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bullseye/Dockerfile) +- [`1.21.7-alpine3.19`, `1.21-alpine3.19`, `1.21.7-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/alpine3.19/Dockerfile) +- [`1.21.7-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/alpine3.18/Dockerfile) +- [`1.21.7-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.7-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.7-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.7-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.22rc2`, `1.22-rc`: - - [`1.22rc2-bookworm`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/bookworm/Dockerfile) - - [`1.22rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- `1.22rc2-windowsservercore`, `1.22-rc-windowsservercore`: - - [`1.22rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/windowsservercore-1809/Dockerfile) -- `1.22rc2-nanoserver`, `1.22-rc-nanoserver`: - - [`1.22rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/343f83dbad29bb3b6f8c8eb8fa0459b6f2ea6aec/1.22-rc/windows/nanoserver-1809/Dockerfile) -- `1.21.7`, `1.21`, `1`, `latest`: - - [`1.21.7-bookworm`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/bookworm/Dockerfile) +- `1.22.0`, `1.22`, `1`, `latest`: + - [`1.22.0-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bookworm/Dockerfile) + - [`1.22.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.0-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.0-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.7`, `1.21`: + - [`1.21.7-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bookworm/Dockerfile) - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.7-windowsservercore`, `1.21-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.21.7-windowsservercore`, `1.21-windowsservercore`: - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.7-nanoserver`, `1.21-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.21.7-nanoserver`, `1.21-nanoserver`: - [`1.21.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) -- `1.20.14`, `1.20`: - - [`1.20.14-bookworm`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/bookworm/Dockerfile) - - [`1.20.14-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.14-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.14-windowsservercore`, `1.20-windowsservercore`: - - [`1.20.14-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.20.14-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/windowsservercore-1809/Dockerfile) -- `1.20.14-nanoserver`, `1.20-nanoserver`: - - [`1.20.14-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.20.14-nanoserver-1809`](https://github.com/docker-library/golang/blob/b979efaabcc5b7ca012ba608cd0eaf4df8ef7f66/1.20/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) @@ -92,7 +74,7 @@ WARNING: [https://github.com/docker-library/golang/issues](https://github.com/docker-library/golang/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`mips64le`](https://hub.docker.com/r/mips64le/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/) + [`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`mips64le`](https://hub.docker.com/r/mips64le/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/) - **Published image artifact details**: [repo-info repo's `repos/golang/` directory](https://github.com/docker-library/repo-info/blob/master/repos/golang) ([history](https://github.com/docker-library/repo-info/commits/master/repos/golang)) diff --git a/mongo/README.md b/mongo/README.md index 995d3a141b35..5c088039b96f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`7.0.5-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/Dockerfile) +- [`7.0.5-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/7.0/Dockerfile) - [`7.0.5-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.5-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.5-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.13-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/Dockerfile) +- [`6.0.13-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/6.0/Dockerfile) - [`6.0.13-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.13-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.13-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.13-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.24-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/Dockerfile) +- [`5.0.24-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/5.0/Dockerfile) - [`5.0.24-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.24-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.24-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.24-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.28-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/Dockerfile) +- [`4.4.28-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/4.4/Dockerfile) - [`4.4.28-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.28-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) - [`4.4.28-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-ltsc2022/Dockerfile) @@ -52,7 +52,7 @@ WARNING: ## Shared Tags - `7.0.5`, `7.0`, `7`, `latest`: - - [`7.0.5-jammy`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/Dockerfile) + - [`7.0.5-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/7.0/Dockerfile) - [`7.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.5-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: @@ -62,7 +62,7 @@ WARNING: - [`7.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.13`, `6.0`, `6`: - - [`6.0.13-jammy`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/Dockerfile) + - [`6.0.13-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/6.0/Dockerfile) - [`6.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.13-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: @@ -72,7 +72,7 @@ WARNING: - [`6.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.13-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.24`, `5.0`, `5`: - - [`5.0.24-focal`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/Dockerfile) + - [`5.0.24-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/5.0/Dockerfile) - [`5.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.24-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: @@ -82,7 +82,7 @@ WARNING: - [`5.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.28`, `4.4`, `4`: - - [`4.4.28-focal`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/Dockerfile) + - [`4.4.28-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/4.4/Dockerfile) - [`4.4.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) - `4.4.28-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: From 60c51b6408acf573a3b9ed33e5a78e1f12b194a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Feb 2024 10:09:51 -0800 Subject: [PATCH 0940/2686] Run update.sh --- orientdb/README.md | 4 -- python/README.md | 128 ++++++++++++++++++++++----------------------- ruby/README.md | 12 ++--- 3 files changed, 70 insertions(+), 74 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index 1b5a6a5894d5..ce327c6a709e 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -28,10 +28,6 @@ WARNING: - [`3.2.27-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7c3a945a49494db55de300c0193da8d9dd0f51c1/release/3.2.x/3.2.27-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) -- [`3.0.44`, `3.0`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44/Dockerfile) -- [`3.0.44-tp3`, `3.0-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.0.x/3.0.44-tp3/Dockerfile) -- [`2.2.37`, `2.2`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/2.2.x/2.2.37/Dockerfile) -- [`2.2.37-spatial`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/2.2.x/2.2.37-spatial/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index d1f1b025a991..028dd3426668 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.13.0a3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a3-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a3-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.1-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bookworm/Dockerfile) -- [`3.12.1-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.1-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/slim-bookworm/Dockerfile) -- [`3.12.1-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bullseye/Dockerfile) -- [`3.12.1-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/slim-bullseye/Dockerfile) -- [`3.12.1-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.1-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/alpine3.19/Dockerfile) -- [`3.12.1-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/alpine3.18/Dockerfile) -- [`3.12.1-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.1-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bookworm/Dockerfile) -- [`3.11.7-slim-bookworm`, `3.11-slim-bookworm`, `3.11.7-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/slim-bookworm/Dockerfile) -- [`3.11.7-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bullseye/Dockerfile) -- [`3.11.7-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/slim-bullseye/Dockerfile) -- [`3.11.7-alpine3.19`, `3.11-alpine3.19`, `3.11.7-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/alpine3.19/Dockerfile) -- [`3.11.7-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/alpine3.18/Dockerfile) -- [`3.11.7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bookworm/Dockerfile) -- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/slim-bookworm/Dockerfile) -- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bullseye/Dockerfile) -- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/alpine3.19/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/alpine3.18/Dockerfile) -- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bookworm/Dockerfile) -- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/slim-bookworm/Dockerfile) -- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bullseye/Dockerfile) -- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/alpine3.19/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/alpine3.18/Dockerfile) -- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bookworm/Dockerfile) -- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/slim-bookworm/Dockerfile) -- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bullseye/Dockerfile) -- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/alpine3.19/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/alpine3.18/Dockerfile) +- [`3.13.0a3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a3-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a3-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) +- [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bookworm/Dockerfile) +- [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bullseye/Dockerfile) +- [`3.12.2-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bullseye/Dockerfile) +- [`3.12.2-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/alpine3.19/Dockerfile) +- [`3.12.2-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/alpine3.18/Dockerfile) +- [`3.12.2-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.2-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.8-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bookworm/Dockerfile) +- [`3.11.8-slim-bookworm`, `3.11-slim-bookworm`, `3.11.8-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/slim-bookworm/Dockerfile) +- [`3.11.8-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bullseye/Dockerfile) +- [`3.11.8-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/slim-bullseye/Dockerfile) +- [`3.11.8-alpine3.19`, `3.11-alpine3.19`, `3.11.8-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/alpine3.19/Dockerfile) +- [`3.11.8-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/alpine3.18/Dockerfile) +- [`3.11.8-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.8-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bookworm/Dockerfile) +- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/slim-bookworm/Dockerfile) +- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bullseye/Dockerfile) +- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/slim-bullseye/Dockerfile) +- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/alpine3.19/Dockerfile) +- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/alpine3.18/Dockerfile) +- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bookworm/Dockerfile) +- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/slim-bookworm/Dockerfile) +- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bullseye/Dockerfile) +- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/slim-bullseye/Dockerfile) +- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/alpine3.19/Dockerfile) +- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/alpine3.18/Dockerfile) +- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bookworm/Dockerfile) +- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/slim-bookworm/Dockerfile) +- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bullseye/Dockerfile) +- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/slim-bullseye/Dockerfile) +- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/alpine3.19/Dockerfile) +- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/alpine3.18/Dockerfile) ## Shared Tags - `3.13.0a3`, `3.13-rc`: - - [`3.13.0a3-bookworm`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0a3-bookworm`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0a3-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/f064da21d58370cebb45e89d17f79a290f1d9086/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.1`, `3.12`, `3`, `latest`: - - [`3.12.1-bookworm`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/bookworm/Dockerfile) - - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.1-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/7fe6c4b20ab3173a08299df64987af410bdc8923/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.7`, `3.11`: - - [`3.11.7-bookworm`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/bookworm/Dockerfile) - - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.7-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/5eb3a15d5c8069f330fe0ef40b73a28bb0ed9501/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.2`, `3.12`, `3`, `latest`: + - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) + - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.2-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.11.8`, `3.11`: + - [`3.11.8-bookworm`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bookworm/Dockerfile) + - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.8-windowsservercore`, `3.11-windowsservercore`: + - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.13`, `3.10`: - - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/b273afc57978521d33fefe5887ad901d0d35de87/3.10/bookworm/Dockerfile) + - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bookworm/Dockerfile) - `3.9.18`, `3.9`: - - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/643270748f00109a784e21dad4433258c4143f18/3.9/bookworm/Dockerfile) + - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bookworm/Dockerfile) - `3.8.18`, `3.8`: - - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/99ac9a61bbeb040f93cdf7b69c66bb00c4d1993b/3.8/bookworm/Dockerfile) + - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 7655efe21d8c..14b03d2abb92 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/bookworm/Dockerfile) -- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/slim-bookworm/Dockerfile) -- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/bullseye/Dockerfile) -- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/slim-bullseye/Dockerfile) -- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.19/Dockerfile) -- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/52e176c1dee983d991d9cff0c6371f5c50bfd636/3.3/alpine3.18/Dockerfile) +- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/bookworm/Dockerfile) +- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/slim-bookworm/Dockerfile) +- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/bullseye/Dockerfile) +- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/slim-bullseye/Dockerfile) +- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/alpine3.19/Dockerfile) +- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/alpine3.18/Dockerfile) - [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bookworm/Dockerfile) - [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bookworm/Dockerfile) - [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bullseye/Dockerfile) From 85c4f83ccb2b4eb9e46c161e02c01d95d9786951 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Feb 2024 11:10:27 -0800 Subject: [PATCH 0941/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/README.md b/rust/README.md index b13ae4c73cda..488f54352289 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.75-buster`, `1.75.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/Dockerfile) -- [`1-slim-buster`, `1.75-slim-buster`, `1.75.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.75-bullseye`, `1.75.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.75-slim-bullseye`, `1.75.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.75-bookworm`, `1.75.0-bookworm`, `bookworm`, `1`, `1.75`, `1.75.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.75-slim-bookworm`, `1.75.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.75-slim`, `1.75.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/743e6f449c680dbf8e9137da9baf16a169c674da/1.75.0/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.75-alpine3.18`, `1.75.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/7658ad2a35ec2eeb7ea820470449a19bba2b5d5b/1.75.0/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.75-alpine3.19`, `1.75.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.75-alpine`, `1.75.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e7f8ab58b3feca354792122f4df6624e291c404b/1.75.0/alpine3.19/Dockerfile) +- [`1-buster`, `1.76-buster`, `1.76.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/buster/Dockerfile) +- [`1-slim-buster`, `1.76-slim-buster`, `1.76.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.76-bullseye`, `1.76.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.76-slim-bullseye`, `1.76.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.76-bookworm`, `1.76.0-bookworm`, `bookworm`, `1`, `1.76`, `1.76.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.76-slim-bookworm`, `1.76.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.76-slim`, `1.76.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.76-alpine3.18`, `1.76.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.76-alpine3.19`, `1.76.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.76-alpine`, `1.76.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/alpine3.19/Dockerfile) # Quick reference (cont.) From 05c80b20231c4a2466aee3c57eb23a671cfb4f67 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Feb 2024 14:09:47 -0800 Subject: [PATCH 0942/2686] Run update.sh --- rocket.chat/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 9efddd3c609d..e85ba10e7c4d 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.2`, `6.5`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb09fece013b05ce7c0d8a42b646543a75fda57a/6.5/Dockerfile) +- [`6.6.0`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/6bb91d4971eb1d1c8e7fb84ec2d646c2b9474818/6.6/Dockerfile) +- [`6.5.3`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/6bb91d4971eb1d1c8e7fb84ec2d646c2b9474818/6.5/Dockerfile) - [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) - [`6.3.12`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.3/Dockerfile) From 20ed364167d12d633698cb488140a23620f0814c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Feb 2024 10:20:46 -0800 Subject: [PATCH 0943/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 2ab2c10e39c1..eade0cfa3a3e 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -33,9 +33,9 @@ WARNING: - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.4`, `15.5-mysql-tomcat`, `15.5.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/75fbc887160154a51b62ed5c1053d0a210fc8c22/15.5/mariadb-tomcat/Dockerfile) +- [`15.5`, `15.5.5`, `15.5-mysql-tomcat`, `15.5.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mysql-tomcat/Dockerfile) +- [`15.5-postgres-tomcat`, `15.5.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/postgres-tomcat/Dockerfile) +- [`15.5-mariadb-tomcat`, `15.5.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 1131a92da38f7548d65bd4e8540394a6cd2fd7d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Feb 2024 11:10:01 -0800 Subject: [PATCH 0944/2686] Run update.sh --- odoo/README.md | 6 +++--- solr/README.md | 18 +++++++++--------- xwiki/README.md | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 12739dd15798..56d23c63e082 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/218ae7120fa38ff511dbb569053109ad6deb4aea/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/15.0/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index a33bd4ac7374..b8bcbaf40cf9 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.4-slim/Dockerfile) -- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/9.0/Dockerfile) -- [`8.11.2`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/8.11/Dockerfile) -- [`8.11.2-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e383a5513c30d1ff663cbb57a45134d5c407147f/8.11-slim/Dockerfile) +- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.4-slim/Dockerfile) +- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.0/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index eade0cfa3a3e..6920c36e0d51 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.0`, `16.0.0`, `16-mysql-tomcat`, `16.0-mysql-tomcat`, `16.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.0-postgres-tomcat`, `16.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.0-mariadb-tomcat`, `16.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.5`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/052b6e3674b879cd400e7b1fd4dcbc2f65f6b878/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.6`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) From c8ab7a6b81cee41ad2cb0ac4333bd514b4a67207 Mon Sep 17 00:00:00 2001 From: MorgusLethe Date: Sun, 11 Feb 2024 09:47:22 +0100 Subject: [PATCH 0945/2686] Corrected info how WORDPRESS_CONFIG_EXTRA is put into effect --- wordpress/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordpress/content.md b/wordpress/content.md index 3f60fe112d1c..c4e5870b474e 100644 --- a/wordpress/content.md +++ b/wordpress/content.md @@ -21,7 +21,7 @@ The following environment variables are also honored for configuring your WordPr - `-e WORDPRESS_TABLE_PREFIX=...` - `-e WORDPRESS_AUTH_KEY=...`, `-e WORDPRESS_SECURE_AUTH_KEY=...`, `-e WORDPRESS_LOGGED_IN_KEY=...`, `-e WORDPRESS_NONCE_KEY=...`, `-e WORDPRESS_AUTH_SALT=...`, `-e WORDPRESS_SECURE_AUTH_SALT=...`, `-e WORDPRESS_LOGGED_IN_SALT=...`, `-e WORDPRESS_NONCE_SALT=...` (default to unique random SHA1s, but only if other environment variable configuration is provided) - `-e WORDPRESS_DEBUG=1` (defaults to disabled, non-empty value will enable `WP_DEBUG` in `wp-config.php`) -- `-e WORDPRESS_CONFIG_EXTRA=...` (defaults to nothing, non-empty value will be embedded verbatim inside `wp-config.php` -- especially useful for applying extra configuration values this image does not provide by default such as `WP_ALLOW_MULTISITE`; see [docker-library/wordpress#142](https://github.com/docker-library/wordpress/pull/142) for more details) +- `-e WORDPRESS_CONFIG_EXTRA=...` (defaults to nothing, the value will be evaluated by the `eval()` function in `wp-config.php`. This variable is especially useful for applying extra configuration values this image does not provide by default such as `WP_ALLOW_MULTISITE`; see [docker-library/wordpress#142](https://github.com/docker-library/wordpress/pull/142) for more details) The `WORDPRESS_DB_NAME` needs to already exist on the given MySQL server; it will not be created by the `%%REPO%%` container. From 27e9c5f29fb8d5db6a0f5a2e9b9493e42414ca5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Feb 2024 12:18:56 -0800 Subject: [PATCH 0946/2686] Run update.sh --- clearlinux/README.md | 2 +- composer/README.md | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 67c48f49f2c1..8fdfb924b0a3 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ffd49c28c9907b3a6c70049e0782e4a95a0a8355/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dc6a09347858ef7a919c4a28dcc7ccf80c781a13/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 752c215f759f..987c5ba9baef 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.6`, `2.6`, `2`, `latest`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) +- [`2.7.1`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/c1e1312872285536925322c8cff99894080636f7/2.7/Dockerfile) +- [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.22`, `2.2`, `lts`](https://github.com/composer/docker/blob/355e5023b7b7831a7fe2db057070f8378f91ba35/2.2/Dockerfile) +- [`2.2.23`, `2.2`, `lts`](https://github.com/composer/docker/blob/08fa7ad05da303abd8ef7080b0676683bd89159b/2.2/Dockerfile) - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/9cac6280bc40c7d606f7fd2dfce0f77fefd056a8/1.10/Dockerfile) # Quick reference (cont.) From 0b46814ab5270f42cacdd3354e78ed9a07e2dd47 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Feb 2024 13:09:50 -0800 Subject: [PATCH 0947/2686] Run update.sh --- drupal/README.md | 24 ++++++++++++------------ openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 20 ++++++++++---------- solr/README.md | 20 +++++++++++--------- wordpress/README.md | 6 +++--- 5 files changed, 54 insertions(+), 52 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index fd69791d8b3a..624a5f03323e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.2-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.2-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.2-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.2-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.2-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.2-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.2-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.2-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.2-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.2-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.2-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.2-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.2-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.2-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.2-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.2`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.2-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.2-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.2-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.2-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.2-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.2-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.2-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.2-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.2-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.2-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.2-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.2-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.2-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.2-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/5927fe2ca636d1e3265496e12628e07afa205e80/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.3-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.3-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.3-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.3-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.3-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.3-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.3-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.3-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.3-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.3-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.3-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.3-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.3-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.3-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.3-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.3`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.3-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.3-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.3-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.3-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.3-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.3-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.3-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.3-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.3-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.3-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.3-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.3-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.3-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.3-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bullseye/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index d2a30ad25545..2c928fd696ab 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -51,15 +51,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`23-ea-8-jdk-windowsservercore-ltsc2022`, `23-ea-8-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`23-ea-8-jdk-windowsservercore-1809`, `23-ea-8-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) - [`23-ea-8-jdk-nanoserver-1809`, `23-ea-8-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-ea-34-jdk-oraclelinux8`, `22-ea-34-oraclelinux8`, `22-ea-jdk-oraclelinux8`, `22-ea-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-ea-34-jdk-oracle`, `22-ea-34-oracle`, `22-ea-jdk-oracle`, `22-ea-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux8/Dockerfile) -- [`22-ea-34-jdk-oraclelinux7`, `22-ea-34-oraclelinux7`, `22-ea-jdk-oraclelinux7`, `22-ea-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux7/Dockerfile) -- [`22-ea-34-jdk-bookworm`, `22-ea-34-bookworm`, `22-ea-jdk-bookworm`, `22-ea-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/bookworm/Dockerfile) -- [`22-ea-34-jdk-slim-bookworm`, `22-ea-34-slim-bookworm`, `22-ea-jdk-slim-bookworm`, `22-ea-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-ea-34-jdk-slim`, `22-ea-34-slim`, `22-ea-jdk-slim`, `22-ea-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/slim-bookworm/Dockerfile) -- [`22-ea-34-jdk-bullseye`, `22-ea-34-bullseye`, `22-ea-jdk-bullseye`, `22-ea-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/bullseye/Dockerfile) -- [`22-ea-34-jdk-slim-bullseye`, `22-ea-34-slim-bullseye`, `22-ea-jdk-slim-bullseye`, `22-ea-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/slim-bullseye/Dockerfile) -- [`22-ea-34-jdk-windowsservercore-ltsc2022`, `22-ea-34-windowsservercore-ltsc2022`, `22-ea-jdk-windowsservercore-ltsc2022`, `22-ea-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-ea-34-jdk-windowsservercore-1809`, `22-ea-34-windowsservercore-1809`, `22-ea-jdk-windowsservercore-1809`, `22-ea-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-ea-34-jdk-nanoserver-1809`, `22-ea-34-nanoserver-1809`, `22-ea-jdk-nanoserver-1809`, `22-ea-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux8/Dockerfile) +- [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux7/Dockerfile) +- [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/bookworm/Dockerfile) +- [`22-rc-jdk-slim-bookworm`, `22-rc-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-rc-jdk-slim`, `22-rc-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/slim-bookworm/Dockerfile) +- [`22-rc-jdk-bullseye`, `22-rc-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/bullseye/Dockerfile) +- [`22-rc-jdk-slim-bullseye`, `22-rc-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/slim-bullseye/Dockerfile) +- [`22-rc-jdk-windowsservercore-ltsc2022`, `22-rc-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-rc-jdk-windowsservercore-1809`, `22-rc-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22-rc-jdk-nanoserver-1809`, `22-rc-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -72,15 +72,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`23-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) - `23-ea-8-jdk-nanoserver`, `23-ea-8-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - [`23-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-ea-34-jdk`, `22-ea-34`, `22-ea-jdk`, `22-ea`, `22-jdk`, `22`: - - [`22-ea-34-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/oraclelinux8/Dockerfile) - - [`22-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-34-jdk-windowsservercore`, `22-ea-34-windowsservercore`, `22-ea-jdk-windowsservercore`, `22-ea-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-ea-34-jdk-nanoserver`, `22-ea-34-nanoserver`, `22-ea-jdk-nanoserver`, `22-ea-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0452178f11451463a71aaa460580130c447a4ed8/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: + - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux8/Dockerfile) + - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-rc-jdk-windowsservercore`, `22-rc-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22-rc-jdk-nanoserver`, `22-rc-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b1b4c87e2538..fcab41a67905 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/d5248649e2329a4890b0aedde00fef57b0af9b79/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/b0ae5b9125460bc3263ba24098f1c92dd4eaa60f/3.13-rc/ubuntu/Dockerfile) - [`3.13.0-rc.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d5248649e2329a4890b0aedde00fef57b0af9b79/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/b0ae5b9125460bc3263ba24098f1c92dd4eaa60f/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f8631e0a55a783b88e68386e6dfa8eda0b09a195/3.12/ubuntu/Dockerfile) +- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/ubuntu/Dockerfile) - [`3.12.12-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f8631e0a55a783b88e68386e6dfa8eda0b09a195/3.12/alpine/Dockerfile) +- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/alpine/Dockerfile) - [`3.12.12-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/f70c213395deb1c5d47b6e5b326a4b90f7269f0c/3.11/ubuntu/Dockerfile) +- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/ubuntu/Dockerfile) - [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/f70c213395deb1c5d47b6e5b326a4b90f7269f0c/3.11/alpine/Dockerfile) +- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/alpine/Dockerfile) - [`3.11.28-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/618b50698389a909a4e8be3695ca3e4c6bd4798c/3.10/ubuntu/Dockerfile) +- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ea3232ac02c1ddb8237983efc67178fc032700bc/3.10/ubuntu/Dockerfile) - [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/618b50698389a909a4e8be3695ca3e4c6bd4798c/3.10/alpine/Dockerfile) +- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ea3232ac02c1ddb8237983efc67178fc032700bc/3.10/alpine/Dockerfile) - [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/b7a458aced8e3765e9608bbe087b0972642fbeb9/3.9/ubuntu/Dockerfile) +- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/9ea1f85dd8c6c84c5d39eb7be881f07b54bbff84/3.9/ubuntu/Dockerfile) - [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/b7a458aced8e3765e9608bbe087b0972642fbeb9/3.9/alpine/Dockerfile) +- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/9ea1f85dd8c6c84c5d39eb7be881f07b54bbff84/3.9/alpine/Dockerfile) - [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index b8bcbaf40cf9..ee895680e66a 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,15 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.1`, `9.4`, `9`, `latest`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.4-slim/Dockerfile) -- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/9.0/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11-slim/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `latest`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5-slim/Dockerfile) +- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.4-slim/Dockerfile) +- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.3/Dockerfile) +- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.3-slim/Dockerfile) +- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.2/Dockerfile) +- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.1/Dockerfile) +- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.0/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index dfd827665c91..4596f6310e33 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -33,9 +33,9 @@ WARNING: - [`6.4.3-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.3-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/apache/Dockerfile) - [`6.4.3-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm/Dockerfile) - [`6.4.3-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm-alpine/Dockerfile) -- [`cli-2.9.0-php8.1`, `cli-2.9-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.1/alpine/Dockerfile) -- [`cli-2.9.0`, `cli-2.9`, `cli-2`, `cli`, `cli-2.9.0-php8.2`, `cli-2.9-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/480b5c35eb6382f4ae5581cfb9dfe54873d4f4a0/cli/php8.2/alpine/Dockerfile) -- [`cli-2.9.0-php8.3`, `cli-2.9-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/d1cc7e6a226cf23ade72b83990310980e7ac5c2b/cli/php8.3/alpine/Dockerfile) +- [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) +- [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) +- [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) # Quick reference (cont.) From ac8ab71f3547c8bfc0699b7bc626b6bf82db9c0f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Feb 2024 14:09:50 -0800 Subject: [PATCH 0948/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- mariadb/README.md | 17 ++++++++--------- postgres/README.md | 40 ++++++++++++++++++++-------------------- wordpress/README.md | 2 +- 5 files changed, 33 insertions(+), 34 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index d50c875e524b..70866bbe678b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.79.0`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3b8b216b2cba46e1d4df13f4c51bab95de8075d3/5/debian/Dockerfile) -- [`5.79.0-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3b8b216b2cba46e1d4df13f4c51bab95de8075d3/5/alpine/Dockerfile) +- [`5.79.1`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dc56e6a2fd5ae912bcc09d9ee5fd8cda19c7a52d/5/debian/Dockerfile) +- [`5.79.1-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dc56e6a2fd5ae912bcc09d9ee5fd8cda19c7a52d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index cca8e5bcd973..3ee8e1bc2112 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev2`, `3.0-dev`, `3.0-dev2-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/Dockerfile) -- [`3.0-dev2-alpine`, `3.0-dev-alpine`, `3.0-dev2-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/96f3826f13a598a4b303bb01489ca00da4908ddd/3.0/alpine/Dockerfile) +- [`3.0-dev3`, `3.0-dev`, `3.0-dev3-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/Dockerfile) +- [`3.0-dev3-alpine`, `3.0-dev-alpine`, `3.0-dev3-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/alpine/Dockerfile) - [`2.9.4`, `2.9`, `latest`, `2.9.4-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/Dockerfile) - [`2.9.4-alpine`, `2.9-alpine`, `alpine`, `2.9.4-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/alpine/Dockerfile) - [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index 26fc82475924..2d31c548d6cc 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,15 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.3.1-rc-jammy`, `11.3-rc-jammy`, `11.3.1-rc`, `11.3-rc`](https://github.com/MariaDB/mariadb-docker/blob/54a8a7fb16e45d3414b575e5d9d95e2972cf1f70/11.3/Dockerfile) -- [`11.2.2-jammy`, `11.2-jammy`, `11-jammy`, `jammy`, `11.2.2`, `11.2`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/54a8a7fb16e45d3414b575e5d9d95e2972cf1f70/11.2/Dockerfile) -- [`11.1.3-jammy`, `11.1-jammy`, `11.1.3`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/11.1/Dockerfile) -- [`11.0.4-jammy`, `11.0-jammy`, `11.0.4`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/11.0/Dockerfile) -- [`10.11.6-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.6`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.11/Dockerfile) -- [`10.10.7-jammy`, `10.10-jammy`, `10.10.7`, `10.10`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.10/Dockerfile) -- [`10.6.16-focal`, `10.6-focal`, `10.6.16`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.6/Dockerfile) -- [`10.5.23-focal`, `10.5-focal`, `10.5.23`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.5/Dockerfile) -- [`10.4.32-focal`, `10.4-focal`, `10.4.32`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/b1fff513e7b7d015c5cfb2d91ffc24d903d33434/10.4/Dockerfile) +- [`11.3.1-rc-jammy`, `11.3-rc-jammy`, `11.3.1-rc`, `11.3-rc`](https://github.com/MariaDB/mariadb-docker/blob/f64d0cd1176b78c8a42a219fdf0b5c54a12b3c6d/11.3/Dockerfile) +- [`11.2.3-jammy`, `11.2-jammy`, `11-jammy`, `jammy`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.2/Dockerfile) +- [`11.1.4-jammy`, `11.1-jammy`, `11.1.4`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.1/Dockerfile) +- [`11.0.5-jammy`, `11.0-jammy`, `11.0.5`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.0/Dockerfile) +- [`10.11.7-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.7`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.11/Dockerfile) +- [`10.6.17-focal`, `10.6-focal`, `10.6.17`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.6/Dockerfile) +- [`10.5.24-focal`, `10.5-focal`, `10.5.24`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.5/Dockerfile) +- [`10.4.33-focal`, `10.4-focal`, `10.4.33`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.4/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index add865a46776..915a5272afcc 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.1`, `16`, `latest`, `16.1-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/16/bookworm/Dockerfile) -- [`16.1-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/16/bullseye/Dockerfile) -- [`16.1-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.1-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/16/alpine3.19/Dockerfile) -- [`16.1-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/16/alpine3.18/Dockerfile) -- [`15.5`, `15`, `15.5-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/15/bookworm/Dockerfile) -- [`15.5-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/15/bullseye/Dockerfile) -- [`15.5-alpine3.19`, `15-alpine3.19`, `15.5-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/15/alpine3.19/Dockerfile) -- [`15.5-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/15/alpine3.18/Dockerfile) -- [`14.10`, `14`, `14.10-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/14/bookworm/Dockerfile) -- [`14.10-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/14/bullseye/Dockerfile) -- [`14.10-alpine3.19`, `14-alpine3.19`, `14.10-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/14/alpine3.19/Dockerfile) -- [`14.10-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/14/alpine3.18/Dockerfile) -- [`13.13`, `13`, `13.13-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/13/bookworm/Dockerfile) -- [`13.13-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/13/bullseye/Dockerfile) -- [`13.13-alpine3.19`, `13-alpine3.19`, `13.13-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/13/alpine3.19/Dockerfile) -- [`13.13-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/13/alpine3.18/Dockerfile) -- [`12.17`, `12`, `12.17-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/12/bookworm/Dockerfile) -- [`12.17-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/d416768b1a7f03919b9cf0fef6adc9dcad937888/12/bullseye/Dockerfile) -- [`12.17-alpine3.19`, `12-alpine3.19`, `12.17-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/12/alpine3.19/Dockerfile) -- [`12.17-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/ce5bf6e7eb8f339b2a8561bf8fb5fe5d4e8c96aa/12/alpine3.18/Dockerfile) +- [`16.2`, `16`, `latest`, `16.2-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/1424abf76f421d6f7bf933d9e42bbbed866fae3a/16/bookworm/Dockerfile) +- [`16.2-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/1424abf76f421d6f7bf933d9e42bbbed866fae3a/16/bullseye/Dockerfile) +- [`16.2-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.2-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.19/Dockerfile) +- [`16.2-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.18/Dockerfile) +- [`15.6`, `15`, `15.6-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/34d4c14c235806e57fdd5eaf197f718fccee93b0/15/bookworm/Dockerfile) +- [`15.6-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/34d4c14c235806e57fdd5eaf197f718fccee93b0/15/bullseye/Dockerfile) +- [`15.6-alpine3.19`, `15-alpine3.19`, `15.6-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.19/Dockerfile) +- [`15.6-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.18/Dockerfile) +- [`14.11`, `14`, `14.11-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/901df4c333940b96e1b438f9bd6dcd0f1c534116/14/bookworm/Dockerfile) +- [`14.11-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/901df4c333940b96e1b438f9bd6dcd0f1c534116/14/bullseye/Dockerfile) +- [`14.11-alpine3.19`, `14-alpine3.19`, `14.11-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.19/Dockerfile) +- [`14.11-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.18/Dockerfile) +- [`13.14`, `13`, `13.14-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a2de6cd9b0e9ad68b03148241195e15137246c29/13/bookworm/Dockerfile) +- [`13.14-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/a2de6cd9b0e9ad68b03148241195e15137246c29/13/bullseye/Dockerfile) +- [`13.14-alpine3.19`, `13-alpine3.19`, `13.14-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.19/Dockerfile) +- [`13.14-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.18/Dockerfile) +- [`12.18`, `12`, `12.18-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/6e883d9b1efe8479bca7ad0eab354a95fee46786/12/bookworm/Dockerfile) +- [`12.18-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/6e883d9b1efe8479bca7ad0eab354a95fee46786/12/bullseye/Dockerfile) +- [`12.18-alpine3.19`, `12-alpine3.19`, `12.18-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.19/Dockerfile) +- [`12.18-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4596f6310e33..c8e3bddb6a25 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -79,7 +79,7 @@ The following environment variables are also honored for configuring your WordPr - `-e WORDPRESS_TABLE_PREFIX=...` - `-e WORDPRESS_AUTH_KEY=...`, `-e WORDPRESS_SECURE_AUTH_KEY=...`, `-e WORDPRESS_LOGGED_IN_KEY=...`, `-e WORDPRESS_NONCE_KEY=...`, `-e WORDPRESS_AUTH_SALT=...`, `-e WORDPRESS_SECURE_AUTH_SALT=...`, `-e WORDPRESS_LOGGED_IN_SALT=...`, `-e WORDPRESS_NONCE_SALT=...` (default to unique random SHA1s, but only if other environment variable configuration is provided) - `-e WORDPRESS_DEBUG=1` (defaults to disabled, non-empty value will enable `WP_DEBUG` in `wp-config.php`) -- `-e WORDPRESS_CONFIG_EXTRA=...` (defaults to nothing, non-empty value will be embedded verbatim inside `wp-config.php` -- especially useful for applying extra configuration values this image does not provide by default such as `WP_ALLOW_MULTISITE`; see [docker-library/wordpress#142](https://github.com/docker-library/wordpress/pull/142) for more details) +- `-e WORDPRESS_CONFIG_EXTRA=...` (defaults to nothing, the value will be evaluated by the `eval()` function in `wp-config.php`. This variable is especially useful for applying extra configuration values this image does not provide by default such as `WP_ALLOW_MULTISITE`; see [docker-library/wordpress#142](https://github.com/docker-library/wordpress/pull/142) for more details) The `WORDPRESS_DB_NAME` needs to already exist on the given MySQL server; it will not be created by the `wordpress` container. From 9020f3ed132ffcc91f47c2c93f3ef4d14954cfbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Feb 2024 15:19:25 -0800 Subject: [PATCH 0949/2686] Run update.sh --- traefik/README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 0438a33a701f..47dda01d59d3 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -27,12 +27,9 @@ WARNING: - [`v3.0.0-beta5-windowsservercore-ltsc2022`, `3.0.0-beta5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/servercore-ltsc2022/Dockerfile) - [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) - [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) -- [`v2.11.0-rc2-windowsservercore-ltsc2022`, `2.11.0-rc2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.0-rc2-windowsservercore-1809`, `2.11.0-rc2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/windows/1809/Dockerfile) -- [`v2.11.0-rc2`, `2.11.0-rc2`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/17a3fad865ef2fc8ddd0fe25dce0a470f0fe78a4/alpine/Dockerfile) -- [`v2.10.7-windowsservercore-ltsc2022`, `2.10.7-windowsservercore-ltsc2022`, `v2.10-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `saintmarcelin-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/servercore-ltsc2022/Dockerfile) -- [`v2.10.7-windowsservercore-1809`, `2.10.7-windowsservercore-1809`, `v2.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `saintmarcelin-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/windows/1809/Dockerfile) -- [`v2.10.7`, `2.10.7`, `v2.10`, `2.10`, `saintmarcelin`, `latest`](https://github.com/traefik/traefik-library-image/blob/274d14183ad37ff987c85fb0f85e9f862025c297/alpine/Dockerfile) +- [`v2.11.0-windowsservercore-ltsc2022`, `2.11.0-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.0-windowsservercore-1809`, `2.11.0-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/1809/Dockerfile) +- [`v2.11.0`, `2.11.0`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/alpine/Dockerfile) # Quick reference (cont.) From d8875ff744c5bef1109517ecbf5b70714afd49c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Feb 2024 16:21:57 -0800 Subject: [PATCH 0950/2686] Run update.sh --- debian/README.md | 60 +++++++++++++++++++++++------------------------ traefik/README.md | 2 +- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/debian/README.md b/debian/README.md index 6b3f69e8b665..46eb57b33ea7 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240130`, `12.4`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240130-slim`, `12.4-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240130`, `11.8`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240130-slim`, `11.8-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240130`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20240130-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/rc-buggy/Dockerfile) -- [`sid`, `sid-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/sid/Dockerfile) -- [`sid-slim`, `sid-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/sid/slim/Dockerfile) -- [`stable`, `stable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/stable/slim/Dockerfile) -- [`testing`, `testing-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240130`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240130-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/acf606d9f8b010b8997897c8c0ba065a93fb9f65/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240211`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240211-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240211`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240211-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240211`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20240211-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/rc-buggy/Dockerfile) +- [`sid`, `sid-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/sid/Dockerfile) +- [`sid-slim`, `sid-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/sid/slim/Dockerfile) +- [`stable`, `stable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/slim/Dockerfile) +- [`testing`, `testing-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 47dda01d59d3..3ddab7b3211a 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -37,7 +37,7 @@ WARNING: [https://github.com/traefik/traefik-library-image/issues](https://github.com/traefik/traefik-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/traefik/), [`arm32v6`](https://hub.docker.com/r/arm32v6/traefik/), [`arm64v8`](https://hub.docker.com/r/arm64v8/traefik/), [`s390x`](https://hub.docker.com/r/s390x/traefik/), [`windows-amd64`](https://hub.docker.com/r/winamd64/traefik/) + [`amd64`](https://hub.docker.com/r/amd64/traefik/), [`arm32v6`](https://hub.docker.com/r/arm32v6/traefik/), [`arm64v8`](https://hub.docker.com/r/arm64v8/traefik/), [`ppc64le`](https://hub.docker.com/r/ppc64le/traefik/), [`s390x`](https://hub.docker.com/r/s390x/traefik/), [`windows-amd64`](https://hub.docker.com/r/winamd64/traefik/) - **Published image artifact details**: [repo-info repo's `repos/traefik/` directory](https://github.com/docker-library/repo-info/blob/master/repos/traefik) ([history](https://github.com/docker-library/repo-info/commits/master/repos/traefik)) From f254f585ba82d2e19d794100dd7bca71fb1c02e7 Mon Sep 17 00:00:00 2001 From: Dmitry Bulashev Date: Fri, 9 Feb 2024 23:23:55 +0500 Subject: [PATCH 0951/2686] postgres: update README.md * extended example stack.yml (set shared memory size) * fix incorrect link --- postgres/content.md | 2 +- postgres/stack.yml | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/postgres/content.md b/postgres/content.md index 0f98b18ed2a0..ee35db720709 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -243,7 +243,7 @@ The three easiest ways to get around this: If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker-compose`, that start several containers simultaneously. -Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/#shm_size). +Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). ## Where to Store Data diff --git a/postgres/stack.yml b/postgres/stack.yml index 3994b0c470c2..94f8c78c1ff6 100644 --- a/postgres/stack.yml +++ b/postgres/stack.yml @@ -1,11 +1,19 @@ # Use postgres/example user/password credentials -version: '3.1' +version: '3.9' services: db: image: postgres restart: always + # set shared memory limit when using docker-compose + shm_size: 128mb + # or set shared memory limit when deploy via swarm stack + #volumes: + # - type: tmpfs + # target: /dev/shm + # tmpfs: + # size: 134217728 # 128*2^20 bytes = 128Mb environment: POSTGRES_PASSWORD: example From 8b616f1474e40818b80a6d420a76b18ea612cda7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Feb 2024 17:10:05 -0800 Subject: [PATCH 0952/2686] Run update.sh --- ibmjava/README.md | 6 +++--- kong/README.md | 3 ++- oraclelinux/README.md | 16 ++++++++-------- photon/README.md | 2 +- solr/README.md | 17 ++++++----------- traefik/README.md | 6 +++--- xwiki/README.md | 6 +++--- 7 files changed, 26 insertions(+), 30 deletions(-) diff --git a/ibmjava/README.md b/ibmjava/README.md index 77c4dd13a8ab..95d55221d5ab 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/f4a01abd4ded9aae1455ec1022fb6471d4954291/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index 64a75fda9447..5c28766f55d8 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) +- [`3.6.0-ubuntu`, `3.6-ubuntu`, `3.6.0`, `3.6`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/3d393c74fa0d05df0e2493f8e44885e468a368d2/ubuntu/Dockerfile) +- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) - [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 44371f8b7800..eec10d9a9143 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c039cbef4f40abcfe75b0254188ad75a2169b895/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 27f6721eaf45..decee30abe2e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240203`, `latest`](https://github.com/vmware/photon-docker-image/blob/31b7698e757c672214b240c4cd1f9c73fc2b1533/docker/Dockerfile) +- [`5.0`, `5.0-20240213`, `latest`](https://github.com/vmware/photon-docker-image/blob/99904eea578aacf7ebd4c2457aec216ebfe4bcd8/docker/Dockerfile) - [`4.0`, `4.0-20240205`](https://github.com/vmware/photon-docker-image/blob/ac0e35fe830e612d7524554cdaa80b7698a4f239/docker/Dockerfile) - [`3.0`, `3.0-20240205`](https://github.com/vmware/photon-docker-image/blob/fa179b135b85f15355ca9717f1870b12e7a7bad7/docker/Dockerfile) diff --git a/solr/README.md b/solr/README.md index ee895680e66a..5fb6c252b660 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,17 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.5.0`, `9.5`, `9`, `latest`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5-slim/Dockerfile) -- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.4-slim/Dockerfile) -- [`9.3.0`, `9.3`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.3/Dockerfile) -- [`9.3.0-slim`, `9.3-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.3-slim/Dockerfile) -- [`9.2.1`, `9.2`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.2/Dockerfile) -- [`9.1.1`, `9.1`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.1/Dockerfile) -- [`9.0.0`, `9.0`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.0/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/8.11-slim/Dockerfile) +- [`9.5.0`, `9.5`, `9`, `latest`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.5-slim/Dockerfile) +- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.4-slim/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 3ddab7b3211a..6e3beca3b72e 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-beta5-windowsservercore-ltsc2022`, `3.0.0-beta5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-beta5-windowsservercore-1809`, `3.0.0-beta5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/windows/1809/Dockerfile) -- [`v3.0.0-beta5`, `3.0.0-beta5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/66250e268eb9c8d592cc85e153d388dca705c7ee/alpine/Dockerfile) +- [`v3.0.0-rc1-windowsservercore-ltsc2022`, `3.0.0-rc1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-rc1-windowsservercore-1809`, `3.0.0-rc1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/windows/1809/Dockerfile) +- [`v3.0.0-rc1`, `3.0.0-rc1`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/alpine/Dockerfile) - [`v2.11.0-windowsservercore-ltsc2022`, `2.11.0-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/servercore-ltsc2022/Dockerfile) - [`v2.11.0-windowsservercore-1809`, `2.11.0-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/1809/Dockerfile) - [`v2.11.0`, `2.11.0`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 6920c36e0d51..31187c09b476 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,9 +30,9 @@ WARNING: - [`15`, `15.10`, `15.10.6`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.20`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.20-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mysql-tomcat/Dockerfile) -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.20-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/postgres-tomcat/Dockerfile) -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.20-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c0c657c87f969d33cec32d9884b64a93f9352b50/14/mariadb-tomcat/Dockerfile) +- [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) +- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) +- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) - [`15.5`, `15.5.5`, `15.5-mysql-tomcat`, `15.5.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mysql-tomcat/Dockerfile) - [`15.5-postgres-tomcat`, `15.5.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/postgres-tomcat/Dockerfile) - [`15.5-mariadb-tomcat`, `15.5.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mariadb-tomcat/Dockerfile) From d7068b848f84508f5ecfb0dd1493b29a21bdcd0e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Feb 2024 11:09:45 -0800 Subject: [PATCH 0953/2686] Run update.sh --- bash/README.md | 2 +- postgres/README.md | 14 +++++++++++--- wordpress/README.md | 9 +++++++++ 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/bash/README.md b/bash/README.md index e8894227f74a..71bef866a667 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240202`, `devel`, `devel-20240202-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/af207d7a2d6dd7dffba1cfde7f231cbee8d4ddab/devel/Dockerfile) +- [`devel-20240209`, `devel`, `devel-20240209-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/9a5be2bc9807616a717893593b8ab24224428059/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 915a5272afcc..65a2c1fc6486 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -108,13 +108,21 @@ Example `docker-compose.yml` for `postgres`: ```yaml # Use postgres/example user/password credentials -version: '3.1' +version: '3.9' services: db: image: postgres restart: always + # set shared memory limit when using docker-compose + shm_size: 128mb + # or set shared memory limit when deploy via swarm stack + #volumes: + # - type: tmpfs + # target: /dev/shm + # tmpfs: + # size: 134217728 # 128*2^20 bytes = 128Mb environment: POSTGRES_PASSWORD: example @@ -125,7 +133,7 @@ services: - 8080:8080 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/postgres/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/f254f585ba82d2e19d794100dd7bca71fb1c02e7/postgres/stack.yml) Run `docker stack deploy -c stack.yml postgres` (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). @@ -332,7 +340,7 @@ The three easiest ways to get around this: If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker-compose`, that start several containers simultaneously. -Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/#shm_size). +Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). ## Where to Store Data diff --git a/wordpress/README.md b/wordpress/README.md index c8e3bddb6a25..4f2f1d4971cf 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) +- [`beta-6.5-beta1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-beta1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-beta1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-beta1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-beta1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-beta1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-beta1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-beta1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-beta1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From fb37b753f40c99f65348bc6590e11540d281cc49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Feb 2024 12:18:34 -0800 Subject: [PATCH 0954/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 80 +++++++++++++++++------------------ nginx/README.md | 10 ++--- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 7e4f86656b7e..2cac2f3e0eaf 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`open-8u392-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u392-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u392-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u392-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.21_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.9_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/centos/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/centos/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.1_12-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/centos/Dockerfile.open.releases.full) +- [`open-8u402-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u402-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u402-b06-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u402-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u402-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u402-b06-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.22_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.10_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/centos/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/centos/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.2_13-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u392-b08-jdk`, `open-8-jdk`: - - [`open-8u392-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u392-b08-jre`, `open-8-jre`: - - [`open-8u392-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.21_9-jdk`, `open-11-jdk`: - - [`open-11.0.21_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.21_9-jre`, `open-11-jre`: - - [`open-11.0.21_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.9_9-jdk`, `open-17-jdk`: - - [`open-17.0.9_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.9_9-jre`, `open-17-jre`: - - [`open-17.0.9_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.1_12-jdk`, `open-21-jdk`: - - [`open-21.0.1_12-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.1_12-jre`, `open-21-jre`: - - [`open-21.0.1_12-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/af604984b826039686128bfd2333f0e0091570e1/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u402-b06-jdk`, `open-8-jdk`: + - [`open-8u402-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u402-b06-jre`, `open-8-jre`: + - [`open-8u402-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.22_7-jdk`, `open-11-jdk`: + - [`open-11.0.22_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.22_7-jre`, `open-11-jre`: + - [`open-11.0.22_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.10_7-jdk`, `open-17-jdk`: + - [`open-17.0.10_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.10_7-jre`, `open-17-jre`: + - [`open-17.0.10_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.2_13-jdk`, `open-21-jdk`: + - [`open-21.0.2_13-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.2_13-jre`, `open-21-jre`: + - [`open-21.0.2_13-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index 2af6953aa957..14613fd16fe2 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.3`, `mainline`, `1`, `1.25`, `latest`, `1.25.3-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/debian/Dockerfile) -- [`1.25.3-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.3-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/debian-perl/Dockerfile) -- [`1.25.3-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.3-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine/Dockerfile) -- [`1.25.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.3-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine-perl/Dockerfile) -- [`1.25.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.3-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/4bf0763f4977fff7e9648add59e0540088f3ca9f/mainline/alpine-slim/Dockerfile) +- [`1.25.4`, `mainline`, `1`, `1.25`, `latest`, `1.25.4-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian/Dockerfile) +- [`1.25.4-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.4-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian-perl/Dockerfile) +- [`1.25.4-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.4-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine/Dockerfile) +- [`1.25.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.4-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-perl/Dockerfile) +- [`1.25.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.4-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-slim/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) From d08f647a128870cf8fbb1205b5f023333b085d0a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Feb 2024 18:19:00 -0800 Subject: [PATCH 0955/2686] Run update.sh --- aerospike/README.md | 4 +- cassandra/README.md | 2 +- clojure/README.md | 146 ++++++++++++++++++++++---------------------- julia/README.md | 28 ++++----- 4 files changed, 90 insertions(+), 90 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index a9e467290ccf..a65ad3f6c4e1 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.3`, `ee-7.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/e0ed668291dba3144e51546c3b80e9854cc1db24/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.3`, `ce-7.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/e0ed668291dba3144e51546c3b80e9854cc1db24/community/debian12/Dockerfile) +- [`ee-7.0.0.4`, `ee-7.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/2870ae25bbbb0873e1b0053c2c04817762b50dc5/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.4`, `ce-7.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/2870ae25bbbb0873e1b0053c2c04817762b50dc5/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/cassandra/README.md b/cassandra/README.md index 6afdddddd4f5..865b8d50ffea 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/5.0/Dockerfile) -- [`4.1.3`, `4.1`, `4`, `latest`, `4.1.3-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/4.1/Dockerfile) +- [`4.1.4`, `4.1`, `4`, `latest`, `4.1.4-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/4ad6334c48772ac0d795d777c1ad9a6b37b85eb3/4.1/Dockerfile) - [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/6aa49ecdcc9150e03abb379e258e85401989d91b/4.0/Dockerfile) - [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.11/Dockerfile) - [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.0/Dockerfile) diff --git a/clojure/README.md b/clojure/README.md index 288c13f681a2..98b5f6cc75fb 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,79 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.11.1-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.1-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.1-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.1-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.1-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.1-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.1`, `temurin-8-lein-2.11.1-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.11.1-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.1-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.1-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.1-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.1-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.1-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.1`, `temurin-11-lein-2.11.1-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.11.1-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.1-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.1-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.1-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.1-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.1-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.1`, `temurin-17-lein-2.11.1-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.1-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.1`, `lein-2.11.1-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.1`, `temurin-21-lein-2.11.1-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.1-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.1-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.1-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.1-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.1-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.1-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.1-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5746ecb32015be52aede7a5f9d7632ca46478032/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 9d337ed14ad8..7ec59b427e82 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`1.10.0-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bookworm/Dockerfile) -- [`1.10.0-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bullseye/Dockerfile) -- [`1.10.0-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.0-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/alpine3.19/Dockerfile) -- [`1.10.0-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/alpine3.18/Dockerfile) -- [`1.10.0-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.0-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.1-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bookworm/Dockerfile) +- [`1.10.1-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bullseye/Dockerfile) +- [`1.10.1-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.1-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/alpine3.19/Dockerfile) +- [`1.10.1-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/alpine3.18/Dockerfile) +- [`1.10.1-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.1-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) @@ -43,13 +43,13 @@ WARNING: ## Shared Tags -- `1.10.0`, `1.10`, `1`, `latest`: - - [`1.10.0-bookworm`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/bookworm/Dockerfile) - - [`1.10.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.0-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.10.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f64c59e80c3aff758fcd6768c1aa03236154e6c/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.1`, `1.10`, `1`, `latest`: + - [`1.10.1-bookworm`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bookworm/Dockerfile) + - [`1.10.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.1-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) @@ -64,7 +64,7 @@ WARNING: [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) + [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) - **Published image artifact details**: [repo-info repo's `repos/julia/` directory](https://github.com/docker-library/repo-info/blob/master/repos/julia) ([history](https://github.com/docker-library/repo-info/commits/master/repos/julia)) From 66456c6dcd07e1d982d299d1309b9548fc084dee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Feb 2024 10:09:49 -0800 Subject: [PATCH 0956/2686] Run update.sh --- dart/README.md | 3 +-- influxdb/README.md | 32 ++++++++++++++++---------------- rabbitmq/README.md | 8 ++++---- swipl/README.md | 4 ++-- 4 files changed, 23 insertions(+), 24 deletions(-) diff --git a/dart/README.md b/dart/README.md index 65c9d4c6b773..3a71b4e2fd4c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.6-sdk`, `3.2-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.2.6`, `3.2`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/56883e19787d560ee38bb7b6ec5102259b99a0ea/stable/bookworm/Dockerfile) -- [`3.3.0-279.3.beta-sdk`, `beta-sdk`, `3.3.0-279.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/56883e19787d560ee38bb7b6ec5102259b99a0ea/beta/bookworm/Dockerfile) +- [`3.3.0-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.0`, `3.3`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/6c1fea64056a95f494b59ac87d283f96d3f62ab3/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 412e5bbc1ad7..e8b46ed2cf4d 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/43ef33abc06dd88c28c44ae2cd1850cd0aaed9d1/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/alpine/Dockerfile) +- [`2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/Dockerfile) +- [`2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index fcab41a67905..fc1c0c79fb37 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.4`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/b0ae5b9125460bc3263ba24098f1c92dd4eaa60f/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-rc.4-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/b0ae5b9125460bc3263ba24098f1c92dd4eaa60f/3.13-rc/alpine/Dockerfile) -- [`3.13.0-rc.4-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) +- [`3.13.0-rc.5`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/705900f858d1705bd4ce0ba329b552e97807d4c4/3.13-rc/ubuntu/Dockerfile) +- [`3.13.0-rc.5-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) +- [`3.13.0-rc.5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/705900f858d1705bd4ce0ba329b552e97807d4c4/3.13-rc/alpine/Dockerfile) +- [`3.13.0-rc.5-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) - [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/ubuntu/Dockerfile) - [`3.12.12-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/alpine/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 265d93868138..1e0432928fcf 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.0`](https://github.com/SWI-Prolog/docker-swipl/blob/936bb0ae8e9735e1225b5bbb819dcd2c1d6aca34/9.3.0/bookworm/Dockerfile) -- [`stable`, `9.2.0`](https://github.com/SWI-Prolog/docker-swipl/blob/936bb0ae8e9735e1225b5bbb819dcd2c1d6aca34/9.2.0/bookworm/Dockerfile) +- [`latest`, `9.3.1`](https://github.com/SWI-Prolog/docker-swipl/blob/407be53af3e43f900aabe6f42cef759705d56dab/9.3.1/bookworm/Dockerfile) +- [`stable`, `9.2.1`](https://github.com/SWI-Prolog/docker-swipl/blob/407be53af3e43f900aabe6f42cef759705d56dab/9.2.1/bookworm/Dockerfile) # Quick reference (cont.) From be92b66c4ae406bcbfd99151dc69f7f1322712ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Feb 2024 15:10:32 -0800 Subject: [PATCH 0957/2686] Run update.sh --- node/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/node/README.md b/node/README.md index d0b05dc8f896..e9be30d43380 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.1-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.1-alpine`, `21.6.1-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.1`, `21.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.1-bookworm-slim`, `21.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.6-bullseye`, `21.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f23e4825c88d41d6c46f9911f582ac6cc966abca/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.0-alpine`, `20.11.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.0`, `20.11.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.11-bookworm-slim`, `20.11-slim`, `20.11.0-bookworm-slim`, `20.11.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.11-bullseye`, `20.11.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.11-bullseye-slim`, `20.11.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.11-buster`, `20.11.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/buster/Dockerfile) -- [`20-buster-slim`, `20.11-buster-slim`, `20.11.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/ab5769dc69feb4007d9aafb03316ea0e3edb4227/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.19-alpine3.18`, `18.19.0-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.19-alpine`, `18.19-alpine3.19`, `18.19.0-alpine`, `18.19.0-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/5bb305299145aa996bd3e0a701e5a3c3d587ad82/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.0`, `18.19.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.19-bookworm-slim`, `18.19-slim`, `18.19.0-bookworm-slim`, `18.19.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.19-bullseye`, `18.19.0-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.19-bullseye-slim`, `18.19.0-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.19-buster`, `18.19.0-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/buster/Dockerfile) -- [`18-buster-slim`, `18.19-buster-slim`, `18.19.0-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/f416b53801a9d49d6ce6b2c038c8bc9ed93625dd/18/buster-slim/Dockerfile) +- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.2-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.2-alpine`, `21.6.2-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.2`, `21.6.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.2-bookworm-slim`, `21.6.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.6-bullseye`, `21.6.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bullseye-slim/Dockerfile) +- [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.1-alpine`, `20.11.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.1`, `20.11.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.11-bookworm-slim`, `20.11-slim`, `20.11.1-bookworm-slim`, `20.11.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.11-bullseye`, `20.11.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.11-bullseye-slim`, `20.11.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.11-buster`, `20.11.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/buster/Dockerfile) +- [`20-buster-slim`, `20.11-buster-slim`, `20.11.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.19-alpine3.18`, `18.19.1-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.19-alpine`, `18.19-alpine3.19`, `18.19.1-alpine`, `18.19.1-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.1`, `18.19.1-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.19-bookworm-slim`, `18.19-slim`, `18.19.1-bookworm-slim`, `18.19.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.19-bullseye`, `18.19.1-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.19-bullseye-slim`, `18.19.1-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.19-buster`, `18.19.1-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/buster/Dockerfile) +- [`18-buster-slim`, `18.19-buster-slim`, `18.19.1-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/buster-slim/Dockerfile) # Quick reference (cont.) From 8e85bfb01b139c40b04ec184928bacab5f524b08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Feb 2024 17:09:41 -0800 Subject: [PATCH 0958/2686] Run update.sh --- ubuntu/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index 49de07540fbf..f5b0d427af53 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20240123`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240123-fb52992f&id=fb52992ff7e59e29008a6e1fa583207d2f36b9fe) -- [`22.04`, `jammy-20240125`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240125-09015311&id=090153117a4ac607556c868f91937e9a4b085697) +- [`22.04`, `jammy-20240212`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240212-9e1d1f07&id=9e1d1f0733aa861ce47cb2ee80eef388bb897f90) - [`23.10`, `mantic-20240122`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240122-07aef2de&id=07aef2de3835f07015f042626ae71721ca4f6bd1) -- [`24.04`, `noble-20240127.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240127.1-3b522bb2&id=3b522bb20a4c6b1895481998458cf50d761e2822) +- [`24.04`, `noble-20240212`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240212-8a650c60&id=8a650c60e99c96a81eb4c7d72a8a7a272ba0f626) # Quick reference (cont.) From 0dc580163f8feea881ada29980ef336017a75334 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Feb 2024 11:10:02 -0800 Subject: [PATCH 0959/2686] Run update.sh --- haskell/README.md | 20 ++++++++++---------- nats/README.md | 38 +++++++++++++++++++------------------- odoo/README.md | 6 +++--- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index b4ea76720194..0458e128fc06 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.8/buster/Dockerfile) -- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.8/slim-buster/Dockerfile) -- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.6/buster/Dockerfile) -- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.4/slim-buster/Dockerfile) -- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.2/buster/Dockerfile) -- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.2/slim-buster/Dockerfile) -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.0/buster/Dockerfile) -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/7ea63bc47c3e05e0ded9463c2f965b06f33c6209/9.0/slim-buster/Dockerfile) +- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.8/buster/Dockerfile) +- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.8/slim-buster/Dockerfile) +- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/buster/Dockerfile) +- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.4/slim-buster/Dockerfile) +- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.2/buster/Dockerfile) +- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.2/slim-buster/Dockerfile) +- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.0/buster/Dockerfile) +- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.0/slim-buster/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 2d662b6d9bb2..c2cd884f0acf 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.10-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.10-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/alpine3.19/Dockerfile) -- [`2.10.10-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.10-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/scratch/Dockerfile) -- [`2.10.10-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.10-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.11-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.11-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/alpine3.19/Dockerfile) +- [`2.10.11-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.11-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/scratch/Dockerfile) +- [`2.10.11-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.11-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/alpine3.18/Dockerfile) +- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/scratch/Dockerfile) +- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.10`, `2.10`, `2`, `latest`: - - [`2.10.10-scratch`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/scratch/Dockerfile) - - [`2.10.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.10-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.10-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.11`, `2.10`, `2`, `latest`: + - [`2.10.11-scratch`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/scratch/Dockerfile) + - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.11-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.11-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.11-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) - `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/scratch/Dockerfile) + - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/scratch/Dockerfile) - `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8a2193806026b10571ca25b2bd7b8b775b035283/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) @@ -59,7 +59,7 @@ WARNING: [https://github.com/nats-io/nats-docker/issues](https://github.com/nats-io/nats-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nats/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats/), [`s390x`](https://hub.docker.com/r/s390x/nats/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats/) + [`amd64`](https://hub.docker.com/r/amd64/nats/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nats/), [`s390x`](https://hub.docker.com/r/s390x/nats/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats/) - **Published image artifact details**: [repo-info repo's `repos/nats/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nats) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nats)) diff --git a/odoo/README.md b/odoo/README.md index 56d23c63e082..c2b566800423 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/bcfe0ba461370cc14a98ac559c77a6767c2aaa1f/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/15.0/Dockerfile) # Quick reference (cont.) From e116a0c3900f796f84e4a58995e8039c67b15b26 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Feb 2024 12:09:51 -0800 Subject: [PATCH 0960/2686] Run update.sh --- docker/README.md | 20 +++++------ haproxy/README.md | 8 ++--- php/README.md | 84 ++++++++++++++++------------------------------ python/README.md | 30 ++++++++--------- rabbitmq/README.md | 8 ++--- 5 files changed, 61 insertions(+), 89 deletions(-) diff --git a/docker/README.md b/docker/README.md index 3db8ab210d34..01fbaccab9fc 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/cli/Dockerfile) +- [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/cli/Dockerfile) - [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind/Dockerfile) - [`25.0.3-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind-rootless/Dockerfile) - [`25.0.3-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) -- [`25.0.3-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.3-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/cli/Dockerfile) +- [`25.0.3-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.3-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) - [`24.0.9-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `25.0.3-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9a2c4c456c283e41fdac33e2371b730f7515e75e/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 3ee8e1bc2112..c272a8131a83 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,10 +26,10 @@ WARNING: - [`3.0-dev3`, `3.0-dev`, `3.0-dev3-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/Dockerfile) - [`3.0-dev3-alpine`, `3.0-dev-alpine`, `3.0-dev3-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/alpine/Dockerfile) -- [`2.9.4`, `2.9`, `latest`, `2.9.4-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/Dockerfile) -- [`2.9.4-alpine`, `2.9-alpine`, `alpine`, `2.9.4-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/dda21d77a2e1e9e7273cd0f3b829c975fc367841/2.9/alpine/Dockerfile) -- [`2.8.5`, `2.8`, `lts`, `2.8.5-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/Dockerfile) -- [`2.8.5-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.5-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.8/alpine/Dockerfile) +- [`2.9.5`, `2.9`, `latest`, `2.9.5-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/9bb65c75912f95579f06e1554ca59ed80aac685d/2.9/Dockerfile) +- [`2.9.5-alpine`, `2.9-alpine`, `alpine`, `2.9.5-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/9bb65c75912f95579f06e1554ca59ed80aac685d/2.9/alpine/Dockerfile) +- [`2.8.6`, `2.8`, `lts`, `2.8.6-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/Dockerfile) +- [`2.8.6-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.6-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) - [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/alpine/Dockerfile) - [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/Dockerfile) diff --git a/php/README.md b/php/README.md index 713955183b80..332b50ec2533 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.3RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.3RC1-bookworm`, `8.3-rc-bookworm`, `8.3.3RC1-cli`, `8.3-rc-cli`, `8.3.3RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.3RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.3RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.3RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.3RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.3RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.3RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.3RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.3RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.3RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.3RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.3RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.3RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.3RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.3RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.3RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.3RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.3RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.3RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.3RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.3RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.3RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.3RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.3RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/1b19a6ccdad8efc4dcd5a61121bd7031dfb34d45/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.2-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.2-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.2-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.2`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/cli/Dockerfile) -- [`8.3.2-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.2-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/apache/Dockerfile) -- [`8.3.2-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.2-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/fpm/Dockerfile) -- [`8.3.2-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.2-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bookworm/zts/Dockerfile) -- [`8.3.2-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.2-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/cli/Dockerfile) -- [`8.3.2-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/apache/Dockerfile) -- [`8.3.2-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/fpm/Dockerfile) -- [`8.3.2-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/bullseye/zts/Dockerfile) -- [`8.3.2-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.2-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.2-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.2-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.2-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.2-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.2-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.2-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.2-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.2-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.2-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.2-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/9873aea73b94d7f66e06e912f8b4c45abba58930/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.16RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.16RC1-bookworm`, `8.2-rc-bookworm`, `8.2.16RC1-cli`, `8.2-rc-cli`, `8.2.16RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.16RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.16RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.16RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.16RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.16RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.16RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.16RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.16RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.16RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.16RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.16RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.16RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.16RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.16RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.16RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.16RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.16RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.16RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.16RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.16RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.16RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.16RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.16RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/35421c3a31d17a27f81a2024f313293e63fe72e8/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.15-cli-bookworm`, `8.2-cli-bookworm`, `8.2.15-bookworm`, `8.2-bookworm`, `8.2.15-cli`, `8.2-cli`, `8.2.15`, `8.2`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/cli/Dockerfile) -- [`8.2.15-apache-bookworm`, `8.2-apache-bookworm`, `8.2.15-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/apache/Dockerfile) -- [`8.2.15-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.15-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/fpm/Dockerfile) -- [`8.2.15-zts-bookworm`, `8.2-zts-bookworm`, `8.2.15-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bookworm/zts/Dockerfile) -- [`8.2.15-cli-bullseye`, `8.2-cli-bullseye`, `8.2.15-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/cli/Dockerfile) -- [`8.2.15-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/apache/Dockerfile) -- [`8.2.15-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/fpm/Dockerfile) -- [`8.2.15-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/bullseye/zts/Dockerfile) -- [`8.2.15-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.15-alpine3.19`, `8.2-alpine3.19`, `8.2.15-cli-alpine`, `8.2-cli-alpine`, `8.2.15-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.15-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.15-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.15-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.15-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.15-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.15-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.15-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.15-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/751276957b1d2bc317cf5033f768fe37ce24d1fa/8.2/alpine3.18/zts/Dockerfile) +- [`8.3.3-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.3-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.3-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.3`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/cli/Dockerfile) +- [`8.3.3-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.3-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/apache/Dockerfile) +- [`8.3.3-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.3-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/fpm/Dockerfile) +- [`8.3.3-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.3-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/zts/Dockerfile) +- [`8.3.3-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.3-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/cli/Dockerfile) +- [`8.3.3-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/apache/Dockerfile) +- [`8.3.3-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/fpm/Dockerfile) +- [`8.3.3-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/zts/Dockerfile) +- [`8.3.3-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.3-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.3-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.3-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.3-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.3-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.3-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.3-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.3-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.3-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.3-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.3-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.16-cli-bookworm`, `8.2-cli-bookworm`, `8.2.16-bookworm`, `8.2-bookworm`, `8.2.16-cli`, `8.2-cli`, `8.2.16`, `8.2`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/cli/Dockerfile) +- [`8.2.16-apache-bookworm`, `8.2-apache-bookworm`, `8.2.16-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/apache/Dockerfile) +- [`8.2.16-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.16-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/fpm/Dockerfile) +- [`8.2.16-zts-bookworm`, `8.2-zts-bookworm`, `8.2.16-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/zts/Dockerfile) +- [`8.2.16-cli-bullseye`, `8.2-cli-bullseye`, `8.2.16-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/cli/Dockerfile) +- [`8.2.16-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/apache/Dockerfile) +- [`8.2.16-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/fpm/Dockerfile) +- [`8.2.16-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/zts/Dockerfile) +- [`8.2.16-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.16-alpine3.19`, `8.2-alpine3.19`, `8.2.16-cli-alpine`, `8.2-cli-alpine`, `8.2.16-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.16-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.16-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.16-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.16-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.16-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.16-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.16-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.16-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/cli/Dockerfile) - [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/apache/Dockerfile) - [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/fpm/Dockerfile) diff --git a/python/README.md b/python/README.md index 028dd3426668..20346950cc65 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.13.0a3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a3-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a3-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0a4-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a4-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a4-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a4-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a4-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a4-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a4-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a4-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a4-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) - [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bookworm/Dockerfile) - [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bullseye/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.13.0a3`, `3.13-rc`: - - [`3.13.0a3-bookworm`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a3-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/334afd882526f8346a5d45d3b1943f8909fe9dff/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a4`, `3.13-rc`: + - [`3.13.0a4-bookworm`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a4-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.2`, `3.12`, `3`, `latest`: - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index fc1c0c79fb37..0a90382a5dcd 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.0-rc.5-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) - [`3.13.0-rc.5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/705900f858d1705bd4ce0ba329b552e97807d4c4/3.13-rc/alpine/Dockerfile) - [`3.13.0-rc.5-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.12`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/ubuntu/Dockerfile) -- [`3.12.12-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.12-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/3f3919d4093a3e1c4f7957af744357893ec53a67/3.12/alpine/Dockerfile) -- [`3.12.12-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.13`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/ubuntu/Dockerfile) +- [`3.12.13-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.13-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/alpine/Dockerfile) +- [`3.12.13-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) - [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/ubuntu/Dockerfile) - [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) - [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/alpine/Dockerfile) From d94cf680a7d39c55735064b110fdd488ca39c19f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Feb 2024 15:10:11 -0800 Subject: [PATCH 0961/2686] Run update.sh --- mongo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongo/README.md b/mongo/README.md index 5c088039b96f..5b55b75388e6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -123,7 +123,7 @@ First developed by the software company 10gen (now MongoDB Inc.) in October 2007 # Security -By default Mongo's configuration requires no authentication for access, even for the administrative user. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for information on how to begin securing Mongo and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for more detail. +By default Mongo's configuration requires no authentication for access, even for the administrative user. It is highly recommended to set a root user name and password if you plan on exposing your Mongo instance to the internet. See the "`MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD`" section below for instructions and the [MongoDB Security documentation](https://www.mongodb.com/docs/manual/security/) for a more complete treatment. # How to use this image From e2f661fe282048da368e86733b23b498b53ab66b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Feb 2024 16:21:14 -0800 Subject: [PATCH 0962/2686] Run update.sh --- ghost/README.md | 4 +-- openjdk/README.md | 62 +++++++++++++++++++++++------------------------ 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 70866bbe678b..90fa58fb199a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.79.1`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dc56e6a2fd5ae912bcc09d9ee5fd8cda19c7a52d/5/debian/Dockerfile) -- [`5.79.1-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dc56e6a2fd5ae912bcc09d9ee5fd8cda19c7a52d/5/alpine/Dockerfile) +- [`5.79.3`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f09bb4458c9596110fa40dd9ce6c6a6ee143de48/5/debian/Dockerfile) +- [`5.79.3-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f09bb4458c9596110fa40dd9ce6c6a6ee143de48/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 2c928fd696ab..3ee9dfb5999a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-8-jdk-oraclelinux8`, `23-ea-8-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-8-jdk-oracle`, `23-ea-8-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-8-jdk-oraclelinux7`, `23-ea-8-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-8-jdk-bookworm`, `23-ea-8-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/bookworm/Dockerfile) -- [`23-ea-8-jdk-slim-bookworm`, `23-ea-8-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-8-jdk-slim`, `23-ea-8-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-8-jdk-bullseye`, `23-ea-8-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/bullseye/Dockerfile) -- [`23-ea-8-jdk-slim-bullseye`, `23-ea-8-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-8-jdk-windowsservercore-ltsc2022`, `23-ea-8-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-8-jdk-windowsservercore-1809`, `23-ea-8-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-8-jdk-nanoserver-1809`, `23-ea-8-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux8/Dockerfile) -- [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux7/Dockerfile) -- [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/bookworm/Dockerfile) -- [`22-rc-jdk-slim-bookworm`, `22-rc-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-rc-jdk-slim`, `22-rc-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/slim-bookworm/Dockerfile) -- [`22-rc-jdk-bullseye`, `22-rc-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/bullseye/Dockerfile) -- [`22-rc-jdk-slim-bullseye`, `22-rc-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/slim-bullseye/Dockerfile) -- [`22-rc-jdk-windowsservercore-ltsc2022`, `22-rc-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-rc-jdk-windowsservercore-1809`, `22-rc-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-10-jdk-oraclelinux8`, `23-ea-10-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-10-jdk-oracle`, `23-ea-10-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-10-jdk-oraclelinux7`, `23-ea-10-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-10-jdk-bookworm`, `23-ea-10-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/bookworm/Dockerfile) +- [`23-ea-10-jdk-slim-bookworm`, `23-ea-10-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-10-jdk-slim`, `23-ea-10-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-10-jdk-bullseye`, `23-ea-10-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/bullseye/Dockerfile) +- [`23-ea-10-jdk-slim-bullseye`, `23-ea-10-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-10-jdk-windowsservercore-ltsc2022`, `23-ea-10-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-10-jdk-windowsservercore-1809`, `23-ea-10-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-10-jdk-nanoserver-1809`, `23-ea-10-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) +- [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux7/Dockerfile) +- [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) +- [`22-rc-jdk-slim-bookworm`, `22-rc-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-rc-jdk-slim`, `22-rc-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/slim-bookworm/Dockerfile) +- [`22-rc-jdk-bullseye`, `22-rc-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bullseye/Dockerfile) +- [`22-rc-jdk-slim-bullseye`, `22-rc-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/slim-bullseye/Dockerfile) +- [`22-rc-jdk-windowsservercore-ltsc2022`, `22-rc-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22-rc-jdk-windowsservercore-1809`, `22-rc-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) - [`22-rc-jdk-nanoserver-1809`, `22-rc-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-8-jdk`, `23-ea-8`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-8-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-8-jdk-windowsservercore`, `23-ea-8-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-8-jdk-nanoserver`, `23-ea-8-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/44d72b4f36cbd2986dafcc3eacb1cd8068ae0229/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-10-jdk`, `23-ea-10`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-10-jdk-windowsservercore`, `23-ea-10-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-10-jdk-nanoserver`, `23-ea-10-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/oraclelinux8/Dockerfile) - - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) + - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) - `22-rc-jdk-windowsservercore`, `22-rc-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) - `22-rc-jdk-nanoserver`, `22-rc-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - [`22-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) From d2b4d5abb041c177711963b1708e965ed21ca3ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Feb 2024 12:10:14 -0800 Subject: [PATCH 0963/2686] Run update.sh --- api-firewall/README.md | 2 +- clearlinux/README.md | 2 +- crate/README.md | 2 +- elixir/README.md | 30 +++++++++++++++--------------- photon/README.md | 4 ++-- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 6f3b2cb2c6ac..637763677410 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.14`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/2246f69504648eda098c878430dd5c26364ba24b/0.6.14/Dockerfile) +- [`0.6.15`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/94971338b498dca6144ed3d2b7dceb045aac0d0f/0.6.15/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 8fdfb924b0a3..afb23fd6bcf1 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dc6a09347858ef7a919c4a28dcc7ccf80c781a13/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/e640bf66db11cb213d860ead1ec6bff7855344eb/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 922e83d3dc63..97221e4fef72 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.6.1`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/de22e3a208322e68cd484c7de00c78bc236e563a/Dockerfile) +- [`5.6.2`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/7d0a21e490b1e442cf6b22bbb73578f2f06ac787/Dockerfile) - [`5.5.5`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) - [`5.3.9`, `5.3`](https://github.com/crate/docker-crate/blob/b26e81edb1d6b551a5a7697855270346dbd63619/Dockerfile) diff --git a/elixir/README.md b/elixir/README.md index cd8de05eb39f..5ab7bd9b5de4 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,43 +24,43 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.1`, `1.16`, `latest`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/Dockerfile) -- [`1.16.1-slim`, `1.16-slim`, `slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/slim/Dockerfile) -- [`1.16.1-alpine`, `1.16-alpine`, `alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/alpine/Dockerfile) +- [`1.16.1`, `1.16`, `latest`, `1.16.1-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/Dockerfile) +- [`1.16.1-slim`, `1.16-slim`, `slim`, `1.16.1-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/slim/Dockerfile) +- [`1.16.1-alpine`, `1.16-alpine`, `alpine`, `1.16.1-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/alpine/Dockerfile) - [`1.16.1-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24/Dockerfile) - [`1.16.1-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-alpine/Dockerfile) - [`1.16.1-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-slim/Dockerfile) - [`1.16.1-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25/Dockerfile) - [`1.16.1-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-alpine/Dockerfile) - [`1.16.1-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-slim/Dockerfile) -- [`1.15.7`, `1.15`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) -- [`1.15.7-slim`, `1.15-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) -- [`1.15.7-alpine`, `1.15-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) +- [`1.15.7`, `1.15`, `1.15.7-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) +- [`1.15.7-slim`, `1.15-slim`, `1.15.7-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) +- [`1.15.7-alpine`, `1.15-alpine`, `1.15.7-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) - [`1.15.7-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24/Dockerfile) - [`1.15.7-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-alpine/Dockerfile) - [`1.15.7-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-slim/Dockerfile) - [`1.15.7-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25/Dockerfile) - [`1.15.7-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-alpine/Dockerfile) - [`1.15.7-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-slim/Dockerfile) -- [`1.14.5`, `1.14`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) -- [`1.14.5-slim`, `1.14-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) -- [`1.14.5-alpine`, `1.14-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) +- [`1.14.5`, `1.14`, `1.14.5-otp-26`, `1.14-otp-26`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) +- [`1.14.5-slim`, `1.14-slim`, `1.14.5-otp-26-slim`, `1.14-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) +- [`1.14.5-alpine`, `1.14-alpine`, `1.14.5-otp-26-alpine`, `1.14-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) - [`1.14.5-otp-24`, `1.14-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) - [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) - [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) - [`1.14.5-otp-25`, `1.14-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) - [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) - [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) -- [`1.13.4`, `1.13`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) -- [`1.13.4-slim`, `1.13-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) -- [`1.13.4-alpine`, `1.13-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) +- [`1.13.4`, `1.13`, `1.13.4-otp-24`, `1.13-otp-24`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) +- [`1.13.4-slim`, `1.13-slim`, `1.13.4-otp-24-slim`, `1.13-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) +- [`1.13.4-alpine`, `1.13-alpine`, `1.13.4-otp-24-alpine`, `1.13-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) - [`1.13.4-otp-23-slim`, `1.13-otp-23-slim`](https://github.com/erlef/docker-elixir/blob/2bc3fd2b7218d6958c766c42b86e259949b56b95/1.13/otp-23-slim/Dockerfile) - [`1.13.4-otp-25`, `1.13-otp-25`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25/Dockerfile) - [`1.13.4-otp-25-alpine`, `1.13-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-alpine/Dockerfile) - [`1.13.4-otp-25-slim`, `1.13-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-slim/Dockerfile) -- [`1.12.3`, `1.12`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/Dockerfile) -- [`1.12.3-slim`, `1.12-slim`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/slim/Dockerfile) -- [`1.12.3-alpine`, `1.12-alpine`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/alpine/Dockerfile) +- [`1.12.3`, `1.12`, `1.12.3-otp-24`, `1.12-otp-24`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/Dockerfile) +- [`1.12.3-slim`, `1.12-slim`, `1.12.3-otp-24-slim`, `1.12-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/slim/Dockerfile) +- [`1.12.3-alpine`, `1.12-alpine`, `1.12.3-otp-24-alpine`, `1.12-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index decee30abe2e..49c4df80fc6e 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240213`, `latest`](https://github.com/vmware/photon-docker-image/blob/99904eea578aacf7ebd4c2457aec216ebfe4bcd8/docker/Dockerfile) -- [`4.0`, `4.0-20240205`](https://github.com/vmware/photon-docker-image/blob/ac0e35fe830e612d7524554cdaa80b7698a4f239/docker/Dockerfile) +- [`5.0`, `5.0-20240217`, `latest`](https://github.com/vmware/photon-docker-image/blob/6dae366d928bcd3aefda8ac86b5357b5f191d992/docker/Dockerfile) +- [`4.0`, `4.0-20240217`](https://github.com/vmware/photon-docker-image/blob/2407b6dafacb9f96915a4ff5d696fbc14493ef4e/docker/Dockerfile) - [`3.0`, `3.0-20240205`](https://github.com/vmware/photon-docker-image/blob/fa179b135b85f15355ca9717f1870b12e7a7bad7/docker/Dockerfile) # Quick reference (cont.) From 96f885234d853cea647a24ccbd1ff8d24f03d8cb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Feb 2024 15:19:46 -0800 Subject: [PATCH 0964/2686] Run update.sh --- fedora/README.md | 8 ++++---- telegraf/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index eaa3268658e4..89e7a5ae029a 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`37`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7b9394b78eb5309a430d891bfb84d6798bb61880/x86_64/Dockerfile) -- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8da9f21c521810b731eb6bdc60474077f4794300/x86_64/Dockerfile) -- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3b05fdf8aeb96d1820bb33e8cbbad6a938b50e99/x86_64/Dockerfile) -- [`40`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3a06c848c9f7c4402cf70c2a65e1a5bcd058d323/x86_64/Dockerfile) +- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/0ca7b13adf277d9423dcea1353ca21f36fe3aef3/x86_64/Dockerfile) +- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d855dc12fef7c8d48d53b774d54da78ac5be37f6/x86_64/Dockerfile) +- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ca15e4374cd315b7dba84485bf330377cd50c50f/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1443124200b0b0674495894ba80aefdaba30a93d/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index d277bceb238c..446f501af653 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/199f62ef82305ebe9c16e0a132ffe71ee0507533/telegraf/1.29/alpine/Dockerfile) +- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.27/Dockerfile) +- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.27/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.29/alpine/Dockerfile) # Quick reference (cont.) From 5a83e4501ae635d81d48f8fdc370e3b2bafaaa15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Feb 2024 16:09:50 -0800 Subject: [PATCH 0965/2686] Run update.sh --- jruby/README.md | 24 ++++++++++++------------ mariadb/README.md | 5 +++-- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 265f773ba9f2..1b9196a6720d 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.5`, `9.4-jre`, `9.4-jre8`, `9.4.5-jre`, `9.4.5-jre8`, `9.4.5.0`, `9.4.5.0-jre`, `9.4.5.0-jre8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.5-jdk`, `9.4.5-jdk8`, `9.4.5.0-jdk`, `9.4.5.0-jdk8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.5-jre11`, `9.4.5.0-jre11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.5-jdk11`, `9.4.5.0-jdk11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.5-jdk17`, `9.4.5.0-jdk17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.5-jre17`, `9.4.5.0-jre17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.4/jre17/Dockerfile) -- [`9.3`, `9.3.13`, `9.3-jre`, `9.3-jre8`, `9.3.13-jre`, `9.3.13-jre8`, `9.3.13.0`, `9.3.13.0-jre`, `9.3.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.13-jdk`, `9.3.13-jdk8`, `9.3.13.0-jdk`, `9.3.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.13-jre11`, `9.3.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.13-jdk11`, `9.3.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.13-jdk17`, `9.3.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.13-jre17`, `9.3.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/7b97efdd88722c1e55b86f08a38aec4f6fb9fbe7/9.3/jre17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.6`, `9.4-jre`, `9.4-jre8`, `9.4.6-jre`, `9.4.6-jre8`, `9.4.6.0`, `9.4.6.0-jre`, `9.4.6.0-jre8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.6-jdk`, `9.4.6-jdk8`, `9.4.6.0-jdk`, `9.4.6.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.6-jre11`, `9.4.6.0-jre11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.6-jdk11`, `9.4.6.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.6-jdk17`, `9.4.6.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.6-jre17`, `9.4.6.0-jre17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre17/Dockerfile) +- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre17/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 2d31c548d6cc..a836c4e8339e 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,8 +26,9 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.3.1-rc-jammy`, `11.3-rc-jammy`, `11.3.1-rc`, `11.3-rc`](https://github.com/MariaDB/mariadb-docker/blob/f64d0cd1176b78c8a42a219fdf0b5c54a12b3c6d/11.3/Dockerfile) -- [`11.2.3-jammy`, `11.2-jammy`, `11-jammy`, `jammy`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.2/Dockerfile) +- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/174b68b5ef90f92902c15d73a0cfdd1cb99146d8/11.4/Dockerfile) +- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/0c710468e3fb2ccec6cdc14350ee0f1eaf668307/11.3/Dockerfile) +- [`11.2.3-jammy`, `11.2-jammy`, `11.2.3`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.2/Dockerfile) - [`11.1.4-jammy`, `11.1-jammy`, `11.1.4`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.1/Dockerfile) - [`11.0.5-jammy`, `11.0-jammy`, `11.0.5`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.0/Dockerfile) - [`10.11.7-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.7`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.11/Dockerfile) From cc489fa79d26dd8ff8c93b48638566e0216a6baf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Feb 2024 17:09:57 -0800 Subject: [PATCH 0966/2686] Run update.sh --- bash/README.md | 2 +- erlang/README.md | 21 ++++++----- ghost/README.md | 4 +-- ruby/README.md | 12 +++---- tomcat/README.md | 88 ++++++++++++++++++++++----------------------- wordpress/README.md | 18 +++++----- 6 files changed, 74 insertions(+), 71 deletions(-) diff --git a/bash/README.md b/bash/README.md index 71bef866a667..eef7a2330c1a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240209`, `devel`, `devel-20240209-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/9a5be2bc9807616a717893593b8ab24224428059/devel/Dockerfile) +- [`devel-20240216`, `devel`, `devel-20240216-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d69b105406aa7fdadae9a8de8c18ac566b5580ea/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index c5d2bc49cbe0..3ebc83d09c4f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,15 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.2.1.0`, `26.2.1`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/Dockerfile) -- [`26.2.1.0-slim`, `26.2.1-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/slim/Dockerfile) -- [`26.2.1.0-alpine`, `26.2.1-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/244ad1597d3d8e189871ce219f58208ea3e6037f/26/alpine/Dockerfile) -- [`25.3.2.8`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/Dockerfile) -- [`25.3.2.8-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/86b8c40adcbcf4eb23e0744f388444b30edaf925/25/slim/Dockerfile) -- [`25.3.2.8-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7d5b469c072a10c94777506120e18b873c5bccfb/25/alpine/Dockerfile) -- [`24.3.4.15`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/Dockerfile) -- [`24.3.4.15-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/slim/Dockerfile) -- [`24.3.4.15-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c1005d634453849462622c34cea9208ab3c63a2e/24/alpine/Dockerfile) +- [`27.0-rc1.0.0`, `27.0-rc1.0`, `27.0-rc1`, `27`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/Dockerfile) +- [`27.0-rc1.0.0-slim`, `27.0-rc1.0-slim`, `27.0-rc1-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/slim/Dockerfile) +- [`27.0-rc1.0.0-alpine`, `27.0-rc1.0-alpine`, `27.0-rc1-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/alpine/Dockerfile) +- [`26.2.2.0`, `26.2.2`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e587e48cf105c8f0be0ec94a5b5d00b3249605e8/26/Dockerfile) +- [`26.2.2.0-slim`, `26.2.2-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e587e48cf105c8f0be0ec94a5b5d00b3249605e8/26/slim/Dockerfile) +- [`26.2.2.0-alpine`, `26.2.2-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/26/alpine/Dockerfile) +- [`25.3.2.9`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/Dockerfile) +- [`25.3.2.9-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/slim/Dockerfile) +- [`25.3.2.9-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/alpine/Dockerfile) +- [`24.3.4.16`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/Dockerfile) +- [`24.3.4.16-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/slim/Dockerfile) +- [`24.3.4.16-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/alpine/Dockerfile) - [`23.3.4.19`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/Dockerfile) - [`23.3.4.19-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/slim/Dockerfile) - [`23.3.4.19-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 90fa58fb199a..09eb8125fae9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.79.3`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f09bb4458c9596110fa40dd9ce6c6a6ee143de48/5/debian/Dockerfile) -- [`5.79.3-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f09bb4458c9596110fa40dd9ce6c6a6ee143de48/5/alpine/Dockerfile) +- [`5.79.4`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/03e10bf5352f44ed78525d6a7b4d4096d55b63fc/5/debian/Dockerfile) +- [`5.79.4-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/03e10bf5352f44ed78525d6a7b4d4096d55b63fc/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 14b03d2abb92..597b88c3c038 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/bookworm/Dockerfile) -- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/slim-bookworm/Dockerfile) -- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/bullseye/Dockerfile) -- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/slim-bullseye/Dockerfile) -- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/alpine3.19/Dockerfile) -- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/90c7a1d6999710f5502d69162a197e979f90bb1a/3.3/alpine3.18/Dockerfile) +- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/bookworm/Dockerfile) +- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/slim-bookworm/Dockerfile) +- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/bullseye/Dockerfile) +- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/slim-bullseye/Dockerfile) +- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/alpine3.19/Dockerfile) +- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/alpine3.18/Dockerfile) - [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bookworm/Dockerfile) - [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bookworm/Dockerfile) - [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bullseye/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index c6de0818fc2e..25ea13d2b353 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,50 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M16-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M16-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M16-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M16`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M16-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M16-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M16-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/b9460102c252660bc38683cf3f68883f00dccb41/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.18-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.18-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.18-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.18`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.18-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.18-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.18-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.18-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.18-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.18-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.18-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.18-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.18-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.18-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.18-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.18-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.18-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.18-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.18-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/b6551d7785f573f92c379d916c374024fedb5465/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.85-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.85-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.85-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.85`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.85-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.85-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.85-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.85-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.85-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.85-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.85-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.85-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.85-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.85-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.85-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.85-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.85-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.85-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.85-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.85-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.85-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.85-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.85-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.85-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.85-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.85-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.85-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.85-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.85-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.85-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.85-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.85-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.85-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.85-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.85-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.85-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.85-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/9e2cd9f76f5013325541d36aed10b815405fcdb3/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.85-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.85-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.98-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.98-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.98-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.98`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.98-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.98-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.98-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.98-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.98-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.98-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.98-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.98-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.98-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.98-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.98-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.98-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.98-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.98-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.98-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.98-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.98-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.98-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.98-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.98-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.98-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.98-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.98-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.98-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.98-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.98-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.98-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.98-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.98-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.98-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.98-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.98-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.98-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/4b942a0053c7c8264742a0c0bfaa4b6d99730733/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.98-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.98-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/97251f3bf88258f6edcb6f313970ae1971e4537b/8.5/jdk8/corretto-al2/Dockerfile) +- [`11.0.0-M17-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M17-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M17-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M17`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d4878dc3bf85329009dd6b45519a4947eef57b11/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M17-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M17-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M17-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d4878dc3bf85329009dd6b45519a4947eef57b11/11.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.19-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.19-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.19-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.19`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.19-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.19-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.19-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.19-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.19-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.19-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.19-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.19-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.19-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.19-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.19-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.19-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.19-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.19-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.19-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.86-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.86-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.86-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.86`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.86-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.86-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.86-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.86-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.86-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.86-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.86-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.86-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.86-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.86-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.86-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.86-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.86-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.86-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.86-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.86-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.86-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.86-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.86-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.86-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.86-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.86-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.86-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.86-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.86-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.86-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.86-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.86-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.86-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.86-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.86-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.86-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.86-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.86-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.86-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/corretto-al2/Dockerfile) +- [`8.5.99-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.99-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.99-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.99`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.99-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.99-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.99-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.99-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.99-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.99-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.99-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.99-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.99-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.99-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.99-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.99-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.99-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.99-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.99-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.99-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.99-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.99-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.99-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.99-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.99-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.99-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.99-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.99-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.99-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.99-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.99-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.99-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.99-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.99-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.99-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.99-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.99-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.99-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.99-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4f2f1d4971cf..25c6eb85aee8 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-beta1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-beta1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-beta1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-beta1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-beta1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-beta1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-beta1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-beta1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-beta1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/637184f975302b2550d0b99f24373c31c37de03b/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-beta2-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta2-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-beta2-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-beta2-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-beta2-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta2`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta2-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta2-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-beta2-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta2-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-beta2-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta2-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-beta2-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta2-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-beta2-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-beta2-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 2aa35c674845fc1c3efe5c43c909efe415e50534 Mon Sep 17 00:00:00 2001 From: Fred Shaw <15826700+fred-from-york@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:38:00 +0000 Subject: [PATCH 0967/2686] python: Add note on `pip install` in slim variants Add an image-specific slim variant section for Python. This overrides the default description of a slim variant. The image-specific description clarifies when `pip install` might fail in slim variants of the Python image. --- python/variant-slim.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 python/variant-slim.md diff --git a/python/variant-slim.md b/python/variant-slim.md new file mode 100644 index 000000000000..f5a64e018e64 --- /dev/null +++ b/python/variant-slim.md @@ -0,0 +1,8 @@ +## `%%IMAGE%%:-slim` + +This image does not contain the common Debian packages contained in the default tag and only contains the minimal Debian packages needed to run `%%IMAGE%%`. Unless you are working in an environment where *only* the `%%IMAGE%%` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. + +When using this image `pip install` will work if a suitable built distribution is available for the Python distribution package being installed. `pip install` may fail when installing a Python distribution package from a source distribution. This image does not contain the Debian packages required to compile extension modules written in other languages. Possible solutions if a `pip install` fails include: + +- Use this image and install any required Debian packages before running `pip install`. +- Use the default image of this repository. The default image contains the most commonly required Debian packages. The majority of arbitrary `pip install`s should be successful without additional header/development Debian packages. From 0d426687a6be4e55b08802b747ded3ea41d5bdfd Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Le Duigou Date: Wed, 21 Feb 2024 19:13:21 +0100 Subject: [PATCH 0968/2686] Update to Go 1.22 (#2419) --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index 5657ddd9684d..d0321dfdf226 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.21 +FROM %%IMAGE%%:1.22 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.21 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.22 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.21 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From cb3b26f7eb7813718190dc31c90b7e093dafef68 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Feb 2024 11:20:38 -0800 Subject: [PATCH 0969/2686] Run update.sh --- golang/README.md | 10 +++++----- joomla/README.md | 42 +++++++++++++++++++++--------------------- python/README.md | 7 ++++++- 3 files changed, 32 insertions(+), 27 deletions(-) diff --git a/golang/README.md b/golang/README.md index ff80ba467dfe..eadd873e6d45 100644 --- a/golang/README.md +++ b/golang/README.md @@ -104,7 +104,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.21 +FROM golang:1.22 WORKDIR /usr/src/app @@ -130,13 +130,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 make ``` ## Cross-compile your app inside the Docker container @@ -144,13 +144,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.21 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.22 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.21 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH diff --git a/joomla/README.md b/joomla/README.md index ec7fc830df2d..0b273c650b24 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-alpha3-php8.1-apache`, `5.1-php8.1-apache`, `5.1.alpha-php8.1-apache`, `5.1.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/apache/Dockerfile) -- [`5.1.0-alpha3-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.alpha-php8.1-fpm-alpine`, `5.1.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.1.0-alpha3-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.alpha-php8.1-fpm`, `5.1.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.1/fpm/Dockerfile) -- [`5.1.0-alpha3`, `5.1`, `5.1.alpha`, `5.1.0-alpha`, `5.1.0-alpha3-apache`, `5.1-apache`, `5.1.alpha-apache`, `5.1.0-alpha-apache`, `5.1.0-alpha3-php8.2`, `5.1-php8.2`, `5.1.alpha-php8.2`, `5.1.0-alpha-php8.2`, `5.1.0-alpha3-php8.2-apache`, `5.1-php8.2-apache`, `5.1.alpha-php8.2-apache`, `5.1.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/apache/Dockerfile) -- [`5.1.0-alpha3-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.alpha-php8.2-fpm-alpine`, `5.1.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.1.0-alpha3-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.alpha-php8.2-fpm`, `5.1.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.2/fpm/Dockerfile) -- [`5.1.0-alpha3-php8.3-apache`, `5.1-php8.3-apache`, `5.1.alpha-php8.3-apache`, `5.1.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/apache/Dockerfile) -- [`5.1.0-alpha3-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5.1.alpha-php8.3-fpm-alpine`, `5.1.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.1.0-alpha3-php8.3-fpm`, `5.1-php8.3-fpm`, `5.1.alpha-php8.3-fpm`, `5.1.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6432995076a6ae520ebaed5e1cdf737c522cd3fb/5.1.alpha/php8.3/fpm/Dockerfile) -- [`5.0.2-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.1/apache/Dockerfile) -- [`5.0.2-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.2-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.1/fpm/Dockerfile) -- [`5.0.2`, `5.0`, `5`, `5.0.2-apache`, `5.0-apache`, `5-apache`, `5.0.2-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.2-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.2/apache/Dockerfile) -- [`5.0.2-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.2-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/5.0/php8.2/fpm/Dockerfile) -- [`4.4.2`, `4.4`, `4`, `latest`, `4.4.2-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.2-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.2-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.1/apache/Dockerfile) -- [`4.4.2-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.2-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.1/fpm/Dockerfile) -- [`4.4.2-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.2/apache/Dockerfile) -- [`4.4.2-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ed91ffe73eb0d47340f13345b9143fa2a1bed62a/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.2-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c9cc3661ef0064e4b2242360ecce780ffc825daa/4.4/php8.2/fpm/Dockerfile) +- [`5.1.0-alpha4-php8.1-apache`, `5.1-php8.1-apache`, `5.1.alpha-php8.1-apache`, `5.1.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/apache/Dockerfile) +- [`5.1.0-alpha4-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.alpha-php8.1-fpm-alpine`, `5.1.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.1.0-alpha4-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.alpha-php8.1-fpm`, `5.1.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/fpm/Dockerfile) +- [`5.1.0-alpha4`, `5.1`, `5.1.alpha`, `5.1.0-alpha`, `5.1.0-alpha4-apache`, `5.1-apache`, `5.1.alpha-apache`, `5.1.0-alpha-apache`, `5.1.0-alpha4-php8.2`, `5.1-php8.2`, `5.1.alpha-php8.2`, `5.1.0-alpha-php8.2`, `5.1.0-alpha4-php8.2-apache`, `5.1-php8.2-apache`, `5.1.alpha-php8.2-apache`, `5.1.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/apache/Dockerfile) +- [`5.1.0-alpha4-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.alpha-php8.2-fpm-alpine`, `5.1.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.1.0-alpha4-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.alpha-php8.2-fpm`, `5.1.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/fpm/Dockerfile) +- [`5.1.0-alpha4-php8.3-apache`, `5.1-php8.3-apache`, `5.1.alpha-php8.3-apache`, `5.1.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/apache/Dockerfile) +- [`5.1.0-alpha4-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5.1.alpha-php8.3-fpm-alpine`, `5.1.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.1.0-alpha4-php8.3-fpm`, `5.1-php8.3-fpm`, `5.1.alpha-php8.3-fpm`, `5.1.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/fpm/Dockerfile) +- [`5.0.3-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/apache/Dockerfile) +- [`5.0.3-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm-alpine/Dockerfile) +- [`5.0.3-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm/Dockerfile) +- [`5.0.3`, `5.0`, `5`, `5.0.3-apache`, `5.0-apache`, `5-apache`, `5.0.3-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.3-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/apache/Dockerfile) +- [`5.0.3-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/fpm-alpine/Dockerfile) +- [`5.0.3-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/fpm/Dockerfile) +- [`4.4.3`, `4.4`, `4`, `latest`, `4.4.3-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.3-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.3-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/apache/Dockerfile) +- [`4.4.3-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.3-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/fpm/Dockerfile) +- [`4.4.3-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/apache/Dockerfile) +- [`4.4.3-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.3-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 20346950cc65..d92238af5933 100644 --- a/python/README.md +++ b/python/README.md @@ -199,7 +199,12 @@ This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-d ## `python:-slim` -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `python`. Unless you are working in an environment where *only* the `python` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. +This image does not contain the common Debian packages contained in the default tag and only contains the minimal Debian packages needed to run `python`. Unless you are working in an environment where *only* the `python` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. + +When using this image `pip install` will work if a suitable built distribution is available for the Python distribution package being installed. `pip install` may fail when installing a Python distribution package from a source distribution. This image does not contain the Debian packages required to compile extension modules written in other languages. Possible solutions if a `pip install` fails include: + +- Use this image and install any required Debian packages before running `pip install`. +- Use the default image of this repository. The default image contains the most commonly required Debian packages. The majority of arbitrary `pip install`s should be successful without additional header/development Debian packages. ## `python:-alpine` From c1c7bd5db98806ec18fe6f8b5aef62b54d848c57 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Feb 2024 15:18:42 -0800 Subject: [PATCH 0970/2686] Run update.sh --- postgres/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 65a2c1fc6486..9e24d89664c9 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.2`, `16`, `latest`, `16.2-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/1424abf76f421d6f7bf933d9e42bbbed866fae3a/16/bookworm/Dockerfile) -- [`16.2-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/1424abf76f421d6f7bf933d9e42bbbed866fae3a/16/bullseye/Dockerfile) +- [`16.2`, `16`, `latest`, `16.2-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/16/bookworm/Dockerfile) +- [`16.2-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/16/bullseye/Dockerfile) - [`16.2-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.2-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.19/Dockerfile) - [`16.2-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.18/Dockerfile) -- [`15.6`, `15`, `15.6-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/34d4c14c235806e57fdd5eaf197f718fccee93b0/15/bookworm/Dockerfile) -- [`15.6-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/34d4c14c235806e57fdd5eaf197f718fccee93b0/15/bullseye/Dockerfile) +- [`15.6`, `15`, `15.6-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/15/bookworm/Dockerfile) +- [`15.6-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/15/bullseye/Dockerfile) - [`15.6-alpine3.19`, `15-alpine3.19`, `15.6-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.19/Dockerfile) - [`15.6-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.18/Dockerfile) -- [`14.11`, `14`, `14.11-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/901df4c333940b96e1b438f9bd6dcd0f1c534116/14/bookworm/Dockerfile) -- [`14.11-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/901df4c333940b96e1b438f9bd6dcd0f1c534116/14/bullseye/Dockerfile) +- [`14.11`, `14`, `14.11-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/14/bookworm/Dockerfile) +- [`14.11-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/14/bullseye/Dockerfile) - [`14.11-alpine3.19`, `14-alpine3.19`, `14.11-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.19/Dockerfile) - [`14.11-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.18/Dockerfile) -- [`13.14`, `13`, `13.14-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a2de6cd9b0e9ad68b03148241195e15137246c29/13/bookworm/Dockerfile) -- [`13.14-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/a2de6cd9b0e9ad68b03148241195e15137246c29/13/bullseye/Dockerfile) +- [`13.14`, `13`, `13.14-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/13/bookworm/Dockerfile) +- [`13.14-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/13/bullseye/Dockerfile) - [`13.14-alpine3.19`, `13-alpine3.19`, `13.14-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.19/Dockerfile) - [`13.14-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.18/Dockerfile) -- [`12.18`, `12`, `12.18-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/6e883d9b1efe8479bca7ad0eab354a95fee46786/12/bookworm/Dockerfile) -- [`12.18-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/6e883d9b1efe8479bca7ad0eab354a95fee46786/12/bullseye/Dockerfile) +- [`12.18`, `12`, `12.18-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/12/bookworm/Dockerfile) +- [`12.18-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/12/bullseye/Dockerfile) - [`12.18-alpine3.19`, `12-alpine3.19`, `12.18-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.19/Dockerfile) - [`12.18-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.18/Dockerfile) From fb6a65b94f6e8cc6168f740a9f7329aca67fb1e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Feb 2024 16:09:54 -0800 Subject: [PATCH 0971/2686] Run update.sh --- rocket.chat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index e85ba10e7c4d..f075c0e8cef7 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.0`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/6bb91d4971eb1d1c8e7fb84ec2d646c2b9474818/6.6/Dockerfile) +- [`6.6.1`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9222fb2f7e1a07ad4006e56dd27089424911489f/6.6/Dockerfile) - [`6.5.3`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/6bb91d4971eb1d1c8e7fb84ec2d646c2b9474818/6.5/Dockerfile) - [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) - [`6.3.12`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.3/Dockerfile) From 843e53e45218ba8d3dc8e14a108acaecf6bbac5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Feb 2024 18:18:54 -0800 Subject: [PATCH 0972/2686] Run update.sh --- mariadb/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index a836c4e8339e..c362e123b208 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,14 +26,14 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/174b68b5ef90f92902c15d73a0cfdd1cb99146d8/11.4/Dockerfile) -- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/0c710468e3fb2ccec6cdc14350ee0f1eaf668307/11.3/Dockerfile) -- [`11.2.3-jammy`, `11.2-jammy`, `11.2.3`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.2/Dockerfile) -- [`11.1.4-jammy`, `11.1-jammy`, `11.1.4`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.1/Dockerfile) -- [`11.0.5-jammy`, `11.0-jammy`, `11.0.5`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/11.0/Dockerfile) -- [`10.11.7-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.7`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.11/Dockerfile) -- [`10.6.17-focal`, `10.6-focal`, `10.6.17`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.6/Dockerfile) -- [`10.5.24-focal`, `10.5-focal`, `10.5.24`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.5/Dockerfile) +- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.4/Dockerfile) +- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.3/Dockerfile) +- [`11.2.3-jammy`, `11.2-jammy`, `11.2.3`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.2/Dockerfile) +- [`11.1.4-jammy`, `11.1-jammy`, `11.1.4`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.1/Dockerfile) +- [`11.0.5-jammy`, `11.0-jammy`, `11.0.5`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.0/Dockerfile) +- [`10.11.7-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.7`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.11/Dockerfile) +- [`10.6.17-focal`, `10.6-focal`, `10.6.17`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.6/Dockerfile) +- [`10.5.24-focal`, `10.5-focal`, `10.5.24`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.5/Dockerfile) - [`10.4.33-focal`, `10.4-focal`, `10.4.33`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.4/Dockerfile) # Quick reference (cont.) From b71721a6086a7e0d58fa4ef99942c785d83d72cf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Feb 2024 09:18:35 -0800 Subject: [PATCH 0973/2686] Run update.sh --- znc/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/znc/README.md b/znc/README.md index ffffaf8aea3e..c58745b759d2 100644 --- a/znc/README.md +++ b/znc/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8.2`, `1.8`, `latest`](https://github.com/znc/znc-docker/blob/d5bb727806f238f95bc74fcc182042932cd60c11/full/Dockerfile) -- [`1.8.2-slim`, `1.8-slim`, `slim`](https://github.com/znc/znc-docker/blob/d5bb727806f238f95bc74fcc182042932cd60c11/slim/Dockerfile) +- [`1.9.0`, `1.9`, `latest`](https://github.com/znc/znc-docker/blob/8638ba43acaef4bff2d4d39668c1992f411230a6/full/Dockerfile) +- [`1.9.0-slim`, `1.9-slim`, `slim`](https://github.com/znc/znc-docker/blob/8638ba43acaef4bff2d4d39668c1992f411230a6/slim/Dockerfile) # Quick reference (cont.) From 28627f8b3dc453567cd6d48479c4fab30950f4f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Feb 2024 16:09:49 -0800 Subject: [PATCH 0974/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 17ad8f2f7e52..916b9c7087a7 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/elasticsearch/Dockerfile) +- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/elasticsearch/Dockerfile) - [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 41e0e10d04e5..5c70136bb9d4 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/kibana/Dockerfile) +- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/kibana/Dockerfile) - [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 12e46f7d7cee..44d20a99ef4d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1`](https://github.com/elastic/dockerfiles/blob/e15eb421da49ad627d48e5b3492948c76bcb8158/logstash/Dockerfile) +- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/logstash/Dockerfile) - [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/logstash/Dockerfile) # Quick reference (cont.) From c43dc8ee857025bb2a22fab3f091149fb1303243 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Feb 2024 18:18:53 -0800 Subject: [PATCH 0975/2686] Run update.sh --- silverpeas/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/silverpeas/README.md b/silverpeas/README.md index d6b5beb1d93b..3ce93806e6d0 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.3`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/58fcac8f9759d8ba09ca23bc2106a2a7c5a5217f/Dockerfile) -- [`6.2.3-b1`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/9714dcc94eb558508f085835a329a44f5c3cb52e/Dockerfile) +- [`6.3.4`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/0ab5ec380118de3c070135446eabd3d94dfa0395/Dockerfile) # Quick reference (cont.) From 38e557b8dc8cfe0dc588c03b9c519533f598a431 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Feb 2024 10:10:33 -0800 Subject: [PATCH 0976/2686] Run update.sh --- haskell/README.md | 4 +-- neo4j/README.md | 10 +++--- perl/README.md | 80 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 28 +++++----------- 4 files changed, 56 insertions(+), 66 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 0458e128fc06..c557270a3343 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.1-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.1`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.8/buster/Dockerfile) -- [`9.8.1-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.8/slim-buster/Dockerfile) +- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/918d184d9a5ffb37aeefa579a980a4b13d9aafc2/9.8/buster/Dockerfile) +- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/918d184d9a5ffb37aeefa579a980a4b13d9aafc2/9.8/slim-buster/Dockerfile) - [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/buster/Dockerfile) - [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/slim-buster/Dockerfile) - [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.4/buster/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index e31d4f61aeb1..49b0461dd136 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,10 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.16.0-community-bullseye`, `5.16-community-bullseye`, `5-community-bullseye`, `5.16.0-community`, `5.16-community`, `5-community`, `5.16.0-bullseye`, `5.16-bullseye`, `5-bullseye`, `5.16.0`, `5.16`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/bullseye/community/Dockerfile) -- [`5.16.0-enterprise-bullseye`, `5.16-enterprise-bullseye`, `5-enterprise-bullseye`, `5.16.0-enterprise`, `5.16-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/bullseye/enterprise/Dockerfile) -- [`5.16.0-community-ubi8`, `5.16-community-ubi8`, `5-community-ubi8`, `5.16.0-ubi8`, `5.16-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/community/Dockerfile) -- [`5.16.0-enterprise-ubi8`, `5.16-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/05a868b63d35ca3e3ccb96342bc6a2faa8bd500c/5.16.0/ubi8/enterprise/Dockerfile) +- [`5.17.0-community-bullseye`, `5.17-community-bullseye`, `5-community-bullseye`, `5.17.0-community`, `5.17-community`, `5-community`, `5.17.0-bullseye`, `5.17-bullseye`, `5-bullseye`, `5.17.0`, `5.17`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/bullseye/community/Dockerfile) +- [`5.17.0-enterprise-bullseye`, `5.17-enterprise-bullseye`, `5-enterprise-bullseye`, `5.17.0-enterprise`, `5.17-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/bullseye/enterprise/Dockerfile) +- [`5.17.0-community-ubi9`, `5.17-community-ubi9`, `5-community-ubi9`, `5.17.0-ubi9`, `5.17-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi9/community/Dockerfile) +- [`5.17.0-enterprise-ubi9`, `5.17-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi9/enterprise/Dockerfile) +- [`5.17.0-community-ubi8`, `5.17-community-ubi8`, `5-community-ubi8`, `5.17.0-ubi8`, `5.17-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/community/Dockerfile) +- [`5.17.0-enterprise-ubi8`, `5.17-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/enterprise/Dockerfile) - [`4.4.30`, `4.4.30-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/community/Dockerfile) - [`4.4.30-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/enterprise/Dockerfile) diff --git a/perl/README.md b/perl/README.md index b2624476af24..28f288c23213 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.7`, `5.39`, `devel`, `5.39.7-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main-bookworm/Dockerfile) -- [`5.39.7-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main-bullseye/Dockerfile) -- [`5.39.7-slim`, `5.39-slim`, `devel-slim`, `5.39.7-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim-bookworm/Dockerfile) -- [`5.39.7-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim-bullseye/Dockerfile) -- [`5.39.7-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.7-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main,threaded-bookworm/Dockerfile) -- [`5.39.7-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-main,threaded-bullseye/Dockerfile) -- [`5.39.7-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.7-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim,threaded-bookworm/Dockerfile) -- [`5.39.7-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d1a0c897925c24df3317e7fc02c2ba87fbd9ddcf/5.039.007-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.8`, `5.39`, `devel`, `5.39.8-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main-bookworm/Dockerfile) +- [`5.39.8-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main-bullseye/Dockerfile) +- [`5.39.8-slim`, `5.39-slim`, `devel-slim`, `5.39.8-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim-bookworm/Dockerfile) +- [`5.39.8-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim-bullseye/Dockerfile) +- [`5.39.8-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.8-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main,threaded-bookworm/Dockerfile) +- [`5.39.8-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main,threaded-bullseye/Dockerfile) +- [`5.39.8-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.8-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim,threaded-bookworm/Dockerfile) +- [`5.39.8-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 0a90382a5dcd..6577ddb38a22 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,26 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0-rc.5`, `3.13-rc`](https://github.com/docker-library/rabbitmq/blob/705900f858d1705bd4ce0ba329b552e97807d4c4/3.13-rc/ubuntu/Dockerfile) -- [`3.13.0-rc.5-management`, `3.13-rc-management`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/ubuntu/management/Dockerfile) -- [`3.13.0-rc.5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/705900f858d1705bd4ce0ba329b552e97807d4c4/3.13-rc/alpine/Dockerfile) -- [`3.13.0-rc.5-management-alpine`, `3.13-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/80011d74327aea3ddd460b189c6533c1f177f48f/3.13-rc/alpine/management/Dockerfile) -- [`3.12.13`, `3.12`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/ubuntu/Dockerfile) -- [`3.12.13-management`, `3.12-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.13-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/alpine/Dockerfile) -- [`3.12.13-management-alpine`, `3.12-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) -- [`3.11.28`, `3.11`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/ubuntu/Dockerfile) -- [`3.11.28-management`, `3.11-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile) -- [`3.11.28-alpine`, `3.11-alpine`](https://github.com/docker-library/rabbitmq/blob/d68391d9ab512337728326c8d5b6c89878213e2f/3.11/alpine/Dockerfile) -- [`3.11.28-management-alpine`, `3.11-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/alpine/management/Dockerfile) -- [`3.10.25`, `3.10`](https://github.com/docker-library/rabbitmq/blob/ea3232ac02c1ddb8237983efc67178fc032700bc/3.10/ubuntu/Dockerfile) -- [`3.10.25-management`, `3.10-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/ubuntu/management/Dockerfile) -- [`3.10.25-alpine`, `3.10-alpine`](https://github.com/docker-library/rabbitmq/blob/ea3232ac02c1ddb8237983efc67178fc032700bc/3.10/alpine/Dockerfile) -- [`3.10.25-management-alpine`, `3.10-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.10/alpine/management/Dockerfile) -- [`3.9.29`, `3.9`](https://github.com/docker-library/rabbitmq/blob/9ea1f85dd8c6c84c5d39eb7be881f07b54bbff84/3.9/ubuntu/Dockerfile) -- [`3.9.29-management`, `3.9-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/ubuntu/management/Dockerfile) -- [`3.9.29-alpine`, `3.9-alpine`](https://github.com/docker-library/rabbitmq/blob/9ea1f85dd8c6c84c5d39eb7be881f07b54bbff84/3.9/alpine/Dockerfile) -- [`3.9.29-management-alpine`, `3.9-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.9/alpine/management/Dockerfile) +- [`3.13.0`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/Dockerfile) +- [`3.13.0-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/Dockerfile) +- [`3.13.0-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/ubuntu/Dockerfile) +- [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/alpine/Dockerfile) +- [`3.12.13-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) From aa80c686c7389cf78fc7bcfe8827df215e5e0fd4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Feb 2024 11:21:09 -0800 Subject: [PATCH 0977/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 3ee9dfb5999a..635504b2dbfd 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-10-jdk-oraclelinux8`, `23-ea-10-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-10-jdk-oracle`, `23-ea-10-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-10-jdk-oraclelinux7`, `23-ea-10-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-10-jdk-bookworm`, `23-ea-10-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/bookworm/Dockerfile) -- [`23-ea-10-jdk-slim-bookworm`, `23-ea-10-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-10-jdk-slim`, `23-ea-10-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-10-jdk-bullseye`, `23-ea-10-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/bullseye/Dockerfile) -- [`23-ea-10-jdk-slim-bullseye`, `23-ea-10-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-10-jdk-windowsservercore-ltsc2022`, `23-ea-10-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-10-jdk-windowsservercore-1809`, `23-ea-10-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-10-jdk-nanoserver-1809`, `23-ea-10-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-11-jdk-oraclelinux8`, `23-ea-11-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-11-jdk-oracle`, `23-ea-11-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-11-jdk-oraclelinux7`, `23-ea-11-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-11-jdk-bookworm`, `23-ea-11-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/bookworm/Dockerfile) +- [`23-ea-11-jdk-slim-bookworm`, `23-ea-11-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-11-jdk-slim`, `23-ea-11-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-11-jdk-bullseye`, `23-ea-11-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/bullseye/Dockerfile) +- [`23-ea-11-jdk-slim-bullseye`, `23-ea-11-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-11-jdk-windowsservercore-ltsc2022`, `23-ea-11-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-11-jdk-windowsservercore-1809`, `23-ea-11-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-11-jdk-nanoserver-1809`, `23-ea-11-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/nanoserver-1809/Dockerfile) - [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux7/Dockerfile) - [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `23-ea-10-jdk`, `23-ea-10`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-10-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-10-jdk-windowsservercore`, `23-ea-10-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-10-jdk-nanoserver`, `23-ea-10-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/72217229af3413cacdcd577670d697db2554d38f/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-11-jdk`, `23-ea-11`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-11-jdk-windowsservercore`, `23-ea-11-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-11-jdk-nanoserver`, `23-ea-11-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From a90c4e4c898497c1a87bd8943e1b3ddebd395534 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Feb 2024 11:09:49 -0800 Subject: [PATCH 0978/2686] Run update.sh --- clearlinux/README.md | 2 +- photon/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index afb23fd6bcf1..e44bc92976ae 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/e640bf66db11cb213d860ead1ec6bff7855344eb/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/823fc7b99ed223b958af260b90240bd5387339f5/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 49c4df80fc6e..ce36872f0d21 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20240217`, `latest`](https://github.com/vmware/photon-docker-image/blob/6dae366d928bcd3aefda8ac86b5357b5f191d992/docker/Dockerfile) -- [`4.0`, `4.0-20240217`](https://github.com/vmware/photon-docker-image/blob/2407b6dafacb9f96915a4ff5d696fbc14493ef4e/docker/Dockerfile) -- [`3.0`, `3.0-20240205`](https://github.com/vmware/photon-docker-image/blob/fa179b135b85f15355ca9717f1870b12e7a7bad7/docker/Dockerfile) +- [`4.0`, `4.0-20240225`](https://github.com/vmware/photon-docker-image/blob/f26acec1a55f376803952a89f2d7e20da09ec7e5/docker/Dockerfile) +- [`3.0`, `3.0-20240225`](https://github.com/vmware/photon-docker-image/blob/46e4d8f3da470d9bdff62c0b7a0982f6af1dc7f9/docker/Dockerfile) # Quick reference (cont.) From e2835ed739ccd8393503227dd23cf70925ef5466 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Feb 2024 12:19:23 -0800 Subject: [PATCH 0979/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- xwiki/README.md | 9 +++------ 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 2d7b96dea69e..1107a0f452f1 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/community/Dockerfile) -- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/developer/Dockerfile) -- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/enterprise/Dockerfile) -- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/datacenter/app/Dockerfile) -- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/9/datacenter/search/Dockerfile) -- [`10.4.0-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/community/Dockerfile) -- [`10.4.0-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/developer/Dockerfile) -- [`10.4.0-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/enterprise/Dockerfile) -- [`10.4.0-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/datacenter/app/Dockerfile) -- [`10.4.0-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/74990438ee4a4cf5068180585a024155d46732ce/10/datacenter/search/Dockerfile) +- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/community/Dockerfile) +- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/developer/Dockerfile) +- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/enterprise/Dockerfile) +- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/datacenter/app/Dockerfile) +- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/datacenter/search/Dockerfile) +- [`10.4.1-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/community/Dockerfile) +- [`10.4.1-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/developer/Dockerfile) +- [`10.4.1-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/enterprise/Dockerfile) +- [`10.4.1-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/datacenter/app/Dockerfile) +- [`10.4.1-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 31187c09b476..9110ff2d52fd 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,18 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.0`, `16.0.0`, `16-mysql-tomcat`, `16.0-mysql-tomcat`, `16.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.0-postgres-tomcat`, `16.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.0-mariadb-tomcat`, `16.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cfd12b26da4688edebf4f3b3fe7b26781306bbee/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.1`, `16.1.0`, `16-mysql-tomcat`, `16.1-mysql-tomcat`, `16.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.1-postgres-tomcat`, `16.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.1-mariadb-tomcat`, `16.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.6`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) -- [`15.5`, `15.5.5`, `15.5-mysql-tomcat`, `15.5.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mysql-tomcat/Dockerfile) -- [`15.5-postgres-tomcat`, `15.5.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/postgres-tomcat/Dockerfile) -- [`15.5-mariadb-tomcat`, `15.5.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5b661e7ccc59f956a881dd00f2bc14755db9eea8/15.5/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From c381945009008f15e035fbdfe4016f60b3a29c0a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Feb 2024 14:09:56 -0800 Subject: [PATCH 0980/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- ghost/README.md | 4 ++-- haproxy/README.md | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 0f23d45dbda1..766d35167a34 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240131.0`](https://github.com/amazonlinux/container-images/blob/71947dead94d539979e17a0c0584f7302946d528/Dockerfile) -- [`2`, `2.0.20240131.0`](https://github.com/amazonlinux/container-images/blob/854ad2b4d01eb36161663ac1e765ac22f2be21e9/Dockerfile) +- [`2023`, `latest`, `2023.3.20240219.0`](https://github.com/amazonlinux/container-images/blob/8a730d778b641585a226adf1ca62679c10946135/Dockerfile) +- [`2`, `2.0.20240223.0`](https://github.com/amazonlinux/container-images/blob/bee798bb2cb388647364bed3b550f34b432fb81b/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 09eb8125fae9..ea6ca20f1e22 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.79.4`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/03e10bf5352f44ed78525d6a7b4d4096d55b63fc/5/debian/Dockerfile) -- [`5.79.4-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/03e10bf5352f44ed78525d6a7b4d4096d55b63fc/5/alpine/Dockerfile) +- [`5.79.6`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/715911fdc0e927dedd50a7bee6d564f3725b9e3d/5/debian/Dockerfile) +- [`5.79.6-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/715911fdc0e927dedd50a7bee6d564f3725b9e3d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index c272a8131a83..93504a3543f5 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev3`, `3.0-dev`, `3.0-dev3-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/Dockerfile) -- [`3.0-dev3-alpine`, `3.0-dev-alpine`, `3.0-dev3-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/2913aa63fe4594a441e41f13e2c820092064a032/3.0/alpine/Dockerfile) -- [`2.9.5`, `2.9`, `latest`, `2.9.5-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/9bb65c75912f95579f06e1554ca59ed80aac685d/2.9/Dockerfile) -- [`2.9.5-alpine`, `2.9-alpine`, `alpine`, `2.9.5-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/9bb65c75912f95579f06e1554ca59ed80aac685d/2.9/alpine/Dockerfile) +- [`3.0-dev4`, `3.0-dev`, `3.0-dev4-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7ff4e114609c146264294b910f5502d295c7794c/3.0/Dockerfile) +- [`3.0-dev4-alpine`, `3.0-dev-alpine`, `3.0-dev4-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7ff4e114609c146264294b910f5502d295c7794c/3.0/alpine/Dockerfile) +- [`2.9.6`, `2.9`, `latest`, `2.9.6-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/Dockerfile) +- [`2.9.6-alpine`, `2.9-alpine`, `alpine`, `2.9.6-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/alpine/Dockerfile) - [`2.8.6`, `2.8`, `lts`, `2.8.6-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/Dockerfile) - [`2.8.6-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.6-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) From 9bc9afb73f5ef77721fe86ea2db2548f8c9065d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Feb 2024 16:10:02 -0800 Subject: [PATCH 0981/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index e1ec33482fc0..2582be2039f8 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.10`, `3.10.13`](https://github.com/arangodb/arangodb-docker/blob/af118f06c76677531116ee7a263e8d3cca1d6d63/alpine/3.10.13/Dockerfile) -- [`3.11`, `3.11.7`, `latest`](https://github.com/arangodb/arangodb-docker/blob/5156e2c84d0b646864615f4d284fdb85005c5417/alpine/3.11.7/Dockerfile) +- [`3.11`, `3.11.8`, `latest`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) # Quick reference (cont.) From 9c421268c9d4544a51b59e97141eaa5d04c75660 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Feb 2024 12:19:16 -0800 Subject: [PATCH 0982/2686] Run update.sh --- amazoncorretto/README.md | 82 ++++++++++++++++++++-------------------- kapacitor/README.md | 8 ++-- orientdb/README.md | 4 +- unit/README.md | 27 +++++++------ 4 files changed, 62 insertions(+), 59 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index dca18a45b894..2603a515a893 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,47 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/8/jre/alpine/3.19/Dockerfile) -- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/17/jdk/alpine/3.19/Dockerfile) -- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/548cb41462bab7b43ddd75fc9d41f234cf77dbd9/21/jdk/alpine/3.19/Dockerfile) +- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index 0225c199d302..f090e2e9fb0a 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/088d4b13d2d0e4ab522d6f21021d54302ed86aa1/kapacitor/1.7/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index ce327c6a709e..359501831eee 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.27`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7c3a945a49494db55de300c0193da8d9dd0f51c1/release/3.2.x/3.2.27/Dockerfile) -- [`3.2.27-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7c3a945a49494db55de300c0193da8d9dd0f51c1/release/3.2.x/3.2.27-tp3/Dockerfile) +- [`3.2.28`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/21d80d7dc21a33ad10f1ec652eb183c47845b170/release/3.2.x/3.2.28/Dockerfile) +- [`3.2.28-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/21d80d7dc21a33ad10f1ec652eb183c47845b170/release/3.2.x/3.2.28-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) diff --git a/unit/README.md b/unit/README.md index 824ba318d5b2..1cae6e17542c 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,18 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31.1-go1.21`, `go1.21`, `go1`, `go`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.go1.21) -- [`1.31.1-go1.20`, `go1.20`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.go1.20) -- [`1.31.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.jsc11) -- [`1.31.1-node20`, `node20`, `node`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.node20) -- [`1.31.1-node18`, `node18`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.node18) -- [`1.31.1-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.perl5.38) -- [`1.31.1-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.perl5.36) -- [`1.31.1-php8.2`, `php8.2`, `php8`, `php`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.php8.2) -- [`1.31.1-python3.11`, `python3.11`, `python3`, `python`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.python3.11) -- [`1.31.1-ruby3.2`, `ruby3.2`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.ruby3.2) -- [`1.31.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.wasm) -- [`1.31.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/fb33ec86a3b6ca6a844dfa6980bb9e083094abec/pkg/docker/Dockerfile.minimal) +- [`1.32.0-go1.22`, `go1.22`, `go1`, `go`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.go1.22) +- [`1.32.0-go1.21`, `go1.21`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.go1.21) +- [`1.32.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.jsc11) +- [`1.32.0-node21`, `node21`, `node`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.node21) +- [`1.32.0-node20`, `node20`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.node20) +- [`1.32.0-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.perl5.38) +- [`1.32.0-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.perl5.36) +- [`1.32.0-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.php8.3) +- [`1.32.0-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.php8.2) +- [`1.32.0-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.python3.12) +- [`1.32.0-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.python3.11) +- [`1.32.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.ruby3.3) +- [`1.32.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.ruby3.2) +- [`1.32.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.wasm) +- [`1.32.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From b50e09ec5aa55f7056eeb21eb3bccc54c934c62a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Feb 2024 13:09:55 -0800 Subject: [PATCH 0983/2686] Run update.sh --- bash/README.md | 2 +- haproxy/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/README.md b/bash/README.md index eef7a2330c1a..5c08938ebaed 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240216`, `devel`, `devel-20240216-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d69b105406aa7fdadae9a8de8c18ac566b5580ea/devel/Dockerfile) +- [`devel-20240221`, `devel`, `devel-20240221-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d7b6719ea3d5f3d166c7f46f858edf947de4fbe9/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 93504a3543f5..0430090c545f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,8 +28,8 @@ WARNING: - [`3.0-dev4-alpine`, `3.0-dev-alpine`, `3.0-dev4-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7ff4e114609c146264294b910f5502d295c7794c/3.0/alpine/Dockerfile) - [`2.9.6`, `2.9`, `latest`, `2.9.6-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/Dockerfile) - [`2.9.6-alpine`, `2.9-alpine`, `alpine`, `2.9.6-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/alpine/Dockerfile) -- [`2.8.6`, `2.8`, `lts`, `2.8.6-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/Dockerfile) -- [`2.8.6-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.6-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/cc8baae41343fe053dbf79c3fe50776bd9221cbe/2.8/alpine/Dockerfile) +- [`2.8.7`, `2.8`, `lts`, `2.8.7-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/Dockerfile) +- [`2.8.7-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.7-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/alpine/Dockerfile) - [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) - [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/alpine/Dockerfile) - [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/Dockerfile) From 9854e6e4613c4cc5e9e7e067a1e840268d199cf4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Feb 2024 14:20:42 -0800 Subject: [PATCH 0984/2686] Run update.sh --- docker/README.md | 6 ++---- wordpress/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/docker/README.md b/docker/README.md index 01fbaccab9fc..980bd24693b1 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,15 +29,13 @@ WARNING: ## Simple Tags - [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/cli/Dockerfile) -- [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind/Dockerfile) +- [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3-git`, `25.0-git`, `25-git`, `git`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/25/dind/Dockerfile) - [`25.0.3-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind-rootless/Dockerfile) -- [`25.0.3-git`, `25.0-git`, `25-git`, `git`](https://github.com/docker-library/docker/blob/d3e33ac3bc1eab5d436b7ab2981ba539ebbb7275/25/git/Dockerfile) - [`25.0.3-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.3-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) - [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/cli/Dockerfile) -- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind/Dockerfile) +- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-git`, `24.0-git`, `24-git`](https://github.com/docker-library/docker/blob/6964fd52030c2e6e9e0943eaac07d78c9841fbb3/24/git/Dockerfile) - [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-1809/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 25c6eb85aee8..4a0fc9b65a33 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-beta2-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta2-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-beta2-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-beta2-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-beta2-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta2`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta2-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta2-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-beta2-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta2-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-beta2-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta2-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-beta2-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta2-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-beta2-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-beta2-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8af90c80eff2eb5494eea36f0162ee285b7b5009/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-beta3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-beta3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-beta3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-beta3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-beta3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-beta3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-beta3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-beta3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-beta3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 6191e017fe4d53e3b666aef0ccc69f6435103a36 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Feb 2024 14:20:43 -0800 Subject: [PATCH 0985/2686] Run update.sh --- chronograf/README.md | 16 ++++++++-------- memcached/README.md | 4 ++-- neo4j/README.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index c3dcde3f734a..a966272686f4 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/653ea422f18802f1d361018a9961af3f70d056e4/chronograf/1.10/alpine/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.8/alpine/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.9/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.9/alpine/Dockerfile) +- [`1.10`, `1.10.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.10/Dockerfile) +- [`1.10-alpine`, `1.10.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 68d5510a6a95..4034ec1f1a13 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.23`, `1.6`, `1`, `latest`, `1.6.23-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/11c5b970aa93e26bfb69289741cb3ee3f171488e/1/debian/Dockerfile) -- [`1.6.23-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.23-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/11c5b970aa93e26bfb69289741cb3ee3f171488e/1/alpine/Dockerfile) +- [`1.6.24`, `1.6`, `1`, `latest`, `1.6.24-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/c28a68e5a4add95385737ef33b6fc54d446be9f7/1/debian/Dockerfile) +- [`1.6.24-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.24-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/c28a68e5a4add95385737ef33b6fc54d446be9f7/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 49b0461dd136..530d4b36c717 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,8 +30,8 @@ WARNING: - [`5.17.0-enterprise-ubi9`, `5.17-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi9/enterprise/Dockerfile) - [`5.17.0-community-ubi8`, `5.17-community-ubi8`, `5-community-ubi8`, `5.17.0-ubi8`, `5.17-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/community/Dockerfile) - [`5.17.0-enterprise-ubi8`, `5.17-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/enterprise/Dockerfile) -- [`4.4.30`, `4.4.30-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/community/Dockerfile) -- [`4.4.30-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/dae45c73d0c9d68337f01f1711b225a8aef36411/4.4.30/bullseye/enterprise/Dockerfile) +- [`4.4.31`, `4.4.31-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/community/Dockerfile) +- [`4.4.31-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 595493eb833acc2970e72f4fbc0f3f69f67ff144 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Feb 2024 11:09:47 -0800 Subject: [PATCH 0986/2686] Run update.sh --- api-firewall/README.md | 2 +- lightstreamer/README.md | 7 ++++--- mysql/README.md | 2 +- odoo/README.md | 6 +++--- rocket.chat/README.md | 4 ++-- swipl/README.md | 4 ++-- 6 files changed, 13 insertions(+), 12 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 637763677410..4f3266699e4a 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.15`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/94971338b498dca6144ed3d2b7dceb045aac0d0f/0.6.15/Dockerfile) +- [`0.6.16`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/f99c6a69f9d7c6dec9d313a21183e54f1e49f6bf/0.6.16/Dockerfile) # Quick reference (cont.) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 305eb664b220..419aadbce83e 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -35,9 +35,10 @@ WARNING: - [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk8/Dockerfile) - [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk11/Dockerfile) - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) -- [`7.4.1-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.1-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk8/Dockerfile) -- [`7.4.1-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.1-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk11/Dockerfile) -- [`7.4.1-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.1-jdk17`, `7.4-jdk17`, `7-jdk17`, `7.4.1`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/e19e4c7d1e6cac1eb3d4c6fb35e4e413e28dc53e/7.4/jdk17/Dockerfile) +- [`7.4.2-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.2-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk8/Dockerfile) +- [`7.4.2-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.2-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk11/Dockerfile) +- [`7.4.2-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.2-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk17/Dockerfile) +- [`7.4.2-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.2-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.2`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk21/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 1f5a5cec5f7c..825e22a5ed21 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.3.0`, `8.3`, `8`, `innovation`, `latest`, `8.3.0-oraclelinux8`, `8.3-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.3.0-oracle`, `8.3-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/innovation/Dockerfile.oracle) - [`8.0.36`, `8.0`, `8.0.36-oraclelinux8`, `8.0-oraclelinux8`, `8.0.36-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/8.0/Dockerfile.oracle) -- [`8.0.36-bullseye`, `8.0-bullseye`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/8.0/Dockerfile.debian) +- [`8.0.36-bookworm`, `8.0-bookworm`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/d6c12b61316e44e52ce195dd6343ac96e8343fce/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index c2b566800423..d2bd8dec80d7 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/35fea9ea1f6eadb32b009e503136b84a38d55e35/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/15.0/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index f075c0e8cef7..f09e469ef87d 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.1`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9222fb2f7e1a07ad4006e56dd27089424911489f/6.6/Dockerfile) -- [`6.5.3`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/6bb91d4971eb1d1c8e7fb84ec2d646c2b9474818/6.5/Dockerfile) +- [`6.6.2`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/5cd5e1a719132cfbf4134eec395f2d6abb3fe995/6.6/Dockerfile) +- [`6.5.4`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/5cd5e1a719132cfbf4134eec395f2d6abb3fe995/6.5/Dockerfile) - [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) - [`6.3.12`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.3/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 1e0432928fcf..519e837e211e 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.1`](https://github.com/SWI-Prolog/docker-swipl/blob/407be53af3e43f900aabe6f42cef759705d56dab/9.3.1/bookworm/Dockerfile) -- [`stable`, `9.2.1`](https://github.com/SWI-Prolog/docker-swipl/blob/407be53af3e43f900aabe6f42cef759705d56dab/9.2.1/bookworm/Dockerfile) +- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/938863dd637e892c47386759da40e4d3bd64e6de/9.3.2/bookworm/Dockerfile) +- [`stable`, `9.2.2`](https://github.com/SWI-Prolog/docker-swipl/blob/938863dd637e892c47386759da40e4d3bd64e6de/9.2.2/bookworm/Dockerfile) # Quick reference (cont.) From 098e2806d097107d33372c99cb203712b610b3fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Feb 2024 12:19:14 -0800 Subject: [PATCH 0987/2686] Run update.sh --- docker/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docker/README.md b/docker/README.md index 980bd24693b1..fddf0fe2e2c5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`26.0.0-rc1-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/cli/Dockerfile) +- [`26.0.0-rc1-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc1-dind-alpine3.19`, `26.0.0-rc1`, `26-rc`, `rc`, `26.0.0-rc1-alpine3.19`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind/Dockerfile) +- [`26.0.0-rc1-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind-rootless/Dockerfile) +- [`26.0.0-rc1-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc1-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-1809/Dockerfile) - [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/cli/Dockerfile) - [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3-git`, `25.0-git`, `25-git`, `git`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/25/dind/Dockerfile) - [`25.0.3-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind-rootless/Dockerfile) @@ -41,6 +46,9 @@ WARNING: ## Shared Tags +- `26.0.0-rc1-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: + - [`26.0.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-1809/Dockerfile) - `25.0.3-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - [`25.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) From 710713723465fd440b8ac4ae1d35ee63a6f08659 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Feb 2024 15:19:16 -0800 Subject: [PATCH 0988/2686] Run update.sh --- kapacitor/README.md | 8 ++++---- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 28 ++++++++++++++++++++++++++++ r-base/README.md | 2 +- ruby/README.md | 12 ++++++------ 5 files changed, 57 insertions(+), 29 deletions(-) diff --git a/kapacitor/README.md b/kapacitor/README.md index f090e2e9fb0a..7815576eae66 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/54cb8e421864aae77b66b159126e7f110804ea7c/kapacitor/1.7/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 635504b2dbfd..c60df42a9381 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-11-jdk-oraclelinux8`, `23-ea-11-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-11-jdk-oracle`, `23-ea-11-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-11-jdk-oraclelinux7`, `23-ea-11-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-11-jdk-bookworm`, `23-ea-11-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/bookworm/Dockerfile) -- [`23-ea-11-jdk-slim-bookworm`, `23-ea-11-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-11-jdk-slim`, `23-ea-11-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-11-jdk-bullseye`, `23-ea-11-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/bullseye/Dockerfile) -- [`23-ea-11-jdk-slim-bullseye`, `23-ea-11-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-11-jdk-windowsservercore-ltsc2022`, `23-ea-11-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-11-jdk-windowsservercore-1809`, `23-ea-11-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-11-jdk-nanoserver-1809`, `23-ea-11-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-12-jdk-oraclelinux8`, `23-ea-12-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-12-jdk-oracle`, `23-ea-12-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-12-jdk-oraclelinux7`, `23-ea-12-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-12-jdk-bookworm`, `23-ea-12-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/bookworm/Dockerfile) +- [`23-ea-12-jdk-slim-bookworm`, `23-ea-12-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-12-jdk-slim`, `23-ea-12-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-12-jdk-bullseye`, `23-ea-12-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/bullseye/Dockerfile) +- [`23-ea-12-jdk-slim-bullseye`, `23-ea-12-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-12-jdk-windowsservercore-ltsc2022`, `23-ea-12-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-12-jdk-windowsservercore-1809`, `23-ea-12-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-12-jdk-nanoserver-1809`, `23-ea-12-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/nanoserver-1809/Dockerfile) - [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux7/Dockerfile) - [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `23-ea-11-jdk`, `23-ea-11`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-11-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-11-jdk-windowsservercore`, `23-ea-11-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-11-jdk-nanoserver`, `23-ea-11-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0960f0d4ee7e8ef1148a838328ceced057f4f4af/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-12-jdk`, `23-ea-12`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-12-jdk-windowsservercore`, `23-ea-12-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-12-jdk-nanoserver`, `23-ea-12-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index 332b50ec2533..eaed122b7746 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.4RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.4RC1-bookworm`, `8.3-rc-bookworm`, `8.3.4RC1-cli`, `8.3-rc-cli`, `8.3.4RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.4RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.4RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.4RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.4RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.4RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.4RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.4RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.4RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.4RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.4RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.4RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.4RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.4RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.4RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.4RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.4RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.4RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.4RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.4RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.4RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.4RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.4RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.4RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.3-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.3-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.3-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.3`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/cli/Dockerfile) - [`8.3.3-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.3-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/apache/Dockerfile) - [`8.3.3-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.3-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.3-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.3-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/cli/Dockerfile) - [`8.3.3-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/fpm/Dockerfile) - [`8.3.3-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.17RC2-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.17RC2-bookworm`, `8.2-rc-bookworm`, `8.2.17RC2-cli`, `8.2-rc-cli`, `8.2.17RC2`, `8.2-rc`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.17RC2-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.17RC2-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.17RC2-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.17RC2-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.17RC2-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.17RC2-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.17RC2-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.17RC2-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.17RC2-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.17RC2-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.17RC2-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.17RC2-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.17RC2-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.17RC2-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.17RC2-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.17RC2-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.17RC2-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.17RC2-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.17RC2-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.17RC2-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.17RC2-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.17RC2-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.17RC2-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.16-cli-bookworm`, `8.2-cli-bookworm`, `8.2.16-bookworm`, `8.2-bookworm`, `8.2.16-cli`, `8.2-cli`, `8.2.16`, `8.2`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/cli/Dockerfile) - [`8.2.16-apache-bookworm`, `8.2-apache-bookworm`, `8.2.16-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/apache/Dockerfile) - [`8.2.16-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.16-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/fpm/Dockerfile) diff --git a/r-base/README.md b/r-base/README.md index 0e4ff0d8ae9a..d689267473fa 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.2`, `latest`](https://github.com/rocker-org/rocker/blob/fc5974d0cd04e4e281323a52251d8976239ea071/r-base/4.3.2/Dockerfile) +- [`4.3.3`, `latest`](https://github.com/rocker-org/rocker/blob/d373d03aa4d491216905eb24b18d0f56165dd43f/r-base/4.3.3/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 597b88c3c038..8617af97f1ac 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/bookworm/Dockerfile) -- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/slim-bookworm/Dockerfile) -- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/bullseye/Dockerfile) -- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/slim-bullseye/Dockerfile) -- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/alpine3.19/Dockerfile) -- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/cfdac1e2a0de73395dea8f048eae2541cb26715f/3.3/alpine3.18/Dockerfile) +- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/bookworm/Dockerfile) +- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/slim-bookworm/Dockerfile) +- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/bullseye/Dockerfile) +- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/slim-bullseye/Dockerfile) +- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.19/Dockerfile) +- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.18/Dockerfile) - [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bookworm/Dockerfile) - [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bookworm/Dockerfile) - [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bullseye/Dockerfile) From d5b898a22d5ca57d06516bc49a45668d503a4a17 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Feb 2024 16:10:28 -0800 Subject: [PATCH 0989/2686] Run update.sh --- spark/README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/spark/README.md b/spark/README.md index 6d5026a88eeb..fc9882b2d48d 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,13 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.0-scala2.12-java17-python3-ubuntu`, `3.5.0-java17-python3`, `3.5.0-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java17-python3-ubuntu`, `3.5.1-java17-python3`, `3.5.1-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java17-r-ubuntu`, `3.5.1-java17-r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java17-ubuntu`, `3.5.1-java17-scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java11-python3-ubuntu`, `3.5.1-python3`, `3.5.1`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java11-r-ubuntu`, `3.5.1-r`, `r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java11-ubuntu`, `3.5.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java17-python3-ubuntu`, `3.5.0-java17-python3`, `3.5.0-java17`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java17-r-ubuntu`, `3.5.0-java17-r`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-r-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java17-ubuntu`, `3.5.0-java17-scala`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`, `r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`, `scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) - [`3.5.0-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-r-ubuntu/Dockerfile) - [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `3.4.1`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) - [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) From 97ed180a3740a23980730fe24f7c7fa9920dbf75 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Feb 2024 17:09:48 -0800 Subject: [PATCH 0990/2686] Run update.sh --- mongo/README.md | 135 ++++++++++++++++++++---------------- open-liberty/README.md | 54 +++++++-------- websphere-liberty/README.md | 48 ++++++------- 3 files changed, 126 insertions(+), 111 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 5b55b75388e6..646af242caf0 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,69 +28,84 @@ WARNING: ## Simple Tags -- [`7.0.5-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/7.0/Dockerfile) -- [`7.0.5-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.5-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.5-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.5-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.13-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/6.0/Dockerfile) -- [`6.0.13-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.13-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.13-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.13-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.24-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/5.0/Dockerfile) -- [`5.0.24-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.24-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.24-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.24-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.28-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/4.4/Dockerfile) -- [`4.4.28-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.28-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.28-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.28-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-1809/Dockerfile) +- [`7.0.7-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/Dockerfile) +- [`7.0.7-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.7-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.7-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.7-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.6-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) +- [`7.0.6-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.6-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.6-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.6-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.14-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) +- [`6.0.14-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.14-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.14-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.25-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) +- [`5.0.25-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.25-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.25-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.25-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-1809/Dockerfile) +- [`4.4.29-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) +- [`4.4.29-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) +- [`4.4.29-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) +- [`4.4.29-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`4.4.29-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `7.0.5`, `7.0`, `7`, `latest`: - - [`7.0.5-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/7.0/Dockerfile) - - [`7.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.5-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.5-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/584303f66286a7dc46ccc0c9157db10c9971a85f/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.13`, `6.0`, `6`: - - [`6.0.13-jammy`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/6.0/Dockerfile) - - [`6.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.13-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.13-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.13-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a25071bffcf8d859d24826b5067a414961e3599/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.24`, `5.0`, `5`: - - [`5.0.24-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/5.0/Dockerfile) - - [`5.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.24-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.24-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.24-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.24-nanoserver-1809`](https://github.com/docker-library/mongo/blob/196f787174d347bda3b5d3954c0b3ef73290d1f8/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.28`, `4.4`, `4`: - - [`4.4.28-focal`](https://github.com/docker-library/mongo/blob/12fc21f8786d0ec14c01ce40a1487d893ef512b9/4.4/Dockerfile) - - [`4.4.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.28-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.28-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.28-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.28-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a21ca6be5682be9da5027836fbed23c45b5d1101/4.4/windows/nanoserver-1809/Dockerfile) +- `7.0.7-rc0`, `7.0-rc`: + - [`7.0.7-rc0-jammy`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/Dockerfile) + - [`7.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.7-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.7-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.6`, `7.0`, `7`, `latest`: + - [`7.0.6-jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) + - [`7.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.6-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.6-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.14`, `6.0`, `6`: + - [`6.0.14-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) + - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.14-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.14-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.25`, `5.0`, `5`: + - [`5.0.25-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) + - [`5.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.25-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.25-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.25-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-1809/Dockerfile) +- `4.4.29`, `4.4`, `4`: + - [`4.4.29-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) + - [`4.4.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.29-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: + - [`4.4.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) + - [`4.4.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) +- `4.4.29-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: + - [`4.4.29-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-ltsc2022/Dockerfile) + - [`4.4.29-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 72271c0a3b38..abc361dfc096 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/24.0.0.1/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/b1a9f7151b4ae954698e756f015adc25643d7a2a/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 0759be18f802..e5ab5e1a0e53 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/24.0.0.1/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/7e9c89cb46e67de671bbb84cb3d821fba069ee83/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 31db3bf11be1cb758c1dcdc6d5c480a07c13d8c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Mar 2024 11:10:10 -0800 Subject: [PATCH 0991/2686] Run update.sh --- nats/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nats/README.md b/nats/README.md index c2cd884f0acf..684f2670d454 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.11-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.11-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/alpine3.19/Dockerfile) -- [`2.10.11-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.11-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/scratch/Dockerfile) -- [`2.10.11-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.11-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.24-alpine3.18`, `2.9-alpine3.18`, `2.9.24-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/alpine3.18/Dockerfile) -- [`2.9.24-scratch`, `2.9-scratch`, `2.9.24-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/scratch/Dockerfile) -- [`2.9.24-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.24-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.11-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.11-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/alpine3.19/Dockerfile) +- [`2.10.11-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.11-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/scratch/Dockerfile) +- [`2.10.11-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.11-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags - `2.10.11`, `2.10`, `2`, `latest`: - - [`2.10.11-scratch`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/scratch/Dockerfile) - - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.11-scratch`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/scratch/Dockerfile) + - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) - `2.10.11-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.11-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.11-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/windowsservercore-1809/Dockerfile) - `2.10.11-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.10.x/nanoserver-1809/Dockerfile) -- `2.9.24`, `2.9`: - - [`2.9.24-scratch`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/scratch/Dockerfile) -- `2.9.24-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/windowsservercore-1809/Dockerfile) -- `2.9.24-nanoserver`, `2.9-nanoserver`: - - [`2.9.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c6270b7aabfd921822f677a190607d7da07976a0/2.9.x/nanoserver-1809/Dockerfile) + - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) +- `2.9.25`, `2.9`: + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/scratch/Dockerfile) +- `2.9.25-windowsservercore`, `2.9-windowsservercore`: + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/windowsservercore-1809/Dockerfile) +- `2.9.25-nanoserver`, `2.9-nanoserver`: + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From f4a8b616ae641dfdb5844ff29e05fec19d78b22b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Mar 2024 12:18:53 -0800 Subject: [PATCH 0992/2686] Run update.sh --- sl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sl/README.md b/sl/README.md index df17dd55360c..aca23b5b0747 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/b3153b7022ee4efd2aa5a0bc316df598d0952401/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/cf956bf946be0c0dddeb772ededf869507d73051/sl7/Dockerfile) # Quick reference (cont.) From af09d74c8bba73ff5c59d88bd243572199188773 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 1 Mar 2024 17:21:12 -0800 Subject: [PATCH 0993/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index ea6ca20f1e22..af47aa8ad1c2 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.79.6`, `5.79`, `5`, `latest`](https://github.com/docker-library/ghost/blob/715911fdc0e927dedd50a7bee6d564f3725b9e3d/5/debian/Dockerfile) -- [`5.79.6-alpine`, `5.79-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/715911fdc0e927dedd50a7bee6d564f3725b9e3d/5/alpine/Dockerfile) +- [`5.80.0`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3c846e1c9e8b054dddd4ea2b94eae66eb3fc60f7/5/debian/Dockerfile) +- [`5.80.0-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3c846e1c9e8b054dddd4ea2b94eae66eb3fc60f7/5/alpine/Dockerfile) # Quick reference (cont.) From 7e588defd13e89ebc071f3fbbefc8ef55d006878 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sat, 2 Mar 2024 09:45:18 +0100 Subject: [PATCH 0994/2686] [Friendica] Fix `tls_starttls` setting --- friendica/content.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/friendica/content.md b/friendica/content.md index df72f372e31a..ee06996c4487 100644 --- a/friendica/content.md +++ b/friendica/content.md @@ -104,11 +104,15 @@ The following environment variables are possible for the SMTP examples. - `SMTP_DOMAIN` The sender domain. (**required** - e.g. `friendica.local`) - `SMTP_FROM` Sender user-part of the address. (Default: `no-reply` - e.g. no-reply@friendica.local) - `SMTP_TLS` Use TLS for connecting the SMTP Mail-Gateway. (Default: empty) -- `SMTP_STARTTLS` Use STARTTLS for connecting the SMTP Mail-Gateway. (Default: empty) +- `SMTP_STARTTLS` Use STARTTLS for connecting the SMTP Mail-Gateway. (Default: `On`) - `SMTP_AUTH` Auth mode for the SMTP Mail-Gateway. (Default: `On`) - `SMTP_AUTH_USER` Username for the SMTP Mail-Gateway. (Default: empty) - `SMTP_AUTH_PASS` Password for the SMTP Mail-Gateway. (Default: empty) +**Addition to STARTTLS** + +the `tls_starttls` setting is either `On` or `Off`, but never unset. That's because in case it's unset, `starttls` would be activated by default (which would need additional configuration like a separate port). + ## Database settings You have to add the Friendica container to the same network as the running database container, e. g. `--network some-network`, and then use `mysql` as the database host on setup. From ac6c0a7283908f64e80c9d4c82c8b08101189ab2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Mar 2024 12:19:06 -0800 Subject: [PATCH 0995/2686] Run update.sh --- friendica/README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index 5bbd561c7d90..c58306708aa5 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.12-apache`, `apache`, `stable-apache`, `2023.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/apache/Dockerfile) -- [`2023.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/fpm/Dockerfile) -- [`2023.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2023.12/fpm-alpine/Dockerfile) -- [`2024.03-dev-apache`, `dev-apache`, `2024.03-dev`, `dev`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/apache/Dockerfile) -- [`2024.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/fpm/Dockerfile) -- [`2024.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/120b88f6cb8f15e84f4a22322ffb86bcce92a047/2024.03-dev/fpm-alpine/Dockerfile) +- [`2023.12-apache`, `apache`, `stable-apache`, `2023.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/apache/Dockerfile) +- [`2023.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/fpm/Dockerfile) +- [`2023.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/fpm-alpine/Dockerfile) +- [`2024.03-dev-apache`, `dev-apache`, `2024.03-dev`, `dev`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/apache/Dockerfile) +- [`2024.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/fpm/Dockerfile) +- [`2024.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/fpm-alpine/Dockerfile) +- [`2024.03-rc-apache`, `rc-apache`, `2024.03-rc`, `rc`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/apache/Dockerfile) +- [`2024.03-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/fpm/Dockerfile) +- [`2024.03-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) From 40d3c3c43bfed112a7ed0dbf35f68fa8213057a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Mar 2024 15:19:20 -0800 Subject: [PATCH 0996/2686] Run update.sh --- groovy/README.md | 14 +++++++------- photon/README.md | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index 40b2c6fb3363..509a379d93c4 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.18-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.18-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk8/Dockerfile) -- [`4.0.18-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.18-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk11/Dockerfile) -- [`4.0.18-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk11-alpine/Dockerfile) -- [`4.0.18-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.18-jdk`, `4.0-jdk`, `4.0.18`, `4.0`, `4`, `jdk`, `latest`, `4.0.18-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.18-jdk-jammy`, `4.0-jdk-jammy`, `4.0.18-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk17/Dockerfile) -- [`4.0.18-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.18-jdk-alpine`, `4.0-jdk-alpine`, `4.0.18-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk17-alpine/Dockerfile) -- [`4.0.18-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.18-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk21/Dockerfile) -- [`4.0.18-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/43a45fc2af15d3264c5ce389b836bcccc7930f3b/jdk21-alpine/Dockerfile) +- [`4.0.19-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.19-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk8/Dockerfile) +- [`4.0.19-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.19-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk11/Dockerfile) +- [`4.0.19-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk11-alpine/Dockerfile) +- [`4.0.19-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.19-jdk`, `4.0-jdk`, `4.0.19`, `4.0`, `4`, `jdk`, `latest`, `4.0.19-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.19-jdk-jammy`, `4.0-jdk-jammy`, `4.0.19-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk17/Dockerfile) +- [`4.0.19-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.19-jdk-alpine`, `4.0-jdk-alpine`, `4.0.19-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk17-alpine/Dockerfile) +- [`4.0.19-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.19-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk21/Dockerfile) +- [`4.0.19-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index ce36872f0d21..de06ed8ef4c5 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240217`, `latest`](https://github.com/vmware/photon-docker-image/blob/6dae366d928bcd3aefda8ac86b5357b5f191d992/docker/Dockerfile) +- [`5.0`, `5.0-20240303`, `latest`](https://github.com/vmware/photon-docker-image/blob/954de8e946648ef26572d59f8069d2a4386ecd12/docker/Dockerfile) - [`4.0`, `4.0-20240225`](https://github.com/vmware/photon-docker-image/blob/f26acec1a55f376803952a89f2d7e20da09ec7e5/docker/Dockerfile) -- [`3.0`, `3.0-20240225`](https://github.com/vmware/photon-docker-image/blob/46e4d8f3da470d9bdff62c0b7a0982f6af1dc7f9/docker/Dockerfile) +- [`3.0`, `3.0-20240303`](https://github.com/vmware/photon-docker-image/blob/7286f3468342592dba8f77fc929e1ccdbe9592b9/docker/Dockerfile) # Quick reference (cont.) From c3761df9a501710d6d1a85cf4ef147f59d7508da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Mar 2024 16:10:21 -0800 Subject: [PATCH 0997/2686] Run update.sh --- clearlinux/README.md | 2 +- friendica/README.md | 6 +++++- influxdb/README.md | 4 ++-- julia/README.md | 41 +++++++++++++++++++++++++++-------------- percona/README.md | 2 +- 5 files changed, 36 insertions(+), 19 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index e44bc92976ae..69d91424be44 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/823fc7b99ed223b958af260b90240bd5387339f5/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4298b5816ff16a09beb53b87ea02c594f03e8cf7/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index c58306708aa5..223e0af80bfe 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -159,11 +159,15 @@ The following environment variables are possible for the SMTP examples. - `SMTP_DOMAIN` The sender domain. (**required** - e.g. `friendica.local`) - `SMTP_FROM` Sender user-part of the address. (Default: `no-reply` - e.g. no-reply@friendica.local) - `SMTP_TLS` Use TLS for connecting the SMTP Mail-Gateway. (Default: empty) -- `SMTP_STARTTLS` Use STARTTLS for connecting the SMTP Mail-Gateway. (Default: empty) +- `SMTP_STARTTLS` Use STARTTLS for connecting the SMTP Mail-Gateway. (Default: `On`) - `SMTP_AUTH` Auth mode for the SMTP Mail-Gateway. (Default: `On`) - `SMTP_AUTH_USER` Username for the SMTP Mail-Gateway. (Default: empty) - `SMTP_AUTH_PASS` Password for the SMTP Mail-Gateway. (Default: empty) +**Addition to STARTTLS** + +the `tls_starttls` setting is either `On` or `Off`, but never unset. That's because in case it's unset, `starttls` would be activated by default (which would need additional configuration like a separate port). + ## Database settings You have to add the Friendica container to the same network as the running database container, e. g. `--network some-network`, and then use `mysql` as the database host on setup. diff --git a/influxdb/README.md b/influxdb/README.md index e8b46ed2cf4d..903767fb228f 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -38,8 +38,8 @@ WARNING: - [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/data/alpine/Dockerfile) - [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/Dockerfile) - [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/alpine/Dockerfile) -- [`2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/Dockerfile) -- [`2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/alpine/Dockerfile) +- [`2`, `2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 7ec59b427e82..7c5385e4b8fd 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,18 @@ WARNING: ## Simple Tags -- [`1.10.1-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bookworm/Dockerfile) -- [`1.10.1-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bullseye/Dockerfile) -- [`1.10.1-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.1-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/alpine3.19/Dockerfile) -- [`1.10.1-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/alpine3.18/Dockerfile) -- [`1.10.1-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.1-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-alpha1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-alpha1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-alpha1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`, `1.11.0-alpha1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/alpine3.19/Dockerfile) +- [`1.11.0-alpha1-alpine3.18`, `1.11-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/alpine3.18/Dockerfile) +- [`1.11.0-alpha1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-alpha1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.10.2-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) +- [`1.10.2-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bullseye/Dockerfile) +- [`1.10.2-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.2-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.19/Dockerfile) +- [`1.10.2-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.18/Dockerfile) +- [`1.10.2-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.2-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) @@ -43,13 +49,20 @@ WARNING: ## Shared Tags -- `1.10.1`, `1.10`, `1`, `latest`: - - [`1.10.1-bookworm`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/bookworm/Dockerfile) - - [`1.10.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.1-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.10.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/488218e5607ad811decac17862f06147d916c480/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-alpha1`, `1.11-rc`, `rc`: + - [`1.11.0-alpha1-bookworm`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-alpha1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.10.2`, `1.10`, `1`, `latest`: + - [`1.10.2-bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) + - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.2-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) @@ -64,7 +77,7 @@ WARNING: [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) + [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) - **Published image artifact details**: [repo-info repo's `repos/julia/` directory](https://github.com/docker-library/repo-info/blob/master/repos/julia) ([history](https://github.com/docker-library/repo-info/commits/master/repos/julia)) diff --git a/percona/README.md b/percona/README.md index f427671ba48e..5190bc92db72 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.35-27-centos`, `8.0-centos`, `8-centos`, `8.0.35-27`, `8.0`, `8`, `ps-8.0.35-27`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/064dfe8395cc2735a7dc81201f9abc786323ea26/percona-server-8.0/Dockerfile) +- [`8.0.36-28-centos`, `8.0-centos`, `8-centos`, `8.0.36-28`, `8.0`, `8`, `ps-8.0.36-28`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/02252c71b5fcf2d2235f7ec0d81940d4f2c45b64/percona-server-8.0/Dockerfile) - [`5.7.44-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.44`, `5.7`, `5`, `ps-5.7.44`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/b89efa5f100edacc0ef660cef37975acfaf67326/percona-server-5.7/Dockerfile-dockerhub) - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) From f1f06cba9024a3fb455c0c6fdbb1e4bb3f74f611 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Mar 2024 17:09:49 -0800 Subject: [PATCH 0998/2686] Run update.sh --- nextcloud/README.md | 18 +++++++++--------- redmine/README.md | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 7eb2237ab324..ce519a2d8bd1 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.11-apache`, `26.0-apache`, `26-apache`, `26.0.11`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/apache/Dockerfile) -- [`26.0.11-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/fpm/Dockerfile) -- [`26.0.11-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/26/fpm-alpine/Dockerfile) -- [`27.1.6-apache`, `27.1-apache`, `27-apache`, `stable-apache`, `production-apache`, `27.1.6`, `27.1`, `27`, `stable`, `production`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/apache/Dockerfile) -- [`27.1.6-fpm`, `27.1-fpm`, `27-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/fpm/Dockerfile) -- [`27.1.6-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/59dd41aaca14d3cd3ddbf072973c1b8a7bc14cc8/27/fpm-alpine/Dockerfile) -- [`28.0.2-apache`, `28.0-apache`, `28-apache`, `apache`, `28.0.2`, `28.0`, `28`, `latest`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/apache/Dockerfile) -- [`28.0.2-fpm`, `28.0-fpm`, `28-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/fpm/Dockerfile) -- [`28.0.2-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/5aa43c00c808791cdd1504998e8cc88365140a60/28/fpm-alpine/Dockerfile) +- [`26.0.12-apache`, `26.0-apache`, `26-apache`, `26.0.12`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/apache/Dockerfile) +- [`26.0.12-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/fpm/Dockerfile) +- [`26.0.12-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/fpm-alpine/Dockerfile) +- [`27.1.7-apache`, `27.1-apache`, `27-apache`, `27.1.7`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/apache/Dockerfile) +- [`27.1.7-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/fpm/Dockerfile) +- [`27.1.7-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/fpm-alpine/Dockerfile) +- [`28.0.3-apache`, `28.0-apache`, `28-apache`, `apache`, `stable-apache`, `production-apache`, `28.0.3`, `28.0`, `28`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/apache/Dockerfile) +- [`28.0.3-fpm`, `28.0-fpm`, `28-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/fpm/Dockerfile) +- [`28.0.3-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index d8e62ddc2078..5a30ee99dbe7 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/9f8737bd02cab294935e8ef8521ae51bfad9aee8/5.1/bookworm/Dockerfile) -- [`5.1.1-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.1-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/5b28bcaaca4e14c41564d43cf5e53b0a13b49155/5.1/alpine3.18/Dockerfile) -- [`5.0.7`, `5.0`, `5.0.7-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/9f8737bd02cab294935e8ef8521ae51bfad9aee8/5.0/bookworm/Dockerfile) -- [`5.0.7-alpine3.18`, `5.0-alpine3.18`, `5.0.7-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/d65c2af08af53ba1c68beca8b10ae59fa4e402d5/5.0/alpine3.18/Dockerfile) +- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/51b7921366b46e2dd5a7f9629b933a3e7a68fdb1/5.1/bookworm/Dockerfile) +- [`5.1.2-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.2-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/51b7921366b46e2dd5a7f9629b933a3e7a68fdb1/5.1/alpine3.18/Dockerfile) +- [`5.0.8`, `5.0`, `5.0.8-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/a47825ab3251935beedb9d83ecdc80e78d1ccf28/5.0/bookworm/Dockerfile) +- [`5.0.8-alpine3.18`, `5.0-alpine3.18`, `5.0.8-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/a47825ab3251935beedb9d83ecdc80e78d1ccf28/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) From a9cf76398d9ab7bff96b36e7eed0024d9ff6c379 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 11:21:40 -0800 Subject: [PATCH 0999/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ kong/README.md | 6 +--- 2 files changed, 37 insertions(+), 41 deletions(-) diff --git a/golang/README.md b/golang/README.md index eadd873e6d45..5c0e214ec15f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.22.0-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bookworm/Dockerfile) -- [`1.22.0-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bullseye/Dockerfile) -- [`1.22.0-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.0-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/alpine3.19/Dockerfile) -- [`1.22.0-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/alpine3.18/Dockerfile) -- [`1.22.0-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.0-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.0-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.0-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.7-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bookworm/Dockerfile) -- [`1.21.7-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bullseye/Dockerfile) -- [`1.21.7-alpine3.19`, `1.21-alpine3.19`, `1.21.7-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/alpine3.19/Dockerfile) -- [`1.21.7-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/alpine3.18/Dockerfile) -- [`1.21.7-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.7-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.7-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.7-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.1-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bookworm/Dockerfile) +- [`1.22.1-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bullseye/Dockerfile) +- [`1.22.1-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.1-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/alpine3.19/Dockerfile) +- [`1.22.1-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/alpine3.18/Dockerfile) +- [`1.22.1-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.1-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.1-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.1-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.8-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bookworm/Dockerfile) +- [`1.21.8-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bullseye/Dockerfile) +- [`1.21.8-alpine3.19`, `1.21-alpine3.19`, `1.21.8-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/alpine3.19/Dockerfile) +- [`1.21.8-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/alpine3.18/Dockerfile) +- [`1.21.8-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.8-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.8-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.8-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.22.0`, `1.22`, `1`, `latest`: - - [`1.22.0-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/bookworm/Dockerfile) - - [`1.22.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.0-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.0-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.7`, `1.21`: - - [`1.21.7-bookworm`](https://github.com/docker-library/golang/blob/893a2c96ba6154de2ad3663d087998bfda0a04e9/1.21/bookworm/Dockerfile) - - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.7-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.7-nanoserver`, `1.21-nanoserver`: - - [`1.21.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/1ffd990d2051bebd4d914d970484c6a93f3005f2/1.21/windows/nanoserver-1809/Dockerfile) +- `1.22.1`, `1.22`, `1`, `latest`: + - [`1.22.1-bookworm`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bookworm/Dockerfile) + - [`1.22.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.1-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.1-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.8`, `1.21`: + - [`1.21.8-bookworm`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bookworm/Dockerfile) + - [`1.21.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.8-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.8-nanoserver`, `1.21-nanoserver`: + - [`1.21.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index 5c28766f55d8..36358c93ee32 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,15 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.0-ubuntu`, `3.6-ubuntu`, `3.6.0`, `3.6`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/3d393c74fa0d05df0e2493f8e44885e468a368d2/ubuntu/Dockerfile) +- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/4dec46ee7e14ddd3a10692814728ff85adb77f25/ubuntu/Dockerfile) - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) - [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) - [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) -- [`3.2.2-alpine`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/Dockerfile.apk) -- [`3.2.2-ubuntu`, `3.2-ubuntu`, `3.2.2`, `3.2`](https://github.com/Kong/docker-kong/blob/5641f8836920650fc66c6d36408daf794d730b96/ubuntu/Dockerfile) -- [`3.1.1-alpine`, `3.1.1`, `3.1`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/Dockerfile.apk) -- [`3.1.1-ubuntu`, `3.1-ubuntu`](https://github.com/Kong/docker-kong/blob/5f914be945ec1732837cc4f6463219bed566c7ef/ubuntu/Dockerfile) - [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) - [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) From f3c9f011f28aab51738135a7027a799e35173ea1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 12:30:21 -0800 Subject: [PATCH 1000/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 5c08938ebaed..e4847980b9b5 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240221`, `devel`, `devel-20240221-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/d7b6719ea3d5f3d166c7f46f858edf947de4fbe9/devel/Dockerfile) +- [`devel-20240304`, `devel`, `devel-20240304-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/c2cc41f2df58cf265ab7dd1a20b28729e8c4d4f9/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) From 2935fa10b6c071597f256e28ba7bfef064020429 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 15:35:43 -0800 Subject: [PATCH 1001/2686] Run update.sh --- haxe/README.md | 60 ++++++++++++++++++++++++------------------------ joomla/README.md | 15 +++++------- 2 files changed, 36 insertions(+), 39 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index a885a8e1072c..ffae077168a8 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,64 +28,64 @@ WARNING: ## Simple Tags -- [`4.3.3-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/bullseye/Dockerfile) -- [`4.3.3-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/buster/Dockerfile) -- [`4.3.3-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.3-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.3-alpine3.19`, `4.3-alpine3.19`, `4.3.3-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.3/alpine3.19/Dockerfile) -- [`4.3.3-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.18/Dockerfile) -- [`4.3.3-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.17/Dockerfile) -- [`4.3.3-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/alpine3.16/Dockerfile) -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) -- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/buster/Dockerfile) +- [`4.3.4-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) +- [`4.3.4-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/buster/Dockerfile) +- [`4.3.4-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.4-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.4-alpine3.19`, `4.3-alpine3.19`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) +- [`4.3.4-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.18/Dockerfile) +- [`4.3.4-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.17/Dockerfile) +- [`4.3.4-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.16/Dockerfile) +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) +- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - [`4.2.5-alpine3.19`, `4.2-alpine3.19`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) - [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) -- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.2/alpine3.17/Dockerfile) -- [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.2/alpine3.16/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) -- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/buster/Dockerfile) +- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.17/Dockerfile) +- [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.16/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) +- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - [`4.1.5-alpine3.19`, `4.1-alpine3.19`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) - [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) -- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.1/alpine3.17/Dockerfile) -- [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.1/alpine3.16/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) -- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/buster/Dockerfile) +- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.17/Dockerfile) +- [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.16/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) +- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - [`4.0.5-alpine3.19`, `4.0-alpine3.19`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) - [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) -- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/40bf9156af6f198cd7a57dbfd452e24dc1ceb94e/4.0/alpine3.17/Dockerfile) -- [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5f520ca3ba5942ab581369bab2cbda2b8c4ab992/4.0/alpine3.16/Dockerfile) +- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.17/Dockerfile) +- [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.16/Dockerfile) ## Shared Tags -- `4.3.3`, `4.3`, `latest`: - - [`4.3.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/bullseye/Dockerfile) - - [`4.3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) -- `4.3.3-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/52a5f2360f84687908f3d80be326c810875c9be6/4.3/windowsservercore-1809/Dockerfile) +- `4.3.4`, `4.3`, `latest`: + - [`4.3.4-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) + - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) +- `4.3.4-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.2/bullseye/Dockerfile) + - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.1.5-windowsservercore`, `4.1-windowsservercore`: - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e55b2953c28c448f92aaf265168c1bf85b4867f/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `4.0.5-windowsservercore`, `4.0-windowsservercore`: diff --git a/joomla/README.md b/joomla/README.md index 0b273c650b24..060216ed42d8 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,15 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-alpha4-php8.1-apache`, `5.1-php8.1-apache`, `5.1.alpha-php8.1-apache`, `5.1.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/apache/Dockerfile) -- [`5.1.0-alpha4-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.alpha-php8.1-fpm-alpine`, `5.1.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.1.0-alpha4-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.alpha-php8.1-fpm`, `5.1.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.1/fpm/Dockerfile) -- [`5.1.0-alpha4`, `5.1`, `5.1.alpha`, `5.1.0-alpha`, `5.1.0-alpha4-apache`, `5.1-apache`, `5.1.alpha-apache`, `5.1.0-alpha-apache`, `5.1.0-alpha4-php8.2`, `5.1-php8.2`, `5.1.alpha-php8.2`, `5.1.0-alpha-php8.2`, `5.1.0-alpha4-php8.2-apache`, `5.1-php8.2-apache`, `5.1.alpha-php8.2-apache`, `5.1.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/apache/Dockerfile) -- [`5.1.0-alpha4-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.alpha-php8.2-fpm-alpine`, `5.1.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.1.0-alpha4-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.alpha-php8.2-fpm`, `5.1.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.2/fpm/Dockerfile) -- [`5.1.0-alpha4-php8.3-apache`, `5.1-php8.3-apache`, `5.1.alpha-php8.3-apache`, `5.1.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/apache/Dockerfile) -- [`5.1.0-alpha4-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5.1.alpha-php8.3-fpm-alpine`, `5.1.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.1.0-alpha4-php8.3-fpm`, `5.1-php8.3-fpm`, `5.1.alpha-php8.3-fpm`, `5.1.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.1.alpha/php8.3/fpm/Dockerfile) +- [`5.1.0-beta1-php8.1-apache`, `5.1-php8.1-apache`, `5.1.beta-php8.1-apache`, `5.1.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/apache/Dockerfile) +- [`5.1.0-beta1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.beta-php8.1-fpm-alpine`, `5.1.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.1.0-beta1-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.beta-php8.1-fpm`, `5.1.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/fpm/Dockerfile) +- [`5.1.0-beta1`, `5.1`, `5.1.beta`, `5.1.0-beta`, `5.1.0-beta1-apache`, `5.1-apache`, `5.1.beta-apache`, `5.1.0-beta-apache`, `5.1.0-beta1-php8.2`, `5.1-php8.2`, `5.1.beta-php8.2`, `5.1.0-beta-php8.2`, `5.1.0-beta1-php8.2-apache`, `5.1-php8.2-apache`, `5.1.beta-php8.2-apache`, `5.1.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/apache/Dockerfile) +- [`5.1.0-beta1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.beta-php8.2-fpm-alpine`, `5.1.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.1.0-beta1-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.beta-php8.2-fpm`, `5.1.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/fpm/Dockerfile) - [`5.0.3-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/apache/Dockerfile) - [`5.0.3-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm-alpine/Dockerfile) - [`5.0.3-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm/Dockerfile) From e278032286f31f84f7852480f9fb0611c233de3f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 16:10:02 -0800 Subject: [PATCH 1002/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index c0da33978ef5..429c8a098fb5 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/glibc/Dockerfile) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/uclibc/Dockerfile) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/musl/Dockerfile) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest/glibc/Dockerfile) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/glibc/Dockerfile) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/uclibc/Dockerfile) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/musl/Dockerfile) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/09ee80aedec1d8c604f104e8bec41ed19274620a/latest-1/glibc/Dockerfile) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From e465a135d5830731ec4d8a8d6e99dee2d6560c13 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 17:21:24 -0800 Subject: [PATCH 1003/2686] Run update.sh --- ubuntu/README.md | 8 ++++---- wordpress/README.md | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index f5b0d427af53..b18fe1ba2a0b 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240123`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240123-fb52992f&id=fb52992ff7e59e29008a6e1fa583207d2f36b9fe) -- [`22.04`, `jammy-20240212`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240212-9e1d1f07&id=9e1d1f0733aa861ce47cb2ee80eef388bb897f90) -- [`23.10`, `mantic-20240122`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240122-07aef2de&id=07aef2de3835f07015f042626ae71721ca4f6bd1) -- [`24.04`, `noble-20240212`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240212-8a650c60&id=8a650c60e99c96a81eb4c7d72a8a7a272ba0f626) +- [`20.04`, `focal-20240216`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240216-5e82aa8e&id=5e82aa8e3498567df6757d3e9598a8cd54d19ee9) +- [`22.04`, `jammy-20240227`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240227-c988e436&id=c988e4364bc3cc0378f6c3592eb486d281a6ac41) +- [`23.10`, `mantic-20240216`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240216-c9ad3939&id=c9ad39394a666b231d5c5398e3cd38ac70c0594c) +- [`24.04`, `noble-20240225`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240225-8cf671e3&id=8cf671e3c71fa7d0735ceefd4a77c7af2771472f) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4a0fc9b65a33..bbee08cc06d8 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-beta3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-beta3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-beta3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-beta3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-beta3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-beta3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-beta3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-beta3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-beta3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-beta3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-beta3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-beta3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-beta3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-beta3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-beta3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-beta3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1ced29f06fc3f5b418722e6b3e910eee9bee1d9c/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-RC1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-RC1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-RC1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-RC1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-RC1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-RC1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-RC1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-RC1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-RC1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 2e7881e62c2cda37702601732c27963b1b6d286d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Mar 2024 18:18:46 -0800 Subject: [PATCH 1004/2686] Run update.sh --- gradle/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 180e62cb67d7..3e09691fdb08 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.0-jdk8`, `8.6-jdk8`, `8-jdk8`, `jdk8`, `8.6.0-jdk8-jammy`, `8.6-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk8/Dockerfile) -- [`8.6.0-jdk8-focal`, `8.6-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk8-focal/Dockerfile) -- [`8.6.0-jdk11`, `8.6-jdk11`, `8-jdk11`, `jdk11`, `8.6.0-jdk11-jammy`, `8.6-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11/Dockerfile) -- [`8.6.0-jdk11-focal`, `8.6-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11-focal/Dockerfile) -- [`8.6.0-jdk11-alpine`, `8.6-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk11-alpine/Dockerfile) -- [`8.6.0-jdk17`, `8.6-jdk17`, `8-jdk17`, `jdk17`, `8.6.0-jdk`, `8.6-jdk`, `8-jdk`, `jdk`, `8.6.0`, `8.6`, `8`, `latest`, `8.6.0-jdk17-jammy`, `8.6-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.6.0-jdk-jammy`, `8.6-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.6.0-jammy`, `8.6-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17/Dockerfile) -- [`8.6.0-jdk17-focal`, `8.6-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.6.0-jdk-focal`, `8.6-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.6.0-focal`, `8.6-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-focal/Dockerfile) -- [`8.6.0-jdk17-alpine`, `8.6-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.6.0-jdk-alpine`, `8.6-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.6.0-alpine`, `8.6-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-alpine/Dockerfile) -- [`8.6.0-jdk17-graal`, `8.6-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.6.0-jdk-graal`, `8.6-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.6.0-graal`, `8.6-graal`, `8-graal`, `graal`, `8.6.0-jdk17-graal-jammy`, `8.6-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.6.0-jdk-graal-jammy`, `8.6-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.6.0-graal-jammy`, `8.6-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk17-graal/Dockerfile) -- [`8.6.0-jdk21`, `8.6-jdk21`, `8-jdk21`, `jdk21`, `8.6.0-jdk21-jammy`, `8.6-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21/Dockerfile) -- [`8.6.0-jdk21-alpine`, `8.6-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-alpine/Dockerfile) -- [`8.6.0-jdk21-graal`, `8.6-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.6.0-jdk21-graal-jammy`, `8.6-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9457baad831ef9ae629b0e2dc6983a0b2f8cb409/jdk21-graal/Dockerfile) +- [`8.6.0-jdk8`, `8.6-jdk8`, `8-jdk8`, `jdk8`, `8.6.0-jdk8-jammy`, `8.6-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk8/Dockerfile) +- [`8.6.0-jdk8-focal`, `8.6-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk8-focal/Dockerfile) +- [`8.6.0-jdk11`, `8.6-jdk11`, `8-jdk11`, `jdk11`, `8.6.0-jdk11-jammy`, `8.6-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11/Dockerfile) +- [`8.6.0-jdk11-focal`, `8.6-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11-focal/Dockerfile) +- [`8.6.0-jdk11-alpine`, `8.6-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11-alpine/Dockerfile) +- [`8.6.0-jdk17`, `8.6-jdk17`, `8-jdk17`, `jdk17`, `8.6.0-jdk`, `8.6-jdk`, `8-jdk`, `jdk`, `8.6.0`, `8.6`, `8`, `latest`, `8.6.0-jdk17-jammy`, `8.6-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.6.0-jdk-jammy`, `8.6-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.6.0-jammy`, `8.6-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17/Dockerfile) +- [`8.6.0-jdk17-focal`, `8.6-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.6.0-jdk-focal`, `8.6-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.6.0-focal`, `8.6-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-focal/Dockerfile) +- [`8.6.0-jdk17-alpine`, `8.6-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.6.0-jdk-alpine`, `8.6-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.6.0-alpine`, `8.6-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-alpine/Dockerfile) +- [`8.6.0-jdk17-graal`, `8.6-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.6.0-jdk-graal`, `8.6-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.6.0-graal`, `8.6-graal`, `8-graal`, `graal`, `8.6.0-jdk17-graal-jammy`, `8.6-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.6.0-jdk-graal-jammy`, `8.6-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.6.0-graal-jammy`, `8.6-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-graal/Dockerfile) +- [`8.6.0-jdk21`, `8.6-jdk21`, `8-jdk21`, `jdk21`, `8.6.0-jdk21-jammy`, `8.6-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21/Dockerfile) +- [`8.6.0-jdk21-alpine`, `8.6-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21-alpine/Dockerfile) +- [`8.6.0-jdk21-graal`, `8.6-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.6.0-jdk21-graal-jammy`, `8.6-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) From 7876c2be8ec5290ea44d14831ae2925f8d21ed2e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Mar 2024 12:19:26 -0800 Subject: [PATCH 1005/2686] Run update.sh --- rocket.chat/README.md | 3 +-- swift/README.md | 33 ++++++++++++++++++++++----------- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index f09e469ef87d..e3874237d28d 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,10 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.2`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/5cd5e1a719132cfbf4134eec395f2d6abb3fe995/6.6/Dockerfile) +- [`6.6.3`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/91489ce297739019ba493c5cab0e51b63cf0334e/6.6/Dockerfile) - [`6.5.4`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/5cd5e1a719132cfbf4134eec395f2d6abb3fe995/6.5/Dockerfile) - [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) -- [`6.3.12`, `6.3`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.3/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index dcb62346e81b..a4d15a705039 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,17 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) -- [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) -- [`5.9.2-focal-slim`, `5.9-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) -- [`5.9.2-focal`, `5.9-focal`, `focal`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/Dockerfile) -- [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) -- [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) -- [`5.9.2-centos7`, `5.9-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/Dockerfile) -- [`5.9.2-centos7-slim`, `5.9-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/slim/Dockerfile) -- [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) -- [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) -- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) +- [`5.10.0`, `5.10`, `5.10.0-jammy`, `5.10-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/22.04/Dockerfile) +- [`5.10.0-slim`, `5.10-slim`, `5.10.0-jammy-slim`, `5.10-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/22.04/slim/Dockerfile) +- [`5.10.0-focal-slim`, `5.10-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/20.04/slim/Dockerfile) +- [`5.10.0-focal`, `5.10-focal`, `focal`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/20.04/Dockerfile) +- [`5.10.0-amazonlinux2`, `5.10-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/amazonlinux/2/Dockerfile) +- [`5.10.0-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/amazonlinux/2/slim/Dockerfile) +- [`5.10.0-centos7`, `5.10-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/centos/7/Dockerfile) +- [`5.10.0-centos7-slim`, `5.10-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/centos/7/slim/Dockerfile) +- [`5.10.0-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/rhel-ubi/9/Dockerfile) +- [`5.10.0-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/rhel-ubi/9/slim/Dockerfile) +- [`5.10.0-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/windows/LTSC2022/Dockerfile) +- [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) +- [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) +- [`5.9.2-focal-slim`, `5.9-focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) +- [`5.9.2-focal`, `5.9-focal`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/Dockerfile) +- [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) +- [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) +- [`5.9.2-centos7`, `5.9-centos7`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/Dockerfile) +- [`5.9.2-centos7-slim`, `5.9-centos7-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/slim/Dockerfile) +- [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) +- [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) +- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) - [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) - [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) - [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) From dd90b7997eaa0ac943307b330a2c81195f8febdf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Mar 2024 13:10:15 -0800 Subject: [PATCH 1006/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 624a5f03323e..705e7fabab19 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.3-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.3-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.3-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.3-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.3-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.3-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.3-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.3-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.3-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.3-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.3-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.3-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.3-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.3-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.3-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.3`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.3-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.3-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.3-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.3-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.3-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.3-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.3-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.3-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.3-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.3-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.3-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.3-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.3-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.3-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/b54d09884aa8882592c3b7f722060a55556173f4/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.4-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.4-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.4-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.4-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.4-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.4-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.4-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.4-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.4-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.4-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.4-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.4-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.4-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.4-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.4-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.4`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.4-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.4-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.4-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.4-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.4-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.4-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.4-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.4-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.4-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.4-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.4-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.4-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.4-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.4-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bullseye/Dockerfile) @@ -48,18 +48,18 @@ WARNING: - [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-bullseye/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.99-php8.2-apache`, `7-php8.2-apache`, `7.99-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bookworm/Dockerfile) -- [`7.99-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.99-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.99-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/apache-bullseye/Dockerfile) -- [`7.99-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.99-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.99-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.2/fpm-alpine3.18/Dockerfile) -- [`7.99-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.99-php8.1-apache`, `7-php8.1-apache`, `7.99-php8.1`, `7-php8.1`, `7.99-apache-bookworm`, `7-apache-bookworm`, `7.99-apache`, `7-apache`, `7.99`, `7`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/apache-bookworm/Dockerfile) -- [`7.99-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.99-php8.1-fpm`, `7-php8.1-fpm`, `7.99-fpm-bookworm`, `7-fpm-bookworm`, `7.99-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.99-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.99-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/apache-bullseye/Dockerfile) -- [`7.99-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.99-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.99-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.99-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.99-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-alpine3.19/Dockerfile) -- [`7.99-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.99-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/afe9df8e4e007f6f30a2f1e22909929104d55ca6/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bookworm/Dockerfile) +- [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bullseye/Dockerfile) +- [`7.100-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.100-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.100-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.100-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.18/Dockerfile) +- [`7.100-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.100-php8.1-apache`, `7-php8.1-apache`, `7.100-php8.1`, `7-php8.1`, `7.100-apache-bookworm`, `7-apache-bookworm`, `7.100-apache`, `7-apache`, `7.100`, `7`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/apache-bookworm/Dockerfile) +- [`7.100-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.100-php8.1-fpm`, `7-php8.1-fpm`, `7.100-fpm-bookworm`, `7-fpm-bookworm`, `7.100-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.100-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.100-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/apache-bullseye/Dockerfile) +- [`7.100-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.100-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.100-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.100-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.100-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.100-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.100-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.100-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.18/Dockerfile) # Quick reference (cont.) From 8f27bc9fcbbc6ad3f6f5be9d443f8c6a9be7a2af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Mar 2024 11:21:04 -0800 Subject: [PATCH 1007/2686] Run update.sh --- docker/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docker/README.md b/docker/README.md index fddf0fe2e2c5..4ba67dfd31b4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.0-rc1-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/cli/Dockerfile) +- [`26.0.0-rc1-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/cli/Dockerfile) - [`26.0.0-rc1-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc1-dind-alpine3.19`, `26.0.0-rc1`, `26-rc`, `rc`, `26.0.0-rc1-alpine3.19`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind/Dockerfile) - [`26.0.0-rc1-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc1-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc1-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-1809/Dockerfile) -- [`25.0.3-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/cli/Dockerfile) -- [`25.0.3-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.3-dind-alpine3.19`, `25.0.3-git`, `25.0-git`, `25-git`, `git`, `25.0.3`, `25.0`, `25`, `latest`, `25.0.3-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/25/dind/Dockerfile) -- [`25.0.3-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/de55ce1ae86abd97836f99759ae8badc30d0e0e6/25/dind-rootless/Dockerfile) -- [`25.0.3-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.3-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/cli/Dockerfile) +- [`26.0.0-rc1-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc1-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-1809/Dockerfile) +- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/cli/Dockerfile) +- [`25.0.4-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.4-dind-alpine3.19`, `25.0.4-git`, `25.0-git`, `25-git`, `git`, `25.0.4`, `25.0`, `25`, `latest`, `25.0.4-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind/Dockerfile) +- [`25.0.4-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind-rootless/Dockerfile) +- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.0.0-rc1-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/windows/windowsservercore-1809/Dockerfile) -- `25.0.3-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0a2a6d85dab907b5a9349f7a25eb7eadbbfa4ea/25/windows/windowsservercore-1809/Dockerfile) + - [`26.0.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-1809/Dockerfile) +- `25.0.4-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/490fbdcc7ca1b6a303e7c888714a1c51610d1a2f/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From b1efaac732921ebf22304a173f488451c272e92b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Mar 2024 12:19:07 -0800 Subject: [PATCH 1008/2686] Run update.sh --- aerospike/README.md | 4 ++-- busybox/README.md | 16 ++++++++-------- ghost/README.md | 4 ++-- node/README.md | 12 ++++++------ 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index a65ad3f6c4e1..155b297a9fc7 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.4`, `ee-7.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/2870ae25bbbb0873e1b0053c2c04817762b50dc5/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.4`, `ce-7.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/2870ae25bbbb0873e1b0053c2c04817762b50dc5/community/debian12/Dockerfile) +- [`ee-7.0.0.5`, `ee-7.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/e9ca76cf601859bf97b9612c7fe709fd5e53ca70/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.5`, `ce-7.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/e9ca76cf601859bf97b9612c7fe709fd5e53ca70/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index 429c8a098fb5..ba83c377a7b1 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/d0b7d566eb4f1fa9933984e6fc04ab11f08f4592/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index af47aa8ad1c2..d5fcf2466551 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.0`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3c846e1c9e8b054dddd4ea2b94eae66eb3fc60f7/5/debian/Dockerfile) -- [`5.80.0-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3c846e1c9e8b054dddd4ea2b94eae66eb3fc60f7/5/alpine/Dockerfile) +- [`5.80.1`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/517468a92420794e8a623a09b5845f650a17fa93/5/debian/Dockerfile) +- [`5.80.1-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/517468a92420794e8a623a09b5845f650a17fa93/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index e9be30d43380..f9e94be91f9d 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.6-alpine3.18`, `21.6.2-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.6-alpine`, `21.6-alpine3.19`, `21.6.2-alpine`, `21.6.2-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.6`, `21.6-bookworm`, `21.6.2`, `21.6.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.6-bookworm-slim`, `21.6-slim`, `21.6.2-bookworm-slim`, `21.6.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.6-bullseye`, `21.6.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.6-bullseye-slim`, `21.6.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/21/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.0-alpine`, `21.7.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.0`, `21.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.0-bookworm-slim`, `21.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.1-alpine`, `20.11.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.1`, `20.11.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm/Dockerfile) From 8e1967957fe52f9cdf7a222fd658341fd76c6feb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Mar 2024 15:19:11 -0800 Subject: [PATCH 1009/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index 4ba67dfd31b4..404f45dc0c19 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.0.0-rc1-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/cli/Dockerfile) -- [`26.0.0-rc1-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc1-dind-alpine3.19`, `26.0.0-rc1`, `26-rc`, `rc`, `26.0.0-rc1-alpine3.19`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind/Dockerfile) -- [`26.0.0-rc1-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/cc424ac96c2c90487f0c6b4cf044fada91dcc6a2/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc1-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc1-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-1809/Dockerfile) +- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/cli/Dockerfile) +- [`26.0.0-rc2-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc2-dind-alpine3.19`, `26.0.0-rc2`, `26-rc`, `rc`, `26.0.0-rc2-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind/Dockerfile) +- [`26.0.0-rc2-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind-rootless/Dockerfile) +- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-1809/Dockerfile) - [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/cli/Dockerfile) - [`25.0.4-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.4-dind-alpine3.19`, `25.0.4-git`, `25.0-git`, `25-git`, `git`, `25.0.4`, `25.0`, `25`, `latest`, `25.0.4-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind/Dockerfile) - [`25.0.4-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.0.0-rc1-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f008144c8c11ace01286f550123dff828f968692/26-rc/windows/windowsservercore-1809/Dockerfile) +- `26.0.0-rc2-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: + - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-1809/Dockerfile) - `25.0.4-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-1809/Dockerfile) From 0fbb81005b3d68834936a3e7e184848f8dd95039 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Mar 2024 11:22:17 -0800 Subject: [PATCH 1010/2686] Run update.sh --- matomo/README.md | 6 +++--- oraclelinux/README.md | 16 ++++++++-------- xwiki/README.md | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index f18aed6937cc..1b7c9e58b772 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.2-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.2`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/apache/Dockerfile) -- [`5.0.2-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/fpm/Dockerfile) -- [`5.0.2-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/f9df3f39dfffdc2a550f49629fc40d692533f338/fpm-alpine/Dockerfile) +- [`5.0.3-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.3`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/apache/Dockerfile) +- [`5.0.3-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/fpm/Dockerfile) +- [`5.0.3-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index eec10d9a9143..921c2e2daf22 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1a4d4777ce89cdde9e3f7ed984cfc6397e9f2dae/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 9110ff2d52fd..9a2f0b86622f 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.1`, `16.1.0`, `16-mysql-tomcat`, `16.1-mysql-tomcat`, `16.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.1-postgres-tomcat`, `16.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.1-mariadb-tomcat`, `16.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.6`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aaf68c01f2b5ba37f7ace973de437b372bec63/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.7`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From e1f232931dd2c84ed1bf552fa0e5a8119fef6b7d Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 8 Mar 2024 12:32:14 -0800 Subject: [PATCH 1011/2686] Remove CSRF handling This was required at some point in the past, but it appears to no longer be necessary! --- push.pl | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/push.pl b/push.pl index a4703d8a110e..d9ef38e2544f 100755 --- a/push.pl +++ b/push.pl @@ -50,18 +50,8 @@ my $token = $login->res->json->{token}; -my $csrf; -for my $cookie (@{ $login->res->cookies }) { - if ($cookie->name eq 'csrftoken') { - $csrf = $cookie->value; - last; - } -} -die 'missing CSRF token' unless defined $csrf; - my $authorizationHeader = { Authorization => "JWT $token", - 'X-CSRFToken' => $csrf, }; my $supportedTagsRegex = qr%^(# Supported tags and respective `Dockerfile` links\n\n)(.*?\n)(?=# |\[)%ms; From eb370ee031603fe27f013d42817e54a1a4680a25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Mar 2024 14:36:21 -0800 Subject: [PATCH 1012/2686] Run update.sh --- dart/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dart/README.md b/dart/README.md index 3a71b4e2fd4c..322e05410122 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.0`, `3.3`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/6c1fea64056a95f494b59ac87d283f96d3f62ab3/stable/bookworm/Dockerfile) +- [`3.3.1-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.1`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/0388515d459bab5a5bd614c44be25ebde75a70ed/stable/bookworm/Dockerfile) +- [`3.4.0-99.1.beta-sdk`, `beta-sdk`, `3.4.0-99.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/0388515d459bab5a5bd614c44be25ebde75a70ed/beta/bookworm/Dockerfile) # Quick reference (cont.) From 9bb9fe8566e248632c87185ae62e97ea6280c6aa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Mar 2024 15:31:25 -0800 Subject: [PATCH 1013/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index d5fcf2466551..237de8159673 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.1`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/517468a92420794e8a623a09b5845f650a17fa93/5/debian/Dockerfile) -- [`5.80.1-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/517468a92420794e8a623a09b5845f650a17fa93/5/alpine/Dockerfile) +- [`5.80.2`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8015444481d1ff6e404edf833c12378cc89aa40e/5/debian/Dockerfile) +- [`5.80.2-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8015444481d1ff6e404edf833c12378cc89aa40e/5/alpine/Dockerfile) # Quick reference (cont.) From f1c21f1c742a8cbca2fab9ac03216492df04f56d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Mar 2024 17:10:04 -0800 Subject: [PATCH 1014/2686] Run update.sh --- emqx/README.md | 2 +- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 9203a36db01e..c099c8763196 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -28,7 +28,7 @@ WARNING: - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) -- [`5.5.0`, `5.5`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/66e23a1daf5526c3c1edcd51b338ad24db628734/5.5/Dockerfile) +- [`5.5.1`, `5.5`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/73d7c57bb32f0ec9d9159a101aa9ff529d505406/5.5/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index c60df42a9381..cb6bdb0147f0 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,15 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-12-jdk-oraclelinux8`, `23-ea-12-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-12-jdk-oracle`, `23-ea-12-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-12-jdk-oraclelinux7`, `23-ea-12-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-12-jdk-bookworm`, `23-ea-12-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/bookworm/Dockerfile) -- [`23-ea-12-jdk-slim-bookworm`, `23-ea-12-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-12-jdk-slim`, `23-ea-12-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-12-jdk-bullseye`, `23-ea-12-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/bullseye/Dockerfile) -- [`23-ea-12-jdk-slim-bullseye`, `23-ea-12-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-12-jdk-windowsservercore-ltsc2022`, `23-ea-12-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-12-jdk-windowsservercore-1809`, `23-ea-12-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-12-jdk-nanoserver-1809`, `23-ea-12-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-13-jdk-oraclelinux8`, `23-ea-13-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-13-jdk-oracle`, `23-ea-13-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-13-jdk-oraclelinux7`, `23-ea-13-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux7/Dockerfile) +- [`23-ea-13-jdk-bookworm`, `23-ea-13-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/bookworm/Dockerfile) +- [`23-ea-13-jdk-slim-bookworm`, `23-ea-13-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-13-jdk-slim`, `23-ea-13-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-13-jdk-bullseye`, `23-ea-13-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/bullseye/Dockerfile) +- [`23-ea-13-jdk-slim-bullseye`, `23-ea-13-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-13-jdk-windowsservercore-ltsc2022`, `23-ea-13-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-13-jdk-windowsservercore-1809`, `23-ea-13-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-13-jdk-nanoserver-1809`, `23-ea-13-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/nanoserver-1809/Dockerfile) - [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux7/Dockerfile) - [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) @@ -63,15 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `23-ea-12-jdk`, `23-ea-12`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-12-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-12-jdk-windowsservercore`, `23-ea-12-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-12-jdk-nanoserver`, `23-ea-12-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9f7652e46776ee219d8144d206cebb375261b85/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-13-jdk`, `23-ea-13`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-13-jdk-windowsservercore`, `23-ea-13-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-13-jdk-nanoserver`, `23-ea-13-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From 528b491c30b403669d3e823f9fe5e6b06bd7e3c5 Mon Sep 17 00:00:00 2001 From: George Adams Date: Mon, 11 Mar 2024 10:04:06 +0000 Subject: [PATCH 1015/2686] Update Temurin Docs to have JDK21 as default --- eclipse-temurin/content.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eclipse-temurin/content.md b/eclipse-temurin/content.md index 7519bc11fe74..c9497a782b79 100644 --- a/eclipse-temurin/content.md +++ b/eclipse-temurin/content.md @@ -17,17 +17,17 @@ JRE images are available for all versions of Eclipse Temurin but it is recommend Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: ```console -$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 %%IMAGE%%:11 +$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 %%IMAGE%%:21 ``` The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. # How to use this Image -To run a pre-built jar file with the latest OpenJDK 11, use the following Dockerfile: +To run a pre-built jar file with the latest OpenJDK 21, use the following Dockerfile: ```dockerfile -FROM %%IMAGE%%:11 +FROM %%IMAGE%%:21 RUN mkdir /opt/app COPY japp.jar /opt/app CMD ["java", "-jar", "/opt/app/japp.jar"] @@ -48,7 +48,7 @@ If you are using a distribution that we don't provide an image for you can copy # Example FROM ENV JAVA_HOME=/opt/java/openjdk -COPY --from=%%IMAGE%%:11 $JAVA_HOME $JAVA_HOME +COPY --from=%%IMAGE%%:21 $JAVA_HOME $JAVA_HOME ENV PATH="${JAVA_HOME}/bin:${PATH}" ``` @@ -58,7 +58,7 @@ On OpenJDK 11+, a JRE can be generated using `jlink`, see the following Dockerfi ```dockerfile # Example of custom Java runtime using jlink in a multi-stage container build -FROM %%IMAGE%%:11 as jre-build +FROM %%IMAGE%%:21 as jre-build # Create a custom Java runtime RUN $JAVA_HOME/bin/jlink \ @@ -84,7 +84,7 @@ CMD ["java", "-jar", "/opt/app/japp.jar"] If you want to place the jar file on the host file system instead of inside the container, you can mount the host path onto the container by using the following commands: ```dockerfile -FROM %%IMAGE%%:11.0.12_7-jdk +FROM %%IMAGE%%:21.0.2_13-jdk CMD ["java", "-jar", "/opt/app/japp.jar"] ``` From bab82c9b37918edbd1fc5832c5d8cfb056cf5e21 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Mar 2024 07:09:56 -0700 Subject: [PATCH 1016/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index f9e94be91f9d..02915ba4e9d1 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.0-alpine`, `21.7.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.0`, `21.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.0-bookworm-slim`, `21.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4a3a1bb20bab3794aff69c64d981c2b618aaf956/21/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.1-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.1-alpine`, `21.7.1-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.1`, `21.7.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.1-bookworm-slim`, `21.7.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.1-alpine`, `20.11.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.1`, `20.11.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm/Dockerfile) From 70219a6ea765cf0ec050c60ba5c375c2d6f7b457 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Mar 2024 12:19:09 -0700 Subject: [PATCH 1017/2686] Run update.sh --- clearlinux/README.md | 2 +- rust/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 69d91424be44..4752f8b89041 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4298b5816ff16a09beb53b87ea02c594f03e8cf7/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6d93bc1c6c7948e5d934dd3e02fdede81ffc5d18/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 488f54352289..fa52dc68b6f1 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.76-buster`, `1.76.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/buster/Dockerfile) -- [`1-slim-buster`, `1.76-slim-buster`, `1.76.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.76-bullseye`, `1.76.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.76-slim-bullseye`, `1.76.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.76-bookworm`, `1.76.0-bookworm`, `bookworm`, `1`, `1.76`, `1.76.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.76-slim-bookworm`, `1.76.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.76-slim`, `1.76.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.76-alpine3.18`, `1.76.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.76-alpine3.19`, `1.76.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.76-alpine`, `1.76.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e5921dbae8fe56407a992307d1e2c2716ba8202d/1.76.0/alpine3.19/Dockerfile) +- [`1-buster`, `1.76-buster`, `1.76.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/buster/Dockerfile) +- [`1-slim-buster`, `1.76-slim-buster`, `1.76.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.76-bullseye`, `1.76.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.76-slim-bullseye`, `1.76.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.76-bookworm`, `1.76.0-bookworm`, `bookworm`, `1`, `1.76`, `1.76.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.76-slim-bookworm`, `1.76.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.76-slim`, `1.76.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.76-alpine3.18`, `1.76.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.76-alpine3.19`, `1.76.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.76-alpine`, `1.76.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/alpine3.19/Dockerfile) # Quick reference (cont.) From 13720b7c38abc68e52f9f27fe4a53a1c82660b9c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Mar 2024 15:18:58 -0700 Subject: [PATCH 1018/2686] Run update.sh --- eclipse-temurin/README.md | 12 ++++++------ elixir/README.md | 18 +++++++++--------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 339ec691cece..24b256508375 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -218,17 +218,17 @@ JRE images are available for all versions of Eclipse Temurin but it is recommend Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: ```console -$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 eclipse-temurin:11 +$ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 eclipse-temurin:21 ``` The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. # How to use this Image -To run a pre-built jar file with the latest OpenJDK 11, use the following Dockerfile: +To run a pre-built jar file with the latest OpenJDK 21, use the following Dockerfile: ```dockerfile -FROM eclipse-temurin:11 +FROM eclipse-temurin:21 RUN mkdir /opt/app COPY japp.jar /opt/app CMD ["java", "-jar", "/opt/app/japp.jar"] @@ -249,7 +249,7 @@ If you are using a distribution that we don't provide an image for you can copy # Example FROM ENV JAVA_HOME=/opt/java/openjdk -COPY --from=eclipse-temurin:11 $JAVA_HOME $JAVA_HOME +COPY --from=eclipse-temurin:21 $JAVA_HOME $JAVA_HOME ENV PATH="${JAVA_HOME}/bin:${PATH}" ``` @@ -259,7 +259,7 @@ On OpenJDK 11+, a JRE can be generated using `jlink`, see the following Dockerfi ```dockerfile # Example of custom Java runtime using jlink in a multi-stage container build -FROM eclipse-temurin:11 as jre-build +FROM eclipse-temurin:21 as jre-build # Create a custom Java runtime RUN $JAVA_HOME/bin/jlink \ @@ -285,7 +285,7 @@ CMD ["java", "-jar", "/opt/app/japp.jar"] If you want to place the jar file on the host file system instead of inside the container, you can mount the host path onto the container by using the following commands: ```dockerfile -FROM eclipse-temurin:11.0.12_7-jdk +FROM eclipse-temurin:21.0.2_13-jdk CMD ["java", "-jar", "/opt/app/japp.jar"] ``` diff --git a/elixir/README.md b/elixir/README.md index 5ab7bd9b5de4..5ca7cbfc894a 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.1`, `1.16`, `latest`, `1.16.1-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/Dockerfile) -- [`1.16.1-slim`, `1.16-slim`, `slim`, `1.16.1-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/slim/Dockerfile) -- [`1.16.1-alpine`, `1.16-alpine`, `alpine`, `1.16.1-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/alpine/Dockerfile) -- [`1.16.1-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24/Dockerfile) -- [`1.16.1-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-alpine/Dockerfile) -- [`1.16.1-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-24-slim/Dockerfile) -- [`1.16.1-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25/Dockerfile) -- [`1.16.1-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-alpine/Dockerfile) -- [`1.16.1-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/5163188632c324ae8606ab7be544f139f2a7458c/1.16/otp-25-slim/Dockerfile) +- [`1.16.2`, `1.16`, `latest`, `1.16.2-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/Dockerfile) +- [`1.16.2-slim`, `1.16-slim`, `slim`, `1.16.2-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/slim/Dockerfile) +- [`1.16.2-alpine`, `1.16-alpine`, `alpine`, `1.16.2-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/alpine/Dockerfile) +- [`1.16.2-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24/Dockerfile) +- [`1.16.2-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24-alpine/Dockerfile) +- [`1.16.2-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24-slim/Dockerfile) +- [`1.16.2-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25/Dockerfile) +- [`1.16.2-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25-alpine/Dockerfile) +- [`1.16.2-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25-slim/Dockerfile) - [`1.15.7`, `1.15`, `1.15.7-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) - [`1.15.7-slim`, `1.15-slim`, `1.15.7-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) - [`1.15.7-alpine`, `1.15-alpine`, `1.15.7-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) From 719872bdbfa307d83164025b2269c995da41f183 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Mar 2024 16:10:15 -0700 Subject: [PATCH 1019/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- erlang/README.md | 6 +++--- haproxy/README.md | 4 ++-- hello-world/README.md | 2 +- mongo/README.md | 30 +++++++++++++++--------------- 5 files changed, 23 insertions(+), 23 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 766d35167a34..7f6191105ade 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240219.0`](https://github.com/amazonlinux/container-images/blob/8a730d778b641585a226adf1ca62679c10946135/Dockerfile) -- [`2`, `2.0.20240223.0`](https://github.com/amazonlinux/container-images/blob/bee798bb2cb388647364bed3b550f34b432fb81b/Dockerfile) +- [`2023`, `latest`, `2023.3.20240304.0`](https://github.com/amazonlinux/container-images/blob/2d1587cdff03f97742f2e2f24b892fd7d0e5e173/Dockerfile) +- [`2`, `2.0.20240306.2`](https://github.com/amazonlinux/container-images/blob/72c7597eb8c7bd8ba4d81c0ae9bcd604d2ed526e/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 3ebc83d09c4f..dbfbc9875647 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,9 +27,9 @@ WARNING: - [`27.0-rc1.0.0`, `27.0-rc1.0`, `27.0-rc1`, `27`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/Dockerfile) - [`27.0-rc1.0.0-slim`, `27.0-rc1.0-slim`, `27.0-rc1-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/slim/Dockerfile) - [`27.0-rc1.0.0-alpine`, `27.0-rc1.0-alpine`, `27.0-rc1-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/alpine/Dockerfile) -- [`26.2.2.0`, `26.2.2`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/e587e48cf105c8f0be0ec94a5b5d00b3249605e8/26/Dockerfile) -- [`26.2.2.0-slim`, `26.2.2-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/e587e48cf105c8f0be0ec94a5b5d00b3249605e8/26/slim/Dockerfile) -- [`26.2.2.0-alpine`, `26.2.2-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/26/alpine/Dockerfile) +- [`26.2.3.0`, `26.2.3`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/Dockerfile) +- [`26.2.3.0-slim`, `26.2.3-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/slim/Dockerfile) +- [`26.2.3.0-alpine`, `26.2.3-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/alpine/Dockerfile) - [`25.3.2.9`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/Dockerfile) - [`25.3.2.9-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/slim/Dockerfile) - [`25.3.2.9-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 0430090c545f..1dde6b8698fa 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev4`, `3.0-dev`, `3.0-dev4-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7ff4e114609c146264294b910f5502d295c7794c/3.0/Dockerfile) -- [`3.0-dev4-alpine`, `3.0-dev-alpine`, `3.0-dev4-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/7ff4e114609c146264294b910f5502d295c7794c/3.0/alpine/Dockerfile) +- [`3.0-dev5`, `3.0-dev`, `3.0-dev5-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/3fa21bcf0b535763ce7501e62333e18c24dc79e7/3.0/Dockerfile) +- [`3.0-dev5-alpine`, `3.0-dev-alpine`, `3.0-dev5-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/3fa21bcf0b535763ce7501e62333e18c24dc79e7/3.0/alpine/Dockerfile) - [`2.9.6`, `2.9`, `latest`, `2.9.6-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/Dockerfile) - [`2.9.6-alpine`, `2.9-alpine`, `alpine`, `2.9.6-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/alpine/Dockerfile) - [`2.8.7`, `2.8`, `lts`, `2.8.7-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/Dockerfile) diff --git a/hello-world/README.md b/hello-world/README.md index 4ec80bafd6cf..83f9abe89477 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -48,7 +48,7 @@ WARNING: [https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/hello-world/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hello-world/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hello-world/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hello-world/), [`i386`](https://hub.docker.com/r/i386/hello-world/), [`mips64le`](https://hub.docker.com/r/mips64le/hello-world/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hello-world/), [`riscv64`](https://hub.docker.com/r/riscv64/hello-world/), [`s390x`](https://hub.docker.com/r/s390x/hello-world/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hello-world/) + [`amd64`](https://hub.docker.com/r/amd64/hello-world/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hello-world/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hello-world/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hello-world/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hello-world/), [`i386`](https://hub.docker.com/r/i386/hello-world/), [`mips64le`](https://hub.docker.com/r/mips64le/hello-world/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hello-world/), [`riscv64`](https://hub.docker.com/r/riscv64/hello-world/), [`s390x`](https://hub.docker.com/r/s390x/hello-world/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hello-world/) - **Published image artifact details**: [repo-info repo's `repos/hello-world/` directory](https://github.com/docker-library/repo-info/blob/master/repos/hello-world) ([history](https://github.com/docker-library/repo-info/commits/master/repos/hello-world)) diff --git a/mongo/README.md b/mongo/README.md index 646af242caf0..998252f4bcda 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.7-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/Dockerfile) -- [`7.0.7-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.7-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.7-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.7-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.7-rc2-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/Dockerfile) +- [`7.0.7-rc2-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.7-rc2-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.7-rc2-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.7-rc2-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.6-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) - [`7.0.6-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.6-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `7.0.7-rc0`, `7.0-rc`: - - [`7.0.7-rc0-jammy`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/Dockerfile) - - [`7.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.7-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.7-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.7-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e25e8bdea4abab40f597e71b029ab85191fa75fe/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.7-rc2`, `7.0-rc`: + - [`7.0.7-rc2-jammy`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/Dockerfile) + - [`7.0.7-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-rc2-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.7-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-rc2-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.7-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.7-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.6`, `7.0`, `7`, `latest`: - [`7.0.6-jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) - [`7.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) From 290526a64557ddc721dc5c47462e23ee120ea01a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Mar 2024 17:10:01 -0700 Subject: [PATCH 1020/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++++++----------------------- wordpress/README.md | 42 +++++++++++++++---------------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/debian/README.md b/debian/README.md index 46eb57b33ea7..b90e6cc9d34b 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240211`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240211-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240211`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240211-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240211`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20240211-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/rc-buggy/Dockerfile) -- [`sid`, `sid-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/sid/Dockerfile) -- [`sid-slim`, `sid-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/sid/slim/Dockerfile) -- [`stable`, `stable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/stable/slim/Dockerfile) -- [`testing`, `testing-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240211`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240211-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/fd3102585b5636ea53fbfcf122a1d373720540fc/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240311`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240311-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240311`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240311-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240311`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20240311-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/rc-buggy/Dockerfile) +- [`sid`, `sid-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/sid/Dockerfile) +- [`sid-slim`, `sid-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/sid/slim/Dockerfile) +- [`stable`, `stable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/slim/Dockerfile) +- [`testing`, `testing-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index bbee08cc06d8..ee8a6cab7e41 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.3-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.3-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/apache/Dockerfile) -- [`6.4.3-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/fpm/Dockerfile) -- [`6.4.3-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.3-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.3`, `6.4`, `6`, `latest`, `6.4.3-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.3-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/apache/Dockerfile) -- [`6.4.3-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.3-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/fpm/Dockerfile) -- [`6.4.3-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.3-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.4.3-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.3-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/apache/Dockerfile) -- [`6.4.3-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm/Dockerfile) -- [`6.4.3-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/06f28e291877002359e1075e4260123de5403551/latest/php8.3/fpm-alpine/Dockerfile) -- [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.1/alpine/Dockerfile) -- [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.2/alpine/Dockerfile) -- [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/bb6296613aad365656cbba4933c2f7bd135bf243/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-RC1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-RC1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-RC1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-RC1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-RC1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-RC1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-RC1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-RC1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-RC1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/66ea52263f266f6bdb969e64f819c3c72a74a436/beta/php8.3/fpm-alpine/Dockerfile) +- [`6.4.3-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.3-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/apache/Dockerfile) +- [`6.4.3-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/fpm/Dockerfile) +- [`6.4.3-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.4.3-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.3`, `6.4`, `6`, `latest`, `6.4.3-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.3-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/apache/Dockerfile) +- [`6.4.3-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.3-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/fpm/Dockerfile) +- [`6.4.3-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.3-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.4.3-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.3-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/apache/Dockerfile) +- [`6.4.3-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/fpm/Dockerfile) +- [`6.4.3-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/fpm-alpine/Dockerfile) +- [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) +- [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) +- [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) +- [`beta-6.5-RC1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-RC1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-RC1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-RC1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-RC1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-RC1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-RC1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-RC1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-RC1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 6c0bcd4e2362c62e211e9d51be49ef730273799e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Mar 2024 10:10:22 -0700 Subject: [PATCH 1021/2686] Run update.sh --- composer/README.md | 2 +- odoo/README.md | 6 +++--- photon/README.md | 2 +- traefik/README.md | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer/README.md b/composer/README.md index 987c5ba9baef..52861c98da8e 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.1`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/c1e1312872285536925322c8cff99894080636f7/2.7/Dockerfile) +- [`2.7.2`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/06d1cf1acb8fe5dff6e0f8aac7e2d1c14faf1a06/2.7/Dockerfile) - [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index d2bd8dec80d7..9345088d8586 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/877f72dd0aaf70dbd19ef819b64c60afea715231/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index de06ed8ef4c5..8f6fd733719a 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240303`, `latest`](https://github.com/vmware/photon-docker-image/blob/954de8e946648ef26572d59f8069d2a4386ecd12/docker/Dockerfile) +- [`5.0`, `5.0-20240311`, `latest`](https://github.com/vmware/photon-docker-image/blob/5f8d75884d828b5fe7b66d2594855e7174db7e29/docker/Dockerfile) - [`4.0`, `4.0-20240225`](https://github.com/vmware/photon-docker-image/blob/f26acec1a55f376803952a89f2d7e20da09ec7e5/docker/Dockerfile) - [`3.0`, `3.0-20240303`](https://github.com/vmware/photon-docker-image/blob/7286f3468342592dba8f77fc929e1ccdbe9592b9/docker/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 6e3beca3b72e..95beaf12d594 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-rc1-windowsservercore-ltsc2022`, `3.0.0-rc1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-rc1-windowsservercore-1809`, `3.0.0-rc1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/windows/1809/Dockerfile) -- [`v3.0.0-rc1`, `3.0.0-rc1`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/6fc860aa66c25c1c4786a34d9398e66043af8d9d/alpine/Dockerfile) +- [`v3.0.0-rc2-windowsservercore-ltsc2022`, `3.0.0-rc2-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-rc2-windowsservercore-1809`, `3.0.0-rc2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/windows/1809/Dockerfile) +- [`v3.0.0-rc2`, `3.0.0-rc2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/alpine/Dockerfile) - [`v2.11.0-windowsservercore-ltsc2022`, `2.11.0-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/servercore-ltsc2022/Dockerfile) - [`v2.11.0-windowsservercore-1809`, `2.11.0-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/1809/Dockerfile) - [`v2.11.0`, `2.11.0`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/alpine/Dockerfile) From 40d074878ede72fffefbf8dfcd35597e6570a074 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 12 Mar 2024 11:25:26 -0700 Subject: [PATCH 1022/2686] Update link to bashbrew See https://github.com/docker-library/docs/issues/2426 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd46f6562c67..5ce616d5f612 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ The file must work via `docker stack deploy` since that is how Play with Docker This is the main script used to generate the `README.md` files for each image. The generated file is committed along with the files used to generate it. Accepted arguments are which image(s) you want to update or no arguments to update all of them. -This script assumes [`bashbrew`](https://github.com/docker-library/official-images/tree/81e90ca8dcec892ade7eb348cba5a4a5d6851e17/bashbrew) is in your `PATH` (for scraping relevant tag information from the library manifest file for each repository). +This script assumes [`bashbrew`](https://github.com/docker-library/bashbrew/releases) is in your `PATH` (for scraping relevant tag information from the library manifest file for each repository). ## `markdownfmt.sh` and `ymlfmt.sh` From 2f4e51c57e0b2ed972b39e0dbed66a58f4d70b54 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Mar 2024 17:21:39 -0700 Subject: [PATCH 1023/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index ee8a6cab7e41..aee755298b11 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-RC1-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC1-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-RC1-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-RC1-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-RC1-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC1`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC1-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC1-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-RC1-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC1-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-RC1-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC1-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-RC1-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC1-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-RC1-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-RC1-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-RC2-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC2-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-RC2-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-RC2-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-RC2-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC2`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC2-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC2-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-RC2-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC2-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-RC2-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC2-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-RC2-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC2-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-RC2-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-RC2-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 4c4afc6ccd85b27c7bd64d4e6b4214f5a729321c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Mar 2024 18:19:07 -0700 Subject: [PATCH 1024/2686] Run update.sh --- nats/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nats/README.md b/nats/README.md index 684f2670d454..7b69028ec7db 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.11-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.11-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/alpine3.19/Dockerfile) -- [`2.10.11-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.11-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/scratch/Dockerfile) -- [`2.10.11-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.11-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.12-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.12-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/alpine3.19/Dockerfile) +- [`2.10.12-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.12-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/scratch/Dockerfile) +- [`2.10.12-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.12-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.11`, `2.10`, `2`, `latest`: - - [`2.10.11-scratch`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/scratch/Dockerfile) - - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.11-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.11-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.11-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.11-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.12`, `2.10`, `2`, `latest`: + - [`2.10.12-scratch`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/scratch/Dockerfile) + - [`2.10.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.12-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.12-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.12-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f4a594182c4b1534b2b1d446e1c597ab4ef4b7cb/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 1bb9beaeb0f22c2642ac376d6fa19268c862c387 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Mar 2024 20:21:41 -0700 Subject: [PATCH 1025/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 705e7fabab19..011d4dc1323c 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.4-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.4-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.4-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.4-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.4-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.4-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.4-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.4-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.4-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.4-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.4-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.4-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.4-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.4-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.4-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.4`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.4-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.4-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.4-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.4-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.4-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.4-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.4-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.4-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.4-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.4-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.4-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.4-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.4-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.4-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/d3e9e988c141f57e793a1563d15aa3703b4cc1c8/10.2/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.8-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/fb6025af8aeaacdb5b3696c50df9f16c750a8a52/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.2.4-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.4-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.4-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.4-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.4-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.4-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.4-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.4-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.4-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.4-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.4-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.4-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.4-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.4-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.4-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.4`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.4-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.4-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.4-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.4-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.4-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.4-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.4-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.4-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.4-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.4-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.4-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.4-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.4-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.4-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.8-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.18/Dockerfile) - [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bookworm/Dockerfile) - [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-bookworm/Dockerfile) - [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bullseye/Dockerfile) From 1186fbdf181acda7ea60dd53f6f15be8c1030336 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Mar 2024 12:19:19 -0700 Subject: [PATCH 1026/2686] Run update.sh --- neo4j/README.md | 12 ++++++------ traefik/README.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 530d4b36c717..ebd7ba3cae72 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.17.0-community-bullseye`, `5.17-community-bullseye`, `5-community-bullseye`, `5.17.0-community`, `5.17-community`, `5-community`, `5.17.0-bullseye`, `5.17-bullseye`, `5-bullseye`, `5.17.0`, `5.17`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/bullseye/community/Dockerfile) -- [`5.17.0-enterprise-bullseye`, `5.17-enterprise-bullseye`, `5-enterprise-bullseye`, `5.17.0-enterprise`, `5.17-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/bullseye/enterprise/Dockerfile) -- [`5.17.0-community-ubi9`, `5.17-community-ubi9`, `5-community-ubi9`, `5.17.0-ubi9`, `5.17-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi9/community/Dockerfile) -- [`5.17.0-enterprise-ubi9`, `5.17-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi9/enterprise/Dockerfile) -- [`5.17.0-community-ubi8`, `5.17-community-ubi8`, `5-community-ubi8`, `5.17.0-ubi8`, `5.17-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/community/Dockerfile) -- [`5.17.0-enterprise-ubi8`, `5.17-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/4b6837c9f14f5c7df7f53d3d93dc7d60bd4dc85b/5.17.0/ubi8/enterprise/Dockerfile) +- [`5.18.0-community-bullseye`, `5.18-community-bullseye`, `5-community-bullseye`, `5.18.0-community`, `5.18-community`, `5-community`, `5.18.0-bullseye`, `5.18-bullseye`, `5-bullseye`, `5.18.0`, `5.18`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/bullseye/community/Dockerfile) +- [`5.18.0-enterprise-bullseye`, `5.18-enterprise-bullseye`, `5-enterprise-bullseye`, `5.18.0-enterprise`, `5.18-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/bullseye/enterprise/Dockerfile) +- [`5.18.0-community-ubi9`, `5.18-community-ubi9`, `5-community-ubi9`, `5.18.0-ubi9`, `5.18-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi9/community/Dockerfile) +- [`5.18.0-enterprise-ubi9`, `5.18-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi9/enterprise/Dockerfile) +- [`5.18.0-community-ubi8`, `5.18-community-ubi8`, `5-community-ubi8`, `5.18.0-ubi8`, `5.18-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi8/community/Dockerfile) +- [`5.18.0-enterprise-ubi8`, `5.18-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi8/enterprise/Dockerfile) - [`4.4.31`, `4.4.31-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/community/Dockerfile) - [`4.4.31-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/enterprise/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 95beaf12d594..2f6ae77e6955 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-rc2-windowsservercore-ltsc2022`, `3.0.0-rc2-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-rc2-windowsservercore-1809`, `3.0.0-rc2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/windows/1809/Dockerfile) -- [`v3.0.0-rc2`, `3.0.0-rc2`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/1f408bed06e6a92b2085dd572f3d9b2798170c55/alpine/Dockerfile) +- [`v3.0.0-rc3-windowsservercore-ltsc2022`, `3.0.0-rc3-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-rc3-windowsservercore-1809`, `3.0.0-rc3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/windows/1809/Dockerfile) +- [`v3.0.0-rc3`, `3.0.0-rc3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/alpine/Dockerfile) - [`v2.11.0-windowsservercore-ltsc2022`, `2.11.0-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/servercore-ltsc2022/Dockerfile) - [`v2.11.0-windowsservercore-1809`, `2.11.0-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/1809/Dockerfile) - [`v2.11.0`, `2.11.0`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/alpine/Dockerfile) From a4d0f168e95d033158e1faf71df13e2aa936e119 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Mar 2024 11:10:08 -0700 Subject: [PATCH 1027/2686] Run update.sh --- docker/README.md | 30 +++++++++++++++--------------- mongo/README.md | 15 +++++++++++++++ python/README.md | 30 +++++++++++++++--------------- zookeeper/README.md | 6 ++---- 4 files changed, 47 insertions(+), 34 deletions(-) diff --git a/docker/README.md b/docker/README.md index 404f45dc0c19..329a140c4dc8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/cli/Dockerfile) +- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/cli/Dockerfile) - [`26.0.0-rc2-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc2-dind-alpine3.19`, `26.0.0-rc2`, `26-rc`, `rc`, `26.0.0-rc2-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind/Dockerfile) - [`26.0.0-rc2-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-1809/Dockerfile) -- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/cli/Dockerfile) +- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-1809/Dockerfile) +- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/cli/Dockerfile) - [`25.0.4-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.4-dind-alpine3.19`, `25.0.4-git`, `25.0-git`, `25-git`, `git`, `25.0.4`, `25.0`, `25`, `latest`, `25.0.4-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind/Dockerfile) - [`25.0.4-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind-rootless/Dockerfile) -- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/cli/Dockerfile) +- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.0.0-rc2-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/windows/windowsservercore-1809/Dockerfile) + - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-1809/Dockerfile) - `25.0.4-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9e83dce35a8093260f5718f057d1265f54a934ce/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 998252f4bcda..57c41c9787d6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -43,6 +43,11 @@ WARNING: - [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.14-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.14-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.26-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/Dockerfile) +- [`5.0.26-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.26-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.26-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.26-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.25-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) - [`5.0.25-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.25-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) @@ -86,6 +91,16 @@ WARNING: - `6.0.14-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.26-rc0`, `5.0-rc`: + - [`5.0.26-rc0-focal`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/Dockerfile) + - [`5.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.26-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.26-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.26-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.25`, `5.0`, `5`: - [`5.0.25-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) - [`5.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/python/README.md b/python/README.md index d92238af5933..05a0b9579e4d 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.13.0a4-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a4-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a4-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a4-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a4-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a4-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a4-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a4-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a4-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0a5-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a5-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a5-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a5-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a5-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a5-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a5-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a5-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a5-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) - [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bookworm/Dockerfile) - [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bullseye/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.13.0a4`, `3.13-rc`: - - [`3.13.0a4-bookworm`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a4-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5906158d277460e04837c45f5b22051bbf28af92/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a5`, `3.13-rc`: + - [`3.13.0a5-bookworm`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a5-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.2`, `3.12`, `3`, `latest`: - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index 5b4102ad39d9..d92f3e0f3f82 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -25,11 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.7.2/Dockerfile) -- [`3.8.3`, `3.8`, `3.8.3-jre-11`, `3.8-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.8.3/Dockerfile) -- [`3.9.1`, `3.9`, `3.9.1-jre-11`, `3.9-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.9.1/Dockerfile) - [`3.7.2-jre-17`, `3.7-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.7.2/Dockerfile) -- [`3.8.3-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.8.3/Dockerfile) -- [`3.9.1-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.9.1/Dockerfile) +- [`3.8.4`, `3.8`, `3.8.4-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.8.4/Dockerfile) +- [`3.9.2`, `3.9`, `3.9.2-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.9.2/Dockerfile) # Quick reference (cont.) From 129f69598fa6f0a536c9169d26baa47997d4135d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Mar 2024 12:09:51 -0700 Subject: [PATCH 1028/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ tomcat/README.md | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 446f501af653..68ab7c313910 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27`, `1.27.4`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.27/Dockerfile) -- [`1.27-alpine`, `1.27.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.27/alpine/Dockerfile) -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c795b7f748ce6a46cb9eeb3f4a52ab57fb6c6789/telegraf/1.29/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.30/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 25ea13d2b353..90d619536ce0 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M17-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M17-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M17-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M17`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d4878dc3bf85329009dd6b45519a4947eef57b11/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M17-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M17-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M17-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d4878dc3bf85329009dd6b45519a4947eef57b11/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M18-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M18-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M18-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M18`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M18-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M18-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M18-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.19-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.19-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.19-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.19`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.19-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.19-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.19-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre21/temurin-jammy/Dockerfile) - [`10.1.19-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.19-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.19-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk17/temurin-jammy/Dockerfile) From af8fbb36ca707dd12c42a12268c5323f1bce4422 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Mar 2024 17:09:59 -0700 Subject: [PATCH 1029/2686] Run update.sh --- tomcat/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index 90d619536ce0..3718af32abfd 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -32,24 +32,24 @@ WARNING: - [`10.1.19-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.19-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.19-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.19-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.19-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.19-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.19-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.19-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.19-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.86-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.86-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.86-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.86`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.86-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.86-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.86-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.86-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.86-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.86-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.86-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.86-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.86-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.86-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.86-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.86-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.86-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.86-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.86-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.86-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.86-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.86-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.86-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.86-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.86-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.86-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.86-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.86-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.86-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.86-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.86-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.86-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.86-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.86-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.86-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.86-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.86-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.86-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.86-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/8e6615840aa06230b6d0c551ed689f70325e2107/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.87-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.87-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.87-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.87`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.87-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.87-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.87-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.87-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.87-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.87-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.87-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.87-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.87-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.87-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.87-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.87-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.87-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.87-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.87-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.87-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.87-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.87-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.87-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.87-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.87-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.87-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.87-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.87-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.87-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.87-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.87-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.87-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.87-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.87-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.87-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.87-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.87-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.87-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.87-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/corretto-al2/Dockerfile) - [`8.5.99-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.99-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.99-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.99`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/temurin-jammy/Dockerfile) - [`8.5.99-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.99-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.99-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre21/temurin-jammy/Dockerfile) - [`8.5.99-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.99-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/corretto-al2/Dockerfile) From 01e4ad903f55205ee92e2a290963e94a5ed83d60 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Mar 2024 17:11:27 -0700 Subject: [PATCH 1030/2686] Run update.sh --- alpine/README.md | 2 +- amazonlinux/README.md | 2 +- memcached/README.md | 2 +- openjdk/README.md | 42 +++++++++++----------- php/README.md | 84 +++++++++++++++---------------------------- 5 files changed, 52 insertions(+), 80 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 1a054b8da479..e7e4c1a9231a 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20231219`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/8890ee9d240b5646608ea8810923ec686d578a00/x86_64/Dockerfile) +- [`20240315`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/fc0f58149f517641ea87fee37388d33e501b35fb/x86_64/Dockerfile) - [`3.19.1`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) - [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) - [`3.17.7`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1041155cbf4b410b02729c23a198d632945a1744/x86_64/Dockerfile) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 7f6191105ade..7ad6f00ca24d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240304.0`](https://github.com/amazonlinux/container-images/blob/2d1587cdff03f97742f2e2f24b892fd7d0e5e173/Dockerfile) +- [`2023`, `latest`, `2023.3.20240312.0`](https://github.com/amazonlinux/container-images/blob/d47743dd0c45c9c951e869683f785d282b2ed5de/Dockerfile) - [`2`, `2.0.20240306.2`](https://github.com/amazonlinux/container-images/blob/72c7597eb8c7bd8ba4d81c0ae9bcd604d2ed526e/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 4034ec1f1a13..e283ee4819dd 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -33,7 +33,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) diff --git a/openjdk/README.md b/openjdk/README.md index cb6bdb0147f0..84ca0415150f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,17 +42,17 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-13-jdk-oraclelinux8`, `23-ea-13-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`, `23-ea-13-jdk-oracle`, `23-ea-13-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-13-jdk-oraclelinux7`, `23-ea-13-oraclelinux7`, `23-ea-jdk-oraclelinux7`, `23-ea-oraclelinux7`, `23-jdk-oraclelinux7`, `23-oraclelinux7`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux7/Dockerfile) -- [`23-ea-13-jdk-bookworm`, `23-ea-13-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/bookworm/Dockerfile) -- [`23-ea-13-jdk-slim-bookworm`, `23-ea-13-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-13-jdk-slim`, `23-ea-13-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-13-jdk-bullseye`, `23-ea-13-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/bullseye/Dockerfile) -- [`23-ea-13-jdk-slim-bullseye`, `23-ea-13-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-13-jdk-windowsservercore-ltsc2022`, `23-ea-13-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-13-jdk-windowsservercore-1809`, `23-ea-13-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-13-jdk-nanoserver-1809`, `23-ea-13-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) -- [`22-rc-jdk-oraclelinux7`, `22-rc-oraclelinux7`, `22-jdk-oraclelinux7`, `22-oraclelinux7`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux7/Dockerfile) +- [`23-ea-14-jdk-oraclelinux9`, `23-ea-14-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-14-jdk-oracle`, `23-ea-14-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-14-jdk-oraclelinux8`, `23-ea-14-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-14-jdk-bookworm`, `23-ea-14-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/bookworm/Dockerfile) +- [`23-ea-14-jdk-slim-bookworm`, `23-ea-14-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-14-jdk-slim`, `23-ea-14-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-14-jdk-bullseye`, `23-ea-14-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/bullseye/Dockerfile) +- [`23-ea-14-jdk-slim-bullseye`, `23-ea-14-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-14-jdk-windowsservercore-ltsc2022`, `23-ea-14-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-14-jdk-windowsservercore-1809`, `23-ea-14-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-14-jdk-nanoserver-1809`, `23-ea-14-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`22-rc-jdk-oraclelinux9`, `22-rc-oraclelinux9`, `22-jdk-oraclelinux9`, `22-oraclelinux9`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/22/jdk/oraclelinux9/Dockerfile) +- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) - [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) - [`22-rc-jdk-slim-bookworm`, `22-rc-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-rc-jdk-slim`, `22-rc-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/slim-bookworm/Dockerfile) - [`22-rc-jdk-bullseye`, `22-rc-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bullseye/Dockerfile) @@ -63,17 +63,17 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `23-ea-13-jdk`, `23-ea-13`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-13-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/oraclelinux8/Dockerfile) - - [`23-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-13-jdk-windowsservercore`, `23-ea-13-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-13-jdk-nanoserver`, `23-ea-13-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/2dbd57218cdde5092fc8d5ef43b5bc0cea345b1f/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-14-jdk`, `23-ea-14`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-14-jdk-windowsservercore`, `23-ea-14-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-14-jdk-nanoserver`, `23-ea-14-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/nanoserver-1809/Dockerfile) - `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - - [`22-rc-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) + - [`22-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/22/jdk/oraclelinux9/Dockerfile) - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) - `22-rc-jdk-windowsservercore`, `22-rc-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: diff --git a/php/README.md b/php/README.md index eaed122b7746..6dc28614c043 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.4RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.4RC1-bookworm`, `8.3-rc-bookworm`, `8.3.4RC1-cli`, `8.3-rc-cli`, `8.3.4RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.4RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.4RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.4RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.4RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.4RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.4RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.4RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.4RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.4RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.4RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.4RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.4RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.4RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.4RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.4RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.4RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.4RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.4RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.4RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.4RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.4RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.4RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.4RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/3afc28a067c8200e449e3ccc4a8ef2b1685c508c/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.3-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.3-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.3-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.3`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/cli/Dockerfile) -- [`8.3.3-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.3-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/apache/Dockerfile) -- [`8.3.3-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.3-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/fpm/Dockerfile) -- [`8.3.3-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.3-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bookworm/zts/Dockerfile) -- [`8.3.3-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.3-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/cli/Dockerfile) -- [`8.3.3-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/apache/Dockerfile) -- [`8.3.3-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/fpm/Dockerfile) -- [`8.3.3-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/bullseye/zts/Dockerfile) -- [`8.3.3-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.3-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.3-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.3-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.3-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.3-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.3-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.3-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.3-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.3-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.3-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.3-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/abc02271bdb83185c069d62ba7dc946545f2f516/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.17RC2-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.17RC2-bookworm`, `8.2-rc-bookworm`, `8.2.17RC2-cli`, `8.2-rc-cli`, `8.2.17RC2`, `8.2-rc`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.17RC2-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.17RC2-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.17RC2-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.17RC2-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.17RC2-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.17RC2-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.17RC2-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.17RC2-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.17RC2-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.17RC2-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.17RC2-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.17RC2-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.17RC2-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.17RC2-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.17RC2-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.17RC2-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.17RC2-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.17RC2-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.17RC2-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.17RC2-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.17RC2-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.17RC2-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.17RC2-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/d06699e66497cb40a273ceeb1dd5f0e74f519eca/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.16-cli-bookworm`, `8.2-cli-bookworm`, `8.2.16-bookworm`, `8.2-bookworm`, `8.2.16-cli`, `8.2-cli`, `8.2.16`, `8.2`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/cli/Dockerfile) -- [`8.2.16-apache-bookworm`, `8.2-apache-bookworm`, `8.2.16-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/apache/Dockerfile) -- [`8.2.16-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.16-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/fpm/Dockerfile) -- [`8.2.16-zts-bookworm`, `8.2-zts-bookworm`, `8.2.16-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bookworm/zts/Dockerfile) -- [`8.2.16-cli-bullseye`, `8.2-cli-bullseye`, `8.2.16-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/cli/Dockerfile) -- [`8.2.16-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/apache/Dockerfile) -- [`8.2.16-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/fpm/Dockerfile) -- [`8.2.16-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/bullseye/zts/Dockerfile) -- [`8.2.16-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.16-alpine3.19`, `8.2-alpine3.19`, `8.2.16-cli-alpine`, `8.2-cli-alpine`, `8.2.16-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.16-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.16-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.16-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.16-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.16-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.16-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.16-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.16-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/a00ce8bb2751c14a0314edcc9d35e5e355c2962f/8.2/alpine3.18/zts/Dockerfile) +- [`8.3.4-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.4-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.4-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.4`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/cli/Dockerfile) +- [`8.3.4-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.4-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/apache/Dockerfile) +- [`8.3.4-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.4-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/fpm/Dockerfile) +- [`8.3.4-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.4-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/zts/Dockerfile) +- [`8.3.4-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.4-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/cli/Dockerfile) +- [`8.3.4-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/apache/Dockerfile) +- [`8.3.4-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/fpm/Dockerfile) +- [`8.3.4-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/zts/Dockerfile) +- [`8.3.4-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.4-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.4-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.4-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.4-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.4-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.4-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.4-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.4-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.4-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.4-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.4-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.17-cli-bookworm`, `8.2-cli-bookworm`, `8.2.17-bookworm`, `8.2-bookworm`, `8.2.17-cli`, `8.2-cli`, `8.2.17`, `8.2`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/cli/Dockerfile) +- [`8.2.17-apache-bookworm`, `8.2-apache-bookworm`, `8.2.17-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/apache/Dockerfile) +- [`8.2.17-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.17-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/fpm/Dockerfile) +- [`8.2.17-zts-bookworm`, `8.2-zts-bookworm`, `8.2.17-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/zts/Dockerfile) +- [`8.2.17-cli-bullseye`, `8.2-cli-bullseye`, `8.2.17-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/cli/Dockerfile) +- [`8.2.17-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/apache/Dockerfile) +- [`8.2.17-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/fpm/Dockerfile) +- [`8.2.17-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/zts/Dockerfile) +- [`8.2.17-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.17-alpine3.19`, `8.2-alpine3.19`, `8.2.17-cli-alpine`, `8.2-cli-alpine`, `8.2.17-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.17-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.17-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.17-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.17-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.17-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.17-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.17-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.17-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/cli/Dockerfile) - [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/apache/Dockerfile) - [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/fpm/Dockerfile) From 92251412a9ff985b2be8db59ea05d158e6c4e1e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Mar 2024 18:10:16 -0700 Subject: [PATCH 1031/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 237de8159673..37f875c69ddf 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.2`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8015444481d1ff6e404edf833c12378cc89aa40e/5/debian/Dockerfile) -- [`5.80.2-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8015444481d1ff6e404edf833c12378cc89aa40e/5/alpine/Dockerfile) +- [`5.80.3`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f95dd0575487f95d1d3034837f0d793a014fca42/5/debian/Dockerfile) +- [`5.80.3-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f95dd0575487f95d1d3034837f0d793a014fca42/5/alpine/Dockerfile) # Quick reference (cont.) From bc4c4558e609c92610d29f5bb115de55d24041d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Mar 2024 11:10:01 -0700 Subject: [PATCH 1032/2686] Run update.sh --- clearlinux/README.md | 2 +- groovy/README.md | 14 ++++----- haskell/README.md | 20 ++++++------- jetty/README.md | 70 ++++++++++++++++++++++---------------------- 4 files changed, 53 insertions(+), 53 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 4752f8b89041..134bac353bfa 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6d93bc1c6c7948e5d934dd3e02fdede81ffc5d18/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/3e425852017b24fe9935533aa8790657e43bd908/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index 509a379d93c4..de23af3a7c32 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.19-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.19-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk8/Dockerfile) -- [`4.0.19-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.19-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk11/Dockerfile) -- [`4.0.19-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk11-alpine/Dockerfile) -- [`4.0.19-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.19-jdk`, `4.0-jdk`, `4.0.19`, `4.0`, `4`, `jdk`, `latest`, `4.0.19-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.19-jdk-jammy`, `4.0-jdk-jammy`, `4.0.19-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk17/Dockerfile) -- [`4.0.19-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.19-jdk-alpine`, `4.0-jdk-alpine`, `4.0.19-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk17-alpine/Dockerfile) -- [`4.0.19-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.19-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk21/Dockerfile) -- [`4.0.19-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/b97b7a77ec07563e8ada6cd017fea48be682d3d5/jdk21-alpine/Dockerfile) +- [`4.0.20-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.20-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk8/Dockerfile) +- [`4.0.20-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.20-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk11/Dockerfile) +- [`4.0.20-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk11-alpine/Dockerfile) +- [`4.0.20-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.20-jdk`, `4.0-jdk`, `4.0.20`, `4.0`, `4`, `jdk`, `latest`, `4.0.20-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.20-jdk-jammy`, `4.0-jdk-jammy`, `4.0.20-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk17/Dockerfile) +- [`4.0.20-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.20-jdk-alpine`, `4.0-jdk-alpine`, `4.0.20-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk17-alpine/Dockerfile) +- [`4.0.20-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.20-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk21/Dockerfile) +- [`4.0.20-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index c557270a3343..8bfa3768b413 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/918d184d9a5ffb37aeefa579a980a4b13d9aafc2/9.8/buster/Dockerfile) -- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/918d184d9a5ffb37aeefa579a980a4b13d9aafc2/9.8/slim-buster/Dockerfile) -- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/buster/Dockerfile) -- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.4/slim-buster/Dockerfile) -- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.2/buster/Dockerfile) -- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.2/slim-buster/Dockerfile) -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.0/buster/Dockerfile) -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/663780ca62e72279d9a684e44fcca33f894fcfbf/9.0/slim-buster/Dockerfile) +- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.8/buster/Dockerfile) +- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.8/slim-buster/Dockerfile) +- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.6/buster/Dockerfile) +- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.4/slim-buster/Dockerfile) +- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.2/buster/Dockerfile) +- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.2/slim-buster/Dockerfile) +- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.0/buster/Dockerfile) +- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.0/slim-buster/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index ce72e5731e47..32cb8166e96c 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.53-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.53-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.53-jre8`, `9.4-jre8`, `9-jre8`, `9.4.53-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.53-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.53-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.53-jre21`, `9.4-jre21`, `9-jre21`, `9.4.53-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.53-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.53-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.53-jre17`, `9.4-jre17`, `9-jre17`, `9.4.53-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.53-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.53-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.53-jre11`, `9.4-jre11`, `9-jre11`, `9.4.53-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.53-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.53-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.53-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.53-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.53`, `9.4`, `9`, `9.4.53-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.53-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.53-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.53-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.53-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.53-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.53-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.53-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.53-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.53-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.53-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/0eb91ddd049be69b97bf8ffbc51d5731a81f7706/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.6-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.6-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.6-jre21`, `12.0-jre21`, `12-jre21`, `12.0.6-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.6-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.6-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.6-jre17`, `12.0-jre17`, `12-jre17`, `12.0.6-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.6-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.6-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.6`, `12.0`, `12`, `12.0.6-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.6-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.6-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.6-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.6-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.6-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.6-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`9.4.54-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.54-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.54-jre8`, `9.4-jre8`, `9-jre8`, `9.4.54-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.54-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.54-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.54-jre21`, `9.4-jre21`, `9-jre21`, `9.4.54-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.54-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.54-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.54-jre17`, `9.4-jre17`, `9-jre17`, `9.4.54-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.54-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.54-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.54-jre11`, `9.4-jre11`, `9-jre11`, `9.4.54-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.54-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.54-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.54-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.54-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.54`, `9.4`, `9`, `9.4.54-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.54-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.54-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.54-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.54-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.54-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.54-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.54-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.54-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.54-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.54-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`12.0.7-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.7-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.7-jre21`, `12.0-jre21`, `12-jre21`, `12.0.7-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.7-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.7-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.7-jre17`, `12.0-jre17`, `12-jre17`, `12.0.7-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.7-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.7-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.7`, `12.0`, `12`, `12.0.7-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.7-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.7-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.7-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.7-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.7-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.7-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.20-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.20-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21-alpine/Dockerfile) - [`11.0.20-jre21`, `11.0-jre21`, `11-jre21`, `11.0.20-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21/Dockerfile) - [`11.0.20-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.20-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17-alpine/Dockerfile) @@ -71,18 +71,18 @@ WARNING: - [`10.0.20-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.20-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk17/Dockerfile) - [`10.0.20-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.20-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) - [`10.0.20-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.20-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.53-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.53-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.53-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.53-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.53-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/0d6216680eb612c3672965c0029d67dde6b3039c/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.53-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.53-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.53-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/fe3da4a0e79a7cc2aea01ee10ec832f8b9f426d8/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.53-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d06dfc8b8dbbc3eba71c007e359e1ca0a7e85dff/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.6-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.6-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.6-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.6-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.6-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/12.0/jdk17/Dockerfile) +- [`9.4.54-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.54-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.54-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.54-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.54-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.54-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.54-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.54-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.54-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11/Dockerfile) +- [`12.0.7-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.7-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.7-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.7-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.7-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.20-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21-alpine/Dockerfile) - [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21/Dockerfile) - [`11.0.20-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17-alpine/Dockerfile) From 411c1341886970e1784f350b902ecd3655d02b64 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Mar 2024 12:19:08 -0700 Subject: [PATCH 1033/2686] Run update.sh --- ghost/README.md | 4 ++-- mongo/README.md | 45 +++++++++++++++------------------------------ neo4j/README.md | 12 ++++++------ rabbitmq/README.md | 4 ++-- 4 files changed, 25 insertions(+), 40 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 37f875c69ddf..5240eae91c8f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.3`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f95dd0575487f95d1d3034837f0d793a014fca42/5/debian/Dockerfile) -- [`5.80.3-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f95dd0575487f95d1d3034837f0d793a014fca42/5/alpine/Dockerfile) +- [`5.80.4`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a5c3cd372d7e34d5ea79bd0e544b0cdb800fca26/5/debian/Dockerfile) +- [`5.80.4-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a5c3cd372d7e34d5ea79bd0e544b0cdb800fca26/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 57c41c9787d6..52803ab88664 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,16 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.7-rc2-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/Dockerfile) -- [`7.0.7-rc2-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.7-rc2-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.7-rc2-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.7-rc2-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.6-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) -- [`7.0.6-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.6-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.6-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.6-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.7-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) +- [`7.0.7-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.7-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.7-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.7-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.14-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) @@ -61,26 +56,16 @@ WARNING: ## Shared Tags -- `7.0.7-rc2`, `7.0-rc`: - - [`7.0.7-rc2-jammy`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/Dockerfile) - - [`7.0.7-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-rc2-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.7-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-rc2-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.7-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.7-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/015164a699373ffaa4f268823de26295eb2ee779/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.6`, `7.0`, `7`, `latest`: - - [`7.0.6-jammy`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/Dockerfile) - - [`7.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.6-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.6-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd60b60bd5145aaa295326e14d30f03829618803/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.7`, `7.0`, `7`, `latest`: + - [`7.0.7-jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) + - [`7.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.7-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.14`, `6.0`, `6`: - [`6.0.14-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index ebd7ba3cae72..2e0bae3be68e 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.18.0-community-bullseye`, `5.18-community-bullseye`, `5-community-bullseye`, `5.18.0-community`, `5.18-community`, `5-community`, `5.18.0-bullseye`, `5.18-bullseye`, `5-bullseye`, `5.18.0`, `5.18`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/bullseye/community/Dockerfile) -- [`5.18.0-enterprise-bullseye`, `5.18-enterprise-bullseye`, `5-enterprise-bullseye`, `5.18.0-enterprise`, `5.18-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/bullseye/enterprise/Dockerfile) -- [`5.18.0-community-ubi9`, `5.18-community-ubi9`, `5-community-ubi9`, `5.18.0-ubi9`, `5.18-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi9/community/Dockerfile) -- [`5.18.0-enterprise-ubi9`, `5.18-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi9/enterprise/Dockerfile) -- [`5.18.0-community-ubi8`, `5.18-community-ubi8`, `5-community-ubi8`, `5.18.0-ubi8`, `5.18-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi8/community/Dockerfile) -- [`5.18.0-enterprise-ubi8`, `5.18-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/58a094ccbfd24c9035960000150c1e4d39789e37/5.18.0/ubi8/enterprise/Dockerfile) +- [`5.18.1-community-bullseye`, `5.18-community-bullseye`, `5-community-bullseye`, `5.18.1-community`, `5.18-community`, `5-community`, `5.18.1-bullseye`, `5.18-bullseye`, `5-bullseye`, `5.18.1`, `5.18`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/bullseye/community/Dockerfile) +- [`5.18.1-enterprise-bullseye`, `5.18-enterprise-bullseye`, `5-enterprise-bullseye`, `5.18.1-enterprise`, `5.18-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/bullseye/enterprise/Dockerfile) +- [`5.18.1-community-ubi9`, `5.18-community-ubi9`, `5-community-ubi9`, `5.18.1-ubi9`, `5.18-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi9/community/Dockerfile) +- [`5.18.1-enterprise-ubi9`, `5.18-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi9/enterprise/Dockerfile) +- [`5.18.1-community-ubi8`, `5.18-community-ubi8`, `5-community-ubi8`, `5.18.1-ubi8`, `5.18-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/community/Dockerfile) +- [`5.18.1-enterprise-ubi8`, `5.18-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/enterprise/Dockerfile) - [`4.4.31`, `4.4.31-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/community/Dockerfile) - [`4.4.31-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/enterprise/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6577ddb38a22..5a1d0ed22c39 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.13.0-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) - [`3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/Dockerfile) - [`3.13.0-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/ubuntu/Dockerfile) +- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/ubuntu/Dockerfile) - [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/06bdf984da8e6b563f8b1d21e38babb180960b2c/3.12/alpine/Dockerfile) +- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/alpine/Dockerfile) - [`3.12.13-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) From 4f3fce2c7242f9cc788a61f1f076f90a9950397a Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 18 Mar 2024 18:08:08 -0500 Subject: [PATCH 1034/2686] fix(influxdb-v2): Revise and update image description and v2 instructions (#2425) * fix(influxdb-v2): Revises and updates v2 server-config instructions, code samples, links: - Be specific in product/version naming (InfluxDB v2) - Promote automated setup and other Docker-specific aspects - Use the version `2` tag in code samples - Use canonical `/influxdb/v2` in Docs links - Link to Docs for Quick Start guide and InfluxDB features not specific to Docker - Add a section to define ports and file system * fix(influxdb-v1): Promote heading levels * chore(Influxdb-v1): Revise database initialization section * fix(influxdb): Replace console with bash code blocks * chore(influxdb): Quote $PWD in variable in code blocks. --------- Co-authored-by: Scott Anderson --- influxdb/README-short.txt | 2 +- influxdb/content.md | 797 ++++++++++++++++++++------------------ influxdb/variant-data.md | 2 +- influxdb/variant-meta.md | 26 +- 4 files changed, 442 insertions(+), 385 deletions(-) diff --git a/influxdb/README-short.txt b/influxdb/README-short.txt index a33232c98b90..ff66a43d2008 100644 --- a/influxdb/README-short.txt +++ b/influxdb/README-short.txt @@ -1 +1 @@ -InfluxDB is an open source time series database for recording metrics, events, and analytics. +InfluxDB is the open source time series database built for real-time analytic workloads. diff --git a/influxdb/content.md b/influxdb/content.md index 985493946e92..e94ab3d60fae 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -1,194 +1,138 @@ -# InfluxDB +# What is InfluxDB? -InfluxDB is a time series database built from the ground up to handle high write and query loads. InfluxDB is meant to be used as a backing store for any use case involving large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics. +InfluxDB is the time series data platform designed to handle high write and query workloads. Using InfluxDB, you can collect, store, and process large amounts of timestamped data, including metrics and events for use cases such as DevOps monitoring, application metrics, IoT sensors, and event monitoring. -[InfluxDB Documentation](https://docs.influxdata.com/influxdb/latest/) +Use the InfluxDB Docker Hub image to write, query, and process time series data in [InfluxDB v2](https://docs.influxdata.com/influxdb/v2/) or [InfluxDB v1](https://docs.influxdata.com/influxdb/v1/). + +For more information, visit https://influxdata.com. %%LOGO%% -## Using this Image - InfluxDB 2.x +# How to use this image for InfluxDB v2 -### Quick start +**Quick start**: See the guide to [Install InfluxDB v2 for Docker](https://docs.influxdata.com/influxdb/v2/install/?t=Docker) and get started using InfluxDB v2. -Using this image is pretty easy, but there are a few things you should know. +## Start InfluxDB v2 and set up with the UI, CLI, or API -- You should forward TCP port 8086 -- You should mount a volume in /var/lib/influxdb2 +To start an InfluxDB v2 container, enter the following command: -```console -$ docker run \ - -p 8086:8086 \ - -v myInfluxVolume:/var/lib/influxdb2 \ - %%IMAGE%%:latest +```bash +docker run \ + -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + %%IMAGE%%:2 ``` -After starting the container you can use the web interface at http://localhost:8086/ to setup and customize your Influx database. - -Find more about API Endpoints & Ports [here](https://docs.influxdata.com/influxdb/v2.5/reference/api/). - -### Configuration +Replace the following with your own values: -InfluxDB can be configured using a mix of a config file, environment variables, and CLI options. To mount a configuration file and use it with the server, you can use this command to generate the default configuration file: +- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -```console -$ docker run --rm %%IMAGE%%:2.0 influxd print-config > config.yml -``` +After the container starts, the InfluxDB UI and API are accessible at http://localhost:8086 on the host. You're ready to set up an initial admin user, token, and bucket from outside or inside the container--choose one of the following: -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB container: +- **Set up InfluxDB from outside the container**: [Set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) from the host or network using the InfluxDB UI, `influx` CLI, or HTTP API. -```console -$ docker run -p 8086:8086 \ - -v $PWD/config.yml:/etc/influxdb2/config.yml \ - %%IMAGE%%:2.0 -``` +- **Set up InfluxDB from inside the container**: Use `docker exec` to run the `influx` CLI installed in the container--for example: -Modify `$PWD` to be the directory where you want to store the configuration file. + ```bash + docker exec influxdb2 influx setup \ + --username $USERNAME \ + --password $PASSWORD \ + --org $ORGANIZATION \ + --bucket $BUCKET \ + --force + ``` -Individual config settings can be overridden by environment variables. The variables must be named using the format `INFLUXD_${SNAKE_CASE_NAME}`. The `SNAKE_CASE_NAME` for an option will be the option's name with all dashes (`-`) replaced by underscores (`_`), in all caps. +See the [`influx setup` documentation](https://docs.influxdata.com/influxdb/v2/reference/cli/influx/setup/) for the full list of options. -Examples: +*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* -```console -# Config setting: bolt-path -INFLUXD_BOLT_PATH=/root/influxdb.bolt -# Config setting: no-tasks -INFLUXD_NO_TASKS=true -# Config setting: storage-wal-fsync-delay -INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m -``` +## Start InfluxDB v2 with automated setup -Finally, all config options can be passed as CLI options: +To start and set up InfluxDB v2 with a single command, specify `-e DOCKER_INFLUXDB_INIT_MODE=setup` and `-e DOCKER_INFLUXDB_INIT_` environment variables for the initial user, password, bucket, and organization--for example: -```console -$ docker run -p 8086:8086 \ - %%IMAGE%%:2.0 --storage-wal-fsync-delay=15m +```bash +docker run -d -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME= \ + -e DOCKER_INFLUXDB_INIT_PASSWORD= \ + -e DOCKER_INFLUXDB_INIT_ORG= \ + -e DOCKER_INFLUXDB_INIT_BUCKET= \ + %%IMAGE%%:2 ``` -CLI options take precedence over environment variables. +Replace the following with your own values: -Find more about configuring InfluxDB [here](https://docs.influxdata.com/influxdb/v2.0/reference/config-options/). +- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- ``: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) +- ``: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) +- ``: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) +- ``: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) (database) -### Database Setup +*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* -InfluxDB 2.x requires authentication. A special API exists to bootstrap the first super-user in the database, along with an initial organization and bucket. It's possible to access this API manually, or to run it automatically via environment variables. +### Automated setup options -#### Manual Setup - -If your InfluxDB container is running locally (or on a host exposed to the network), you can perform initial setup from outside the container using either the UI or the `influx` CLI. Find more about setting up InfluxDB using these methods [here](https://docs.influxdata.com/influxdb/v2.0/get-started/#set-up-influxdb). - -It's also possible to perform manual setup from within the container using `docker exec`. For example, if you start the container: - -```console -$ docker run -d -p 8086:8086 \ - --name influxdb2 \ - -v $PWD:/var/lib/influxdb2 \ - %%IMAGE%%:2.0 -``` - -You can then run the `influx` client in the container: - -```console -$ docker exec influxdb2 influx setup \ - --username $USERNAME \ - --password $PASSWORD \ - --org $ORGANIZATION \ - --bucket $BUCKET \ - --force -``` +In setup mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or upgrade mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), you can specify the following Docker-specific environment variables to provide initial setup values: -Running setup from within the container will cause CLI configs to be written to `/etc/influxdb2/influx-configs`. You can then use the `influx` CLI from within the container to extract the generated admin token: +- `DOCKER_INFLUXDB_INIT_USERNAME`: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). +- `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). +- `DOCKER_INFLUXDB_INIT_ORG`: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/). +- `DOCKER_INFLUXDB_INIT_BUCKET`: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/). +- Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) to use as the initial bucket's [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data). +- Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A string value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: a generated token. -```console -# Using table output + cut -$ docker exec influxdb2 influx auth list \ - --user $USERNAME \ - --hide-headers | cut -f 3 +The following example shows how to pass values for all initial setup options: -# Using JSON output + jq -$ docker exec influxdb2 influx auth list \ - --user $USERNAME \ - --json | jq -r '.[].token' -``` - -Alternatively, you could configure your initial InfluxDB run to mount `/etc/influxdb2` as a volume: - -```console -$ docker run -d -p 8086:8086 \ - --name influxdb2 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - %%IMAGE%%:2.0 +```bash +docker run -d -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ + -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ + %%IMAGE%%:2 ``` -This will make the generated CLI configs available to the host. - -#### Automated Setup - -The InfluxDB image contains some extra functionality to automatically bootstrap the system. This functionality is enabled by setting the `DOCKER_INFLUXDB_INIT_MODE` environment variable to the value `setup` when running the container. Additional environment variables are used to configure the setup logic: - -- `DOCKER_INFLUXDB_INIT_USERNAME`: The username to set for the system's initial super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: The password to set for the system's inital super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_ORG`: The name to set for the system's initial organization (**Required**). -- `DOCKER_INFLUXDB_INIT_BUCKET`: The name to set for the system's initial bucket (**Required**). -- `DOCKER_INFLUXDB_INIT_RETENTION`: The duration the system's initial bucket should retain data. If not set, the initial bucket will retain data forever. -- `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: The authentication token to associate with the system's initial super-user. If not set, a token will be auto-generated by the system. +*To upgrade from InfluxDB 1.x to InfluxDB 2.x, see the **Upgrading from InfluxDB 1.x** section below.\* -Automated setup will generate metadata files and CLI configurations. It's recommended to mount volumes at both paths to avoid losing data. +With InfluxDB set up and running, see the [Get started](https://docs.influxdata.com/influxdb/v2/get-started/) tutorial to create tokens and write and query data. -For example, a minimal invocation of automated setup is: - -```console -$ docker run -d -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - %%IMAGE%%:2.0 -``` - -And an example using all available options is: - -```console -$ docker run -d -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ - -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ - %%IMAGE%%:2.0 -``` - -**NOTE:** Automated setup will not run if an existing boltdb file is found at the configured path. This behavior allows for the InfluxDB container to reboot post-setup without encountering "DB is already set up" errors. +### Custom Initialization Scripts -### Interacting with InfluxDB +In `setup` mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or `upgrade` mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), the InfluxDB Docker Hub image supports running custom initialization scripts. After the setup process completes, scripts are executed in lexical sort order by name. -Once an InfluxDB instance has completed initial setup, its APIs will unlock. See the main documentation site for reference information and examples on: +For the container to run scripts, they must: -- [Writing data](https://docs.influxdata.com/influxdb/v2.0/write-data/) -- [Reading data](https://docs.influxdata.com/influxdb/v2.0/query-data/) -- [Configuring security](https://docs.influxdata.com/influxdb/v2.0/security/) -- [And more!](https://docs.influxdata.com/influxdb/v2.0/) +- Be mounted in the container's `/docker-entrypoint-initdb.d` directory +- Be named using the `.sh` file name extension +- Be executable by the user running the `docker run` command--for example, to allow the current use to execute a script with `docker run`: -### Custom Initialization Scripts + ```bash + chmod +x ./scripts/ + ``` -The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh`, must have execute file permissions (`chmod +x `) and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. +> #### Grant permissions to mounted files +> +> By default, Docker runs containers using the user and group IDs of the user executing the `docker run` command. When files are bind-mounted into the container, Docker preserves the user and group ownership from the host system. -As a convenience for script-writers, the image will export a number of variables into the environment before executing any scripts: +The image exports a number of variables into the environment before executing scripts. The following variables are available for you to use in your scripts: -- `INFLUX_CONFIGS_PATH`: Path to the CLI configs file written by `setup`/`upgrade` -- `INFLUX_HOST`: URL to the `influxd` instance running setup logic +- `INFLUX_CONFIGS_PATH`: Path to the `influx` CLI connection configurations file written by `setup`/`upgrade` +- `INFLUX_HOST`: URL to the `influxd` instance running `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_USER_ID`: ID of the initial admin user created by `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_ORG_ID`: ID of the initial organization created by `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_BUCKET_ID`: ID of the initial bucket created by `setup`/`upgrade` -For example, if you wanted to grant write-access to an InfluxDB 1.x client on your initial bucket, you'd first create the file `$PWD/scripts/setup-v1.sh` with contents: +For example, to grant an InfluxDB 1.x client *write* permission to your initial bucket, create a `$PWD/scripts/setup-v1.sh` file that contains the following: ```bash #!/bin/bash @@ -208,271 +152,372 @@ influx v1 auth create \ --org ${DOCKER_INFLUXDB_INIT_ORG} ``` -Then you'd run: - -```console -$ docker run -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -v $PWD/scripts:/docker-entrypoint-initdb.d \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e V1_DB_NAME=v1-db \ - -e V1_RP_NAME=v1-rp \ - -e V1_AUTH_USERNAME=v1-user \ - -e V1_AUTH_PASSWORD=v1-password \ - %%IMAGE%%:2.0 +Then, run the following command to start and set up InfluxDB using custom scripts: + +```bash +docker run -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -v "$PWD/scripts:/docker-entrypoint-initdb.d" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e V1_DB_NAME=v1-db \ + -e V1_RP_NAME=v1-rp \ + -e V1_AUTH_USERNAME=v1-user \ + -e V1_AUTH_PASSWORD=v1-password \ + %%IMAGE%%:2 ``` -**NOTE:** Custom scripts will not run if an existing boltdb file is found at the configured path (causing `setup` or `upgrade` to be skipped). This behavior allows for the InfluxDB container to reboot post-initialization without encountering errors from non-idempotent script commands. +> #### Automated setup and upgrade ignored if already setup +> +> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. +> +> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. + +## Access InfluxDB v2 file system and ports + +When starting an InfluxDB container, we recommend the following for easy access to your data, configurations, and InfluxDB v2 instance: + +- Publish the container's `8086` port to make the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) accessible from the host system. +- Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) outside of containers. + +### Default file system and networking ports + +For InfluxDB v2, the InfluxDB Docker Hub image uses the following default ports and file system paths: + +- TCP port `8086`: the default port for the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/). To specify a different port or address, use the [`http-bind-address` configuration option](https://docs.influxdata.com/influxdb/v2/reference/config-options/#http-bind-address). +- `/var/lib/influxdb2/`: the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) + + - `/engine/`: Default InfluxDB [Storage engine path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#engine-path) + - `influxd.bolt`: Default [Bolt path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#bolt-path) + - `influxd.sqlite`: Default [SQLite path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#sqlite-path) + +- `/etc/influxdb2`: the [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) + + - `/etc/influxdb2/configs`: `influx` CLI connection configurations file + - `/etc/influxdb2/influx-configs`: `influx` CLI connection configurations file, *if you run setup from within the container* + - Optional: `/etc/influxdb2/config.[yml, json, toml]`: Your customized InfluxDB [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/) file + +### Configure InfluxDB v2 in a container + +To customize InfluxDB, specify [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options) in a configuration file, environment variables, or command line flags. + +#### Use a configuration file + +To customize and mount an InfluxDB configuration file, do the following: + +1. If you haven't already, [set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) to initialize an API [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). You'll need the Operator token in the next step. + +2. Run the `influx server-config` CLI command to output the current server configuration to a file in the mounted configuration directory--for example, enter the following command to use the container's `influx` CLI and default Operator token: + + ```bash + docker exec -it influxdb2 influx server-config > "$PWD/config/config.yml" + ``` + +Replace `$PWD/config/` with the host directory that you mounted at the container's `/etc/influxdb2` InfluxDB configuration directory path. + +1. Edit the `config.yml` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). +2. Restart the container. + + ```bash + docker restart influxdb2 + ``` + +#### Use environment variables and command line flags + +To override specific [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options), use environment variables or command line flags. + +- Pass `INFLUXD_` environment variables to Docker to override the configuration file--for example: + + ```bash + docker run -p 8086:8086 \ + -e INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m \ + influxdb:2 + ``` + +- Pass `influxd` command line flags to override environment variables and the configuration file--for example: + + ```bash + docker run -p 8086:8086 \ + %%IMAGE%%:2 --storage-wal-fsync-delay=15m + ``` + +To learn more, see [InfluxDB configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options). ### Upgrading from InfluxDB 1.x -InfluxDB 2.x provides a 1.x-compatible API, but expects a different storage layout on disk. To bridge this mismatch, the InfluxDB image contains extra functionality to migrate 1.x data and config into 2.x layouts automatically before booting the `influxd` server. +InfluxDB 2.x provides a [1.x-compatible API](https://docs.influxdata.com/influxdb/v2/reference/api/influxdb-1x/), but expects a different storage layout on disk. To account for these differences, the InfluxDB Docker Hub image provides an `upgrade` feature that migrates 1.x data and configuration to 2.x before starting the `influxd` server. -The automated upgrade process bootstraps an initial admin user, organization, and bucket in the system. Additional environment variables are used to configure the setup logic: +The automated upgrade process creates the following in the InfluxDB v2 container: -- `DOCKER_INFLUXDB_INIT_USERNAME`: The username to set for the system's initial super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: The password to set for the system's inital super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_ORG`: The name to set for the system's initial organization (**Required**). -- `DOCKER_INFLUXDB_INIT_BUCKET`: The name to set for the system's initial bucket (**Required**). -- `DOCKER_INFLUXDB_INIT_RETENTION`: The duration the system's initial bucket should retain data. If not set, the initial bucket will retain data forever. -- `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: The authentication token to associate with the system's initial super-user. If not set, a token will be auto-generated by the system. +- an initial admin user +- an initial organization +- an initial bucket +- InfluxDB v2 data files (the default path is `/var/lib/influxdb2`) +- InfluxDB v2 configuration files (the default path is `/etc/influxdb2`) -It also requires extra volumes to be mounted into the 2.x container: +*Mount volumes at both paths to avoid losing data.* -- Data from the 1.x instance -- Custom config from the 1.x instance (if any) +To run the automated upgrade, specify the following when you start the container: -The upgrade process searches for mounted 1.x data / config in this priority order: +- InfluxDB v2 initialization environment variables: -1. A config file referred to by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable -2. A data directory referred to by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable -3. A config file mounted at `/etc/influxdb/influxdb.conf` -4. A data directory mounted at `/var/lib/influxdb` + - `DOCKER_INFLUXDB_INIT_MODE=upgrade` + - `DOCKER_INFLUXDB_INIT_USERNAME`: A name for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) + - `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) + - `DOCKER_INFLUXDB_INIT_ORG`: A name for the initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) + - `DOCKER_INFLUXDB_INIT_BUCKET`: A name for the initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) + - Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) for the bucket [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data) + - Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: generates a token. + +- 1.x data and configuration paths: -Finally, the `DOCKER_INFLUXDB_INIT_MODE` environment variable must be set to `upgrade`. + - A 1.x data volume, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable or mounted at `/var/lib/influxdb` + - Optional: a 1.x custom configuration file, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable or mounted at `/etc/influxdb/influxdb.conf` -Automated upgrade will generate both data and config files, by default under `/var/lib/influxdb2` and `/etc/influxdb2`. It's recommended to mount volumes at both paths to avoid losing data. +The upgrade process searches for mounted 1.x data and configuration paths in the following order of precedence: -**NOTE:** Automated upgrade will not run if an existing boltdb file is found at the configured path. This behavior allows for the InfluxDB container to reboot post-upgrade without overwriting migrated data. +1. A configuration file referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable +2. A data directory referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable +3. A configuration file mounted at `/etc/influxdb/influxdb.conf` +4. A data directory mounted at `/var/lib/influxdb` -Find more about the InfluxDB upgrade process [here](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). See below for examples of common upgrade scenarios. +> #### Automated setup and upgrade ignored if already setup +> +> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. +> +> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. -#### Upgrade Example - Minimal +#### Upgrade InfluxDB 1.x: default data path and configuration Assume you've been running a minimal InfluxDB 1.x deployment: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - %%IMAGE%%:1.8 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + %%IMAGE%%:1.8 ``` -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, then run: - -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - %%IMAGE%%:2.0 +To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: + +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v influxdb2:/var/lib/influxdb2 \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + %%IMAGE%%:2 ``` -#### Upgrade Example - Custom InfluxDB 1.x Config +#### Upgrade InfluxDB 1.x: custom configuration -Assume you've been running an InfluxDB 1.x deployment with customized config: +Assume you've been running an InfluxDB 1.x deployment with customized configuration (`/etc/influxdb/influxdb.conf`): -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf \ - %%IMAGE%%:1.8 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ + %%IMAGE%%:1.8 ``` -To upgrade this deployment to InfluxDB 2.x, stop the running container, then run: - -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - %%IMAGE%%:2.0 +To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: + +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v influxdb2:/var/lib/influxdb2 \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + %%IMAGE%%:2 ``` -#### Upgrade Example - Custom Paths +#### Upgrade InfluxDB 1.x: custom data and configuration paths -Assume you've been running an InfluxDB 1.x deployment with data and config mounted at custom paths: +Assume you've been running an InfluxDB 1.x deployment with data and configuration mounted at custom paths: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - %%IMAGE%%:1.8 -config /root/influxdb/influxdb.conf +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + %%IMAGE%%:1.8 -config /root/influxdb/influxdb.conf ``` -To upgrade this deployment to InfluxDB 2.x, first decide if you'd like to keep using custom paths, or use the InfluxDB 2.x defaults. If you decide to use the defaults, you'd stop the running InfluxDB 1.x container, then run: - -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - %%IMAGE%%:2.0 -``` +Before you upgrade to InfluxDB v2, decide whether to keep using your custom paths or to use the InfluxDB v2 defaults. + +To use InfluxDB v2 defaults, stop the running InfluxDB 1.x container, and then run the following command: -To retain your custom paths, you'd run: - -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/root/influxdb2/data \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ - -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ - -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ - %%IMAGE%%:2.0 +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v influxdb2:/var/lib/influxdb2 \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ + %%IMAGE%%:2 ``` +To use your custom paths instead of InfluxDB v2 default paths, run the following command: + +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v influxdb2:/root/influxdb2/data \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ + -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ + -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ + -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ + %%IMAGE%%:2 +``` + +To learn more about the upgrade process, see the [v1-to-v2 upgrade guide](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). + ### Upgrading from quay.io-hosted InfluxDB 2.x image -Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb`. The builds were very bare-bones, containing the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data under `/root/.influxdbv2`. +Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb` and contained the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data in `/root/.influxdbv2`. + +Starting with `v2.0.4`, we restored the InfluxDB Docker Hub build, which defaults to storing data in `/var/lib/influxdb2`. If you upgrade directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` using the default settings, InfluxDB won't be able to find your existing data files. -Starting with `v2.0.4`, we've restored our DockerHub build. This build defaults to storing data in `/var/lib/influxdb2`. Upgrading directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` without modifying any settings will appear to cause data loss, as the new process won't be able to find your existing data files. +To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, choose one of the following: -To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, you can use one of the following approaches. +#### Update the mount to use the InfluxDB default -#### Change volume mount point +To use the InfluxDB Docker Hub data path, start a container that mounts your data volume into `/var/lib/influxdb2`--for example, if you used the following command to start the InfluxDB quay.io container: -If you don't mind using the new default path, you can switch the mount-point for the volume containing your data: +```bash +# quay.io InfluxDB 2.x container +docker run -p 8086:8086 \ + -v "$PWD:/root/.influxdbv2" \ + quay.io/influxdb/influxdb:v2.0.3 +``` -```console -# Migrate from this: -$ docker run -p 8086:8086 \ - -v $PWD:/root/.influxdbv2 \ - quay.io/influxdb/influxdb:v2.0.3 +Use this command to start an InfluxDB v2 Docker Hub container: -# To this: +```bash +# Docker Hub InfluxDB 2.x container docker run -p 8086:8086 \ - -v $PWD:/var/lib/influxdb2 \ - %%IMAGE%%:2.0 + -v "$PWD:/var/lib/influxdb2" \ + %%IMAGE%%:2 ``` -#### Override default configs +#### Configure InfluxDB to use the container home directory + +To continue using the `/root/.influxdbv2` data path, customize storage path configuration options ([bolt-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#bolt-path), [engine-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#engine-path), [sqlite-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#sqlite-path)) configuration options for your InfluxDB Docker Hub container--for example, if you used the following command to start the InfluxDB quay.io container: -If you'd rather keep your data files in the home directory, you can override the container's default config: +```bash +# quay.io-hosted InfluxDB 2.x +docker run -p 8086:8086 \ + -v "$PWD:/root/.influxdbv2" \ + quay.io/influxdb/influxdb:v2.0.3 +``` -```console -# Migrate from this: -$ docker run -p 8086:8086 \ - -v $PWD:/root/.influxdbv2 \ - quay.io/influxdb/influxdb:v2.0.3 +Use this command to start an InfluxDB v2 Docker Hub container: -# To this: +```bash docker run -p 8086:8086 \ - -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ - -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ - -v $PWD:/root/.influxdbv2 \ - %%IMAGE%%:2.0 + -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ + -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ + -v "$PWD:/root/.influxdbv2" \ + %%IMAGE%%:2 ``` -See the section about configuration below for more ways to override the data paths. +# How to use this image for InfluxDB v1 -## Using this Image - InfluxDB 1.x +Use the InfluxDB Docker Hub image to run and set up an [InfluxDB 1.x](https://docs.influxdata.com/influxdb/v1/) container. -### Running the container +## Running the container -The InfluxDB image exposes a shared volume under `/var/lib/influxdb`, so you can mount a host directory to that point to access persisted container data. A typical invocation of the container might be: +To start an InfluxDB 1.x container, enter the following command: -```console -$ docker run -p 8086:8086 \ - -v $PWD:/var/lib/influxdb \ - %%IMAGE%%:1.8 +```bash +docker run -p 8086:8086 \ + -v "$PWD:/var/lib/influxdb" \ + %%IMAGE%%:1.8 ``` -Modify `$PWD` to the directory where you want to store data associated with the InfluxDB container. +The command passes the following arguments: -You can also have Docker control the volume mountpoint by using a named volume. +- `-p 8086:8086`: Exposes the InfluxDB [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) on host port `8086`. +- `-v $PWD:/var/lib/influxdb`: Mounts the host's `$PWD` directory to the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/) to persist data outside the container. -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - %%IMAGE%%:1.8 -``` +Replace `$PWD` with the host directory where you want InfluxDB to store data. -### Exposed Ports +*Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/).* -The following ports are important and are used by InfluxDB. +## Networking ports -- 8086 HTTP API port -- 2003 Graphite support, if it is enabled +InfluxDB uses the following networking ports: -The HTTP API port will be automatically exposed when using `docker run -P`. +- TCP port `8086`: the default port for the [HTTP API](https://docs.influxdata.com/influxdb/v1/tools/api/) +- TCP port `2003`: the port for the Graphite protocol (if enabled) -### Configuration +Using the `docker run` [`-P, --publish-all` flag](https://docs.docker.com/reference/cli/docker/container/run/#publish-all) exposes the InfluxDB HTTP API to the host. -InfluxDB can be either configured from a config file or using environment variables. To mount a configuration file and use it with the server, you can use this command: +## Configure InfluxDB v1 in a container -Generate the default configuration file: +To configure InfluxDB v1 in a container, use a configuration file or environment variables. -```console -$ docker run --rm %%IMAGE%%:1.8 influxd config > influxdb.conf -``` +### Use a configuration file -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB container. +To customize and mount a configuration file, do the following: -```console -$ docker run -p 8086:8086 \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro \ - %%IMAGE%%:1.8 -config /etc/influxdb/influxdb.conf -``` +1. Output the current server configuration to a file in the mounted configuration directory--for example: + + ```bash + docker run --rm %%IMAGE%%:1.8 influxd config > influxdb.conf + ``` + +2. Edit the `influxdb.conf` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). + + ```bash + docker run -p 8086:8086 \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro" \ + %%IMAGE%%:1.8 -config /etc/influxdb/influxdb.conf + ``` -Modify `$PWD` to the directory where you want to store the configuration file. + Replace `$PWD` with the host directory where you want to store the configuration file. -For environment variables, the format is `INFLUXDB_$SECTION_$NAME`. All dashes (`-`) are replaced with underscores (`_`). If the variable isn't in a section, then omit that part. +### Use environment variables -Examples: +Pass [`INFLUXDB_` environment variables](https://docs.influxdata.com/influxdb/v1/administration/config/#environment-variables) to override specific InfluxDB v1 configuration options. An environment variable overrides the equivalent option in the configuration file. -```console -INFLUXDB_REPORTING_DISABLED=true -INFLUXDB_META_DIR=/path/to/metadir -INFLUXDB_DATA_QUERY_LOG_ENABLED=false +```bash +docker run -p 8086:8086 \ + -e INFLUXDB_REPORTING_DISABLED=true \ + -e INFLUXDB_META_DIR=/path/to/metadir \ + -e INFLUXDB_DATA_QUERY_LOG_ENABLED=false \ + %%IMAGE%%:1.8 ``` -Find more about configuring InfluxDB [here](https://docs.influxdata.com/influxdb/v1.8/administration/config/). +Learn more about [configuring InfluxDB v1](https://docs.influxdata.com/influxdb/v1.8/administration/config/). -### Graphite +## Graphite InfluxDB supports the Graphite line protocol, but the service and ports are not exposed by default. To run InfluxDB with Graphite support enabled, you can either use a configuration file or set the appropriate environment variables. Run InfluxDB with the default Graphite configuration: -```console +```bash docker run -p 8086:8086 -p 2003:2003 \ -e INFLUXDB_GRAPHITE_ENABLED=true \ %%IMAGE%%:1.8 @@ -480,107 +525,119 @@ docker run -p 8086:8086 -p 2003:2003 \ See the [README on GitHub](https://github.com/influxdata/influxdb/blob/master/services/graphite/README.md) for more detailed documentation to set up the Graphite service. In order to take advantage of graphite templates, you should use a configuration file by outputting a default configuration file using the steps above and modifying the `[[graphite]]` section. -### HTTP API +## InfluxDB v1 HTTP API Creating a DB named mydb: -```console -$ curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" +```bash +curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" ``` Inserting into the DB: -```console -$ curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' +```bash +curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' ``` -Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/) +Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/). -### CLI / SHELL +## CLI / SHELL Start the container: -```console -$ docker run --name=influxdb -d -p 8086:8086 %%IMAGE%%:1.8 +```bash +docker run --name=influxdb -d -p 8086:8086 %%IMAGE%%:1.8 ``` Run the influx client in this container: -```console -$ docker exec -it influxdb influx +```bash +docker exec -it influxdb influx ``` Or run the influx client in a separate container: -```console -$ docker run --rm --link=influxdb -it %%IMAGE%%:1.8 influx -host influxdb +```bash +docker run --rm --link=influxdb -it %%IMAGE%%:1.8 influx -host influxdb ``` -### Database Initialization +## InfluxDB v1 database initialization + +### Not recommended for production + +We **don't** recommend using initialization options for InfluxDB v1 production scenarios, but they're useful when running standalone instances for testing. -The InfluxDB image contains some extra functionality for initializing a database. These options are not suggested for production, but are quite useful when running standalone instances for testing. +The InfluxDB Docker Hub image lets you set initialization options when creating an InfluxDB v1 container. -The database initialization script will only be called when running `influxd`. It will not be executed when running any other program. +The database initialization script is only called when running `influxd`; it isn't executed by any other program. -#### Environment Variables +### Environment variables -The InfluxDB image uses several environment variables to automatically configure certain parts of the server. They may significantly aid you in using this image. +During the InfluxDB v1 set up process, the InfluxDB image uses environment variables to automatically configure some server options. You can override the following environment variables to customize set up options. -##### INFLUXDB_DB +#### INFLUXDB_DB Automatically initializes a database with the name of this environment variable. -##### INFLUXDB_HTTP_AUTH_ENABLED +#### INFLUXDB_HTTP_AUTH_ENABLED -Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication related options below to work. +Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication-related options below to work. -##### INFLUXDB_ADMIN_USER +#### INFLUXDB_ADMIN_USER The name of the admin user to be created. If this is unset, no admin user is created. -##### INFLUXDB_ADMIN_PASSWORD +#### INFLUXDB_ADMIN_PASSWORD The password for the admin user configured with `INFLUXDB_ADMIN_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_USER +#### INFLUXDB_USER The name of a user to be created with no privileges. If `INFLUXDB_DB` is set, this user will be granted read and write permissions for that database. -##### INFLUXDB_USER_PASSWORD +#### INFLUXDB_USER_PASSWORD The password for the user configured with `INFLUXDB_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_READ_USER +#### INFLUXDB_READ_USER The name of a user to be created with read privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. -##### INFLUXDB_READ_USER_PASSWORD +#### INFLUXDB_READ_USER_PASSWORD The password for the user configured with `INFLUXDB_READ_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_WRITE_USER +#### INFLUXDB_WRITE_USER The name of a user to be created with write privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. -##### INFLUXDB_WRITE_USER_PASSWORD +#### INFLUXDB_WRITE_USER_PASSWORD The password for the user configured with `INFLUXDB_WRITE_USER`. If this is unset, a random password is generated and printed to standard out. -#### Initialization Files +### Initialization Files If the Docker image finds any files with the extensions `.sh` or `.iql` inside of the `/docker-entrypoint-initdb.d` folder, it will execute them. The order they are executed in is determined by the shell. This is usually alphabetical order. -#### Manually Initializing the Database +### Manually Initialize InfluxDB v1 -To manually initialize the database and exit, the `/init-influxdb.sh` script can be used directly. It takes the same parameters as the `influxd run` command. As an example: +To manually initialize an InfluxDB v1 database, use `docker run` to call the `/init-influxdb.sh` script directly. The script takes the same initialization options as the `influxd run` command--for example: -```console -$ docker run --rm \ - -e INFLUXDB_DB=db0 \ - -e INFLUXDB_ADMIN_USER=admin -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ - -e INFLUXDB_USER=telegraf -e INFLUXDB_USER_PASSWORD=secretpassword \ - -v $PWD:/var/lib/influxdb \ - %%IMAGE%%:1.8 /init-influxdb.sh +```bash +docker run --rm \ + -e INFLUXDB_DB=db0 \ + -e INFLUXDB_ADMIN_USER=admin \ + -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ + -e INFLUXDB_USER=telegraf -e \ + -e INFLUXDB_USER_PASSWORD=secretpassword \ + -v "$PWD:/var/lib/influxdb" \ + %%IMAGE%%:1.8 /init-influxdb.sh ``` -The above would create the database `db0`, create an admin user with the password `supersecretpassword`, then create the `telegraf` user with your telegraf's secret password. It would then exit and leave behind any files it created in the volume that you mounted. +The command creates the following: + +- a database named `db0` +- an admin user `admin` with the password `supersecretpassword` +- a `telegraf` user with the password `secretpassword` + +The `--rm` flag causes Docker to exit and delete the container after the script runs. The data and configuration files created during initialization remain in the mounted volume (the host's `$PWD` directory). diff --git a/influxdb/variant-data.md b/influxdb/variant-data.md index f6c6fc19c4f7..55dafc261dea 100644 --- a/influxdb/variant-data.md +++ b/influxdb/variant-data.md @@ -1,6 +1,6 @@ ## `%%IMAGE%%:data` -*This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. +*Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. diff --git a/influxdb/variant-meta.md b/influxdb/variant-meta.md index f51af2fd136f..0442235ca886 100644 --- a/influxdb/variant-meta.md +++ b/influxdb/variant-meta.md @@ -11,7 +11,7 @@ This image contains the enterprise meta node package for clustering. It is meant The license key can be specified using either an environment variable or by overriding the configuration file. If you specify the license key directly, the container needs to be able to access the InfluxData portal. ```console -$ docker run -p 8089:8089 -p 8091:8091 \ +docker run -p 8089:8089 -p 8091:8091 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= %%IMAGE%%:meta ``` @@ -23,21 +23,21 @@ The examples below will use docker's built-in networking capability. If you use First, create a docker network: ```console -$ docker network create influxdb +docker network create influxdb ``` Start three meta nodes. This is the suggested number of meta nodes. We do not recommend running more or less. If you choose to run more or less, be sure that the number of meta nodes is odd. The hostname must be set on each container to the address that will be used to access the meta node. When using docker networks, the hostname should be made the same as the name of the container. ```console -$ docker run -d --name=influxdb-meta-0 --network=influxdb \ +docker run -d --name=influxdb-meta-0 --network=influxdb \ -h influxdb-meta-0 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ %%IMAGE%%:meta -$ docker run -d --name=influxdb-meta-1 --network=influxdb \ +docker run -d --name=influxdb-meta-1 --network=influxdb \ -h influxdb-meta-1 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ %%IMAGE%%:meta -$ docker run -d --name=influxdb-meta-2 --network=influxdb \ +docker run -d --name=influxdb-meta-2 --network=influxdb \ -h influxdb-meta-2 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ %%IMAGE%%:meta @@ -48,16 +48,16 @@ When setting the hostname, you can use `-h ` or you can directly set t After starting the meta nodes, you need to tell them about each other. Choose one of the meta nodes and run `influxd-ctl` in the container. ```console -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-meta influxdb-meta-1:8091 -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-meta influxdb-meta-2:8091 ``` Or you can just start a single meta node. If you setup a single meta node, you do not need to use `influxd-ctl add-meta`. ```console -$ docker run -d --name=influxdb-meta --network=influxdb \ +docker run -d --name=influxdb-meta --network=influxdb \ -h influxdb-meta \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ %%IMAGE%%:meta -single-server @@ -68,7 +68,7 @@ $ docker run -d --name=influxdb-meta --network=influxdb \ Start the data nodes using `%%IMAGE%%:data` with similar command line arguments to the meta nodes. You can start as many data nodes as are allowed by your license. ```console -$ docker run -d --name=influxdb-data-0 --network=influxdb \ +docker run -d --name=influxdb-data-0 --network=influxdb \ -h influxdb-data-0 \ -e INFLUXDB_LICENSE_KEY= \ %%IMAGE%%:data @@ -77,7 +77,7 @@ $ docker run -d --name=influxdb-data-0 --network=influxdb \ You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. ```console -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-data influxdb-data-0:8088 ``` @@ -94,13 +94,13 @@ InfluxDB Meta can be either configured from a config file or using environment v Generate the default configuration file: ```console -$ docker run --rm %%IMAGE%%:meta influxd-meta config > influxdb-meta.conf +docker run --rm %%IMAGE%%:meta influxd-meta config > influxdb-meta.conf ``` Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB Meta container. ```console -$ docker run \ +docker run \ -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ %%IMAGE%% -config /etc/influxdb/influxdb-meta.conf ``` @@ -117,4 +117,4 @@ INFLUXDB_META_DIR=/path/to/metadir INFLUXDB_ENTERPRISE_REGISTRATION_ENABLED=true ``` -Find more about configuring InfluxDB Meta [here](http://docs.influxdata.com/enterprise_influxdb/latest/production_installation/meta_node_installation/). +For more information, see how to [Install InfluxDB Enterprise meta nodes](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/). From 6f64d500fdf5877f40ac427149e4e8c9532a7e44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Mar 2024 17:18:16 -0700 Subject: [PATCH 1035/2686] Run update.sh --- docker/README.md | 30 +- influxdb/README.md | 821 ++++++++++++++++++++++++--------------------- 2 files changed, 454 insertions(+), 397 deletions(-) diff --git a/docker/README.md b/docker/README.md index 329a140c4dc8..2fc3b9bb88e1 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/cli/Dockerfile) +- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/cli/Dockerfile) - [`26.0.0-rc2-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc2-dind-alpine3.19`, `26.0.0-rc2`, `26-rc`, `rc`, `26.0.0-rc2-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind/Dockerfile) - [`26.0.0-rc2-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-1809/Dockerfile) -- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/cli/Dockerfile) +- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) +- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/cli/Dockerfile) - [`25.0.4-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.4-dind-alpine3.19`, `25.0.4-git`, `25.0-git`, `25-git`, `git`, `25.0.4`, `25.0`, `25`, `latest`, `25.0.4-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind/Dockerfile) - [`25.0.4-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind-rootless/Dockerfile) -- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/cli/Dockerfile) +- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.0.0-rc2-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3432169a7feb5c561dad2bc7a64a69a07d7f2ef/26-rc/windows/windowsservercore-1809/Dockerfile) + - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) - `25.0.4-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d9997a7f7fb75068c036bdc621d8326d2eb400fc/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5fa8a39c90d41d7a84cf7255dd2ccb16d5fe07b6/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 903767fb228f..23e3235f6228 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -60,197 +60,141 @@ WARNING: - **Source of this description**: [docs repo's `influxdb/` directory](https://github.com/docker-library/docs/tree/master/influxdb) ([history](https://github.com/docker-library/docs/commits/master/influxdb)) -# InfluxDB +# What is InfluxDB? -InfluxDB is a time series database built from the ground up to handle high write and query loads. InfluxDB is meant to be used as a backing store for any use case involving large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics. +InfluxDB is the time series data platform designed to handle high write and query workloads. Using InfluxDB, you can collect, store, and process large amounts of timestamped data, including metrics and events for use cases such as DevOps monitoring, application metrics, IoT sensors, and event monitoring. -[InfluxDB Documentation](https://docs.influxdata.com/influxdb/latest/) +Use the InfluxDB Docker Hub image to write, query, and process time series data in [InfluxDB v2](https://docs.influxdata.com/influxdb/v2/) or [InfluxDB v1](https://docs.influxdata.com/influxdb/v1/). -![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png) - -## Using this Image - InfluxDB 2.x - -### Quick start - -Using this image is pretty easy, but there are a few things you should know. - -- You should forward TCP port 8086 -- You should mount a volume in /var/lib/influxdb2 - -```console -$ docker run \ - -p 8086:8086 \ - -v myInfluxVolume:/var/lib/influxdb2 \ - influxdb:latest -``` - -After starting the container you can use the web interface at http://localhost:8086/ to setup and customize your Influx database. - -Find more about API Endpoints & Ports [here](https://docs.influxdata.com/influxdb/v2.5/reference/api/). +For more information, visit https://influxdata.com. -### Configuration - -InfluxDB can be configured using a mix of a config file, environment variables, and CLI options. To mount a configuration file and use it with the server, you can use this command to generate the default configuration file: - -```console -$ docker run --rm influxdb:2.0 influxd print-config > config.yml -``` - -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB container: +![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png) -```console -$ docker run -p 8086:8086 \ - -v $PWD/config.yml:/etc/influxdb2/config.yml \ - influxdb:2.0 -``` +# How to use this image for InfluxDB v2 -Modify `$PWD` to be the directory where you want to store the configuration file. +**Quick start**: See the guide to [Install InfluxDB v2 for Docker](https://docs.influxdata.com/influxdb/v2/install/?t=Docker) and get started using InfluxDB v2. -Individual config settings can be overridden by environment variables. The variables must be named using the format `INFLUXD_${SNAKE_CASE_NAME}`. The `SNAKE_CASE_NAME` for an option will be the option's name with all dashes (`-`) replaced by underscores (`_`), in all caps. +## Start InfluxDB v2 and set up with the UI, CLI, or API -Examples: +To start an InfluxDB v2 container, enter the following command: -```console -# Config setting: bolt-path -INFLUXD_BOLT_PATH=/root/influxdb.bolt -# Config setting: no-tasks -INFLUXD_NO_TASKS=true -# Config setting: storage-wal-fsync-delay -INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m -``` - -Finally, all config options can be passed as CLI options: - -```console -$ docker run -p 8086:8086 \ - influxdb:2.0 --storage-wal-fsync-delay=15m +```bash +docker run \ + -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + influxdb:2 ``` -CLI options take precedence over environment variables. +Replace the following with your own values: -Find more about configuring InfluxDB [here](https://docs.influxdata.com/influxdb/v2.0/reference/config-options/). +- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -### Database Setup +After the container starts, the InfluxDB UI and API are accessible at http://localhost:8086 on the host. You're ready to set up an initial admin user, token, and bucket from outside or inside the container--choose one of the following: -InfluxDB 2.x requires authentication. A special API exists to bootstrap the first super-user in the database, along with an initial organization and bucket. It's possible to access this API manually, or to run it automatically via environment variables. +- **Set up InfluxDB from outside the container**: [Set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) from the host or network using the InfluxDB UI, `influx` CLI, or HTTP API. -#### Manual Setup +- **Set up InfluxDB from inside the container**: Use `docker exec` to run the `influx` CLI installed in the container--for example: -If your InfluxDB container is running locally (or on a host exposed to the network), you can perform initial setup from outside the container using either the UI or the `influx` CLI. Find more about setting up InfluxDB using these methods [here](https://docs.influxdata.com/influxdb/v2.0/get-started/#set-up-influxdb). + ```bash + docker exec influxdb2 influx setup \ + --username $USERNAME \ + --password $PASSWORD \ + --org $ORGANIZATION \ + --bucket $BUCKET \ + --force + ``` -It's also possible to perform manual setup from within the container using `docker exec`. For example, if you start the container: +See the [`influx setup` documentation](https://docs.influxdata.com/influxdb/v2/reference/cli/influx/setup/) for the full list of options. -```console -$ docker run -d -p 8086:8086 \ - --name influxdb2 \ - -v $PWD:/var/lib/influxdb2 \ - influxdb:2.0 -``` - -You can then run the `influx` client in the container: +*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* -```console -$ docker exec influxdb2 influx setup \ - --username $USERNAME \ - --password $PASSWORD \ - --org $ORGANIZATION \ - --bucket $BUCKET \ - --force -``` +## Start InfluxDB v2 with automated setup -Running setup from within the container will cause CLI configs to be written to `/etc/influxdb2/influx-configs`. You can then use the `influx` CLI from within the container to extract the generated admin token: +To start and set up InfluxDB v2 with a single command, specify `-e DOCKER_INFLUXDB_INIT_MODE=setup` and `-e DOCKER_INFLUXDB_INIT_` environment variables for the initial user, password, bucket, and organization--for example: -```console -# Using table output + cut -$ docker exec influxdb2 influx auth list \ - --user $USERNAME \ - --hide-headers | cut -f 3 - -# Using JSON output + jq -$ docker exec influxdb2 influx auth list \ - --user $USERNAME \ - --json | jq -r '.[].token' +```bash +docker run -d -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME= \ + -e DOCKER_INFLUXDB_INIT_PASSWORD= \ + -e DOCKER_INFLUXDB_INIT_ORG= \ + -e DOCKER_INFLUXDB_INIT_BUCKET= \ + influxdb:2 ``` -Alternatively, you could configure your initial InfluxDB run to mount `/etc/influxdb2` as a volume: +Replace the following with your own values: -```console -$ docker run -d -p 8086:8086 \ - --name influxdb2 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - influxdb:2.0 -``` +- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- ``: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) +- ``: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) +- ``: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) +- ``: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) (database) -This will make the generated CLI configs available to the host. +*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* -#### Automated Setup +### Automated setup options -The InfluxDB image contains some extra functionality to automatically bootstrap the system. This functionality is enabled by setting the `DOCKER_INFLUXDB_INIT_MODE` environment variable to the value `setup` when running the container. Additional environment variables are used to configure the setup logic: +In setup mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or upgrade mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), you can specify the following Docker-specific environment variables to provide initial setup values: -- `DOCKER_INFLUXDB_INIT_USERNAME`: The username to set for the system's initial super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: The password to set for the system's inital super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_ORG`: The name to set for the system's initial organization (**Required**). -- `DOCKER_INFLUXDB_INIT_BUCKET`: The name to set for the system's initial bucket (**Required**). -- `DOCKER_INFLUXDB_INIT_RETENTION`: The duration the system's initial bucket should retain data. If not set, the initial bucket will retain data forever. -- `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: The authentication token to associate with the system's initial super-user. If not set, a token will be auto-generated by the system. +- `DOCKER_INFLUXDB_INIT_USERNAME`: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). +- `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). +- `DOCKER_INFLUXDB_INIT_ORG`: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/). +- `DOCKER_INFLUXDB_INIT_BUCKET`: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/). +- Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) to use as the initial bucket's [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data). +- Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A string value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: a generated token. -Automated setup will generate metadata files and CLI configurations. It's recommended to mount volumes at both paths to avoid losing data. +The following example shows how to pass values for all initial setup options: -For example, a minimal invocation of automated setup is: - -```console -$ docker run -d -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - influxdb:2.0 +```bash +docker run -d -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ + -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ + influxdb:2 ``` -And an example using all available options is: +*To upgrade from InfluxDB 1.x to InfluxDB 2.x, see the **Upgrading from InfluxDB 1.x** section below.\* -```console -$ docker run -d -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ - -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ - influxdb:2.0 -``` +With InfluxDB set up and running, see the [Get started](https://docs.influxdata.com/influxdb/v2/get-started/) tutorial to create tokens and write and query data. -**NOTE:** Automated setup will not run if an existing boltdb file is found at the configured path. This behavior allows for the InfluxDB container to reboot post-setup without encountering "DB is already set up" errors. +### Custom Initialization Scripts -### Interacting with InfluxDB +In `setup` mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or `upgrade` mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), the InfluxDB Docker Hub image supports running custom initialization scripts. After the setup process completes, scripts are executed in lexical sort order by name. -Once an InfluxDB instance has completed initial setup, its APIs will unlock. See the main documentation site for reference information and examples on: +For the container to run scripts, they must: -- [Writing data](https://docs.influxdata.com/influxdb/v2.0/write-data/) -- [Reading data](https://docs.influxdata.com/influxdb/v2.0/query-data/) -- [Configuring security](https://docs.influxdata.com/influxdb/v2.0/security/) -- [And more!](https://docs.influxdata.com/influxdb/v2.0/) +- Be mounted in the container's `/docker-entrypoint-initdb.d` directory +- Be named using the `.sh` file name extension +- Be executable by the user running the `docker run` command--for example, to allow the current use to execute a script with `docker run`: -### Custom Initialization Scripts + ```bash + chmod +x ./scripts/ + ``` -The InfluxDB image supports running arbitrary initialization scripts after initial system setup, on both the `setup` and `upgrade` paths. Scripts must have extension `.sh`, must have execute file permissions (`chmod +x `) and be mounted inside of the `/docker-entrypoint-initdb.d` directory. When multiple scripts are present, they will be executed in lexical sort order by name. +> #### Grant permissions to mounted files +> +> By default, Docker runs containers using the user and group IDs of the user executing the `docker run` command. When files are bind-mounted into the container, Docker preserves the user and group ownership from the host system. -As a convenience for script-writers, the image will export a number of variables into the environment before executing any scripts: +The image exports a number of variables into the environment before executing scripts. The following variables are available for you to use in your scripts: -- `INFLUX_CONFIGS_PATH`: Path to the CLI configs file written by `setup`/`upgrade` -- `INFLUX_HOST`: URL to the `influxd` instance running setup logic +- `INFLUX_CONFIGS_PATH`: Path to the `influx` CLI connection configurations file written by `setup`/`upgrade` +- `INFLUX_HOST`: URL to the `influxd` instance running `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_USER_ID`: ID of the initial admin user created by `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_ORG_ID`: ID of the initial organization created by `setup`/`upgrade` - `DOCKER_INFLUXDB_INIT_BUCKET_ID`: ID of the initial bucket created by `setup`/`upgrade` -For example, if you wanted to grant write-access to an InfluxDB 1.x client on your initial bucket, you'd first create the file `$PWD/scripts/setup-v1.sh` with contents: +For example, to grant an InfluxDB 1.x client *write* permission to your initial bucket, create a `$PWD/scripts/setup-v1.sh` file that contains the following: ```bash #!/bin/bash @@ -270,271 +214,372 @@ influx v1 auth create \ --org ${DOCKER_INFLUXDB_INIT_ORG} ``` -Then you'd run: +Then, run the following command to start and set up InfluxDB using custom scripts: -```console -$ docker run -p 8086:8086 \ - -v $PWD/data:/var/lib/influxdb2 \ - -v $PWD/config:/etc/influxdb2 \ - -v $PWD/scripts:/docker-entrypoint-initdb.d \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e V1_DB_NAME=v1-db \ - -e V1_RP_NAME=v1-rp \ - -e V1_AUTH_USERNAME=v1-user \ - -e V1_AUTH_PASSWORD=v1-password \ - influxdb:2.0 -``` - -**NOTE:** Custom scripts will not run if an existing boltdb file is found at the configured path (causing `setup` or `upgrade` to be skipped). This behavior allows for the InfluxDB container to reboot post-initialization without encountering errors from non-idempotent script commands. +```bash +docker run -p 8086:8086 \ + -v "$PWD/data:/var/lib/influxdb2" \ + -v "$PWD/config:/etc/influxdb2" \ + -v "$PWD/scripts:/docker-entrypoint-initdb.d" \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e V1_DB_NAME=v1-db \ + -e V1_RP_NAME=v1-rp \ + -e V1_AUTH_USERNAME=v1-user \ + -e V1_AUTH_PASSWORD=v1-password \ + influxdb:2 +``` + +> #### Automated setup and upgrade ignored if already setup +> +> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. +> +> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. + +## Access InfluxDB v2 file system and ports + +When starting an InfluxDB container, we recommend the following for easy access to your data, configurations, and InfluxDB v2 instance: + +- Publish the container's `8086` port to make the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) accessible from the host system. +- Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) outside of containers. + +### Default file system and networking ports + +For InfluxDB v2, the InfluxDB Docker Hub image uses the following default ports and file system paths: + +- TCP port `8086`: the default port for the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/). To specify a different port or address, use the [`http-bind-address` configuration option](https://docs.influxdata.com/influxdb/v2/reference/config-options/#http-bind-address). +- `/var/lib/influxdb2/`: the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) + + - `/engine/`: Default InfluxDB [Storage engine path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#engine-path) + - `influxd.bolt`: Default [Bolt path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#bolt-path) + - `influxd.sqlite`: Default [SQLite path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#sqlite-path) + +- `/etc/influxdb2`: the [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) + + - `/etc/influxdb2/configs`: `influx` CLI connection configurations file + - `/etc/influxdb2/influx-configs`: `influx` CLI connection configurations file, *if you run setup from within the container* + - Optional: `/etc/influxdb2/config.[yml, json, toml]`: Your customized InfluxDB [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/) file + +### Configure InfluxDB v2 in a container + +To customize InfluxDB, specify [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options) in a configuration file, environment variables, or command line flags. + +#### Use a configuration file + +To customize and mount an InfluxDB configuration file, do the following: + +1. If you haven't already, [set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) to initialize an API [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). You'll need the Operator token in the next step. + +2. Run the `influx server-config` CLI command to output the current server configuration to a file in the mounted configuration directory--for example, enter the following command to use the container's `influx` CLI and default Operator token: + + ```bash + docker exec -it influxdb2 influx server-config > "$PWD/config/config.yml" + ``` + +Replace `$PWD/config/` with the host directory that you mounted at the container's `/etc/influxdb2` InfluxDB configuration directory path. + +1. Edit the `config.yml` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). +2. Restart the container. + + ```bash + docker restart influxdb2 + ``` + +#### Use environment variables and command line flags + +To override specific [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options), use environment variables or command line flags. + +- Pass `INFLUXD_` environment variables to Docker to override the configuration file--for example: + + ```bash + docker run -p 8086:8086 \ + -e INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m \ + influxdb:2 + ``` + +- Pass `influxd` command line flags to override environment variables and the configuration file--for example: + + ```bash + docker run -p 8086:8086 \ + influxdb:2 --storage-wal-fsync-delay=15m + ``` + +To learn more, see [InfluxDB configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options). ### Upgrading from InfluxDB 1.x -InfluxDB 2.x provides a 1.x-compatible API, but expects a different storage layout on disk. To bridge this mismatch, the InfluxDB image contains extra functionality to migrate 1.x data and config into 2.x layouts automatically before booting the `influxd` server. +InfluxDB 2.x provides a [1.x-compatible API](https://docs.influxdata.com/influxdb/v2/reference/api/influxdb-1x/), but expects a different storage layout on disk. To account for these differences, the InfluxDB Docker Hub image provides an `upgrade` feature that migrates 1.x data and configuration to 2.x before starting the `influxd` server. -The automated upgrade process bootstraps an initial admin user, organization, and bucket in the system. Additional environment variables are used to configure the setup logic: +The automated upgrade process creates the following in the InfluxDB v2 container: -- `DOCKER_INFLUXDB_INIT_USERNAME`: The username to set for the system's initial super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: The password to set for the system's inital super-user (**Required**). -- `DOCKER_INFLUXDB_INIT_ORG`: The name to set for the system's initial organization (**Required**). -- `DOCKER_INFLUXDB_INIT_BUCKET`: The name to set for the system's initial bucket (**Required**). -- `DOCKER_INFLUXDB_INIT_RETENTION`: The duration the system's initial bucket should retain data. If not set, the initial bucket will retain data forever. -- `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: The authentication token to associate with the system's initial super-user. If not set, a token will be auto-generated by the system. +- an initial admin user +- an initial organization +- an initial bucket +- InfluxDB v2 data files (the default path is `/var/lib/influxdb2`) +- InfluxDB v2 configuration files (the default path is `/etc/influxdb2`) -It also requires extra volumes to be mounted into the 2.x container: +*Mount volumes at both paths to avoid losing data.* -- Data from the 1.x instance -- Custom config from the 1.x instance (if any) +To run the automated upgrade, specify the following when you start the container: -The upgrade process searches for mounted 1.x data / config in this priority order: +- InfluxDB v2 initialization environment variables: -1. A config file referred to by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable -2. A data directory referred to by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable -3. A config file mounted at `/etc/influxdb/influxdb.conf` -4. A data directory mounted at `/var/lib/influxdb` + - `DOCKER_INFLUXDB_INIT_MODE=upgrade` + - `DOCKER_INFLUXDB_INIT_USERNAME`: A name for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) + - `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) + - `DOCKER_INFLUXDB_INIT_ORG`: A name for the initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) + - `DOCKER_INFLUXDB_INIT_BUCKET`: A name for the initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) + - Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) for the bucket [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data) + - Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: generates a token. -Finally, the `DOCKER_INFLUXDB_INIT_MODE` environment variable must be set to `upgrade`. +- 1.x data and configuration paths: -Automated upgrade will generate both data and config files, by default under `/var/lib/influxdb2` and `/etc/influxdb2`. It's recommended to mount volumes at both paths to avoid losing data. + - A 1.x data volume, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable or mounted at `/var/lib/influxdb` + - Optional: a 1.x custom configuration file, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable or mounted at `/etc/influxdb/influxdb.conf` -**NOTE:** Automated upgrade will not run if an existing boltdb file is found at the configured path. This behavior allows for the InfluxDB container to reboot post-upgrade without overwriting migrated data. +The upgrade process searches for mounted 1.x data and configuration paths in the following order of precedence: -Find more about the InfluxDB upgrade process [here](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). See below for examples of common upgrade scenarios. +1. A configuration file referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable +2. A data directory referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable +3. A configuration file mounted at `/etc/influxdb/influxdb.conf` +4. A data directory mounted at `/var/lib/influxdb` + +> #### Automated setup and upgrade ignored if already setup +> +> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. +> +> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. -#### Upgrade Example - Minimal +#### Upgrade InfluxDB 1.x: default data path and configuration Assume you've been running a minimal InfluxDB 1.x deployment: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - influxdb:1.8 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + influxdb:1.8 ``` -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, then run: +To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - influxdb:2.0 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v influxdb2:/var/lib/influxdb2 \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + influxdb:2 ``` -#### Upgrade Example - Custom InfluxDB 1.x Config +#### Upgrade InfluxDB 1.x: custom configuration -Assume you've been running an InfluxDB 1.x deployment with customized config: +Assume you've been running an InfluxDB 1.x deployment with customized configuration (`/etc/influxdb/influxdb.conf`): -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf \ - influxdb:1.8 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ + influxdb:1.8 ``` -To upgrade this deployment to InfluxDB 2.x, stop the running container, then run: +To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - influxdb:2.0 +```bash +docker run -p 8086:8086 \ + -v influxdb:/var/lib/influxdb \ + -v influxdb2:/var/lib/influxdb2 \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + influxdb:2 ``` -#### Upgrade Example - Custom Paths +#### Upgrade InfluxDB 1.x: custom data and configuration paths -Assume you've been running an InfluxDB 1.x deployment with data and config mounted at custom paths: +Assume you've been running an InfluxDB 1.x deployment with data and configuration mounted at custom paths: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - influxdb:1.8 -config /root/influxdb/influxdb.conf +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + influxdb:1.8 -config /root/influxdb/influxdb.conf ``` -To upgrade this deployment to InfluxDB 2.x, first decide if you'd like to keep using custom paths, or use the InfluxDB 2.x defaults. If you decide to use the defaults, you'd stop the running InfluxDB 1.x container, then run: +Before you upgrade to InfluxDB v2, decide whether to keep using your custom paths or to use the InfluxDB v2 defaults. -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - influxdb:2.0 -``` - -To retain your custom paths, you'd run: +To use InfluxDB v2 defaults, stop the running InfluxDB 1.x container, and then run the following command: -```console -$ docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/root/influxdb2/data \ - -v influxdb2-config:/etc/influxdb2 \ - -v $PWD/influxdb.conf:/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ - -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ - -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ - influxdb:2.0 +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v influxdb2:/var/lib/influxdb2 \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ + influxdb:2 ``` +To use your custom paths instead of InfluxDB v2 default paths, run the following command: + +```bash +docker run -p 8086:8086 \ + -v influxdb:/root/influxdb/data \ + -v influxdb2:/root/influxdb2/data \ + -v influxdb2-config:/etc/influxdb2 \ + -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ + -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ + -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ + -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ + -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ + influxdb:2 +``` + +To learn more about the upgrade process, see the [v1-to-v2 upgrade guide](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). + ### Upgrading from quay.io-hosted InfluxDB 2.x image -Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb`. The builds were very bare-bones, containing the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data under `/root/.influxdbv2`. +Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb` and contained the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data in `/root/.influxdbv2`. -Starting with `v2.0.4`, we've restored our DockerHub build. This build defaults to storing data in `/var/lib/influxdb2`. Upgrading directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` without modifying any settings will appear to cause data loss, as the new process won't be able to find your existing data files. +Starting with `v2.0.4`, we restored the InfluxDB Docker Hub build, which defaults to storing data in `/var/lib/influxdb2`. If you upgrade directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` using the default settings, InfluxDB won't be able to find your existing data files. -To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, you can use one of the following approaches. +To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, choose one of the following: -#### Change volume mount point +#### Update the mount to use the InfluxDB default -If you don't mind using the new default path, you can switch the mount-point for the volume containing your data: +To use the InfluxDB Docker Hub data path, start a container that mounts your data volume into `/var/lib/influxdb2`--for example, if you used the following command to start the InfluxDB quay.io container: -```console -# Migrate from this: -$ docker run -p 8086:8086 \ - -v $PWD:/root/.influxdbv2 \ - quay.io/influxdb/influxdb:v2.0.3 +```bash +# quay.io InfluxDB 2.x container +docker run -p 8086:8086 \ + -v "$PWD:/root/.influxdbv2" \ + quay.io/influxdb/influxdb:v2.0.3 +``` + +Use this command to start an InfluxDB v2 Docker Hub container: -# To this: +```bash +# Docker Hub InfluxDB 2.x container docker run -p 8086:8086 \ - -v $PWD:/var/lib/influxdb2 \ - influxdb:2.0 + -v "$PWD:/var/lib/influxdb2" \ + influxdb:2 ``` -#### Override default configs +#### Configure InfluxDB to use the container home directory -If you'd rather keep your data files in the home directory, you can override the container's default config: +To continue using the `/root/.influxdbv2` data path, customize storage path configuration options ([bolt-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#bolt-path), [engine-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#engine-path), [sqlite-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#sqlite-path)) configuration options for your InfluxDB Docker Hub container--for example, if you used the following command to start the InfluxDB quay.io container: -```console -# Migrate from this: -$ docker run -p 8086:8086 \ - -v $PWD:/root/.influxdbv2 \ - quay.io/influxdb/influxdb:v2.0.3 +```bash +# quay.io-hosted InfluxDB 2.x +docker run -p 8086:8086 \ + -v "$PWD:/root/.influxdbv2" \ + quay.io/influxdb/influxdb:v2.0.3 +``` -# To this: +Use this command to start an InfluxDB v2 Docker Hub container: + +```bash docker run -p 8086:8086 \ - -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ - -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ - -v $PWD:/root/.influxdbv2 \ - influxdb:2.0 + -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ + -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ + -v "$PWD:/root/.influxdbv2" \ + influxdb:2 ``` -See the section about configuration below for more ways to override the data paths. +# How to use this image for InfluxDB v1 -## Using this Image - InfluxDB 1.x +Use the InfluxDB Docker Hub image to run and set up an [InfluxDB 1.x](https://docs.influxdata.com/influxdb/v1/) container. -### Running the container +## Running the container -The InfluxDB image exposes a shared volume under `/var/lib/influxdb`, so you can mount a host directory to that point to access persisted container data. A typical invocation of the container might be: +To start an InfluxDB 1.x container, enter the following command: -```console -$ docker run -p 8086:8086 \ - -v $PWD:/var/lib/influxdb \ - influxdb:1.8 +```bash +docker run -p 8086:8086 \ + -v "$PWD:/var/lib/influxdb" \ + influxdb:1.8 ``` -Modify `$PWD` to the directory where you want to store data associated with the InfluxDB container. +The command passes the following arguments: -You can also have Docker control the volume mountpoint by using a named volume. +- `-p 8086:8086`: Exposes the InfluxDB [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) on host port `8086`. +- `-v $PWD:/var/lib/influxdb`: Mounts the host's `$PWD` directory to the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/) to persist data outside the container. -```console -$ docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - influxdb:1.8 -``` +Replace `$PWD` with the host directory where you want InfluxDB to store data. -### Exposed Ports +*Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/).* -The following ports are important and are used by InfluxDB. +## Networking ports -- 8086 HTTP API port -- 2003 Graphite support, if it is enabled +InfluxDB uses the following networking ports: -The HTTP API port will be automatically exposed when using `docker run -P`. +- TCP port `8086`: the default port for the [HTTP API](https://docs.influxdata.com/influxdb/v1/tools/api/) +- TCP port `2003`: the port for the Graphite protocol (if enabled) -### Configuration +Using the `docker run` [`-P, --publish-all` flag](https://docs.docker.com/reference/cli/docker/container/run/#publish-all) exposes the InfluxDB HTTP API to the host. -InfluxDB can be either configured from a config file or using environment variables. To mount a configuration file and use it with the server, you can use this command: +## Configure InfluxDB v1 in a container -Generate the default configuration file: +To configure InfluxDB v1 in a container, use a configuration file or environment variables. -```console -$ docker run --rm influxdb:1.8 influxd config > influxdb.conf -``` +### Use a configuration file -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB container. +To customize and mount a configuration file, do the following: -```console -$ docker run -p 8086:8086 \ - -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro \ - influxdb:1.8 -config /etc/influxdb/influxdb.conf -``` +1. Output the current server configuration to a file in the mounted configuration directory--for example: -Modify `$PWD` to the directory where you want to store the configuration file. + ```bash + docker run --rm influxdb:1.8 influxd config > influxdb.conf + ``` -For environment variables, the format is `INFLUXDB_$SECTION_$NAME`. All dashes (`-`) are replaced with underscores (`_`). If the variable isn't in a section, then omit that part. +2. Edit the `influxdb.conf` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). -Examples: + ```bash + docker run -p 8086:8086 \ + -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro" \ + influxdb:1.8 -config /etc/influxdb/influxdb.conf + ``` -```console -INFLUXDB_REPORTING_DISABLED=true -INFLUXDB_META_DIR=/path/to/metadir -INFLUXDB_DATA_QUERY_LOG_ENABLED=false + Replace `$PWD` with the host directory where you want to store the configuration file. + +### Use environment variables + +Pass [`INFLUXDB_` environment variables](https://docs.influxdata.com/influxdb/v1/administration/config/#environment-variables) to override specific InfluxDB v1 configuration options. An environment variable overrides the equivalent option in the configuration file. + +```bash +docker run -p 8086:8086 \ + -e INFLUXDB_REPORTING_DISABLED=true \ + -e INFLUXDB_META_DIR=/path/to/metadir \ + -e INFLUXDB_DATA_QUERY_LOG_ENABLED=false \ + influxdb:1.8 ``` -Find more about configuring InfluxDB [here](https://docs.influxdata.com/influxdb/v1.8/administration/config/). +Learn more about [configuring InfluxDB v1](https://docs.influxdata.com/influxdb/v1.8/administration/config/). -### Graphite +## Graphite InfluxDB supports the Graphite line protocol, but the service and ports are not exposed by default. To run InfluxDB with Graphite support enabled, you can either use a configuration file or set the appropriate environment variables. Run InfluxDB with the default Graphite configuration: -```console +```bash docker run -p 8086:8086 -p 2003:2003 \ -e INFLUXDB_GRAPHITE_ENABLED=true \ influxdb:1.8 @@ -542,110 +587,122 @@ docker run -p 8086:8086 -p 2003:2003 \ See the [README on GitHub](https://github.com/influxdata/influxdb/blob/master/services/graphite/README.md) for more detailed documentation to set up the Graphite service. In order to take advantage of graphite templates, you should use a configuration file by outputting a default configuration file using the steps above and modifying the `[[graphite]]` section. -### HTTP API +## InfluxDB v1 HTTP API Creating a DB named mydb: -```console -$ curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" +```bash +curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" ``` Inserting into the DB: -```console -$ curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' +```bash +curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' ``` -Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/) +Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/). -### CLI / SHELL +## CLI / SHELL Start the container: -```console -$ docker run --name=influxdb -d -p 8086:8086 influxdb:1.8 +```bash +docker run --name=influxdb -d -p 8086:8086 influxdb:1.8 ``` Run the influx client in this container: -```console -$ docker exec -it influxdb influx +```bash +docker exec -it influxdb influx ``` Or run the influx client in a separate container: -```console -$ docker run --rm --link=influxdb -it influxdb:1.8 influx -host influxdb +```bash +docker run --rm --link=influxdb -it influxdb:1.8 influx -host influxdb ``` -### Database Initialization +## InfluxDB v1 database initialization + +### Not recommended for production -The InfluxDB image contains some extra functionality for initializing a database. These options are not suggested for production, but are quite useful when running standalone instances for testing. +We **don't** recommend using initialization options for InfluxDB v1 production scenarios, but they're useful when running standalone instances for testing. -The database initialization script will only be called when running `influxd`. It will not be executed when running any other program. +The InfluxDB Docker Hub image lets you set initialization options when creating an InfluxDB v1 container. -#### Environment Variables +The database initialization script is only called when running `influxd`; it isn't executed by any other program. -The InfluxDB image uses several environment variables to automatically configure certain parts of the server. They may significantly aid you in using this image. +### Environment variables -##### INFLUXDB_DB +During the InfluxDB v1 set up process, the InfluxDB image uses environment variables to automatically configure some server options. You can override the following environment variables to customize set up options. + +#### INFLUXDB_DB Automatically initializes a database with the name of this environment variable. -##### INFLUXDB_HTTP_AUTH_ENABLED +#### INFLUXDB_HTTP_AUTH_ENABLED -Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication related options below to work. +Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication-related options below to work. -##### INFLUXDB_ADMIN_USER +#### INFLUXDB_ADMIN_USER The name of the admin user to be created. If this is unset, no admin user is created. -##### INFLUXDB_ADMIN_PASSWORD +#### INFLUXDB_ADMIN_PASSWORD The password for the admin user configured with `INFLUXDB_ADMIN_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_USER +#### INFLUXDB_USER The name of a user to be created with no privileges. If `INFLUXDB_DB` is set, this user will be granted read and write permissions for that database. -##### INFLUXDB_USER_PASSWORD +#### INFLUXDB_USER_PASSWORD The password for the user configured with `INFLUXDB_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_READ_USER +#### INFLUXDB_READ_USER The name of a user to be created with read privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. -##### INFLUXDB_READ_USER_PASSWORD +#### INFLUXDB_READ_USER_PASSWORD The password for the user configured with `INFLUXDB_READ_USER`. If this is unset, a random password is generated and printed to standard out. -##### INFLUXDB_WRITE_USER +#### INFLUXDB_WRITE_USER The name of a user to be created with write privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. -##### INFLUXDB_WRITE_USER_PASSWORD +#### INFLUXDB_WRITE_USER_PASSWORD The password for the user configured with `INFLUXDB_WRITE_USER`. If this is unset, a random password is generated and printed to standard out. -#### Initialization Files +### Initialization Files If the Docker image finds any files with the extensions `.sh` or `.iql` inside of the `/docker-entrypoint-initdb.d` folder, it will execute them. The order they are executed in is determined by the shell. This is usually alphabetical order. -#### Manually Initializing the Database +### Manually Initialize InfluxDB v1 -To manually initialize the database and exit, the `/init-influxdb.sh` script can be used directly. It takes the same parameters as the `influxd run` command. As an example: +To manually initialize an InfluxDB v1 database, use `docker run` to call the `/init-influxdb.sh` script directly. The script takes the same initialization options as the `influxd run` command--for example: -```console -$ docker run --rm \ - -e INFLUXDB_DB=db0 \ - -e INFLUXDB_ADMIN_USER=admin -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ - -e INFLUXDB_USER=telegraf -e INFLUXDB_USER_PASSWORD=secretpassword \ - -v $PWD:/var/lib/influxdb \ - influxdb:1.8 /init-influxdb.sh +```bash +docker run --rm \ + -e INFLUXDB_DB=db0 \ + -e INFLUXDB_ADMIN_USER=admin \ + -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ + -e INFLUXDB_USER=telegraf -e \ + -e INFLUXDB_USER_PASSWORD=secretpassword \ + -v "$PWD:/var/lib/influxdb" \ + influxdb:1.8 /init-influxdb.sh ``` -The above would create the database `db0`, create an admin user with the password `supersecretpassword`, then create the `telegraf` user with your telegraf's secret password. It would then exit and leave behind any files it created in the volume that you mounted. +The command creates the following: + +- a database named `db0` +- an admin user `admin` with the password `supersecretpassword` +- a `telegraf` user with the password `secretpassword` + +The `--rm` flag causes Docker to exit and delete the container after the script runs. The data and configuration files created during initialization remain in the mounted volume (the host's `$PWD` directory). # Image Variants @@ -665,7 +722,7 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `influxdb:data` -*This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. +*Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. @@ -684,7 +741,7 @@ This image contains the enterprise meta node package for clustering. It is meant The license key can be specified using either an environment variable or by overriding the configuration file. If you specify the license key directly, the container needs to be able to access the InfluxData portal. ```console -$ docker run -p 8089:8089 -p 8091:8091 \ +docker run -p 8089:8089 -p 8091:8091 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= influxdb:meta ``` @@ -696,21 +753,21 @@ The examples below will use docker's built-in networking capability. If you use First, create a docker network: ```console -$ docker network create influxdb +docker network create influxdb ``` Start three meta nodes. This is the suggested number of meta nodes. We do not recommend running more or less. If you choose to run more or less, be sure that the number of meta nodes is odd. The hostname must be set on each container to the address that will be used to access the meta node. When using docker networks, the hostname should be made the same as the name of the container. ```console -$ docker run -d --name=influxdb-meta-0 --network=influxdb \ +docker run -d --name=influxdb-meta-0 --network=influxdb \ -h influxdb-meta-0 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ influxdb:meta -$ docker run -d --name=influxdb-meta-1 --network=influxdb \ +docker run -d --name=influxdb-meta-1 --network=influxdb \ -h influxdb-meta-1 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ influxdb:meta -$ docker run -d --name=influxdb-meta-2 --network=influxdb \ +docker run -d --name=influxdb-meta-2 --network=influxdb \ -h influxdb-meta-2 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ influxdb:meta @@ -721,16 +778,16 @@ When setting the hostname, you can use `-h ` or you can directly set t After starting the meta nodes, you need to tell them about each other. Choose one of the meta nodes and run `influxd-ctl` in the container. ```console -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-meta influxdb-meta-1:8091 -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-meta influxdb-meta-2:8091 ``` Or you can just start a single meta node. If you setup a single meta node, you do not need to use `influxd-ctl add-meta`. ```console -$ docker run -d --name=influxdb-meta --network=influxdb \ +docker run -d --name=influxdb-meta --network=influxdb \ -h influxdb-meta \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ influxdb:meta -single-server @@ -741,7 +798,7 @@ $ docker run -d --name=influxdb-meta --network=influxdb \ Start the data nodes using `influxdb:data` with similar command line arguments to the meta nodes. You can start as many data nodes as are allowed by your license. ```console -$ docker run -d --name=influxdb-data-0 --network=influxdb \ +docker run -d --name=influxdb-data-0 --network=influxdb \ -h influxdb-data-0 \ -e INFLUXDB_LICENSE_KEY= \ influxdb:data @@ -750,7 +807,7 @@ $ docker run -d --name=influxdb-data-0 --network=influxdb \ You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. ```console -$ docker exec influxdb-meta-0 \ +docker exec influxdb-meta-0 \ influxd-ctl add-data influxdb-data-0:8088 ``` @@ -767,13 +824,13 @@ InfluxDB Meta can be either configured from a config file or using environment v Generate the default configuration file: ```console -$ docker run --rm influxdb:meta influxd-meta config > influxdb-meta.conf +docker run --rm influxdb:meta influxd-meta config > influxdb-meta.conf ``` Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB Meta container. ```console -$ docker run \ +docker run \ -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ influxdb -config /etc/influxdb/influxdb-meta.conf ``` @@ -790,7 +847,7 @@ INFLUXDB_META_DIR=/path/to/metadir INFLUXDB_ENTERPRISE_REGISTRATION_ENABLED=true ``` -Find more about configuring InfluxDB Meta [here](http://docs.influxdata.com/enterprise_influxdb/latest/production_installation/meta_node_installation/). +For more information, see how to [Install InfluxDB Enterprise meta nodes](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/). # License From db4492a0bfa9248f3bdcc887b3b8304a87de89a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 11:19:10 -0700 Subject: [PATCH 1036/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 155b297a9fc7..bf0c4899bd8e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.5`, `ee-7.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/e9ca76cf601859bf97b9612c7fe709fd5e53ca70/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.5`, `ce-7.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/e9ca76cf601859bf97b9612c7fe709fd5e53ca70/community/debian12/Dockerfile) +- [`ee-7.0.0.6`, `ee-7.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/f2e42d0303e91adef6bb9cc7edfec12981dacfdd/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.6`, `ce-7.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/f2e42d0303e91adef6bb9cc7edfec12981dacfdd/community/debian12/Dockerfile) # Quick reference (cont.) From 6b81f4fa15d53128ea0e6c8fd3f927c9aa07b4c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 12:09:53 -0700 Subject: [PATCH 1037/2686] Run update.sh --- bash/README.md | 2 +- geonetwork/README.md | 4 ++-- ibmjava/README.md | 6 +++--- joomla/README.md | 12 ++++++------ varnish/README.md | 10 +++++----- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/bash/README.md b/bash/README.md index e4847980b9b5..152b31b60b84 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240304`, `devel`, `devel-20240304-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/c2cc41f2df58cf265ab7dd1a20b28729e8c4d4f9/devel/Dockerfile) +- [`devel-20240318`, `devel`, `devel-20240318-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/121b00b52e5655af7a1539341091659d24f7ce1d/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index 49ac14645be7..4e269b3dcfd1 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) -- [`4.2.8`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/d3fd9533a91573f7678586f189218cd0e37c6a42/4.2.8/Dockerfile) -- [`4.4.2`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/bef3f1c871c962fbb3bbfac834e0e0d72772162b/4.4.2/Dockerfile) +- [`4.2.9`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/9d0986dbc5a86e183599575e098f95f2f58e46cd/4.2.9/Dockerfile) +- [`4.4.3`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/692f3d2851d6fc7e2482291774b19a856eae43f8/4.4.3/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 95d55221d5ab..ef11d218cba2 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/39cc055d6a9ec854d8f737a17396ee26ce4a76fe/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 060216ed42d8..429cc89e99a0 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-beta1-php8.1-apache`, `5.1-php8.1-apache`, `5.1.beta-php8.1-apache`, `5.1.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/apache/Dockerfile) -- [`5.1.0-beta1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.beta-php8.1-fpm-alpine`, `5.1.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.1.0-beta1-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.beta-php8.1-fpm`, `5.1.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.1/fpm/Dockerfile) -- [`5.1.0-beta1`, `5.1`, `5.1.beta`, `5.1.0-beta`, `5.1.0-beta1-apache`, `5.1-apache`, `5.1.beta-apache`, `5.1.0-beta-apache`, `5.1.0-beta1-php8.2`, `5.1-php8.2`, `5.1.beta-php8.2`, `5.1.0-beta-php8.2`, `5.1.0-beta1-php8.2-apache`, `5.1-php8.2-apache`, `5.1.beta-php8.2-apache`, `5.1.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/apache/Dockerfile) -- [`5.1.0-beta1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.beta-php8.2-fpm-alpine`, `5.1.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.1.0-beta1-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.beta-php8.2-fpm`, `5.1.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/138e91ac6ba8d84b03b2089e3e5e3d974e5de812/5.1.beta/php8.2/fpm/Dockerfile) +- [`5.1.0-beta2-php8.1-apache`, `5.1-php8.1-apache`, `5.1.beta-php8.1-apache`, `5.1.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/apache/Dockerfile) +- [`5.1.0-beta2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.beta-php8.1-fpm-alpine`, `5.1.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.1.0-beta2-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.beta-php8.1-fpm`, `5.1.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/fpm/Dockerfile) +- [`5.1.0-beta2`, `5.1`, `5.1.beta`, `5.1.0-beta`, `5.1.0-beta2-apache`, `5.1-apache`, `5.1.beta-apache`, `5.1.0-beta-apache`, `5.1.0-beta2-php8.2`, `5.1-php8.2`, `5.1.beta-php8.2`, `5.1.0-beta-php8.2`, `5.1.0-beta2-php8.2-apache`, `5.1-php8.2-apache`, `5.1.beta-php8.2-apache`, `5.1.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/apache/Dockerfile) +- [`5.1.0-beta2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.beta-php8.2-fpm-alpine`, `5.1.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.1.0-beta2-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.beta-php8.2-fpm`, `5.1.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/fpm/Dockerfile) - [`5.0.3-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/apache/Dockerfile) - [`5.0.3-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm-alpine/Dockerfile) - [`5.0.3-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index 7e0052c91517..a453fe654f79 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.4.2`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/fresh/alpine/Dockerfile) -- [`old`, `7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) -- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/old/alpine/Dockerfile) -- [`stable`, `6.0.12`, `6.0`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) +- [`fresh`, `7.4.2`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/alpine/Dockerfile) +- [`old`, `7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/debian/Dockerfile) +- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/alpine/Dockerfile) +- [`stable`, `6.0.12`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) # Quick reference (cont.) From d44cf9ab0be0e5e67c8395c0544afcb335b339db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 14:20:22 -0700 Subject: [PATCH 1038/2686] Run update.sh --- varnish/README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index a453fe654f79..83e439d24546 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.4.2`, `7.4`, `latest`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.4.2-alpine`, `7.4-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/alpine/Dockerfile) -- [`old`, `7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/debian/Dockerfile) -- [`old-alpine`, `7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/alpine/Dockerfile) -- [`stable`, `6.0.12`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) +- [`fresh`, `7.5.0`, `7.5`, `latest`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/debian/Dockerfile) +- [`fresh-alpine`, `7.5.0-alpine`, `7.5-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/alpine/Dockerfile) +- [`old`, `7.4.3`, `7.4`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/debian/Dockerfile) +- [`old-alpine`, `7.4.3-alpine`, `7.4-alpine`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/alpine/Dockerfile) +- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) +- [`7.4.2`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) +- [`7.4.2-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/fresh/alpine/Dockerfile) +- [`7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) +- [`7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/old/alpine/Dockerfile) +- [`6.0.12`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) # Quick reference (cont.) From 41dbe6c6e100bb271b01c9533ff682d6d2de9e9b Mon Sep 17 00:00:00 2001 From: Guillaume Quintard Date: Tue, 19 Mar 2024 15:02:58 -0700 Subject: [PATCH 1039/2686] varnish: introduce new env variables --- varnish/content.md | 48 ++++++++++++++++++---------------------------- 1 file changed, 19 insertions(+), 29 deletions(-) diff --git a/varnish/content.md b/varnish/content.md index b76c7937e2f0..064acd3e36af 100644 --- a/varnish/content.md +++ b/varnish/content.md @@ -10,34 +10,26 @@ Varnish is an HTTP accelerator designed for content-heavy dynamic web sites as w ## Basic usage -Create a `default.vcl` file: - -```vcl -# specify the VCL syntax version to use -vcl 4.1; - -# import vmod_dynamic for better backend name resolution -import dynamic; - -# we won't use any static backend, but Varnish still need a default one -backend default none; - -# set up a dynamic director -# for more info, see https://github.com/nigoroll/libvmod-dynamic/blob/master/src/vmod_dynamic.vcc -sub vcl_init { - new d = dynamic.director(port = "80"); -} - -sub vcl_recv { - # force the host header to match the backend (not all backends need it, - # but example.com does) - set req.http.host = "example.com"; - # set the backend - set req.backend_hint = d.backend("example.com"); -} +### Using `VARNISH_BACKEND_HOST` and `VARNISH_BACKEND_PORT` + +You just need to know where your backend (the server that Varnish will accelerate) is: + +```console +# we define VARNISH_BACKEND_HOST/VARNISH_BACKEND_PORT +# our workdir has to be mounted as tmpfs to avoid disk I/O, +# and we'll use port 8080 to talk to our container (internally listening on 80) +$ docker run \ + -e VARNISH_BACKEND_HOST=example.com -e VARNISH_BACKEND_PORT=80 \ + --tmpfs /var/lib/varnish/varnishd:exec \ + -p 8080:80 \ + %%IMAGE%% ``` -Then run: +From there, you can visit `localhost:8080` in your browser and see the example.com homepage. + +### Using a VCL file + +If you already have a VCL file, you can directly mount it as `/etc/varnish/default.vcl`: ```console # we need the configuration file at /etc/varnish/default.vcl, @@ -50,9 +42,7 @@ $ docker run \ %%IMAGE%% ``` -From there, you can visit `localhost:8080` in your browser and see the example.com homepage. - -Alternatively, a simple `Dockerfile` can be used to generate a new image that includes the necessary `default.vcl` (which is a much cleaner solution than the bind mount above): +Alternatively, a simple `Dockerfile` can be used to generate a new image that includes the necessary `default.vcl`: ```dockerfile FROM %%IMAGE%% From ad299b2da582364dac11ba40cd938675abd55fa1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 15:17:44 -0700 Subject: [PATCH 1040/2686] Run update.sh --- julia/README.md | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/julia/README.md b/julia/README.md index 7c5385e4b8fd..faaf392605c3 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,10 @@ WARNING: ## Simple Tags -- [`1.11.0-alpha1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-alpha1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-alpha1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`, `1.11.0-alpha1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/alpine3.19/Dockerfile) -- [`1.11.0-alpha1-alpine3.18`, `1.11-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/alpine3.18/Dockerfile) -- [`1.11.0-alpha1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-alpha1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-alpha2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-alpha2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-alpha2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-alpha2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.2-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) - [`1.10.2-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bullseye/Dockerfile) - [`1.10.2-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.2-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.19/Dockerfile) @@ -49,13 +47,13 @@ WARNING: ## Shared Tags -- `1.11.0-alpha1`, `1.11-rc`, `rc`: - - [`1.11.0-alpha1-bookworm`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-alpha1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-alpha1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-alpha1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/433c7947c2af4ccd9788e9cae7230429d63d8669/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-alpha2`, `1.11-rc`, `rc`: + - [`1.11.0-alpha2-bookworm`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-alpha2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-alpha2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-alpha2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-alpha2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-alpha2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.2`, `1.10`, `1`, `latest`: - [`1.10.2-bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -130,14 +128,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -147,6 +137,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. From 1fb38e266286c3ed5732c59b4a5e59203439b6ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 17:19:04 -0700 Subject: [PATCH 1041/2686] Run update.sh --- nginx/README.md | 2 ++ varnish/README.md | 48 +++++++++++++++++++---------------------------- 2 files changed, 21 insertions(+), 29 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 14613fd16fe2..d67d4954ecce 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -26,9 +26,11 @@ WARNING: - [`1.25.4`, `mainline`, `1`, `1.25`, `latest`, `1.25.4-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian/Dockerfile) - [`1.25.4-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.4-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian-perl/Dockerfile) +- [`1.25.4-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.4-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/9cb278860bdcea48abc0bc770a29ead3fc9a1fe6/mainline/debian-otel/Dockerfile) - [`1.25.4-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.4-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine/Dockerfile) - [`1.25.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.4-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-perl/Dockerfile) - [`1.25.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.4-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-slim/Dockerfile) +- [`1.25.4-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.4-alpine3.18-otel`, `mainline-alpine3.18-otel`, `1-alpine3.18-otel`, `1.25-alpine3.18-otel`, `alpine3.18-otel`](https://github.com/nginxinc/docker-nginx/blob/9cb278860bdcea48abc0bc770a29ead3fc9a1fe6/mainline/alpine-otel/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index 83e439d24546..261c81f74ee1 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -66,34 +66,26 @@ Varnish is an HTTP accelerator designed for content-heavy dynamic web sites as w ## Basic usage -Create a `default.vcl` file: - -```vcl -# specify the VCL syntax version to use -vcl 4.1; - -# import vmod_dynamic for better backend name resolution -import dynamic; - -# we won't use any static backend, but Varnish still need a default one -backend default none; - -# set up a dynamic director -# for more info, see https://github.com/nigoroll/libvmod-dynamic/blob/master/src/vmod_dynamic.vcc -sub vcl_init { - new d = dynamic.director(port = "80"); -} - -sub vcl_recv { - # force the host header to match the backend (not all backends need it, - # but example.com does) - set req.http.host = "example.com"; - # set the backend - set req.backend_hint = d.backend("example.com"); -} +### Using `VARNISH_BACKEND_HOST` and `VARNISH_BACKEND_PORT` + +You just need to know where your backend (the server that Varnish will accelerate) is: + +```console +# we define VARNISH_BACKEND_HOST/VARNISH_BACKEND_PORT +# our workdir has to be mounted as tmpfs to avoid disk I/O, +# and we'll use port 8080 to talk to our container (internally listening on 80) +$ docker run \ + -e VARNISH_BACKEND_HOST=example.com -e VARNISH_BACKEND_PORT=80 \ + --tmpfs /var/lib/varnish/varnishd:exec \ + -p 8080:80 \ + varnish ``` -Then run: +From there, you can visit `localhost:8080` in your browser and see the example.com homepage. + +### Using a VCL file + +If you already have a VCL file, you can directly mount it as `/etc/varnish/default.vcl`: ```console # we need the configuration file at /etc/varnish/default.vcl, @@ -106,9 +98,7 @@ $ docker run \ varnish ``` -From there, you can visit `localhost:8080` in your browser and see the example.com homepage. - -Alternatively, a simple `Dockerfile` can be used to generate a new image that includes the necessary `default.vcl` (which is a much cleaner solution than the bind mount above): +Alternatively, a simple `Dockerfile` can be used to generate a new image that includes the necessary `default.vcl`: ```dockerfile FROM varnish From 0fb19ccae97655e2c2d9b2dadc955af8f50d2dde Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Mar 2024 18:18:46 -0700 Subject: [PATCH 1042/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- ghost/README.md | 4 ++-- wordpress/README.md | 18 +++++++++--------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docker/README.md b/docker/README.md index 2fc3b9bb88e1..0308424c35b5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -33,11 +33,11 @@ WARNING: - [`26.0.0-rc2-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind-rootless/Dockerfile) - [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) -- [`25.0.4-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.4-cli-alpine3.19`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/cli/Dockerfile) -- [`25.0.4-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.4-dind-alpine3.19`, `25.0.4-git`, `25.0-git`, `25-git`, `git`, `25.0.4`, `25.0`, `25`, `latest`, `25.0.4-alpine3.19`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind/Dockerfile) -- [`25.0.4-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b20c5f3ee47bf40bd13c97ca973a9107658457e1/25/dind-rootless/Dockerfile) -- [`25.0.4-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.4-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/cli/Dockerfile) +- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `git`, `25.0.5`, `25.0`, `25`, `latest`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) +- [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) - [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) @@ -49,9 +49,9 @@ WARNING: - `26.0.0-rc2-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) -- `25.0.4-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - - [`25.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8712adb908210196bb9c993a12833caec0ca2f8e/25/windows/windowsservercore-1809/Dockerfile) +- `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-1809/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5240eae91c8f..bb14a9af97c4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.4`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a5c3cd372d7e34d5ea79bd0e544b0cdb800fca26/5/debian/Dockerfile) -- [`5.80.4-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a5c3cd372d7e34d5ea79bd0e544b0cdb800fca26/5/alpine/Dockerfile) +- [`5.80.4`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ac3466c054515c5e90afe336732e357c425b640e/5/debian/Dockerfile) +- [`5.80.4-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ac3466c054515c5e90afe336732e357c425b640e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index aee755298b11..a425c0409516 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-RC2-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC2-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-RC2-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-RC2-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-RC2-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC2`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC2-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC2-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-RC2-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC2-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-RC2-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC2-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-RC2-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC2-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-RC2-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-RC2-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/40969d1b24805bfdae77e83f547c9d057f985759/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-RC3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-RC3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-RC3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-RC3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-RC3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-RC3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-RC3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-RC3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-RC3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 1e8a81edcfa7e1aec11c52351cebeb2286496926 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Mar 2024 13:10:10 -0700 Subject: [PATCH 1043/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- python/README.md | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0308424c35b5..757a3fbb1e94 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.0.0-rc2-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/cli/Dockerfile) -- [`26.0.0-rc2-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc2-dind-alpine3.19`, `26.0.0-rc2`, `26-rc`, `rc`, `26.0.0-rc2-alpine3.19`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind/Dockerfile) -- [`26.0.0-rc2-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/c15759ea0c0a9b6191e93d3e8b035757e90cf195/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc2-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc2-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) +- [`26.0.0-rc3-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/cli/Dockerfile) +- [`26.0.0-rc3-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc3-dind-alpine3.19`, `26.0.0-rc3`, `26-rc`, `rc`, `26.0.0-rc3-alpine3.19`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/dind/Dockerfile) +- [`26.0.0-rc3-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/dind-rootless/Dockerfile) +- [`26.0.0-rc3-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-rc3-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `git`, `25.0.5`, `25.0`, `25`, `latest`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.0.0-rc2-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e624c032dc98cac5108d5c655bf54728b30924b4/26-rc/windows/windowsservercore-1809/Dockerfile) +- `26.0.0-rc3-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: + - [`26.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) diff --git a/python/README.md b/python/README.md index 05a0b9579e4d..e8965ef0820d 100644 --- a/python/README.md +++ b/python/README.md @@ -52,24 +52,24 @@ WARNING: - [`3.11.8-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/alpine3.18/Dockerfile) - [`3.11.8-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.8-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.13-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bookworm/Dockerfile) -- [`3.10.13-slim-bookworm`, `3.10-slim-bookworm`, `3.10.13-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/slim-bookworm/Dockerfile) -- [`3.10.13-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bullseye/Dockerfile) -- [`3.10.13-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/slim-bullseye/Dockerfile) -- [`3.10.13-alpine3.19`, `3.10-alpine3.19`, `3.10.13-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/alpine3.19/Dockerfile) -- [`3.10.13-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/alpine3.18/Dockerfile) -- [`3.9.18-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bookworm/Dockerfile) -- [`3.9.18-slim-bookworm`, `3.9-slim-bookworm`, `3.9.18-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/slim-bookworm/Dockerfile) -- [`3.9.18-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bullseye/Dockerfile) -- [`3.9.18-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/slim-bullseye/Dockerfile) -- [`3.9.18-alpine3.19`, `3.9-alpine3.19`, `3.9.18-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/alpine3.19/Dockerfile) -- [`3.9.18-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/alpine3.18/Dockerfile) -- [`3.8.18-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bookworm/Dockerfile) -- [`3.8.18-slim-bookworm`, `3.8-slim-bookworm`, `3.8.18-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/slim-bookworm/Dockerfile) -- [`3.8.18-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bullseye/Dockerfile) -- [`3.8.18-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/slim-bullseye/Dockerfile) -- [`3.8.18-alpine3.19`, `3.8-alpine3.19`, `3.8.18-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/alpine3.19/Dockerfile) -- [`3.8.18-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/alpine3.18/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/alpine3.18/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/alpine3.19/Dockerfile) +- [`3.9.19-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/alpine3.18/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/alpine3.19/Dockerfile) +- [`3.8.19-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/alpine3.18/Dockerfile) ## Shared Tags @@ -94,12 +94,12 @@ WARNING: - `3.11.8-windowsservercore`, `3.11-windowsservercore`: - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10.13`, `3.10`: - - [`3.10.13-bookworm`](https://github.com/docker-library/python/blob/1576b93b13ae6fe75c30ce75583da0c3541f0cb2/3.10/bookworm/Dockerfile) -- `3.9.18`, `3.9`: - - [`3.9.18-bookworm`](https://github.com/docker-library/python/blob/6017989fb795ee20b0b74c3d8c94f863c0af42ff/3.9/bookworm/Dockerfile) -- `3.8.18`, `3.8`: - - [`3.8.18-bookworm`](https://github.com/docker-library/python/blob/79852dab06cd54919501508a00a7344148085afa/3.8/bookworm/Dockerfile) +- `3.10.14`, `3.10`: + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bookworm/Dockerfile) +- `3.9.19`, `3.9`: + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bookworm/Dockerfile) +- `3.8.19`, `3.8`: + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bookworm/Dockerfile) # Quick reference (cont.) From c40de53e71d4c8d86cad75ddc4ee844d32aadccb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Mar 2024 15:18:33 -0700 Subject: [PATCH 1044/2686] Run update.sh --- memcached/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index e283ee4819dd..d5647312c682 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.24`, `1.6`, `1`, `latest`, `1.6.24-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/c28a68e5a4add95385737ef33b6fc54d446be9f7/1/debian/Dockerfile) -- [`1.6.24-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.24-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/c28a68e5a4add95385737ef33b6fc54d446be9f7/1/alpine/Dockerfile) +- [`1.6.25`, `1.6`, `1`, `latest`, `1.6.25-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/0215dbaa543d98b7e54eee9162906d31fcb8677e/1/debian/Dockerfile) +- [`1.6.25-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.25-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/0215dbaa543d98b7e54eee9162906d31fcb8677e/1/alpine/Dockerfile) # Quick reference (cont.) From bc8ea21375d8071e003f09893d6e22864ef0f3a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Mar 2024 17:21:07 -0700 Subject: [PATCH 1045/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- flink/README.md | 13 ++++++------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/docker/README.md b/docker/README.md index 757a3fbb1e94..2d3b7f5130f8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,16 +28,16 @@ WARNING: ## Simple Tags -- [`26.0.0-rc3-cli`, `26-rc-cli`, `rc-cli`, `26.0.0-rc3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/cli/Dockerfile) -- [`26.0.0-rc3-dind`, `26-rc-dind`, `rc-dind`, `26.0.0-rc3-dind-alpine3.19`, `26.0.0-rc3`, `26-rc`, `rc`, `26.0.0-rc3-alpine3.19`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/dind/Dockerfile) -- [`26.0.0-rc3-dind-rootless`, `26-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/dind-rootless/Dockerfile) -- [`26.0.0-rc3-windowsservercore-ltsc2022`, `26-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-rc3-windowsservercore-1809`, `26-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/cli/Dockerfile) -- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `git`, `25.0.5`, `25.0`, `25`, `latest`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) -- [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) +- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/cli/Dockerfile) +- [`26.0.0-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.0-dind-alpine3.19`, `26.0.0`, `26.0`, `26`, `latest`, `26.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind/Dockerfile) +- [`26.0.0-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind-rootless/Dockerfile) +- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/cli/Dockerfile) +- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) +- [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) - [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) @@ -46,10 +46,10 @@ WARNING: ## Shared Tags -- `26.0.0-rc3-windowsservercore`, `26-rc-windowsservercore`, `rc-windowsservercore`: - - [`26.0.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-rc3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1ca3ec178ea45b3b8d74a007e76a743157b00bbf/26-rc/windows/windowsservercore-1809/Dockerfile) -- `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`, `windowsservercore`: +- `26.0.0-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-1809/Dockerfile) +- `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: diff --git a/flink/README.md b/flink/README.md index 4b004ab5a160..50100890c3dd 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,15 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`, `java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`, `java17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `scala_2.12`, `1.18.1-java11`, `1.18-java11`, `java11`, `1.18.1`, `1.18`, `latest`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.19.0-scala_2.12-java8`, `1.19-scala_2.12-java8`, `scala_2.12-java8`, `1.19.0-java8`, `1.19-java8`, `java8`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.19.0-scala_2.12-java17`, `1.19-scala_2.12-java17`, `scala_2.12-java17`, `1.19.0-java17`, `1.19-java17`, `java17`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.19.0-scala_2.12-java11`, `1.19-scala_2.12-java11`, `scala_2.12-java11`, `1.19.0-scala_2.12`, `1.19-scala_2.12`, `scala_2.12`, `1.19.0-java11`, `1.19-java11`, `java11`, `1.19.0`, `1.19`, `latest`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java11-ubuntu/Dockerfile) - [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java8-ubuntu/Dockerfile) - [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.16.3-scala_2.12-java8`, `1.16-scala_2.12-java8`, `1.16.3-java8`, `1.16-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.16/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.16.3-scala_2.12-java11`, `1.16-scala_2.12-java11`, `1.16.3-scala_2.12`, `1.16-scala_2.12`, `1.16.3-java11`, `1.16-java11`, `1.16.3`, `1.16`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.16/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.15.4-scala_2.12-java8`, `1.15-scala_2.12-java8`, `1.15.4-java8`, `1.15-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.15/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.15.4-scala_2.12-java11`, `1.15-scala_2.12-java11`, `1.15.4-scala_2.12`, `1.15-scala_2.12`, `1.15.4-java11`, `1.15-java11`, `1.15.4`, `1.15`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.15/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) From 383ef97e477f7bf4a314ec71ddb68e9d9e9a38e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Mar 2024 12:19:02 -0700 Subject: [PATCH 1046/2686] Run update.sh --- perl/README.md | 80 ++++++++++++++++++++++++------------------------ photon/README.md | 4 +-- rust/README.md | 16 +++++----- 3 files changed, 50 insertions(+), 50 deletions(-) diff --git a/perl/README.md b/perl/README.md index 28f288c23213..7100cfdbc4bf 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.8`, `5.39`, `devel`, `5.39.8-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main-bookworm/Dockerfile) -- [`5.39.8-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main-bullseye/Dockerfile) -- [`5.39.8-slim`, `5.39-slim`, `devel-slim`, `5.39.8-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim-bookworm/Dockerfile) -- [`5.39.8-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim-bullseye/Dockerfile) -- [`5.39.8-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.8-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main,threaded-bookworm/Dockerfile) -- [`5.39.8-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-main,threaded-bullseye/Dockerfile) -- [`5.39.8-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.8-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim,threaded-bookworm/Dockerfile) -- [`5.39.8-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/eda25fcceccf8e178bf1e41ce4d4196ab3e8f8af/5.039.008-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.9`, `5.39`, `devel`, `5.39.9-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main-bookworm/Dockerfile) +- [`5.39.9-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main-bullseye/Dockerfile) +- [`5.39.9-slim`, `5.39-slim`, `devel-slim`, `5.39.9-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim-bookworm/Dockerfile) +- [`5.39.9-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim-bullseye/Dockerfile) +- [`5.39.9-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.9-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main,threaded-bookworm/Dockerfile) +- [`5.39.9-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main,threaded-bullseye/Dockerfile) +- [`5.39.9-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.9-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim,threaded-bookworm/Dockerfile) +- [`5.39.9-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 8f6fd733719a..80d147782df1 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,8 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20240311`, `latest`](https://github.com/vmware/photon-docker-image/blob/5f8d75884d828b5fe7b66d2594855e7174db7e29/docker/Dockerfile) -- [`4.0`, `4.0-20240225`](https://github.com/vmware/photon-docker-image/blob/f26acec1a55f376803952a89f2d7e20da09ec7e5/docker/Dockerfile) -- [`3.0`, `3.0-20240303`](https://github.com/vmware/photon-docker-image/blob/7286f3468342592dba8f77fc929e1ccdbe9592b9/docker/Dockerfile) +- [`4.0`, `4.0-20240321`](https://github.com/vmware/photon-docker-image/blob/6a35ba7d5b66f1ecf861e1500fd1e52ff49a3565/docker/Dockerfile) +- [`3.0`, `3.0-20240321`](https://github.com/vmware/photon-docker-image/blob/b6c177c3651f9cd861588b86c8a0d7bffee42c92/docker/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index fa52dc68b6f1..6e28ee7278ae 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.76-buster`, `1.76.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/buster/Dockerfile) -- [`1-slim-buster`, `1.76-slim-buster`, `1.76.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.76-bullseye`, `1.76.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.76-slim-bullseye`, `1.76.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.76-bookworm`, `1.76.0-bookworm`, `bookworm`, `1`, `1.76`, `1.76.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.76-slim-bookworm`, `1.76.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.76-slim`, `1.76.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.76-alpine3.18`, `1.76.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.76-alpine3.19`, `1.76.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.76-alpine`, `1.76.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/52210a27e61827edc257687d4b7cad1fd71d6f6f/1.76.0/alpine3.19/Dockerfile) +- [`1-buster`, `1.77-buster`, `1.77.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/buster/Dockerfile) +- [`1-slim-buster`, `1.77-slim-buster`, `1.77.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.77-bullseye`, `1.77.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.77-bookworm`, `1.77.0-bookworm`, `bookworm`, `1`, `1.77`, `1.77.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/alpine3.19/Dockerfile) # Quick reference (cont.) From 62cb1d7ec0401c74bc39c116572c4f59ec61b448 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Mar 2024 16:10:06 -0700 Subject: [PATCH 1047/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index bb14a9af97c4..16f9c427767e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.4`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ac3466c054515c5e90afe336732e357c425b640e/5/debian/Dockerfile) -- [`5.80.4-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ac3466c054515c5e90afe336732e357c425b640e/5/alpine/Dockerfile) +- [`5.80.5`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b04fdb9200f9a33d99f38968145a6d9fda0bcca0/5/debian/Dockerfile) +- [`5.80.5-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b04fdb9200f9a33d99f38968145a6d9fda0bcca0/5/alpine/Dockerfile) # Quick reference (cont.) From 28491ceb7fc1aa90764548c8e934c003275d3c8e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Mar 2024 18:18:03 -0700 Subject: [PATCH 1048/2686] Run update.sh --- friendica/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index 223e0af80bfe..a5890d1836b0 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.12-apache`, `apache`, `stable-apache`, `2023.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/apache/Dockerfile) -- [`2023.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/fpm/Dockerfile) -- [`2023.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2023.12/fpm-alpine/Dockerfile) -- [`2024.03-dev-apache`, `dev-apache`, `2024.03-dev`, `dev`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/apache/Dockerfile) -- [`2024.03-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/fpm/Dockerfile) -- [`2024.03-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-dev/fpm-alpine/Dockerfile) -- [`2024.03-rc-apache`, `rc-apache`, `2024.03-rc`, `rc`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/apache/Dockerfile) -- [`2024.03-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/fpm/Dockerfile) -- [`2024.03-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/0be4ccaa27345ecfa54a6bcbdcbdd8df1441c756/2024.03-rc/fpm-alpine/Dockerfile) +- [`2023.12-apache`, `2023.12`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/apache/Dockerfile) +- [`2023.12-fpm`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm/Dockerfile) +- [`2023.12-fpm-alpine`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm-alpine/Dockerfile) +- [`2024.03-apache`, `apache`, `stable-apache`, `2024.03`, `latest`, `stable`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/apache/Dockerfile) +- [`2024.03-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm/Dockerfile) +- [`2024.03-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm-alpine/Dockerfile) +- [`2024.06-dev-apache`, `dev-apache`, `2024.06-dev`, `dev`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/apache/Dockerfile) +- [`2024.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm/Dockerfile) +- [`2024.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) From 721b7cbccce551bedde951240d8d8008f026ea24 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 11:20:40 -0700 Subject: [PATCH 1049/2686] Run update.sh --- clearlinux/README.md | 2 +- gradle/README.md | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 134bac353bfa..6941d8124417 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/3e425852017b24fe9935533aa8790657e43bd908/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1910926e5951ac896bb6462d3625c96d8668a3f2/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 3e09691fdb08..7d247d7174a3 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.6.0-jdk8`, `8.6-jdk8`, `8-jdk8`, `jdk8`, `8.6.0-jdk8-jammy`, `8.6-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk8/Dockerfile) -- [`8.6.0-jdk8-focal`, `8.6-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk8-focal/Dockerfile) -- [`8.6.0-jdk11`, `8.6-jdk11`, `8-jdk11`, `jdk11`, `8.6.0-jdk11-jammy`, `8.6-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11/Dockerfile) -- [`8.6.0-jdk11-focal`, `8.6-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11-focal/Dockerfile) -- [`8.6.0-jdk11-alpine`, `8.6-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk11-alpine/Dockerfile) -- [`8.6.0-jdk17`, `8.6-jdk17`, `8-jdk17`, `jdk17`, `8.6.0-jdk`, `8.6-jdk`, `8-jdk`, `jdk`, `8.6.0`, `8.6`, `8`, `latest`, `8.6.0-jdk17-jammy`, `8.6-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.6.0-jdk-jammy`, `8.6-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.6.0-jammy`, `8.6-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17/Dockerfile) -- [`8.6.0-jdk17-focal`, `8.6-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.6.0-jdk-focal`, `8.6-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.6.0-focal`, `8.6-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-focal/Dockerfile) -- [`8.6.0-jdk17-alpine`, `8.6-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.6.0-jdk-alpine`, `8.6-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.6.0-alpine`, `8.6-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-alpine/Dockerfile) -- [`8.6.0-jdk17-graal`, `8.6-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.6.0-jdk-graal`, `8.6-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.6.0-graal`, `8.6-graal`, `8-graal`, `graal`, `8.6.0-jdk17-graal-jammy`, `8.6-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.6.0-jdk-graal-jammy`, `8.6-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.6.0-graal-jammy`, `8.6-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk17-graal/Dockerfile) -- [`8.6.0-jdk21`, `8.6-jdk21`, `8-jdk21`, `jdk21`, `8.6.0-jdk21-jammy`, `8.6-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21/Dockerfile) -- [`8.6.0-jdk21-alpine`, `8.6-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21-alpine/Dockerfile) -- [`8.6.0-jdk21-graal`, `8.6-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.6.0-jdk21-graal-jammy`, `8.6-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3e280f7dc97818e2a1006914396d63513c5b4abe/jdk21-graal/Dockerfile) +- [`8.7.0-jdk8`, `8.7-jdk8`, `8-jdk8`, `jdk8`, `8.7.0-jdk8-jammy`, `8.7-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk8/Dockerfile) +- [`8.7.0-jdk8-focal`, `8.7-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk8-focal/Dockerfile) +- [`8.7.0-jdk11`, `8.7-jdk11`, `8-jdk11`, `jdk11`, `8.7.0-jdk11-jammy`, `8.7-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11/Dockerfile) +- [`8.7.0-jdk11-focal`, `8.7-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-focal/Dockerfile) +- [`8.7.0-jdk11-alpine`, `8.7-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-alpine/Dockerfile) +- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `latest`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17/Dockerfile) +- [`8.7.0-jdk17-focal`, `8.7-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.7.0-jdk-focal`, `8.7-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.7.0-focal`, `8.7-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-focal/Dockerfile) +- [`8.7.0-jdk17-alpine`, `8.7-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.7.0-jdk-alpine`, `8.7-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.7.0-alpine`, `8.7-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-alpine/Dockerfile) +- [`8.7.0-jdk17-graal`, `8.7-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.7.0-jdk-graal`, `8.7-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.7.0-graal`, `8.7-graal`, `8-graal`, `graal`, `8.7.0-jdk17-graal-jammy`, `8.7-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.7.0-jdk-graal-jammy`, `8.7-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.7.0-graal-jammy`, `8.7-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-graal/Dockerfile) +- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21/Dockerfile) +- [`8.7.0-jdk21-alpine`, `8.7-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-alpine/Dockerfile) +- [`8.7.0-jdk21-graal`, `8.7-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.7.0-jdk21-graal-jammy`, `8.7-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) From 1f2370c5d796419e4aa32e7f354c76346ae459b4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 12:20:30 -0700 Subject: [PATCH 1050/2686] Run update.sh --- arangodb/README.md | 3 +- convertigo/README.md | 2 +- crate/README.md | 4 +-- docker/README.md | 30 ++++++++-------- ghost/README.md | 4 +-- odoo/README.md | 6 ++-- openjdk/README.md | 54 ++++++++++------------------ photon/README.md | 4 +-- python/README.md | 84 ++++++++++++++++++++++---------------------- xwiki/README.md | 6 ++-- 10 files changed, 89 insertions(+), 108 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 2582be2039f8..8dbadca9ac01 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,7 +25,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.10`, `3.10.13`](https://github.com/arangodb/arangodb-docker/blob/af118f06c76677531116ee7a263e8d3cca1d6d63/alpine/3.10.13/Dockerfile) -- [`3.11`, `3.11.8`, `latest`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) +- [`3.11`, `3.11.8`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) +- [`3.12`, `3.12.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/c507e8709115419c988f47f735f72a4d95538131/alpine/3.12.0/Dockerfile) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index 521dcb10865c..5f7d1f32dbb9 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.6`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/b336be426c0b144209c6779cd85f66f4f4cc1290/docker/default/Dockerfile) +- [`8.2.7`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/24ab4a5de17fd3de5adf1b12c1fa447400be22a0/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 97221e4fef72..75f19219e30c 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,12 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.6.2`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/7d0a21e490b1e442cf6b22bbb73578f2f06ac787/Dockerfile) +- [`5.6.3`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/87c0db61bba5d4e94852d2f8ad792b4ce85f8a12/Dockerfile) - [`5.5.5`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) - [`5.3.9`, `5.3`](https://github.com/crate/docker-crate/blob/b26e81edb1d6b551a5a7697855270346dbd63619/Dockerfile) -- [`5.2.11`, `5.2`](https://github.com/crate/docker-crate/blob/589f5c13d10e2442b9a0d9bee46f4eac96b5da21/Dockerfile) -- [`4.8.4`, `4.8`](https://github.com/crate/docker-crate/blob/1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 2d3b7f5130f8..0c64105efaf0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/cli/Dockerfile) +- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/cli/Dockerfile) - [`26.0.0-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.0-dind-alpine3.19`, `26.0.0`, `26.0`, `26`, `latest`, `26.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind/Dockerfile) - [`26.0.0-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind-rootless/Dockerfile) -- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/cli/Dockerfile) +- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.0.0-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/windows/windowsservercore-1809/Dockerfile) + - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/db75b558c6fe6a048ac5416457c17f834df738f3/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 16f9c427767e..b4287f0f4bfb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.80.5`, `5.80`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b04fdb9200f9a33d99f38968145a6d9fda0bcca0/5/debian/Dockerfile) -- [`5.80.5-alpine`, `5.80-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b04fdb9200f9a33d99f38968145a6d9fda0bcca0/5/alpine/Dockerfile) +- [`5.81.0`, `5.81`, `5`, `latest`](https://github.com/docker-library/ghost/blob/847b8a45a6108ad80d25e53333f65a6f91205659/5/debian/Dockerfile) +- [`5.81.0-alpine`, `5.81-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/847b8a45a6108ad80d25e53333f65a6f91205659/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 9345088d8586..a964ba9a218d 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/f2d27b791fdc53ee3a0c9575915d834540738c61/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/15.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 84ca0415150f..46d874533261 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-14-jdk-oraclelinux9`, `23-ea-14-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-14-jdk-oracle`, `23-ea-14-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-14-jdk-oraclelinux8`, `23-ea-14-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-14-jdk-bookworm`, `23-ea-14-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/bookworm/Dockerfile) -- [`23-ea-14-jdk-slim-bookworm`, `23-ea-14-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-14-jdk-slim`, `23-ea-14-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-14-jdk-bullseye`, `23-ea-14-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/bullseye/Dockerfile) -- [`23-ea-14-jdk-slim-bullseye`, `23-ea-14-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-14-jdk-windowsservercore-ltsc2022`, `23-ea-14-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-14-jdk-windowsservercore-1809`, `23-ea-14-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-14-jdk-nanoserver-1809`, `23-ea-14-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`22-rc-jdk-oraclelinux9`, `22-rc-oraclelinux9`, `22-jdk-oraclelinux9`, `22-oraclelinux9`, `22-rc-jdk-oracle`, `22-rc-oracle`, `22-jdk-oracle`, `22-oracle`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/22/jdk/oraclelinux9/Dockerfile) -- [`22-rc-jdk-oraclelinux8`, `22-rc-oraclelinux8`, `22-jdk-oraclelinux8`, `22-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/oraclelinux8/Dockerfile) -- [`22-rc-jdk-bookworm`, `22-rc-bookworm`, `22-jdk-bookworm`, `22-bookworm`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bookworm/Dockerfile) -- [`22-rc-jdk-slim-bookworm`, `22-rc-slim-bookworm`, `22-jdk-slim-bookworm`, `22-slim-bookworm`, `22-rc-jdk-slim`, `22-rc-slim`, `22-jdk-slim`, `22-slim`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/slim-bookworm/Dockerfile) -- [`22-rc-jdk-bullseye`, `22-rc-bullseye`, `22-jdk-bullseye`, `22-bullseye`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/bullseye/Dockerfile) -- [`22-rc-jdk-slim-bullseye`, `22-rc-slim-bullseye`, `22-jdk-slim-bullseye`, `22-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/slim-bullseye/Dockerfile) -- [`22-rc-jdk-windowsservercore-ltsc2022`, `22-rc-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22-rc-jdk-windowsservercore-1809`, `22-rc-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22-rc-jdk-nanoserver-1809`, `22-rc-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-15-jdk-oraclelinux9`, `23-ea-15-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-15-jdk-oracle`, `23-ea-15-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-15-jdk-oraclelinux8`, `23-ea-15-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-15-jdk-bookworm`, `23-ea-15-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/bookworm/Dockerfile) +- [`23-ea-15-jdk-slim-bookworm`, `23-ea-15-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-15-jdk-slim`, `23-ea-15-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-15-jdk-bullseye`, `23-ea-15-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/bullseye/Dockerfile) +- [`23-ea-15-jdk-slim-bullseye`, `23-ea-15-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-15-jdk-windowsservercore-ltsc2022`, `23-ea-15-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-15-jdk-windowsservercore-1809`, `23-ea-15-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-15-jdk-nanoserver-1809`, `23-ea-15-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-14-jdk`, `23-ea-14`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-14-jdk-windowsservercore`, `23-ea-14-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-14-jdk-nanoserver`, `23-ea-14-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/942cd725dc00274bf639a8ceee51f52d28d3af8e/23/jdk/windows/nanoserver-1809/Dockerfile) -- `22-rc-jdk`, `22-rc`, `22-jdk`, `22`: - - [`22-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6bb5ac0dcc5d6db48d6684ccf8dd6c4252ebd5ae/22/jdk/oraclelinux9/Dockerfile) - - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-rc-jdk-windowsservercore`, `22-rc-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e582736928a0af546bf984cf6c4b6bbc48a6f091/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22-rc-jdk-nanoserver`, `22-rc-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1a2ae80c1b84d81e424371557fb46ec05fed5c8/22/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-15-jdk`, `23-ea-15`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-15-jdk-windowsservercore`, `23-ea-15-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-15-jdk-nanoserver`, `23-ea-15-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 80d147782df1..ee82aeeccc28 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240311`, `latest`](https://github.com/vmware/photon-docker-image/blob/5f8d75884d828b5fe7b66d2594855e7174db7e29/docker/Dockerfile) -- [`4.0`, `4.0-20240321`](https://github.com/vmware/photon-docker-image/blob/6a35ba7d5b66f1ecf861e1500fd1e52ff49a3565/docker/Dockerfile) +- [`5.0`, `5.0-20240325`, `latest`](https://github.com/vmware/photon-docker-image/blob/63b02fbe9bc50153c6216750392cf51e3a9f30ad/docker/Dockerfile) +- [`4.0`, `4.0-20240325`](https://github.com/vmware/photon-docker-image/blob/59fb75b8a0f026c8f49e6134efbab466ee7d1ae9/docker/Dockerfile) - [`3.0`, `3.0-20240321`](https://github.com/vmware/photon-docker-image/blob/b6c177c3651f9cd861588b86c8a0d7bffee42c92/docker/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index e8965ef0820d..aa6fadcc779e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.13.0a5-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a5-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a5-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a5-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a5-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a5-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a5-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a5-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a5-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a5-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a5-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a5-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a5-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a5-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/alpine3.18/Dockerfile) - [`3.13.0a5-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0a5-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) -- [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bookworm/Dockerfile) -- [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bullseye/Dockerfile) -- [`3.12.2-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/slim-bullseye/Dockerfile) -- [`3.12.2-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/alpine3.19/Dockerfile) -- [`3.12.2-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/alpine3.18/Dockerfile) +- [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bookworm/Dockerfile) +- [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/slim-bookworm/Dockerfile) +- [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bullseye/Dockerfile) +- [`3.12.2-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/slim-bullseye/Dockerfile) +- [`3.12.2-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/alpine3.19/Dockerfile) +- [`3.12.2-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/alpine3.18/Dockerfile) - [`3.12.2-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.2-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.8-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bookworm/Dockerfile) -- [`3.11.8-slim-bookworm`, `3.11-slim-bookworm`, `3.11.8-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/slim-bookworm/Dockerfile) -- [`3.11.8-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bullseye/Dockerfile) -- [`3.11.8-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/slim-bullseye/Dockerfile) -- [`3.11.8-alpine3.19`, `3.11-alpine3.19`, `3.11.8-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/alpine3.19/Dockerfile) -- [`3.11.8-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/alpine3.18/Dockerfile) +- [`3.11.8-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bookworm/Dockerfile) +- [`3.11.8-slim-bookworm`, `3.11-slim-bookworm`, `3.11.8-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/slim-bookworm/Dockerfile) +- [`3.11.8-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bullseye/Dockerfile) +- [`3.11.8-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/slim-bullseye/Dockerfile) +- [`3.11.8-alpine3.19`, `3.11-alpine3.19`, `3.11.8-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/alpine3.19/Dockerfile) +- [`3.11.8-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/alpine3.18/Dockerfile) - [`3.11.8-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.8-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bookworm/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/alpine3.19/Dockerfile) -- [`3.10.14-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/alpine3.18/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bookworm/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/alpine3.19/Dockerfile) -- [`3.9.19-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/alpine3.18/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bookworm/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/alpine3.19/Dockerfile) -- [`3.8.19-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/alpine3.18/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.18/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.19/Dockerfile) +- [`3.9.19-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.18/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.19/Dockerfile) +- [`3.8.19-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.18/Dockerfile) ## Shared Tags - `3.13.0a5`, `3.13-rc`: - - [`3.13.0a5-bookworm`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a5-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bookworm/Dockerfile) - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0a5-windowsservercore`, `3.13-rc-windowsservercore`: - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.2`, `3.12`, `3`, `latest`: - - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/bookworm/Dockerfile) + - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bookworm/Dockerfile) - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.2-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.8`, `3.11`: - - [`3.11.8-bookworm`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/bookworm/Dockerfile) + - [`3.11.8-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bookworm/Dockerfile) - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.8-windowsservercore`, `3.11-windowsservercore`: - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/397357517f9570687adbae192f56406dd641831e/3.10/bookworm/Dockerfile) + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/b12dd3ed3ff57ae8f69b498a3ece3978646d20c5/3.9/bookworm/Dockerfile) + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) - `3.8.19`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/cce15d1c9e3b6d9dfc4a1765bfe93bd7542104df/3.8/bookworm/Dockerfile) + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 9a2f0b86622f..9ef22df7ccff 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.1`, `16.1.0`, `16-mysql-tomcat`, `16.1-mysql-tomcat`, `16.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.1-postgres-tomcat`, `16.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.1-mariadb-tomcat`, `16.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/63c594039edd6a0a4207c77e8b1f48d08fa785b2/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.2`, `16.2.0`, `16-mysql-tomcat`, `16.2-mysql-tomcat`, `16.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.2-postgres-tomcat`, `16.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.2-mariadb-tomcat`, `16.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.7`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mariadb-tomcat/Dockerfile) From e6f819c2822476a74e8b273129ca5d4158fec525 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 13:10:09 -0700 Subject: [PATCH 1051/2686] Run update.sh --- couchbase/README.md | 14 ++++++++------ sapmachine/README.md | 12 ++++++++---- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index db8233cf3ede..833494092550 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,12 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.4`, `enterprise-7.2.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/24bae6aab6520dc97c362b56150db9658d041873/enterprise/couchbase-server/7.2.4/Dockerfile) -- [`community-7.2.4`, `community`](https://github.com/couchbase/docker/blob/9fc1cf481a8fe8e78d7539cee3a25cdbaa7b5e1e/community/couchbase-server/7.2.4/Dockerfile) -- [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/3b28b68159ef2e9007a1493c17e768fbb4837358/enterprise/couchbase-server/7.1.6/Dockerfile) -- [`community-7.1.1`](https://github.com/couchbase/docker/blob/bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58/community/couchbase-server/7.1.1/Dockerfile) -- [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/ca816b6ffa5c36007bd4b3386ec24df081a00ea0/enterprise/couchbase-server/7.0.5/Dockerfile) -- [`community-7.0.2`](https://github.com/couchbase/docker/blob/aec4494ab5280caf567997d72714f57572a6315b/community/couchbase-server/7.0.2/Dockerfile) +- [`7.6.0`, `enterprise-7.6.0`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/203e62f36ce055be75955e073d0000249bf2c040/enterprise/couchbase-server/7.6.0/Dockerfile) +- [`community-7.6.0`, `community`](https://github.com/couchbase/docker/blob/7148bc241bcdcf8961c34f8adf76ebfb2860ed83/community/couchbase-server/7.6.0/Dockerfile) +- [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.2.4/Dockerfile) +- [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) +- [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.1.6/Dockerfile) +- [`community-7.1.1`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.1.1/Dockerfile) +- [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.0.5/Dockerfile) +- [`community-7.0.2`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.0.2/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 3dcc82f9e965..08d64d257157 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -32,10 +32,14 @@ WARNING: - [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.10-jre-ubuntu`, `17.0.10-jre-ubuntu-jammy`, `17.0.10-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jre/Dockerfile) - [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.10-jdk-headless-ubuntu`, `17.0.10-jdk-headless-ubuntu-jammy`, `17.0.10-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) - [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.10-jdk-ubuntu`, `17.0.10-jdk-ubuntu-jammy`, `17.0.10-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.10`, `17.0.10-ubuntu-jammy`, `17.0.10-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.2-jre-headless-ubuntu`, `21.0.2-jre-headless-ubuntu-jammy`, `21.0.2-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.2-jre-ubuntu`, `21.0.2-jre-ubuntu-jammy`, `21.0.2-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.2-jdk-headless-ubuntu`, `21.0.2-jdk-headless-ubuntu-jammy`, `21.0.2-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) -- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.2-jdk-ubuntu`, `21.0.2-jdk-ubuntu-jammy`, `21.0.2-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.2`, `21.0.2-ubuntu-jammy`, `21.0.2-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk/Dockerfile) +- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.2-jre-headless-ubuntu`, `21.0.2-jre-headless-ubuntu-jammy`, `21.0.2-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) +- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.2-jre-ubuntu`, `21.0.2-jre-ubuntu-jammy`, `21.0.2-jre-ubuntu-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre/Dockerfile) +- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.2-jdk-headless-ubuntu`, `21.0.2-jdk-headless-ubuntu-jammy`, `21.0.2-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) +- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.2-jdk-ubuntu`, `21.0.2-jdk-ubuntu-jammy`, `21.0.2-jdk-ubuntu-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.2`, `21.0.2-ubuntu-jammy`, `21.0.2-ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk/Dockerfile) +- [`22-jre-headless-ubuntu`, `22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jre-headless/Dockerfile) +- [`22-jre-ubuntu`, `22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jre/Dockerfile) +- [`22-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jdk-headless/Dockerfile) +- [`22-jdk-ubuntu`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `22`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From 41b7138cb390067fe3aa3e6e6e2b1365306183be Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 14:20:47 -0700 Subject: [PATCH 1052/2686] Run update.sh --- cassandra/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 865b8d50ffea..8b93bb6685bc 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/5.0/Dockerfile) -- [`4.1.4`, `4.1`, `4`, `latest`, `4.1.4-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/4ad6334c48772ac0d795d777c1ad9a6b37b85eb3/4.1/Dockerfile) -- [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/6aa49ecdcc9150e03abb379e258e85401989d91b/4.0/Dockerfile) -- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.11/Dockerfile) -- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/47ea6259ee03f28639ffb493b847067689d59c2e/3.0/Dockerfile) +- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) +- [`4.1.4`, `4.1`, `4`, `latest`, `4.1.4-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.1/Dockerfile) +- [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.0/Dockerfile) +- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/3.11/Dockerfile) +- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/3.0/Dockerfile) # Quick reference (cont.) From 59456d487121bb7f748d4c559edcb1509f436aa6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 17:09:56 -0700 Subject: [PATCH 1053/2686] Run update.sh --- alt/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alt/README.md b/alt/README.md index 6b9a1ef0baf9..171dfdd44247 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/75c4d0029825ab9802240f2a086395d728e1853f/x86_64/Dockerfile) -- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/d1f01d08ac608909403bc99501af07065d7be769/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/cf707869d0d33a76fa3eed5eb2592c07a0a11e23/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/773acfd940ca9f9a7bd26a71f0b8d78ff088cdca/x86_64/Dockerfile) +- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/29295d2ce735b810bf3b20938c96b7a42b72804d/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/b2dc65ecb8fde29614d6b090c87418b677e82862/x86_64/Dockerfile) # Quick reference (cont.) From c8466e4534a838a1c45bc19d34c8c8087d33478b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Mar 2024 18:19:01 -0700 Subject: [PATCH 1054/2686] Run update.sh --- tomcat/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index 3718af32abfd..58e044a67a95 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,12 +26,12 @@ WARNING: - [`11.0.0-M18-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M18-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M18-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M18`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jdk21/temurin-jammy/Dockerfile) - [`11.0.0-M18-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M18-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M18-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.19-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.19-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.19-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.19`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.19-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.19-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.19-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.19-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.19-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.19-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.19-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.19-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.19-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.19-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.19-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.19-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.19-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.19-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.19-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1dc76a9b209f4558948fdbd53b94697704677c05/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.20-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.20-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.20-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.20`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.20-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.20-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.20-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.20-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.20-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.20-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.20-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.20-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.20-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.20-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.20-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.20-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.20-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.20-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.20-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.87-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.87-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.87-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.87`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/temurin-jammy/Dockerfile) - [`9.0.87-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.87-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.87-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre21/temurin-jammy/Dockerfile) - [`9.0.87-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.87-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/corretto-al2/Dockerfile) @@ -50,24 +50,24 @@ WARNING: - [`9.0.87-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.87-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.87-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.87-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.99-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.99-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.99-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.99`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.99-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.99-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.99-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.99-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.99-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.99-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.99-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.99-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.99-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.99-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.99-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.99-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.99-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.99-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.99-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.99-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.99-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.99-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.99-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.99-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.99-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.99-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.99-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.99-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.99-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.99-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.99-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.99-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.99-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.99-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.99-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.99-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.99-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.99-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.99-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2922893bc6ccc52af5b663972b5918ce5fb9a841/8.5/jdk8/corretto-al2/Dockerfile) +- [`8.5.100-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.100-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.100-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.100`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk21/temurin-jammy/Dockerfile) +- [`8.5.100-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.100-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.100-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre21/temurin-jammy/Dockerfile) +- [`8.5.100-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.100-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk21/corretto-al2/Dockerfile) +- [`8.5.100-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.100-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.100-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/temurin-jammy/Dockerfile) +- [`8.5.100-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.100-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.100-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre17/temurin-jammy/Dockerfile) +- [`8.5.100-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/temurin-focal/Dockerfile) +- [`8.5.100-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre17/temurin-focal/Dockerfile) +- [`8.5.100-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.100-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/corretto-al2/Dockerfile) +- [`8.5.100-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.100-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.100-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/temurin-jammy/Dockerfile) +- [`8.5.100-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.100-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.100-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre11/temurin-jammy/Dockerfile) +- [`8.5.100-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/temurin-focal/Dockerfile) +- [`8.5.100-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre11/temurin-focal/Dockerfile) +- [`8.5.100-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.100-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/corretto-al2/Dockerfile) +- [`8.5.100-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.100-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.100-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/temurin-jammy/Dockerfile) +- [`8.5.100-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.100-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.100-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre8/temurin-jammy/Dockerfile) +- [`8.5.100-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/temurin-focal/Dockerfile) +- [`8.5.100-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre8/temurin-focal/Dockerfile) +- [`8.5.100-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.100-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From e6234a76beddf381523549d8161c9f985642c8bf Mon Sep 17 00:00:00 2001 From: Nikolaos Pothitos Date: Tue, 26 Mar 2024 06:32:57 +0200 Subject: [PATCH 1055/2686] Reset mongo express basic auth ME_CONFIG_BASICAUTH=false is no longer the default value following https://github.com/mongo-express/mongo-express-docker/commit/ec6ee123c1ecd59a7662680bec407e0913a0321e#diff-8d7a21b017921bb88eaf71656b7b5767203db16e8126fc1e5ad2a9ba0bc542f5R29 If we don't set it to `false`, mongo express will prompt for a basic auth username and password. But such credentials don't exist in `stack.yml`. --- mongo/stack.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/mongo/stack.yml b/mongo/stack.yml index 7a287967fc60..36c186bbee5c 100644 --- a/mongo/stack.yml +++ b/mongo/stack.yml @@ -19,3 +19,4 @@ services: ME_CONFIG_MONGODB_ADMINUSERNAME: root ME_CONFIG_MONGODB_ADMINPASSWORD: example ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/ + ME_CONFIG_BASICAUTH: false From 7ac154b5eb063f1a6f161189614b3ae32e29fb82 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Mar 2024 11:21:33 -0700 Subject: [PATCH 1056/2686] Run update.sh --- amazoncorretto/README.md | 89 ++++++++++++++++++++++------------------ elasticsearch/README.md | 4 +- kibana/README.md | 4 +- logstash/README.md | 4 +- neo4j/README.md | 4 +- 5 files changed, 56 insertions(+), 49 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 2603a515a893..11ea788d8849 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,47 +24,54 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/8/jre/alpine/3.19/Dockerfile) -- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/17/jdk/alpine/3.19/Dockerfile) -- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/8e7ef963a700af34906949d49bcbddb02a6405ad/21/jdk/alpine/3.19/Dockerfile) +- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.19/Dockerfile) +- [`22-al2023`, `22.0.0-al2023`, `22-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/al2023/Dockerfile) +- [`22-al2023-headless`, `22.0.0-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/headless/al2023/Dockerfile) +- [`22-al2023-headful`, `22.0.0-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/headful/al2023/Dockerfile) +- [`22-alpine3.16`, `22.0.0-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.16/Dockerfile) +- [`22-alpine3.17`, `22.0.0-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.17/Dockerfile) +- [`22-alpine3.18`, `22.0.0-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.18/Dockerfile) +- [`22-alpine3.19`, `22.0.0-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.0-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 916b9c7087a7..2665af75d0db 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/elasticsearch/Dockerfile) -- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/elasticsearch/Dockerfile) +- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/elasticsearch/Dockerfile) +- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 5c70136bb9d4..debc2220a25f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/kibana/Dockerfile) -- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/kibana/Dockerfile) +- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/kibana/Dockerfile) +- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 44d20a99ef4d..26eb91962f42 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.2`](https://github.com/elastic/dockerfiles/blob/e2fb0b9e1ab9298119afe3cad839cac90a620a82/logstash/Dockerfile) -- [`7.17.18`](https://github.com/elastic/dockerfiles/blob/3f49356df9e4ffaf56eed9722b8777eef574570b/logstash/Dockerfile) +- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/logstash/Dockerfile) +- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/logstash/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 2e0bae3be68e..01aef10ded47 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,8 +30,8 @@ WARNING: - [`5.18.1-enterprise-ubi9`, `5.18-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi9/enterprise/Dockerfile) - [`5.18.1-community-ubi8`, `5.18-community-ubi8`, `5-community-ubi8`, `5.18.1-ubi8`, `5.18-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/community/Dockerfile) - [`5.18.1-enterprise-ubi8`, `5.18-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/enterprise/Dockerfile) -- [`4.4.31`, `4.4.31-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/community/Dockerfile) -- [`4.4.31-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e569acbf7874e3f44f42920bb92f619fb4b7f45b/4.4.31/bullseye/enterprise/Dockerfile) +- [`4.4.32`, `4.4.32-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/community/Dockerfile) +- [`4.4.32-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 7d2c7bad9443b473acc8a4935e97219147d296d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Mar 2024 12:19:08 -0700 Subject: [PATCH 1057/2686] Run update.sh --- bash/README.md | 2 +- rocket.chat/README.md | 4 ++-- unit/README.md | 30 +++++++++++++++--------------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/bash/README.md b/bash/README.md index 152b31b60b84..ab49759d814a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240318`, `devel`, `devel-20240318-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/121b00b52e5655af7a1539341091659d24f7ce1d/devel/Dockerfile) +- [`devel-20240325`, `devel`, `devel-20240325-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/aaf9f95d5b78cffae86501876f31fa989b6ac5ab/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index e3874237d28d..d3783dca7584 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.3`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/91489ce297739019ba493c5cab0e51b63cf0334e/6.6/Dockerfile) -- [`6.5.4`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/5cd5e1a719132cfbf4134eec395f2d6abb3fe995/6.5/Dockerfile) +- [`6.6.6`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.6/Dockerfile) +- [`6.5.5`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.5/Dockerfile) - [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) # Quick reference (cont.) diff --git a/unit/README.md b/unit/README.md index 1cae6e17542c..df36a544cb40 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32.0-go1.22`, `go1.22`, `go1`, `go`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.go1.22) -- [`1.32.0-go1.21`, `go1.21`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.go1.21) -- [`1.32.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.jsc11) -- [`1.32.0-node21`, `node21`, `node`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.node21) -- [`1.32.0-node20`, `node20`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.node20) -- [`1.32.0-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.perl5.38) -- [`1.32.0-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.perl5.36) -- [`1.32.0-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.php8.3) -- [`1.32.0-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.php8.2) -- [`1.32.0-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.python3.12) -- [`1.32.0-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.python3.11) -- [`1.32.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.ruby3.3) -- [`1.32.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.ruby3.2) -- [`1.32.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.wasm) -- [`1.32.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/d76761901c4084bcdbc5a449e9bbb47d56b7093c/pkg/docker/Dockerfile.minimal) +- [`1.32.1-go1.22`, `go1.22`, `go1`, `go`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.22) +- [`1.32.1-go1.21`, `go1.21`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.21) +- [`1.32.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.jsc11) +- [`1.32.1-node21`, `node21`, `node`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node21) +- [`1.32.1-node20`, `node20`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node20) +- [`1.32.1-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.38) +- [`1.32.1-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.36) +- [`1.32.1-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.3) +- [`1.32.1-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.2) +- [`1.32.1-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.12) +- [`1.32.1-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.11) +- [`1.32.1-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.3) +- [`1.32.1-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.2) +- [`1.32.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.wasm) +- [`1.32.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From fc5f6a8bac3528a444d0894b949550ef9ed0bc9f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Mar 2024 16:09:53 -0700 Subject: [PATCH 1058/2686] Run update.sh --- haproxy/README.md | 4 ++-- open-liberty/README.md | 48 ++++++++++++++++--------------------- websphere-liberty/README.md | 42 ++++++++++++++------------------ 3 files changed, 41 insertions(+), 53 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 1dde6b8698fa..6f606448a964 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev5`, `3.0-dev`, `3.0-dev5-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/3fa21bcf0b535763ce7501e62333e18c24dc79e7/3.0/Dockerfile) -- [`3.0-dev5-alpine`, `3.0-dev-alpine`, `3.0-dev5-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/3fa21bcf0b535763ce7501e62333e18c24dc79e7/3.0/alpine/Dockerfile) +- [`3.0-dev6`, `3.0-dev`, `3.0-dev6-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/1f1e1651fb0e05ce891ae12dc9da6ac4717f9420/3.0/Dockerfile) +- [`3.0-dev6-alpine`, `3.0-dev-alpine`, `3.0-dev6-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/1f1e1651fb0e05ce891ae12dc9da6ac4717f9420/3.0/alpine/Dockerfile) - [`2.9.6`, `2.9`, `latest`, `2.9.6-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/Dockerfile) - [`2.9.6-alpine`, `2.9-alpine`, `alpine`, `2.9.6-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/alpine/Dockerfile) - [`2.8.7`, `2.8`, `lts`, `2.8.7-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index abc361dfc096..1d30164a7f2f 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/24.0.0.2/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/bc3b5231d74c2d075022b4cb04126997134e07f5/releases/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index e5ab5e1a0e53..68d427940fb6 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/24.0.0.2/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/1d50506efd66b987ebdd478e92c95e2f5b357f1c/ga/23.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 7cf7a583bc827b97ada953995c7975fcc1326ce0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Mar 2024 07:10:00 -0700 Subject: [PATCH 1059/2686] Run update.sh --- node/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/node/README.md b/node/README.md index 02915ba4e9d1..7b80d9443639 100644 --- a/node/README.md +++ b/node/README.md @@ -30,22 +30,22 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.1-bookworm-slim`, `21.7.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.11-alpine3.18`, `20.11.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.11-alpine`, `20.11-alpine3.19`, `20.11.1-alpine`, `20.11.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.11`, `20.11-bookworm`, `20.11.1`, `20.11.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.11-bookworm-slim`, `20.11-slim`, `20.11.1-bookworm-slim`, `20.11.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.11-bullseye`, `20.11.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.11-bullseye-slim`, `20.11.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.11-buster`, `20.11.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/buster/Dockerfile) -- [`20-buster-slim`, `20.11-buster-slim`, `20.11.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.19-alpine3.18`, `18.19.1-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.19-alpine`, `18.19-alpine3.19`, `18.19.1-alpine`, `18.19.1-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.19`, `18.19-bookworm`, `18.19.1`, `18.19.1-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.19-bookworm-slim`, `18.19-slim`, `18.19.1-bookworm-slim`, `18.19.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.19-bullseye`, `18.19.1-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.19-bullseye-slim`, `18.19.1-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.19-buster`, `18.19.1-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/buster/Dockerfile) -- [`18-buster-slim`, `18.19-buster-slim`, `18.19.1-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/a54ad036b53ed4d64744aa5aba25e78be5e4e7b1/18/buster-slim/Dockerfile) +- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.0-alpine`, `20.12.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.0`, `20.12.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.0-bookworm-slim`, `20.12.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.12-bullseye`, `20.12.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.12-buster`, `20.12.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/buster/Dockerfile) +- [`20-buster-slim`, `20.12-buster-slim`, `20.12.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.0-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.0-alpine`, `18.20.0-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.0`, `18.20.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.0-bookworm-slim`, `18.20.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.0-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.0-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.20-buster`, `18.20.0-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/buster/Dockerfile) +- [`18-buster-slim`, `18.20-buster-slim`, `18.20.0-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/buster-slim/Dockerfile) # Quick reference (cont.) From ec8f35c9ff08d2d8862b82905d42a3d111df0d23 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Mar 2024 12:18:36 -0700 Subject: [PATCH 1060/2686] Run update.sh --- dart/README.md | 4 ++-- xwiki/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dart/README.md b/dart/README.md index 322e05410122..2b90d3d3d102 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.1-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.1`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/0388515d459bab5a5bd614c44be25ebde75a70ed/stable/bookworm/Dockerfile) -- [`3.4.0-99.1.beta-sdk`, `beta-sdk`, `3.4.0-99.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/0388515d459bab5a5bd614c44be25ebde75a70ed/beta/bookworm/Dockerfile) +- [`3.3.3-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.3`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/56dda68f81593f368b69c0cb01bf8643c44c84f0/stable/bookworm/Dockerfile) +- [`3.4.0-190.2.beta-sdk`, `beta-sdk`, `3.4.0-190.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/56dda68f81593f368b69c0cb01bf8643c44c84f0/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 9ef22df7ccff..1b618e978090 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.2`, `16.2.0`, `16-mysql-tomcat`, `16.2-mysql-tomcat`, `16.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.2-postgres-tomcat`, `16.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.2-mariadb-tomcat`, `16.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.7`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/857b8a4889e2ea4399630742ee01c87014e688ab/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.8`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From 1349314899a99afe8a8410d7746dd6454ff94c31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Mar 2024 14:21:09 -0700 Subject: [PATCH 1061/2686] Run update.sh --- mongo/README.md | 60 +++++++++++++++++++++---------------------- mysql/README.md | 6 ++--- rakudo-star/README.md | 4 +-- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 52803ab88664..e5eb2101e080 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.8-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/Dockerfile) +- [`7.0.8-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.8-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.8-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.8-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.7-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) - [`7.0.7-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.7-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) @@ -38,16 +43,11 @@ WARNING: - [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.14-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.14-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.26-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/Dockerfile) -- [`5.0.26-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.26-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.26-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.26-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.25-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) -- [`5.0.25-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.25-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.25-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.25-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.26-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) +- [`5.0.26-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.26-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.26-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.26-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) - [`4.4.29-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) - [`4.4.29-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - [`4.4.29-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) @@ -56,6 +56,16 @@ WARNING: ## Shared Tags +- `7.0.8-rc0`, `7.0-rc`: + - [`7.0.8-rc0-jammy`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/Dockerfile) + - [`7.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.8-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.8-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.8-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.8-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.7`, `7.0`, `7`, `latest`: - [`7.0.7-jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) - [`7.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -76,26 +86,16 @@ WARNING: - `6.0.14-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.26-rc0`, `5.0-rc`: - - [`5.0.26-rc0-focal`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/Dockerfile) - - [`5.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.26-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.26-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.26-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.26-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a5dc60f7fbe85ca3fb8e503293143915cced3b13/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.25`, `5.0`, `5`: - - [`5.0.25-focal`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/Dockerfile) - - [`5.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.25-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.25-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.25-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.25-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9fb831dc00214e99727a8d144ce9b18cf59fd546/5.0/windows/nanoserver-1809/Dockerfile) +- `5.0.26`, `5.0`, `5`: + - [`5.0.26-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) + - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.26-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.26-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.26-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) - `4.4.29`, `4.4`, `4`: - [`4.4.29-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) - [`4.4.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 825e22a5ed21..bb9eff9013ee 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0`, `8.3`, `8`, `innovation`, `latest`, `8.3.0-oraclelinux8`, `8.3-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.3.0-oracle`, `8.3-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/innovation/Dockerfile.oracle) -- [`8.0.36`, `8.0`, `8.0.36-oraclelinux8`, `8.0-oraclelinux8`, `8.0.36-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/ffa6423ca24168e4d96631b5e8f536ac826d2a5b/8.0/Dockerfile.oracle) -- [`8.0.36-bookworm`, `8.0-bookworm`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/d6c12b61316e44e52ce195dd6343ac96e8343fce/8.0/Dockerfile.debian) +- [`8.3.0`, `8.3`, `8`, `innovation`, `latest`, `8.3.0-oraclelinux8`, `8.3-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.3.0-oracle`, `8.3-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/innovation/Dockerfile.oracle) +- [`8.0.36`, `8.0`, `8.0.36-oraclelinux8`, `8.0-oraclelinux8`, `8.0.36-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/8.0/Dockerfile.oracle) +- [`8.0.36-bookworm`, `8.0-bookworm`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index a3c7848a36dd..d79cdc570da3 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2023.08`](https://github.com/Raku/docker/blob/9b9e5827fb816027ae946c1d0b6ccdc9e0ee4501/2023.08/bookworm/Dockerfile) -- [`alpine`, `2023.08-alpine`](https://github.com/Raku/docker/blob/9b9e5827fb816027ae946c1d0b6ccdc9e0ee4501/2023.08/alpine3.18/Dockerfile) +- [`latest`, `2024.02`](https://github.com/Raku/docker/blob/1357b3acb550569e7ecf2da22fc32c32319fb872/2024.02/bookworm/Dockerfile) +- [`alpine`, `2024.02-alpine`](https://github.com/Raku/docker/blob/1357b3acb550569e7ecf2da22fc32c32319fb872/2024.02/alpine3.19/Dockerfile) # Quick reference (cont.) From 6fb4cd4916d7963ba5f030dfe52790a9673ceb1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Mar 2024 17:09:56 -0700 Subject: [PATCH 1062/2686] Run update.sh --- eclipse-temurin/README.md | 50 ++++++++++++++++++++++++++++++++------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 24b256508375..6ee249bda828 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -73,10 +73,10 @@ WARNING: - [`17.0.10_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.10_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) - [`17.0.10_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.10_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/alpine/Dockerfile) -- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.10_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/centos/Dockerfile) +- [`17.0.10_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/alpine/Dockerfile) +- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.10_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/centos/Dockerfile) - [`17.0.10_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubi/ubi9-minimal/Dockerfile) - [`17.0.10_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.10_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) @@ -89,13 +89,27 @@ WARNING: - [`21.0.2_13-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) - [`21.0.2_13-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.2_13-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/alpine/Dockerfile) -- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.2_13-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/alpine/Dockerfile) +- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubi/ubi9-minimal/Dockerfile) - [`21.0.2_13-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) - [`21.0.2_13-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) +- [`22_36-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/alpine/Dockerfile) +- [`22_36-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubuntu/jammy/Dockerfile) +- [`22_36-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`22_36-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22_36-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`22_36-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22_36-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22_36-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/alpine/Dockerfile) +- [`22_36-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubuntu/jammy/Dockerfile) +- [`22_36-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubi/ubi9-minimal/Dockerfile) +- [`22_36-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22_36-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`22_36-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) +- [`22_36-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -150,7 +164,7 @@ WARNING: - [`17.0.10_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.10_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) - `17.0.10_7-jre`, `17-jre`: - - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/jammy/Dockerfile) - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.10_7-jre-windowsservercore`, `17-jre-windowsservercore`: @@ -170,7 +184,7 @@ WARNING: - [`21.0.2_13-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) - `21.0.2_13-jre`, `21-jre`: - - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/ubuntu/jammy/Dockerfile) - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.2_13-jre-windowsservercore`, `21-jre-windowsservercore`: @@ -179,6 +193,26 @@ WARNING: - `21.0.2_13-jre-nanoserver`, `21-jre-nanoserver`: - [`21.0.2_13-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.2_13-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) +- `22_36-jdk`, `22-jdk`, `22`: + - [`22_36-jdk-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubuntu/jammy/Dockerfile) + - [`22_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22_36-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22_36-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`22_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22_36-jre`, `22-jre`: + - [`22_36-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubuntu/jammy/Dockerfile) + - [`22_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) +- `22_36-jre-windowsservercore`, `22-jre-windowsservercore`: + - [`22_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) +- `22_36-jre-nanoserver`, `22-jre-nanoserver`: + - [`22_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`22_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 275c82326bf325b82ee777f00a0fc08ae3b02624 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Mar 2024 12:09:53 -0700 Subject: [PATCH 1063/2686] Run update.sh --- memcached/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index d5647312c682..1150fe77d1fa 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.25`, `1.6`, `1`, `latest`, `1.6.25-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/0215dbaa543d98b7e54eee9162906d31fcb8677e/1/debian/Dockerfile) -- [`1.6.25-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.25-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/0215dbaa543d98b7e54eee9162906d31fcb8677e/1/alpine/Dockerfile) +- [`1.6.26`, `1.6`, `1`, `latest`, `1.6.26-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/5699d909d4f9d7f733a79d4793b323d3ad63453a/1/debian/Dockerfile) +- [`1.6.26-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.26-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/5699d909d4f9d7f733a79d4793b323d3ad63453a/1/alpine/Dockerfile) # Quick reference (cont.) From 6a6ea30639ec0744a88069f38d08eba47a17fefb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Mar 2024 17:09:53 -0700 Subject: [PATCH 1064/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- wordpress/README.md | 18 +++++++++--------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index ba83c377a7b1..3e7921ac4301 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/a662a9bdc9d91f9cdf730dd7b187b7e0e81810dd/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index a425c0409516..e5c7a3df6e97 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-RC3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-RC3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-RC3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-RC3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-RC3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-RC3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-RC3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-RC3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-RC3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/654752dda3941244b10ab45a07bf693d39a05d7c/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.5-RC4-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC4-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/apache/Dockerfile) +- [`beta-6.5-RC4-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5-RC4-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5-RC4-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC4`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC4-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC4-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/apache/Dockerfile) +- [`beta-6.5-RC4-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC4-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5-RC4-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC4-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5-RC4-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC4-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/apache/Dockerfile) +- [`beta-6.5-RC4-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5-RC4-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From adb1eec7fc9316eba1ffb1358ec18ec2f34bb1f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Mar 2024 10:10:26 -0700 Subject: [PATCH 1065/2686] Run update.sh --- mediawiki/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index e5daa5b61cec..ffcc4903ef88 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.41.0`, `1.41`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/apache/Dockerfile) -- [`1.41.0-fpm`, `1.41-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/fpm/Dockerfile) -- [`1.41.0-fpm-alpine`, `1.41-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.41/fpm-alpine/Dockerfile) -- [`1.40.2`, `1.40`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/apache/Dockerfile) -- [`1.40.2-fpm`, `1.40-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/fpm/Dockerfile) -- [`1.40.2-fpm-alpine`, `1.40-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.40/fpm-alpine/Dockerfile) -- [`1.39.6`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/apache/Dockerfile) -- [`1.39.6-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/fpm/Dockerfile) -- [`1.39.6-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/28d34a71bac948ce1f46cd801e512e6a69c9b467/1.39/fpm-alpine/Dockerfile) +- [`1.41.1`, `1.41`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/apache/Dockerfile) +- [`1.41.1-fpm`, `1.41-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/fpm/Dockerfile) +- [`1.41.1-fpm-alpine`, `1.41-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/fpm-alpine/Dockerfile) +- [`1.40.3`, `1.40`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/apache/Dockerfile) +- [`1.40.3-fpm`, `1.40-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/fpm/Dockerfile) +- [`1.40.3-fpm-alpine`, `1.40-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/fpm-alpine/Dockerfile) +- [`1.39.7`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/apache/Dockerfile) +- [`1.39.7-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/fpm/Dockerfile) +- [`1.39.7-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From 89af97969c51710d06f9ab22aa4eacbf66944a2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Mar 2024 11:10:58 -0700 Subject: [PATCH 1066/2686] Run update.sh --- alpine/README.md | 2 +- nextcloud/README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index e7e4c1a9231a..1ccb66176367 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20240315`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/fc0f58149f517641ea87fee37388d33e501b35fb/x86_64/Dockerfile) +- [`20240329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a89bb0df27ce47646e8f9955934f0d0093c2d18e/x86_64/Dockerfile) - [`3.19.1`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) - [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) - [`3.17.7`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1041155cbf4b410b02729c23a198d632945a1744/x86_64/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index ce519a2d8bd1..40ee49a01e0b 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.12-apache`, `26.0-apache`, `26-apache`, `26.0.12`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/apache/Dockerfile) -- [`26.0.12-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/fpm/Dockerfile) -- [`26.0.12-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/26/fpm-alpine/Dockerfile) -- [`27.1.7-apache`, `27.1-apache`, `27-apache`, `27.1.7`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/apache/Dockerfile) -- [`27.1.7-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/fpm/Dockerfile) -- [`27.1.7-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/27/fpm-alpine/Dockerfile) -- [`28.0.3-apache`, `28.0-apache`, `28-apache`, `apache`, `stable-apache`, `production-apache`, `28.0.3`, `28.0`, `28`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/apache/Dockerfile) -- [`28.0.3-fpm`, `28.0-fpm`, `28-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/fpm/Dockerfile) -- [`28.0.3-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f9ce81fb7fa05e854bbdac7a180b267e2403e93c/28/fpm-alpine/Dockerfile) +- [`26.0.13-apache`, `26.0-apache`, `26-apache`, `26.0.13`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/apache/Dockerfile) +- [`26.0.13-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/fpm/Dockerfile) +- [`26.0.13-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/fpm-alpine/Dockerfile) +- [`27.1.8-apache`, `27.1-apache`, `27-apache`, `27.1.8`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/apache/Dockerfile) +- [`27.1.8-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm/Dockerfile) +- [`27.1.8-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm-alpine/Dockerfile) +- [`28.0.4-apache`, `28.0-apache`, `28-apache`, `apache`, `stable-apache`, `production-apache`, `28.0.4`, `28.0`, `28`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/apache/Dockerfile) +- [`28.0.4-fpm`, `28.0-fpm`, `28-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm/Dockerfile) +- [`28.0.4-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm-alpine/Dockerfile) # Quick reference (cont.) From a1b0dcbcd56f2c931fb9f5b0256199e1ee173dc0 Mon Sep 17 00:00:00 2001 From: J0WI Date: Fri, 29 Mar 2024 16:17:07 +0100 Subject: [PATCH 1067/2686] Update Matomo --- matomo/content.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/matomo/content.md b/matomo/content.md index a8eb082f0f75..ee3f85701d0a 100644 --- a/matomo/content.md +++ b/matomo/content.md @@ -14,8 +14,8 @@ You can run the Matomo container and service like so: -```console -docker run -d --link some-mysql:db matomo +```bash +docker run -d --link some-mysql:db %%IMAGE%% ``` This assumes you've already launched a suitable MySQL or MariaDB database container. @@ -24,8 +24,8 @@ This assumes you've already launched a suitable MySQL or MariaDB database contai Use a Docker volume to keep persistent data: -```console -docker run -d --link some-mysql:db -v matomo:/var/www/html matomo +```bash +docker run -d -p 8080:80 --link some-mysql:db -v matomo:/var/www/html %%IMAGE%% ``` ## Matomo Installation @@ -50,25 +50,26 @@ The following environment variables are also honored for configuring your Matomo - `MATOMO_DATABASE_PASSWORD` - `MATOMO_DATABASE_DBNAME` +The PHP memory limit can be configured with the following environment variable: + +- `PHP_MEMORY_LIMIT` + ## Docker-compose examples and log import instructions -A minimal set-up using docker-compose is available in the [.examples folder](https://github.com/matomo-org/docker/tree/master/.examples). +A minimal set-up using docker-compose is available in the [.examples folder](%%GITHUB-REPO%%/tree/master/.examples). If you want to use the import logs script, you can then run the following container as needed, in order to execute the python import logs script: -```console -docker run --rm --volumes-from="matomo_app_1" --link matomo_app_1 python:2-alpine python /var/www/html/misc/log-analytics/import_logs.py --url=http://ip.of.your.piwik --login=yourlogin --password=yourpassword --idsite=1 --recorders=4 /var/www/html/logs/access.log +```bash +docker run --rm --volumes-from="matomo-app-1" --link matomo-app-1 python:3-alpine python /var/www/html/misc/log-analytics/import_logs.py --url=http://ip.of.your.matomo.example --login=yourlogin --password=yourpassword --idsite=1 --recorders=4 /var/www/html/logs/access.log ``` ## Contribute Pull requests are very welcome! -We'd love to hear your feedback and suggestions in the issue tracker: [github.com/motomo-org/docker/issues](https://github.com/matomo-org/docker/issues). +We'd love to hear your feedback and suggestions in the issue tracker: [%%ISSUES%%](%%ISSUES%%). ## GeoIP -~~This product includes GeoLite data created by MaxMind, available from [http://www.maxmind.com](http://www.maxmind.com).~~ - -- https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/ -- https://matomo.org/faq/how-to/faq_163/ +~~This product includes GeoLite data created by MaxMind, available from [https://www.maxmind.com](https://www.maxmind.com).~~ https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/ From 6e2361f9b9053b64393e591caf73e82ebbbd8aba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Mar 2024 16:09:56 -0700 Subject: [PATCH 1068/2686] Run update.sh --- matomo/README.md | 21 +++++++++++---------- oraclelinux/README.md | 16 ++++++++-------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index 1b7c9e58b772..6904a5544e9e 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -63,7 +63,7 @@ WARNING: You can run the Matomo container and service like so: -```console +```bash docker run -d --link some-mysql:db matomo ``` @@ -73,8 +73,8 @@ This assumes you've already launched a suitable MySQL or MariaDB database contai Use a Docker volume to keep persistent data: -```console -docker run -d --link some-mysql:db -v matomo:/var/www/html matomo +```bash +docker run -d -p 8080:80 --link some-mysql:db -v matomo:/var/www/html matomo ``` ## Matomo Installation @@ -99,28 +99,29 @@ The following environment variables are also honored for configuring your Matomo - `MATOMO_DATABASE_PASSWORD` - `MATOMO_DATABASE_DBNAME` +The PHP memory limit can be configured with the following environment variable: + +- `PHP_MEMORY_LIMIT` + ## Docker-compose examples and log import instructions A minimal set-up using docker-compose is available in the [.examples folder](https://github.com/matomo-org/docker/tree/master/.examples). If you want to use the import logs script, you can then run the following container as needed, in order to execute the python import logs script: -```console -docker run --rm --volumes-from="matomo_app_1" --link matomo_app_1 python:2-alpine python /var/www/html/misc/log-analytics/import_logs.py --url=http://ip.of.your.piwik --login=yourlogin --password=yourpassword --idsite=1 --recorders=4 /var/www/html/logs/access.log +```bash +docker run --rm --volumes-from="matomo-app-1" --link matomo-app-1 python:3-alpine python /var/www/html/misc/log-analytics/import_logs.py --url=http://ip.of.your.matomo.example --login=yourlogin --password=yourpassword --idsite=1 --recorders=4 /var/www/html/logs/access.log ``` ## Contribute Pull requests are very welcome! -We'd love to hear your feedback and suggestions in the issue tracker: [github.com/motomo-org/docker/issues](https://github.com/matomo-org/docker/issues). +We'd love to hear your feedback and suggestions in the issue tracker: [[https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues?q=)]([https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues?q=)). ## GeoIP -~~This product includes GeoLite data created by MaxMind, available from [http://www.maxmind.com](http://www.maxmind.com).~~ - -- https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/ -- https://matomo.org/faq/how-to/faq_163/ +~~This product includes GeoLite data created by MaxMind, available from [https://www.maxmind.com](https://www.maxmind.com).~~ https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/ # Image Variants diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 921c2e2daf22..fd10ab77e64f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5874902983c0098d8adc187cd905e83f196c9c5d/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7-slim-fips/Dockerfile) # Quick reference (cont.) From 6a6c59c790769e023883a706e7209b1bfbad453e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 30 Mar 2024 14:22:39 -0700 Subject: [PATCH 1069/2686] Run update.sh --- debian/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/debian/README.md b/debian/README.md index b90e6cc9d34b..35946fc859c1 100644 --- a/debian/README.md +++ b/debian/README.md @@ -33,27 +33,27 @@ WARNING: - [`buster`, `buster-20240311`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/Dockerfile) - [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/backports/Dockerfile) - [`buster-slim`, `buster-20240311-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/experimental/Dockerfile) +- [`experimental`, `experimental-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/experimental/Dockerfile) - [`oldoldstable`, `oldoldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/Dockerfile) - [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/backports/Dockerfile) - [`oldoldstable-slim`, `oldoldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/slim/Dockerfile) - [`oldstable`, `oldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/Dockerfile) - [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/backports/Dockerfile) - [`oldstable-slim`, `oldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/rc-buggy/Dockerfile) -- [`sid`, `sid-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/sid/Dockerfile) -- [`sid-slim`, `sid-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/sid/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/rc-buggy/Dockerfile) +- [`sid`, `sid-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/sid/Dockerfile) +- [`sid-slim`, `sid-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/sid/slim/Dockerfile) - [`stable`, `stable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/Dockerfile) - [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/backports/Dockerfile) - [`stable-slim`, `stable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/slim/Dockerfile) -- [`testing`, `testing-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/unstable/slim/Dockerfile) +- [`testing`, `testing-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/unstable/slim/Dockerfile) # Quick reference (cont.) From 170bfea3d175c826ef8d6e7416999f94abe910f2 Mon Sep 17 00:00:00 2001 From: Andrew Latham Date: Sun, 31 Mar 2024 16:19:12 -0600 Subject: [PATCH 1070/2686] Update license.md link to trunk --- odoo/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo/license.md b/odoo/license.md index 31c83177006d..785f6a2deac2 100644 --- a/odoo/license.md +++ b/odoo/license.md @@ -1 +1 @@ -View [license information](https://raw.githubusercontent.com/odoo/odoo/14.0/LICENSE) for the software contained in this image. +View [license information](https://github.com/odoo/odoo/blob/master/LICENSE) for the software contained in this image. From cb0910e55d5bd677d1c7d9726c4d228fec0b0048 Mon Sep 17 00:00:00 2001 From: Andrew Latham Date: Sun, 31 Mar 2024 16:20:06 -0600 Subject: [PATCH 1071/2686] Update content.md Update examples with 17 vs 16 --- odoo/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/odoo/content.md b/odoo/content.md index c9bb340181bb..aecb5a61b3a4 100644 --- a/odoo/content.md +++ b/odoo/content.md @@ -63,7 +63,7 @@ The default configuration file for the server (located at `/etc/odoo/odoo.conf`) $ docker run -v /path/to/config:/etc/odoo -p 8069:8069 --name odoo --link db:db -t %%IMAGE%% ``` -Please use [this configuration template](https://github.com/odoo/docker/blob/master/16.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. +Please use [this configuration template](https://github.com/odoo/docker/blob/master/17.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword `--` in the command-line, as follows @@ -107,7 +107,7 @@ The simplest `docker-compose.yml` file would be: version: '3.1' services: web: - image: %%IMAGE%%:16.0 + image: %%IMAGE%%:17.0 depends_on: - db ports: @@ -126,7 +126,7 @@ If the default postgres credentials does not suit you, tweak the environment var version: '3.1' services: web: - image: %%IMAGE%%:16.0 + image: %%IMAGE%%:17.0 depends_on: - mydb ports: @@ -154,7 +154,7 @@ Here's a last example showing you how to version: '3.1' services: web: - image: %%IMAGE%%:16.0 + image: %%IMAGE%%:17.0 depends_on: - db ports: @@ -199,7 +199,7 @@ Odoo images are updated on a regular basis to make them use recent releases (a n Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image. -By default, Odoo 16.0 uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running +By default, Odoo 16.0+ uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running ```console $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db -t %%IMAGE%% From b2b5e19c460fec794bbf65984b00df4a4a8a309c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Apr 2024 11:10:02 -0700 Subject: [PATCH 1072/2686] Run update.sh --- api-firewall/README.md | 2 +- clearlinux/README.md | 2 +- eggdrop/README.md | 2 +- photon/README.md | 2 +- sl/README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 4f3266699e4a..6ae69ee08f85 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.16`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/f99c6a69f9d7c6dec9d313a21183e54f1e49f6bf/0.6.16/Dockerfile) +- [`0.6.17`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0418873db1cd80bc7fd2aa655e627fa8ff647535/0.6.17/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 6941d8124417..ad4f4daeb3a5 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1910926e5951ac896bb6462d3625c96d8668a3f2/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d9e458fd8490a5c976f2c4e9cec922bebe96af30/Dockerfile) # Quick reference (cont.) diff --git a/eggdrop/README.md b/eggdrop/README.md index c4e050315be3..b7aff1adf96b 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/5c77bc02457523fe3db9e1d7d901ad3027592762/develop/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/ffa90b0ffecc389997799f525e32f45f60b4897a/develop/Dockerfile) - [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/1.9/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index ee82aeeccc28..cace02b03ae1 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240325`, `latest`](https://github.com/vmware/photon-docker-image/blob/63b02fbe9bc50153c6216750392cf51e3a9f30ad/docker/Dockerfile) +- [`5.0`, `5.0-20240331`, `latest`](https://github.com/vmware/photon-docker-image/blob/e7c38d904a0020a67a4c400c15d16922ac7347a0/docker/Dockerfile) - [`4.0`, `4.0-20240325`](https://github.com/vmware/photon-docker-image/blob/59fb75b8a0f026c8f49e6134efbab466ee7d1ae9/docker/Dockerfile) - [`3.0`, `3.0-20240321`](https://github.com/vmware/photon-docker-image/blob/b6c177c3651f9cd861588b86c8a0d7bffee42c92/docker/Dockerfile) diff --git a/sl/README.md b/sl/README.md index aca23b5b0747..9c1475a60ddc 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/cf956bf946be0c0dddeb772ededf869507d73051/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/671d6e866101b32462a507cce49169631a27842f/sl7/Dockerfile) # Quick reference (cont.) From da6411fb1519d3c862596478923671d273d5f45d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Apr 2024 12:19:58 -0700 Subject: [PATCH 1073/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 68ab7c313910..dd02a9871494 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/958e0e5c394a241368fc81ed4d4af9286d47cfcf/telegraf/1.30/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.30/alpine/Dockerfile) # Quick reference (cont.) From db2ca6b8f8bfee24e6b29f3af1c1175fcc3fca5a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Apr 2024 14:21:10 -0700 Subject: [PATCH 1074/2686] Run update.sh --- rust/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/README.md b/rust/README.md index 6e28ee7278ae..c608f401a95b 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.77-buster`, `1.77.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/buster/Dockerfile) -- [`1-slim-buster`, `1.77-slim-buster`, `1.77.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.77-bullseye`, `1.77.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.77-bookworm`, `1.77.0-bookworm`, `bookworm`, `1`, `1.77`, `1.77.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/c8d1e4f5c563dacb16b2aadf827f1be3ff3ac25b/1.77.0/alpine3.19/Dockerfile) +- [`1-buster`, `1.77-buster`, `1.77.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/buster/Dockerfile) +- [`1-slim-buster`, `1.77-slim-buster`, `1.77.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/buster/slim/Dockerfile) +- [`1-bullseye`, `1.77-bullseye`, `1.77.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.77-bookworm`, `1.77.1-bookworm`, `bookworm`, `1`, `1.77`, `1.77.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.1-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.1-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/alpine3.19/Dockerfile) # Quick reference (cont.) From db1a3e0236fd8a7031dcd5590c5eed1280e6fc1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Apr 2024 16:10:09 -0700 Subject: [PATCH 1075/2686] Run update.sh --- docker/README.md | 30 +++++++++++++++--------------- ghost/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 28 ++++++++++++++++++++++++++++ rabbitmq/README.md | 8 ++++---- 5 files changed, 67 insertions(+), 39 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0c64105efaf0..f8636f710828 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/cli/Dockerfile) +- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/cli/Dockerfile) - [`26.0.0-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.0-dind-alpine3.19`, `26.0.0`, `26.0`, `26`, `latest`, `26.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind/Dockerfile) - [`26.0.0-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind-rootless/Dockerfile) -- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/cli/Dockerfile) +- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.0.0-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f8169b09216030a793b7d2d9349e345472e48690/26/windows/windowsservercore-1809/Dockerfile) + - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd877487a10c59ccab6b0712bb84ec3c428cd8bc/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ec77bfcb08da44c1f7c7440f9c44c0c3c905044e/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index b4287f0f4bfb..70a61b9eb15d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.81.0`, `5.81`, `5`, `latest`](https://github.com/docker-library/ghost/blob/847b8a45a6108ad80d25e53333f65a6f91205659/5/debian/Dockerfile) -- [`5.81.0-alpine`, `5.81-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/847b8a45a6108ad80d25e53333f65a6f91205659/5/alpine/Dockerfile) +- [`5.81.1`, `5.81`, `5`, `latest`](https://github.com/docker-library/ghost/blob/81b224e36c638a8864a1bc4ba952e84de0ae29cb/5/debian/Dockerfile) +- [`5.81.1-alpine`, `5.81-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/81b224e36c638a8864a1bc4ba952e84de0ae29cb/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 46d874533261..bc734cbeefbb 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-15-jdk-oraclelinux9`, `23-ea-15-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-15-jdk-oracle`, `23-ea-15-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-15-jdk-oraclelinux8`, `23-ea-15-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-15-jdk-bookworm`, `23-ea-15-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/bookworm/Dockerfile) -- [`23-ea-15-jdk-slim-bookworm`, `23-ea-15-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-15-jdk-slim`, `23-ea-15-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-15-jdk-bullseye`, `23-ea-15-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/bullseye/Dockerfile) -- [`23-ea-15-jdk-slim-bullseye`, `23-ea-15-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-15-jdk-windowsservercore-ltsc2022`, `23-ea-15-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-15-jdk-windowsservercore-1809`, `23-ea-15-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-15-jdk-nanoserver-1809`, `23-ea-15-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-16-jdk-oraclelinux9`, `23-ea-16-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-16-jdk-oracle`, `23-ea-16-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-16-jdk-oraclelinux8`, `23-ea-16-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-16-jdk-bookworm`, `23-ea-16-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/bookworm/Dockerfile) +- [`23-ea-16-jdk-slim-bookworm`, `23-ea-16-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-16-jdk-slim`, `23-ea-16-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-16-jdk-bullseye`, `23-ea-16-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/bullseye/Dockerfile) +- [`23-ea-16-jdk-slim-bullseye`, `23-ea-16-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-16-jdk-windowsservercore-ltsc2022`, `23-ea-16-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-16-jdk-windowsservercore-1809`, `23-ea-16-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-16-jdk-nanoserver-1809`, `23-ea-16-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-15-jdk`, `23-ea-15`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-15-jdk-windowsservercore`, `23-ea-15-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-15-jdk-nanoserver`, `23-ea-15-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29413b7a4a8cfec0a856961829befe652d37bb7e/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-16-jdk`, `23-ea-16`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-16-jdk-windowsservercore`, `23-ea-16-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-16-jdk-nanoserver`, `23-ea-16-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 6dc28614c043..69d6057d4bc6 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.5RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.5RC1-bookworm`, `8.3-rc-bookworm`, `8.3.5RC1-cli`, `8.3-rc-cli`, `8.3.5RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.5RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.5RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.5RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.5RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.5RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.5RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.5RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.5RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.5RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.5RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.5RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.5RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.5RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.5RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.5RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.5RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.5RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.5RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.5RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.5RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.5RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.5RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.5RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.4-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.4-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.4-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.4`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/cli/Dockerfile) - [`8.3.4-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.4-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/apache/Dockerfile) - [`8.3.4-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.4-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.4-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.4-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/cli/Dockerfile) - [`8.3.4-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/fpm/Dockerfile) - [`8.3.4-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.18RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.18RC1-bookworm`, `8.2-rc-bookworm`, `8.2.18RC1-cli`, `8.2-rc-cli`, `8.2.18RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.18RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.18RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.18RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.18RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.18RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.18RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.18RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.18RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.18RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.18RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.18RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.18RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.18RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.18RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.18RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.18RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.18RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.18RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.18RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.18RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.18RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.18RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.18RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.17-cli-bookworm`, `8.2-cli-bookworm`, `8.2.17-bookworm`, `8.2-bookworm`, `8.2.17-cli`, `8.2-cli`, `8.2.17`, `8.2`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/cli/Dockerfile) - [`8.2.17-apache-bookworm`, `8.2-apache-bookworm`, `8.2.17-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/apache/Dockerfile) - [`8.2.17-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.17-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/fpm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 5a1d0ed22c39..1e67a35a7089 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.0`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/Dockerfile) -- [`3.13.0-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/Dockerfile) -- [`3.13.0-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.1`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f83b6d92a99e5bc967fcac201ee6439f1a4849c2/3.13/ubuntu/Dockerfile) +- [`3.13.1-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f83b6d92a99e5bc967fcac201ee6439f1a4849c2/3.13/alpine/Dockerfile) +- [`3.13.1-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/ubuntu/Dockerfile) - [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/alpine/Dockerfile) From adfe179999681cef169ce7b371ca29d4e3fc2ed6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Apr 2024 17:21:52 -0700 Subject: [PATCH 1076/2686] Run update.sh --- tomcat/README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index 58e044a67a95..2f6504a11a53 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -50,24 +50,6 @@ WARNING: - [`9.0.87-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-focal/Dockerfile) - [`9.0.87-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-focal/Dockerfile) - [`9.0.87-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.87-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/corretto-al2/Dockerfile) -- [`8.5.100-jdk21-temurin-jammy`, `8.5-jdk21-temurin-jammy`, `8-jdk21-temurin-jammy`, `8.5.100-jdk21-temurin`, `8.5-jdk21-temurin`, `8-jdk21-temurin`, `8.5.100-jdk21`, `8.5-jdk21`, `8-jdk21`, `8.5.100`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk21/temurin-jammy/Dockerfile) -- [`8.5.100-jre21-temurin-jammy`, `8.5-jre21-temurin-jammy`, `8-jre21-temurin-jammy`, `8.5.100-jre21-temurin`, `8.5-jre21-temurin`, `8-jre21-temurin`, `8.5.100-jre21`, `8.5-jre21`, `8-jre21`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre21/temurin-jammy/Dockerfile) -- [`8.5.100-jdk21-corretto-al2`, `8.5-jdk21-corretto-al2`, `8-jdk21-corretto-al2`, `8.5.100-jdk21-corretto`, `8.5-jdk21-corretto`, `8-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk21/corretto-al2/Dockerfile) -- [`8.5.100-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.100-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.100-jdk17`, `8.5-jdk17`, `8-jdk17`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/temurin-jammy/Dockerfile) -- [`8.5.100-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.100-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.100-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre17/temurin-jammy/Dockerfile) -- [`8.5.100-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/temurin-focal/Dockerfile) -- [`8.5.100-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre17/temurin-focal/Dockerfile) -- [`8.5.100-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.100-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk17/corretto-al2/Dockerfile) -- [`8.5.100-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.100-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.100-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/temurin-jammy/Dockerfile) -- [`8.5.100-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.100-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.100-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre11/temurin-jammy/Dockerfile) -- [`8.5.100-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/temurin-focal/Dockerfile) -- [`8.5.100-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre11/temurin-focal/Dockerfile) -- [`8.5.100-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.100-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk11/corretto-al2/Dockerfile) -- [`8.5.100-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.100-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.100-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/temurin-jammy/Dockerfile) -- [`8.5.100-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.100-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.100-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre8/temurin-jammy/Dockerfile) -- [`8.5.100-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/temurin-focal/Dockerfile) -- [`8.5.100-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jre8/temurin-focal/Dockerfile) -- [`8.5.100-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.100-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/1ef6e6cdda8fa813367d1fb924f48cfb8aa138de/8.5/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From d20d2b4364c7f181ce221bddda8d86d42d944f6b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Apr 2024 10:10:31 -0700 Subject: [PATCH 1077/2686] Run update.sh --- photon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon/README.md b/photon/README.md index cace02b03ae1..9f40f14e097c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20240331`, `latest`](https://github.com/vmware/photon-docker-image/blob/e7c38d904a0020a67a4c400c15d16922ac7347a0/docker/Dockerfile) -- [`4.0`, `4.0-20240325`](https://github.com/vmware/photon-docker-image/blob/59fb75b8a0f026c8f49e6134efbab466ee7d1ae9/docker/Dockerfile) +- [`4.0`, `4.0-20240401`](https://github.com/vmware/photon-docker-image/blob/6001909dd7b72f7cd5f6ac7bea41d735588eb08c/docker/Dockerfile) - [`3.0`, `3.0-20240321`](https://github.com/vmware/photon-docker-image/blob/b6c177c3651f9cd861588b86c8a0d7bffee42c92/docker/Dockerfile) # Quick reference (cont.) From 2dd3b1dcdfc91b9ec8fd4d23bc2dab0984cd66b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Apr 2024 11:22:18 -0700 Subject: [PATCH 1078/2686] Run update.sh --- bash/README.md | 2 +- geonetwork/README.md | 2 +- odoo/README.md | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bash/README.md b/bash/README.md index ab49759d814a..7a0e5fc49880 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240325`, `devel`, `devel-20240325-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/aaf9f95d5b78cffae86501876f31fa989b6ac5ab/devel/Dockerfile) +- [`devel-20240401`, `devel`, `devel-20240401-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/524f0baff9a921cf8099421f629bed6d4872cb04/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index 4e269b3dcfd1..11457803386b 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) +- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) - [`4.2.9`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/9d0986dbc5a86e183599575e098f95f2f58e46cd/4.2.9/Dockerfile) - [`4.4.3`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/692f3d2851d6fc7e2482291774b19a856eae43f8/4.4.3/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index a964ba9a218d..dfed34494795 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -112,7 +112,7 @@ The default configuration file for the server (located at `/etc/odoo/odoo.conf`) $ docker run -v /path/to/config:/etc/odoo -p 8069:8069 --name odoo --link db:db -t odoo ``` -Please use [this configuration template](https://github.com/odoo/docker/blob/master/16.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. +Please use [this configuration template](https://github.com/odoo/docker/blob/master/17.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword `--` in the command-line, as follows @@ -156,7 +156,7 @@ The simplest `docker-compose.yml` file would be: version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - db ports: @@ -175,7 +175,7 @@ If the default postgres credentials does not suit you, tweak the environment var version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - mydb ports: @@ -203,7 +203,7 @@ Here's a last example showing you how to version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - db ports: @@ -248,7 +248,7 @@ Odoo images are updated on a regular basis to make them use recent releases (a n Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image. -By default, Odoo 16.0 uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running +By default, Odoo 16.0+ uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running ```console $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db -t odoo @@ -256,7 +256,7 @@ $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db - # License -View [license information](https://raw.githubusercontent.com/odoo/odoo/14.0/LICENSE) for the software contained in this image. +View [license information](https://github.com/odoo/odoo/blob/master/LICENSE) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). From 2a2fcce727f63b7868dcfcb6bcda3d2309b68264 Mon Sep 17 00:00:00 2001 From: J0WI Date: Fri, 29 Mar 2024 15:41:18 +0100 Subject: [PATCH 1079/2686] Update Nextcloud --- nextcloud/content.md | 156 ++++++++++++++++++++++++++++--------------- 1 file changed, 101 insertions(+), 55 deletions(-) diff --git a/nextcloud/content.md b/nextcloud/content.md index 7edd51ff5696..0b3663ab9f2e 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -26,7 +26,7 @@ Now you can access Nextcloud at http://localhost:8080/ from your host system. ## Using the fpm image -To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. +To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. ```console $ docker run -d %%IMAGE%%:fpm @@ -48,22 +48,24 @@ Nextcloud: - `/var/www/html/` folder where all Nextcloud data lives - ```console - $ docker run -d \ - -v nextcloud:/var/www/html \ - %%IMAGE%% - ``` +```console +$ docker run -d \ +-v nextcloud:/var/www/html \ +%%IMAGE%% +``` Database: - `/var/lib/mysql` MySQL / MariaDB Data - `/var/lib/postgresql/data` PostgreSQL Data - ```console - $ docker run -d \ - -v db:/var/lib/mysql \ - mariadb:10.6 - ``` +```console +$ docker run -d \ +-v db:/var/lib/mysql \ +mariadb:10.6 +``` + +### Additional volumes If you want to get fine grained access to your individual files, you can mount additional volumes for data, config, your theme and custom apps. The `data`, `config` files are stored in respective subfolders inside `/var/www/html/`. The apps are split into core `apps` (which are shipped with Nextcloud and you don't need to take care of) and a `custom_apps` folder. If you use a custom theme it would go into the `themes` subfolder. @@ -79,14 +81,23 @@ If you want to use named volumes for all of these, it would look like this: ```console $ docker run -d \ - -v nextcloud:/var/www/html \ - -v apps:/var/www/html/custom_apps \ - -v config:/var/www/html/config \ - -v data:/var/www/html/data \ - -v theme:/var/www/html/themes/ \ - %%IMAGE%% +-v nextcloud:/var/www/html \ +-v apps:/var/www/html/custom_apps \ +-v config:/var/www/html/config \ +-v data:/var/www/html/data \ +-v theme:/var/www/html/themes/ \ +%%IMAGE%% ``` +### Custom volumes + +If mounting additional volumes under `/var/www/html`, you should consider: + +- Confirming that [upgrade.exclude](https://github.com/nextcloud/docker/blob/master/upgrade.exclude) contains the files and folders that should persist during installation and upgrades; or +- Mounting storage volumes to locations outside of `/var/www/html`. + +> You should note that data inside the main folder (`/var/www/html`) will be overridden/removed during installation and upgrades, unless listed in [upgrade.exclude](https://github.com/nextcloud/docker/blob/master/upgrade.exclude). The additional volumes officially supported are already in that list, but custom volumes will need to be added by you. We suggest mounting custom storage volumes outside of `/var/www/html` and if possible read-only so that making this adjustment is unnecessary. If you must do so, however, you may build a custom image with a modified `/upgrade.exclude` file that incorporates your custom volume(s). + ## Using the Nextcloud command-line interface To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html) (aka. `occ` command): @@ -123,7 +134,7 @@ The Nextcloud image supports auto configuration via environment variables. You c - `POSTGRES_PASSWORD` Password for the database user using postgres. - `POSTGRES_HOST` Hostname of the database server using postgres. -As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. See [Docker secrets](#docker=secrets) section below. +As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. See [Docker secrets](#docker-secrets) section below. If you set any group of values (i.e. all of `MYSQL_DATABASE`, `MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_HOST`), they will not be asked in the install page on first run. With a complete configuration by using all variables for your database type, you can additionally configure your Nextcloud instance by setting admin user and password (only works if you set both): @@ -142,11 +153,7 @@ The install and update script is only triggered when a default command is used ( - `NEXTCLOUD_UPDATE` (default: `0`) -If you share your html folder with multiple docker containers, you might want to avoid multiple processes updating the same shared volume - -- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue. - -You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. +You might want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. - `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. @@ -166,7 +173,7 @@ To use an external SMTP server, you have to provide the connection details. To c - `SMTP_AUTHTYPE` (default: `LOGIN`): The method used for authentication. Use `PLAIN` if no authentication is required. - `SMTP_NAME` (empty by default): The username for the authentication. - `SMTP_PASSWORD` (empty by default): The password for the authentication. -- `MAIL_FROM_ADDRESS` (not set by default): Use this address for the 'from' field in the emails sent by Nextcloud. +- `MAIL_FROM_ADDRESS` (not set by default): Set the local-part for the 'from' field in the emails sent by Nextcloud. - `MAIL_DOMAIN` (not set by default): Set a different domain for the emails than the domain where Nextcloud is installed. At least `SMTP_HOST`, `MAIL_FROM_ADDRESS` and `MAIL_DOMAIN` must be set for the configurations to be applied. @@ -175,17 +182,19 @@ Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/adm To use an external S3 compatible object store as primary storage, set the following variables: -- `OBJECTSTORE_S3_HOST`: The hostname of the object storage server - `OBJECTSTORE_S3_BUCKET`: The name of the bucket that Nextcloud should store the data in +- `OBJECTSTORE_S3_REGION`: The region that the S3 bucket resides in +- `OBJECTSTORE_S3_HOST`: The hostname of the object storage server +- `OBJECTSTORE_S3_PORT`: The port that the object storage server is being served over - `OBJECTSTORE_S3_KEY`: AWS style access key - `OBJECTSTORE_S3_SECRET`: AWS style secret access key -- `OBJECTSTORE_S3_PORT`: The port that the object storage server is being served over +- `OBJECTSTORE_S3_STORAGE_CLASS`: The storage class to use when adding objects to the bucket - `OBJECTSTORE_S3_SSL` (default: `true`): Whether or not SSL/TLS should be used to communicate with object storage server -- `OBJECTSTORE_S3_REGION`: The region that the S3 bucket resides in. - `OBJECTSTORE_S3_USEPATH_STYLE` (default: `false`): Not required for AWS S3 - `OBJECTSTORE_S3_LEGACYAUTH` (default: `false`): Not required for AWS S3 - `OBJECTSTORE_S3_OBJECT_PREFIX` (default: `urn:oid:`): Prefix to prepend to the fileid - `OBJECTSTORE_S3_AUTOCREATE` (default: `true`): Create the container if it does not exist +- `OBJECTSTORE_S3_SSE_C_KEY` (not set by default): Base64 encoded key with a maximum length of 32 bytes for server side encryption (SSE-C) Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/primary_storage.html#simple-storage-service-s3) for more information. @@ -209,6 +218,43 @@ To customize other PHP limits you can simply change the following variables: - `PHP_MEMORY_LIMIT` (default `512M`) This sets the maximum amount of memory in bytes that a script is allowed to allocate. This is meant to help prevent poorly written scripts from eating up all available memory but it can prevent normal operation if set too tight. - `PHP_UPLOAD_LIMIT` (default `512M`) This sets the upload limit (`post_max_size` and `upload_max_filesize`) for big files. Note that you may have to change other limits depending on your client, webserver or operating system. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html) for more information. +To customize Apache max file upload limit you can change the following variable: + +- `APACHE_BODY_LIMIT` (default `1073741824` [1GiB]) This restricts the total size of the HTTP request body sent from the client. It specifies the number of *bytes* that are allowed in a request body. A value of **0** means **unlimited**. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html#apache) for more information. + +## Auto configuration via hook folders + +There are 5 hooks + +- `pre-installation` Executed before the Nextcloud is installed/initiated +- `post-installation` Executed after the Nextcloud is installed/initiated +- `pre-upgrade` Executed before the Nextcloud is upgraded +- `post-upgrade` Executed after the Nextcloud is upgraded +- `before-starting` Executed before the Nextcloud starts + +To use the hooks triggered by the `entrypoint` script, either + +- Added your script(s) to the individual of the hook folder(s), which are located at the path `/docker-entrypoint-hooks.d` in the container +- Use volume(s) if you want to use script from the host system inside the container, see example. + +**Note:** Only the script(s) located in a hook folder (not sub-folders), ending with `.sh` and marked as executable, will be executed. + +**Example:** Mount using volumes + +```yaml +... + app: + image: %%IMAGE%%:stable + + volumes: + - ./app-hooks/pre-installation:/docker-entrypoint-hooks.d/pre-installation + - ./app-hooks/post-installation:/docker-entrypoint-hooks.d/post-installation + - ./app-hooks/pre-upgrade:/docker-entrypoint-hooks.d/pre-upgrade + - ./app-hooks/post-upgrade:/docker-entrypoint-hooks.d/post-upgrade + - ./app-hooks/before-starting:/docker-entrypoint-hooks.d/before-starting +... +``` + ## Using the apache image behind a reverse proxy and auto configure server host and protocol The apache image will replace the remote addr (IP address visible to Nextcloud) with the IP address from `X-Real-IP` if the request is coming from a proxy in `10.0.0.0/8`, `172.16.0.0/12` or `192.168.0.0/16` by default. If you want Nextcloud to pick up the server host (`HTTP_X_FORWARDED_HOST`), protocol (`HTTP_X_FORWARDED_PROTO`) and client IP (`HTTP_X_FORWARDED_FOR`) from a trusted proxy, then disable rewrite IP and add the reverse proxy's IP address to `TRUSTED_PROXIES`. @@ -357,7 +403,7 @@ services: - postgres_user app: - image: nextcloud + image: %%IMAGE%% restart: always ports: - 8080:80 @@ -396,7 +442,7 @@ secrets: file: ./postgres_user.txt # put postgresql username in this file ``` -Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DATABASE`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER`, `REDIS_HOST_PASSWORD` and `SMTP_PASSWORD`. +Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DATABASE`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER`, `REDIS_HOST_PASSWORD`, `SMTP_PASSWORD`, `OBJECTSTORE_S3_KEY`, and `OBJECTSTORE_S3_SECRET`. If you set any group of values (i.e. all of `MYSQL_DATABASE_FILE`, `MYSQL_USER_FILE`, `MYSQL_PASSWORD_FILE`, `MYSQL_HOST`), the script will not use the corresponding group of environment variables (`MYSQL_DATABASE`, `MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_HOST`). @@ -504,19 +550,19 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som - To import from a MySQL dump use the following commands - ```console - docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" - docker-compose exec db rm /dmp - ``` + ```console + docker cp ./database.dmp nextcloud_db_1:/dmp + docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" + docker-compose exec db rm /dmp + ``` - To import from a PostgreSQL dump use to following commands - ```console - docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" - docker-compose exec db rm /dmp - ``` + ```console + docker cp ./database.dmp nextcloud_db_1:/dmp + docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" + docker-compose exec db rm /dmp + ``` 3. Edit your config.php @@ -524,15 +570,15 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som - In case of MySQL database - ```php - 'dbhost' => 'db:3306', - ``` + ```php + 'dbhost' => 'db:3306', + ``` - In case of PostgreSQL database - ```php - 'dbhost' => 'db:5432', - ``` + ```php + 'dbhost' => 'db:5432', + ``` 2. Make sure you have no configuration for the `apps_paths`. Delete lines like these @@ -550,16 +596,16 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```php 'apps_paths' => array ( - 0 => array ( - 'path' => '/var/www/html/apps', - 'url' => '/apps', - 'writable' => false, - ), - 1 => array ( - 'path' => '/var/www/html/custom_apps', - 'url' => '/custom_apps', - 'writable' => true, - ), + 0 => array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), ), ``` From f1b178b191a28fe6cc53e66f1d9694edf7abade1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Apr 2024 17:22:30 -0700 Subject: [PATCH 1080/2686] Run update.sh --- aerospike/README.md | 4 +- amazoncorretto/README.md | 96 ++++++++++++------------ maven/README.md | 61 ++++++++-------- nextcloud/README.md | 154 +++++++++++++++++++++++++-------------- 4 files changed, 182 insertions(+), 133 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index bf0c4899bd8e..9f07054fae24 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.6`, `ee-7.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/f2e42d0303e91adef6bb9cc7edfec12981dacfdd/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.6`, `ce-7.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/f2e42d0303e91adef6bb9cc7edfec12981dacfdd/community/debian12/Dockerfile) +- [`ee-7.0.0.7`, `ee-7.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/ac0da549af226cf585ebd413fdc087dba202733b/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.7`, `ce-7.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/ac0da549af226cf585ebd413fdc087dba202733b/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 11ea788d8849..cd865d9bb45f 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,54 +24,54 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/8/jre/alpine/3.19/Dockerfile) -- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/17/jdk/alpine/3.19/Dockerfile) -- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/21/jdk/alpine/3.19/Dockerfile) -- [`22-al2023`, `22.0.0-al2023`, `22-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/al2023/Dockerfile) -- [`22-al2023-headless`, `22.0.0-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/headless/al2023/Dockerfile) -- [`22-al2023-headful`, `22.0.0-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/headful/al2023/Dockerfile) -- [`22-alpine3.16`, `22.0.0-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.16/Dockerfile) -- [`22-alpine3.17`, `22.0.0-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.17/Dockerfile) -- [`22-alpine3.18`, `22.0.0-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.18/Dockerfile) -- [`22-alpine3.19`, `22.0.0-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.0-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3fef46a18c264008f38a7437cd7f377a5870e4d9/22/jdk/alpine/3.19/Dockerfile) +- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.19/Dockerfile) +- [`22-al2023`, `22.0.0-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/al2023/Dockerfile) +- [`22-al2023-headless`, `22.0.0-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/headless/al2023/Dockerfile) +- [`22-al2023-headful`, `22.0.0-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/headful/al2023/Dockerfile) +- [`22-alpine3.16`, `22.0.0-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.16/Dockerfile) +- [`22-alpine3.17`, `22.0.0-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.17/Dockerfile) +- [`22-alpine3.18`, `22.0.0-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.18/Dockerfile) +- [`22-alpine3.19`, `22.0.0-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.0-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 96d9d25abf59..b55619d8c491 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,37 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.6-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11/Dockerfile) -- [`3.9.6-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.6-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17/Dockerfile) -- [`3.9.6-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.6-eclipse-temurin-21`, `3.9.6`, `3.9.6-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21/Dockerfile) -- [`3.9.6-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11/Dockerfile) +- [`3.9.6-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.6-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17/Dockerfile) +- [`3.9.6-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.6-eclipse-temurin-21`, `3.9.6`, `3.9.6-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-21/Dockerfile) +- [`3.9.6-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-21-alpine/Dockerfile) - [`3.9.6-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/66d4af0bdfd1b0cfb621aa85691b569cad200596/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.6-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8/Dockerfile) -- [`3.9.6-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.6-ibmjava-8`, `3.9.6-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibmjava-8/Dockerfile) -- [`3.9.6-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-11-focal/Dockerfile) -- [`3.9.6-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/ibm-semeru-17-focal/Dockerfile) +- [`3.9.6-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22/Dockerfile) +- [`3.9.6-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22-jammy/Dockerfile) +- [`3.9.6-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8/Dockerfile) +- [`3.9.6-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.6-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.6-ibmjava-8`, `3.9.6-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibmjava-8/Dockerfile) +- [`3.9.6-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibm-semeru-11-focal/Dockerfile) +- [`3.9.6-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibm-semeru-17-focal/Dockerfile) - [`3.9.6-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/77c76c589cdec3bd22e5dc18c8d7da20d486b604/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.6-amazoncorretto-11`, `3.9.6-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11/Dockerfile) -- [`3.9.6-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-11-debian`, `3.9.6-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-11-debian/Dockerfile) -- [`3.9.6-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17/Dockerfile) -- [`3.9.6-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-17-debian`, `3.9.6-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-17-debian/Dockerfile) -- [`3.9.6-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21/Dockerfile) -- [`3.9.6-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-21-debian`, `3.9.6-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-21-debian/Dockerfile) -- [`3.9.6-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8/Dockerfile) -- [`3.9.6-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-8-debian`, `3.9.6-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/amazoncorretto-8-debian/Dockerfile) -- [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-11/Dockerfile) -- [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-17/Dockerfile) -- [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/e545dcfa4d312e08330f4e07701763db3889db79/sapmachine-21/Dockerfile) +- [`3.9.6-amazoncorretto-11`, `3.9.6-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-11/Dockerfile) +- [`3.9.6-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-11-debian`, `3.9.6-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-11-debian/Dockerfile) +- [`3.9.6-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-17/Dockerfile) +- [`3.9.6-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-17-debian`, `3.9.6-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-17-debian/Dockerfile) +- [`3.9.6-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-21/Dockerfile) +- [`3.9.6-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-21-debian`, `3.9.6-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-21-debian/Dockerfile) +- [`3.9.6-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-8/Dockerfile) +- [`3.9.6-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.6-amazoncorretto-8-debian`, `3.9.6-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-8-debian/Dockerfile) +- [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-11/Dockerfile) +- [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-17/Dockerfile) +- [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-21/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 40ee49a01e0b..9dcc783343b4 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -85,7 +85,7 @@ Now you can access Nextcloud at http://localhost:8080/ from your host system. ## Using the fpm image -To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. +To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. ```console $ docker run -d nextcloud:fpm @@ -107,22 +107,24 @@ Nextcloud: - `/var/www/html/` folder where all Nextcloud data lives - ```console - $ docker run -d \ - -v nextcloud:/var/www/html \ - nextcloud - ``` +```console +$ docker run -d \ +-v nextcloud:/var/www/html \ +nextcloud +``` Database: - `/var/lib/mysql` MySQL / MariaDB Data - `/var/lib/postgresql/data` PostgreSQL Data - ```console - $ docker run -d \ - -v db:/var/lib/mysql \ - mariadb:10.6 - ``` +```console +$ docker run -d \ +-v db:/var/lib/mysql \ +mariadb:10.6 +``` + +### Additional volumes If you want to get fine grained access to your individual files, you can mount additional volumes for data, config, your theme and custom apps. The `data`, `config` files are stored in respective subfolders inside `/var/www/html/`. The apps are split into core `apps` (which are shipped with Nextcloud and you don't need to take care of) and a `custom_apps` folder. If you use a custom theme it would go into the `themes` subfolder. @@ -138,14 +140,23 @@ If you want to use named volumes for all of these, it would look like this: ```console $ docker run -d \ - -v nextcloud:/var/www/html \ - -v apps:/var/www/html/custom_apps \ - -v config:/var/www/html/config \ - -v data:/var/www/html/data \ - -v theme:/var/www/html/themes/ \ - nextcloud +-v nextcloud:/var/www/html \ +-v apps:/var/www/html/custom_apps \ +-v config:/var/www/html/config \ +-v data:/var/www/html/data \ +-v theme:/var/www/html/themes/ \ +nextcloud ``` +### Custom volumes + +If mounting additional volumes under `/var/www/html`, you should consider: + +- Confirming that [upgrade.exclude](https://github.com/nextcloud/docker/blob/master/upgrade.exclude) contains the files and folders that should persist during installation and upgrades; or +- Mounting storage volumes to locations outside of `/var/www/html`. + +> You should note that data inside the main folder (`/var/www/html`) will be overridden/removed during installation and upgrades, unless listed in [upgrade.exclude](https://github.com/nextcloud/docker/blob/master/upgrade.exclude). The additional volumes officially supported are already in that list, but custom volumes will need to be added by you. We suggest mounting custom storage volumes outside of `/var/www/html` and if possible read-only so that making this adjustment is unnecessary. If you must do so, however, you may build a custom image with a modified `/upgrade.exclude` file that incorporates your custom volume(s). + ## Using the Nextcloud command-line interface To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html) (aka. `occ` command): @@ -182,7 +193,7 @@ The Nextcloud image supports auto configuration via environment variables. You c - `POSTGRES_PASSWORD` Password for the database user using postgres. - `POSTGRES_HOST` Hostname of the database server using postgres. -As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. See [Docker secrets](#docker=secrets) section below. +As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. See [Docker secrets](#docker-secrets) section below. If you set any group of values (i.e. all of `MYSQL_DATABASE`, `MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_HOST`), they will not be asked in the install page on first run. With a complete configuration by using all variables for your database type, you can additionally configure your Nextcloud instance by setting admin user and password (only works if you set both): @@ -201,11 +212,7 @@ The install and update script is only triggered when a default command is used ( - `NEXTCLOUD_UPDATE` (default: `0`) -If you share your html folder with multiple docker containers, you might want to avoid multiple processes updating the same shared volume - -- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue. - -You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. +You might want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable. - `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. @@ -225,7 +232,7 @@ To use an external SMTP server, you have to provide the connection details. To c - `SMTP_AUTHTYPE` (default: `LOGIN`): The method used for authentication. Use `PLAIN` if no authentication is required. - `SMTP_NAME` (empty by default): The username for the authentication. - `SMTP_PASSWORD` (empty by default): The password for the authentication. -- `MAIL_FROM_ADDRESS` (not set by default): Use this address for the 'from' field in the emails sent by Nextcloud. +- `MAIL_FROM_ADDRESS` (not set by default): Set the local-part for the 'from' field in the emails sent by Nextcloud. - `MAIL_DOMAIN` (not set by default): Set a different domain for the emails than the domain where Nextcloud is installed. At least `SMTP_HOST`, `MAIL_FROM_ADDRESS` and `MAIL_DOMAIN` must be set for the configurations to be applied. @@ -234,17 +241,19 @@ Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/adm To use an external S3 compatible object store as primary storage, set the following variables: -- `OBJECTSTORE_S3_HOST`: The hostname of the object storage server - `OBJECTSTORE_S3_BUCKET`: The name of the bucket that Nextcloud should store the data in +- `OBJECTSTORE_S3_REGION`: The region that the S3 bucket resides in +- `OBJECTSTORE_S3_HOST`: The hostname of the object storage server +- `OBJECTSTORE_S3_PORT`: The port that the object storage server is being served over - `OBJECTSTORE_S3_KEY`: AWS style access key - `OBJECTSTORE_S3_SECRET`: AWS style secret access key -- `OBJECTSTORE_S3_PORT`: The port that the object storage server is being served over +- `OBJECTSTORE_S3_STORAGE_CLASS`: The storage class to use when adding objects to the bucket - `OBJECTSTORE_S3_SSL` (default: `true`): Whether or not SSL/TLS should be used to communicate with object storage server -- `OBJECTSTORE_S3_REGION`: The region that the S3 bucket resides in. - `OBJECTSTORE_S3_USEPATH_STYLE` (default: `false`): Not required for AWS S3 - `OBJECTSTORE_S3_LEGACYAUTH` (default: `false`): Not required for AWS S3 - `OBJECTSTORE_S3_OBJECT_PREFIX` (default: `urn:oid:`): Prefix to prepend to the fileid - `OBJECTSTORE_S3_AUTOCREATE` (default: `true`): Create the container if it does not exist +- `OBJECTSTORE_S3_SSE_C_KEY` (not set by default): Base64 encoded key with a maximum length of 32 bytes for server side encryption (SSE-C) Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/primary_storage.html#simple-storage-service-s3) for more information. @@ -268,6 +277,43 @@ To customize other PHP limits you can simply change the following variables: - `PHP_MEMORY_LIMIT` (default `512M`) This sets the maximum amount of memory in bytes that a script is allowed to allocate. This is meant to help prevent poorly written scripts from eating up all available memory but it can prevent normal operation if set too tight. - `PHP_UPLOAD_LIMIT` (default `512M`) This sets the upload limit (`post_max_size` and `upload_max_filesize`) for big files. Note that you may have to change other limits depending on your client, webserver or operating system. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html) for more information. +To customize Apache max file upload limit you can change the following variable: + +- `APACHE_BODY_LIMIT` (default `1073741824` [1GiB]) This restricts the total size of the HTTP request body sent from the client. It specifies the number of *bytes* that are allowed in a request body. A value of **0** means **unlimited**. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html#apache) for more information. + +## Auto configuration via hook folders + +There are 5 hooks + +- `pre-installation` Executed before the Nextcloud is installed/initiated +- `post-installation` Executed after the Nextcloud is installed/initiated +- `pre-upgrade` Executed before the Nextcloud is upgraded +- `post-upgrade` Executed after the Nextcloud is upgraded +- `before-starting` Executed before the Nextcloud starts + +To use the hooks triggered by the `entrypoint` script, either + +- Added your script(s) to the individual of the hook folder(s), which are located at the path `/docker-entrypoint-hooks.d` in the container +- Use volume(s) if you want to use script from the host system inside the container, see example. + +**Note:** Only the script(s) located in a hook folder (not sub-folders), ending with `.sh` and marked as executable, will be executed. + +**Example:** Mount using volumes + +```yaml +... + app: + image: nextcloud:stable + + volumes: + - ./app-hooks/pre-installation:/docker-entrypoint-hooks.d/pre-installation + - ./app-hooks/post-installation:/docker-entrypoint-hooks.d/post-installation + - ./app-hooks/pre-upgrade:/docker-entrypoint-hooks.d/pre-upgrade + - ./app-hooks/post-upgrade:/docker-entrypoint-hooks.d/post-upgrade + - ./app-hooks/before-starting:/docker-entrypoint-hooks.d/before-starting +... +``` + ## Using the apache image behind a reverse proxy and auto configure server host and protocol The apache image will replace the remote addr (IP address visible to Nextcloud) with the IP address from `X-Real-IP` if the request is coming from a proxy in `10.0.0.0/8`, `172.16.0.0/12` or `192.168.0.0/16` by default. If you want Nextcloud to pick up the server host (`HTTP_X_FORWARDED_HOST`), protocol (`HTTP_X_FORWARDED_PROTO`) and client IP (`HTTP_X_FORWARDED_FOR`) from a trusted proxy, then disable rewrite IP and add the reverse proxy's IP address to `TRUSTED_PROXIES`. @@ -455,7 +501,7 @@ secrets: file: ./postgres_user.txt # put postgresql username in this file ``` -Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DATABASE`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER`, `REDIS_HOST_PASSWORD` and `SMTP_PASSWORD`. +Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DATABASE`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER`, `REDIS_HOST_PASSWORD`, `SMTP_PASSWORD`, `OBJECTSTORE_S3_KEY`, and `OBJECTSTORE_S3_SECRET`. If you set any group of values (i.e. all of `MYSQL_DATABASE_FILE`, `MYSQL_USER_FILE`, `MYSQL_PASSWORD_FILE`, `MYSQL_HOST`), the script will not use the corresponding group of environment variables (`MYSQL_DATABASE`, `MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_HOST`). @@ -563,19 +609,19 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som - To import from a MySQL dump use the following commands - ```console - docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" - docker-compose exec db rm /dmp - ``` + ```console + docker cp ./database.dmp nextcloud_db_1:/dmp + docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" + docker-compose exec db rm /dmp + ``` - To import from a PostgreSQL dump use to following commands - ```console - docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" - docker-compose exec db rm /dmp - ``` + ```console + docker cp ./database.dmp nextcloud_db_1:/dmp + docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" + docker-compose exec db rm /dmp + ``` 3. Edit your config.php @@ -583,15 +629,15 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som - In case of MySQL database - ```php - 'dbhost' => 'db:3306', - ``` + ```php + 'dbhost' => 'db:3306', + ``` - In case of PostgreSQL database - ```php - 'dbhost' => 'db:5432', - ``` + ```php + 'dbhost' => 'db:5432', + ``` 2. Make sure you have no configuration for the `apps_paths`. Delete lines like these @@ -609,16 +655,16 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```php 'apps_paths' => array ( - 0 => array ( - 'path' => '/var/www/html/apps', - 'url' => '/apps', - 'writable' => false, - ), - 1 => array ( - 'path' => '/var/www/html/custom_apps', - 'url' => '/custom_apps', - 'writable' => true, - ), + 0 => array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), ), ``` From a157fb54b2fd0da4c1ebc980aedf4f1a4df0a717 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 10:10:17 -0700 Subject: [PATCH 1081/2686] Run update.sh --- couchbase/README.md | 4 +-- golang/README.md | 72 ++++++++++++++++++++++----------------------- wordpress/README.md | 27 ++++++----------- 3 files changed, 47 insertions(+), 56 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 833494092550..9f6d8b93d441 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.0`, `enterprise-7.6.0`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/203e62f36ce055be75955e073d0000249bf2c040/enterprise/couchbase-server/7.6.0/Dockerfile) -- [`community-7.6.0`, `community`](https://github.com/couchbase/docker/blob/7148bc241bcdcf8961c34f8adf76ebfb2860ed83/community/couchbase-server/7.6.0/Dockerfile) +- [`7.6.1`, `enterprise-7.6.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) +- [`community-7.6.1`, `community`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) - [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.2.4/Dockerfile) - [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) - [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.1.6/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 5c0e214ec15f..896c2dc1ee5b 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.22.1-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bookworm/Dockerfile) -- [`1.22.1-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bullseye/Dockerfile) -- [`1.22.1-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.1-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/alpine3.19/Dockerfile) -- [`1.22.1-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/alpine3.18/Dockerfile) -- [`1.22.1-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.1-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.1-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.1-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.8-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bookworm/Dockerfile) -- [`1.21.8-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bullseye/Dockerfile) -- [`1.21.8-alpine3.19`, `1.21-alpine3.19`, `1.21.8-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/alpine3.19/Dockerfile) -- [`1.21.8-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/alpine3.18/Dockerfile) -- [`1.21.8-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.8-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.8-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.8-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.2-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bookworm/Dockerfile) +- [`1.22.2-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bullseye/Dockerfile) +- [`1.22.2-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.2-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/alpine3.19/Dockerfile) +- [`1.22.2-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/alpine3.18/Dockerfile) +- [`1.22.2-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.2-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.2-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.2-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.9-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bookworm/Dockerfile) +- [`1.21.9-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bullseye/Dockerfile) +- [`1.21.9-alpine3.19`, `1.21-alpine3.19`, `1.21.9-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/alpine3.19/Dockerfile) +- [`1.21.9-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/alpine3.18/Dockerfile) +- [`1.21.9-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.9-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.9-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.9-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.22.1`, `1.22`, `1`, `latest`: - - [`1.22.1-bookworm`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/bookworm/Dockerfile) - - [`1.22.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.1-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.1-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d5ba02dca99c1a2d221c4a20e45eedc0f0380f31/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.8`, `1.21`: - - [`1.21.8-bookworm`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/bookworm/Dockerfile) - - [`1.21.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.8-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.8-nanoserver`, `1.21-nanoserver`: - - [`1.21.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/50cb3f84c47119184e542b4968cab18e4a01d819/1.21/windows/nanoserver-1809/Dockerfile) +- `1.22.2`, `1.22`, `1`, `latest`: + - [`1.22.2-bookworm`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bookworm/Dockerfile) + - [`1.22.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.2-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.2-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.9`, `1.21`: + - [`1.21.9-bookworm`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bookworm/Dockerfile) + - [`1.21.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.9-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.9-nanoserver`, `1.21-nanoserver`: + - [`1.21.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index e5c7a3df6e97..f77ad99fdd15 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.3-php8.1-apache`, `6.4-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.4.3-php8.1`, `6.4-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/apache/Dockerfile) -- [`6.4.3-php8.1-fpm`, `6.4-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/fpm/Dockerfile) -- [`6.4.3-php8.1-fpm-alpine`, `6.4-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.4.3-apache`, `6.4-apache`, `6-apache`, `apache`, `6.4.3`, `6.4`, `6`, `latest`, `6.4.3-php8.2-apache`, `6.4-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.4.3-php8.2`, `6.4-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/apache/Dockerfile) -- [`6.4.3-fpm`, `6.4-fpm`, `6-fpm`, `fpm`, `6.4.3-php8.2-fpm`, `6.4-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/fpm/Dockerfile) -- [`6.4.3-fpm-alpine`, `6.4-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.4.3-php8.2-fpm-alpine`, `6.4-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.4.3-php8.3-apache`, `6.4-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.4.3-php8.3`, `6.4-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/apache/Dockerfile) -- [`6.4.3-php8.3-fpm`, `6.4-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/fpm/Dockerfile) -- [`6.4.3-php8.3-fpm-alpine`, `6.4-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.5.0-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.0-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/apache/Dockerfile) +- [`6.5.0-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/fpm/Dockerfile) +- [`6.5.0-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.5.0-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.0`, `6.5`, `6`, `latest`, `6.5.0-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.0-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/apache/Dockerfile) +- [`6.5.0-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.0-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/fpm/Dockerfile) +- [`6.5.0-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.0-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.5.0-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.0-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/apache/Dockerfile) +- [`6.5.0-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/fpm/Dockerfile) +- [`6.5.0-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5-RC4-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5-RC4-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/apache/Dockerfile) -- [`beta-6.5-RC4-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5-RC4-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5-RC4-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5-RC4`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5-RC4-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5-RC4-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/apache/Dockerfile) -- [`beta-6.5-RC4-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5-RC4-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5-RC4-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5-RC4-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5-RC4-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5-RC4-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/apache/Dockerfile) -- [`beta-6.5-RC4-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5-RC4-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/af5796d0ba46989ca8b93078fafd42d89f912123/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7f32a3b90f50452359df72530263ba6ba1d5fd49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 11:09:56 -0700 Subject: [PATCH 1082/2686] Run update.sh --- haskell/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 8bfa3768b413..e528bf945689 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.8/buster/Dockerfile) -- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.8/slim-buster/Dockerfile) -- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.6/buster/Dockerfile) -- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.4/slim-buster/Dockerfile) -- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.2/buster/Dockerfile) -- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.2/slim-buster/Dockerfile) -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.0/buster/Dockerfile) -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/a20f832dd35d2f7ceff5337b41a7e37244e1c9e1/9.0/slim-buster/Dockerfile) +- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/buster/Dockerfile) +- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/slim-buster/Dockerfile) +- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.6/buster/Dockerfile) +- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/slim-buster/Dockerfile) +- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/buster/Dockerfile) +- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/slim-buster/Dockerfile) +- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/buster/Dockerfile) +- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/slim-buster/Dockerfile) # Quick reference (cont.) From 76ca767dfd3cbf2715d24bfaf26a60f8080a82fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 12:18:58 -0700 Subject: [PATCH 1083/2686] Run update.sh --- api-firewall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 6ae69ee08f85..6eaa2e2378ec 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.17`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0418873db1cd80bc7fd2aa655e627fa8ff647535/0.6.17/Dockerfile) +- [`0.7.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/5b7397c54592869513947460ba94ba2a22fd9814/0.7.0/Dockerfile) # Quick reference (cont.) From c427dab4ec1020d7eeb60be5c546f4ce32860a34 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 14:21:53 -0700 Subject: [PATCH 1084/2686] Run update.sh --- drupal/README.md | 24 ++++++++++++------------ mongo/README.md | 45 +++++++++++++++------------------------------ 2 files changed, 27 insertions(+), 42 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 011d4dc1323c..67a28832661c 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.4-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.4-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.4-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.4-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.4-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.4-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.4-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.4-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.4-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.4-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.4-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.4-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.4-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.4-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.4-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.4`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.4-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.4-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.4-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.4-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.4-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.4-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.4-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.4-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.4-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.4-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.4-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.4-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.4-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.4-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.5-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.5-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.5-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.5-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.5-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.5-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.5-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.5-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.5-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.5-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.5-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.5-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.5-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.5-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.5-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.5`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.5-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.5-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.5-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.5-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.5-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.5-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.5-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.5-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.5-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.5-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.5-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.5-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.5-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.5-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bullseye/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index e5eb2101e080..c2c15b48a2da 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,16 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.8-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/Dockerfile) -- [`7.0.8-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.8-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.8-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.8-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.7-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) -- [`7.0.7-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.7-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.7-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.7-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.8-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) +- [`7.0.8-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.8-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.8-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.14-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) @@ -56,26 +51,16 @@ WARNING: ## Shared Tags -- `7.0.8-rc0`, `7.0-rc`: - - [`7.0.8-rc0-jammy`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/Dockerfile) - - [`7.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.8-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.8-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.8-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.8-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.8-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.8-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f8a378ac3249bb74529b88ad084f6c547f2b4b19/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.7`, `7.0`, `7`, `latest`: - - [`7.0.7-jammy`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/Dockerfile) - - [`7.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.7-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5804874481efd46f58691cbcae0f7187517be316/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.8`, `7.0`, `7`, `latest`: + - [`7.0.8-jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) + - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.8-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.8-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.14`, `6.0`, `6`: - [`6.0.14-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) From 56b161a3ae5b5a0cc3fcf77b95bc5a940884be7d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 16:09:53 -0700 Subject: [PATCH 1085/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index aa6fadcc779e..ba9701749480 100644 --- a/python/README.md +++ b/python/README.md @@ -44,14 +44,14 @@ WARNING: - [`3.12.2-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/alpine3.18/Dockerfile) - [`3.12.2-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.2-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.8-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bookworm/Dockerfile) -- [`3.11.8-slim-bookworm`, `3.11-slim-bookworm`, `3.11.8-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/slim-bookworm/Dockerfile) -- [`3.11.8-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bullseye/Dockerfile) -- [`3.11.8-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/slim-bullseye/Dockerfile) -- [`3.11.8-alpine3.19`, `3.11-alpine3.19`, `3.11.8-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/alpine3.19/Dockerfile) -- [`3.11.8-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/alpine3.18/Dockerfile) -- [`3.11.8-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.8-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) +- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) +- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) +- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bullseye/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.19/Dockerfile) +- [`3.11.9-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.18/Dockerfile) +- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) - [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bookworm/Dockerfile) - [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bullseye/Dockerfile) @@ -87,13 +87,13 @@ WARNING: - `3.12.2-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.8`, `3.11`: - - [`3.11.8-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.11/bookworm/Dockerfile) - - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11.8-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/105d6f34e7d70aad6f8c3e249b8208efa591916a/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.9`, `3.11`: + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) +- `3.11.9-windowsservercore`, `3.11-windowsservercore`: + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: From 69064d189a730ad2039f9671e7cb229fbacdf829 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Apr 2024 18:18:55 -0700 Subject: [PATCH 1086/2686] Run update.sh --- mageia/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index f373d57f0700..005de80589a4 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/067e6df19c568e101a42dc71b77f6a2de5992c70/dist/8/x86_64/Dockerfile) -- [`7`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/067e6df19c568e101a42dc71b77f6a2de5992c70/dist/7/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/067e6df19c568e101a42dc71b77f6a2de5992c70/dist/cauldron/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/9/x86_64/Dockerfile) +- [`8`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/8/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) From ce9b6086720a5642de28da96b490e5b1faecd32b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Apr 2024 07:21:26 -0700 Subject: [PATCH 1087/2686] Run update.sh --- node/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/node/README.md b/node/README.md index 7b80d9443639..be0b1af80bab 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.1-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.1-alpine`, `21.7.1-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.1`, `21.7.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.1-bookworm-slim`, `21.7.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d202cbe029887b12805d00fa76ca4b11950bffc6/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.0-alpine`, `20.12.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.0`, `20.12.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.0-bookworm-slim`, `20.12.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.12-bullseye`, `20.12.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.12-buster`, `20.12.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/buster/Dockerfile) -- [`20-buster-slim`, `20.12-buster-slim`, `20.12.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.0-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.0-alpine`, `18.20.0-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.0`, `18.20.0-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.0-bookworm-slim`, `18.20.0-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.0-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.0-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.20-buster`, `18.20.0-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/buster/Dockerfile) -- [`18-buster-slim`, `18.20-buster-slim`, `18.20.0-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/227ac8bec7be994e70b17097f32da90802d80942/18/buster-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.2-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.2-alpine`, `21.7.2-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.2`, `21.7.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.2-bookworm-slim`, `21.7.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bullseye-slim/Dockerfile) +- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.1-alpine`, `20.12.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.1`, `20.12.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.1-bookworm-slim`, `20.12.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.12-bullseye`, `20.12.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.12-buster`, `20.12.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/buster/Dockerfile) +- [`20-buster-slim`, `20.12-buster-slim`, `20.12.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.1-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.1-alpine`, `18.20.1-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.1`, `18.20.1-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.1-bookworm-slim`, `18.20.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.1-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.1-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.20-buster`, `18.20.1-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/buster/Dockerfile) +- [`18-buster-slim`, `18.20-buster-slim`, `18.20.1-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/buster-slim/Dockerfile) # Quick reference (cont.) From dffd05f7886c67092a754bb47d18166dab7aa830 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Apr 2024 12:19:06 -0700 Subject: [PATCH 1088/2686] Run update.sh --- emqx/README.md | 3 ++- gradle/README.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index c099c8763196..c0e1a085151c 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -28,7 +28,8 @@ WARNING: - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) -- [`5.5.1`, `5.5`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/73d7c57bb32f0ec9d9159a101aa9ff529d505406/5.5/Dockerfile) +- [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) +- [`5.6.0`, `5.6`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.6/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 7d247d7174a3..3c40889e1b66 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -29,11 +29,11 @@ WARNING: - [`8.7.0-jdk11`, `8.7-jdk11`, `8-jdk11`, `jdk11`, `8.7.0-jdk11-jammy`, `8.7-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11/Dockerfile) - [`8.7.0-jdk11-focal`, `8.7-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-focal/Dockerfile) - [`8.7.0-jdk11-alpine`, `8.7-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-alpine/Dockerfile) -- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `latest`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17/Dockerfile) +- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17/Dockerfile) - [`8.7.0-jdk17-focal`, `8.7-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.7.0-jdk-focal`, `8.7-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.7.0-focal`, `8.7-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-focal/Dockerfile) - [`8.7.0-jdk17-alpine`, `8.7-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.7.0-jdk-alpine`, `8.7-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.7.0-alpine`, `8.7-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-alpine/Dockerfile) - [`8.7.0-jdk17-graal`, `8.7-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.7.0-jdk-graal`, `8.7-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.7.0-graal`, `8.7-graal`, `8-graal`, `graal`, `8.7.0-jdk17-graal-jammy`, `8.7-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.7.0-jdk-graal-jammy`, `8.7-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.7.0-graal-jammy`, `8.7-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-graal/Dockerfile) -- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21/Dockerfile) +- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21/Dockerfile) - [`8.7.0-jdk21-alpine`, `8.7-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-alpine/Dockerfile) - [`8.7.0-jdk21-graal`, `8.7-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.7.0-jdk21-graal-jammy`, `8.7-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From f3164a40a32823e2decdc1bdd681d3383ee81992 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Apr 2024 11:22:34 -0700 Subject: [PATCH 1089/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- arangodb/README.md | 2 +- httpd/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ oraclelinux/README.md | 16 ++++++++-------- swipl/README.md | 4 ++-- 6 files changed, 33 insertions(+), 33 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 7ad6f00ca24d..62aed321b3de 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.3.20240312.0`](https://github.com/amazonlinux/container-images/blob/d47743dd0c45c9c951e869683f785d282b2ed5de/Dockerfile) -- [`2`, `2.0.20240306.2`](https://github.com/amazonlinux/container-images/blob/72c7597eb8c7bd8ba4d81c0ae9bcd604d2ed526e/Dockerfile) +- [`2023`, `latest`, `2023.4.20240401.1`](https://github.com/amazonlinux/container-images/blob/36c1aadfc5c6f53c0572a40d41ede17b7c355bc9/Dockerfile) +- [`2`, `2.0.20240329.0`](https://github.com/amazonlinux/container-images/blob/e20ac656379f27bacd1d4a07c6e0b97fe02fc0e3/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/arangodb/README.md b/arangodb/README.md index 8dbadca9ac01..c6ff407d1c58 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.10`, `3.10.13`](https://github.com/arangodb/arangodb-docker/blob/af118f06c76677531116ee7a263e8d3cca1d6d63/alpine/3.10.13/Dockerfile) +- [`3.10`, `3.10.14`](https://github.com/arangodb/arangodb-docker/blob/7b5dbaf1499367a8215a11bb5728f1d7264046cf/alpine/3.10.14/Dockerfile) - [`3.11`, `3.11.8`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) - [`3.12`, `3.12.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/c507e8709115419c988f47f735f72a4d95538131/alpine/3.12.0/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index c51a852cb148..b8bd5a58e02a 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.58`, `2.4`, `2`, `latest`, `2.4.58-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/89aed068235d9a480f245e03edf038621ab8ed8f/2.4/Dockerfile) -- [`2.4.58-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.58-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/8a57cc5e01d709b1ae7176a2e85a47923865da0c/2.4/alpine/Dockerfile) +- [`2.4.59`, `2.4`, `2`, `latest`, `2.4.59-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/082047ae2f5373e3f542f983a7997b8f957ed518/2.4/Dockerfile) +- [`2.4.59-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.59-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/082047ae2f5373e3f542f983a7997b8f957ed518/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index bc734cbeefbb..28a68c8ce683 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-16-jdk-oraclelinux9`, `23-ea-16-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-16-jdk-oracle`, `23-ea-16-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-16-jdk-oraclelinux8`, `23-ea-16-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-16-jdk-bookworm`, `23-ea-16-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/bookworm/Dockerfile) -- [`23-ea-16-jdk-slim-bookworm`, `23-ea-16-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-16-jdk-slim`, `23-ea-16-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-16-jdk-bullseye`, `23-ea-16-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/bullseye/Dockerfile) -- [`23-ea-16-jdk-slim-bullseye`, `23-ea-16-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-16-jdk-windowsservercore-ltsc2022`, `23-ea-16-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-16-jdk-windowsservercore-1809`, `23-ea-16-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-16-jdk-nanoserver-1809`, `23-ea-16-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-17-jdk-oraclelinux9`, `23-ea-17-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-17-jdk-oracle`, `23-ea-17-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-17-jdk-oraclelinux8`, `23-ea-17-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-17-jdk-bookworm`, `23-ea-17-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/bookworm/Dockerfile) +- [`23-ea-17-jdk-slim-bookworm`, `23-ea-17-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-17-jdk-slim`, `23-ea-17-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-17-jdk-bullseye`, `23-ea-17-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/bullseye/Dockerfile) +- [`23-ea-17-jdk-slim-bullseye`, `23-ea-17-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-17-jdk-windowsservercore-ltsc2022`, `23-ea-17-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-17-jdk-windowsservercore-1809`, `23-ea-17-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-17-jdk-nanoserver-1809`, `23-ea-17-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-16-jdk`, `23-ea-16`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-16-jdk-windowsservercore`, `23-ea-16-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-16-jdk-nanoserver`, `23-ea-16-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0d5210b6ff7395386ac2194f0e3303c144cc652/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-17-jdk`, `23-ea-17`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-17-jdk-windowsservercore`, `23-ea-17-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-17-jdk-nanoserver`, `23-ea-17-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index fd10ab77e64f..0c286e41473f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/f2f581f34293af40bc3376b8e9138c849bdc811f/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 519e837e211e..6f7f8c598dc9 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/938863dd637e892c47386759da40e4d3bd64e6de/9.3.2/bookworm/Dockerfile) -- [`stable`, `9.2.2`](https://github.com/SWI-Prolog/docker-swipl/blob/938863dd637e892c47386759da40e4d3bd64e6de/9.2.2/bookworm/Dockerfile) +- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/6a73474971a395f6d5744a42600f624e8062df3b/9.3.2/bookworm/Dockerfile) +- [`stable`, `9.2.3`](https://github.com/SWI-Prolog/docker-swipl/blob/6a73474971a395f6d5744a42600f624e8062df3b/9.2.3/bookworm/Dockerfile) # Quick reference (cont.) From 84e45de3033cdc72e6e3a289f22a44cdf594d57c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Apr 2024 12:19:18 -0700 Subject: [PATCH 1090/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index dfed34494795..e7917f4844d0 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/0daa6ed7704030a0f9840226f7e381e373476934/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/15.0/Dockerfile) # Quick reference (cont.) From 6c8061a46ccdcfa10996b4d89289eab7ca5741ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Apr 2024 15:19:11 -0700 Subject: [PATCH 1091/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index 2b90d3d3d102..37bc0e04acf5 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.3-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.3`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/56dda68f81593f368b69c0cb01bf8643c44c84f0/stable/bookworm/Dockerfile) -- [`3.4.0-190.2.beta-sdk`, `beta-sdk`, `3.4.0-190.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/56dda68f81593f368b69c0cb01bf8643c44c84f0/beta/bookworm/Dockerfile) +- [`3.3.3-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.3`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/69a484f51adfd7e59a20525f988cb85f2dd62a77/stable/bookworm/Dockerfile) +- [`3.4.0-282.1.beta-sdk`, `beta-sdk`, `3.4.0-282.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/69a484f51adfd7e59a20525f988cb85f2dd62a77/beta/bookworm/Dockerfile) # Quick reference (cont.) From ddad5da2f7c2b18faf191c0382edd604b1983385 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:26:01 +0200 Subject: [PATCH 1092/2686] docs: fix oudated links to docs.docker.com Some of the updated links had redirects in place, Updating them to current paths to avoid relying on old redirects. This is not an exhaustive update to all links, just a few links that I happened to pick up on. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- arangodb/content.md | 2 +- cassandra/content.md | 4 ++-- couchdb/content.md | 4 ++-- docker/content.md | 4 ++-- friendica/content.md | 2 +- mariadb/content.md | 6 +++--- mongo/content.md | 4 ++-- mysql/content.md | 6 +++--- nextcloud/content.md | 2 +- percona/content.md | 6 +++--- perl/content.md | 6 +++--- redmine/content.md | 4 ++-- teamspeak/content.md | 4 ++-- 13 files changed, 27 insertions(+), 27 deletions(-) diff --git a/arangodb/content.md b/arangodb/content.md index 7eb489a897bf..bbe16d56d23c 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -188,7 +188,7 @@ unix> docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true ### Using as a base image -If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/engine/reference/builder/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. +If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/reference/dockerfile/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. When deriving the image, you can control the instantiation via putting files into `/docker-entrypoint-initdb.d/`. diff --git a/cassandra/content.md b/cassandra/content.md index aab8b44fc57a..3335aee685f4 100644 --- a/cassandra/content.md +++ b/cassandra/content.md @@ -98,8 +98,8 @@ There are a small number of environment variables supported by the image which w Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/couchdb/content.md b/couchdb/content.md index e742ac8d1fa4..cc717d66136d 100644 --- a/couchdb/content.md +++ b/couchdb/content.md @@ -89,8 +89,8 @@ In addition, a few environment variables are provided to set very common paramet Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/docker/content.md b/docker/content.md index 8236370bc637..d1c73c2f5f69 100644 --- a/docker/content.md +++ b/docker/content.md @@ -228,8 +228,8 @@ $ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your data [by writing to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your data [by writing to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/friendica/content.md b/friendica/content.md index ee06996c4487..9d2b344560a9 100644 --- a/friendica/content.md +++ b/friendica/content.md @@ -119,7 +119,7 @@ You have to add the Friendica container to the same network as the running datab ## Persistent data -The Friendica installation and all data beyond what lives in the database (file uploads, etc) is stored in the [unnamed docker volume](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container and Friendica. +The Friendica installation and all data beyond what lives in the database (file uploads, etc) is stored in the [unnamed docker volume](https://docs.docker.com/storage/volumes/) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container and Friendica. Friendica: diff --git a/mariadb/content.md b/mariadb/content.md index 2906b21dc290..54c14d98f31d 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -184,7 +184,7 @@ $ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mariad # Initializing the database contents -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. # Caveats @@ -192,8 +192,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%IMAGE%%` images to familiarize themselves with the options available, including: -- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/mongo/content.md b/mongo/content.md index eff926e1c8e1..b7d39f4b3965 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -166,8 +166,8 @@ In addition to the `/docker-entrypoint-initdb.d` behavior documented above (whic Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. **WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB ([docs.mongodb.org](https://docs.mongodb.com/manual/administration/production-notes/#fsync---on-directories) and related [jira.mongodb.org](https://jira.mongodb.org/browse/SERVER-8600) bug). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. diff --git a/mysql/content.md b/mysql/content.md index 16e8c4ff419e..7616b4c75349 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -128,7 +128,7 @@ Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats @@ -136,8 +136,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%IMAGE%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/nextcloud/content.md b/nextcloud/content.md index 0b3663ab9f2e..3dbd03b47b49 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -40,7 +40,7 @@ By default, this container uses SQLite for data storage but the Nextcloud setup ## Persistent data -The Nextcloud installation and all data beyond what lives in the database (file uploads, etc.) are stored in the [unnamed docker volume](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. +The Nextcloud installation and all data beyond what lives in the database (file uploads, etc.) are stored in the [unnamed docker volume](https://docs.docker.com/storage/volumes/) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. A named Docker volume or a mounted host directory should be used for upgrades and backups. To achieve this, you need one volume for your database container and one for Nextcloud. diff --git a/percona/content.md b/percona/content.md index 97dcb85058ae..9f6a3a7c09b8 100644 --- a/percona/content.md +++ b/percona/content.md @@ -148,7 +148,7 @@ $ docker run --name some-mysql -e PERCONA_TELEMETRY_DISABLE=1 -d %%IMAGE%%:tag # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats @@ -156,8 +156,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%IMAGE%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/perl/content.md b/perl/content.md index 9b42b176d579..dc1cda262c44 100644 --- a/perl/content.md +++ b/perl/content.md @@ -42,7 +42,7 @@ See also [Perl/docker-perl#26](https://github.com/Perl/docker-perl/issues/26) fo ## Signal handling behavior notice -As Perl will run as PID 1 by default in containers (unless an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) is set,) special care needs to be considered when expecting to send signals (particularly SIGINT or SIGTERM) to it. For example, running +As Perl will run as PID 1 by default in containers (unless an [ENTRYPOINT](https://docs.docker.com/reference/dockerfile/#entrypoint) is set,) special care needs to be considered when expecting to send signals (particularly SIGINT or SIGTERM) to it. For example, running ```console $ docker run -it --name sleeping_beauty --rm %%IMAGE%%:5.34 perl -E 'sleep 300' @@ -74,7 +74,7 @@ See also [Perl/docker-perl#140](https://github.com/Perl/docker-perl/issues/140) ## Example: Creating a reusable Carton image for Perl projects -Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `%%IMAGE%%:carton` image that makes use of the [ONBUILD](https://docs.docker.com/engine/reference/builder/#onbuild) instruction in its `Dockerfile`, like this: +Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `%%IMAGE%%:carton` image that makes use of the [ONBUILD](https://docs.docker.com/reference/dockerfile/#onbuild) instruction in its `Dockerfile`, like this: ```dockerfile FROM %%IMAGE%%:5.34 @@ -93,5 +93,5 @@ Then, in your Carton project, you can now reduce your project's `Dockerfile` int Having a single `%%IMAGE%%:carton` base image is useful especially if you have multiple Carton-based projects in development, to avoid "boilerplate" coding of installing Carton and/or copying the project source files into the derived image. Keep in mind, though, about certain things to consider when using the Perl image in this way: -- This kind of base image will hide the useful bits (such as the`COPY`/`RUN` above) in the image, separating it from more specific Dockerfiles using the base image. This might lead to confusion when creating further derived images, so be aware of how [ONBUILD triggers](https://docs.docker.com/engine/reference/builder/#onbuild) work and plan appropriately. +- This kind of base image will hide the useful bits (such as the`COPY`/`RUN` above) in the image, separating it from more specific Dockerfiles using the base image. This might lead to confusion when creating further derived images, so be aware of how [ONBUILD triggers](https://docs.docker.com/reference/dockerfile/#onbuild) work and plan appropriately. - There is the cost of maintaining an extra base image build, so if you're working on a single Carton project and/or plan to publish it, then it may be more preferable to derive directly from a versioned `perl` image instead. diff --git a/redmine/content.md b/redmine/content.md index feb4bb3f15c5..14d79fe89b25 100644 --- a/redmine/content.md +++ b/redmine/content.md @@ -58,8 +58,8 @@ Currently, the default user and password from upstream is admin/admin ([logging Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your files [by writing the files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your files [by writing the files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/teamspeak/content.md b/teamspeak/content.md index eb3aa7d34373..067b2a57f50d 100644 --- a/teamspeak/content.md +++ b/teamspeak/content.md @@ -120,8 +120,8 @@ When the whole data directory (`/var/ts3server/`) has been mounted somewhere, th Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: From ed42315a5f53889756e7cf36424e9ffb0b2ca0e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Apr 2024 11:21:18 -0700 Subject: [PATCH 1093/2686] Run update.sh --- mongo/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mongo/README.md b/mongo/README.md index c2c15b48a2da..03d5b4dfb162 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -171,9 +171,10 @@ services: ME_CONFIG_MONGODB_ADMINUSERNAME: root ME_CONFIG_MONGODB_ADMINPASSWORD: example ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/ + ME_CONFIG_BASICAUTH: false ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/f6c9b596064e2eed9c3b6ac75bea606cb6d94099/mongo/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/e6234a76beddf381523549d8161c9f985642c8bf/mongo/stack.yml) Run `docker stack deploy -c stack.yml mongo` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8081`, `http://localhost:8081`, or `http://host-ip:8081` (as appropriate). From 19bc5cb8681ebe1bc9ec26f490976ebeae5af67f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Apr 2024 12:19:13 -0700 Subject: [PATCH 1094/2686] Run update.sh --- jetty/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 32cb8166e96c..24fe1a0fb21e 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -39,14 +39,14 @@ WARNING: - [`9.4.54-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.54-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.54-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.54-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) - [`9.4.54-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.54-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.7-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.7-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.7-jre21`, `12.0-jre21`, `12-jre21`, `12.0.7-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.7-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.7-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.7-jre17`, `12.0-jre17`, `12-jre17`, `12.0.7-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.7-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.7-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.7`, `12.0`, `12`, `12.0.7-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.7-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.7-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.7-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.7-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.7-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.7-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.8-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.8-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.8-jre21`, `12.0-jre21`, `12-jre21`, `12.0.8-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.8-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.8-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.8-jre17`, `12.0-jre17`, `12-jre17`, `12.0.8-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.8-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.8-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.8`, `12.0`, `12`, `12.0.8-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.8-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.8-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.8-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.8-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.8-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.8-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.20-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.20-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21-alpine/Dockerfile) - [`11.0.20-jre21`, `11.0-jre21`, `11-jre21`, `11.0.20-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21/Dockerfile) - [`11.0.20-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.20-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17-alpine/Dockerfile) @@ -79,10 +79,10 @@ WARNING: - [`9.4.54-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.54-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - [`9.4.54-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.7-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.7-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.7-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.7-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.7-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.8-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.8-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.8-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.8-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.8-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.20-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21-alpine/Dockerfile) - [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21/Dockerfile) - [`11.0.20-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17-alpine/Dockerfile) From 3958a16eaf9d8cb4ecf7a203efa80e11383fd77b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Apr 2024 13:09:53 -0700 Subject: [PATCH 1095/2686] Run update.sh --- crate/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crate/README.md b/crate/README.md index 75f19219e30c..79cf01fe5bd0 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.6.3`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/87c0db61bba5d4e94852d2f8ad792b4ce85f8a12/Dockerfile) +- [`5.6.4`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/51f22540833a2f98b7984019e16d496314934a91/Dockerfile) - [`5.5.5`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) - [`5.3.9`, `5.3`](https://github.com/crate/docker-crate/blob/b26e81edb1d6b551a5a7697855270346dbd63619/Dockerfile) From d2885c46af1d62c1ad93f40027b7826b36bd8015 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Apr 2024 15:10:26 -0700 Subject: [PATCH 1096/2686] Run update.sh --- arangodb/README.md | 2 +- cassandra/README.md | 4 +-- couchdb/README.md | 4 +-- docker/README.md | 4 +-- drupal/README.md | 48 +++++++++++++------------- friendica/README.md | 2 +- ghost/README.md | 4 +-- haproxy/README.md | 32 ++++++++--------- httpd/README.md | 2 +- irssi/README.md | 2 +- mariadb/README.md | 6 ++-- memcached/README.md | 2 +- mongo/README.md | 4 +-- mysql/README.md | 6 ++-- nextcloud/README.md | 2 +- percona/README.md | 6 ++-- perl/README.md | 6 ++-- php/README.md | 80 +++++++++++++++++++++---------------------- pypy/README.md | 30 ++++++++-------- rakudo-star/README.md | 6 ++-- redis/README.md | 8 ++--- redmine/README.md | 8 ++--- ros/README.md | 6 ++-- ruby/README.md | 32 ++++++++--------- teamspeak/README.md | 4 +-- wordpress/README.md | 12 +++---- 26 files changed, 162 insertions(+), 160 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index c6ff407d1c58..0b52edd3ed5b 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -237,7 +237,7 @@ unix> docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true ### Using as a base image -If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/engine/reference/builder/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. +If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/reference/dockerfile/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. When deriving the image, you can control the instantiation via putting files into `/docker-entrypoint-initdb.d/`. diff --git a/cassandra/README.md b/cassandra/README.md index 8b93bb6685bc..b30bedf0a867 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -149,8 +149,8 @@ There are a small number of environment variables supported by the image which w Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `cassandra` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/couchdb/README.md b/couchdb/README.md index 831fe1afb047..099c8f932f6d 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -139,8 +139,8 @@ In addition, a few environment variables are provided to set very common paramet Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `couchdb` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/docker/README.md b/docker/README.md index f8636f710828..d83d5dd845f0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -305,8 +305,8 @@ $ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `docker` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your data [by writing to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your data [by writing to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/drupal/README.md b/drupal/README.md index 67a28832661c..390ed7c5a19e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,40 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.5-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.5-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.5-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.5-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.5-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.5-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.5-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.5-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.5-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.5-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.5-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.5-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.5-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.5-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/fpm-bullseye/Dockerfile) - [`10.2.5-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.5-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.19/Dockerfile) - [`10.2.5-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.5-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.5-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.5-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.5-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.5-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.5`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.5-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.5-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.5-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.5-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.5-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.5-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.5-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.5-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.5-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.5-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.5-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.5-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.5-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.5`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.5-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.5-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.5-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.5-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.5-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.5-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.5-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.5-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/fpm-bullseye/Dockerfile) - [`10.2.5-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.5-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.5-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.5-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.5-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.5-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bookworm/Dockerfile) +- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bullseye/Dockerfile) +- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bullseye/Dockerfile) - [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.8-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.18/Dockerfile) -- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-bullseye/Dockerfile) +- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bookworm/Dockerfile) +- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bookworm/Dockerfile) +- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bullseye/Dockerfile) +- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bullseye/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.18/Dockerfile) -- [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bookworm/Dockerfile) -- [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/apache-bullseye/Dockerfile) -- [`7.100-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bookworm/Dockerfile) +- [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bullseye/Dockerfile) +- [`7.100-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bullseye/Dockerfile) - [`7.100-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.100-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.19/Dockerfile) - [`7.100-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.18/Dockerfile) -- [`7.100-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.100-php8.1-apache`, `7-php8.1-apache`, `7.100-php8.1`, `7-php8.1`, `7.100-apache-bookworm`, `7-apache-bookworm`, `7.100-apache`, `7-apache`, `7.100`, `7`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/apache-bookworm/Dockerfile) -- [`7.100-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.100-php8.1-fpm`, `7-php8.1-fpm`, `7.100-fpm-bookworm`, `7-fpm-bookworm`, `7.100-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.100-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.100-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/apache-bullseye/Dockerfile) -- [`7.100-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.100-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.100-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.100-php8.1-apache`, `7-php8.1-apache`, `7.100-php8.1`, `7-php8.1`, `7.100-apache-bookworm`, `7-apache-bookworm`, `7.100-apache`, `7-apache`, `7.100`, `7`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bookworm/Dockerfile) +- [`7.100-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.100-php8.1-fpm`, `7-php8.1-fpm`, `7.100-fpm-bookworm`, `7-fpm-bookworm`, `7.100-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.100-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.100-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bullseye/Dockerfile) +- [`7.100-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.100-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bullseye/Dockerfile) - [`7.100-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.100-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.100-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.100-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.19/Dockerfile) - [`7.100-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.100-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.18/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index a5890d1836b0..04cf9e6d4df3 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -174,7 +174,7 @@ You have to add the Friendica container to the same network as the running datab ## Persistent data -The Friendica installation and all data beyond what lives in the database (file uploads, etc) is stored in the [unnamed docker volume](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container and Friendica. +The Friendica installation and all data beyond what lives in the database (file uploads, etc) is stored in the [unnamed docker volume](https://docs.docker.com/storage/volumes/) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container and Friendica. Friendica: diff --git a/ghost/README.md b/ghost/README.md index 70a61b9eb15d..5811e3d99d9f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.81.1`, `5.81`, `5`, `latest`](https://github.com/docker-library/ghost/blob/81b224e36c638a8864a1bc4ba952e84de0ae29cb/5/debian/Dockerfile) -- [`5.81.1-alpine`, `5.81-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/81b224e36c638a8864a1bc4ba952e84de0ae29cb/5/alpine/Dockerfile) +- [`5.82.1`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2521c2573e5bf04353c7630f0e97776ff98a5d41/5/debian/Dockerfile) +- [`5.82.1-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2521c2573e5bf04353c7630f0e97776ff98a5d41/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 6f606448a964..af423225a2a9 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev6`, `3.0-dev`, `3.0-dev6-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/1f1e1651fb0e05ce891ae12dc9da6ac4717f9420/3.0/Dockerfile) -- [`3.0-dev6-alpine`, `3.0-dev-alpine`, `3.0-dev6-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/1f1e1651fb0e05ce891ae12dc9da6ac4717f9420/3.0/alpine/Dockerfile) -- [`2.9.6`, `2.9`, `latest`, `2.9.6-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/Dockerfile) -- [`2.9.6-alpine`, `2.9-alpine`, `alpine`, `2.9.6-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/e14e1d121f1b1d78422f12210e0e256188a60c82/2.9/alpine/Dockerfile) -- [`2.8.7`, `2.8`, `lts`, `2.8.7-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/Dockerfile) -- [`2.8.7-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.7-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/b63a60b648f47d0b0c7b71492f93536c3aef6910/2.8/alpine/Dockerfile) -- [`2.7.11`, `2.7`, `2.7.11-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/Dockerfile) -- [`2.7.11-alpine`, `2.7-alpine`, `2.7.11-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.7/alpine/Dockerfile) -- [`2.6.16`, `2.6`, `2.6.16-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/Dockerfile) -- [`2.6.16-alpine`, `2.6-alpine`, `2.6.16-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.6/alpine/Dockerfile) -- [`2.4.25`, `2.4`, `2.4.25-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.4/Dockerfile) -- [`2.4.25-alpine`, `2.4-alpine`, `2.4.25-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.4/alpine/Dockerfile) -- [`2.2.32`, `2.2`, `2.2.32-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.2/Dockerfile) -- [`2.2.32-alpine`, `2.2-alpine`, `2.2.32-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.2/alpine/Dockerfile) -- [`2.0.34`, `2.0`, `2.0.34-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.0/Dockerfile) -- [`2.0.34-alpine`, `2.0-alpine`, `2.0.34-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/71cd0194b981bcbf23e964649016ca7498b1c2b8/2.0/alpine/Dockerfile) +- [`3.0-dev7`, `3.0-dev`, `3.0-dev7-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/3.0/Dockerfile) +- [`3.0-dev7-alpine`, `3.0-dev-alpine`, `3.0-dev7-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/d8cdcc09f959ddbb360aa12c5f1c9d6d50573bf3/3.0/alpine/Dockerfile) +- [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) +- [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) +- [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) +- [`2.8.9-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.9-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/5d34d74e22c28578cf57033f78017613ea0ced0c/2.8/alpine/Dockerfile) +- [`2.7.12`, `2.7`, `2.7.12-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.7/Dockerfile) +- [`2.7.12-alpine`, `2.7-alpine`, `2.7.12-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/2d23827e47f9c010a8f4c0144d00997e1963e991/2.7/alpine/Dockerfile) +- [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) +- [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/20e1b3f92d1e74b2644f5748c62a148d07e2ca43/2.6/alpine/Dockerfile) +- [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) +- [`2.4.26-alpine`, `2.4-alpine`, `2.4.26-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/3a8296a8e525bfff099f553cf79a46fc9ad384f2/2.4/alpine/Dockerfile) +- [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) +- [`2.2.33-alpine`, `2.2-alpine`, `2.2.33-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/3eaa160ca6c050f3451b7aad648f06ebc0a8bb22/2.2/alpine/Dockerfile) +- [`2.0.35`, `2.0`, `2.0.35-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.0/Dockerfile) +- [`2.0.35-alpine`, `2.0-alpine`, `2.0.35-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/ecaebdd6ebd66297882800ef9d55edfd0b52237d/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/httpd/README.md b/httpd/README.md index b8bd5a58e02a..922930ae1041 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.59`, `2.4`, `2`, `latest`, `2.4.59-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/082047ae2f5373e3f542f983a7997b8f957ed518/2.4/Dockerfile) +- [`2.4.59`, `2.4`, `2`, `latest`, `2.4.59-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/b1cb5ded14f70d67aaa987d3267036884a7320ef/2.4/Dockerfile) - [`2.4.59-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.59-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/082047ae2f5373e3f542f983a7997b8f957ed518/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 1df1d04be902..4b7de217496c 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/a3a3f65ed35b33c791a86af4383b5129ab7b7721/debian/Dockerfile) +- [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) - [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.18`, `1.4-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/jessfraz/irssi/blob/a3a3f65ed35b33c791a86af4383b5129ab7b7721/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index c362e123b208..46b733a3edd3 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -264,7 +264,7 @@ $ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mariad # Initializing the database contents -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `mariadb` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.xz` and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. `.sh` files without file execute permission are sourced rather than executed. You can easily populate your `mariadb` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MARIADB_DATABASE` variable. # Caveats @@ -272,8 +272,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `mariadb` images to familiarize themselves with the options available, including: -- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Use a named volume using the container manager to manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/memcached/README.md b/memcached/README.md index 1150fe77d1fa..4e09e3088e90 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.26`, `1.6`, `1`, `latest`, `1.6.26-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/5699d909d4f9d7f733a79d4793b323d3ad63453a/1/debian/Dockerfile) +- [`1.6.26`, `1.6`, `1`, `latest`, `1.6.26-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/8508f4b565116fb0fa338b124848768453026c68/1/debian/Dockerfile) - [`1.6.26-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.26-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/5699d909d4f9d7f733a79d4793b323d3ad63453a/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 03d5b4dfb162..66f2cfa12aca 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -308,8 +308,8 @@ In addition to the `/docker-entrypoint-initdb.d` behavior documented above (whic Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `mongo` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. **WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB ([docs.mongodb.org](https://docs.mongodb.com/manual/administration/production-notes/#fsync---on-directories) and related [jira.mongodb.org](https://jira.mongodb.org/browse/SERVER-8600) bug). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. diff --git a/mysql/README.md b/mysql/README.md index bb9eff9013ee..3dd0e27390bf 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -203,7 +203,7 @@ Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `mysql` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `mysql` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats @@ -211,8 +211,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `mysql` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/nextcloud/README.md b/nextcloud/README.md index 9dcc783343b4..12d2e80c0d4e 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -99,7 +99,7 @@ By default, this container uses SQLite for data storage but the Nextcloud setup ## Persistent data -The Nextcloud installation and all data beyond what lives in the database (file uploads, etc.) are stored in the [unnamed docker volume](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. +The Nextcloud installation and all data beyond what lives in the database (file uploads, etc.) are stored in the [unnamed docker volume](https://docs.docker.com/storage/volumes/) volume `/var/www/html`. The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted. A named Docker volume or a mounted host directory should be used for upgrades and backups. To achieve this, you need one volume for your database container and one for Nextcloud. diff --git a/percona/README.md b/percona/README.md index 5190bc92db72..ab8d25be1f08 100644 --- a/percona/README.md +++ b/percona/README.md @@ -226,7 +226,7 @@ $ docker run --name some-mysql -e PERCONA_TELEMETRY_DISABLE=1 -d percona:tag # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `percona` services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `percona` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats @@ -234,8 +234,8 @@ When a container is started for the first time, a new database with the specifie Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `percona` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/perl/README.md b/perl/README.md index 7100cfdbc4bf..bd4fe0ea912a 100644 --- a/perl/README.md +++ b/perl/README.md @@ -128,7 +128,7 @@ See also [Perl/docker-perl#26](https://github.com/Perl/docker-perl/issues/26) fo ## Signal handling behavior notice -As Perl will run as PID 1 by default in containers (unless an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) is set,) special care needs to be considered when expecting to send signals (particularly SIGINT or SIGTERM) to it. For example, running +As Perl will run as PID 1 by default in containers (unless an [ENTRYPOINT](https://docs.docker.com/reference/dockerfile/#entrypoint) is set,) special care needs to be considered when expecting to send signals (particularly SIGINT or SIGTERM) to it. For example, running ```console $ docker run -it --name sleeping_beauty --rm perl:5.34 perl -E 'sleep 300' @@ -160,7 +160,7 @@ See also [Perl/docker-perl#140](https://github.com/Perl/docker-perl/issues/140) ## Example: Creating a reusable Carton image for Perl projects -Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `perl:carton` image that makes use of the [ONBUILD](https://docs.docker.com/engine/reference/builder/#onbuild) instruction in its `Dockerfile`, like this: +Suppose you have a project that uses [Carton](https://metacpan.org/pod/Carton) to manage Perl dependencies. You can create a `perl:carton` image that makes use of the [ONBUILD](https://docs.docker.com/reference/dockerfile/#onbuild) instruction in its `Dockerfile`, like this: ```dockerfile FROM perl:5.34 @@ -179,7 +179,7 @@ Then, in your Carton project, you can now reduce your project's `Dockerfile` int Having a single `perl:carton` base image is useful especially if you have multiple Carton-based projects in development, to avoid "boilerplate" coding of installing Carton and/or copying the project source files into the derived image. Keep in mind, though, about certain things to consider when using the Perl image in this way: -- This kind of base image will hide the useful bits (such as the`COPY`/`RUN` above) in the image, separating it from more specific Dockerfiles using the base image. This might lead to confusion when creating further derived images, so be aware of how [ONBUILD triggers](https://docs.docker.com/engine/reference/builder/#onbuild) work and plan appropriately. +- This kind of base image will hide the useful bits (such as the`COPY`/`RUN` above) in the image, separating it from more specific Dockerfiles using the base image. This might lead to confusion when creating further derived images, so be aware of how [ONBUILD triggers](https://docs.docker.com/reference/dockerfile/#onbuild) work and plan appropriately. - There is the cost of maintaining an extra base image build, so if you're working on a single Carton project and/or plan to publish it, then it may be more preferable to derive directly from a versioned `perl` image instead. # Image Variants diff --git a/php/README.md b/php/README.md index 69d6057d4bc6..737b735aedf8 100644 --- a/php/README.md +++ b/php/README.md @@ -24,70 +24,70 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.5RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.5RC1-bookworm`, `8.3-rc-bookworm`, `8.3.5RC1-cli`, `8.3-rc-cli`, `8.3.5RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.5RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.5RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.5RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.5RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.5RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.5RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.5RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.5RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.5RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.5RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.5RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.5RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.5RC1-bookworm`, `8.3-rc-bookworm`, `8.3.5RC1-cli`, `8.3-rc-cli`, `8.3.5RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.5RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.5RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.5RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.5RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.5RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.5RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.5RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.5RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.5RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.5RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.5RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/zts/Dockerfile) - [`8.3.5RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.5RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.5RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.5RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/cli/Dockerfile) - [`8.3.5RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.5RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/fpm/Dockerfile) - [`8.3.5RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.5RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.5RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.5RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/cli/Dockerfile) - [`8.3.5RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/fpm/Dockerfile) - [`8.3.5RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.4-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.4-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.4-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.4`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/cli/Dockerfile) -- [`8.3.4-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.4-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/apache/Dockerfile) -- [`8.3.4-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.4-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/fpm/Dockerfile) -- [`8.3.4-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.4-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bookworm/zts/Dockerfile) -- [`8.3.4-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.4-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/cli/Dockerfile) -- [`8.3.4-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/apache/Dockerfile) -- [`8.3.4-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/fpm/Dockerfile) -- [`8.3.4-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/bullseye/zts/Dockerfile) +- [`8.3.4-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.4-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.4-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.4`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/cli/Dockerfile) +- [`8.3.4-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.4-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/apache/Dockerfile) +- [`8.3.4-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.4-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/fpm/Dockerfile) +- [`8.3.4-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.4-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/zts/Dockerfile) +- [`8.3.4-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.4-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/cli/Dockerfile) +- [`8.3.4-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/apache/Dockerfile) +- [`8.3.4-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/fpm/Dockerfile) +- [`8.3.4-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/zts/Dockerfile) - [`8.3.4-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.4-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.4-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.4-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/cli/Dockerfile) - [`8.3.4-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.4-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/fpm/Dockerfile) - [`8.3.4-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.4-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/zts/Dockerfile) - [`8.3.4-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.4-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/cli/Dockerfile) - [`8.3.4-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/fpm/Dockerfile) - [`8.3.4-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.18RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.18RC1-bookworm`, `8.2-rc-bookworm`, `8.2.18RC1-cli`, `8.2-rc-cli`, `8.2.18RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.18RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.18RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.18RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.18RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.18RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.18RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.18RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.18RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.18RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.18RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.18RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.18RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.18RC1-bookworm`, `8.2-rc-bookworm`, `8.2.18RC1-cli`, `8.2-rc-cli`, `8.2.18RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.18RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.18RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.18RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.18RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.18RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.18RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.18RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.18RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.18RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.18RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.18RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/zts/Dockerfile) - [`8.2.18RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.18RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.18RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.18RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/cli/Dockerfile) - [`8.2.18RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.18RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/fpm/Dockerfile) - [`8.2.18RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.18RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/zts/Dockerfile) - [`8.2.18RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.18RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/cli/Dockerfile) - [`8.2.18RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/fpm/Dockerfile) - [`8.2.18RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.17-cli-bookworm`, `8.2-cli-bookworm`, `8.2.17-bookworm`, `8.2-bookworm`, `8.2.17-cli`, `8.2-cli`, `8.2.17`, `8.2`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/cli/Dockerfile) -- [`8.2.17-apache-bookworm`, `8.2-apache-bookworm`, `8.2.17-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/apache/Dockerfile) -- [`8.2.17-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.17-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/fpm/Dockerfile) -- [`8.2.17-zts-bookworm`, `8.2-zts-bookworm`, `8.2.17-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bookworm/zts/Dockerfile) -- [`8.2.17-cli-bullseye`, `8.2-cli-bullseye`, `8.2.17-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/cli/Dockerfile) -- [`8.2.17-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/apache/Dockerfile) -- [`8.2.17-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/fpm/Dockerfile) -- [`8.2.17-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/bullseye/zts/Dockerfile) +- [`8.2.17-cli-bookworm`, `8.2-cli-bookworm`, `8.2.17-bookworm`, `8.2-bookworm`, `8.2.17-cli`, `8.2-cli`, `8.2.17`, `8.2`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/cli/Dockerfile) +- [`8.2.17-apache-bookworm`, `8.2-apache-bookworm`, `8.2.17-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/apache/Dockerfile) +- [`8.2.17-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.17-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/fpm/Dockerfile) +- [`8.2.17-zts-bookworm`, `8.2-zts-bookworm`, `8.2.17-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/zts/Dockerfile) +- [`8.2.17-cli-bullseye`, `8.2-cli-bullseye`, `8.2.17-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/cli/Dockerfile) +- [`8.2.17-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/apache/Dockerfile) +- [`8.2.17-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/fpm/Dockerfile) +- [`8.2.17-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/zts/Dockerfile) - [`8.2.17-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.17-alpine3.19`, `8.2-alpine3.19`, `8.2.17-cli-alpine`, `8.2-cli-alpine`, `8.2.17-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/cli/Dockerfile) - [`8.2.17-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.17-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/fpm/Dockerfile) - [`8.2.17-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.17-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/zts/Dockerfile) - [`8.2.17-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.17-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/cli/Dockerfile) - [`8.2.17-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/fpm/Dockerfile) - [`8.2.17-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/zts/Dockerfile) -- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/cli/Dockerfile) -- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/apache/Dockerfile) -- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/fpm/Dockerfile) -- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bookworm/zts/Dockerfile) -- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/cli/Dockerfile) -- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/apache/Dockerfile) -- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/fpm/Dockerfile) -- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/bullseye/zts/Dockerfile) +- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/cli/Dockerfile) +- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/apache/Dockerfile) +- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/fpm/Dockerfile) +- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/zts/Dockerfile) +- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/cli/Dockerfile) +- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/apache/Dockerfile) +- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/fpm/Dockerfile) +- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/zts/Dockerfile) - [`8.1.27-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.27-alpine3.19`, `8.1-alpine3.19`, `8.1.27-cli-alpine`, `8.1-cli-alpine`, `8.1.27-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/cli/Dockerfile) - [`8.1.27-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.27-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/fpm/Dockerfile) - [`8.1.27-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.27-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/zts/Dockerfile) diff --git a/pypy/README.md b/pypy/README.md index 646b24260e05..4e39b9b756a7 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`3.10-7.3.15-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.15-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bookworm/Dockerfile) -- [`3.10-7.3.15-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.15-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.15-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.15-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bullseye/Dockerfile) -- [`3.10-7.3.15-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.15-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.15-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.15-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.15-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.15-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bookworm/Dockerfile) +- [`3.10-7.3.15-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.15-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.15-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.15-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bullseye/Dockerfile) +- [`3.10-7.3.15-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.15-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.15-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.15-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/slim-bullseye/Dockerfile) - [`3.10-7.3.15-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.15-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.15-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.15-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.15-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bookworm/Dockerfile) -- [`3.9-7.3.15-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.15-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bullseye/Dockerfile) -- [`3.9-7.3.15-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.15-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.15-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bookworm/Dockerfile) +- [`3.9-7.3.15-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.15-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bullseye/Dockerfile) +- [`3.9-7.3.15-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.15-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/slim-bullseye/Dockerfile) - [`3.9-7.3.15-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.15-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.15-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.15-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bookworm/Dockerfile) -- [`2.7-7.3.15-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.15-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.15-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.15-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bullseye/Dockerfile) -- [`2.7-7.3.15-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.15-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.15-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.15-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.15-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.15-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bookworm/Dockerfile) +- [`2.7-7.3.15-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.15-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.15-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.15-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bullseye/Dockerfile) +- [`2.7-7.3.15-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.15-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.15-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.15-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/slim-bullseye/Dockerfile) - [`2.7-7.3.15-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.15-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.15-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.15-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `3.10-7.3.15`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.15`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/bullseye/Dockerfile) + - [`3.10-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bullseye/Dockerfile) - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.15-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.15-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) - `3.9-7.3.15`, `3.9-7.3`, `3.9-7`, `3.9`: - - [`3.9-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/bullseye/Dockerfile) + - [`3.9-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bullseye/Dockerfile) - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) - `3.9-7.3.15-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.15`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.15`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/bullseye/Dockerfile) + - [`2.7-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bullseye/Dockerfile) - [`2.7-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.15-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.15-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: diff --git a/rakudo-star/README.md b/rakudo-star/README.md index d79cdc570da3..b0da31e6a8ff 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.02`](https://github.com/Raku/docker/blob/1357b3acb550569e7ecf2da22fc32c32319fb872/2024.02/bookworm/Dockerfile) -- [`alpine`, `2024.02-alpine`](https://github.com/Raku/docker/blob/1357b3acb550569e7ecf2da22fc32c32319fb872/2024.02/alpine3.19/Dockerfile) +- [`latest`, `2024.03`, `bookworm`](https://github.com/Raku/docker/blob/64657bbc83c2536e3d2dcd8f075dde4e206b1421/2024.03/bookworm/Dockerfile) +- [`alpine`, `2024.03-alpine`](https://github.com/Raku/docker/blob/64657bbc83c2536e3d2dcd8f075dde4e206b1421/2024.03/alpine/Dockerfile) # Quick reference (cont.) @@ -88,6 +88,8 @@ The `rakudo-star` images come in many flavors, each designed for a specific use This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + ## `rakudo-star:-alpine` This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/redis/README.md b/redis/README.md index 801402166d65..0eddc43fa642 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.4`, `7.2`, `7`, `latest`, `7.2.4-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/b77450d34ae54354f41970fc44bf840353f59ef4/7.2/debian/Dockerfile) +- [`7.2.4`, `7.2`, `7`, `latest`, `7.2.4-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.2/debian/Dockerfile) - [`7.2.4-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.4-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b77450d34ae54354f41970fc44bf840353f59ef4/7.2/alpine/Dockerfile) -- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/313fd068a6751fd9f611e94addfa9ea56a23a3a7/7.0/debian/Dockerfile) +- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.0/debian/Dockerfile) - [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/313fd068a6751fd9f611e94addfa9ea56a23a3a7/7.0/alpine/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.2/debian/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.2/debian/Dockerfile) - [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/531cfa59d944bbbfb22b8228646d12c926dfc010/6.2/alpine/Dockerfile) -- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/76c393fd8ac537201fe4bc4f200b4b5daee03f24/6.0/debian/Dockerfile) +- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.0/debian/Dockerfile) - [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.19`, `6.0-alpine3.19`](https://github.com/docker-library/redis/blob/ac5605ebe2e7b4b371edcf94ad06e873986a6b63/6.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 5a30ee99dbe7..674fb442dc39 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/51b7921366b46e2dd5a7f9629b933a3e7a68fdb1/5.1/bookworm/Dockerfile) +- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.1/bookworm/Dockerfile) - [`5.1.2-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.2-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/51b7921366b46e2dd5a7f9629b933a3e7a68fdb1/5.1/alpine3.18/Dockerfile) -- [`5.0.8`, `5.0`, `5.0.8-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/a47825ab3251935beedb9d83ecdc80e78d1ccf28/5.0/bookworm/Dockerfile) +- [`5.0.8`, `5.0`, `5.0.8-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.0/bookworm/Dockerfile) - [`5.0.8-alpine3.18`, `5.0-alpine3.18`, `5.0.8-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/a47825ab3251935beedb9d83ecdc80e78d1ccf28/5.0/alpine3.18/Dockerfile) # Quick reference (cont.) @@ -135,8 +135,8 @@ Currently, the default user and password from upstream is admin/admin ([logging Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `redmine` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your files [by writing the files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your files [by writing the files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/ros/README.md b/ros/README.md index 3c49a9a8ee64..8734771afa2f 100644 --- a/ros/README.md +++ b/ros/README.md @@ -34,9 +34,9 @@ WARNING: - [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/rolling/ubuntu/jammy/ros-core/Dockerfile) -- [`rolling-ros-base`, `rolling-ros-base-jammy`, `rolling`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/ros-base/Dockerfile) -- [`rolling-perception`, `rolling-perception-jammy`](https://github.com/osrf/docker_images/blob/73c1bf4c30e97d5d3d7c2aaddc8137cae2411409/ros/rolling/ubuntu/jammy/perception/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-core/Dockerfile) +- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-base/Dockerfile) +- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/perception/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 8617af97f1ac..5b82cb5937c9 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/bookworm/Dockerfile) -- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/slim-bookworm/Dockerfile) -- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/bullseye/Dockerfile) -- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/slim-bullseye/Dockerfile) +- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/bookworm/Dockerfile) +- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/slim-bookworm/Dockerfile) +- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/bullseye/Dockerfile) +- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/slim-bullseye/Dockerfile) - [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.19/Dockerfile) - [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.18/Dockerfile) -- [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bookworm/Dockerfile) -- [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bookworm/Dockerfile) -- [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/bullseye/Dockerfile) -- [`3.2.3-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/slim-bullseye/Dockerfile) +- [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/bookworm/Dockerfile) +- [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/slim-bookworm/Dockerfile) +- [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/bullseye/Dockerfile) +- [`3.2.3-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/slim-bullseye/Dockerfile) - [`3.2.3-alpine3.19`, `3.2-alpine3.19`, `3.2.3-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.19/Dockerfile) - [`3.2.3-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.18/Dockerfile) -- [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bookworm/Dockerfile) -- [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bookworm/Dockerfile) -- [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/bullseye/Dockerfile) -- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.1/slim-bullseye/Dockerfile) +- [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/bookworm/Dockerfile) +- [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/slim-bookworm/Dockerfile) +- [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/bullseye/Dockerfile) +- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/slim-bullseye/Dockerfile) - [`3.1.4-alpine3.19`, `3.1-alpine3.19`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/61a806938da52038916a8fd7b9b4373937bdc28f/3.1/alpine3.19/Dockerfile) - [`3.1.4-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) -- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/bullseye/Dockerfile) -- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/slim-bullseye/Dockerfile) -- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/buster/Dockerfile) -- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/ed1be47a38a7a24a0aa03c450549afcb592f02a8/3.0/slim-buster/Dockerfile) +- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/bullseye/Dockerfile) +- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/slim-bullseye/Dockerfile) +- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/buster/Dockerfile) +- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/slim-buster/Dockerfile) - [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.0/alpine3.16/Dockerfile) # Quick reference (cont.) diff --git a/teamspeak/README.md b/teamspeak/README.md index 4e8cb268ef31..8928e1b3488a 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -198,8 +198,8 @@ When the whole data directory (`/var/ts3server/`) has been mounted somewhere, th Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `teamspeak` images to familiarize themselves with the options available, including: -- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/engine/tutorials/dockervolumes/#adding-a-data-volume). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. -- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-directory-as-a-data-volume). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. +- Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. +- Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: diff --git a/wordpress/README.md b/wordpress/README.md index f77ad99fdd15..1776044dfad0 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.0-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.0-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/apache/Dockerfile) -- [`6.5.0-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/fpm/Dockerfile) +- [`6.5.0-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.0-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.1/apache/Dockerfile) +- [`6.5.0-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.1/fpm/Dockerfile) - [`6.5.0-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.0-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.0`, `6.5`, `6`, `latest`, `6.5.0-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.0-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/apache/Dockerfile) -- [`6.5.0-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.0-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/fpm/Dockerfile) +- [`6.5.0-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.0`, `6.5`, `6`, `latest`, `6.5.0-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.0-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.2/apache/Dockerfile) +- [`6.5.0-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.0-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.2/fpm/Dockerfile) - [`6.5.0-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.0-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.0-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.0-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/apache/Dockerfile) -- [`6.5.0-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/fpm/Dockerfile) +- [`6.5.0-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.0-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.3/apache/Dockerfile) +- [`6.5.0-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.3/fpm/Dockerfile) - [`6.5.0-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) From 9cb1b673bb612089443449c913e25d1170e7aac1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Apr 2024 11:33:19 -0700 Subject: [PATCH 1097/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 2665af75d0db..4f45d9155a8a 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/elasticsearch/Dockerfile) -- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/elasticsearch/Dockerfile) +- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index debc2220a25f..e1b52762ba14 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/kibana/Dockerfile) -- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/kibana/Dockerfile) +- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 26eb91962f42..39db678a1fd1 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/logstash/Dockerfile) -- [`7.17.19`](https://github.com/elastic/dockerfiles/blob/e6eabbb45f3729cefacf138e418aaa12a541741b/logstash/Dockerfile) +- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/logstash/Dockerfile) # Quick reference (cont.) From 342afe7444214da1e051ca415cddb78a07f30a61 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Apr 2024 15:37:52 -0700 Subject: [PATCH 1098/2686] Run update.sh --- haproxy/README.md | 2 -- rocket.chat/README.md | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index af423225a2a9..526d8dc58169 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -30,8 +30,6 @@ WARNING: - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) - [`2.8.9-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.9-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/5d34d74e22c28578cf57033f78017613ea0ced0c/2.8/alpine/Dockerfile) -- [`2.7.12`, `2.7`, `2.7.12-bookworm`, `2.7-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.7/Dockerfile) -- [`2.7.12-alpine`, `2.7-alpine`, `2.7.12-alpine3.19`, `2.7-alpine3.19`](https://github.com/docker-library/haproxy/blob/2d23827e47f9c010a8f4c0144d00997e1963e991/2.7/alpine/Dockerfile) - [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) - [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/20e1b3f92d1e74b2644f5748c62a148d07e2ca43/2.6/alpine/Dockerfile) - [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index d3783dca7584..57caa13f0b4c 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.6`, `6.6`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.6/Dockerfile) +- [`6.7.0`, `6.7`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/2e8ccf72214b7b274fa55c48bcaa954e8f5b9445/6.7/Dockerfile) +- [`6.6.6`, `6.6`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.6/Dockerfile) - [`6.5.5`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.5/Dockerfile) -- [`6.4.9`, `6.4`](https://github.com/RocketChat/Docker.Official.Image/blob/ba59742e0324a108541e353544b546906a3808ef/6.4/Dockerfile) # Quick reference (cont.) From 9c47ac944dc33e150907ad0d4fa5812e05a49f9a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Apr 2024 16:10:18 -0700 Subject: [PATCH 1099/2686] Run update.sh --- bash/README.md | 2 +- rust/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 7a0e5fc49880..b0232f6ce096 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240401`, `devel`, `devel-20240401-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/524f0baff9a921cf8099421f629bed6d4872cb04/devel/Dockerfile) +- [`devel-20240406`, `devel`, `devel-20240406-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/9a0ebc836cbd5f1990be5554ad39719c603e1ef2/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/rust/README.md b/rust/README.md index c608f401a95b..b895b5f0f48b 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.77-buster`, `1.77.1-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/buster/Dockerfile) -- [`1-slim-buster`, `1.77-slim-buster`, `1.77.1-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/buster/slim/Dockerfile) -- [`1-bullseye`, `1.77-bullseye`, `1.77.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.77-bookworm`, `1.77.1-bookworm`, `bookworm`, `1`, `1.77`, `1.77.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.1-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.1-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/714d8bde144bc883ccedfa70fbd000c500b15f5a/1.77.1/alpine3.19/Dockerfile) +- [`1-buster`, `1.77-buster`, `1.77.2-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/Dockerfile) +- [`1-slim-buster`, `1.77-slim-buster`, `1.77.2-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/slim/Dockerfile) +- [`1-bullseye`, `1.77-bullseye`, `1.77.2-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.2-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.77-bookworm`, `1.77.2-bookworm`, `bookworm`, `1`, `1.77`, `1.77.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.2-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.2-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.2-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.2-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.19/Dockerfile) # Quick reference (cont.) From f3c857c33f1265ec24271612e408acd7824d559c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Apr 2024 17:36:12 -0700 Subject: [PATCH 1100/2686] Run update.sh --- debian/README.md | 60 ++++++++++++++++++++++++------------------------ python/README.md | 60 ++++++++++++++++++++++++------------------------ 2 files changed, 60 insertions(+), 60 deletions(-) diff --git a/debian/README.md b/debian/README.md index 35946fc859c1..515b422e975f 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,36 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240311`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240311-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240311`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240311-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240311`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20240311-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/rc-buggy/Dockerfile) -- [`sid`, `sid-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/sid/Dockerfile) -- [`sid-slim`, `sid-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/sid/slim/Dockerfile) -- [`stable`, `stable-20240311`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240311-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b99080a6b21c3d6abaaa1fe95dfa0976d1c7dadf/stable/slim/Dockerfile) -- [`testing`, `testing-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240330`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240330-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/d67672a8f10361509e937a8aefc6b77dfc43dc78/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240408`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240408-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240408`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240408-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240408`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/Dockerfile) +- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/backports/Dockerfile) +- [`buster-slim`, `buster-20240408-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/Dockerfile) +- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/backports/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/rc-buggy/Dockerfile) +- [`sid`, `sid-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/sid/Dockerfile) +- [`sid-slim`, `sid-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/sid/slim/Dockerfile) +- [`stable`, `stable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/slim/Dockerfile) +- [`testing`, `testing-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index ba9701749480..c4673729067b 100644 --- a/python/README.md +++ b/python/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`3.13.0a5-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a5-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a5-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a5-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a5-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a5-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a5-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a5-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a5-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a5-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.2-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bookworm/Dockerfile) -- [`3.12.2-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.2-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/slim-bookworm/Dockerfile) -- [`3.12.2-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bullseye/Dockerfile) -- [`3.12.2-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/slim-bullseye/Dockerfile) -- [`3.12.2-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.2-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/alpine3.19/Dockerfile) -- [`3.12.2-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/alpine3.18/Dockerfile) -- [`3.12.2-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.2-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0a6-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bookworm/Dockerfile) +- [`3.13.0a6-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a6-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0a6-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bullseye/Dockerfile) +- [`3.13.0a6-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0a6-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0a6-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0a6-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0a6-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.3-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) +- [`3.12.3-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.3-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bookworm/Dockerfile) +- [`3.12.3-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bullseye/Dockerfile) +- [`3.12.3-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bullseye/Dockerfile) +- [`3.12.3-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.19/Dockerfile) +- [`3.12.3-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.18/Dockerfile) +- [`3.12.3-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.3-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) - [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) @@ -73,20 +73,20 @@ WARNING: ## Shared Tags -- `3.13.0a5`, `3.13-rc`: - - [`3.13.0a5-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a5-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec3500d01443b87701962245a9f465d05007dc8a/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.2`, `3.12`, `3`, `latest`: - - [`3.12.2-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.12/bookworm/Dockerfile) - - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.2-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/eba24df439d48988302a60cf9ef5cddd5d49b51f/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a6`, `3.13-rc`: + - [`3.13.0a6-bookworm`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bookworm/Dockerfile) + - [`3.13.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0a6-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.12.3`, `3.12`, `3`, `latest`: + - [`3.12.3-bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) + - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.3-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) From 9a7a86cdd8ac376daced2f0678fcc6ea6980582c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Apr 2024 10:09:57 -0700 Subject: [PATCH 1101/2686] Run update.sh --- traefik/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 2f6ae77e6955..22f87710076a 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-rc3-windowsservercore-ltsc2022`, `3.0.0-rc3-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-rc3-windowsservercore-1809`, `3.0.0-rc3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/windows/1809/Dockerfile) -- [`v3.0.0-rc3`, `3.0.0-rc3`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/912cc37ab2fb33dffbe653d3b98a224cdc833c48/alpine/Dockerfile) -- [`v2.11.0-windowsservercore-ltsc2022`, `2.11.0-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.0-windowsservercore-1809`, `2.11.0-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/windows/1809/Dockerfile) -- [`v2.11.0`, `2.11.0`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/fccb66b9845fc4266154377b774ac95127d38078/alpine/Dockerfile) +- [`v3.0.0-rc4-windowsservercore-ltsc2022`, `3.0.0-rc4-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-rc4-windowsservercore-1809`, `3.0.0-rc4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/windows/1809/Dockerfile) +- [`v3.0.0-rc4`, `3.0.0-rc4`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/alpine/Dockerfile) +- [`v2.11.1-windowsservercore-ltsc2022`, `2.11.1-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.1-windowsservercore-1809`, `2.11.1-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/windows/1809/Dockerfile) +- [`v2.11.1`, `2.11.1`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/alpine/Dockerfile) # Quick reference (cont.) From 66c5dae6b3906cc52152d745bcd9ed0ed56a3396 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Apr 2024 11:09:58 -0700 Subject: [PATCH 1102/2686] Run update.sh --- clojure/README.md | 158 ++++++++++++++++++++++++-------------------- wordpress/README.md | 18 ++--- 2 files changed, 94 insertions(+), 82 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 98b5f6cc75fb..8bf694d8c998 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,79 +24,91 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31b7d3f1003eeafd155bc504e78f8a515655ea48/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/boot/Dockerfile) +- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) +- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/boot/Dockerfile) +- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) +- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/boot/Dockerfile) +- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) +- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.1.1435-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.1.1435`, `temurin-22-tools-deps-1.11.1.1435-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.1.1435-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.1.1435-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 1776044dfad0..2a4e5bf4b94a 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.0-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.0-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.1/apache/Dockerfile) -- [`6.5.0-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.1/fpm/Dockerfile) -- [`6.5.0-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.0-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.0`, `6.5`, `6`, `latest`, `6.5.0-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.0-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.2/apache/Dockerfile) -- [`6.5.0-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.0-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.2/fpm/Dockerfile) -- [`6.5.0-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.0-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.0-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.0-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.3/apache/Dockerfile) -- [`6.5.0-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2007d5d69bfa13fd2af075a786bbf544e9f6cbe8/latest/php8.3/fpm/Dockerfile) -- [`6.5.0-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8bd179f11462d26155d98dff696fa7c4ea546d17/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.5.2-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.2-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/apache/Dockerfile) +- [`6.5.2-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/fpm/Dockerfile) +- [`6.5.2-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.5.2-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.2`, `6.5`, `6`, `latest`, `6.5.2-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.2-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/apache/Dockerfile) +- [`6.5.2-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.2-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/fpm/Dockerfile) +- [`6.5.2-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.2-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.5.2-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.2-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/apache/Dockerfile) +- [`6.5.2-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/fpm/Dockerfile) +- [`6.5.2-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) From 895fd94d4ef97a7cf50712460c8ea32f28c4391f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Apr 2024 17:21:55 -0700 Subject: [PATCH 1103/2686] Run update.sh --- julia/README.md | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/julia/README.md b/julia/README.md index faaf392605c3..d42b1cd8cb76 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,10 +28,12 @@ WARNING: ## Simple Tags -- [`1.11.0-alpha2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-alpha2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-alpha2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-alpha2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-beta1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-beta1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-beta1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`, `1.11.0-beta1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/alpine3.19/Dockerfile) +- [`1.11.0-beta1-alpine3.18`, `1.11-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/alpine3.18/Dockerfile) +- [`1.11.0-beta1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-beta1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.2-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) - [`1.10.2-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bullseye/Dockerfile) - [`1.10.2-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.2-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.19/Dockerfile) @@ -47,13 +49,13 @@ WARNING: ## Shared Tags -- `1.11.0-alpha2`, `1.11-rc`, `rc`: - - [`1.11.0-alpha2-bookworm`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-alpha2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-alpha2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-alpha2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-alpha2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-alpha2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e6bc76709c9a6536707d07b75b42c4702d7e7843/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-beta1`, `1.11-rc`, `rc`: + - [`1.11.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-beta1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.2`, `1.10`, `1`, `latest`: - [`1.10.2-bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -128,6 +130,14 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -137,14 +147,6 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](http://julialang.org/) for the software contained in this image. From a7f4998410008e414c37bef6c1395f98dca5156e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Apr 2024 05:37:03 -0700 Subject: [PATCH 1104/2686] Run update.sh --- node/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/node/README.md b/node/README.md index be0b1af80bab..47d895846299 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.2-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.2-alpine`, `21.7.2-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.2`, `21.7.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.2-bookworm-slim`, `21.7.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.1-alpine`, `20.12.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.1`, `20.12.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.1-bookworm-slim`, `20.12.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.12-bullseye`, `20.12.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.12-buster`, `20.12.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/buster/Dockerfile) -- [`20-buster-slim`, `20.12-buster-slim`, `20.12.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.1-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.1-alpine`, `18.20.1-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.1`, `18.20.1-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.1-bookworm-slim`, `18.20.1-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.1-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.1-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.20-buster`, `18.20.1-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/buster/Dockerfile) -- [`18-buster-slim`, `18.20-buster-slim`, `18.20.1-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/6a60b788fabfac92457f5a3eb7af1453bb3c67b9/18/buster-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bullseye-slim/Dockerfile) +- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.2-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.2-alpine`, `20.12.2-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.2`, `20.12.2-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.2-bookworm-slim`, `20.12.2-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.12-bullseye`, `20.12.2-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.2-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.12-buster`, `20.12.2-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/buster/Dockerfile) +- [`20-buster-slim`, `20.12-buster-slim`, `20.12.2-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.2-bookworm-slim`, `18.20.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.20-buster`, `18.20.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/buster/Dockerfile) +- [`18-buster-slim`, `18.20-buster-slim`, `18.20.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/buster-slim/Dockerfile) # Quick reference (cont.) From 2388b1b0d99f7e2fa61e36b8d5643803a57d5e67 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Apr 2024 11:09:57 -0700 Subject: [PATCH 1105/2686] Run update.sh --- php/README.md | 84 +++++++++++++++++---------------------------------- 1 file changed, 28 insertions(+), 56 deletions(-) diff --git a/php/README.md b/php/README.md index 737b735aedf8..c14c0617735f 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.5RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.5RC1-bookworm`, `8.3-rc-bookworm`, `8.3.5RC1-cli`, `8.3-rc-cli`, `8.3.5RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.5RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.5RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.5RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.5RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.5RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.5RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.5RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.5RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.5RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.5RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.5RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.5RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.5RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.5RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.5RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.5RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.5RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.5RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.5RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.5RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.5RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.5RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.5RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/40edd0a9078357cdce54ee14eee654bc9f77d3cf/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.4-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.4-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.4-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.4`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/cli/Dockerfile) -- [`8.3.4-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.4-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/apache/Dockerfile) -- [`8.3.4-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.4-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/fpm/Dockerfile) -- [`8.3.4-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.4-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bookworm/zts/Dockerfile) -- [`8.3.4-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.4-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/cli/Dockerfile) -- [`8.3.4-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/apache/Dockerfile) -- [`8.3.4-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/fpm/Dockerfile) -- [`8.3.4-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.3/bullseye/zts/Dockerfile) -- [`8.3.4-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.4-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.4-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.4-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.4-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.4-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.4-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.4-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.4-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.4-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.4-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.4-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/16b4b79d0cc6346ec003ed30f30566f9fbfdc6a1/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.18RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.18RC1-bookworm`, `8.2-rc-bookworm`, `8.2.18RC1-cli`, `8.2-rc-cli`, `8.2.18RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.18RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.18RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.18RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.18RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.18RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.18RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.18RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.18RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.18RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.18RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.18RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.18RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.18RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.18RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.18RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.18RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.18RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.18RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.18RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.18RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.18RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.18RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.18RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/e67799640f4241810eb1de1912860707aee2d2ef/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.17-cli-bookworm`, `8.2-cli-bookworm`, `8.2.17-bookworm`, `8.2-bookworm`, `8.2.17-cli`, `8.2-cli`, `8.2.17`, `8.2`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/cli/Dockerfile) -- [`8.2.17-apache-bookworm`, `8.2-apache-bookworm`, `8.2.17-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/apache/Dockerfile) -- [`8.2.17-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.17-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/fpm/Dockerfile) -- [`8.2.17-zts-bookworm`, `8.2-zts-bookworm`, `8.2.17-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bookworm/zts/Dockerfile) -- [`8.2.17-cli-bullseye`, `8.2-cli-bullseye`, `8.2.17-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/cli/Dockerfile) -- [`8.2.17-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/apache/Dockerfile) -- [`8.2.17-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/fpm/Dockerfile) -- [`8.2.17-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.2/bullseye/zts/Dockerfile) -- [`8.2.17-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.17-alpine3.19`, `8.2-alpine3.19`, `8.2.17-cli-alpine`, `8.2-cli-alpine`, `8.2.17-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.17-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.17-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.17-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.17-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.17-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.17-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.17-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.17-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/fd82b36149b5b6057f8f46bd1dee7fb8d04222e8/8.2/alpine3.18/zts/Dockerfile) +- [`8.3.6-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.6-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.6-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.6`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/cli/Dockerfile) +- [`8.3.6-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.6-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/apache/Dockerfile) +- [`8.3.6-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.6-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/fpm/Dockerfile) +- [`8.3.6-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.6-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/zts/Dockerfile) +- [`8.3.6-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.6-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/cli/Dockerfile) +- [`8.3.6-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/apache/Dockerfile) +- [`8.3.6-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/fpm/Dockerfile) +- [`8.3.6-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/zts/Dockerfile) +- [`8.3.6-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.6-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.6-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.6-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.6-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.6-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.6-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.6-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.6-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.6-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.6-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.6-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.18-cli-bookworm`, `8.2-cli-bookworm`, `8.2.18-bookworm`, `8.2-bookworm`, `8.2.18-cli`, `8.2-cli`, `8.2.18`, `8.2`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/cli/Dockerfile) +- [`8.2.18-apache-bookworm`, `8.2-apache-bookworm`, `8.2.18-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/apache/Dockerfile) +- [`8.2.18-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.18-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/fpm/Dockerfile) +- [`8.2.18-zts-bookworm`, `8.2-zts-bookworm`, `8.2.18-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/zts/Dockerfile) +- [`8.2.18-cli-bullseye`, `8.2-cli-bullseye`, `8.2.18-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/cli/Dockerfile) +- [`8.2.18-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/apache/Dockerfile) +- [`8.2.18-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/fpm/Dockerfile) +- [`8.2.18-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/zts/Dockerfile) +- [`8.2.18-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.18-alpine3.19`, `8.2-alpine3.19`, `8.2.18-cli-alpine`, `8.2-cli-alpine`, `8.2.18-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.18-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.18-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.18-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.18-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.18-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.18-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.18-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.18-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/zts/Dockerfile) - [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/cli/Dockerfile) - [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/apache/Dockerfile) - [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/fpm/Dockerfile) From 6eb3b3db95255c491e9d01a11e8fb609f11fd6ea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Apr 2024 14:19:23 -0700 Subject: [PATCH 1106/2686] Run update.sh --- erlang/README.md | 36 ++++++++++++++++++------------------ traefik/README.md | 12 ++++++------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index dbfbc9875647..d54dcd262da8 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.0-rc1.0.0`, `27.0-rc1.0`, `27.0-rc1`, `27`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/Dockerfile) -- [`27.0-rc1.0.0-slim`, `27.0-rc1.0-slim`, `27.0-rc1-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/slim/Dockerfile) -- [`27.0-rc1.0.0-alpine`, `27.0-rc1.0-alpine`, `27.0-rc1-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/27/alpine/Dockerfile) -- [`26.2.3.0`, `26.2.3`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/Dockerfile) -- [`26.2.3.0-slim`, `26.2.3-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/slim/Dockerfile) -- [`26.2.3.0-alpine`, `26.2.3-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/41fd61e2f6d6f2b9bb40416d25f37cfdf7406451/26/alpine/Dockerfile) -- [`25.3.2.9`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/Dockerfile) -- [`25.3.2.9-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/slim/Dockerfile) -- [`25.3.2.9-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/25/alpine/Dockerfile) -- [`24.3.4.16`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/Dockerfile) -- [`24.3.4.16-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/slim/Dockerfile) -- [`24.3.4.16-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/535a0dc1df7e7557df40425788930f85847ef5da/24/alpine/Dockerfile) -- [`23.3.4.19`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/Dockerfile) -- [`23.3.4.19-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/slim/Dockerfile) -- [`23.3.4.19-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/91311b4b6e25a98416f87f77004361ce7439fece/23/alpine/Dockerfile) -- [`22.3.4.26`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/Dockerfile) -- [`22.3.4.26-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/slim/Dockerfile) -- [`22.3.4.26-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897/22/alpine/Dockerfile) +- [`27.0-rc2.0.0`, `27.0-rc2.0`, `27.0-rc2`, `27`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/Dockerfile) +- [`27.0-rc2.0.0-slim`, `27.0-rc2.0-slim`, `27.0-rc2-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/slim/Dockerfile) +- [`27.0-rc2.0.0-alpine`, `27.0-rc2.0-alpine`, `27.0-rc2-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/alpine/Dockerfile) +- [`26.2.3.0`, `26.2.3`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/Dockerfile) +- [`26.2.3.0-slim`, `26.2.3-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/slim/Dockerfile) +- [`26.2.3.0-alpine`, `26.2.3-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/alpine/Dockerfile) +- [`25.3.2.10`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/Dockerfile) +- [`25.3.2.10-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/slim/Dockerfile) +- [`25.3.2.10-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/alpine/Dockerfile) +- [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) +- [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) +- [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) +- [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/Dockerfile) +- [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/slim/Dockerfile) +- [`23.3.4.20-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/alpine/Dockerfile) +- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/Dockerfile) +- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/slim/Dockerfile) +- [`22.3.4.27-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/alpine/Dockerfile) - [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) - [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) - [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 22f87710076a..0dd3a92c4182 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-rc4-windowsservercore-ltsc2022`, `3.0.0-rc4-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-rc4-windowsservercore-1809`, `3.0.0-rc4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/windows/1809/Dockerfile) -- [`v3.0.0-rc4`, `3.0.0-rc4`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/ae169d270394a64ccc8f29d921f80716048d6912/alpine/Dockerfile) -- [`v2.11.1-windowsservercore-ltsc2022`, `2.11.1-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.1-windowsservercore-1809`, `2.11.1-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/windows/1809/Dockerfile) -- [`v2.11.1`, `2.11.1`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/444c0a6330b75880dc79547a1cc1d4f24ad2813c/alpine/Dockerfile) +- [`v3.0.0-rc5-windowsservercore-ltsc2022`, `3.0.0-rc5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-rc5-windowsservercore-1809`, `3.0.0-rc5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/windows/1809/Dockerfile) +- [`v3.0.0-rc5`, `3.0.0-rc5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/alpine/Dockerfile) +- [`v2.11.2-windowsservercore-ltsc2022`, `2.11.2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.2-windowsservercore-1809`, `2.11.2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/1809/Dockerfile) +- [`v2.11.2`, `2.11.2`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/alpine/Dockerfile) # Quick reference (cont.) From 475081bcb5e9dc96881fb530d5e1d37394ce5554 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Apr 2024 16:10:21 -0700 Subject: [PATCH 1107/2686] Run update.sh --- nats/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nats/README.md b/nats/README.md index 7b69028ec7db..89b1b1c552a2 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.12-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.12-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/alpine3.19/Dockerfile) -- [`2.10.12-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.12-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/scratch/Dockerfile) -- [`2.10.12-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.12-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.14-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.14-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/alpine3.19/Dockerfile) +- [`2.10.14-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.14-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/scratch/Dockerfile) +- [`2.10.14-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.14-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.12`, `2.10`, `2`, `latest`: - - [`2.10.12-scratch`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/scratch/Dockerfile) - - [`2.10.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.12-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.12-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.12-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.12-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.14`, `2.10`, `2`, `latest`: + - [`2.10.14-scratch`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/scratch/Dockerfile) + - [`2.10.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.14-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.14-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.14-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5d1e76ec75469f39f55b9c763c0afa7b017dd250/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 4e130c5efc3de5c391dfa5603eff8938d20e7260 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Apr 2024 17:10:13 -0700 Subject: [PATCH 1108/2686] Run update.sh --- almalinux/README.md | 8 ++++---- docker/README.md | 16 ++++++++-------- mongo/README.md | 15 +++++++++++++++ photon/README.md | 4 ++-- satosa/README.md | 2 +- 5 files changed, 30 insertions(+), 15 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 092abf53c4f5..d2dd956e439f 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.9`, `8.9-20231124`](https://github.com/AlmaLinux/docker-images/blob/b5c3f2dea7120eee009287009173081dfc079e86/Dockerfile-x86_64-default) -- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20231124`](https://github.com/AlmaLinux/docker-images/blob/b5c3f2dea7120eee009287009173081dfc079e86/Dockerfile-x86_64-minimal) -- [`latest`, `9`, `9.3`, `9.3-20231124`](https://github.com/AlmaLinux/docker-images/blob/5b541a65dc5a6b837e19aec8936bed61b7a8a2bd/Dockerfile-x86_64-default) -- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20231124`](https://github.com/AlmaLinux/docker-images/blob/5b541a65dc5a6b837e19aec8936bed61b7a8a2bd/Dockerfile-x86_64-minimal) +- [`8`, `8.9`, `8.9-20240410`](https://github.com/AlmaLinux/container-images/blob/7aee1db985cc9ebb0347f2f4875f301fa4b09ab7/default/amd64/Dockerfile) +- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20240410`](https://github.com/AlmaLinux/container-images/blob/265e51205d22917cbc7c60839c131dea85296705/minimal/amd64/Dockerfile) +- [`latest`, `9`, `9.3`, `9.3-20240410`](https://github.com/AlmaLinux/container-images/blob/81d7017ae90da3bcddd6dc89663d2a5d3b2891b8/default/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20240410`](https://github.com/AlmaLinux/container-images/blob/8812c340f41fa91678d1e71c3494a8811458425a/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index d83d5dd845f0..508854e270c9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.0.0-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/cli/Dockerfile) -- [`26.0.0-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.0-dind-alpine3.19`, `26.0.0`, `26.0`, `26`, `latest`, `26.0.0-alpine3.19`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind/Dockerfile) -- [`26.0.0-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/79c28eb1b838542a8e6732b66d00839d426bd589/26/dind-rootless/Dockerfile) -- [`26.0.0-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.0-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-1809/Dockerfile) +- [`26.0.1-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/cli/Dockerfile) +- [`26.0.1-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.1-dind-alpine3.19`, `26.0.1`, `26.0`, `26`, `latest`, `26.0.1-alpine3.19`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/dind/Dockerfile) +- [`26.0.1-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/dind-rootless/Dockerfile) +- [`26.0.1-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.1-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.0.0-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1d101cc2a35b846215c3784deec80ab98f2847b5/26/windows/windowsservercore-1809/Dockerfile) +- `26.0.1-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-1809/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 66f2cfa12aca..4a26ea6b21d6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,6 +33,11 @@ WARNING: - [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.8-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.8-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.15-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/Dockerfile) +- [`6.0.15-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.15-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.15-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.15-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.14-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) @@ -61,6 +66,16 @@ WARNING: - `7.0.8-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.15-rc0`, `6.0-rc`: + - [`6.0.15-rc0-jammy`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/Dockerfile) + - [`6.0.15-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.15-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.15-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.15-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.15-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.15-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.15-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.15-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.14`, `6.0`, `6`: - [`6.0.14-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 9f40f14e097c..db464a53f893 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240331`, `latest`](https://github.com/vmware/photon-docker-image/blob/e7c38d904a0020a67a4c400c15d16922ac7347a0/docker/Dockerfile) +- [`5.0`, `5.0-20240411`, `latest`](https://github.com/vmware/photon-docker-image/blob/b8fb5daeb8c0ab9151ee4ed13c2b62cadd6a1fb1/docker/Dockerfile) - [`4.0`, `4.0-20240401`](https://github.com/vmware/photon-docker-image/blob/6001909dd7b72f7cd5f6ac7bea41d735588eb08c/docker/Dockerfile) -- [`3.0`, `3.0-20240321`](https://github.com/vmware/photon-docker-image/blob/b6c177c3651f9cd861588b86c8a0d7bffee42c92/docker/Dockerfile) +- [`3.0`, `3.0-20240411`](https://github.com/vmware/photon-docker-image/blob/854f2a64e18085b820d3ac54b2a51586c440886b/docker/Dockerfile) # Quick reference (cont.) diff --git a/satosa/README.md b/satosa/README.md index 417990e06a59..77d7f2636cf5 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -42,7 +42,7 @@ WARNING: [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v5`](https://hub.docker.com/r/arm32v5/satosa/), [`arm32v6`](https://hub.docker.com/r/arm32v6/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) + [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) - **Published image artifact details**: [repo-info repo's `repos/satosa/` directory](https://github.com/docker-library/repo-info/blob/master/repos/satosa) ([history](https://github.com/docker-library/repo-info/commits/master/repos/satosa)) From dd68db9dfcd8458bd59b216db27854329749259c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Apr 2024 11:19:55 -0700 Subject: [PATCH 1109/2686] Run update.sh --- php/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/php/README.md b/php/README.md index c14c0617735f..0ed9a2070bfb 100644 --- a/php/README.md +++ b/php/README.md @@ -52,20 +52,20 @@ WARNING: - [`8.2.18-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.18-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/cli/Dockerfile) - [`8.2.18-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/fpm/Dockerfile) - [`8.2.18-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/zts/Dockerfile) -- [`8.1.27-cli-bookworm`, `8.1-cli-bookworm`, `8.1.27-bookworm`, `8.1-bookworm`, `8.1.27-cli`, `8.1-cli`, `8.1.27`, `8.1`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/cli/Dockerfile) -- [`8.1.27-apache-bookworm`, `8.1-apache-bookworm`, `8.1.27-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/apache/Dockerfile) -- [`8.1.27-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.27-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/fpm/Dockerfile) -- [`8.1.27-zts-bookworm`, `8.1-zts-bookworm`, `8.1.27-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bookworm/zts/Dockerfile) -- [`8.1.27-cli-bullseye`, `8.1-cli-bullseye`, `8.1.27-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/cli/Dockerfile) -- [`8.1.27-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/apache/Dockerfile) -- [`8.1.27-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/fpm/Dockerfile) -- [`8.1.27-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/2bef4bba1fe144148ffe5d992acf10f6070d6650/8.1/bullseye/zts/Dockerfile) -- [`8.1.27-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.27-alpine3.19`, `8.1-alpine3.19`, `8.1.27-cli-alpine`, `8.1-cli-alpine`, `8.1.27-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.27-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.27-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.27-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.27-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.19/zts/Dockerfile) -- [`8.1.27-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.27-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.27-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.27-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/641cf9a226ba8447dcf9338d2a19a59f1102967b/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/cli/Dockerfile) +- [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/apache/Dockerfile) +- [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/fpm/Dockerfile) +- [`8.1.28-zts-bookworm`, `8.1-zts-bookworm`, `8.1.28-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/zts/Dockerfile) +- [`8.1.28-cli-bullseye`, `8.1-cli-bullseye`, `8.1.28-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/cli/Dockerfile) +- [`8.1.28-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/apache/Dockerfile) +- [`8.1.28-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/fpm/Dockerfile) +- [`8.1.28-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/zts/Dockerfile) +- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.28-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.28-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/zts/Dockerfile) # Quick reference (cont.) From bb4f7e2d534d1c4f62ef19bc6b09489e9ba3d8cc Mon Sep 17 00:00:00 2001 From: Robert Reeves <1992817+r2-lf@users.noreply.github.com> Date: Fri, 12 Apr 2024 16:29:09 -0500 Subject: [PATCH 1110/2686] Add Liquibase (#1803) Co-authored-by: Alejandro Alvarez Co-authored-by: jandroav --- liquibase/README-short.txt | 1 + liquibase/content.md | 23 +++++++++++++++++++++++ liquibase/github-repo | 1 + liquibase/license.md | 1 + liquibase/logo.png | Bin 0 -> 39491 bytes liquibase/maintainer.md | 1 + 6 files changed, 27 insertions(+) create mode 100644 liquibase/README-short.txt create mode 100644 liquibase/content.md create mode 100644 liquibase/github-repo create mode 100644 liquibase/license.md create mode 100644 liquibase/logo.png create mode 100644 liquibase/maintainer.md diff --git a/liquibase/README-short.txt b/liquibase/README-short.txt new file mode 100644 index 000000000000..fb08a9ad6f19 --- /dev/null +++ b/liquibase/README-short.txt @@ -0,0 +1 @@ +Liquibase is DevOps for your database. \ No newline at end of file diff --git a/liquibase/content.md b/liquibase/content.md new file mode 100644 index 000000000000..b0b21d2f1cb0 --- /dev/null +++ b/liquibase/content.md @@ -0,0 +1,23 @@ +# What is Liquibase? + +Liquibase is DevOps for your database. More information about Liquibase can be found at [http://www.liquibase.org](http://www.liquibase.org). + +Liquibase compares the contents of a Change Log to the database to determine which, if any, changes need to be applied to the database. For example, you can create tables, add columns, and many more with Liquibase. Liquibase is delivered via a Docker container to assist users that are leveraging Docker for their CI/CD solution. + +%%LOGO%% + +# How to use this image + +If you are executing Liquibase via the command line today, you are probably doing it like so: + +```console +$ liquibase update --driver=org.postgresql.Driver --url="jdbc:postgresql://:/" --changeLogFile=/liquibase/changelog/changelog.xml --username= --password= +``` + +The only change to use this docker image, is to use `docker run ...` and mount the folder containing your changelog.xml (or .yml or .json or .sql) to `/liquibase/changelog` in the Liquibase container + +```console +$ docker run -v /home/user/changelog:/liquibase/changelog %%IMAGE%% --driver=org.postgresql.Driver --url="jdbc:postgresql://:/" --changeLogFile=/liquibase/changelog/changelog.xml --username= --password= +``` + +All Liquibase commands, such as `rollback`, `updateSQL`, and others, are available, as well. diff --git a/liquibase/github-repo b/liquibase/github-repo new file mode 100644 index 000000000000..2d758d9c20e6 --- /dev/null +++ b/liquibase/github-repo @@ -0,0 +1 @@ +https://github.com/liquibase/docker diff --git a/liquibase/license.md b/liquibase/license.md new file mode 100644 index 000000000000..f80fe12052df --- /dev/null +++ b/liquibase/license.md @@ -0,0 +1 @@ +View [license information](https://github.com/liquibase/liquibase/blob/master/LICENSE.txt) for the Liquibase software contained in this image. diff --git a/liquibase/logo.png b/liquibase/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..9f6d31750b24aff850e96686f011f4a6b49f7172 GIT binary patch literal 39491 zcmZr%c|4Tu*OzEfQr03=_GI5emh7@egt3&}kTiyjkc4Eb>?8YHGRi(QC}rObw-8Fk zGNBk`g!h{CJoWrOZ}UerbKTc+uCsj4_nbS@*if6Ej-8H*ii%!WN8>UT)&5>8sy)>Q z_JMD{p6Jd7f9<=jr>#M?L-}Ok3gfA$Qh(@bTr|5q^7W(t7^hR<&Q3gy+Av#4nMUOI zHD$u35L1 zokrldUmfX55@ZO=xaO%O$Bas4v0{gLNki?Ol_Rjs4p^ofR4cNqgs>Uw;7cX8?{~mh zb7e$q%_Mt#?+Nni*ctC!^^YQZEcMu&fO%D@>8WQYuWoN;JQgugetk7!rlW!__W(Hi z??1!OEj_!A%WE37+O$~V^}3K&1O+8wl2DYw1WZK^G9ZlDiw>URKm})Zbgh=W=q;3l z<_HR1bX!*z6?}(f0?e(Yh86#rjEX8ti%?l956tK0y|M1(v z4iOyGo*9pAE-Nyhbxp8%zxUsV8Z|fu@Sm#G1WA$z+$fCrqSs5XO)uF1=WXeN@rzIs zgV&;CBn+GcD0jd6=PsvouzsDRUP2n&`({Zyj4g#|*gkh@rhA-;2tPNEA48s-u-gC6 zXsWvrC+1r36~i&*ovV8hAB{de)mW5+-m|XuOA!Zqlt?X~)5n1v~C z{C*~wTnfBIv*ZA0%<{b7pJA(g{S_XO%eL2oVzD=J1o;&oDRx$N=a_%NIIJWUAdL6? zJG3aefcSE9-Z`v(OjuRup6&$Q>LmH{O_5iaBh#*bgkY@jfpMC(@(jYp9%I0ab5zB4 z!h{jftC;YDo4nNj&UU;8T(~%NZ_?_$U#D(leP%s>l>0Q$3T>f($J{+A<@b24qA1x4 z&(?*M%NG&yUX+FW&1Xxs>PA9y+5R2aSTikRz+fVfMjRm2MqN)b6ZhK(38-h!%!nAw z6#bF*OLZ*;Nkqw49BUe55}vQx5i{s-y>h<&&mk}5WQUCiAaIg3qIs@-2fu7u;)T%| zoILr@5NY-pEuM3IFR|umBI~6qPwW?4Va4j!h!pyN_j8vy#_c)QHU(RMG33$%M~uOn z)zufhhu9s^?Yw^`!o$Y4QUuo&QXf8*e>N(kJo?G)c@Nq=^7wh?xy6M4`{;51WG2N0Xo=)cob@g=ggcdlk8q}@Nv|7LaY zQx$bN!@s{8GfG*HC?R4}iOQD@)b?ep60GElOHOoZ{X3$Ow=C9B8e&OExv!538uv+W zd_nW?kB5gllYAL4R|q2--nu$&WkQIOj5?hFNxeT?+k12b?SRn}6h0{A8RQ-od%fz< z(fEzcX9sa!qNbM_FE5UHVJsxze;y2!1sh2vdR)>~d!7g!#_jw+{-IaE-y&`*apAt% zc@q`(c~}1O6aVf>{0OVebxg6)>4VSiV7f-pEieA)&)56CeRmKawZ7}%4V98FHK}$2Zt@Y-sRm!v^o15tuAM5C#+hB!K|BOAtJj>9t53yCvGH+Z!G4*5v(#b3MF=Sh8tv>y?JWi8LANbtg$ zDDu&;)2AIfXrL3Fv6N@;UgS^>*|x8j9W%F&q8#YQUVr=^;5*(vI=cLFjFXip(fMR| zAiI5tDB>d%%*!L%?W{Ey_);~u&sF+GFNYxA!P9Zyn91-IzF&71Dm_WP^=5SmDk)a~ zK&Cv+PN;p5^XO>VATwFCoR{*A{UiQd)uqH)IT}ben)1b?m!IA%i~&(nCVOO{&e`Qy z^~*pGw>z@T;x06f4ues56WDme=;+kcT64FlRpyzU^(fCaHZEEi+z8p89GETsA*w)` zEo)LC^d49-=5^c$M#>m*K_|i9F1{%8J6DT3Ns8Q6)jC&2+ApfL%GQT&8~mOrE1^Jj z;%TM7-oObKFy_=T0$GL@h>WA5W{0nwk1~_J@g?&t5cfYJ7b&xx=|mp-H3A#?&q{pf zdYw$TuRDUD@6x2e_fDSz6MSg&I7oT?c*14Y*)$dJHGVBhJS&n%e7q>HbKry44Ts+c zzT|eu2P&9EN$^kvfKS0<3QqFg_u#RRu-?7b{CBjqok-$KxNPpP5ee8J)n8MHUjJu` zwnILt#GKdpbJ5IT4&xr$whsxR_aAwFIrsaZR7(~yi9sc>*{$6X>a57KV4q+57<0DK z{~RPyu-7I{Eqm&O2$&?x`9-e@^ZomewDrb^F8m`evpm>SIM#yM@+a%5hF0wjMqK z%5z{trrc5C9?`B$&BYnxXN9Lj;Ld8KGtw#XoEvf&R?`^-_YlsmVhJosE`(Uzi{;x^;RrU+ow2+Cn|beQ0#_@NeH|DC?dGWv! z#t1EZnK5TRyiP&9#+C`Dvbb`mwhv|}1$_p=-(GJom2pRaus{lNicnkL10920Faza$ z?WQ9cEW*7kbbn>{)$<1>HyOt(Tq8Uve5dz?|WSkC6%$UhSxgGOH}2czzbnVz}$F! z;KYGz_`*O(s)}{+)z`~h&#pT+&&0Z_Uv;kC9l%PIoXb-Beg8E-f>mdA{~oHMg4ZR5 zDa0IIGJa@=xV=_L#|mV>d0rAscNZ-I`6qtIo#+7PgKhO^UzqVf3Fm+&g= zV(xif-iJ@ZtRmmzTRA`W>x3+ zd4eE73qg7p_6KM6^-F8fQQc*<6=ov~BR-n;!ymwb86Zc-uZZ+^Az8e}DI1)3);E=c z#$*SkY73rS-47> zzu#C}N(xH6k{TCEB$kh$-?Z+b65o)7Cd^$8{OkltKhYlRXW3@Cr@{ANhc&7m#PjtL zhB}umxfReoUz4kJ$M-`(VU$kLl19Nc=`q|Ep0-CYVqM$=qS2?QsN!#X@y@fbz(zmD zS0Z84)q#n?EiJq@p=2vX&nDeX&oVyIx(7d4&cz>~(g{;J|2NHa#L|AZ-4W7S?&eage3orE)BbhtPc|7ykbjyzWPVf3P`ocUFVyj*Yv9`_uKx->F z&v&)#>LK?9Xb6F2kP-5?@4mdybBq$+@i5kD!iXxsMAIv(1QcI6I~OKFg>*B}%~`Kb zN?|w~&I--fc73!=kSe31(*L&ljbKqdVN*_gAPm4s?mY;R82pGwm_!|W7R+{Pk7YI+ z{-%Vk&Lu3+iWZOXl5z2K#31Y0w1nB=#jToN6T-;Vrj5;J0MsLn?W3}%F6GIozdBGI zw`DNBs4_TZ@ZgRl1wrd*E~1`jZaq2k_e=kxG;eus;0SBj|Vw9{f-b^9F=ycW2#+QEElJU@+ zTc0X2k_M92`Sdv2$5AGb{4=|-cg1NW>M_`n8YZmg*$P@b3T2bnoXc;NW%uqeMN)ad zTtwW%u#1IHdGji;UMn$-m$W?~gQn$)9|&Chtxt4kM&8kl<#fwtKXz2||Ld(3ixtDbOZ!@Z2 z)uW1fFLo*%U+-!<8`Sd3_)Y6+u>?NZ^$A&!fQv5!aZj`VKnU4rJDQXhzpcR+sRm2z z&ZGh|>sGqJ)SUQ7+d+FF*i0B7yK~Y-ZZ9tL<%L5(@6xbV3RbSD4h%Ye*+X@_p%dwJ z9XgizthEN8qdK#{fpQ|Q!0)EBZUig6@4Bru<)U6hq0Y0j)pXoUE)uB7r8<+HMA?&p+n(0FRN~#6OnM0dx9Pnta3DErVAHOq~ahR`&@ z3kI#Rj=9(&D{XBlxP8u*pI5Oy6~#6u-fNT!!Pt0j2i@kTZ03Avu%d#*dn5sP%96%a zPFf1eynCPRg{P7PqC^(@n2>+}=Z+C=3bDx_f3%!tpDee<4#6zVMBjH}Yl5bS=}s*e z|J_dgwfOs00&v|O%CgL}l&$o-N;~^idfh~Jt(vx*KJmy2ax)PIa3|byPyEfjujX5N zSz?k3B%bIl)-_!E_Vl~F78liBZ#(sKhTb1j+1lIxndfD`gh6G|Oe(wtD{K7x2~F8) zVUiP^h@}uMjE%hGsxO-2jBVR>__0g2iDTH@Ubf@@R8-9Z!e)6j`#gQ6t4R*(Arve? zWu07&e4v?*o-MZ2-9q>i*gNV_C$$yZv-n#EoqitWYYSX2qd7#1lK{#RZNxfw$yY_D<*FWp3 z$HZbw#nEjGb#}ThRf9QpHO5nk@4e9jN(6KI=c7N=xUrxAYrlhXSU6VS6jZrr)@{5MkH! zpnwN(DQ~>8xZeY%>`jJGPUQR0KV~7{(!?wY_EI8r)&vC}M!BcLW3V?0C;6Bj)pb?M z*3=q6*O2nQ0EBlT7m|W4oD&>xa1G7;h$bK7LB~4dB_h*T;)6w7ra zGJgHH0>+o*yJhE^Akv*p?C$&^7VAo4n_)9n_-B^*$G{c_10n7O zcW6BA#E{BJ)wL%&>hulAw(O$aFK;fnJ$qV;Hfa(64E&gvfg^?^z6QAPRf%8rN|n(2 zG=D_Jk8?EOQeX^LR0`6%L>T#^fGFvLIh>yV^14L*@@Na-=m@or0aa{LYV7W}pH3(O z{v_Iik_)^cj67=GAVPq``?bKT!jHX?FGATYob-R+;hAt&_sodIdA2lSQ2XrVnUGH8 zbduA?O^f{nueoPT_R~PmIX5mI&<i zA0PlNoSN@b|6)g;!vTPhQ$%yX#ExL(tg?e;q3TfLzII}W=q0b0MJpw}D*GXhP~!XS z68Q^(wP8sGv=$IdZfSPSX(~U&OEY&K*bZ{%#vBNvk|3Vyw^n|8FVhhF<7Q%W=~eaESPaKsQpiEqb!?^p|x$_j{W<#i*;IL|b> zP}ZyXIA7n*a@zP0M)N-^7K6phg!-5fTUk{zZ;Rq2o55Pqy?s&cuQO~XzRrHX!p^X( zl{$FJJ@`no=NKNr+yD*+R@_xtwN6|oG77bTfO{982X0#K}i;0yE|Om^|L8gMGVr)%{En1dWT*Bk8%z2 z0APkQCOlTFBsaIKvQa^SoV{a>Zw=jP$S$$8-d>jmR8q6Z2ZQh~qo<`3Pj8aQXS7o8J$eFaf2QimF?j&KM5(EqZU0D=HCMyIZF6y;qO| z55W$h;R70A@gcV&&k(LvXDvA;;ANw*^){ht7#DGXsSleI$mNl?4)mw0>Fb;=ZXf=A z4~=W7fZC<7y-uN4r1HT5V~ARb8O4yBR`6IYu4I|X@eT4*@2!Pq9e}lkpk`s=JM^!G zYHVTC3r4^9Q1xuiJzQ-`0ul+eC6%xKngLPb>@$#9y~>REX!&MqtsR*1@rzVc{80rY z<@hT&;zSX2C6H*EMFD73cT3oZuVM1jwJH5fP_mv#G-iYeB5b0`^!eCC2S(T_w3slFza-;UgFrz%Yx`3%cDysZ?TU!rIz$IVK z@0%Cq<&mR9zYoOgSW~<=K+YCiY#xNR{>Vx2Ud&=|Z*CqZ0ayRc{8eE%BDd{l? za#o;XQCVGIhj@ZHjgf;s*WOvW1OI)LqN#hqk+-6(OxB=s)2ykB%(FWEDFx1$FhZ@z zUAfB*H%xjQrvRDpoj6m(BMG@9KB{C9AEbp6J=G6Y8ZAHrzt3Ve0a9!^N=d~D1D`ij zm8^BkQq}HnmX@ipJqfdugPIQxGb~jW^#D-v0kDer4uHqhv)4%(hnF^2JqTn=*45eq z_>x(b(C>>%%oD;AbuIBk5Y`E`g&101hxC1PKKA9~E^_86L~BB=*M$i=Imk*FpZamI z-op|k+@7Ge@Tw{!4cjdX4NldB4?BhhT{qcD(N>aq@2R`1%Bq?a#-_Z;oM6QXYbf#l zq!W^Hiq2;;F2=V~n{~AikRisiJgGzuLhUL@jw&(DK9o>Fthh5rf(swa$hjm5YijLbNVvslMSK{z2+0`sg}&M%Z^ z{17SsTR!ocrl_zDNec5WcR9s0tMK7}=MYx~4*boa41`XocL1K!a~CNZ@B4jY`dK1$ zD~Q`~Da%Ly_t9Q45rd8-!HFF4hDd7g`)I^}e}5SdG-^;mK_Lp24%`w^md=aL=j+K` zrF2r=m2;yn8c<9GjDv_fZ5Y@zIqJWYd^G~q#@8^AHJ(nG#E&SEhAu^+EC^QVSaa*_br+Lhm#}Rk z*6BB^*AXJ1c1y5P!blW61D2-BX`E&B`ojF(-l3;pp6uRoU{9bLtF|M+j3TN-XTruE zO@!|eE8hFT_nJjbvqHui{T7yE)c!pEFd~02pF15r62mnveov#(lqe{OqcZ{>arl|jxc^M9j@$ZVkZsl zkhq5H-ow@xCpXr%$5s3^3AK%|8B2VGB$T2lQeM>1YGZ^35m0MSe$Dp0tF#a448XZz z<6dF)_Lv=6D4$U4D-at(Paxy4K{qf++gAJ0qxbiVDmFPmSf@9Xh ziW<6eGX?-Aiw4BVCBfd!+&P7F%qU+1Djz$Zj#c);aHkN54*u92cgAq9ZAbe7od!l` zSAZMNHL-L+D*zVcr~>M-CQcra?ip6^hOt|xi>kNnNF!Ph$W>TnCOVvq4=D#=GVb=A zOMr^ui2@~OkxmNWnn@+H5m5F|dOA1&gUPz;mE9YF;@g%IWRWmg4+XknUgUsTPlcyr zF_~W-viveO);m|n$K$ZECx6u$hTl^7N)v(gBjemjlQdfGb(41QkHrIzOm%$b0y|RU z0SXky^$|9(0&d=Y5dE9geB)U!HSHB_Dm|5;6dj2Z@>$?iKzoIa+lSR3g*Aw@`3}2c zfRfmS5@m+^`o@YhKa|dNt%i&<*e#uF^Y*d0Y2#|b4fF?)8x_W^8NC+u^043613h>-#f7@!<>!i3iel&!gZ z&sZDD>sKM(G~DMAd>nQLSlHJ`*eIWy1S{7tWoHchtgM{!QJ6|MUHS<+r2q;SrLl*~ z>0(H|Cq?USrZdBeQKdg$^oJf>2k{5^bwI{{^AX|K8$hODb2J01?m;V%Qx5@_AD6(-^vxhg| z%tlu!dr6m!#!Xz+lPT4Z`YRyq#aV=8SmX#eY(D1bTAe%hTm~TcFAtfRv`taO_la*- zr_diae;^48xD!bIhTw$$&5(=Jr3S-0e&ZniFX6g;yJ!OU<#l2|z~E&?tX{Wr5mFRT zzyg!w^*Mau5mxkNk!b`Q@#Y$hnUUTA#YI)-tbgnn6$;i>5k2}N(MCbA*MtqHX;ZT1 zpoP3eU(IrEp1Tw2e>Mu}vWhTi9ylH4bO%hyor8?XTkkJ5ia~A-ov>o28rHfRX9rpH zKJTm6sZ&(DLxvGv#s5uZmaWEGtJbyI5Sw4Zgh*j2pVhNuWxw(y+Ec$x)9=L>3E z3sC}U#_Ln@2az>NE;hI+5Z+{>+%2=k%)TP=Ol0{mP{Rimb_WLCcPRx{+5%R1fleex z%U#)2qGBpB5xC`G-=hhB*SL`yfKx(>hRLU9z26p)?`K4tg7Yvj&(1~wMgxv{k1J%6 z<-4PF({AbDS6YzM=G_^Hp-!g`q=K$9&rToTPe+pMy!MQ3)&cEKQTChdUd*p?>lITq z81+X5k7Kv<*0cJ=7#kY=O0eS@eycSJrPG!cOO3bvkgiL^SoG#p9J)iq{r&5zHHXq? zF6%>eT)2mUTaTC6oG?9rfAK%S6n_H*L$z!dYrG1YSa>qa@h#hCm~Hdps*8e$sI(6ftlUhr^KSn?+l*wL9U5X1nYSU-#u8&A@_UWSiY!2M*>CaU zwj&y3ZD7qbxKc}Z)41d`xxJg26X2MWibH*oxc#fLH(!7K7Kc-Qq)q>ddvNmn@Xx)? zr73Wp&9x)bpconc@@m{QmA8$D>zvm!Bvo2qem74&*+VdAEpW?L)wVIta&TeQ#S(i! z9p>pywJ@=ywS>Yvj zoFXv%7o1o-8jtEe%-ZZ$yAz*LYP@d!r&Zfn9XcO6ALFd@-qK15gM|e#HpJq@GY@HK z1SIdwvwwdSZL?-D4gs5E{1{>1&-(*0G6oj$Q6u-GRw(U1TP0Y`Ov>=HF-J_b2ayHO zJX?udgB^vj-8xB9T6e(=BG~5a*UD~z&YSUo+pFwrqmfuUN6?&N)KnvF6XArhKoeD% zcB)u}`e<6B$1Z66qsNtMJ!{Ty=3uqJ@Rk%-$+XnVfUbOOIN#H`Y6Q+R^h;x|O z?gYH%A(LPOZ{@5_&9Hj${>QIouGN8L)EfURl}K&dr+Fzw=43ua8d<6?*>)XROv%i$ z73QD_U42C*_a~Dq)4x7)?Ecy3YUun5o(`o-MXBiW4EHCf~RH&U<;>ts`MbAQ#Xzk zNuzy^a(cmD%UMVl6l++>{4*ONUz7m=8mN@}OE3zwsNBbZoW*v3-t%yelCJe^3FtdY z7oKFttmFi>DJwt15~~STW3H}rv?zK|qpq=az$kub5Lgl#0~$o(ESy(#YXz8B%@BbR zf!_Uy2o@BRm$Rw^pu9_Rf&HkzK61~Da0c5Oa2_S}&vl7Xng}Um?7r@my*)9kNOw@H z_*;vFSZ4{SD@!s1)d(ALOWIRs8|vZkSZsZBkdn}b@4%`f9ci8&G&PDt)gO}e;_bee z7&$p}yLtzy5)|sz=j7MkEPq)BEk$d+_#>@J1rcgJ)kQ`rMDrswmtUp9EC`f#ILUuS zblo<}>K&0&&wKCYTLtF*e{V$b@ha?)K59r-5p}_$c~A;qB`HX8)*vK!=yew-Yz;`66;6U82=XHUsz z{VR#(6-!DJ(uMAY`@mEF`#FmE=wKpDX=_WoB?CGJrJ$Z+zk|eiP73KH4YizDd140& z$aqk>6rWn30O@Ae>e5%2#J1I;A;bp+oFAldlL}2Rs63v@_T!O%tXJ$kjI|5NG2^Qi zV)*CN+C<1d^p=qx@g8OiNU^?6X8zI|*=b(SW zSR%{W8kFcKg&Ql?-D20cDa(~rKTv3fHMqPeUe~<>Cq_P{ZFX_ZUXy^>*PgY{EIVr> zKI95J0tXKoM7>UT`T6O5TqXkO?41WlN9NgcBwALW_oLAE2qT?uqSZa{C+N&u&*EZ zlB;D(*GIBOKe*`{AoQv<#ByIvK!c6$l1t!`?6qI60oC!_}Hav*1@faA(XW7mA@Y#5QlYjyAS~sJcKgN z3Z+gD3t|CjPZ|-{J@X$8dF1_N{9HS>mh1J{YF;OjZ}ZeOkiig>TrmdGUNIROaqOQD zzv7&ElvI#LZ2BryDc08@QChM!JSDK{$RzW2fWVvY6*P@;kY5JmA)OB^`HFP^<5c3U z|6L|1-30)KMB#-H&Z$HG*B`yaaQS6^zl>0793EP{3c5VhmUVfyR;@PS7_7^0 z@vZ4e8;~+C?W^5XvK4Rk7&{$j4-M7t_>uFvx4aW6JcIa;3hHF8R037$U|HAbPZ;my~(M$?lY07F8CJhWv-sR^jz-o4`O07L6jd%C@D5dh)Q-Kz^P|&xVSvK|f z-7QZ_BhjAUg41kS1MFST##7_J+%A*kMXdDFyf@6>NcB_o2C|OZg`4L^af|;smi8Ye z{?tSxsDV=H|1iZcRAY1q!!fM#q-){z760o|D@|(I>)+76Ph3S$fYwH-J-^l9$<#cG z!|3@@iq`-0QQP+j4p`A?y4S&=7$;Ub3KYD>3pAj3V2Y3TINoA+c{Hw+tp?2N$XetV zL^aaqjJAeK)JiNDH>|i5$)I>#SJK4pi;N>kyJ-~;ZMpX+bRrf0M{2E92>4B<^ufU& zU6#+cx>l9egn-zd0)KYVU>knfk97u{Li~z+Hh>xbd;}aBZzW?{U%nmj=i%In#BL`CM!v)>HpyJd zmXnCpC9r|iCGo3LeXOnHo%T47e2wZNms|Ojkc``0W`V+^tBOc?@Q<_aHN^E@cL$=La>WYU)yAtHw%i}5~19Wf?ja*n_GuU z-32rndJb*zl~eCJG|O2F>;*Y!zkDInKUYurTkTRpT{*zim6e_=BO^U975mK7FN!yP z;&OYfPpDkS=&_3!=zZowYHOzv4V#~OxCF_V&7Q(ER^7UogdOjYJ9?n6V3M3n!HLdP zzvDG3zoisJ(bE4c)UA|vA1eZy6j&f04v=5nBdV>jysfP@YB2*b0m(L{je?-k7n}aP zVhO24^X9a#_VtO?(&@slv~ndteV)cbuI7e)%P9?u6!;#gy}N+QcEi7@_i{J!KMsdF zJ>fhQR^|L^p6mdkgnQU_RN#G}2}GH#!sCi%)1xjfpz3VX!_#ELIZRYI4lk1;_LRpr z9PfYyJKs@{0Ij4+lPHmf7XXM;pa~I_<*`_<$)EoT4MM%TZ7TzyNygkZSUNZ;B`_2$ zF(ttQI)`JTIX6O)&xoGL3lW_jZhpcfo92{gVUv#j*9W2$-oosz37pa(hQe7&;lN}l zOTeX^!AlmH0Qr{x$c)bCZLylLykC7-;5{(=rZ-Y_N~>y3{xNt}!J@SM0jRYgqDAJ^ z7Y}j9@FVsN1=wuDH-`3~9&yF=+y@;BZh#k{cr(a(acX$YwaDX_kJPx_SkF>D(Clq>2z=}6-r){bYxmxr$?{cR2z!iB{+~5uT9-f@n=X7XUkJp==8Tt^j7P*D7E-p3 zipyK=ncA?O?(@eFg z_o^~n!|FTkKG9fNIl2k~-=?`h`}?+Ws-Q^BfUs%b_}>+*x&ll}^{(M44gE+42g9ot z>l3X)sC!sh3ENt^njkpFE`@kqnAA01xeV$mmk=M@WuKI(Elpkky~3qER#)n0$$E&7 zZ&aVW`>V+!f024u3rvN2Ly3nmdk;|l`{(oQ+R%(=SMdtgosySexTS{fBUkU+M7&mh z^9uWsF7Qo`A$?c|=Lot|X}u$Yjx(Vywz4ZTV)G>yqjO`Fg={c59wa$3h#`3lA)2vG0T$Id+a z)i}DRIR$7?qs$87I<|Z2W;NE_$|Az>OVv|oCrO)=wp)~B*Qv>{_3e{@`Ro>G-6L&! zzW28V%~w63{kTGHLI&Dbg>}RrI=1xQcTFhHu<_?rwShu+*!Zy#wCQwMU$5GNgGpw| zXmRLogcqMXhmtfZ{vRPeF&1^NkS>v(DJqhaDxj#4UFhrl=Fwn-@qSXSz3X*cvKt1Pr3YaXGpLaNvDbH8Ww)I;yNy7Fr)p#6 zezfp4n=YBw?h9_4VQt$NO-eNyUNq07B`5e#WKasfHi@p+0@Q!?6v0k3p8=_;V2cne;@?M^Sf4E-pk!GwtN=D@ju3;D_%`c z7Ail8X6tb{2NJK4lW++C^1_aRrLq@V#N;3` zP%D`yad!R_oigua5%49Ut+)uaU?!N@jaoxcov^Yt@~AyRsqM?zL|9rI9p;RYwGp6! zq5wyLh8rwpHpGAu;9ogimDIX*cBUhy#|7v^j-do}57@|;Fv%!|>!80>Wo$46h!=Ff zV2M{LMF8Y;%|O8#z_!1QaQMdHg^>!6OHvG&Su#o^ih$Mz|7_6qs@23u&mcDRiBhKl z)o?AtJ|;kMX7_#v?6mnTz4>fr*D5FC!T*fZ%o7B4G&`jY zK(l0csJP~jbp;D}1!ZwaH;qku>PlGVho91GU zhF?_i`g(*#K`_dl7J5FO`6_Z@%b4qB(c?=QDOPA_%#PFHog#6&^P))^ ziwYb~ZeXl0A1?(BRq<9C&{`U2-r6A$9zwvIf_l=h84jN=O1R9aZBPI;Kg#DENnqi^ z%8!yjR^CrPm20|NM^WvK$~%$;&p?aGs&b)5>RzV(IYA2e*_?!PXCk*Mf{%}irdGQZl5gEs|x=x~iW^~0O%pV=S% z;W(&qn3;1>T-WMz0CQ7G@ReAt0HcD5jOCOsVHsEQ9c}^&scW@3FD_qg$H_!2{X_p^ zyuxu2gF~2jRB5DL&q<3OWF=@}tzJk64Gcm{G1~Nlq_GK+PiRsn4I!!L3ut-zI8=}d z_g{)gL2_0b_-A`$aUg#oDjCDpJW^@Ttu3RQIFXtRGiR!z4F>P{!RrEEaJq^=hU3l~Yr11mN4>RBDcox#CiETIoG3FkUYP90 zA@Gf~K`z_Y$@5ydtgQ`ghzMF{OYN_bm*J~XZfi?PkcQIW2CRc<;0g-O`DJXtOCAwI zN*f0#?u?Sg$DiLfXUn8)j|q17CH*)XJwSQWq5E^>ub+1Z(UIC`Mh&2YSB{U4TYtCB zY?qTQ{=tk|8hC0UaP?_0zje;*GwT~iq@YdrZ6AAgT5<%urpxZ?$O7l8iLI{EC+Joo zbXyrKTw{3YGZ)+%yfGVvj-6WA8xU|;bBjmd`sJK4PYe>gsp=z*c8|md@O8-x)&HgC zt7Gw>6A*I@M+>7o6pw4R4)IOqg#l|c?CJaH!{vo#KN2RqKx|aSJdk}kry>F z^rivipJly$KhJh2@^D%b$oml2MCeFy(2X?UX~0X|CE=Stdh|#GB8CJ@+NTB+0!E;)61?!xv2!QYC}-uB~I;MhzAH$ zQ9Su+;;>9B@PUbxMsZSz6oo!I_rCDWuEOs!TEZLHlp=<~PxJwn)-9>TCyp6vAnYw3 zqjauGCq{TlLRUE#Plp%9hZ3thV^~CcbCs=|Jhzkjxun7}?3xw=gDr!MlYtW3EbT}u zqSHR(hCX4AfHxp=<%Tc%XE%JQjB|Wq`<*{s2v={DD(9w!OE-h(B_R zmv;`_xTi_-qW>M z63in}V-EUJ;GA*U?`~ZG!-*pdO!BAZIfe$aK`&tgc5%I$5@RkY?l1VR-Yx@jPLrNo z9n*93W>cfUUGiGlih_!w4 zZYw=DRu+=!Oiw)9t76fyU|VF`yr2YvFF~R3hENmneHZcu{rZ&L&1z)SCI%!?3?TdPdGjvVydylidHV! zOovG#Y`QAX{z(yN$$3sVO_56=WlvpehwYe5N#IJNjZ^_8C^Jr|md=gUo#!&bACuX# z^%Q{y->kOPVzNORFXs2Wzc)Z{k&G^JQ?^U;>PUW}v7=KmK7Mo+A0+CSgy`p+>P#nC zLDtM-fn6)_AACMy;N+vh-d(#_zm+0gn6p(wjej8+uQ z!O4#1zmM`#_-tWUv8OFq;G z&@-TJd<5*bBSsi5HDt2Wo2l7JfHuZjbd$eM!bO7|Fh&ueB_SskyjU0G=DaDuBV2)p zsmxG=awVlaBbH0)xGvTtD#XECF&q8Ac4!!)TvM2!4w{Jruc=UiuoPUr z-ee~EYi)MXoHr@TESP4~II>$24#5yz(3We#;EGGhudsCNKBssdpV8<;&%gXDdVQ9?R8XIRb=Nu28x;>Nn z*i6H8boPLcYSs+urw*z9QNx8LPd5RSd47MqtBVU+n3^*rR#iKTr}x0U;AJzz)caz8gC@2{+s+M)}|n3~CetkuMJhDlA^ z7Z=px4#z)##y%W%BQwWbo3}3%8+3h)OX?Cy^o#fh)kXgw=hs?^I*T$VTAE4MJ&y$p z4#=rP5^rc|6sS3m&W0VGwY8vC2pXGwy_RF4kVWL?uO(^#pW z<41!x^h(DWkD326^wR*W(-#wUg}!XJ7c zkv@b^3-SySX3|#$GTIYjo9A6K)GMWKGYm1lCl%3O5PMC2I(LKy)jiEbjeCHQpg}3m z?+M9>ka+Q$Ixt-i?^yL+W1rQ?*~Yr3JLsrY)7ySS<94ekQJnK$cy-d6PXWi#S^2RR zSN9uj^HZ6RpIx!ent*BmJnWWFjOCvA21%Tm(|Wn{&6irH9}Q2%ccHJp!4cB5!N*d~DulrbOA1*bZBJO%gnS$~J_S@+7fL?1^o(jHOeFekzx5V(hY8k}uS zVkr2%rPlhlyHX`rgP{ukUiB#5iB~9hRnO&z*e0}oNh~U8P4xhGfApNgH5Zi98LTw+ zLu&T}{TA(lEqA1W(*f5h-b&1~XT$P1olrU%3&s=ocJ~>{e|`YDXS{1|532tF*(%2r zh$G490O?HkKO5z0etCriCve*LmRv{q2!8w`jyZK!kM!giiD$t3 z0O{$g?dJ~@`PLbscah3mdMYc1sR$=~92Jw5m3HxA5*maFC)3$v9CNPM|sO{PR{; zz7Q#|OUmzRyu*MdSn%a z$+KO#Tb~4^?Dvx1gu|7d0GsfA`K!eHlFt&2ACPobVr`DR?cQr-Dv zMS(}R?g+ZO%BDMf!N2xBuyE;q&XSi_f!L&&EV?dzZqp=(X)654Nmn;vl(%8?liC7> z0o=tGcCT&qVq)Rj+XGa#IX{{o1m7I2NR#^5LS-{NHmmQVSjyyHu=jkdQs~9cD*Zo~ z^u@F9riB5CQq!OcrkZI(+A`jgvLq@(HN3R4W^UR(R2BOSI~ld{QI{o;Em4k=b21)EaoJ?He-_g@ZQDzu3HlsdC|mIj3(oPy;lF268r7~au% zIxB<84xH_?83~2E-%u^w)q3nZ z49|hj%XgDbyVQmsnBsU@2d8s-cie9 z^A-(P?a@{`)w?1do~WHw`ek;_dlkwLsR)&-E4y*YN9UAS_Rrj4W9tE)=CQc?IMts0 zG6VJJW51^h&gjoH7kp|ZwxXdUq?-f}9@`}W^5IH(WoI$`T6aa+r02Dd4-6ME{;PSH zlitV`w!BgtFgi0(2ai1BoRh*i$5Fd-WF5?#1KaDqU)2@8?F=eLv%pFq?2Hwowju ze_TA)_oXUs&w)7cHMt0xzSPCWfQr@7CKdSsmnjWhJ5$W%J{nZu=uEc?-51{YsdP84 z6MmxfSt74pdFglJ50_!vl^7Z>PV29rSmB4lXATR*tB**mJy#rHdWyAs_JIJ{=GsIr33Jh;T`=6wcVJ#E4BI$W9?V& zc&6`gb2J`enP{zulku^q+M2y%6>L58y<>RdtMXh#O!08sq7_%P{tQ-Q>862FAqNC! zcCRNmRh(e77ae!aEgh5@Ox@Nzja)lJCT+(U)o7HyK>Iq>EKn0CE(f6;QFT%_llsMO zX@54xb6gCKG89CVxtng0&}$}eS3?Cz^FLdA<#H*9DOIK-j$%A%7||bzYCEkyFIE(? znf(&pKA3ZJ*P8XqW^)$(jAY&H+mK&YQZf&A1wl>X@&!x@Kl!-leVUX}IT=-k%c`7h zGTlT(H}T3==t$V7N<|XdS+l^LJXsgx8>tGe@Ko=Kh?bYn7FI`87rD0fC>8MZ#B-mf zV4HumYr=K$|JwWVcqqI7{jy{WMNw%Y5-ljZv1co02$hIYC|eQ+%@k7EA|hchc4Li{ zeN9=zSVl(Hip-3)nnA|)J)?T+^XKpXpMRcS&)jq0=RW6s-ph4e?=v%)VmHj`Qa|o* z!EeVO&X?%~KbRL{-L%_WE~Q6C)Y&=&$O$s7XU`gtWDD#FCRhqw9o}`dDfdD$MWU38 z&klWM$l3nMhBarddaH-}(pew!4nO$Zfx90V30QUH-;oTTZwb@j4;@*NLBkB_p9=mN zhC!OUyzPzh9)A~v>YnwPkH9+Q4$c%wR%+RvDOh-;R-acj>ppc=ZQ{`xueZEVg0a3ie;hHds!=5c`3iQ z$r*SuIhWflxE}L%zsEq9&_N@tGXk@tRqb?7-z8oy>L3zmQ04w)f0zitWsyBspSd0B zCH*%^cq&ie28%XYUDz5~x>;ZN$yU|x*t115b7t1@{tf9Dbr09uW*nB3YE01iEp@X- zf(sYENcJ8BuK$ei2@rU4-T7`K8q&k2+$9s>Q&A<9cSY&%T*BqC$1V!)n9@s}hf(c{ zmz4>uc-pSH7>=VNz)XN=kF3Y}aA#Q8@nlpWZ{y?0SO0NKyU8YPAqnEh+Z!btgA=Np zYPS%vy$3%lum<#gdS1GO?;Sqhv~g5M?x}|(_DX=}&yF*G9@2_kIVtDfSkix1B%&o_ zpB(C_&ywjq1WSLF<5*wrHzGL2PM!4mhk)b*1~Vb&iZwBQDbY>UhYX z1f5~Tb*jGB@jf<5WL4H%VoKLvAq;6nqT{Luxt$HH(59Dob2`Ycg)91ugqSIf_3z9 zXO)$ z23A}QN*D92n-qmEPh2|kO?lE{A2wOq^XN88MDRa4K z2%7djJt%sjXOKqrn^N~3>oYm5{^iMrC%Qjbk`+R=x;ebzp1AQ6O-N65AF@u4`{HrX zCR3+G;LSDRyNwUXD&Z|HeJ=OnWN%c!8w@@Y_5$R@Z%ZYGc333>m5;FlR6}-M)3N$V ziltS7~c+zZQMB$ZG$!uW$1y`&s=5e%P^bs06HaizJhu@~wRu zPNvWX3&u2aUtl=BQ$iMGOa$vmI2q}lmB;?$%)iW5rbbKi^{1~ZSF?-G(PHt8{1i+1 z-}1>Umb~i*+x|uS;@6z2K1U5@_mMbjG>OA~#--mP20qL*#9X(*rmnQBe$3&KbrmBB zW*nZo{6-N4Su|kU$fXHK36OIhp?zP=`MpI!n)IDXs1c9ZcvS)vdS%zc=3%E%hL05i zazstpOGm1+z+fEF=WyL|Cm13BzfEL>ca^!Z1H(b%75J$a&aY~z2wZvfn{~2}l`pRQ zUFypsJTIlAo%GrQa`RT_7nT^ssNKt^?nge2tffA=K@eu5U#kGwL^LrPm^FrCOgcJp zkwC=~15}H>Kp_Ubn6~_C&&}8Se&rdy_jFdLA8=va2}ZJh<;ji7?Eh7h>_~M+kq5@2 z&issN{7FsWI~l>*i=RmE^-AYqsUfLX0mDI098zd{w!O{X6YUm_Bh^VQog5J8-^-!q z3rb|e?DDe&tg~BVKqr>hh#DA&JJsy0Sr)ex!3W{TY!ETh-nb9Q49|mN1W;?Ew}Da? z_+bHh)PWPXWPTEDCBUHeiU>0b%il&*H_N0hyB=t%9Xu1LyDIo|&l?$UWP}lo#uVR0 zavsG*z6-asAl<%qB|w-yI%~;>ZK%;T>0a$P*w4?Qw){dE318hyV^f>t^UJw`=IE>K z>Q^|1NV9TqQ6W(9NNxzOR9j87$GP=Bfax}WmV9Y^VANwz5yu#g9ND)L_;*{=2VXz1 z)b;_c+&s{>{O6^R)=CtsbW#POTF%-+0t$2jw`OhxM0WGoj;R#KPnB^GSPeaciUvA< zpof`f1hKA$+s@Y-lZE@GVb_P`KS}k`5-HnA-e;;UZ%aTPDL?z7yQ#yg4c>b@5cY0f z>$^*Q?7vC=OpDn`!ra5OXkl9ok+Vg%YYCls{jPQyL}qN=lveWWw7;MKL3PeQ;it7zE-}&c=Z~9C!sv6s z>mGsVe^vvy8Q-w6&O#At{aVF?^7wJ@%jF8n=Q#C`v@K22N%M~ zM7FFm!9(zcUO<}q7qsSmCA z=zYA7`@cD0B=MXLpRCgmU=F;9!J_~9FR`8u=^mBOFHZQayay9t>;1F&!CU{pL*nQ| zQmU$b=Ejy5f}umAa9>2Ky}RnS$xj!Oo*E~LIb?Q64AN|E=)d?QdL4U{5&x$ zH*Y(stO;{TncyaG9iu%z2lfn7>rZS+JzuUfRPs$|5YF9WBsX^14Wxe4ult8IKgZJJNW=EtdSWXr5a^{ux@N zkqZgnh5ei9O3k>>D%@_Z@{?hmAj^~Nr6yCb(!EhwipGKCl(%+sel-0*gHdV%Sp}C? zT6cE5LnZ3j|0G6?Ir$3aq$>BWi=Z#^g#%hIkd=PAbap2zT1(>GbNH5lzDSn_n zt1#?Pi@||>60I%DJ9~a#cGH&G{y{HaG4_We*dI0HQ?MCMy6L+p%M)(2BOwA$RL!@q z!UjGx&PG{xr1(A+Zd|W4>wP56L37Jx=Gzb?Z$I)@59Qs6?qv^HBHVkrLd| zlae#m<}z9FqQA|u0aKDemYBT5*crX0jQr^D!;y~AhnCv7FAMFgaZTgXP9OKIAk%ag z(!3pis?ngy-roCmmX=)Y>15-Z*bN$H1d$eNt$WWD$eN)4+0KRIihSDzg zTI+?{I2wp=*Zp=a0?!{yP8g)=IaWsp>vP6vdLdOsw%m1quDxDH2d8vTcSgKO26#N{ z@4eBj%-aPSZ~y_-ZCXb1n{`>H%-tm(=VdSm+umw9NJ#waA|3z{PxJYO$%Hb85lPkZ z`fEWyB+|KP9m6!4n(R{FWXw}h&IT_@7mx%pO5z_zEx_;Im+cP+&nkMY-GYgA#IIpq1w_K)-w#Vwujdk+T zfe&BPBzp1Ey~D}Gi?h!Kk&)Nvmjqiv-OZMO6=wOV|cwMsM7>XYG!Te$D;Zrf+y%6+1wbmNJ6Em+iIMpB39X_Kd z(bM{4k=BsxoC`L`Q(-}7DYv~S2xe^AQ;s{BC1F|iG(hVa8D12+@S7Fi{eG1&Fb-Q7 zO&Y929ocvFx|(2(LKgH_Zf?>hlK?@cBs!0u=~fcRReI<#Z@{{7W^)3R1t~#ciR`qP zsBDC)GT}T_=F9sbyTW*l=CNIe=k}5_tH$k~%SpWedBar+HYs&+*|KCJK<7lBJYq>U zd9=Z|^H($wphJXCAOy59DMlvk4ij^ZV4t9eW5`D03E`vRTU+y?0J-4ql)5CR`bDDWzTQM*%zXPC~wO#f3OTGJ@^>7+S;2_CqQB#$9)Ko!Wib zRaf*h(_xddpwfQw^6>hxCA8I3{s*l2dSS*$ob8WoBH}2axrc3DT3bcRhO(k~>LD$R zM$hZZS9-2MTLB>TJ8i$whg(BadK%1QANPjp&R?aFx#4XV9d)co zf#zU^mgr@1tlk~SBQ)Z^zb~@HViaTSi&GtR?H*MSiTg+$m~q}7`|;r{cjFz0_Mx`Y zlcoBTwM&NMiF63_iDQ;=vOgM?Q#ja>k}VH-0>?~2#p}06=Gv5^La`v>3UrW{AF_L7 zvF1Xk-YAu!=Ra7^d^9lDxU{>4 zi@;7hnd@pc(i4cMAxMkV9z>e76TUm2PKci(?(uhTLvF+F*OxM~BYeQmq@DM7H8GbH zC49%zgm##jy;YlprI_-z&;ggClimbjQV;+BW$10kdBSGz6=?P8Rc>%t*H`m9OzUsc zQf;{U!?n7*BRT2bo-h67J{{Y_n?_5E89lWcT(?=>X3#8pc6_? zWfnPuV!)no8;vFU&9*zHD1hQZ{N492`EQG<{MfS#LA`A;-X+ec&9ri9`a%I}?h{Oh z!gPn5S@M|kt%Agq?oc-SdjJVY4;2E&H2F3((jyfBz~s|&jA9*xqg`a1IFrvDw1yq^ zmVUdKu#N|r)=lj%S2EdnWMn2tA)O#s>DrB?1MY1Z$x}S8o{bHAYy?5f6&Nom_uyxO z44tug_JuVc@HGxrQ?Q1woTD#|DeMkiEBw$C5f|b{OlhkLfMD~U^u7soMs%f}GfdIE zm^75s%hU3cF>R-n@Vm&C5rRgRm*46S8)V!F?dE4e6TJ+2)>~Y61*Rl{0jcxaUv6U> zrMcbUf_&s1$tJJfxAb4zh1od&%^%74qMo_?O)w7^DmC`NyoNfp%&otFgqHQGSd}oY zQz-Huz@kV+A+qwpO0{m@p9V( zdGvM!rnKXh)^ zaVzhF{Nc=%p#WC18#*-I!OD~0>H53%0Ko!B>#kPqjCiCLQw78Dx z*lRh8_sjJ5z5}4zx#XTz8g8Z2jl^{Wx@2eQBeki}IBF#uXUliSQtsmlU_oE9*Wc$m zfx_w(JG<8W+|8se@#C0Q;Gv``wh`YVKq}#+cac&1-Z2T1@krmc92bW%cYdjzpZ7FM z&%O}wJG8l)G3QLWH?nR=Ud8o$mS6z6S%X9DOENYrUZ`Ue?pc?~$5N)Yy`R}Wb^Tit zTPBg~@ekh@iRI@cni}l49hu~)l2ELR3}TM(dizi-L$Im0 zoPdn6%UlyXyo61`-C#j?Q*UdNngEv&n*5osaALfD_S)LcQu$^~(Xo4X&z7F*@Js^n zOZ#3zf6q1AgYV|9&L)m%_CTH>K-yj;0B_(y;b<!&c%tQa zQYTIG*3J_lS`BWOj7;nRT~Pkzx^@HxVKVdf-iG7$*io64ge{ZeU9xQ?mmqDCX{&O$tmLX zivtS9jzMO(6bRdChuW4!+h|)A(Z@7KaeMR@*Q?uWcc*L<gb<745ADyom#{-@!e#6X*sBwZt&aB z7pJmkK?=!+D=5gG_s%@MPkpisA_A|$L41q5Zt|Q{MwsHgR|k)@Z(nOn1Tcp~r4rIW zL`Km+9>I*l((qn5TM+|}k3Zjn1nUBDR=b&@@;qX{)-6)#1k)<#x(y)u&hiv5$6jM_ zW?hgHVJ?@A5B*%s^>;lg)4c3h(17Os!H(3!*;)iEMDK5wB&~6G@sRrs$Ms5(jv^Ma zevc8SgB=kWLDz?_WVdt}b>DNFfeA|yoLlQ~mizIk-8-j1*LBLdsK7PY9e&6cSc6_9 z->Y`kMc#b)qMV&ph=eMG%)J$;)oqq+b@lrCRVh=L%z@_D?+S`fE_dvOr>PddW_l6s zdZv1&A5#xTX@g}jd##euS|+O3a*mtjL)+pB5=IYmVQea$phJ;(nhPK-r%p!Iws3n7gcE9=N2in>$`gukT zMbH6|>LP>%%_Etl<%@e>LL?;EL{$3SQ%>_s?Wl%MiM#BeeQ#f^lbX}z{isHvFbl@H zr9Mv#G0Zm0OU%En+^62L=*rMd3<+5YN}v_hS*u^?)dAiwfLr@)jbf7jW91O(t*sYP zwS!50rbMhsm1>+R@xrbh8R@} z-u_w`m(sM;Ue2$7=Gz;@r+e;79ddpcSGblfPYQqEIR(hQ0V$~o{}T$lQJr#p>Z+51 zmIMX!nD3Q8lJ37>=woo=$DZzI1SddE_OKm2(?a!mCg&$}i>#%;libI|8OWmzuzKrl z5W&g8&kASVhaBpZ41KeWzt3xJ-g&e5{V8>*pv})|>5Q8&y(Ev3-c&MV1W1))_fs8% zk7nI~SE^ReHNWV2+s5`L-TA5?r<{@#aj5$9%j}2nO@ZW_#wr< zRzCG^%pu)0(puI0V&j{cNq*MxT8%Q69G5NXg;oO5S-*8d$RvxAWgr@O3+sVcWMgV^ z=*@d?xC5HC?#4svyZTq7cT;k_!8u-efkoJ_uxa7`fgp4da6Hiz`c={wgnK*9@|9NE zoA=)$t#nML+DkC&hY6dW7e_90xd)=L6egBqhlM(&@TH}IfY@1fAEcqoOm%GrU4Wqs zj1>0$a3E2q*pBcblu4a7(TH`vZrX5W!S(&~&*FQwYCMf1dyDb5!U>K(%E-2_Eq8yM zuLmYJ2`gYeG0ui1YSU5-x-mWPdi_hUhFcXnYQ!f;<7UadAk7DSU|)ol)^T4N-4f8F>LXLi+V%EFxQ?Az`9mX_>Bp-0B^N z5jC+UbdmUDFS%~Hb&)r+^>Vxhlcc~DT~$?rZAZOC(lgTVhsHP$oz*=r+(DMJy<)}J z=d&f>$ld_UfOgwGprFi_TUSX~Pti?npE~?b@Hq|?Y~BZFA~2V*1e~HW!2osS z*LXqW!?C`ad&2B@4pzOI<*Nfi6+H4fhUCS%hume>56`d=$Vb#})X3ZRFn|Sinn!Bs zZV709CzZjG&cbrop!$edxiBO$ZJpeboBr|oya7mLn=#VYVO{Nl80uoT##rblP-$Qn?o zD=a2w@I3I)VS^H$=<)p?ZC%IL6f#QuPD}hPs?-Z&O~UwIlQawXhrWK3jE)~0Z(X{8 z;sF_uH-B4y3sawaU!Ad(QzCmey*vso$ZDPA%MB11p4JB5pnDlQAB*&EBmD44W_u?* zOSQA}o9k5NMEJ(Kr5)Z(XuG#)?B-<#yg}YnG#E5&NlQcxNPW3 zchsl*B|E#l`C1Q^h1ljfo#B}JE@M>u%we|kV>NUM?baq!Ch)4^2>o6fHQ2&CTWcn9 z&r6xwQ^l_MlK>9&!ns!Z+f6e2W5tHgg}qi(w3!584?uZ(+1}8Mv*f~0+}ajsth^ma zogQ}06QAe0r6QV6Sm~buw1)w1(|+xExmNK7ruyz;Ek1R>qw42dG=5dFsy=XQ+c&O# zvew*H5Lz`t-1-%?S2aH1zePL@Ad8VPM#Nm>m9bXPW)7BJar9bh|!JL!&MNihU5~S z{LnQ}B}nNB0;7;%6#TyD8t&9(>w1Edgmhl(pam`@P0KV|*k*$ahnB==INUI)Ee(LF z$qUzCD{??Y{XqB3PcI7G6J4xfSNV0@N#?Q z-hM&y`0)a3tAGz@d?THnBp$fREVKnMI)2~lR+d*6Ue5z3&1Y8~c*Wi~fbqACdnS&h z&@uwfDfjg4VSvc<*Q`&rR71a+XZTyZsT$YRDGUc(_S}!L9!Dl&^P(p}?@}#u))r5{ zo96vftIIW{eD5U?OT@<>9TtB+bx*n{f?` zl>XMTSQcTS?H{;-k0B1rOz3vw3v26^42v}{8~vVHOSd(EDW^0KWjqyng&@Ti*85)! z^*Ggg!swEWQfnB(ys4%)6E_7V?2QO&wz5zqRB0C{@j=XDHTvV7qR!h&;=}IPKz>$& zO!s4_4;w_f^cd9KT5BV|uJ7nKC-T?-bb15Y33H`;b0KnzULNds&gj4kTYsI ziHVf^+gNuq`7zUu3}LG8!Zs+dRK|-axXDEd^819=O_w-V8PRy(GwKguW|BmeVsSa4 zAz5E)6rdzw9m$lyn1Qb1$Fv}?oAlzoC9&f1R>Y#(fW?b+6?`d^2jZL92tUO1!4H4G zdA90n@CbMS$Az8#5`uSixb?)L*cn_#is4TuMlp@0tnu{|o86Af!b4%UpAH)_4YgH4 z6{VtTBTs%g?P#BPRRTIFUR`+d%Z^=S7Qpdove_GEEcb3?x6xclWw|ewk3Y$_-RW%L zh_0JJOqp@eXe;>dYeM*Zzyc(_H4TxL4$!eOT5M7M zE*0D1mN1ZL+%J)e@b*T}S(0V6M~HKdJ?u-7k=%ELzl^FRUP(pdE1b_*(C6-w9vZ0u zIT_rfRkD>s8zJLn!MrKSd)e%p+T_5v6!j>vN8>tQ2G9pNwd!z|MQBMd-Zr4L)7eSY zvHGFLw}h3p{ifzJ!rk%3nKs+>a2CqNulqDp(ULh@w%Y5vx6&%aeEfMEGmM0v981WZTG z`kc0E<02lJC|6eqsO*lTXYK+lW=wPSsuM%+%+Ek|wUTZj+|zk)o+_}(FcKxK0vS)u z)NydLqCCNtu#HxXKLu8B%$23uh^9Cl^$VAcnR-81I)bXpcNuyC@m2sUj1YE-vaf!4{iz@Kaa(J0rzQhZA&7f9YeL7D7opwgY|nn;C8LRO_eeIdjeB9Bt_#>+ zl)5(7{qFgmBg??afP)Tz)>d@%#D{@E_h=lDrViCz)sqtI;m`(*k}$z5uP6^sQ=&J9 z{xET*hspT?GAazv_$Y{_g1RQqRk`HjHdoewU{kX9G~P9gN{^LWKjMda>ZzON?sRSK z6XKtG|wuEK-oqxdBa^TKqCtaOiH`045Gfz)&vk zE0Ao3M+VuRq-hZ7sujfZ@kyO<>E3QT!jCqj_02?K3Fz@9bYmvz`xYtiS-SUxJ>g4R zY3Di#y>DJ#=3{j=Fn2zikZ)0otBa#KK&6GH^!0S8x_8F_w4+XL6!GIUIdO1CeH3W{ zEcJGn08Xa$`C^sVMkSXgKutVxu6JI>s0pXWO8*!m)$$y0ayG;?JA%*c*_%lkn7RY0yd=S$ospH|%}D#hcJP zz?0m1j&eYo?jO)Y`FWh!TM?nRsiM9@054JipBv4ST>zvffKQW&27Q7ChMTW0bs@L$ zi}Bs4E%L;f7{Kf90Vf(YUwC0F4X+!+Yy?$qXMr*zxtD7F9juP62s^Fl)}?zX&?AiE ziwXNQqE)-N;?YZs9>C-F5jb-#z;PLMXO=e&FY{Vd163o?MZ8vNX8Mp!iQrR-ZLF;y zgkb!;E|)fre5u8IAcQ>-MqhLdKs`ht^hbb6To2Ybgaxn`$ilN-^7VnHJuEU3*4i4T zF%KhE^Nl)dJiZq&GFRz>)^HbnI&v`3!D=_g3VV+~C-ee*Sh-jnD?nll?Jz_C;fAUi zD`@pl*aha1DjpYa7Q(XSviV~uyQ|~9sYV?t^*_pDn+J^>L7#?t(GE2rv@4;wa6Utt zCIqO*^^silf=GE?f zrWxz+hEDgeIMO-1jlg)KwhEmW$U>*{()jESuVCFAmMX`d9*ykhW!uoc~VsvC0&x$4A!oH@{#oe_>z$!?NgPF#MV zwJ_x6ABz5CYmuZx5BI()RK(=O31DXYt`0>6@wv9dvBPtS&?r{^xdr9-SckHBd-U#b z{+L#vj6ab~jA1DM_4v=nf}Uj~6T^kL>IV!3A_vI+4-F}I;)K9@gaDw=3pbo+^m~(0 zE?=^!OA(^C9->&J_A7zYbLy+uh+dA#qn0{|GI#pC9_Sr4mT1e~uawSTG+_x6bW;4Vh=2YHi~(cKK; z)|cdjVmC4K4)N+ozg`O4>}c8Yd8^4pY3qSkfKcz??sFi;WNZq^%3BKQdG*of*EdCE z>mHyb3JZpVj*9TLD|^iWwT$%8>#V5{6EI)XfGlQ9K@6g|D5za;kK{+#fHDCz@StWd zGJ2Yj6UqVy;M`dq8M`D`e@gy!{o1bQ-r#cbhze`a;~m7*fVszv<~*h1e- z1;FYZ1?@aQ?S&S#SHq!a9xR*-h(#Z9Gs-XmlEc0f?mdL>dyaeHRte`8`atK@Bh=jl zfbOe4i-K!<%@H0}`V+Kx?V?YMt76{Hk z(gX}yo`h_0t->RPd^x|U>LYG#5K|qw;VR{|-9c9GMb7|%P$dSXGY`EMiLzZ_jd@n%l#*Q6?Kmy{IL9wOP!w4jJ6&-Jkav< zfNbB+Alk_-P3e_93t61H5TRyRwaS^S#i=;h^|%1&97T)mS3y#Xd0&xAV~s^cJ6nR> zYbybIpyhb*kSf69RS14G(6Q8=+l@h-sr$X8Z3&)m0LQ)#|5o{(Fyk<^1FUIqeJt6n zU-0A2T7Lv6($nthESt4v&A6rv&Xn!Bd8(=xb4eF>2~=~Ka^GOEzwh>cpY`3ESr8gp zJ}VB`WQZj@E35|t^SQgU`Jh_-cSJM&TArWxp66|F&m-kt3uiHKh{w+aM*km8XgcDi zDDR@e*9YrwM0*2xeSGKyQ6jv=07B;?8?i(L;U zD4HyRW2mkE8YI7Wa&g%&n9v~Y*}Zn^dD3>Q9gqfqt|(_!Ft?SdA+}lbZJC}1AFZQ} zXoecMkC=oKFV^V{)e)X72=DQ^<(UdZ%eBU#i3f5o$Olq6qrrv&csi#>gM3Yh@EZ)NJ;RX#FS#1fWkFZT2gl$-DWY^@`?YW>jR$0nt^mZYc=Uz%x#m5Ex zD#{vWgeYN=cJqe2$k^;(;bh#VJ&57vwjeiP2iB8Q0N(3-GpyX2>*@l^rcx;|8wdI7 z^86jEvDGInYw`I&U?|a!1_Hjj4s>R>Or%UwfTO+*;nnEXsTbMCJDnPQ5fZIoDK?D$ z(NcUvvy~C@Hu~i1g7TL#u@wm^?%%nDwBp!+CbjB8s7Q~hW^hqDUd~1b@d4mpQ8y#E zFkuiEDK|DQQKzp>jdI8b*295GtTz8}e0@~GKfg8Yj+MjKZVQuSRBRYchnH6JJq@) z_DS_oJvcYWi1DQl#Kdc2O!{{1X1E1QGAS%&Whk!V2?tZ%J1SFg)cFNSHx~43MakU# zvr}yLzmDTAl@G%B=*u)0X^Z8QMIfX>Z~dk7vvJJQWa9pi6JTu;qyQvA-ls+ zMUDF!3Sy)eA?b>xQ~>4!6kwo*Ef|OAq_!bz<@~xa^Xco}sNERJ^lPHOr$va-F`?); z=;6l&(lB;-D4$<&^}^-(a3Sbz9q~Wf;3I^>h&n{aY&Dlmv!cQ~#=boZ7U{d*o?-}S z8_FC0q%mgQ^5IQpCUAy$q{f^?Li~XS^_=v%>amx7K`I6ZZz}Vu0M&Z?G9Z70)A2x# zx))dIBR5*{`}97PB{C?1%Pze_*7vS9tm9>-;n7pKy;6GLVrOaa+jXs zNdPl>jWP8#&5#)o0BusGj1x&C`09%CN}N>|g<805@RKOnh-k0^VaAh>pPnJjkN9=& z$KW&VHoS2D)t3*wZx-SSy!G}2Y_%n9jJzd5%pCm+B@vwdtPz&xHW5y72cDEez7eBg zDCBhIR-uBtqq+DWQQnbf$tnPFcRY&a=SUzsMSfzK%hx-I&oE!J?x6MQH8io`>&}6Q zRM6{yr%4Q5{OoxPsDr6Wl}Dkt$-Pw2VjK$JWVAu=JUw?Ez{g-WLGIRx8`Er#z6%XXp-4SkN0v@dYD_M!mi3%r=4FEB0~EA5nc@??^}VoXT^u)EosS*rN|J zz0>nSC(pY(&=tIGUf#hn_M95)P_1Sx8A4%uU0QOFwA5BAQbD`{46PZnVfo6?a;_F1 z#$ShX845m}UH4Ya#pMkO`}CIDx2Y>0UOJ#mE_L}`+395rU1*@v)%^evqI$~W8~P%h zN!HDdwla3M0jUd8Cx(Qzuf&6rk!ZmyH+9gQm~{bNnAHW2skI+Y@?}Iy|7o?&){6!> z0pjBjIveQ`ZZ|N$sZ)rp@Nr1F8 zbMy|ALh+$2Hn639K!R>Pnl$6Lycypyk6e=V(YrtGzuB{hH}roMX}u-YsfU#w$z%=&V53IFiP9 zbC(44!9dinc%Zox7;tbhq)tfOe(Yr~8Hko$oK9ldyo1u1&Yrbk8=fZg_Uw&*je@-Nr&Cuh~R< zgzJY(8Eq-V_D&tyc5F0d4q(7BImoMb1!gois-G&RbU`(4k>41o3+*Ov?*WOpKF(K_ z;8yy5wrE!vAGQzdhlnpLqM+40ngZGidFM*)SCWiMUji6M>TM(1MTwbhz)l~w0So;wBm;sYhXQ!5qE(sA;#}o)c~e`{=iU<&DUQ&aqsq$qdF~w z61&v0+)!;8jbRXkQ<}u>F7um5Zz$2Vu6SapRtNLqoo`=zrQfw3h&i8su6m#)T()gP*O(YPm#mrk zA?#VtR_%@c$+YfqSFwXhSVqw&>H|7hgdgNk)UTm)u+YV*#NZn^nM0#pYWA%FnC1am{OezRpGmR?NCl4Q;eECegpuqU z=yT|G9^dRu5=%K~C(8i-Rmz(gY>2_RyL;@5D>_{$=a58h%^sj8%6YpsOS{DlJ-y#e z!!*x{X`RE&L-*_z{v-j%(Kvz(Dw6kD#QBfCKmpu@TPdN4PO(R+M|NN|R1+(vcay)J z0!_DZ{tzGkz=id7a|ft&IQOfqjuDAH>Ok=ol+1s(PCiTJk?V92t4&fT*EMOiq2gYk z<5jQoSy1X!KXiB607zD5FOHAIzuE>^d-ac>dFXilDQYT!m>o;6A4oFhyavPhMxX++ zpI3*3yx+*KlEXqURv=mg4VX$Z^zmIZK1aGIN2&~O3of+<*L;z1t2B7th}JQoTYSx| zwmoEk0y5}lnzBVl=zUZ5hrn;(NzSR=Szpf*_QVCmEp~lrL#9vY?%Z~29(C578BhCY7Vy1vIGQ3BJvL-2P7FfhOenXA?K3X6vl^53lDrvYW;NO$U@#Q=YrxmOEFm@Z5w z?om(x)bMSb7jx}nNAGHc?KF()w3>8Su}(TOtYt4=UcPU_-ms)G)+wrO<}!Fwhw4KV zqoD*7(QfebRQhjT9@P&^iN9qR;;)AvqMdE!&kVj1nKQVH{8A+&_(lt&_z7&>6E{r# zcB4+tW>=E&;{%Cs?(JHK5&$Q!+-ph++2b2`wfIXpXgEnGYR_6~)sO)}0Vpc;`~GS^ zT4o0jA-n7BF5_iXmB+y0B8L`B#=o*I*e>Jjn;3A8v0iYr8Ax)XDSCLCu_HZ2ZuHX2 z@&GsbvcJ1jZzDUkBq3v zC(GiO?|(nVP*m`%tJVp)DI3!+I?^v1BjWs&E0hTySM(1=DI3O`|-{-XOpaY`GF zle9QaflLQ`v?;bm#kO%yV zBifN3OmLZ$rd&PrxGn-%)3&r1Lbrhq5fmOTw0tYD3$TSJe2_lS7_0iqM=R}JW$&Zh zbPQ#9O+%5p6(^&Q+a$pRt99dn7!pfqp&hCY@zSA>Zyr-G_YMMGtm5b^QoX%^kp%^; zr0q6I`aVqk9U9uv%2YBvg)EGpIT7uwUF6`ZG$ zG&cHiuDByW5VIk(gf?;*atC&784GG<@H6v9@&LMztV7JeQjInHDo?O=_Y5<}Fe3)) zzQWD-ydtRp#9`2QhDbYfbLV)nGn}XBa<#0YpQ>!#umWc-1l} z7LZ!tPCk~!oTX)-R{LhrjQa{Y0;SDS;P?R}a4MBO0T6VKy3&-l!=v$~)U%g>{qIwG zE$Fh!p!kVb9nhe|N5!vZBazni`TMQh(S&;E0H2#y^L%yhFo-D-rIT9IL>WI$S8dYY z)49dug;DnIA2*8HU6=i&yB(Z!(@o(xEc^r>Zle?O0d%w;xSt^hSQLh8*<5T1ZGt9J zgMicyeh;ENR0t#P5QGwl1eq^MWx**b;JSYBd-qzsM?d2x^gT+ulmNG76ZeYZ=A1KF zkYb!aum2@R`nrvS)ujU0<6;8fQVqt52@E8mEN=tU=y>^V%v3XCF=V2a#}|hJ)C<_! zXragXxX~YLJ7l*eew+cvA_#>vmqrw@8o(n;py8msw^-aGLrEVOXVic14#EsT4&avg z&Pw$xk6!U}JGX*!xx|Mw!2v=``38tqecYv?DC5vNa8Qgu6JilKmK-XbqzB0E;gB0( zR=;A7$jc97{3}YH;0BT2pl|S1tX?d+iH1)uYrE3-b?w9wdVA&`a3zwN1^mk2ufNzh z1~*j9e`r~O&dBRP%O2b6yP3oba*$6jBP^wu{Yp$`VQ6rvSSCN?t6cwlH6@Yw+Kymr zN6-V&tZlrKk-rusQ<4sL8G9xKwBU61KLKA!8wOoazn`}4_{_rXLeLG6H7*YnG(hKP zfOA(Nte>@tc~|%tE<6v;_}Cu=E*9ba=Sxf(0AC8NjYQ%ISjr(5sdhKM^^^Vl!i<|& z{&O9tF{tWHGsMiC@!w~UEUdVKZ9%C5S3Nb@we|b!Tccpjo?f&D6boiv>wOHJHQPy?*F}E8{?1*I|5rWMc?7%vGYYD=xqj{?GpXxxjPxKB5M8Mej`rriYm&YLNSEg z$hZjl??n`&(hzVaTavUVuB^>6hG2atDHxneM=k?boraFYG@t4r+;8KkSZ4*2>=ZY~#Zj!ke_`>7Y$uYH+g4GXYkvA}l8 zS3?;8-ATbV=G}P!H#`IkW7|uQe@4v8h$~P+El|AB=4ouvO_QeJWU2;Fgm45r1aOnk zIH#{_L$6h9Z?tU&w2; z>3X-`)$vpk3IEKTv`UTXHgTO#g)R)LcDhcVG5$HRZCjBr)0UU}CUf^48#Uj#-OY={ zY)%rh?{XxG+X`capWw|isUrhRF;RFzCiPj#lxik52#l+A($AdqVnR}B)pgspjR5v7 z*YPHxf1|F-V_AeyI_X9{v-;uLtZg#XRtUQgsi0YpzP{#e0DkI{3|-WWRA{KL4p=Lx zqRy2}MVCxIv+sIHjj358)_R>p5tQF|89!y-R$KY|w%(sD z`w={(%KYyQr)ply{E0j-QL4O?!M!N$zaO_GrgHop$_VQ6-;Z$O3j%*1QHO8utvdPl zPMOroe;#QR$@<4!6y2Ba-GX2R|Fa)O_i44Gf4^u>`p?|1QkS3-1|*d~_I1BY$Vfxt z@1=~L4~_rlM#y^6zn|7%37KA&f5+PrWAM))ps5y-_|$*Cd$P*l&$aitR8B*qxc!y(zb9SzaGCn_&waKnE@R36-lY(=K(_wRD=-)Nz~s`e)0$LA_))}JqLyQnaZUGH6?^{+hq^Z&MPXq2Pi8=(*tfj9r> z!3a_us@=xEJu{QqL{>ZTXD+oa&ZTs}ST!2c@YRqnUTGRZ-I>3KLP|&Cms_rleUV}W dyxPij?h&XLZ)tt@I%6xG(=*mBI&<~G{{eE()s+AM literal 0 HcmV?d00001 diff --git a/liquibase/maintainer.md b/liquibase/maintainer.md new file mode 100644 index 000000000000..43a5852a9422 --- /dev/null +++ b/liquibase/maintainer.md @@ -0,0 +1 @@ +[Liquibase](%%GITHUB-REPO%%) From 6dbc73a7c838f42f2193208a1191d99d282bd450 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Apr 2024 15:17:39 -0700 Subject: [PATCH 1111/2686] Run update.sh --- liquibase/README.md | 97 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 liquibase/README.md diff --git a/liquibase/README.md b/liquibase/README.md new file mode 100644 index 000000000000..80959aad0d13 --- /dev/null +++ b/liquibase/README.md @@ -0,0 +1,97 @@ + + +# Quick reference + +- **Maintained by**: + [Liquibase](https://github.com/liquibase/docker) + +- **Where to get help**: + [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + +# Supported tags and respective `Dockerfile` links + +- [`4.27`, `4.27.0`, `latest`](https://github.com/liquibase/docker/blob/7229778e4e912224ff54dbae0e05aae149544ed2/Dockerfile) +- [`4.27-alpine`, `4.27.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/7229778e4e912224ff54dbae0e05aae149544ed2/Dockerfile.alpine) + +# Quick reference (cont.) + +- **Where to file issues**: + [https://github.com/liquibase/docker/issues](https://github.com/liquibase/docker/issues?q=) + +- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) + [`amd64`](https://hub.docker.com/r/amd64/liquibase/), [`arm64v8`](https://hub.docker.com/r/arm64v8/liquibase/) + +- **Published image artifact details**: + [repo-info repo's `repos/liquibase/` directory](https://github.com/docker-library/repo-info/blob/master/repos/liquibase) ([history](https://github.com/docker-library/repo-info/commits/master/repos/liquibase)) + (image metadata, transfer size, etc) + +- **Image updates**: + [official-images repo's `library/liquibase` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fliquibase) + [official-images repo's `library/liquibase` file](https://github.com/docker-library/official-images/blob/master/library/liquibase) ([history](https://github.com/docker-library/official-images/commits/master/library/liquibase)) + +- **Source of this description**: + [docs repo's `liquibase/` directory](https://github.com/docker-library/docs/tree/master/liquibase) ([history](https://github.com/docker-library/docs/commits/master/liquibase)) + +# What is Liquibase? + +Liquibase is DevOps for your database. More information about Liquibase can be found at [http://www.liquibase.org](http://www.liquibase.org). + +Liquibase compares the contents of a Change Log to the database to determine which, if any, changes need to be applied to the database. For example, you can create tables, add columns, and many more with Liquibase. Liquibase is delivered via a Docker container to assist users that are leveraging Docker for their CI/CD solution. + +![logo](https://raw.githubusercontent.com/docker-library/docs/bb4f7e2d534d1c4f62ef19bc6b09489e9ba3d8cc/liquibase/logo.png) + +# How to use this image + +If you are executing Liquibase via the command line today, you are probably doing it like so: + +```console +$ liquibase update --driver=org.postgresql.Driver --url="jdbc:postgresql://:/" --changeLogFile=/liquibase/changelog/changelog.xml --username= --password= +``` + +The only change to use this docker image, is to use `docker run ...` and mount the folder containing your changelog.xml (or .yml or .json or .sql) to `/liquibase/changelog` in the Liquibase container + +```console +$ docker run -v /home/user/changelog:/liquibase/changelog liquibase --driver=org.postgresql.Driver --url="jdbc:postgresql://:/" --changeLogFile=/liquibase/changelog/changelog.xml --username= --password= +``` + +All Liquibase commands, such as `rollback`, `updateSQL`, and others, are available, as well. + +# Image Variants + +The `liquibase` images come in many flavors, each designed for a specific use case. + +## `liquibase:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +## `liquibase:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + +# License + +View [license information](https://github.com/liquibase/liquibase/blob/master/LICENSE.txt) for the Liquibase software contained in this image. + +As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). + +Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `liquibase/` directory](https://github.com/docker-library/repo-info/tree/master/repos/liquibase). + +As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. From 44edafba5e776a8575d2c7bd776fbfb285e83470 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Apr 2024 16:10:01 -0700 Subject: [PATCH 1112/2686] Run update.sh --- influxdb/README.md | 32 ++++++++++++++++---------------- mongo-express/README.md | 8 ++++---- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 23e3235f6228..d29b9363d400 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/64c7ceabdebbf400eacbcb32207e421d11e0ea63/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/meta/alpine/Dockerfile) +- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/2.7/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo-express/README.md b/mongo-express/README.md index 0245140404d7..10cfe2e290c0 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/20-alpine3.19/Dockerfile) -- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/20-alpine3.18/Dockerfile) -- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/18-alpine3.19/Dockerfile) -- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/ec6ee123c1ecd59a7662680bec407e0913a0321e/1.0/18-alpine3.18/Dockerfile) +- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.19/Dockerfile) +- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.18/Dockerfile) +- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.19/Dockerfile) +- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.18/Dockerfile) # Quick reference (cont.) From b98c45b25ccd8870916be84a07ffda3d6a1a99fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Apr 2024 11:21:50 -0700 Subject: [PATCH 1113/2686] Run update.sh --- clearlinux/README.md | 2 +- erlang/README.md | 12 ++++++------ ghost/README.md | 4 ++-- mongo/README.md | 15 +++++++++++++++ neo4j/README.md | 12 ++++++------ openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 8 ++++---- sonarqube/README.md | 20 ++++++++++---------- 8 files changed, 62 insertions(+), 47 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index ad4f4daeb3a5..503fdfe627cd 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d9e458fd8490a5c976f2c4e9cec922bebe96af30/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/164a30b74b5bf9a7a412b9ca461504add2c8a8de/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index d54dcd262da8..73d01e7c67b8 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,12 +27,12 @@ WARNING: - [`27.0-rc2.0.0`, `27.0-rc2.0`, `27.0-rc2`, `27`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/Dockerfile) - [`27.0-rc2.0.0-slim`, `27.0-rc2.0-slim`, `27.0-rc2-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/slim/Dockerfile) - [`27.0-rc2.0.0-alpine`, `27.0-rc2.0-alpine`, `27.0-rc2-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/alpine/Dockerfile) -- [`26.2.3.0`, `26.2.3`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/Dockerfile) -- [`26.2.3.0-slim`, `26.2.3-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/slim/Dockerfile) -- [`26.2.3.0-alpine`, `26.2.3-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/26/alpine/Dockerfile) -- [`25.3.2.10`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/Dockerfile) -- [`25.3.2.10-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/slim/Dockerfile) -- [`25.3.2.10-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/25/alpine/Dockerfile) +- [`26.2.4.0`, `26.2.4`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/Dockerfile) +- [`26.2.4.0-slim`, `26.2.4-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/slim/Dockerfile) +- [`26.2.4.0-alpine`, `26.2.4-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/alpine/Dockerfile) +- [`25.3.2.11`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/Dockerfile) +- [`25.3.2.11-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/slim/Dockerfile) +- [`25.3.2.11-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) - [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5811e3d99d9f..19c0e65ef1ea 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.82.1`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2521c2573e5bf04353c7630f0e97776ff98a5d41/5/debian/Dockerfile) -- [`5.82.1-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2521c2573e5bf04353c7630f0e97776ff98a5d41/5/alpine/Dockerfile) +- [`5.82.2`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef2cb4a7dbf11d48534ee74d9f15446436af502c/5/debian/Dockerfile) +- [`5.82.2-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef2cb4a7dbf11d48534ee74d9f15446436af502c/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 4a26ea6b21d6..de8806bc62c9 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.9-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/Dockerfile) +- [`7.0.9-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.9-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.9-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.9-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.8-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) - [`7.0.8-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,6 +61,16 @@ WARNING: ## Shared Tags +- `7.0.9-rc0`, `7.0-rc`: + - [`7.0.9-rc0-jammy`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/Dockerfile) + - [`7.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.9-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.9-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.8`, `7.0`, `7`, `latest`: - [`7.0.8-jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 01aef10ded47..4ae3461de7ff 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.18.1-community-bullseye`, `5.18-community-bullseye`, `5-community-bullseye`, `5.18.1-community`, `5.18-community`, `5-community`, `5.18.1-bullseye`, `5.18-bullseye`, `5-bullseye`, `5.18.1`, `5.18`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/bullseye/community/Dockerfile) -- [`5.18.1-enterprise-bullseye`, `5.18-enterprise-bullseye`, `5-enterprise-bullseye`, `5.18.1-enterprise`, `5.18-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/bullseye/enterprise/Dockerfile) -- [`5.18.1-community-ubi9`, `5.18-community-ubi9`, `5-community-ubi9`, `5.18.1-ubi9`, `5.18-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi9/community/Dockerfile) -- [`5.18.1-enterprise-ubi9`, `5.18-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi9/enterprise/Dockerfile) -- [`5.18.1-community-ubi8`, `5.18-community-ubi8`, `5-community-ubi8`, `5.18.1-ubi8`, `5.18-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/community/Dockerfile) -- [`5.18.1-enterprise-ubi8`, `5.18-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/ada6e8792dca5f18827c5eb61ea4e23b1349aa45/5.18.1/ubi8/enterprise/Dockerfile) +- [`5.19.0-community-bullseye`, `5.19-community-bullseye`, `5-community-bullseye`, `5.19.0-community`, `5.19-community`, `5-community`, `5.19.0-bullseye`, `5.19-bullseye`, `5-bullseye`, `5.19.0`, `5.19`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/bullseye/community/Dockerfile) +- [`5.19.0-enterprise-bullseye`, `5.19-enterprise-bullseye`, `5-enterprise-bullseye`, `5.19.0-enterprise`, `5.19-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/bullseye/enterprise/Dockerfile) +- [`5.19.0-community-ubi9`, `5.19-community-ubi9`, `5-community-ubi9`, `5.19.0-ubi9`, `5.19-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/community/Dockerfile) +- [`5.19.0-enterprise-ubi9`, `5.19-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/enterprise/Dockerfile) +- [`5.19.0-community-ubi8`, `5.19-community-ubi8`, `5-community-ubi8`, `5.19.0-ubi8`, `5.19-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/community/Dockerfile) +- [`5.19.0-enterprise-ubi8`, `5.19-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/enterprise/Dockerfile) - [`4.4.32`, `4.4.32-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/community/Dockerfile) - [`4.4.32-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/enterprise/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 28a68c8ce683..397a6be11d5e 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-17-jdk-oraclelinux9`, `23-ea-17-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-17-jdk-oracle`, `23-ea-17-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-17-jdk-oraclelinux8`, `23-ea-17-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-17-jdk-bookworm`, `23-ea-17-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/bookworm/Dockerfile) -- [`23-ea-17-jdk-slim-bookworm`, `23-ea-17-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-17-jdk-slim`, `23-ea-17-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-17-jdk-bullseye`, `23-ea-17-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/bullseye/Dockerfile) -- [`23-ea-17-jdk-slim-bullseye`, `23-ea-17-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-17-jdk-windowsservercore-ltsc2022`, `23-ea-17-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-17-jdk-windowsservercore-1809`, `23-ea-17-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-17-jdk-nanoserver-1809`, `23-ea-17-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-18-jdk-oraclelinux9`, `23-ea-18-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-18-jdk-oracle`, `23-ea-18-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-18-jdk-oraclelinux8`, `23-ea-18-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-18-jdk-bookworm`, `23-ea-18-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/bookworm/Dockerfile) +- [`23-ea-18-jdk-slim-bookworm`, `23-ea-18-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-18-jdk-slim`, `23-ea-18-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-18-jdk-bullseye`, `23-ea-18-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/bullseye/Dockerfile) +- [`23-ea-18-jdk-slim-bullseye`, `23-ea-18-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-18-jdk-windowsservercore-ltsc2022`, `23-ea-18-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-18-jdk-windowsservercore-1809`, `23-ea-18-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-18-jdk-nanoserver-1809`, `23-ea-18-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-17-jdk`, `23-ea-17`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-17-jdk-windowsservercore`, `23-ea-17-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-17-jdk-nanoserver`, `23-ea-17-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fd7577d450e288ab8db89fe5067bd9f2c0907f67/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-18-jdk`, `23-ea-18`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-18-jdk-windowsservercore`, `23-ea-18-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-18-jdk-nanoserver`, `23-ea-18-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 1e67a35a7089..7b26cfac98ae 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.1`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f83b6d92a99e5bc967fcac201ee6439f1a4849c2/3.13/ubuntu/Dockerfile) +- [`3.13.1`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f28dd30665e448d9aeb4af37d954cff9f427dfca/3.13/ubuntu/Dockerfile) - [`3.13.1-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f83b6d92a99e5bc967fcac201ee6439f1a4849c2/3.13/alpine/Dockerfile) +- [`3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f28dd30665e448d9aeb4af37d954cff9f427dfca/3.13/alpine/Dockerfile) - [`3.13.1-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/ubuntu/Dockerfile) +- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/5303c63ae02475dd63d7d6c11a9fbb5f06200189/3.12/ubuntu/Dockerfile) - [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/cca4784e6dcac701036a915f3a6900e324c69827/3.12/alpine/Dockerfile) +- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/5303c63ae02475dd63d7d6c11a9fbb5f06200189/3.12/alpine/Dockerfile) - [`3.12.13-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 1107a0f452f1..783949ea58a8 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/community/Dockerfile) -- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/developer/Dockerfile) -- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/enterprise/Dockerfile) -- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/datacenter/app/Dockerfile) -- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/9/datacenter/search/Dockerfile) -- [`10.4.1-community`, `10.4-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/community/Dockerfile) -- [`10.4.1-developer`, `10.4-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/developer/Dockerfile) -- [`10.4.1-enterprise`, `10.4-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/enterprise/Dockerfile) -- [`10.4.1-datacenter-app`, `10.4-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/datacenter/app/Dockerfile) -- [`10.4.1-datacenter-search`, `10.4-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/44a9deb5371e173c9ba310d7135c55ef95fe2915/10/datacenter/search/Dockerfile) +- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/community/Dockerfile) +- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/developer/Dockerfile) +- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/enterprise/Dockerfile) +- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/datacenter/app/Dockerfile) +- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/datacenter/search/Dockerfile) +- [`10.5.0-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/community/Dockerfile) +- [`10.5.0-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/developer/Dockerfile) +- [`10.5.0-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/enterprise/Dockerfile) +- [`10.5.0-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/datacenter/app/Dockerfile) +- [`10.5.0-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 44ca9b2162ca975a4478a0375fa32497501554e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Apr 2024 18:33:02 -0700 Subject: [PATCH 1114/2686] Run update.sh --- jruby/README.md | 28 ++++++++++++++++------------ ubuntu/README.md | 8 ++++---- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 1b9196a6720d..193cb71b5f7e 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,18 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.6`, `9.4-jre`, `9.4-jre8`, `9.4.6-jre`, `9.4.6-jre8`, `9.4.6.0`, `9.4.6.0-jre`, `9.4.6.0-jre8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.6-jdk`, `9.4.6-jdk8`, `9.4.6.0-jdk`, `9.4.6.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.6-jre11`, `9.4.6.0-jre11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.6-jdk11`, `9.4.6.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.6-jdk17`, `9.4.6.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.6-jre17`, `9.4.6.0-jre17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.4/jre17/Dockerfile) -- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/e98cdf3ca642ea35fdf2002d0603f1c03bd55979/9.3/jre17/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.6`, `9.4-jre`, `9.4-jre8`, `9.4.6-jre`, `9.4.6-jre8`, `9.4.6.0`, `9.4.6.0-jre`, `9.4.6.0-jre8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.6-jdk`, `9.4.6-jdk8`, `9.4.6.0-jdk`, `9.4.6.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.6-jre11`, `9.4.6.0-jre11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.6-jdk11`, `9.4.6.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.6-jdk17`, `9.4.6.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.6-jre17`, `9.4.6.0-jre17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre17/Dockerfile) +- [`9.4-jdk21`, `9.4.6-jdk21`, `9.4.6.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk21/Dockerfile) +- [`9.4-jre21`, `9.4.6-jre21`, `9.4.6.0-jre21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre21/Dockerfile) +- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre17/Dockerfile) +- [`9.3-jdk21`, `9.3.14-jdk21`, `9.3.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk21/Dockerfile) +- [`9.3-jre21`, `9.3.14-jre21`, `9.3.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index b18fe1ba2a0b..f5112c9c6d2a 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240216`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240216-5e82aa8e&id=5e82aa8e3498567df6757d3e9598a8cd54d19ee9) -- [`22.04`, `jammy-20240227`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240227-c988e436&id=c988e4364bc3cc0378f6c3592eb486d281a6ac41) -- [`23.10`, `mantic-20240216`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240216-c9ad3939&id=c9ad39394a666b231d5c5398e3cd38ac70c0594c) -- [`24.04`, `noble-20240225`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240225-8cf671e3&id=8cf671e3c71fa7d0735ceefd4a77c7af2771472f) +- [`20.04`, `focal-20240410`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240410-991030cf&id=991030cf26260f3402134db39905d5a7ec65c663) +- [`22.04`, `jammy-20240405`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240405-ae89e7cd&id=ae89e7cda4e21aae14ec1c74cc095c013adf3ecb) +- [`23.10`, `mantic-20240405`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240405-b94046c0&id=b94046c0cc25268b37b7d7104a95a360efc7064a) +- [`24.04`, `noble-20240407.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240407.1-e4adb568&id=e4adb5687d1953e60efbf8880d0e7a989abf4aa8) # Quick reference (cont.) From f0794027e26d33d7d0bd612f87324274d5ae538d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Apr 2024 12:39:53 -0700 Subject: [PATCH 1115/2686] Run update.sh --- oraclelinux/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0c286e41473f..4e0e7051e5fd 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91272579843237f77158e36247d703b272b0fc00/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/9-slim/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7-slim-fips/Dockerfile) # Quick reference (cont.) From 40d5bdfe58ad514a5969579d0219643ca85c918b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Apr 2024 15:39:54 -0700 Subject: [PATCH 1116/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index e7917f4844d0..13cb45b80e0c 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/3f5fb1e41a006b19d21a8832ce0ec8974120c1cc/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/15.0/Dockerfile) # Quick reference (cont.) From 0ee1edb702a63fd48a0115c810557dd9c51fe005 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Apr 2024 16:11:00 -0700 Subject: [PATCH 1117/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++-------------------- joomla/README.md | 30 +++++-------- 2 files changed, 60 insertions(+), 66 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index cd865d9bb45f..2443d3d4988c 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,54 +24,54 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u402`, `8u402-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u402-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u402-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u402-al2023-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u402-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u402-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u402-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.16/Dockerfile) -- [`8-alpine3.16-jre`, `8u402-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.16/Dockerfile) -- [`8-alpine3.17`, `8u402-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u402-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u402-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u402-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u402-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u402-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u402-alpine3.19-jre`, `8-alpine-jre`, `8u402-alpine-jre`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/8/jre/alpine/3.19/Dockerfile) -- [`11`, `11.0.22`, `11.0.22-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.22-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.22-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.22-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.22-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.22-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.22-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.22-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.16/Dockerfile) -- [`11-alpine3.17`, `11.0.22-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.22-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.22-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.22-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.10`, `17.0.10-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.10-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.10-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.10-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.10-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.10-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.10-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.10-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.10-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.16/Dockerfile) -- [`17-alpine3.17`, `17.0.10-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.10-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.10-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.10-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/17/jdk/alpine/3.19/Dockerfile) -- [`21`, `21.0.2`, `21.0.2-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.2-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.2-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.2-al2023-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.2-al2023-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.2-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.16/Dockerfile) -- [`21-alpine3.17`, `21.0.2-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.2-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.2-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.2-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/21/jdk/alpine/3.19/Dockerfile) -- [`22-al2023`, `22.0.0-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/al2023/Dockerfile) -- [`22-al2023-headless`, `22.0.0-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/headless/al2023/Dockerfile) -- [`22-al2023-headful`, `22.0.0-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/headful/al2023/Dockerfile) -- [`22-alpine3.16`, `22.0.0-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.16/Dockerfile) -- [`22-alpine3.17`, `22.0.0-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.17/Dockerfile) -- [`22-alpine3.18`, `22.0.0-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.18/Dockerfile) -- [`22-alpine3.19`, `22.0.0-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.0-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/3d2365e3db44c13a06c19f71aad789e79f67f691/22/jdk/alpine/3.19/Dockerfile) +- [`8`, `8u412`, `8u412-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u412-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2-generic/Dockerfile) +- [`8-al2023`, `8u412-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u412-al2023-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2023/Dockerfile) +- [`8-al2-native-jre`, `8u412-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u412-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2/Dockerfile) +- [`8-alpine3.16`, `8u412-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.16-jre`, `8u412-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u412-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u412-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u412-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u412-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u412-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u412-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u412-alpine3.19-jre`, `8-alpine-jre`, `8u412-alpine-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.19/Dockerfile) +- [`11`, `11.0.23`, `11.0.23-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.23-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2-generic/Dockerfile) +- [`11-al2023`, `11.0.23-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.23-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.23-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headful/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.23-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.23-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2/Dockerfile) +- [`11-alpine3.16`, `11.0.23-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.23-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.23-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.23-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.23-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.11`, `17.0.11-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.11-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2-generic/Dockerfile) +- [`17-al2023`, `17.0.11-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.11-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.11-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.11-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.11-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.11-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2/Dockerfile) +- [`17-alpine3.16`, `17.0.11-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.11-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.11-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.11-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.11-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.3`, `21.0.3-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.3-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2-generic/Dockerfile) +- [`21-al2023`, `21.0.3-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.3-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headless/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.3-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headful/al2023/Dockerfile) +- [`21-alpine3.16`, `21.0.3-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.3-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.3-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.3-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.3-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.19/Dockerfile) +- [`22-al2023`, `22.0.1-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/al2023/Dockerfile) +- [`22-al2023-headless`, `22.0.1-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headless/al2023/Dockerfile) +- [`22-al2023-headful`, `22.0.1-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headful/al2023/Dockerfile) +- [`22-alpine3.16`, `22.0.1-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.16/Dockerfile) +- [`22-alpine3.17`, `22.0.1-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.17/Dockerfile) +- [`22-alpine3.18`, `22.0.1-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.18/Dockerfile) +- [`22-alpine3.19`, `22.0.1-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.1-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 429cc89e99a0..1f60ea862207 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,24 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-beta2-php8.1-apache`, `5.1-php8.1-apache`, `5.1.beta-php8.1-apache`, `5.1.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/apache/Dockerfile) -- [`5.1.0-beta2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5.1.beta-php8.1-fpm-alpine`, `5.1.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.1.0-beta2-php8.1-fpm`, `5.1-php8.1-fpm`, `5.1.beta-php8.1-fpm`, `5.1.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.1/fpm/Dockerfile) -- [`5.1.0-beta2`, `5.1`, `5.1.beta`, `5.1.0-beta`, `5.1.0-beta2-apache`, `5.1-apache`, `5.1.beta-apache`, `5.1.0-beta-apache`, `5.1.0-beta2-php8.2`, `5.1-php8.2`, `5.1.beta-php8.2`, `5.1.0-beta-php8.2`, `5.1.0-beta2-php8.2-apache`, `5.1-php8.2-apache`, `5.1.beta-php8.2-apache`, `5.1.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/apache/Dockerfile) -- [`5.1.0-beta2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5.1.beta-php8.2-fpm-alpine`, `5.1.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.1.0-beta2-php8.2-fpm`, `5.1-php8.2-fpm`, `5.1.beta-php8.2-fpm`, `5.1.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/9032c136453aff087fe0f6e03e7d759dd09f4f71/5.1.beta/php8.2/fpm/Dockerfile) -- [`5.0.3-php8.1-apache`, `5.0-php8.1-apache`, `5-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/apache/Dockerfile) -- [`5.0.3-php8.1-fpm-alpine`, `5.0-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm-alpine/Dockerfile) -- [`5.0.3-php8.1-fpm`, `5.0-php8.1-fpm`, `5-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.1/fpm/Dockerfile) -- [`5.0.3`, `5.0`, `5`, `5.0.3-apache`, `5.0-apache`, `5-apache`, `5.0.3-php8.2`, `5.0-php8.2`, `5-php8.2`, `5.0.3-php8.2-apache`, `5.0-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/apache/Dockerfile) -- [`5.0.3-php8.2-fpm-alpine`, `5.0-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/fpm-alpine/Dockerfile) -- [`5.0.3-php8.2-fpm`, `5.0-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/5.0/php8.2/fpm/Dockerfile) -- [`4.4.3`, `4.4`, `4`, `latest`, `4.4.3-apache`, `4.4-apache`, `4-apache`, `apache`, `4.4.3-php8.1`, `4.4-php8.1`, `4-php8.1`, `php8.1`, `4.4.3-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/apache/Dockerfile) -- [`4.4.3-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.3-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.1/fpm/Dockerfile) -- [`4.4.3-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/apache/Dockerfile) -- [`4.4.3-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.3-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/667ef17a8fdf0fe6c67cae2aff095a7e803687a0/4.4/php8.2/fpm/Dockerfile) +- [`5.1.0-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/apache/Dockerfile) +- [`5.1.0-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.0-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/fpm/Dockerfile) +- [`5.1.0`, `5.1`, `5`, `latest`, `5.1.0-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.0-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.0-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/apache/Dockerfile) +- [`5.1.0-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.0-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/fpm/Dockerfile) +- [`4.4.4`, `4.4`, `4`, `4.4.4-apache`, `4.4-apache`, `4-apache`, `4.4.4-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.4-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/apache/Dockerfile) +- [`4.4.4-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.4-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/fpm/Dockerfile) +- [`4.4.4-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/apache/Dockerfile) +- [`4.4.4-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.4-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From 9d645b18f94e0194b86e8456b3fdd932625d2beb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Apr 2024 17:11:00 -0700 Subject: [PATCH 1118/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 4 ++-- tomcat/README.md | 40 ++++++++++++++++++++-------------------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/bash/README.md b/bash/README.md index b0232f6ce096..3b44fec7f694 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240406`, `devel`, `devel-20240406-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/9a0ebc836cbd5f1990be5554ad39719c603e1ef2/devel/Dockerfile) +- [`devel-20240415`, `devel`, `devel-20240415-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/3519de9825d4c678a4996b4ce172773387f3dbc2/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index b30bedf0a867..81d5585e6cb6 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -27,8 +27,8 @@ WARNING: - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) - [`4.1.4`, `4.1`, `4`, `latest`, `4.1.4-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.1/Dockerfile) - [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.0/Dockerfile) -- [`3.11.16`, `3.11`, `3`, `3.11.16-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/3.11/Dockerfile) -- [`3.0.29`, `3.0`, `3.0.29-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/3.0/Dockerfile) +- [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) +- [`3.0.30`, `3.0`, `3.0.30-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/2324f94cb4e9686859e3f487f725908bfbefc9d2/3.0/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 2f6504a11a53..ebb667a90111 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,32 +24,32 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M18-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M18-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M18-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M18`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M18-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M18-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M18-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f39dae10107006e115fc0e58a0117fbe5b57cf4d/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M19-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M19-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M19-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M19`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M19-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M19-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M19-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.20-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.20-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.20-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.20`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.20-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.20-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.20-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre21/temurin-jammy/Dockerfile) - [`10.1.20-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.20-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.20-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk17/temurin-jammy/Dockerfile) - [`10.1.20-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.20-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.20-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.20-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.20-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.20-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.20-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.20-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.20-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.87-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.87-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.87-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.87`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.87-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.87-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.87-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.87-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.87-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.87-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.87-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.87-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.87-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.87-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.87-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.87-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.87-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.87-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.87-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.87-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.87-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.87-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.87-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.87-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.87-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.87-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.87-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.87-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.87-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.87-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.87-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.87-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.87-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.87-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.87-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.87-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.87-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.87-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.87-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3ca04782a5cc623bda70cd002ec9577f7ae7b1b9/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.88-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.88-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.88-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.88`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.88-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.88-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.88-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.88-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.88-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.88-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.88-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.88-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.88-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.88-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.88-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.88-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.88-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.88-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.88-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.88-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.88-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.88-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.88-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.88-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.88-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.88-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.88-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.88-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.88-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.88-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.88-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.88-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.88-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.88-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.88-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.88-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.88-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.88-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.88-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From ec61a4001d4677008e40e93b9245e7ccafbe53a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Apr 2024 18:10:56 -0700 Subject: [PATCH 1119/2686] Run update.sh --- tomee/README.md | 104 ++++++++++++++++++++++-------------------------- 1 file changed, 48 insertions(+), 56 deletions(-) diff --git a/tomee/README.md b/tomee/README.md index c6e174e04768..9b7b4d0d6cf0 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,62 +24,54 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.16-jre17-Temurin-ubuntu-webprofile`, `8.0.16-Temurin-ubuntu-webprofile`, `8.0.16-jre17-ubuntu-webprofile`, `8.0.16-ubuntu-webprofile`, `8.0.16-jre17-Temurin-webprofile`, `8.0.16-Temurin-webprofile`, `8.0.16-jre17-webprofile`, `8.0.16-webprofile`, `8.0.16-jre17-Temurin-ubuntu`, `8.0.16-Temurin-ubuntu`, `8.0.16-jre17-ubuntu`, `8.0.16-ubuntu`, `8.0.16-jre17-Temurin`, `8.0.16-Temurin`, `8.0.16-jre17`, `8.0.16`, `8.0-jre17-Temurin-ubuntu-webprofile`, `8.0-Temurin-ubuntu-webprofile`, `8.0-jre17-ubuntu-webprofile`, `8.0-ubuntu-webprofile`, `8.0-jre17-Temurin-webprofile`, `8.0-Temurin-webprofile`, `8.0-jre17-webprofile`, `8.0-webprofile`, `8.0-jre17-Temurin-ubuntu`, `8.0-Temurin-ubuntu`, `8.0-jre17-ubuntu`, `8.0-ubuntu`, `8.0-jre17-Temurin`, `8.0-Temurin`, `8.0-jre17`, `8.0`, `8-jre17-Temurin-ubuntu-webprofile`, `8-Temurin-ubuntu-webprofile`, `8-jre17-ubuntu-webprofile`, `8-ubuntu-webprofile`, `8-jre17-Temurin-webprofile`, `8-Temurin-webprofile`, `8-jre17-webprofile`, `8-webprofile`, `8-jre17-Temurin-ubuntu`, `8-Temurin-ubuntu`, `8-jre17-ubuntu`, `8-ubuntu`, `8-jre17-Temurin`, `8-Temurin`, `8-jre17`, `8`, `jre17-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `ubuntu-webprofile`, `jre17-Temurin-webprofile`, `Temurin-webprofile`, `jre17-webprofile`, `webprofile`, `jre17-Temurin-ubuntu`, `Temurin-ubuntu`, `jre17-ubuntu`, `ubuntu`, `jre17-Temurin`, `Temurin`, `jre17`, `latest`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-microprofile`, `8.0.16-Temurin-ubuntu-microprofile`, `8.0.16-jre17-ubuntu-microprofile`, `8.0.16-ubuntu-microprofile`, `8.0.16-jre17-Temurin-microprofile`, `8.0.16-Temurin-microprofile`, `8.0.16-jre17-microprofile`, `8.0.16-microprofile`, `8.0-jre17-Temurin-ubuntu-microprofile`, `8.0-Temurin-ubuntu-microprofile`, `8.0-jre17-ubuntu-microprofile`, `8.0-ubuntu-microprofile`, `8.0-jre17-Temurin-microprofile`, `8.0-Temurin-microprofile`, `8.0-jre17-microprofile`, `8.0-microprofile`, `8-jre17-Temurin-ubuntu-microprofile`, `8-Temurin-ubuntu-microprofile`, `8-jre17-ubuntu-microprofile`, `8-ubuntu-microprofile`, `8-jre17-Temurin-microprofile`, `8-Temurin-microprofile`, `8-jre17-microprofile`, `8-microprofile`, `jre17-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `ubuntu-microprofile`, `jre17-Temurin-microprofile`, `Temurin-microprofile`, `jre17-microprofile`, `microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-plume`, `8.0.16-Temurin-ubuntu-plume`, `8.0.16-jre17-ubuntu-plume`, `8.0.16-ubuntu-plume`, `8.0.16-jre17-Temurin-plume`, `8.0.16-Temurin-plume`, `8.0.16-jre17-plume`, `8.0.16-plume`, `8.0-jre17-Temurin-ubuntu-plume`, `8.0-Temurin-ubuntu-plume`, `8.0-jre17-ubuntu-plume`, `8.0-ubuntu-plume`, `8.0-jre17-Temurin-plume`, `8.0-Temurin-plume`, `8.0-jre17-plume`, `8.0-plume`, `8-jre17-Temurin-ubuntu-plume`, `8-Temurin-ubuntu-plume`, `8-jre17-ubuntu-plume`, `8-ubuntu-plume`, `8-jre17-Temurin-plume`, `8-Temurin-plume`, `8-jre17-plume`, `8-plume`, `jre17-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `ubuntu-plume`, `jre17-Temurin-plume`, `Temurin-plume`, `jre17-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre17-Temurin-ubuntu-plus`, `8.0.16-Temurin-ubuntu-plus`, `8.0.16-jre17-ubuntu-plus`, `8.0.16-ubuntu-plus`, `8.0.16-jre17-Temurin-plus`, `8.0.16-Temurin-plus`, `8.0.16-jre17-plus`, `8.0.16-plus`, `8.0-jre17-Temurin-ubuntu-plus`, `8.0-Temurin-ubuntu-plus`, `8.0-jre17-ubuntu-plus`, `8.0-ubuntu-plus`, `8.0-jre17-Temurin-plus`, `8.0-Temurin-plus`, `8.0-jre17-plus`, `8.0-plus`, `8-jre17-Temurin-ubuntu-plus`, `8-Temurin-ubuntu-plus`, `8-jre17-ubuntu-plus`, `8-ubuntu-plus`, `8-jre17-Temurin-plus`, `8-Temurin-plus`, `8-jre17-plus`, `8-plus`, `jre17-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `ubuntu-plus`, `jre17-Temurin-plus`, `Temurin-plus`, `jre17-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-webprofile`, `8.0.16-Temurin-alpine-webprofile`, `8.0.16-jre17-alpine-webprofile`, `8.0.16-alpine-webprofile`, `8.0.16-jre17-Temurin-alpine`, `8.0.16-Temurin-alpine`, `8.0.16-jre17-alpine`, `8.0.16-alpine`, `8.0-jre17-Temurin-alpine-webprofile`, `8.0-Temurin-alpine-webprofile`, `8.0-jre17-alpine-webprofile`, `8.0-alpine-webprofile`, `8.0-jre17-Temurin-alpine`, `8.0-Temurin-alpine`, `8.0-jre17-alpine`, `8.0-alpine`, `8-jre17-Temurin-alpine-webprofile`, `8-Temurin-alpine-webprofile`, `8-jre17-alpine-webprofile`, `8-alpine-webprofile`, `8-jre17-Temurin-alpine`, `8-Temurin-alpine`, `8-jre17-alpine`, `8-alpine`, `jre17-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre17-alpine-webprofile`, `alpine-webprofile`, `jre17-Temurin-alpine`, `Temurin-alpine`, `jre17-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-microprofile`, `8.0.16-Temurin-alpine-microprofile`, `8.0.16-jre17-alpine-microprofile`, `8.0.16-alpine-microprofile`, `8.0-jre17-Temurin-alpine-microprofile`, `8.0-Temurin-alpine-microprofile`, `8.0-jre17-alpine-microprofile`, `8.0-alpine-microprofile`, `8-jre17-Temurin-alpine-microprofile`, `8-Temurin-alpine-microprofile`, `8-jre17-alpine-microprofile`, `8-alpine-microprofile`, `jre17-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-plume`, `8.0.16-Temurin-alpine-plume`, `8.0.16-jre17-alpine-plume`, `8.0.16-alpine-plume`, `8.0-jre17-Temurin-alpine-plume`, `8.0-Temurin-alpine-plume`, `8.0-jre17-alpine-plume`, `8.0-alpine-plume`, `8-jre17-Temurin-alpine-plume`, `8-Temurin-alpine-plume`, `8-jre17-alpine-plume`, `8-alpine-plume`, `jre17-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre17-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre17-Temurin-alpine-plus`, `8.0.16-Temurin-alpine-plus`, `8.0.16-jre17-alpine-plus`, `8.0.16-alpine-plus`, `8.0-jre17-Temurin-alpine-plus`, `8.0-Temurin-alpine-plus`, `8.0-jre17-alpine-plus`, `8.0-alpine-plus`, `8-jre17-Temurin-alpine-plus`, `8-Temurin-alpine-plus`, `8-jre17-alpine-plus`, `8-alpine-plus`, `jre17-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre17-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-webprofile`, `8.0.16-jre11-ubuntu-webprofile`, `8.0.16-jre11-Temurin-webprofile`, `8.0.16-jre11-webprofile`, `8.0.16-jre11-Temurin-ubuntu`, `8.0.16-jre11-ubuntu`, `8.0.16-jre11-Temurin`, `8.0.16-jre11`, `8.0-jre11-Temurin-ubuntu-webprofile`, `8.0-jre11-ubuntu-webprofile`, `8.0-jre11-Temurin-webprofile`, `8.0-jre11-webprofile`, `8.0-jre11-Temurin-ubuntu`, `8.0-jre11-ubuntu`, `8.0-jre11-Temurin`, `8.0-jre11`, `8-jre11-Temurin-ubuntu-webprofile`, `8-jre11-ubuntu-webprofile`, `8-jre11-Temurin-webprofile`, `8-jre11-webprofile`, `8-jre11-Temurin-ubuntu`, `8-jre11-ubuntu`, `8-jre11-Temurin`, `8-jre11`, `jre11-Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `jre11-Temurin-webprofile`, `jre11-webprofile`, `jre11-Temurin-ubuntu`, `jre11-ubuntu`, `jre11-Temurin`, `jre11`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-microprofile`, `8.0.16-jre11-ubuntu-microprofile`, `8.0.16-jre11-Temurin-microprofile`, `8.0.16-jre11-microprofile`, `8.0-jre11-Temurin-ubuntu-microprofile`, `8.0-jre11-ubuntu-microprofile`, `8.0-jre11-Temurin-microprofile`, `8.0-jre11-microprofile`, `8-jre11-Temurin-ubuntu-microprofile`, `8-jre11-ubuntu-microprofile`, `8-jre11-Temurin-microprofile`, `8-jre11-microprofile`, `jre11-Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `jre11-Temurin-microprofile`, `jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-plume`, `8.0.16-jre11-ubuntu-plume`, `8.0.16-jre11-Temurin-plume`, `8.0.16-jre11-plume`, `8.0-jre11-Temurin-ubuntu-plume`, `8.0-jre11-ubuntu-plume`, `8.0-jre11-Temurin-plume`, `8.0-jre11-plume`, `8-jre11-Temurin-ubuntu-plume`, `8-jre11-ubuntu-plume`, `8-jre11-Temurin-plume`, `8-jre11-plume`, `jre11-Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `jre11-Temurin-plume`, `jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre11-Temurin-ubuntu-plus`, `8.0.16-jre11-ubuntu-plus`, `8.0.16-jre11-Temurin-plus`, `8.0.16-jre11-plus`, `8.0-jre11-Temurin-ubuntu-plus`, `8.0-jre11-ubuntu-plus`, `8.0-jre11-Temurin-plus`, `8.0-jre11-plus`, `8-jre11-Temurin-ubuntu-plus`, `8-jre11-ubuntu-plus`, `8-jre11-Temurin-plus`, `8-jre11-plus`, `jre11-Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `jre11-Temurin-plus`, `jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-webprofile`, `8.0.16-jre11-alpine-webprofile`, `8.0.16-jre11-Temurin-alpine`, `8.0.16-jre11-alpine`, `8.0-jre11-Temurin-alpine-webprofile`, `8.0-jre11-alpine-webprofile`, `8.0-jre11-Temurin-alpine`, `8.0-jre11-alpine`, `8-jre11-Temurin-alpine-webprofile`, `8-jre11-alpine-webprofile`, `8-jre11-Temurin-alpine`, `8-jre11-alpine`, `jre11-Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `jre11-Temurin-alpine`, `jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-microprofile`, `8.0.16-jre11-alpine-microprofile`, `8.0-jre11-Temurin-alpine-microprofile`, `8.0-jre11-alpine-microprofile`, `8-jre11-Temurin-alpine-microprofile`, `8-jre11-alpine-microprofile`, `jre11-Temurin-alpine-microprofile`, `jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-plume`, `8.0.16-jre11-alpine-plume`, `8.0-jre11-Temurin-alpine-plume`, `8.0-jre11-alpine-plume`, `8-jre11-Temurin-alpine-plume`, `8-jre11-alpine-plume`, `jre11-Temurin-alpine-plume`, `jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre11-Temurin-alpine-plus`, `8.0.16-jre11-alpine-plus`, `8.0-jre11-Temurin-alpine-plus`, `8.0-jre11-alpine-plus`, `8-jre11-Temurin-alpine-plus`, `8-jre11-alpine-plus`, `jre11-Temurin-alpine-plus`, `jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-webprofile`, `8.0.16-jre8-ubuntu-webprofile`, `8.0.16-jre8-Temurin-webprofile`, `8.0.16-jre8-webprofile`, `8.0.16-jre8-Temurin-ubuntu`, `8.0.16-jre8-ubuntu`, `8.0.16-jre8-Temurin`, `8.0.16-jre8`, `8.0-jre8-Temurin-ubuntu-webprofile`, `8.0-jre8-ubuntu-webprofile`, `8.0-jre8-Temurin-webprofile`, `8.0-jre8-webprofile`, `8.0-jre8-Temurin-ubuntu`, `8.0-jre8-ubuntu`, `8.0-jre8-Temurin`, `8.0-jre8`, `8-jre8-Temurin-ubuntu-webprofile`, `8-jre8-ubuntu-webprofile`, `8-jre8-Temurin-webprofile`, `8-jre8-webprofile`, `8-jre8-Temurin-ubuntu`, `8-jre8-ubuntu`, `8-jre8-Temurin`, `8-jre8`, `jre8-Temurin-ubuntu-webprofile`, `jre8-ubuntu-webprofile`, `jre8-Temurin-webprofile`, `jre8-webprofile`, `jre8-Temurin-ubuntu`, `jre8-ubuntu`, `jre8-Temurin`, `jre8`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-microprofile`, `8.0.16-jre8-ubuntu-microprofile`, `8.0.16-jre8-Temurin-microprofile`, `8.0.16-jre8-microprofile`, `8.0-jre8-Temurin-ubuntu-microprofile`, `8.0-jre8-ubuntu-microprofile`, `8.0-jre8-Temurin-microprofile`, `8.0-jre8-microprofile`, `8-jre8-Temurin-ubuntu-microprofile`, `8-jre8-ubuntu-microprofile`, `8-jre8-Temurin-microprofile`, `8-jre8-microprofile`, `jre8-Temurin-ubuntu-microprofile`, `jre8-ubuntu-microprofile`, `jre8-Temurin-microprofile`, `jre8-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-plume`, `8.0.16-jre8-ubuntu-plume`, `8.0.16-jre8-Temurin-plume`, `8.0.16-jre8-plume`, `8.0-jre8-Temurin-ubuntu-plume`, `8.0-jre8-ubuntu-plume`, `8.0-jre8-Temurin-plume`, `8.0-jre8-plume`, `8-jre8-Temurin-ubuntu-plume`, `8-jre8-ubuntu-plume`, `8-jre8-Temurin-plume`, `8-jre8-plume`, `jre8-Temurin-ubuntu-plume`, `jre8-ubuntu-plume`, `jre8-Temurin-plume`, `jre8-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/plume/Dockerfile) -- [`8.0.16-jre8-Temurin-ubuntu-plus`, `8.0.16-jre8-ubuntu-plus`, `8.0.16-jre8-Temurin-plus`, `8.0.16-jre8-plus`, `8.0-jre8-Temurin-ubuntu-plus`, `8.0-jre8-ubuntu-plus`, `8.0-jre8-Temurin-plus`, `8.0-jre8-plus`, `8-jre8-Temurin-ubuntu-plus`, `8-jre8-ubuntu-plus`, `8-jre8-Temurin-plus`, `8-jre8-plus`, `jre8-Temurin-ubuntu-plus`, `jre8-ubuntu-plus`, `jre8-Temurin-plus`, `jre8-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/ubuntu/plus/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-webprofile`, `8.0.16-jre8-alpine-webprofile`, `8.0.16-jre8-Temurin-alpine`, `8.0.16-jre8-alpine`, `8.0-jre8-Temurin-alpine-webprofile`, `8.0-jre8-alpine-webprofile`, `8.0-jre8-Temurin-alpine`, `8.0-jre8-alpine`, `8-jre8-Temurin-alpine-webprofile`, `8-jre8-alpine-webprofile`, `8-jre8-Temurin-alpine`, `8-jre8-alpine`, `jre8-Temurin-alpine-webprofile`, `jre8-alpine-webprofile`, `jre8-Temurin-alpine`, `jre8-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/webprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-microprofile`, `8.0.16-jre8-alpine-microprofile`, `8.0-jre8-Temurin-alpine-microprofile`, `8.0-jre8-alpine-microprofile`, `8-jre8-Temurin-alpine-microprofile`, `8-jre8-alpine-microprofile`, `jre8-Temurin-alpine-microprofile`, `jre8-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/microprofile/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-plume`, `8.0.16-jre8-alpine-plume`, `8.0-jre8-Temurin-alpine-plume`, `8.0-jre8-alpine-plume`, `8-jre8-Temurin-alpine-plume`, `8-jre8-alpine-plume`, `jre8-Temurin-alpine-plume`, `jre8-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/plume/Dockerfile) -- [`8.0.16-jre8-Temurin-alpine-plus`, `8.0.16-jre8-alpine-plus`, `8.0-jre8-Temurin-alpine-plus`, `8.0-jre8-alpine-plus`, `8-jre8-Temurin-alpine-plus`, `8-jre8-alpine-plus`, `jre8-Temurin-alpine-plus`, `jre8-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre8/Temurin/alpine/plus/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-webprofile`, `8.0.16-Semeru-ubuntu-webprofile`, `8.0.16-jre17-Semeru-webprofile`, `8.0.16-Semeru-webprofile`, `8.0.16-jre17-Semeru-ubuntu`, `8.0.16-Semeru-ubuntu`, `8.0.16-jre17-Semeru`, `8.0.16-Semeru`, `8.0-jre17-Semeru-ubuntu-webprofile`, `8.0-Semeru-ubuntu-webprofile`, `8.0-jre17-Semeru-webprofile`, `8.0-Semeru-webprofile`, `8.0-jre17-Semeru-ubuntu`, `8.0-Semeru-ubuntu`, `8.0-jre17-Semeru`, `8.0-Semeru`, `8-jre17-Semeru-ubuntu-webprofile`, `8-Semeru-ubuntu-webprofile`, `8-jre17-Semeru-webprofile`, `8-Semeru-webprofile`, `8-jre17-Semeru-ubuntu`, `8-Semeru-ubuntu`, `8-jre17-Semeru`, `8-Semeru`, `jre17-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`, `Semeru-webprofile`, `jre17-Semeru-ubuntu`, `Semeru-ubuntu`, `jre17-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-microprofile`, `8.0.16-Semeru-ubuntu-microprofile`, `8.0.16-jre17-Semeru-microprofile`, `8.0.16-Semeru-microprofile`, `8.0-jre17-Semeru-ubuntu-microprofile`, `8.0-Semeru-ubuntu-microprofile`, `8.0-jre17-Semeru-microprofile`, `8.0-Semeru-microprofile`, `8-jre17-Semeru-ubuntu-microprofile`, `8-Semeru-ubuntu-microprofile`, `8-jre17-Semeru-microprofile`, `8-Semeru-microprofile`, `jre17-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-plume`, `8.0.16-Semeru-ubuntu-plume`, `8.0.16-jre17-Semeru-plume`, `8.0.16-Semeru-plume`, `8.0-jre17-Semeru-ubuntu-plume`, `8.0-Semeru-ubuntu-plume`, `8.0-jre17-Semeru-plume`, `8.0-Semeru-plume`, `8-jre17-Semeru-ubuntu-plume`, `8-Semeru-ubuntu-plume`, `8-jre17-Semeru-plume`, `8-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre17-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.16-jre17-Semeru-ubuntu-plus`, `8.0.16-Semeru-ubuntu-plus`, `8.0.16-jre17-Semeru-plus`, `8.0.16-Semeru-plus`, `8.0-jre17-Semeru-ubuntu-plus`, `8.0-Semeru-ubuntu-plus`, `8.0-jre17-Semeru-plus`, `8.0-Semeru-plus`, `8-jre17-Semeru-ubuntu-plus`, `8-Semeru-ubuntu-plus`, `8-jre17-Semeru-plus`, `8-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre17-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-webprofile`, `8.0.16-jre11-Semeru-webprofile`, `8.0.16-jre11-Semeru-ubuntu`, `8.0.16-jre11-Semeru`, `8.0-jre11-Semeru-ubuntu-webprofile`, `8.0-jre11-Semeru-webprofile`, `8.0-jre11-Semeru-ubuntu`, `8.0-jre11-Semeru`, `8-jre11-Semeru-ubuntu-webprofile`, `8-jre11-Semeru-webprofile`, `8-jre11-Semeru-ubuntu`, `8-jre11-Semeru`, `jre11-Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `jre11-Semeru-ubuntu`, `jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-microprofile`, `8.0.16-jre11-Semeru-microprofile`, `8.0-jre11-Semeru-ubuntu-microprofile`, `8.0-jre11-Semeru-microprofile`, `8-jre11-Semeru-ubuntu-microprofile`, `8-jre11-Semeru-microprofile`, `jre11-Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-plume`, `8.0.16-jre11-Semeru-plume`, `8.0-jre11-Semeru-ubuntu-plume`, `8.0-jre11-Semeru-plume`, `8-jre11-Semeru-ubuntu-plume`, `8-jre11-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`8.0.16-jre11-Semeru-ubuntu-plus`, `8.0.16-jre11-Semeru-plus`, `8.0-jre11-Semeru-ubuntu-plus`, `8.0-jre11-Semeru-plus`, `8-jre11-Semeru-ubuntu-plus`, `8-jre11-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-8.0/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.2-jre17-Temurin-ubuntu-webprofile`, `9.1.2-Temurin-ubuntu-webprofile`, `9.1.2-jre17-ubuntu-webprofile`, `9.1.2-ubuntu-webprofile`, `9.1.2-jre17-Temurin-webprofile`, `9.1.2-Temurin-webprofile`, `9.1.2-jre17-webprofile`, `9.1.2-webprofile`, `9.1.2-jre17-Temurin-ubuntu`, `9.1.2-Temurin-ubuntu`, `9.1.2-jre17-ubuntu`, `9.1.2-ubuntu`, `9.1.2-jre17-Temurin`, `9.1.2-Temurin`, `9.1.2-jre17`, `9.1.2`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre17-webprofile`, `9.1-webprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-ubuntu`, `9.1-jre17-Temurin`, `9.1-Temurin`, `9.1-jre17`, `9.1`, `9-jre17-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre17-webprofile`, `9-webprofile`, `9-jre17-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-ubuntu`, `9-jre17-Temurin`, `9-Temurin`, `9-jre17`, `9`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.2-jre17-Temurin-ubuntu-microprofile`, `9.1.2-Temurin-ubuntu-microprofile`, `9.1.2-jre17-ubuntu-microprofile`, `9.1.2-ubuntu-microprofile`, `9.1.2-jre17-Temurin-microprofile`, `9.1.2-Temurin-microprofile`, `9.1.2-jre17-microprofile`, `9.1.2-microprofile`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-microprofile`, `9-jre17-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre17-microprofile`, `9-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.2-jre17-Temurin-ubuntu-plume`, `9.1.2-Temurin-ubuntu-plume`, `9.1.2-jre17-ubuntu-plume`, `9.1.2-ubuntu-plume`, `9.1.2-jre17-Temurin-plume`, `9.1.2-Temurin-plume`, `9.1.2-jre17-plume`, `9.1.2-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre17-plume`, `9.1-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-Temurin-plume`, `9-jre17-plume`, `9-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.2-jre17-Temurin-ubuntu-plus`, `9.1.2-Temurin-ubuntu-plus`, `9.1.2-jre17-ubuntu-plus`, `9.1.2-ubuntu-plus`, `9.1.2-jre17-Temurin-plus`, `9.1.2-Temurin-plus`, `9.1.2-jre17-plus`, `9.1.2-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre17-plus`, `9.1-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-Temurin-plus`, `9-jre17-plus`, `9-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.2-jre17-Temurin-alpine-webprofile`, `9.1.2-Temurin-alpine-webprofile`, `9.1.2-jre17-alpine-webprofile`, `9.1.2-alpine-webprofile`, `9.1.2-jre17-Temurin-alpine`, `9.1.2-Temurin-alpine`, `9.1.2-jre17-alpine`, `9.1.2-alpine`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9.1-alpine-webprofile`, `9.1-jre17-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre17-alpine`, `9.1-alpine`, `9-jre17-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `9-alpine-webprofile`, `9-jre17-Temurin-alpine`, `9-Temurin-alpine`, `9-jre17-alpine`, `9-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.2-jre17-Temurin-alpine-microprofile`, `9.1.2-Temurin-alpine-microprofile`, `9.1.2-jre17-alpine-microprofile`, `9.1.2-alpine-microprofile`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-alpine-microprofile`, `9-jre17-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.2-jre17-Temurin-alpine-plume`, `9.1.2-Temurin-alpine-plume`, `9.1.2-jre17-alpine-plume`, `9.1.2-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9.1-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `9-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.2-jre17-Temurin-alpine-plus`, `9.1.2-Temurin-alpine-plus`, `9.1.2-jre17-alpine-plus`, `9.1.2-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9.1-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `9-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.2-jre11-Temurin-ubuntu-webprofile`, `9.1.2-jre11-ubuntu-webprofile`, `9.1.2-jre11-Temurin-webprofile`, `9.1.2-jre11-webprofile`, `9.1.2-jre11-Temurin-ubuntu`, `9.1.2-jre11-ubuntu`, `9.1.2-jre11-Temurin`, `9.1.2-jre11`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-jre11-Temurin`, `9.1-jre11`, `9-jre11-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-jre11-webprofile`, `9-jre11-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-jre11-Temurin`, `9-jre11`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.2-jre11-Temurin-ubuntu-microprofile`, `9.1.2-jre11-ubuntu-microprofile`, `9.1.2-jre11-Temurin-microprofile`, `9.1.2-jre11-microprofile`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-jre11-microprofile`, `9-jre11-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-jre11-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.2-jre11-Temurin-ubuntu-plume`, `9.1.2-jre11-ubuntu-plume`, `9.1.2-jre11-Temurin-plume`, `9.1.2-jre11-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-jre11-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-jre11-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.2-jre11-Temurin-ubuntu-plus`, `9.1.2-jre11-ubuntu-plus`, `9.1.2-jre11-Temurin-plus`, `9.1.2-jre11-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-jre11-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-jre11-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.2-jre11-Temurin-alpine-webprofile`, `9.1.2-jre11-alpine-webprofile`, `9.1.2-jre11-Temurin-alpine`, `9.1.2-jre11-alpine`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-jre11-Temurin-alpine`, `9.1-jre11-alpine`, `9-jre11-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-jre11-Temurin-alpine`, `9-jre11-alpine`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.2-jre11-Temurin-alpine-microprofile`, `9.1.2-jre11-alpine-microprofile`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9-jre11-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.2-jre11-Temurin-alpine-plume`, `9.1.2-jre11-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-jre11-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.2-jre11-Temurin-alpine-plus`, `9.1.2-jre11-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-jre11-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.2-jre17-Semeru-ubuntu-webprofile`, `9.1.2-Semeru-ubuntu-webprofile`, `9.1.2-jre17-Semeru-webprofile`, `9.1.2-Semeru-webprofile`, `9.1.2-jre17-Semeru-ubuntu`, `9.1.2-Semeru-ubuntu`, `9.1.2-jre17-Semeru`, `9.1.2-Semeru`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9.1-Semeru`, `9-jre17-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `9-Semeru-webprofile`, `9-jre17-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre17-Semeru`, `9-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.2-jre17-Semeru-ubuntu-microprofile`, `9.1.2-Semeru-ubuntu-microprofile`, `9.1.2-jre17-Semeru-microprofile`, `9.1.2-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9-jre17-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.2-jre17-Semeru-ubuntu-plume`, `9.1.2-Semeru-ubuntu-plume`, `9.1.2-jre17-Semeru-plume`, `9.1.2-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9.1-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `9-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.2-jre17-Semeru-ubuntu-plus`, `9.1.2-Semeru-ubuntu-plus`, `9.1.2-jre17-Semeru-plus`, `9.1.2-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9.1-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `9-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.2-jre11-Semeru-ubuntu-webprofile`, `9.1.2-jre11-Semeru-webprofile`, `9.1.2-jre11-Semeru-ubuntu`, `9.1.2-jre11-Semeru`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9-jre11-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-jre11-Semeru-ubuntu`, `9-jre11-Semeru`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.2-jre11-Semeru-ubuntu-microprofile`, `9.1.2-jre11-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9-jre11-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.2-jre11-Semeru-ubuntu-plume`, `9.1.2-jre11-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.2-jre11-Semeru-ubuntu-plus`, `9.1.2-jre11-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/3e4e2b546fbba84a4559743a1d35ddab7de3fae0/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-ubuntu-microprofile`, `10.0.0-M1-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre11-ubuntu-microprofile`, `10.0.0-M1-ubuntu-microprofile`, `10.0.0-M1-jre11-Temurin-microprofile`, `10.0.0-M1-Temurin-microprofile`, `10.0.0-M1-jre11-microprofile`, `10.0.0-M1-microprofile`, `10.0.0-M1-jre11-Temurin-ubuntu`, `10.0.0-M1-Temurin-ubuntu`, `10.0.0-M1-jre11-ubuntu`, `10.0.0-M1-ubuntu`, `10.0.0-M1-jre11-Temurin`, `10.0.0-M1-Temurin`, `10.0.0-M1-jre11`, `10.0.0-M1`, `10.0-jre11-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre11-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre11-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre11-microprofile`, `10.0-microprofile`, `10.0-jre11-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre11-ubuntu`, `10.0-ubuntu`, `10.0-jre11-Temurin`, `10.0-Temurin`, `10.0-jre11`, `10.0`, `10-jre11-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre11-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre11-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre11-microprofile`, `10-microprofile`, `10-jre11-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre11-ubuntu`, `10-ubuntu`, `10-jre11-Temurin`, `10-Temurin`, `10-jre11`, `10`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-ubuntu-plume`, `10.0.0-M1-Temurin-ubuntu-plume`, `10.0.0-M1-jre11-ubuntu-plume`, `10.0.0-M1-ubuntu-plume`, `10.0.0-M1-jre11-Temurin-plume`, `10.0.0-M1-Temurin-plume`, `10.0.0-M1-jre11-plume`, `10.0.0-M1-plume`, `10.0-jre11-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre11-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre11-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre11-plume`, `10.0-plume`, `10-jre11-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre11-ubuntu-plume`, `10-ubuntu-plume`, `10-jre11-Temurin-plume`, `10-Temurin-plume`, `10-jre11-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-ubuntu-plus`, `10.0.0-M1-Temurin-ubuntu-plus`, `10.0.0-M1-jre11-ubuntu-plus`, `10.0.0-M1-ubuntu-plus`, `10.0.0-M1-jre11-Temurin-plus`, `10.0.0-M1-Temurin-plus`, `10.0.0-M1-jre11-plus`, `10.0.0-M1-plus`, `10.0-jre11-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre11-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre11-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre11-plus`, `10.0-plus`, `10-jre11-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre11-ubuntu-plus`, `10-ubuntu-plus`, `10-jre11-Temurin-plus`, `10-Temurin-plus`, `10-jre11-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-ubuntu-webprofile`, `10.0.0-M1-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre11-ubuntu-webprofile`, `10.0.0-M1-ubuntu-webprofile`, `10.0.0-M1-jre11-Temurin-webprofile`, `10.0.0-M1-Temurin-webprofile`, `10.0.0-M1-jre11-webprofile`, `10.0.0-M1-webprofile`, `10.0-jre11-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre11-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre11-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre11-webprofile`, `10.0-webprofile`, `10-jre11-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre11-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre11-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre11-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-alpine-microprofile`, `10.0.0-M1-Temurin-alpine-microprofile`, `10.0.0-M1-jre11-alpine-microprofile`, `10.0.0-M1-alpine-microprofile`, `10.0.0-M1-jre11-Temurin-alpine`, `10.0.0-M1-Temurin-alpine`, `10.0.0-M1-jre11-alpine`, `10.0.0-M1-alpine`, `10.0-jre11-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre11-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre11-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre11-alpine`, `10.0-alpine`, `10-jre11-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre11-alpine-microprofile`, `10-alpine-microprofile`, `10-jre11-Temurin-alpine`, `10-Temurin-alpine`, `10-jre11-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-alpine-plume`, `10.0.0-M1-Temurin-alpine-plume`, `10.0.0-M1-jre11-alpine-plume`, `10.0.0-M1-alpine-plume`, `10.0-jre11-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre11-alpine-plume`, `10.0-alpine-plume`, `10-jre11-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre11-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-alpine-plus`, `10.0.0-M1-Temurin-alpine-plus`, `10.0.0-M1-jre11-alpine-plus`, `10.0.0-M1-alpine-plus`, `10.0-jre11-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre11-alpine-plus`, `10.0-alpine-plus`, `10-jre11-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre11-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-M1-jre11-Temurin-alpine-webprofile`, `10.0.0-M1-Temurin-alpine-webprofile`, `10.0.0-M1-jre11-alpine-webprofile`, `10.0.0-M1-alpine-webprofile`, `10.0-jre11-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre11-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre11-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre11-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-M1-jre11-Semeru-ubuntu-microprofile`, `10.0.0-M1-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre11-Semeru-microprofile`, `10.0.0-M1-Semeru-microprofile`, `10.0.0-M1-jre11-Semeru-ubuntu`, `10.0.0-M1-Semeru-ubuntu`, `10.0.0-M1-jre11-Semeru`, `10.0.0-M1-Semeru`, `10.0-jre11-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre11-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre11-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre11-Semeru`, `10.0-Semeru`, `10-jre11-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre11-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre11-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre11-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M1-jre11-Semeru-ubuntu-plume`, `10.0.0-M1-Semeru-ubuntu-plume`, `10.0.0-M1-jre11-Semeru-plume`, `10.0.0-M1-Semeru-plume`, `10.0-jre11-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre11-Semeru-plume`, `10.0-Semeru-plume`, `10-jre11-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre11-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-M1-jre11-Semeru-ubuntu-plus`, `10.0.0-M1-Semeru-ubuntu-plus`, `10.0.0-M1-jre11-Semeru-plus`, `10.0.0-M1-Semeru-plus`, `10.0-jre11-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre11-Semeru-plus`, `10.0-Semeru-plus`, `10-jre11-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre11-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-M1-jre11-Semeru-ubuntu-webprofile`, `10.0.0-M1-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre11-Semeru-webprofile`, `10.0.0-M1-Semeru-webprofile`, `10.0-jre11-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre11-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre11-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre11-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre17-ubuntu-microprofile`, `10.0.0-M1-jre17-Temurin-microprofile`, `10.0.0-M1-jre17-microprofile`, `10.0.0-M1-jre17-Temurin-ubuntu`, `10.0.0-M1-jre17-ubuntu`, `10.0.0-M1-jre17-Temurin`, `10.0.0-M1-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-ubuntu-plume`, `10.0.0-M1-jre17-ubuntu-plume`, `10.0.0-M1-jre17-Temurin-plume`, `10.0.0-M1-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-ubuntu-plus`, `10.0.0-M1-jre17-ubuntu-plus`, `10.0.0-M1-jre17-Temurin-plus`, `10.0.0-M1-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre17-ubuntu-webprofile`, `10.0.0-M1-jre17-Temurin-webprofile`, `10.0.0-M1-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-alpine-microprofile`, `10.0.0-M1-jre17-alpine-microprofile`, `10.0.0-M1-jre17-Temurin-alpine`, `10.0.0-M1-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-alpine-plume`, `10.0.0-M1-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-alpine-plus`, `10.0.0-M1-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-M1-jre17-Temurin-alpine-webprofile`, `10.0.0-M1-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-M1-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre17-Semeru-microprofile`, `10.0.0-M1-jre17-Semeru-ubuntu`, `10.0.0-M1-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M1-jre17-Semeru-ubuntu-plume`, `10.0.0-M1-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-M1-jre17-Semeru-ubuntu-plus`, `10.0.0-M1-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-M1-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 8b0483faefe64f635d2355464ffed2277a9978db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Apr 2024 10:10:01 -0700 Subject: [PATCH 1120/2686] Run update.sh --- api-firewall/README.md | 3 ++- nginx/README.md | 14 +++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 6eaa2e2378ec..0580d3006fb0 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.7.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/5b7397c54592869513947460ba94ba2a22fd9814/0.7.0/Dockerfile) +- [`0.7.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0219b73c95231b3fc13824a4a672a8c5356c97a4/0.7.2/Dockerfile) +- [`0.7.1`](https://github.com/wallarm/api-firewall-docker/blob/0219b73c95231b3fc13824a4a672a8c5356c97a4/0.7.1/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index d67d4954ecce..228cf348350b 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.4`, `mainline`, `1`, `1.25`, `latest`, `1.25.4-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian/Dockerfile) -- [`1.25.4-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.4-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/debian-perl/Dockerfile) -- [`1.25.4-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.4-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/9cb278860bdcea48abc0bc770a29ead3fc9a1fe6/mainline/debian-otel/Dockerfile) -- [`1.25.4-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.4-alpine3.18`, `mainline-alpine3.18`, `1-alpine3.18`, `1.25-alpine3.18`, `alpine3.18`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine/Dockerfile) -- [`1.25.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.4-alpine3.18-perl`, `mainline-alpine3.18-perl`, `1-alpine3.18-perl`, `1.25-alpine3.18-perl`, `alpine3.18-perl`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-perl/Dockerfile) -- [`1.25.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.4-alpine3.18-slim`, `mainline-alpine3.18-slim`, `1-alpine3.18-slim`, `1.25-alpine3.18-slim`, `alpine3.18-slim`](https://github.com/nginxinc/docker-nginx/blob/1f227619c1f1baa0bed8bed844ea614437ff14fb/mainline/alpine-slim/Dockerfile) -- [`1.25.4-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.4-alpine3.18-otel`, `mainline-alpine3.18-otel`, `1-alpine3.18-otel`, `1.25-alpine3.18-otel`, `alpine3.18-otel`](https://github.com/nginxinc/docker-nginx/blob/9cb278860bdcea48abc0bc770a29ead3fc9a1fe6/mainline/alpine-otel/Dockerfile) +- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian/Dockerfile) +- [`1.25.5-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian-perl/Dockerfile) +- [`1.25.5-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian-otel/Dockerfile) +- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine/Dockerfile) +- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-perl/Dockerfile) +- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-slim/Dockerfile) +- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-otel/Dockerfile) - [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) - [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) - [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) From 18173c4e272dd5a3c35d13ccdea81c950ab75658 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Apr 2024 11:21:34 -0700 Subject: [PATCH 1121/2686] Run update.sh --- dart/README.md | 4 ++-- geonetwork/README.md | 2 +- mongo/README.md | 45 +++++++++++++++----------------------------- 3 files changed, 18 insertions(+), 33 deletions(-) diff --git a/dart/README.md b/dart/README.md index 37bc0e04acf5..1410ccff438b 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.3-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.3`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/69a484f51adfd7e59a20525f988cb85f2dd62a77/stable/bookworm/Dockerfile) -- [`3.4.0-282.1.beta-sdk`, `beta-sdk`, `3.4.0-282.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/69a484f51adfd7e59a20525f988cb85f2dd62a77/beta/bookworm/Dockerfile) +- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c2a6b9c5969ed3165b016310589cc2286146b772/stable/bookworm/Dockerfile) +- [`3.4.0-282.2.beta-sdk`, `beta-sdk`, `3.4.0-282.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c2a6b9c5969ed3165b016310589cc2286146b772/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 11457803386b..f08ccdd57784 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -27,7 +27,7 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) - [`4.2.9`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/9d0986dbc5a86e183599575e098f95f2f58e46cd/4.2.9/Dockerfile) -- [`4.4.3`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/692f3d2851d6fc7e2482291774b19a856eae43f8/4.4.3/Dockerfile) +- [`4.4.4`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/91745d25b878729d5ef418e1d01454a3c48a0955/4.4.4/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index de8806bc62c9..5d3a0f606205 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,16 +38,11 @@ WARNING: - [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.8-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.8-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.15-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/Dockerfile) -- [`6.0.15-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.15-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.15-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.15-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.14-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) -- [`6.0.14-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.14-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.14-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.14-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) +- [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.26-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) - [`5.0.26-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.26-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) @@ -81,26 +76,16 @@ WARNING: - `7.0.8-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.15-rc0`, `6.0-rc`: - - [`6.0.15-rc0-jammy`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/Dockerfile) - - [`6.0.15-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.15-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.15-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.15-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.15-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.15-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.15-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.15-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/94303bebce97cec592b031c8baef1562a179f75a/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.14`, `6.0`, `6`: - - [`6.0.14-jammy`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/Dockerfile) - - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.14-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.14-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/39c6083702fb2ff810e7a6a916b1eadf54825acd/6.0/windows/nanoserver-1809/Dockerfile) +- `6.0.15`, `6.0`, `6`: + - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) + - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.15-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.15-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.26`, `5.0`, `5`: - [`5.0.26-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) From 172ed887a8e529b61c963b87193b6b8c353b8580 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Apr 2024 12:19:15 -0700 Subject: [PATCH 1122/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 73d01e7c67b8..85e59fc67db8 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.0-rc2.0.0`, `27.0-rc2.0`, `27.0-rc2`, `27`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/Dockerfile) -- [`27.0-rc2.0.0-slim`, `27.0-rc2.0-slim`, `27.0-rc2-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/slim/Dockerfile) -- [`27.0-rc2.0.0-alpine`, `27.0-rc2.0-alpine`, `27.0-rc2-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/27/alpine/Dockerfile) +- [`27.0-rc3.0.0`, `27.0-rc3.0`, `27.0-rc3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/Dockerfile) +- [`27.0-rc3.0.0-slim`, `27.0-rc3.0-slim`, `27.0-rc3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/slim/Dockerfile) +- [`27.0-rc3.0.0-alpine`, `27.0-rc3.0-alpine`, `27.0-rc3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/alpine/Dockerfile) - [`26.2.4.0`, `26.2.4`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/Dockerfile) - [`26.2.4.0-slim`, `26.2.4-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/slim/Dockerfile) - [`26.2.4.0-alpine`, `26.2.4-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/alpine/Dockerfile) From 617c8987214712301e74f2264801788123cdee12 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Apr 2024 14:21:35 -0700 Subject: [PATCH 1123/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 526d8dc58169..2ff46e6338b5 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev7`, `3.0-dev`, `3.0-dev7-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/3.0/Dockerfile) -- [`3.0-dev7-alpine`, `3.0-dev-alpine`, `3.0-dev7-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/d8cdcc09f959ddbb360aa12c5f1c9d6d50573bf3/3.0/alpine/Dockerfile) +- [`3.0-dev8`, `3.0-dev`, `3.0-dev8-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/d033d2e4b3486f8d1c30a4fa5d484000604dbf03/3.0/Dockerfile) +- [`3.0-dev8-alpine`, `3.0-dev-alpine`, `3.0-dev8-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/d033d2e4b3486f8d1c30a4fa5d484000604dbf03/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) From 2a9672b532811244e3f8d6f1c1a6f016db088475 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Apr 2024 15:19:59 -0700 Subject: [PATCH 1124/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- sapmachine/README.md | 32 ++++++++++++++++---------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 62aed321b3de..33a1238bca5e 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.4.20240401.1`](https://github.com/amazonlinux/container-images/blob/36c1aadfc5c6f53c0572a40d41ede17b7c355bc9/Dockerfile) -- [`2`, `2.0.20240329.0`](https://github.com/amazonlinux/container-images/blob/e20ac656379f27bacd1d4a07c6e0b97fe02fc0e3/Dockerfile) +- [`2023`, `latest`, `2023.4.20240416.0`](https://github.com/amazonlinux/container-images/blob/ccf125ba9199e9dc53a614df2df2c5be14ab95fe/Dockerfile) +- [`2`, `2.0.20240412.0`](https://github.com/amazonlinux/container-images/blob/8935e6e622c058e7c41af69ae2929be8e6a3a892/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 08d64d257157..2b2804ceecd2 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.22-jre-headless-ubuntu`, `11.0.22-jre-headless-ubuntu-jammy`, `11.0.22-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.22-jre-ubuntu`, `11.0.22-jre-ubuntu-jammy`, `11.0.22-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.22-jdk-headless-ubuntu`, `11.0.22-jdk-headless-ubuntu-jammy`, `11.0.22-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.22-jdk-ubuntu`, `11.0.22-jdk-ubuntu-jammy`, `11.0.22-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.22`, `11.0.22-ubuntu-jammy`, `11.0.22-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/9529e919a1cb124e0c6d281dff8c0de66614aab8/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.10-jre-headless-ubuntu`, `17.0.10-jre-headless-ubuntu-jammy`, `17.0.10-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.10-jre-ubuntu`, `17.0.10-jre-ubuntu-jammy`, `17.0.10-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.10-jdk-headless-ubuntu`, `17.0.10-jdk-headless-ubuntu-jammy`, `17.0.10-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.10-jdk-ubuntu`, `17.0.10-jdk-ubuntu-jammy`, `17.0.10-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.10`, `17.0.10-ubuntu-jammy`, `17.0.10-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/02e2893a30a4f971c40920c89e773dfca0eefee5/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.2-jre-headless-ubuntu`, `21.0.2-jre-headless-ubuntu-jammy`, `21.0.2-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.2-jre-ubuntu`, `21.0.2-jre-ubuntu-jammy`, `21.0.2-jre-ubuntu-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.2-jdk-headless-ubuntu`, `21.0.2-jdk-headless-ubuntu-jammy`, `21.0.2-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) -- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.2-jdk-ubuntu`, `21.0.2-jdk-ubuntu-jammy`, `21.0.2-jdk-ubuntu-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.2`, `21.0.2-ubuntu-jammy`, `21.0.2-ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e85e498164c6456c418c64624a4903a855d55df2/dockerfiles/official/21/ubuntu/jdk/Dockerfile) -- [`22-jre-headless-ubuntu`, `22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jre-headless/Dockerfile) -- [`22-jre-ubuntu`, `22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jre/Dockerfile) -- [`22-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jdk-headless/Dockerfile) -- [`22-jdk-ubuntu`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `22`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe38ece53ef4a1a6e731ec5546511c7c07eb31b7/dockerfiles/official/22/ubuntu/jdk/Dockerfile) +- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) +- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.23-jre-ubuntu`, `11.0.23-jre-ubuntu-jammy`, `11.0.23-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jre/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.23-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu-jammy`, `11.0.23-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) +- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.23-jdk-ubuntu`, `11.0.23-jdk-ubuntu-jammy`, `11.0.23-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.23`, `11.0.23-ubuntu-jammy`, `11.0.23-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jdk/Dockerfile) +- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) +- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.11-jre-ubuntu`, `17.0.11-jre-ubuntu-jammy`, `17.0.11-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jre/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.11-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu-jammy`, `17.0.11-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) +- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.11-jdk-ubuntu`, `17.0.11-jdk-ubuntu-jammy`, `17.0.11-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.11`, `17.0.11-ubuntu-jammy`, `17.0.11-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jdk/Dockerfile) +- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) +- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.3-jre-ubuntu`, `21.0.3-jre-ubuntu-jammy`, `21.0.3-jre-ubuntu-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jre/Dockerfile) +- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.3-jdk-headless-ubuntu`, `21.0.3-jdk-headless-ubuntu-jammy`, `21.0.3-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) +- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.3-jdk-ubuntu`, `21.0.3-jdk-ubuntu-jammy`, `21.0.3-jdk-ubuntu-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.3`, `21.0.3-ubuntu-jammy`, `21.0.3-ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jdk/Dockerfile) +- [`22-jre-headless-ubuntu`, `22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `22.0.1-jre-headless-ubuntu`, `22.0.1-jre-headless-ubuntu-jammy`, `22.0.1-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jre-headless/Dockerfile) +- [`22-jre-ubuntu`, `22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `22.0.1-jre-ubuntu`, `22.0.1-jre-ubuntu-jammy`, `22.0.1-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jre/Dockerfile) +- [`22-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `22.0.1-jdk-headless-ubuntu`, `22.0.1-jdk-headless-ubuntu-jammy`, `22.0.1-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jdk-headless/Dockerfile) +- [`22-jdk-ubuntu`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `22.0.1-jdk-ubuntu`, `22.0.1-jdk-ubuntu-jammy`, `22.0.1-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `22`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.1`, `22.0.1-ubuntu-jammy`, `22.0.1-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jdk/Dockerfile) # Quick reference (cont.) From de8a10268b5bf0a949cbf8969885d2f60773a83e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Apr 2024 16:10:12 -0700 Subject: [PATCH 1125/2686] Run update.sh --- docker/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docker/README.md b/docker/README.md index 508854e270c9..4e1ee00b7762 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.0.1-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/cli/Dockerfile) -- [`26.0.1-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.1-dind-alpine3.19`, `26.0.1`, `26.0`, `26`, `latest`, `26.0.1-alpine3.19`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/dind/Dockerfile) -- [`26.0.1-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/dind-rootless/Dockerfile) -- [`26.0.1-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.1-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/cli/Dockerfile) +- [`26.0.2-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/cli/Dockerfile) +- [`26.0.2-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.2-dind-alpine3.19`, `26.0.2`, `26.0`, `26`, `latest`, `26.0.2-alpine3.19`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/dind/Dockerfile) +- [`26.0.2-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/dind-rootless/Dockerfile) +- [`26.0.2-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.0.2-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `26.0.1-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b1589f6cf9a16dc36739c9569d60aad554966116/26/windows/windowsservercore-1809/Dockerfile) +- `26.0.2-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dadf9acd722ef68923b970308e39d7820e28857a/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/5ba7119e906c53f07ef5232d57ce7e1cb09833d9/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From bb1f118c3577d859bae2e66600602f2277a991bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Apr 2024 17:21:43 -0700 Subject: [PATCH 1126/2686] Run update.sh --- yourls/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yourls/README.md b/yourls/README.md index 0144763c6466..09016ccb9141 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.9.2-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.2`, `1.9`, `1`, `latest`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/apache/Dockerfile) -- [`1.9.2-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/fpm/Dockerfile) -- [`1.9.2-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/docker/blob/2ef3b5fe2539efd8dd876727376ddee2c22079b5/fpm-alpine/Dockerfile) +- [`1.9.2-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.2`, `1.9`, `1`, `latest`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/apache/Dockerfile) +- [`1.9.2-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm/Dockerfile) +- [`1.9.2-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm-alpine/Dockerfile) # Quick reference (cont.) From 8b9ab8027298d1cd695aecbf71b2b703d4961e2c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Apr 2024 10:10:06 -0700 Subject: [PATCH 1127/2686] Run update.sh --- clearlinux/README.md | 2 +- haskell/README.md | 4 ++-- photon/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 503fdfe627cd..e32bf94980c4 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/164a30b74b5bf9a7a412b9ca461504add2c8a8de/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ce9786e46427dc6b47a68b8ae730ca15a4c53f1f/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index e528bf945689..01c6059bf56d 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -26,8 +26,8 @@ WARNING: - [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/buster/Dockerfile) - [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/slim-buster/Dockerfile) -- [`9.6.4-buster`, `9.6-buster`, `9.6.4`, `9.6`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.6/buster/Dockerfile) -- [`9.6.4-slim-buster`, `9.6-slim-buster`, `9.6.4-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.6/slim-buster/Dockerfile) +- [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/95ea212c5b8371c7a214dae01e9853431a36f18b/9.6/buster/Dockerfile) +- [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/95ea212c5b8371c7a214dae01e9853431a36f18b/9.6/slim-buster/Dockerfile) - [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/buster/Dockerfile) - [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/buster/Dockerfile) diff --git a/photon/README.md b/photon/README.md index db464a53f893..7ecc48ceeaed 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240411`, `latest`](https://github.com/vmware/photon-docker-image/blob/b8fb5daeb8c0ab9151ee4ed13c2b62cadd6a1fb1/docker/Dockerfile) -- [`4.0`, `4.0-20240401`](https://github.com/vmware/photon-docker-image/blob/6001909dd7b72f7cd5f6ac7bea41d735588eb08c/docker/Dockerfile) +- [`5.0`, `5.0-20240421`, `latest`](https://github.com/vmware/photon-docker-image/blob/79a90ceb52e2e2cded92d12f6a74989da688bcdf/docker/Dockerfile) +- [`4.0`, `4.0-20240421`](https://github.com/vmware/photon-docker-image/blob/9eb03b6e75e38853d54235850cc485b407f60084/docker/Dockerfile) - [`3.0`, `3.0-20240411`](https://github.com/vmware/photon-docker-image/blob/854f2a64e18085b820d3ac54b2a51586c440886b/docker/Dockerfile) # Quick reference (cont.) From dc85161ed66b222b7f4ecb3d641a2aa936ec1330 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Apr 2024 11:24:13 -0700 Subject: [PATCH 1128/2686] Run update.sh --- emqx/README.md | 2 +- fedora/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index c0e1a085151c..22512694454f 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -29,7 +29,7 @@ WARNING: - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) - [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) -- [`5.6.0`, `5.6`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.6/Dockerfile) +- [`5.6.1`, `5.6`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 89e7a5ae029a..f5d9c3eaedd4 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/0ca7b13adf277d9423dcea1353ca21f36fe3aef3/x86_64/Dockerfile) -- [`39`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d855dc12fef7c8d48d53b774d54da78ac5be37f6/x86_64/Dockerfile) -- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ca15e4374cd315b7dba84485bf330377cd50c50f/x86_64/Dockerfile) -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1443124200b0b0674495894ba80aefdaba30a93d/x86_64/Dockerfile) +- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/793480f5cc9e9ab1c530803fa9c573267b453678/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3a007c3e0e2cd2c7e4196e8f534a5de7b0303775/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1c3015854b7ccfd458331f5a7a77886c26d7014/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/333a04d60e14cc6d735679925ed1da6f05bee622/x86_64/Dockerfile) # Quick reference (cont.) From 0c7815be71194a0aa526297b9eac3a9dd6f4b176 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Apr 2024 15:19:18 -0700 Subject: [PATCH 1129/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index dd02a9871494..285e98628236 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0f0bdbbb22b44e9a5953b0f733d6992ade4d7c55/telegraf/1.30/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.30/alpine/Dockerfile) # Quick reference (cont.) From c63d4b855240d68c5b682bd1829f49d984688754 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 09:19:14 -0700 Subject: [PATCH 1130/2686] Run update.sh --- ruby/README.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index 5b82cb5937c9..c0417a8f39b4 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.0-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.0`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/bookworm/Dockerfile) -- [`3.3.0-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.0-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/slim-bookworm/Dockerfile) -- [`3.3.0-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/bullseye/Dockerfile) -- [`3.3.0-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.3/slim-bullseye/Dockerfile) -- [`3.3.0-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.0-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.19/Dockerfile) -- [`3.3.0-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/7ac7122778cc764cd50271807efe2e94775b2c21/3.3/alpine3.18/Dockerfile) -- [`3.2.3-bookworm`, `3.2-bookworm`, `3.2.3`, `3.2`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/bookworm/Dockerfile) -- [`3.2.3-slim-bookworm`, `3.2-slim-bookworm`, `3.2.3-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/slim-bookworm/Dockerfile) -- [`3.2.3-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/bullseye/Dockerfile) -- [`3.2.3-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.2/slim-bullseye/Dockerfile) -- [`3.2.3-alpine3.19`, `3.2-alpine3.19`, `3.2.3-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.19/Dockerfile) -- [`3.2.3-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/c473741514de6aa1e3ccdf3a9c6df0aa71348ce3/3.2/alpine3.18/Dockerfile) -- [`3.1.4-bookworm`, `3.1-bookworm`, `3.1.4`, `3.1`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/bookworm/Dockerfile) -- [`3.1.4-slim-bookworm`, `3.1-slim-bookworm`, `3.1.4-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/slim-bookworm/Dockerfile) -- [`3.1.4-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/bullseye/Dockerfile) -- [`3.1.4-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.1/slim-bullseye/Dockerfile) -- [`3.1.4-alpine3.19`, `3.1-alpine3.19`, `3.1.4-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/61a806938da52038916a8fd7b9b4373937bdc28f/3.1/alpine3.19/Dockerfile) -- [`3.1.4-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.1/alpine3.18/Dockerfile) -- [`3.0.6-bullseye`, `3.0-bullseye`, `3.0.6`, `3.0`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/bullseye/Dockerfile) -- [`3.0.6-slim-bullseye`, `3.0-slim-bullseye`, `3.0.6-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/slim-bullseye/Dockerfile) -- [`3.0.6-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/buster/Dockerfile) -- [`3.0.6-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/77efb18a0fb15955a4f77c9fa1d3968875915b78/3.0/slim-buster/Dockerfile) -- [`3.0.6-alpine3.16`, `3.0-alpine3.16`, `3.0.6-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/39aa7dd5e4ebeef3f466d486f1094b09e41d6c5b/3.0/alpine3.16/Dockerfile) +- [`3.3.1-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.1`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bookworm/Dockerfile) +- [`3.3.1-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.1-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bookworm/Dockerfile) +- [`3.3.1-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bullseye/Dockerfile) +- [`3.3.1-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bullseye/Dockerfile) +- [`3.3.1-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.1-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.19/Dockerfile) +- [`3.3.1-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.18/Dockerfile) +- [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) +- [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) +- [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) +- [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bullseye/Dockerfile) +- [`3.2.4-alpine3.19`, `3.2-alpine3.19`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) +- [`3.2.4-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.18/Dockerfile) +- [`3.1.5-bookworm`, `3.1-bookworm`, `3.1.5`, `3.1`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bookworm/Dockerfile) +- [`3.1.5-slim-bookworm`, `3.1-slim-bookworm`, `3.1.5-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bookworm/Dockerfile) +- [`3.1.5-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bullseye/Dockerfile) +- [`3.1.5-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bullseye/Dockerfile) +- [`3.1.5-alpine3.19`, `3.1-alpine3.19`, `3.1.5-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.19/Dockerfile) +- [`3.1.5-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.18/Dockerfile) +- [`3.0.7-bullseye`, `3.0-bullseye`, `3.0.7`, `3.0`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/bullseye/Dockerfile) +- [`3.0.7-slim-bullseye`, `3.0-slim-bullseye`, `3.0.7-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/slim-bullseye/Dockerfile) +- [`3.0.7-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/buster/Dockerfile) +- [`3.0.7-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/slim-buster/Dockerfile) +- [`3.0.7-alpine3.16`, `3.0-alpine3.16`, `3.0.7-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/alpine3.16/Dockerfile) # Quick reference (cont.) From 5a8aaf28ae87ed180fd7617c69811e531441eb37 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 10:10:33 -0700 Subject: [PATCH 1131/2686] Run update.sh --- composer/README.md | 2 +- kapacitor/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/composer/README.md b/composer/README.md index 52861c98da8e..cdad4eb9464a 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.2`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/06d1cf1acb8fe5dff6e0f8aac7e2d1c14faf1a06/2.7/Dockerfile) +- [`2.7.4`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/15059369bbffef3538e836856ac818f423c04c7e/2.7/Dockerfile) - [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) diff --git a/kapacitor/README.md b/kapacitor/README.md index 7815576eae66..4cc7c1386c26 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c60d1eb66acd474eee99600758e82d30f7d219ab/kapacitor/1.7/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) From 09607dbea9c3da06f278af2e37bf755b7e272490 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 11:21:57 -0700 Subject: [PATCH 1132/2686] Run update.sh --- ruby/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index c0417a8f39b4..4321b820ebe3 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -42,11 +42,11 @@ WARNING: - [`3.1.5-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bullseye/Dockerfile) - [`3.1.5-alpine3.19`, `3.1-alpine3.19`, `3.1.5-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.19/Dockerfile) - [`3.1.5-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.18/Dockerfile) -- [`3.0.7-bullseye`, `3.0-bullseye`, `3.0.7`, `3.0`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/bullseye/Dockerfile) -- [`3.0.7-slim-bullseye`, `3.0-slim-bullseye`, `3.0.7-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/slim-bullseye/Dockerfile) -- [`3.0.7-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/buster/Dockerfile) -- [`3.0.7-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/slim-buster/Dockerfile) -- [`3.0.7-alpine3.16`, `3.0-alpine3.16`, `3.0.7-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.0/alpine3.16/Dockerfile) +- [`3.0.7-bullseye`, `3.0-bullseye`, `3.0.7`, `3.0`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/bullseye/Dockerfile) +- [`3.0.7-slim-bullseye`, `3.0-slim-bullseye`, `3.0.7-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/slim-bullseye/Dockerfile) +- [`3.0.7-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/buster/Dockerfile) +- [`3.0.7-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/slim-buster/Dockerfile) +- [`3.0.7-alpine3.16`, `3.0-alpine3.16`, `3.0.7-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/alpine3.16/Dockerfile) # Quick reference (cont.) From 921badd569b9fff20eb836cb9afc11958a6bdf24 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 16:10:35 -0700 Subject: [PATCH 1133/2686] Run update.sh --- bash/README.md | 3 +- clojure/README.md | 160 ++++++++++++++++++++-------------------------- docker/README.md | 16 ++--- mongo/README.md | 30 ++++----- node/README.md | 44 ++++++------- tomcat/README.md | 12 ++-- 6 files changed, 124 insertions(+), 141 deletions(-) diff --git a/bash/README.md b/bash/README.md index 3b44fec7f694..2cf61574674d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240415`, `devel`, `devel-20240415-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/3519de9825d4c678a4996b4ce172773387f3dbc2/devel/Dockerfile) +- [`devel-20240422`, `devel`, `devel-20240422-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/7b657f0af13de947770f02d66ab0b24465b20f3c/devel/Dockerfile) +- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/clojure/README.md b/clojure/README.md index 8bf694d8c998..41b5595ca5c3 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,91 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm`, `temurin-8-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bookworm-slim`, `temurin-8-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye`, `temurin-8-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-bullseye-slim`, `temurin-8-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/boot/Dockerfile) -- [`temurin-8-boot-2.8.3-focal`, `temurin-8-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/boot/Dockerfile) -- [`temurin-8-boot`, `temurin-8-boot-2.8.3`, `temurin-8-boot-2.8.3-jammy`, `temurin-8-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/boot/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm`, `temurin-11-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bookworm-slim`, `temurin-11-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye`, `temurin-11-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-bullseye-slim`, `temurin-11-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/boot/Dockerfile) -- [`temurin-11-boot-2.8.3-focal`, `temurin-11-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/boot/Dockerfile) -- [`temurin-11-boot`, `temurin-11-boot-2.8.3`, `temurin-11-boot-2.8.3-jammy`, `temurin-11-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/boot/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm`, `temurin-17-boot-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bookworm-slim`, `temurin-17-boot-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye`, `temurin-17-boot-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-bullseye-slim`, `temurin-17-boot-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/boot/Dockerfile) -- [`temurin-17-boot-2.8.3-focal`, `temurin-17-boot-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/boot/Dockerfile) -- [`temurin-17-boot`, `temurin-17-boot-2.8.3`, `temurin-17-boot-2.8.3-jammy`, `temurin-17-boot-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/boot/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.1.1435-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.1.1435`, `temurin-22-tools-deps-1.11.1.1435-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.1.1435-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.1.1435-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/513d5b7ce920767aa872ef8c3a411757b53fd448/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.1.1435-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.1.1435`, `temurin-22-tools-deps-1.11.1.1435-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.1.1435-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.1.1435-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) @@ -219,10 +201,6 @@ Some of these tags may have names like bookworm or bullseye in them. These are t Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. -## `clojure:-slim` - -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `clojure`. Unless you are working in an environment where *only* the `clojure` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. - ## `clojure:-alpine` This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. @@ -231,6 +209,10 @@ This variant is useful when final image size being as small as possible is your To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). +## `clojure:-slim` + +This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `clojure`. Unless you are working in an environment where *only* the `clojure` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. + # License View [license information](http://clojure.org/license) for the software contained in this image. diff --git a/docker/README.md b/docker/README.md index 4e1ee00b7762..b318bc179813 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.0.2-cli`, `26.0-cli`, `26-cli`, `cli`, `26.0.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/cli/Dockerfile) -- [`26.0.2-dind`, `26.0-dind`, `26-dind`, `dind`, `26.0.2-dind-alpine3.19`, `26.0.2`, `26.0`, `26`, `latest`, `26.0.2-alpine3.19`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/dind/Dockerfile) -- [`26.0.2-dind-rootless`, `26.0-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/dind-rootless/Dockerfile) -- [`26.0.2-windowsservercore-ltsc2022`, `26.0-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.0.2-windowsservercore-1809`, `26.0-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.0-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/cli/Dockerfile) +- [`26.1.0-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.0-dind-alpine3.19`, `26.1.0`, `26.1`, `26`, `latest`, `26.1.0-alpine3.19`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind/Dockerfile) +- [`26.1.0-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind-rootless/Dockerfile) +- [`26.1.0-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.0-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.0.2-windowsservercore`, `26.0-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e73d98fe46a0a7b99be6ce69cc6406ff5a7d94a0/26/windows/windowsservercore-1809/Dockerfile) +- `26.1.0-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-1809/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 5d3a0f606205..9fb8004c8fcc 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.9-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/Dockerfile) -- [`7.0.9-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.9-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.9-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.9-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.9-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/Dockerfile) +- [`7.0.9-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.9-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.9-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.9-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.8-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) - [`7.0.8-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `7.0.9-rc0`, `7.0-rc`: - - [`7.0.9-rc0-jammy`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/Dockerfile) - - [`7.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.9-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.9-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.9-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4e2447f544788d60656578d03a335e87595e1b84/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.9-rc1`, `7.0-rc`: + - [`7.0.9-rc1-jammy`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/Dockerfile) + - [`7.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-rc1-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.9-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.9-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.8`, `7.0`, `7`, `latest`: - [`7.0.8-jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/node/README.md b/node/README.md index 47d895846299..f9faf5df801a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.2-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.2-alpine`, `20.12.2-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.2`, `20.12.2-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.2-bookworm-slim`, `20.12.2-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.12-bullseye`, `20.12.2-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.2-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.12-buster`, `20.12.2-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/buster/Dockerfile) -- [`20-buster-slim`, `20.12-buster-slim`, `20.12.2-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.2-bookworm-slim`, `18.20.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.20-buster`, `18.20.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/buster/Dockerfile) -- [`18-buster-slim`, `18.20-buster-slim`, `18.20.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/e8dc03502488e162b6860a6adc3ee8e8ae517e87/18/buster-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) +- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.2-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.2-alpine`, `20.12.2-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.2`, `20.12.2-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.2-bookworm-slim`, `20.12.2-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.12-bullseye`, `20.12.2-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.2-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.12-buster`, `20.12.2-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/buster/Dockerfile) +- [`20-buster-slim`, `20.12-buster-slim`, `20.12.2-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.2-bookworm-slim`, `18.20.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.20-buster`, `18.20.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/buster/Dockerfile) +- [`18-buster-slim`, `18.20-buster-slim`, `18.20.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index ebb667a90111..7ce9401c0533 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,12 +26,12 @@ WARNING: - [`11.0.0-M19-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M19-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M19-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M19`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jdk21/temurin-jammy/Dockerfile) - [`11.0.0-M19-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M19-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M19-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.20-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.20-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.20-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.20`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.20-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.20-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.20-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.20-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.20-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.20-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.20-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.20-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.20-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.20-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.20-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.20-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.20-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.20-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.20-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/76e168eaafd429d0323cdcdc020d1340315518e6/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.23-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.23-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.23-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.23`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.23-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.23-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.23-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.23-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.23-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.23-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.23-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.23-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.23-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.23-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.23-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.23-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.23-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.23-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.23-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.88-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.88-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.88-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.88`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/temurin-jammy/Dockerfile) - [`9.0.88-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.88-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.88-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre21/temurin-jammy/Dockerfile) - [`9.0.88-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.88-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/corretto-al2/Dockerfile) From ef3c17e61e2e50e6cb7be4b18627894329af0852 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 17:23:50 -0700 Subject: [PATCH 1134/2686] Run update.sh --- nginx/README.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 228cf348350b..995b8425de14 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,18 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian/Dockerfile) -- [`1.25.5-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian-perl/Dockerfile) -- [`1.25.5-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/debian-otel/Dockerfile) -- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine/Dockerfile) -- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-perl/Dockerfile) -- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-slim/Dockerfile) -- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/29d5001c15e7a2c7b34402c35254cc55199f8cc8/mainline/alpine-otel/Dockerfile) -- [`1.24.0`, `stable`, `1.24`, `1.24.0-bullseye`, `stable-bullseye`, `1.24-bullseye`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian/Dockerfile) -- [`1.24.0-perl`, `stable-perl`, `1.24-perl`, `1.24.0-bullseye-perl`, `stable-bullseye-perl`, `1.24-bullseye-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/debian-perl/Dockerfile) -- [`1.24.0-alpine`, `stable-alpine`, `1.24-alpine`, `1.24.0-alpine3.17`, `stable-alpine3.17`, `1.24-alpine3.17`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine/Dockerfile) -- [`1.24.0-alpine-perl`, `stable-alpine-perl`, `1.24-alpine-perl`, `1.24.0-alpine3.17-perl`, `stable-alpine3.17-perl`, `1.24-alpine3.17-perl`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine-perl/Dockerfile) -- [`1.24.0-alpine-slim`, `stable-alpine-slim`, `1.24-alpine-slim`, `1.24.0-alpine3.17-slim`, `stable-alpine3.17-slim`, `1.24-alpine3.17-slim`](https://github.com/nginxinc/docker-nginx/blob/1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c/stable/alpine-slim/Dockerfile) +- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/66c0f94b4c764b1a531528e8c242ad94497011f6/mainline/debian/Dockerfile) +- [`1.25.5-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-perl/Dockerfile) +- [`1.25.5-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-otel/Dockerfile) +- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine/Dockerfile) +- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-perl/Dockerfile) +- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-slim/Dockerfile) +- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-otel/Dockerfile) +- [`1.26.0`, `stable`, `1.26`, `1.26.0-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/66c0f94b4c764b1a531528e8c242ad94497011f6/stable/debian/Dockerfile) +- [`1.26.0-perl`, `stable-perl`, `1.26-perl`, `1.26.0-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-perl/Dockerfile) +- [`1.26.0-otel`, `stable-otel`, `1.26-otel`, `1.26.0-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-otel/Dockerfile) +- [`1.26.0-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.0-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/stable/alpine/Dockerfile) +- [`1.26.0-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.0-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/stable/alpine-perl/Dockerfile) +- [`1.26.0-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.0-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/ed439d2266cee6304339d50c5fe33d8f87f6eb37/stable/alpine-slim/Dockerfile) +- [`1.26.0-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.0-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/33588b16913fe91d3a201043b73f3366d15fcce1/stable/alpine-otel/Dockerfile) # Quick reference (cont.) @@ -252,7 +254,7 @@ The `nginx` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `nginx:-perl` / `nginx:-alpine-perl` From 574c8c942b9836ec98c221228816a6f65ea52cce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Apr 2024 20:22:08 -0700 Subject: [PATCH 1135/2686] Run update.sh --- debian/README.md | 58 +++++++++++++++++++++++------------------------- 1 file changed, 28 insertions(+), 30 deletions(-) diff --git a/debian/README.md b/debian/README.md index 515b422e975f..9f6c8cb1f8a5 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,36 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240408`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240408-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240408`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240408-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240408`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/Dockerfile) -- [`buster-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/backports/Dockerfile) -- [`buster-slim`, `buster-20240408-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/Dockerfile) -- [`oldoldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/backports/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/rc-buggy/Dockerfile) -- [`sid`, `sid-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/sid/Dockerfile) -- [`sid-slim`, `sid-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/sid/slim/Dockerfile) -- [`stable`, `stable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/stable/slim/Dockerfile) -- [`testing`, `testing-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240408`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240408-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/44807175c12f847248c046022ef95862e5567c58/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240423`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240423-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240423`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240423-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240423`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/buster/Dockerfile) +- [`buster-slim`, `buster-20240423-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldoldstable/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/rc-buggy/Dockerfile) +- [`sid`, `sid-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/sid/Dockerfile) +- [`sid-slim`, `sid-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/sid/slim/Dockerfile) +- [`stable`, `stable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/slim/Dockerfile) +- [`testing`, `testing-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/unstable/slim/Dockerfile) # Quick reference (cont.) From 7fcb6270bc9e7b7989eeba9cece8b126a07a97ab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Apr 2024 11:22:24 -0700 Subject: [PATCH 1136/2686] Run update.sh --- crate/README.md | 6 +- eclipse-temurin/README.md | 364 +++++++++++++++++++------------------- neo4j/README.md | 4 +- r-base/README.md | 2 +- 4 files changed, 188 insertions(+), 188 deletions(-) diff --git a/crate/README.md b/crate/README.md index 79cf01fe5bd0..63ee21744ef4 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.6.4`, `5.6`, `latest`](https://github.com/crate/docker-crate/blob/51f22540833a2f98b7984019e16d496314934a91/Dockerfile) -- [`5.5.5`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) +- [`5.7.0`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/e5f4be7fe5e79bddb6df4db6a1a11b22b6a95228/Dockerfile) +- [`5.6.4`, `5.6`](https://github.com/crate/docker-crate/blob/51f22540833a2f98b7984019e16d496314934a91/Dockerfile) +- [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) -- [`5.3.9`, `5.3`](https://github.com/crate/docker-crate/blob/b26e81edb1d6b551a5a7697855270346dbd63619/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 6ee249bda828..540c50b1de97 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,191 +28,191 @@ WARNING: ## Simple Tags -- [`8u402-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/alpine/Dockerfile) -- [`8u402-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/focal/Dockerfile) -- [`8u402-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u402-b06-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/centos/Dockerfile) -- [`8u402-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u402-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u402-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u402-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u402-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u402-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/alpine/Dockerfile) -- [`8u402-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/focal/Dockerfile) -- [`8u402-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/jammy/Dockerfile) -- [`8u402-b06-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/centos/Dockerfile) -- [`8u402-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u402-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u402-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u402-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`8u402-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.22_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/alpine/Dockerfile) -- [`11.0.22_7-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.22_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.22_7-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/centos/Dockerfile) -- [`11.0.22_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.22_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.22_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.22_7-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.22_7-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.22_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/alpine/Dockerfile) -- [`11.0.22_7-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.22_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.22_7-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/centos/Dockerfile) -- [`11.0.22_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.22_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.22_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.22_7-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.22_7-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.10_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/alpine/Dockerfile) -- [`17.0.10_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.10_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.10_7-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/centos/Dockerfile) -- [`17.0.10_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.10_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.10_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.10_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.10_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.10_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/alpine/Dockerfile) -- [`17.0.10_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.10_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.10_7-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/centos/Dockerfile) -- [`17.0.10_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.10_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.10_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.10_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.10_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.2_13-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/alpine/Dockerfile) -- [`21.0.2_13-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.2_13-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.2_13-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.2_13-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.2_13-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.2_13-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.2_13-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/alpine/Dockerfile) -- [`21.0.2_13-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.2_13-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.2_13-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.2_13-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.2_13-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.2_13-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) -- [`22_36-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/alpine/Dockerfile) -- [`22_36-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubuntu/jammy/Dockerfile) -- [`22_36-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubi/ubi9-minimal/Dockerfile) -- [`22_36-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22_36-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`22_36-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22_36-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`22_36-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/alpine/Dockerfile) -- [`22_36-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubuntu/jammy/Dockerfile) -- [`22_36-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubi/ubi9-minimal/Dockerfile) -- [`22_36-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22_36-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`22_36-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) -- [`22_36-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-1809/Dockerfile) +- [`8u412-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/alpine/Dockerfile) +- [`8u412-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/focal/Dockerfile) +- [`8u412-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u412-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/centos/Dockerfile) +- [`8u412-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u412-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u412-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u412-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u412-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u412-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/alpine/Dockerfile) +- [`8u412-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/focal/Dockerfile) +- [`8u412-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) +- [`8u412-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/centos/Dockerfile) +- [`8u412-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u412-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u412-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u412-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u412-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.23_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/alpine/Dockerfile) +- [`11.0.23_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.23_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.23_9-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/centos/Dockerfile) +- [`11.0.23_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.23_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.23_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.23_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.23_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.23_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/alpine/Dockerfile) +- [`11.0.23_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.23_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.23_9-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/centos/Dockerfile) +- [`11.0.23_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.23_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.23_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.23_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.23_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.11_9-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/alpine/Dockerfile) +- [`17.0.11_9-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.11_9-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.11_9-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/centos/Dockerfile) +- [`17.0.11_9-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.11_9-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.11_9-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.11_9-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.11_9-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.11_9-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/alpine/Dockerfile) +- [`17.0.11_9-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.11_9-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.11_9-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/centos/Dockerfile) +- [`17.0.11_9-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.11_9-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.11_9-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.11_9-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.11_9-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.3_9-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/alpine/Dockerfile) +- [`21.0.3_9-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.3_9-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.3_9-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.3_9-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.3_9-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.3_9-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.3_9-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/alpine/Dockerfile) +- [`21.0.3_9-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.3_9-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.3_9-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.3_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.3_9-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.3_9-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) +- [`22.0.1_8-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/alpine/Dockerfile) +- [`22.0.1_8-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) +- [`22.0.1_8-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`22.0.1_8-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.1_8-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.1_8-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22.0.1_8-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22.0.1_8-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/alpine/Dockerfile) +- [`22.0.1_8-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) +- [`22.0.1_8-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubi/ubi9-minimal/Dockerfile) +- [`22.0.1_8-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.1_8-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.1_8-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) +- [`22.0.1_8-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8u402-b06-jdk`, `8-jdk`, `8`: - - [`8u402-b06-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jdk/ubuntu/jammy/Dockerfile) - - [`8u402-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u402-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u402-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u402-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u402-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u402-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u402-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u402-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jdk/windows/nanoserver-1809/Dockerfile) -- `8u402-b06-jre`, `8-jre`: - - [`8u402-b06-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/8/jre/ubuntu/jammy/Dockerfile) - - [`8u402-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u402-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u402-b06-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u402-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u402-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u402-b06-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u402-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u402-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/8/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.22_7-jdk`, `11-jdk`, `11`: - - [`11.0.22_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jdk/ubuntu/jammy/Dockerfile) - - [`11.0.22_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.22_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.22_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.22_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.22_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.22_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.22_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.22_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jdk/windows/nanoserver-1809/Dockerfile) -- `11.0.22_7-jre`, `11-jre`: - - [`11.0.22_7-jre-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/11/jre/ubuntu/jammy/Dockerfile) - - [`11.0.22_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.22_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.22_7-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.22_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.22_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.22_7-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.22_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.22_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/11/jre/windows/nanoserver-1809/Dockerfile) -- `17.0.10_7-jdk`, `17-jdk`, `17`: - - [`17.0.10_7-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/17/jdk/ubuntu/jammy/Dockerfile) - - [`17.0.10_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.10_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.10_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.10_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.10_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.10_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.10_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.10_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jdk/windows/nanoserver-1809/Dockerfile) -- `17.0.10_7-jre`, `17-jre`: - - [`17.0.10_7-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/17/jre/ubuntu/jammy/Dockerfile) - - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.10_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.10_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.10_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.10_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.10_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.10_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/17/jre/windows/nanoserver-1809/Dockerfile) -- `21.0.2_13-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.2_13-jdk-jammy`](https://github.com/adoptium/containers/blob/2dae22b74703ce78b2951bc458945fdfde5b8f50/21/jdk/ubuntu/jammy/Dockerfile) - - [`21.0.2_13-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.2_13-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.2_13-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.2_13-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.2_13-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.2_13-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.2_13-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.2_13-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jdk/windows/nanoserver-1809/Dockerfile) -- `21.0.2_13-jre`, `21-jre`: - - [`21.0.2_13-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/21/jre/ubuntu/jammy/Dockerfile) - - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.2_13-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.2_13-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.2_13-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.2_13-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.2_13-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.2_13-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/5ef325612fc29e529a339ea7e35e4183cf9ae888/21/jre/windows/nanoserver-1809/Dockerfile) -- `22_36-jdk`, `22-jdk`, `22`: - - [`22_36-jdk-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/ubuntu/jammy/Dockerfile) - - [`22_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22_36-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22_36-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`22_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jdk/windows/nanoserver-1809/Dockerfile) -- `22_36-jre`, `22-jre`: - - [`22_36-jre-jammy`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/ubuntu/jammy/Dockerfile) - - [`22_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) -- `22_36-jre-windowsservercore`, `22-jre-windowsservercore`: - - [`22_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/windowsservercore-1809/Dockerfile) -- `22_36-jre-nanoserver`, `22-jre-nanoserver`: - - [`22_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`22_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/122a3997f4db4f0ae332d2e4be79a19ca0448e02/22/jre/windows/nanoserver-1809/Dockerfile) +- `8u412-b08-jdk`, `8-jdk`, `8`: + - [`8u412-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) + - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u412-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) +- `8u412-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u412-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u412-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) +- `8u412-b08-jre`, `8-jre`: + - [`8u412-b08-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) + - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u412-b08-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) +- `8u412-b08-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u412-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u412-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) +- `11.0.23_9-jdk`, `11-jdk`, `11`: + - [`11.0.23_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) + - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.23_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) +- `11.0.23_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.23_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.23_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) +- `11.0.23_9-jre`, `11-jre`: + - [`11.0.23_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) + - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.23_9-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) +- `11.0.23_9-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.23_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.23_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) +- `17.0.11_9-jdk`, `17-jdk`, `17`: + - [`17.0.11_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) + - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.11_9-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) +- `17.0.11_9-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.11_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.11_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) +- `17.0.11_9-jre`, `17-jre`: + - [`17.0.11_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.11_9-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) +- `17.0.11_9-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.11_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.11_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) +- `21.0.3_9-jdk`, `21-jdk`, `21`, `latest`: + - [`21.0.3_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) + - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.3_9-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- `21.0.3_9-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21.0.3_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.3_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) +- `21.0.3_9-jre`, `21-jre`: + - [`21.0.3_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.3_9-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) +- `21.0.3_9-jre-nanoserver`, `21-jre-nanoserver`: + - [`21.0.3_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.3_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) +- `22.0.1_8-jdk`, `22-jdk`, `22`: + - [`22.0.1_8-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) + - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22.0.1_8-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- `22.0.1_8-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22.0.1_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.1_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) +- `22.0.1_8-jre`, `22-jre`: + - [`22.0.1_8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) + - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) +- `22.0.1_8-jre-windowsservercore`, `22-jre-windowsservercore`: + - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) +- `22.0.1_8-jre-nanoserver`, `22-jre-nanoserver`: + - [`22.0.1_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.1_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 4ae3461de7ff..fc36caabd348 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,8 +30,8 @@ WARNING: - [`5.19.0-enterprise-ubi9`, `5.19-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/enterprise/Dockerfile) - [`5.19.0-community-ubi8`, `5.19-community-ubi8`, `5-community-ubi8`, `5.19.0-ubi8`, `5.19-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/community/Dockerfile) - [`5.19.0-enterprise-ubi8`, `5.19-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/enterprise/Dockerfile) -- [`4.4.32`, `4.4.32-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/community/Dockerfile) -- [`4.4.32-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/5eac9259a8371baf87ef730f1a90b9da44641900/4.4.32/bullseye/enterprise/Dockerfile) +- [`4.4.33`, `4.4.33-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/4ec712022a9c5c99e7e869571bb6f4df744c3c21/4.4.33/bullseye/community/Dockerfile) +- [`4.4.33-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4ec712022a9c5c99e7e869571bb6f4df744c3c21/4.4.33/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/r-base/README.md b/r-base/README.md index d689267473fa..52c76aff5337 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.3.3`, `latest`](https://github.com/rocker-org/rocker/blob/d373d03aa4d491216905eb24b18d0f56165dd43f/r-base/4.3.3/Dockerfile) +- [`4.4.0`, `latest`](https://github.com/rocker-org/rocker/blob/69c238cb525faab5486b1920601f3836b15e1384/r-base/4.4.0/Dockerfile) # Quick reference (cont.) From d75602ee95683e78827b24c94a4a34edc68ae3d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Apr 2024 15:10:07 -0700 Subject: [PATCH 1137/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index 1410ccff438b..4737d2abc0c7 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/c2a6b9c5969ed3165b016310589cc2286146b772/stable/bookworm/Dockerfile) -- [`3.4.0-282.2.beta-sdk`, `beta-sdk`, `3.4.0-282.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/c2a6b9c5969ed3165b016310589cc2286146b772/beta/bookworm/Dockerfile) +- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6db7fe0008dcb4c8a3bb99fd6bde8c9ed30893f5/stable/bookworm/Dockerfile) +- [`3.4.0-282.3.beta-sdk`, `beta-sdk`, `3.4.0-282.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6db7fe0008dcb4c8a3bb99fd6bde8c9ed30893f5/beta/bookworm/Dockerfile) # Quick reference (cont.) From c158395f87c7b72040dcd1a0881438dc1403ac2c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Apr 2024 16:10:04 -0700 Subject: [PATCH 1138/2686] Run update.sh --- nextcloud/README.md | 9 ++++++--- oraclelinux/README.md | 17 +++++++++-------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 12d2e80c0d4e..958317319ef8 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,9 +34,12 @@ WARNING: - [`27.1.8-apache`, `27.1-apache`, `27-apache`, `27.1.8`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/apache/Dockerfile) - [`27.1.8-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm/Dockerfile) - [`27.1.8-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm-alpine/Dockerfile) -- [`28.0.4-apache`, `28.0-apache`, `28-apache`, `apache`, `stable-apache`, `production-apache`, `28.0.4`, `28.0`, `28`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/apache/Dockerfile) -- [`28.0.4-fpm`, `28.0-fpm`, `28-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm/Dockerfile) -- [`28.0.4-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm-alpine/Dockerfile) +- [`28.0.4-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.4`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/apache/Dockerfile) +- [`28.0.4-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm/Dockerfile) +- [`28.0.4-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm-alpine/Dockerfile) +- [`29.0.0-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.0`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/apache/Dockerfile) +- [`29.0.0-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm/Dockerfile) +- [`29.0.0-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 4e0e7051e5fd..2260016f33f6 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,14 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/9-slim/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d9cafbbc05ea9a812a86d0c6c1d2dbb03cdc0b4f/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9-slim-fips/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7-slim-fips/Dockerfile) # Quick reference (cont.) From 05b6f44b0d4752a3674e42cfa18928efbd4c99d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Apr 2024 17:21:48 -0700 Subject: [PATCH 1139/2686] Run update.sh --- couchbase/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index 9f6d8b93d441..dda92fb57376 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -26,7 +26,7 @@ WARNING: - [`7.6.1`, `enterprise-7.6.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) - [`community-7.6.1`, `community`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) -- [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.2.4/Dockerfile) +- [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) - [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) - [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.1.6/Dockerfile) - [`community-7.1.1`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.1.1/Dockerfile) From 1dac5e7bbcb54daeb7eaed6e99787fead2fb2657 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Apr 2024 12:09:59 -0700 Subject: [PATCH 1140/2686] Run update.sh --- clojure/README.md | 134 +++++++++++++++++++++++----------------------- docker/README.md | 30 +++++------ pypy/README.md | 78 +++++++++++++-------------- 3 files changed, 121 insertions(+), 121 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 41b5595ca5c3..57ed4dbd3079 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,73 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.1.1435-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.1.1435-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.1.1435-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.1.1435-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.1.1435`, `temurin-8-tools-deps-1.11.1.1435-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.1.1435-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.1.1435-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.1.1435-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.1.1435-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.1.1435`, `temurin-11-tools-deps-1.11.1.1435-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.1.1435-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.1.1435-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.1.1435-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.1.1435-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.1.1435`, `temurin-17-tools-deps-1.11.1.1435-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.1.1435-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.1.1435`, `temurin-21-tools-deps-1.11.1.1435-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.1.1435`, `tools-deps-1.11.1.1435-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.1.1435-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.1.1435-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.1.1435-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.1.1435-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.1.1435-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.1.1435-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.1.1435`, `temurin-22-tools-deps-1.11.1.1435-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.1.1435-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.1.1435-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.1.1435-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.1.1435-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3ee0739b404e95ecb969569f9795b37d9604311c/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index b318bc179813..210a425f1dc4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.1.0-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/cli/Dockerfile) +- [`26.1.0-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/cli/Dockerfile) - [`26.1.0-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.0-dind-alpine3.19`, `26.1.0`, `26.1`, `26`, `latest`, `26.1.0-alpine3.19`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind/Dockerfile) - [`26.1.0-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind-rootless/Dockerfile) -- [`26.1.0-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.0-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/cli/Dockerfile) +- [`26.1.0-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.0-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.1.0-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbbb8ff0e12ba6d94ab58477015d03ef7066a11b/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/befce9afb6febf3960773773f48ddadcb6f64b17/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 4e39b9b756a7..1ab66802c227 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`3.10-7.3.15-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.15-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bookworm/Dockerfile) -- [`3.10-7.3.15-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.15-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.15-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.15-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bullseye/Dockerfile) -- [`3.10-7.3.15-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.15-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.15-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.15-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.15-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.15-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.15-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.15-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.15-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bookworm/Dockerfile) -- [`3.9-7.3.15-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/slim-bookworm/Dockerfile) -- [`3.9-7.3.15-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bullseye/Dockerfile) -- [`3.9-7.3.15-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.15-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/slim-bullseye/Dockerfile) -- [`3.9-7.3.15-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.15-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.15-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.15-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bookworm/Dockerfile) -- [`2.7-7.3.15-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.15-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.15-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.15-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bullseye/Dockerfile) -- [`2.7-7.3.15-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.15-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.15-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.15-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.15-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.15-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.15-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.15-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.16-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.16-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bookworm/Dockerfile) +- [`3.10-7.3.16-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.16-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.16-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.16-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) +- [`3.10-7.3.16-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.16-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.16-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.16-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.16-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.16-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.16-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.16-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.9-7.3.16-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bookworm/Dockerfile) +- [`3.9-7.3.16-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bookworm/Dockerfile) +- [`3.9-7.3.16-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) +- [`3.9-7.3.16-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.16-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bullseye/Dockerfile) +- [`3.9-7.3.16-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.9-7.3.16-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.16-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.16-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bookworm/Dockerfile) +- [`2.7-7.3.16-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.16-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.16-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.16-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) +- [`2.7-7.3.16-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.16-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.16-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.16-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.16-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.16-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.16-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.16-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.10-7.3.15`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.15`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.10/bullseye/Dockerfile) - - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.15-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.15-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/6c5c41354e29aef40de9a1af9fe02c9ea39e0e77/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.15`, `3.9-7.3`, `3.9-7`, `3.9`: - - [`3.9-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/3.9/bullseye/Dockerfile) - - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.15-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: - - [`3.9-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/5332096de1ceb784bdce5c2bdffd187d63389a0b/3.9/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.15`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.15`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.15-bullseye`](https://github.com/docker-library/pypy/blob/8b4ced21389b959dc80b544ddeca5516b463d366/2.7/bullseye/Dockerfile) - - [`2.7-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.15-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.15-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.15-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.15-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/25f8603223e0511500a1d36ac07014290b89714d/2.7/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.16`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.16`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) + - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.10-7.3.16-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.16-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.16`, `3.9-7.3`, `3.9-7`, `3.9`: + - [`3.9-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) + - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) +- `3.9-7.3.16-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: + - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.16`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.16`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) + - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) +- `2.7-7.3.16-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.16-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From a6913cb590c92b32910f57c5f225204d35568c29 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Apr 2024 13:10:12 -0700 Subject: [PATCH 1141/2686] Run update.sh --- ubuntu/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index f5112c9c6d2a..b4bc133d07c1 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240410`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240410-991030cf&id=991030cf26260f3402134db39905d5a7ec65c663) -- [`22.04`, `jammy-20240405`, `jammy`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240405-ae89e7cd&id=ae89e7cda4e21aae14ec1c74cc095c013adf3ecb) -- [`23.10`, `mantic-20240405`, `mantic`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240405-b94046c0&id=b94046c0cc25268b37b7d7104a95a360efc7064a) -- [`24.04`, `noble-20240407.1`, `noble`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240407.1-e4adb568&id=e4adb5687d1953e60efbf8880d0e7a989abf4aa8) +- [`20.04`, `focal-20240416`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240416-0d586ec8&id=0d586ec82295153bbe3c42b839002dc6e40f3168) +- [`22.04`, `jammy-20240416`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240416-266af739&id=266af73956355a8ed84ee85fc074a643cff9c839) +- [`23.10`, `mantic-20240416`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240416-a1bb3586&id=a1bb35866143c6f12d11d9e4eedd8af26cc704c9) +- [`24.04`, `noble-20240423`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240423-2c48d95e&id=2c48d95eff5ff20ed919a37a25bea513294347ba) # Quick reference (cont.) From f4593a7fa81cff10a4c3396c2619e999fd436c20 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Apr 2024 09:20:09 -0700 Subject: [PATCH 1142/2686] Run update.sh --- node/README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index f9faf5df801a..2b4218ac685f 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) +- [`22-alpine3.18`, `22.0-alpine3.18`, `22.0.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/alpine3.18/Dockerfile) +- [`22-alpine`, `22-alpine3.19`, `22.0-alpine`, `22.0-alpine3.19`, `22.0.0-alpine`, `22.0.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/alpine3.19/Dockerfile) +- [`22`, `22-bookworm`, `22.0`, `22.0-bookworm`, `22.0.0`, `22.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bookworm/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.0-bookworm-slim`, `22.0-slim`, `22.0.0-bookworm-slim`, `22.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bookworm-slim/Dockerfile) +- [`22-bullseye`, `22.0-bullseye`, `22.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bullseye/Dockerfile) +- [`22-bullseye-slim`, `22.0-bullseye-slim`, `22.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bullseye-slim/Dockerfile) +- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) +- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) +- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) +- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) +- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) +- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) - [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.2-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.18/Dockerfile) - [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.2-alpine`, `20.12.2-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.19/Dockerfile) - [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.2`, `20.12.2-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bookworm/Dockerfile) From b73e22803a3a7f2b61e2f6fea8f9c1b16d9fa6fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Apr 2024 15:04:15 -0700 Subject: [PATCH 1143/2686] Run update.sh --- chronograf/README.md | 16 ++++++++-------- haskell/README.md | 12 ++++++------ nextcloud/README.md | 15 ++++++--------- php/README.md | 28 ++++++++++++++++++++++++++++ sonarqube/README.md | 20 ++++++++++---------- storm/README.md | 2 +- swipl/README.md | 4 ++-- 7 files changed, 61 insertions(+), 36 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index a966272686f4..4d27bfa369a7 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/107cbe2cdb717faec1df57a070e2ecab8030d462/chronograf/1.10/alpine/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.8/alpine/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.9/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.9/alpine/Dockerfile) +- [`1.10`, `1.10.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.10/Dockerfile) +- [`1.10-alpine`, `1.10.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 01c6059bf56d..09a321474b15 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/buster/Dockerfile) -- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.8/slim-buster/Dockerfile) -- [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/95ea212c5b8371c7a214dae01e9853431a36f18b/9.6/buster/Dockerfile) -- [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/95ea212c5b8371c7a214dae01e9853431a36f18b/9.6/slim-buster/Dockerfile) -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/buster/Dockerfile) -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.4/slim-buster/Dockerfile) +- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/buster/Dockerfile) +- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/slim-buster/Dockerfile) +- [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/buster/Dockerfile) +- [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/slim-buster/Dockerfile) +- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/buster/Dockerfile) +- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/slim-buster/Dockerfile) - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/buster/Dockerfile) - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/slim-buster/Dockerfile) - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/buster/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 958317319ef8..5d3d0baa09cc 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`26.0.13-apache`, `26.0-apache`, `26-apache`, `26.0.13`, `26.0`, `26`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/apache/Dockerfile) -- [`26.0.13-fpm`, `26.0-fpm`, `26-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/fpm/Dockerfile) -- [`26.0.13-fpm-alpine`, `26.0-fpm-alpine`, `26-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/26/fpm-alpine/Dockerfile) -- [`27.1.8-apache`, `27.1-apache`, `27-apache`, `27.1.8`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/apache/Dockerfile) -- [`27.1.8-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm/Dockerfile) -- [`27.1.8-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/27/fpm-alpine/Dockerfile) -- [`28.0.4-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.4`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/apache/Dockerfile) -- [`28.0.4-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm/Dockerfile) -- [`28.0.4-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bc172f8dd22a648d5c166b854dceef958a2d4425/28/fpm-alpine/Dockerfile) +- [`27.1.9-apache`, `27.1-apache`, `27-apache`, `27.1.9`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/apache/Dockerfile) +- [`27.1.9-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/fpm/Dockerfile) +- [`27.1.9-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/fpm-alpine/Dockerfile) +- [`28.0.5-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.5`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/apache/Dockerfile) +- [`28.0.5-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/fpm/Dockerfile) +- [`28.0.5-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/fpm-alpine/Dockerfile) - [`29.0.0-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.0`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/apache/Dockerfile) - [`29.0.0-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm/Dockerfile) - [`29.0.0-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm-alpine/Dockerfile) diff --git a/php/README.md b/php/README.md index 0ed9a2070bfb..23774756692c 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.7RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.7RC1-bookworm`, `8.3-rc-bookworm`, `8.3.7RC1-cli`, `8.3-rc-cli`, `8.3.7RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.7RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.7RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.7RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.7RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.7RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.7RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.7RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.7RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.7RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.7RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.7RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.7RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.7RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.7RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.7RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.7RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.7RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.7RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.7RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.7RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.7RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/cli/Dockerfile) +- [`8.3.7RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/fpm/Dockerfile) +- [`8.3.7RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/zts/Dockerfile) - [`8.3.6-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.6-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.6-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.6`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/cli/Dockerfile) - [`8.3.6-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.6-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/apache/Dockerfile) - [`8.3.6-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.6-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.6-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.6-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/cli/Dockerfile) - [`8.3.6-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/fpm/Dockerfile) - [`8.3.6-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.19RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.19RC1-bookworm`, `8.2-rc-bookworm`, `8.2.19RC1-cli`, `8.2-rc-cli`, `8.2.19RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.19RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.19RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.19RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.19RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.19RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.19RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.19RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.19RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.19RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.19RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.19RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.19RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.19RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.19RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.19RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.19RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.19RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.19RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.19RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.19RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.19RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/cli/Dockerfile) +- [`8.2.19RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/fpm/Dockerfile) +- [`8.2.19RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/zts/Dockerfile) - [`8.2.18-cli-bookworm`, `8.2-cli-bookworm`, `8.2.18-bookworm`, `8.2-bookworm`, `8.2.18-cli`, `8.2-cli`, `8.2.18`, `8.2`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/cli/Dockerfile) - [`8.2.18-apache-bookworm`, `8.2-apache-bookworm`, `8.2.18-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/apache/Dockerfile) - [`8.2.18-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.18-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/fpm/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 783949ea58a8..6be9edbbee0b 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.4-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/community/Dockerfile) -- [`9.9.4-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/developer/Dockerfile) -- [`9.9.4-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/enterprise/Dockerfile) -- [`9.9.4-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/datacenter/app/Dockerfile) -- [`9.9.4-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/9/datacenter/search/Dockerfile) -- [`10.5.0-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/community/Dockerfile) -- [`10.5.0-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/developer/Dockerfile) -- [`10.5.0-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/enterprise/Dockerfile) -- [`10.5.0-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/datacenter/app/Dockerfile) -- [`10.5.0-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/648e787e5cdf015ee49f43b17063f42b6938bee7/10/datacenter/search/Dockerfile) +- [`9.9.5-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/community/Dockerfile) +- [`9.9.5-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/developer/Dockerfile) +- [`9.9.5-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/enterprise/Dockerfile) +- [`9.9.5-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/datacenter/app/Dockerfile) +- [`9.9.5-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/datacenter/search/Dockerfile) +- [`10.5.0-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/community/Dockerfile) +- [`10.5.0-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/developer/Dockerfile) +- [`10.5.0-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/enterprise/Dockerfile) +- [`10.5.0-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/datacenter/app/Dockerfile) +- [`10.5.0-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index 06edc27a514f..4992200533af 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.1`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d1f8af26ccf800531cc773a39fac9e30efa94bca/2.6.1/Dockerfile) +- [`2.6.2`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d8c821ffb599be733400c98cc10fe4c05966b552/2.6.2/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 6f7f8c598dc9..6304bdaa4fbf 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/6a73474971a395f6d5744a42600f624e8062df3b/9.3.2/bookworm/Dockerfile) -- [`stable`, `9.2.3`](https://github.com/SWI-Prolog/docker-swipl/blob/6a73474971a395f6d5744a42600f624e8062df3b/9.2.3/bookworm/Dockerfile) +- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/78523261c9b99a1bd1bb3546e0fcbffc62ef7036/9.3.2/bookworm/Dockerfile) +- [`stable`, `9.2.4`](https://github.com/SWI-Prolog/docker-swipl/blob/78523261c9b99a1bd1bb3546e0fcbffc62ef7036/9.2.4/bookworm/Dockerfile) # Quick reference (cont.) From 0e21ee41063b2d6747c4e0404113a5931100aab2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Apr 2024 18:04:51 -0700 Subject: [PATCH 1144/2686] Run update.sh --- open-liberty/README.md | 48 +++++++++++++++++++++---------------- websphere-liberty/README.md | 42 ++++++++++++++++++-------------- 2 files changed, 51 insertions(+), 39 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index 1d30164a7f2f..22743647e823 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,27 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/3fa1f1a1610c2aa670e6c1c26bececa1031b2b92/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 68d427940fb6..da198d8b05f1 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,24 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/70b0b296cabe256f5f3610940c79fb95c5f5610e/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 015f878240b4ee294d0ae2ffd9b90de08a35df90 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Apr 2024 10:23:52 -0700 Subject: [PATCH 1145/2686] Run update.sh --- rust/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rust/README.md b/rust/README.md index b895b5f0f48b..e1597afa4f5c 100644 --- a/rust/README.md +++ b/rust/README.md @@ -26,10 +26,10 @@ WARNING: - [`1-buster`, `1.77-buster`, `1.77.2-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/Dockerfile) - [`1-slim-buster`, `1.77-slim-buster`, `1.77.2-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/slim/Dockerfile) -- [`1-bullseye`, `1.77-bullseye`, `1.77.2-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.2-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.77-bookworm`, `1.77.2-bookworm`, `bookworm`, `1`, `1.77`, `1.77.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.2-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/bookworm/slim/Dockerfile) +- [`1-bullseye`, `1.77-bullseye`, `1.77.2-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.2-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.77-bookworm`, `1.77.2-bookworm`, `bookworm`, `1`, `1.77`, `1.77.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.2-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bookworm/slim/Dockerfile) - [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.2-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.18/Dockerfile) - [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.2-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.2-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.19/Dockerfile) @@ -39,7 +39,7 @@ WARNING: [https://github.com/rust-lang/docker-rust/issues](https://github.com/rust-lang/docker-rust/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rust/) + [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rust/), [`s390x`](https://hub.docker.com/r/s390x/rust/) - **Published image artifact details**: [repo-info repo's `repos/rust/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rust) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rust)) From 630306089a4d57925d81a8646c43dfcfee11fc71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Apr 2024 10:53:02 -0700 Subject: [PATCH 1146/2686] Run update.sh --- clearlinux/README.md | 2 +- odoo/README.md | 6 ++-- perl/README.md | 80 ++++++++++++++++++++++---------------------- photon/README.md | 2 +- 4 files changed, 45 insertions(+), 45 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index e32bf94980c4..484036b35114 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ce9786e46427dc6b47a68b8ae730ca15a4c53f1f/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fa6f05c3b03696821ec9c3a03b98220db6411564/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 13cb45b80e0c..a80ef4448226 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/ddcea34c2686e07cfb80ad1b42d9cd9c3b87f5a8/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/15.0/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index bd4fe0ea912a..3106b3ab566c 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,46 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.9`, `5.39`, `devel`, `5.39.9-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main-bookworm/Dockerfile) -- [`5.39.9-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main-bullseye/Dockerfile) -- [`5.39.9-slim`, `5.39-slim`, `devel-slim`, `5.39.9-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim-bookworm/Dockerfile) -- [`5.39.9-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim-bullseye/Dockerfile) -- [`5.39.9-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.9-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main,threaded-bookworm/Dockerfile) -- [`5.39.9-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-main,threaded-bullseye/Dockerfile) -- [`5.39.9-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.9-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim,threaded-bookworm/Dockerfile) -- [`5.39.9-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/1bd88a6109c82256126f0303bfe5552fffac8965/5.039.009-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main-bullseye/Dockerfile) +- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main-buster/Dockerfile) +- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim-bullseye/Dockerfile) +- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim-buster/Dockerfile) +- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main,threaded-bullseye/Dockerfile) +- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main,threaded-buster/Dockerfile) +- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim,threaded-bullseye/Dockerfile) +- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim,threaded-buster/Dockerfile) +- [`5.39.10`, `5.39`, `devel`, `5.39.10-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main-bookworm/Dockerfile) +- [`5.39.10-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main-bullseye/Dockerfile) +- [`5.39.10-slim`, `5.39-slim`, `devel-slim`, `5.39.10-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim-bookworm/Dockerfile) +- [`5.39.10-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim-bullseye/Dockerfile) +- [`5.39.10-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.10-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main,threaded-bookworm/Dockerfile) +- [`5.39.10-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main,threaded-bullseye/Dockerfile) +- [`5.39.10-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.10-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim,threaded-bookworm/Dockerfile) +- [`5.39.10-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 7ecc48ceeaed..42976fce8338 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20240421`, `latest`](https://github.com/vmware/photon-docker-image/blob/79a90ceb52e2e2cded92d12f6a74989da688bcdf/docker/Dockerfile) - [`4.0`, `4.0-20240421`](https://github.com/vmware/photon-docker-image/blob/9eb03b6e75e38853d54235850cc485b407f60084/docker/Dockerfile) -- [`3.0`, `3.0-20240411`](https://github.com/vmware/photon-docker-image/blob/854f2a64e18085b820d3ac54b2a51586c440886b/docker/Dockerfile) +- [`3.0`, `3.0-20240428`](https://github.com/vmware/photon-docker-image/blob/3cdc028d62668aabedb0102798470951884d8f56/docker/Dockerfile) # Quick reference (cont.) From d0cfb8265402f10ea929a5d9848782fb0170d710 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Apr 2024 14:11:01 -0700 Subject: [PATCH 1147/2686] Run update.sh --- jruby/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 193cb71b5f7e..dfd7d0da53a1 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.6`, `9.4-jre`, `9.4-jre8`, `9.4.6-jre`, `9.4.6-jre8`, `9.4.6.0`, `9.4.6.0-jre`, `9.4.6.0-jre8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.6-jdk`, `9.4.6-jdk8`, `9.4.6.0-jdk`, `9.4.6.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.6-jre11`, `9.4.6.0-jre11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.6-jdk11`, `9.4.6.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.6-jdk17`, `9.4.6.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.6-jre17`, `9.4.6.0-jre17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.6-jdk21`, `9.4.6.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.6-jre21`, `9.4.6.0-jre21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.14-jdk21`, `9.3.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.14-jre21`, `9.3.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/6f941176b198e2a462f484dd8105c3055e4de4df/9.3/jre21/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.7`, `9.4-jre`, `9.4-jre8`, `9.4.7-jre`, `9.4.7-jre8`, `9.4.7.0`, `9.4.7.0-jre`, `9.4.7.0-jre8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.7-jdk`, `9.4.7-jdk8`, `9.4.7.0-jdk`, `9.4.7.0-jdk8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.7-jre11`, `9.4.7.0-jre11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.7-jdk11`, `9.4.7.0-jdk11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.7-jdk17`, `9.4.7.0-jdk17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.7-jre17`, `9.4.7.0-jre17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre17/Dockerfile) +- [`9.4-jdk21`, `9.4.7-jdk21`, `9.4.7.0-jdk21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk21/Dockerfile) +- [`9.4-jre21`, `9.4.7-jre21`, `9.4.7.0-jre21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre21/Dockerfile) +- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre17/Dockerfile) +- [`9.3-jdk21`, `9.3.14-jdk21`, `9.3.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk21/Dockerfile) +- [`9.3-jre21`, `9.3.14-jre21`, `9.3.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre21/Dockerfile) # Quick reference (cont.) From c4303ce9d2de5b5309ecf2408c607001c87ad4f9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Apr 2024 17:14:33 -0700 Subject: [PATCH 1148/2686] Run update.sh --- mongo/README.md | 45 +++++++++++++++------------------------------ traefik/README.md | 13 +++++++------ 2 files changed, 22 insertions(+), 36 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 9fb8004c8fcc..c177b6dcb80d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,16 +28,11 @@ WARNING: ## Simple Tags -- [`7.0.9-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/Dockerfile) -- [`7.0.9-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.9-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.9-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.9-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.8-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) -- [`7.0.8-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.8-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.8-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.8-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.9-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) +- [`7.0.9-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.9-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.9-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.9-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) @@ -56,26 +51,16 @@ WARNING: ## Shared Tags -- `7.0.9-rc1`, `7.0-rc`: - - [`7.0.9-rc1-jammy`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/Dockerfile) - - [`7.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.9-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.9-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.9-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbfba91eec75ee6dfa1644b519af518d9a6a71df/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.8`, `7.0`, `7`, `latest`: - - [`7.0.8-jammy`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/Dockerfile) - - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.8-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.8-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0d68481b0a65cf33346265e5c70700b037af0a34/7.0/windows/nanoserver-1809/Dockerfile) +- `7.0.9`, `7.0`, `7`, `latest`: + - [`7.0.9-jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) + - [`7.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.9-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.15`, `6.0`, `6`: - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 0dd3a92c4182..adb8e61e6092 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,12 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-rc5-windowsservercore-ltsc2022`, `3.0.0-rc5-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-rc5-windowsservercore-1809`, `3.0.0-rc5-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/windows/1809/Dockerfile) -- [`v3.0.0-rc5`, `3.0.0-rc5`, `v3.0`, `3.0`, `beaufort`](https://github.com/traefik/traefik-library-image/blob/cce1a942f7cd68bfa4566dca0973303185190d26/alpine/Dockerfile) -- [`v2.11.2-windowsservercore-ltsc2022`, `2.11.2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.2-windowsservercore-1809`, `2.11.2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/1809/Dockerfile) -- [`v2.11.2`, `2.11.2`, `v2.11`, `2.11`, `mimolette`, `latest`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/alpine/Dockerfile) +- [`v3.0.0-windowsservercore-ltsc2022`, `3.0.0-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.0-windowsservercore-1809`, `3.0.0-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/1809/Dockerfile) +- [`v3.0.0`, `3.0.0`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/alpine/Dockerfile) +- [`v3.0.0-nanoserver-ltsc2022`, `3.0.0-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e921bd38d6f64eca79a681f5d945b99f279a7f4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.2-windowsservercore-ltsc2022`, `2.11.2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.2-windowsservercore-1809`, `2.11.2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/1809/Dockerfile) +- [`v2.11.2`, `2.11.2`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/alpine/Dockerfile) # Quick reference (cont.) From 471ebe6bf6fd55416cbde8a6093529172309abb9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Apr 2024 18:42:50 -0700 Subject: [PATCH 1149/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- haproxy/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 3e7921ac4301..592b939b5b5a 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/73986f3481e96ff79c39b7dae40a3f8e3700cf10/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 2ff46e6338b5..3f4c61c2bbb8 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev8`, `3.0-dev`, `3.0-dev8-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/d033d2e4b3486f8d1c30a4fa5d484000604dbf03/3.0/Dockerfile) -- [`3.0-dev8-alpine`, `3.0-dev-alpine`, `3.0-dev8-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/d033d2e4b3486f8d1c30a4fa5d484000604dbf03/3.0/alpine/Dockerfile) +- [`3.0-dev9`, `3.0-dev`, `3.0-dev9-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/024ece8e67340cde4d0bb69ac691acc68fad3209/3.0/Dockerfile) +- [`3.0-dev9-alpine`, `3.0-dev-alpine`, `3.0-dev9-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/024ece8e67340cde4d0bb69ac691acc68fad3209/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) From eec2366c947c5a32ea8d6facae10cdff4ab6339d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Apr 2024 11:22:05 -0700 Subject: [PATCH 1150/2686] Run update.sh --- solr/README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/solr/README.md b/solr/README.md index 5fb6c252b660..654f536adcb8 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,12 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.5.0`, `9.5`, `9`, `latest`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.5/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.5-slim/Dockerfile) -- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/9.4-slim/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/47b84007a29fa9a9d47917e1ba7f82cf863a5c93/8.11-slim/Dockerfile) +- [`9.6.0`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.6/Dockerfile) +- [`9.6.0-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.6-slim/Dockerfile) +- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.5-slim/Dockerfile) +- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.4/Dockerfile) +- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.4-slim/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/8.11-slim/Dockerfile) # Quick reference (cont.) From b5ec2633d7c0613b1ce0fe6a758a9d7170dc23bb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Apr 2024 14:23:42 -0700 Subject: [PATCH 1151/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 16 ++++++++-------- influxdb/README.md | 32 ++++++++++++++++---------------- julia/README.md | 26 +++++++++++++------------- ros/README.md | 3 +++ sonarqube/README.md | 20 ++++++++++---------- xwiki/README.md | 6 +++--- 7 files changed, 54 insertions(+), 51 deletions(-) diff --git a/bash/README.md b/bash/README.md index 2cf61574674d..fe5726f71756 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240422`, `devel`, `devel-20240422-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/7b657f0af13de947770f02d66ab0b24465b20f3c/devel/Dockerfile) +- [`devel-20240426`, `devel`, `devel-20240426-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/88f1a7983c648b5243097013c59fd6ac213804c3/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 210a425f1dc4..d16aa8ccd800 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.1.0-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.0-cli-alpine3.19`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/cli/Dockerfile) -- [`26.1.0-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.0-dind-alpine3.19`, `26.1.0`, `26.1`, `26`, `latest`, `26.1.0-alpine3.19`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind/Dockerfile) -- [`26.1.0-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9b4db7b1b1edb202cf2a8046174d835a4cec70e0/26/dind-rootless/Dockerfile) -- [`26.1.0-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.0-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.1-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/cli/Dockerfile) +- [`26.1.1-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.1-dind-alpine3.19`, `26.1.1`, `26.1`, `26`, `latest`, `26.1.1-alpine3.19`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/dind/Dockerfile) +- [`26.1.1-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/dind-rootless/Dockerfile) +- [`26.1.1-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.1-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.1.0-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3d79c81ed4b744ca54997c8d2bc17fe62f4460de/26/windows/windowsservercore-1809/Dockerfile) +- `26.1.1-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index d29b9363d400..ec1cce712a09 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/2680007114a53f289e034a77bf403adeea6acdd3/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.6-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.6-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/meta/alpine/Dockerfile) +- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/2.7/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index d42b1cd8cb76..b22985a26625 100644 --- a/julia/README.md +++ b/julia/README.md @@ -34,12 +34,12 @@ WARNING: - [`1.11.0-beta1-alpine3.18`, `1.11-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/alpine3.18/Dockerfile) - [`1.11.0-beta1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.10.2-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) -- [`1.10.2-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bullseye/Dockerfile) -- [`1.10.2-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.2-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.19/Dockerfile) -- [`1.10.2-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/alpine3.18/Dockerfile) -- [`1.10.2-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.2-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.3-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bookworm/Dockerfile) +- [`1.10.3-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bullseye/Dockerfile) +- [`1.10.3-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.3-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/alpine3.19/Dockerfile) +- [`1.10.3-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/alpine3.18/Dockerfile) +- [`1.10.3-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.3-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) @@ -56,13 +56,13 @@ WARNING: - `1.11.0-beta1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.2`, `1.10`, `1`, `latest`: - - [`1.10.2-bookworm`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/bookworm/Dockerfile) - - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.2-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.10.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8412fce8b8c25f568f809f9312e83a17e89f763a/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.3`, `1.10`, `1`, `latest`: + - [`1.10.3-bookworm`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bookworm/Dockerfile) + - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.3-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ros/README.md b/ros/README.md index 8734771afa2f..5a3c3badd0bb 100644 --- a/ros/README.md +++ b/ros/README.md @@ -34,6 +34,9 @@ WARNING: - [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) +- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) +- [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) +- [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/perception/Dockerfile) - [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-base/Dockerfile) - [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/perception/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 6be9edbbee0b..d34102689f61 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.5-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/community/Dockerfile) -- [`9.9.5-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/developer/Dockerfile) -- [`9.9.5-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/enterprise/Dockerfile) -- [`9.9.5-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/datacenter/app/Dockerfile) -- [`9.9.5-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/9/datacenter/search/Dockerfile) -- [`10.5.0-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/community/Dockerfile) -- [`10.5.0-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/developer/Dockerfile) -- [`10.5.0-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/enterprise/Dockerfile) -- [`10.5.0-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/datacenter/app/Dockerfile) -- [`10.5.0-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dc3207752df8b915cd6885a8e1fe76e2546060bc/10/datacenter/search/Dockerfile) +- [`9.9.5-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/community/Dockerfile) +- [`9.9.5-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/developer/Dockerfile) +- [`9.9.5-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/enterprise/Dockerfile) +- [`9.9.5-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/datacenter/app/Dockerfile) +- [`9.9.5-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/datacenter/search/Dockerfile) +- [`10.5.1-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/community/Dockerfile) +- [`10.5.1-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/developer/Dockerfile) +- [`10.5.1-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/enterprise/Dockerfile) +- [`10.5.1-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/datacenter/app/Dockerfile) +- [`10.5.1-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 1b618e978090..c7280d67339a 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.2`, `16.2.0`, `16-mysql-tomcat`, `16.2-mysql-tomcat`, `16.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.2-postgres-tomcat`, `16.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.2-mariadb-tomcat`, `16.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/53b7903554d4c40cdaff92ae74263b0596316275/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.3`, `16.3.0`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.8`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mariadb-tomcat/Dockerfile) From 34a973027a55a583cada10c5d9025b174a14dcbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Apr 2024 16:10:05 -0700 Subject: [PATCH 1152/2686] Run update.sh --- ros/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ros/README.md b/ros/README.md index 5a3c3badd0bb..cdd5f466ec01 100644 --- a/ros/README.md +++ b/ros/README.md @@ -34,9 +34,9 @@ WARNING: - [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) -- [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) -- [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/543aabeed37ee905ac3737fd38ffbc9894e997db/ros/jazzy/ubuntu/noble/perception/Dockerfile) +- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) +- [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) +- [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) - [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-base/Dockerfile) - [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/perception/Dockerfile) From 1a34b3a6e3794bd55acbe2384c9e52bb671ef54d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Apr 2024 17:25:20 -0700 Subject: [PATCH 1153/2686] Run update.sh --- mysql/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 3dd0e27390bf..286bad68da3e 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0`, `8.3`, `8`, `innovation`, `latest`, `8.3.0-oraclelinux8`, `8.3-oraclelinux8`, `8-oraclelinux8`, `innovation-oraclelinux8`, `oraclelinux8`, `8.3.0-oracle`, `8.3-oracle`, `8-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/innovation/Dockerfile.oracle) -- [`8.0.36`, `8.0`, `8.0.36-oraclelinux8`, `8.0-oraclelinux8`, `8.0.36-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/8.0/Dockerfile.oracle) -- [`8.0.36-bookworm`, `8.0-bookworm`, `8.0.36-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/831e58702aa316b69cdfaa115fc134bfede4c418/8.0/Dockerfile.debian) +- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `8.4.0-oraclelinux8`, `8.4-oraclelinux8`, `8-oraclelinux8`, `lts-oraclelinux8`, `oraclelinux8`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/c05422492215b3f0602409288c868ee4fd606ac3/8.4/Dockerfile.oracle) +- [`8.0.37`, `8.0`, `8.0.37-oraclelinux8`, `8.0-oraclelinux8`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.oracle) +- [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.debian) # Quick reference (cont.) From 96f51d84bc44dbe5ab1bf360446beb821deed37b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 May 2024 17:22:38 -0700 Subject: [PATCH 1154/2686] Run update.sh --- aerospike/README.md | 4 ++-- caddy/README.md | 45 +++++++++++++++++++++++++++++++-------------- sl/README.md | 2 +- ubuntu/README.md | 8 ++++---- 4 files changed, 38 insertions(+), 21 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 9f07054fae24..f56b8416e627 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.7`, `ee-7.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/ac0da549af226cf585ebd413fdc087dba202733b/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.7`, `ce-7.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/ac0da549af226cf585ebd413fdc087dba202733b/community/debian12/Dockerfile) +- [`ee-7.0.0.8`, `ee-7.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/ad8cea0e848931c37e7a83c75fc87dad80dc0f70/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.8`, `ce-7.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/ad8cea0e848931c37e7a83c75fc87dad80dc0f70/community/debian12/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 0c62e06bb6ba..c3951c3d9b56 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,43 @@ WARNING: ## Simple Tags -- [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/alpine/Dockerfile) -- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/builder/Dockerfile) -- [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) -- [`2.7.6-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/1809/Dockerfile) -- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.8.0-beta.1-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/alpine/Dockerfile) +- [`2.8.0-beta.1-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.8/builder/Dockerfile) +- [`2.8.0-beta.1-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) +- [`2.8.0-beta.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.0-beta.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/1809/Dockerfile) +- [`2.8.0-beta.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) +- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/builder/Dockerfile) +- [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) +- [`2.7.6-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) +- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/1809/Dockerfile) +- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags +- `2.8.0-beta.1`, `2.8`: + - [`2.8.0-beta.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/alpine/Dockerfile) + - [`2.8.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) + - [`2.8.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-beta.1-builder`, `2.8-builder`: + - [`2.8.0-beta.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.8/builder/Dockerfile) + - [`2.8.0-beta.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/1809/Dockerfile) + - [`2.8.0-beta.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.0-beta.1-windowsservercore`, `2.8-windowsservercore`: + - [`2.8.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) + - [`2.8.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) - `2.7.6`, `2.7`, `2`, `latest`: - - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/alpine/Dockerfile) - - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) - - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) + - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) + - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) + - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) - `2.7.6-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/builder/Dockerfile) - - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/1809/Dockerfile) - - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows-builder/ltsc2022/Dockerfile) + - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/builder/Dockerfile) + - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/1809/Dockerfile) + - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/ltsc2022/Dockerfile) - `2.7.6-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/1809/Dockerfile) - - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/4ce9344fd5c8b1f13533a3bd83b92368d6129836/2.7/windows/ltsc2022/Dockerfile) + - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) + - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/sl/README.md b/sl/README.md index 9c1475a60ddc..dea69249c7ba 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/671d6e866101b32462a507cce49169631a27842f/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ca29d5f891421cb83ec29c302e4610c6822482d8/sl7/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index b4bc133d07c1..1b5bc1f6f88b 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240416`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240416-0d586ec8&id=0d586ec82295153bbe3c42b839002dc6e40f3168) -- [`22.04`, `jammy-20240416`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240416-266af739&id=266af73956355a8ed84ee85fc074a643cff9c839) -- [`23.10`, `mantic-20240416`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240416-a1bb3586&id=a1bb35866143c6f12d11d9e4eedd8af26cc704c9) -- [`24.04`, `noble-20240423`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240423-2c48d95e&id=2c48d95eff5ff20ed919a37a25bea513294347ba) +- [`20.04`, `focal-20240427`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240427-c1db7ea8&id=c1db7ea8ab458ee6b6790c818608ec10c66844c2) +- [`22.04`, `jammy-20240427`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240427-56a11b55&id=56a11b5565de124e1c92cf8d27c79aedd0974922) +- [`23.10`, `mantic-20240427`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240427-65be8b79&id=65be8b797a138c7e35a2d97d22f3ffa51153c5af) +- [`24.04`, `noble-20240429`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240429-0b1b11a0&id=0b1b11a0895c374406172562ef16db8047108b70) # Quick reference (cont.) From 2224ca971e67cef0c66717567627de6dd5825233 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 May 2024 11:10:07 -0700 Subject: [PATCH 1155/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- node/README.md | 12 ++++++------ rakudo-star/README.md | 4 ++-- rust/README.md | 16 ++++++++-------- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 4f45d9155a8a..c4fe8fe17eef 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/elasticsearch/Dockerfile) -- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/elasticsearch/Dockerfile) +- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index e1b52762ba14..9d351fcc9a21 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/kibana/Dockerfile) -- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/kibana/Dockerfile) +- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 39db678a1fd1..65a177c8a0b4 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/logstash/Dockerfile) -- [`7.17.20`](https://github.com/elastic/dockerfiles/blob/d6d83657aef7b6f84f19e7ff03aa8ccc40070ab4/logstash/Dockerfile) +- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 2b4218ac685f..d04d972924da 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.18`, `22.0-alpine3.18`, `22.0.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/alpine3.18/Dockerfile) -- [`22-alpine`, `22-alpine3.19`, `22.0-alpine`, `22.0-alpine3.19`, `22.0.0-alpine`, `22.0.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/alpine3.19/Dockerfile) -- [`22`, `22-bookworm`, `22.0`, `22.0-bookworm`, `22.0.0`, `22.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.0-bookworm-slim`, `22.0-slim`, `22.0.0-bookworm-slim`, `22.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.0-bullseye`, `22.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.0-bullseye-slim`, `22.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ff8907ab35366821b8e7817eec1119e6d00692c0/22/bullseye-slim/Dockerfile) +- [`22-alpine3.18`, `22.1-alpine3.18`, `22.1.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/alpine3.18/Dockerfile) +- [`22-alpine`, `22-alpine3.19`, `22.1-alpine`, `22.1-alpine3.19`, `22.1.0-alpine`, `22.1.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/alpine3.19/Dockerfile) +- [`22`, `22-bookworm`, `22.1`, `22.1-bookworm`, `22.1.0`, `22.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bookworm/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.1-bookworm-slim`, `22.1-slim`, `22.1.0-bookworm-slim`, `22.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bookworm-slim/Dockerfile) +- [`22-bullseye`, `22.1-bullseye`, `22.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bullseye/Dockerfile) +- [`22-bullseye-slim`, `22.1-bullseye-slim`, `22.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bullseye-slim/Dockerfile) - [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) - [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) - [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index b0da31e6a8ff..73cf96f7cd40 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.03`, `bookworm`](https://github.com/Raku/docker/blob/64657bbc83c2536e3d2dcd8f075dde4e206b1421/2024.03/bookworm/Dockerfile) -- [`alpine`, `2024.03-alpine`](https://github.com/Raku/docker/blob/64657bbc83c2536e3d2dcd8f075dde4e206b1421/2024.03/alpine/Dockerfile) +- [`latest`, `2024.04`, `bookworm`](https://github.com/Raku/docker/blob/486b7ff7508c5dfd4b859518cdc9672ef9a5c815/2024.04/bookworm/Dockerfile) +- [`alpine`, `2024.04-alpine`](https://github.com/Raku/docker/blob/486b7ff7508c5dfd4b859518cdc9672ef9a5c815/2024.04/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index e1597afa4f5c..0aa06eac1a74 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.77-buster`, `1.77.2-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/Dockerfile) -- [`1-slim-buster`, `1.77-slim-buster`, `1.77.2-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/buster/slim/Dockerfile) -- [`1-bullseye`, `1.77-bullseye`, `1.77.2-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.77-slim-bullseye`, `1.77.2-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.77-bookworm`, `1.77.2-bookworm`, `bookworm`, `1`, `1.77`, `1.77.2`, `latest`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.77-slim-bookworm`, `1.77.2-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.77-slim`, `1.77.2-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7b280d7b867cff2c84ea301fd4030d89d87c4930/1.77.2/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.77-alpine3.18`, `1.77.2-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.77-alpine3.19`, `1.77.2-alpine3.19`, `alpine3.19`, `1-alpine`, `1.77-alpine`, `1.77.2-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/73b57d936481598421d27c4d722a24774a2267ea/1.77.2/alpine3.19/Dockerfile) +- [`1-buster`, `1.78-buster`, `1.78.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/buster/Dockerfile) +- [`1-slim-buster`, `1.78-slim-buster`, `1.78.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.78-bullseye`, `1.78.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.78-slim-bullseye`, `1.78.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.78-bookworm`, `1.78.0-bookworm`, `bookworm`, `1`, `1.78`, `1.78.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.78-slim-bookworm`, `1.78.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.78-slim`, `1.78.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/slim/Dockerfile) +- [`1-alpine3.18`, `1.78-alpine3.18`, `1.78.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.18/Dockerfile) +- [`1-alpine3.19`, `1.78-alpine3.19`, `1.78.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.78-alpine`, `1.78.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.19/Dockerfile) # Quick reference (cont.) From 869019c74d53153ad95bf9f6ff285d215c95e3ac Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 2 May 2024 11:33:04 -0700 Subject: [PATCH 1156/2686] Update MySQL example stack The mysql_native_password plugin is now disabled-by-default (and adminer is in a sad state). --- mysql/stack.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/mysql/stack.yml b/mysql/stack.yml index ed16565b6311..bdb35f606ec5 100644 --- a/mysql/stack.yml +++ b/mysql/stack.yml @@ -5,15 +5,7 @@ services: db: image: mysql - # NOTE: use of "mysql_native_password" is not recommended: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password - # (this is just an example, not intended to be a production configuration) - command: --default-authentication-plugin=mysql_native_password restart: always environment: MYSQL_ROOT_PASSWORD: example - - adminer: - image: adminer - restart: always - ports: - - 8080:8080 + # (this is just an example, not intended to be a production configuration) From bf4651f3175200933b4f5c7c8f0e106edf90a556 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 May 2024 12:19:52 -0700 Subject: [PATCH 1157/2686] Run update.sh --- mysql/README.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 286bad68da3e..4a42f157aaa9 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -97,21 +97,13 @@ services: db: image: mysql - # NOTE: use of "mysql_native_password" is not recommended: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password - # (this is just an example, not intended to be a production configuration) - command: --default-authentication-plugin=mysql_native_password restart: always environment: MYSQL_ROOT_PASSWORD: example - - adminer: - image: adminer - restart: always - ports: - - 8080:8080 + # (this is just an example, not intended to be a production configuration) ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/06990e05c934d425c74addcc5ea462f53de6c8cd/mysql/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/869019c74d53153ad95bf9f6ff285d215c95e3ac/mysql/stack.yml) Run `docker stack deploy -c stack.yml mysql` (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). From f2b8e72e6ee57958d6693912f265e53816be1ece Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 May 2024 17:28:17 -0700 Subject: [PATCH 1158/2686] Run update.sh --- drupal/README.md | 24 ++++++++++++------------ mongo/README.md | 15 +++++++++++++++ rabbitmq/README.md | 12 ++++++------ 3 files changed, 33 insertions(+), 18 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 390ed7c5a19e..4d6d51bbadf5 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.2.5-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.5-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.5-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.5-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.5-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.5-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.5-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.5-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.5-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.5-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.3/fpm-alpine3.18/Dockerfile) -- [`10.2.5-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.5-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.5-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.5-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.5-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.5`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.5-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.5-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.5-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.5-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.5-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.5-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.5-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.5-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.5-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.5-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.5-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.5-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.5-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.5-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/6bc8971624096ff7373a4f776229cd1e90bb8fea/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.6-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.6-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.6-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.6-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.6-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.6-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.6-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.6-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.6-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.6-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.6-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.6-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.6-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.6-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.6-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.6`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.6-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.6-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.6-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.6-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.6-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.6-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.6-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.6-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.6-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.6-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.6-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.6-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.6-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.6-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.18/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bullseye/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index c177b6dcb80d..73d12b217318 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`7.0.10-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) +- [`7.0.10-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.10-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.10-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.10-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.9-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) - [`7.0.9-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.9-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) @@ -51,6 +56,16 @@ WARNING: ## Shared Tags +- `7.0.10-rc0`, `7.0-rc`: + - [`7.0.10-rc0-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) + - [`7.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.10-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.10-rc0-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.9`, `7.0`, `7`, `latest`: - [`7.0.9-jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) - [`7.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7b26cfac98ae..23ebd3f9a920 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.1`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f28dd30665e448d9aeb4af37d954cff9f427dfca/3.13/ubuntu/Dockerfile) -- [`3.13.1-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f28dd30665e448d9aeb4af37d954cff9f427dfca/3.13/alpine/Dockerfile) -- [`3.13.1-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/5303c63ae02475dd63d7d6c11a9fbb5f06200189/3.12/ubuntu/Dockerfile) +- [`3.13.2`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.13/ubuntu/Dockerfile) +- [`3.13.2-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.2-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.13/alpine/Dockerfile) +- [`3.13.2-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.12/ubuntu/Dockerfile) - [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/5303c63ae02475dd63d7d6c11a9fbb5f06200189/3.12/alpine/Dockerfile) +- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.12/alpine/Dockerfile) - [`3.12.13-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) From a2999f85fbe219a76679eca749e0a36693379e6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 May 2024 11:02:37 -0700 Subject: [PATCH 1159/2686] Run update.sh --- mysql/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 4a42f157aaa9..f44cef41863e 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `8.4.0-oraclelinux8`, `8.4-oraclelinux8`, `8-oraclelinux8`, `lts-oraclelinux8`, `oraclelinux8`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/c05422492215b3f0602409288c868ee4fd606ac3/8.4/Dockerfile.oracle) -- [`8.0.37`, `8.0`, `8.0.37-oraclelinux8`, `8.0-oraclelinux8`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.oracle) +- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.4/Dockerfile.oracle) +- [`8.0.37`, `8.0`, `8.0.37-oraclelinux9`, `8.0-oraclelinux9`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.0/Dockerfile.oracle) - [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.debian) # Quick reference (cont.) From 73a097e01d0f5a7a9a7127bf71e9373216ab157e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 May 2024 11:10:30 -0700 Subject: [PATCH 1160/2686] Run update.sh --- alt/README.md | 7 +++---- arangodb/README.md | 3 +-- clearlinux/README.md | 2 +- crate/README.md | 4 ++-- erlang/README.md | 12 ++++++------ nginx/README.md | 20 ++++++++++---------- solr/README.md | 14 ++++++-------- 7 files changed, 29 insertions(+), 33 deletions(-) diff --git a/alt/README.md b/alt/README.md index 171dfdd44247..894240cb6023 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/773acfd940ca9f9a7bd26a71f0b8d78ff088cdca/x86_64/Dockerfile) -- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/29295d2ce735b810bf3b20938c96b7a42b72804d/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/b2dc65ecb8fde29614d6b090c87418b677e82862/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/924b51de1708a3c8b0dd76193a414460ff721c35/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/fc69e420b7b8c5b62cd3d8b13562f122ecdcc2d7/x86_64/Dockerfile) # Quick reference (cont.) @@ -36,7 +35,7 @@ WARNING: For create new bug, please use [ALT's bugzilla page](https://bugzilla.altlinux.org/enter_bug.cgi?product=Docker) (choose `Official image` as component and include details about image problems in the description) or [GitHub](https://github.com/alt-cloud/docker-brew-alt/issues). - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/alt/), [`arm32v7`](https://hub.docker.com/r/arm32v7/alt/), [`arm64v8`](https://hub.docker.com/r/arm64v8/alt/), [`i386`](https://hub.docker.com/r/i386/alt/), [`ppc64le`](https://hub.docker.com/r/ppc64le/alt/) + [`amd64`](https://hub.docker.com/r/amd64/alt/), [`arm64v8`](https://hub.docker.com/r/arm64v8/alt/), [`i386`](https://hub.docker.com/r/i386/alt/) - **Published image artifact details**: [repo-info repo's `repos/alt/` directory](https://github.com/docker-library/repo-info/blob/master/repos/alt) ([history](https://github.com/docker-library/repo-info/commits/master/repos/alt)) diff --git a/arangodb/README.md b/arangodb/README.md index 0b52edd3ed5b..bc747a0311ae 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.10`, `3.10.14`](https://github.com/arangodb/arangodb-docker/blob/7b5dbaf1499367a8215a11bb5728f1d7264046cf/alpine/3.10.14/Dockerfile) - [`3.11`, `3.11.8`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) -- [`3.12`, `3.12.0`, `latest`](https://github.com/arangodb/arangodb-docker/blob/c507e8709115419c988f47f735f72a4d95538131/alpine/3.12.0/Dockerfile) +- [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 484036b35114..1efb03f038b1 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fa6f05c3b03696821ec9c3a03b98220db6411564/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/645ef28f75cecfb06bbf2e20403bd921443a256a/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 63ee21744ef4..dfd76cb7063f 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.0`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/e5f4be7fe5e79bddb6df4db6a1a11b22b6a95228/Dockerfile) -- [`5.6.4`, `5.6`](https://github.com/crate/docker-crate/blob/51f22540833a2f98b7984019e16d496314934a91/Dockerfile) +- [`5.7.1`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/e7c38997baf9838961e5e9b3771275e00c17ee23/Dockerfile) +- [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) - [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 85e59fc67db8..4cce4ec079e7 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -27,12 +27,12 @@ WARNING: - [`27.0-rc3.0.0`, `27.0-rc3.0`, `27.0-rc3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/Dockerfile) - [`27.0-rc3.0.0-slim`, `27.0-rc3.0-slim`, `27.0-rc3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/slim/Dockerfile) - [`27.0-rc3.0.0-alpine`, `27.0-rc3.0-alpine`, `27.0-rc3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/alpine/Dockerfile) -- [`26.2.4.0`, `26.2.4`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/Dockerfile) -- [`26.2.4.0-slim`, `26.2.4-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/slim/Dockerfile) -- [`26.2.4.0-alpine`, `26.2.4-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/26/alpine/Dockerfile) -- [`25.3.2.11`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/Dockerfile) -- [`25.3.2.11-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/slim/Dockerfile) -- [`25.3.2.11-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7251e9a4b2ec0fee20baea796a9e6386a7987d05/25/alpine/Dockerfile) +- [`26.2.5.0`, `26.2.5`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/Dockerfile) +- [`26.2.5.0-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/slim/Dockerfile) +- [`26.2.5.0-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/alpine/Dockerfile) +- [`25.3.2.12`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/Dockerfile) +- [`25.3.2.12-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/slim/Dockerfile) +- [`25.3.2.12-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) - [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index 995b8425de14..aae3c7c02069 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/66c0f94b4c764b1a531528e8c242ad94497011f6/mainline/debian/Dockerfile) +- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/debian/Dockerfile) - [`1.25.5-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-perl/Dockerfile) - [`1.25.5-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-otel/Dockerfile) -- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine/Dockerfile) -- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-perl/Dockerfile) -- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-slim/Dockerfile) -- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/mainline/alpine-otel/Dockerfile) -- [`1.26.0`, `stable`, `1.26`, `1.26.0-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/66c0f94b4c764b1a531528e8c242ad94497011f6/stable/debian/Dockerfile) +- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine/Dockerfile) +- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-perl/Dockerfile) +- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-slim/Dockerfile) +- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-otel/Dockerfile) +- [`1.26.0`, `stable`, `1.26`, `1.26.0-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/debian/Dockerfile) - [`1.26.0-perl`, `stable-perl`, `1.26-perl`, `1.26.0-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-perl/Dockerfile) - [`1.26.0-otel`, `stable-otel`, `1.26-otel`, `1.26.0-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-otel/Dockerfile) -- [`1.26.0-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.0-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/stable/alpine/Dockerfile) -- [`1.26.0-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.0-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3fb7e2e6266d5652dabe275dbfd50bdb3418361e/stable/alpine-perl/Dockerfile) -- [`1.26.0-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.0-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/ed439d2266cee6304339d50c5fe33d8f87f6eb37/stable/alpine-slim/Dockerfile) -- [`1.26.0-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.0-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/33588b16913fe91d3a201043b73f3366d15fcce1/stable/alpine-otel/Dockerfile) +- [`1.26.0-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.0-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine/Dockerfile) +- [`1.26.0-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.0-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-perl/Dockerfile) +- [`1.26.0-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.0-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-slim/Dockerfile) +- [`1.26.0-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.0-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-otel/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 654f536adcb8..146b8642ae4f 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,14 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.6.0`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.6/Dockerfile) -- [`9.6.0-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.6-slim/Dockerfile) -- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.5/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.5-slim/Dockerfile) -- [`9.4.1`, `9.4`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.4/Dockerfile) -- [`9.4.1-slim`, `9.4-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/9.4-slim/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/e5a988a1d36ac74714ff58117f0d99a9466bd3d1/8.11-slim/Dockerfile) +- [`9.6.0`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.6/Dockerfile) +- [`9.6.0-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.6-slim/Dockerfile) +- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.5-slim/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/8.11-slim/Dockerfile) # Quick reference (cont.) From 7ca74859608d5a425b94d49a08519f7c91ab04d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 May 2024 11:15:32 -0700 Subject: [PATCH 1161/2686] Run update.sh --- composer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/README.md b/composer/README.md index cdad4eb9464a..9ea2efdc9dd1 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.4`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/15059369bbffef3538e836856ac818f423c04c7e/2.7/Dockerfile) +- [`2.7.6`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/00d7335279ab1183a73746a931fa9519475ab47b/2.7/Dockerfile) - [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) From e32bc073ebbf2d3f7d5ae283b4d5073e93549a41 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 May 2024 12:11:14 -0700 Subject: [PATCH 1162/2686] Run update.sh --- almalinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index d2dd956e439f..16f31701ebb5 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -26,8 +26,8 @@ WARNING: - [`8`, `8.9`, `8.9-20240410`](https://github.com/AlmaLinux/container-images/blob/7aee1db985cc9ebb0347f2f4875f301fa4b09ab7/default/amd64/Dockerfile) - [`8-minimal`, `8.9-minimal`, `8.9-minimal-20240410`](https://github.com/AlmaLinux/container-images/blob/265e51205d22917cbc7c60839c131dea85296705/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.3`, `9.3-20240410`](https://github.com/AlmaLinux/container-images/blob/81d7017ae90da3bcddd6dc89663d2a5d3b2891b8/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.3-minimal`, `9.3-minimal-20240410`](https://github.com/AlmaLinux/container-images/blob/8812c340f41fa91678d1e71c3494a8811458425a/minimal/amd64/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/default/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/minimal/amd64/Dockerfile) # Quick reference (cont.) From ce0d4a0c1d1026b4d284ae44eb849767cd07552b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 May 2024 16:44:22 -0700 Subject: [PATCH 1163/2686] Run update.sh --- haproxy/README.md | 4 ++-- memcached/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 8 ++++---- wordpress/README.md | 9 +++++++++ 5 files changed, 35 insertions(+), 26 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 3f4c61c2bbb8..ace47f896334 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev9`, `3.0-dev`, `3.0-dev9-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/024ece8e67340cde4d0bb69ac691acc68fad3209/3.0/Dockerfile) -- [`3.0-dev9-alpine`, `3.0-dev-alpine`, `3.0-dev9-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/024ece8e67340cde4d0bb69ac691acc68fad3209/3.0/alpine/Dockerfile) +- [`3.0-dev10`, `3.0-dev`, `3.0-dev10-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/bee24556617145c3ba3bdba134a540dc5ddae378/3.0/Dockerfile) +- [`3.0-dev10-alpine`, `3.0-dev-alpine`, `3.0-dev10-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/bee24556617145c3ba3bdba134a540dc5ddae378/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 4e09e3088e90..06c4f5f86dff 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.26`, `1.6`, `1`, `latest`, `1.6.26-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/8508f4b565116fb0fa338b124848768453026c68/1/debian/Dockerfile) -- [`1.6.26-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.26-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/5699d909d4f9d7f733a79d4793b323d3ad63453a/1/alpine/Dockerfile) +- [`1.6.27`, `1.6`, `1`, `latest`, `1.6.27-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/89cfc0a083fd575c2d809c280e7e5ba9b1622072/1/debian/Dockerfile) +- [`1.6.27-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.27-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/89cfc0a083fd575c2d809c280e7e5ba9b1622072/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 397a6be11d5e..a9fbd86a7863 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-18-jdk-oraclelinux9`, `23-ea-18-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-18-jdk-oracle`, `23-ea-18-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-18-jdk-oraclelinux8`, `23-ea-18-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-18-jdk-bookworm`, `23-ea-18-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/bookworm/Dockerfile) -- [`23-ea-18-jdk-slim-bookworm`, `23-ea-18-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-18-jdk-slim`, `23-ea-18-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-18-jdk-bullseye`, `23-ea-18-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/bullseye/Dockerfile) -- [`23-ea-18-jdk-slim-bullseye`, `23-ea-18-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-18-jdk-windowsservercore-ltsc2022`, `23-ea-18-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-18-jdk-windowsservercore-1809`, `23-ea-18-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-18-jdk-nanoserver-1809`, `23-ea-18-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-21-jdk-oraclelinux9`, `23-ea-21-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-21-jdk-oracle`, `23-ea-21-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-21-jdk-oraclelinux8`, `23-ea-21-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-21-jdk-bookworm`, `23-ea-21-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/bookworm/Dockerfile) +- [`23-ea-21-jdk-slim-bookworm`, `23-ea-21-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-21-jdk-slim`, `23-ea-21-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-21-jdk-bullseye`, `23-ea-21-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/bullseye/Dockerfile) +- [`23-ea-21-jdk-slim-bullseye`, `23-ea-21-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-21-jdk-windowsservercore-ltsc2022`, `23-ea-21-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-21-jdk-windowsservercore-1809`, `23-ea-21-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-21-jdk-nanoserver-1809`, `23-ea-21-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-18-jdk`, `23-ea-18`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-18-jdk-windowsservercore`, `23-ea-18-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-18-jdk-nanoserver`, `23-ea-18-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/69172921782f9cd8982106f9e84b3020a67b4bdc/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-21-jdk`, `23-ea-21`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-21-jdk-windowsservercore`, `23-ea-21-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-21-jdk-nanoserver`, `23-ea-21-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 23ebd3f9a920..401260a1cbd0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,10 +28,10 @@ WARNING: - [`3.13.2-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) - [`3.13.2-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.13/alpine/Dockerfile) - [`3.13.2-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.13`, `3.12`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.12/ubuntu/Dockerfile) -- [`3.12.13-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.13-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.12/alpine/Dockerfile) -- [`3.12.13-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/ubuntu/Dockerfile) +- [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/alpine/Dockerfile) +- [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 2a4e5bf4b94a..cb25c1a9c557 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) +- [`beta-6.5.3-RC1-php8.1-apache`, `beta-6.5.3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5.3-RC1-php8.1`, `beta-6.5.3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/apache/Dockerfile) +- [`beta-6.5.3-RC1-php8.1-fpm`, `beta-6.5.3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5.3-RC1-php8.1-fpm-alpine`, `beta-6.5.3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5.3-RC1-apache`, `beta-6.5.3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5.3-RC1`, `beta-6.5.3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5.3-RC1-php8.2-apache`, `beta-6.5.3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5.3-RC1-php8.2`, `beta-6.5.3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/apache/Dockerfile) +- [`beta-6.5.3-RC1-fpm`, `beta-6.5.3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5.3-RC1-php8.2-fpm`, `beta-6.5.3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5.3-RC1-fpm-alpine`, `beta-6.5.3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5.3-RC1-php8.2-fpm-alpine`, `beta-6.5.3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5.3-RC1-php8.3-apache`, `beta-6.5.3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5.3-RC1-php8.3`, `beta-6.5.3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/apache/Dockerfile) +- [`beta-6.5.3-RC1-php8.3-fpm`, `beta-6.5.3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5.3-RC1-php8.3-fpm-alpine`, `beta-6.5.3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 59fe48339595684e623574e9ed2bdc44b5ef61d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 May 2024 10:11:03 -0700 Subject: [PATCH 1164/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 896c2dc1ee5b..269d4a237e57 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.22.2-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bookworm/Dockerfile) -- [`1.22.2-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bullseye/Dockerfile) -- [`1.22.2-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.2-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/alpine3.19/Dockerfile) -- [`1.22.2-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/alpine3.18/Dockerfile) -- [`1.22.2-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.2-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.2-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.2-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.9-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bookworm/Dockerfile) -- [`1.21.9-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bullseye/Dockerfile) -- [`1.21.9-alpine3.19`, `1.21-alpine3.19`, `1.21.9-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/alpine3.19/Dockerfile) -- [`1.21.9-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/alpine3.18/Dockerfile) -- [`1.21.9-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.9-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.9-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.9-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.3-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bookworm/Dockerfile) +- [`1.22.3-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bullseye/Dockerfile) +- [`1.22.3-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.3-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.19/Dockerfile) +- [`1.22.3-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.18/Dockerfile) +- [`1.22.3-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.3-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.3-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.3-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.10-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bookworm/Dockerfile) +- [`1.21.10-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bullseye/Dockerfile) +- [`1.21.10-alpine3.19`, `1.21-alpine3.19`, `1.21.10-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.19/Dockerfile) +- [`1.21.10-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.18/Dockerfile) +- [`1.21.10-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.10-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.10-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.10-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.22.2`, `1.22`, `1`, `latest`: - - [`1.22.2-bookworm`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/bookworm/Dockerfile) - - [`1.22.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.2-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.2-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/ea6bbce8c9b13acefed0f5507336be01f0918f97/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.9`, `1.21`: - - [`1.21.9-bookworm`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/bookworm/Dockerfile) - - [`1.21.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.9-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.9-nanoserver`, `1.21-nanoserver`: - - [`1.21.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/8e88a7ff80459c7663355a7597aae18097fefc93/1.21/windows/nanoserver-1809/Dockerfile) +- `1.22.3`, `1.22`, `1`, `latest`: + - [`1.22.3-bookworm`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bookworm/Dockerfile) + - [`1.22.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.3-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.3-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.10`, `1.21`: + - [`1.21.10-bookworm`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bookworm/Dockerfile) + - [`1.21.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.10-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.10-nanoserver`, `1.21-nanoserver`: + - [`1.21.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 4d38ce53f97dcff152224a6a4599c5686cdf5b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Tue, 7 May 2024 22:58:10 +0200 Subject: [PATCH 1165/2686] Update Solr README (#2444) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Solr README with project name and removing old Log4j notice Co-authored-by: Jan Høydahl Co-authored-by: Houston Putman --- solr/content.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/solr/content.md b/solr/content.md index 2bc885d95d65..7f0b07d665f6 100644 --- a/solr/content.md +++ b/solr/content.md @@ -1,6 +1,6 @@ # What is Solr? -Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest internet sites. +Apache Solr™ is the popular, blazing fast, open source NoSQL search platform. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest websites. Learn more on [Apache Solr homepage](http://solr.apache.org/) and in the [Apache Solr Reference Guide](https://solr.apache.org/guide/). @@ -27,13 +27,3 @@ Please direct any usage questions to the [Solr users mailing list](https://solr. # History This project was started in 2015 by [Martijn Koster](https://github.com/makuk66) in the [github.com/docker-solr/docker-solr](https://github.com/docker-solr/docker-solr) repository. In 2019, the maintainership and copyright was transferred to the Apache Solr project. Many thanks to Martijn for all your contributions over the years! - -# NOTE: Not vulnerable to Log4J 2 "Log4shell" - -Some Docker images *were* vulnerable to one of a pair of vulnerabilities in Log4J 2. But we have mitigated *[supported](https://hub.docker.com/_/solr?tab=tags)* images (and some others) and re-published them. You may need to re-pull the image you are using. For those images prior to 8.11.1, Solr is using a popular technique to mitigate the problem -- setting `log4j2.formatMsgNoLookups`. The Solr maintainers have deemed this adequate based specifically on how Solr uses logging; it won't be adequate for all projects that use Log4J. Scanning software might alert you to the presence of an older Log4J JAR file, however it can't know if your software (Solr) uses the artifacts in a vulnerable way. To validate the mitigation being in place, look for `-Dlog4j2.formatMsgNoLookups` in the Args section of Solr's front admin screen. As of Solr 8.11.1, Solr is using Log4J 2.16.0. - -References: - -- [CVE-2021-44228](https://nvd.nist.gov/vuln/detail/CVE-2021-44228): Solr *was* vulnerable to this. -- [CVE-2021-45046](https://nvd.nist.gov/vuln/detail/CVE-2021-45046): Solr *never was* vulnerable to this. -- [Solr security bulletin](https://solr.apache.org/security.html#apache-solr-affected-by-apache-log4j-cve-2021-44228) From b6e3e4c8743d790476b6b000c436c6a5ce406611 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 May 2024 14:40:40 -0700 Subject: [PATCH 1166/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- node/README.md | 16 ++++++++-------- solr/README.md | 12 +----------- 5 files changed, 12 insertions(+), 22 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index c4fe8fe17eef..0074d7eedcc4 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/elasticsearch/Dockerfile) +- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/elasticsearch/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 9d351fcc9a21..c4bb02353840 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/kibana/Dockerfile) +- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/kibana/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 65a177c8a0b4..861f6fef4dc1 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0`](https://github.com/elastic/dockerfiles/blob/4269a02cf8a56844db30e5e74b23087840ee6fcb/logstash/Dockerfile) +- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/logstash/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index d04d972924da..492a5fc2e123 100644 --- a/node/README.md +++ b/node/README.md @@ -36,14 +36,14 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.12-alpine3.18`, `20.12.2-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.12-alpine`, `20.12-alpine3.19`, `20.12.2-alpine`, `20.12.2-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.12`, `20.12-bookworm`, `20.12.2`, `20.12.2-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.12-bookworm-slim`, `20.12-slim`, `20.12.2-bookworm-slim`, `20.12.2-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.12-bullseye`, `20.12.2-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.12-bullseye-slim`, `20.12.2-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.12-buster`, `20.12.2-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/buster/Dockerfile) -- [`20-buster-slim`, `20.12-buster-slim`, `20.12.2-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/20/buster-slim/Dockerfile) +- [`20-alpine3.18`, `20.13-alpine3.18`, `20.13.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.13-alpine`, `20.13-alpine3.19`, `20.13.0-alpine`, `20.13.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.13`, `20.13-bookworm`, `20.13.0`, `20.13.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.13-bookworm-slim`, `20.13-slim`, `20.13.0-bookworm-slim`, `20.13.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.13-bullseye`, `20.13.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.13-buster`, `20.13.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/buster/Dockerfile) +- [`20-buster-slim`, `20.13-buster-slim`, `20.13.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/buster-slim/Dockerfile) - [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.18/Dockerfile) - [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.19/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm/Dockerfile) diff --git a/solr/README.md b/solr/README.md index 146b8642ae4f..b2175bb2732d 100644 --- a/solr/README.md +++ b/solr/README.md @@ -52,7 +52,7 @@ WARNING: # What is Solr? -Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest internet sites. +Apache Solr™ is the popular, blazing fast, open source NoSQL search platform. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest websites. Learn more on [Apache Solr homepage](http://solr.apache.org/) and in the [Apache Solr Reference Guide](https://solr.apache.org/guide/). @@ -80,16 +80,6 @@ Please direct any usage questions to the [Solr users mailing list](https://solr. This project was started in 2015 by [Martijn Koster](https://github.com/makuk66) in the [github.com/docker-solr/docker-solr](https://github.com/docker-solr/docker-solr) repository. In 2019, the maintainership and copyright was transferred to the Apache Solr project. Many thanks to Martijn for all your contributions over the years! -# NOTE: Not vulnerable to Log4J 2 "Log4shell" - -Some Docker images *were* vulnerable to one of a pair of vulnerabilities in Log4J 2. But we have mitigated *[supported](https://hub.docker.com/_/solr?tab=tags)* images (and some others) and re-published them. You may need to re-pull the image you are using. For those images prior to 8.11.1, Solr is using a popular technique to mitigate the problem -- setting `log4j2.formatMsgNoLookups`. The Solr maintainers have deemed this adequate based specifically on how Solr uses logging; it won't be adequate for all projects that use Log4J. Scanning software might alert you to the presence of an older Log4J JAR file, however it can't know if your software (Solr) uses the artifacts in a vulnerable way. To validate the mitigation being in place, look for `-Dlog4j2.formatMsgNoLookups` in the Args section of Solr's front admin screen. As of Solr 8.11.1, Solr is using Log4J 2.16.0. - -References: - -- [CVE-2021-44228](https://nvd.nist.gov/vuln/detail/CVE-2021-44228): Solr *was* vulnerable to this. -- [CVE-2021-45046](https://nvd.nist.gov/vuln/detail/CVE-2021-45046): Solr *never was* vulnerable to this. -- [Solr security bulletin](https://solr.apache.org/security.html#apache-solr-affected-by-apache-log4j-cve-2021-44228) - # Image Variants The `solr` images come in many flavors, each designed for a specific use case. From 1e39fa8ca5b40ae8db150ec470e59c68ce12b507 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 May 2024 15:10:26 -0700 Subject: [PATCH 1167/2686] Run update.sh --- bash/README.md | 2 +- dart/README.md | 4 ++-- photon/README.md | 6 +++--- tomcat/README.md | 36 ++++++++++++++++++------------------ 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/bash/README.md b/bash/README.md index fe5726f71756..09183fabe9c7 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240426`, `devel`, `devel-20240426-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/88f1a7983c648b5243097013c59fd6ac213804c3/devel/Dockerfile) +- [`devel-20240506`, `devel`, `devel-20240506-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/26bc4347a3bd2d3f66704ecb7723e807944a750c/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 4737d2abc0c7..a0c210a60da9 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6db7fe0008dcb4c8a3bb99fd6bde8c9ed30893f5/stable/bookworm/Dockerfile) -- [`3.4.0-282.3.beta-sdk`, `beta-sdk`, `3.4.0-282.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6db7fe0008dcb4c8a3bb99fd6bde8c9ed30893f5/beta/bookworm/Dockerfile) +- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e5d57c015433bbc643db1412d0afecdf790d8eec/stable/bookworm/Dockerfile) +- [`3.4.0-282.4.beta-sdk`, `beta-sdk`, `3.4.0-282.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e5d57c015433bbc643db1412d0afecdf790d8eec/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 42976fce8338..76f0e179955f 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240421`, `latest`](https://github.com/vmware/photon-docker-image/blob/79a90ceb52e2e2cded92d12f6a74989da688bcdf/docker/Dockerfile) -- [`4.0`, `4.0-20240421`](https://github.com/vmware/photon-docker-image/blob/9eb03b6e75e38853d54235850cc485b407f60084/docker/Dockerfile) -- [`3.0`, `3.0-20240428`](https://github.com/vmware/photon-docker-image/blob/3cdc028d62668aabedb0102798470951884d8f56/docker/Dockerfile) +- [`5.0`, `5.0-20240506`, `latest`](https://github.com/vmware/photon-docker-image/blob/1a711bc7cfc75e9aad9b49cf3783fb26ea83d14e/docker/Dockerfile) +- [`4.0`, `4.0-20240507`](https://github.com/vmware/photon-docker-image/blob/1df59ed92c8faf4b2236f3b4d927ee88f08689ac/docker/Dockerfile) +- [`3.0`, `3.0-20240506`](https://github.com/vmware/photon-docker-image/blob/dbded9110b78abcc430bfdb80ef2e8027675cd26/docker/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 7ce9401c0533..24f5446e0d9e 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -32,24 +32,24 @@ WARNING: - [`10.1.23-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.23-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.23-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre17/temurin-jammy/Dockerfile) - [`10.1.23-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.23-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.23-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk11/temurin-jammy/Dockerfile) - [`10.1.23-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.23-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.23-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.88-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.88-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.88-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.88`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.88-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.88-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.88-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.88-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.88-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.88-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.88-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.88-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.88-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.88-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.88-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.88-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.88-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.88-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.88-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.88-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.88-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.88-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.88-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.88-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.88-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.88-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.88-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.88-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.88-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.88-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.88-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.88-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.88-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.88-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.88-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.88-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.88-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.88-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.88-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0d2d248cac18cc77b863a552b07409cfb20da440/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.89-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.89-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.89-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.89`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.89-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.89-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.89-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.89-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.89-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.89-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.89-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.89-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.89-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.89-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.89-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.89-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.89-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.89-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.89-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.89-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.89-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.89-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.89-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.89-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.89-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.89-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.89-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.89-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.89-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.89-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.89-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.89-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.89-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.89-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.89-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.89-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.89-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.89-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.89-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 185a8a8bbcf9e522dddd43a1790e3145d2eabbdd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 May 2024 10:10:38 -0700 Subject: [PATCH 1168/2686] Run update.sh --- caddy/README.md | 46 +++++++++++++++++++++++----------------------- monica/README.md | 9 ++++++--- 2 files changed, 29 insertions(+), 26 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index c3951c3d9b56..40f9d1df98ba 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,40 +28,40 @@ WARNING: ## Simple Tags -- [`2.8.0-beta.1-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/alpine/Dockerfile) -- [`2.8.0-beta.1-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.8/builder/Dockerfile) -- [`2.8.0-beta.1-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) -- [`2.8.0-beta.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.0-beta.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/1809/Dockerfile) -- [`2.8.0-beta.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.8.0-beta.2-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/alpine/Dockerfile) +- [`2.8.0-beta.2-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/builder/Dockerfile) +- [`2.8.0-beta.2-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) +- [`2.8.0-beta.2-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.0-beta.2-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/1809/Dockerfile) +- [`2.8.0-beta.2-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/ltsc2022/Dockerfile) - [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) -- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/builder/Dockerfile) +- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/builder/Dockerfile) - [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) - [`2.7.6-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/1809/Dockerfile) -- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/1809/Dockerfile) +- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.8.0-beta.1`, `2.8`: - - [`2.8.0-beta.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/alpine/Dockerfile) - - [`2.8.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) - - [`2.8.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) -- `2.8.0-beta.1-builder`, `2.8-builder`: - - [`2.8.0-beta.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.8/builder/Dockerfile) - - [`2.8.0-beta.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/1809/Dockerfile) - - [`2.8.0-beta.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/98e68dd0425220e66e6c7425905489e35fefef67/2.8/windows-builder/ltsc2022/Dockerfile) -- `2.8.0-beta.1-windowsservercore`, `2.8-windowsservercore`: - - [`2.8.0-beta.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/1809/Dockerfile) - - [`2.8.0-beta.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-beta.2`, `2.8`: + - [`2.8.0-beta.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/alpine/Dockerfile) + - [`2.8.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) + - [`2.8.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-beta.2-builder`, `2.8-builder`: + - [`2.8.0-beta.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/builder/Dockerfile) + - [`2.8.0-beta.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/1809/Dockerfile) + - [`2.8.0-beta.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.0-beta.2-windowsservercore`, `2.8-windowsservercore`: + - [`2.8.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) + - [`2.8.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) - `2.7.6`, `2.7`, `2`, `latest`: - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) - `2.7.6-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/builder/Dockerfile) - - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/1809/Dockerfile) - - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/dff8340ae685a6a952b7fb08590d18462748537c/2.7/windows-builder/ltsc2022/Dockerfile) + - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/builder/Dockerfile) + - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/1809/Dockerfile) + - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/ltsc2022/Dockerfile) - `2.7.6-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) diff --git a/monica/README.md b/monica/README.md index 775bb0620bf4..04529d258973 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,9 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-apache`, `4.0-apache`, `4-apache`, `apache`, `4.0.0`, `4.0`, `4`, `latest`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/apache/Dockerfile) -- [`4.0.0-fpm`, `4.0-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/fpm/Dockerfile) -- [`4.0.0-fpm-alpine`, `4.0-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/96189780c639d1511691a3151dd4d90d2f757ee3/4/fpm-alpine/Dockerfile) +- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/apache/Dockerfile) +- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm/Dockerfile) +- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm-alpine/Dockerfile) +- [`5.0.0-beta.4-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/apache/Dockerfile) +- [`5.0.0-beta.4-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm/Dockerfile) +- [`5.0.0-beta.4-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm-alpine/Dockerfile) # Quick reference (cont.) From b72d846151a4bdf9ff8304f790f704dc84b995da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 May 2024 11:10:36 -0700 Subject: [PATCH 1169/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- tomcat/README.md | 4 ++-- wordpress/README.md | 27 +++++++++------------------ 3 files changed, 19 insertions(+), 28 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 592b939b5b5a..967fd59328a2 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/ea7dea56f1c0ce149bffae43b601949e97fd4356/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 24f5446e0d9e..d84a57e2e5cc 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M19-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M19-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M19-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M19`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M19-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M19-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M19-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d65af72b3d4c6593b177e3659d890c24443954fa/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M20-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M20-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M20-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M20`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M20-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M20-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M20-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.23-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.23-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.23-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.23`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.23-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.23-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.23-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre21/temurin-jammy/Dockerfile) - [`10.1.23-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.23-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.23-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk17/temurin-jammy/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index cb25c1a9c557..e7c81575c710 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.2-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.2-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/apache/Dockerfile) -- [`6.5.2-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/fpm/Dockerfile) -- [`6.5.2-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.2-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.2`, `6.5`, `6`, `latest`, `6.5.2-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.2-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/apache/Dockerfile) -- [`6.5.2-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.2-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/fpm/Dockerfile) -- [`6.5.2-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.2-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.2-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.2-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/apache/Dockerfile) -- [`6.5.2-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/fpm/Dockerfile) -- [`6.5.2-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0c3488c5a6623a4858964ba69950260018201d79/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.5.3-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.3-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/apache/Dockerfile) +- [`6.5.3-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/fpm/Dockerfile) +- [`6.5.3-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.5.3-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.3`, `6.5`, `6`, `latest`, `6.5.3-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.3-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/apache/Dockerfile) +- [`6.5.3-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.3-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/fpm/Dockerfile) +- [`6.5.3-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.3-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.5.3-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.3-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/apache/Dockerfile) +- [`6.5.3-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/fpm/Dockerfile) +- [`6.5.3-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5.3-RC1-php8.1-apache`, `beta-6.5.3-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5.3-RC1-php8.1`, `beta-6.5.3-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/apache/Dockerfile) -- [`beta-6.5.3-RC1-php8.1-fpm`, `beta-6.5.3-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5.3-RC1-php8.1-fpm-alpine`, `beta-6.5.3-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5.3-RC1-apache`, `beta-6.5.3-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5.3-RC1`, `beta-6.5.3`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5.3-RC1-php8.2-apache`, `beta-6.5.3-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5.3-RC1-php8.2`, `beta-6.5.3-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/apache/Dockerfile) -- [`beta-6.5.3-RC1-fpm`, `beta-6.5.3-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5.3-RC1-php8.2-fpm`, `beta-6.5.3-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5.3-RC1-fpm-alpine`, `beta-6.5.3-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5.3-RC1-php8.2-fpm-alpine`, `beta-6.5.3-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5.3-RC1-php8.3-apache`, `beta-6.5.3-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5.3-RC1-php8.3`, `beta-6.5.3-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/apache/Dockerfile) -- [`beta-6.5.3-RC1-php8.3-fpm`, `beta-6.5.3-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5.3-RC1-php8.3-fpm-alpine`, `beta-6.5.3-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6962a405a69d326425c7740c548620ab08f71575/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 25c9c8e4563679764f7199136c08e7c3fc72b0a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 May 2024 16:09:57 -0700 Subject: [PATCH 1170/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index c4673729067b..80f2e22f154e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.13.0a6-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bookworm/Dockerfile) -- [`3.13.0a6-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0a6-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0a6-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bullseye/Dockerfile) -- [`3.13.0a6-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0a6-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0a6-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0a6-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/alpine3.18/Dockerfile) -- [`3.13.0a6-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0a6-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0b1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bookworm/Dockerfile) +- [`3.13.0b1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0b1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bullseye/Dockerfile) +- [`3.13.0b1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0b1-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0b1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b1-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0b1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0b1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.3-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - [`3.12.3-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.3-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bookworm/Dockerfile) - [`3.12.3-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bullseye/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.13.0a6`, `3.13-rc`: - - [`3.13.0a6-bookworm`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/bookworm/Dockerfile) - - [`3.13.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0a6-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/330331fbe3c8d19befaba10ee329c5bf3a9dc225/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b1`, `3.13-rc`: + - [`3.13.0b1-bookworm`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b1-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.3`, `3.12`, `3`, `latest`: - [`3.12.3-bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) From 095634e091a8a773da5d64c1ffbbb0e3f60c1e46 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 May 2024 17:10:04 -0700 Subject: [PATCH 1171/2686] Run update.sh --- gcc/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index 78ecda534a96..c592a04bf574 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`13.2.0`, `13.2`, `13`, `latest`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/13/Dockerfile) -- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/11/Dockerfile) -- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/10/Dockerfile) -- [`9.5.0`, `9.5`, `9`, `9.5.0-bullseye`, `9.5-bullseye`, `9-bullseye`](https://github.com/docker-library/gcc/blob/9fbc8275f1adad750cdc7ad71a70254b7db4501e/9/Dockerfile) +- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/14/Dockerfile) +- [`13.2.0`, `13.2`, `13`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/13/Dockerfile) +- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/12/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/11/Dockerfile) +- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/10/Dockerfile) # Quick reference (cont.) From 9bebe3d2a9f3c1d8ca9f70a079603fe9c7c35162 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 May 2024 09:10:08 -0700 Subject: [PATCH 1172/2686] Run update.sh --- elasticsearch/README.md | 2 +- ibmjava/README.md | 6 +++--- kibana/README.md | 2 +- logstash/README.md | 2 +- mageia/README.md | 5 ++--- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 0074d7eedcc4..328e2a17d377 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/elasticsearch/Dockerfile) +- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/elasticsearch/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index ef11d218cba2..cf9b63167d7e 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/f928c61115fb517d40a1a34ec1831427da299cff/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index c4bb02353840..b7b5d884b87b 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/kibana/Dockerfile) +- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/kibana/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 861f6fef4dc1..ca37e60b6154 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.3`](https://github.com/elastic/dockerfiles/blob/f58005ad6373665fb276cd5efea1499829ba17ae/logstash/Dockerfile) +- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/logstash/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) # Quick reference (cont.) diff --git a/mageia/README.md b/mageia/README.md index 005de80589a4..37c74a4a09bc 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/9/x86_64/Dockerfile) -- [`8`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/8/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/2365d6c0c7c87fb7e120348bac4c3f1bd1e21af7/dist/cauldron/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/9/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) From e3e00b2dad3a6454bed75eb56eca6a09cdc17bae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 May 2024 12:11:03 -0700 Subject: [PATCH 1173/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 492a5fc2e123..775ec07a0b21 100644 --- a/node/README.md +++ b/node/README.md @@ -36,14 +36,14 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.13-alpine3.18`, `20.13.0-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.13-alpine`, `20.13-alpine3.19`, `20.13.0-alpine`, `20.13.0-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/alpine3.19/Dockerfile) -- [`20`, `20-bookworm`, `20.13`, `20.13-bookworm`, `20.13.0`, `20.13.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.13-bookworm-slim`, `20.13-slim`, `20.13.0-bookworm-slim`, `20.13.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.13-bullseye`, `20.13.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.13-buster`, `20.13.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/buster/Dockerfile) -- [`20-buster-slim`, `20.13-buster-slim`, `20.13.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/327062ece9d7406c9f463cb4006b599d5255d2cc/20/buster-slim/Dockerfile) +- [`20-alpine3.18`, `20.13-alpine3.18`, `20.13.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.18/Dockerfile) +- [`20-alpine`, `20-alpine3.19`, `20.13-alpine`, `20.13-alpine3.19`, `20.13.1-alpine`, `20.13.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.19/Dockerfile) +- [`20`, `20-bookworm`, `20.13`, `20.13-bookworm`, `20.13.1`, `20.13.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.13-bookworm-slim`, `20.13-slim`, `20.13.1-bookworm-slim`, `20.13.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.13-bullseye`, `20.13.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.13-buster`, `20.13.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster/Dockerfile) +- [`20-buster-slim`, `20.13-buster-slim`, `20.13.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster-slim/Dockerfile) - [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.18/Dockerfile) - [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.19/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm/Dockerfile) From a33d1dae65e9da6b74090cdef043f69796e16b45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 May 2024 15:10:47 -0700 Subject: [PATCH 1174/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- postgres/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2260016f33f6..26bb389aa9df 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/9-slim-fips/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/25b69e893143e2aa810c4bd2906e66ae6f5be75b/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9-slim-fips/Dockerfile) +- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 9e24d89664c9..0fac0ec347e2 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,26 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16.2`, `16`, `latest`, `16.2-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/16/bookworm/Dockerfile) -- [`16.2-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/16/bullseye/Dockerfile) -- [`16.2-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.2-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.19/Dockerfile) -- [`16.2-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/5403edd423ba9fd047d2abf5ed7fdb9131c7a527/16/alpine3.18/Dockerfile) -- [`15.6`, `15`, `15.6-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/15/bookworm/Dockerfile) -- [`15.6-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/15/bullseye/Dockerfile) -- [`15.6-alpine3.19`, `15-alpine3.19`, `15.6-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.19/Dockerfile) -- [`15.6-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/539bdac35db7b6a7f91c0b9d911522d21f5b9083/15/alpine3.18/Dockerfile) -- [`14.11`, `14`, `14.11-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/14/bookworm/Dockerfile) -- [`14.11-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/14/bullseye/Dockerfile) -- [`14.11-alpine3.19`, `14-alpine3.19`, `14.11-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.19/Dockerfile) -- [`14.11-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/3b6cb599da1bab72e4f57c54879e41c8c20fd036/14/alpine3.18/Dockerfile) -- [`13.14`, `13`, `13.14-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/13/bookworm/Dockerfile) -- [`13.14-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/13/bullseye/Dockerfile) -- [`13.14-alpine3.19`, `13-alpine3.19`, `13.14-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.19/Dockerfile) -- [`13.14-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/c3c66a192905283ee9c9c34b03c73180975e6fad/13/alpine3.18/Dockerfile) -- [`12.18`, `12`, `12.18-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/12/bookworm/Dockerfile) -- [`12.18-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ab6925051ca097d415816928a50c483ecc370c00/12/bullseye/Dockerfile) -- [`12.18-alpine3.19`, `12-alpine3.19`, `12.18-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.19/Dockerfile) -- [`12.18-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/764632913153817ef4216eebea6a4708ec5549fb/12/alpine3.18/Dockerfile) +- [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) +- [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) +- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.19/Dockerfile) +- [`16.3-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.18/Dockerfile) +- [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) +- [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) +- [`15.7-alpine3.19`, `15-alpine3.19`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.19/Dockerfile) +- [`15.7-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.18/Dockerfile) +- [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) +- [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) +- [`14.12-alpine3.19`, `14-alpine3.19`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.19/Dockerfile) +- [`14.12-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.18/Dockerfile) +- [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) +- [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) +- [`13.15-alpine3.19`, `13-alpine3.19`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.19/Dockerfile) +- [`13.15-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.18/Dockerfile) +- [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) +- [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) +- [`12.19-alpine3.19`, `12-alpine3.19`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.19/Dockerfile) +- [`12.19-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.18/Dockerfile) # Quick reference (cont.) From 76ba4e809356b2dc612f994f67fe6e75731fd91c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 May 2024 17:10:24 -0700 Subject: [PATCH 1175/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- mysql/README.md | 2 +- openjdk/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docker/README.md b/docker/README.md index d16aa8ccd800..f19eb34b30a9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.1.1-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.1-cli-alpine3.19`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/cli/Dockerfile) -- [`26.1.1-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.1-dind-alpine3.19`, `26.1.1`, `26.1`, `26`, `latest`, `26.1.1-alpine3.19`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/dind/Dockerfile) -- [`26.1.1-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/dind-rootless/Dockerfile) -- [`26.1.1-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.1-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.2-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/cli/Dockerfile) +- [`26.1.2-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.2-dind-alpine3.19`, `26.1.2`, `26.1`, `26`, `latest`, `26.1.2-alpine3.19`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/dind/Dockerfile) +- [`26.1.2-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/dind-rootless/Dockerfile) +- [`26.1.2-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.2-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.1.1-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c37212dbf56a2e90926a46e83787144a687415f0/26/windows/windowsservercore-1809/Dockerfile) +- `26.1.2-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index f44cef41863e..a11f5a937a8b 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.4/Dockerfile.oracle) +- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `innovation`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `innovation-oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`, `innovation-oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.4/Dockerfile.oracle) - [`8.0.37`, `8.0`, `8.0.37-oraclelinux9`, `8.0-oraclelinux9`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.0/Dockerfile.oracle) - [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.debian) diff --git a/openjdk/README.md b/openjdk/README.md index a9fbd86a7863..8c6a25b2140e 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-21-jdk-oraclelinux9`, `23-ea-21-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-21-jdk-oracle`, `23-ea-21-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-21-jdk-oraclelinux8`, `23-ea-21-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-21-jdk-bookworm`, `23-ea-21-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/bookworm/Dockerfile) -- [`23-ea-21-jdk-slim-bookworm`, `23-ea-21-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-21-jdk-slim`, `23-ea-21-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-21-jdk-bullseye`, `23-ea-21-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/bullseye/Dockerfile) -- [`23-ea-21-jdk-slim-bullseye`, `23-ea-21-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-21-jdk-windowsservercore-ltsc2022`, `23-ea-21-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-21-jdk-windowsservercore-1809`, `23-ea-21-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-21-jdk-nanoserver-1809`, `23-ea-21-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-22-jdk-oraclelinux9`, `23-ea-22-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-22-jdk-oracle`, `23-ea-22-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-22-jdk-oraclelinux8`, `23-ea-22-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-22-jdk-bookworm`, `23-ea-22-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/bookworm/Dockerfile) +- [`23-ea-22-jdk-slim-bookworm`, `23-ea-22-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-22-jdk-slim`, `23-ea-22-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-22-jdk-bullseye`, `23-ea-22-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/bullseye/Dockerfile) +- [`23-ea-22-jdk-slim-bullseye`, `23-ea-22-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-22-jdk-windowsservercore-ltsc2022`, `23-ea-22-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-22-jdk-windowsservercore-1809`, `23-ea-22-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-22-jdk-nanoserver-1809`, `23-ea-22-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-21-jdk`, `23-ea-21`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-21-jdk-windowsservercore`, `23-ea-21-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-21-jdk-nanoserver`, `23-ea-21-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/255abead69c1bbd351485e71da01e5f02acb56ca/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-22-jdk`, `23-ea-22`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-22-jdk-windowsservercore`, `23-ea-22-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-22-jdk-nanoserver`, `23-ea-22-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From c290a0736b1ec0a47a1454ed1bce0b3d5d91f5e7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 May 2024 11:10:26 -0700 Subject: [PATCH 1176/2686] Run update.sh --- jetty/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 24fe1a0fb21e..0c8ec278f1fa 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -39,14 +39,14 @@ WARNING: - [`9.4.54-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.54-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.54-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.54-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) - [`9.4.54-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.54-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.8-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.8-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.8-jre21`, `12.0-jre21`, `12-jre21`, `12.0.8-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.8-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.8-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.8-jre17`, `12.0-jre17`, `12-jre17`, `12.0.8-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.8-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.8-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.8`, `12.0`, `12`, `12.0.8-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.8-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.8-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.8-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.8-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.8-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.8-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.9-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.9-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.9-jre21`, `12.0-jre21`, `12-jre21`, `12.0.9-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.9-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.9-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.9-jre17`, `12.0-jre17`, `12-jre17`, `12.0.9-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.9-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.9-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.9`, `12.0`, `12`, `12.0.9-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.9-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.9-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.9-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.9-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.9-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.9-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.20-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.20-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21-alpine/Dockerfile) - [`11.0.20-jre21`, `11.0-jre21`, `11-jre21`, `11.0.20-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21/Dockerfile) - [`11.0.20-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.20-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17-alpine/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`10.0.20-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.20-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) - [`10.0.20-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.20-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.54-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.54-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.54-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk8/Dockerfile) - [`9.4.54-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.54-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.54-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.54-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.54-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk21/Dockerfile) - [`9.4.54-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.54-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.54-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.54-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.54-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.8-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.8-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.8-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.8-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.8-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/6b71f00c891be99fc1febd768e0a35381ba70316/amazoncorretto/12.0/jdk17/Dockerfile) +- [`9.4.54-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk11/Dockerfile) +- [`12.0.9-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.9-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.9-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.9-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.9-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.20-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk21/Dockerfile) - [`11.0.20-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.20-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.20-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk17/Dockerfile) - [`11.0.20-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.20-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.20-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk11/Dockerfile) - [`10.0.20-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.20-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.20-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.20-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.20-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk21/Dockerfile) - [`10.0.20-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.20-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.20-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk17/Dockerfile) - [`10.0.20-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.20-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.20-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) From 6ebfa55a1ef486c19eadc5eecc72aec8de63c3e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 May 2024 12:09:59 -0700 Subject: [PATCH 1177/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index f56b8416e627..4184483ccc46 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.8`, `ee-7.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/ad8cea0e848931c37e7a83c75fc87dad80dc0f70/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.8`, `ce-7.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/ad8cea0e848931c37e7a83c75fc87dad80dc0f70/community/debian12/Dockerfile) +- [`ee-7.0.0.9`, `ee-7.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/0e3d45027a31f3753283d1f92f94c86739f5103a/enterprise/debian12/Dockerfile) +- [`ce-7.0.0.9`, `ce-7.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/0e3d45027a31f3753283d1f92f94c86739f5103a/community/debian12/Dockerfile) # Quick reference (cont.) From 2bb63e73456f4bc836c5e42d6871131a82e548f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 May 2024 14:10:00 -0700 Subject: [PATCH 1178/2686] Run update.sh --- haproxy/README.md | 4 +-- php/README.md | 84 ++++++++++++++++------------------------------- 2 files changed, 30 insertions(+), 58 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index ace47f896334..62cde264745b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev10`, `3.0-dev`, `3.0-dev10-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/bee24556617145c3ba3bdba134a540dc5ddae378/3.0/Dockerfile) -- [`3.0-dev10-alpine`, `3.0-dev-alpine`, `3.0-dev10-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/bee24556617145c3ba3bdba134a540dc5ddae378/3.0/alpine/Dockerfile) +- [`3.0-dev11`, `3.0-dev`, `3.0-dev11-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/8db4f308c73a105b2f05c55f144486ccddb2c8af/3.0/Dockerfile) +- [`3.0-dev11-alpine`, `3.0-dev-alpine`, `3.0-dev11-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/8db4f308c73a105b2f05c55f144486ccddb2c8af/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) diff --git a/php/README.md b/php/README.md index 23774756692c..f8229aa35e1a 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.7RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.7RC1-bookworm`, `8.3-rc-bookworm`, `8.3.7RC1-cli`, `8.3-rc-cli`, `8.3.7RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.7RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.7RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.7RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.7RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.7RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.7RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.7RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.7RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.7RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.7RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.7RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.7RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.7RC1-alpine3.19`, `8.3-rc-alpine3.19`, `8.3.7RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.7RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.7RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`, `8.3.7RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.7RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`, `8.3.7RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.7RC1-cli-alpine3.18`, `8.3-rc-cli-alpine3.18`, `8.3.7RC1-alpine3.18`, `8.3-rc-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/cli/Dockerfile) -- [`8.3.7RC1-fpm-alpine3.18`, `8.3-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/fpm/Dockerfile) -- [`8.3.7RC1-zts-alpine3.18`, `8.3-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/32773dba07f8de4cd10afac27f18e46fe7917e1c/8.3-rc/alpine3.18/zts/Dockerfile) -- [`8.3.6-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.6-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.6-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.6`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/cli/Dockerfile) -- [`8.3.6-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.6-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/apache/Dockerfile) -- [`8.3.6-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.6-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/fpm/Dockerfile) -- [`8.3.6-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.6-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bookworm/zts/Dockerfile) -- [`8.3.6-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.6-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/cli/Dockerfile) -- [`8.3.6-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/apache/Dockerfile) -- [`8.3.6-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/fpm/Dockerfile) -- [`8.3.6-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/bullseye/zts/Dockerfile) -- [`8.3.6-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.6-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.6-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.6-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.6-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.6-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.6-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.6-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.6-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.6-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.6-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.6-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.3/alpine3.18/zts/Dockerfile) -- [`8.2.19RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.19RC1-bookworm`, `8.2-rc-bookworm`, `8.2.19RC1-cli`, `8.2-rc-cli`, `8.2.19RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.19RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.19RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.19RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.19RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.19RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.19RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.19RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.19RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.19RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.19RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.19RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.19RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.19RC1-alpine3.19`, `8.2-rc-alpine3.19`, `8.2.19RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.19RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.19RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`, `8.2.19RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.19RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`, `8.2.19RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.19RC1-cli-alpine3.18`, `8.2-rc-cli-alpine3.18`, `8.2.19RC1-alpine3.18`, `8.2-rc-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/cli/Dockerfile) -- [`8.2.19RC1-fpm-alpine3.18`, `8.2-rc-fpm-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/fpm/Dockerfile) -- [`8.2.19RC1-zts-alpine3.18`, `8.2-rc-zts-alpine3.18`](https://github.com/docker-library/php/blob/66a2b003aa8ffb75c18c72bd5789822ccdc9cf3a/8.2-rc/alpine3.18/zts/Dockerfile) -- [`8.2.18-cli-bookworm`, `8.2-cli-bookworm`, `8.2.18-bookworm`, `8.2-bookworm`, `8.2.18-cli`, `8.2-cli`, `8.2.18`, `8.2`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/cli/Dockerfile) -- [`8.2.18-apache-bookworm`, `8.2-apache-bookworm`, `8.2.18-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/apache/Dockerfile) -- [`8.2.18-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.18-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/fpm/Dockerfile) -- [`8.2.18-zts-bookworm`, `8.2-zts-bookworm`, `8.2.18-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bookworm/zts/Dockerfile) -- [`8.2.18-cli-bullseye`, `8.2-cli-bullseye`, `8.2.18-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/cli/Dockerfile) -- [`8.2.18-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/apache/Dockerfile) -- [`8.2.18-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/fpm/Dockerfile) -- [`8.2.18-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/bullseye/zts/Dockerfile) -- [`8.2.18-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.18-alpine3.19`, `8.2-alpine3.19`, `8.2.18-cli-alpine`, `8.2-cli-alpine`, `8.2.18-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.18-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.18-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.18-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.18-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.18-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.18-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.18-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.18-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/8480cf5cff5759bc4c1475f6873420edc2518218/8.2/alpine3.18/zts/Dockerfile) +- [`8.3.7-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.7-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.7-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.7`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/cli/Dockerfile) +- [`8.3.7-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.7-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/apache/Dockerfile) +- [`8.3.7-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.7-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/fpm/Dockerfile) +- [`8.3.7-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.7-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/zts/Dockerfile) +- [`8.3.7-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.7-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/cli/Dockerfile) +- [`8.3.7-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/apache/Dockerfile) +- [`8.3.7-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/fpm/Dockerfile) +- [`8.3.7-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/zts/Dockerfile) +- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.7-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.7-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/zts/Dockerfile) +- [`8.2.19-cli-bookworm`, `8.2-cli-bookworm`, `8.2.19-bookworm`, `8.2-bookworm`, `8.2.19-cli`, `8.2-cli`, `8.2.19`, `8.2`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/cli/Dockerfile) +- [`8.2.19-apache-bookworm`, `8.2-apache-bookworm`, `8.2.19-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/apache/Dockerfile) +- [`8.2.19-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.19-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/fpm/Dockerfile) +- [`8.2.19-zts-bookworm`, `8.2-zts-bookworm`, `8.2.19-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/zts/Dockerfile) +- [`8.2.19-cli-bullseye`, `8.2-cli-bullseye`, `8.2.19-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/cli/Dockerfile) +- [`8.2.19-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/apache/Dockerfile) +- [`8.2.19-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/fpm/Dockerfile) +- [`8.2.19-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/zts/Dockerfile) +- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.19-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.19-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/zts/Dockerfile) - [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/cli/Dockerfile) - [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/apache/Dockerfile) - [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/fpm/Dockerfile) From 0e87b531d5987c0227f12b89378c6287e4b75c23 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 May 2024 11:10:12 -0700 Subject: [PATCH 1179/2686] Run update.sh --- clearlinux/README.md | 2 +- odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 1efb03f038b1..d588b78d7cd9 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/645ef28f75cecfb06bbf2e20403bd921443a256a/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/0a57e13031956cb4c3c4329a45a9c557d5fd7186/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index a80ef4448226..6b29084bb24c 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/67e07c2791f2358d553765fb95f1baa779be09ec/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/15.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index c7280d67339a..78badf087942 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.3`, `16.3.0`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/5899d2bec3bf1f33db75d057607539cb22b27cc4/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.3`, `16.3.1`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.8`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mariadb-tomcat/Dockerfile) From 9dc939fb39229222c8f004c03dc4784a8faf56c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 May 2024 14:10:03 -0700 Subject: [PATCH 1180/2686] Run update.sh --- tomcat/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index d84a57e2e5cc..c2fc9e01265e 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,12 +26,12 @@ WARNING: - [`11.0.0-M20-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M20-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M20-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M20`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jdk21/temurin-jammy/Dockerfile) - [`11.0.0-M20-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M20-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M20-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.23-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.23-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.23-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.23`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.23-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.23-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.23-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.23-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.23-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.23-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.23-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.23-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.23-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.23-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.23-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.23-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.23-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.23-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.23-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/0f1782df06c95644f613cc43081a25239d17c974/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.24-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.24-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.24-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.24`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.24-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.24-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.24-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.24-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.24-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.24-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.24-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.24-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.24-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.24-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.24-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.24-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.24-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.24-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.24-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.89-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.89-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.89-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.89`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/temurin-jammy/Dockerfile) - [`9.0.89-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.89-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.89-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre21/temurin-jammy/Dockerfile) - [`9.0.89-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.89-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/corretto-al2/Dockerfile) From 31e549467ca4b4d5b9f8c7ea1eca65c146bd3c59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 May 2024 15:10:45 -0700 Subject: [PATCH 1181/2686] Run update.sh --- photon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon/README.md b/photon/README.md index 76f0e179955f..c31aa55edfd7 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20240506`, `latest`](https://github.com/vmware/photon-docker-image/blob/1a711bc7cfc75e9aad9b49cf3783fb26ea83d14e/docker/Dockerfile) -- [`4.0`, `4.0-20240507`](https://github.com/vmware/photon-docker-image/blob/1df59ed92c8faf4b2236f3b4d927ee88f08689ac/docker/Dockerfile) +- [`4.0`, `4.0-20240512`](https://github.com/vmware/photon-docker-image/blob/79fb08b8531b574f2733dba18b7939ba32281907/docker/Dockerfile) - [`3.0`, `3.0-20240506`](https://github.com/vmware/photon-docker-image/blob/dbded9110b78abcc430bfdb80ef2e8027675cd26/docker/Dockerfile) # Quick reference (cont.) From 6ad971a6faa7c3fb9bad7284f42bcc7fdd095d42 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 May 2024 17:10:12 -0700 Subject: [PATCH 1182/2686] Run update.sh --- debian/README.md | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/debian/README.md b/debian/README.md index 9f6c8cb1f8a5..11d384800ad3 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,34 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240423`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240423-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240423`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240423-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240423`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/buster/Dockerfile) -- [`buster-slim`, `buster-20240423-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldoldstable/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/rc-buggy/Dockerfile) -- [`sid`, `sid-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/sid/Dockerfile) -- [`sid-slim`, `sid-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/sid/slim/Dockerfile) -- [`stable`, `stable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/stable/slim/Dockerfile) -- [`testing`, `testing-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240423`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240423-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b4e40bf4d51e699d88feb27e10e9786accd6e09a/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240513`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240513-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240513`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240513-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240513`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/buster/Dockerfile) +- [`buster-slim`, `buster-20240513-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldoldstable/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/rc-buggy/Dockerfile) +- [`sid`, `sid-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/sid/Dockerfile) +- [`sid-slim`, `sid-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/sid/slim/Dockerfile) +- [`stable`, `stable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/slim/Dockerfile) +- [`testing`, `testing-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/unstable/slim/Dockerfile) # Quick reference (cont.) From 0009ba9ed37abd98ece69d4f6a64a4337f909e3a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 May 2024 12:10:05 -0700 Subject: [PATCH 1183/2686] Run update.sh --- dart/README.md | 3 +-- neo4j/README.md | 4 ++-- swipl/README.md | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dart/README.md b/dart/README.md index a0c210a60da9..3aa927f20542 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.4-sdk`, `3.3-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.3.4`, `3.3`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/e5d57c015433bbc643db1412d0afecdf790d8eec/stable/bookworm/Dockerfile) -- [`3.4.0-282.4.beta-sdk`, `beta-sdk`, `3.4.0-282.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/e5d57c015433bbc643db1412d0afecdf790d8eec/beta/bookworm/Dockerfile) +- [`3.4.0-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.0`, `3.4`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/4af4b313c55227fc3ff3adcf7fe64d919e5c636d/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index fc36caabd348..6e74b3ff4525 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -30,8 +30,8 @@ WARNING: - [`5.19.0-enterprise-ubi9`, `5.19-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/enterprise/Dockerfile) - [`5.19.0-community-ubi8`, `5.19-community-ubi8`, `5-community-ubi8`, `5.19.0-ubi8`, `5.19-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/community/Dockerfile) - [`5.19.0-enterprise-ubi8`, `5.19-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/enterprise/Dockerfile) -- [`4.4.33`, `4.4.33-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/4ec712022a9c5c99e7e869571bb6f4df744c3c21/4.4.33/bullseye/community/Dockerfile) -- [`4.4.33-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4ec712022a9c5c99e7e869571bb6f4df744c3c21/4.4.33/bullseye/enterprise/Dockerfile) +- [`4.4.34`, `4.4.34-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/community/Dockerfile) +- [`4.4.34-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 6304bdaa4fbf..1b7df9fd867f 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.2`](https://github.com/SWI-Prolog/docker-swipl/blob/78523261c9b99a1bd1bb3546e0fcbffc62ef7036/9.3.2/bookworm/Dockerfile) -- [`stable`, `9.2.4`](https://github.com/SWI-Prolog/docker-swipl/blob/78523261c9b99a1bd1bb3546e0fcbffc62ef7036/9.2.4/bookworm/Dockerfile) +- [`latest`, `9.3.6`](https://github.com/SWI-Prolog/docker-swipl/blob/3ef22f678af652268d24285defc0ae60e62e6d26/9.3.6/bookworm/Dockerfile) +- [`stable`, `9.2.4`](https://github.com/SWI-Prolog/docker-swipl/blob/3ef22f678af652268d24285defc0ae60e62e6d26/9.2.4/bookworm/Dockerfile) # Quick reference (cont.) From 93818cf9a967a4b91d3d6c8226e518649d3f9bee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 May 2024 15:10:23 -0700 Subject: [PATCH 1184/2686] Run update.sh --- bash/README.md | 2 +- sapmachine/README.md | 58 ++++++++++++++++++++++++++++++++------------ 2 files changed, 43 insertions(+), 17 deletions(-) diff --git a/bash/README.md b/bash/README.md index 09183fabe9c7..53dc013ddb26 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240506`, `devel`, `devel-20240506-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/26bc4347a3bd2d3f66704ecb7723e807944a750c/devel/Dockerfile) +- [`devel-20240513`, `devel`, `devel-20240513-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/f8e223431c8f4800eed1ec47f053e792c562eadd/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 2b2804ceecd2..5a3bfa5d853f 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,22 +24,48 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11-jre-headless-ubuntu`, `11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jre-headless/Dockerfile) -- [`11-jre-ubuntu`, `11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.23-jre-ubuntu`, `11.0.23-jre-ubuntu-jammy`, `11.0.23-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jre/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.23-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu-jammy`, `11.0.23-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jdk-headless/Dockerfile) -- [`11-jdk-ubuntu`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.23-jdk-ubuntu`, `11.0.23-jdk-ubuntu-jammy`, `11.0.23-jdk-ubuntu-22.04`, `11`, `11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.23`, `11.0.23-ubuntu-jammy`, `11.0.23-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c6d6157dc5402c0a764a98f0e7834ed7bda731e5/dockerfiles/official/11/ubuntu/jdk/Dockerfile) -- [`17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jre-headless/Dockerfile) -- [`17-jre-ubuntu`, `17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.11-jre-ubuntu`, `17.0.11-jre-ubuntu-jammy`, `17.0.11-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jre/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.11-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu-jammy`, `17.0.11-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jdk-headless/Dockerfile) -- [`17-jdk-ubuntu`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.11-jdk-ubuntu`, `17.0.11-jdk-ubuntu-jammy`, `17.0.11-jdk-ubuntu-22.04`, `17`, `17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.11`, `17.0.11-ubuntu-jammy`, `17.0.11-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0364624c84ae7ac67f62d1e1914a5fc4a4f2e60d/dockerfiles/official/17/ubuntu/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.3-jre-ubuntu`, `21.0.3-jre-ubuntu-jammy`, `21.0.3-jre-ubuntu-22.04`, `lts-jre-ubuntu`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.3-jdk-headless-ubuntu`, `21.0.3-jdk-headless-ubuntu-jammy`, `21.0.3-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jdk-headless/Dockerfile) -- [`21-jdk-ubuntu`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.3-jdk-ubuntu`, `21.0.3-jdk-ubuntu-jammy`, `21.0.3-jdk-ubuntu-22.04`, `lts-jdk-ubuntu`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21.0.3`, `21.0.3-ubuntu-jammy`, `21.0.3-ubuntu-22.04`, `lts`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/cef0ddd6ca75ce11f8a5a04c98e4d491cf5cc3b5/dockerfiles/official/21/ubuntu/jdk/Dockerfile) -- [`22-jre-headless-ubuntu`, `22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `22.0.1-jre-headless-ubuntu`, `22.0.1-jre-headless-ubuntu-jammy`, `22.0.1-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jre-headless/Dockerfile) -- [`22-jre-ubuntu`, `22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `22.0.1-jre-ubuntu`, `22.0.1-jre-ubuntu-jammy`, `22.0.1-jre-ubuntu-22.04`, `jre-ubuntu`, `jre-ubuntu-jammy`, `jre-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jre/Dockerfile) -- [`22-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `22.0.1-jdk-headless-ubuntu`, `22.0.1-jdk-headless-ubuntu-jammy`, `22.0.1-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-jammy-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jdk-headless/Dockerfile) -- [`22-jdk-ubuntu`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `22.0.1-jdk-ubuntu`, `22.0.1-jdk-ubuntu-jammy`, `22.0.1-jdk-ubuntu-22.04`, `jdk-ubuntu`, `jdk-ubuntu-jammy`, `jdk-ubuntu-jammy-22.04`, `22`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.1`, `22.0.1-ubuntu-jammy`, `22.0.1-ubuntu-22.04`, `latest`, `ubuntu-jammy`, `ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0676c4c8c552175a740f333fe0f0c31b4427f723/dockerfiles/official/22/ubuntu/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `22`, `22-jdk-ubuntu`, `22.0.1`, `22.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `22-ubuntu-noble`, `22-ubuntu-24.04`, `22.0.1-ubuntu-noble`, `22.0.1-ubuntu-24.04`, `22-jdk-ubuntu-noble`, `22-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `22.0.1-jdk-ubuntu-noble`, `22.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk/Dockerfile) +- [`jdk-headless-ubuntu`, `22-jdk-headless-ubuntu`, `22.0.1-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-noble`, `22-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `22.0.1-jdk-headless-ubuntu-noble`, `22.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jre-ubuntu`, `22-jre-ubuntu`, `22.0.1-jre-ubuntu`, `22-jre-ubuntu-noble`, `22-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `22.0.1-jre-ubuntu-noble`, `22.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre/Dockerfile) +- [`jre-headless-ubuntu`, `22-jre-headless-ubuntu`, `22.0.1-jre-headless-ubuntu`, `22-jre-headless-ubuntu-noble`, `22-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `22.0.1-jre-headless-ubuntu-noble`, `22.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre-headless/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.1-ubuntu-jammy`, `22.0.1-ubuntu-22.04`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `22.0.1-jdk-ubuntu-jammy`, `22.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk/Dockerfile) +- [`22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `22.0.1-jdk-headless-ubuntu-jammy`, `22.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk-headless/Dockerfile) +- [`22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `22.0.1-jre-ubuntu-jammy`, `22.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre/Dockerfile) +- [`22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `22.0.1-jre-headless-ubuntu-jammy`, `22.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre-headless/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `22-ubuntu-focal`, `22-ubuntu-20.04`, `22.0.1-ubuntu-focal`, `22.0.1-ubuntu-20.04`, `22-jdk-ubuntu-focal`, `22-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `22.0.1-jdk-ubuntu-focal`, `22.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk/Dockerfile) +- [`22-jdk-headless-ubuntu-focal`, `22-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `22.0.1-jdk-headless-ubuntu-focal`, `22.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk-headless/Dockerfile) +- [`22-jre-ubuntu-focal`, `22-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `22.0.1-jre-ubuntu-focal`, `22.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre/Dockerfile) +- [`22-jre-headless-ubuntu-focal`, `22-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `22.0.1-jre-headless-ubuntu-focal`, `22.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre-headless/Dockerfile) +- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.3`, `21.0.3-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.3-ubuntu-noble`, `21.0.3-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.3-jdk-ubuntu-noble`, `21.0.3-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk/Dockerfile) +- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.3-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.3-jdk-headless-ubuntu-noble`, `21.0.3-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.3-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.3-jre-ubuntu-noble`, `21.0.3-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.3-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.3-jre-headless-ubuntu-noble`, `21.0.3-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.3-ubuntu-jammy`, `21.0.3-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.3-jdk-ubuntu-jammy`, `21.0.3-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.3-jdk-headless-ubuntu-jammy`, `21.0.3-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.3-jre-ubuntu-jammy`, `21.0.3-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.3-ubuntu-focal`, `21.0.3-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.3-jdk-ubuntu-focal`, `21.0.3-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk/Dockerfile) +- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.3-jdk-headless-ubuntu-focal`, `21.0.3-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17`, `17-jdk-ubuntu`, `17.0.11`, `17.0.11-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.11-ubuntu-noble`, `17.0.11-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.11-jdk-ubuntu-noble`, `17.0.11-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.11-jdk-headless-ubuntu-noble`, `17.0.11-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jre-ubuntu`, `17.0.11-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.11-jre-ubuntu-noble`, `17.0.11-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre-headless-ubuntu`, `17.0.11-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.11-jre-headless-ubuntu-noble`, `17.0.11-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.11-ubuntu-jammy`, `17.0.11-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.11-jdk-ubuntu-jammy`, `17.0.11-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.11-jdk-headless-ubuntu-jammy`, `17.0.11-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.11-jre-ubuntu-jammy`, `17.0.11-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.11-ubuntu-focal`, `17.0.11-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.11-jdk-ubuntu-focal`, `17.0.11-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk/Dockerfile) +- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.11-jdk-headless-ubuntu-focal`, `17.0.11-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11`, `11-jdk-ubuntu`, `11.0.23`, `11.0.23-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.23-ubuntu-noble`, `11.0.23-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.23-jdk-ubuntu-noble`, `11.0.23-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.23-jdk-headless-ubuntu-noble`, `11.0.23-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jre-ubuntu`, `11.0.23-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.23-jre-ubuntu-noble`, `11.0.23-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre-headless-ubuntu`, `11.0.23-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.23-jre-headless-ubuntu-noble`, `11.0.23-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.23-ubuntu-jammy`, `11.0.23-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.23-jdk-ubuntu-jammy`, `11.0.23-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.23-jdk-headless-ubuntu-jammy`, `11.0.23-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.23-jre-ubuntu-jammy`, `11.0.23-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.23-ubuntu-focal`, `11.0.23-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.23-jdk-ubuntu-focal`, `11.0.23-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk/Dockerfile) +- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.23-jdk-headless-ubuntu-focal`, `11.0.23-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk-headless/Dockerfile) # Quick reference (cont.) From 331d5ac4865f362dfd2135838f5a44f59d677a85 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 May 2024 12:10:03 -0700 Subject: [PATCH 1185/2686] Run update.sh --- mongo/README.md | 30 +++++++++++++++--------------- storm/README.md | 1 + 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 73d12b217318..0c968d9fec0b 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`8.0.0-rc4-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/Dockerfile) +- [`8.0.0-rc4-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc4-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc4-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc4-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.10-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) - [`7.0.10-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.10-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -48,14 +53,19 @@ WARNING: - [`5.0.26-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) - [`5.0.26-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.26-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) -- [`4.4.29-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) -- [`4.4.29-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) -- [`4.4.29-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) -- [`4.4.29-nanoserver-ltsc2022`, `4.4-nanoserver-ltsc2022`, `4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`4.4.29-nanoserver-1809`, `4.4-nanoserver-1809`, `4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-1809/Dockerfile) ## Shared Tags +- `8.0.0-rc4`, `8.0-rc`: + - [`8.0.0-rc4-jammy`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/Dockerfile) + - [`8.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc4-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc4-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.10-rc0`, `7.0-rc`: - [`7.0.10-rc0-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) - [`7.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,16 +106,6 @@ WARNING: - `5.0.26-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - [`5.0.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.26-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) -- `4.4.29`, `4.4`, `4`: - - [`4.4.29-focal`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/Dockerfile) - - [`4.4.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.29-windowsservercore`, `4.4-windowsservercore`, `4-windowsservercore`: - - [`4.4.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-ltsc2022/Dockerfile) - - [`4.4.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/windowsservercore-1809/Dockerfile) -- `4.4.29-nanoserver`, `4.4-nanoserver`, `4-nanoserver`: - - [`4.4.29-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-ltsc2022/Dockerfile) - - [`4.4.29-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2ce02fe52826bae7c03f3f20817370396052c925/4.4/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index 4992200533af..9c0c3f6ba1af 100644 --- a/storm/README.md +++ b/storm/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.6.2`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d8c821ffb599be733400c98cc10fe4c05966b552/2.6.2/Dockerfile) +- [`2.6.2-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/31209f0cde237834a3602a382e69a6caa6bdcffc/2.6.2-jre17/Dockerfile) # Quick reference (cont.) From 89e00680f4dd6a65c4c94d1bf03d97cc74e5f471 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 May 2024 15:10:07 -0700 Subject: [PATCH 1186/2686] Run update.sh --- sapmachine/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sapmachine/README.md b/sapmachine/README.md index 5a3bfa5d853f..64fcc93f09e9 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -46,6 +46,8 @@ WARNING: - [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre-headless/Dockerfile) - [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.3-ubuntu-focal`, `21.0.3-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.3-jdk-ubuntu-focal`, `21.0.3-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk/Dockerfile) - [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.3-jdk-headless-ubuntu-focal`, `21.0.3-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.3-jre-ubuntu-focal`, `21.0.3-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre/Dockerfile) +- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.3-jre-headless-ubuntu-focal`, `21.0.3-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre-headless/Dockerfile) - [`17`, `17-jdk-ubuntu`, `17.0.11`, `17.0.11-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.11-ubuntu-noble`, `17.0.11-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.11-jdk-ubuntu-noble`, `17.0.11-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk/Dockerfile) - [`17-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.11-jdk-headless-ubuntu-noble`, `17.0.11-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk-headless/Dockerfile) - [`17-jre-ubuntu`, `17.0.11-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.11-jre-ubuntu-noble`, `17.0.11-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre/Dockerfile) @@ -56,6 +58,8 @@ WARNING: - [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre-headless/Dockerfile) - [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.11-ubuntu-focal`, `17.0.11-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.11-jdk-ubuntu-focal`, `17.0.11-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk/Dockerfile) - [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.11-jdk-headless-ubuntu-focal`, `17.0.11-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.11-jre-ubuntu-focal`, `17.0.11-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.11-jre-headless-ubuntu-focal`, `17.0.11-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre-headless/Dockerfile) - [`11`, `11-jdk-ubuntu`, `11.0.23`, `11.0.23-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.23-ubuntu-noble`, `11.0.23-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.23-jdk-ubuntu-noble`, `11.0.23-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk/Dockerfile) - [`11-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.23-jdk-headless-ubuntu-noble`, `11.0.23-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk-headless/Dockerfile) - [`11-jre-ubuntu`, `11.0.23-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.23-jre-ubuntu-noble`, `11.0.23-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre/Dockerfile) @@ -66,6 +70,8 @@ WARNING: - [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre-headless/Dockerfile) - [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.23-ubuntu-focal`, `11.0.23-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.23-jdk-ubuntu-focal`, `11.0.23-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk/Dockerfile) - [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.23-jdk-headless-ubuntu-focal`, `11.0.23-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.23-jre-ubuntu-focal`, `11.0.23-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre/Dockerfile) +- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.23-jre-headless-ubuntu-focal`, `11.0.23-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) From d44263c9d04d26dcdf6d028811d99b47e54fa2de Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Wed, 15 May 2024 17:02:01 -0700 Subject: [PATCH 1187/2686] Update aerospike content.md (#2447) --- aerospike/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/content.md b/aerospike/content.md index 62f9d81680a3..c0de4649dd37 100644 --- a/aerospike/content.md +++ b/aerospike/content.md @@ -169,7 +169,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [debian:*-slim](https://hub.docker.com/_/debian). +These images are based on [ubuntu:22.04](https://hub.docker.com/_/ubuntu). ### ee-[version] From 7683c25d164b7ee95ae862443e06489cfb48b45f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 May 2024 17:10:13 -0700 Subject: [PATCH 1188/2686] Run update.sh --- aerospike/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 4184483ccc46..619c33ac47f3 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.0.0.9`, `ee-7.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/0e3d45027a31f3753283d1f92f94c86739f5103a/enterprise/debian12/Dockerfile) -- [`ce-7.0.0.9`, `ce-7.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/0e3d45027a31f3753283d1f92f94c86739f5103a/community/debian12/Dockerfile) +- [`ee-7.1.0.0`, `ee-7.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/af847cba3ce8e7d4f8207106d6bf5ae59e749473/enterprise/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.0`, `ce-7.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/af847cba3ce8e7d4f8207106d6bf5ae59e749473/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) @@ -217,7 +217,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [debian:*-slim](https://hub.docker.com/_/debian). +These images are based on [ubuntu:22.04](https://hub.docker.com/_/ubuntu). ### ee-[version] From aa9f11b7c27d6de678480d88a9667d6b7627266a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 May 2024 06:10:28 -0700 Subject: [PATCH 1189/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 775ec07a0b21..27aeb0742c40 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.18`, `22.1-alpine3.18`, `22.1.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/alpine3.18/Dockerfile) -- [`22-alpine`, `22-alpine3.19`, `22.1-alpine`, `22.1-alpine3.19`, `22.1.0-alpine`, `22.1.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/alpine3.19/Dockerfile) -- [`22`, `22-bookworm`, `22.1`, `22.1-bookworm`, `22.1.0`, `22.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.1-bookworm-slim`, `22.1-slim`, `22.1.0-bookworm-slim`, `22.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.1-bullseye`, `22.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.1-bullseye-slim`, `22.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/cab20530fe21ce8989854152060591c83a6a7806/22/bullseye-slim/Dockerfile) +- [`22-alpine3.18`, `22.2-alpine3.18`, `22.2.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.18/Dockerfile) +- [`22-alpine`, `22-alpine3.19`, `22.2-alpine`, `22.2-alpine3.19`, `22.2.0-alpine`, `22.2.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.19/Dockerfile) +- [`22`, `22-bookworm`, `22.2`, `22.2-bookworm`, `22.2.0`, `22.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.2-bookworm-slim`, `22.2-slim`, `22.2.0-bookworm-slim`, `22.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm-slim/Dockerfile) +- [`22-bullseye`, `22.2-bullseye`, `22.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye/Dockerfile) +- [`22-bullseye-slim`, `22.2-bullseye-slim`, `22.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye-slim/Dockerfile) - [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) - [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) - [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) From 949d4a5630acbb1aa86439ec437fd40c69396ac7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 May 2024 11:10:11 -0700 Subject: [PATCH 1190/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index f19eb34b30a9..513ffecf2179 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.1.2-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.2-cli-alpine3.19`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/cli/Dockerfile) -- [`26.1.2-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.2-dind-alpine3.19`, `26.1.2`, `26.1`, `26`, `latest`, `26.1.2-alpine3.19`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/dind/Dockerfile) -- [`26.1.2-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/dind-rootless/Dockerfile) -- [`26.1.2-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.2-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/cli/Dockerfile) +- [`26.1.3-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.3-dind-alpine3.19`, `26.1.3`, `26.1`, `26`, `latest`, `26.1.3-alpine3.19`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind/Dockerfile) +- [`26.1.3-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind-rootless/Dockerfile) +- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.1.2-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/34afec84bf397392007934ffe12a27b92bd1e729/26/windows/windowsservercore-1809/Dockerfile) +- `26.1.3-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) From 49ff409b48abedbae79e233685cc02827468b161 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 May 2024 18:10:02 -0700 Subject: [PATCH 1191/2686] Run update.sh --- ruby/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ruby/README.md b/ruby/README.md index 4321b820ebe3..bb935a79f483 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,6 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.4.0-preview1-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview1-alpine3.18`, `3.4-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.18/Dockerfile) - [`3.3.1-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.1`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bookworm/Dockerfile) - [`3.3.1-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.1-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bookworm/Dockerfile) - [`3.3.1-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bullseye/Dockerfile) From 415954616b671e811a5faa20349c189b4d0c45a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 May 2024 11:10:37 -0700 Subject: [PATCH 1192/2686] Run update.sh --- ghost/README.md | 4 ++-- orientdb/README.md | 4 ++-- xwiki/README.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 19c0e65ef1ea..5bac6ecd9899 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.82.2`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef2cb4a7dbf11d48534ee74d9f15446436af502c/5/debian/Dockerfile) -- [`5.82.2-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef2cb4a7dbf11d48534ee74d9f15446436af502c/5/alpine/Dockerfile) +- [`5.82.11`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/79abd0869b93e23ba21d951e92bd9e838ddcf8b9/5/debian/Dockerfile) +- [`5.82.11-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/79abd0869b93e23ba21d951e92bd9e838ddcf8b9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 359501831eee..555b7367febe 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.28`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/21d80d7dc21a33ad10f1ec652eb183c47845b170/release/3.2.x/3.2.28/Dockerfile) -- [`3.2.28-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/21d80d7dc21a33ad10f1ec652eb183c47845b170/release/3.2.x/3.2.28-tp3/Dockerfile) +- [`3.2.29`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7960574bdc732e3294e834bd1607f457754e3ada/release/3.2.x/3.2.29/Dockerfile) +- [`3.2.29-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7960574bdc732e3294e834bd1607f457754e3ada/release/3.2.x/3.2.29-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 78badf087942..e676d1970725 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.3`, `16.3.1`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.8`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/b14a8c5e1f589358100d255be2e0132460c0252a/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.9`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From 63c92181750ca44a02f208cf2a4987749d58fa7b Mon Sep 17 00:00:00 2001 From: yosifkit Date: Fri, 17 May 2024 11:44:00 -0700 Subject: [PATCH 1193/2686] Add Docker Hub categories (#2446) * Add repo metadata, start with categories! scripts for checking repo categories, updating the canonical set added categories to push.pl * Add initial set of semi-acurate categories * Adjustments following tianon's review * Simplify metadata.sh use cases (CI or interactive); just diff and check all the time Update README.md about metadata.sh usage * Unify the categories checks into one jq expressions * Update initial categories * Link to Docker docs for categories; minor categories script adjustments --- .ci/check-metadata.sh | 9 +++ .github/workflows/ci.yml | 5 ++ README.md | 13 ++++ adminer/metadata.json | 7 ++ aerospike/metadata.json | 7 ++ almalinux/metadata.json | 7 ++ alpine/metadata.json | 7 ++ alt/metadata.json | 7 ++ amazoncorretto/metadata.json | 7 ++ amazonlinux/metadata.json | 7 ++ api-firewall/metadata.json | 7 ++ arangodb/metadata.json | 7 ++ archlinux/metadata.json | 7 ++ backdrop/metadata.json | 7 ++ bash/metadata.json | 7 ++ bonita/metadata.json | 7 ++ buildpack-deps/metadata.json | 7 ++ busybox/metadata.json | 7 ++ caddy/metadata.json | 7 ++ cassandra/metadata.json | 7 ++ centos/metadata.json | 5 ++ chronograf/metadata.json | 7 ++ cirros/metadata.json | 7 ++ clearlinux/metadata.json | 7 ++ clefos/metadata.json | 7 ++ clojure/metadata.json | 7 ++ composer/metadata.json | 7 ++ consul/metadata.json | 5 ++ convertigo/metadata.json | 7 ++ couchbase/metadata.json | 7 ++ couchdb/metadata.json | 7 ++ crate/metadata.json | 7 ++ dart/metadata.json | 7 ++ debian/metadata.json | 7 ++ docker/metadata.json | 7 ++ drupal/metadata.json | 7 ++ eclipse-mosquitto/metadata.json | 7 ++ eclipse-temurin/metadata.json | 7 ++ eggdrop/metadata.json | 5 ++ elasticsearch/metadata.json | 7 ++ elixir/metadata.json | 7 ++ emqx/metadata.json | 7 ++ erlang/metadata.json | 7 ++ express-gateway/metadata.json | 5 ++ fedora/metadata.json | 7 ++ flink/metadata.json | 7 ++ fluentd/metadata.json | 7 ++ friendica/metadata.json | 5 ++ gazebo/metadata.json | 7 ++ gcc/metadata.json | 7 ++ geonetwork/metadata.json | 7 ++ get-categories.sh | 16 ++++ ghost/metadata.json | 7 ++ golang/metadata.json | 7 ++ gradle/metadata.json | 7 ++ groovy/metadata.json | 7 ++ haproxy/metadata.json | 7 ++ haskell/metadata.json | 7 ++ haxe/metadata.json | 7 ++ hello-world/metadata.json | 5 ++ hitch/metadata.json | 7 ++ httpd/metadata.json | 7 ++ hylang/metadata.json | 7 ++ ibm-semeru-runtimes/metadata.json | 7 ++ ibmjava/metadata.json | 7 ++ influxdb/metadata.json | 7 ++ irssi/metadata.json | 5 ++ jetty/metadata.json | 7 ++ jobber/metadata.json | 5 ++ joomla/metadata.json | 7 ++ jruby/metadata.json | 7 ++ julia/metadata.json | 7 ++ kapacitor/metadata.json | 7 ++ kibana/metadata.json | 7 ++ kong/metadata.json | 7 ++ lightstreamer/metadata.json | 7 ++ liquibase/metadata.json | 7 ++ logstash/metadata.json | 7 ++ mageia/metadata.json | 7 ++ mariadb/metadata.json | 7 ++ matomo/metadata.json | 7 ++ maven/metadata.json | 7 ++ mediawiki/metadata.json | 7 ++ memcached/metadata.json | 7 ++ metadata.json | 22 ++++++ metadata.sh | 118 ++++++++++++++++++++++++++++++ mongo-express/metadata.json | 7 ++ mongo/metadata.json | 7 ++ monica/metadata.json | 7 ++ mono/metadata.json | 7 ++ mysql/metadata.json | 7 ++ nats-streaming/metadata.json | 5 ++ nats/metadata.json | 7 ++ neo4j/metadata.json | 7 ++ neurodebian/metadata.json | 7 ++ nextcloud/metadata.json | 7 ++ nginx/metadata.json | 7 ++ node/metadata.json | 7 ++ notary/metadata.json | 7 ++ odoo/metadata.json | 7 ++ open-liberty/metadata.json | 7 ++ openjdk/metadata.json | 5 ++ oraclelinux/metadata.json | 7 ++ orientdb/metadata.json | 7 ++ percona/metadata.json | 7 ++ perl/metadata.json | 7 ++ photon/metadata.json | 7 ++ php-zendserver/metadata.json | 7 ++ php/metadata.json | 7 ++ phpmyadmin/metadata.json | 7 ++ plone/metadata.json | 7 ++ postfixadmin/metadata.json | 7 ++ postgres/metadata.json | 7 ++ push.pl | 30 ++++++++ pypy/metadata.json | 7 ++ python/metadata.json | 7 ++ r-base/metadata.json | 7 ++ rabbitmq/metadata.json | 7 ++ rakudo-star/metadata.json | 7 ++ redis/metadata.json | 7 ++ redmine/metadata.json | 7 ++ registry/metadata.json | 7 ++ rethinkdb/metadata.json | 7 ++ rocket.chat/metadata.json | 5 ++ rockylinux/metadata.json | 7 ++ ros/metadata.json | 7 ++ ruby/metadata.json | 7 ++ rust/metadata.json | 7 ++ sapmachine/metadata.json | 7 ++ satosa/metadata.json | 7 ++ scratch/metadata.json | 5 ++ silverpeas/metadata.json | 7 ++ sl/metadata.json | 7 ++ solr/metadata.json | 7 ++ sonarqube/metadata.json | 7 ++ spark/metadata.json | 7 ++ spiped/metadata.json | 7 ++ storm/metadata.json | 7 ++ swift/metadata.json | 7 ++ swipl/metadata.json | 7 ++ teamspeak/metadata.json | 5 ++ telegraf/metadata.json | 7 ++ tomcat/metadata.json | 7 ++ tomee/metadata.json | 7 ++ traefik/metadata.json | 7 ++ ubuntu/metadata.json | 7 ++ unit/metadata.json | 7 ++ varnish/metadata.json | 7 ++ vault/metadata.json | 7 ++ websphere-liberty/metadata.json | 7 ++ wordpress/metadata.json | 7 ++ xwiki/metadata.json | 7 ++ yourls/metadata.json | 7 ++ znc/metadata.json | 5 ++ zookeeper/metadata.json | 7 ++ 155 files changed, 1221 insertions(+) create mode 100755 .ci/check-metadata.sh create mode 100644 adminer/metadata.json create mode 100644 aerospike/metadata.json create mode 100644 almalinux/metadata.json create mode 100644 alpine/metadata.json create mode 100644 alt/metadata.json create mode 100644 amazoncorretto/metadata.json create mode 100644 amazonlinux/metadata.json create mode 100644 api-firewall/metadata.json create mode 100644 arangodb/metadata.json create mode 100644 archlinux/metadata.json create mode 100644 backdrop/metadata.json create mode 100644 bash/metadata.json create mode 100644 bonita/metadata.json create mode 100644 buildpack-deps/metadata.json create mode 100644 busybox/metadata.json create mode 100644 caddy/metadata.json create mode 100644 cassandra/metadata.json create mode 100644 centos/metadata.json create mode 100644 chronograf/metadata.json create mode 100644 cirros/metadata.json create mode 100644 clearlinux/metadata.json create mode 100644 clefos/metadata.json create mode 100644 clojure/metadata.json create mode 100644 composer/metadata.json create mode 100644 consul/metadata.json create mode 100644 convertigo/metadata.json create mode 100644 couchbase/metadata.json create mode 100644 couchdb/metadata.json create mode 100644 crate/metadata.json create mode 100644 dart/metadata.json create mode 100644 debian/metadata.json create mode 100644 docker/metadata.json create mode 100644 drupal/metadata.json create mode 100644 eclipse-mosquitto/metadata.json create mode 100644 eclipse-temurin/metadata.json create mode 100644 eggdrop/metadata.json create mode 100644 elasticsearch/metadata.json create mode 100644 elixir/metadata.json create mode 100644 emqx/metadata.json create mode 100644 erlang/metadata.json create mode 100644 express-gateway/metadata.json create mode 100644 fedora/metadata.json create mode 100644 flink/metadata.json create mode 100644 fluentd/metadata.json create mode 100644 friendica/metadata.json create mode 100644 gazebo/metadata.json create mode 100644 gcc/metadata.json create mode 100644 geonetwork/metadata.json create mode 100755 get-categories.sh create mode 100644 ghost/metadata.json create mode 100644 golang/metadata.json create mode 100644 gradle/metadata.json create mode 100644 groovy/metadata.json create mode 100644 haproxy/metadata.json create mode 100644 haskell/metadata.json create mode 100644 haxe/metadata.json create mode 100644 hello-world/metadata.json create mode 100644 hitch/metadata.json create mode 100644 httpd/metadata.json create mode 100644 hylang/metadata.json create mode 100644 ibm-semeru-runtimes/metadata.json create mode 100644 ibmjava/metadata.json create mode 100644 influxdb/metadata.json create mode 100644 irssi/metadata.json create mode 100644 jetty/metadata.json create mode 100644 jobber/metadata.json create mode 100644 joomla/metadata.json create mode 100644 jruby/metadata.json create mode 100644 julia/metadata.json create mode 100644 kapacitor/metadata.json create mode 100644 kibana/metadata.json create mode 100644 kong/metadata.json create mode 100644 lightstreamer/metadata.json create mode 100644 liquibase/metadata.json create mode 100644 logstash/metadata.json create mode 100644 mageia/metadata.json create mode 100644 mariadb/metadata.json create mode 100644 matomo/metadata.json create mode 100644 maven/metadata.json create mode 100644 mediawiki/metadata.json create mode 100644 memcached/metadata.json create mode 100644 metadata.json create mode 100755 metadata.sh create mode 100644 mongo-express/metadata.json create mode 100644 mongo/metadata.json create mode 100644 monica/metadata.json create mode 100644 mono/metadata.json create mode 100644 mysql/metadata.json create mode 100644 nats-streaming/metadata.json create mode 100644 nats/metadata.json create mode 100644 neo4j/metadata.json create mode 100644 neurodebian/metadata.json create mode 100644 nextcloud/metadata.json create mode 100644 nginx/metadata.json create mode 100644 node/metadata.json create mode 100644 notary/metadata.json create mode 100644 odoo/metadata.json create mode 100644 open-liberty/metadata.json create mode 100644 openjdk/metadata.json create mode 100644 oraclelinux/metadata.json create mode 100644 orientdb/metadata.json create mode 100644 percona/metadata.json create mode 100644 perl/metadata.json create mode 100644 photon/metadata.json create mode 100644 php-zendserver/metadata.json create mode 100644 php/metadata.json create mode 100644 phpmyadmin/metadata.json create mode 100644 plone/metadata.json create mode 100644 postfixadmin/metadata.json create mode 100644 postgres/metadata.json create mode 100644 pypy/metadata.json create mode 100644 python/metadata.json create mode 100644 r-base/metadata.json create mode 100644 rabbitmq/metadata.json create mode 100644 rakudo-star/metadata.json create mode 100644 redis/metadata.json create mode 100644 redmine/metadata.json create mode 100644 registry/metadata.json create mode 100644 rethinkdb/metadata.json create mode 100644 rocket.chat/metadata.json create mode 100644 rockylinux/metadata.json create mode 100644 ros/metadata.json create mode 100644 ruby/metadata.json create mode 100644 rust/metadata.json create mode 100644 sapmachine/metadata.json create mode 100644 satosa/metadata.json create mode 100644 scratch/metadata.json create mode 100644 silverpeas/metadata.json create mode 100644 sl/metadata.json create mode 100644 solr/metadata.json create mode 100644 sonarqube/metadata.json create mode 100644 spark/metadata.json create mode 100644 spiped/metadata.json create mode 100644 storm/metadata.json create mode 100644 swift/metadata.json create mode 100644 swipl/metadata.json create mode 100644 teamspeak/metadata.json create mode 100644 telegraf/metadata.json create mode 100644 tomcat/metadata.json create mode 100644 tomee/metadata.json create mode 100644 traefik/metadata.json create mode 100644 ubuntu/metadata.json create mode 100644 unit/metadata.json create mode 100644 varnish/metadata.json create mode 100644 vault/metadata.json create mode 100644 websphere-liberty/metadata.json create mode 100644 wordpress/metadata.json create mode 100644 xwiki/metadata.json create mode 100644 yourls/metadata.json create mode 100644 znc/metadata.json create mode 100644 zookeeper/metadata.json diff --git a/.ci/check-metadata.sh b/.ci/check-metadata.sh new file mode 100755 index 000000000000..23ba1754cd83 --- /dev/null +++ b/.ci/check-metadata.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +cd "$(dirname "$(readlink -f "$BASH_SOURCE")")/.." + +# metadata.sh takes directories with a 'metadata.json' in them +# metadata.json is expected in every repo +# "." so that the canonical source metadata.json is checked too +./metadata.sh */ . diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 130d1c4e7cdc..ebe9572e6e2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,3 +46,8 @@ jobs: fetch-depth: 0 - run: .ci/check-pr-no-readme.sh if: ${{ github.event_name == 'pull_request' }} + metadata: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: .ci/check-metadata.sh diff --git a/README.md b/README.md index 5ce616d5f612..f5c063314991 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ After opening your Pull Request the changes will be checked by an automated `mar - Create a `license.md` (required) - Create a `maintainer.md` (required) - Create a `github-repo` (required) +- Create a `metadata.json` (required) - Add a `logo.png` (recommended) Optionally: @@ -128,6 +129,18 @@ The image is automatically scaled to a 120 pixel square for the top of the Docke This file should contain a link to the maintainers of the Dockerfile. +## `metadata.json` + +This file contains data about the repo for Docker Hub. The minimum file is defined below. `./metadata.sh [repo-name]` must be used to correctly format it (use `-w` to apply its suggested format changes). Only three sorted unique Docker Hub categories are allowed. `metadata.json` in the root contains the list of categories to choose from. See descriptions for the categories on the [Docker docs site](https://docs.docker.com/docker-hub/repos/categories/). + +```json +{ + "hub": { + "categories": [] + } +} +``` + ## `README-short.txt` This is the short description for the Docker Hub, limited to 100 characters in a single line. diff --git a/adminer/metadata.json b/adminer/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/adminer/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/aerospike/metadata.json b/aerospike/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/aerospike/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/almalinux/metadata.json b/almalinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/almalinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/alpine/metadata.json b/alpine/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/alpine/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/alt/metadata.json b/alt/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/alt/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/amazoncorretto/metadata.json b/amazoncorretto/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/amazoncorretto/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/amazonlinux/metadata.json b/amazonlinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/amazonlinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/api-firewall/metadata.json b/api-firewall/metadata.json new file mode 100644 index 000000000000..538442b9d959 --- /dev/null +++ b/api-firewall/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "api-management" + ] + } +} diff --git a/arangodb/metadata.json b/arangodb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/arangodb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/archlinux/metadata.json b/archlinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/archlinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/backdrop/metadata.json b/backdrop/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/backdrop/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/bash/metadata.json b/bash/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/bash/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/bonita/metadata.json b/bonita/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/bonita/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/buildpack-deps/metadata.json b/buildpack-deps/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/buildpack-deps/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/busybox/metadata.json b/busybox/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/busybox/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/caddy/metadata.json b/caddy/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/caddy/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/cassandra/metadata.json b/cassandra/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/cassandra/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/centos/metadata.json b/centos/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/centos/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/chronograf/metadata.json b/chronograf/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/chronograf/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/cirros/metadata.json b/cirros/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/cirros/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/clearlinux/metadata.json b/clearlinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/clearlinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/clefos/metadata.json b/clefos/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/clefos/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/clojure/metadata.json b/clojure/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/clojure/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/composer/metadata.json b/composer/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/composer/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/consul/metadata.json b/consul/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/consul/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/convertigo/metadata.json b/convertigo/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/convertigo/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/couchbase/metadata.json b/couchbase/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/couchbase/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/couchdb/metadata.json b/couchdb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/couchdb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/crate/metadata.json b/crate/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/crate/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/dart/metadata.json b/dart/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/dart/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/debian/metadata.json b/debian/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/debian/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/docker/metadata.json b/docker/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/docker/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/drupal/metadata.json b/drupal/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/drupal/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/eclipse-mosquitto/metadata.json b/eclipse-mosquitto/metadata.json new file mode 100644 index 000000000000..66ae22756c7e --- /dev/null +++ b/eclipse-mosquitto/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "message-queues" + ] + } +} diff --git a/eclipse-temurin/metadata.json b/eclipse-temurin/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/eclipse-temurin/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/eggdrop/metadata.json b/eggdrop/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/eggdrop/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/elasticsearch/metadata.json b/elasticsearch/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/elasticsearch/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/elixir/metadata.json b/elixir/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/elixir/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/emqx/metadata.json b/emqx/metadata.json new file mode 100644 index 000000000000..66ae22756c7e --- /dev/null +++ b/emqx/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "message-queues" + ] + } +} diff --git a/erlang/metadata.json b/erlang/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/erlang/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/express-gateway/metadata.json b/express-gateway/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/express-gateway/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/fedora/metadata.json b/fedora/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/fedora/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/flink/metadata.json b/flink/metadata.json new file mode 100644 index 000000000000..2b3b7cd7c11f --- /dev/null +++ b/flink/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "data-science" + ] + } +} diff --git a/fluentd/metadata.json b/fluentd/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/fluentd/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/friendica/metadata.json b/friendica/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/friendica/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/gazebo/metadata.json b/gazebo/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/gazebo/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/gcc/metadata.json b/gcc/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/gcc/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/geonetwork/metadata.json b/geonetwork/metadata.json new file mode 100644 index 000000000000..2b3b7cd7c11f --- /dev/null +++ b/geonetwork/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "data-science" + ] + } +} diff --git a/get-categories.sh b/get-categories.sh new file mode 100755 index 000000000000..7d678f700757 --- /dev/null +++ b/get-categories.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +workdir="$(readlink -f "$BASH_SOURCE")" +workdir="$(dirname "$workdir")" + +jsonFile='metadata.json' +canonicalMetadataFile="$workdir/$jsonFile" + +# add categories slugs to canonicalMetadataFile without losing other keys there +curl -fsSL https://hub.docker.com/v2/categories | jq -s --sort-keys ' + .[0] as $allCategories + | .[1] + | .hub.categories = ( [ $allCategories[].slug ] | sort ) +' - "$canonicalMetadataFile" | tee "$canonicalMetadataFile.new" +mv "$canonicalMetadataFile.new" "$canonicalMetadataFile" diff --git a/ghost/metadata.json b/ghost/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/ghost/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/golang/metadata.json b/golang/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/golang/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/gradle/metadata.json b/gradle/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/gradle/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/groovy/metadata.json b/groovy/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/groovy/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/haproxy/metadata.json b/haproxy/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/haproxy/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/haskell/metadata.json b/haskell/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/haskell/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/haxe/metadata.json b/haxe/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/haxe/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/hello-world/metadata.json b/hello-world/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/hello-world/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/hitch/metadata.json b/hitch/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/hitch/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/httpd/metadata.json b/httpd/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/httpd/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/hylang/metadata.json b/hylang/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/hylang/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/ibm-semeru-runtimes/metadata.json b/ibm-semeru-runtimes/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/ibm-semeru-runtimes/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/ibmjava/metadata.json b/ibmjava/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/ibmjava/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/influxdb/metadata.json b/influxdb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/influxdb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/irssi/metadata.json b/irssi/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/irssi/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/jetty/metadata.json b/jetty/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/jetty/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/jobber/metadata.json b/jobber/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/jobber/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/joomla/metadata.json b/joomla/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/joomla/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/jruby/metadata.json b/jruby/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/jruby/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/julia/metadata.json b/julia/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/julia/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/kapacitor/metadata.json b/kapacitor/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/kapacitor/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/kibana/metadata.json b/kibana/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/kibana/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/kong/metadata.json b/kong/metadata.json new file mode 100644 index 000000000000..538442b9d959 --- /dev/null +++ b/kong/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "api-management" + ] + } +} diff --git a/lightstreamer/metadata.json b/lightstreamer/metadata.json new file mode 100644 index 000000000000..66ae22756c7e --- /dev/null +++ b/lightstreamer/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "message-queues" + ] + } +} diff --git a/liquibase/metadata.json b/liquibase/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/liquibase/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/logstash/metadata.json b/logstash/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/logstash/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/mageia/metadata.json b/mageia/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/mageia/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/mariadb/metadata.json b/mariadb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/mariadb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/matomo/metadata.json b/matomo/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/matomo/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/maven/metadata.json b/maven/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/maven/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/mediawiki/metadata.json b/mediawiki/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/mediawiki/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/memcached/metadata.json b/memcached/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/memcached/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/metadata.json b/metadata.json new file mode 100644 index 000000000000..e12e4b04f598 --- /dev/null +++ b/metadata.json @@ -0,0 +1,22 @@ +{ + "hub": { + "categories": [ + "api-management", + "content-management-system", + "data-science", + "databases-and-storage", + "developer-tools", + "integration-and-delivery", + "internet-of-things", + "languages-and-frameworks", + "machine-learning-and-ai", + "message-queues", + "monitoring-and-observability", + "networking", + "operating-systems", + "security", + "web-analytics", + "web-servers" + ] + } +} diff --git a/metadata.sh b/metadata.sh new file mode 100755 index 000000000000..cc215de796f9 --- /dev/null +++ b/metadata.sh @@ -0,0 +1,118 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +workdir="$(readlink -f "$BASH_SOURCE")" +workdir="$(dirname "$workdir")" +cd "$workdir" + +jsonFile='metadata.json' +canonicalMetadataFile="./$jsonFile" +export maxCategories=3 + +self="$(basename "$0")" + +usage() { + cat <&2 && false; })" +eval set -- "$opts" + +write= + +while :; do + flag="$1" + shift + case "$flag" in + --help | -h) usage && exit 0 ;; + --write | -w) write=1 ;; + --) break ;; + *) + { + echo "error: unknown flag: $flag" + usage + } >&2 + exit 1 + ;; + esac +done + +repos=( "$@" ) +if [ "${#repos[@]}" -eq 0 ]; then + repos=( */ ) +fi +repos=( "${repos[@]%/}" ) + +failures=0 +for repo in "${repos[@]}"; do + repoFile="$repo/$jsonFile" + if [ ! -s "$repoFile" ]; then + echo >&2 "error: $repoFile does not exist or is empty" + (( failures++ )) || : + continue + fi + + # sort object keys and pretty print with jq as our "cannonical json" + # sort categories array, no duplicates + if ! repoFileJson="$(jq -s --sort-keys '.[0] | .hub.categories |= unique' "$repoFile")"; then + echo >&2 "error parsing '$repoFile'; invalid JSON?" + (( failures++ )) || : + continue + fi + if ! filediff="$(diff -u "$repoFile" <(cat <<<"$repoFileJson"))"; then + cat <<<"$filediff" + if [ -n "$write" ]; then + cat <<<"$repoFileJson" > "$repoFile" + else + (( failures++ )) || : + fi + fi + + # TODO also check for required keys and/or types? + # the canonicalMetadataFile doesn't have too many categories since it is the source of categories + # all other metadata.json files must not be more than maxCategories or have categories that aren't in the canonical set + if [ "$repoFile" != "$canonicalMetadataFile" ]; then + export repoFile + if errorText="$(jq -r --slurpfile canonical "$canonicalMetadataFile" ' + .hub.categories + | ( + length + | if . > (env.maxCategories | tonumber) then + "error: \(env.repoFile): too many categories: \(.) (max \(env.maxCategories))" + else empty end + ), + ( + . - $canonical[0].hub.categories + | if length > 0 then + "error: \(env.repoFile): unknown categories \(.)" + else empty end + ) + ' "$repoFile")"; then + if [ -n "$errorText" ]; then + echo >&2 "$errorText" + (( failures++ )) || : + fi + else + echo >&2 "error parsing '$repoFile'; invalid JSON?" + (( failures++ )) || : + continue + fi + fi +done + +exit "$failures" diff --git a/mongo-express/metadata.json b/mongo-express/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/mongo-express/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/mongo/metadata.json b/mongo/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/mongo/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/monica/metadata.json b/monica/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/monica/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/mono/metadata.json b/mono/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/mono/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/mysql/metadata.json b/mysql/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/mysql/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/nats-streaming/metadata.json b/nats-streaming/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/nats-streaming/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/nats/metadata.json b/nats/metadata.json new file mode 100644 index 000000000000..66ae22756c7e --- /dev/null +++ b/nats/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "message-queues" + ] + } +} diff --git a/neo4j/metadata.json b/neo4j/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/neo4j/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/neurodebian/metadata.json b/neurodebian/metadata.json new file mode 100644 index 000000000000..2b3b7cd7c11f --- /dev/null +++ b/neurodebian/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "data-science" + ] + } +} diff --git a/nextcloud/metadata.json b/nextcloud/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/nextcloud/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/nginx/metadata.json b/nginx/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/nginx/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/node/metadata.json b/node/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/node/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/notary/metadata.json b/notary/metadata.json new file mode 100644 index 000000000000..f1e52700787d --- /dev/null +++ b/notary/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "security" + ] + } +} diff --git a/odoo/metadata.json b/odoo/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/odoo/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/open-liberty/metadata.json b/open-liberty/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/open-liberty/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/openjdk/metadata.json b/openjdk/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/openjdk/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/oraclelinux/metadata.json b/oraclelinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/oraclelinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/orientdb/metadata.json b/orientdb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/orientdb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/percona/metadata.json b/percona/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/percona/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/perl/metadata.json b/perl/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/perl/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/photon/metadata.json b/photon/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/photon/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/php-zendserver/metadata.json b/php-zendserver/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/php-zendserver/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/php/metadata.json b/php/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/php/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/phpmyadmin/metadata.json b/phpmyadmin/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/phpmyadmin/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/plone/metadata.json b/plone/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/plone/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/postfixadmin/metadata.json b/postfixadmin/metadata.json new file mode 100644 index 000000000000..67e782480585 --- /dev/null +++ b/postfixadmin/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "developer-tools" + ] + } +} diff --git a/postgres/metadata.json b/postgres/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/postgres/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/push.pl b/push.pl index d9ef38e2544f..f5d69dd98494 100755 --- a/push.pl +++ b/push.pl @@ -8,6 +8,7 @@ use File::Temp; use Getopt::Long; use Mojo::File; +use Mojo::JSON qw(decode_json); use Mojo::UserAgent; use Mojo::Util qw(decode encode trim url_escape); @@ -211,6 +212,35 @@ sub prompt_for_edit { my $repoDetails = $repoTx->res->json; $repoDetails->{description} //= ''; $repoDetails->{full_description} //= ''; + $repoDetails->{categories} //= []; + my @repoCategories = sort map { $_->{slug} } @{ $repoDetails->{categories} }; + + # read local categories from metadata.json + my $repoMetadataBytes = Mojo::File->new($repoName . '/metadata.json')->slurp; + my $repoMetadataJson = decode_json $repoMetadataBytes; + my @localRepoCategories = sort @{ $repoMetadataJson->{hub}{categories} }; + + # check if the local categories differ in length or items from the remote + my $needCat = @localRepoCategories != @repoCategories; + if (! $needCat) { + foreach my $i (0 .. @localRepoCategories) { + last if ! defined $repoCategories[$i]; # length difference already covered, so we can bail + if ($localRepoCategories[$i] ne $repoCategories[$i]) { + $needCat = 1; + last; + } + } + } + if ($needCat) { + say 'updating ' . $repoName . ' categories'; + my $catsPatch = $ua->patch($repoUrl . 'categories/' => { %$authorizationHeader, Accept => 'application/json' } => json => [ + map { { + slug => $_, + name => 'All those moments will be lost in time, like tears in rain... Time to die.', + } } @{ $repoMetadataJson->{hub}{categories} } + ]); + die 'patch to categories failed: ' . $catsPatch->res->text unless $catsPatch->res->is_success; + } my $hubShort = prompt_for_edit($repoDetails->{description}, $repoName . '/README-short.txt'); my $hubLong = prompt_for_edit($repoDetails->{full_description}, $repoName . '/README.md', $hubLengthLimit); diff --git a/pypy/metadata.json b/pypy/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/pypy/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/python/metadata.json b/python/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/python/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/r-base/metadata.json b/r-base/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/r-base/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/rabbitmq/metadata.json b/rabbitmq/metadata.json new file mode 100644 index 000000000000..66ae22756c7e --- /dev/null +++ b/rabbitmq/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "message-queues" + ] + } +} diff --git a/rakudo-star/metadata.json b/rakudo-star/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/rakudo-star/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/redis/metadata.json b/redis/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/redis/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/redmine/metadata.json b/redmine/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/redmine/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/registry/metadata.json b/registry/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/registry/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/rethinkdb/metadata.json b/rethinkdb/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/rethinkdb/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/rocket.chat/metadata.json b/rocket.chat/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/rocket.chat/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/rockylinux/metadata.json b/rockylinux/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/rockylinux/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/ros/metadata.json b/ros/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/ros/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/ruby/metadata.json b/ruby/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/ruby/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/rust/metadata.json b/rust/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/rust/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/sapmachine/metadata.json b/sapmachine/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/sapmachine/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/satosa/metadata.json b/satosa/metadata.json new file mode 100644 index 000000000000..538442b9d959 --- /dev/null +++ b/satosa/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "api-management" + ] + } +} diff --git a/scratch/metadata.json b/scratch/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/scratch/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/silverpeas/metadata.json b/silverpeas/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/silverpeas/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/sl/metadata.json b/sl/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/sl/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/solr/metadata.json b/solr/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/solr/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} diff --git a/sonarqube/metadata.json b/sonarqube/metadata.json new file mode 100644 index 000000000000..4e2e34b2be0e --- /dev/null +++ b/sonarqube/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "integration-and-delivery" + ] + } +} diff --git a/spark/metadata.json b/spark/metadata.json new file mode 100644 index 000000000000..2b3b7cd7c11f --- /dev/null +++ b/spark/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "data-science" + ] + } +} diff --git a/spiped/metadata.json b/spiped/metadata.json new file mode 100644 index 000000000000..f1e52700787d --- /dev/null +++ b/spiped/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "security" + ] + } +} diff --git a/storm/metadata.json b/storm/metadata.json new file mode 100644 index 000000000000..2b3b7cd7c11f --- /dev/null +++ b/storm/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "data-science" + ] + } +} diff --git a/swift/metadata.json b/swift/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/swift/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/swipl/metadata.json b/swipl/metadata.json new file mode 100644 index 000000000000..39ac749c7f11 --- /dev/null +++ b/swipl/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "languages-and-frameworks" + ] + } +} diff --git a/teamspeak/metadata.json b/teamspeak/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/teamspeak/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/telegraf/metadata.json b/telegraf/metadata.json new file mode 100644 index 000000000000..5f9ae9afb8e1 --- /dev/null +++ b/telegraf/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "monitoring-and-observability" + ] + } +} diff --git a/tomcat/metadata.json b/tomcat/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/tomcat/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/tomee/metadata.json b/tomee/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/tomee/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/traefik/metadata.json b/traefik/metadata.json new file mode 100644 index 000000000000..296c4ec2a848 --- /dev/null +++ b/traefik/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "networking" + ] + } +} diff --git a/ubuntu/metadata.json b/ubuntu/metadata.json new file mode 100644 index 000000000000..df07586b5b35 --- /dev/null +++ b/ubuntu/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "operating-systems" + ] + } +} diff --git a/unit/metadata.json b/unit/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/unit/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/varnish/metadata.json b/varnish/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/varnish/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/vault/metadata.json b/vault/metadata.json new file mode 100644 index 000000000000..f1e52700787d --- /dev/null +++ b/vault/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "security" + ] + } +} diff --git a/websphere-liberty/metadata.json b/websphere-liberty/metadata.json new file mode 100644 index 000000000000..1f306a0037fd --- /dev/null +++ b/websphere-liberty/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "web-servers" + ] + } +} diff --git a/wordpress/metadata.json b/wordpress/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/wordpress/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/xwiki/metadata.json b/xwiki/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/xwiki/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/yourls/metadata.json b/yourls/metadata.json new file mode 100644 index 000000000000..180157012a86 --- /dev/null +++ b/yourls/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "content-management-system" + ] + } +} diff --git a/znc/metadata.json b/znc/metadata.json new file mode 100644 index 000000000000..e90624aca4ca --- /dev/null +++ b/znc/metadata.json @@ -0,0 +1,5 @@ +{ + "hub": { + "categories": [] + } +} diff --git a/zookeeper/metadata.json b/zookeeper/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/zookeeper/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} From f3049da3d5a8cc8894f4aff461a6bd3ba4c26c28 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 May 2024 11:49:44 -0700 Subject: [PATCH 1194/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 8c6a25b2140e..df35cd67571d 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-22-jdk-oraclelinux9`, `23-ea-22-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-22-jdk-oracle`, `23-ea-22-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-22-jdk-oraclelinux8`, `23-ea-22-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-22-jdk-bookworm`, `23-ea-22-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/bookworm/Dockerfile) -- [`23-ea-22-jdk-slim-bookworm`, `23-ea-22-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-22-jdk-slim`, `23-ea-22-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-22-jdk-bullseye`, `23-ea-22-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/bullseye/Dockerfile) -- [`23-ea-22-jdk-slim-bullseye`, `23-ea-22-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-22-jdk-windowsservercore-ltsc2022`, `23-ea-22-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-22-jdk-windowsservercore-1809`, `23-ea-22-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-22-jdk-nanoserver-1809`, `23-ea-22-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-23-jdk-oraclelinux9`, `23-ea-23-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-23-jdk-oracle`, `23-ea-23-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-23-jdk-oraclelinux8`, `23-ea-23-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-23-jdk-bookworm`, `23-ea-23-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/bookworm/Dockerfile) +- [`23-ea-23-jdk-slim-bookworm`, `23-ea-23-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-23-jdk-slim`, `23-ea-23-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-23-jdk-bullseye`, `23-ea-23-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/bullseye/Dockerfile) +- [`23-ea-23-jdk-slim-bullseye`, `23-ea-23-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-23-jdk-windowsservercore-ltsc2022`, `23-ea-23-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-23-jdk-windowsservercore-1809`, `23-ea-23-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-23-jdk-nanoserver-1809`, `23-ea-23-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-22-jdk`, `23-ea-22`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-22-jdk-windowsservercore`, `23-ea-22-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-22-jdk-nanoserver`, `23-ea-22-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/14b587b277a2049a74bbf34671707fbb51a5c07c/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-23-jdk`, `23-ea-23`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-23-jdk-windowsservercore`, `23-ea-23-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-23-jdk-nanoserver`, `23-ea-23-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 56bc0c549f81dd7e40cfebf82b264bb209822478 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 May 2024 16:10:03 -0700 Subject: [PATCH 1195/2686] Run update.sh --- redis/README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/redis/README.md b/redis/README.md index 0eddc43fa642..1b0164a7b56d 100644 --- a/redis/README.md +++ b/redis/README.md @@ -25,13 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`7.2.4`, `7.2`, `7`, `latest`, `7.2.4-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.2/debian/Dockerfile) -- [`7.2.4-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.4-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b77450d34ae54354f41970fc44bf840353f59ef4/7.2/alpine/Dockerfile) +- [`7.2.4-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.4-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/7.2/alpine/Dockerfile) - [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.0/debian/Dockerfile) -- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/313fd068a6751fd9f611e94addfa9ea56a23a3a7/7.0/alpine/Dockerfile) +- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/7.0/alpine/Dockerfile) - [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.2/debian/Dockerfile) -- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/531cfa59d944bbbfb22b8228646d12c926dfc010/6.2/alpine/Dockerfile) -- [`6.0.20`, `6.0`, `6.0.20-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.0/debian/Dockerfile) -- [`6.0.20-alpine`, `6.0-alpine`, `6.0.20-alpine3.19`, `6.0-alpine3.19`](https://github.com/docker-library/redis/blob/ac5605ebe2e7b4b371edcf94ad06e873986a6b63/6.0/alpine/Dockerfile) +- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/6.2/alpine/Dockerfile) # Quick reference (cont.) From 73fe8ee298fb6c156d044447367c0f8b735d86b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 18 May 2024 05:17:08 -0700 Subject: [PATCH 1196/2686] Update Table of Contents --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5c063314991..823336ccd389 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,9 @@ All Markdown files here are run through [tianon's fork of `markdownfmt`](https:/ 6. [`license.md`](#licensemd) 7. [`logo.png`](#logopng) 8. [`maintainer.md`](#maintainermd) - 9. [`README-short.txt`](#readme-shorttxt) - 10. [`stack.yml`](#stackyml) + 9. [`metadata.json`](#metadatajson) + 10. [`README-short.txt`](#readme-shorttxt) + 11. [`stack.yml`](#stackyml) 5. [Files for main Docs repo](#files-for-main-docs-repo) 1. [`update.sh`](#updatesh) 2. [`markdownfmt.sh` and `ymlfmt.sh`](#markdownfmtsh-and-ymlfmtsh) From 50d2a1e4f1f359518651757f927b08e948b3b359 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 May 2024 10:10:11 -0700 Subject: [PATCH 1197/2686] Run update.sh --- clearlinux/README.md | 2 +- photon/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index d588b78d7cd9..c6bb3ccd632d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/0a57e13031956cb4c3c4329a45a9c557d5fd7186/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/9260b23005ad461a3b0f8cf552ab03a9edd92ce0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index c31aa55edfd7..f11553005d81 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240506`, `latest`](https://github.com/vmware/photon-docker-image/blob/1a711bc7cfc75e9aad9b49cf3783fb26ea83d14e/docker/Dockerfile) -- [`4.0`, `4.0-20240512`](https://github.com/vmware/photon-docker-image/blob/79fb08b8531b574f2733dba18b7939ba32281907/docker/Dockerfile) -- [`3.0`, `3.0-20240506`](https://github.com/vmware/photon-docker-image/blob/dbded9110b78abcc430bfdb80ef2e8027675cd26/docker/Dockerfile) +- [`5.0`, `5.0-20240519`, `latest`](https://github.com/vmware/photon-docker-image/blob/126c3a147918695cf82df92ec9d01d13e4781c6c/docker/Dockerfile) +- [`4.0`, `4.0-20240519`](https://github.com/vmware/photon-docker-image/blob/87387045578a767ec64890e01084aefdbeb449d9/docker/Dockerfile) +- [`3.0`, `3.0-20240519`](https://github.com/vmware/photon-docker-image/blob/a530e62a11d86a4f4874e73b8e61e4f6b7caf503/docker/Dockerfile) # Quick reference (cont.) From 19b3599e23d13f887a4393a86ec8c6db1dc6afe2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 May 2024 11:10:15 -0700 Subject: [PATCH 1198/2686] Run update.sh --- cassandra/README.md | 2 +- haproxy/README.md | 4 ++-- redis/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 81d5585e6cb6..0968405dcc8b 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) -- [`4.1.4`, `4.1`, `4`, `latest`, `4.1.4-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.1/Dockerfile) +- [`4.1.5`, `4.1`, `4`, `latest`, `4.1.5-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/7ae558bbbbfa3f07eaaecae0ff84a4537d37c570/4.1/Dockerfile) - [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.0/Dockerfile) - [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) - [`3.0.30`, `3.0`, `3.0.30-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/2324f94cb4e9686859e3f487f725908bfbefc9d2/3.0/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 62cde264745b..85f0af574819 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev11`, `3.0-dev`, `3.0-dev11-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/8db4f308c73a105b2f05c55f144486ccddb2c8af/3.0/Dockerfile) -- [`3.0-dev11-alpine`, `3.0-dev-alpine`, `3.0-dev11-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/8db4f308c73a105b2f05c55f144486ccddb2c8af/3.0/alpine/Dockerfile) +- [`3.0-dev12`, `3.0-dev`, `3.0-dev12-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/893c649e60e147302a9e466e476e60fd0880726b/3.0/Dockerfile) +- [`3.0-dev12-alpine`, `3.0-dev-alpine`, `3.0-dev12-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/893c649e60e147302a9e466e476e60fd0880726b/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 1b0164a7b56d..bc1cf4ddad8a 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.4`, `7.2`, `7`, `latest`, `7.2.4-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.2/debian/Dockerfile) -- [`7.2.4-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.4-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/7.2/alpine/Dockerfile) +- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/b50eb50d936041804b28703bd84d379ff55ae2af/7.2/debian/Dockerfile) +- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b50eb50d936041804b28703bd84d379ff55ae2af/7.2/alpine/Dockerfile) - [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.0/debian/Dockerfile) - [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/7.0/alpine/Dockerfile) - [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.2/debian/Dockerfile) From 5c44e5e6f7953c32fba44e80cee8b477325ff2af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 May 2024 10:10:28 -0700 Subject: [PATCH 1199/2686] Run update.sh --- hylang/README.md | 84 +++++++++++++++++++++++----------------------- node/README.md | 16 ++++----- telegraf/README.md | 12 +++---- 3 files changed, 56 insertions(+), 56 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index a5b4154e1ffd..08302b96f171 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.28.0-python3.12-bookworm`, `0.28-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.28.0-bookworm`, `0.28-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.28.0-python3.12-bullseye`, `0.28-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.28.0-bullseye`, `0.28-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.28.0-python3.12-alpine3.19`, `0.28-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.28.0-alpine3.19`, `0.28-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.28.0-python3.12-alpine`, `0.28-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.28.0-alpine`, `0.28-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.28.0-python3.12-alpine3.18`, `0.28-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.28.0-alpine3.18`, `0.28-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) -- [`0.28.0-python3.11-bookworm`, `0.28-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.28.0-python3.11-bullseye`, `0.28-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.28.0-python3.11-alpine3.19`, `0.28-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.28.0-python3.11-alpine`, `0.28-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.28.0-python3.11-alpine3.18`, `0.28-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.28.0-python3.10-bookworm`, `0.28-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.28.0-python3.10-bullseye`, `0.28-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.28.0-python3.10-alpine3.19`, `0.28-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.28.0-python3.10-alpine`, `0.28-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.28.0-python3.10-alpine3.18`, `0.28-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.28.0-python3.9-bookworm`, `0.28-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.28.0-python3.9-bullseye`, `0.28-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.28.0-python3.9-alpine3.19`, `0.28-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.28.0-python3.9-alpine`, `0.28-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.28.0-python3.9-alpine3.18`, `0.28-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.28.0-python3.8-bookworm`, `0.28-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.28.0-python3.8-bullseye`, `0.28-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.28.0-python3.8-alpine3.19`, `0.28-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.28.0-python3.8-alpine`, `0.28-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.28.0-python3.8-alpine3.18`, `0.28-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.28.0-pypy3.10-bookworm`, `0.28-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.28.0-pypy-bookworm`, `0.28-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.28.0-pypy3.10-bullseye`, `0.28-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.28.0-pypy-bullseye`, `0.28-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.28.0-pypy3.9-bookworm`, `0.28-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.28.0-pypy3.9-bullseye`, `0.28-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.28.0-pypy3.9-windowsservercore-ltsc2022`, `0.28-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.28.0-pypy3.9-windowsservercore-1809`, `0.28-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.29.0-python3.12-alpine3.18`, `0.29-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.29.0-alpine3.18`, `0.29-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) +- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.29.0-python3.11-alpine3.18`, `0.29-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) +- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.29.0-python3.10-alpine3.18`, `0.29-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) +- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.29.0-python3.9-alpine3.18`, `0.29-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) +- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.29.0-python3.8-alpine3.18`, `0.29-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) +- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags -- `0.28.0-python3.12`, `0.28-python3.12`, `0-python3.12`, `python3.12`, `0.28.0`, `0.28`, `0`, `latest`: - - [`0.28.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- `0.28.0-python3.11`, `0.28-python3.11`, `0-python3.11`, `python3.11`: - - [`0.28.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- `0.28.0-python3.10`, `0.28-python3.10`, `0-python3.10`, `python3.10`: - - [`0.28.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- `0.28.0-python3.9`, `0.28-python3.9`, `0-python3.9`, `python3.9`: - - [`0.28.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- `0.28.0-python3.8`, `0.28-python3.8`, `0-python3.8`, `python3.8`: - - [`0.28.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- `0.28.0-pypy3.10`, `0.28-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.28.0-pypy`, `0.28-pypy`, `0-pypy`, `pypy`: - - [`0.28.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- `0.28.0-pypy3.9`, `0.28-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.28.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.28.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.28.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/38248155c9c271403e7fe963ab815ca746e641fa/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- `0.29.0-pypy3.9`, `0.29-pypy3.9`, `0-pypy3.9`, `pypy3.9`: + - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 27aeb0742c40..8899392c4ba9 100644 --- a/node/README.md +++ b/node/README.md @@ -44,14 +44,14 @@ WARNING: - [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.13-buster`, `20.13.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster/Dockerfile) - [`20-buster-slim`, `20.13-buster-slim`, `20.13.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.2-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.2-alpine`, `18.20.2-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/alpine3.19/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.2`, `18.20.2-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.2-bookworm-slim`, `18.20.2-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.2-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.2-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.20-buster`, `18.20.2-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/buster/Dockerfile) -- [`18-buster-slim`, `18.20-buster-slim`, `18.20.2-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/18/buster-slim/Dockerfile) +- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.3-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.18/Dockerfile) +- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.3-alpine`, `18.20.3-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.19/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.3-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye-slim/Dockerfile) +- [`18-buster`, `18.20-buster`, `18.20.3-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/buster/Dockerfile) +- [`18-buster-slim`, `18.20-buster-slim`, `18.20.3-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 285e98628236..b0dbeb0fdd5d 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae8f857da748ff8fbde2090b45cc7e9a96043291/telegraf/1.30/alpine/Dockerfile) +- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.28/Dockerfile) +- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.28/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.30/alpine/Dockerfile) # Quick reference (cont.) From 0d51d5c0d3d28f532e3cf4512df227daaae70bc6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 May 2024 12:09:55 -0700 Subject: [PATCH 1200/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 2 +- traefik/README.md | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bash/README.md b/bash/README.md index 53dc013ddb26..1f50b444b5d8 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240513`, `devel`, `devel-20240513-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/f8e223431c8f4800eed1ec47f053e792c562eadd/devel/Dockerfile) +- [`devel-20240520`, `devel`, `devel-20240520-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/6079cb14b574c984d67d5af3d7767f9314b6498f/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index 0968405dcc8b..df854f34ab20 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) - [`4.1.5`, `4.1`, `4`, `latest`, `4.1.5-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/7ae558bbbbfa3f07eaaecae0ff84a4537d37c570/4.1/Dockerfile) -- [`4.0.12`, `4.0`, `4.0.12-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/4.0/Dockerfile) +- [`4.0.13`, `4.0`, `4.0.13-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b51ed0210fc94d22dce73d8f07d1af1a3416d56a/4.0/Dockerfile) - [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) - [`3.0.30`, `3.0`, `3.0.30-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/2324f94cb4e9686859e3f487f725908bfbefc9d2/3.0/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index adb8e61e6092..b10eb607c908 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,11 +26,12 @@ WARNING: - [`v3.0.0-windowsservercore-ltsc2022`, `3.0.0-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/servercore-ltsc2022/Dockerfile) - [`v3.0.0-windowsservercore-1809`, `3.0.0-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/1809/Dockerfile) -- [`v3.0.0`, `3.0.0`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/alpine/Dockerfile) - [`v3.0.0-nanoserver-ltsc2022`, `3.0.0-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e921bd38d6f64eca79a681f5d945b99f279a7f4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.2-windowsservercore-ltsc2022`, `2.11.2-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.2-windowsservercore-1809`, `2.11.2-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/windows/1809/Dockerfile) -- [`v2.11.2`, `2.11.2`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/20b8a58e55e1874939af980a52ba353c4fad32c5/alpine/Dockerfile) +- [`v3.0.0`, `3.0.0`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/alpine/Dockerfile) +- [`v2.11.3-windowsservercore-ltsc2022`, `2.11.3-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.3-windowsservercore-1809`, `2.11.3-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/1809/Dockerfile) +- [`v2.11.3-nanoserver-ltsc2022`, `2.11.3-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.3`, `2.11.3`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/alpine/Dockerfile) # Quick reference (cont.) From d0d8dfb8e9346d71c95e89a5414bbf4f2faf5053 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 May 2024 13:10:29 -0700 Subject: [PATCH 1201/2686] Run update.sh --- gcc/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/README.md b/gcc/README.md index c592a04bf574..f43b36266c66 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/14/Dockerfile) -- [`13.2.0`, `13.2`, `13`, `13.2.0-bookworm`, `13.2-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/13/Dockerfile) +- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/6f09c34227daae15e71f398f0073e31f3ef74234/13/Dockerfile) - [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/12/Dockerfile) - [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/11/Dockerfile) - [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/10/Dockerfile) From 983956e4055d48b9f13dee3885f15994bcc19b79 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 May 2024 16:10:04 -0700 Subject: [PATCH 1202/2686] Run update.sh --- caddy/README.md | 34 +++++++++++++++++----------------- nats/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 40f9d1df98ba..db703538a970 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,12 +28,12 @@ WARNING: ## Simple Tags -- [`2.8.0-beta.2-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/alpine/Dockerfile) -- [`2.8.0-beta.2-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/builder/Dockerfile) -- [`2.8.0-beta.2-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) -- [`2.8.0-beta.2-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.0-beta.2-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/1809/Dockerfile) -- [`2.8.0-beta.2-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.8.0-rc.1-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/alpine/Dockerfile) +- [`2.8.0-rc.1-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/builder/Dockerfile) +- [`2.8.0-rc.1-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) +- [`2.8.0-rc.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.0-rc.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/1809/Dockerfile) +- [`2.8.0-rc.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/ltsc2022/Dockerfile) - [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) - [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/builder/Dockerfile) - [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) @@ -43,17 +43,17 @@ WARNING: ## Shared Tags -- `2.8.0-beta.2`, `2.8`: - - [`2.8.0-beta.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/alpine/Dockerfile) - - [`2.8.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) - - [`2.8.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) -- `2.8.0-beta.2-builder`, `2.8-builder`: - - [`2.8.0-beta.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/builder/Dockerfile) - - [`2.8.0-beta.2-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/1809/Dockerfile) - - [`2.8.0-beta.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows-builder/ltsc2022/Dockerfile) -- `2.8.0-beta.2-windowsservercore`, `2.8-windowsservercore`: - - [`2.8.0-beta.2-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/1809/Dockerfile) - - [`2.8.0-beta.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-rc.1`, `2.8`: + - [`2.8.0-rc.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/alpine/Dockerfile) + - [`2.8.0-rc.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) + - [`2.8.0-rc.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-rc.1-builder`, `2.8-builder`: + - [`2.8.0-rc.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/builder/Dockerfile) + - [`2.8.0-rc.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/1809/Dockerfile) + - [`2.8.0-rc.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.0-rc.1-windowsservercore`, `2.8-windowsservercore`: + - [`2.8.0-rc.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) + - [`2.8.0-rc.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) - `2.7.6`, `2.7`, `2`, `latest`: - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) diff --git a/nats/README.md b/nats/README.md index 89b1b1c552a2..f7217a054d07 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.14-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.14-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/alpine3.19/Dockerfile) -- [`2.10.14-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.14-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/scratch/Dockerfile) -- [`2.10.14-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.14-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.16-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.16-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/alpine3.19/Dockerfile) +- [`2.10.16-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.16-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/scratch/Dockerfile) +- [`2.10.16-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.16-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.14`, `2.10`, `2`, `latest`: - - [`2.10.14-scratch`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/scratch/Dockerfile) - - [`2.10.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.14-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.14-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.14-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.14-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.16`, `2.10`, `2`, `latest`: + - [`2.10.16-scratch`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/scratch/Dockerfile) + - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.16-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.16-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b39950ece3064f20a2a5e25806d093793e455769/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From d53cadd71790d5b431aa76aab07ac8c6f1cbef4c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 May 2024 17:10:31 -0700 Subject: [PATCH 1203/2686] Run update.sh --- gradle/README.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 3c40889e1b66..8fdd0270cd1d 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.0-jdk8`, `8.7-jdk8`, `8-jdk8`, `jdk8`, `8.7.0-jdk8-jammy`, `8.7-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk8/Dockerfile) -- [`8.7.0-jdk8-focal`, `8.7-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk8-focal/Dockerfile) -- [`8.7.0-jdk11`, `8.7-jdk11`, `8-jdk11`, `jdk11`, `8.7.0-jdk11-jammy`, `8.7-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11/Dockerfile) -- [`8.7.0-jdk11-focal`, `8.7-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-focal/Dockerfile) -- [`8.7.0-jdk11-alpine`, `8.7-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk11-alpine/Dockerfile) -- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17/Dockerfile) -- [`8.7.0-jdk17-focal`, `8.7-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.7.0-jdk-focal`, `8.7-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.7.0-focal`, `8.7-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-focal/Dockerfile) -- [`8.7.0-jdk17-alpine`, `8.7-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.7.0-jdk-alpine`, `8.7-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.7.0-alpine`, `8.7-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-alpine/Dockerfile) -- [`8.7.0-jdk17-graal`, `8.7-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.7.0-jdk-graal`, `8.7-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.7.0-graal`, `8.7-graal`, `8-graal`, `graal`, `8.7.0-jdk17-graal-jammy`, `8.7-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.7.0-jdk-graal-jammy`, `8.7-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.7.0-graal-jammy`, `8.7-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk17-graal/Dockerfile) -- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21/Dockerfile) -- [`8.7.0-jdk21-alpine`, `8.7-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-alpine/Dockerfile) -- [`8.7.0-jdk21-graal`, `8.7-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.7.0-jdk21-graal-jammy`, `8.7-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9a1868d61f289a711881d5af0299308968b0fc65/jdk21-graal/Dockerfile) +- [`8.7.0-jdk8`, `8.7-jdk8`, `8-jdk8`, `jdk8`, `8.7.0-jdk8-jammy`, `8.7-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk8/Dockerfile) +- [`8.7.0-jdk8-focal`, `8.7-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk8-focal/Dockerfile) +- [`8.7.0-jdk11`, `8.7-jdk11`, `8-jdk11`, `jdk11`, `8.7.0-jdk11-jammy`, `8.7-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11/Dockerfile) +- [`8.7.0-jdk11-focal`, `8.7-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11-focal/Dockerfile) +- [`8.7.0-jdk11-alpine`, `8.7-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11-alpine/Dockerfile) +- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17/Dockerfile) +- [`8.7.0-jdk17-focal`, `8.7-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.7.0-jdk-focal`, `8.7-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.7.0-focal`, `8.7-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-focal/Dockerfile) +- [`8.7.0-jdk17-alpine`, `8.7-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.7.0-jdk-alpine`, `8.7-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.7.0-alpine`, `8.7-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-alpine/Dockerfile) +- [`8.7.0-jdk17-graal`, `8.7-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.7.0-jdk-graal`, `8.7-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.7.0-graal`, `8.7-graal`, `8-graal`, `graal`, `8.7.0-jdk17-graal-jammy`, `8.7-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.7.0-jdk-graal-jammy`, `8.7-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.7.0-graal-jammy`, `8.7-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-graal/Dockerfile) +- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21/Dockerfile) +- [`8.7.0-jdk21-alpine`, `8.7-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21-alpine/Dockerfile) +- [`8.7.0-jdk21-graal`, `8.7-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.7.0-jdk21-graal-jammy`, `8.7-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21-graal/Dockerfile) +- [`8.7.0-jdk-lts-and-current`, `8.7-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.7.0-jdk-lts-and-current-jammy`, `8.7-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.7.0-jdk-21-and-22`, `8.7-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.7.0-jdk-21-and-22-jammy`, `8.7-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current/Dockerfile) +- [`8.7.0-jdk-lts-and-current-alpine`, `8.7-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.7.0-jdk-21-and-22-alpine`, `8.7-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current-alpine/Dockerfile) +- [`8.7.0-jdk-lts-and-current-graal`, `8.7-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.7.0-jdk-lts-and-current-graal-jammy`, `8.7-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.7.0-jdk-21-and-22-graal`, `8.7-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.7.0-jdk-21-and-22-graal-jammy`, `8.7-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) From b798d10986c83e2edca750024882a3ab6e3df8eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 May 2024 11:10:24 -0700 Subject: [PATCH 1204/2686] Run update.sh --- alpine/README.md | 4 ++-- erlang/README.md | 12 ++++++------ nats/README.md | 30 +++++++++++++++--------------- odoo/README.md | 6 +++--- swipl/README.md | 4 ++-- traefik/README.md | 8 ++++---- 6 files changed, 32 insertions(+), 32 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 1ccb66176367..e211a6a39bb2 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20240329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a89bb0df27ce47646e8f9955934f0d0093c2d18e/x86_64/Dockerfile) -- [`3.19.1`, `3.19`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) +- [`3.20.0`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/142830f310291a58bea7294cc17ed645697861ca/x86_64/Dockerfile) +- [`3.19.1`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) - [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) - [`3.17.7`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1041155cbf4b410b02729c23a198d632945a1744/x86_64/Dockerfile) -- [`3.16.9`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/9c372c82f691cfe76c2058d75e2c4f9cd589d4c5/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 4cce4ec079e7..cd51f2bc5df9 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.0-rc3.0.0`, `27.0-rc3.0`, `27.0-rc3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/Dockerfile) -- [`27.0-rc3.0.0-slim`, `27.0-rc3.0-slim`, `27.0-rc3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/slim/Dockerfile) -- [`27.0-rc3.0.0-alpine`, `27.0-rc3.0-alpine`, `27.0-rc3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/4aa0cf2537dc2371bbd51a378695eba30637e345/27/alpine/Dockerfile) -- [`26.2.5.0`, `26.2.5`, `26.2`, `26`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/Dockerfile) -- [`26.2.5.0-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/slim/Dockerfile) -- [`26.2.5.0-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/alpine/Dockerfile) +- [`27.0.0.0`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/Dockerfile) +- [`27.0.0.0-slim`, `27.0.0-slim`, `27.0-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/slim/Dockerfile) +- [`27.0.0.0-alpine`, `27.0.0-alpine`, `27.0-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/alpine/Dockerfile) +- [`26.2.5.0`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/Dockerfile) +- [`26.2.5.0-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/slim/Dockerfile) +- [`26.2.5.0-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/alpine/Dockerfile) - [`25.3.2.12`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/Dockerfile) - [`25.3.2.12-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/slim/Dockerfile) - [`25.3.2.12-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/alpine/Dockerfile) diff --git a/nats/README.md b/nats/README.md index f7217a054d07..0d571bc5f705 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.16-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.16-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/alpine3.19/Dockerfile) -- [`2.10.16-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.16-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/scratch/Dockerfile) -- [`2.10.16-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.16-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.16-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.16-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/alpine3.19/Dockerfile) +- [`2.10.16-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.16-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/scratch/Dockerfile) +- [`2.10.16-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.16-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags - `2.10.16`, `2.10`, `2`, `latest`: - - [`2.10.16-scratch`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/scratch/Dockerfile) - - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.16-scratch`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/scratch/Dockerfile) + - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) - `2.10.16-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/windowsservercore-1809/Dockerfile) - `2.10.16-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/8d800ec8480ff944f4ee16619ef84082bdc14cf5/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 6b29084bb24c..851ec54a253c 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/28c9d0656e8d39f27dedf7ccccf243477626e807/15.0/Dockerfile) +- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/17.0/Dockerfile) +- [`16.0`, `16`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/16.0/Dockerfile) +- [`15.0`, `15`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/15.0/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 1b7df9fd867f..7b9a86a82205 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.6`](https://github.com/SWI-Prolog/docker-swipl/blob/3ef22f678af652268d24285defc0ae60e62e6d26/9.3.6/bookworm/Dockerfile) -- [`stable`, `9.2.4`](https://github.com/SWI-Prolog/docker-swipl/blob/3ef22f678af652268d24285defc0ae60e62e6d26/9.2.4/bookworm/Dockerfile) +- [`latest`, `9.3.6`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.3.6/bookworm/Dockerfile) +- [`stable`, `9.2.5`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.2.5/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index b10eb607c908..e22132993acc 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.0-windowsservercore-ltsc2022`, `3.0.0-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.0-windowsservercore-1809`, `3.0.0-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/windows/1809/Dockerfile) -- [`v3.0.0-nanoserver-ltsc2022`, `3.0.0-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e921bd38d6f64eca79a681f5d945b99f279a7f4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.0.0`, `3.0.0`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/eb153677fb43d1956c1c17725e74d9a7ae16b659/alpine/Dockerfile) +- [`v3.0.1-windowsservercore-ltsc2022`, `3.0.1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.1-windowsservercore-1809`, `3.0.1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/1809/Dockerfile) +- [`v3.0.1-nanoserver-ltsc2022`, `3.0.1-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.0.1`, `3.0.1`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/alpine/Dockerfile) - [`v2.11.3-windowsservercore-ltsc2022`, `2.11.3-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/servercore-ltsc2022/Dockerfile) - [`v2.11.3-windowsservercore-1809`, `2.11.3-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/1809/Dockerfile) - [`v2.11.3-nanoserver-ltsc2022`, `2.11.3-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/nanoserver-ltsc2022/Dockerfile) From 1e9aa34925d80052c53cb312ec3c0657e2d8e624 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 May 2024 13:10:32 -0700 Subject: [PATCH 1205/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 8899392c4ba9..c7c4db4de949 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.18`, `22.2-alpine3.18`, `22.2.0-alpine3.18`, `alpine3.18`, `current-alpine3.18`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.18/Dockerfile) -- [`22-alpine`, `22-alpine3.19`, `22.2-alpine`, `22.2-alpine3.19`, `22.2.0-alpine`, `22.2.0-alpine3.19`, `alpine`, `alpine3.19`, `current-alpine`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.2-alpine3.19`, `22.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.19/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.2-alpine`, `22.2-alpine3.20`, `22.2.0-alpine`, `22.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/22/alpine3.20/Dockerfile) - [`22`, `22-bookworm`, `22.2`, `22.2-bookworm`, `22.2.0`, `22.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm/Dockerfile) - [`22-bookworm-slim`, `22-slim`, `22.2-bookworm-slim`, `22.2-slim`, `22.2.0-bookworm-slim`, `22.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm-slim/Dockerfile) - [`22-bullseye`, `22.2-bullseye`, `22.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye/Dockerfile) - [`22-bullseye-slim`, `22.2-bullseye-slim`, `22.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye-slim/Dockerfile) -- [`21-alpine3.18`, `21.7-alpine3.18`, `21.7.3-alpine3.18`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.18/Dockerfile) -- [`21-alpine`, `21-alpine3.19`, `21.7-alpine`, `21.7-alpine3.19`, `21.7.3-alpine`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) +- [`21-alpine3.19`, `21.7-alpine3.19`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) +- [`21-alpine`, `21-alpine3.20`, `21.7-alpine`, `21.7-alpine3.20`, `21.7.3-alpine`, `21.7.3-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/21/alpine3.20/Dockerfile) - [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.18`, `20.13-alpine3.18`, `20.13.1-alpine3.18`, `iron-alpine3.18`, `lts-alpine3.18`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.18/Dockerfile) -- [`20-alpine`, `20-alpine3.19`, `20.13-alpine`, `20.13-alpine3.19`, `20.13.1-alpine`, `20.13.1-alpine3.19`, `iron-alpine`, `iron-alpine3.19`, `lts-alpine`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.13-alpine3.19`, `20.13.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.19/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.13-alpine`, `20.13-alpine3.20`, `20.13.1-alpine`, `20.13.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/20/alpine3.20/Dockerfile) - [`20`, `20-bookworm`, `20.13`, `20.13-bookworm`, `20.13.1`, `20.13.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm/Dockerfile) - [`20-bookworm-slim`, `20-slim`, `20.13-bookworm-slim`, `20.13-slim`, `20.13.1-bookworm-slim`, `20.13.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.13-bullseye`, `20.13.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.13-buster`, `20.13.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster/Dockerfile) - [`20-buster-slim`, `20.13-buster-slim`, `20.13.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster-slim/Dockerfile) -- [`18-alpine3.18`, `18.20-alpine3.18`, `18.20.3-alpine3.18`, `hydrogen-alpine3.18`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.18/Dockerfile) -- [`18-alpine`, `18-alpine3.19`, `18.20-alpine`, `18.20-alpine3.19`, `18.20.3-alpine`, `18.20.3-alpine3.19`, `hydrogen-alpine`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.19/Dockerfile) +- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.19/Dockerfile) +- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/18/alpine3.20/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) - [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) From 3bcaecd656878d4bed163601e8439258dba8b93d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 May 2024 16:10:27 -0700 Subject: [PATCH 1206/2686] Run update.sh --- bash/README.md | 28 ++++++++++++++-------------- buildpack-deps/README.md | 6 +++--- docker/README.md | 36 ++++++++++++++++++------------------ golang/README.md | 10 +++++----- memcached/README.md | 4 ++-- php/README.md | 38 +++++++++++++++++++------------------- python/README.md | 26 +++++++++++++------------- ruby/README.md | 25 ++++++++++--------------- 8 files changed, 84 insertions(+), 89 deletions(-) diff --git a/bash/README.md b/bash/README.md index 1f50b444b5d8..cd6fd389974b 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240520`, `devel`, `devel-20240520-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/6079cb14b574c984d67d5af3d7767f9314b6498f/devel/Dockerfile) -- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.19`, `5.3-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/tianon/docker-bash/blob/608eced9a1929c57fec449ea5f2f770a0371e5a3/5.3-rc/Dockerfile) -- [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.19`, `4.4-alpine3.19`, `4-alpine3.19`](https://github.com/tianon/docker-bash/blob/682faa73aff031837c3d60db8666384c2ec72bba/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.19`, `4.3-alpine3.19`](https://github.com/tianon/docker-bash/blob/0686d8b7feac5b76e8c14be9fb44b823c5a2f7ec/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.19`, `4.2-alpine3.19`](https://github.com/tianon/docker-bash/blob/b7fb84109bde6e9d78e8a1eac2a91e6f0e20226b/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.19`, `4.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/951a1e31d2dee53473893050f29259acd18dc6ae/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.19`, `4.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/9927111b47c93b0b0057077725797625980a696d/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.19`, `3.2-alpine3.19`, `3-alpine3.19`](https://github.com/tianon/docker-bash/blob/1a08d56b8f1ad68e669ec9ee936512e6a7606aab/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.19`, `3.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/77ce8451ec601516ed8e2868bac35a5f38bb0bd3/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.19`, `3.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/88332b0ace10af319000ace7659aa1c1416cbce8/3.0/Dockerfile) +- [`devel-20240520`, `devel`, `devel-20240520-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/9477b56c23c2059d9af7cc25338a318e278da776/devel/Dockerfile) +- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) +- [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.20`, `5.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/699819eee5befbf7ac7f906e7a30171287de720b/5.0/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.20`, `4.4-alpine3.20`, `4-alpine3.20`](https://github.com/tianon/docker-bash/blob/f7d533503f4423a7542fd5479b053a35027025a1/4.4/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.20`, `4.3-alpine3.20`](https://github.com/tianon/docker-bash/blob/0f38d86a4e6b5431d22f2afb2bd7c181221ad7d7/4.3/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.20`, `4.2-alpine3.20`](https://github.com/tianon/docker-bash/blob/05f9e93fbf2b995ee28a757b3cbcd0ae8d90445c/4.2/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.20`, `4.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/9e8e378aa52eebb91a1c74b9b4b8db724d4cef95/4.1/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.20`, `4.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/94dfac8edcd2f9cab9ad6277d5b621d3b68ed865/4.0/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.20`, `3.2-alpine3.20`, `3-alpine3.20`](https://github.com/tianon/docker-bash/blob/bd69755669b80037ca0d1e2181a823860af9737d/3.2/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.20`, `3.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/a83617b0ccad194449d1b3302900d0e3da9208b0/3.1/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.20`, `3.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/70ab2885f72c548029c8121364a553c35e7a68bb/3.0/Dockerfile) # Quick reference (cont.) @@ -44,7 +44,7 @@ WARNING: [https://github.com/tianon/docker-bash/issues](https://github.com/tianon/docker-bash/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/bash/), [`arm32v6`](https://hub.docker.com/r/arm32v6/bash/), [`arm32v7`](https://hub.docker.com/r/arm32v7/bash/), [`arm64v8`](https://hub.docker.com/r/arm64v8/bash/), [`i386`](https://hub.docker.com/r/i386/bash/), [`ppc64le`](https://hub.docker.com/r/ppc64le/bash/), [`s390x`](https://hub.docker.com/r/s390x/bash/) + [`amd64`](https://hub.docker.com/r/amd64/bash/), [`arm32v6`](https://hub.docker.com/r/arm32v6/bash/), [`arm32v7`](https://hub.docker.com/r/arm32v7/bash/), [`arm64v8`](https://hub.docker.com/r/arm64v8/bash/), [`i386`](https://hub.docker.com/r/i386/bash/), [`ppc64le`](https://hub.docker.com/r/ppc64le/bash/), [`riscv64`](https://hub.docker.com/r/riscv64/bash/), [`s390x`](https://hub.docker.com/r/s390x/bash/) - **Published image artifact details**: [repo-info repo's `repos/bash/` directory](https://github.com/docker-library/repo-info/blob/master/repos/bash) ([history](https://github.com/docker-library/repo-info/commits/master/repos/bash)) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 8018aaa365b4..fa93125eef15 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -48,9 +48,9 @@ WARNING: - [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) - [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/scm/Dockerfile) - [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/Dockerfile) -- [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/f735abb203e08f7317b62c7f48d3e3d6b3d33a04/ubuntu/noble/curl/Dockerfile) -- [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/noble/scm/Dockerfile) -- [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/noble/Dockerfile) +- [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/curl/Dockerfile) +- [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/scm/Dockerfile) +- [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 513ffecf2179..44d7f62582f3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.19`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/cli/Dockerfile) -- [`26.1.3-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.3-dind-alpine3.19`, `26.1.3`, `26.1`, `26`, `latest`, `26.1.3-alpine3.19`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind/Dockerfile) +- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/cli/Dockerfile) +- [`26.1.3-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.3-dind-alpine3.20`, `26.1.3`, `26.1`, `26`, `latest`, `26.1.3-alpine3.20`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind/Dockerfile) - [`26.1.3-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind-rootless/Dockerfile) -- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.19`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/cli/Dockerfile) -- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.19`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.19`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) +- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/cli/Dockerfile) +- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.19`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/cli/Dockerfile) -- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.19`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.19`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/cli/Dockerfile) +- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.1.3-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/96b05bda808bce322f08b0aa0005d43810134fdc/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0b3297dc11a73256792447608e75af81a2cbe95e/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 269d4a237e57..b80d55e8a5ca 100644 --- a/golang/README.md +++ b/golang/README.md @@ -30,16 +30,16 @@ WARNING: - [`1.22.3-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bookworm/Dockerfile) - [`1.22.3-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bullseye/Dockerfile) -- [`1.22.3-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.22.3-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.19/Dockerfile) -- [`1.22.3-alpine3.18`, `1.22-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.18/Dockerfile) +- [`1.22.3-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.3-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/cf7a37dedf1fd5a25ca72075645368d1e3c30c4a/1.22/alpine3.20/Dockerfile) +- [`1.22.3-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.19/Dockerfile) - [`1.22.3-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.3-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) - [`1.22.3-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.3-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-1809/Dockerfile) - [`1.21.10-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bookworm/Dockerfile) - [`1.21.10-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bullseye/Dockerfile) -- [`1.21.10-alpine3.19`, `1.21-alpine3.19`, `1.21.10-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.19/Dockerfile) -- [`1.21.10-alpine3.18`, `1.21-alpine3.18`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.18/Dockerfile) +- [`1.21.10-alpine3.20`, `1.21-alpine3.20`, `1.21.10-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/cf7a37dedf1fd5a25ca72075645368d1e3c30c4a/1.21/alpine3.20/Dockerfile) +- [`1.21.10-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.19/Dockerfile) - [`1.21.10-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.10-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.10-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-ltsc2022/Dockerfile) @@ -74,7 +74,7 @@ WARNING: [https://github.com/docker-library/golang/issues](https://github.com/docker-library/golang/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`mips64le`](https://hub.docker.com/r/mips64le/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/) + [`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`mips64le`](https://hub.docker.com/r/mips64le/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`riscv64`](https://hub.docker.com/r/riscv64/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/) - **Published image artifact details**: [repo-info repo's `repos/golang/` directory](https://github.com/docker-library/repo-info/blob/master/repos/golang) ([history](https://github.com/docker-library/repo-info/commits/master/repos/golang)) diff --git a/memcached/README.md b/memcached/README.md index 06c4f5f86dff..b416ad5f6c29 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.27`, `1.6`, `1`, `latest`, `1.6.27-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/89cfc0a083fd575c2d809c280e7e5ba9b1622072/1/debian/Dockerfile) -- [`1.6.27-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.27-alpine3.19`, `1.6-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/memcached/blob/89cfc0a083fd575c2d809c280e7e5ba9b1622072/1/alpine/Dockerfile) +- [`1.6.27-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.27-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/0f0140d7051feedb89e5373ce965fa33a2ef17d5/1/alpine/Dockerfile) # Quick reference (cont.) @@ -33,7 +33,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) diff --git a/php/README.md b/php/README.md index f8229aa35e1a..df6585fdc250 100644 --- a/php/README.md +++ b/php/README.md @@ -32,12 +32,12 @@ WARNING: - [`8.3.7-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/apache/Dockerfile) - [`8.3.7-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/fpm/Dockerfile) - [`8.3.7-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/zts/Dockerfile) -- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.7-cli-alpine3.18`, `8.3-cli-alpine3.18`, `8-cli-alpine3.18`, `cli-alpine3.18`, `8.3.7-alpine3.18`, `8.3-alpine3.18`, `8-alpine3.18`, `alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.18`, `8.3-fpm-alpine3.18`, `8-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.18`, `8.3-zts-alpine3.18`, `8-zts-alpine3.18`, `zts-alpine3.18`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.18/zts/Dockerfile) +- [`8.3.7-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.7-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/zts/Dockerfile) - [`8.2.19-cli-bookworm`, `8.2-cli-bookworm`, `8.2.19-bookworm`, `8.2-bookworm`, `8.2.19-cli`, `8.2-cli`, `8.2.19`, `8.2`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/cli/Dockerfile) - [`8.2.19-apache-bookworm`, `8.2-apache-bookworm`, `8.2.19-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/apache/Dockerfile) - [`8.2.19-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.19-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/fpm/Dockerfile) @@ -46,12 +46,12 @@ WARNING: - [`8.2.19-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/apache/Dockerfile) - [`8.2.19-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/fpm/Dockerfile) - [`8.2.19-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/zts/Dockerfile) -- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.19-cli-alpine3.18`, `8.2-cli-alpine3.18`, `8.2.19-alpine3.18`, `8.2-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.18`, `8.2-fpm-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.18`, `8.2-zts-alpine3.18`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.18/zts/Dockerfile) +- [`8.2.19-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.19-alpine3.20`, `8.2-alpine3.20`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/zts/Dockerfile) - [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/cli/Dockerfile) - [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/apache/Dockerfile) - [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/fpm/Dockerfile) @@ -60,12 +60,12 @@ WARNING: - [`8.1.28-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/apache/Dockerfile) - [`8.1.28-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/fpm/Dockerfile) - [`8.1.28-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/zts/Dockerfile) -- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/zts/Dockerfile) -- [`8.1.28-cli-alpine3.18`, `8.1-cli-alpine3.18`, `8.1.28-alpine3.18`, `8.1-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.18`, `8.1-fpm-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.18`, `8.1-zts-alpine3.18`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.18/zts/Dockerfile) +- [`8.1.28-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.28-alpine3.20`, `8.1-alpine3.20`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) @@ -73,7 +73,7 @@ WARNING: [https://github.com/docker-library/php/issues](https://github.com/docker-library/php/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/php/), [`arm32v5`](https://hub.docker.com/r/arm32v5/php/), [`arm32v6`](https://hub.docker.com/r/arm32v6/php/), [`arm32v7`](https://hub.docker.com/r/arm32v7/php/), [`arm64v8`](https://hub.docker.com/r/arm64v8/php/), [`i386`](https://hub.docker.com/r/i386/php/), [`mips64le`](https://hub.docker.com/r/mips64le/php/), [`ppc64le`](https://hub.docker.com/r/ppc64le/php/), [`s390x`](https://hub.docker.com/r/s390x/php/) + [`amd64`](https://hub.docker.com/r/amd64/php/), [`arm32v5`](https://hub.docker.com/r/arm32v5/php/), [`arm32v6`](https://hub.docker.com/r/arm32v6/php/), [`arm32v7`](https://hub.docker.com/r/arm32v7/php/), [`arm64v8`](https://hub.docker.com/r/arm64v8/php/), [`i386`](https://hub.docker.com/r/i386/php/), [`mips64le`](https://hub.docker.com/r/mips64le/php/), [`ppc64le`](https://hub.docker.com/r/ppc64le/php/), [`riscv64`](https://hub.docker.com/r/riscv64/php/), [`s390x`](https://hub.docker.com/r/s390x/php/) - **Published image artifact details**: [repo-info repo's `repos/php/` directory](https://github.com/docker-library/repo-info/blob/master/repos/php) ([history](https://github.com/docker-library/repo-info/commits/master/repos/php)) diff --git a/python/README.md b/python/README.md index 80f2e22f154e..77d1101f0c00 100644 --- a/python/README.md +++ b/python/README.md @@ -32,44 +32,44 @@ WARNING: - [`3.13.0b1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bookworm/Dockerfile) - [`3.13.0b1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bullseye/Dockerfile) - [`3.13.0b1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b1-alpine3.19`, `3.13-rc-alpine3.19`, `3.13.0b1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b1-alpine3.18`, `3.13-rc-alpine3.18`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.18/Dockerfile) +- [`3.13.0b1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.19/Dockerfile) - [`3.13.0b1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.3-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - [`3.12.3-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.3-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bookworm/Dockerfile) - [`3.12.3-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bullseye/Dockerfile) - [`3.12.3-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bullseye/Dockerfile) -- [`3.12.3-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.19/Dockerfile) -- [`3.12.3-alpine3.18`, `3.12-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.18/Dockerfile) +- [`3.12.3-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.12/alpine3.20/Dockerfile) +- [`3.12.3-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.19/Dockerfile) - [`3.12.3-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.3-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) - [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) - [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.19/Dockerfile) -- [`3.11.9-alpine3.18`, `3.11-alpine3.18`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.18/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.19/Dockerfile) - [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) - [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bookworm/Dockerfile) - [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bullseye/Dockerfile) - [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.19/Dockerfile) -- [`3.10.14-alpine3.18`, `3.10-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.18/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.19/Dockerfile) - [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) - [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bookworm/Dockerfile) - [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bullseye/Dockerfile) - [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.19/Dockerfile) -- [`3.9.19-alpine3.18`, `3.9-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.18/Dockerfile) +- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.9/alpine3.20/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.19/Dockerfile) - [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bookworm/Dockerfile) - [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bookworm/Dockerfile) - [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bullseye/Dockerfile) - [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.19/Dockerfile) -- [`3.8.19-alpine3.18`, `3.8-alpine3.18`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.18/Dockerfile) +- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.8/alpine3.20/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.19/Dockerfile) ## Shared Tags @@ -107,7 +107,7 @@ WARNING: [https://github.com/docker-library/python/issues](https://github.com/docker-library/python/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`mips64le`](https://hub.docker.com/r/mips64le/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/) + [`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`mips64le`](https://hub.docker.com/r/mips64le/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`riscv64`](https://hub.docker.com/r/riscv64/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/) - **Published image artifact details**: [repo-info repo's `repos/python/` directory](https://github.com/docker-library/repo-info/blob/master/repos/python) ([history](https://github.com/docker-library/repo-info/commits/master/repos/python)) diff --git a/ruby/README.md b/ruby/README.md index bb935a79f483..e091633f75a4 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -28,31 +28,26 @@ WARNING: - [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bookworm/Dockerfile) - [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bullseye/Dockerfile) - [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) -- [`3.4.0-preview1-alpine3.18`, `3.4-rc-alpine3.18`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.18/Dockerfile) +- [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) - [`3.3.1-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.1`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bookworm/Dockerfile) - [`3.3.1-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.1-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bookworm/Dockerfile) - [`3.3.1-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bullseye/Dockerfile) - [`3.3.1-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bullseye/Dockerfile) -- [`3.3.1-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`, `3.3.1-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.19/Dockerfile) -- [`3.3.1-alpine3.18`, `3.3-alpine3.18`, `3-alpine3.18`, `alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.18/Dockerfile) +- [`3.3.1-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.1-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.3/alpine3.20/Dockerfile) +- [`3.3.1-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.19/Dockerfile) - [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) - [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) - [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) - [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bullseye/Dockerfile) -- [`3.2.4-alpine3.19`, `3.2-alpine3.19`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) -- [`3.2.4-alpine3.18`, `3.2-alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.18/Dockerfile) +- [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.2/alpine3.20/Dockerfile) +- [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) - [`3.1.5-bookworm`, `3.1-bookworm`, `3.1.5`, `3.1`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bookworm/Dockerfile) - [`3.1.5-slim-bookworm`, `3.1-slim-bookworm`, `3.1.5-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bookworm/Dockerfile) - [`3.1.5-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bullseye/Dockerfile) - [`3.1.5-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bullseye/Dockerfile) -- [`3.1.5-alpine3.19`, `3.1-alpine3.19`, `3.1.5-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.19/Dockerfile) -- [`3.1.5-alpine3.18`, `3.1-alpine3.18`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.18/Dockerfile) -- [`3.0.7-bullseye`, `3.0-bullseye`, `3.0.7`, `3.0`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/bullseye/Dockerfile) -- [`3.0.7-slim-bullseye`, `3.0-slim-bullseye`, `3.0.7-slim`, `3.0-slim`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/slim-bullseye/Dockerfile) -- [`3.0.7-buster`, `3.0-buster`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/buster/Dockerfile) -- [`3.0.7-slim-buster`, `3.0-slim-buster`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/slim-buster/Dockerfile) -- [`3.0.7-alpine3.16`, `3.0-alpine3.16`, `3.0.7-alpine`, `3.0-alpine`](https://github.com/docker-library/ruby/blob/1db5a7b341c03963ea27b0664f46bcf2e47c0912/3.0/alpine3.16/Dockerfile) +- [`3.1.5-alpine3.20`, `3.1-alpine3.20`, `3.1.5-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.1/alpine3.20/Dockerfile) +- [`3.1.5-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.19/Dockerfile) # Quick reference (cont.) @@ -60,7 +55,7 @@ WARNING: [https://github.com/docker-library/ruby/issues](https://github.com/docker-library/ruby/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ruby/), [`arm32v5`](https://hub.docker.com/r/arm32v5/ruby/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ruby/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ruby/), [`i386`](https://hub.docker.com/r/i386/ruby/), [`mips64le`](https://hub.docker.com/r/mips64le/ruby/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ruby/), [`s390x`](https://hub.docker.com/r/s390x/ruby/) + [`amd64`](https://hub.docker.com/r/amd64/ruby/), [`arm32v5`](https://hub.docker.com/r/arm32v5/ruby/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ruby/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ruby/), [`i386`](https://hub.docker.com/r/i386/ruby/), [`mips64le`](https://hub.docker.com/r/mips64le/ruby/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ruby/), [`riscv64`](https://hub.docker.com/r/riscv64/ruby/), [`s390x`](https://hub.docker.com/r/s390x/ruby/) - **Published image artifact details**: [repo-info repo's `repos/ruby/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ruby) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ruby)) @@ -146,7 +141,7 @@ The `ruby` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From 001ea6995946cadab8126014aa72e6454e6df40e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 May 2024 17:10:16 -0700 Subject: [PATCH 1207/2686] Run update.sh --- postgres/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 0fac0ec347e2..c2e656c1b00c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -26,24 +26,24 @@ WARNING: - [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) - [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) -- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.19/Dockerfile) -- [`16.3-alpine3.18`, `16-alpine3.18`, `alpine3.18`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.18/Dockerfile) +- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/16/alpine3.20/Dockerfile) +- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.19/Dockerfile) - [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) - [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) -- [`15.7-alpine3.19`, `15-alpine3.19`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.19/Dockerfile) -- [`15.7-alpine3.18`, `15-alpine3.18`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.18/Dockerfile) +- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/15/alpine3.20/Dockerfile) +- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.19/Dockerfile) - [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) - [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) -- [`14.12-alpine3.19`, `14-alpine3.19`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.19/Dockerfile) -- [`14.12-alpine3.18`, `14-alpine3.18`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.18/Dockerfile) +- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/14/alpine3.20/Dockerfile) +- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.19/Dockerfile) - [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) - [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) -- [`13.15-alpine3.19`, `13-alpine3.19`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.19/Dockerfile) -- [`13.15-alpine3.18`, `13-alpine3.18`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.18/Dockerfile) +- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/13/alpine3.20/Dockerfile) +- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.19/Dockerfile) - [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) - [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) -- [`12.19-alpine3.19`, `12-alpine3.19`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.19/Dockerfile) -- [`12.19-alpine3.18`, `12-alpine3.18`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.18/Dockerfile) +- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/12/alpine3.20/Dockerfile) +- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.19/Dockerfile) # Quick reference (cont.) @@ -51,7 +51,7 @@ WARNING: [https://github.com/docker-library/postgres/issues](https://github.com/docker-library/postgres/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/postgres/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postgres/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postgres/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postgres/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postgres/), [`i386`](https://hub.docker.com/r/i386/postgres/), [`mips64le`](https://hub.docker.com/r/mips64le/postgres/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postgres/), [`s390x`](https://hub.docker.com/r/s390x/postgres/) + [`amd64`](https://hub.docker.com/r/amd64/postgres/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postgres/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postgres/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postgres/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postgres/), [`i386`](https://hub.docker.com/r/i386/postgres/), [`mips64le`](https://hub.docker.com/r/mips64le/postgres/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postgres/), [`riscv64`](https://hub.docker.com/r/riscv64/postgres/), [`s390x`](https://hub.docker.com/r/s390x/postgres/) - **Published image artifact details**: [repo-info repo's `repos/postgres/` directory](https://github.com/docker-library/repo-info/blob/master/repos/postgres) ([history](https://github.com/docker-library/repo-info/commits/master/repos/postgres)) From 6f3d9a2d8b8705dfc9490401a31775f5347aaeac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 May 2024 12:10:05 -0700 Subject: [PATCH 1208/2686] Run update.sh --- liquibase/README.md | 4 ++-- neo4j/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 80959aad0d13..98bf94ca0c7e 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.27`, `4.27.0`, `latest`](https://github.com/liquibase/docker/blob/7229778e4e912224ff54dbae0e05aae149544ed2/Dockerfile) -- [`4.27-alpine`, `4.27.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/7229778e4e912224ff54dbae0e05aae149544ed2/Dockerfile.alpine) +- [`4.28`, `4.28.0`, `latest`](https://github.com/liquibase/docker/blob/655c4b4c702ee11eeafae6ac4521d8cb773dd2e1/Dockerfile) +- [`4.28-alpine`, `4.28.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/655c4b4c702ee11eeafae6ac4521d8cb773dd2e1/Dockerfile.alpine) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 6e74b3ff4525..c6ab46ef5d3e 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.19.0-community-bullseye`, `5.19-community-bullseye`, `5-community-bullseye`, `5.19.0-community`, `5.19-community`, `5-community`, `5.19.0-bullseye`, `5.19-bullseye`, `5-bullseye`, `5.19.0`, `5.19`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/bullseye/community/Dockerfile) -- [`5.19.0-enterprise-bullseye`, `5.19-enterprise-bullseye`, `5-enterprise-bullseye`, `5.19.0-enterprise`, `5.19-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/bullseye/enterprise/Dockerfile) -- [`5.19.0-community-ubi9`, `5.19-community-ubi9`, `5-community-ubi9`, `5.19.0-ubi9`, `5.19-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/community/Dockerfile) -- [`5.19.0-enterprise-ubi9`, `5.19-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi9/enterprise/Dockerfile) -- [`5.19.0-community-ubi8`, `5.19-community-ubi8`, `5-community-ubi8`, `5.19.0-ubi8`, `5.19-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/community/Dockerfile) -- [`5.19.0-enterprise-ubi8`, `5.19-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/7c6df60835e7d09c6c21f9885bd802a45c6eb31f/5.19.0/ubi8/enterprise/Dockerfile) +- [`5.20.0-community-bullseye`, `5.20-community-bullseye`, `5-community-bullseye`, `5.20.0-community`, `5.20-community`, `5-community`, `5.20.0-bullseye`, `5.20-bullseye`, `5-bullseye`, `5.20.0`, `5.20`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/bullseye/community/Dockerfile) +- [`5.20.0-enterprise-bullseye`, `5.20-enterprise-bullseye`, `5-enterprise-bullseye`, `5.20.0-enterprise`, `5.20-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/bullseye/enterprise/Dockerfile) +- [`5.20.0-community-ubi9`, `5.20-community-ubi9`, `5-community-ubi9`, `5.20.0-ubi9`, `5.20-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi9/community/Dockerfile) +- [`5.20.0-enterprise-ubi9`, `5.20-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi9/enterprise/Dockerfile) +- [`5.20.0-community-ubi8`, `5.20-community-ubi8`, `5-community-ubi8`, `5.20.0-ubi8`, `5.20-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi8/community/Dockerfile) +- [`5.20.0-enterprise-ubi8`, `5.20-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi8/enterprise/Dockerfile) - [`4.4.34`, `4.4.34-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/community/Dockerfile) - [`4.4.34-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/enterprise/Dockerfile) From 219aae1ffa1224f3b0d8bc03467da35464222600 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 May 2024 17:10:18 -0700 Subject: [PATCH 1209/2686] Run update.sh --- dart/README.md | 2 +- mariadb/README.md | 18 ++++++------- open-liberty/README.md | 54 ++++++++++++++++++------------------- ros/README.md | 6 ++--- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 5 files changed, 64 insertions(+), 64 deletions(-) diff --git a/dart/README.md b/dart/README.md index 3aa927f20542..fb10e79e6f42 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.0`, `3.4`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/4af4b313c55227fc3ff3adcf7fe64d919e5c636d/stable/bookworm/Dockerfile) +- [`3.4.1-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.1`, `3.4`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/5adc8590a06b34c8633827d948e6aed82c92fd0a/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 46b733a3edd3..849200bc79cf 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,15 +26,15 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.4/Dockerfile) -- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.3/Dockerfile) -- [`11.2.3-jammy`, `11.2-jammy`, `11.2.3`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.2/Dockerfile) -- [`11.1.4-jammy`, `11.1-jammy`, `11.1.4`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.1/Dockerfile) -- [`11.0.5-jammy`, `11.0-jammy`, `11.0.5`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/11.0/Dockerfile) -- [`10.11.7-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.7`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.11/Dockerfile) -- [`10.6.17-focal`, `10.6-focal`, `10.6.17`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.6/Dockerfile) -- [`10.5.24-focal`, `10.5-focal`, `10.5.24`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/d7a950d41e9347ac94ad2d2f28469bff74858db7/10.5/Dockerfile) -- [`10.4.33-focal`, `10.4-focal`, `10.4.33`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/1d95dfc811b0666ab39cecdbf88c4d956e74f765/10.4/Dockerfile) +- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/e0677724cbe9f932a568c8f85bca6c14d460bbb4/11.4/Dockerfile) +- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/e0677724cbe9f932a568c8f85bca6c14d460bbb4/11.3/Dockerfile) +- [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.2/Dockerfile) +- [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.1/Dockerfile) +- [`11.0.6-jammy`, `11.0-jammy`, `11.0.6`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.0/Dockerfile) +- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.8`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.11/Dockerfile) +- [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.6/Dockerfile) +- [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.5/Dockerfile) +- [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.4/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 22743647e823..436bf07ec79a 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/24.0.0.4/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a6fd7e10a5e53d952b524102a7d01dd16b93424a/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index cdd5f466ec01..24675adaf208 100644 --- a/ros/README.md +++ b/ros/README.md @@ -29,13 +29,13 @@ WARNING: - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/humble/ubuntu/jammy/ros-core/Dockerfile) -- [`humble-ros-base`, `humble-ros-base-jammy`, `humble`, `latest`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) +- [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) - [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) -- [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) +- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/74e321bc1837c29f223a6d54895aa3c8eb184119/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) +- [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) - [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-base/Dockerfile) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index da198d8b05f1..563790b127fd 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/24.0.0.4/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/4ac4a82b2af775e8c542fe2e15b8d87432ae98f7/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 4c42bfa6cc9817f5afcc3f90ebeec1786e064789 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 May 2024 18:10:04 -0700 Subject: [PATCH 1210/2686] Run update.sh --- haproxy/README.md | 16 +++++++--------- irssi/README.md | 4 ++-- redis/README.md | 14 +++++++------- rust/README.md | 4 ++-- spiped/README.md | 4 ++-- 5 files changed, 20 insertions(+), 22 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 85f0af574819..635058311271 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -25,19 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.0-dev12`, `3.0-dev`, `3.0-dev12-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/893c649e60e147302a9e466e476e60fd0880726b/3.0/Dockerfile) -- [`3.0-dev12-alpine`, `3.0-dev-alpine`, `3.0-dev12-alpine3.19`, `3.0-dev-alpine3.19`](https://github.com/docker-library/haproxy/blob/893c649e60e147302a9e466e476e60fd0880726b/3.0/alpine/Dockerfile) +- [`3.0-dev12-alpine`, `3.0-dev-alpine`, `3.0-dev12-alpine3.20`, `3.0-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) -- [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.19`, `2.9-alpine3.19`, `alpine3.19`](https://github.com/docker-library/haproxy/blob/92d0a2f516f348c774861766fba6bfd87b145eca/2.9/alpine/Dockerfile) +- [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) -- [`2.8.9-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.9-alpine3.19`, `2.8-alpine3.19`, `lts-alpine3.19`](https://github.com/docker-library/haproxy/blob/5d34d74e22c28578cf57033f78017613ea0ced0c/2.8/alpine/Dockerfile) +- [`2.8.9-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.9-alpine3.20`, `2.8-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.8/alpine/Dockerfile) - [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) -- [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.19`, `2.6-alpine3.19`](https://github.com/docker-library/haproxy/blob/20e1b3f92d1e74b2644f5748c62a148d07e2ca43/2.6/alpine/Dockerfile) +- [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.6/alpine/Dockerfile) - [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) -- [`2.4.26-alpine`, `2.4-alpine`, `2.4.26-alpine3.19`, `2.4-alpine3.19`](https://github.com/docker-library/haproxy/blob/3a8296a8e525bfff099f553cf79a46fc9ad384f2/2.4/alpine/Dockerfile) +- [`2.4.26-alpine`, `2.4-alpine`, `2.4.26-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) -- [`2.2.33-alpine`, `2.2-alpine`, `2.2.33-alpine3.16`, `2.2-alpine3.16`](https://github.com/docker-library/haproxy/blob/3eaa160ca6c050f3451b7aad648f06ebc0a8bb22/2.2/alpine/Dockerfile) -- [`2.0.35`, `2.0`, `2.0.35-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.0/Dockerfile) -- [`2.0.35-alpine`, `2.0-alpine`, `2.0.35-alpine3.16`, `2.0-alpine3.16`](https://github.com/docker-library/haproxy/blob/ecaebdd6ebd66297882800ef9d55edfd0b52237d/2.0/alpine/Dockerfile) +- [`2.0.35`, `2.0`, `2.0.35-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/7eb71e6990a7d42494707c04d3230dee3c424a82/2.0/Dockerfile) # Quick reference (cont.) @@ -45,7 +43,7 @@ WARNING: [https://github.com/docker-library/haproxy/issues](https://github.com/docker-library/haproxy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`mips64le`](https://hub.docker.com/r/mips64le/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/) + [`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`mips64le`](https://hub.docker.com/r/mips64le/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`riscv64`](https://hub.docker.com/r/riscv64/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/) - **Published image artifact details**: [repo-info repo's `repos/haproxy/` directory](https://github.com/docker-library/repo-info/blob/master/repos/haproxy) ([history](https://github.com/docker-library/repo-info/commits/master/repos/haproxy)) diff --git a/irssi/README.md b/irssi/README.md index 4b7de217496c..8ab17174e27a 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) -- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.18`, `1.4-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/jessfraz/irssi/blob/a3a3f65ed35b33c791a86af4383b5129ab7b7721/alpine/Dockerfile) +- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.20`, `1.4-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/jessfraz/irssi/blob/ce043e84f00a74532313e8a6203bc8b96194c28a/alpine/Dockerfile) # Quick reference (cont.) @@ -33,7 +33,7 @@ WARNING: [https://github.com/jessfraz/irssi/issues](https://github.com/jessfraz/irssi/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/irssi/), [`arm32v5`](https://hub.docker.com/r/arm32v5/irssi/), [`arm32v6`](https://hub.docker.com/r/arm32v6/irssi/), [`arm32v7`](https://hub.docker.com/r/arm32v7/irssi/), [`arm64v8`](https://hub.docker.com/r/arm64v8/irssi/), [`i386`](https://hub.docker.com/r/i386/irssi/), [`mips64le`](https://hub.docker.com/r/mips64le/irssi/), [`ppc64le`](https://hub.docker.com/r/ppc64le/irssi/), [`s390x`](https://hub.docker.com/r/s390x/irssi/) + [`amd64`](https://hub.docker.com/r/amd64/irssi/), [`arm32v5`](https://hub.docker.com/r/arm32v5/irssi/), [`arm32v6`](https://hub.docker.com/r/arm32v6/irssi/), [`arm32v7`](https://hub.docker.com/r/arm32v7/irssi/), [`arm64v8`](https://hub.docker.com/r/arm64v8/irssi/), [`i386`](https://hub.docker.com/r/i386/irssi/), [`mips64le`](https://hub.docker.com/r/mips64le/irssi/), [`ppc64le`](https://hub.docker.com/r/ppc64le/irssi/), [`riscv64`](https://hub.docker.com/r/riscv64/irssi/), [`s390x`](https://hub.docker.com/r/s390x/irssi/) - **Published image artifact details**: [repo-info repo's `repos/irssi/` directory](https://github.com/docker-library/repo-info/blob/master/repos/irssi) ([history](https://github.com/docker-library/repo-info/commits/master/repos/irssi)) diff --git a/redis/README.md b/redis/README.md index bc1cf4ddad8a..9790afadc101 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/b50eb50d936041804b28703bd84d379ff55ae2af/7.2/debian/Dockerfile) -- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.19`, `7.2-alpine3.19`, `7-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redis/blob/b50eb50d936041804b28703bd84d379ff55ae2af/7.2/alpine/Dockerfile) -- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/7.0/debian/Dockerfile) -- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.19`, `7.0-alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/7.0/alpine/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/f623bf8a6fef29b1459a29ff9f852c0f88d76b5a/6.2/debian/Dockerfile) -- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.19`, `6.2-alpine3.19`, `6-alpine3.19`](https://github.com/docker-library/redis/blob/b628649ceee29da4c28c889417f264c219ca2afb/6.2/alpine/Dockerfile) +- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) +- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) +- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) +- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.20`, `7.0-alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/alpine/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) +- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) # Quick reference (cont.) @@ -37,7 +37,7 @@ WARNING: [https://github.com/docker-library/redis/issues](https://github.com/docker-library/redis/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/redis/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redis/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redis/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redis/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redis/), [`i386`](https://hub.docker.com/r/i386/redis/), [`mips64le`](https://hub.docker.com/r/mips64le/redis/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redis/), [`s390x`](https://hub.docker.com/r/s390x/redis/) + [`amd64`](https://hub.docker.com/r/amd64/redis/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redis/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redis/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redis/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redis/), [`i386`](https://hub.docker.com/r/i386/redis/), [`mips64le`](https://hub.docker.com/r/mips64le/redis/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redis/), [`riscv64`](https://hub.docker.com/r/riscv64/redis/), [`s390x`](https://hub.docker.com/r/s390x/redis/) - **Published image artifact details**: [repo-info repo's `repos/redis/` directory](https://github.com/docker-library/repo-info/blob/master/repos/redis) ([history](https://github.com/docker-library/repo-info/commits/master/repos/redis)) diff --git a/rust/README.md b/rust/README.md index 0aa06eac1a74..38c6c23994e6 100644 --- a/rust/README.md +++ b/rust/README.md @@ -30,8 +30,8 @@ WARNING: - [`1-slim-bullseye`, `1.78-slim-bullseye`, `1.78.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bullseye/slim/Dockerfile) - [`1-bookworm`, `1.78-bookworm`, `1.78.0-bookworm`, `bookworm`, `1`, `1.78`, `1.78.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/Dockerfile) - [`1-slim-bookworm`, `1.78-slim-bookworm`, `1.78.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.78-slim`, `1.78.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/slim/Dockerfile) -- [`1-alpine3.18`, `1.78-alpine3.18`, `1.78.0-alpine3.18`, `alpine3.18`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.18/Dockerfile) -- [`1-alpine3.19`, `1.78-alpine3.19`, `1.78.0-alpine3.19`, `alpine3.19`, `1-alpine`, `1.78-alpine`, `1.78.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.78-alpine3.19`, `1.78.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.19/Dockerfile) +- [`1-alpine3.20`, `1.78-alpine3.20`, `1.78.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.78-alpine`, `1.78.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e2c6ff15ac68eb3ca95d05c491a48127936b40bd/1.78.0/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/spiped/README.md b/spiped/README.md index 723861b86011..5684191f6c8c 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) -- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/c967076534a8ccdac377a6f02c332d0e181c85aa/1.6/alpine/Dockerfile) +- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2197b4c98a1ec5cf9f2203e660951aedbccc5d0d/1.6/alpine/Dockerfile) # Quick reference (cont.) @@ -33,7 +33,7 @@ WARNING: [https://github.com/TimWolla/docker-spiped/issues](https://github.com/TimWolla/docker-spiped/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/spiped/), [`arm32v5`](https://hub.docker.com/r/arm32v5/spiped/), [`arm32v6`](https://hub.docker.com/r/arm32v6/spiped/), [`arm32v7`](https://hub.docker.com/r/arm32v7/spiped/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spiped/), [`i386`](https://hub.docker.com/r/i386/spiped/), [`mips64le`](https://hub.docker.com/r/mips64le/spiped/), [`ppc64le`](https://hub.docker.com/r/ppc64le/spiped/), [`s390x`](https://hub.docker.com/r/s390x/spiped/) + [`amd64`](https://hub.docker.com/r/amd64/spiped/), [`arm32v5`](https://hub.docker.com/r/arm32v5/spiped/), [`arm32v6`](https://hub.docker.com/r/arm32v6/spiped/), [`arm32v7`](https://hub.docker.com/r/arm32v7/spiped/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spiped/), [`i386`](https://hub.docker.com/r/i386/spiped/), [`mips64le`](https://hub.docker.com/r/mips64le/spiped/), [`ppc64le`](https://hub.docker.com/r/ppc64le/spiped/), [`riscv64`](https://hub.docker.com/r/riscv64/spiped/), [`s390x`](https://hub.docker.com/r/s390x/spiped/) - **Published image artifact details**: [repo-info repo's `repos/spiped/` directory](https://github.com/docker-library/repo-info/blob/master/repos/spiped) ([history](https://github.com/docker-library/repo-info/commits/master/repos/spiped)) From 36377f5463dfeb66f339c7860442157f4508f3ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 May 2024 08:10:23 -0700 Subject: [PATCH 1211/2686] Run update.sh --- julia/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/julia/README.md b/julia/README.md index b22985a26625..ee684115b477 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`1.11.0-beta1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-beta1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-beta1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`, `1.11.0-beta1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/alpine3.19/Dockerfile) -- [`1.11.0-beta1-alpine3.18`, `1.11-rc-alpine3.18`, `rc-alpine3.18`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/alpine3.18/Dockerfile) +- [`1.11.0-beta1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-beta1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-beta1-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-beta1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/alpine3.20/Dockerfile) +- [`1.11.0-beta1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/alpine3.19/Dockerfile) - [`1.11.0-beta1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.10.3-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bookworm/Dockerfile) -- [`1.10.3-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bullseye/Dockerfile) -- [`1.10.3-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`, `1.10.3-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/alpine3.19/Dockerfile) -- [`1.10.3-alpine3.18`, `1.10-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/alpine3.18/Dockerfile) +- [`1.10.3-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) +- [`1.10.3-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bullseye/Dockerfile) +- [`1.10.3-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.3-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/alpine3.20/Dockerfile) +- [`1.10.3-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/alpine3.19/Dockerfile) - [`1.10.3-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.3-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) -- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) -- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bullseye/Dockerfile) -- [`1.6.7-alpine3.19`, `1.6-alpine3.19`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/8c02ddd7b55c85f022fcbc39f9791fbd95cdef2e/1.6/alpine3.19/Dockerfile) -- [`1.6.7-alpine3.18`, `1.6-alpine3.18`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/alpine3.18/Dockerfile) +- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) +- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bullseye/Dockerfile) +- [`1.6.7-alpine3.20`, `1.6-alpine3.20`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.20/Dockerfile) +- [`1.6.7-alpine3.19`, `1.6-alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.19/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `1.11.0-beta1`, `1.11-rc`, `rc`: - - [`1.11.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bookworm/Dockerfile) - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.11.0-beta1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.3`, `1.10`, `1`, `latest`: - - [`1.10.3-bookworm`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/bookworm/Dockerfile) + - [`1.10.3-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) - `1.10.3-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/ff6d8f64752b64aff292e12162340e3707487f17/1.6/bookworm/Dockerfile) + - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - `1.6.7-windowsservercore`, `1.6-windowsservercore`: From 163036478e5b6c32e56696f4c03df050afd89b34 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 May 2024 14:10:32 -0700 Subject: [PATCH 1212/2686] Run update.sh --- ros/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ros/README.md b/ros/README.md index 24675adaf208..ccda15326c98 100644 --- a/ros/README.md +++ b/ros/README.md @@ -37,9 +37,9 @@ WARNING: - [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/74e321bc1837c29f223a6d54895aa3c8eb184119/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-core/Dockerfile) -- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/ros-base/Dockerfile) -- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/026069e4a10a7e6d390db2bb0ce9d3f704e93919/ros/rolling/ubuntu/noble/perception/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-core/Dockerfile) +- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-base/Dockerfile) +- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/perception/Dockerfile) # Quick reference (cont.) From a314f19057961f7f4ca4ac869f721f0a274ed13b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 May 2024 18:10:36 -0700 Subject: [PATCH 1213/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 635058311271..18ff2b6a7f61 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev12`, `3.0-dev`, `3.0-dev12-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/893c649e60e147302a9e466e476e60fd0880726b/3.0/Dockerfile) -- [`3.0-dev12-alpine`, `3.0-dev-alpine`, `3.0-dev12-alpine3.20`, `3.0-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/3.0/alpine/Dockerfile) +- [`3.0-dev13`, `3.0-dev`, `3.0-dev13-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/41ccd7198efc94f07d0f651592b78d721a3d55fa/3.0/Dockerfile) +- [`3.0-dev13-alpine`, `3.0-dev-alpine`, `3.0-dev13-alpine3.20`, `3.0-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/41ccd7198efc94f07d0f651592b78d721a3d55fa/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) From 59bc5b22836615f1ca6d2b4e5e3adcbf3b9374bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 May 2024 12:10:16 -0700 Subject: [PATCH 1214/2686] Run update.sh --- arangodb/README.md | 2 +- clearlinux/README.md | 2 +- elixir/README.md | 45 ++++++++++++++++++++++++++------------------ orientdb/README.md | 4 ++-- photon/README.md | 6 +++--- xwiki/README.md | 6 +++--- 6 files changed, 37 insertions(+), 28 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index bc747a0311ae..07673670ea9f 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.8`](https://github.com/arangodb/arangodb-docker/blob/22a949aa3755175bfa869c48b5a0a9633109e291/alpine/3.11.8/Dockerfile) +- [`3.11`, `3.11.9`](https://github.com/arangodb/arangodb-docker/blob/d5a70b0416512013194c74f339fc8b7c0d6f8224/alpine/3.11.9/Dockerfile) - [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index c6bb3ccd632d..e2500e6e5607 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/9260b23005ad461a3b0f8cf552ab03a9edd92ce0/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/de7b43d93c25cda5141e1329b7dea0c0e810dd75/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 5ca7cbfc894a..9d66e66462e4 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,24 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.16.2`, `1.16`, `latest`, `1.16.2-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/Dockerfile) -- [`1.16.2-slim`, `1.16-slim`, `slim`, `1.16.2-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/slim/Dockerfile) -- [`1.16.2-alpine`, `1.16-alpine`, `alpine`, `1.16.2-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/alpine/Dockerfile) -- [`1.16.2-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24/Dockerfile) -- [`1.16.2-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24-alpine/Dockerfile) -- [`1.16.2-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-24-slim/Dockerfile) -- [`1.16.2-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25/Dockerfile) -- [`1.16.2-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25-alpine/Dockerfile) -- [`1.16.2-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/fd41114df3706382657801a6b0679ccfb4472296/1.16/otp-25-slim/Dockerfile) -- [`1.15.7`, `1.15`, `1.15.7-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/Dockerfile) -- [`1.15.7-slim`, `1.15-slim`, `1.15.7-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/slim/Dockerfile) -- [`1.15.7-alpine`, `1.15-alpine`, `1.15.7-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/alpine/Dockerfile) -- [`1.15.7-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24/Dockerfile) -- [`1.15.7-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-alpine/Dockerfile) -- [`1.15.7-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-24-slim/Dockerfile) -- [`1.15.7-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25/Dockerfile) -- [`1.15.7-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-alpine/Dockerfile) -- [`1.15.7-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/8bb39c071ac936d584b390cd50edf5c8c27ef0dd/1.15/otp-25-slim/Dockerfile) +- [`1.17.0-rc.0`, `1.17.0-rc`, `1.17`, `1.17.0-rc.0-otp-27`, `1.17.0-rc-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/Dockerfile) +- [`1.17.0-rc.0-slim`, `1.17.0-rc-slim`, `1.17-slim`, `1.17.0-rc.0-otp-27-slim`, `1.17.0-rc-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/slim/Dockerfile) +- [`1.17.0-rc.0-alpine`, `1.17.0-rc-alpine`, `1.17-alpine`, `1.17.0-rc.0-otp-27-alpine`, `1.17.0-rc-otp-27-alpine`, `1.17-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/alpine/Dockerfile) +- [`1.17.0-rc.0-otp-25`, `1.17.0-rc-otp-25`, `1.17-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25/Dockerfile) +- [`1.17.0-rc.0-otp-25-alpine`, `1.17.0-rc-otp-25-alpine`, `1.17-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25-alpine/Dockerfile) +- [`1.17.0-rc.0-otp-25-slim`, `1.17.0-rc-otp-25-slim`, `1.17-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25-slim/Dockerfile) +- [`1.17.0-rc.0-otp-26`, `1.17.0-rc-otp-26`, `1.17-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26/Dockerfile) +- [`1.17.0-rc.0-otp-26-alpine`, `1.17.0-rc-otp-26-alpine`, `1.17-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26-alpine/Dockerfile) +- [`1.17.0-rc.0-otp-26-slim`, `1.17.0-rc-otp-26-slim`, `1.17-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26-slim/Dockerfile) +- [`1.16.3`, `1.16`, `latest`, `1.16.3-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) +- [`1.16.3-slim`, `1.16-slim`, `slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) +- [`1.16.3-alpine`, `1.16-alpine`, `alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) +- [`1.16.3-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24/Dockerfile) +- [`1.16.3-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-alpine/Dockerfile) +- [`1.16.3-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-slim/Dockerfile) +- [`1.16.3-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25/Dockerfile) +- [`1.16.3-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-alpine/Dockerfile) +- [`1.16.3-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-slim/Dockerfile) +- [`1.15.8`, `1.15`, `1.15.8-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/Dockerfile) +- [`1.15.8-slim`, `1.15-slim`, `1.15.8-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/slim/Dockerfile) +- [`1.15.8-alpine`, `1.15-alpine`, `1.15.8-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/alpine/Dockerfile) +- [`1.15.8-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24/Dockerfile) +- [`1.15.8-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24-alpine/Dockerfile) +- [`1.15.8-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24-slim/Dockerfile) +- [`1.15.8-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25/Dockerfile) +- [`1.15.8-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25-alpine/Dockerfile) +- [`1.15.8-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25-slim/Dockerfile) - [`1.14.5`, `1.14`, `1.14.5-otp-26`, `1.14-otp-26`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - [`1.14.5-slim`, `1.14-slim`, `1.14.5-otp-26-slim`, `1.14-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - [`1.14.5-alpine`, `1.14-alpine`, `1.14.5-otp-26-alpine`, `1.14-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index 555b7367febe..c4adfab554bc 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.29`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7960574bdc732e3294e834bd1607f457754e3ada/release/3.2.x/3.2.29/Dockerfile) -- [`3.2.29-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7960574bdc732e3294e834bd1607f457754e3ada/release/3.2.x/3.2.29-tp3/Dockerfile) +- [`3.2.30`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/85a405a627ed7419d378850c87a901bd33a6c52a/release/3.2.x/3.2.30/Dockerfile) +- [`3.2.30-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/85a405a627ed7419d378850c87a901bd33a6c52a/release/3.2.x/3.2.30-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) diff --git a/photon/README.md b/photon/README.md index f11553005d81..617b7632394c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240519`, `latest`](https://github.com/vmware/photon-docker-image/blob/126c3a147918695cf82df92ec9d01d13e4781c6c/docker/Dockerfile) -- [`4.0`, `4.0-20240519`](https://github.com/vmware/photon-docker-image/blob/87387045578a767ec64890e01084aefdbeb449d9/docker/Dockerfile) -- [`3.0`, `3.0-20240519`](https://github.com/vmware/photon-docker-image/blob/a530e62a11d86a4f4874e73b8e61e4f6b7caf503/docker/Dockerfile) +- [`5.0`, `5.0-20240526`, `latest`](https://github.com/vmware/photon-docker-image/blob/4664e860fc7ee3074b84d9e031731109501a068c/docker/Dockerfile) +- [`4.0`, `4.0-20240526`](https://github.com/vmware/photon-docker-image/blob/40c4bc2ec6869199bf97785e6b9d24b970e529a9/docker/Dockerfile) +- [`3.0`, `3.0-20240526`](https://github.com/vmware/photon-docker-image/blob/98a062cd3c3983c6362bc2646f43f7b87ab5fda4/docker/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index e676d1970725..d9117c9c166b 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.3`, `16.3.1`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.9`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/639d1b2778d7d4bd4c6ab1050445fed5148b4fa8/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.10`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From a1ebf60404221d81e20142a1b305c0c2cc9f5a61 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 May 2024 13:10:38 -0700 Subject: [PATCH 1215/2686] Run update.sh --- almalinux/README.md | 4 +- clojure/README.md | 134 +++++++++++++++++++++---------------------- maven/README.md | 68 +++++++++++----------- node/README.md | 16 +++--- silverpeas/README.md | 2 +- 5 files changed, 112 insertions(+), 112 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 16f31701ebb5..bdd123474709 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.9`, `8.9-20240410`](https://github.com/AlmaLinux/container-images/blob/7aee1db985cc9ebb0347f2f4875f301fa4b09ab7/default/amd64/Dockerfile) -- [`8-minimal`, `8.9-minimal`, `8.9-minimal-20240410`](https://github.com/AlmaLinux/container-images/blob/265e51205d22917cbc7c60839c131dea85296705/minimal/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/default/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/minimal/amd64/Dockerfile) - [`latest`, `9`, `9.4`, `9.4-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/default/amd64/Dockerfile) - [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/minimal/amd64/Dockerfile) diff --git a/clojure/README.md b/clojure/README.md index 57ed4dbd3079..e2d20acbb218 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,73 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/3c865d0e17f4e9034b43b328a8b109da077d47ae/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/latest/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index b55619d8c491..d715eed68338 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,40 +24,40 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.6-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11/Dockerfile) -- [`3.9.6-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.6-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17/Dockerfile) -- [`3.9.6-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.6-eclipse-temurin-21`, `3.9.6`, `3.9.6-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-21/Dockerfile) -- [`3.9.6-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/66d4af0bdfd1b0cfb621aa85691b569cad200596/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.6-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22/Dockerfile) -- [`3.9.6-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/4c8226337e9a7625ed5eb79163e55841ffd07424/eclipse-temurin-22-jammy/Dockerfile) -- [`3.9.6-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8/Dockerfile) -- [`3.9.6-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.6-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.6-ibmjava-8`, `3.9.6-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibmjava-8/Dockerfile) -- [`3.9.6-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibm-semeru-11-focal/Dockerfile) -- [`3.9.6-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/ibm-semeru-17-focal/Dockerfile) -- [`3.9.6-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/77c76c589cdec3bd22e5dc18c8d7da20d486b604/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.6-amazoncorretto-11`, `3.9.6-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-11/Dockerfile) -- [`3.9.6-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-11-debian`, `3.9.6-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-11-debian/Dockerfile) -- [`3.9.6-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-17/Dockerfile) -- [`3.9.6-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-17-debian`, `3.9.6-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-17-debian/Dockerfile) -- [`3.9.6-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-21/Dockerfile) -- [`3.9.6-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-21-debian`, `3.9.6-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-21-debian/Dockerfile) -- [`3.9.6-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-8/Dockerfile) -- [`3.9.6-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.6-amazoncorretto-8-debian`, `3.9.6-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/5c5d19e4fec5d0c8c4870687bdaa377234ef9b1e/amazoncorretto-8-debian/Dockerfile) -- [`3.9.6-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-11/Dockerfile) -- [`3.9.6-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-17/Dockerfile) -- [`3.9.6-sapmachine-21`, `3.9.6-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/956a0125d92bef7f4c68831eee31d0070827bd06/sapmachine-21/Dockerfile) +- [`3.9.7-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11/Dockerfile) +- [`3.9.7-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.7-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.7-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17/Dockerfile) +- [`3.9.7-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.7-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.7-eclipse-temurin-21`, `3.9.7`, `3.9.7-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21/Dockerfile) +- [`3.9.7-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.7-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21-jammy/Dockerfile) +- [`3.9.7-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22/Dockerfile) +- [`3.9.7-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22-alpine/Dockerfile) +- [`3.9.7-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22-jammy/Dockerfile) +- [`3.9.7-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8/Dockerfile) +- [`3.9.7-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.7-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.7-ibmjava-8`, `3.9.7-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibmjava-8/Dockerfile) +- [`3.9.7-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-11-focal/Dockerfile) +- [`3.9.7-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-17-focal/Dockerfile) +- [`3.9.7-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-21-jammy/Dockerfile) +- [`3.9.7-amazoncorretto-11`, `3.9.7-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11/Dockerfile) +- [`3.9.7-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.7-amazoncorretto-11-debian`, `3.9.7-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11-debian/Dockerfile) +- [`3.9.7-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17/Dockerfile) +- [`3.9.7-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.7-amazoncorretto-17-debian`, `3.9.7-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17-debian/Dockerfile) +- [`3.9.7-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21/Dockerfile) +- [`3.9.7-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.7-amazoncorretto-21-debian`, `3.9.7-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21-debian/Dockerfile) +- [`3.9.7-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8/Dockerfile) +- [`3.9.7-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.7-amazoncorretto-8-debian`, `3.9.7-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8-debian/Dockerfile) +- [`3.9.7-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-11/Dockerfile) +- [`3.9.7-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-17/Dockerfile) +- [`3.9.7-sapmachine-21`, `3.9.7-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-21/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index c7c4db4de949..4154b7a469a7 100644 --- a/node/README.md +++ b/node/README.md @@ -36,14 +36,14 @@ WARNING: - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.13-alpine3.19`, `20.13.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.13-alpine`, `20.13-alpine3.20`, `20.13.1-alpine`, `20.13.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.13`, `20.13-bookworm`, `20.13.1`, `20.13.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.13-bookworm-slim`, `20.13-slim`, `20.13.1-bookworm-slim`, `20.13.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.13-bullseye`, `20.13.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.13-bullseye-slim`, `20.13.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.13-buster`, `20.13.1-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster/Dockerfile) -- [`20-buster-slim`, `20.13-buster-slim`, `20.13.1-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/375d663fe34b3e76ee41bff8bcac583da32fe0cb/20/buster-slim/Dockerfile) +- [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/alpine3.19/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/alpine3.20/Dockerfile) +- [`20`, `20-bookworm`, `20.14`, `20.14-bookworm`, `20.14.0`, `20.14.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.14-bookworm-slim`, `20.14-slim`, `20.14.0-bookworm-slim`, `20.14.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.14-bullseye`, `20.14.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.14-bullseye-slim`, `20.14.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.14-buster`, `20.14.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster/Dockerfile) +- [`20-buster-slim`, `20.14-buster-slim`, `20.14.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.19/Dockerfile) - [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/18/alpine3.20/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) diff --git a/silverpeas/README.md b/silverpeas/README.md index 3ce93806e6d0..3d6078fb8602 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.4`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/0ab5ec380118de3c070135446eabd3d94dfa0395/Dockerfile) +- [`6.3.5`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) # Quick reference (cont.) From 153faac470f76939e6da5dddc4b080a47a518f6a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 May 2024 15:10:30 -0700 Subject: [PATCH 1216/2686] Run update.sh --- emqx/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index 22512694454f..ec50615894de 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -29,7 +29,8 @@ WARNING: - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) - [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) -- [`5.6.1`, `5.6`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) +- [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) +- [`5.7.0`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/d7d5134e8256395e022d573099f70fda1ae85285/5.7/Dockerfile) # Quick reference (cont.) From d129a16c9df0bbe7aafd4a36413649c96a2c2f34 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 May 2024 17:10:39 -0700 Subject: [PATCH 1217/2686] Run update.sh --- joomla/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 1f60ea862207..81d40a1d91bf 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/apache/Dockerfile) -- [`5.1.0-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.0-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.1/fpm/Dockerfile) -- [`5.1.0`, `5.1`, `5`, `latest`, `5.1.0-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.0-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.0-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/apache/Dockerfile) -- [`5.1.0-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.0-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/5.1/php8.2/fpm/Dockerfile) -- [`4.4.4`, `4.4`, `4`, `4.4.4-apache`, `4.4-apache`, `4-apache`, `4.4.4-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.4-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/apache/Dockerfile) -- [`4.4.4-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.4-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.1/fpm/Dockerfile) -- [`4.4.4-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/apache/Dockerfile) -- [`4.4.4-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.4-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c3eaadecfa5292367ad9911e8cae159b3224e349/4.4/php8.2/fpm/Dockerfile) +- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/apache/Dockerfile) +- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/fpm/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/apache/Dockerfile) +- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/fpm/Dockerfile) +- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/apache/Dockerfile) +- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/fpm/Dockerfile) +- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/apache/Dockerfile) +- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) @@ -43,7 +43,7 @@ WARNING: [https://github.com/joomla/docker-joomla/issues](https://github.com/joomla/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) + [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) - **Published image artifact details**: [repo-info repo's `repos/joomla/` directory](https://github.com/docker-library/repo-info/blob/master/repos/joomla) ([history](https://github.com/docker-library/repo-info/commits/master/repos/joomla)) From f2271affddfe7489bbca5bfda2820a1a98a8c005 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 May 2024 15:10:17 -0700 Subject: [PATCH 1218/2686] Run update.sh --- docker/README.md | 30 +++++++-------- drupal/README.md | 50 ++++++++++++++++++------- ghost/README.md | 4 +- hylang/README.md | 72 ++++++++++++++++++------------------ julia/README.md | 40 ++++++++++---------- maven/README.md | 1 + mongo/README.md | 90 ++++++++++++++++++++++----------------------- php/README.md | 14 +++++++ ruby/README.md | 12 +++--- solr/README.md | 12 +++--- wordpress/README.md | 2 +- 11 files changed, 182 insertions(+), 145 deletions(-) diff --git a/docker/README.md b/docker/README.md index 44d7f62582f3..6f97915d43f8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/cli/Dockerfile) +- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/cli/Dockerfile) - [`26.1.3-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.3-dind-alpine3.20`, `26.1.3`, `26.1`, `26`, `latest`, `26.1.3-alpine3.20`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind/Dockerfile) - [`26.1.3-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind-rootless/Dockerfile) -- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/cli/Dockerfile) +- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.1.3-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9c757a745bf09699b87541ff6779676926a5b69/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9779cb5c595169f0ca71ed608b47db1f493bf36e/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c63a44923c911b8fb85dae8f024eda1163cb1ffb/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 4d6d51bbadf5..03605284a764 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,42 +24,66 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`11.0.0-beta1-php8.3-apache-bookworm`, `11.0-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `11.0.0-beta1-php8.3-apache`, `11.0-rc-php8.3-apache`, `rc-php8.3-apache`, `11.0.0-beta1-php8.3`, `11.0-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bookworm/Dockerfile) +- [`11.0.0-beta1-php8.3-fpm-bookworm`, `11.0-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `11.0.0-beta1-php8.3-fpm`, `11.0-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.0-beta1-php8.3-apache-bullseye`, `11.0-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bullseye/Dockerfile) +- [`11.0.0-beta1-php8.3-fpm-bullseye`, `11.0-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.0-beta1-php8.3-fpm-alpine3.20`, `11.0-rc-php8.3-fpm-alpine3.20`, `rc-php8.3-fpm-alpine3.20`, `11.0.0-beta1-php8.3-fpm-alpine`, `11.0-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.0-beta1-php8.3-fpm-alpine3.19`, `11.0-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.0-beta1-php8.2-apache-bookworm`, `11.0-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `11.0.0-beta1-php8.2-apache`, `11.0-rc-php8.2-apache`, `rc-php8.2-apache`, `11.0.0-beta1-php8.2`, `11.0-rc-php8.2`, `rc-php8.2`, `11.0.0-beta1-apache-bookworm`, `11.0-rc-apache-bookworm`, `rc-apache-bookworm`, `11.0.0-beta1-apache`, `11.0-rc-apache`, `rc-apache`, `11.0.0-beta1`, `11.0-rc`, `rc`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bookworm/Dockerfile) +- [`11.0.0-beta1-php8.2-fpm-bookworm`, `11.0-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `11.0.0-beta1-php8.2-fpm`, `11.0-rc-php8.2-fpm`, `rc-php8.2-fpm`, `11.0.0-beta1-fpm-bookworm`, `11.0-rc-fpm-bookworm`, `rc-fpm-bookworm`, `11.0.0-beta1-fpm`, `11.0-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bookworm/Dockerfile) +- [`11.0.0-beta1-php8.2-apache-bullseye`, `11.0-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `11.0.0-beta1-apache-bullseye`, `11.0-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bullseye/Dockerfile) +- [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) +- [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) +- [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.0-beta1-php8.3-apache-bookworm`, `10.3-rc-php8.3-apache-bookworm`, `10.3.0-beta1-php8.3-apache`, `10.3-rc-php8.3-apache`, `10.3.0-beta1-php8.3`, `10.3-rc-php8.3`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/apache-bookworm/Dockerfile) +- [`10.3.0-beta1-php8.3-fpm-bookworm`, `10.3-rc-php8.3-fpm-bookworm`, `10.3.0-beta1-php8.3-fpm`, `10.3-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.0-beta1-php8.3-apache-bullseye`, `10.3-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/apache-bullseye/Dockerfile) +- [`10.3.0-beta1-php8.3-fpm-bullseye`, `10.3-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.0-beta1-php8.3-fpm-alpine3.20`, `10.3-rc-php8.3-fpm-alpine3.20`, `10.3.0-beta1-php8.3-fpm-alpine`, `10.3-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.0-beta1-php8.3-fpm-alpine3.19`, `10.3-rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.0-beta1-php8.2-apache-bookworm`, `10.3-rc-php8.2-apache-bookworm`, `10.3.0-beta1-php8.2-apache`, `10.3-rc-php8.2-apache`, `10.3.0-beta1-php8.2`, `10.3-rc-php8.2`, `10.3.0-beta1-apache-bookworm`, `10.3-rc-apache-bookworm`, `10.3.0-beta1-apache`, `10.3-rc-apache`, `10.3.0-beta1`, `10.3-rc`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/apache-bookworm/Dockerfile) +- [`10.3.0-beta1-php8.2-fpm-bookworm`, `10.3-rc-php8.2-fpm-bookworm`, `10.3.0-beta1-php8.2-fpm`, `10.3-rc-php8.2-fpm`, `10.3.0-beta1-fpm-bookworm`, `10.3-rc-fpm-bookworm`, `10.3.0-beta1-fpm`, `10.3-rc-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.0-beta1-php8.2-apache-bullseye`, `10.3-rc-php8.2-apache-bullseye`, `10.3.0-beta1-apache-bullseye`, `10.3-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/apache-bullseye/Dockerfile) +- [`10.3.0-beta1-php8.2-fpm-bullseye`, `10.3-rc-php8.2-fpm-bullseye`, `10.3.0-beta1-fpm-bullseye`, `10.3-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.0-beta1-php8.2-fpm-alpine3.20`, `10.3-rc-php8.2-fpm-alpine3.20`, `10.3.0-beta1-php8.2-fpm-alpine`, `10.3-rc-php8.2-fpm-alpine`, `10.3.0-beta1-fpm-alpine3.20`, `10.3-rc-fpm-alpine3.20`, `10.3.0-beta1-fpm-alpine`, `10.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.0-beta1-php8.2-fpm-alpine3.19`, `10.3-rc-php8.2-fpm-alpine3.19`, `10.3.0-beta1-fpm-alpine3.19`, `10.3-rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.6-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.6-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.6-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bookworm/Dockerfile) - [`10.2.6-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.6-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bookworm/Dockerfile) - [`10.2.6-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bullseye/Dockerfile) - [`10.2.6-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.6-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `10.2.6-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.6-php8.3-fpm-alpine3.18`, `10.2-php8.3-fpm-alpine3.18`, `10-php8.3-fpm-alpine3.18`, `php8.3-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.18/Dockerfile) +- [`10.2.6-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.2.6-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.6-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.19/Dockerfile) - [`10.2.6-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.6-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.6-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.6-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.6-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.6`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bookworm/Dockerfile) - [`10.2.6-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.6-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.6-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.6-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bookworm/Dockerfile) - [`10.2.6-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.6-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bullseye/Dockerfile) - [`10.2.6-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.6-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.6-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.6-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.6-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`, `10.2.6-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.6-php8.2-fpm-alpine3.18`, `10.2-php8.2-fpm-alpine3.18`, `10-php8.2-fpm-alpine3.18`, `php8.2-fpm-alpine3.18`, `10.2.6-fpm-alpine3.18`, `10.2-fpm-alpine3.18`, `10-fpm-alpine3.18`, `fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.2.6-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.2.6-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.6-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.2.6-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.6-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.6-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bullseye/Dockerfile) - [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.18`, `10.1-php8.2-fpm-alpine3.18`, `10.1.8-fpm-alpine3.18`, `10.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.20`, `10.1-php8.2-fpm-alpine3.20`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.20`, `10.1-fpm-alpine3.20`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.1/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bookworm/Dockerfile) - [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bookworm/Dockerfile) - [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bullseye/Dockerfile) - [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.18`, `10.1-php8.1-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.18/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.20`, `10.1-php8.1-fpm-alpine3.20`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.1/php8.1/fpm-alpine3.20/Dockerfile) +- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) - [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bookworm/Dockerfile) - [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bookworm/Dockerfile) - [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bullseye/Dockerfile) - [`7.100-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.100-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`, `7.100-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.100-php8.2-fpm-alpine3.18`, `7-php8.2-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.18/Dockerfile) +- [`7.100-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.100-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/7/php8.2/fpm-alpine3.20/Dockerfile) +- [`7.100-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.19/Dockerfile) - [`7.100-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.100-php8.1-apache`, `7-php8.1-apache`, `7.100-php8.1`, `7-php8.1`, `7.100-apache-bookworm`, `7-apache-bookworm`, `7.100-apache`, `7-apache`, `7.100`, `7`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bookworm/Dockerfile) - [`7.100-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.100-php8.1-fpm`, `7-php8.1-fpm`, `7.100-fpm-bookworm`, `7-fpm-bookworm`, `7.100-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bookworm/Dockerfile) - [`7.100-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.100-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bullseye/Dockerfile) - [`7.100-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.100-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.100-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.100-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.100-fpm-alpine3.19`, `7-fpm-alpine3.19`, `7.100-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.19/Dockerfile) -- [`7.100-php8.1-fpm-alpine3.18`, `7-php8.1-fpm-alpine3.18`, `7.100-fpm-alpine3.18`, `7-fpm-alpine3.18`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.18/Dockerfile) +- [`7.100-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.100-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.100-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.100-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/7/php8.1/fpm-alpine3.20/Dockerfile) +- [`7.100-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.100-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.19/Dockerfile) # Quick reference (cont.) @@ -67,7 +91,7 @@ WARNING: [https://github.com/docker-library/drupal/issues](https://github.com/docker-library/drupal/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/drupal/), [`arm32v5`](https://hub.docker.com/r/arm32v5/drupal/), [`arm32v6`](https://hub.docker.com/r/arm32v6/drupal/), [`arm32v7`](https://hub.docker.com/r/arm32v7/drupal/), [`arm64v8`](https://hub.docker.com/r/arm64v8/drupal/), [`i386`](https://hub.docker.com/r/i386/drupal/), [`mips64le`](https://hub.docker.com/r/mips64le/drupal/), [`ppc64le`](https://hub.docker.com/r/ppc64le/drupal/), [`s390x`](https://hub.docker.com/r/s390x/drupal/) + [`amd64`](https://hub.docker.com/r/amd64/drupal/), [`arm32v5`](https://hub.docker.com/r/arm32v5/drupal/), [`arm32v6`](https://hub.docker.com/r/arm32v6/drupal/), [`arm32v7`](https://hub.docker.com/r/arm32v7/drupal/), [`arm64v8`](https://hub.docker.com/r/arm64v8/drupal/), [`i386`](https://hub.docker.com/r/i386/drupal/), [`mips64le`](https://hub.docker.com/r/mips64le/drupal/), [`ppc64le`](https://hub.docker.com/r/ppc64le/drupal/), [`riscv64`](https://hub.docker.com/r/riscv64/drupal/), [`s390x`](https://hub.docker.com/r/s390x/drupal/) - **Published image artifact details**: [repo-info repo's `repos/drupal/` directory](https://github.com/docker-library/repo-info/blob/master/repos/drupal) ([history](https://github.com/docker-library/repo-info/commits/master/repos/drupal)) diff --git a/ghost/README.md b/ghost/README.md index 5bac6ecd9899..0050c5061c3d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.82.11`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/79abd0869b93e23ba21d951e92bd9e838ddcf8b9/5/debian/Dockerfile) -- [`5.82.11-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/79abd0869b93e23ba21d951e92bd9e838ddcf8b9/5/alpine/Dockerfile) +- [`5.82.12`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a7b83c8d1c61cce86548725f2df3f0ede71a91cf/5/debian/Dockerfile) +- [`5.82.12-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a7b83c8d1c61cce86548725f2df3f0ede71a91cf/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 08302b96f171..14d16ace0af4 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,51 +28,51 @@ WARNING: ## Simple Tags -- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.29.0-python3.12-alpine3.18`, `0.29-python3.12-alpine3.18`, `0-python3.12-alpine3.18`, `python3.12-alpine3.18`, `0.29.0-alpine3.18`, `0.29-alpine3.18`, `0-alpine3.18`, `alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-alpine3.18) -- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.29.0-python3.11-alpine3.18`, `0.29-python3.11-alpine3.18`, `0-python3.11-alpine3.18`, `python3.11-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-alpine3.18) -- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.29.0-python3.10-alpine3.18`, `0.29-python3.10-alpine3.18`, `0-python3.10-alpine3.18`, `python3.10-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-alpine3.18) -- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.29.0-python3.9-alpine3.18`, `0.29-python3.9-alpine3.18`, `0-python3.9-alpine3.18`, `python3.9-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-alpine3.18) -- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.29.0-python3.8-alpine3.18`, `0.29-python3.8-alpine3.18`, `0-python3.8-alpine3.18`, `python3.8-alpine3.18`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-alpine3.18) -- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags - `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: - - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: - - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: - - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: - - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: - - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: - - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - `0.29.0-pypy3.9`, `0.29-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/eed6e440e09e7fafe20119bdde8704aa729629b0/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) @@ -80,7 +80,7 @@ WARNING: [https://github.com/hylang/hy/issues](https://github.com/hylang/hy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/hylang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hylang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hylang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hylang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hylang/), [`i386`](https://hub.docker.com/r/i386/hylang/), [`mips64le`](https://hub.docker.com/r/mips64le/hylang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hylang/), [`s390x`](https://hub.docker.com/r/s390x/hylang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hylang/) + [`amd64`](https://hub.docker.com/r/amd64/hylang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hylang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hylang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hylang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hylang/), [`i386`](https://hub.docker.com/r/i386/hylang/), [`mips64le`](https://hub.docker.com/r/mips64le/hylang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hylang/), [`riscv64`](https://hub.docker.com/r/riscv64/hylang/), [`s390x`](https://hub.docker.com/r/s390x/hylang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hylang/) - **Published image artifact details**: [repo-info repo's `repos/hylang/` directory](https://github.com/docker-library/repo-info/blob/master/repos/hylang) ([history](https://github.com/docker-library/repo-info/commits/master/repos/hylang)) diff --git a/julia/README.md b/julia/README.md index ee684115b477..908bbd78ddd0 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,12 +28,10 @@ WARNING: ## Simple Tags -- [`1.11.0-beta1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-beta1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-beta1-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-beta1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/alpine3.20/Dockerfile) -- [`1.11.0-beta1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/alpine3.19/Dockerfile) -- [`1.11.0-beta1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-beta1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-beta2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-beta2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-beta2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-beta2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.3-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) - [`1.10.3-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bullseye/Dockerfile) - [`1.10.3-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.3-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/alpine3.20/Dockerfile) @@ -49,13 +47,13 @@ WARNING: ## Shared Tags -- `1.11.0-beta1`, `1.11-rc`, `rc`: - - [`1.11.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-beta1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/3089b4afeb152cdb1dbc163f58ef916efc3e3e7c/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-beta2`, `1.11-rc`, `rc`: + - [`1.11.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-beta2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.3`, `1.10`, `1`, `latest`: - [`1.10.3-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -130,14 +128,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -147,6 +137,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/maven/README.md b/maven/README.md index d715eed68338..d416b3dedada 100644 --- a/maven/README.md +++ b/maven/README.md @@ -58,6 +58,7 @@ WARNING: - [`3.9.7-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-11/Dockerfile) - [`3.9.7-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-17/Dockerfile) - [`3.9.7-sapmachine-21`, `3.9.7-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-21/Dockerfile) +- [`3.9.7-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/cec36dcb2ace0c70dddad6a12cde5d305a6dfe06/sapmachine-22/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 0c968d9fec0b..dc94ec2a4c2f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`8.0.0-rc4-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/Dockerfile) -- [`8.0.0-rc4-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc4-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc4-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc4-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.10-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) -- [`7.0.10-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.10-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.10-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.10-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.9-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) -- [`7.0.9-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.9-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.9-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.9-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc5-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/Dockerfile) +- [`8.0.0-rc5-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc5-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc5-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc5-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) +- [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.11-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.11-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.27-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/Dockerfile) +- [`5.0.27-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.27-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.27-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.27-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.26-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) - [`5.0.26-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.26-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) @@ -56,36 +56,26 @@ WARNING: ## Shared Tags -- `8.0.0-rc4`, `8.0-rc`: - - [`8.0.0-rc4-jammy`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/Dockerfile) - - [`8.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc4-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc4-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fc70d45bda4a5d142b875b5f044a94af29a071d/8.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.10-rc0`, `7.0-rc`: - - [`7.0.10-rc0-jammy`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/Dockerfile) - - [`7.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.10-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.10-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/de0ea748e028bbb029beeb2a2a16995f52b8d870/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.9`, `7.0`, `7`, `latest`: - - [`7.0.9-jammy`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/Dockerfile) - - [`7.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.9-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9370d3f2e36d4134f29e513346b4c4c19e927a6f/7.0/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc5`, `8.0-rc`: + - [`8.0.0-rc5-jammy`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/Dockerfile) + - [`8.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc5-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc5-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.11`, `7.0`, `7`, `latest`: + - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) + - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.11-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.11-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.15`, `6.0`, `6`: - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,6 +86,16 @@ WARNING: - `6.0.15-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.27-rc0`, `5.0-rc`: + - [`5.0.27-rc0-focal`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/Dockerfile) + - [`5.0.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.27-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.27-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.27-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.27-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.26`, `5.0`, `5`: - [`5.0.26-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index df6585fdc250..af8f64bee4f7 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.8RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.8RC1-bookworm`, `8.3-rc-bookworm`, `8.3.8RC1-cli`, `8.3-rc-cli`, `8.3.8RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.8RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.8RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.8RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.8RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.8RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.8RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.8RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.8RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.8RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.8RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.8RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.8RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.8RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.8RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.8RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.8RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.8RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.8RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.8RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.8RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.8RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.8RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.8RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.7-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.7-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.7-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.7`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/cli/Dockerfile) - [`8.3.7-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.7-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/apache/Dockerfile) - [`8.3.7-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.7-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/fpm/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index e091633f75a4..d4a866b5594b 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -42,12 +42,12 @@ WARNING: - [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bullseye/Dockerfile) - [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.2/alpine3.20/Dockerfile) - [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) -- [`3.1.5-bookworm`, `3.1-bookworm`, `3.1.5`, `3.1`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bookworm/Dockerfile) -- [`3.1.5-slim-bookworm`, `3.1-slim-bookworm`, `3.1.5-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bookworm/Dockerfile) -- [`3.1.5-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/bullseye/Dockerfile) -- [`3.1.5-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/slim-bullseye/Dockerfile) -- [`3.1.5-alpine3.20`, `3.1-alpine3.20`, `3.1.5-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.1/alpine3.20/Dockerfile) -- [`3.1.5-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.1/alpine3.19/Dockerfile) +- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index b2175bb2732d..2839674823f7 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.6.0`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.6/Dockerfile) -- [`9.6.0-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.6-slim/Dockerfile) -- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.5/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/9.5-slim/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/2031434cdf7b2c00a718e204b0c20e5eb74b84af/8.11-slim/Dockerfile) +- [`9.6.1`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) +- [`9.6.1-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) +- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.5-slim/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index e7c81575c710..793f950b5312 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -43,7 +43,7 @@ WARNING: [https://github.com/docker-library/wordpress/issues](https://github.com/docker-library/wordpress/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`mips64le`](https://hub.docker.com/r/mips64le/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/) + [`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`mips64le`](https://hub.docker.com/r/mips64le/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`riscv64`](https://hub.docker.com/r/riscv64/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/) - **Published image artifact details**: [repo-info repo's `repos/wordpress/` directory](https://github.com/docker-library/repo-info/blob/master/repos/wordpress) ([history](https://github.com/docker-library/repo-info/commits/master/repos/wordpress)) From 3b7f5a1b19925c9caf5bfb7cd780cdbc41f1bae4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 May 2024 16:10:09 -0700 Subject: [PATCH 1219/2686] Run update.sh --- caddy/README.md | 51 ++++++++++++++++------------------------------- haproxy/README.md | 17 ++++++++-------- openjdk/README.md | 36 ++++++++++++++++----------------- 3 files changed, 44 insertions(+), 60 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index db703538a970..9061e7ad6230 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,43 +28,26 @@ WARNING: ## Simple Tags -- [`2.8.0-rc.1-alpine`, `2.8-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/alpine/Dockerfile) -- [`2.8.0-rc.1-builder-alpine`, `2.8-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/builder/Dockerfile) -- [`2.8.0-rc.1-windowsservercore-1809`, `2.8-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) -- [`2.8.0-rc.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.0-rc.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/1809/Dockerfile) -- [`2.8.0-rc.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/ltsc2022/Dockerfile) -- [`2.7.6-alpine`, `2.7-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) -- [`2.7.6-builder-alpine`, `2.7-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/builder/Dockerfile) -- [`2.7.6-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) -- [`2.7.6-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) -- [`2.7.6-builder-windowsservercore-1809`, `2.7-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/1809/Dockerfile) -- [`2.7.6-builder-windowsservercore-ltsc2022`, `2.7-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/ltsc2022/Dockerfile) +- [`2.8.0-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/alpine/Dockerfile) +- [`2.8.0-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/builder/Dockerfile) +- [`2.8.0-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) +- [`2.8.0-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.0-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/1809/Dockerfile) +- [`2.8.0-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.8.0-rc.1`, `2.8`: - - [`2.8.0-rc.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/alpine/Dockerfile) - - [`2.8.0-rc.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) - - [`2.8.0-rc.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) -- `2.8.0-rc.1-builder`, `2.8-builder`: - - [`2.8.0-rc.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/builder/Dockerfile) - - [`2.8.0-rc.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/1809/Dockerfile) - - [`2.8.0-rc.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows-builder/ltsc2022/Dockerfile) -- `2.8.0-rc.1-windowsservercore`, `2.8-windowsservercore`: - - [`2.8.0-rc.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/1809/Dockerfile) - - [`2.8.0-rc.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/b0a0cdbc0537af7b8ee85b480262414d2179455f/2.8/windows/ltsc2022/Dockerfile) -- `2.7.6`, `2.7`, `2`, `latest`: - - [`2.7.6-alpine`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/alpine/Dockerfile) - - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) - - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) -- `2.7.6-builder`, `2.7-builder`, `2-builder`, `builder`: - - [`2.7.6-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/builder/Dockerfile) - - [`2.7.6-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/1809/Dockerfile) - - [`2.7.6-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/efcb9dd09f5ed76555fe65cb641225838250486e/2.7/windows-builder/ltsc2022/Dockerfile) -- `2.7.6-windowsservercore`, `2.7-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.7.6-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/1809/Dockerfile) - - [`2.7.6-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bb842e2f2671cff715a207d200b1328cb770c9f2/2.7/windows/ltsc2022/Dockerfile) +- `2.8.0`, `2.8`, `2`, `latest`: + - [`2.8.0-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/alpine/Dockerfile) + - [`2.8.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) + - [`2.8.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) +- `2.8.0-builder`, `2.8-builder`, `2-builder`, `builder`: + - [`2.8.0-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/builder/Dockerfile) + - [`2.8.0-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/1809/Dockerfile) + - [`2.8.0-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.0-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.8.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) + - [`2.8.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 18ff2b6a7f61..b9e87ef0971f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,18 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0-dev13`, `3.0-dev`, `3.0-dev13-bookworm`, `3.0-dev-bookworm`](https://github.com/docker-library/haproxy/blob/41ccd7198efc94f07d0f651592b78d721a3d55fa/3.0/Dockerfile) -- [`3.0-dev13-alpine`, `3.0-dev-alpine`, `3.0-dev13-alpine3.20`, `3.0-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/41ccd7198efc94f07d0f651592b78d721a3d55fa/3.0/alpine/Dockerfile) -- [`2.9.7`, `2.9`, `latest`, `2.9.7-bookworm`, `2.9-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) -- [`2.9.7-alpine`, `2.9-alpine`, `alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) -- [`2.8.9`, `2.8`, `lts`, `2.8.9-bookworm`, `2.8-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) -- [`2.8.9-alpine`, `2.8-alpine`, `lts-alpine`, `2.8.9-alpine3.20`, `2.8-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.8/alpine/Dockerfile) +- [`3.1-dev0`, `3.1-dev`, `3.1-dev0-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/Dockerfile) +- [`3.1-dev0-alpine`, `3.1-dev-alpine`, `3.1-dev0-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/alpine/Dockerfile) +- [`3.0.0`, `3.0`, `lts`, `latest`, `3.0.0-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/25aca1c14ceb3d82c68404ddd2ef92d6df625966/3.0/Dockerfile) +- [`3.0.0-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.0-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/25aca1c14ceb3d82c68404ddd2ef92d6df625966/3.0/alpine/Dockerfile) +- [`2.9.7`, `2.9`, `2.9.7-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) +- [`2.9.7-alpine`, `2.9-alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) +- [`2.8.9`, `2.8`, `2.8.9-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) +- [`2.8.9-alpine`, `2.8-alpine`, `2.8.9-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.8/alpine/Dockerfile) - [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) - [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.6/alpine/Dockerfile) - [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) - [`2.4.26-alpine`, `2.4-alpine`, `2.4.26-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) -- [`2.0.35`, `2.0`, `2.0.35-buster`, `2.0-buster`](https://github.com/docker-library/haproxy/blob/7eb71e6990a7d42494707c04d3230dee3c424a82/2.0/Dockerfile) # Quick reference (cont.) @@ -127,7 +128,7 @@ The `haproxy` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haproxy:-alpine` diff --git a/openjdk/README.md b/openjdk/README.md index df35cd67571d..955f945658bc 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-23-jdk-oraclelinux9`, `23-ea-23-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-23-jdk-oracle`, `23-ea-23-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-23-jdk-oraclelinux8`, `23-ea-23-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-23-jdk-bookworm`, `23-ea-23-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/bookworm/Dockerfile) -- [`23-ea-23-jdk-slim-bookworm`, `23-ea-23-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-23-jdk-slim`, `23-ea-23-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-23-jdk-bullseye`, `23-ea-23-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/bullseye/Dockerfile) -- [`23-ea-23-jdk-slim-bullseye`, `23-ea-23-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-23-jdk-windowsservercore-ltsc2022`, `23-ea-23-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-23-jdk-windowsservercore-1809`, `23-ea-23-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-23-jdk-nanoserver-1809`, `23-ea-23-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-24-jdk-oraclelinux9`, `23-ea-24-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-24-jdk-oracle`, `23-ea-24-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-24-jdk-oraclelinux8`, `23-ea-24-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-24-jdk-bookworm`, `23-ea-24-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/bookworm/Dockerfile) +- [`23-ea-24-jdk-slim-bookworm`, `23-ea-24-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-24-jdk-slim`, `23-ea-24-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-24-jdk-bullseye`, `23-ea-24-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/bullseye/Dockerfile) +- [`23-ea-24-jdk-slim-bullseye`, `23-ea-24-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-24-jdk-windowsservercore-ltsc2022`, `23-ea-24-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-24-jdk-windowsservercore-1809`, `23-ea-24-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-24-jdk-nanoserver-1809`, `23-ea-24-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-23-jdk`, `23-ea-23`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-23-jdk-windowsservercore`, `23-ea-23-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-23-jdk-nanoserver`, `23-ea-23-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/fe0b881aa2bc3318a316455978c2670f2f24bea3/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-24-jdk`, `23-ea-24`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-24-jdk-windowsservercore`, `23-ea-24-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-24-jdk-nanoserver`, `23-ea-24-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 7ff5fab791b1f16c7f5424be91ec8c09108e2ca3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 May 2024 17:10:20 -0700 Subject: [PATCH 1220/2686] Run update.sh --- redmine/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/redmine/README.md b/redmine/README.md index 674fb442dc39..43028525ac7e 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -25,9 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.1/bookworm/Dockerfile) -- [`5.1.2-alpine3.18`, `5.1-alpine3.18`, `5-alpine3.18`, `alpine3.18`, `5.1.2-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/51b7921366b46e2dd5a7f9629b933a3e7a68fdb1/5.1/alpine3.18/Dockerfile) +- [`5.1.2-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.2-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.1/alpine3.20/Dockerfile) +- [`5.1.2-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.1/alpine3.19/Dockerfile) - [`5.0.8`, `5.0`, `5.0.8-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.0/bookworm/Dockerfile) -- [`5.0.8-alpine3.18`, `5.0-alpine3.18`, `5.0.8-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/a47825ab3251935beedb9d83ecdc80e78d1ccf28/5.0/alpine3.18/Dockerfile) +- [`5.0.8-alpine3.20`, `5.0-alpine3.20`, `5.0.8-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.0/alpine3.20/Dockerfile) +- [`5.0.8-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.0/alpine3.19/Dockerfile) # Quick reference (cont.) @@ -35,7 +37,7 @@ WARNING: [https://github.com/docker-library/redmine/issues](https://github.com/docker-library/redmine/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`mips64le`](https://hub.docker.com/r/mips64le/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/) + [`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`mips64le`](https://hub.docker.com/r/mips64le/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`riscv64`](https://hub.docker.com/r/riscv64/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/) - **Published image artifact details**: [repo-info repo's `repos/redmine/` directory](https://github.com/docker-library/repo-info/blob/master/repos/redmine) ([history](https://github.com/docker-library/repo-info/commits/master/repos/redmine)) From 513ca46c0ffc480a38fc09337cff8db070db0e62 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 May 2024 08:10:29 -0700 Subject: [PATCH 1221/2686] Run update.sh --- nginx/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index aae3c7c02069..c33f4bb76d33 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.25.5`, `mainline`, `1`, `1.25`, `latest`, `1.25.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.25-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/debian/Dockerfile) -- [`1.25.5-perl`, `mainline-perl`, `1-perl`, `1.25-perl`, `perl`, `1.25.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.25-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-perl/Dockerfile) -- [`1.25.5-otel`, `mainline-otel`, `1-otel`, `1.25-otel`, `otel`, `1.25.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.25-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/mainline/debian-otel/Dockerfile) -- [`1.25.5-alpine`, `mainline-alpine`, `1-alpine`, `1.25-alpine`, `alpine`, `1.25.5-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.25-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine/Dockerfile) -- [`1.25.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.25-alpine-perl`, `alpine-perl`, `1.25.5-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.25-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-perl/Dockerfile) -- [`1.25.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.25-alpine-slim`, `alpine-slim`, `1.25.5-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.25-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-slim/Dockerfile) -- [`1.25.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.25-alpine-otel`, `alpine-otel`, `1.25.5-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.25-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/mainline/alpine-otel/Dockerfile) -- [`1.26.0`, `stable`, `1.26`, `1.26.0-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/debian/Dockerfile) -- [`1.26.0-perl`, `stable-perl`, `1.26-perl`, `1.26.0-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-perl/Dockerfile) -- [`1.26.0-otel`, `stable-otel`, `1.26-otel`, `1.26.0-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/5bf2e65ab9eaa029613e18fc5dfab04693511ed6/stable/debian-otel/Dockerfile) -- [`1.26.0-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.0-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine/Dockerfile) -- [`1.26.0-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.0-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-perl/Dockerfile) -- [`1.26.0-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.0-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-slim/Dockerfile) -- [`1.26.0-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.0-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/9abe4ae472b3332665fad9b12ee146dc242e775c/stable/alpine-otel/Dockerfile) +- [`1.27.0`, `mainline`, `1`, `1.27`, `latest`, `1.27.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian/Dockerfile) +- [`1.27.0-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-perl/Dockerfile) +- [`1.27.0-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-otel/Dockerfile) +- [`1.27.0-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.0-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.27-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine/Dockerfile) +- [`1.27.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.0-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.27-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-perl/Dockerfile) +- [`1.27.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.0-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.27-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-slim/Dockerfile) +- [`1.27.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.0-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.27-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-otel/Dockerfile) +- [`1.26.1`, `stable`, `1.26`, `1.26.1-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian/Dockerfile) +- [`1.26.1-perl`, `stable-perl`, `1.26-perl`, `1.26.1-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-perl/Dockerfile) +- [`1.26.1-otel`, `stable-otel`, `1.26-otel`, `1.26.1-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-otel/Dockerfile) +- [`1.26.1-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.1-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine/Dockerfile) +- [`1.26.1-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.1-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-perl/Dockerfile) +- [`1.26.1-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.1-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-slim/Dockerfile) +- [`1.26.1-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.1-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-otel/Dockerfile) # Quick reference (cont.) From 2d65bd92117180666ccf2a43905fc162d2c07571 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 May 2024 12:10:10 -0700 Subject: [PATCH 1222/2686] Run update.sh --- almalinux/README.md | 4 ++-- caddy/README.md | 34 +++++++++++++++++----------------- dart/README.md | 3 ++- solr/README.md | 10 +++++----- traefik/README.md | 16 ++++++++-------- xwiki/README.md | 6 +++--- 6 files changed, 37 insertions(+), 36 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index bdd123474709..bd6b32874be3 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -26,8 +26,8 @@ WARNING: - [`8`, `8.10`, `8.10-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/default/amd64/Dockerfile) - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.4`, `9.4-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240506`](https://github.com/AlmaLinux/container-images/blob/35df378109dcb34fe4aa7c6105ec748bafcda307/minimal/amd64/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/default/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 9061e7ad6230..d48e06439306 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.8.0-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/alpine/Dockerfile) -- [`2.8.0-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/builder/Dockerfile) -- [`2.8.0-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) -- [`2.8.0-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.0-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/1809/Dockerfile) -- [`2.8.0-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.8.1-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/alpine/Dockerfile) +- [`2.8.1-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/builder/Dockerfile) +- [`2.8.1-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) +- [`2.8.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/1809/Dockerfile) +- [`2.8.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.8.0`, `2.8`, `2`, `latest`: - - [`2.8.0-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/alpine/Dockerfile) - - [`2.8.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) - - [`2.8.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) -- `2.8.0-builder`, `2.8-builder`, `2-builder`, `builder`: - - [`2.8.0-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/builder/Dockerfile) - - [`2.8.0-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/1809/Dockerfile) - - [`2.8.0-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows-builder/ltsc2022/Dockerfile) -- `2.8.0-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.8.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/1809/Dockerfile) - - [`2.8.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/8e45629b3f219609ebd9ae2dfb70df0e73765b5f/2.8/windows/ltsc2022/Dockerfile) +- `2.8.1`, `2.8`, `2`, `latest`: + - [`2.8.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/alpine/Dockerfile) + - [`2.8.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) + - [`2.8.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) +- `2.8.1-builder`, `2.8-builder`, `2-builder`, `builder`: + - [`2.8.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/builder/Dockerfile) + - [`2.8.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/1809/Dockerfile) + - [`2.8.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.1-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.8.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) + - [`2.8.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index fb10e79e6f42..b477e8c04c00 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.1`, `3.4`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/5adc8590a06b34c8633827d948e6aed82c92fd0a/stable/bookworm/Dockerfile) +- [`3.4.2-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.2`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/185ed4955a6d38c0e353ff76269d2db7cdf27699/stable/bookworm/Dockerfile) +- [`3.5.0-180.2.beta-sdk`, `beta-sdk`, `3.5.0-180.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/185ed4955a6d38c0e353ff76269d2db7cdf27699/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 2839674823f7..4e8eea0ae922 100644 --- a/solr/README.md +++ b/solr/README.md @@ -26,10 +26,10 @@ WARNING: - [`9.6.1`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) - [`9.6.1-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) -- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.5/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.5-slim/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/8.11-slim/Dockerfile) +- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5/Dockerfile) +- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5-slim/Dockerfile) +- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) +- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11-slim/Dockerfile) # Quick reference (cont.) @@ -37,7 +37,7 @@ WARNING: [The Solr Users mailing list](https://solr.apache.org/community.html#mailing-lists-chat) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/solr/), [`arm32v7`](https://hub.docker.com/r/arm32v7/solr/), [`arm64v8`](https://hub.docker.com/r/arm64v8/solr/), [`ppc64le`](https://hub.docker.com/r/ppc64le/solr/), [`s390x`](https://hub.docker.com/r/s390x/solr/) + [`amd64`](https://hub.docker.com/r/amd64/solr/), [`arm64v8`](https://hub.docker.com/r/arm64v8/solr/), [`ppc64le`](https://hub.docker.com/r/ppc64le/solr/), [`s390x`](https://hub.docker.com/r/s390x/solr/) - **Published image artifact details**: [repo-info repo's `repos/solr/` directory](https://github.com/docker-library/repo-info/blob/master/repos/solr) ([history](https://github.com/docker-library/repo-info/commits/master/repos/solr)) diff --git a/traefik/README.md b/traefik/README.md index e22132993acc..c566a627595a 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.1-windowsservercore-ltsc2022`, `3.0.1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.1-windowsservercore-1809`, `3.0.1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/1809/Dockerfile) -- [`v3.0.1-nanoserver-ltsc2022`, `3.0.1-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.0.1`, `3.0.1`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/2caca4e184cbc99169ad4043d35e3482548c3410/alpine/Dockerfile) -- [`v2.11.3-windowsservercore-ltsc2022`, `2.11.3-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.3-windowsservercore-1809`, `2.11.3-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/1809/Dockerfile) -- [`v2.11.3-nanoserver-ltsc2022`, `2.11.3-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.3`, `2.11.3`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/98edda3a6008ef1b658911e757b68bd06ea2ed8d/alpine/Dockerfile) +- [`v3.0.1-windowsservercore-ltsc2022`, `3.0.1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.1-windowsservercore-1809`, `3.0.1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/1809/Dockerfile) +- [`v3.0.1-nanoserver-ltsc2022`, `3.0.1-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.0.1`, `3.0.1`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/alpine/Dockerfile) +- [`v2.11.3-windowsservercore-ltsc2022`, `2.11.3-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.3-windowsservercore-1809`, `2.11.3-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/1809/Dockerfile) +- [`v2.11.3-nanoserver-ltsc2022`, `2.11.3-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.3`, `2.11.3`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index d9117c9c166b..93f14d0c1cae 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.3`, `16.3.1`, `16-mysql-tomcat`, `16.3-mysql-tomcat`, `16.3.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.3-postgres-tomcat`, `16.3.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.3-mariadb-tomcat`, `16.3.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c07efbb0ee95ad76c39d234c6c74ef5eac23f073/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.4`, `16.4.0`, `16-mysql-tomcat`, `16.4-mysql-tomcat`, `16.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.4-postgres-tomcat`, `16.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.4-mariadb-tomcat`, `16.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.10`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mariadb-tomcat/Dockerfile) From ee5b62d6e2a47a1a5247237b3390ccf2af9d672a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 May 2024 17:10:32 -0700 Subject: [PATCH 1223/2686] Run update.sh --- httpd/README.md | 4 ++-- mariadb/README.md | 11 +++++++---- mongo/README.md | 30 +++++++++++++++--------------- ruby/README.md | 12 ++++++------ wordpress/README.md | 9 +++++++++ 5 files changed, 39 insertions(+), 27 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index 922930ae1041..e793dee2c755 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.4.59`, `2.4`, `2`, `latest`, `2.4.59-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/b1cb5ded14f70d67aaa987d3267036884a7320ef/2.4/Dockerfile) -- [`2.4.59-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.59-alpine3.19`, `2.4-alpine3.19`, `2-alpine3.19`, `alpine3.19`](https://github.com/docker-library/httpd/blob/082047ae2f5373e3f542f983a7997b8f957ed518/2.4/alpine/Dockerfile) +- [`2.4.59-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.59-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/a81495e0b89cc2dc06e4ccccb31c40be040ba618/2.4/alpine/Dockerfile) # Quick reference (cont.) @@ -33,7 +33,7 @@ WARNING: [https://github.com/docker-library/httpd/issues](https://github.com/docker-library/httpd/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`mips64le`](https://hub.docker.com/r/mips64le/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/) + [`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`mips64le`](https://hub.docker.com/r/mips64le/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`riscv64`](https://hub.docker.com/r/riscv64/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/) - **Published image artifact details**: [repo-info repo's `repos/httpd/` directory](https://github.com/docker-library/repo-info/blob/master/repos/httpd) ([history](https://github.com/docker-library/repo-info/commits/master/repos/httpd)) diff --git a/mariadb/README.md b/mariadb/README.md index 849200bc79cf..fedbe68e56ce 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,12 +26,15 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.4.1-rc-jammy`, `11.4-rc-jammy`, `11.4.1-rc`, `11.4-rc`](https://github.com/MariaDB/mariadb-docker/blob/e0677724cbe9f932a568c8f85bca6c14d460bbb4/11.4/Dockerfile) -- [`11.3.2-jammy`, `11.3-jammy`, `11-jammy`, `jammy`, `11.3.2`, `11.3`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/e0677724cbe9f932a568c8f85bca6c14d460bbb4/11.3/Dockerfile) +- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/11.5-ubi/Dockerfile) +- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/7dabf47ac1c0f2f324563f5a0616812bf332f781/11.5/Dockerfile) +- [`11.4.2-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.2-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/11.4-ubi/Dockerfile) +- [`11.4.2-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.2`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/4e20774a56c8fb93cec9ee9d4a5b476bc0f8dd0d/11.4/Dockerfile) - [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.2/Dockerfile) - [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.1/Dockerfile) -- [`11.0.6-jammy`, `11.0-jammy`, `11.0.6`, `11.0`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.0/Dockerfile) -- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `lts-jammy`, `10.11.8`, `10.11`, `10`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.11/Dockerfile) +- [`10.11.8-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.8-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/10.11-ubi/Dockerfile) +- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `10.11.8`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.11/Dockerfile) +- [`10.6.18-ubi9`, `10.6-ubi9`, `10.6.18-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/10.6-ubi/Dockerfile) - [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.6/Dockerfile) - [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.5/Dockerfile) - [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.4/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index dc94ec2a4c2f..b190da5ee939 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`8.0.0-rc5-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/Dockerfile) -- [`8.0.0-rc5-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc5-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc5-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc5-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc6-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/Dockerfile) +- [`8.0.0-rc6-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc6-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc6-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc6-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `8.0.0-rc5`, `8.0-rc`: - - [`8.0.0-rc5-jammy`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/Dockerfile) - - [`8.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc5-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc5-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a8194fb466e4cfde75babdeed929b09df44c3243/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc6`, `8.0-rc`: + - [`8.0.0-rc6-jammy`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/Dockerfile) + - [`8.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc6-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc6-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.11`, `7.0`, `7`, `latest`: - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index d4a866b5594b..d924e257c736 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -30,12 +30,12 @@ WARNING: - [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) - [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.4-rc/alpine3.20/Dockerfile) - [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.1-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.1`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bookworm/Dockerfile) -- [`3.3.1-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.1-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bookworm/Dockerfile) -- [`3.3.1-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/bullseye/Dockerfile) -- [`3.3.1-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/slim-bullseye/Dockerfile) -- [`3.3.1-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.1-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.3/alpine3.20/Dockerfile) -- [`3.3.1-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.3/alpine3.19/Dockerfile) +- [`3.3.2-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.2`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/bookworm/Dockerfile) +- [`3.3.2-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.2-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/slim-bookworm/Dockerfile) +- [`3.3.2-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/bullseye/Dockerfile) +- [`3.3.2-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/slim-bullseye/Dockerfile) +- [`3.3.2-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.2-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/alpine3.20/Dockerfile) +- [`3.3.2-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/alpine3.19/Dockerfile) - [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) - [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) - [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 793f950b5312..aa5bfdf99c72 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,6 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) +- [`beta-6.5.4-RC1-php8.1-apache`, `beta-6.5.4-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5.4-RC1-php8.1`, `beta-6.5.4-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/apache/Dockerfile) +- [`beta-6.5.4-RC1-php8.1-fpm`, `beta-6.5.4-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/fpm/Dockerfile) +- [`beta-6.5.4-RC1-php8.1-fpm-alpine`, `beta-6.5.4-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.5.4-RC1-apache`, `beta-6.5.4-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5.4-RC1`, `beta-6.5.4`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5.4-RC1-php8.2-apache`, `beta-6.5.4-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5.4-RC1-php8.2`, `beta-6.5.4-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/apache/Dockerfile) +- [`beta-6.5.4-RC1-fpm`, `beta-6.5.4-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5.4-RC1-php8.2-fpm`, `beta-6.5.4-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/fpm/Dockerfile) +- [`beta-6.5.4-RC1-fpm-alpine`, `beta-6.5.4-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5.4-RC1-php8.2-fpm-alpine`, `beta-6.5.4-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.5.4-RC1-php8.3-apache`, `beta-6.5.4-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5.4-RC1-php8.3`, `beta-6.5.4-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/apache/Dockerfile) +- [`beta-6.5.4-RC1-php8.3-fpm`, `beta-6.5.4-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/fpm/Dockerfile) +- [`beta-6.5.4-RC1-php8.3-fpm-alpine`, `beta-6.5.4-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 9ad0c45ab291b46785df71abc267da8a92047e44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 May 2024 10:10:46 -0700 Subject: [PATCH 1224/2686] Run update.sh --- aerospike/README.md | 4 ++-- nextcloud/README.md | 18 +++++++++--------- odoo/README.md | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 619c33ac47f3..c78621c4c683 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.0`, `ee-7.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/af847cba3ce8e7d4f8207106d6bf5ae59e749473/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.0`, `ce-7.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/af847cba3ce8e7d4f8207106d6bf5ae59e749473/community/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.0`, `ee-7.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/66b7fb79a4a5e0a95c5913d7a7f5afd2a7a841c4/enterprise/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.0`, `ce-7.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/66b7fb79a4a5e0a95c5913d7a7f5afd2a7a841c4/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 5d3d0baa09cc..b82af72ab335 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.9-apache`, `27.1-apache`, `27-apache`, `27.1.9`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/apache/Dockerfile) -- [`27.1.9-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/fpm/Dockerfile) -- [`27.1.9-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/27/fpm-alpine/Dockerfile) -- [`28.0.5-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.5`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/apache/Dockerfile) -- [`28.0.5-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/fpm/Dockerfile) -- [`28.0.5-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/19417a8eb9b77b2613d64dc997def635d5bb4441/28/fpm-alpine/Dockerfile) -- [`29.0.0-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.0`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/apache/Dockerfile) -- [`29.0.0-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm/Dockerfile) -- [`29.0.0-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/f7b20139ebd35daea49138fd15232c5d812f4114/29/fpm-alpine/Dockerfile) +- [`27.1.10-apache`, `27.1-apache`, `27-apache`, `27.1.10`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/apache/Dockerfile) +- [`27.1.10-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/fpm/Dockerfile) +- [`27.1.10-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/fpm-alpine/Dockerfile) +- [`28.0.6-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.6`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/apache/Dockerfile) +- [`28.0.6-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/fpm/Dockerfile) +- [`28.0.6-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/fpm-alpine/Dockerfile) +- [`29.0.1-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.1`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/apache/Dockerfile) +- [`29.0.1-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/fpm/Dockerfile) +- [`29.0.1-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 851ec54a253c..990ef8f3a801 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/17.0/Dockerfile) -- [`16.0`, `16`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/16.0/Dockerfile) -- [`15.0`, `15`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/15.0/Dockerfile) +- [`17.0-20240522`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/17.0/Dockerfile) +- [`16.0-20240522`, `16.0`, `16`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/16.0/Dockerfile) +- [`15.0-20240522`, `15.0`, `15`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/15.0/Dockerfile) # Quick reference (cont.) From 7a71e9f9f816da4c030ac084d2147610fc349d59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 May 2024 11:10:49 -0700 Subject: [PATCH 1225/2686] Run update.sh --- joomla/README.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 81d40a1d91bf..2c2c69d9c453 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,18 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/apache/Dockerfile) -- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.1/fpm/Dockerfile) -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/apache/Dockerfile) -- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/5.1/php8.2/fpm/Dockerfile) -- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/apache/Dockerfile) -- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.1/fpm/Dockerfile) -- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/apache/Dockerfile) -- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b72519094ce8ea4df7c3f07035c12191ed78f526/4.4/php8.2/fpm/Dockerfile) +- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/apache/Dockerfile) +- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/fpm/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/apache/Dockerfile) +- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/fpm/Dockerfile) +- [`5.1.1-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/apache/Dockerfile) +- [`5.1.1-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.1-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/fpm/Dockerfile) +- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/apache/Dockerfile) +- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/fpm/Dockerfile) +- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/apache/Dockerfile) +- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From f731d9967093bcd2cc69d3370d65553db6e0f03b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 May 2024 17:10:26 -0700 Subject: [PATCH 1226/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 26bb389aa9df..4b911a78c1f5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/9-slim-fips/Dockerfile) -- [`8.9`, `8`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c107874aaa8980a697bf8258c85a0f60aa415c17/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7-slim-fips/Dockerfile) # Quick reference (cont.) From df57ba7bd7d7ea1d731743965b5de26f60d70d59 Mon Sep 17 00:00:00 2001 From: Nikolai Prokoschenko Date: Fri, 10 May 2024 16:57:40 +0200 Subject: [PATCH 1227/2686] Update eclipse-temurin docs about CA certs on non-root images Signed-off-by: Nikolai Prokoschenko --- eclipse-temurin/content.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/eclipse-temurin/content.md b/eclipse-temurin/content.md index c9497a782b79..dd7238799764 100644 --- a/eclipse-temurin/content.md +++ b/eclipse-temurin/content.md @@ -14,13 +14,21 @@ JRE images are available for all versions of Eclipse Temurin but it is recommend # Can I add my internal CA certificates to the truststore? -Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: +Yes, it's possible for all image flavors except for Windows-based images. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. + +You need to put your CA certificates into `/certificates` directory inside the container (e.g. by using a volume) and opt-in into CA certificate processing by setting the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value (if you are overriding the entrypoint script, please make sure you call `/__cacert_entrypoint.sh` to enable the processing). Using Docker CLI this might look like this: ```console $ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 %%IMAGE%%:21 ``` -The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. +When run like this, your certificates will get added to both the JVM truststore and to the system CA store (e.g. for use by `curl` and other CLI tools). However, if you are running your containers in a restricted-by-default environment (such as Red Hat OpenShift), there will be some small differences: + +- **Your containers are run with a non-`root` UID**: Since neither the default JVM truststore nor the system CA store can be written to by a non-`root` user, the system CA store will not be updated, while a separate truststore will be provided to the JVM. Your certificates will get added to that truststore and the `JAVA_TOOL_OPTIONS` environment variable will be automatically extended to switch the JVM over to this new truststore. If you are overriding the default entrypoint script of this image, you'll need let the JVM know about the new truststore manually. The path to the new truststore will be exported via `JRE_CACERTS_PATH` environment variable. + +- **Your containers are run with a read-only filesystem**: The same restrictions apply as with running containers with a non-`root` UID. In addition, a writable volume is required at `/tmp` to be able to create the new truststore. + +While this feature has been tested in multiple scenarios, there is always a chance of an unexpected edge case. Should you encounter one of these, please open an [issue](https://github.com/adoptium/containers/issues). # How to use this Image From f54364f7c71fc01343495deeab7744e890dd13b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jun 2024 11:10:30 -0700 Subject: [PATCH 1228/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- caddy/README.md | 34 +++++++++++++++++----------------- chronograf/README.md | 16 ++++++++-------- clearlinux/README.md | 2 +- ghost/README.md | 4 ++-- gradle/README.md | 30 +++++++++++++++--------------- kong/README.md | 5 ++--- memcached/README.md | 4 ++-- odoo/README.md | 6 +++--- openjdk/README.md | 36 ++++++++++++++++++------------------ photon/README.md | 6 +++--- rabbitmq/README.md | 8 ++++---- sl/README.md | 2 +- 13 files changed, 84 insertions(+), 85 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 967fd59328a2..38f03d8aaa6d 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/333060c8efc4ce573d8cf2a2b662d706d4b93f83/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/uclibc/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/musl/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/uclibc/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/musl/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index d48e06439306..331245f665df 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,26 +28,26 @@ WARNING: ## Simple Tags -- [`2.8.1-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/alpine/Dockerfile) -- [`2.8.1-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/builder/Dockerfile) -- [`2.8.1-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) -- [`2.8.1-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.1-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/1809/Dockerfile) -- [`2.8.1-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/alpine/Dockerfile) +- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/builder/Dockerfile) +- [`2.8.4-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) +- [`2.8.4-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) +- [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) +- [`2.8.4-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.8.1`, `2.8`, `2`, `latest`: - - [`2.8.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/alpine/Dockerfile) - - [`2.8.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) - - [`2.8.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) -- `2.8.1-builder`, `2.8-builder`, `2-builder`, `builder`: - - [`2.8.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/builder/Dockerfile) - - [`2.8.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/1809/Dockerfile) - - [`2.8.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows-builder/ltsc2022/Dockerfile) -- `2.8.1-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.8.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/1809/Dockerfile) - - [`2.8.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/570892add07e6249c94e89c36b67e0e01b0b656d/2.8/windows/ltsc2022/Dockerfile) +- `2.8.4`, `2.8`, `2`, `latest`: + - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/alpine/Dockerfile) + - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) + - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) +- `2.8.4-builder`, `2.8-builder`, `2-builder`, `builder`: + - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/builder/Dockerfile) + - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) + - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) +- `2.8.4-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) + - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/chronograf/README.md b/chronograf/README.md index 4d27bfa369a7..6d70bc9c3cea 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/1a58dee982ca7f110b9d7478f55c6ee2837ec3bb/chronograf/1.10/alpine/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/alpine/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/alpine/Dockerfile) +- [`1.10`, `1.10.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/Dockerfile) +- [`1.10-alpine`, `1.10.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index e2500e6e5607..0e43627ea9cc 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/de7b43d93c25cda5141e1329b7dea0c0e810dd75/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/94674a75fcbd61b721ac1332cf3893e7f1979ba6/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 0050c5061c3d..2d098970e346 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.82.12`, `5.82`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a7b83c8d1c61cce86548725f2df3f0ede71a91cf/5/debian/Dockerfile) -- [`5.82.12-alpine`, `5.82-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a7b83c8d1c61cce86548725f2df3f0ede71a91cf/5/alpine/Dockerfile) +- [`5.83.0`, `5.83`, `5`, `latest`](https://github.com/docker-library/ghost/blob/24c14ef74f056585dd20f61de0a6ae9a1c51a8e1/5/debian/Dockerfile) +- [`5.83.0-alpine`, `5.83-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/24c14ef74f056585dd20f61de0a6ae9a1c51a8e1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 8fdd0270cd1d..4b3d5ca6c97e 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.7.0-jdk8`, `8.7-jdk8`, `8-jdk8`, `jdk8`, `8.7.0-jdk8-jammy`, `8.7-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk8/Dockerfile) -- [`8.7.0-jdk8-focal`, `8.7-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk8-focal/Dockerfile) -- [`8.7.0-jdk11`, `8.7-jdk11`, `8-jdk11`, `jdk11`, `8.7.0-jdk11-jammy`, `8.7-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11/Dockerfile) -- [`8.7.0-jdk11-focal`, `8.7-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11-focal/Dockerfile) -- [`8.7.0-jdk11-alpine`, `8.7-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk11-alpine/Dockerfile) -- [`8.7.0-jdk17`, `8.7-jdk17`, `8-jdk17`, `jdk17`, `8.7.0-jdk17-jammy`, `8.7-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17/Dockerfile) -- [`8.7.0-jdk17-focal`, `8.7-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.7.0-jdk-focal`, `8.7-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.7.0-focal`, `8.7-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-focal/Dockerfile) -- [`8.7.0-jdk17-alpine`, `8.7-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.7.0-jdk-alpine`, `8.7-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.7.0-alpine`, `8.7-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-alpine/Dockerfile) -- [`8.7.0-jdk17-graal`, `8.7-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.7.0-jdk-graal`, `8.7-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.7.0-graal`, `8.7-graal`, `8-graal`, `graal`, `8.7.0-jdk17-graal-jammy`, `8.7-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.7.0-jdk-graal-jammy`, `8.7-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.7.0-graal-jammy`, `8.7-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk17-graal/Dockerfile) -- [`8.7.0-jdk21`, `8.7-jdk21`, `8-jdk21`, `jdk21`, `8.7.0-jdk21-jammy`, `8.7-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.7.0-jdk`, `8.7-jdk`, `8-jdk`, `jdk`, `8.7.0`, `8.7`, `8`, `8.7.0-jdk-jammy`, `8.7-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.7.0-jammy`, `8.7-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21/Dockerfile) -- [`8.7.0-jdk21-alpine`, `8.7-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21-alpine/Dockerfile) -- [`8.7.0-jdk21-graal`, `8.7-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.7.0-jdk21-graal-jammy`, `8.7-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk21-graal/Dockerfile) -- [`8.7.0-jdk-lts-and-current`, `8.7-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.7.0-jdk-lts-and-current-jammy`, `8.7-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.7.0-jdk-21-and-22`, `8.7-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.7.0-jdk-21-and-22-jammy`, `8.7-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current/Dockerfile) -- [`8.7.0-jdk-lts-and-current-alpine`, `8.7-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.7.0-jdk-21-and-22-alpine`, `8.7-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current-alpine/Dockerfile) -- [`8.7.0-jdk-lts-and-current-graal`, `8.7-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.7.0-jdk-lts-and-current-graal-jammy`, `8.7-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.7.0-jdk-21-and-22-graal`, `8.7-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.7.0-jdk-21-and-22-graal-jammy`, `8.7-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9c247e401b860bb49937454ae84f6e77f1f3eab5/jdk-lts-and-current-graal/Dockerfile) +- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk8/Dockerfile) +- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk8-focal/Dockerfile) +- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11/Dockerfile) +- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11-focal/Dockerfile) +- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11-alpine/Dockerfile) +- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17/Dockerfile) +- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-focal/Dockerfile) +- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-alpine/Dockerfile) +- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-graal/Dockerfile) +- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21/Dockerfile) +- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21-alpine/Dockerfile) +- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21-graal/Dockerfile) +- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current/Dockerfile) +- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current-alpine/Dockerfile) +- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) diff --git a/kong/README.md b/kong/README.md index 36358c93ee32..d56f3f762427 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,11 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/4dec46ee7e14ddd3a10692814728ff85adb77f25/ubuntu/Dockerfile) +- [`3.7.0-ubuntu`, `3.7-ubuntu`, `3.7.0`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/7c1f670b717d308affd4843c8cf2f5c4402b6794/ubuntu/Dockerfile) +- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/4dec46ee7e14ddd3a10692814728ff85adb77f25/ubuntu/Dockerfile) - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) -- [`3.3.1-alpine`, `alpine`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/Dockerfile.apk) -- [`3.3.1-ubuntu`, `3.3-ubuntu`, `3.3.1`, `3.3`](https://github.com/Kong/docker-kong/blob/2207aa20530f8a04290c82c9c2258717f7795080/ubuntu/Dockerfile) - [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) - [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index b416ad5f6c29..9bc1364d81b8 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.27`, `1.6`, `1`, `latest`, `1.6.27-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/89cfc0a083fd575c2d809c280e7e5ba9b1622072/1/debian/Dockerfile) -- [`1.6.27-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.27-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/0f0140d7051feedb89e5373ce965fa33a2ef17d5/1/alpine/Dockerfile) +- [`1.6.28`, `1.6`, `1`, `latest`, `1.6.28-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/4ff42b38a59b98c91a33d1d91d4b2f0d492c951e/1/debian/Dockerfile) +- [`1.6.28-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.28-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/4ff42b38a59b98c91a33d1d91d4b2f0d492c951e/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 990ef8f3a801..4160ff35c720 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240522`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/17.0/Dockerfile) -- [`16.0-20240522`, `16.0`, `16`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/16.0/Dockerfile) -- [`15.0-20240522`, `15.0`, `15`](https://github.com/odoo/docker/blob/ea74918b211215176bda85854a771be1c5c97871/15.0/Dockerfile) +- [`17.0-20240603`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/17.0/Dockerfile) +- [`16.0-20240603`, `16.0`, `16`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/16.0/Dockerfile) +- [`15.0-20240603`, `15.0`, `15`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/15.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 955f945658bc..136529f76916 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-24-jdk-oraclelinux9`, `23-ea-24-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-24-jdk-oracle`, `23-ea-24-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-24-jdk-oraclelinux8`, `23-ea-24-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-24-jdk-bookworm`, `23-ea-24-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/bookworm/Dockerfile) -- [`23-ea-24-jdk-slim-bookworm`, `23-ea-24-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-24-jdk-slim`, `23-ea-24-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-24-jdk-bullseye`, `23-ea-24-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/bullseye/Dockerfile) -- [`23-ea-24-jdk-slim-bullseye`, `23-ea-24-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-24-jdk-windowsservercore-ltsc2022`, `23-ea-24-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-24-jdk-windowsservercore-1809`, `23-ea-24-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-24-jdk-nanoserver-1809`, `23-ea-24-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-25-jdk-oraclelinux9`, `23-ea-25-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-25-jdk-oracle`, `23-ea-25-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-25-jdk-oraclelinux8`, `23-ea-25-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-25-jdk-bookworm`, `23-ea-25-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/bookworm/Dockerfile) +- [`23-ea-25-jdk-slim-bookworm`, `23-ea-25-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-25-jdk-slim`, `23-ea-25-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-25-jdk-bullseye`, `23-ea-25-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/bullseye/Dockerfile) +- [`23-ea-25-jdk-slim-bullseye`, `23-ea-25-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-25-jdk-windowsservercore-ltsc2022`, `23-ea-25-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-25-jdk-windowsservercore-1809`, `23-ea-25-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-25-jdk-nanoserver-1809`, `23-ea-25-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-24-jdk`, `23-ea-24`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/46252c0e08809392788c73796bb194690c7d3426/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-24-jdk-windowsservercore`, `23-ea-24-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-24-jdk-nanoserver`, `23-ea-24-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/453845e43a3d296e8aba9c8052c676029d7b9ea2/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-25-jdk`, `23-ea-25`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-25-jdk-windowsservercore`, `23-ea-25-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-25-jdk-nanoserver`, `23-ea-25-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 617b7632394c..2f4b52109407 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240526`, `latest`](https://github.com/vmware/photon-docker-image/blob/4664e860fc7ee3074b84d9e031731109501a068c/docker/Dockerfile) -- [`4.0`, `4.0-20240526`](https://github.com/vmware/photon-docker-image/blob/40c4bc2ec6869199bf97785e6b9d24b970e529a9/docker/Dockerfile) -- [`3.0`, `3.0-20240526`](https://github.com/vmware/photon-docker-image/blob/98a062cd3c3983c6362bc2646f43f7b87ab5fda4/docker/Dockerfile) +- [`5.0`, `5.0-20240602`, `latest`](https://github.com/vmware/photon-docker-image/blob/2013de844228ddd1d802155c775b7b35468acdb6/docker/Dockerfile) +- [`4.0`, `4.0-20240602`](https://github.com/vmware/photon-docker-image/blob/ee303a6cd53f2e7c89d54cdd65299c0877e1d270/docker/Dockerfile) +- [`3.0`, `3.0-20240602`](https://github.com/vmware/photon-docker-image/blob/5384052221b26443a841d9aeff74aaabae8eb4d8/docker/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 401260a1cbd0..7d8c91bd0862 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.2`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.13/ubuntu/Dockerfile) -- [`3.13.2-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.2-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8eeb831c647aab7f7bb2cd1dd2228edca0908b62/3.13/alpine/Dockerfile) -- [`3.13.2-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/344a1c142ddc8f7e9163d2aef1985d24f72b2483/3.13/ubuntu/Dockerfile) +- [`3.13.3-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/344a1c142ddc8f7e9163d2aef1985d24f72b2483/3.13/alpine/Dockerfile) +- [`3.13.3-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/alpine/Dockerfile) diff --git a/sl/README.md b/sl/README.md index dea69249c7ba..7f6589c6c22b 100644 --- a/sl/README.md +++ b/sl/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/ca29d5f891421cb83ec29c302e4610c6822482d8/sl7/Dockerfile) +- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/f5eec00586e57174fd8616a9a052cd75d7ae5377/sl7/Dockerfile) # Quick reference (cont.) From 6f6b3b9d7a11b0404a1f6d55457b45dcc5878de2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Jun 2024 12:10:17 -0700 Subject: [PATCH 1229/2686] Run update.sh --- postgres/README.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index c2e656c1b00c..e28656f599c2 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,26 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`17beta1`, `17beta1-bookworm`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bookworm/Dockerfile) +- [`17beta1-bullseye`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bullseye/Dockerfile) +- [`17beta1-alpine3.20`, `17beta1-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/17/alpine3.20/Dockerfile) +- [`17beta1-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/17/alpine3.19/Dockerfile) - [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) - [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) -- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/16/alpine3.20/Dockerfile) -- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/alpine3.19/Dockerfile) +- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/16/alpine3.20/Dockerfile) +- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/16/alpine3.19/Dockerfile) - [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) - [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) -- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/15/alpine3.20/Dockerfile) -- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/alpine3.19/Dockerfile) +- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/15/alpine3.20/Dockerfile) +- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/15/alpine3.19/Dockerfile) - [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) - [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) -- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/14/alpine3.20/Dockerfile) -- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/alpine3.19/Dockerfile) +- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/14/alpine3.20/Dockerfile) +- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/14/alpine3.19/Dockerfile) - [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) - [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) -- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/13/alpine3.20/Dockerfile) -- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/alpine3.19/Dockerfile) +- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/13/alpine3.20/Dockerfile) +- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/13/alpine3.19/Dockerfile) - [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) - [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) -- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/930acaf01ff536090a3bb304cf823a8cc777b658/12/alpine3.20/Dockerfile) -- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/alpine3.19/Dockerfile) +- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/12/alpine3.20/Dockerfile) +- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/12/alpine3.19/Dockerfile) # Quick reference (cont.) From 99cda063b33c0cada305d40c0231e41d0711af94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Jun 2024 11:19:46 -0700 Subject: [PATCH 1230/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 4154b7a469a7..376f41f0f44a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,28 +24,28 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.2-alpine3.19`, `22.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.2-alpine`, `22.2-alpine3.20`, `22.2.0-alpine`, `22.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/22/alpine3.20/Dockerfile) +- [`22-alpine3.19`, `22.2-alpine3.19`, `22.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/22/alpine3.19/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.2-alpine`, `22.2-alpine3.20`, `22.2.0-alpine`, `22.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/22/alpine3.20/Dockerfile) - [`22`, `22-bookworm`, `22.2`, `22.2-bookworm`, `22.2.0`, `22.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm/Dockerfile) - [`22-bookworm-slim`, `22-slim`, `22.2-bookworm-slim`, `22.2-slim`, `22.2.0-bookworm-slim`, `22.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm-slim/Dockerfile) - [`22-bullseye`, `22.2-bullseye`, `22.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye/Dockerfile) - [`22-bullseye-slim`, `22.2-bullseye-slim`, `22.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye-slim/Dockerfile) -- [`21-alpine3.19`, `21.7-alpine3.19`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/alpine3.19/Dockerfile) -- [`21-alpine`, `21-alpine3.20`, `21.7-alpine`, `21.7-alpine3.20`, `21.7.3-alpine`, `21.7.3-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/21/alpine3.20/Dockerfile) +- [`21-alpine3.19`, `21.7-alpine3.19`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/21/alpine3.19/Dockerfile) +- [`21-alpine`, `21-alpine3.20`, `21.7-alpine`, `21.7-alpine3.20`, `21.7.3-alpine`, `21.7.3-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/21/alpine3.20/Dockerfile) - [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) - [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) - [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) - [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/alpine3.20/Dockerfile) +- [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.19/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.20/Dockerfile) - [`20`, `20-bookworm`, `20.14`, `20.14-bookworm`, `20.14.0`, `20.14.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm/Dockerfile) - [`20-bookworm-slim`, `20-slim`, `20.14-bookworm-slim`, `20.14-slim`, `20.14.0-bookworm-slim`, `20.14.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.14-bullseye`, `20.14.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20.14-bullseye-slim`, `20.14.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye-slim/Dockerfile) - [`20-buster`, `20.14-buster`, `20.14.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster/Dockerfile) - [`20-buster-slim`, `20.14-buster-slim`, `20.14.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster-slim/Dockerfile) -- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/alpine3.19/Dockerfile) -- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/1810f76d762c8b080ab6aec585d66fb0f7f1d4a9/18/alpine3.20/Dockerfile) +- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.19/Dockerfile) +- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.20/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) - [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) From c1cb9e02459db6330c5529585939a8c996ec9e8a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Jun 2024 14:10:29 -0700 Subject: [PATCH 1231/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index b80d55e8a5ca..39dc7788fa81 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.22.3-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bookworm/Dockerfile) -- [`1.22.3-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bullseye/Dockerfile) -- [`1.22.3-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.3-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/cf7a37dedf1fd5a25ca72075645368d1e3c30c4a/1.22/alpine3.20/Dockerfile) -- [`1.22.3-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/alpine3.19/Dockerfile) -- [`1.22.3-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.3-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.3-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.3-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.10-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bookworm/Dockerfile) -- [`1.21.10-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bullseye/Dockerfile) -- [`1.21.10-alpine3.20`, `1.21-alpine3.20`, `1.21.10-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/cf7a37dedf1fd5a25ca72075645368d1e3c30c4a/1.21/alpine3.20/Dockerfile) -- [`1.21.10-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/alpine3.19/Dockerfile) -- [`1.21.10-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.10-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.10-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.10-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.4-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bookworm/Dockerfile) +- [`1.22.4-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bullseye/Dockerfile) +- [`1.22.4-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.4-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/alpine3.20/Dockerfile) +- [`1.22.4-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/alpine3.19/Dockerfile) +- [`1.22.4-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.4-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.4-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.4-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.11-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bookworm/Dockerfile) +- [`1.21.11-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bullseye/Dockerfile) +- [`1.21.11-alpine3.20`, `1.21-alpine3.20`, `1.21.11-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/alpine3.20/Dockerfile) +- [`1.21.11-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/alpine3.19/Dockerfile) +- [`1.21.11-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.11-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.11-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.11-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.22.3`, `1.22`, `1`, `latest`: - - [`1.22.3-bookworm`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/bookworm/Dockerfile) - - [`1.22.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.3-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.3-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/eb57429622f401af7c5afffeb3cd88022c9b9782/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.10`, `1.21`: - - [`1.21.10-bookworm`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/bookworm/Dockerfile) - - [`1.21.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.10-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.10-nanoserver`, `1.21-nanoserver`: - - [`1.21.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/777111946489bad416e54e378d580f2518632a82/1.21/windows/nanoserver-1809/Dockerfile) +- `1.22.4`, `1.22`, `1`, `latest`: + - [`1.22.4-bookworm`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bookworm/Dockerfile) + - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.4-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.4-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.11`, `1.21`: + - [`1.21.11-bookworm`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bookworm/Dockerfile) + - [`1.21.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.11-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.11-nanoserver`, `1.21-nanoserver`: + - [`1.21.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 5cf930552c1b894ee3a9f55167eb583a3f565a6d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Jun 2024 16:10:08 -0700 Subject: [PATCH 1232/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index cd6fd389974b..42e894dc85c8 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240520`, `devel`, `devel-20240520-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/9477b56c23c2059d9af7cc25338a318e278da776/devel/Dockerfile) +- [`devel-20240603`, `devel`, `devel-20240603-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/42d4f5b2df9f58ffc485a9a1891d607628a6d942/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) From 6fdcf257c8614f9cf3344712580fe338bb707ddd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Jun 2024 17:10:35 -0700 Subject: [PATCH 1233/2686] Run update.sh --- aerospike/README.md | 4 +- amazonlinux/README.md | 4 +- caddy/README.md | 10 ++-- ibm-semeru-runtimes/README.md | 90 +++++++++++++++++++---------------- rabbitmq/README.md | 8 ++-- ubuntu/README.md | 9 ++-- wordpress/README.md | 18 +++---- 7 files changed, 77 insertions(+), 66 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index c78621c4c683..608ae341068f 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.0`, `ee-7.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/66b7fb79a4a5e0a95c5913d7a7f5afd2a7a841c4/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.0`, `ce-7.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/66b7fb79a4a5e0a95c5913d7a7f5afd2a7a841c4/community/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.1`, `ee-7.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a7456498bcd19138aedf33dd065d4493a53d095/enterprise/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.1`, `ce-7.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a7456498bcd19138aedf33dd065d4493a53d095/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 33a1238bca5e..e00e8f1bb4c3 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.4.20240416.0`](https://github.com/amazonlinux/container-images/blob/ccf125ba9199e9dc53a614df2df2c5be14ab95fe/Dockerfile) -- [`2`, `2.0.20240412.0`](https://github.com/amazonlinux/container-images/blob/8935e6e622c058e7c41af69ae2929be8e6a3a892/Dockerfile) +- [`2023`, `latest`, `2023.4.20240528.0`](https://github.com/amazonlinux/container-images/blob/3f70daba787f52e24ac044292a45f80bde40d68c/Dockerfile) +- [`2`, `2.0.20240529.0`](https://github.com/amazonlinux/container-images/blob/4e2e2fd3a7f437964ba551048908e6a5ce819bf5/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 331245f665df..e6a7896c915d 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,8 +28,8 @@ WARNING: ## Simple Tags -- [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/alpine/Dockerfile) -- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/builder/Dockerfile) +- [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) +- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) - [`2.8.4-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - [`2.8.4-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) - [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) @@ -38,11 +38,11 @@ WARNING: ## Shared Tags - `2.8.4`, `2.8`, `2`, `latest`: - - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/alpine/Dockerfile) + - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) - `2.8.4-builder`, `2.8-builder`, `2-builder`, `builder`: - - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/builder/Dockerfile) + - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) - `2.8.4-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: @@ -55,7 +55,7 @@ WARNING: [https://github.com/caddyserver/caddy-docker/issues](https://github.com/caddyserver/caddy-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/caddy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/caddy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/caddy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/caddy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/caddy/), [`s390x`](https://hub.docker.com/r/s390x/caddy/), [`windows-amd64`](https://hub.docker.com/r/winamd64/caddy/) + [`amd64`](https://hub.docker.com/r/amd64/caddy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/caddy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/caddy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/caddy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/caddy/), [`riscv64`](https://hub.docker.com/r/riscv64/caddy/), [`s390x`](https://hub.docker.com/r/s390x/caddy/), [`windows-amd64`](https://hub.docker.com/r/winamd64/caddy/) - **Published image artifact details**: [repo-info repo's `repos/caddy/` directory](https://github.com/docker-library/repo-info/blob/master/repos/caddy) ([history](https://github.com/docker-library/repo-info/commits/master/repos/caddy)) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 2cac2f3e0eaf..ac1f2ade967f 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,49 +28,59 @@ WARNING: ## Simple Tags -- [`open-8u402-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u402-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u402-b06-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/centos/Dockerfile.open.releases.full) -- [`open-8u402-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u402-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u402-b06-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/centos/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/centos/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.22_7-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/centos/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/centos/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.10_7-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/centos/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/centos/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.2_13-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/centos/Dockerfile.open.releases.full) +- [`open-8u412-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u412-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u412-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u412-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u412-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u412-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/centos/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/centos/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/centos/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jdk-centos7`, `open-22-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/centos/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jre-centos7`, `open-22-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/centos/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u402-b06-jdk`, `open-8-jdk`: - - [`open-8u402-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u402-b06-jre`, `open-8-jre`: - - [`open-8u402-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.22_7-jdk`, `open-11-jdk`: - - [`open-11.0.22_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.22_7-jre`, `open-11-jre`: - - [`open-11.0.22_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.10_7-jdk`, `open-17-jdk`: - - [`open-17.0.10_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.10_7-jre`, `open-17-jre`: - - [`open-17.0.10_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.2_13-jdk`, `open-21-jdk`: - - [`open-21.0.2_13-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.2_13-jre`, `open-21-jre`: - - [`open-21.0.2_13-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/6335f073e3ea258643215a0f490c2b2fea5cc90f/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u412-b08-jdk`, `open-8-jdk`: + - [`open-8u412-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-8u412-b08-jre`, `open-8-jre`: + - [`open-8u412-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.23_9-jdk`, `open-11-jdk`: + - [`open-11.0.23_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-11.0.23_9-jre`, `open-11-jre`: + - [`open-11.0.23_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.11_9-jdk`, `open-17-jdk`: + - [`open-17.0.11_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-17.0.11_9-jre`, `open-17-jre`: + - [`open-17.0.11_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.3_9-jdk`, `open-21-jdk`: + - [`open-21.0.3_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-21.0.3_9-jre`, `open-21-jre`: + - [`open-21.0.3_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-22.0.1_8-jdk`, `open-22-jdk`: + - [`open-22.0.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- `open-22.0.1_8-jre`, `open-22-jre`: + - [`open-22.0.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7d8c91bd0862..6714d45552ce 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/344a1c142ddc8f7e9163d2aef1985d24f72b2483/3.13/ubuntu/Dockerfile) +- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/83604b7ec3bda015495dda883fe3b471f206d562/3.13/ubuntu/Dockerfile) - [`3.13.3-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/344a1c142ddc8f7e9163d2aef1985d24f72b2483/3.13/alpine/Dockerfile) +- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/83604b7ec3bda015495dda883fe3b471f206d562/3.13/alpine/Dockerfile) - [`3.13.3-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/4482825c6f2c929cd26157c59018ef43455e4288/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 1b5bc1f6f88b..329666d37ede 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,10 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240427`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240427-c1db7ea8&id=c1db7ea8ab458ee6b6790c818608ec10c66844c2) -- [`22.04`, `jammy-20240427`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240427-56a11b55&id=56a11b5565de124e1c92cf8d27c79aedd0974922) -- [`23.10`, `mantic-20240427`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240427-65be8b79&id=65be8b797a138c7e35a2d97d22f3ffa51153c5af) -- [`24.04`, `noble-20240429`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240429-0b1b11a0&id=0b1b11a0895c374406172562ef16db8047108b70) +- [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-f351639c&id=f351639c499dcde9b2d9e3aeb2b0344c4a01fc1e) +- [`22.04`, `jammy-20240530`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240530-457c5d99&id=457c5d999100a1eb971d38949b3fe798a84ad6fc) +- [`23.10`, `mantic-20240530`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240530-8dcb055f&id=8dcb055fedbfd33752ede65d6534f702a3b81070) +- [`24.04`, `noble-20240530`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240530-7c82c42f&id=7c82c42f3c0b288babb5b241187e4af965e5767a) +- [`24.10`, `oracular-20240527`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240527-15366d95&id=15366d954fc6c989ed956729b3a78ff7f1aff13a) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index aa5bfdf99c72..22eef5f6fbeb 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.5.4-RC1-php8.1-apache`, `beta-6.5.4-php8.1-apache`, `beta-6.5-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.5.4-RC1-php8.1`, `beta-6.5.4-php8.1`, `beta-6.5-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/apache/Dockerfile) -- [`beta-6.5.4-RC1-php8.1-fpm`, `beta-6.5.4-php8.1-fpm`, `beta-6.5-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/fpm/Dockerfile) -- [`beta-6.5.4-RC1-php8.1-fpm-alpine`, `beta-6.5.4-php8.1-fpm-alpine`, `beta-6.5-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.5.4-RC1-apache`, `beta-6.5.4-apache`, `beta-6.5-apache`, `beta-6-apache`, `beta-apache`, `beta-6.5.4-RC1`, `beta-6.5.4`, `beta-6.5`, `beta-6`, `beta`, `beta-6.5.4-RC1-php8.2-apache`, `beta-6.5.4-php8.2-apache`, `beta-6.5-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.5.4-RC1-php8.2`, `beta-6.5.4-php8.2`, `beta-6.5-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/apache/Dockerfile) -- [`beta-6.5.4-RC1-fpm`, `beta-6.5.4-fpm`, `beta-6.5-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.5.4-RC1-php8.2-fpm`, `beta-6.5.4-php8.2-fpm`, `beta-6.5-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/fpm/Dockerfile) -- [`beta-6.5.4-RC1-fpm-alpine`, `beta-6.5.4-fpm-alpine`, `beta-6.5-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.5.4-RC1-php8.2-fpm-alpine`, `beta-6.5.4-php8.2-fpm-alpine`, `beta-6.5-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.5.4-RC1-php8.3-apache`, `beta-6.5.4-php8.3-apache`, `beta-6.5-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.5.4-RC1-php8.3`, `beta-6.5.4-php8.3`, `beta-6.5-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/apache/Dockerfile) -- [`beta-6.5.4-RC1-php8.3-fpm`, `beta-6.5.4-php8.3-fpm`, `beta-6.5-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/fpm/Dockerfile) -- [`beta-6.5.4-RC1-php8.3-fpm-alpine`, `beta-6.5.4-php8.3-fpm-alpine`, `beta-6.5-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a62e6724aec26ea8e48aa5adcd5de6c7300fd86d/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-beta1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-beta1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-beta1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-beta1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-beta1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-beta1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-beta1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-beta1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-beta1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From dafb32bc4d9111b80a87c14775c0734ac792d474 Mon Sep 17 00:00:00 2001 From: Josh Powers Date: Wed, 5 Jun 2024 07:50:14 -0600 Subject: [PATCH 1234/2686] Update chronograf and kapacitor: Specify how to run as root In a recent release we stopped running as the root user, but provided users a way to change this if they wanted to via an env variable. This adds this variable to the docs. --- chronograf/content.md | 6 ++++++ kapacitor/content.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/chronograf/content.md b/chronograf/content.md index 3270ea9ade43..cb0e99c24a88 100644 --- a/chronograf/content.md +++ b/chronograf/content.md @@ -60,6 +60,12 @@ $ docker run -p 8888:8888 \ Try combining this with Telegraf to get dashboards for your infrastructure within minutes! +#### Running as root + +Starting in v1.10.5, Chronograf no longer run as the root user by default. If a +user wants to revert this change they can set `CHRONOGRAF_AS_ROOT=true` as an +environment variable. + ## Official Documentation See the [official docs](https://docs.influxdata.com/chronograf/latest/) for information on creating visualizations. diff --git a/kapacitor/content.md b/kapacitor/content.md index 9d0f75429a81..de171e770be9 100644 --- a/kapacitor/content.md +++ b/kapacitor/content.md @@ -67,6 +67,12 @@ KAPACITOR_INFLUXDB_0_URLS_0=http://influxdb:8086 Find more about configuring Kapacitor [here](https://docs.influxdata.com/kapacitor/latest/introduction/installation/) +#### Running as root + +Starting in v1.7.4, Kapacitor no longer run as the root user by default. If a +user wants to revert this change they can set `KAPACITOR_AS_ROOT=true` as an +environment variable. + ### Exposed Ports - 9092 TCP -- HTTP API endpoint From d0c9c4e90986b7cc0b81a5a92c24b9112a7064ef Mon Sep 17 00:00:00 2001 From: Josh Powers Date: Wed, 5 Jun 2024 07:52:51 -0600 Subject: [PATCH 1235/2686] make markdownfmt happy --- chronograf/content.md | 4 +--- kapacitor/content.md | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/chronograf/content.md b/chronograf/content.md index cb0e99c24a88..76f74ec063be 100644 --- a/chronograf/content.md +++ b/chronograf/content.md @@ -62,9 +62,7 @@ Try combining this with Telegraf to get dashboards for your infrastructure withi #### Running as root -Starting in v1.10.5, Chronograf no longer run as the root user by default. If a -user wants to revert this change they can set `CHRONOGRAF_AS_ROOT=true` as an -environment variable. +Starting in v1.10.5, Chronograf no longer run as the root user by default. If a user wants to revert this change they can set `CHRONOGRAF_AS_ROOT=true` as an environment variable. ## Official Documentation diff --git a/kapacitor/content.md b/kapacitor/content.md index de171e770be9..5975e3fc58ab 100644 --- a/kapacitor/content.md +++ b/kapacitor/content.md @@ -69,9 +69,7 @@ Find more about configuring Kapacitor [here](https://docs.influxdata.com/kapacit #### Running as root -Starting in v1.7.4, Kapacitor no longer run as the root user by default. If a -user wants to revert this change they can set `KAPACITOR_AS_ROOT=true` as an -environment variable. +Starting in v1.7.4, Kapacitor no longer run as the root user by default. If a user wants to revert this change they can set `KAPACITOR_AS_ROOT=true` as an environment variable. ### Exposed Ports From f1121431168a76f37fd8c23f16c21c08d0ff48f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Jun 2024 10:29:14 -0700 Subject: [PATCH 1236/2686] Run update.sh --- chronograf/README.md | 4 ++++ gradle/README.md | 30 +++++++++++++++--------------- kapacitor/README.md | 4 ++++ 3 files changed, 23 insertions(+), 15 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index 6d70bc9c3cea..c4a865701534 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -114,6 +114,10 @@ $ docker run -p 8888:8888 \ Try combining this with Telegraf to get dashboards for your infrastructure within minutes! +#### Running as root + +Starting in v1.10.5, Chronograf no longer run as the root user by default. If a user wants to revert this change they can set `CHRONOGRAF_AS_ROOT=true` as an environment variable. + ## Official Documentation See the [official docs](https://docs.influxdata.com/chronograf/latest/) for information on creating visualizations. diff --git a/gradle/README.md b/gradle/README.md index 4b3d5ca6c97e..16927fefc038 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk8/Dockerfile) -- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk8-focal/Dockerfile) -- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11/Dockerfile) -- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11-focal/Dockerfile) -- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk11-alpine/Dockerfile) -- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17/Dockerfile) -- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-focal/Dockerfile) -- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-alpine/Dockerfile) -- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk17-graal/Dockerfile) -- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21/Dockerfile) -- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21-alpine/Dockerfile) -- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk21-graal/Dockerfile) -- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current/Dockerfile) -- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current-alpine/Dockerfile) -- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/69670ee874560efe9a91718af5538f93416b38ff/jdk-lts-and-current-graal/Dockerfile) +- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk8/Dockerfile) +- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk8-focal/Dockerfile) +- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11/Dockerfile) +- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11-focal/Dockerfile) +- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11-alpine/Dockerfile) +- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17/Dockerfile) +- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-focal/Dockerfile) +- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-alpine/Dockerfile) +- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-graal/Dockerfile) +- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21/Dockerfile) +- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21-alpine/Dockerfile) +- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21-graal/Dockerfile) +- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current/Dockerfile) +- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current-alpine/Dockerfile) +- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) diff --git a/kapacitor/README.md b/kapacitor/README.md index 4cc7c1386c26..4338e34c8339 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -117,6 +117,10 @@ KAPACITOR_INFLUXDB_0_URLS_0=http://influxdb:8086 Find more about configuring Kapacitor [here](https://docs.influxdata.com/kapacitor/latest/introduction/installation/) +#### Running as root + +Starting in v1.7.4, Kapacitor no longer run as the root user by default. If a user wants to revert this change they can set `KAPACITOR_AS_ROOT=true` as an environment variable. + ### Exposed Ports - 9092 TCP -- HTTP API endpoint From 9353ce62bc413b00ee44e63752bf1f9c3a7561e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Jun 2024 12:19:52 -0700 Subject: [PATCH 1237/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- node/README.md | 6 ------ 5 files changed, 11 insertions(+), 17 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6f97915d43f8..1fdfb7430dc5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`26.1.3-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/cli/Dockerfile) -- [`26.1.3-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.3-dind-alpine3.20`, `26.1.3`, `26.1`, `26`, `latest`, `26.1.3-alpine3.20`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind/Dockerfile) -- [`26.1.3-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/087521eb6c8c162b4ea538a0861df40ef0114059/26/dind-rootless/Dockerfile) -- [`26.1.3-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.3-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/cli/Dockerfile) +- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) +- [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -46,9 +46,9 @@ WARNING: ## Shared Tags -- `26.1.3-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/234c02c685a0b966e6aae965924a70f29b216fe1/26/windows/windowsservercore-1809/Dockerfile) +- `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-1809/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 328e2a17d377..8fdd67717066 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/elasticsearch/Dockerfile) +- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/elasticsearch/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index b7b5d884b87b..554b0ffcd92a 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/kibana/Dockerfile) +- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/kibana/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index ca37e60b6154..189efc0e9341 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.4`](https://github.com/elastic/dockerfiles/blob/15cf539642c8466777c84a3dd969e9678f31605c/logstash/Dockerfile) +- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/logstash/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 376f41f0f44a..89ce7ab42f30 100644 --- a/node/README.md +++ b/node/README.md @@ -30,12 +30,6 @@ WARNING: - [`22-bookworm-slim`, `22-slim`, `22.2-bookworm-slim`, `22.2-slim`, `22.2.0-bookworm-slim`, `22.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm-slim/Dockerfile) - [`22-bullseye`, `22.2-bullseye`, `22.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye/Dockerfile) - [`22-bullseye-slim`, `22.2-bullseye-slim`, `22.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye-slim/Dockerfile) -- [`21-alpine3.19`, `21.7-alpine3.19`, `21.7.3-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/21/alpine3.19/Dockerfile) -- [`21-alpine`, `21-alpine3.20`, `21.7-alpine`, `21.7-alpine3.20`, `21.7.3-alpine`, `21.7.3-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/21/alpine3.20/Dockerfile) -- [`21`, `21-bookworm`, `21.7`, `21.7-bookworm`, `21.7.3`, `21.7.3-bookworm`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm/Dockerfile) -- [`21-bookworm-slim`, `21-slim`, `21.7-bookworm-slim`, `21.7-slim`, `21.7.3-bookworm-slim`, `21.7.3-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bookworm-slim/Dockerfile) -- [`21-bullseye`, `21.7-bullseye`, `21.7.3-bullseye`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye/Dockerfile) -- [`21-bullseye-slim`, `21.7-bullseye-slim`, `21.7.3-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17bf0838eaf9d32ba6280599e51fac5269d0dfb4/21/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.19/Dockerfile) - [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.20/Dockerfile) - [`20`, `20-bookworm`, `20.14`, `20.14-bookworm`, `20.14.0`, `20.14.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm/Dockerfile) From 3b6c5e4fa76833e20c64d859a0541a209aeda452 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Jun 2024 17:16:18 -0700 Subject: [PATCH 1238/2686] Run update.sh --- drupal/README.md | 48 ++++++++++---------- julia/README.md | 26 +++++------ mongo/README.md | 45 ++++++++++++------- php/README.md | 112 +++++++++++++++++++++++------------------------ 4 files changed, 123 insertions(+), 108 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 03605284a764..37b614323c46 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -36,18 +36,18 @@ WARNING: - [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.3.0-beta1-php8.3-apache-bookworm`, `10.3-rc-php8.3-apache-bookworm`, `10.3.0-beta1-php8.3-apache`, `10.3-rc-php8.3-apache`, `10.3.0-beta1-php8.3`, `10.3-rc-php8.3`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/apache-bookworm/Dockerfile) -- [`10.3.0-beta1-php8.3-fpm-bookworm`, `10.3-rc-php8.3-fpm-bookworm`, `10.3.0-beta1-php8.3-fpm`, `10.3-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.0-beta1-php8.3-apache-bullseye`, `10.3-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/apache-bullseye/Dockerfile) -- [`10.3.0-beta1-php8.3-fpm-bullseye`, `10.3-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.0-beta1-php8.3-fpm-alpine3.20`, `10.3-rc-php8.3-fpm-alpine3.20`, `10.3.0-beta1-php8.3-fpm-alpine`, `10.3-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.0-beta1-php8.3-fpm-alpine3.19`, `10.3-rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.0-beta1-php8.2-apache-bookworm`, `10.3-rc-php8.2-apache-bookworm`, `10.3.0-beta1-php8.2-apache`, `10.3-rc-php8.2-apache`, `10.3.0-beta1-php8.2`, `10.3-rc-php8.2`, `10.3.0-beta1-apache-bookworm`, `10.3-rc-apache-bookworm`, `10.3.0-beta1-apache`, `10.3-rc-apache`, `10.3.0-beta1`, `10.3-rc`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/apache-bookworm/Dockerfile) -- [`10.3.0-beta1-php8.2-fpm-bookworm`, `10.3-rc-php8.2-fpm-bookworm`, `10.3.0-beta1-php8.2-fpm`, `10.3-rc-php8.2-fpm`, `10.3.0-beta1-fpm-bookworm`, `10.3-rc-fpm-bookworm`, `10.3.0-beta1-fpm`, `10.3-rc-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.0-beta1-php8.2-apache-bullseye`, `10.3-rc-php8.2-apache-bullseye`, `10.3.0-beta1-apache-bullseye`, `10.3-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/apache-bullseye/Dockerfile) -- [`10.3.0-beta1-php8.2-fpm-bullseye`, `10.3-rc-php8.2-fpm-bullseye`, `10.3.0-beta1-fpm-bullseye`, `10.3-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.0-beta1-php8.2-fpm-alpine3.20`, `10.3-rc-php8.2-fpm-alpine3.20`, `10.3.0-beta1-php8.2-fpm-alpine`, `10.3-rc-php8.2-fpm-alpine`, `10.3.0-beta1-fpm-alpine3.20`, `10.3-rc-fpm-alpine3.20`, `10.3.0-beta1-fpm-alpine`, `10.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.0-beta1-php8.2-fpm-alpine3.19`, `10.3-rc-php8.2-fpm-alpine3.19`, `10.3.0-beta1-fpm-alpine3.19`, `10.3-rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/10.3-rc/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.0-rc1-php8.3-apache-bookworm`, `10.3-rc-php8.3-apache-bookworm`, `10.3.0-rc1-php8.3-apache`, `10.3-rc-php8.3-apache`, `10.3.0-rc1-php8.3`, `10.3-rc-php8.3`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/apache-bookworm/Dockerfile) +- [`10.3.0-rc1-php8.3-fpm-bookworm`, `10.3-rc-php8.3-fpm-bookworm`, `10.3.0-rc1-php8.3-fpm`, `10.3-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.0-rc1-php8.3-apache-bullseye`, `10.3-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/apache-bullseye/Dockerfile) +- [`10.3.0-rc1-php8.3-fpm-bullseye`, `10.3-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.0-rc1-php8.3-fpm-alpine3.20`, `10.3-rc-php8.3-fpm-alpine3.20`, `10.3.0-rc1-php8.3-fpm-alpine`, `10.3-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.0-rc1-php8.3-fpm-alpine3.19`, `10.3-rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.0-rc1-php8.2-apache-bookworm`, `10.3-rc-php8.2-apache-bookworm`, `10.3.0-rc1-php8.2-apache`, `10.3-rc-php8.2-apache`, `10.3.0-rc1-php8.2`, `10.3-rc-php8.2`, `10.3.0-rc1-apache-bookworm`, `10.3-rc-apache-bookworm`, `10.3.0-rc1-apache`, `10.3-rc-apache`, `10.3.0-rc1`, `10.3-rc`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/apache-bookworm/Dockerfile) +- [`10.3.0-rc1-php8.2-fpm-bookworm`, `10.3-rc-php8.2-fpm-bookworm`, `10.3.0-rc1-php8.2-fpm`, `10.3-rc-php8.2-fpm`, `10.3.0-rc1-fpm-bookworm`, `10.3-rc-fpm-bookworm`, `10.3.0-rc1-fpm`, `10.3-rc-fpm`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.0-rc1-php8.2-apache-bullseye`, `10.3-rc-php8.2-apache-bullseye`, `10.3.0-rc1-apache-bullseye`, `10.3-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/apache-bullseye/Dockerfile) +- [`10.3.0-rc1-php8.2-fpm-bullseye`, `10.3-rc-php8.2-fpm-bullseye`, `10.3.0-rc1-fpm-bullseye`, `10.3-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.0-rc1-php8.2-fpm-alpine3.20`, `10.3-rc-php8.2-fpm-alpine3.20`, `10.3.0-rc1-php8.2-fpm-alpine`, `10.3-rc-php8.2-fpm-alpine`, `10.3.0-rc1-fpm-alpine3.20`, `10.3-rc-fpm-alpine3.20`, `10.3.0-rc1-fpm-alpine`, `10.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.0-rc1-php8.2-fpm-alpine3.19`, `10.3-rc-php8.2-fpm-alpine3.19`, `10.3.0-rc1-fpm-alpine3.19`, `10.3-rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.6-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.6-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.6-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bookworm/Dockerfile) - [`10.2.6-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.6-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bookworm/Dockerfile) - [`10.2.6-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bullseye/Dockerfile) @@ -72,18 +72,18 @@ WARNING: - [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bullseye/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.20`, `10.1-php8.1-fpm-alpine3.20`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.1/php8.1/fpm-alpine3.20/Dockerfile) - [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) -- [`7.100-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.100-php8.2-apache`, `7-php8.2-apache`, `7.100-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bookworm/Dockerfile) -- [`7.100-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.100-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.100-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/apache-bullseye/Dockerfile) -- [`7.100-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.100-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.100-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/7/php8.2/fpm-alpine3.20/Dockerfile) -- [`7.100-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.100-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.100-php8.1-apache`, `7-php8.1-apache`, `7.100-php8.1`, `7-php8.1`, `7.100-apache-bookworm`, `7-apache-bookworm`, `7.100-apache`, `7-apache`, `7.100`, `7`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bookworm/Dockerfile) -- [`7.100-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.100-php8.1-fpm`, `7-php8.1-fpm`, `7.100-fpm-bookworm`, `7-fpm-bookworm`, `7.100-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.100-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.100-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/apache-bullseye/Dockerfile) -- [`7.100-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.100-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.100-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.100-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.100-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.100-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/7/php8.1/fpm-alpine3.20/Dockerfile) -- [`7.100-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.100-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/dbbdd35cb8c89fdc5e25ea865aa56375c2356238/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) +- [`7.101-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.101-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.101-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bullseye/Dockerfile) +- [`7.101-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.101-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.101-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.20/Dockerfile) +- [`7.101-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.101-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.101-php8.1-apache`, `7-php8.1-apache`, `7.101-php8.1`, `7-php8.1`, `7.101-apache-bookworm`, `7-apache-bookworm`, `7.101-apache`, `7-apache`, `7.101`, `7`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bookworm/Dockerfile) +- [`7.101-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.101-php8.1-fpm`, `7-php8.1-fpm`, `7.101-fpm-bookworm`, `7-fpm-bookworm`, `7.101-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.101-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.101-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bullseye/Dockerfile) +- [`7.101-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.101-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.101-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.101-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.101-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.101-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.20/Dockerfile) +- [`7.101-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.101-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 908bbd78ddd0..7dfb3920143d 100644 --- a/julia/README.md +++ b/julia/README.md @@ -32,12 +32,12 @@ WARNING: - [`1.11.0-beta2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bullseye/Dockerfile) - [`1.11.0-beta2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.10.3-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) -- [`1.10.3-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bullseye/Dockerfile) -- [`1.10.3-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.3-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/alpine3.20/Dockerfile) -- [`1.10.3-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/alpine3.19/Dockerfile) -- [`1.10.3-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.3-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) +- [`1.10.4-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bullseye/Dockerfile) +- [`1.10.4-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.4-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.20/Dockerfile) +- [`1.10.4-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.19/Dockerfile) +- [`1.10.4-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.4-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bullseye/Dockerfile) - [`1.6.7-alpine3.20`, `1.6-alpine3.20`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.20/Dockerfile) @@ -54,13 +54,13 @@ WARNING: - `1.11.0-beta2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - [`1.11.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.3`, `1.10`, `1`, `latest`: - - [`1.10.3-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.10/bookworm/Dockerfile) - - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.3-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.10.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/92a88f48304ba44b13da468ef8a35cb503f9a2dd/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.4`, `1.10`, `1`, `latest`: + - [`1.10.4-bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) + - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) +- `1.10.4-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index b190da5ee939..6bac119089ad 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,16 +28,21 @@ WARNING: ## Simple Tags -- [`8.0.0-rc6-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/Dockerfile) -- [`8.0.0-rc6-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc6-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc6-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc6-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc7-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/Dockerfile) +- [`8.0.0-rc7-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc7-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc7-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc7-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.11-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.11-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.16-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) +- [`6.0.16-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.16-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.16-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.16-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +61,16 @@ WARNING: ## Shared Tags -- `8.0.0-rc6`, `8.0-rc`: - - [`8.0.0-rc6-jammy`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/Dockerfile) - - [`8.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc6-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc6-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/5d41e404dc9ddd05ca88e8dd21b61396e7305447/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc7`, `8.0-rc`: + - [`8.0.0-rc7-jammy`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/Dockerfile) + - [`8.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc7-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc7-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.11`, `7.0`, `7`, `latest`: - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -76,6 +81,16 @@ WARNING: - `7.0.11-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - [`7.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.16-rc0`, `6.0-rc`: + - [`6.0.16-rc0-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) + - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.16-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.16-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.16-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- `6.0.16-rc0-nanoserver`, `6.0-rc-nanoserver`: + - [`6.0.16-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.16-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.15`, `6.0`, `6`: - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index af8f64bee4f7..e0d6ff781802 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,62 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.8RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.8RC1-bookworm`, `8.3-rc-bookworm`, `8.3.8RC1-cli`, `8.3-rc-cli`, `8.3.8RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.8RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.8RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.8RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.8RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.8RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.8RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.8RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.8RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.8RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.8RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.8RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.8RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.8RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.8RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.8RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/cli/Dockerfile) -- [`8.3.8RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.8RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/fpm/Dockerfile) -- [`8.3.8RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.8RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.20/zts/Dockerfile) -- [`8.3.8RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.8RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.8RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.8RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/04bf8d212e841e3e4b05e51882660ab9773f479f/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.7-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.7-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.7-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.7`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/cli/Dockerfile) -- [`8.3.7-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.7-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/apache/Dockerfile) -- [`8.3.7-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.7-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/fpm/Dockerfile) -- [`8.3.7-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.7-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bookworm/zts/Dockerfile) -- [`8.3.7-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.7-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/cli/Dockerfile) -- [`8.3.7-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/apache/Dockerfile) -- [`8.3.7-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/fpm/Dockerfile) -- [`8.3.7-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/bullseye/zts/Dockerfile) -- [`8.3.7-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.7-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/d4474c4041a17923f13a26a2595c786a98de9308/8.3/alpine3.19/zts/Dockerfile) -- [`8.2.19-cli-bookworm`, `8.2-cli-bookworm`, `8.2.19-bookworm`, `8.2-bookworm`, `8.2.19-cli`, `8.2-cli`, `8.2.19`, `8.2`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/cli/Dockerfile) -- [`8.2.19-apache-bookworm`, `8.2-apache-bookworm`, `8.2.19-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/apache/Dockerfile) -- [`8.2.19-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.19-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/fpm/Dockerfile) -- [`8.2.19-zts-bookworm`, `8.2-zts-bookworm`, `8.2.19-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bookworm/zts/Dockerfile) -- [`8.2.19-cli-bullseye`, `8.2-cli-bullseye`, `8.2.19-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/cli/Dockerfile) -- [`8.2.19-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/apache/Dockerfile) -- [`8.2.19-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/fpm/Dockerfile) -- [`8.2.19-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/bullseye/zts/Dockerfile) -- [`8.2.19-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.19-alpine3.20`, `8.2-alpine3.20`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.2/alpine3.20/zts/Dockerfile) -- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/d4c03b28765fc6fd51132e123e50cab0fae60e98/8.2/alpine3.19/zts/Dockerfile) -- [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/cli/Dockerfile) -- [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/apache/Dockerfile) -- [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/fpm/Dockerfile) -- [`8.1.28-zts-bookworm`, `8.1-zts-bookworm`, `8.1.28-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bookworm/zts/Dockerfile) -- [`8.1.28-cli-bullseye`, `8.1-cli-bullseye`, `8.1.28-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/cli/Dockerfile) -- [`8.1.28-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/apache/Dockerfile) -- [`8.1.28-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/fpm/Dockerfile) -- [`8.1.28-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/bullseye/zts/Dockerfile) -- [`8.1.28-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.28-alpine3.20`, `8.1-alpine3.20`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/18788bf5bd885d9debf0602ea0c28cd10cb94359/8.1/alpine3.20/zts/Dockerfile) -- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/feeb015067e78248ddf4f8dad6b1f2bc2f7ebcdb/8.1/alpine3.19/zts/Dockerfile) +- [`8.3.8RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.8RC1-bookworm`, `8.3-rc-bookworm`, `8.3.8RC1-cli`, `8.3-rc-cli`, `8.3.8RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.8RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.8RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.8RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.8RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.8RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.8RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.8RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.8RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.8RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.8RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.8RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.8RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.8RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.8RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.8RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.8RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.8RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.8RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.8RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.8RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.8RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.8RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.8RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.7-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.7-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.7-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.7`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/cli/Dockerfile) +- [`8.3.7-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.7-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/apache/Dockerfile) +- [`8.3.7-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.7-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/fpm/Dockerfile) +- [`8.3.7-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.7-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/zts/Dockerfile) +- [`8.3.7-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.7-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/cli/Dockerfile) +- [`8.3.7-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/apache/Dockerfile) +- [`8.3.7-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/fpm/Dockerfile) +- [`8.3.7-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/zts/Dockerfile) +- [`8.3.7-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.7-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.19-cli-bookworm`, `8.2-cli-bookworm`, `8.2.19-bookworm`, `8.2-bookworm`, `8.2.19-cli`, `8.2-cli`, `8.2.19`, `8.2`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/cli/Dockerfile) +- [`8.2.19-apache-bookworm`, `8.2-apache-bookworm`, `8.2.19-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/apache/Dockerfile) +- [`8.2.19-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.19-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/fpm/Dockerfile) +- [`8.2.19-zts-bookworm`, `8.2-zts-bookworm`, `8.2.19-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/zts/Dockerfile) +- [`8.2.19-cli-bullseye`, `8.2-cli-bullseye`, `8.2.19-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/cli/Dockerfile) +- [`8.2.19-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/apache/Dockerfile) +- [`8.2.19-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/fpm/Dockerfile) +- [`8.2.19-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/zts/Dockerfile) +- [`8.2.19-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.19-alpine3.20`, `8.2-alpine3.20`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/zts/Dockerfile) +- [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/cli/Dockerfile) +- [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/apache/Dockerfile) +- [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/fpm/Dockerfile) +- [`8.1.28-zts-bookworm`, `8.1-zts-bookworm`, `8.1.28-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/zts/Dockerfile) +- [`8.1.28-cli-bullseye`, `8.1-cli-bullseye`, `8.1.28-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/cli/Dockerfile) +- [`8.1.28-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/apache/Dockerfile) +- [`8.1.28-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/fpm/Dockerfile) +- [`8.1.28-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/zts/Dockerfile) +- [`8.1.28-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.28-alpine3.20`, `8.1-alpine3.20`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) From 0a0647b6663ed4662f949ecf0bf74d93186121d2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jun 2024 12:10:15 -0700 Subject: [PATCH 1239/2686] Run update.sh --- php/README.md | 98 ++++++++++++++++++++++----------------------------- 1 file changed, 42 insertions(+), 56 deletions(-) diff --git a/php/README.md b/php/README.md index e0d6ff781802..a1d01c8e5041 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,48 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.8RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.8RC1-bookworm`, `8.3-rc-bookworm`, `8.3.8RC1-cli`, `8.3-rc-cli`, `8.3.8RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.8RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.8RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.8RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.8RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.8RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.8RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.8RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.8RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.8RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.8RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.8RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.8RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.8RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.8RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.8RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/cli/Dockerfile) -- [`8.3.8RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.8RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/fpm/Dockerfile) -- [`8.3.8RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.8RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.20/zts/Dockerfile) -- [`8.3.8RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.8RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.8RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.8RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.7-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.7-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.7-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.7`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/cli/Dockerfile) -- [`8.3.7-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.7-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/apache/Dockerfile) -- [`8.3.7-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.7-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/fpm/Dockerfile) -- [`8.3.7-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.7-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bookworm/zts/Dockerfile) -- [`8.3.7-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.7-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/cli/Dockerfile) -- [`8.3.7-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/apache/Dockerfile) -- [`8.3.7-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/fpm/Dockerfile) -- [`8.3.7-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/bullseye/zts/Dockerfile) -- [`8.3.7-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.7-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.7-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.7-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.7-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.7-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.7-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.7-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.7-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.7-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.3/alpine3.19/zts/Dockerfile) -- [`8.2.19-cli-bookworm`, `8.2-cli-bookworm`, `8.2.19-bookworm`, `8.2-bookworm`, `8.2.19-cli`, `8.2-cli`, `8.2.19`, `8.2`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/cli/Dockerfile) -- [`8.2.19-apache-bookworm`, `8.2-apache-bookworm`, `8.2.19-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/apache/Dockerfile) -- [`8.2.19-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.19-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/fpm/Dockerfile) -- [`8.2.19-zts-bookworm`, `8.2-zts-bookworm`, `8.2.19-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bookworm/zts/Dockerfile) -- [`8.2.19-cli-bullseye`, `8.2-cli-bullseye`, `8.2.19-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/cli/Dockerfile) -- [`8.2.19-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/apache/Dockerfile) -- [`8.2.19-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/fpm/Dockerfile) -- [`8.2.19-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/bullseye/zts/Dockerfile) -- [`8.2.19-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.19-alpine3.20`, `8.2-alpine3.20`, `8.2.19-cli-alpine`, `8.2-cli-alpine`, `8.2.19-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.19-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.19-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.20/zts/Dockerfile) -- [`8.2.19-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.19-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.19-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.19-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.2/alpine3.19/zts/Dockerfile) -- [`8.1.28-cli-bookworm`, `8.1-cli-bookworm`, `8.1.28-bookworm`, `8.1-bookworm`, `8.1.28-cli`, `8.1-cli`, `8.1.28`, `8.1`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/cli/Dockerfile) -- [`8.1.28-apache-bookworm`, `8.1-apache-bookworm`, `8.1.28-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/apache/Dockerfile) -- [`8.1.28-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.28-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/fpm/Dockerfile) -- [`8.1.28-zts-bookworm`, `8.1-zts-bookworm`, `8.1.28-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bookworm/zts/Dockerfile) -- [`8.1.28-cli-bullseye`, `8.1-cli-bullseye`, `8.1.28-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/cli/Dockerfile) -- [`8.1.28-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/apache/Dockerfile) -- [`8.1.28-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/fpm/Dockerfile) -- [`8.1.28-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/bullseye/zts/Dockerfile) -- [`8.1.28-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.28-alpine3.20`, `8.1-alpine3.20`, `8.1.28-cli-alpine`, `8.1-cli-alpine`, `8.1.28-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.28-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.28-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.20/zts/Dockerfile) -- [`8.1.28-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.28-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/cli/Dockerfile) -- [`8.1.28-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/fpm/Dockerfile) -- [`8.1.28-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/14788c98683cef2ef48fb98977c0807bb07aece5/8.1/alpine3.19/zts/Dockerfile) +- [`8.3.8-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.8-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.8-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.8`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/cli/Dockerfile) +- [`8.3.8-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.8-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/apache/Dockerfile) +- [`8.3.8-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.8-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/fpm/Dockerfile) +- [`8.3.8-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.8-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/zts/Dockerfile) +- [`8.3.8-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.8-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/cli/Dockerfile) +- [`8.3.8-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/apache/Dockerfile) +- [`8.3.8-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/fpm/Dockerfile) +- [`8.3.8-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/zts/Dockerfile) +- [`8.3.8-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.8-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.8-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.8-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.8-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.8-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.8-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.8-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.8-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.8-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.8-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.8-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.20-cli-bookworm`, `8.2-cli-bookworm`, `8.2.20-bookworm`, `8.2-bookworm`, `8.2.20-cli`, `8.2-cli`, `8.2.20`, `8.2`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/cli/Dockerfile) +- [`8.2.20-apache-bookworm`, `8.2-apache-bookworm`, `8.2.20-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/apache/Dockerfile) +- [`8.2.20-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.20-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/fpm/Dockerfile) +- [`8.2.20-zts-bookworm`, `8.2-zts-bookworm`, `8.2.20-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/zts/Dockerfile) +- [`8.2.20-cli-bullseye`, `8.2-cli-bullseye`, `8.2.20-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/cli/Dockerfile) +- [`8.2.20-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/apache/Dockerfile) +- [`8.2.20-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/fpm/Dockerfile) +- [`8.2.20-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/zts/Dockerfile) +- [`8.2.20-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.20-alpine3.20`, `8.2-alpine3.20`, `8.2.20-cli-alpine`, `8.2-cli-alpine`, `8.2.20-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.20-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.20-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.20-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.20-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.20-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.20-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.20-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.20-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/zts/Dockerfile) +- [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) +- [`8.1.29-apache-bookworm`, `8.1-apache-bookworm`, `8.1.29-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/apache/Dockerfile) +- [`8.1.29-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.29-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/fpm/Dockerfile) +- [`8.1.29-zts-bookworm`, `8.1-zts-bookworm`, `8.1.29-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/zts/Dockerfile) +- [`8.1.29-cli-bullseye`, `8.1-cli-bullseye`, `8.1.29-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/cli/Dockerfile) +- [`8.1.29-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/apache/Dockerfile) +- [`8.1.29-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/fpm/Dockerfile) +- [`8.1.29-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/zts/Dockerfile) +- [`8.1.29-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.29-alpine3.20`, `8.1-alpine3.20`, `8.1.29-cli-alpine`, `8.1-cli-alpine`, `8.1.29-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/cli/Dockerfile) +- [`8.1.29-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.29-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/fpm/Dockerfile) +- [`8.1.29-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.29-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.29-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.29-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.29-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.29-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) From 0e42ee108b46e1ba6333e9eb44201b8f26c4032d Mon Sep 17 00:00:00 2001 From: David Maier <60782329+dmaier-redislabs@users.noreply.github.com> Date: Thu, 6 Jun 2024 22:52:07 +0200 Subject: [PATCH 1240/2686] Update the Docker Hub page of Redis (#2448) * Added the new Redis logo * Updated the license file * Update content.md --- redis/README-short.txt | 2 +- redis/content.md | 29 +++++++++++++++-------------- redis/license.md | 4 +++- redis/logo.png | Bin 13754 -> 6570 bytes 4 files changed, 19 insertions(+), 16 deletions(-) diff --git a/redis/README-short.txt b/redis/README-short.txt index 8d7defc5af63..0548c88f5e46 100644 --- a/redis/README-short.txt +++ b/redis/README-short.txt @@ -1 +1 @@ -Redis is an open source key-value store that functions as a data structure server. +Redis is the world’s fastest data platform for caching, vector search, and NoSQL databases. diff --git a/redis/content.md b/redis/content.md index f251509ff5ee..afcbf2fd9003 100644 --- a/redis/content.md +++ b/redis/content.md @@ -1,8 +1,8 @@ # What is Redis? -Redis is an open-source, networked, in-memory, key-value data store with optional durability. It is written in ANSI C. The development of Redis is sponsored by Redis Labs today; before that, it was sponsored by Pivotal and VMware. According to the monthly ranking by DB-Engines.com, Redis is the most popular key-value store. The name Redis means REmote DIctionary Server. +Redis is the world’s fastest data platform. It provides cloud and on-prem solutions for caching, vector search, and NoSQL databases that seamlessly fit into any tech stack—making it simple for digital customers to build, scale, and deploy the fast apps our world runs on. -> [wikipedia.org/wiki/Redis](https://en.wikipedia.org/wiki/Redis) +> [redis.io](https://redis.io) %%LOGO%% @@ -10,19 +10,19 @@ Redis is an open-source, networked, in-memory, key-value data store with optiona For the ease of accessing Redis from other containers via Docker networking, the "Protected mode" is turned off by default. This means that if you expose the port outside of your host (e.g., via `-p` on `docker run`), it will be open without a password to anyone. It is **highly** recommended to set a password (by supplying a config file) if you plan on exposing your Redis instance to the internet. For further information, see the following links about Redis security: -- [Redis documentation on security](https://redis.io/topics/security) -- [Protected mode](https://redis.io/topics/security#protected-mode) +- [Redis documentation on security](https://redis.io/docs/latest/operate/oss_and_stack/management/security/) +- [Protected mode](https://redis.io/docs/latest/operate/oss_and_stack/management/security/#protected-mode) - [A few things about Redis security by antirez](http://antirez.com/news/96) # How to use this image -## start a redis instance +## Start a redis instance ```console $ docker run --name some-redis -d %%IMAGE%% ``` -## start with persistent storage +## Start with persistent storage ```console $ docker run --name some-redis -d %%IMAGE%% redis-server --save 60 1 --loglevel warning @@ -30,15 +30,15 @@ $ docker run --name some-redis -d %%IMAGE%% redis-server --save 60 1 --loglevel There are several different persistence strategies to choose from. This one will save a snapshot of the DB every 60 seconds if at least 1 write operation was performed (it will also lead to more logs, so the `loglevel` option may be desirable). If persistence is enabled, data is stored in the `VOLUME /data`, which can be used with `--volumes-from some-volume-container` or `-v /docker/host/dir:/data` (see [docs.docker volumes](https://docs.docker.com/engine/tutorials/dockervolumes/)). -For more about Redis Persistence, see [http://redis.io/topics/persistence](http://redis.io/topics/persistence). +For more about Redis persistence, see [the official Redis documentation](https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/). -## connecting via `redis-cli` +## Connecting via `redis-cli` ```console $ docker run -it --network some-network --rm %%IMAGE%% redis-cli -h some-redis ``` -## Additionally, If you want to use your own redis.conf ... +## Additionally, if you want to use your own redis.conf ... You can create your own Dockerfile that adds a redis.conf from the context into /data/, like so. @@ -62,10 +62,11 @@ The mapped directory should be writable, as depending on the configuration and m This variant is *not* a 32bit image (and will not run on 32bit hardware), but includes Redis compiled as a 32bit binary, especially for users who need the decreased memory requirements associated with that. See ["Using 32 bit instances"](http://redis.io/topics/memory-optimization#using-32-bit-instances) in the Redis documentation for more information. -# Redis Modules +# Redis Stack and modules -You can find the list of modules for Redis on [redis.io](https://redis.io/modules) or on [redismodules.com](http://redismodules.com). A few of the standard modules can be found here: +Modules extend Redis with extra capabilities. Redis Stack already comes with the capabilities (search and query, JSON support, and more) that are developed by Redis (the company). The Docker images are available here: -- [RediSearch](https://hub.docker.com/r/redislabs/redisearch/): Search and Query with Indexing on Redis -- [ReJSON](https://hub.docker.com/r/redislabs/rejson/): Extended JSON processing for Redis -- [ReBloom](https://hub.docker.com/r/redislabs/rebloom/): Bloom Filters data type for membership/existence search on Redis +- [Redis Stack](https://hub.docker.com/r/redis/redis-stack): Redis plus extra capabilities and Redis Insight (a GUI for Redis) +- [Redis Stack Server](https://hub.docker.com/r/redis/redis-stack-server): Redis plus extra capabilities + +You can find the list of modules for Redis on [redis.io](https://redis.io/community/redis-modules-hub/). diff --git a/redis/license.md b/redis/license.md index 74cc4cc6ce3e..2422f9d132ce 100644 --- a/redis/license.md +++ b/redis/license.md @@ -1 +1,3 @@ -View [license information](http://redis.io/topics/license) for the software contained in this image. +Starting on March 20th, 2024, Redis follows a dual-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/) or the [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/). Older versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause). + +Please also view the [Redis License Overview](https://redis.io/legal/licenses/) and the [Redis Trademark Policy](https://redis.io/legal/trademark-policy/). diff --git a/redis/logo.png b/redis/logo.png index 36e37ca033cef0122a0338dd6069e8dc19bc1f9f..67e296119578a7114ba3fd600a00049bc3cd3e31 100644 GIT binary patch literal 6570 zcmV;b8CB+qP)r4=a9EtzRkXfrdZMOg%8d59DQTWCtLG+}1$d4JrbS!TQU&V-8Q z_h0V)mXqY3d%y2&pQtLMj8ah|fy;my7+gbJ@{ye_PC3Y^f{ap8BEgG6uN`zHj_5hG zr(W1;GL?a`vjrICUx;wvykW`#5Ju%GqW%jJk)0w}8H|2GMyU+p;8}>?0u)n%hwn*9u-A4T{G$bXWea32iq0`_q| zhG90**0ri=o96nDVj3x+7nnnL`WLKUpLRW`Ln@;njg8}}$sU7nG7!Sa=e9DWK+YtV zc=~;w_urFHXcxRaj{%32H;|l4EOAGXc_!lR=>$GA=<1&_%yUaBR)r`}K_Y=qgPad~ zGBCDcQn@3I=*6_BZrsUo{A<(N>S6PS2NC|W%#m&;p8BtXU;er}AGN;aKvSN(Cdjp9 zsxPObBU7dvMRDf`3Hw7t0!x8sK+k07D+hoNl^X~L<}q7F{W~K?_bYQNpd7y_svH2d z-mA#38~_IBC3v?##>~J+%9N!j&b}a#;30@!gAy4zkt%`CCzhJEv!(c#BNF%qaBG>P z%p;yUtEh5>gEJ6aMsc4?KN}IFnfA^n%9JZF_7ue0cwY;g$Opyyu6&Ppa=2G_6t_g{ z>ri72P~(0Oolj%eH~68N1)GHHCn3hOIJ0)Xg=kabzP!7$Zq?6y`*w9Hyj3>=5me?x$0Mf!U~c#_O8HYY-e*Q z5&sAMci6eC^$z=W$_@jfFULaF_p=0@M zQuvo&wyYQUO9kiJitsBGCmCjs66?C2Sn>g4$#con?1S*%K#zkl3_M1&Ls|d5X=$m( zFc$%nT#nF<7&Bc3mUgUr1CJaI+GeA5FD751qvIdWMYKnWw}U)W_6)*0M8C$E^oLP- z4B-fyJ$q2|%pvyjj*cGMlRriX1NI|94V~sp=znwG>%Iy&)Mf7;4C83pI-Pt4hO#2D znRwSs(2Ie>0g9^MVP*37uII6Vx5WKU;3$`4KMv*(Y42JJ^gDlU!|oEp_@QnAYI)>M~9Oy-9HDBKp5cy zm%X#VNwjr7R<<10i*YXDhDQ-|0Yl@lzzS8lx$JpLP~1`26r9=@vFU`T5iTQ^dSu7j z-x_BXFwWKp%9CtKA6hhOQ$%R;{{i738zXKamMk;O9yqdYEZe;&fXoEG2t`ec+d&th zTthtdY}s=cqjgFZ-Q$CZOh@%lU{8=;L3=?qfF@A$9^wUFIQ>{ox~G7>UCE((uI-05 z%(p>{gL1h(2_ItMe-@)J*#+hHE+PA3W=3hjZ?w^4nXMuS*$ixCI zp9Sv5Be$?3kz)iZ9cmH@+ywkr3DNH-qvz9+dUeRv(A2%~dJ@1#OY|Q=xsG`9B3o@E z!BhGinWaaKr#y}y(AFtcbno&Vkjt?9^()M5V#zDY9K)in&d0>6ix9mG=YgVcVCWIF zr5+!0wX8TRd5Fg3F(n;=0HII~p6zXj95(2xiSTPQeIc>+Z@ZIW5YdK%G0g=wR~P+k z1}-6%oHzJlX%n8wuM6H2Ud5z^Sn{|W-)R*t5? z=jk5*B*@j2uN(kBAnK2nJxaLYP-=ZoAo^q6MN#jCDa&bU_}IXh^`8WO>P{eif=uKyoxrCY^(&5`GN-K2 zmuTQ@#9Tw}hSez_LbCG_5$fuEi03!BdI`wu80L|-&8%wz*Q0t|krtCtRuS=^?pzii z;y)JUHp&aAJd?Hlx&1%ca{?L0_Xqvdjp~WSQeVxx4xB9pTgKl`;aL9s2zL-q#q75i z0n_e!`8ivyT3bCt0=HrB*5td`h z=ZL57E!cK#{dFi`aVXH=F->RQ&`97okOOSBRY{a=(>kS!EwA1Se8Z6(PBBeq%dB8< z47F7cA})jYiXmJF`dxQ@^(^9@zq8dg5^P4qNv5Zu+)T6o3--HYehiFpFh?m7Zltks zd?`Q30PTs=F*%Xo#a0TgLsZWv-u0I4_R|{=z@xvkKY_%H-fn5BCOv*J=nVT~xAifX7R=w5)k2Ivl?g z`!F_hM&enI|N@|Vr8PR39+@+L%REJtST%ckJvO5 zheEr6Z^g(dhig`ot+r=nY;M>C!?Ogd=9yDWFqhhEY8=5xtydYYK z@({JYH;MSyf;<6iMl}meLijW)0SrEZb2r;NcqzOTiv%u5)t$uzdJt~LkXu-hc+na! zcn0XNiuO`19^V!UdGYq%hf^cRP~wQ*LDqN@vsE%wLIPeF!+}$=Vy4`%2{n##<_iPFLHdKpT-v%;5lgP7cHb7@ z{yeQ-MAE0Ds_woZq0laP&1JyHO19lOq*3EE5}mo3Y~lJzU_5}h@j~mR#FIZMc)N8< z6^#E}k^Y54IU@C60%LB$`^C9}cixR7{f zGUsY2=p4>*CwRFIB!Zw$WWY>5@FzXmwjQJ;K>tVZ=D9NLmh@8 z>#5yZJev8)y0PGW0P_6tEx9gX)w*2kRr5jP(6NsI`#Bejbxhp)En96(zTslG^*q~b z6l`emPr#Jrz{efWVDScOo?&6+#!*WLaXBoaIy#9q9ANz8*$ z^EBX3l^Kt1D5num=2woUU=Y+z_SrVX{A$s2DVnG5$97+Po(NS7;b+8?*XLYsZS{~H zdk^q=7jkvu;RIXfWi&S&R#3LWn4q&tRwD_8YDmjs-2D!H^YAs|slU7I-#3c9QM%C% z4sbnLjTi3IUkAEGVXOG7F*eRZ}NY~FC2>$+nq7Z&Yd6sn;k@ft_gHL%@x4VHP+ z$&#-Nm7fq#EH2oh`Ji!l$1Vo;av`H4`VL|LXXx>6z~@sWy$^=@2}Eb&l`jMNmsDUP zGMiZPO4^6*J4A#?{mt%!4`n^ml7(}01{3kmLY+qH>XwrJArT?s|E2rvLjay9Q&V^z z5#dXX6K$0ZGCke)tyoN8dT=se%UV|aft*o)5T@}UY9>PtFZrSE5WG@RL?G0)MB<6gzN93H*-8u|53E3 ziaS>|yA3BNUWk4Un+j4mHs7oQ|iMylxAT4Krkfp}s6o~W@uhEBjR-UHo;XX0P_ zYIT*SwbeuShI@eHD=2R%G6=Wh^hqHuOvheaU5}X6t7Z9n>Q9JpwMN5}jrw_ble|o*Nq{+UI z{9lm9#_`n1k`Yu6fJP#LR$|Fq>w&dtbGLD8X{jc&GK)Z*XTA-fSXq3fQdZ{@_CH#-6{8=kTE=4F@bU(dc9hi! z4WJ*xvhVK-ybHP!j2A(lz%W;_>$bH;tw~J{`{Omsb*x&L`BI;U5e{4ndXkIL-)8K4 z`Exw1>NYo0x_E~jephgL9Q8*Lxh408UQQ^qu;7wRWN!z15I{d`w`Hz^czbRJDX&zg zayg0s(tj>^ z&#E1D6K-RC50XDB{Ns4H|1T8S_lSA0GZ7@; z9yc#TKTP4^rIed;s`?n&noBU%ZcNRgnB$hy+~6+gaYk@AqJir`9;H&TVOqw~#sHzZ z-H8TnLu66KlmnorCjVIB`bl_um*PIq5s=*Cb~EY^0$+;CDF=w;22Dl-M}jV7GtMKhRO{@0yi-uXoa-2v{cjN zpM#q^!qvUDO#hY@EA0OaB3+c1*O5leCgNRdfPPC#H_mG}y@m1!qDhp$;9)bSj7QlM zLw5%`1e2z+PCT;5Z>W9e3|rpnriT6T=qyxc;kIn2eO|yS?>ZhONM&kv_46#~+aO<{ z@}~WMOkf>Ws=?=RmuS}myaeonyL4U<;}AOse~QkmpFo;*wkw1bLb)&}q#_dNz^Y;U zLFG>>7Q^!)Ox+ix0igkgP|3LN2EKB7-%qHITJVI{b())vnaC)C?Pwyld z2J;q3GriR><0|*VHYNsVQke>agHhm{7!D3Da)a=5RwfcC?ISo#7GK(y0vez;YY*jM zf}ULR>A6?PjMEPHGd>R4On(VnuGXRv;K8j}$_g)|p!BU63mkW1Dn zLJmrmR*VibJC(M?P!G6J`cx&S2(OZ%b-*kwFI8yd7xDUz-f`NOr|0*$d7&1^1U-F7 z*5$&5Sww$U;duahF|x&Lmkq))O^W`ng9%pBoj%u*NGp@e`#hy1j4UNH=IFdJJDK!s z&@Ce`0{|wmJ4J%w&s2MlFM4)hA*y|60QqZ4RRq0*+O5YF3~1|E z|0co-jPz1Vc^Q%E#FG~lEYUeOy$Em+o?VpxBkP%-llf>E57B3kcF8NKd3fIXUj~(W zvu9Awpgp-D@7-m~dJ#Q`%I&9~hqRp|`*twk+)^!7lj%)N;|NCw!w+W3nr^&AsQkLJ z7nQS#rA{sB^=?nKBRY$bQIa0eIrMlAq&@Ly(UuRde;0LKTx}5AhDWBdYHjZMCo2*! zq6Gp2OON{mc&8OS^s_y+1Sp=8TbjRP7)=FJr3dC}w<;i(O*g7vc6!9yfPzfxS_u51 zK)YVlJf>j2gI$&Q&l|aR&eWIl7}$m3%2WE z#S(K6F2Vg5@lUAfcXQhC(2T-}zp*bWc39YioJuTFIAO&pR)OXVKraI(xESGgh+Iv3 z;z8FkG&YWBOy(?*^Kesk2R0yb8(DtE%7nY+l9k+aKJY)-i&@(WIv?dHwsUBj1NE5P z4<#d%A4lZEl3%~UM5axK%zW$@+WsBL<-`(gw&xf!U$7bUr`SLD{vW`N`1IO>zPb|R zrrbsY*Y!om_Hz}nUY zfJUscF!>yLn-HD=R+E+0Oxm}rXd0*!n(IG`dQM06c;Enr)(n0Nkq*?1;p1Lc|LEq1 zJ;<8h#^97;S)$!2OHuCTuvD9?+EgM!)PDq~p4gX1G&~IDSzslm+-2)b^is68df5ER z@fdOxN`%}>mRmvA04wl$@5`J1?0{SaX>IkedBXyPV^E#T%C0Lae!h1;TKp5p$mc*N zgIW=q%0@)q!rol-@2?OsT_8rlB0vJ=UM z6AJBu=iR-jsoLavKUs`ma10aJhqR>Gt{Y3%)+(3ggT`T2?}_OXy#IKk(toeg=cJD^ c%D*xH55?34a#&-J+5i9m07*qoM6N<$f`rtQbN~PV literal 13754 zcmV;rHATvaP)1^@s6*)K|k00009a7bBm000XU z000XU0RWnu7ytkYPiaF#P*7-ZbZ>KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z001iGNkl-Q~2~%M^xzp$-B@9g2uzG}s%Uf<1{zEKy@@$zzH! zCK{vWiHU}v8Z~MnB4Q*$1XQ9}f<&bxLFq8V^tt!Wt*7krzU%kL-sjA@=bqb!L1S{) z^PESSyZ1SJ?{}?teb;xDEvm|ztjU^m7qj*V)?`f<7r*&`?mguMqGE#Y490pO4kro- zDlW4o4NwFmrC#WzRG(q!;2cw<{h$u4K@A{^!=n(_DOVGw2Kqn}Qd7bwVqjvHTBSmx z5K^vJDb-V^dn*8CHJqckCy8(t$VNaAc45tr@Z2}W>5q&R*FQbWU<0dsTVRZJx%Nxs=d7ccrHTKVbliNL!ymu&r5xz*$G3Lg-&BPpNf1$t3FztRp(j_~~u&&wCj_qpq?yXYSnU}$I<5h1%gAxRp9VKF;U00rk9f{>;O zLEt0CVAB-mEQPQ@3e5IYvg;I~r_rF0B&Y}gP89*}_{mS$dg|!}2vL$?1pFXiczBRX zsf1hN8HotHcJIbohls%#!85{j*Imbs9Xsgn@8=~ic}adRic`g5Fsd}-28FPII=dp} z7V$7faGF1ZYyl7y6@wAswp(u{EQCDfF^?fl5=5kR{wF^1i9-hR^AZ*DQ_nm>Jzfm@ zEZ}58Iu2qR#=QXLPZjwOHGIYT=AVJ>+Ij4ntjQzcL4FRVagwOJC=UHg;xIS^94H`5 zD!hkqt`p9k?yvl@DBtv5`gzbBfZEz}uE{UDfmFol)8=~1zvhfQ&8Y2d`aTIlT&;>G z38q*C4gsazZ)j7Pre)^twA*IKjfyPlA`VxRs zJSXoG$E|`~ry?(RMh4fGcTN7sdJs`vpZeYf)t=(Z5PKeqmtiQ7ju=jSpZNa!5I^AP zkA0Tt?mL;e?iyyl{xyOP8|i)4^QfGA9{z@-*naVI$)c{VQWAJp9Qx0SLw~#H+*MZG zWxy?KOZ~HvRYZhO0Df7O1He~Qbt;RY7p!d`a3QeC7;_WwonK@F5#T(~iv{~)6|*4@ zWm)D&(*$kQ8T;^G((}~wDQtZdqgx-v@N3_QDOXy@O<(mT>bLzEueWa{*Rn-a-|B1p zW`u8pyBzo$uzyXBAEBr+XPuVHt*I);cyG5>KLB{D3gW*p2*T%uVYoL8!}h~RQTbOv z&sHGtLx6V!fA$MwAi44%t?)v`T>?B2UGVqr4=ajLX9+fLqWqi->3!yNFs1S#{MTk2 z0O|gH`0LhVCnms{ELM?a_bd~G3)NlDA zu3BA*ku+taap~)-mE!AAz128-nTojzcyLX{A3k)j>aeNB*?3W~B_b#IL7~v84_+8< zi$p;TN#dHj>*-x}R?ODL3`E3GtyKvEpTG}(E(UUfs9s!*sxL$2m*PUOqU2e}U4RI7 zYLe+Mf03DMufgjdz#AIE9~!|M9HRH>&%*Tew@$IsQ`mzO*qIr;p&@#nay}YG)c)h9 z%;4ILM4BHFj0iS&{Tjn8o;6|V!Yt=W0EuQD$nF6YAv9*_O8>ad` zZlDjb7M+>Pmeh!JJDeqwUw+`TYv)eZtsiA@U7(;aby+rrimAPbf*}2Z)>UBom_*T~c$@>79x#lYNzvmCo zCM;_-&@@Gg1*C14Xc~o8rD`n)8Vyw8*h-m_=iyYb3ypbDl$U{d8KOS{y~6tDO4jJ& zhl96rMeb@Oi)pN)4iRBsa1h_~s8*}n>y1Vio01(%p%Y`Is~tWP267_sa--%F;Iswz zri!cA5I-O|W($RrPNs0e$ppt7i`PGZ_&(|!TCb7p*-do+y~Ow3OLYG|xS1KGSj;}1 z7_wYp>Wa_P_xu-9dfXXIeeoYj$H$Oz1rb3C1*BM1_bPB2xIdfjulxb3-x7771HBfcx~BE31qmLCw&3(iB^6;VX;6%m zBuPFFyc9U9?U2uk=zlJO-&e<_9fpCF5Ph1$D+PI0PO~k%3~RwT`kws)`Y(PtrN?f= z>mOJ?{76&c`|e@pYhPvROP65}P9UYy{0HfIxLS?zOaGeT*S?YZf8K`a>0JP$j0mYZ z=F-e4=F*f@6%oO2ePB9CxNUNZpUzCPzF6eMo*s@amneJwVqT?$$a8%cKNsO{CwvO{ zf1;0_W3q@BQa$ozNB%tc=*(+G z<#$x{)Fsby4haI*zw3Pry!fT7+gW^{!YQXRddjKvJ^v#1yzRG%?!70=j?eQVWokdX ziFo@1nX7KgtP2o1$F#Lfrzs8R(A+RgyKBuKqbJ$Nsu^v4sK}MVK^2MD7yd%_iFs z5fc!!t+A>Srzs8)_ej#bzJAoG{Ps#ta*aBD&$(dL#?dK-lTTsz^}oxW-+dhf!9q65 zDao##ND#CPBUNQz95b1wSXGP&W|7#h8`I(&NEIfcl$m6jnoT)tXo!mMFS>{UFeyCs z)(r!F2op>Ff}g}Zc*3KY=5YerYU=)h=XaI zE%7p5%1={v9(NM;p1x(ghj_p*1H;a_9|7AJVMNyhCjgtX|CIj*ezFq%5|QKbbJyqk zHV51fJU~|7aU{h6&EMMy6o47vf&4R$7(`tbYRb~y!*h;8n&ON{7=|YB{3k2A9^^Je z?pcmCcCH2Kg8Z6J%&!Yz3b;4Ft{Jz?M%FTrRFwznHO6C)4TU28zK_3zp_oFE*>7A+ z{gxk6dCJr1ed^OGoO}xY#-kQwz_Z{yAsstF^3V>d|Nb3jZ@8Z5?mIEXBGOU0J8#=p zmoZ^!3TXqlum4Vv*g)pM+Vmp+^Ti-}?gaY=Bz5cF>5tMa2A5%RW_K zesB&j+Vq}&5Y~V{1^rN0_D0N!sQ#)5&kusa>8;RfH%hn66pkJK>XESyz%@nLj1AF}g1e-P!9&;=b7MQu_Dl~}> z@$DTskXdV~rk0Ws`h1_l;yI9(VIxuD7S>*x9++<3-GeoO4fELVv6}^H^1LN1-6xdFLGr4h;_s4-fyb zhw1hoOH^mZ}Z@-O#@z`d_z@#AR_PX+*}ghzp+{= zK2;P38V!6^tkbtxryriTqx=3W>P`c8HlvP2vhOgdg7Aj?``4|67!Z-TUax(zQmMRK zo!!1{N1@66U)5RW>NWO8hQT0UGzh799@61e#Pg9#zERa`#1Gt;DY|MKB`t_C;CbK~ z#Q9l&N0PMi9{$h}-rx|yrp*M$9!GfeF$9~BAv|Ua-pD9kPcL{LV}JdZ*tr=@v9y5w z)_eg6Jf8vIZ|x{a7dL8hC|0+Y@g!j)iK)9RS!qO8@r+KEQdP@S z(=&f%jJ!zIEvMj~F?y=1y(3L6!y}`QEtSikF~)nWTYcQK&3OL57-K%Hs_#IS=YgE+ zaVMU5@@KpZBCb}RAtKLM>M0s$(KIE=Xxk?&$djaLFUX^Tor+?O911su_XF=-%^(t0 z4a?=quUhNQ7m?o=_`-5|kQS&!gjkimQN&oB(C7P%h5`M4&>enx9+Edq%Odo!H!@1$ zgp=?$Y$V)#Ea9=o;cwW8zi|`(=;*x6c&E(Wcmork_y{H}EWL=GnfwlK;Z&JTQ^t~* z$s{4pW0&SVFQ%BwWuQb|?!cE^Ak*cq#u$0^N@Fk)@1DSiC{7+fJUnu>s;+YnhZGR= zR)rDZH-L1BBToWzO%QlnAIWJr>ZEzI-Lbb4s4AZCQ7DC2Yf0kxwZJ+NA+ppR;;cJ%%OsC@)d;^&;-e&EIG@kZ3t2YbsLBT6UxJ*%wx9j)e>W4K{usUIKZCvtUPSrKbC#{h9s8^I5#M(&rnh$$)QTVi4QrW5 z6UO71nzNv+*f10jrxPmPo02f7E=6Rf%XqfKTQU8CVs1v=xEgnJp|AH_#~pWESZ_q1 z0y%1tv;M14D10)C8aIfTJ%AN-$clM_@yv_FxfiNxH+cQK<>{Gk&sFEXDyme6hpF}S zV63B3t$hSIZOP|t%stNOor2D4W{{_^GDcbXrYFMe+$^(mv#9FJjL2fUZ9|ps7%{gR zPa|vH@gTnf9Nl#j@})_srn9t<2;F4IP2}M#>_D2z8aZI1@GZKUh_&%XA zS>0h5QxVTY$`$O?B$JnYmg%p2iPE;S=)2%W^gjLBUCZ8QzV=n7zWhZ@rLtmgp{mT; zl<_3yV3H6yhe#e{$?`^#d%LP1$mKn=$@{&)dmwNr;Z; znqKYuWmFx`S=N<%kaF+qth0-d|N2)+62GUnr)MsT<~h8o6?T@&<4;nG& zbutK^m=E-nO8+L1mDENNIDIbg@pZYVaj z%`NQwt{bfCcU9zf5dI4U&x33Vla8pE-w@Te11%5i2Lan3eBj!9@3~tS7)Y_$b6r)Z z&IpsjTU7P8Qq_SLE?lZ2x27zzSL!jQ5t3xfLAxxSC|^n!C#Z~i{jAAFCA zkAH;TXFP}g3ooXy^-%yMd-rhQFW-ZBW=Uw(PSYNYV-Dmn%B})NHKC#}!ax`@8icc9 zAUAu3%6K_79Dm=AMV5W$Nn$YGA1+p5p2qsu;+uDRXwv0^_6vOY zzWeUI_PFCuxI#o8bA;UpIhEPX_~ybw_^K#QAIdpkk=qkH=AJgw3*adfdr(HQIs;|r75K}G7=9X0sL z+${IhYaC2s92sRQ-TgAARK}DmB)fMq@$rwaU`Ouw~)%=W1i*z1dC~P^;B2Vp_d1AOuda z^*V@$5vgP3*A>3ig{k^gbv7dtjCZcGkWI>?=}*+_wYLkhq}!aEo4XshK!hDf);<&w zRe^52dP$6V2_k_YAdWQ68oILoRGf1=)X8fz=%}YV=YGc+)9A`#1vWXqH%Ts4VXJsP z72jt=Sm0oe-J7`qvy8$W3hH4Z&frbO^B4(227RBBw|G!5L6}W6i6Umd{x#;l^-U1L zRC>A^Bsonxmc&fNF^yHgC~~6^pp;+VNElKy=Fs)!*C?s+^6egNe6J4+Ifw$7?> zFUmQcOVX$}J}4qDRrqItZ|2$ai6*1!`vIP(sK|sa!U?qQu2P%%unJo3$%DvJg6%{YZc>Z3HLX%8eZlSxeCRu7{* z5e9-FH{5{0NY`Ydm&3LlQEYYwL9p0Q_=&Q|_ZQ(MS4b)d|LTXq7gfC$gwSwaMA(;F zduEqY4_NEAi0E-E32xhC4zj-ddx7@e?-JrYu3Ro{pPj3nr`9ek=}`F?n3;09yd*J~ zrYV~@ZzfF>MC?_*AKVT+_DC3rbEf&rSBSV*Epo5hfNiS0PmDa|2f^Ja-v@3q#@sAI zjAuwi=qZ<))dmX<41|UFw}; z((8r zTn2m=*ysD+f>^(0AY*alYBuGlVv!*~Sg^Y{AyL^FD#a2T!va%j%2*sTYY!>wO5m3Q zlWD?~O{v6L(cy3qQpl}W+m456hgLdrC}E*63=Gq~VQ!x~_H;guYPEI< zTD5=e`~&~C6-mlia(G&SAMLyDb zwSN1KS#^&4YBhRtOg@yCmABVnxfUHLjE0%Q%~{)`Q{(nHU`6mN>jc~v#qd{O{NFD9teUVq!!A_GORy7Ayyogoz}fYO{K*<-AHWppMnCKZ-a&)Pgt7-TzSFy)wfHjA1yZn){c6QF$UU za*l&>%vcgpwTEAi^)MOBhdLirmtU{z;z>H(5$Hk5Gw?sQR=y-g`|}v3lbS0#wMA9x z(wWZ%BMG#YhObqXV|7SStJ<+p&R13fGK z&M1msF}i-k)R||V`KGQ0(uuz#=h)e(voDSq%oBmVzQ3Sfq`4y(#IUJQWJ6eBIuGin z(uCBl9DcQXWV1pAZC*>!^D@H-Ldqt?lXeLhRdp%jaaO1}Kau!zX_ocoD}a!u-aMW{ zggt(crk(31BFW6m^xu{%l`%1L`16((EtN{U8uj=Z)Xkvkfy|IiwP}~5;;6pKS~uAq zpBQ5(mrAXkkD#Z_w6h4=lo16AQS?|pb?6a##*IduC!G64O2q=DVwot45V%%^Yf-kQ zX>v{w7R~{l;G8=VSTx>!2ad4R1Vl^X4xYBR4H-Ae~BURXGsHj3-G3zru|9DRgAa zwT(I*3IYa$fSR>TBry|7LSuzNy{u?0^Ib%Qitn>-0VJGXusAP~m?VtF5!3mQhZTB@ zg3-mJ5TkbW^TC$m_)Xf0-*>C(&b%3_T`~P#yLSEC(VI74-_zTZy(s4}6)+3};wZ)s z0t6jPQn$-Fx1r;(pja$F-#L3nrlbufCnwo*-0`Gw+_L6^XDGxm>KsWND}c@<#R^FtJNFFOU7zlr0{GJ>FZ`B z)mr*n)}}jwo$Uq^u4H$gwJ9^TG|!m(jD#T-GrtVJ9ey=~`leSo5J${eyP}|eIhwXF z2v{G6d2^Rp1V&{KGH$}CIASjEI9nZzl7BU#GmCEj0v_&&%`#C{2KsyPeeV!yAu=~t zt^F{LqT|{Pz*;M(o_6{>Mn;CN7hwG0!Tc>&-S15$o0puyADv&nC=f+4)6;bT^@HF$ z<#OrF&b*3*B<=l!4rM(Pf zI1E`IhV(2EUo_dWW+L%ml2FedppliwGa^jj%xBe@cdPF$+A5fMJ`#aX*(YMa&Tg1o~PrM(f>fbfvwIB#d(=^jDX&E_O}!^8Clv%&&!x62?vvuif0%OLWc5;bbEZ#?p68%pT5A)o0VcF z;w+~kEbK8>vesGO7)FEKFnqtIz}?~tm(#RkNz7D|km%th5{HA(uJioM#S8zybDC`0 zxo45lGKw`GcN8i|%!7EI$F5y_*tc)ryk{aJ*Ka=Nn0rd4(#f65R;$%Nnk4CLp%8pA z%asf5gVZ_)xv8=Z;S#be`i;Ql^;(@{j@iuS&6}IKmmefaauaZF7h>R*gM-7>T5axa z)k7R_H+h_jTqcM5!XKu41#45zIO7bqZQHh?uYd3xaguD6Y~#B~;X;8o1Gk6>*18r| zu1@iT0wCfEE)Zm;;-ZYh@USqWxbLW_A z)Y%(H4EO<~VL*?!cu-$5hGU8))`tZq(}aU@OfByxZwBcF<1yg*3so6W92$IGrKj@P!t~S!oVDKqrrT8G*fdUG>BPQW zLiO>$CR#NuSV!({YNFmFxcQ%0udTM0cr*7Zaf1)b0 zU2CzdWuj>Cju6S8rYRdXY~U5Ic*TOcDr3y&Q=47_Jf~aiqRQ()eoa+xRQSHYu3Te} z#(0kolJrS*&B*KPK|k(LeBWcBzaLdFMy{Klt$jLX8Sth>zP|*#N#XUt?W)`j(m)sz(Z>N>y4I_S5XI4#($w*irOmwNvDxR5r^!_vNt_@eH~4<=wx!~E;7o-xVfg`r&e{8Hl6+oW8qG71hidim zF{KiIPK7p=*5pC)U_OItB8fSerZn0E-le=sTTW$n)ZjoIGZ17smA)=H6@^868JfpV zCJ6`fGLZCe`aO&=6oia+T*Csx5SU9-c1H~kHfymKTZNU^V##X$Ju519-45OfT%f8~ z(?RU~ zUf0_<@aMq09=_2L_4M@qc5kIJ+0@9Ef$WPTTXU98#UlM)fRRJ+qp3JOzE7|3v(Y&w z)0pu%S#=q_MH!2;yhz3KSQms{;a9i7dooGb7ia939!5P@(Rd7p0mETP#WM)=4WqLg zaeoqXFpf!ASc~P1!7V?wda)O0q)UTWxA1`~cO-##zHjw&qI%fl1qJRG!|PS`hSm-% z-8L%OA=x~yPiYr;ci4o4?=wDj!2al4H&7`SdGc9jXKS5sJkkjYb31{fQ#C z8Y3T6<)p*81|u@-)cj^|Pwx%IV$iyGzkPR}O;hf!R_XP8M)SBKFs7woO-!D}3`ItR zLmBhKDTANOC$bmwg2kaApx8F_S;^?+=_Jc|&$iV^t(>OKVAOD4GSf&>v72yJq-$wQAn!&2&UAF+}^+}R^JP5)|+hZW7 zN^hxrRE11}NeBF!??os?+=?DYcgyEu1wlG^Ll zSx^@u=2G%jS?k=@m7en74i26K2qvFtCc-Cc)y9*OBzd7^3C9_bw|O29X_lI3J(GN? zCV)RwCx2Hch8HDC{5)080tT30%98;5RP{ThQt|WkdhP4Zx~?7FOV(o5o#Uar7OPp~ z)Y<5y^C;UQ8^W;VRaP6+JF@EDYTL}Y1+O$%6h>t{e`pNDVS$k#pyGR3GOW`u@}bn3 zQD;!G;Z~kRTnt_nqB`q#Kg9OqP9m^rR|u^tGoo^#@4KfcGU9|EB}u$}B?06LWRK^W zzuCKY_um*}j^4Cs^YN)ohk*bjQrtn~nFkHBd+**oIx;fyaMKavz@-A08e=wEYfnaG zG}o&-upQO={J^hjYFl)*Dp#u7AA80-+rb#PZ>t(jk_6B585tO8uG3tajK3&J;wJ}w zuyOb9-M0mPc+XKsjgqD|dy`-H>)KN&gqPYhxzsv0if{tRx{TS<2$hFY>)+#f@m#jt zvSft6BHDIuo;C0FeMa-?B|%#$d}qddI0&dZ%UGNZXN#O$HmGlw39N<$X~MpW@8vKm zZ=20wl@?#e8}Mw(n*3sm-?oeWyQ-eBf@r@5znZ1+1G!h}^Zj}7 zt65PS8k6Nz!U8jC!g!o8nRn`~#!%Yhi;-{{nzl82*D;YqOe8Ti>wwh+-XMxoBcD>- z?<2CT#;4-pjKJC}*#37Jh$?SD8Ao^n^TyaO4Zo}&qHTNfevF~KeO8%I6&qkE2pJ5* zR!(I+?&!r>Dt{ruXjo{Lf#mPzUP#kARc7)yXtKS_QH0gtH$QdPYa{(&+FSTGYdZgb z+dzOS=-b6`Icnah>Mn%k>u2Vb!snfcd!i^C9v6gEd_QCHJK$Hv7<%$D_-tNoL@l-1 zyXHEeYrzZQ+i;HYIAS7>spVw;YFlQVW4~wOe=;WcOe*rzpvlt7+N(I% z45Yg}0Q@;(|E|Zm=cmqpZNrx*3d=){_UR>4Ny1c;O@to`LPmmM-tf5gl9quyIhi?! ztXoi^J53AJY|4SSZT2oJZ__<=t@_^}pKL_wmjf@}TP_7H6I?@7YqD%@of9Sp)AS!* zYCgZi^PdzZ>91+%Ux@0^N&rif!mK$*wNYn(95EOK4ErH{e)pV88&|i$Ln$zmW`>c` zwC->QETkfQy%E_@inHG+7sLA6JDbZj9$X`4`v4h@1R8iTZTz{RS}B{5@3(t7F5YRf=G z^iEX2plUuR;&!TWVAmFZO&$pYnJ;xguM{u2(z)U6XOD>} z8`GMw7(1ozY^#B4H6B9*b;|by`Isl^HK5f*&Dx5u$RX)1`xLoA#QnOe zJaIMf%jWqD?TBGk8hGcaifL>0szlwV!$R#<%Y3RAmyCipE~y*5p#yMygE+Y_tzNOHTj?9LAu5E-*KLNr#2HE-%~EU zT+o-UG^k%8jKV258|1Ur+Al__o$jx+N~PCiP5wuEkZ!yC0|@W65}vIhmmqSj2oGnF ztW(viYf<_FHRg$md_rJ)%_i357t%o5qy}6mVxC*ArRS>ZCxFSOyIFz63SR&{52qJI zvAqUxYseQ8;7}bW0c-Jp16Org Date: Thu, 6 Jun 2024 14:13:34 -0700 Subject: [PATCH 1241/2686] Run update.sh --- redis/README.md | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/redis/README.md b/redis/README.md index 9790afadc101..8a94987f02d0 100644 --- a/redis/README.md +++ b/redis/README.md @@ -52,29 +52,29 @@ WARNING: # What is Redis? -Redis is an open-source, networked, in-memory, key-value data store with optional durability. It is written in ANSI C. The development of Redis is sponsored by Redis Labs today; before that, it was sponsored by Pivotal and VMware. According to the monthly ranking by DB-Engines.com, Redis is the most popular key-value store. The name Redis means REmote DIctionary Server. +Redis is the world’s fastest data platform. It provides cloud and on-prem solutions for caching, vector search, and NoSQL databases that seamlessly fit into any tech stack—making it simple for digital customers to build, scale, and deploy the fast apps our world runs on. -> [wikipedia.org/wiki/Redis](https://en.wikipedia.org/wiki/Redis) +> [redis.io](https://redis.io) -![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/redis/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/0e42ee108b46e1ba6333e9eb44201b8f26c4032d/redis/logo.png) # Security For the ease of accessing Redis from other containers via Docker networking, the "Protected mode" is turned off by default. This means that if you expose the port outside of your host (e.g., via `-p` on `docker run`), it will be open without a password to anyone. It is **highly** recommended to set a password (by supplying a config file) if you plan on exposing your Redis instance to the internet. For further information, see the following links about Redis security: -- [Redis documentation on security](https://redis.io/topics/security) -- [Protected mode](https://redis.io/topics/security#protected-mode) +- [Redis documentation on security](https://redis.io/docs/latest/operate/oss_and_stack/management/security/) +- [Protected mode](https://redis.io/docs/latest/operate/oss_and_stack/management/security/#protected-mode) - [A few things about Redis security by antirez](http://antirez.com/news/96) # How to use this image -## start a redis instance +## Start a redis instance ```console $ docker run --name some-redis -d redis ``` -## start with persistent storage +## Start with persistent storage ```console $ docker run --name some-redis -d redis redis-server --save 60 1 --loglevel warning @@ -82,15 +82,15 @@ $ docker run --name some-redis -d redis redis-server --save 60 1 --loglevel warn There are several different persistence strategies to choose from. This one will save a snapshot of the DB every 60 seconds if at least 1 write operation was performed (it will also lead to more logs, so the `loglevel` option may be desirable). If persistence is enabled, data is stored in the `VOLUME /data`, which can be used with `--volumes-from some-volume-container` or `-v /docker/host/dir:/data` (see [docs.docker volumes](https://docs.docker.com/engine/tutorials/dockervolumes/)). -For more about Redis Persistence, see [http://redis.io/topics/persistence](http://redis.io/topics/persistence). +For more about Redis persistence, see [the official Redis documentation](https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/). -## connecting via `redis-cli` +## Connecting via `redis-cli` ```console $ docker run -it --network some-network --rm redis redis-cli -h some-redis ``` -## Additionally, If you want to use your own redis.conf ... +## Additionally, if you want to use your own redis.conf ... You can create your own Dockerfile that adds a redis.conf from the context into /data/, like so. @@ -114,13 +114,14 @@ The mapped directory should be writable, as depending on the configuration and m This variant is *not* a 32bit image (and will not run on 32bit hardware), but includes Redis compiled as a 32bit binary, especially for users who need the decreased memory requirements associated with that. See ["Using 32 bit instances"](http://redis.io/topics/memory-optimization#using-32-bit-instances) in the Redis documentation for more information. -# Redis Modules +# Redis Stack and modules -You can find the list of modules for Redis on [redis.io](https://redis.io/modules) or on [redismodules.com](http://redismodules.com). A few of the standard modules can be found here: +Modules extend Redis with extra capabilities. Redis Stack already comes with the capabilities (search and query, JSON support, and more) that are developed by Redis (the company). The Docker images are available here: -- [RediSearch](https://hub.docker.com/r/redislabs/redisearch/): Search and Query with Indexing on Redis -- [ReJSON](https://hub.docker.com/r/redislabs/rejson/): Extended JSON processing for Redis -- [ReBloom](https://hub.docker.com/r/redislabs/rebloom/): Bloom Filters data type for membership/existence search on Redis +- [Redis Stack](https://hub.docker.com/r/redis/redis-stack): Redis plus extra capabilities and Redis Insight (a GUI for Redis) +- [Redis Stack Server](https://hub.docker.com/r/redis/redis-stack-server): Redis plus extra capabilities + +You can find the list of modules for Redis on [redis.io](https://redis.io/community/redis-modules-hub/). # Image Variants @@ -142,7 +143,9 @@ To minimize image size, it's uncommon for additional related tools (such as `git # License -View [license information](http://redis.io/topics/license) for the software contained in this image. +Starting on March 20th, 2024, Redis follows a dual-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/) or the [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/). Older versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause). + +Please also view the [Redis License Overview](https://redis.io/legal/licenses/) and the [Redis Trademark Policy](https://redis.io/legal/trademark-policy/). As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). From 23c615fe15c95fa9482196c9fa89c903dd90f84e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jun 2024 15:19:32 -0700 Subject: [PATCH 1242/2686] Run update.sh --- api-firewall/README.md | 3 +-- dart/README.md | 4 ++-- drupal/README.md | 24 ++++++++++++------------ ghost/README.md | 4 ++-- influxdb/README.md | 32 ++++++++++++++++---------------- python/README.md | 30 +++++++++++++++--------------- wordpress/README.md | 18 +++++++++--------- 7 files changed, 57 insertions(+), 58 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 0580d3006fb0..e6156dd690c2 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,8 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.7.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0219b73c95231b3fc13824a4a672a8c5356c97a4/0.7.2/Dockerfile) -- [`0.7.1`](https://github.com/wallarm/api-firewall-docker/blob/0219b73c95231b3fc13824a4a672a8c5356c97a4/0.7.1/Dockerfile) +- [`0.7.3`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/c63bbed490a94a2ea89c6ea656592f15ffb9cb92/0.7.3/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index b477e8c04c00..131fc65a4bd4 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.2-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.2`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/185ed4955a6d38c0e353ff76269d2db7cdf27699/stable/bookworm/Dockerfile) -- [`3.5.0-180.2.beta-sdk`, `beta-sdk`, `3.5.0-180.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/185ed4955a6d38c0e353ff76269d2db7cdf27699/beta/bookworm/Dockerfile) +- [`3.4.3-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.3`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6ac1650f30c0253aee1be07ceab3d8860efe7d2a/stable/bookworm/Dockerfile) +- [`3.5.0-180.3.beta-sdk`, `beta-sdk`, `3.5.0-180.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6ac1650f30c0253aee1be07ceab3d8860efe7d2a/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 37b614323c46..e493a05827f8 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -48,18 +48,18 @@ WARNING: - [`10.3.0-rc1-php8.2-fpm-bullseye`, `10.3-rc-php8.2-fpm-bullseye`, `10.3.0-rc1-fpm-bullseye`, `10.3-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-bullseye/Dockerfile) - [`10.3.0-rc1-php8.2-fpm-alpine3.20`, `10.3-rc-php8.2-fpm-alpine3.20`, `10.3.0-rc1-php8.2-fpm-alpine`, `10.3-rc-php8.2-fpm-alpine`, `10.3.0-rc1-fpm-alpine3.20`, `10.3-rc-fpm-alpine3.20`, `10.3.0-rc1-fpm-alpine`, `10.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.20/Dockerfile) - [`10.3.0-rc1-php8.2-fpm-alpine3.19`, `10.3-rc-php8.2-fpm-alpine3.19`, `10.3.0-rc1-fpm-alpine3.19`, `10.3-rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.6-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.6-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.6-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.6-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.6-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.6-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.6-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.6-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.2.6-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.6-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.6-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.6-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.6-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.6-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.6-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.6`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.6-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.6-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.6-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.6-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.6-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.6-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.6-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.6-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.6-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.2.6-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.6-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.2.6-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.6-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.6-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9876a874a8ef22b5eb92a45d19c5a0c8b8f4584d/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.7`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bookworm/Dockerfile) - [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bookworm/Dockerfile) - [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bullseye/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 2d098970e346..3af0acb5863a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.83.0`, `5.83`, `5`, `latest`](https://github.com/docker-library/ghost/blob/24c14ef74f056585dd20f61de0a6ae9a1c51a8e1/5/debian/Dockerfile) -- [`5.83.0-alpine`, `5.83-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/24c14ef74f056585dd20f61de0a6ae9a1c51a8e1/5/alpine/Dockerfile) +- [`5.84.1`, `5.84`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ae70d15aa2110df03e1301b276d627a3a9575566/5/debian/Dockerfile) +- [`5.84.1-alpine`, `5.84-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ae70d15aa2110df03e1301b276d627a3a9575566/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index ec1cce712a09..e9356381e75a 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.6-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.6-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d18cf6292f3d5de77d9bd7b25f897288fafda290/influxdb/2.7/alpine/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/alpine/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/alpine/Dockerfile) +- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 77d1101f0c00..2cc2cdca2f2e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,14 +28,14 @@ WARNING: ## Simple Tags -- [`3.13.0b1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bookworm/Dockerfile) -- [`3.13.0b1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0b1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bullseye/Dockerfile) -- [`3.13.0b1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0b1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0b2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bookworm/Dockerfile) +- [`3.13.0b2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0b2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bullseye/Dockerfile) +- [`3.13.0b2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0b2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0b2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.3-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - [`3.12.3-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.3-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bookworm/Dockerfile) - [`3.12.3-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bullseye/Dockerfile) @@ -73,13 +73,13 @@ WARNING: ## Shared Tags -- `3.13.0b1`, `3.13-rc`: - - [`3.13.0b1-bookworm`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/bookworm/Dockerfile) - - [`3.13.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0b1-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/875ce40a1ae98c7c37b1652e65f76376ac93a911/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b2`, `3.13-rc`: + - [`3.13.0b2-bookworm`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b2-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.3`, `3.12`, `3`, `latest`: - [`3.12.3-bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 22eef5f6fbeb..1c052d5647e6 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.3-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.3-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/apache/Dockerfile) -- [`6.5.3-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/fpm/Dockerfile) -- [`6.5.3-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.3-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.3`, `6.5`, `6`, `latest`, `6.5.3-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.3-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/apache/Dockerfile) -- [`6.5.3-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.3-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/fpm/Dockerfile) -- [`6.5.3-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.3-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.3-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.3-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/apache/Dockerfile) -- [`6.5.3-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/fpm/Dockerfile) -- [`6.5.3-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2eba26f088c12dea179623ee8af5cb52e6f60c4a/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.5.4-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.4-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/apache/Dockerfile) +- [`6.5.4-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/fpm/Dockerfile) +- [`6.5.4-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.5.4-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.4`, `6.5`, `6`, `latest`, `6.5.4-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.4-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/apache/Dockerfile) +- [`6.5.4-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.4-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/fpm/Dockerfile) +- [`6.5.4-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.4-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.5.4-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.4-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/apache/Dockerfile) +- [`6.5.4-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/fpm/Dockerfile) +- [`6.5.4-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) From 430b28f14a4ed2a69b9e379e12b267d98e4313e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jun 2024 17:10:27 -0700 Subject: [PATCH 1243/2686] Run update.sh --- oraclelinux/README.md | 18 ++++++++-------- swift/README.md | 48 ++++++++++++++++--------------------------- 2 files changed, 27 insertions(+), 39 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 4b911a78c1f5..60924d1a49a3 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/05516ffa72fcae6f01a00f7ac010d918d6ef8738/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index a4d15a705039..c585dda5af9c 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,17 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.0`, `5.10`, `5.10.0-jammy`, `5.10-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/22.04/Dockerfile) -- [`5.10.0-slim`, `5.10-slim`, `5.10.0-jammy-slim`, `5.10-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/22.04/slim/Dockerfile) -- [`5.10.0-focal-slim`, `5.10-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/20.04/slim/Dockerfile) -- [`5.10.0-focal`, `5.10-focal`, `focal`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/ubuntu/20.04/Dockerfile) -- [`5.10.0-amazonlinux2`, `5.10-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/amazonlinux/2/Dockerfile) -- [`5.10.0-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/amazonlinux/2/slim/Dockerfile) -- [`5.10.0-centos7`, `5.10-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/centos/7/Dockerfile) -- [`5.10.0-centos7-slim`, `5.10-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/centos/7/slim/Dockerfile) -- [`5.10.0-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/rhel-ubi/9/Dockerfile) -- [`5.10.0-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/rhel-ubi/9/slim/Dockerfile) -- [`5.10.0-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/ea035798755cce4ec41e0c6dbdd320904cef0421/5.10/windows/LTSC2022/Dockerfile) +- [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) +- [`5.10.1-slim`, `5.10-slim`, `5.10.1-jammy-slim`, `5.10-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/slim/Dockerfile) +- [`5.10.1-focal-slim`, `5.10-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/slim/Dockerfile) +- [`5.10.1-focal`, `5.10-focal`, `focal`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/Dockerfile) +- [`5.10.1-mantic`, `5.10-mantic`, `mantic`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/23.10/Dockerfile) +- [`5.10.1-noble`, `5.10-noble`, `noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) +- [`5.10.1-bookworm`, `5.10-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) +- [`5.10.1-fedora39`, `5.10-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) +- [`5.10.1-amazonlinux2`, `5.10-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/Dockerfile) +- [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) +- [`5.10.1-centos7`, `5.10-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/Dockerfile) +- [`5.10.1-centos7-slim`, `5.10-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/slim/Dockerfile) +- [`5.10.1-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/Dockerfile) +- [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) +- [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/windows/LTSC2022/Dockerfile) - [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) - [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) - [`5.9.2-focal-slim`, `5.9-focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) @@ -76,24 +80,6 @@ WARNING: - [`5.5.3-amazonlinux2-slim`, `5.5-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/slim/Dockerfile) - [`5.5.3-centos7`, `5.5-centos7`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/Dockerfile) - [`5.5.3-centos7-slim`, `5.5-centos7-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/slim/Dockerfile) -- [`5.4.3-focal-slim`, `5.4-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/slim/Dockerfile) -- [`5.4.3-focal`, `5.4-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/ubuntu/20.04/Dockerfile) -- [`5.4.3-amazonlinux2`, `5.4-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/amazonlinux/2/Dockerfile) -- [`5.4.3-amazonlinux2-slim`, `5.4-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/amazonlinux/2/slim/Dockerfile) -- [`5.4.3-centos7`, `5.4-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/Dockerfile) -- [`5.4.3-centos7-slim`, `5.4-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.4/centos/7/slim/Dockerfile) -- [`5.3.3-focal-slim`, `5.3-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/slim/Dockerfile) -- [`5.3.3-focal`, `5.3-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/ubuntu/20.04/Dockerfile) -- [`5.3.3-amazonlinux2`, `5.3-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/amazonlinux/2/Dockerfile) -- [`5.3.3-amazonlinux2-slim`, `5.3-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/amazonlinux/2/slim/Dockerfile) -- [`5.3.3-centos7`, `5.3-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/Dockerfile) -- [`5.3.3-centos7-slim`, `5.3-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.3/centos/7/slim/Dockerfile) -- [`5.2.5-focal-slim`, `5.2-focal-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/slim/Dockerfile) -- [`5.2.5-focal`, `5.2-focal`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/ubuntu/20.04/Dockerfile) -- [`5.2.5-amazonlinux2`, `5.2-amazonlinux2`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/amazonlinux/2/Dockerfile) -- [`5.2.5-amazonlinux2-slim`, `5.2-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/amazonlinux/2/slim/Dockerfile) -- [`5.2.5-centos7`, `5.2-centos7`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/Dockerfile) -- [`5.2.5-centos7-slim`, `5.2-centos7-slim`](https://github.com/apple/swift-docker/blob/2d2c2fb89fe6ecfd8885157eb1666ed2686503a0/5.2/centos/7/slim/Dockerfile) # Quick reference (cont.) @@ -171,7 +157,9 @@ The `swift` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + +Some of these tags may have names like focal, jammy, mantic, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `swift:-slim` From e8d63dcb5118cf557afe08e1d1a1a93b6cb6b670 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Jun 2024 18:13:34 -0700 Subject: [PATCH 1244/2686] Run update.sh --- mongo/README.md | 45 +++++++++++++++------------------------------ 1 file changed, 15 insertions(+), 30 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 6bac119089ad..fbab6f8491c0 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -48,16 +48,11 @@ WARNING: - [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.27-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/Dockerfile) -- [`5.0.27-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.27-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.27-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.27-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-1809/Dockerfile) -- [`5.0.26-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) -- [`5.0.26-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.26-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.26-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.26-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) +- [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.27-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.27-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -101,26 +96,16 @@ WARNING: - `6.0.15-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.27-rc0`, `5.0-rc`: - - [`5.0.27-rc0-focal`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/Dockerfile) - - [`5.0.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.27-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.27-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.27-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.27-rc0-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.27-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.27-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b8e405955581021ecde5c89bca3b8fc537c0b999/5.0-rc/windows/nanoserver-1809/Dockerfile) -- `5.0.26`, `5.0`, `5`: - - [`5.0.26-focal`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/Dockerfile) - - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.26-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.26-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.26-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.26-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3def65b71cf51011d6da264f2a6b6d701c9d3e8d/5.0/windows/nanoserver-1809/Dockerfile) +- `5.0.27`, `5.0`, `5`: + - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) + - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.27-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) +- `5.0.27-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 413d5b13fbaefe3ee1a351921167c9bec442a78d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Jun 2024 11:18:59 -0700 Subject: [PATCH 1245/2686] Run update.sh --- alpine/README.md | 2 +- convertigo/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index e211a6a39bb2..7320282c6a4f 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20240329`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a89bb0df27ce47646e8f9955934f0d0093c2d18e/x86_64/Dockerfile) +- [`20240606`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/75a51b285731679e7c39c2e3c1cae4edcd6851e5/x86_64/Dockerfile) - [`3.20.0`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/142830f310291a58bea7294cc17ed645697861ca/x86_64/Dockerfile) - [`3.19.1`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) - [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) diff --git a/convertigo/README.md b/convertigo/README.md index 5f7d1f32dbb9..ed77d626839e 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.7`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/24ab4a5de17fd3de5adf1b12c1fa447400be22a0/docker/default/Dockerfile) +- [`8.3.0`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/b2b3387e1d01034c010817e14de30f2ce60febdc/docker/default/Dockerfile) # Quick reference (cont.) @@ -32,7 +32,7 @@ WARNING: [https://github.com/convertigo/docker/issues](https://github.com/convertigo/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/convertigo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/convertigo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/convertigo/) + [`amd64`](https://hub.docker.com/r/amd64/convertigo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/convertigo/) - **Published image artifact details**: [repo-info repo's `repos/convertigo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/convertigo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/convertigo)) From 91a7faddfffde9076ef2e05481dea6bff12daebb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Jun 2024 12:21:04 -0700 Subject: [PATCH 1246/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index 2cc2cdca2f2e..6946a3a19dc4 100644 --- a/python/README.md +++ b/python/README.md @@ -36,14 +36,14 @@ WARNING: - [`3.13.0b2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/alpine3.19/Dockerfile) - [`3.13.0b2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.3-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) -- [`3.12.3-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.3-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bookworm/Dockerfile) -- [`3.12.3-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bullseye/Dockerfile) -- [`3.12.3-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/slim-bullseye/Dockerfile) -- [`3.12.3-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.3-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.12/alpine3.20/Dockerfile) -- [`3.12.3-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/alpine3.19/Dockerfile) -- [`3.12.3-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.3-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bookworm/Dockerfile) +- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bookworm/Dockerfile) +- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bullseye/Dockerfile) +- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bullseye/Dockerfile) +- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/alpine3.20/Dockerfile) +- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/alpine3.19/Dockerfile) +- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) - [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) @@ -80,13 +80,13 @@ WARNING: - `3.13.0b2-windowsservercore`, `3.13-rc-windowsservercore`: - [`3.13.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.3`, `3.12`, `3`, `latest`: - - [`3.12.3-bookworm`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/bookworm/Dockerfile) - - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.3-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/bf5951cfa2b2f6c3dabf428549c9dca658ecee81/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.4`, `3.12`, `3`, `latest`: + - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bookworm/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) +- `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) From 9de58541df2aef67b8de4cebfcba595b4cf3f96e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Jun 2024 17:10:35 -0700 Subject: [PATCH 1247/2686] Run update.sh --- ghost/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 3af0acb5863a..9459f35ac104 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.84.1`, `5.84`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ae70d15aa2110df03e1301b276d627a3a9575566/5/debian/Dockerfile) -- [`5.84.1-alpine`, `5.84-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ae70d15aa2110df03e1301b276d627a3a9575566/5/alpine/Dockerfile) +- [`5.84.2`, `5.84`, `5`, `latest`](https://github.com/docker-library/ghost/blob/caef43845c6a453fb47c923bae50698d870268ba/5/debian/Dockerfile) +- [`5.84.2-alpine`, `5.84-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/caef43845c6a453fb47c923bae50698d870268ba/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 60924d1a49a3..9a8242d44ece 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/71c5c9c3d2c2d9b31b50b366e51256333a63e44a/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7-slim-fips/Dockerfile) # Quick reference (cont.) From dbf2a5a37542e42a30f824a30ee3f9be30a3baf2 Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Mon, 10 Jun 2024 10:44:04 -0400 Subject: [PATCH 1248/2686] Update websphere-liberty short description The reference to Ubuntu 18.04 is outdated, hence remove it. --- websphere-liberty/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websphere-liberty/README-short.txt b/websphere-liberty/README-short.txt index e5e2c189ce77..c6a5d34389b2 100644 --- a/websphere-liberty/README-short.txt +++ b/websphere-liberty/README-short.txt @@ -1 +1 @@ -WebSphere Liberty multi-architecture images based on Ubuntu 18.04 +WebSphere Liberty multi-architecture images based on Ubuntu From 1eff7f3d0534e18a490764e2b68f72fea11f749e Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Mon, 10 Jun 2024 10:47:30 -0400 Subject: [PATCH 1249/2686] Update short description of open-liberty The reference to 18.04 is outdated, hence remove it. --- open-liberty/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open-liberty/README-short.txt b/open-liberty/README-short.txt index 46fab7571f4c..6be691649936 100644 --- a/open-liberty/README-short.txt +++ b/open-liberty/README-short.txt @@ -1 +1 @@ -Open Liberty multi-architecture images based on Ubuntu 18.04 +Open Liberty multi-architecture images based on Ubuntu From 06d0cc3cdf36df17037f690eb7860d364e2e9d1e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jun 2024 12:47:42 -0700 Subject: [PATCH 1250/2686] Run update.sh --- clearlinux/README.md | 2 +- elixir/README.md | 18 +++++----- perl/README.md | 84 +++++++++++++++++++++++--------------------- photon/README.md | 4 +-- 4 files changed, 56 insertions(+), 52 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0e43627ea9cc..f1a6c3d84c1e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/94674a75fcbd61b721ac1332cf3893e7f1979ba6/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/68e01605e9214b1884687b702416befa1cfe74cb/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 9d66e66462e4..bb6e9d93446c 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.0-rc.0`, `1.17.0-rc`, `1.17`, `1.17.0-rc.0-otp-27`, `1.17.0-rc-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/Dockerfile) -- [`1.17.0-rc.0-slim`, `1.17.0-rc-slim`, `1.17-slim`, `1.17.0-rc.0-otp-27-slim`, `1.17.0-rc-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/slim/Dockerfile) -- [`1.17.0-rc.0-alpine`, `1.17.0-rc-alpine`, `1.17-alpine`, `1.17.0-rc.0-otp-27-alpine`, `1.17.0-rc-otp-27-alpine`, `1.17-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/alpine/Dockerfile) -- [`1.17.0-rc.0-otp-25`, `1.17.0-rc-otp-25`, `1.17-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25/Dockerfile) -- [`1.17.0-rc.0-otp-25-alpine`, `1.17.0-rc-otp-25-alpine`, `1.17-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25-alpine/Dockerfile) -- [`1.17.0-rc.0-otp-25-slim`, `1.17.0-rc-otp-25-slim`, `1.17-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-25-slim/Dockerfile) -- [`1.17.0-rc.0-otp-26`, `1.17.0-rc-otp-26`, `1.17-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26/Dockerfile) -- [`1.17.0-rc.0-otp-26-alpine`, `1.17.0-rc-otp-26-alpine`, `1.17-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26-alpine/Dockerfile) -- [`1.17.0-rc.0-otp-26-slim`, `1.17.0-rc-otp-26-slim`, `1.17-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.17/otp-26-slim/Dockerfile) +- [`1.17.0-rc.1`, `1.17.0-rc`, `1.17`, `1.17.0-rc.1-otp-27`, `1.17.0-rc-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/Dockerfile) +- [`1.17.0-rc.1-slim`, `1.17.0-rc-slim`, `1.17-slim`, `1.17.0-rc.1-otp-27-slim`, `1.17.0-rc-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/slim/Dockerfile) +- [`1.17.0-rc.1-alpine`, `1.17.0-rc-alpine`, `1.17-alpine`, `1.17.0-rc.1-otp-27-alpine`, `1.17.0-rc-otp-27-alpine`, `1.17-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/alpine/Dockerfile) +- [`1.17.0-rc.1-otp-25`, `1.17.0-rc-otp-25`, `1.17-otp-25`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25/Dockerfile) +- [`1.17.0-rc.1-otp-25-alpine`, `1.17.0-rc-otp-25-alpine`, `1.17-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25-alpine/Dockerfile) +- [`1.17.0-rc.1-otp-25-slim`, `1.17.0-rc-otp-25-slim`, `1.17-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25-slim/Dockerfile) +- [`1.17.0-rc.1-otp-26`, `1.17.0-rc-otp-26`, `1.17-otp-26`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26/Dockerfile) +- [`1.17.0-rc.1-otp-26-alpine`, `1.17.0-rc-otp-26-alpine`, `1.17-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26-alpine/Dockerfile) +- [`1.17.0-rc.1-otp-26-slim`, `1.17.0-rc-otp-26-slim`, `1.17-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26-slim/Dockerfile) - [`1.16.3`, `1.16`, `latest`, `1.16.3-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) - [`1.16.3-slim`, `1.16-slim`, `slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) - [`1.16.3-alpine`, `1.16-alpine`, `alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) diff --git a/perl/README.md b/perl/README.md index 3106b3ab566c..197dc60a08c1 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,46 +24,50 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.38.2`, `5.38`, `5`, `latest`, `stable`, `5.38.2-bookworm`, `5.38-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5-slim`, `slim`, `stable-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.34.3`, `5.34`, `5.34.3-bullseye`, `5.34-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main-bullseye/Dockerfile) -- [`5.34.3-buster`, `5.34-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main-buster/Dockerfile) -- [`5.34.3-slim`, `5.34-slim`, `5.34.3-slim-bullseye`, `5.34-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim-bullseye/Dockerfile) -- [`5.34.3-slim-buster`, `5.34-slim-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim-buster/Dockerfile) -- [`5.34.3-threaded`, `5.34-threaded`, `5.34.3-threaded-bullseye`, `5.34-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main,threaded-bullseye/Dockerfile) -- [`5.34.3-threaded-buster`, `5.34-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-main,threaded-buster/Dockerfile) -- [`5.34.3-slim-threaded`, `5.34-slim-threaded`, `5.34.3-slim-threaded-bullseye`, `5.34-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim,threaded-bullseye/Dockerfile) -- [`5.34.3-slim-threaded-buster`, `5.34-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.034.003-slim,threaded-buster/Dockerfile) -- [`5.39.10`, `5.39`, `devel`, `5.39.10-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main-bookworm/Dockerfile) -- [`5.39.10-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main-bullseye/Dockerfile) -- [`5.39.10-slim`, `5.39-slim`, `devel-slim`, `5.39.10-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim-bookworm/Dockerfile) -- [`5.39.10-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim-bullseye/Dockerfile) -- [`5.39.10-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.10-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main,threaded-bookworm/Dockerfile) -- [`5.39.10-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-main,threaded-bullseye/Dockerfile) -- [`5.39.10-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.10-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim,threaded-bookworm/Dockerfile) -- [`5.39.10-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/8a43d71e8fc0bb99110c6384460ce7cc1c944be9/5.039.010-slim,threaded-bullseye/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-buster`, `5.40-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-buster/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-buster`, `5.40-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-buster/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-buster`, `5.40-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-buster/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-buster`, `5.40-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-buster/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-buster`, `5.38-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-buster/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-buster`, `5.38-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-buster/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-buster`, `5.38-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-buster/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-buster/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-buster/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-buster/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-buster/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-buster/Dockerfile) +- [`5.39.10`, `5.39`, `devel`, `5.39.10-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main-bookworm/Dockerfile) +- [`5.39.10-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main-bullseye/Dockerfile) +- [`5.39.10-slim`, `5.39-slim`, `devel-slim`, `5.39.10-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim-bookworm/Dockerfile) +- [`5.39.10-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim-bullseye/Dockerfile) +- [`5.39.10-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.10-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main,threaded-bookworm/Dockerfile) +- [`5.39.10-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main,threaded-bullseye/Dockerfile) +- [`5.39.10-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.10-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim,threaded-bookworm/Dockerfile) +- [`5.39.10-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 2f4b52109407..a0587b57032d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240602`, `latest`](https://github.com/vmware/photon-docker-image/blob/2013de844228ddd1d802155c775b7b35468acdb6/docker/Dockerfile) +- [`5.0`, `5.0-20240609`, `latest`](https://github.com/vmware/photon-docker-image/blob/284d5322e58aee8d7f6ba2b4b7bfc79887dbe30d/docker/Dockerfile) - [`4.0`, `4.0-20240602`](https://github.com/vmware/photon-docker-image/blob/ee303a6cd53f2e7c89d54cdd65299c0877e1d270/docker/Dockerfile) -- [`3.0`, `3.0-20240602`](https://github.com/vmware/photon-docker-image/blob/5384052221b26443a841d9aeff74aaabae8eb4d8/docker/Dockerfile) +- [`3.0`, `3.0-20240609`](https://github.com/vmware/photon-docker-image/blob/603014ab5227a5bc4a8728d137e3c9d861f5bc61/docker/Dockerfile) # Quick reference (cont.) From 6a010ccd9cd6858609a05d368b260992c8f6e7ed Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jun 2024 14:02:02 -0700 Subject: [PATCH 1251/2686] Run update.sh --- traefik/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index c566a627595a..f10a6cf9d0db 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.1-windowsservercore-ltsc2022`, `3.0.1-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.1-windowsservercore-1809`, `3.0.1-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/1809/Dockerfile) -- [`v3.0.1-nanoserver-ltsc2022`, `3.0.1-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.0.1`, `3.0.1`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v3.0/alpine/Dockerfile) -- [`v2.11.3-windowsservercore-ltsc2022`, `2.11.3-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.3-windowsservercore-1809`, `2.11.3-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/1809/Dockerfile) -- [`v2.11.3-nanoserver-ltsc2022`, `2.11.3-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.3`, `2.11.3`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/bebc5478c3fe376e918db45bc59cc864fd943feb/v2.11/alpine/Dockerfile) +- [`v3.0.2-windowsservercore-ltsc2022`, `3.0.2-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.2-windowsservercore-1809`, `3.0.2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/1809/Dockerfile) +- [`v3.0.2-nanoserver-ltsc2022`, `3.0.2-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.0.2`, `3.0.2`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/alpine/Dockerfile) +- [`v2.11.4-windowsservercore-ltsc2022`, `2.11.4-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.4-windowsservercore-1809`, `2.11.4-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/1809/Dockerfile) +- [`v2.11.4-nanoserver-ltsc2022`, `2.11.4-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.4`, `2.11.4`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/alpine/Dockerfile) # Quick reference (cont.) @@ -39,7 +39,7 @@ WARNING: [https://github.com/traefik/traefik-library-image/issues](https://github.com/traefik/traefik-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/traefik/), [`arm32v6`](https://hub.docker.com/r/arm32v6/traefik/), [`arm64v8`](https://hub.docker.com/r/arm64v8/traefik/), [`ppc64le`](https://hub.docker.com/r/ppc64le/traefik/), [`s390x`](https://hub.docker.com/r/s390x/traefik/), [`windows-amd64`](https://hub.docker.com/r/winamd64/traefik/) + [`amd64`](https://hub.docker.com/r/amd64/traefik/), [`arm32v6`](https://hub.docker.com/r/arm32v6/traefik/), [`arm64v8`](https://hub.docker.com/r/arm64v8/traefik/), [`ppc64le`](https://hub.docker.com/r/ppc64le/traefik/), [`riscv64`](https://hub.docker.com/r/riscv64/traefik/), [`s390x`](https://hub.docker.com/r/s390x/traefik/), [`windows-amd64`](https://hub.docker.com/r/winamd64/traefik/) - **Published image artifact details**: [repo-info repo's `repos/traefik/` directory](https://github.com/docker-library/repo-info/blob/master/repos/traefik) ([history](https://github.com/docker-library/repo-info/commits/master/repos/traefik)) From 95516519103c26ffb6311202e82a795aa40a4e5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jun 2024 14:45:30 -0700 Subject: [PATCH 1252/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ redis/README.md | 2 ++ telegraf/README.md | 12 ++++++------ 3 files changed, 26 insertions(+), 24 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 136529f76916..8361331326ef 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,27 +42,27 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`23-ea-25-jdk-oraclelinux9`, `23-ea-25-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-25-jdk-oracle`, `23-ea-25-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-25-jdk-oraclelinux8`, `23-ea-25-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-25-jdk-bookworm`, `23-ea-25-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/bookworm/Dockerfile) -- [`23-ea-25-jdk-slim-bookworm`, `23-ea-25-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-25-jdk-slim`, `23-ea-25-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-25-jdk-bullseye`, `23-ea-25-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/bullseye/Dockerfile) -- [`23-ea-25-jdk-slim-bullseye`, `23-ea-25-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-25-jdk-windowsservercore-ltsc2022`, `23-ea-25-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-25-jdk-windowsservercore-1809`, `23-ea-25-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-25-jdk-nanoserver-1809`, `23-ea-25-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-26-jdk-oraclelinux9`, `23-ea-26-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-26-jdk-oracle`, `23-ea-26-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-26-jdk-oraclelinux8`, `23-ea-26-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-26-jdk-bookworm`, `23-ea-26-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/bookworm/Dockerfile) +- [`23-ea-26-jdk-slim-bookworm`, `23-ea-26-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-26-jdk-slim`, `23-ea-26-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-26-jdk-bullseye`, `23-ea-26-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/bullseye/Dockerfile) +- [`23-ea-26-jdk-slim-bullseye`, `23-ea-26-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-26-jdk-windowsservercore-ltsc2022`, `23-ea-26-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-26-jdk-windowsservercore-1809`, `23-ea-26-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-26-jdk-nanoserver-1809`, `23-ea-26-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `23-ea-25-jdk`, `23-ea-25`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-25-jdk-windowsservercore`, `23-ea-25-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-25-jdk-nanoserver`, `23-ea-25-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e65da80f30bc4971419f443c54599ac5f1754406/23/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-26-jdk`, `23-ea-26`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-26-jdk-windowsservercore`, `23-ea-26-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-26-jdk-nanoserver`, `23-ea-26-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 8a94987f02d0..200015f5067d 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`7.4-rc1`, `7.4-rc`, `7.4-rc1-bookworm`, `7.4-rc-bookworm`](https://github.com/docker-library/redis/blob/0d682fed252b85f39d2033294eab217be02f95a1/7.4-rc/debian/Dockerfile) +- [`7.4-rc1-alpine`, `7.4-rc-alpine`, `7.4-rc1-alpine3.20`, `7.4-rc-alpine3.20`](https://github.com/docker-library/redis/blob/0d682fed252b85f39d2033294eab217be02f95a1/7.4-rc/alpine/Dockerfile) - [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) - [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) - [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index b0dbeb0fdd5d..94e4a4ad4e0d 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.28`, `1.28.5`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.28/Dockerfile) -- [`1.28-alpine`, `1.28.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.28/alpine/Dockerfile) -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/13c39ad36b360ff6c48284d1fd296239f4fc6e4e/telegraf/1.30/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.30/alpine/Dockerfile) +- [`1.31`, `1.31.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.31/Dockerfile) +- [`1.31-alpine`, `1.31.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.31/alpine/Dockerfile) # Quick reference (cont.) From ddb47d238b83a11872fadee00fab4f3a154e6b1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jun 2024 15:24:34 -0700 Subject: [PATCH 1253/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index b9e87ef0971f..d1c09514e1a8 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.1-dev0`, `3.1-dev`, `3.1-dev0-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/Dockerfile) - [`3.1-dev0-alpine`, `3.1-dev-alpine`, `3.1-dev0-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/alpine/Dockerfile) -- [`3.0.0`, `3.0`, `lts`, `latest`, `3.0.0-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/25aca1c14ceb3d82c68404ddd2ef92d6df625966/3.0/Dockerfile) -- [`3.0.0-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.0-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/25aca1c14ceb3d82c68404ddd2ef92d6df625966/3.0/alpine/Dockerfile) +- [`3.0.1`, `3.0`, `lts`, `latest`, `3.0.1-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/Dockerfile) +- [`3.0.1-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.1-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/alpine/Dockerfile) - [`2.9.7`, `2.9`, `2.9.7-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) - [`2.9.7-alpine`, `2.9-alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `2.8.9-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) From f872bf824711329ddfb55f584fab68f92b0d8ed6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Jun 2024 16:11:57 -0700 Subject: [PATCH 1254/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 9459f35ac104..9c4160cbb00b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.84.2`, `5.84`, `5`, `latest`](https://github.com/docker-library/ghost/blob/caef43845c6a453fb47c923bae50698d870268ba/5/debian/Dockerfile) -- [`5.84.2-alpine`, `5.84-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/caef43845c6a453fb47c923bae50698d870268ba/5/alpine/Dockerfile) +- [`5.85.0`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/59e8917dd3a05049dfc80e663462abb7427dfdec/5/debian/Dockerfile) +- [`5.85.0-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/59e8917dd3a05049dfc80e663462abb7427dfdec/5/alpine/Dockerfile) # Quick reference (cont.) From b4c2f117fe22e3489f8a8fab01a5654a131b998b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jun 2024 11:21:44 -0700 Subject: [PATCH 1255/2686] Run update.sh --- composer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer/README.md b/composer/README.md index 9ea2efdc9dd1..f24c2de7c3d6 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.6`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/00d7335279ab1183a73746a931fa9519475ab47b/2.7/Dockerfile) +- [`2.7.7`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/88c873f3c2afcc399ec92eeec62a30e559a8b8ea/2.7/Dockerfile) - [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) -- [`2.2.23`, `2.2`, `lts`](https://github.com/composer/docker/blob/08fa7ad05da303abd8ef7080b0676683bd89159b/2.2/Dockerfile) +- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/e04a63cb8591a14e78974fd8acf4043625d5ba14/2.2/Dockerfile) - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/9cac6280bc40c7d606f7fd2dfce0f77fefd056a8/1.10/Dockerfile) # Quick reference (cont.) @@ -38,7 +38,7 @@ WARNING: [https://github.com/composer/docker/issues](https://github.com/composer/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/composer/), [`arm32v6`](https://hub.docker.com/r/arm32v6/composer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/composer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/composer/), [`i386`](https://hub.docker.com/r/i386/composer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/composer/), [`s390x`](https://hub.docker.com/r/s390x/composer/) + [`amd64`](https://hub.docker.com/r/amd64/composer/), [`arm32v6`](https://hub.docker.com/r/arm32v6/composer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/composer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/composer/), [`i386`](https://hub.docker.com/r/i386/composer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/composer/), [`riscv64`](https://hub.docker.com/r/riscv64/composer/), [`s390x`](https://hub.docker.com/r/s390x/composer/) - **Published image artifact details**: [repo-info repo's `repos/composer/` directory](https://github.com/docker-library/repo-info/blob/master/repos/composer) ([history](https://github.com/docker-library/repo-info/commits/master/repos/composer)) From abf6721878af2e45f8ca9ab3acd95ec8e49cb381 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jun 2024 12:33:17 -0700 Subject: [PATCH 1256/2686] Run update.sh --- alt/README.md | 1 + matomo/README.md | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/alt/README.md b/alt/README.md index 894240cb6023..a1f2b97991d2 100644 --- a/alt/README.md +++ b/alt/README.md @@ -26,6 +26,7 @@ WARNING: - [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/924b51de1708a3c8b0dd76193a414460ff721c35/x86_64/Dockerfile) - [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/fc69e420b7b8c5b62cd3d8b13562f122ecdcc2d7/x86_64/Dockerfile) +- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/342757f6f3ca8c82bb6a4169ceef071ff3a8a879/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 6904a5544e9e..eddda1c26db6 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.3-apache`, `5.0-apache`, `5-apache`, `apache`, `5.0.3`, `5.0`, `5`, `latest`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/apache/Dockerfile) -- [`5.0.3-fpm`, `5.0-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/fpm/Dockerfile) -- [`5.0.3-fpm-alpine`, `5.0-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/8137a7127656d793a7da44fdef7b147b931ba68f/fpm-alpine/Dockerfile) +- [`5.1.0-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.0`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/apache/Dockerfile) +- [`5.1.0-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm/Dockerfile) +- [`5.1.0-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm-alpine/Dockerfile) # Quick reference (cont.) From 53071da54993f1698d2920f14528c4887fac19d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jun 2024 17:08:50 -0700 Subject: [PATCH 1257/2686] Run update.sh --- bash/README.md | 2 +- mariadb/README.md | 24 ++++++++++++------------ node/README.md | 12 ++++++------ oraclelinux/README.md | 18 +++++++++--------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/bash/README.md b/bash/README.md index 42e894dc85c8..1fcdbc60da8e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240603`, `devel`, `devel-20240603-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/42d4f5b2df9f58ffc485a9a1891d607628a6d942/devel/Dockerfile) +- [`devel-20240604`, `devel`, `devel-20240604-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/91fe98e6c77eceec9152efa61a712be70e7e1637/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index fedbe68e56ce..697250426236 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,18 +26,18 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/11.5-ubi/Dockerfile) -- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/7dabf47ac1c0f2f324563f5a0616812bf332f781/11.5/Dockerfile) -- [`11.4.2-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.2-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/11.4-ubi/Dockerfile) -- [`11.4.2-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.2`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/4e20774a56c8fb93cec9ee9d4a5b476bc0f8dd0d/11.4/Dockerfile) -- [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.2/Dockerfile) -- [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/11.1/Dockerfile) -- [`10.11.8-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.8-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/10.11-ubi/Dockerfile) -- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `10.11.8`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.11/Dockerfile) -- [`10.6.18-ubi9`, `10.6-ubi9`, `10.6.18-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/eac33f601ec635b4e0ce921efc6ac63884abceaf/10.6-ubi/Dockerfile) -- [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.6/Dockerfile) -- [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.5/Dockerfile) -- [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/44ed2e231207787c08d56acc94b79d5f06efe006/10.4/Dockerfile) +- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5-ubi/Dockerfile) +- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5/Dockerfile) +- [`11.4.2-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.2-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4-ubi/Dockerfile) +- [`11.4.2-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.2`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4/Dockerfile) +- [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.2/Dockerfile) +- [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.1/Dockerfile) +- [`10.11.8-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.8-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11-ubi/Dockerfile) +- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `10.11.8`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11/Dockerfile) +- [`10.6.18-ubi9`, `10.6-ubi9`, `10.6.18-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6-ubi/Dockerfile) +- [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6/Dockerfile) +- [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.5/Dockerfile) +- [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.4/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 89ce7ab42f30..559b8fcdc483 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.2-alpine3.19`, `22.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.2-alpine`, `22.2-alpine3.20`, `22.2.0-alpine`, `22.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.2`, `22.2-bookworm`, `22.2.0`, `22.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.2-bookworm-slim`, `22.2-slim`, `22.2.0-bookworm-slim`, `22.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.2-bullseye`, `22.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.2-bullseye-slim`, `22.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/14ae63a78d5e38557a56822bd2b1094d038e52a4/22/bullseye-slim/Dockerfile) +- [`22-alpine3.19`, `22.3-alpine3.19`, `22.3.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/alpine3.19/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.3-alpine`, `22.3-alpine3.20`, `22.3.0-alpine`, `22.3.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/alpine3.20/Dockerfile) +- [`22`, `22-bookworm`, `22.3`, `22.3-bookworm`, `22.3.0`, `22.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bookworm/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.3-bookworm-slim`, `22.3-slim`, `22.3.0-bookworm-slim`, `22.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bookworm-slim/Dockerfile) +- [`22-bullseye`, `22.3-bullseye`, `22.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye/Dockerfile) +- [`22-bullseye-slim`, `22.3-bullseye-slim`, `22.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.19/Dockerfile) - [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.20/Dockerfile) - [`20`, `20-bookworm`, `20.14`, `20.14-bookworm`, `20.14.0`, `20.14.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 9a8242d44ece..a1b7780aac4f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a44abc66997043061e72468c12ee26dcb11930b4/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7-slim-fips/Dockerfile) # Quick reference (cont.) From 086ac3487917cea08572d2a70baed1d9882ccd8e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Jun 2024 18:09:01 -0700 Subject: [PATCH 1258/2686] Run update.sh --- haproxy/README.md | 4 ++-- openjdk/README.md | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index d1c09514e1a8..fee63db837e1 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,8 +28,8 @@ WARNING: - [`3.1-dev0-alpine`, `3.1-dev-alpine`, `3.1-dev0-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/alpine/Dockerfile) - [`3.0.1`, `3.0`, `lts`, `latest`, `3.0.1-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/Dockerfile) - [`3.0.1-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.1-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/alpine/Dockerfile) -- [`2.9.7`, `2.9`, `2.9.7-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.9/Dockerfile) -- [`2.9.7-alpine`, `2.9-alpine`, `2.9.7-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.9/alpine/Dockerfile) +- [`2.9.8`, `2.9`, `2.9.8-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/7a42aff80e0da2db2920bc4d338fc634ad4f8e85/2.9/Dockerfile) +- [`2.9.8-alpine`, `2.9-alpine`, `2.9.8-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/7a42aff80e0da2db2920bc4d338fc634ad4f8e85/2.9/alpine/Dockerfile) - [`2.8.9`, `2.8`, `2.8.9-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) - [`2.8.9-alpine`, `2.8-alpine`, `2.8.9-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.8/alpine/Dockerfile) - [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 8361331326ef..aa76b4a6481d 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,6 +42,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags +- [`24-ea-1-jdk-oraclelinux9`, `24-ea-1-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-1-jdk-oracle`, `24-ea-1-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-1-jdk-oraclelinux8`, `24-ea-1-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-1-jdk-bookworm`, `24-ea-1-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/bookworm/Dockerfile) +- [`24-ea-1-jdk-slim-bookworm`, `24-ea-1-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-1-jdk-slim`, `24-ea-1-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-1-jdk-bullseye`, `24-ea-1-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/bullseye/Dockerfile) +- [`24-ea-1-jdk-slim-bullseye`, `24-ea-1-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-1-jdk-windowsservercore-ltsc2022`, `24-ea-1-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-1-jdk-windowsservercore-1809`, `24-ea-1-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-1-jdk-nanoserver-1809`, `24-ea-1-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-ea-26-jdk-oraclelinux9`, `23-ea-26-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-26-jdk-oracle`, `23-ea-26-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) - [`23-ea-26-jdk-oraclelinux8`, `23-ea-26-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux8/Dockerfile) - [`23-ea-26-jdk-bookworm`, `23-ea-26-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/bookworm/Dockerfile) @@ -54,6 +63,15 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags +- `24-ea-1-jdk`, `24-ea-1`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: + - [`24-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-1-jdk-windowsservercore`, `24-ea-1-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-1-jdk-nanoserver`, `24-ea-1-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-ea-26-jdk`, `23-ea-26`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - [`23-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) - [`23-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) From 53e6c16356263dec71011234deff8c43ea89a56c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jun 2024 10:08:44 -0700 Subject: [PATCH 1259/2686] Run update.sh --- docker/README.md | 30 +++++++++++++++--------------- elasticsearch/README.md | 2 +- elixir/README.md | 36 ++++++++++++++++++------------------ kibana/README.md | 2 +- logstash/README.md | 2 +- wordpress/README.md | 18 +++++++++--------- 6 files changed, 45 insertions(+), 45 deletions(-) diff --git a/docker/README.md b/docker/README.md index 1fdfb7430dc5..0ee600d183d8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,33 +28,33 @@ WARNING: ## Simple Tags -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/cli/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/6f200b90d58f9ffba42268df0e37bf0f14892765/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/357294b08515ffb3fed79339bbe095cfe723c4ee/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 8fdd67717066..c5c38456f99b 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/elasticsearch/Dockerfile) +- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/elasticsearch/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index bb6e9d93446c..4697f33ab422 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,24 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.0-rc.1`, `1.17.0-rc`, `1.17`, `1.17.0-rc.1-otp-27`, `1.17.0-rc-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/Dockerfile) -- [`1.17.0-rc.1-slim`, `1.17.0-rc-slim`, `1.17-slim`, `1.17.0-rc.1-otp-27-slim`, `1.17.0-rc-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/slim/Dockerfile) -- [`1.17.0-rc.1-alpine`, `1.17.0-rc-alpine`, `1.17-alpine`, `1.17.0-rc.1-otp-27-alpine`, `1.17.0-rc-otp-27-alpine`, `1.17-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/alpine/Dockerfile) -- [`1.17.0-rc.1-otp-25`, `1.17.0-rc-otp-25`, `1.17-otp-25`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25/Dockerfile) -- [`1.17.0-rc.1-otp-25-alpine`, `1.17.0-rc-otp-25-alpine`, `1.17-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25-alpine/Dockerfile) -- [`1.17.0-rc.1-otp-25-slim`, `1.17.0-rc-otp-25-slim`, `1.17-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-25-slim/Dockerfile) -- [`1.17.0-rc.1-otp-26`, `1.17.0-rc-otp-26`, `1.17-otp-26`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26/Dockerfile) -- [`1.17.0-rc.1-otp-26-alpine`, `1.17.0-rc-otp-26-alpine`, `1.17-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26-alpine/Dockerfile) -- [`1.17.0-rc.1-otp-26-slim`, `1.17.0-rc-otp-26-slim`, `1.17-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/c03619c3c006c6218ed6692ea0d18244651b9f00/1.17/otp-26-slim/Dockerfile) -- [`1.16.3`, `1.16`, `latest`, `1.16.3-otp-26`, `1.16-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) -- [`1.16.3-slim`, `1.16-slim`, `slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) -- [`1.16.3-alpine`, `1.16-alpine`, `alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) -- [`1.16.3-otp-24`, `1.16-otp-24`, `otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24/Dockerfile) -- [`1.16.3-otp-24-alpine`, `1.16-otp-24-alpine`, `otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-alpine/Dockerfile) -- [`1.16.3-otp-24-slim`, `1.16-otp-24-slim`, `otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-slim/Dockerfile) -- [`1.16.3-otp-25`, `1.16-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25/Dockerfile) -- [`1.16.3-otp-25-alpine`, `1.16-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-alpine/Dockerfile) -- [`1.16.3-otp-25-slim`, `1.16-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-slim/Dockerfile) +- [`1.17.0`, `1.17`, `latest`, `1.17.0-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/Dockerfile) +- [`1.17.0-slim`, `1.17-slim`, `slim`, `1.17.0-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/slim/Dockerfile) +- [`1.17.0-alpine`, `1.17-alpine`, `alpine`, `1.17.0-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/alpine/Dockerfile) +- [`1.17.0-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25/Dockerfile) +- [`1.17.0-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25-alpine/Dockerfile) +- [`1.17.0-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25-slim/Dockerfile) +- [`1.17.0-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26/Dockerfile) +- [`1.17.0-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26-alpine/Dockerfile) +- [`1.17.0-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26-slim/Dockerfile) +- [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) +- [`1.16.3-slim`, `1.16-slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) +- [`1.16.3-alpine`, `1.16-alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) +- [`1.16.3-otp-24`, `1.16-otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24/Dockerfile) +- [`1.16.3-otp-24-alpine`, `1.16-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-alpine/Dockerfile) +- [`1.16.3-otp-24-slim`, `1.16-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-slim/Dockerfile) +- [`1.16.3-otp-25`, `1.16-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25/Dockerfile) +- [`1.16.3-otp-25-alpine`, `1.16-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-alpine/Dockerfile) +- [`1.16.3-otp-25-slim`, `1.16-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-slim/Dockerfile) - [`1.15.8`, `1.15`, `1.15.8-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/Dockerfile) - [`1.15.8-slim`, `1.15-slim`, `1.15.8-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/slim/Dockerfile) - [`1.15.8-alpine`, `1.15-alpine`, `1.15.8-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/alpine/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 554b0ffcd92a..fe4b855330e8 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/kibana/Dockerfile) +- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/kibana/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 189efc0e9341..d711bdbd9b6c 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.0`](https://github.com/elastic/dockerfiles/blob/08f6d75720db425559cc3b889d7701c428546b21/logstash/Dockerfile) +- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/logstash/Dockerfile) - [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 1c052d5647e6..0db39f02c9fc 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-beta1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-beta1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-beta1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-beta1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-beta1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-beta1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-beta1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-beta1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-beta1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4d3f10a0dd347140e05f271a17e4b72f9b575b3b/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-beta2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-beta2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-beta2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-beta2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-beta2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-beta2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-beta2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-beta2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-beta2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 624b541acca85d8f76adc1d96e54387700bf202b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jun 2024 11:09:26 -0700 Subject: [PATCH 1260/2686] Run update.sh --- rakudo-star/README.md | 4 ++-- redmine/README.md | 12 ++++++------ ruby/README.md | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 73cf96f7cd40..08fceb5aac0f 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.04`, `bookworm`](https://github.com/Raku/docker/blob/486b7ff7508c5dfd4b859518cdc9672ef9a5c815/2024.04/bookworm/Dockerfile) -- [`alpine`, `2024.04-alpine`](https://github.com/Raku/docker/blob/486b7ff7508c5dfd4b859518cdc9672ef9a5c815/2024.04/alpine/Dockerfile) +- [`latest`, `2024.05`, `bookworm`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/bookworm/Dockerfile) +- [`alpine`, `2024.05-alpine`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 43028525ac7e..24ba0243fd58 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.1/bookworm/Dockerfile) -- [`5.1.2-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.2-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.1/alpine3.20/Dockerfile) -- [`5.1.2-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.1/alpine3.19/Dockerfile) -- [`5.0.8`, `5.0`, `5.0.8-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2ab2ec39c515e0f4ef96674751d1363161aa63d4/5.0/bookworm/Dockerfile) -- [`5.0.8-alpine3.20`, `5.0-alpine3.20`, `5.0.8-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.0/alpine3.20/Dockerfile) -- [`5.0.8-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/c8dc403ae41f19c6017daac7596bc14a6ae20207/5.0/alpine3.19/Dockerfile) +- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/bookworm/Dockerfile) +- [`5.1.3-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.3-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/alpine3.20/Dockerfile) +- [`5.1.3-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/alpine3.19/Dockerfile) +- [`5.0.9`, `5.0`, `5.0.9-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/bookworm/Dockerfile) +- [`5.0.9-alpine3.20`, `5.0-alpine3.20`, `5.0.9-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/alpine3.20/Dockerfile) +- [`5.0.9-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index d924e257c736..b21a68d61161 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -30,12 +30,12 @@ WARNING: - [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) - [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.4-rc/alpine3.20/Dockerfile) - [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.2-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.2`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/bookworm/Dockerfile) -- [`3.3.2-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.2-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/slim-bookworm/Dockerfile) -- [`3.3.2-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/bullseye/Dockerfile) -- [`3.3.2-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/slim-bullseye/Dockerfile) -- [`3.3.2-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.2-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/alpine3.20/Dockerfile) -- [`3.3.2-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/c5a28011c2bdefb4861ab10ab203dd9e948c0325/3.3/alpine3.19/Dockerfile) +- [`3.3.3-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.3`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bookworm/Dockerfile) +- [`3.3.3-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.3-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bookworm/Dockerfile) +- [`3.3.3-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bullseye/Dockerfile) +- [`3.3.3-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bullseye/Dockerfile) +- [`3.3.3-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.3-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.20/Dockerfile) +- [`3.3.3-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.19/Dockerfile) - [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) - [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) - [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) From 1cf1a2bfe3e343dea0bc438020c7d0654240717d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jun 2024 15:08:43 -0700 Subject: [PATCH 1261/2686] Run update.sh --- docker/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docker/README.md b/docker/README.md index 0ee600d183d8..02b9e6436b4d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,11 @@ WARNING: ## Simple Tags +- [`27.0.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/cli/Dockerfile) +- [`27.0.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.0.0-rc.1-dind-alpine3.20`, `27.0.0-rc.1`, `27-rc`, `rc`, `27.0.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/dind/Dockerfile) +- [`27.0.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/dind-rootless/Dockerfile) +- [`27.0.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) @@ -46,6 +51,9 @@ WARNING: ## Shared Tags +- `27.0.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + - [`27.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) From 5086d42a6557494b150767326b6c6eb3a3d27999 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Jun 2024 20:09:05 -0700 Subject: [PATCH 1262/2686] Run update.sh --- debian/README.md | 56 +++++++++++++++++++++++------------------------ haskell/README.md | 6 +++-- 2 files changed, 32 insertions(+), 30 deletions(-) diff --git a/debian/README.md b/debian/README.md index 11d384800ad3..564f54db51e9 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,34 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240513`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240513-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240513`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240513-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240513`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/buster/Dockerfile) -- [`buster-slim`, `buster-20240513-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldoldstable/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/rc-buggy/Dockerfile) -- [`sid`, `sid-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/sid/Dockerfile) -- [`sid-slim`, `sid-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/sid/slim/Dockerfile) -- [`stable`, `stable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/stable/slim/Dockerfile) -- [`testing`, `testing-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240513`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240513-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c09b102c080f97f57f37deb015a3c4d037779ab6/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240612`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240612-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240612`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240612-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/slim/Dockerfile) +- [`buster`, `buster-20240612`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/buster/Dockerfile) +- [`buster-slim`, `buster-20240612-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/buster/slim/Dockerfile) +- [`experimental`, `experimental-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/experimental/Dockerfile) +- [`oldoldstable`, `oldoldstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldoldstable/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldoldstable/slim/Dockerfile) +- [`oldstable`, `oldstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/rc-buggy/Dockerfile) +- [`sid`, `sid-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/sid/Dockerfile) +- [`sid-slim`, `sid-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/sid/slim/Dockerfile) +- [`stable`, `stable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/slim/Dockerfile) +- [`testing`, `testing-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 09a321474b15..1657217b5989 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,8 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.2-buster`, `9.8-buster`, `9-buster`, `buster`, `9.8.2`, `9.8`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/buster/Dockerfile) -- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9-slim-buster`, `slim-buster`, `9.8.2-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/slim-buster/Dockerfile) +- [`9.10.1-buster`, `9.10-buster`, `9-buster`, `buster`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/buster/Dockerfile) +- [`9.10.1-slim-buster`, `9.10-slim-buster`, `9-slim-buster`, `slim-buster`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/slim-buster/Dockerfile) +- [`9.8.2-buster`, `9.8-buster`, `9.8.2`, `9.8`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/buster/Dockerfile) +- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9.8.2-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/slim-buster/Dockerfile) - [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/buster/Dockerfile) - [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/slim-buster/Dockerfile) - [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/buster/Dockerfile) From 9106efc310b6f8d2621ea169370f4ef898ceaa62 Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Thu, 13 Jun 2024 19:37:59 +0200 Subject: [PATCH 1263/2686] update emqx content (#2452) * update emqx content * emqx: address review comments --- emqx/content.md | 59 ++++++++++++++----------------------------------- 1 file changed, 17 insertions(+), 42 deletions(-) diff --git a/emqx/content.md b/emqx/content.md index 97327c0cf034..a2a612bb5b26 100644 --- a/emqx/content.md +++ b/emqx/content.md @@ -32,51 +32,35 @@ The EMQX broker runs as Linux user `emqx` in the docker container. All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. -By default, the environment variables with `EMQX_` prefix are mapped to key-value pairs in configuration files. - -You can change the prefix by overriding `HOCON_ENV_OVERRIDE_PREFIX`. - Example: -```bash -EMQX_LISTENERS__SSL__DEFAULT__ACCEPTORS <--> listeners.ssl.default.acceptors -EMQX_ZONES__DEFAULT__MQTT__MAX_PACKET_SIZE <--> zones.default.mqtt.max_packet_size -``` + EMQX_DASHBOARD__DEFAULT_PASSWORD <--> dashboard.default_password + EMQX_NODE__COOKIE <--> node.cookie + EMQX_LISTENERS__SSL__default__ENABLE <--> listeners.ssl.default.enable + +Note: The lowercase use of 'default' is not a typo. It is used to demonstrate that lowercase environment variables are equivalent. - Prefix `EMQX_` is removed -- All upper case letters is replaced with lower case letters +- All upper case letters are replaced with lower case letters - `__` is replaced with `.` -If `HOCON_ENV_OVERRIDE_PREFIX=DEV_` is set: - -```bash -DEV_LISTENER__SSL__EXTERNAL__ACCEPTORS <--> listener.ssl.external.acceptors -DEV_MQTT__MAX_PACKET_SIZE <--> mqtt.max_packet_size -DEV_LISTENERS__TCP__DEFAULT__BIND <--> listeners.tcp.default.bind -``` - For example, set MQTT TCP port to 1883 ```console -$ docker run -d --name emqx -e DEV_LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 %%IMAGE%%:latest +$ docker run -d --name emqx -e EMQX_DASHBOARD__DEFAULT_PASSWORD=mysecret -p 18083:18083 -p 1883:1883 %%IMAGE%%:latest ``` -Please read more about EMQX configuration in the [official documentation](https://www.emqx.io/docs/en/v5.0/admin/cfg.html). +Please read more about EMQX configuration in the [official documentation](https://docs.emqx.com/en/emqx/latest/configuration/configuration.html) #### EMQX node name configuration -| Options | Default | Mapped | Description | -|-------------|----------------|--------|----------------------------| -| `EMQX_NAME` | container name | none | EMQX node short name | -| `EMQX_HOST` | container IP | none | EMQX node host, IP or FQDN | +Environment variable `EMQX_NODE__NAME` allows you to specify an EMQX node name, which defaults to `@`. -These environment variables are used during container startup phase only in [docker-entrypoint.sh](./docker-entrypoint.sh). - -If `EMQX_NAME` and `EMQX_HOST` are set, and `EMQX_NODE_NAME` is not set, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. Otherwise `EMQX_NODE_NAME` is taken verbatim. +If not specified, EMQX determines its node name based on the running environment or other environment variables used for node discovery. ### Cluster -EMQX supports a variety of clustering methods, see our [documentation](https://www.emqx.io/docs/en/latest/deploy/cluster/intro.html) for details. +EMQX supports a variety of clustering methods, see our [documentation](https://docs.emqx.com/en/emqx/latest/deploy/cluster/create-cluster.html) for details. Let's create a static node list cluster from docker-compose. @@ -89,8 +73,7 @@ Let's create a static node list cluster from docker-compose. emqx1: image: %%IMAGE%%:latest environment: - - "EMQX_NAME=emqx" - - "EMQX_HOST=node1.emqx.io" + - "EMQX_NODE__NAME=emqx@node1.emqx.io" - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" networks: @@ -101,8 +84,7 @@ Let's create a static node list cluster from docker-compose. emqx2: image: %%IMAGE%%:latest environment: - - "EMQX_NAME=emqx" - - "EMQX_HOST=node2.emqx.io" + - "EMQX_NODE__NAME=emqx@node2.emqx.io" - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" networks: @@ -124,7 +106,7 @@ Let's create a static node list cluster from docker-compose. - View cluster ```bash - $ docker exec -it my_emqx_emqx1_1 sh -c "emqx_ctl cluster status" + $ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], stopped_nodes => []} ``` @@ -134,10 +116,9 @@ Let's create a static node list cluster from docker-compose. If you want to persist the EMQX docker container, you need to keep the following directories: - `/opt/emqx/data` -- `/opt/emqx/etc` - `/opt/emqx/log` -Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. In detail, one needs to specify the two environment variables: `EMQX_NAME` and `EMQX_HOST`, `EMQX_HOST` set as `127.0.0.1` or network alias would be useful. +Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. To make this work, one needs to set the host part of `EMQX_NODE__NAME` to something static that does not change when you restart or recreate the container. It could be container name, hostname or loopback IP address `127.0.0.1` if you only have one node. In if you use docker-compose, the configuration would look something like this: @@ -145,8 +126,6 @@ In if you use docker-compose, the configuration would look something like this: volumes: vol-emqx-data: name: foo-emqx-data - vol-emqx-etc: - name: foo-emqx-etc vol-emqx-log: name: foo-emqx-log @@ -155,19 +134,15 @@ services: image: %%IMAGE%%:latest restart: always environment: - EMQX_NAME: foo_emqx - EMQX_HOST: 127.0.0.1 + EMQX_NODE__NAME: foo_emqx@127.0.0.1 volumes: - vol-emqx-data:/opt/emqx/data - - vol-emqx-etc:/opt/emqx/etc - vol-emqx-log:/opt/emqx/log ``` -Note that `/opt/emqx/etc` contains some essential configuration files. If you want to mount a host directory in the container to persist configuration overrides, you will need to bootstrap it with [default configuration files](https://github.com/emqx/emqx/tree/master/apps/emqx/etc). - ### Kernel Tuning -Under Linux host machine, the easiest way is [Tuning guide](https://www.emqx.io/docs/en/latest/deploy/tune.html). +Under Linux host machine, the easiest way is [Tuning guide](https://docs.emqx.com/en/emqx/latest/performance/tune.html). If you want tune Linux kernel by docker, you must ensure your docker is latest version (>=1.12). From edfbb8c70fbb9e29f689bf2d456b61d3f3a89ce0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Jun 2024 11:08:50 -0700 Subject: [PATCH 1264/2686] Run update.sh --- dart/README.md | 4 +-- elasticsearch/README.md | 2 +- emqx/README.md | 59 ++++++++++++----------------------------- kibana/README.md | 2 +- logstash/README.md | 2 +- rust/README.md | 16 +++++------ 6 files changed, 30 insertions(+), 55 deletions(-) diff --git a/dart/README.md b/dart/README.md index 131fc65a4bd4..ab9095d003f6 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.3-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.3`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6ac1650f30c0253aee1be07ceab3d8860efe7d2a/stable/bookworm/Dockerfile) -- [`3.5.0-180.3.beta-sdk`, `beta-sdk`, `3.5.0-180.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6ac1650f30c0253aee1be07ceab3d8860efe7d2a/beta/bookworm/Dockerfile) +- [`3.4.4-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.4`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/stable/bookworm/Dockerfile) +- [`3.5.0-180.3.beta-sdk`, `beta-sdk`, `3.5.0-180.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index c5c38456f99b..1aed4c3cd900 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/elasticsearch/Dockerfile) -- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/elasticsearch/Dockerfile) +- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index ec50615894de..81aa54d9ec26 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -85,51 +85,35 @@ The EMQX broker runs as Linux user `emqx` in the docker container. All EMQX Configuration in [`etc/emqx.conf`](https://github.com/emqx/emqx/blob/master/apps/emqx/etc/emqx.conf) can be configured via environment variables. -By default, the environment variables with `EMQX_` prefix are mapped to key-value pairs in configuration files. - -You can change the prefix by overriding `HOCON_ENV_OVERRIDE_PREFIX`. - Example: -```bash -EMQX_LISTENERS__SSL__DEFAULT__ACCEPTORS <--> listeners.ssl.default.acceptors -EMQX_ZONES__DEFAULT__MQTT__MAX_PACKET_SIZE <--> zones.default.mqtt.max_packet_size -``` + EMQX_DASHBOARD__DEFAULT_PASSWORD <--> dashboard.default_password + EMQX_NODE__COOKIE <--> node.cookie + EMQX_LISTENERS__SSL__default__ENABLE <--> listeners.ssl.default.enable + +Note: The lowercase use of 'default' is not a typo. It is used to demonstrate that lowercase environment variables are equivalent. - Prefix `EMQX_` is removed -- All upper case letters is replaced with lower case letters +- All upper case letters are replaced with lower case letters - `__` is replaced with `.` -If `HOCON_ENV_OVERRIDE_PREFIX=DEV_` is set: - -```bash -DEV_LISTENER__SSL__EXTERNAL__ACCEPTORS <--> listener.ssl.external.acceptors -DEV_MQTT__MAX_PACKET_SIZE <--> mqtt.max_packet_size -DEV_LISTENERS__TCP__DEFAULT__BIND <--> listeners.tcp.default.bind -``` - For example, set MQTT TCP port to 1883 ```console -$ docker run -d --name emqx -e DEV_LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 emqx:latest +$ docker run -d --name emqx -e EMQX_DASHBOARD__DEFAULT_PASSWORD=mysecret -p 18083:18083 -p 1883:1883 emqx:latest ``` -Please read more about EMQX configuration in the [official documentation](https://www.emqx.io/docs/en/v5.0/admin/cfg.html). +Please read more about EMQX configuration in the [official documentation](https://docs.emqx.com/en/emqx/latest/configuration/configuration.html) #### EMQX node name configuration -| Options | Default | Mapped | Description | -|-------------|----------------|--------|----------------------------| -| `EMQX_NAME` | container name | none | EMQX node short name | -| `EMQX_HOST` | container IP | none | EMQX node host, IP or FQDN | +Environment variable `EMQX_NODE__NAME` allows you to specify an EMQX node name, which defaults to `@`. -These environment variables are used during container startup phase only in [docker-entrypoint.sh](./docker-entrypoint.sh). - -If `EMQX_NAME` and `EMQX_HOST` are set, and `EMQX_NODE_NAME` is not set, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`. Otherwise `EMQX_NODE_NAME` is taken verbatim. +If not specified, EMQX determines its node name based on the running environment or other environment variables used for node discovery. ### Cluster -EMQX supports a variety of clustering methods, see our [documentation](https://www.emqx.io/docs/en/latest/deploy/cluster/intro.html) for details. +EMQX supports a variety of clustering methods, see our [documentation](https://docs.emqx.com/en/emqx/latest/deploy/cluster/create-cluster.html) for details. Let's create a static node list cluster from docker-compose. @@ -142,8 +126,7 @@ Let's create a static node list cluster from docker-compose. emqx1: image: emqx:latest environment: - - "EMQX_NAME=emqx" - - "EMQX_HOST=node1.emqx.io" + - "EMQX_NODE__NAME=emqx@node1.emqx.io" - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" networks: @@ -154,8 +137,7 @@ Let's create a static node list cluster from docker-compose. emqx2: image: emqx:latest environment: - - "EMQX_NAME=emqx" - - "EMQX_HOST=node2.emqx.io" + - "EMQX_NODE__NAME=emqx@node2.emqx.io" - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" networks: @@ -177,7 +159,7 @@ Let's create a static node list cluster from docker-compose. - View cluster ```bash - $ docker exec -it my_emqx_emqx1_1 sh -c "emqx_ctl cluster status" + $ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], stopped_nodes => []} ``` @@ -187,10 +169,9 @@ Let's create a static node list cluster from docker-compose. If you want to persist the EMQX docker container, you need to keep the following directories: - `/opt/emqx/data` -- `/opt/emqx/etc` - `/opt/emqx/log` -Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. In detail, one needs to specify the two environment variables: `EMQX_NAME` and `EMQX_HOST`, `EMQX_HOST` set as `127.0.0.1` or network alias would be useful. +Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. To make this work, one needs to set the host part of `EMQX_NODE__NAME` to something static that does not change when you restart or recreate the container. It could be container name, hostname or loopback IP address `127.0.0.1` if you only have one node. In if you use docker-compose, the configuration would look something like this: @@ -198,8 +179,6 @@ In if you use docker-compose, the configuration would look something like this: volumes: vol-emqx-data: name: foo-emqx-data - vol-emqx-etc: - name: foo-emqx-etc vol-emqx-log: name: foo-emqx-log @@ -208,19 +187,15 @@ services: image: emqx:latest restart: always environment: - EMQX_NAME: foo_emqx - EMQX_HOST: 127.0.0.1 + EMQX_NODE__NAME: foo_emqx@127.0.0.1 volumes: - vol-emqx-data:/opt/emqx/data - - vol-emqx-etc:/opt/emqx/etc - vol-emqx-log:/opt/emqx/log ``` -Note that `/opt/emqx/etc` contains some essential configuration files. If you want to mount a host directory in the container to persist configuration overrides, you will need to bootstrap it with [default configuration files](https://github.com/emqx/emqx/tree/master/apps/emqx/etc). - ### Kernel Tuning -Under Linux host machine, the easiest way is [Tuning guide](https://www.emqx.io/docs/en/latest/deploy/tune.html). +Under Linux host machine, the easiest way is [Tuning guide](https://docs.emqx.com/en/emqx/latest/performance/tune.html). If you want tune Linux kernel by docker, you must ensure your docker is latest version (>=1.12). diff --git a/kibana/README.md b/kibana/README.md index fe4b855330e8..0dd017dc3a74 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/kibana/Dockerfile) -- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/kibana/Dockerfile) +- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index d711bdbd9b6c..9432f96c87a3 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -25,7 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/logstash/Dockerfile) -- [`7.17.21`](https://github.com/elastic/dockerfiles/blob/948af89c718b515fa24fa06f6a6890ed32e3b120/logstash/Dockerfile) +- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/logstash/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 38c6c23994e6..9b000e09dc2c 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.78-buster`, `1.78.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/buster/Dockerfile) -- [`1-slim-buster`, `1.78-slim-buster`, `1.78.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/buster/slim/Dockerfile) -- [`1-bullseye`, `1.78-bullseye`, `1.78.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.78-slim-bullseye`, `1.78.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.78-bookworm`, `1.78.0-bookworm`, `bookworm`, `1`, `1.78`, `1.78.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.78-slim-bookworm`, `1.78.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.78-slim`, `1.78.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.78-alpine3.19`, `1.78.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/cc31986e1dfe94671c639231ecf0503942c121d9/1.78.0/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.78-alpine3.20`, `1.78.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.78-alpine`, `1.78.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/e2c6ff15ac68eb3ca95d05c491a48127936b40bd/1.78.0/alpine3.20/Dockerfile) +- [`1-buster`, `1.79-buster`, `1.79.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/buster/Dockerfile) +- [`1-slim-buster`, `1.79-slim-buster`, `1.79.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/buster/slim/Dockerfile) +- [`1-bullseye`, `1.79-bullseye`, `1.79.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/Dockerfile) +- [`1-slim-bullseye`, `1.79-slim-bullseye`, `1.79.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/slim/Dockerfile) +- [`1-bookworm`, `1.79-bookworm`, `1.79.0-bookworm`, `bookworm`, `1`, `1.79`, `1.79.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/Dockerfile) +- [`1-slim-bookworm`, `1.79-slim-bookworm`, `1.79.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.79-slim`, `1.79.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/slim/Dockerfile) +- [`1-alpine3.19`, `1.79-alpine3.19`, `1.79.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.19/Dockerfile) +- [`1-alpine3.20`, `1.79-alpine3.20`, `1.79.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.79-alpine`, `1.79.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.20/Dockerfile) # Quick reference (cont.) From 2ae41bc4dac419d2fc91c99dc9d42558c9ba4006 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Jun 2024 18:08:48 -0700 Subject: [PATCH 1265/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index aa76b4a6481d..50db08003924 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-1-jdk-oraclelinux9`, `24-ea-1-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-1-jdk-oracle`, `24-ea-1-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-1-jdk-oraclelinux8`, `24-ea-1-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-1-jdk-bookworm`, `24-ea-1-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/bookworm/Dockerfile) -- [`24-ea-1-jdk-slim-bookworm`, `24-ea-1-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-1-jdk-slim`, `24-ea-1-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-1-jdk-bullseye`, `24-ea-1-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/bullseye/Dockerfile) -- [`24-ea-1-jdk-slim-bullseye`, `24-ea-1-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-1-jdk-windowsservercore-ltsc2022`, `24-ea-1-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-1-jdk-windowsservercore-1809`, `24-ea-1-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-1-jdk-nanoserver-1809`, `24-ea-1-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-26-jdk-oraclelinux9`, `23-ea-26-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-26-jdk-oracle`, `23-ea-26-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-26-jdk-oraclelinux8`, `23-ea-26-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-26-jdk-bookworm`, `23-ea-26-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/bookworm/Dockerfile) -- [`23-ea-26-jdk-slim-bookworm`, `23-ea-26-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-26-jdk-slim`, `23-ea-26-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-26-jdk-bullseye`, `23-ea-26-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/bullseye/Dockerfile) -- [`23-ea-26-jdk-slim-bullseye`, `23-ea-26-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-26-jdk-windowsservercore-ltsc2022`, `23-ea-26-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-26-jdk-windowsservercore-1809`, `23-ea-26-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-26-jdk-nanoserver-1809`, `23-ea-26-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-2-jdk-oraclelinux9`, `24-ea-2-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-2-jdk-oracle`, `24-ea-2-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-2-jdk-oraclelinux8`, `24-ea-2-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-2-jdk-bookworm`, `24-ea-2-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/bookworm/Dockerfile) +- [`24-ea-2-jdk-slim-bookworm`, `24-ea-2-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-2-jdk-slim`, `24-ea-2-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-2-jdk-bullseye`, `24-ea-2-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/bullseye/Dockerfile) +- [`24-ea-2-jdk-slim-bullseye`, `24-ea-2-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-2-jdk-windowsservercore-ltsc2022`, `24-ea-2-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-2-jdk-windowsservercore-1809`, `24-ea-2-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-2-jdk-nanoserver-1809`, `24-ea-2-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-27-jdk-oraclelinux9`, `23-ea-27-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-27-jdk-oracle`, `23-ea-27-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-27-jdk-oraclelinux8`, `23-ea-27-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-27-jdk-bookworm`, `23-ea-27-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/bookworm/Dockerfile) +- [`23-ea-27-jdk-slim-bookworm`, `23-ea-27-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-27-jdk-slim`, `23-ea-27-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-27-jdk-bullseye`, `23-ea-27-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/bullseye/Dockerfile) +- [`23-ea-27-jdk-slim-bullseye`, `23-ea-27-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-27-jdk-windowsservercore-ltsc2022`, `23-ea-27-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-27-jdk-windowsservercore-1809`, `23-ea-27-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-27-jdk-nanoserver-1809`, `23-ea-27-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-1-jdk`, `24-ea-1`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-1-jdk-windowsservercore`, `24-ea-1-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-1-jdk-nanoserver`, `24-ea-1-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e655fc6aa19ab37eb541ed05646b5e79747d39f4/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-26-jdk`, `23-ea-26`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-26-jdk-windowsservercore`, `23-ea-26-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-26-jdk-nanoserver`, `23-ea-26-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/766b1164e567bb1017eea224f7c910bc9668af92/23/jdk/windows/nanoserver-1809/Dockerfile) +- `24-ea-2-jdk`, `24-ea-2`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: + - [`24-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-2-jdk-windowsservercore`, `24-ea-2-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-2-jdk-nanoserver`, `24-ea-2-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-27-jdk`, `23-ea-27`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-27-jdk-windowsservercore`, `23-ea-27-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-27-jdk-nanoserver`, `23-ea-27-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 09c4314a4e038a5b3db49fdcd0ee0f8b98466ab9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Jun 2024 11:08:48 -0700 Subject: [PATCH 1266/2686] Run update.sh --- crate/README.md | 2 +- golang/README.md | 20 ++++++++++---------- python/README.md | 16 ++++++++-------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/crate/README.md b/crate/README.md index dfd76cb7063f..41942c3dc22b 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.1`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/e7c38997baf9838961e5e9b3771275e00c17ee23/Dockerfile) +- [`5.7.2`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/aa2d1170ed5040ca10b99dcee4f8b63190e5b3c1/Dockerfile) - [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) - [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 39dc7788fa81..fc4124489316 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,18 +28,18 @@ WARNING: ## Simple Tags -- [`1.22.4-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bookworm/Dockerfile) -- [`1.22.4-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bullseye/Dockerfile) -- [`1.22.4-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.4-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/alpine3.20/Dockerfile) -- [`1.22.4-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/alpine3.19/Dockerfile) +- [`1.22.4-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) +- [`1.22.4-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bullseye/Dockerfile) +- [`1.22.4-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.4-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/alpine3.20/Dockerfile) +- [`1.22.4-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/alpine3.19/Dockerfile) - [`1.22.4-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.4-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) - [`1.22.4-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.4-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.11-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bookworm/Dockerfile) -- [`1.21.11-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bullseye/Dockerfile) -- [`1.21.11-alpine3.20`, `1.21-alpine3.20`, `1.21.11-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/alpine3.20/Dockerfile) -- [`1.21.11-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/alpine3.19/Dockerfile) +- [`1.21.11-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bookworm/Dockerfile) +- [`1.21.11-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bullseye/Dockerfile) +- [`1.21.11-alpine3.20`, `1.21-alpine3.20`, `1.21.11-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/alpine3.20/Dockerfile) +- [`1.21.11-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/alpine3.19/Dockerfile) - [`1.21.11-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.11-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) - [`1.21.11-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-ltsc2022/Dockerfile) @@ -48,7 +48,7 @@ WARNING: ## Shared Tags - `1.22.4`, `1.22`, `1`, `latest`: - - [`1.22.4-bookworm`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/bookworm/Dockerfile) + - [`1.22.4-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) - `1.22.4-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: @@ -58,7 +58,7 @@ WARNING: - [`1.22.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) - `1.21.11`, `1.21`: - - [`1.21.11-bookworm`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/bookworm/Dockerfile) + - [`1.21.11-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bookworm/Dockerfile) - [`1.21.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) - `1.21.11-windowsservercore`, `1.21-windowsservercore`: diff --git a/python/README.md b/python/README.md index 6946a3a19dc4..dbe622e596b5 100644 --- a/python/README.md +++ b/python/README.md @@ -32,32 +32,32 @@ WARNING: - [`3.13.0b2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bookworm/Dockerfile) - [`3.13.0b2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bullseye/Dockerfile) - [`3.13.0b2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.13-rc/alpine3.19/Dockerfile) - [`3.13.0b2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bookworm/Dockerfile) - [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bookworm/Dockerfile) - [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bullseye/Dockerfile) - [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bullseye/Dockerfile) -- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/alpine3.20/Dockerfile) -- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/alpine3.19/Dockerfile) +- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.12/alpine3.20/Dockerfile) +- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.12/alpine3.19/Dockerfile) - [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) - [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) - [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/alpine3.19/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.11/alpine3.19/Dockerfile) - [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) - [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) - [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bookworm/Dockerfile) - [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bullseye/Dockerfile) - [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.10/alpine3.20/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.10/alpine3.19/Dockerfile) - [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) - [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bookworm/Dockerfile) - [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bullseye/Dockerfile) From 9289818f3290a1ab787b90d01821be51ef7287b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Jun 2024 12:08:48 -0700 Subject: [PATCH 1267/2686] Run update.sh --- haproxy/README.md | 16 ++++++++-------- joomla/README.md | 30 +++++++++++++++--------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index fee63db837e1..08f0809f8b7c 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev0`, `3.1-dev`, `3.1-dev0-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/Dockerfile) -- [`3.1-dev0-alpine`, `3.1-dev-alpine`, `3.1-dev0-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/9a4501c94ca45dc96a871b504d32a997db090707/3.1/alpine/Dockerfile) -- [`3.0.1`, `3.0`, `lts`, `latest`, `3.0.1-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/Dockerfile) -- [`3.0.1-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.1-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/3fa44c97038614c4204f225f5b0fa80bfceb5791/3.0/alpine/Dockerfile) -- [`2.9.8`, `2.9`, `2.9.8-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/7a42aff80e0da2db2920bc4d338fc634ad4f8e85/2.9/Dockerfile) -- [`2.9.8-alpine`, `2.9-alpine`, `2.9.8-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/7a42aff80e0da2db2920bc4d338fc634ad4f8e85/2.9/alpine/Dockerfile) -- [`2.8.9`, `2.8`, `2.8.9-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.8/Dockerfile) -- [`2.8.9-alpine`, `2.8-alpine`, `2.8.9-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.8/alpine/Dockerfile) +- [`3.1-dev1`, `3.1-dev`, `3.1-dev1-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/Dockerfile) +- [`3.1-dev1-alpine`, `3.1-dev-alpine`, `3.1-dev1-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/alpine/Dockerfile) +- [`3.0.2`, `3.0`, `lts`, `latest`, `3.0.2-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/Dockerfile) +- [`3.0.2-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.2-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/alpine/Dockerfile) +- [`2.9.9`, `2.9`, `2.9.9-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/Dockerfile) +- [`2.9.9-alpine`, `2.9-alpine`, `2.9.9-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/alpine/Dockerfile) +- [`2.8.10`, `2.8`, `2.8.10-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/Dockerfile) +- [`2.8.10-alpine`, `2.8-alpine`, `2.8.10-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/alpine/Dockerfile) - [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) - [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.6/alpine/Dockerfile) - [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index 2c2c69d9c453..7a5ef081782f 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/apache/Dockerfile) -- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.1/fpm/Dockerfile) -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/apache/Dockerfile) -- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/5.1/php8.2/fpm/Dockerfile) -- [`5.1.1-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/apache/Dockerfile) -- [`5.1.1-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/fpm-alpine/Dockerfile) -- [`5.1.1-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d5366538dc03894ead790646fb35761d35735b6f/5.1/php8.3/fpm/Dockerfile) -- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/apache/Dockerfile) -- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.1/fpm/Dockerfile) -- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/apache/Dockerfile) -- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/d3713dc96c3bb1fd08be4239dab19a6ad78e867d/4.4/php8.2/fpm/Dockerfile) +- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/apache/Dockerfile) +- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm/Dockerfile) +- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/apache/Dockerfile) +- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm/Dockerfile) +- [`5.1.1-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/apache/Dockerfile) +- [`5.1.1-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.1-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm/Dockerfile) +- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/apache/Dockerfile) +- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm/Dockerfile) +- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/apache/Dockerfile) +- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From 187c504afac7cb894b44bb3ac938f6bc3124360c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Jun 2024 17:08:52 -0700 Subject: [PATCH 1268/2686] Run update.sh --- kong/README.md | 6 ++--- mongo/README.md | 62 ++++++++++++++++++++++++------------------------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/kong/README.md b/kong/README.md index d56f3f762427..32211025ef1e 100644 --- a/kong/README.md +++ b/kong/README.md @@ -25,9 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.0-ubuntu`, `3.7-ubuntu`, `3.7.0`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/7c1f670b717d308affd4843c8cf2f5c4402b6794/ubuntu/Dockerfile) -- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/4dec46ee7e14ddd3a10692814728ff85adb77f25/ubuntu/Dockerfile) -- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/e4ba2e351f3da34727fd016409a2669004b3fce0/ubuntu/Dockerfile) -- [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/2ccc1a4cc237f2cbe85e9226c8d0fa1e70f1d612/ubuntu/Dockerfile) +- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) +- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) +- [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) - [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) - [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index fbab6f8491c0..60aaf52af4d5 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,44 +28,44 @@ WARNING: ## Simple Tags -- [`8.0.0-rc7-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/Dockerfile) -- [`8.0.0-rc7-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc7-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc7-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc7-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc8-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/Dockerfile) +- [`8.0.0-rc8-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc8-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc8-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc8-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.11-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.11-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.11-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.11-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.16-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) - [`6.0.16-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.16-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.16-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.16-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.16-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.16-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.27-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.27-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.27-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.27-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8.0.0-rc7`, `8.0-rc`: - - [`8.0.0-rc7-jammy`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/Dockerfile) - - [`8.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc7-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc7-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fbcbdc6982746fb2c0f5a131f7d1d666461cd96f/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc8`, `8.0-rc`: + - [`8.0.0-rc8-jammy`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/Dockerfile) + - [`8.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc8-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc8-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.11`, `7.0`, `7`, `latest`: - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -74,8 +74,8 @@ WARNING: - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.11-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.16-rc0`, `6.0-rc`: - [`6.0.16-rc0-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -84,8 +84,8 @@ WARNING: - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.16-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) - `6.0.16-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.16-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.16-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.16-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.16-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.15`, `6.0`, `6`: - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -94,8 +94,8 @@ WARNING: - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.15-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.27`, `5.0`, `5`: - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -104,8 +104,8 @@ WARNING: - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.27-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From ff779ce102a25eca588206b3dfca7e8de7212ae9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jun 2024 11:08:50 -0700 Subject: [PATCH 1269/2686] Run update.sh --- ghost/README.md | 4 ++-- gradle/README.md | 33 ++++++++++++++++++--------------- photon/README.md | 6 +++--- r-base/README.md | 2 +- 4 files changed, 24 insertions(+), 21 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 9c4160cbb00b..046a7befc237 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.85.0`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/59e8917dd3a05049dfc80e663462abb7427dfdec/5/debian/Dockerfile) -- [`5.85.0-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/59e8917dd3a05049dfc80e663462abb7427dfdec/5/alpine/Dockerfile) +- [`5.85.1`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e33d9bde68a1fc6ce5087c6e32706f6a4a8d2636/5/debian/Dockerfile) +- [`5.85.1-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e33d9bde68a1fc6ce5087c6e32706f6a4a8d2636/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 16927fefc038..ef0fd8f89128 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,21 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk8/Dockerfile) -- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk8-focal/Dockerfile) -- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11/Dockerfile) -- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11-focal/Dockerfile) -- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk11-alpine/Dockerfile) -- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17/Dockerfile) -- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-focal/Dockerfile) -- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-alpine/Dockerfile) -- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk17-graal/Dockerfile) -- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21/Dockerfile) -- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21-alpine/Dockerfile) -- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk21-graal/Dockerfile) -- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current/Dockerfile) -- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current-alpine/Dockerfile) -- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/90ea9aab95d2d1cef922939cd7e9a623510e9d8a/jdk-lts-and-current-graal/Dockerfile) +- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8/Dockerfile) +- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8-focal/Dockerfile) +- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11/Dockerfile) +- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-focal/Dockerfile) +- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-alpine/Dockerfile) +- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17/Dockerfile) +- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-focal/Dockerfile) +- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-alpine/Dockerfile) +- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-graal/Dockerfile) +- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21/Dockerfile) +- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-alpine/Dockerfile) +- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-graal/Dockerfile) +- [`8.8.0-jdk22`, `8.8-jdk22`, `8-jdk22`, `jdk22`, `8.8.0-jdk22-jammy`, `8.8-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22/Dockerfile) +- [`8.8.0-jdk22-alpine`, `8.8-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-alpine/Dockerfile) +- [`8.8.0-jdk22-graal`, `8.8-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-graal/Dockerfile) +- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current/Dockerfile) +- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-alpine/Dockerfile) +- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) diff --git a/photon/README.md b/photon/README.md index a0587b57032d..5c30a2a47494 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240609`, `latest`](https://github.com/vmware/photon-docker-image/blob/284d5322e58aee8d7f6ba2b4b7bfc79887dbe30d/docker/Dockerfile) -- [`4.0`, `4.0-20240602`](https://github.com/vmware/photon-docker-image/blob/ee303a6cd53f2e7c89d54cdd65299c0877e1d270/docker/Dockerfile) -- [`3.0`, `3.0-20240609`](https://github.com/vmware/photon-docker-image/blob/603014ab5227a5bc4a8728d137e3c9d861f5bc61/docker/Dockerfile) +- [`5.0`, `5.0-20240616`, `latest`](https://github.com/vmware/photon-docker-image/blob/8b8212ff077ead15e0df5f61714625008e8a2dd1/docker/Dockerfile) +- [`4.0`, `4.0-20240616`](https://github.com/vmware/photon-docker-image/blob/67dcbfc943702591271c569e4f8a0e1c96759b8d/docker/Dockerfile) +- [`3.0`, `3.0-20240616`](https://github.com/vmware/photon-docker-image/blob/cbbc2bbea409cf009bf58be870413861458d1d99/docker/Dockerfile) # Quick reference (cont.) diff --git a/r-base/README.md b/r-base/README.md index 52c76aff5337..3d417496e519 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.0`, `latest`](https://github.com/rocker-org/rocker/blob/69c238cb525faab5486b1920601f3836b15e1384/r-base/4.4.0/Dockerfile) +- [`4.4.1`, `latest`](https://github.com/rocker-org/rocker/blob/91dd14805998d37ca5617b1853e8c60f5e032f28/r-base/4.4.1/Dockerfile) # Quick reference (cont.) From d9867ea8edab478a0db04760d8d8792c88c46df7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jun 2024 15:09:02 -0700 Subject: [PATCH 1270/2686] Run update.sh --- ubuntu/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index 329666d37ede..e0671732eeb8 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -27,7 +27,7 @@ WARNING: - [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-f351639c&id=f351639c499dcde9b2d9e3aeb2b0344c4a01fc1e) - [`22.04`, `jammy-20240530`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240530-457c5d99&id=457c5d999100a1eb971d38949b3fe798a84ad6fc) - [`23.10`, `mantic-20240530`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240530-8dcb055f&id=8dcb055fedbfd33752ede65d6534f702a3b81070) -- [`24.04`, `noble-20240530`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240530-7c82c42f&id=7c82c42f3c0b288babb5b241187e4af965e5767a) +- [`24.04`, `noble-20240605`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240605-baf9888c&id=baf9888c79d71a0ae98d4ef87c838ca3c91f2245) - [`24.10`, `oracular-20240527`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240527-15366d95&id=15366d954fc6c989ed956729b3a78ff7f1aff13a) # Quick reference (cont.) From dc4706bed5eed3882ed46bf5f744eea3bed8939e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jun 2024 16:10:41 -0700 Subject: [PATCH 1271/2686] Run update.sh --- consul/README.md | 6 ++--- express-gateway/README.md | 4 ++-- jobber/README.md | 4 ++-- nats-streaming/README.md | 46 ++------------------------------------- vault/README.md | 6 ++--- 5 files changed, 10 insertions(+), 56 deletions(-) diff --git a/consul/README.md b/consul/README.md index 7e09a56a8d42..b2a3e98cd9f8 100644 --- a/consul/README.md +++ b/consul/README.md @@ -28,9 +28,7 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p # Supported tags and respective `Dockerfile` links -- [`1.15.4`, `1.15`](https://github.com/hashicorp/docker-consul/blob/aedd0844f06e9eac9c4e130206219b1ff044a8c4/0.X/Dockerfile) -- [`1.14.8`, `1.14`](https://github.com/hashicorp/docker-consul/blob/7c095b8e988517c239526c0137caeb837c490807/0.X/Dockerfile) -- [`1.13.9`, `1.13`](https://github.com/hashicorp/docker-consul/blob/ae00ef4e7ff1cf68afd391838993bc53234cf5e6/0.X/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -38,7 +36,7 @@ Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and p [https://github.com/hashicorp/docker-consul/issues](https://github.com/hashicorp/docker-consul/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/consul/), [`arm32v6`](https://hub.docker.com/r/arm32v6/consul/), [`arm64v8`](https://hub.docker.com/r/arm64v8/consul/), [`i386`](https://hub.docker.com/r/i386/consul/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/consul/` directory](https://github.com/docker-library/repo-info/blob/master/repos/consul) ([history](https://github.com/docker-library/repo-info/commits/master/repos/consul)) diff --git a/express-gateway/README.md b/express-gateway/README.md index fe0ccb684f9e..ce83cca1464a 100644 --- a/express-gateway/README.md +++ b/express-gateway/README.md @@ -28,7 +28,7 @@ This project is no longer maintained. Read [here](https://github.com/ExpressGate # Supported tags and respective `Dockerfile` links -- [`1.x`, `1.16.x`, `1.16.11`, `latest`](https://github.com/ExpressGateway/docker-express-gateway/blob/fa2707c3b24bbd99710a100d7859566fa28817b8/alpine/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -36,7 +36,7 @@ This project is no longer maintained. Read [here](https://github.com/ExpressGate [https://github.com/ExpressGateway/express-gateway/issues](https://github.com/ExpressGateway/express-gateway/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/express-gateway/), [`arm64v8`](https://hub.docker.com/r/arm64v8/express-gateway/), [`ppc64le`](https://hub.docker.com/r/ppc64le/express-gateway/), [`s390x`](https://hub.docker.com/r/s390x/express-gateway/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/express-gateway/` directory](https://github.com/docker-library/repo-info/blob/master/repos/express-gateway) ([history](https://github.com/docker-library/repo-info/commits/master/repos/express-gateway)) diff --git a/jobber/README.md b/jobber/README.md index 389fc3c6c4ee..20fa6139bb10 100644 --- a/jobber/README.md +++ b/jobber/README.md @@ -28,7 +28,7 @@ This project is not actively maintained. See [dshearer/jobber#334](https://githu # Supported tags and respective `Dockerfile` links -- [`1.4.4-alpine3.11`, `1.4-alpine3.11`, `1-alpine3.11`, `latest`](https://github.com/dshearer/jobber-docker/blob/cd07d76987097b5389aa9be5f48df041aa74d699/alpine3.11/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -36,7 +36,7 @@ This project is not actively maintained. See [dshearer/jobber#334](https://githu [https://github.com/dshearer/jobber-docker/issues](https://github.com/dshearer/jobber-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/jobber/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/jobber/` directory](https://github.com/docker-library/repo-info/blob/master/repos/jobber) ([history](https://github.com/docker-library/repo-info/commits/master/repos/jobber)) diff --git a/nats-streaming/README.md b/nats-streaming/README.md index 4f60a6c593db..754bd8dc5b55 100644 --- a/nats-streaming/README.md +++ b/nats-streaming/README.md @@ -28,24 +28,7 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f # Supported tags and respective `Dockerfile` links -(See ["What's the difference between 'Shared' and 'Simple' tags?" in the FAQ](https://github.com/docker-library/faq#whats-the-difference-between-shared-and-simple-tags).) - -## Simple Tags - -- [`0.25.6-alpine3.18`, `0.25-alpine3.18`, `alpine3.18`, `0.25.6-alpine`, `0.25-alpine`, `alpine`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/alpine3.18/Dockerfile) -- [`0.25.6-scratch`, `0.25-scratch`, `scratch`, `0.25.6-linux`, `0.25-linux`, `linux`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/scratch/Dockerfile) -- [`0.25.6-windowsservercore-1809`, `0.25-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/windowsservercore-1809/Dockerfile) -- [`0.25.6-nanoserver-1809`, `0.25-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) - -## Shared Tags - -- `0.25.6`, `0.25`, `latest`: - - [`0.25.6-scratch`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/scratch/Dockerfile) - - [`0.25.6-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) -- `0.25.6-windowsservercore`, `0.25-windowsservercore`, `windowsservercore`: - - [`0.25.6-windowsservercore-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/windowsservercore-1809/Dockerfile) -- `0.25.6-nanoserver`, `0.25-nanoserver`, `nanoserver`: - - [`0.25.6-nanoserver-1809`](https://github.com/nats-io/nats-streaming-docker/blob/b58b5957ac6c7e2349e52a01ec61fb0afb376ac5/0.25.6/nanoserver-1809/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -53,7 +36,7 @@ The NATS Streaming Server is being deprecated. Critical bug fixes and security f [https://github.com/nats-io/nats-streaming-docker/issues](https://github.com/nats-io/nats-streaming-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nats-streaming/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nats-streaming/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nats-streaming/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nats-streaming/), [`windows-amd64`](https://hub.docker.com/r/winamd64/nats-streaming/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/nats-streaming/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nats-streaming) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nats-streaming)) @@ -346,31 +329,6 @@ Common Options: Details on how to configure further the NATS Streaming server can be found [here](https://docs.nats.io/nats-streaming-server/configuring) -# Image Variants - -The `nats-streaming` images come in many flavors, each designed for a specific use case. - -## `nats-streaming:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -## `nats-streaming:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - -## `nats-streaming:-windowsservercore` - -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. - -For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: - -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) - # License View [license information](https://github.com/nats-io/nats-streaming-server/blob/master/LICENSE) for the software contained in this image. diff --git a/vault/README.md b/vault/README.md index 070f38c14b56..65691f233134 100644 --- a/vault/README.md +++ b/vault/README.md @@ -28,9 +28,7 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu # Supported tags and respective `Dockerfile` links -- [`1.13.3`](https://github.com/hashicorp/docker-vault/blob/152f49d818b2764c437ee1fd20ee4d13791a8296/0.X/Dockerfile) -- [`1.12.7`](https://github.com/hashicorp/docker-vault/blob/48d258c844d65814e16c123f8d3750a4e73e4350/0.X/Dockerfile) -- [`1.11.11`](https://github.com/hashicorp/docker-vault/blob/e90ed0d020018291fabd520e9c36196c1e58f049/0.X/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -38,7 +36,7 @@ Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and pu [https://github.com/hashicorp/docker-vault/issues](https://github.com/hashicorp/docker-vault/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/vault/), [`arm32v6`](https://hub.docker.com/r/arm32v6/vault/), [`arm64v8`](https://hub.docker.com/r/arm64v8/vault/), [`i386`](https://hub.docker.com/r/i386/vault/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/vault/` directory](https://github.com/docker-library/repo-info/blob/master/repos/vault) ([history](https://github.com/docker-library/repo-info/commits/master/repos/vault)) From fbcb255df01f752e79825772cf74c8d9e3193ba8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Jun 2024 17:08:47 -0700 Subject: [PATCH 1272/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index 02b9e6436b4d..647ded8aeb6f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`27.0.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/cli/Dockerfile) -- [`27.0.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.0.0-rc.1-dind-alpine3.20`, `27.0.0-rc.1`, `27-rc`, `rc`, `27.0.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/dind/Dockerfile) -- [`27.0.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/dind-rootless/Dockerfile) -- [`27.0.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.0.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/cli/Dockerfile) +- [`27.0.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.0.0-rc.2-dind-alpine3.20`, `27.0.0-rc.2`, `27-rc`, `rc`, `27.0.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind/Dockerfile) +- [`27.0.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind-rootless/Dockerfile) +- [`27.0.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) @@ -51,9 +51,9 @@ WARNING: ## Shared Tags -- `27.0.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/822e301251f16c6096ce4bf60949cc92a8ad273b/27-rc/windows/windowsservercore-1809/Dockerfile) +- `27.0.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + - [`27.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) From 63ca28b21198ed62106074671ba1db7eb38a4fec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 11:08:57 -0700 Subject: [PATCH 1273/2686] Run update.sh --- geonetwork/README.md | 4 ++-- traefik/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/geonetwork/README.md b/geonetwork/README.md index f08ccdd57784..2b3e925cf164 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -26,8 +26,8 @@ WARNING: - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) -- [`4.2.9`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/9d0986dbc5a86e183599575e098f95f2f58e46cd/4.2.9/Dockerfile) -- [`4.4.4`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/91745d25b878729d5ef418e1d01454a3c48a0955/4.4.4/Dockerfile) +- [`4.2.10`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/4305f7ddf869d8023a56d2b71a8270f706cec8aa/4.2.10/Dockerfile) +- [`4.4.5`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/9afe0745446f0692445d1c177601b16cc5e2440b/4.4.5/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index f10a6cf9d0db..dfcfa4c30697 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.0.2-windowsservercore-ltsc2022`, `3.0.2-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.2-windowsservercore-1809`, `3.0.2-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/1809/Dockerfile) -- [`v3.0.2-nanoserver-ltsc2022`, `3.0.2-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.0.2`, `3.0.2`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/42b189eacc3f995fb07ff3093f24e2936aebbbd1/v3.0/alpine/Dockerfile) -- [`v2.11.4-windowsservercore-ltsc2022`, `2.11.4-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.4-windowsservercore-1809`, `2.11.4-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/1809/Dockerfile) -- [`v2.11.4-nanoserver-ltsc2022`, `2.11.4-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.4`, `2.11.4`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/8dfac0ac639317b2e8f2908a4b9ab91d88c062a5/v2.11/alpine/Dockerfile) +- [`v3.0.3-windowsservercore-ltsc2022`, `3.0.3-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.3-windowsservercore-1809`, `3.0.3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/1809/Dockerfile) +- [`v3.0.3-nanoserver-ltsc2022`, `3.0.3-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.0.3`, `3.0.3`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/alpine/Dockerfile) +- [`v2.11.5-windowsservercore-ltsc2022`, `2.11.5-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.5-windowsservercore-1809`, `2.11.5-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/1809/Dockerfile) +- [`v2.11.5-nanoserver-ltsc2022`, `2.11.5-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.5`, `2.11.5`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 3fafd2d47c2397b08182984a7b06735b5715ff24 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 12:09:07 -0700 Subject: [PATCH 1274/2686] Run update.sh --- kapacitor/README.md | 8 ++++---- orientdb/README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kapacitor/README.md b/kapacitor/README.md index 4338e34c8339..d8bd9345ac66 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7fb830f90eacb0e8e0dc8bc0257abbf34f9c5d2b/kapacitor/1.7/alpine/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/alpine/Dockerfile) +- [`1.7`, `1.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index c4adfab554bc..d6f3b6c75a3f 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.30`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/85a405a627ed7419d378850c87a901bd33a6c52a/release/3.2.x/3.2.30/Dockerfile) -- [`3.2.30-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/85a405a627ed7419d378850c87a901bd33a6c52a/release/3.2.x/3.2.30-tp3/Dockerfile) +- [`3.2.31`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31/Dockerfile) +- [`3.2.31-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) From d66b71949d295a481b87f038b4856cc818a9585b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 15:08:51 -0700 Subject: [PATCH 1275/2686] Run update.sh --- haproxy/README.md | 8 ++++---- tomcat/README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 08f0809f8b7c..cb6773f7a498 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,10 +32,10 @@ WARNING: - [`2.9.9-alpine`, `2.9-alpine`, `2.9.9-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/alpine/Dockerfile) - [`2.8.10`, `2.8`, `2.8.10-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/Dockerfile) - [`2.8.10-alpine`, `2.8-alpine`, `2.8.10-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/alpine/Dockerfile) -- [`2.6.17`, `2.6`, `2.6.17-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.6/Dockerfile) -- [`2.6.17-alpine`, `2.6-alpine`, `2.6.17-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.6/alpine/Dockerfile) -- [`2.4.26`, `2.4`, `2.4.26-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.4/Dockerfile) -- [`2.4.26-alpine`, `2.4-alpine`, `2.4.26-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/58040965047f8cc37eedbaa4d3180c6313b88440/2.4/alpine/Dockerfile) +- [`2.6.18`, `2.6`, `2.6.18-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/Dockerfile) +- [`2.6.18-alpine`, `2.6-alpine`, `2.6.18-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/alpine/Dockerfile) +- [`2.4.27`, `2.4`, `2.4.27-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/Dockerfile) +- [`2.4.27-alpine`, `2.4-alpine`, `2.4.27-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index c2fc9e01265e..0d8e759c7620 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M20-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M20-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M20-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M20`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M20-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M20-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M20-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/3ffa12959996cd955614a78ca73c68313245d57f/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M21-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M21-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M21-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M21`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M21-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M21-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M21-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.24-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.24-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.24-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.24`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.24-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.24-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.24-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre21/temurin-jammy/Dockerfile) - [`10.1.24-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.24-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.24-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk17/temurin-jammy/Dockerfile) From 806a1b1878d1593ebb7b29a310c17a79866ecaad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 16:08:48 -0700 Subject: [PATCH 1276/2686] Run update.sh --- elixir/README.md | 18 +++++++------- nextcloud/README.md | 20 ++++++++-------- open-liberty/README.md | 48 ++++++++++++++++--------------------- websphere-liberty/README.md | 42 ++++++++++++++------------------ 4 files changed, 58 insertions(+), 70 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index 4697f33ab422..a0ddac83f4e0 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.0`, `1.17`, `latest`, `1.17.0-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/Dockerfile) -- [`1.17.0-slim`, `1.17-slim`, `slim`, `1.17.0-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/slim/Dockerfile) -- [`1.17.0-alpine`, `1.17-alpine`, `alpine`, `1.17.0-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/alpine/Dockerfile) -- [`1.17.0-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25/Dockerfile) -- [`1.17.0-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25-alpine/Dockerfile) -- [`1.17.0-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-25-slim/Dockerfile) -- [`1.17.0-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26/Dockerfile) -- [`1.17.0-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26-alpine/Dockerfile) -- [`1.17.0-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/48f4d063c460d225011e3f631207b4c345cd91e2/1.17/otp-26-slim/Dockerfile) +- [`1.17.1`, `1.17`, `latest`, `1.17.1-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/Dockerfile) +- [`1.17.1-slim`, `1.17-slim`, `slim`, `1.17.1-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/slim/Dockerfile) +- [`1.17.1-alpine`, `1.17-alpine`, `alpine`, `1.17.1-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/alpine/Dockerfile) +- [`1.17.1-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25/Dockerfile) +- [`1.17.1-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-alpine/Dockerfile) +- [`1.17.1-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-slim/Dockerfile) +- [`1.17.1-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26/Dockerfile) +- [`1.17.1-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-alpine/Dockerfile) +- [`1.17.1-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-slim/Dockerfile) - [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) - [`1.16.3-slim`, `1.16-slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) - [`1.16.3-alpine`, `1.16-alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index b82af72ab335..e10f9262abb5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.10-apache`, `27.1-apache`, `27-apache`, `27.1.10`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/apache/Dockerfile) -- [`27.1.10-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/fpm/Dockerfile) -- [`27.1.10-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/a643e4b439fefc3f7ea7baac7115c723fc392434/27/fpm-alpine/Dockerfile) -- [`28.0.6-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.6`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/apache/Dockerfile) -- [`28.0.6-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/fpm/Dockerfile) -- [`28.0.6-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/28/fpm-alpine/Dockerfile) -- [`29.0.1-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.1`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/apache/Dockerfile) -- [`29.0.1-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/fpm/Dockerfile) -- [`29.0.1-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/3b13c02caaaa229f7f3efa67c332765e17226bea/29/fpm-alpine/Dockerfile) +- [`27.1.10-apache`, `27.1-apache`, `27-apache`, `27.1.10`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/apache/Dockerfile) +- [`27.1.10-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/fpm/Dockerfile) +- [`27.1.10-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/fpm-alpine/Dockerfile) +- [`28.0.6-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.6`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/apache/Dockerfile) +- [`28.0.6-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/fpm/Dockerfile) +- [`28.0.6-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/fpm-alpine/Dockerfile) +- [`29.0.2-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.2`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/apache/Dockerfile) +- [`29.0.2-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/fpm/Dockerfile) +- [`29.0.2-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -44,7 +44,7 @@ WARNING: [https://github.com/nextcloud/docker/issues](https://github.com/nextcloud/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nextcloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nextcloud/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nextcloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nextcloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nextcloud/), [`i386`](https://hub.docker.com/r/i386/nextcloud/), [`mips64le`](https://hub.docker.com/r/mips64le/nextcloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nextcloud/), [`s390x`](https://hub.docker.com/r/s390x/nextcloud/) + [`amd64`](https://hub.docker.com/r/amd64/nextcloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nextcloud/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nextcloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nextcloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nextcloud/), [`i386`](https://hub.docker.com/r/i386/nextcloud/), [`mips64le`](https://hub.docker.com/r/mips64le/nextcloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nextcloud/), [`riscv64`](https://hub.docker.com/r/riscv64/nextcloud/), [`s390x`](https://hub.docker.com/r/s390x/nextcloud/) - **Published image artifact details**: [repo-info repo's `repos/nextcloud/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nextcloud) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nextcloud)) diff --git a/open-liberty/README.md b/open-liberty/README.md index 436bf07ec79a..d701825f6eff 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,33 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/24.0.0.5/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fb1f284c1b08b840fdd27398f7d5fb1d742b7eb8/releases/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 563790b127fd..479e30c29713 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,30 +24,24 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/24.0.0.5/full/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`23.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`23.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`23.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/81e46a7fcf2b2a37cb8678638d3cc3d0cf3fc984/ga/23.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From a1423aca263de1db115c450de769ccf2387cf69f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 17:08:53 -0700 Subject: [PATCH 1277/2686] Run update.sh --- mysql/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index a11f5a937a8b..084288dceec6 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `innovation`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `innovation-oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`, `innovation-oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.4/Dockerfile.oracle) -- [`8.0.37`, `8.0`, `8.0.37-oraclelinux9`, `8.0-oraclelinux9`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/a15b34a032f48089ee7b02d307d8f89a96b3bb76/8.0/Dockerfile.oracle) -- [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/5fe2b708e9734809d7f6554c131f0371d517bb22/8.0/Dockerfile.debian) +- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `innovation`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `innovation-oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`, `innovation-oracle`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.4/Dockerfile.oracle) +- [`8.0.37`, `8.0`, `8.0.37-oraclelinux9`, `8.0-oraclelinux9`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.0/Dockerfile.oracle) +- [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.0/Dockerfile.debian) # Quick reference (cont.) From fb5aea06ff48b4a2328af5c821a61103e9a48f47 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2024 18:08:59 -0700 Subject: [PATCH 1278/2686] Run update.sh --- postgres/README.md | 24 ++++++++++++------------ wordpress/README.md | 18 +++++++++--------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index e28656f599c2..bb21eb353f04 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -26,28 +26,28 @@ WARNING: - [`17beta1`, `17beta1-bookworm`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bookworm/Dockerfile) - [`17beta1-bullseye`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bullseye/Dockerfile) -- [`17beta1-alpine3.20`, `17beta1-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/17/alpine3.20/Dockerfile) -- [`17beta1-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/17/alpine3.19/Dockerfile) +- [`17beta1-alpine3.20`, `17beta1-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/17/alpine3.20/Dockerfile) +- [`17beta1-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/17/alpine3.19/Dockerfile) - [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) - [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) -- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/16/alpine3.20/Dockerfile) -- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/16/alpine3.19/Dockerfile) +- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.20/Dockerfile) +- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.19/Dockerfile) - [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) - [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) -- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/15/alpine3.20/Dockerfile) -- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/15/alpine3.19/Dockerfile) +- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.20/Dockerfile) +- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.19/Dockerfile) - [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) - [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) -- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/14/alpine3.20/Dockerfile) -- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/14/alpine3.19/Dockerfile) +- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.20/Dockerfile) +- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.19/Dockerfile) - [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) - [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) -- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/13/alpine3.20/Dockerfile) -- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/13/alpine3.19/Dockerfile) +- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.20/Dockerfile) +- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.19/Dockerfile) - [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) - [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) -- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/12/alpine3.20/Dockerfile) -- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/3a7be2f3213ce6e0f13f6a01b927d86aa53d9539/12/alpine3.19/Dockerfile) +- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.20/Dockerfile) +- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 0db39f02c9fc..dfef9eac55bd 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-beta2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-beta2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-beta2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-beta2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-beta2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-beta2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-beta2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-beta2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-beta2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0ece07b7af742f5c6a1858bce22da1c7f5233c41/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-beta3-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta3-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-beta3-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-beta3-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-beta3-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta3`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta3-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta3-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-beta3-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta3-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-beta3-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta3-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-beta3-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta3-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-beta3-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-beta3-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 706757aac008a0ff4dd1e9cc4815d4a9fb0b46db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jun 2024 10:08:50 -0700 Subject: [PATCH 1279/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- rocket.chat/README.md | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index e00e8f1bb4c3..bb91a10739d8 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.4.20240528.0`](https://github.com/amazonlinux/container-images/blob/3f70daba787f52e24ac044292a45f80bde40d68c/Dockerfile) -- [`2`, `2.0.20240529.0`](https://github.com/amazonlinux/container-images/blob/4e2e2fd3a7f437964ba551048908e6a5ce819bf5/Dockerfile) +- [`2023`, `latest`, `2023.4.20240611.0`](https://github.com/amazonlinux/container-images/blob/77f7a5d15a41a4c43d477351a84d065377b10cb1/Dockerfile) +- [`2`, `2.0.20240610.1`](https://github.com/amazonlinux/container-images/blob/252f954fcdd02be858931219147aebcf9099e86c/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 57caa13f0b4c..db5f90f21ac7 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.7.0`, `6.7`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/2e8ccf72214b7b274fa55c48bcaa954e8f5b9445/6.7/Dockerfile) -- [`6.6.6`, `6.6`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.6/Dockerfile) -- [`6.5.5`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/ed2ee93cdfc72c79e6a8fcf924afe768f4cbcefb/6.5/Dockerfile) +- [`6.9.2`, `6.9`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.9/Dockerfile) +- [`6.8.2`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.8/Dockerfile) +- [`6.7.5`, `6.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.7/Dockerfile) +- [`6.6.10`, `6.6`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.6/Dockerfile) +- [`6.5.8`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.5/Dockerfile) # Quick reference (cont.) From 067a6eec3f63397884b49e108fc4a2f8eb847d1f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jun 2024 11:08:55 -0700 Subject: [PATCH 1280/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 7320282c6a4f..83645925c8f1 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20240606`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/75a51b285731679e7c39c2e3c1cae4edcd6851e5/x86_64/Dockerfile) -- [`3.20.0`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/142830f310291a58bea7294cc17ed645697861ca/x86_64/Dockerfile) -- [`3.19.1`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7385303148c97ef32a3f225ec03bafa46b689d12/x86_64/Dockerfile) -- [`3.18.6`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/08dbcabbd55e7430a326b582e544c6e1695126f3/x86_64/Dockerfile) -- [`3.17.7`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1041155cbf4b410b02729c23a198d632945a1744/x86_64/Dockerfile) +- [`3.20.1`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/d796f6cbd6ffa3aeb21f6e5a783c20b61dba64dd/x86_64/Dockerfile) +- [`3.19.2`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0ea45484ad78078c51350293201cec8650c2f6bf/x86_64/Dockerfile) +- [`3.18.7`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/fb6cd4d1c0fc2b1b73c34a445d120c02c82752cd/x86_64/Dockerfile) +- [`3.17.8`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/7b631cf259b81eec0f59e8f3cccac479c702d2c1/x86_64/Dockerfile) # Quick reference (cont.) From e6548e81dbc3cee7f5761373cebeeebeed84e80e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Jun 2024 16:08:53 -0700 Subject: [PATCH 1281/2686] Run update.sh --- docker/README.md | 40 ++++++++++++++++++++-------------------- ghost/README.md | 4 ++-- mongo/README.md | 15 +++++++++++++++ tomcat/README.md | 48 ++++++++++++++++++++++++------------------------ 4 files changed, 61 insertions(+), 46 deletions(-) diff --git a/docker/README.md b/docker/README.md index 647ded8aeb6f..d75d24657bcc 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,41 +28,41 @@ WARNING: ## Simple Tags -- [`27.0.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/cli/Dockerfile) +- [`27.0.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/cli/Dockerfile) - [`27.0.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.0.0-rc.2-dind-alpine3.20`, `27.0.0-rc.2`, `27-rc`, `rc`, `27.0.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind/Dockerfile) - [`27.0.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind-rootless/Dockerfile) -- [`27.0.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/cli/Dockerfile) +- [`27.0.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/cli/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/accd00cf98e6d1ad936fc245b9440b4d0c18e1c1/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0ce95ec28294b9cfcf10e7f9dff6a8b4142a2fa4/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a93887ee0c0da8dec8c7c292727464cf1a30f92c/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 046a7befc237..f13793f0c6e2 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.85.1`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e33d9bde68a1fc6ce5087c6e32706f6a4a8d2636/5/debian/Dockerfile) -- [`5.85.1-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e33d9bde68a1fc6ce5087c6e32706f6a4a8d2636/5/alpine/Dockerfile) +- [`5.85.2`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f7fb70a1525f7856d16542efe916bcb809cff366/5/debian/Dockerfile) +- [`5.85.2-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f7fb70a1525f7856d16542efe916bcb809cff366/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 60aaf52af4d5..a27424a6cbd2 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,6 +33,11 @@ WARNING: - [`8.0.0-rc8-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) - [`8.0.0-rc8-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc8-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.12-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) +- [`7.0.12-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.12-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.12-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.12-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) @@ -66,6 +71,16 @@ WARNING: - `8.0.0-rc8-nanoserver`, `8.0-rc-nanoserver`: - [`8.0.0-rc8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.12-rc1`, `7.0-rc`: + - [`7.0.12-rc1-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) + - [`7.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.12-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.12-rc1-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.12-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.12-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.11`, `7.0`, `7`, `latest`: - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 0d8e759c7620..4ad30005e43a 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -26,30 +26,30 @@ WARNING: - [`11.0.0-M21-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M21-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M21-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M21`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jdk21/temurin-jammy/Dockerfile) - [`11.0.0-M21-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M21-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M21-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.24-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.24-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.24-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.24`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.24-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.24-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.24-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.24-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.24-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.24-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.24-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.24-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.24-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.24-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.24-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.24-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.24-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.24-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.24-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.89-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.89-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.89-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.89`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.89-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.89-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.89-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.89-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.89-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.89-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.89-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.89-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.89-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.89-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.89-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.89-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.89-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.89-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.89-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.89-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.89-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.89-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.89-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.89-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.89-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.89-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.89-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.89-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.89-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.89-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.89-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.89-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.89-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.89-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.89-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.89-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.89-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.89-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.89-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/298c17aede306f790b36301ca6eb1eb12a5fb204/9.0/jdk8/corretto-al2/Dockerfile) +- [`10.1.25-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.25-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.25-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.25`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.25-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.25-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.25-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.25-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.25-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.25-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.25-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.25-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.25-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.25-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.25-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.25-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.25-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.25-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.25-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre11/temurin-jammy/Dockerfile) +- [`9.0.90-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.90-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.90-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.90`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.90-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.90-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.90-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.90-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.90-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.90-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.90-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.90-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.90-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.90-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.90-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.90-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.90-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.90-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.90-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.90-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.90-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.90-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.90-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.90-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.90-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.90-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.90-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.90-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.90-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.90-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.90-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.90-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.90-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.90-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.90-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.90-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.90-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.90-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.90-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 488abe2e0eaf5e27f0b3abf98a437c466720a20d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 12:08:50 -0700 Subject: [PATCH 1282/2686] Run update.sh --- kong/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kong/README.md b/kong/README.md index 32211025ef1e..7e8cc06b24c5 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.0-ubuntu`, `3.7-ubuntu`, `3.7.0`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/7c1f670b717d308affd4843c8cf2f5c4402b6794/ubuntu/Dockerfile) +- [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) From ca5b09835632152126ad3736c721702afb20b47a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 13:09:05 -0700 Subject: [PATCH 1283/2686] Run update.sh --- nginx/README.md | 20 ++++++++++---------- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index c33f4bb76d33..b72821f255b1 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.0`, `mainline`, `1`, `1.27`, `latest`, `1.27.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian/Dockerfile) +- [`1.27.0`, `mainline`, `1`, `1.27`, `latest`, `1.27.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/mainline/debian/Dockerfile) - [`1.27.0-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-perl/Dockerfile) - [`1.27.0-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-otel/Dockerfile) -- [`1.27.0-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.0-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.27-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine/Dockerfile) -- [`1.27.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.0-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.27-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-perl/Dockerfile) -- [`1.27.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.0-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.27-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-slim/Dockerfile) -- [`1.27.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.0-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.27-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/alpine-otel/Dockerfile) -- [`1.26.1`, `stable`, `1.26`, `1.26.1-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian/Dockerfile) +- [`1.27.0-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.0-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.27-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine/Dockerfile) +- [`1.27.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.0-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.27-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-perl/Dockerfile) +- [`1.27.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.0-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.27-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-slim/Dockerfile) +- [`1.27.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.0-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.27-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-otel/Dockerfile) +- [`1.26.1`, `stable`, `1.26`, `1.26.1-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/stable/debian/Dockerfile) - [`1.26.1-perl`, `stable-perl`, `1.26-perl`, `1.26.1-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-perl/Dockerfile) - [`1.26.1-otel`, `stable-otel`, `1.26-otel`, `1.26.1-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-otel/Dockerfile) -- [`1.26.1-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.1-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine/Dockerfile) -- [`1.26.1-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.1-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-perl/Dockerfile) -- [`1.26.1-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.1-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-slim/Dockerfile) -- [`1.26.1-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.1-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/alpine-otel/Dockerfile) +- [`1.26.1-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.1-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine/Dockerfile) +- [`1.26.1-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.1-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-perl/Dockerfile) +- [`1.26.1-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.1-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-slim/Dockerfile) +- [`1.26.1-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.1-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-otel/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index a1b7780aac4f..dacb1184da35 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/837a2c4210acabd7c040103b60c8240a7eefa9f0/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7-slim-fips/Dockerfile) # Quick reference (cont.) From 6d2884cec9ef27d352f542657d2468d64fb9c004 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 14:09:00 -0700 Subject: [PATCH 1284/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 98bf94ca0c7e..b677c2062966 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.28`, `4.28.0`, `latest`](https://github.com/liquibase/docker/blob/655c4b4c702ee11eeafae6ac4521d8cb773dd2e1/Dockerfile) -- [`4.28-alpine`, `4.28.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/655c4b4c702ee11eeafae6ac4521d8cb773dd2e1/Dockerfile.alpine) +- [`4.28`, `4.28.0`, `4.28.0.1`, `latest`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile) +- [`4.28-alpine`, `4.28.0-alpine`, `4.28.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile.alpine) # Quick reference (cont.) From 3dca1613868f22869a649336146714bf9cc6ddbe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 16:08:55 -0700 Subject: [PATCH 1285/2686] Run update.sh --- neurodebian/README.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/neurodebian/README.md b/neurodebian/README.md index 03a4c860ac01..eeb403371b54 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -24,20 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bionic`, `nd18.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bionic/Dockerfile) -- [`bionic-non-free`, `nd18.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bionic-non-free/Dockerfile) -- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/focal/Dockerfile) -- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/focal-non-free/Dockerfile) -- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/jammy/Dockerfile) -- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/jammy-non-free/Dockerfile) -- [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/buster/Dockerfile) -- [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/buster-non-free/Dockerfile) -- [`bullseye`, `nd110`, `latest`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bullseye/Dockerfile) -- [`bullseye-non-free`, `nd110-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bullseye-non-free/Dockerfile) -- [`bookworm`, `nd120`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bookworm/Dockerfile) -- [`bookworm-non-free`, `nd120-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/bookworm-non-free/Dockerfile) -- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/sid/Dockerfile) -- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/1da9308291ad33a33447519ec1835bb3e37acebc/dockerfiles/sid-non-free/Dockerfile) +- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal/Dockerfile) +- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal-non-free/Dockerfile) +- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy/Dockerfile) +- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy-non-free/Dockerfile) +- [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble/Dockerfile) +- [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble-non-free/Dockerfile) +- [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster/Dockerfile) +- [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster-non-free/Dockerfile) +- [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye/Dockerfile) +- [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye-non-free/Dockerfile) +- [`bookworm`, `nd120`, `latest`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm/Dockerfile) +- [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm-non-free/Dockerfile) +- [`trixie`, `nd130`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie/Dockerfile) +- [`trixie-non-free`, `nd130-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie-non-free/Dockerfile) +- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid/Dockerfile) +- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid-non-free/Dockerfile) # Quick reference (cont.) From ea0ecf9cb0377356350335bf33c7202fe558e1db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 17:08:59 -0700 Subject: [PATCH 1286/2686] Run update.sh --- gcc/README.md | 9 +++--- golang/README.md | 18 ++++++++++++ mongo/README.md | 30 ++++++++++---------- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ php/README.md | 28 ++++++++++++++++++ 5 files changed, 101 insertions(+), 56 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index f43b36266c66..9bc3e62411bd 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,11 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/14/Dockerfile) -- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/6f09c34227daae15e71f398f0073e31f3ef74234/13/Dockerfile) -- [`12.3.0`, `12.3`, `12`, `12.3.0-bookworm`, `12.3-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/11/Dockerfile) -- [`10.5.0`, `10.5`, `10`, `10.5.0-bullseye`, `10.5-bullseye`, `10-bullseye`](https://github.com/docker-library/gcc/blob/b1e7fc69e4021bab505d420fddc57002ef04939e/10/Dockerfile) +- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/14/Dockerfile) +- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/13/Dockerfile) +- [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/4a0eb64954fed9990b723b618fa13f6b8f7762e3/12/Dockerfile) +- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/11/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index fc4124489316..6f58033eac1c 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,6 +28,14 @@ WARNING: ## Simple Tags +- [`1.23rc1-bookworm`, `1.23-rc-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) +- [`1.23rc1-bullseye`, `1.23-rc-bullseye`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bullseye/Dockerfile) +- [`1.23rc1-alpine3.20`, `1.23-rc-alpine3.20`, `1.23rc1-alpine`, `1.23-rc-alpine`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.20/Dockerfile) +- [`1.23rc1-alpine3.19`, `1.23-rc-alpine3.19`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.19/Dockerfile) +- [`1.23rc1-windowsservercore-ltsc2022`, `1.23-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23rc1-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.23rc1-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23rc1-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) - [`1.22.4-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) - [`1.22.4-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bullseye/Dockerfile) - [`1.22.4-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.4-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/alpine3.20/Dockerfile) @@ -47,6 +55,16 @@ WARNING: ## Shared Tags +- `1.23rc1`, `1.23-rc`: + - [`1.23rc1-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) + - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) +- `1.23rc1-windowsservercore`, `1.23-rc-windowsservercore`: + - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) +- `1.23rc1-nanoserver`, `1.23-rc-nanoserver`: + - [`1.23rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) - `1.22.4`, `1.22`, `1`, `latest`: - [`1.22.4-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index a27424a6cbd2..a9c3b288531e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`8.0.0-rc8-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/Dockerfile) -- [`8.0.0-rc8-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc8-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc8-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc8-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc9-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/Dockerfile) +- [`8.0.0-rc9-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc9-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc9-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc9-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) - [`7.0.12-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.12-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -61,16 +61,16 @@ WARNING: ## Shared Tags -- `8.0.0-rc8`, `8.0-rc`: - - [`8.0.0-rc8-jammy`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/Dockerfile) - - [`8.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc8-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c65cbae92a47a1e03baa0b6f9e034aad0be6867d/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc8-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc9`, `8.0-rc`: + - [`8.0.0-rc9-jammy`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/Dockerfile) + - [`8.0.0-rc9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc9-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc9-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12-rc1`, `7.0-rc`: - [`7.0.12-rc1-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) - [`7.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 50db08003924..504d3621aff3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-2-jdk-oraclelinux9`, `24-ea-2-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-2-jdk-oracle`, `24-ea-2-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-2-jdk-oraclelinux8`, `24-ea-2-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-2-jdk-bookworm`, `24-ea-2-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/bookworm/Dockerfile) -- [`24-ea-2-jdk-slim-bookworm`, `24-ea-2-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-2-jdk-slim`, `24-ea-2-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-2-jdk-bullseye`, `24-ea-2-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/bullseye/Dockerfile) -- [`24-ea-2-jdk-slim-bullseye`, `24-ea-2-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-2-jdk-windowsservercore-ltsc2022`, `24-ea-2-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-2-jdk-windowsservercore-1809`, `24-ea-2-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-2-jdk-nanoserver-1809`, `24-ea-2-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-27-jdk-oraclelinux9`, `23-ea-27-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-27-jdk-oracle`, `23-ea-27-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-27-jdk-oraclelinux8`, `23-ea-27-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-27-jdk-bookworm`, `23-ea-27-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/bookworm/Dockerfile) -- [`23-ea-27-jdk-slim-bookworm`, `23-ea-27-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-27-jdk-slim`, `23-ea-27-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-27-jdk-bullseye`, `23-ea-27-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/bullseye/Dockerfile) -- [`23-ea-27-jdk-slim-bullseye`, `23-ea-27-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-27-jdk-windowsservercore-ltsc2022`, `23-ea-27-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-27-jdk-windowsservercore-1809`, `23-ea-27-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-27-jdk-nanoserver-1809`, `23-ea-27-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-3-jdk-oraclelinux9`, `24-ea-3-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-3-jdk-oracle`, `24-ea-3-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-3-jdk-oraclelinux8`, `24-ea-3-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-3-jdk-bookworm`, `24-ea-3-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/bookworm/Dockerfile) +- [`24-ea-3-jdk-slim-bookworm`, `24-ea-3-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-3-jdk-slim`, `24-ea-3-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-3-jdk-bullseye`, `24-ea-3-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/bullseye/Dockerfile) +- [`24-ea-3-jdk-slim-bullseye`, `24-ea-3-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-3-jdk-windowsservercore-ltsc2022`, `24-ea-3-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-3-jdk-windowsservercore-1809`, `24-ea-3-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-3-jdk-nanoserver-1809`, `24-ea-3-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-28-jdk-oraclelinux9`, `23-ea-28-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-28-jdk-oracle`, `23-ea-28-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-28-jdk-oraclelinux8`, `23-ea-28-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-28-jdk-bookworm`, `23-ea-28-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/bookworm/Dockerfile) +- [`23-ea-28-jdk-slim-bookworm`, `23-ea-28-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-28-jdk-slim`, `23-ea-28-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-28-jdk-bullseye`, `23-ea-28-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/bullseye/Dockerfile) +- [`23-ea-28-jdk-slim-bullseye`, `23-ea-28-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-28-jdk-windowsservercore-ltsc2022`, `23-ea-28-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-28-jdk-windowsservercore-1809`, `23-ea-28-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-28-jdk-nanoserver-1809`, `23-ea-28-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-2-jdk`, `24-ea-2`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-2-jdk-windowsservercore`, `24-ea-2-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-2-jdk-nanoserver`, `24-ea-2-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3deeddad83128e99b0c299f9867d467e465ce0be/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-27-jdk`, `23-ea-27`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-27-jdk-windowsservercore`, `23-ea-27-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-27-jdk-nanoserver`, `23-ea-27-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3f5dee9cd178b3fdb3fc5f7bb96688d0bec6a4aa/23/jdk/windows/nanoserver-1809/Dockerfile) +- `24-ea-3-jdk`, `24-ea-3`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: + - [`24-ea-3-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-3-jdk-windowsservercore`, `24-ea-3-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-3-jdk-nanoserver`, `24-ea-3-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-28-jdk`, `23-ea-28`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-28-jdk-windowsservercore`, `23-ea-28-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-28-jdk-nanoserver`, `23-ea-28-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index a1d01c8e5041..c849ae3748f3 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.3.9RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.9RC1-bookworm`, `8.3-rc-bookworm`, `8.3.9RC1-cli`, `8.3-rc-cli`, `8.3.9RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.9RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.9RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.9RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.9RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.9RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.9RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.9RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.9RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.9RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.9RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.9RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.9RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.9RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.9RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.9RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.9RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.9RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.9RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.9RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.9RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.9RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.9RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.9RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.8-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.8-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.8-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.8`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/cli/Dockerfile) - [`8.3.8-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.8-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/apache/Dockerfile) - [`8.3.8-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.8-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/fpm/Dockerfile) @@ -38,6 +52,20 @@ WARNING: - [`8.3.8-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.8-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/cli/Dockerfile) - [`8.3.8-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/fpm/Dockerfile) - [`8.3.8-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.21RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.21RC1-bookworm`, `8.2-rc-bookworm`, `8.2.21RC1-cli`, `8.2-rc-cli`, `8.2.21RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.21RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.21RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.21RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.21RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.21RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.21RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.21RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.21RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.21RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.21RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.21RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.21RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.21RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.21RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.21RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/cli/Dockerfile) +- [`8.2.21RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.21RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/fpm/Dockerfile) +- [`8.2.21RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.21RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/zts/Dockerfile) +- [`8.2.21RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.21RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.21RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.21RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/zts/Dockerfile) - [`8.2.20-cli-bookworm`, `8.2-cli-bookworm`, `8.2.20-bookworm`, `8.2-bookworm`, `8.2.20-cli`, `8.2-cli`, `8.2.20`, `8.2`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/cli/Dockerfile) - [`8.2.20-apache-bookworm`, `8.2-apache-bookworm`, `8.2.20-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/apache/Dockerfile) - [`8.2.20-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.20-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/fpm/Dockerfile) From 2e66a13dce8c8f04027f2aaff885cd658ee8592a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Jun 2024 18:08:59 -0700 Subject: [PATCH 1287/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 608ae341068f..1e8c43f06b8b 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.1`, `ee-7.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a7456498bcd19138aedf33dd065d4493a53d095/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.1`, `ce-7.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/1a7456498bcd19138aedf33dd065d4493a53d095/community/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.2`, `ee-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/enterprise/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.2`, `ce-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) From 0e3a0a3746357c7cdca49037825d5a07c2131601 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jun 2024 10:08:53 -0700 Subject: [PATCH 1288/2686] Run update.sh --- docker/README.md | 52 ++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/docker/README.md b/docker/README.md index d75d24657bcc..7431109bdc1e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,41 +28,41 @@ WARNING: ## Simple Tags -- [`27.0.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.0.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/cli/Dockerfile) -- [`27.0.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.0.0-rc.2-dind-alpine3.20`, `27.0.0-rc.2`, `27-rc`, `rc`, `27.0.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind/Dockerfile) -- [`27.0.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3e5de599c6193c52ef2f37c1ae94c933188b6113/27-rc/dind-rootless/Dockerfile) -- [`27.0.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/cli/Dockerfile) -- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind/Dockerfile) +- [`27.0.1-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.1-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/cli/Dockerfile) +- [`27.0.1-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.0.1-rc.1-dind-alpine3.20`, `27.0.1-rc.1`, `27-rc`, `rc`, `27.0.1-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind/Dockerfile) +- [`27.0.1-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind-rootless/Dockerfile) +- [`27.0.1-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.1-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/cli/Dockerfile) +- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/cli/Dockerfile) -- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/cli/Dockerfile) +- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/cli/Dockerfile) -- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/485fefe743baed5a2dd9e5d22b685c14eda4c61e/24/dind/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/cli/Dockerfile) +- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.0.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/255b5d8fce6d3f1b4013f1e2a98c2ef1e17b5e14/27-rc/windows/windowsservercore-1809/Dockerfile) +- `27.0.1-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + - [`27.0.1-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.1-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/879ff3423d08c1ff2a45bc4388833f18692f305c/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b3aeddeb388be54934fac1e8f0faebfc4c2b16b2/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/79288b23bee933f8fd1c89083f4433c8e133c835/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From a83e01273fd9891535f65929be204783245556df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jun 2024 11:09:09 -0700 Subject: [PATCH 1289/2686] Run update.sh --- drupal/README.md | 60 +++++++++++++++++++----------------------------- erlang/README.md | 10 ++++---- ghost/README.md | 4 ++-- odoo/README.md | 6 ++--- photon/README.md | 4 ++-- 5 files changed, 35 insertions(+), 49 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index e493a05827f8..ffafb2f5d239 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -36,42 +36,30 @@ WARNING: - [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.3.0-rc1-php8.3-apache-bookworm`, `10.3-rc-php8.3-apache-bookworm`, `10.3.0-rc1-php8.3-apache`, `10.3-rc-php8.3-apache`, `10.3.0-rc1-php8.3`, `10.3-rc-php8.3`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/apache-bookworm/Dockerfile) -- [`10.3.0-rc1-php8.3-fpm-bookworm`, `10.3-rc-php8.3-fpm-bookworm`, `10.3.0-rc1-php8.3-fpm`, `10.3-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.0-rc1-php8.3-apache-bullseye`, `10.3-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/apache-bullseye/Dockerfile) -- [`10.3.0-rc1-php8.3-fpm-bullseye`, `10.3-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.0-rc1-php8.3-fpm-alpine3.20`, `10.3-rc-php8.3-fpm-alpine3.20`, `10.3.0-rc1-php8.3-fpm-alpine`, `10.3-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.0-rc1-php8.3-fpm-alpine3.19`, `10.3-rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.0-rc1-php8.2-apache-bookworm`, `10.3-rc-php8.2-apache-bookworm`, `10.3.0-rc1-php8.2-apache`, `10.3-rc-php8.2-apache`, `10.3.0-rc1-php8.2`, `10.3-rc-php8.2`, `10.3.0-rc1-apache-bookworm`, `10.3-rc-apache-bookworm`, `10.3.0-rc1-apache`, `10.3-rc-apache`, `10.3.0-rc1`, `10.3-rc`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/apache-bookworm/Dockerfile) -- [`10.3.0-rc1-php8.2-fpm-bookworm`, `10.3-rc-php8.2-fpm-bookworm`, `10.3.0-rc1-php8.2-fpm`, `10.3-rc-php8.2-fpm`, `10.3.0-rc1-fpm-bookworm`, `10.3-rc-fpm-bookworm`, `10.3.0-rc1-fpm`, `10.3-rc-fpm`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.0-rc1-php8.2-apache-bullseye`, `10.3-rc-php8.2-apache-bullseye`, `10.3.0-rc1-apache-bullseye`, `10.3-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/apache-bullseye/Dockerfile) -- [`10.3.0-rc1-php8.2-fpm-bullseye`, `10.3-rc-php8.2-fpm-bullseye`, `10.3.0-rc1-fpm-bullseye`, `10.3-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.0-rc1-php8.2-fpm-alpine3.20`, `10.3-rc-php8.2-fpm-alpine3.20`, `10.3.0-rc1-php8.2-fpm-alpine`, `10.3-rc-php8.2-fpm-alpine`, `10.3.0-rc1-fpm-alpine3.20`, `10.3-rc-fpm-alpine3.20`, `10.3.0-rc1-fpm-alpine`, `10.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.0-rc1-php8.2-fpm-alpine3.19`, `10.3-rc-php8.2-fpm-alpine3.19`, `10.3.0-rc1-fpm-alpine3.19`, `10.3-rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/fb76ea207b9ab6a7825182b111c4f280acb4595b/10.3-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10-php8.2`, `php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10-apache`, `apache`, `10.2.7`, `10.2`, `10`, `latest`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.2-apache-bookworm`, `10.1-php8.2-apache-bookworm`, `10.1.8-php8.2-apache`, `10.1-php8.2-apache`, `10.1.8-php8.2`, `10.1-php8.2`, `10.1.8-apache-bookworm`, `10.1-apache-bookworm`, `10.1.8-apache`, `10.1-apache`, `10.1.8`, `10.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bookworm/Dockerfile) -- [`10.1.8-php8.2-fpm-bookworm`, `10.1-php8.2-fpm-bookworm`, `10.1.8-php8.2-fpm`, `10.1-php8.2-fpm`, `10.1.8-fpm-bookworm`, `10.1-fpm-bookworm`, `10.1.8-fpm`, `10.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.2-apache-bullseye`, `10.1-php8.2-apache-bullseye`, `10.1.8-apache-bullseye`, `10.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/apache-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-bullseye`, `10.1-php8.2-fpm-bullseye`, `10.1.8-fpm-bullseye`, `10.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.2/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.20`, `10.1-php8.2-fpm-alpine3.20`, `10.1.8-php8.2-fpm-alpine`, `10.1-php8.2-fpm-alpine`, `10.1.8-fpm-alpine3.20`, `10.1-fpm-alpine3.20`, `10.1.8-fpm-alpine`, `10.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.1/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.1.8-php8.2-fpm-alpine3.19`, `10.1-php8.2-fpm-alpine3.19`, `10.1.8-fpm-alpine3.19`, `10.1-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.1.8-php8.1-apache-bookworm`, `10.1-php8.1-apache-bookworm`, `10.1.8-php8.1-apache`, `10.1-php8.1-apache`, `10.1.8-php8.1`, `10.1-php8.1`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bookworm/Dockerfile) -- [`10.1.8-php8.1-fpm-bookworm`, `10.1-php8.1-fpm-bookworm`, `10.1.8-php8.1-fpm`, `10.1-php8.1-fpm`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bookworm/Dockerfile) -- [`10.1.8-php8.1-apache-bullseye`, `10.1-php8.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/apache-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-bullseye`, `10.1-php8.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/1e73fe0dfbf58b089a5764d15201c52ee51795d1/10.1/php8.1/fpm-bullseye/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.20`, `10.1-php8.1-fpm-alpine3.20`, `10.1.8-php8.1-fpm-alpine`, `10.1-php8.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/75145d9910795ae152745635a5edc62ac35230bc/10.1/php8.1/fpm-alpine3.20/Dockerfile) -- [`10.1.8-php8.1-fpm-alpine3.19`, `10.1-php8.1-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/2c93dfe6e25f4923180d2f75ad45b8c51b9159cd/10.1/php8.1/fpm-alpine3.19/Dockerfile) +- [`10.3.0-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.0-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.0-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.0-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.3.0-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.0-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.0-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.0-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.3.0-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.0-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.0-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.3.0-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.3.0-php8.2`, `10.3-php8.2`, `10-php8.2`, `php8.2`, `10.3.0-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.3.0-apache`, `10.3-apache`, `10-apache`, `apache`, `10.3.0`, `10.3`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.0-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.3.0-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.3.0-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.3.0-fpm`, `10.3-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.0-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.3.0-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.0-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.3.0-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.0-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.3.0-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.3.0-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.3.0-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.0-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.3.0-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) - [`7.101-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.101-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bookworm/Dockerfile) - [`7.101-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bullseye/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index cd51f2bc5df9..bd92f808b243 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -36,12 +36,10 @@ WARNING: - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) - [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) -- [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/Dockerfile) -- [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/slim/Dockerfile) -- [`23.3.4.20-alpine`, `23.3.4-alpine`, `23.3-alpine`, `23-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/23/alpine/Dockerfile) -- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/Dockerfile) -- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/slim/Dockerfile) -- [`22.3.4.27-alpine`, `22.3.4-alpine`, `22.3-alpine`, `22-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/22/alpine/Dockerfile) +- [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/Dockerfile) +- [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/slim/Dockerfile) +- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/22/Dockerfile) +- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/22/slim/Dockerfile) - [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) - [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) - [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index f13793f0c6e2..ec0c9155c92f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.85.2`, `5.85`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f7fb70a1525f7856d16542efe916bcb809cff366/5/debian/Dockerfile) -- [`5.85.2-alpine`, `5.85-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f7fb70a1525f7856d16542efe916bcb809cff366/5/alpine/Dockerfile) +- [`5.86.2`, `5.86`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a74ffaa09a98dac2d6900957d7fab2c545e2dec1/5/debian/Dockerfile) +- [`5.86.2-alpine`, `5.86-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a74ffaa09a98dac2d6900957d7fab2c545e2dec1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 4160ff35c720..42838574bdc8 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240603`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/17.0/Dockerfile) -- [`16.0-20240603`, `16.0`, `16`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/16.0/Dockerfile) -- [`15.0-20240603`, `15.0`, `15`](https://github.com/odoo/docker/blob/30416a3c40b5b3dbadd1d7d3c7e79f478fcbb74b/15.0/Dockerfile) +- [`17.0-20240624`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/17.0/Dockerfile) +- [`16.0-20240624`, `16.0`, `16`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/16.0/Dockerfile) +- [`15.0-20240624`, `15.0`, `15`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 5c30a2a47494..e95718f356e9 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240616`, `latest`](https://github.com/vmware/photon-docker-image/blob/8b8212ff077ead15e0df5f61714625008e8a2dd1/docker/Dockerfile) -- [`4.0`, `4.0-20240616`](https://github.com/vmware/photon-docker-image/blob/67dcbfc943702591271c569e4f8a0e1c96759b8d/docker/Dockerfile) +- [`5.0`, `5.0-20240623`, `latest`](https://github.com/vmware/photon-docker-image/blob/0d100680c0526a040845f5c22e3c2563788149a8/docker/Dockerfile) +- [`4.0`, `4.0-20240623`](https://github.com/vmware/photon-docker-image/blob/2b9565bb5931fc9eeba288267f55e9dad0035995/docker/Dockerfile) - [`3.0`, `3.0-20240616`](https://github.com/vmware/photon-docker-image/blob/cbbc2bbea409cf009bf58be870413861458d1d99/docker/Dockerfile) # Quick reference (cont.) From 5b6d6d4be83808029c7b4415eb0f83f3ed3d2bb3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jun 2024 12:08:51 -0700 Subject: [PATCH 1290/2686] Run update.sh --- flink/README.md | 16 ++++++++-------- sonarqube/README.md | 20 ++++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/flink/README.md b/flink/README.md index 50100890c3dd..8e77732c9b86 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.19.0-scala_2.12-java8`, `1.19-scala_2.12-java8`, `scala_2.12-java8`, `1.19.0-java8`, `1.19-java8`, `java8`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.19.0-scala_2.12-java17`, `1.19-scala_2.12-java17`, `scala_2.12-java17`, `1.19.0-java17`, `1.19-java17`, `java17`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.19.0-scala_2.12-java11`, `1.19-scala_2.12-java11`, `scala_2.12-java11`, `1.19.0-scala_2.12`, `1.19-scala_2.12`, `scala_2.12`, `1.19.0-java11`, `1.19-java11`, `java11`, `1.19.0`, `1.19`, `latest`](https://github.com/apache/flink-docker/blob/20017e8f0e81d54fe74c0f9f6a3a988ea609be8f/1.19/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.18/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/8eb7ea1a0e668146b2da1dcd08e311e7f7f318f1/1.17/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.19.1-scala_2.12-java8`, `1.19-scala_2.12-java8`, `scala_2.12-java8`, `1.19.1-java8`, `1.19-java8`, `java8`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.19.1-scala_2.12-java17`, `1.19-scala_2.12-java17`, `scala_2.12-java17`, `1.19.1-java17`, `1.19-java17`, `java17`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.19.1-scala_2.12-java11`, `1.19-scala_2.12-java11`, `scala_2.12-java11`, `1.19.1-scala_2.12`, `1.19-scala_2.12`, `scala_2.12`, `1.19.1-java11`, `1.19-java11`, `java11`, `1.19.1`, `1.19`, `latest`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index d34102689f61..64a86ca830fc 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.5-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/community/Dockerfile) -- [`9.9.5-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/developer/Dockerfile) -- [`9.9.5-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/enterprise/Dockerfile) -- [`9.9.5-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/datacenter/app/Dockerfile) -- [`9.9.5-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/9/datacenter/search/Dockerfile) -- [`10.5.1-community`, `10.5-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/community/Dockerfile) -- [`10.5.1-developer`, `10.5-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/developer/Dockerfile) -- [`10.5.1-enterprise`, `10.5-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/enterprise/Dockerfile) -- [`10.5.1-datacenter-app`, `10.5-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/datacenter/app/Dockerfile) -- [`10.5.1-datacenter-search`, `10.5-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/8fa48b406ab00c6c773b60cf213b39718984e3c4/10/datacenter/search/Dockerfile) +- [`9.9.6-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/community/Dockerfile) +- [`9.9.6-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/developer/Dockerfile) +- [`9.9.6-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/enterprise/Dockerfile) +- [`9.9.6-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/app/Dockerfile) +- [`9.9.6-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/search/Dockerfile) +- [`10.6.0-community`, `10.6-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/community/Dockerfile) +- [`10.6.0-developer`, `10.6-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/developer/Dockerfile) +- [`10.6.0-enterprise`, `10.6-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/enterprise/Dockerfile) +- [`10.6.0-datacenter-app`, `10.6-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/app/Dockerfile) +- [`10.6.0-datacenter-search`, `10.6-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/search/Dockerfile) # Quick reference (cont.) From 0dbc734f0ba4a19f776d4ee548feca0482d8d395 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jun 2024 15:09:00 -0700 Subject: [PATCH 1291/2686] Run update.sh --- node/README.md | 16 ++++++++-------- redmine/README.md | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/node/README.md b/node/README.md index 559b8fcdc483..a73a8cd99d62 100644 --- a/node/README.md +++ b/node/README.md @@ -30,14 +30,14 @@ WARNING: - [`22-bookworm-slim`, `22-slim`, `22.3-bookworm-slim`, `22.3-slim`, `22.3.0-bookworm-slim`, `22.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bookworm-slim/Dockerfile) - [`22-bullseye`, `22.3-bullseye`, `22.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye/Dockerfile) - [`22-bullseye-slim`, `22.3-bullseye-slim`, `22.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.14-alpine3.19`, `20.14.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.14-alpine`, `20.14-alpine3.20`, `20.14.0-alpine`, `20.14.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.14`, `20.14-bookworm`, `20.14.0`, `20.14.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.14-bookworm-slim`, `20.14-slim`, `20.14.0-bookworm-slim`, `20.14.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.14-bullseye`, `20.14.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.14-bullseye-slim`, `20.14.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.14-buster`, `20.14.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster/Dockerfile) -- [`20-buster-slim`, `20.14-buster-slim`, `20.14.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/daea62837e99456d7556b585edbc2b32fb57369e/20/buster-slim/Dockerfile) +- [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.19/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.0-alpine`, `20.15.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.20/Dockerfile) +- [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.0`, `20.15.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.0-bookworm-slim`, `20.15.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm-slim/Dockerfile) +- [`20-bullseye`, `20.15-bullseye`, `20.15.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye/Dockerfile) +- [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye-slim/Dockerfile) +- [`20-buster`, `20.15-buster`, `20.15.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/buster/Dockerfile) +- [`20-buster-slim`, `20.15-buster-slim`, `20.15.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/buster-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.19/Dockerfile) - [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.20/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 24ba0243fd58..932488689681 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/bookworm/Dockerfile) -- [`5.1.3-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.3-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/alpine3.20/Dockerfile) -- [`5.1.3-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/00027a1ffc5010efeb4ee8562afdf20635844bd9/5.1/alpine3.19/Dockerfile) -- [`5.0.9`, `5.0`, `5.0.9-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/bookworm/Dockerfile) -- [`5.0.9-alpine3.20`, `5.0-alpine3.20`, `5.0.9-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/alpine3.20/Dockerfile) -- [`5.0.9-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/01b89cb313c07c154f99f95362a0b4baa6cf71d0/5.0/alpine3.19/Dockerfile) +- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/bookworm/Dockerfile) +- [`5.1.3-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.3-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.20/Dockerfile) +- [`5.1.3-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.19/Dockerfile) +- [`5.0.9`, `5.0`, `5.0.9-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/bookworm/Dockerfile) +- [`5.0.9-alpine3.20`, `5.0-alpine3.20`, `5.0.9-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.20/Dockerfile) +- [`5.0.9-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.19/Dockerfile) # Quick reference (cont.) From f242fb1eb4177998702feea2b65fc4748cc27aee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Jun 2024 16:08:59 -0700 Subject: [PATCH 1292/2686] Run update.sh --- docker/README.md | 40 ++++++++++++++++++++-------------------- silverpeas/README.md | 3 ++- wordpress/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 40 insertions(+), 39 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7431109bdc1e..4892ae4bd02d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,41 +28,41 @@ WARNING: ## Simple Tags -- [`27.0.1-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.1-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/cli/Dockerfile) +- [`27.0.1-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.1-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/cli/Dockerfile) - [`27.0.1-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.0.1-rc.1-dind-alpine3.20`, `27.0.1-rc.1`, `27-rc`, `rc`, `27.0.1-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind/Dockerfile) - [`27.0.1-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind-rootless/Dockerfile) -- [`27.0.1-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.1-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/cli/Dockerfile) +- [`27.0.1-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.1-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/cli/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/cli/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.1-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.0.1-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.1-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c4710def3429b65e1a0eebeb58fa0282425f0fdb/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.0.1-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.1-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d83adb67f0100760aba58661d303d0f0afd989ea/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14d04d4a0670177a47542327d8ecb5475b39412e/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/81526b8043ac3a2f93d86b2bae95f6e70ca98caf/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index 3d6078fb8602..bed6d2eee407 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.5`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) +- [`6.4`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c3054e40add18fd254afdd07a2b206be6a4d3530/Dockerfile) +- [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index dfef9eac55bd..a080033dda12 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.4-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.4-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/apache/Dockerfile) -- [`6.5.4-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/fpm/Dockerfile) -- [`6.5.4-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.4-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.4`, `6.5`, `6`, `latest`, `6.5.4-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.4-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/apache/Dockerfile) -- [`6.5.4-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.4-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/fpm/Dockerfile) -- [`6.5.4-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.4-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.4-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.4-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/apache/Dockerfile) -- [`6.5.4-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/fpm/Dockerfile) -- [`6.5.4-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c37f27433bb26ea3ec3154fcb1f546d855afcff6/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.5.5-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.5-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/apache/Dockerfile) +- [`6.5.5-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm/Dockerfile) +- [`6.5.5-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.5.5-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.5`, `6.5`, `6`, `latest`, `6.5.5-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.5-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/apache/Dockerfile) +- [`6.5.5-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.5-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm/Dockerfile) +- [`6.5.5-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.5-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.5.5-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.5-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/apache/Dockerfile) +- [`6.5.5-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm/Dockerfile) +- [`6.5.5-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-beta3-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta3-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-beta3-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-beta3-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-beta3-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta3`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta3-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta3-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-beta3-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta3-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-beta3-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta3-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-beta3-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta3-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-beta3-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-beta3-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8c2ded17022e67c6accacfae637c5a577ce169af/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-beta4-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta4-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-beta4-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-beta4-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-beta4-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta4`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta4-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta4-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-beta4-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta4-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-beta4-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta4-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-beta4-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta4-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-beta4-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-beta4-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 0cfafe84ed6122e1b572f3d29923f1ea09a5e048 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Jun 2024 12:08:53 -0700 Subject: [PATCH 1293/2686] Run update.sh --- erlang/README.md | 4 ++-- kong/README.md | 19 +------------------ 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index bd92f808b243..7a3f4b84314a 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -38,8 +38,8 @@ WARNING: - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) - [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/Dockerfile) - [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/slim/Dockerfile) -- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/22/Dockerfile) -- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/22/slim/Dockerfile) +- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/Dockerfile) +- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/slim/Dockerfile) - [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) - [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) - [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) diff --git a/kong/README.md b/kong/README.md index 7e8cc06b24c5..d536bc330d1b 100644 --- a/kong/README.md +++ b/kong/README.md @@ -28,8 +28,7 @@ WARNING: - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) -- [`2.8.4-alpine`, `2.8.4`, `2.8`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/alpine/Dockerfile) -- [`2.8.4-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/1c31704cdc9bbd2c0a20e5479eb307140339582b/ubuntu/Dockerfile) +- [`2.8.5-ubuntu`, `2.8-ubuntu`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/3fe94ba928bf75b385bd98aa2d5ad07b86fd3eb8/ubuntu/Dockerfile) # Quick reference (cont.) @@ -62,22 +61,6 @@ Kong's official documentation can be found at [docs.konghq.com](https://docs.kon Please refer to the [installation section](https://docs.konghq.com/gateway/latest/install/docker/#main) on our documentation website to learn how to use this image. -# Image Variants - -The `kong` images come in many flavors, each designed for a specific use case. - -## `kong:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -## `kong:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](https://konghq.com/kong/license/) for the software contained in this image. From 393990e740e87f0582ce4dcba76f00c466915d49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Jun 2024 16:08:50 -0700 Subject: [PATCH 1294/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 28 ++++++++++++++-------------- rabbitmq/README.md | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/bash/README.md b/bash/README.md index 1fcdbc60da8e..dd569bfeac2d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240604`, `devel`, `devel-20240604-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/91fe98e6c77eceec9152efa61a712be70e7e1637/devel/Dockerfile) +- [`devel-20240621`, `devel`, `devel-20240621-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/0684c245b36df3eabfd45195aed2acb0616567c6/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 4892ae4bd02d..9f470b1631ee 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,16 +28,16 @@ WARNING: ## Simple Tags -- [`27.0.1-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.0.1-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/cli/Dockerfile) -- [`27.0.1-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.0.1-rc.1-dind-alpine3.20`, `27.0.1-rc.1`, `27-rc`, `rc`, `27.0.1-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind/Dockerfile) -- [`27.0.1-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/7576de689566038ee78e791e666aa25f00bb46b0/27-rc/dind-rootless/Dockerfile) -- [`27.0.1-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.1-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) -- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `latest`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) -- [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) +- [`27.0.1-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/cli/Dockerfile) +- [`27.0.1-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.1-dind-alpine3.20`, `27.0.1`, `27.0`, `27`, `latest`, `27.0.1-alpine3.20`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/dind/Dockerfile) +- [`27.0.1-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/dind-rootless/Dockerfile) +- [`27.0.1-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.1-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) +- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) +- [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) @@ -51,10 +51,10 @@ WARNING: ## Shared Tags -- `27.0.1-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.0.1-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.1-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/09d953c7b2cd9e558d82d2ef33a4b0891f4a486f/27-rc/windows/windowsservercore-1809/Dockerfile) -- `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`, `windowsservercore`: +- `27.0.1-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: + - [`27.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-1809/Dockerfile) +- `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6714d45552ce..9b848bdd6ac9 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/83604b7ec3bda015495dda883fe3b471f206d562/3.13/ubuntu/Dockerfile) +- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/013a76f659c4c5e379f80507b100a85fffb95552/3.13/ubuntu/Dockerfile) - [`3.13.3-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/83604b7ec3bda015495dda883fe3b471f206d562/3.13/alpine/Dockerfile) +- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/013a76f659c4c5e379f80507b100a85fffb95552/3.13/alpine/Dockerfile) - [`3.13.3-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) From 42ae663b4b922326e5c55c7c513c8d04a11f9aaf Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Wed, 26 Jun 2024 12:07:01 -0700 Subject: [PATCH 1295/2686] Aerospike Logo Update (#2455) --- aerospike/logo.png | Bin 6740 -> 9045 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/aerospike/logo.png b/aerospike/logo.png index 5b16337ca92339bda0ee838c9da688e52faf6fae..d2f508ec62cfab90a8110eb596f87bf70f9214c4 100644 GIT binary patch literal 9045 zcmdUVgvt)VxVNBriQ={^f3@n5eX5H|BwJ51jJ_usDJwi2+D{Q|LJQXvi?hh zgn$rbkAU(ojS8;44}buRW$TKK)@#Y zb0Q+-nUcUuszh=>S?hY!TZ#|2PudH6beTKI4|docXNTTB(ys)=hd?vT z=f|9=+=uWG!Xf0St^eOxB|&;8tun12s^S2fU|FT8G4tE@k7!&b16qz4I|cF?XmPW=9nGy5ws z=tzI_0=Q>})Ei7u@;5^K7hmMYs1gC{;8o@SJp8$0tPMy#FnewHCCaDE)908jpjkHj9gw!5_+m zijI4HeSdAsn9z_WWq5J|tkKdJ!W3L}{?{wHwmj+LQO67_*GhjauQ5z(^sEHSpYZ9I zp;XBrHDhiqGP~bWrjuANK3}xaDmGir8xoG>!BHXKgtaypp6ln_VuytgGGZ86+|vtr zm!QW^I+(Q!u`twBFl8cN2E`)%D%ws?wkOKqV^tw16yyzy&<;Zxh89I%zpEl?n*w0GCp{7;;{{EJpnQ#GYoKEAyZdzjgQW` z$vQ+`-t%qWQ%6@dE6gHS-=}}W=ZNFGeFfy@Eo&s4g0pPk*zQO(uWJT+P+_V*7U(iQK4G!m+x_XtSETUt zbgQ&h(qKXu*YF$65G?oJ*dWl93SfWoy@o8uEGRL+yYVHi_t(03PcNIf@`kvQ)5Wsj zX&;OM9!|(y_SGq+t{J%Fwh{@ENs;994dw(Dp%bz=-7CRaMWpDcn+txNLFZM=Q5jZk zZ?nr(q~)8JVLDM}!*i51pOrr}e>vs?z5Y1!X~Z{r_Pu>=$(OIy97?dBJSovqqVUM2 zqB<|YF%D7hZU&xs#>Dr*U_w2-EQ2!qHdvzT#8Om)u42|0d_iB;L_{v=^~j~$GU%m} zaSqKe332Kr->F;6besGHddFe26D!wF!-UC=du(#FJx3k`xw} zDIo0OHW~7yQ0i_k46k5?^+@p2G9KWFgofw1p0%5wvuQRcorhx$7b7dH&7Lx$0kPK# z&*-5X=&8j!!q_UVdRYpRX;g+iW3J8(ZuQs4>u!4$=IX3#Fxuc)slDPPv?@oZu3(V; ztd0-3BNM;g1WjhhH$|UiOq1I?an(IyY@_f_<2AoPX=;;Zrh@7)EMUwRGy&#JNE1Co zOg1=6x?Wb}pxt1VkB;|ZGvr&WzLqomsxZAJl~n>^(q#~e=Sm=y7fPv;Q)X!A8!Q)T z$9JB7hI6Jn?++WW zIG=!lV{k{jaRhZr=r@?uSkG}=59LGI@_}*@dwkH5iux$G}_86CF}pU| zKB2VHMmm=@f+EM6iOV0}p7#evS>s8yd6Mjx5zWOoWC$)z(mj3XBxDrxii@xDFaM;R=Tu04c(=-!Ms`jfysls|65qd)+ByQl- zdYqHj(!NUIxqm!H327|aT6sHcQQ$S9l$$}Dyz`1(5mPHxp7`TfZ&fFnpI%PfsHg&6 zmkwIRdm$^1!kU$)#zFhiYzqD?ok$+dL+@nTu4~`%Rseo;#x5ihN7RLbqZi^8k_>m?~B;5$Y0H!ynaQ$mBOe!gCn41t$bS)kD?+E*ry zslSKbgqLAy#c5wen)goGW#VP)SB zUL-M08#;TI+_i?7mKz04vE_ohx=szo7(Ex!p!0NvC@~l+f{C53$4mBhI$>wtDltP0s(_1{CJ*D`_Nc@l$yN|Z>_<+pEDoUGCjQu<%)>ym+AGi zqFZ|2M(tPFO>zf3P^J4j?P!_CiW^XZ$C&D!t4AkDeC_)=w{oCAz;J`G!kWx3JxLZS zZ=uGis{Ix>t3P-T)4`5j!$hF0R zoR?@9KIRTq3MPW1C4XwsSB7`_6{XHNeJ*r@A}cIQD8s7hT96FRy|K$8qp-X_@X*Sz zGPvF$S_n%DiwzMDapz%iGSK62EAVz**~wNZb9dBxq5GvDItNVH`lzcF@mGA#;V6*M z+*q|ATtJ)9BE>~A3X=_C;Ab4A*--RyNt&(=l54JMdneAY{re~EX770cs#|Zbo-N+v z+*2kc{L6{EWx`T1!O*SmWJosZHfo6~zov`C@GDAQ>jky-X`BVhB+Yj|#*nWDeKSKRP`8Ia*fb0KTcekEmY~Nq`((OCQX24IEcA1C z?rllgn;P-}n6(+Nr=*~a651-svdQT<*Lti%clg*#I3%G53A~_~MeK?Z=q2X43PV}D$5E$~R};T1_`yVU*x-e%v3U|3J`f zcP31zrhY7L04z-~i+yFcn)F$T20J|fHZhX=GN0c260p84cU42 z9=H7U#~IA*Q@B2o?sqbLa>WY|_zn2@2h}}UN&_RC{$?2B2E$i}qqoBu62uL?hwB6n z0J#EY_!_-M$}mz1m1vj8HFOb;O|Y=jCfuY`Lwu8C{mh8&5q_WM*wscmODTWt*tnks zN@3jji{dQ|CJH$xN@=>MGA5m{?dC`^n;O37fK1N=0YCo0T+-Sy##{*B!w?pVEpWyA z$&1|XJvCvKgggH8YozrBiE7lg9?UGhB+af$44wh+2J#Z}NDH>`Cf3xZ=@9zgF9AJ8 zUS%{HZi5m+2(9hoGcNlbkJ~nm&pFH|6#I3mgrSVfX{q(U;q0C8x}am3J8RF>F{!*S z^AYT61@^~(;r1V>o2In7)PF(&)e@p|YScf}3$B&~5Iw3-nbghmir4b3V*)wz&qc-a z(~<%M5_)dlQyV5xm+PgWMa?Hrc)ld6(ZaDBkVb>NWQJ%f00V#3I?aF3`vah#UB+6B zXM%XHJG%WPff03(|>8O5n~mp)!``k*S4zguFBM|W7YK` z)TQ7WX#`jeb{s-X|Bu&idDhpbr?O>p3u!gPUa*RulMivPV8+|-A0VvZ*Zve}Jke&< zBFhIbH~*)SP(HT1I5WExP>_H6@BQ3qGPjEFD30SQhZty2c1RyzLpg9h4f70Xm|&nN z;?-?fm2bL3q#mx(**f88d5#;f z5}2zf?vw+SUP-efKAQXn2AYDgusN2Qp(%57c4Vn z)~*MrH;j&}?Jf(SYZQ_S!sa-I9?Wd`_**Gq;DIy9^l=!kXb60 zx!fiC8`VW)X5++pN5KVnvzpEE`F$Th_tzD?NfYmDER9mrK5~=cjw4x+0hiLNr#&i{ z5gD{Eh!Xd+MvUUFIF#@Fyry(u@PIM67#kg1-)D!py#Y%wU`zv00npOHA+^8BZ5(ZQIexs7I-S z`8h{An~@5Z1&PolJ=_^Omb)?wGAW=giq{(}Nv}U5|K$%RRq(Iqg9BUBltQV`Ecn)! z)2!D$VyyWt^+KpXeX`~{FRjWm&K@HZ^XdAiW6$ExZUXd?2sg_OG6kokGz~!}MRG?2 z1v8=e`I7?X{b`r+u~*yf(oL(x?5xJeZpR{Ps_W$FBL^>rV%)4KTgA0rh^Ny+8jkH{ zMxioI^wLf)a7b7q4BW z#$9^O1kfHiRfDSaxC?H6bVr|PCgpKgbf@5d$#h%0yIpL$kIdt#qaw5LK4*_`Y4KKu zr4ZYaSQBb1Me=wn@hRPm6&Qc$7trS8&%H45`;M)qKMQJFJn*DIX8%1$vp3WcxUT`q z>cC@|iSHKt)cb)=O8NVkrO7A;9~MP@`*wQzx_3c3&Y`}W&RV^P|FL`0hM%?IiEFNn z=w^^3B#*3J6n}IxnqzOOg9sT)3aD>9G{DJuGDyjxC%AP#(}Ht3s|bJqSp3<~eF)iO z3p+3UXC|odU7oW9Jy|5+*KN4Es9b?tebjW&XcyhxXH) zp-l4cvIuJMQ2&|OV0C?munV|kRZndoZTH>2o-KiakS18(Tm@NGWne28TM}Hug!<> z-B{4B8rJI*CckN5h7r5!rWrRr1b+Eu?^re1EZBkADxnZuyW3)kO4HY`O=ia9evkFN zV&p4!(?5HweYjcr<)|=Uo%dF6#JV_EXq0$M^b@PU{CE=~KopUE<{P=*#ZOg!R@> znV4w2<^SZ?_vM2tJp=Dc zTki;aJIbu6=A)E@#G@%nQE%1U@#s2J8WhTz1-@?xdBo4ZK0EG**9ND<)b6TO3RAlV zr--eL4R1F>I<)C$jaZn|HjnCdRPgtakL3n0JF;`qGUuU-DWj|&StleCpT)#%xx9$R zJu)1r+)1IDq);vIXz8IAD>B;=ss)^Q}Uz3QK_@`1?qB~7skg0{xcUpj~Vm%C#t7K zrF8LK@nHgDQdvc7tG(Fm@Ged-wNbj~h<^2sig%OLjEQm`YNdm%7RpTAf!{oFEcYBv z@c0alN>eosr(}l$zg*SU8>-^0PMPdI09-m4qVGR5TMycyDO5#FTh~4|FMTF(Je=ZwGb~dN9spsMPj`1lFT6V(2U7K1CkjFCG_8rWDgpW3#e8X#7{h*ByDzV_z z7WocYJ`mNnpDTfz-%Ol>@)HyBYD85jh74@7A-o~@mePPL*rewCpNC?;^F&4__i#_` z#eSHqcjZUhj6~xc{DoQvc^=WUss9#SC8|m?IhCLEE}zl5A8NUWeX2sohRj`i_5%6fwxRmV(!y^#zC} zv8(PJ0f}3t9#;b&j`~(@?C?r#4-{2Js(64;9xruDhVp)&t1UcDT(y;3%2*?Nd0bEt zV=udrARak!$o#9kvFiFB(XZ-clR=`Pz)*eMb@;U5^yfn~3(D~in=)v3PCjq*XH-e~ zCiMgWh>#0DLVG#9Yfj^YQIh0lgE_#zrC;ChQ`E6Ga^$ye7_rA955__mDEK+l=OQ+{ z8Xf%;PwvI-t^n+apA53Dn#ThsQdP@smtnKoh(T;D^q@j0dSk*I`s^(&H&r(8l>U-9 z#=VOa7#s_vm6h~;-1dl&?uFu#d~nU8&B5xE;gkuAAsIl^)6)#i>OJ&bf6|3N#zV!7eP#rX0`lbc#K~_bH#uy19Yp zQh!y0v4+-^by;ljgfKIIIAdfSXKN*Y=}t=(nYZ5RT4;m^Y5hj($gTd9Iks{kiuUqR z%q!QQsHk4UI3uWv;^JO)!u;#BXx~4<@aP(gF-wuadE8!bX%?t<@;r$qU2pDLOvn!V zGhgx^N1w0`2U#MRIY<+)!t{ci-&}K){TaWZhR_#&lKs_8DLi$mFHU5k={S<|hh#I2 z&6jT)NrAQUvp9PMDj66_`b!!g*;49DL!)=X&H5aQ1+}}1Y7(`YvL8DHZT+xX9u9wV zKQ$8!_MRn-reFoChWkRnqAX_j%F0bO-+6G=xCbxHQYpTK-Sn~Is+jct5=rIxgBr1U z2HHZN5`4V`zf$g*^UCl!u41Np>N#XXP|sAv{WvLmokNA!HYw2-Hv}_#WfRsMC3hA~ z`?@^ldmPQLuS#^1d=VNmRoa-HUs|=B?p8ebd=YKYo(iSDk`2^N5=L&X;pa%YFI0Gc zmG4DPDT{feToY2Id|r!1Es>ozE0LG-UO(Bf^;>xz`$a2mJhz%>4k^|i5Xd$-hfax= z1%VOz^BvIKi;K;AnoKAKGh-YasWWRlzA>%Zbt1e{mTYG2V5LaSsrh0T-rMx$ZTiK8 zM_E`nhVfDRqpm?kq9tp*FLs$pibfi3+4u;Esqd|fcw0{YUBhaEN&RL%s_%t@K~Xys z=<(`ZNt64qfO`KhUP9$|RGq0vxP<|AT<+Rhll#71?&)p1E?*EW+sDnUOeLLz0lc$* zK5Ym0!DW#ru;qERZk%yA+Rf-dQ5XZX$L3&-q=yL1i7^tF_ z0)Bxa4~T-FC*tJuD?CBj>~?rh;CtEB+IFbwe?0pT@Cg>)^^-;x%2CYlmOKiLISSo< z{TW=$VS^%*xB4dY=*oQVM<+vA{vy2Tyy)r8lnh7m&c&~;^-e7d0zq8+vBKKf0I#xu zopU4WJN3K{Y?CD={e*AawdtjOXtVMzr61WT8oUNhR*oFn!Gd)gI;Ql2XCNn5P0-f z-LqJKJ;c;Wie=fqonEFz5Yj!en;p~E2q*jaWRfH+B};5)6H5BCAe(pdkDpSf?i|sXiJmq8PtEq5idE@JGf9^J<^Z(&Za;(CqX)kftG5vDcw z8du{`(Man}11WX2V*F6X49*jW*bu!&2P_xzovBZGdqd5NM=!2#Otati<5;Rnu{k-y zb7spcv@bpnRvPuYjY1QDa){tiLht6;^)?IJVhv*B3!d_m91zjCB(uCdP0!Ff4>I zQe{6axt^TatZ;d2*mm#!l1erc^N?OiD$d0^yCLnic7!+78rxDF)|#dZ?k2F@S1}>2 z#p$Ye-jCTt7W7|yDtd9NK9NLyE>MHldGS3;V&I3mk6<(&=j}`PUs5fCK`pVm6vlx{ zkXHL=spP8yk5R!6sUBZ)A(q8*?|(t4eIr)8d@6J~%rsY~QUS-Ky_4u?lzf7>A#x!t zP3?m|%R=DmW7b@2Y6kPr2B&Y*#3tY6)L61f(T@stNa9gn%uTt~k{3~|YQp%lJeErj z{9SoUFnJa5zlp`8%~hAeFo^7V;|f_7$6u1?|+_F;~gON(SK1*_a0`NOQ%|0Top;=GYu!8lVFFLkYW;F%nogmRYP0 zS^>b@fFTyHr4%xtk`iN4T&eT}sOl0Hv}meWMguQbB4dh~htYu=*#8@h5QGv3XBtk3 z5#D(obW3GFbFa>*&f=2hfE_G!7WA}H10a}bY^5Xwmsu*%UUvxvCz4NpEk ZS-Mw&jv#Th{`qf-lAOA1owRw_{{dJ}c?bXi literal 6740 zcmd^EcQl+^*VkJFqerh1br8{wHi94#g3+Ul7{M@lPt;LI9WBaDl;|eWqW4aSDAA+W z5TXYkx%YkFe0SaV|8K2t)_UeSXYb$d{Py1Goaaml*M6valZ1f;3k&O}x*AyL>fU{Q z5#e0Db4W||T-~r;bX1kFN(Y(NuR6p|YKAUYSSI(cFKp^WWkoD3yxXuR5LbwnrnD8@ zLCC@yZV46gba1*tV`0g9N?$b{psp5do(}eoF4CTI9KR6KSM6&vkb~_P#Pzux2SiJo zO&N}WvfUFB6B6bCk+89`$s(+6q;@T<;s`A4~{+WwpPzk>9%aQaj1R}ufrP4+r+X&tBw+}`cF1bU7zSCFXeuY~??{!c~z zWGTZPoDfhKmn$0R-d~j8ZGXo@{v!ht7Z(1D@w@f!j7JFARjL-(fq_K+!vAjjJKpdg z6@It=#<(uNv^LBWY7YU!u1fkV57Fzm{?YSyrZU_fj?i_ou!3HP_KWhH>F?-YI)?vM z=Qq!9OlvD?7dJ~gsFmw)Gj=s^zt+Dl)EW4jSr+(@XxXdPAgu+rhS_+5EnJ}>QDKpL z(!wIr!s2XyHY6ovfq%pN7QwYg83DC$g(IH8;r5_kX*gVW+3pJ6{ge5-|1YX6@Omfx zwzK}+w!f@b`xZoU#r)SZ07UXs`duFu7EPBrSn-J`_O>a^>B)G~Hx;{*?8>@PB8+zn z8?B7EFg7XVg#uAK2Zbd7her<+VC}+plF*-(nx?5`XD6DFn&#OX9)}gwZ;6?*dH?c> zWt1Rikb{EuebGq|_8dn+xw+9z{qpIVjpbSYGIQ3XqBZ}WMwgxQZ>t`Uvd(5)DwDNf z45yrUo}Af>4zXJR98zo!+V2WPIA8(x^7zLbw9fyJ+I-z_XM{AYkdSxHEKv`(&(DJz z8W=KUm6-rhLORSXD$TRwg!&ztsqt0s-;zTPeZMrKA<0f2>ei1{U}bOI~5-`FJ;%bWxzwZSzxv zd%IQ^%UhMwk5rhN)?3t8?&$*{N&2(T33-CX{l+A(KaB+Gl)#fHFurXXgP(Q>O7u(2 zg^U@hKs@HXwQ}s5EZSL(&3N` zE1o5FNgY2whB~=#sn7bSs?+xNZ`!<%jlg5%wj?H)@Y#=tv)oD*4glFSB#ssxe0QFe zFR6$J3!JFpVQ}k43sI;?rWhv0!FFzq-4T?*d&#uD0(G!J*8GA=3ci#>m0AL?o0j9` zV1`v@Mq4$G_Lz}D*r;-&O#|kB`yK)J1(a(})_c#|rRBD+g+>2TkMAb^+J+s-ueQFi;i!`V(8ri~oOFwpt^ZYOl~uZPTWEJ8wf|Tu_ht}bbQqZglkD+Yk@0ci zUHY}?4myhvL)={NlG;1U3k!5#)pD($xdgFY9w#W3c%`|{%CrG>-(vrSNJHpIR<$Tha%HF zRdT{6l0jmyMhHbrVbebkGkvqZvt=*kR@mqYU+o&7uXw3*Iss|aJ9dahE=#y(vLxaW zi97;Xpz(+nyL|Yz&*YwKMYqM(x-k~In_B0L6>RO#q{Q+dAtn~gdjplyraxUi8nG#K z8#BhGbXVdGv~7;3a=QHtE-8KZT$q$!2q^RQyekH%E10t3t&Vm zD;(tf&VOgN^m*0`vwn$WPN8KLjV8TdsTNEpNx(2(>(lX1tH@{0&aN5{( z26E`$*77d1kZ(op7U?81_EuReZ0&6uML&*x^5{Gp6`Q@Fn8U2Kn#Q8BkAaE`E>i&& zPszc-e1au2FL}dlOE0WdnQAU(8u4-gcDp-lQ=!P=)V2HQ(6>k^tw&DNTH}eEWoD73$D58 zr)nk@NMZ{864G$wuobiRkSYf)Bk4-|k(4BJ0~8r z@{3qBx)+Z~<@?>cQZa<}6;>)ncO;owDf;F2`XZiI*)Z!1R=_OZ;c=n#Y@W_OGao*J0BwIfI< zItTq)TK$*GzVa)0dNxp|$=nITv`K>T1up;{pqQ~=`xsDhH5p={UL)vvj<@jO_XX0Cy!t~Kh z7JiTuuX9k9!Hj-n!v=c+=?XG5AWtb8(uNZpa-+PD&ujF7A5-;~^+VOditW~uip~QW}<0}++Ll%cU5126FR}ZmGjR!^_ zGg#Nwh}H%5>xBUpsut}GAQp#p9e2F8y=A5&J2F=ep9O93#zvPXT|8VU@KKw1l2Y*> zY^y`xZ8!JW$Q~YF9EGLR9}{Z2M?;-*$jZ0EBQ#H`JXw=$6#Xq*B%Xcg5unY3@$yBa zUy!Os)xxI}nRsdABBGX#FBT`%^wQ!JAY^mCz0|s2X}J`UgWdD^B9>JBag*<#O~k!+ zqc@xIhN-exifG+( z>U-YtpjkKlcCo%lp74F4kwK8aA=*f2wJH}kHxzo4yMEDqfu%~%?PB}Q>G|2zVCE(q zo{vm?{q}Yy#9c;Qo;^_bD_xoMlUeNc!6H_J^F0HiY|av?5?cNUJzLUhHpVuuQQ_8c=Eu=lXs z)Jdag`?+oNt5Me<8JRvuqy@ZcMe@FLJLE_W3oV8ZpW~|Rvd`iwYrS`eIitqL-@k;}WdxL@I8J+c&k~IV_j^?^l_PuVDOHLk0NSikD63bf! zJm1vV*;(bXnjXWl{lSO4;M1E=Be-RZVTx=mH1W5TZE(-32rGA+=^L!mpsfjzg$xgr zrp2ZQ2IJ?j?H1tw9-%cG9i3jzP4Fd07PK^~1>Wy!__?=rH$RJ4P<_ywxL66tkn7~f zh6NwBFpemdhMoK?_A0c5af|6)hBPcETsqu7o&M8;R4nps-8Hv^4SVSQnUuoE-r6KkPQQM z{Xv1uW3}E)*&&bVw*5nRFw`P6wbmpiXY5BsC5Nc8fGWP#KGQnqm^*YlJx@h*n@)RQ z9nEDN=1a`4Eb{Q-8<>(Qve6}J2oxCfpGQP18mZRTg63)p5HsGs^a|8s^YTRenv4?7 zN4>JXMEL^jZwcNn`Qt|wwY@m5R1y+YDW@W)+jj3hngp7LXNBJ!nraE{{`}%@`KGJn zIpgI`nAVX*QgT}xZjWRHum+0)aX)d*>I42T;QZ6n2BXoO54rLDnUT?JQBjVB_-W9> z!Oecu)#=5C5>FYJu(y3~`+_tn(t|Y!A$um>d4$ysk46_oe~jE0+FsUS{X) z65gI7LcG74enWh5x8-8RCU{5W2I1OF7!M}#o0Zo*Qe26AhXoe8F*~iBTDKDEFlGEP zLpgS)jni!Q6N>r9&5L4P9-BmF1$xpEj=&<%mtH55G`KkIngXz&IrDtS!8PLpfvvsM zm6Gw)o2Zv4q2t7Q`!7HIe4b@V!%kZIi1IP>eB=uRv*OFfL_GyV_{H&Oxg%d|rqEP8 zijf9x_#W;O-zJ8&0#Q`-etedF6HreK|?* z=*M>kv);?2gD4Qf@Y8stCrt5!{8@j&x{pR2Hr81o%wdW<~vN+7QO>|#vc+8*wm z&!p&nJ44tx_Tkg-fYfH^K$GeI{);MiVfyD&Z^^LBg{L+Duwm`%;ikK^Yz;gMq4|UG za=&Sa#{XcCT&C2dMZHKU;?$E^o*`;;Y=BQb&Fe=wY~RKgsgL*O=4cXAODw)5gt=MPr(YOl&xohg_@gq zqWwX@+^BHcE93oD%_2 zw8VIQ^%9U#$`BzMK(+3r)u?oy-{e61*x#RaCVFFNgjGzYDE*Rrc(KbxJ-cvp)AIJC zP+^8W+y2(Evr#_>hqn}E{eTjpq%vy9U6-7B_}7Mz874@yO+LJFw>~S>L@qQ~D*Ec! zgF@x>JPgYP=YwTS`2arANE-Ua!RbQvNIK5v7CK`ZOo2s%wCtDM;!*QN8>NrX+;>x7FKXC~WyBivPka{1dFLd$Y+4o3nnN~s{ z>SX;vW_z%JNB1$p6w&mfb~Y^yt(%{HYN_6I`(b+~t9fyaP$X*<=8^2n_u=1l+U;(? zqdi=-=j})Jx;G&qrC}pYMe(jU&!;H-?SJhP99<6=S+hsyYlEh_EC1=qofJsCN7=AKW7H7c zA(>)24ekz0_zKR2ay$Rwdj0@DKJg7&+fzacla52vkQ#Gv@r$r=MqIKT7O7=BSjlttdZS%InFL@Z@* zl&NgoYny@UKH*Gde!r$uX$m7( zUj~&5+)!?{t;f_h9q)Yu2I$3AZfypfu4dMG;KFkt&acl70hnnk&MxMDLnIjTeDmAo z)DFlv)9Cr2 z5@XW(8X3783t@75n!WsaJ>8h3tjui0X}(#(Aen`uQJCaqDq~BU1l%iBXs;cB*#&k zOvJOQ9kV@bYyDxps7Pw#cD+5fppp;q6C{llylesj)=kY5yF=I$gN3~Qg~H9RLr5f5 z8a!C1*<93M#DShvh2&iTFxEI`+oP12&!AS(0~C^*YS*p|jm$j+pbG-P0;w+yd@8{L zm8f#fb56@1y!y!^Zp#9{VCV)bK;!oOsF@%@W1CYz_Yw&a#V$Lv3y0XTTBM$;w#O5D qRvKuu>zonweU|4y|6i88B=^P>wVFI&?!5l1M_uJ1xK!zB;Qs(omI9Rk From 7913959111e2e054632a52e5e45fa62e2f022a94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jun 2024 12:08:55 -0700 Subject: [PATCH 1296/2686] Run update.sh --- aerospike/README.md | 2 +- nextcloud/README.md | 18 +++++++++--------- oraclelinux/README.md | 18 +++++++++--------- silverpeas/README.md | 2 +- xwiki/README.md | 9 ++++++--- 5 files changed, 26 insertions(+), 23 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 1e8c43f06b8b..1bfa5183a34c 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -52,7 +52,7 @@ WARNING: [Aerospike](http://aerospike.com) is a distributed NoSQL database purposefully designed for high performance web scale applications. Aerospike supports key-value and document data models, and has multiple data types including List, Map, HyperLogLog, GeoJSON, and Blob. Aerospike's patented hybrid memory architecture delivers predictable high performance at scale and high data density per node. -![logo](https://raw.githubusercontent.com/docker-library/docs/9944063c59872460e15f6ecb19c1419c8124752f/aerospike/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/42ae663b4b922326e5c55c7c513c8d04a11f9aaf/aerospike/logo.png) ## Getting Started diff --git a/nextcloud/README.md b/nextcloud/README.md index e10f9262abb5..863a25d53b2d 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,15 +28,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.10-apache`, `27.1-apache`, `27-apache`, `27.1.10`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/apache/Dockerfile) -- [`27.1.10-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/fpm/Dockerfile) -- [`27.1.10-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/27/fpm-alpine/Dockerfile) -- [`28.0.6-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.6`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/apache/Dockerfile) -- [`28.0.6-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/fpm/Dockerfile) -- [`28.0.6-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/28/fpm-alpine/Dockerfile) -- [`29.0.2-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.2`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/apache/Dockerfile) -- [`29.0.2-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/fpm/Dockerfile) -- [`29.0.2-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/bf8136a83843f27513a3fe4e2d1e0a20d90b6572/29/fpm-alpine/Dockerfile) +- [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/apache/Dockerfile) +- [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm/Dockerfile) +- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm-alpine/Dockerfile) +- [`28.0.7-apache`, `28.0-apache`, `28-apache`, `28.0.7`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/apache/Dockerfile) +- [`28.0.7-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm/Dockerfile) +- [`28.0.7-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm-alpine/Dockerfile) +- [`29.0.3-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.3`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/apache/Dockerfile) +- [`29.0.3-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm/Dockerfile) +- [`29.0.3-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index dacb1184da35..fb095851b395 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9885780168f82868253bb3ecead4632f27bdb259/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index bed6d2eee407..b0a06a207fd5 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c3054e40add18fd254afdd07a2b206be6a4d3530/Dockerfile) +- [`6.4.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/54368db3f823b6ced026297c058973eabad1e930/Dockerfile) - [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 93f14d0c1cae..4e0b1f30c3a3 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,12 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.4`, `16.4.0`, `16-mysql-tomcat`, `16.4-mysql-tomcat`, `16.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.4-postgres-tomcat`, `16.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.4-mariadb-tomcat`, `16.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/145efa556f68920c2cb16a04ce2c0e4ab9a7b495/16/mariadb-tomcat/Dockerfile) +- [`16`, `16.5`, `16.5.0`, `16-mysql-tomcat`, `16.5-mysql-tomcat`, `16.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mysql-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.5-postgres-tomcat`, `16.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/postgres-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.5-mariadb-tomcat`, `16.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.10`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mariadb-tomcat/Dockerfile) +- [`16.4`, `16.4.0`, `16.4-mysql-tomcat`, `16.4.0-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mysql-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.0-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/postgres-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.0-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From 0056c05166e74effe8d6036634fddbf88bc4f4bb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jun 2024 13:08:55 -0700 Subject: [PATCH 1297/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index a080033dda12..bf276fb5027c 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-beta4-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-beta4-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-beta4-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-beta4-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-beta4-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-beta4`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-beta4-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-beta4-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-beta4-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-beta4-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-beta4-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-beta4-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-beta4-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-beta4-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-beta4-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-beta4-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d605b4738c1c1f1b22d93ec08fb9b7e2c3319e2/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-RC1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-RC1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-RC1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-RC1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-RC1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-RC1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-RC1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-RC1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-RC1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From b88cb1e41c74ba2b4d74924504f33521c31e5204 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jun 2024 15:08:55 -0700 Subject: [PATCH 1298/2686] Run update.sh --- jruby/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index dfd7d0da53a1..a0c7e641dacf 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.7`, `9.4-jre`, `9.4-jre8`, `9.4.7-jre`, `9.4.7-jre8`, `9.4.7.0`, `9.4.7.0-jre`, `9.4.7.0-jre8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.7-jdk`, `9.4.7-jdk8`, `9.4.7.0-jdk`, `9.4.7.0-jdk8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.7-jre11`, `9.4.7.0-jre11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.7-jdk11`, `9.4.7.0-jdk11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.7-jdk17`, `9.4.7.0-jdk17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.7-jre17`, `9.4.7.0-jre17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.7-jdk21`, `9.4.7.0-jdk21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.7-jre21`, `9.4.7.0-jre21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.14`, `9.3-jre`, `9.3-jre8`, `9.3.14-jre`, `9.3.14-jre8`, `9.3.14.0`, `9.3.14.0-jre`, `9.3.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.14-jdk`, `9.3.14-jdk8`, `9.3.14.0-jdk`, `9.3.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.14-jre11`, `9.3.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.14-jdk11`, `9.3.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.14-jdk17`, `9.3.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.14-jre17`, `9.3.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.14-jdk21`, `9.3.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.14-jre21`, `9.3.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/d5a1ac0a884d515f3da659309cca942589214095/9.3/jre21/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.7`, `9.4-jre`, `9.4-jre8`, `9.4.7-jre`, `9.4.7-jre8`, `9.4.7.0`, `9.4.7.0-jre`, `9.4.7.0-jre8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.7-jdk`, `9.4.7-jdk8`, `9.4.7.0-jdk`, `9.4.7.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.7-jre11`, `9.4.7.0-jre11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.7-jdk11`, `9.4.7.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.7-jdk17`, `9.4.7.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.7-jre17`, `9.4.7.0-jre17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre17/Dockerfile) +- [`9.4-jdk21`, `9.4.7-jdk21`, `9.4.7.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk21/Dockerfile) +- [`9.4-jre21`, `9.4.7-jre21`, `9.4.7.0-jre21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre21/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre17/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre21/Dockerfile) # Quick reference (cont.) From 1c5d227a1f8c32b1b6bbdb7e1967765d6814c9fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jun 2024 17:08:55 -0700 Subject: [PATCH 1299/2686] Run update.sh --- julia/README.md | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/julia/README.md b/julia/README.md index 7dfb3920143d..4c5003a13cec 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,10 +28,12 @@ WARNING: ## Simple Tags -- [`1.11.0-beta2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-beta2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-beta2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-beta2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-rc1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-rc1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-rc1-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-rc1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.20/Dockerfile) +- [`1.11.0-rc1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.19/Dockerfile) +- [`1.11.0-rc1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-rc1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) - [`1.10.4-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bullseye/Dockerfile) - [`1.10.4-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.4-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.20/Dockerfile) @@ -47,13 +49,13 @@ WARNING: ## Shared Tags -- `1.11.0-beta2`, `1.11-rc`, `rc`: - - [`1.11.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-beta2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/a8724bbf8909a998fde3c2eed50576b0487bd394/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-rc1`, `1.11-rc`, `rc`: + - [`1.11.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- `1.11.0-rc1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.4`, `1.10`, `1`, `latest`: - [`1.10.4-bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -128,6 +130,14 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -137,14 +147,6 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](http://julialang.org/) for the software contained in this image. From 03c058fc3c72b4b2f297c6196042d9e58e4fb3b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Jun 2024 18:08:51 -0700 Subject: [PATCH 1300/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9f470b1631ee..b84371c03fbd 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`27.0.1-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/cli/Dockerfile) -- [`27.0.1-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.1-dind-alpine3.20`, `27.0.1`, `27.0`, `27`, `latest`, `27.0.1-alpine3.20`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/dind/Dockerfile) -- [`27.0.1-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/dind-rootless/Dockerfile) -- [`27.0.1-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.1-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-1809/Dockerfile) +- [`27.0.2-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/cli/Dockerfile) +- [`27.0.2-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.2-dind-alpine3.20`, `27.0.2`, `27.0`, `27`, `latest`, `27.0.2-alpine3.20`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/dind/Dockerfile) +- [`27.0.2-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/dind-rootless/Dockerfile) +- [`27.0.2-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.2-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) @@ -51,9 +51,9 @@ WARNING: ## Shared Tags -- `27.0.1-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b317cabfb873fef32ac8cad0cd58d6e6c32a63a4/27/windows/windowsservercore-1809/Dockerfile) +- `27.0.2-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: + - [`27.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) From 3c0fa1f9537e925899d7973aa24efa64d0cf903d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jun 2024 10:08:56 -0700 Subject: [PATCH 1301/2686] Run update.sh --- emqx/README.md | 2 +- maven/README.md | 70 ++++++++++++++++++++++++------------------------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 81aa54d9ec26..e50a492945bb 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -30,7 +30,7 @@ WARNING: - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) - [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) - [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) -- [`5.7.0`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/d7d5134e8256395e022d573099f70fda1ae85285/5.7/Dockerfile) +- [`5.7.1`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/02b0801191ba3fafb9f9c845c69d8045d7c85430/5.7/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index d416b3dedada..69734e45429b 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.7-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11/Dockerfile) -- [`3.9.7-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.7-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.7-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17/Dockerfile) -- [`3.9.7-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.7-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.7-eclipse-temurin-21`, `3.9.7`, `3.9.7-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21/Dockerfile) -- [`3.9.7-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.7-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.7-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22/Dockerfile) -- [`3.9.7-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22-alpine/Dockerfile) -- [`3.9.7-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-22-jammy/Dockerfile) -- [`3.9.7-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8/Dockerfile) -- [`3.9.7-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.7-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.7-ibmjava-8`, `3.9.7-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibmjava-8/Dockerfile) -- [`3.9.7-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-11-focal/Dockerfile) -- [`3.9.7-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-17-focal/Dockerfile) -- [`3.9.7-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.7-amazoncorretto-11`, `3.9.7-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11/Dockerfile) -- [`3.9.7-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.7-amazoncorretto-11-debian`, `3.9.7-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-11-debian/Dockerfile) -- [`3.9.7-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17/Dockerfile) -- [`3.9.7-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.7-amazoncorretto-17-debian`, `3.9.7-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-17-debian/Dockerfile) -- [`3.9.7-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21/Dockerfile) -- [`3.9.7-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.7-amazoncorretto-21-debian`, `3.9.7-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-21-debian/Dockerfile) -- [`3.9.7-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8/Dockerfile) -- [`3.9.7-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.7-amazoncorretto-8-debian`, `3.9.7-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/amazoncorretto-8-debian/Dockerfile) -- [`3.9.7-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-11/Dockerfile) -- [`3.9.7-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-17/Dockerfile) -- [`3.9.7-sapmachine-21`, `3.9.7-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/43cc67eb6ec38bfc7394a51f43e39ca3f24af65c/sapmachine-21/Dockerfile) -- [`3.9.7-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/cec36dcb2ace0c70dddad6a12cde5d305a6dfe06/sapmachine-22/Dockerfile) +- [`3.9.8-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11/Dockerfile) +- [`3.9.8-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.8-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.8-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17/Dockerfile) +- [`3.9.8-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.8-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.8-eclipse-temurin-21`, `3.9.8`, `3.9.8-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21/Dockerfile) +- [`3.9.8-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.8-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-jammy/Dockerfile) +- [`3.9.8-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22/Dockerfile) +- [`3.9.8-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-alpine/Dockerfile) +- [`3.9.8-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-jammy/Dockerfile) +- [`3.9.8-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8/Dockerfile) +- [`3.9.8-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.8-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.8-ibmjava-8`, `3.9.8-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibmjava-8/Dockerfile) +- [`3.9.8-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-11-focal/Dockerfile) +- [`3.9.8-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-17-focal/Dockerfile) +- [`3.9.8-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-21-jammy/Dockerfile) +- [`3.9.8-amazoncorretto-11`, `3.9.8-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11/Dockerfile) +- [`3.9.8-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.8-amazoncorretto-11-debian`, `3.9.8-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-debian/Dockerfile) +- [`3.9.8-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17/Dockerfile) +- [`3.9.8-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.8-amazoncorretto-17-debian`, `3.9.8-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-debian/Dockerfile) +- [`3.9.8-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21/Dockerfile) +- [`3.9.8-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.8-amazoncorretto-21-debian`, `3.9.8-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-debian/Dockerfile) +- [`3.9.8-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8/Dockerfile) +- [`3.9.8-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.8-amazoncorretto-8-debian`, `3.9.8-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-debian/Dockerfile) +- [`3.9.8-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-11/Dockerfile) +- [`3.9.8-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-17/Dockerfile) +- [`3.9.8-sapmachine-21`, `3.9.8-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-21/Dockerfile) +- [`3.9.8-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-22/Dockerfile) # Quick reference (cont.) From 88b4c8f6a61bc23cd0cbbde29106d868e0ed4c62 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jun 2024 11:08:58 -0700 Subject: [PATCH 1302/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 4e0b1f30c3a3..f5737dd671c6 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -27,9 +27,9 @@ WARNING: - [`16`, `16.5`, `16.5.0`, `16-mysql-tomcat`, `16.5-mysql-tomcat`, `16.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.5-postgres-tomcat`, `16.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/postgres-tomcat/Dockerfile) - [`16-mariadb-tomcat`, `16.5-mariadb-tomcat`, `16.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.10`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3885e1125214cbdc3dc1f6074cf89b762f9035e0/15/mariadb-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/postgres-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.0`, `16.4-mysql-tomcat`, `16.4.0-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mysql-tomcat/Dockerfile) - [`16.4-postgres-tomcat`, `16.4.0-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/postgres-tomcat/Dockerfile) - [`16.4-mariadb-tomcat`, `16.4.0-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mariadb-tomcat/Dockerfile) From 3afe4cb92d388b6ba924276f3a21dbbbea117f28 Mon Sep 17 00:00:00 2001 From: FHefterSRH <99803300+FHefterSRH@users.noreply.github.com> Date: Thu, 27 Jun 2024 20:57:25 +0200 Subject: [PATCH 1303/2686] Fix talker_listener.launch -> talker_listener_launch (#2458) Co-authored-by: FAH --- ros/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ros/content.md b/ros/content.md index 2f14ee99e988..57dd042fc79e 100644 --- a/ros/content.md +++ b/ros/content.md @@ -22,7 +22,7 @@ RUN apt-get update && apt-get install -y \ rm -rf /var/lib/apt/lists/* # launch ros package -CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener.launch.py"] +CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` Note: all ROS images include a default entrypoint that sources the ROS environment setup before executing the configured command, in this case the demo packages launch file. You can then build and run the Docker image like so: @@ -102,7 +102,7 @@ RUN sed --in-place --expression \ /ros_entrypoint.sh # run launch file -CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener.launch.py"] +CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` The example above starts by using [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone source repos of interest into the cacher stage. One could similarly `COPY` code from the local build context into the source directory as well. Package manifest files are then cached in a temporary directory where the following builder stage may copy from to install necessary dependencies with [`rosdep`](https://github.com/ros-infrastructure/rosdep). This is done prior to copying the rest of the source files to preserve the multi-stage build cache, given unaltered manifests do not alter declared dependencies, saving time and bandwidth. The overlay is then built using [`colcon`](https://colcon.readthedocs.io/en/released/), the entrypoint updated to source the workspace, and the default command set to launch the demo. @@ -217,7 +217,7 @@ RUN apt-get update && apt-get install -y \ rm -rf /var/lib/apt/lists/* # launch ros package -CMD ["roslaunch", "roscpp_tutorials", "talker_listener.launch"] +CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] ``` The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. From 48bce0fb9243546b6ecfca30d3f30ef664590bc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jun 2024 12:08:55 -0700 Subject: [PATCH 1304/2686] Run update.sh --- neo4j/README.md | 10 ++++------ ros/README.md | 6 +++--- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index c6ab46ef5d3e..bcae47560f3c 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,12 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.20.0-community-bullseye`, `5.20-community-bullseye`, `5-community-bullseye`, `5.20.0-community`, `5.20-community`, `5-community`, `5.20.0-bullseye`, `5.20-bullseye`, `5-bullseye`, `5.20.0`, `5.20`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/bullseye/community/Dockerfile) -- [`5.20.0-enterprise-bullseye`, `5.20-enterprise-bullseye`, `5-enterprise-bullseye`, `5.20.0-enterprise`, `5.20-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/bullseye/enterprise/Dockerfile) -- [`5.20.0-community-ubi9`, `5.20-community-ubi9`, `5-community-ubi9`, `5.20.0-ubi9`, `5.20-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi9/community/Dockerfile) -- [`5.20.0-enterprise-ubi9`, `5.20-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi9/enterprise/Dockerfile) -- [`5.20.0-community-ubi8`, `5.20-community-ubi8`, `5-community-ubi8`, `5.20.0-ubi8`, `5.20-ubi8`, `5-ubi8`, `community-ubi8`, `ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi8/community/Dockerfile) -- [`5.20.0-enterprise-ubi8`, `5.20-enterprise-ubi8`, `5-enterprise-ubi8`, `enterprise-ubi8`](https://github.com/neo4j/docker-neo4j-publish/blob/e3875367d27866ea446b1e0a1f069c5275095bcc/5.20.0/ubi8/enterprise/Dockerfile) +- [`5.21.0-community-bullseye`, `5.21-community-bullseye`, `5-community-bullseye`, `5.21.0-community`, `5.21-community`, `5-community`, `5.21.0-bullseye`, `5.21-bullseye`, `5-bullseye`, `5.21.0`, `5.21`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/community/Dockerfile) +- [`5.21.0-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.0-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/enterprise/Dockerfile) +- [`5.21.0-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.0-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/community/Dockerfile) +- [`5.21.0-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/enterprise/Dockerfile) - [`4.4.34`, `4.4.34-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/community/Dockerfile) - [`4.4.34-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/enterprise/Dockerfile) diff --git a/ros/README.md b/ros/README.md index ccda15326c98..0f4c58ee32f9 100644 --- a/ros/README.md +++ b/ros/README.md @@ -84,7 +84,7 @@ RUN apt-get update && apt-get install -y \ rm -rf /var/lib/apt/lists/* # launch ros package -CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener.launch.py"] +CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` Note: all ROS images include a default entrypoint that sources the ROS environment setup before executing the configured command, in this case the demo packages launch file. You can then build and run the Docker image like so: @@ -164,7 +164,7 @@ RUN sed --in-place --expression \ /ros_entrypoint.sh # run launch file -CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener.launch.py"] +CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` The example above starts by using [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone source repos of interest into the cacher stage. One could similarly `COPY` code from the local build context into the source directory as well. Package manifest files are then cached in a temporary directory where the following builder stage may copy from to install necessary dependencies with [`rosdep`](https://github.com/ros-infrastructure/rosdep). This is done prior to copying the rest of the source files to preserve the multi-stage build cache, given unaltered manifests do not alter declared dependencies, saving time and bandwidth. The overlay is then built using [`colcon`](https://colcon.readthedocs.io/en/released/), the entrypoint updated to source the workspace, and the default command set to launch the demo. @@ -279,7 +279,7 @@ RUN apt-get update && apt-get install -y \ rm -rf /var/lib/apt/lists/* # launch ros package -CMD ["roslaunch", "roscpp_tutorials", "talker_listener.launch"] +CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] ``` The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. From 1603a6cb217eb3f5549702b799bd9ac3787b9e2a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jun 2024 13:08:53 -0700 Subject: [PATCH 1305/2686] Run update.sh --- mediawiki/README.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index ffcc4903ef88..9b462f42718c 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,15 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.41.1`, `1.41`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/apache/Dockerfile) -- [`1.41.1-fpm`, `1.41-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/fpm/Dockerfile) -- [`1.41.1-fpm-alpine`, `1.41-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.41/fpm-alpine/Dockerfile) -- [`1.40.3`, `1.40`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/apache/Dockerfile) -- [`1.40.3-fpm`, `1.40-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/fpm/Dockerfile) -- [`1.40.3-fpm-alpine`, `1.40-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.40/fpm-alpine/Dockerfile) -- [`1.39.7`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/apache/Dockerfile) -- [`1.39.7-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/fpm/Dockerfile) -- [`1.39.7-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1161796f04d6a6bcbec9fb4c67a8ce7248392403/1.39/fpm-alpine/Dockerfile) +- [`1.42.1`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/apache/Dockerfile) +- [`1.42.1-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/fpm/Dockerfile) +- [`1.42.1-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/fpm-alpine/Dockerfile) +- [`1.41.2`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/apache/Dockerfile) +- [`1.41.2-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/fpm/Dockerfile) +- [`1.41.2-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/fpm-alpine/Dockerfile) +- [`1.40.4`, `1.40`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/apache/Dockerfile) +- [`1.40.4-fpm`, `1.40-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/fpm/Dockerfile) +- [`1.40.4-fpm-alpine`, `1.40-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/fpm-alpine/Dockerfile) +- [`1.39.8`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/apache/Dockerfile) +- [`1.39.8-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/fpm/Dockerfile) +- [`1.39.8-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From d422f08845a54936b95743e41a6b88e8446ef804 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Jun 2024 17:08:56 -0700 Subject: [PATCH 1306/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- nats/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index bb91a10739d8..b9da32363222 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.4.20240611.0`](https://github.com/amazonlinux/container-images/blob/77f7a5d15a41a4c43d477351a84d065377b10cb1/Dockerfile) -- [`2`, `2.0.20240610.1`](https://github.com/amazonlinux/container-images/blob/252f954fcdd02be858931219147aebcf9099e86c/Dockerfile) +- [`2023`, `latest`, `2023.5.20240624.0`](https://github.com/amazonlinux/container-images/blob/79921b7f2b8ace2a04214cac4e2b2dd375f793af/Dockerfile) +- [`2`, `2.0.20240620.0`](https://github.com/amazonlinux/container-images/blob/3940ec6a9ed3bbb1dd7ccca2fcfcc4a28213588a/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 0d571bc5f705..64be3de6298e 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,30 +28,30 @@ WARNING: ## Simple Tags -- [`2.10.16-alpine3.19`, `2.10-alpine3.19`, `2-alpine3.19`, `alpine3.19`, `2.10.16-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/alpine3.19/Dockerfile) -- [`2.10.16-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.16-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/scratch/Dockerfile) -- [`2.10.16-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.16-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.17-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.17-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/alpine3.20/Dockerfile) +- [`2.10.17-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.17-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) +- [`2.10.17-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.17-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.16`, `2.10`, `2`, `latest`: - - [`2.10.16-scratch`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/scratch/Dockerfile) - - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.16-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.16-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.16-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.16-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.17`, `2.10`, `2`, `latest`: + - [`2.10.17-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) + - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) +- `2.10.17-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.17-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) +- `2.10.17-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/5f465e202f1338403efe81be5e172272b5803cd3/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 26d04dcf45cca061cefdb69c9a87f003dea578a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Jun 2024 12:08:55 -0700 Subject: [PATCH 1307/2686] Run update.sh --- traefik/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/traefik/README.md b/traefik/README.md index dfcfa4c30697..695761a4e904 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`v3.1.0-rc2-windowsservercore-ltsc2022`, `3.1.0-rc2-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.0-rc2-windowsservercore-1809`, `3.1.0-rc2-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/1809/Dockerfile) +- [`v3.1.0-rc2-nanoserver-ltsc2022`, `3.1.0-rc2-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.0-rc2`, `3.1.0-rc2`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/alpine/Dockerfile) - [`v3.0.3-windowsservercore-ltsc2022`, `3.0.3-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/servercore-ltsc2022/Dockerfile) - [`v3.0.3-windowsservercore-1809`, `3.0.3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/1809/Dockerfile) - [`v3.0.3-nanoserver-ltsc2022`, `3.0.3-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/nanoserver-ltsc2022/Dockerfile) From 173e6df66790cb5cfd8b95a94906a876ff4a566b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Jun 2024 13:08:53 -0700 Subject: [PATCH 1308/2686] Run update.sh --- redis/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/redis/README.md b/redis/README.md index 200015f5067d..f3bf952e17c5 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.4-rc1`, `7.4-rc`, `7.4-rc1-bookworm`, `7.4-rc-bookworm`](https://github.com/docker-library/redis/blob/0d682fed252b85f39d2033294eab217be02f95a1/7.4-rc/debian/Dockerfile) -- [`7.4-rc1-alpine`, `7.4-rc-alpine`, `7.4-rc1-alpine3.20`, `7.4-rc-alpine3.20`](https://github.com/docker-library/redis/blob/0d682fed252b85f39d2033294eab217be02f95a1/7.4-rc/alpine/Dockerfile) -- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) -- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) -- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) -- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.20`, `7.0-alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/alpine/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) -- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/docker-library/redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) +- [`7.4-rc2`, `7.4-rc`, `7.4-rc2-bookworm`, `7.4-rc-bookworm`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/debian/Dockerfile) +- [`7.4-rc2-alpine`, `7.4-rc-alpine`, `7.4-rc2-alpine3.20`, `7.4-rc-alpine3.20`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/alpine/Dockerfile) +- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) +- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) +- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) +- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.20`, `7.0-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/alpine/Dockerfile) +- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) +- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) # Quick reference (cont.) From bdaea44d46aa8ae1dbe914a1c3391572b24ae5d6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Jun 2024 14:09:05 -0700 Subject: [PATCH 1309/2686] Run update.sh --- mediawiki/README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index 9b462f42718c..46c99c2e5470 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,18 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.42.1`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/apache/Dockerfile) -- [`1.42.1-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/fpm/Dockerfile) -- [`1.42.1-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.42/fpm-alpine/Dockerfile) -- [`1.41.2`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/apache/Dockerfile) -- [`1.41.2-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/fpm/Dockerfile) -- [`1.41.2-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.41/fpm-alpine/Dockerfile) -- [`1.40.4`, `1.40`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/apache/Dockerfile) -- [`1.40.4-fpm`, `1.40-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/fpm/Dockerfile) -- [`1.40.4-fpm-alpine`, `1.40-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.40/fpm-alpine/Dockerfile) -- [`1.39.8`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/apache/Dockerfile) -- [`1.39.8-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/fpm/Dockerfile) -- [`1.39.8-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/ac216d3fa6d11d3d79c9ddabf55950b05ccf8b08/1.39/fpm-alpine/Dockerfile) +- [`1.42.1`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/apache/Dockerfile) +- [`1.42.1-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm/Dockerfile) +- [`1.42.1-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm-alpine/Dockerfile) +- [`1.41.2`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/apache/Dockerfile) +- [`1.41.2-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm/Dockerfile) +- [`1.41.2-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm-alpine/Dockerfile) +- [`1.39.8`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/apache/Dockerfile) +- [`1.39.8-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm/Dockerfile) +- [`1.39.8-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7d709aa255f36cba0194d3c0ddef673e327b9d32 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Jun 2024 17:09:02 -0700 Subject: [PATCH 1310/2686] Run update.sh --- ghost/README.md | 4 +-- mongo/README.md | 90 +++++++++++++++++-------------------------------- 2 files changed, 32 insertions(+), 62 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index ec0c9155c92f..94e4d63e194e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.86.2`, `5.86`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a74ffaa09a98dac2d6900957d7fab2c545e2dec1/5/debian/Dockerfile) -- [`5.86.2-alpine`, `5.86-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a74ffaa09a98dac2d6900957d7fab2c545e2dec1/5/alpine/Dockerfile) +- [`5.87.0`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1b2bf3e790b799e4e9b232ad8bc4b6622e466c76/5/debian/Dockerfile) +- [`5.87.0-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1b2bf3e790b799e4e9b232ad8bc4b6622e466c76/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index a9c3b288531e..d5b6f1f1f50e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -33,26 +33,16 @@ WARNING: - [`8.0.0-rc9-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) - [`8.0.0-rc9-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc9-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.12-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) -- [`7.0.12-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.12-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.12-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.12-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.11-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) -- [`7.0.11-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.11-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.11-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.11-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.16-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) -- [`6.0.16-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.16-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.16-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.16-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-1809/Dockerfile) -- [`6.0.15-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) -- [`6.0.15-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.15-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.15-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.15-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) +- [`7.0.12-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.12-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.12-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.12-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.16-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) +- [`6.0.16-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.16-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.16-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) @@ -71,46 +61,26 @@ WARNING: - `8.0.0-rc9-nanoserver`, `8.0-rc-nanoserver`: - [`8.0.0-rc9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.12-rc1`, `7.0-rc`: - - [`7.0.12-rc1-jammy`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/Dockerfile) - - [`7.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.12-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.12-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.12-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.12-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.12-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.12-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd64a18eb20f9bdb81a3e537c576504e2c59d106/7.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.11`, `7.0`, `7`, `latest`: - - [`7.0.11-jammy`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/Dockerfile) - - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.11-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ea20b1f96f8a64f988bdcc03bb7cb234377c220c/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.11-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.16-rc0`, `6.0-rc`: - - [`6.0.16-rc0-jammy`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/Dockerfile) - - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.16-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.16-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.16-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.16-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/605282e4b50de8aa5f15d8d90c76fa6ceeadc6d6/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.16-rc0-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.16-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.16-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0-rc/windows/nanoserver-1809/Dockerfile) -- `6.0.15`, `6.0`, `6`: - - [`6.0.15-jammy`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/Dockerfile) - - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.15-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c6713cbc8fa45598c23446993c6a01c95150b785/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.15-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/6.0/windows/nanoserver-1809/Dockerfile) +- `7.0.12`, `7.0`, `7`, `latest`: + - [`7.0.12-jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) + - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.12-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) +- `7.0.12-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.16`, `6.0`, `6`: + - [`6.0.16-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) + - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.16-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) +- `6.0.16-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.27`, `5.0`, `5`: - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) From 7739339227aa864c319dd49d8cef35cf4773d4e8 Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Mon, 1 Jul 2024 13:07:12 -0500 Subject: [PATCH 1311/2686] Add deprecation notice for Scientific Linux --- sl/README-short.txt | 2 +- sl/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 sl/deprecated.md diff --git a/sl/README-short.txt b/sl/README-short.txt index 76594132e25f..1f7ce6be36a7 100644 --- a/sl/README-short.txt +++ b/sl/README-short.txt @@ -1 +1 @@ -Official containers for Scientific Linux(SL) +DEPRECATED; Official containers for Scientific Linux(SL) diff --git a/sl/deprecated.md b/sl/deprecated.md new file mode 100644 index 000000000000..8d79f32d8756 --- /dev/null +++ b/sl/deprecated.md @@ -0,0 +1 @@ +Scientific Linux reached end of life June 30, 2024 From 3ab27084f535648afa3882a71e5fafdc5a305cb6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jul 2024 11:08:55 -0700 Subject: [PATCH 1312/2686] Run update.sh --- friendica/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/friendica/README.md b/friendica/README.md index 04cf9e6d4df3..729010ae7a26 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -33,6 +33,9 @@ WARNING: - [`2024.06-dev-apache`, `dev-apache`, `2024.06-dev`, `dev`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/apache/Dockerfile) - [`2024.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm/Dockerfile) - [`2024.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm-alpine/Dockerfile) +- [`2024.06-rc-apache`, `rc-apache`, `2024.06-rc`, `rc`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/apache/Dockerfile) +- [`2024.06-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm/Dockerfile) +- [`2024.06-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -40,7 +43,7 @@ WARNING: [https://github.com/friendica/docker/issues](https://github.com/friendica/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`mips64le`](https://hub.docker.com/r/mips64le/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) + [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`mips64le`](https://hub.docker.com/r/mips64le/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`riscv64`](https://hub.docker.com/r/riscv64/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) - **Published image artifact details**: [repo-info repo's `repos/friendica/` directory](https://github.com/docker-library/repo-info/blob/master/repos/friendica) ([history](https://github.com/docker-library/repo-info/commits/master/repos/friendica)) From a34e95aa02d1b2cfa6e0e7839ec6012697f11588 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jul 2024 15:09:00 -0700 Subject: [PATCH 1313/2686] Run update.sh --- groovy/README.md | 14 +++++++------- ibmjava/README.md | 6 +++--- telegraf/README.md | 12 ++++++------ 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index de23af3a7c32..f0c5115636a3 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.20-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.20-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk8/Dockerfile) -- [`4.0.20-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.20-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk11/Dockerfile) -- [`4.0.20-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk11-alpine/Dockerfile) -- [`4.0.20-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.20-jdk`, `4.0-jdk`, `4.0.20`, `4.0`, `4`, `jdk`, `latest`, `4.0.20-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.20-jdk-jammy`, `4.0-jdk-jammy`, `4.0.20-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk17/Dockerfile) -- [`4.0.20-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.20-jdk-alpine`, `4.0-jdk-alpine`, `4.0.20-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk17-alpine/Dockerfile) -- [`4.0.20-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.20-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk21/Dockerfile) -- [`4.0.20-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/b1e1500675bd83f28f1a5c5ab345069ecbdad3b4/jdk21-alpine/Dockerfile) +- [`4.0.22-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.22-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk8/Dockerfile) +- [`4.0.22-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.22-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11/Dockerfile) +- [`4.0.22-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11-alpine/Dockerfile) +- [`4.0.22-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.22-jdk`, `4.0-jdk`, `4.0.22`, `4.0`, `4`, `jdk`, `latest`, `4.0.22-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.22-jdk-jammy`, `4.0-jdk-jammy`, `4.0.22-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17/Dockerfile) +- [`4.0.22-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.22-jdk-alpine`, `4.0-jdk-alpine`, `4.0.22-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17-alpine/Dockerfile) +- [`4.0.22-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.22-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21/Dockerfile) +- [`4.0.22-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index cf9b63167d7e..0dd38a8e4b77 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/ac718c6bf8086a14015d631813eb20c57101e81c/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 94e4a4ad4e0d..710572f04c2b 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d58a5bb1ed90b2316fbb2b113599d4885e40a077/telegraf/1.31/alpine/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/alpine/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/alpine/Dockerfile) +- [`1.31`, `1.31.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/Dockerfile) +- [`1.31-alpine`, `1.31.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/alpine/Dockerfile) # Quick reference (cont.) From f84f69616f48a83e4e53374543a533290df44673 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jul 2024 15:23:36 -0700 Subject: [PATCH 1314/2686] Run update.sh --- sl/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sl/README.md b/sl/README.md index 7f6589c6c22b..03eeec45a10a 100644 --- a/sl/README.md +++ b/sl/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +Scientific Linux reached end of life June 30, 2024 + # Quick reference - **Maintained by**: From 77fca284c2a57af94c82f32dcd900c68795d76de Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jul 2024 16:33:19 -0700 Subject: [PATCH 1315/2686] Run update.sh --- rust/README.md | 4 +--- sl/README.md | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/rust/README.md b/rust/README.md index 9b000e09dc2c..9701bea0d4e5 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,8 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-buster`, `1.79-buster`, `1.79.0-buster`, `buster`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/buster/Dockerfile) -- [`1-slim-buster`, `1.79-slim-buster`, `1.79.0-slim-buster`, `slim-buster`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/buster/slim/Dockerfile) - [`1-bullseye`, `1.79-bullseye`, `1.79.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/Dockerfile) - [`1-slim-bullseye`, `1.79-slim-bullseye`, `1.79.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/slim/Dockerfile) - [`1-bookworm`, `1.79-bookworm`, `1.79.0-bookworm`, `bookworm`, `1`, `1.79`, `1.79.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/Dockerfile) @@ -122,7 +120,7 @@ The `rust` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/sl/README.md b/sl/README.md index 03eeec45a10a..8c58de36e641 100644 --- a/sl/README.md +++ b/sl/README.md @@ -28,7 +28,7 @@ Scientific Linux reached end of life June 30, 2024 # Supported tags and respective `Dockerfile` links -- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/f5eec00586e57174fd8616a9a052cd75d7ae5377/sl7/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -36,7 +36,7 @@ Scientific Linux reached end of life June 30, 2024 [https://github.com/scientificlinux/sl-docker/issues](https://github.com/scientificlinux/sl-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/sl/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/sl/` directory](https://github.com/docker-library/repo-info/blob/master/repos/sl) ([history](https://github.com/docker-library/repo-info/commits/master/repos/sl)) From c3dc022a85a5f4ee6ca772c89927d2cdf1d83183 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 1 Jul 2024 16:36:25 -0700 Subject: [PATCH 1316/2686] Remove `sl` (fully EOL, fully up-to-date descriptions on Hub) https://github.com/docker-library/official-images/pull/17083 --- sl/README-short.txt | 1 - sl/README.md | 135 -------------------------------------------- sl/content.md | 74 ------------------------ sl/deprecated.md | 1 - sl/get-help.md | 1 - sl/github-repo | 1 - sl/license.md | 1 - sl/logo.png | Bin 42016 -> 0 bytes sl/maintainer.md | 1 - sl/metadata.json | 7 --- 10 files changed, 222 deletions(-) delete mode 100644 sl/README-short.txt delete mode 100644 sl/README.md delete mode 100644 sl/content.md delete mode 100644 sl/deprecated.md delete mode 100644 sl/get-help.md delete mode 100644 sl/github-repo delete mode 100644 sl/license.md delete mode 100644 sl/logo.png delete mode 100644 sl/maintainer.md delete mode 100644 sl/metadata.json diff --git a/sl/README-short.txt b/sl/README-short.txt deleted file mode 100644 index 1f7ce6be36a7..000000000000 --- a/sl/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -DEPRECATED; Official containers for Scientific Linux(SL) diff --git a/sl/README.md b/sl/README.md deleted file mode 100644 index 8c58de36e641..000000000000 --- a/sl/README.md +++ /dev/null @@ -1,135 +0,0 @@ - - -# **DEPRECATION NOTICE** - -Scientific Linux reached end of life June 30, 2024 - -# Quick reference - -- **Maintained by**: - [Scientific Linux Development Team](https://github.com/scientificlinux/sl-docker) - -- **Where to get help**: - [SL Faq](https://www.scientificlinux.org/documentation/faq) or [Email Lists](https://www.scientificlinux.org/community) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/scientificlinux/sl-docker/issues](https://github.com/scientificlinux/sl-docker/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/sl/` directory](https://github.com/docker-library/repo-info/blob/master/repos/sl) ([history](https://github.com/docker-library/repo-info/commits/master/repos/sl)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/sl` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fsl) - [official-images repo's `library/sl` file](https://github.com/docker-library/official-images/blob/master/library/sl) ([history](https://github.com/docker-library/official-images/commits/master/library/sl)) - -- **Source of this description**: - [docs repo's `sl/` directory](https://github.com/docker-library/docs/tree/master/sl) ([history](https://github.com/docker-library/docs/commits/master/sl)) - -# Scientific Linux - -![logo](https://raw.githubusercontent.com/docker-library/docs/9d3c9d2eb97c9558ed53dc5f7f837654d455f9e5/sl/logo.png) - -These images contain [Scientific Linux](http://www.scientificlinux.org/). - -## About Scientific Linux - -Scientific Linux is a [Fermilab](http://fnal.gov/) sponsored project. Our primary user base is within the High Energy and High Intensity Physics community. However, our users come from a wide variety of industries with various use cases all over the globe – and sometimes off of it! - -Our Mission: - -> Driven by Fermilab's scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. - -Scientific Linux is a rebuild of Red Hat Enterprise Linux (property of Red Hat Inc. NYSE:RHT). - -Please see [About Scientific Linux](http://www.scientificlinux.org/about/) and [Why Make Scientific Linux](http://www.scientificlinux.org/about/why-make-scientific-linux/) for more information. - -## Container Tags - -A tag will be provided for each of the [maintained major releases](http://www.scientificlinux.org/downloads/sl-versions/) of Scientific Linux (`6`, `7`). - -The `latest` tag will track the highest version numbered release of Scientific Linux. - -Updated images will be released roughly once per month. - -## Build Process - -The root filesystem for these docker images is built on our internal build system. - -## Docker, overlayfs, and yum - -Recent Docker versions support the [overlayfs](https://docs.docker.com/engine/userguide/storagedriver/overlayfs-driver/) backend, which is enabled by default on most distros supporting it from Docker 1.13 onwards. On SL 6 and 7, that backend requires `yum-plugin-ovl` to be installed and enabled, which it is in our containers. Make it sure you retain the `plugins=1` option in `/etc/yum.conf` if you update that file; otherwise, you may encounter errors related to rpmdb checksum failure - see [Docker ticket 10180](https://github.com/docker/docker/issues/10180) for more details. - -## Example Usage - -You can try out the containers via: - -```console -$ docker pull sl -$ docker run -it sl:6 cat /etc/redhat-release -$ docker run -it sl:7 cat /etc/redhat-release -``` - -## Enabling systemd in SL7 - -The SL7 docker container ships with systemd mostly functional. You can build a SL7 systemd enabled container with the following Dockerfile. - -In order to run a container with systemd, you will need to mount the cgroups volumes from the host. - -```Dockerfile -# Example SL7 systemd Dockerfile -FROM sl:7 -ENV container docker -### This example enables httpd via systemd within the container -RUN yum -y install httpd && yum clean all && systemctl enable httpd.service -EXPOSE 80 -### End of example commands for httpd via systemd -VOLUME [ "/sys/fs/cgroup" ] -CMD ["/usr/sbin/init"] -``` - -You can build and run this example (with apache) via: - -```console -$ docker build --rm -t local/mycontainer your/path -$ docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro -p 80:80 local/mycontainer -``` - -Which will run systemd within the container in a limited context. - -It is recommended that you install any relevant [OCI hooks](https://www.opencontainers.org/) for your container host - such as `oci-register-machine` or `oci-systemd-hook`. - -Some container hosts must add `--tmpfs /run` to the `docker run` command. - -# License - -By default the SL docker images do not include documentation or license files. If you require them, please remove `tsflags=nodocs` from `/etc/yum.conf` and run `yum reinstall mypackage` to recieve the documentation. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `sl/` directory](https://github.com/docker-library/repo-info/tree/master/repos/sl). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/sl/content.md b/sl/content.md deleted file mode 100644 index f2b99b8ff80a..000000000000 --- a/sl/content.md +++ /dev/null @@ -1,74 +0,0 @@ -# Scientific Linux - -%%LOGO%% - -These images contain [Scientific Linux](http://www.scientificlinux.org/). - -## About Scientific Linux - -Scientific Linux is a [Fermilab](http://fnal.gov/) sponsored project. Our primary user base is within the High Energy and High Intensity Physics community. However, our users come from a wide variety of industries with various use cases all over the globe – and sometimes off of it! - -Our Mission: - -> Driven by Fermilab's scientific mission and focusing on the changing needs of experimental facilities, Scientific Linux should provide a world class environment for scientific computing needs. - -Scientific Linux is a rebuild of Red Hat Enterprise Linux (property of Red Hat Inc. NYSE:RHT). - -Please see [About Scientific Linux](http://www.scientificlinux.org/about/) and [Why Make Scientific Linux](http://www.scientificlinux.org/about/why-make-scientific-linux/) for more information. - -## Container Tags - -A tag will be provided for each of the [maintained major releases](http://www.scientificlinux.org/downloads/sl-versions/) of Scientific Linux (`6`, `7`). - -The `latest` tag will track the highest version numbered release of Scientific Linux. - -Updated images will be released roughly once per month. - -## Build Process - -The root filesystem for these docker images is built on our internal build system. - -## Docker, overlayfs, and yum - -Recent Docker versions support the [overlayfs](https://docs.docker.com/engine/userguide/storagedriver/overlayfs-driver/) backend, which is enabled by default on most distros supporting it from Docker 1.13 onwards. On SL 6 and 7, that backend requires `yum-plugin-ovl` to be installed and enabled, which it is in our containers. Make it sure you retain the `plugins=1` option in `/etc/yum.conf` if you update that file; otherwise, you may encounter errors related to rpmdb checksum failure - see [Docker ticket 10180](https://github.com/docker/docker/issues/10180) for more details. - -## Example Usage - -You can try out the containers via: - -```console -$ docker pull %%IMAGE%% -$ docker run -it %%IMAGE%%:6 cat /etc/redhat-release -$ docker run -it %%IMAGE%%:7 cat /etc/redhat-release -``` - -## Enabling systemd in SL7 - -The SL7 docker container ships with systemd mostly functional. You can build a SL7 systemd enabled container with the following Dockerfile. - -In order to run a container with systemd, you will need to mount the cgroups volumes from the host. - -```Dockerfile -# Example SL7 systemd Dockerfile -FROM %%IMAGE%%:7 -ENV container docker -### This example enables httpd via systemd within the container -RUN yum -y install httpd && yum clean all && systemctl enable httpd.service -EXPOSE 80 -### End of example commands for httpd via systemd -VOLUME [ "/sys/fs/cgroup" ] -CMD ["/usr/sbin/init"] -``` - -You can build and run this example (with apache) via: - -```console -$ docker build --rm -t local/mycontainer your/path -$ docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro -p 80:80 local/mycontainer -``` - -Which will run systemd within the container in a limited context. - -It is recommended that you install any relevant [OCI hooks](https://www.opencontainers.org/) for your container host - such as `oci-register-machine` or `oci-systemd-hook`. - -Some container hosts must add `--tmpfs /run` to the `docker run` command. diff --git a/sl/deprecated.md b/sl/deprecated.md deleted file mode 100644 index 8d79f32d8756..000000000000 --- a/sl/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -Scientific Linux reached end of life June 30, 2024 diff --git a/sl/get-help.md b/sl/get-help.md deleted file mode 100644 index 3f914aef77d5..000000000000 --- a/sl/get-help.md +++ /dev/null @@ -1 +0,0 @@ -[SL Faq](https://www.scientificlinux.org/documentation/faq) or [Email Lists](https://www.scientificlinux.org/community) diff --git a/sl/github-repo b/sl/github-repo deleted file mode 100644 index 54178e3a5660..000000000000 --- a/sl/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/scientificlinux/sl-docker diff --git a/sl/license.md b/sl/license.md deleted file mode 100644 index cb3f67d4196a..000000000000 --- a/sl/license.md +++ /dev/null @@ -1 +0,0 @@ -By default the SL docker images do not include documentation or license files. If you require them, please remove `tsflags=nodocs` from `/etc/yum.conf` and run `yum reinstall mypackage` to recieve the documentation. diff --git a/sl/logo.png b/sl/logo.png deleted file mode 100644 index 01ac3333cc7d8b4756d96fd36415a3de3fca8047..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 42016 zcmXti7e73 zT`DC~KfZtb=FFXYX3m^5&$(xw``r7yUr(H&ffgCb0}=oL$R26KjqiHQ{~9sj-PL%( zjp(k!_f>mjLVS0G5j&vn?(cbNKli26HiCKKwF;|Kww~? z&`S?jUwd1x7ebysPPvB)4*-A_cm!893Ci0K56-iE5qx_dymX%DJJUL{F#Pb{+gi@b zdoW_{vZrw8%PFa=tLNxOzV8ThlZXEW=j08d%HOlfu;Tlii+EMM;kSV|h8g-W*B){< z2d->ve!Hhr@bcFAV5|KzFuqtI@!I)uYvH3qtn8NJmcsbu{4qc8v%J5mqGb1e{F%drv$(9V;v={@~jo_d{+aG1N@ zS>-zGe;aM9codB=n|zwDHCBJ^fAJG;zjkKFqvMM2FJI+Zdy{NGPUt`eeGjIm1c8De zMTOC9%bL{baU#zvjA)!sk^ZZ0P&2*1=F`O*1@;Ffa-{hkXk*r51?V5xKDfB*4G*V$ zQr(L|qZfn2Qh`TH%uLCY`xiYm^Z+nvnm_D!Unjd?r(8Vy!V*XZRvxa5s{?{SsK!sm zfggn@AxnoQd^~1+(t&WC)@yU8j&X)iglWIv~4?LSQc zS0Lzn_NABSal5ay9A@94Y;i@SHis zNDP2FJ2+?|9L`0NVI-JY00H~U0lh7nNwchaKM&ykJ?2<=MzQ=UvJMXWkPsJbRgAup zLQ2ct>wf#t1xZibD}@*hCw@(yC4T-OaA{;WrK|Lh8?MD=y6lP2)*ss;EitW3@Cl+% z?&dY_+g5t9yGl#ub7^j_T{Zx3|Lu>{)>Pz$%hxCZ1ISMwcs>m*NEm6xW}0-!S*#mo zedr?b;57T4sjx(c_BxPjxx5vOn0kW^;svbXLdW60=)FJHrWMn#_@Yn@cKX_lT)U@D zr<8G8d$^Dn`5)s_FUq^U7NB5&%6}zT_WKw4$vs?(k zI_!;gR8(;V@PX?z(GxO9^pv;U^zYw#K&9m4_ab`)NKQ3;i-(R4BX~1OH!R{$;Xfnr zo(aJs^7L|2xYHC1iSy}7_)dz`0C)*s{+UkoUKgCVjR{jre8V1(bxJS3Ka)6-44_af+ULGTe&e4M@` z9i>ce!;5^tT4)qsvwzxC7ZP4cU_r^ekBDp9{lFH%lls=avh*=nhDs$@`(}Z@wca?` zPwnTsUp7aVnFLp1!ZuRSz3-34y@LvjPqx8Nc;Tz?72}=I9UhXDTG|@+wQ)Qd%DdnHQWb_C zMg%%_F1ZxZOT$!d+M&CS>dedlEO~_>b&#Kcfq4sDrKmEXks4PZgynzp5np!LbmpP&Rpy9bk`8W z_;V+kNJx?v+(VtCYmnCj*0{UOobgic|I?R>&8ZP27P@|oE<2apI^)dQF@ zuPn=*g}p3~46XkiNavrOhIH2ZU!HkKt1{SqTDg4TC;tRhJRvgP{!?WJHG`gYmxxN` z5px1gpnZ`oxj=^&hxdF(@RKz8K&vZ`l<&TgLm}ouM+c=oPr4ON1cV>*HKuAyiW@Z^ z>l>X%?j;=G1oVEeT7MHwM}`M5KCMHs4SpR4HUS>I7W0qO_)=KZ{o1G1U2U^J0-rZG zRLpxQM>*POerJ3_A;0wJm@ibgbvG`8Wu9Z+ue?vA)JrTi46Jew6Ar5{cz%?Xhc$3t zel?j$Snlz=yo&VJ} zJvILCMrh3>X1=Q50iClmY6985xg0+SU9nAW%g4|)oAKw*KV7_xrFtCRhjv-&2*2Q2 zv)A}Z1<-{plS?_91i}JX#Xo`olN~APVU-m#2vS~94 z7Qc&afa0XQ(Sj_P4=trEKhRiN>Ur5^f;>y)t~pKmUZ{ATqj?uJ)zwv1_yIS-ixepb zRicdfFZsiZEEbh;cZ?#tJnCGnnD>J=|{&<+_!e5480co)<)1>zf>*_b0J<}C{1=C zvv}W1F<(#*vUStww__9-4yQ#@a;qOFlgaK!TSl!Cj1nBJy> z1pJ7%)Rc{@iP!ZYYwM{zMgxztk=q_`;~1SN`b;xAh1GO0fNC}c+~VoBj~dVm{#ZbM zezlJc-8(H`-ftWXBkTsLaWNvhwZ=~hm+@X}Jw+|GO$n-A54OEknR=ksOA zaq-(dW`_}BKBB74__SggvcXIhO8knY#>c4rT*%Br3DCb0k(0wO)1UZWi-k}`hk8bA zP{cI}S%;Y%ys$O2b`Lx9h#zaIGp-8YZxNz=e#uXmMb>x0%`f@(yGl$Xf82H`U`!fq zEC9xSfRM$ZDFmB5wnpFD(8RrZ%XE~xp(WgTu~Sp42Q?xr>T*&)^k$j|2aMPMZhxAg zqaF;+1KThIL>P+f*Nh4j8?%+X1u;W&#F$&iWXfdsiCz`ktC~GfqH$g^8Nm3{t3p1= zs$O+{@s|&ofETTR3SYd*7$PGD_Ax^Y0q3=cna20giy^hSmM;XQpLgSn#9=%?OfL|D z7)rNp)%`s;m|=SqWn+*e$3GVfE>#Od1;QRYxcu*thp(cG=K1Z^;Xf3}_mJKqw5xnJ@L3#D1FsH*wGh;xX=b4QNeTn@nvc$5IfzWAq#+U$R3C zT3ijuN@A|f;ggjUVmRx3MUmi}xvU;7tTY*v$S^vIO$Rv0inw7E(H~~0T5aB=l+XV0 zyx0T>DI!Y%Kh!Ucs*RiSau2*`(j!enzUq3vdN4F&L)wTfA2a!6`*&S6;yOk-48uG+ z&W_xxGL8?S!cbdX>eI?mH0q-!$A+4%H3fY+|AuM$oH6&8^8#Vbtfz#mbDItgqj|>J z{n#rV#}0zGt?(hcZdE1A1?JOkT?!gS?rgp&8G<@+)w~T31!F<)3O&=iVyL|s!Cc&| z*R-U5+i6fJc9ylnYw@UZpWahQXg@H0%6CD4d<_0chT?DYfP6S&T+fKiC71hrdx5#J zR4Pg6cU9Otati58wWI!kNwjtCEU`2*U@a~I@rtk$cu~H^S9t_;1wAY615m&&pN2p3 z95v+J?CPnZJ=}kkHIba z(T7C)EusNYC`B0J?U;j7o-lO`tuS`2NggcX>O80g%O-MZXZ_R(^v4se+#{_u=ARw| zFO{Q4fOC;2Ky7xg{iVuzXX^bo882NMbh8g)p`WEQxSVwh}F1_TQ~Hj@i$tEWcCFO7M?6u8>X$GwAVb2oU}PsU&N3@Go$~ZfDND>5#*w6-yv7 zHp3JoGpv4TpnW2MB#L6mt9Nv?gio?)>6a?8O@FMY_sP4L+e>&y5A>x7A61Ex0gPiKb@82)uBvC`fOJ!aSgs9{!g{R)lcZnDU3M_+@ez43mb(`zhNi(1b^EE_MA)w z?v+OD2^2F|nfj9aSY;W~kg9sf6fuXRNKBf&e|G3jogbGu7y)ypqv%;XIbj@Pu{ylT+11`o}EHyKuhI`}urJ-j! z|9|pp-{KZM+i&6qQ7FjueOJqzfT;`MAt`tVv_~Wek|CB;$JSF~MgU^yO~UL_ou_pP zp+dLNc-AlBss1&|N3QY&j)5RZ{%Y`vl*)V7YRx^ifaxX2s<1Tehki_f)(|*alYJUg zozS*OHvUD_%Wc1g4zMgvQmU=b9eFVacT{Y+W(0y&mMCPJ=}4v@Kp(sgfRLtxP*Ofz zzM6B#+i+MrlL`mSECGJ**M7m9daS99?-mejGm99eM^C?&==^$t?fuv zIjLELn@~-f*?Q+8<5Sk0J@Nq7=)XLt#Bll_bA&kZlW?+U;L7iCK8h?fYVoZ-?oYRt zQ7y%fH9RMUiiXqEtK5HuPSI#3aaXP=LK_exNRv<(Y5o)v9SoBtz{H`R)*SI|>{ptU z5p)c!1s6pWkK`Ng{0FDj(0~cpZHmWzHwOeX_5SJu^OdFD+&z}KFN&vfyDAfSuf*Y% zZ6vjhF=hdlMc>OqONOp8*UJ(B0a)=2s?5m7hXqPLaqPS)VnbNwQtXzDGQbC*3t)J= zZ>vZ9Bz+~h9z1>A`hKd&n`Z0w)Qj2^ZS~|L_(th|-w$3UgkN}~2#fZtrt&PCP1Q&${+7`k9uvj>n5}C~ z8-}kVD$L_*i80_(tk(yi8Bw~#DxDbV`1-xhak_E3iW`0m%m)wpH1KFZ;OFZ7#Bx5& zPlz}&X(k$Epga31$@_lY7QPm{kk5r#>6ImV&VlHM$Vgvz@2GXX!qKe^lb6eCmP_loJV{ z4!pYm&P7m7EmR8-J12}f?9WrEZxw34+SHxK zs~re-}zP-=r$#DZzcN(_~kukE@s4Ga6;H?~imMn!lS)98lCd@F&Dz|H5Hy z5EamGkC4x(uy5z12kQO61JSm=^P-Q%Q!lVg_82fZIrFIKYXxbXUhP`FfrMi484 z3Pe7dj6d`iw+8v}GiyEV-u^Vj zf2?zw%vvm-(bEn>L_ga#h##8Kz&5vA27jDqt_B(k-GhH+-G>pgPD#vii3Nx-;$D${ zC!}Y%C^(`OJ%Bg)SlyQCZa1lnw}k6PIp7;;KnZO_&3B${wvA@$`6*C2|! zIPUIfl;}P`PkmWcr;=I@yt}Z|`*PpUI_qw~_R*V{)|aiJ5k!qTDQ2y0hPwa!dIa|+ zs0EjGY17;%N^VKz~($1uL#u+_r0MZz0;zst%!)mWQNdg2Q~A2`FblaV5a! z;Tq$-AS{A0W-KM~H;a2S6&g>!RW`5oq$MKaxd+F&b!AM$0RDDBh4c3Sb&*%^4TOX5 z=Y%TZ=PB3jQ5b?%Xod9V0?b3;WmKy?u;4i3O*xxaG^Tf`JrjNUAJMK0V}OJouL;n~?mE5GhZHj)|ND z*4G!yOuo4T6u=3kiUC^>#Bc(&bwCagWaE2~S~h>={Rt>GetDkgrIL3%<bPL%UIDt=OoUpyZ99IOt$YsrdVo~ci>5)fUa+}Nb5}}AoA2#=NCiqFmt`s| zu%Ep5cU{dw$9H)yuD#RqNqU#Q?{X;9E|5l&>gOXbsIG6J_|(1)*# zt$gRZwdweQWiqvgi5@DSZ)N~{KeEB@gc8x5&9WOngpwj@05EK}FHv#hPY=V?bzDHp zj$fUGg5F?D^(*m)e+tNTh?(_uAbpN`Dq5!_B{4TvZbkXmR76%)n1P z`Zl63;oCJm5SFT$>v>o7*~8TP@(oWlB<&&R0W+MHO2hqMG9F;BLFaJR_(y3g3L-@XIv8qPpa-IH}zaAN$cf8taV^p~oz;2F-vRRxUlvneL;sl`LWeA1Sg?uNw*@}&H`ejSQ@jpMVe zqpW0xkEff|c)2YmMg+=$45_=M(&;n4y;M)cb7(wzaYwGPjf( zJ#OMauXuWnsC4tzGI(abplS5#gB`7(Hx)EHhxib{!2RBf@_+>cYiBIE;d3ydg(e^! zmxEkYkB3va{|r;gre1vmbTWAlzBUJr%WzgiMO%Iz#YuV+IoPd~oTK2dFMGSfkjY!k z{rP40s((oI$xGL1%Z)$1X)sr!In|J++I5_7mv!!!&dOP)?(*4%>6hOFvk_GapHAwP ztM#zA4XV}=v@TKRMm3q$ArHfIwZ{m&KB8R=q! z56h?bIcg7T-An&i{KhP9Es|LH8c5}iw|KBYV-nhuG)p8Izbs-HR2=dd7%r^l>0d#L z#E|{iRRVbVW#lARt%nL4v`5f_02Vct2~obfi1AtCWISvAae8@*qT4rrFBTt1UuKXX zh^AJntm&(f8KfA1T|(j~h3MxLLy{WK`Xd#$ZBrnuA90z_YDj@b^iHcL>dG-qbaNLv zOMo?rorm0JB^$ocm04J=IyJO&WqT_^mw<_2*hvj=27WD&>|Kfe_Jo8Mz=OY015NMx zDlVIHexo<$^R7o>i6&t6w>&+U1B1;3FuI5M-d5EK{Zuhgti!P4#NUdgUijkOuTerO zOpkxOs9J=?Y{ob?v=cp>iGPjg_G`SAQD7Ok5*Q`=VFPb*A+@|$1hOeGmf_2PINYaN z@Rc<)0e|JCFeHwr1~EPU=sM1_a02V`2)-08Ga9sj@Mlb&lF2fls@n?`75|)ku5gpS zH8~uIKV~=Jg!+p{J>m6`9Ozm^v^C8#EfZLLmswzM6L!Fo;Gx{ac1}8)&{sTb26hak z`;3;-JRtTlapv2F>U*|_&tUVKOwmuUQn{lKXrvcHa84gx(E0cdN^9?W-V&D#YEx9-!5fPh#Oojf@u z=E|CSn1vLj;=5(gY7{Mt>>%{+y0(OgrH;>pOz%z=@=Jwj<@?E5exG~(HL)2S#EeWN zK8ycR2xSwF;xc*zm_a9189OfJJN#+hN?=+aKc8=T9c`Tyw!FC?=JrmD?Z`cn zrBCv!u#}|nDM%ZyvA70|uI!g?#BJouPZ6blZ=MyTU6e&Cy?=fqjLZaVR6Hnpx1V6I zh@mW*I;*`nN9B9e9~Zm6Jd)UD$+K;VOX#ml*Zv)3;}ePwc^-@U$M|2&%ak;52&u&| zJolyZc8Gi8kqa|N5-(SV4rkR#<1U}hL)5*Jn6sw~z; zlC@AJPi6+MRyO``gYCBR!ojX7UnxrfQ`h6YZFK~ZH9zfQq4@lRNoS&#?MI81EZu3= z1D#7zZeqip_o7Zd1D5>MQvM}nWz5{#l(TNsvb>unI=tJgtY&+TR<7+?#0lv4FW?~s z#P#rBKnr}0@+(1~s)fnVzVTlx=gETz@RXzKvW|$3QFIUx59$-~rBl&`9~gYzaY8PT zeE;u_+9&>~Rta_T_*G@&Y@~&)Zc5c)mDippzA#d>O6;$?)eem4!`C?pS zJs1Zx)fRyc7u>KgVhmsD z-}F`6&OjHPPb^D%UwKMHVPd$5)_c$@Z8RE0jhT*Ru(KYhehY?$)DFtO(~e(kw(7grHFd>fo;j~4lFsZS$A9Ib2NA*<`z1!y`tet~uealc?zD<3T5m&A$dTM5;S3+2>Ji`k z=)iY-r9RyOVD^v6}w&@Fyt1`Ir)5ERp794`;7r8Mw>``U7`jfu)0_{$=WR7(!=&3Ap-sU~0 zPI)HfZw=%bWbf3jN;*UPmpZH-^<0Qhgd@t^zLt&jnlW8xpMdK!VAu~41N`6`-Bed9 zLR2T{??{ZDcJzHt61~mRYqNA6=Ad-ph32oe$tay^mP;V<#oyJjN2$PrG5>(`wdeTT zuw;Q{SHS~Fs#csKS21#EPR88==J+QmuFVL}T)M(v8l_p{8X3@CvGnbgb?MHkaO+KI z&P{}wUCp?}m+;4v7J#pan2)f&K{BhsBTq_0_=gok`ZK1g-|HfJjtUenT}$xA6gw z%{_MS(<|y2%g23BVUfu&#dPf<-R#jL%1IYM2VY<1CO3N|8PDBaCQr|pD~*ASi@QcN z8~Zd}FD7~YBNcX*&0ddin11dftv-pAFhaDE;0! zxV>(S{nf`EZe4COH;N#5h^xYh5%{$}!`6ycGIO^~p1&OO&yPX}2#Jq5ee#8D+2(7* z2W83iU6RbJ{JU4%T0SGfk7XvCLKFh;RM*YV4#=)Op;SFCEsGgNQ`cZ+sDZjbL9t8g zZ2KBxC{=PAm@TSkaeO^_?{QXa0awc9x3Zb`Pw(`;nU-$b0VALgA{!3^l4+-Pa9D^N z$7Tl9D1_9I4aj^R4Etw8wPr$Hu86pSEV@M@jR+D&M0PfgcbI%- zQig&Vpr)r&wMW#co+4AkshwG~qbS2N|FcM*;`#dLQxgbI)Pex=DUe^8UT|MV9r-bi zhZn|L%;q`?GQ|6+1E+YFko)h6=O>g+qm&e}$$#Fz&Un`LipvxWbkGm5)%khRARD`N z?@opHZwq&L4X7q>3VkqzkChA_1};1azomDI1KG{x=EO6Q(^uhTi>=7b3Q*$y1-iI* zy9f&7a;)%%vVl#=s#@u`8z4RMDWS6hC#v*dZC|LWkAbGDH~ZyMEc1g4(AG={$Tm<6ntOZ@>v67)R}Ku2~!51%t<+ z7FaQ0jD)Drz9nC?I~Rp9h-(J$mKun1wM0E%p5L+2gX{aZe<$RK4;7yFhkccuDP_zc zNuhakn3t2Y9e;HQD%@Co@Zyz1ZhVed0b~gI~*^wUYu= zg1sI>4Gc-F|J&*v9oW{2Yr-JYjj#uM9p;sG)Ot7E}P6AkGGvaA4R|d`ZDhqQT@t$( zo>}Db@)`<+yho|4fB^=WfY?AA${+n%_Lhf=W=h3N0>cUTBQ==^Yt}?#5cl!>i&FD+3(`m@$R`WR2Af1t(;&;r$WIBQH4(sig;8l z*a==I&Po-d+F+B8r6=t@ZcK=lt$lO+_xJM{Cmjez@RLad*FoN~o$b^ANgx?}yS78Vg;l@qWGi-GwD1U% zUa|N<9gdHIV#5rCV(UV#>xIaTNKO`GqzcFBt7eIc;+!AJC7FEoZ3PPj|3`cnPs3nY zl>>&}lCPDc<|Cb@k>p;f1o-gWPPm$&h^B$D&g09!^0+l+_)kK|hA7lHOeY^H(;rL> zp<^x7&VdD~;0MM}_`?D`-O6-1U`iO@^qy915K(F}>L;x|HYMr92ourK3vwZ<9Saux z&jys?b@#L(M2uVibo9SR!dKd|)`LwdW~48&GQJ`kUMqv|CcK%wsB>Oz?#x-gqG^^=;Nur9A?VgsiEEhu+yV`V=xR>m^gS|5Hl z|3DZk^Z|Qd(JArzgXkGKau3$zp=W3o4=yes05+kF8j<`_x3n*ZWQx=+y`|IkO9|-nshclX|kWJh~-N|u(CMI^Cms0YhdX%-?PM%hw z_mbkOJtgEqkqIHi?}~8u#FEfV8>UM^lj^yWb)cSkUauD4mIY!$Yy&0 z>(unf=5XqxZHicGCgH*cD)2Cbde-$d20vSmlc93r3!R? z=Vu0m&W(8^<*f1BBZvmh;$=Lqck93Q8fMFdC3E|=eq}}OrlbOUjYDJah?i8Toz&xo z=z88ZN#%+^zPj{&X;NYNoZ*2_bDNOW{S`mQ;7;6b?9NGn+~j|MK5X=ICu!HP!2&5K zTY+x_hG6GEPl8qLPPO9UjpTLI3;m=zpQpdEI*&UUbi@;HiQ9wLoVnl-kTH=n81wj! z+Du$kMBdqMymPwiu5!168j@zTQC}YAAv$@>x>QF7CBU=^)mF;}dU$@B;ZF{f3us;s znh~>)!v!geTaE5_7;x+Yhh%q4U2z*ZSU@vwskLBcY3H&r;_7fLWguH$^@xb6)hG#siT zPx?Dz*Z)*J)w)Lc#&f;$KewjrJ7QN7_Ll^CfxK!*(>r~##&f76-uM@14M3jrODC*+ z;i+#Hmrp}}c|av;Idj67VM@>K!yF>JenUETLGmo^zl}38s&WmTVJ)}=siCy!{1k+H zz7$9_zYjjKHfL1Yy%d{0;4;U2q+pdXOr8|Je;3l!K8U0Yb;UndO8ODr-H*8boblfk z5!`On4gr39q|29D>k8TG(S+6aBO;i75j|^p$i6wp=z>KbRP*1C=|uo5aFuQ`QhkOW zOA)r?WXWl#8pVt7ZICu38#XaHr601cf~9OW{PEMjeKc>6>;3Zt-?)9^wH;KA-KK;} zGRhCt2V1)MT$v$^`gOWky-=u)e~K6-#9aLvR?Sk6h)xl`5kSgKZshxgyc|JXZdH%4 zG)l>ho?n>jtdaoFtGt!OmjHMsbh6s-!SbWhE7!RAX^$Dt#(A@*xPZUj{FzB8-;I--eq*HXi;wjc_m?d}IQ|+4>ZVF#ka1#tCxt_Cy1;^q#fFJJ??WxDf z;cy*J0rAI9k}fbr+OSLl$(scum|rnE2)(sRg_u$XZPvv7GVWuH1bk9ZVSMrX%6+Fm z7M{&x>fu6$sT@l?49aBK-v z5+V(DrRH3ELD~()1eE@?N6hOZ=Fepee#1+PGpchh9I7;rBYlnGCA)7-=7MZ0ojO1=W4PU60mw3Z56;Q)f+>pI- z61Mc+1)UU%JRL{SJ9pj!L)gp6Yn#8tS!9(WHg-W<_es;_FU z8v5fJd*Yanf4kz1%l$q_e55t9;LB!U=04Fw;h8apqUU7o`|Y+ov!{81P4TJFs*TXd zCya1Lirp6{_cbKEGSc)+Nd`!1GSXt>PRGc&QZ@UAZzwy`Ow*gEaE$N2g;AEUu!cq4) zeDd;8?(};^lhMf~_fkME12eN=a6w?+R&Xz3&vww;BlKd#y6a%4a8XX(FPJ}_F1Y}Pdh3kZN^G(0=g?s@)OIKEUSwTAJF&nGjk|)C`Lp&#cMpTAA5kaJ z+co(nJraIl>Pho;C;Y=9OiTo<;GaUsCGsIkWB}vq z^SB?mp`CM9splsJJ62uBd{tjWteg2|Y!)dUK1vYM6N7M15&AGVSYy&@7q+zOf`JDBvtv)aIb{vZTY!Z5UB^a+CJ@&o{ZtM~vo3 z5}9Pfahh;*#%w(^(J3w9pMpv=o=h?i56Fr}WrBMFMJyG6(@=pP6*~^F-#<{bX%>~Y zwv*z|-m!BGuOmJ@S2!mbtP6}U%Ry&{RGglYPi}x}2bl`^zP%)Qdpo|689V$mW2bvr zc57*F#;U%?EwUEBm#YOSUb42Lq-tyN3}4d(!W;=r$2aj)(dswq6^V*pfoK^?5okrR z#^^uSL%vnP83dXI9*kIy$u1wI%unyUeZ%3_eH1+QWcsP)d4Zh&d(YtR^AYIkGq`W( zSG^a5ae=l9Mp4}2$3xn(5}L{2AVMSF!9a7y6FmKMv{X#i*E>Y-Ah?knVofAMQp6K| zH4|hpMo6x!Zp(U8^c;_&AMhEw@*ETZYaJdnwsd=iW+1lg7{WR zj?+_-OFbxId{d^x{o+@sW7q)wjR=zH-pp4rd_B+C|A@>a4bRA_-#r+k7DbZpi*n%7*x)((huI65s z7w7L+`-r_PurZy1{tgDnDb-#zKGUc`? z;sL6WDl|dW=_tQxWtKlyba3C0#@>n=Vkw`ajeQGW8>x29_lO;k(#0&3pPN z+IEg6YLl}3a{c%F8RxJ@=1DCfPtd3f7Zo{4>YTR2D^(6hlE{=tyf=)fq`Pgza(Q~V z${tw>W|z;X5-*SbFlpppMus^YW;FhspMn;g2Exal=-Nja*-R(XVuqU*yGjeR%eaA7 za*RT0->fRc91leZ?Iag?K@p34D5>4o?J!UWmq|t`Q^#CMv;8tF;<-yHr9l4Z!DR{` z!cX|d&2>jme^ZdN`)yyHON;%5GLHdLyexKnX1l6fg0oCavk86Er#`#i>d?h5i`-q7Bg`<=4(T8)iZeKi>`$tSX$YpRC73C-M{T@aA#DzkZ#x2HzrWBm&6~nr2R*N7mToX|{jFabB!qlft(%G9KV(}gL5UEg z{%1_+)s1dZQnQG8jXiMbEbsua5X08WOlcq~;5BXF3CfSJ(6c}MmTc!)WhWA)biWqA zDDH2&+ONX@Hh$1*;xc+8##=`fR?dSuyu5+vH>530k z8beHyfNBMS3%V%nQDvdzeT?bc+e2Sh!5)$5qszC(YOZ9i2U558iL$p#p+}wnqNxmi zyzIFT^{<}|y^|?|-VG^HOvqO2axMqTWBz>IUQV1=VCTo|(W*8fJ9i_e&F* z9^n4CBSuCsD^giabQ^eiHgfsqe8Ud=P)7yb=r?Mp<8^PuUfa|hT-T+hv~Fsn<7M;Z zGu|58s=pbKFmmK0wO{2Zn}J^J6~F6-m}BR2UP*kv2OITAc-*mz(Z0o;xGeQtoqjXO z>N+3>Pj_iH()-*y3-@Egqz!mP|xG^PKGC4{&u-D@DgoAB2{o~(#{_Zv|{+}!U^=$NBRR+u*L z;H{J0{a&wkqMHC9pTq`FSgF>Ob0=ids-^_@s!edJe6|qyPfLe$-p`T~Fzh?5^_6_( zwnlGb#2u9(@RBCs(lpMecc8Bjz$zK9S-`9Y1a8aHyP7_8|Jc9u6p+qsmJBT1c0DQ; zxfoQ;#tKkIozq1L!J|QQ&VsLuYUDYKIz}DqM#1#DCWn4<-SgB5lQX41k3d=6_=V&{ zM<=Ju)S3d;HPz;R0{r^434vTmsw_sKw5bYjhPpBtzOLI zECZXfe~k9;%QXMRD!`+;kfaTH**d(y>SsWd#ePZ1aiJ7#VO~*nv|pK`n<+GE#+MN* zo{inFj?5W$csuHNmtAKojYiYP!NEJnN^>-0Ov0fc$yzL_As>xV&w0?(u>(Pp6q-Q?S@ok4iZLhOkQG0wXE-i}vq zhQic|y9EA=uV+*g4iK+(!<($YOFDd4dv+%E4)It>Y|4*!2hP@~1>}HL#O(!Pg@+O_ z0anUyS$>Phrqhwf0}G+^P7Y$?=jX!G1C0oj4Q*Pqi06v{3FxgN>~swHRfRsMyePrE zXTH(C8%6)vn3(tcrHTnTkH9+wO^d` z^6YiaK6iYs>;9SJX^!s~DZuFae=I=zU>)p>SCyR}wmL)H2;YRRY^meN*KZOMZqq(V zbC3d(C2ougLP&}@u=aporYAmq0C%M(6RM~*>U4{Ip2l6c~n+zwBm`wIQF=^GCdHWP_12ncH zG|7J_S@O>B1u3le)GYE2EG5)0_CO9*TNx9 zj(M`KD45-ZSt%obXet47m3grR@+?J91&e)eGT0Ih4>j}mshF*d7NkL+o3ZQR0^5t; zWswyje$xVB35vfqFVEjuTh{ijhaW`j(;NA*;J<0ynn>SU7h=_}jaMFdFDizA-DOxf z-UhhkSxx^iY1>FW<1A7|zm!HTE}(N-NGQY~CI#>L3HT0Ky zc$Ls^aqB8F_>%0Px`7t;ev*}H#2wp~mm)hsLe3m5Xn>fLsrAIfyp$z-E^?1D*1z%;+B z9+oC|3J$4u?#JEZg?CtzMCmbWoBLyZlLtzV*74li@9x_?Yr6?bk5sQBZE`twLGqR< zV+fr0$3JFG{OZr&Fvh0)FNaUl$Kb`woUfK%1s@wy1_1V|k-u(Hy2gB;_@r;GrtM6P zEz>C7zYgsVM8CHPn!3u^D(mj)iv{+5uyg!2b=?ZRKp3j4;}Q*!anDzHYKzB9_PhHq z>oQ8WX_gZoLl~hu58v8#F4Qb7?X2s2)%6)p!P*r?H0_Kg1A`{mHAI~(9LMhPmfQxR zWtFoTV`4q>PFRX!5!CP6*Z$F9u(jLy$_H}AO1cST=Uub4Sl=;2=IC>Jmc#tab7y_c z3ug%hZBdTaJ=g#o(j1moj5!0>_mJs>e2q_FG7k7GcQ$w0aVENvp7eLE+^>#T-_h^v z)EAhW`9c2?hnl7BR7Ho!PQk9)W7SK7)JrBN$9k77;OjA>1V6LGxTEp@X-I@{6clW~ zO&%2zC3qgno;pyf!%0O?FW+RiWVMSOC-UG~7%NHBzcWGlg|4xa<*#snr|*yd(&sPk zBrDJkv}=;@gRz0H%XPK!wi)1rPXZ&+#h>~u>uYv-7yQD{?h@PJwSsf@pJz#M_B&|g zOh&&BGk5ti|9YGJ-P*eL_?{r-m*vXzr~C~c$n;KgICU6ZLT?D=88|~NFg}=sLs*?4 zCIc{2ZV5N-8J6rA$dLb0s{6t&CqR@z-y|WS{h4WTl3Nk_#&;tU1&40N%}D z@OTf558_EAEzfcMtY|zZVf;yWivE|LqFT1`b2?J3mdWOBJM`+1Wr9NZl{O;lZBgr} zyEA9)jdxxygVUlZ(#DHkSaJqsO0(9a8bQQK0Sd<%wc+tJFM=h|$N7G?W?YV*6qMR? zt77z6R3d)LB{q zk1=M=e(gI>O|(ia+UlvEi3ha{;H000FD58z7o6PBl&y*dD<~Q31Y+LmFxqE#4n0xM zv;{sWCXn>tm2_JS9l(Lm)04`OQ^u14WbyhVQkzk9J?<^z{U7b;2-hwux%MPOFrO<~ zc;`!HF2FXk#Zhk3omZ#7F^9WVUalNiz_<)~FcpIEXn9t>XuPDzvRAqrI-;!9`y^1M zP{0oL&SVIFeeHc;td$RcE^M7zRyYK|?G1qOo@6ULj59CecRCm>LZ}2t@#sO5K9_yP z6CO9$sREMu894{jw(!WQ6C%570>BFdQ6kh=D*aEdb?w7hd%IOx7BxSFDSzV_Vs0Cd zw?eBfR?;9UupPTN9AXD~3RBOEX_l!9f7xr)G8;f=y!d zZX6q)(fycnL$4ylqa_-%)Jtj?EiS!k4SP%;_m^`AtXO*E@;Hhx`qsD{A>!+T*!TWF zunO5U-p@HZEi}6edk@hBn+f~-jYLK)by#^)CF-O8d%RjZI&7!?aepc2xBx0R_iQi3 zU1fH9>6LlfnNvjmXzGBeRfqHhU((9$R(8Jt5K&+q3iX@;rPN5qUPl~KKaHSW zxza1Cg&Qch^iVx|SafLv?9Ec7Tj837ZvDb;oj zp)>!?f`9OcW|?7v3Z{7DmzKu`E&oP7?|fXuydD0xoAy%=Fpd(g;6|)YF7P!s$9@Ak zW-(=8zabv9ru(cnw?AJ~8n*i@$v~BXV6+Hup@8%0f!_3C0M^6`D*a=h@~`t|(Iq-s zZIo!t5znP*2Bkda54i(^9~A6{YTMe%XcgXnULYJKfh?&?XFfTaM~>E{bo}IUfu6_! zywmakpMi}EWsql{OYhM&^_0wzrdx3kmOzHuFY|BCFAeOXG0DGC>J%(k29ca<_#eD1 zxIdk66$)m>Syg79oeujGh!6JY1WFfS?Re!XqaB^ zZ*M60q`E4@XVsm8I^QZM)5r8C7J6+>yEs!lQAKtb7IX$cmc8De*FX~}>Wl$l-?DUY~f zM_?h&r%ooJzh5AzRatk@E?&tUUtUPv3A);6p??G@?+oHP;gAkbiW=nftNLjwvxDy$ zz>>JqHmLhIwXO58cPhVYo-sX(!*)vVvnP`CG}>&SR|3a31|lT~2FZ}(Lb6C3ESez9 z-t*o`7uE~tRd#M#=g6~C1kuQacvQSsv|y?Xi6i5}!2!Go)tr(g2$VDN1a5fKUvqyP zo&OwU&g-cx6T>YW1aj(?mDbjA7_|ts<`%bzn7??i+!g*33L8jRW3uBe2_aD>PqVN8 ztIsJ{aD0_yjp|MjsWiLHEtUfdOx}yKfkkechUs;r%~tN9)S>4 zq>_-rsuS@xrkrH~?&O<}_U!BrwNY9MVlh{5;;&c$xJM}18kgPi$K2*(9q;L*Vl_6O z!PI?S7hFt;Q{DRyDry(~cK~P)7%fOLkR@-W25FFY83UyGCLVcOI!;=L@tF3eUa4Tw z;oBhDKWG%y4A8GFxQ^U^Cx)BqTR&{w<^WtdsDeerif zeXd01Wg7~Uuu7U~;`UnDiR z#VCQCTV0HUnBL&V_c2H~&rO{JMO z6vz8lx`4L`FSE2EjBBq6vQ%#O`}$5Yz=9%`Y^(vO>TYxc=I0ws!gJD~ntLScS{&UG z=z@S3vD|Pw1t0>Ov0lcbbPO^3b=dbh=3&Sgu!rlBXDu!3vD z^G&=!%ffcD!LeI7Lafd;#Ur?dUlK-RD&hxJQkY*7p?|Wj2^kooDmi1W_ z4UQGZnzVtuf1A(KZDNezn^1GT&})-y1{-+YC{yD|OgE zYykXt1Tk-s9&db0d(8PpMG&KHBFOi>@uTP6i&Pt|w*<(PNkl}ds`_Wqn48L^)qB|$ zF+_8E`lDE~ts@Ie8+hS2TQY7;*&jLnkAW)Q#g@J3R@ZI_L2^e5dDH)z9$&Zf0vm+d zn6KQh1BjcH&5#|XQSMw6@2-Cwu-~2_jWBcn!1rvwQCF zu>45?!E{1~-@{Z#VRoqn!kLm4$fy}&T~B*coh-|QBMZkFR6M99E^gg5QY@Lk#P67< z!^w8Rk4OrcYNN=xXF}4BvsmciEbby#$dlJ3ZB2M|{KEY%%I`k8bLs1^XS z+ksmgJ%@j5hj9~Pv$cKAZ2)Mr)&K*;3Wf880rgtM6IViTu~vhhN7xuQ~*1W zE-TXw_1LS!%dLNpfoHV#rmxs~LLEWw`E-}-7@n>q&eKONcUw^rhkl+_8b7eST4!vsI@`F~o) zD4UXLse&@OihL_{M0yc@JdDS%F|@q z{pn>#?+c3LnrRc3d=irs^Mf4QDB)q}ZI!{aP-N^0D?%GO-jA%gWu%mC{eb)>wCa3a z%G*mwA~EIp>WZ)7V(Y7cWQT^7)}0ghmJ~3^<@oBm0x<1WaN`V&24g29!}-c~3QTmg z@NLx#5?oL>C4~p)F!hnUQtdA`@^76@hKCyTmgGw zgEdk84Z{|$Y~N2Y`uk_noE$qX&=cLk{n+z!uTUGMbgvPSuNUuo$bA0Ov)f@GJ+$IG zrZq~{Ckw9#=aB*pZu$5KNht`36SUfi>F-ooR(qJ|+hrLZ#I#P8iA!Nbb+(9rGIyhXd>FjK1{;rf$s!$}no&L<`_I?khSN#K7OQ{H_~{s5y7JKPr_7tA zv)zD`K~K=AlwglPHO9N8OnGdhiZ+8Xw4Bn343dOr@G^oxLz`f>z5Nf75bnsFcDf=~ zJZ}Xmgkj)hd=v1_ zkA^`YI$Xut&}ROS+!0{fGgJE7#_x;j5@u1JBrDZerC4cO!Y3}wHrZ1;fH**Dkm7D1 zwS{YTiMd#wDc!QJFY527XUkMqQ}5fqFrBo8F^j_q>6`%B;v3}RUxr1TI!<0#n$&@8 zv%~(vpZ`QrC}Y;XU}!I_Y_Z3wA|wy~+;*6biGntk-^~>$nnl#bLl6Sj-OUB0cocj_Ipe+tkrKQ#Ixb?W59ps!Fq=tz}$+okAA z?6^_5U9)db=+ii@Pk2i2mlqdH?NX4=wr@Oz95Hf-*iLj9&CCUX-A`+=th~S85_Cs? z&au2#7c*^?${Zv55tKYHl~}$a2`}qNP7F9Wu({?x8zOBAZ(Hd@<4cNm6LVHlmw9{y zQv!~HJWsL?gF8kfHEXS3iny}IJnUKjZJY=9NuYSgZOv2)zM&^~sY<7LXKbX&Bm4aB z)}CuK^^O&1Z#iK1?A9}ZJfJz$fX}4al+Dl^{xmJ-d?Ek^c<{=f!y;qzewVE% zHDOQmC-6D;rhM_(=riz~C8|9Q)Jwp;oH!Km&{yn(`s51sR4?M=8yp+~2orZApp8p& zQ}Ne#UpYG4THML@>YtJ5%4SX$xO*a!8tF)vhea*UC{gYV)supsf$EoR|4b}MoAprj zw%Vd??Rn(w>^L3rAZN+^sH!!9sG_ns8P1iAsDs{fKl`-p(9HuGa7wvs-t1c(ZWgFD zHUjNyL?TQqlwtgdu!x3)dtQf~+#fg17+?+Xd>xQQFc3@XH?TO&fP5LPGRc z{%?ReL*~_&pO>WC1h%pe56=sG@o%O;?+AHv?J{RrqP<{b*^NonqGd~8 z(v^&+@QIU|&f0o?@i8u-xW`+Jh>pa{*Da8c2FA&;)C9eM-7N&N_p7j<9J`E`oORtOq5zv_Dy4 z2gH6Hpd{H*utNuOcYb<^`AnWQh>tr2uQf#dp4|7?(nAe>8oZMLU?US!9%Yo<-%vd5 zSQQ?QPggzMWB+KA+*128#U_2w@?zu(^W`gOBxy2-H$rjwpKvm8r7-+?qjs68990A( z|C&1F^9VLldhi0*;!hCrPc8?55>YnqK#1`PID8(@O=`qLsP(Bq>sVYzf>!I$j z-3gOm%e`ZWeVL{HGH0Yflil<{Y$;Ita}(|@gU5_#?p`-pY;U~eos)pnl}ue)18{Di zz<$~RrKfU#RwAX=cGVpJupAfP9{VzVUjo)rFxbeL8{m|=!oz%(CBxKy=ylEMl+kdH zCm=hYdV7ZwJv<=C7%nyyp0Wl({TS52^4v#fde-Mc4H1mCGgMRZu5L% zgC>>3(F2``)E&1fkZC|~UN_Pp@sTFfEgbr{wxHkubgH6_8oZU{1_jA4+?bT zUCVS6r4-DF9GD5j-=Cz|3^7Z>9#^T#xGPQ)kmI;zg!z<|K<#An|I()@;u^2wFu__uZZ-w&*Z$}Zgtw`lFkh?F*OkPg@JEx}Y(tN;;Tjs&D z=9}0@5>85jMJJt)5_Nw23+BYWMfOHcoL+x)9eYy?0W|#bUC#Q=wG_f`|4}fM;wf{s zo#1QTB^fnd_{@8Y$FIDrUUoaIQTLj%$Ohi|bR^Rf2gk7>#~SqtYCd`>F!{IcF?)`u zp{Nn#Vz(yN>%GsfPOmRAK^#&>AvL%7AEMlwJ3aBRJnxi(XJyk)0hygqB|k?E$9G1{Jz7M+v!$EPdk8`!X`=Bt3koufL2|co z=v65Eh7xdTrb}L zj=WgBWZ$`!`HEb&;9lNoPN*wpKn%lsMBy$$Oq&a{K80!^Lp1& zsvwu9sJuL8LSkaaiO|r{o{XfEO%4B(M6uGBHEFi!;+MgRI6RZErtUfQG3WK7sS~w9 z&tN3+h~?bpU!|>LF8_T(mtu{2!worK8LclZRet4Bp9s zZz!kHy%Yr7xD<}l)mfQ<%ikE(D2dObhQy5mK|t!K1iBsE-cB;x9NDX%tM#Gp=mzw9 zqx8yjP;--6F%J?wIytUG5;0%5zD{3c{NxBUB;V8iv>36xW z*l8KO@-qDc%q~aZy-5htyeJk)2f!3JWwNcmixqqjK|#xm4a-{1sz?qGQcqF^-j`aT zLbkk)`~q6tAN`Ma7pKKXf}}!;-VK6Yzo0u>3G$4b&HmMSDz3x%g7DchGgDIlHa0dD z4UKFOR7RX3V5RHn+q*6LfYYEp=bKfCHv^&^%KED43T&GC;WeXWeeC~Sq55%nzJH9{ zV&`$k2;@uo_#e8W!~m{dR6VR)E)(O`Ih?=51>7>&iWbR2{{^HSmy)ywE2<4_5znj3 z&j)t+gahK#S!`00E}(!<@Mc!fRX?WCWo~>`eiZb%JGi4@amNi$;r-Q)p2}lrx)iSm zSR7G0=N%79?1i3VF?%+z^_7MHdV1f9{VBgUlin)^i4=ePHds>$Q*|Q&$y{RH<)Yn0 zz~8y>bJIxfmJC!!@F?uJ)Y93llLs11@&TAf{{J%qctmexKCp|=`Z?t5!_Ax5f7NGg z^_=#^W4Nay7&q75M2?er8BSAT(~RynfK#5PLAG+yQcPB--PTCXTl9si?5Gs*j;HpD z5_KHVljif2hmMs@EK(J`TuW%5O8W3K9D&+RL*|%NuwzV1B)#IKB^iCQc^g-HidNLhsu-t;ZxbZ^4;GUq^N_8nP_xOwp8esxh-NF=BWRk z86X_PpUpb^xk0OXy1~q20;WK+`6N37Q&jG+xqC)CIz>Z(h$HieDzq7%&{$iKC#_89 z$G1yR(y4#d`z}QGZ)}s{!LsCenTAANZM%H@Ny{ogjSLGPTaov)pl4>D-rBNoF@-Na zZ2>30=KZ&AlCgu-ZkpFaI*0pNt+Q0k7%;bFHw#*gXkK3B`%kaT() zW|re(^tLyO988b|XHB#tdWLeqxQ;GwHhb{JOC*Av!I`wNk>@*S0BKAp+(H2?mW;?u?D=Yw==hK0n+|y&o_-JSQ?~UC;&DlWD+KeR>dO z)VDAEr$;lX2)m7v7BoFJypijbkOe|Ds|EC-w}>cQ%U=nb~;uW-OBCt;6!)YwtXn#iR{ZBQ4Q)j z8sSV{V9Jk3BLuw+t_BifyO^LjC|(RM`GpHswD>WLzJ!H!0C@mMTS*ZbK=b}-l^0ks zLRsqdJzA3^TjASocJgmYqDmrS-Xd&%itxNC`l=e-0GPpahpYAMk^*(BRh}7wL8dI& zrWXdGsZWpIrk%e`j`05tyVSDSE}1&n0o=a^k7!|Q%}xZcd{;4|luG6k*8hE^$kF{{ z@C*(Y9;{1ApDWYpu!7IqOX@uRc|?uL{F(;1{tF7>F+uAMX<*U~qgNQfI7B7fCZq3D zn=#|%C?OHi=hN0(Axzt*Z^bm2=)BdL+-CNYSCo``ZpXB4B5>JO!ux&MAJ3g{k@iip zc@or`B_w97oy&L&=h7w;`EM=p#;4M1enxGD21YwO;)(QGbl*PID* zB$Msn&C#GV;iS2>RVv&h_eD*XqJ7yA_aQa>eCc|vc7z(jz?1=5pa{pc8i4iVz!#WZ z1HkO|{59fY%OFo$yQq+#^w_iAl-nQf0OxlyFMwX(dZU}oYLkvj(t_r@c*J|Dd_?*E zu}mevQMV5e-$3X^uPnwZn669p>#U?5cX;w^Ikx{SM}%ZepLTX&X*%R^rC>Dx zxhawUZzXr^tmhQc{bqu=U|$mHkPi!=P?cDb#wCl7u#$#`4{_tej6uo*mFP!xmMQ&; zqMj*(iCMEUH(5KkI(~zSXX4L8J>&Wem4aij+<=H%(ic6i0S1b}Wu&(tZot`(riB$? z_^3;v;*Ef8FQ?Bu^VpFj9$o5#j8cU^oaO5hhCuk zWBUWidj>$bLpBYk5aekirLA7% zW11bTqIaU?VlS~?M25Ypd{LXWBMT5gJa($acCY=g`88jw+x$jnvvz)H^L!&deo7Sn z=)Ac?gc|ai8t+X%_5;xNN@BoAu|jew9Rii-Ptfc+luu8uZz_2#4I&>cSmlDtrcPo3 z0?3+C=j{l{f5daiqGvlA0XJX#{QMHFhcmtOG&DvSlc3za&NSf=bDm^n2_g4?e_s3e z_>>sexa~Zdpx+|=(Q2gH9n&P|ha#oI#@f@#cl5J$JDYD|Xn2JsES@|td6RtdAOpI| zMX!E@xRJ+SnG{)iZTwDVHMjB_1b)`ATfmaU-~Igd|L_bM_4gbot(MPW=I!6lN*KZ0`lQRc?IStdzIAaHIM!4jN{z{ z7ESjb88JN1mzaflng6nk8X7#4L;Va44E%EVUATA3TaO&8p$?eDpT7E@<9-PG`yC*_ zZ;!SCV2Q*uk?FZ`I0p^5gBvGcZSu;qH7P!o8$*EhS2#w1qj-p0$XcU`YSG*XiG*Nt zL1P~-rQs;hY0+T5EK`i{BysoV)}%D}uhqLv3pJf93qw#1ZvHJF)cEf0%a_E5|6uWL zZl2}UZw33Qwhn=rW`riHEG(V!2z^|cG5oKezj>yv-3}E(y9=S(#Rhij%n7$xOz`Hi zNxpz5SXVQ4IhV8Emg^U`f{|$1QbrY})UZ4ei5$l|n^w^cJGQ}yBtE>jP--A4wdr{M z=TXC9Wsah!OhZvy(cxbJ*P?q51G=2LBOhqz^+B0Hrn;1NJJl=SU$5$Xf~MUIu(nB< z6#Kdk=@EY_?q!&+k8@r zwm3uTpg;)H2=ERpj@$Qx$NpXqRH6ZL<|0+c;-Q!J=c2&n*l`%#MyDKFZtjLVu}Ui_ zg;(?7r@kWN*CXSm_HTN!8Y%dB576kLA*E1fxZ%T=W$+#SJvBZJzLpLHo-nw-O`1rTE)L*rgmreA@LKPJ&m~Cntv*ZU{ELUuztgMq>7(*xBWxQ&f4$`cr7O$+_Wf`606&hY zivn(~!y&=LH{QUJfnrO${secfNXm~@%#nsL0(dA9EM2sPg+TzFbY8$wR3Ga~wOEX6 z5wurQ#%+Q}(*|4Z8Q1sfZeGT~VYpRY{e%UtJ09XCx}MUGz5+;|$d^WBDoN@H9yh`9 zRJ1#Gm2S&LV}4CVM58Bx=g3}4PP-jmuy-PfBGA?N!f~XPJxy@`Lb;8>gd_MvRZ^oc z;WZZ16j=6jlHny-^Ubuf!GNEva2Q}l*0Nq8V@O?S*~}2vC9`#^`8g&k?Zb_XBVNIGtf1?5a`{QsI0dY{}nu{iLME zKR>q1pZS8g2wxWOBwj{bx>=KXS?h`PuP+!EwNh8@W=8aCmbehosfVPCmZxlmIrv_pN%bofGKD}T_@ zvUG{V<5fz6SjG~j*@#2^ra z{N?(M3f+SH*E6b|R$4KbsHQb*C;|7%8nUV~xB#zzl=K%gUEtqfurWlQir# zmWBwgX;u0qE}?S^uY!at*QVY@B=<<^d!!k#g`z-n;)6IK=B`rSd`V6r=Z28(IH zp3aUw0{Y%$=?%SE$U*tmsmpWeWpXT&xba(+H>s7+xyP!f7QnF0i?hMKZ+auC2^g2I zsjt=ecUmj_^KTKQ?FU_)ogMhwiWn}RPQek2La;aO#u&X8Vbk<)AMFJnWLv!imQn{f z669fGl8TRmy&aW4AH|fR&Er%t*hiR@T1Hy3#x_i35W;o^UE;Tox~_$a6KGDsZ22Q^ z0j?D!9t2~Lc85c2>y_oL$A==9k{bI)Dql(xSpxx2RQ>~l*(12xBUYdCx7&_Vr&7|p zUyM0Zr#gpP(wz$p$B2qvX;Ztqg|3vAT1wLg(f$Upt7w9lS@IIk^mL6T(Gr*0rw`5* zO2|N#!j{P&hg;e?>g5%?vj-T#qU*@D|Ncby5f}^$a$-!yGU%xsv7Dj?JO?i_7DIgt z(EMUR6n5`aE8}Mphdr$8bt9!R=?yk;Ycm<_2Y7Hw?uxm ze){=G!~=!t8}%YfGU2Ldug}HA)I+b=^76FtbmvQGES8@#9k#VU-(Hxu*|R<9Xj~ov zO!=&QZMNOqg^ayM9?5q4w?Snbyl=`S{D_-06|p^%K#n+?T9W}vWbG}pTzavrKfe<{7V`TeUj#bJZqX-1s~pjDW6=bf`-?lVPhJrX&tok zE|~EWVaVTrW`rQH5Rgd@Z9FlzYr->)Enk8p-FW21<7Q{Gji5+ZpOh<0_|^`g3o84Nj}wq2enSYHY{} zIRb{5=j9o-6U^AX|G|>ebuJsuN7ic;TQe*&<3Y0S=*=O*KAy#a#8x8*y)=UPA3%8axaSh5x zARP&iPq2sUG6FNPMk#oeL>H5KFPs`YH~CBCw_$Ke{M?e#ai+LAt&02HCzTFvEgStV zvwPqKAK>CBV-jBHdtJnb9IR0g0thI8xP|g=HbljL>J(2?-;Kr?J#YGo#W*PZI!{=C zqm&?HfugbSm3im)p6>P(YeFzKa)n5@64yyCVU!KA9{B#H*b{-d#RIAS?QKVl1tTwY zXRGoH6R@nGz5NH5(szB^Hrk@}6U?i;aM4#03ts~NwNe2{Xr{x$sw>2-18}zG22W1h zXdY*5GNn{xrq`UqzIMJk?*dW%-g5c;K~!yvZ1xM&pJ2ZspX)7n?IlSK%5TL_*wp$! zHfQL;DSsmUjx{&uRsKNqUm>ikFnd9Cvd!B1!ye&jkTGXOg4N)KJHQ3(;y}I=q^j!l%kvnxzr5@Dm@4|F z|8`(wV79W=R{+T^y2ocsYH$-v!7ZR0(SLefP(+MSXtouh5U@_C2zX>b z{;h!`2$FYxLCqP8;iNOrOOpt5D z>EN&EezB%ysRHqg=WXVSfYL_DyE>8^3Ca9%80uXi%rJHioJHZ);B^{HSMQ&@Va@Pq zIHcOKC;#pl?so>s&TxZ;H!mz`zLozw?loCVPmgyFt{+rMyY4PaYAKqW6L@AQJ{_>Y zJolX~BTIR;@sh%BM+4~ujBh84i$MCaDmlGH+@iWE0aCKRF!Q56+{?i5G$Bj`Vz_>< zx_OeprMCT4l^59x(PPtOfAL5IB($1IOBMJ@$Mgx05ct_We_PJLh=W(-wvst+cJD;# zNXc^4OWoux}7tb0NXmwO~w&cTY_* zL$>A8L>EtQUc52&dmwyW1Y{f_#P&KnSZpH7eNbDEnhW&i&Fof`i`Ig z&@ksGhMzV0UDx0tPNVaz%5RMF59l|(XPLd%U;ibjHAHF_&e^64dC-D*Cnj!CHR3@s zaQZw~uz-q}FMbWV2NPSafX5pTdXV97IRp}0eoNNNgoEOyx&Sc_U}DDvad=k9@O^Y;|skjE{WX* z(8jVC$-AZZZy1Y6lUL(xy8(Q%3Igz(6FW~^PA9#aJocOFtVgN{pa8m*sN?LHYo$g*gd9Xok-3cD^(AnBQ?PCdC|B~^kvQPIo~YTR;$p`?b0+5f*F%3 zts&GS8IpcM*59_YI~^_>AV-c4GzQDIv3yfcp6JmG{V*|@fMvr$I?SB!3doG$xuWh= z23NA?N3K$FcfJd>>7m-wnY`6i3fBYzEcVKki-ZQmM@cchVS}vw?pf?NvZ>pmj1)^k zh;2BqYRY>N+GLM&6wj#|=O`(#SuTFbXmhLYFX;j>-u{T9{Z~f5>=@;b8EHwK=J%AO zA-vuV;f(j02Qq!!DJ`U&pxQIn<^_KPCIcpziNcCQN`aCsd%Vl&|Z_iUECUq~d zMIX<`Nqg-%pOsE}`3a&~Ys!QK1m>Y?kG!T+q<T%V@AXnG(y0>*gN`@^{Ipwxtro?+=``us^P+-i}!o zgeoT(0ow6R%d4Mwz681xtevai{3@PIFn*Kj8;X>)b+|bT1V+m<*nb>|=S{j;Do$Gq zWbZ1IKI8(sk|AE@)etjuvLGJyCLc97=3Bq`AQN`HB|ZUDMRX;&tX0GKr;vj4(6SWD ze!?>IbhKL_?+xvJ7!Ru~E${{}UdKnmF+)|Ihy_6BlsG640&7Y>cAIVf znROmy#9v8(81MR>*27P~m;IEumdgEFr<>-~`1wuj03CUN zy*|Zm&t=oY`MoxwVfP6wa;vm=yAmb3yq2i!PlO%x2;J^BgaLS%*)2v__c)HzpYX^C z(rolA0cjbnq{n|MMoQy-5wY!^Kip7Kyr8~vpkU8O=1?Ef6=P2KmKt~_3-)gTJ?Nl) ze5$Qk(q8kv`4+m&s|Gr1*jaS7*y#f#oYpIYJlF2YXlEC9PU6 zL3H?}qWpM?BHW3uwp}lo4A1~1C+&AZgaX%Zs|~57Y`|yE%edR_OS|`wF#&#!3J={BPZ$39#G$AM0aT+r`*)PCxdsifb5BmA7Z-Bk(_=R9~#PUQaIlM zCKSmg_=^9AlcDq?%gn!hsYH*pAe}f6BjHE*#U&jL&l>Ziv2S=bH-qj)EFZTXhF%bu zVu!RoyvGZDVnb{CJ0@z~MJYivdKNPR^oNiCi};1H-A_U>B186kkT$~xl_^*Z;5W7l z8L2wHlS_bl7IqTp?~!$PhDHXJ`6RFmCwLLWFz05uM^du1qr@9 z_xWlEzM00P){OG!S(E>I;K($ox@+Hxq<(?a$fFHNBP4lgy{+YC^7llaOaE$mx7I1z z6?=Zse`?iiJx#!g{i&yAI(7fewjvZw@V0LuZkdY7vxL~fM7fjY2D3Q~MVCI^_xc2X zd)V%+XLldx8P{Lk%ZOaM9^8x6ON438(Z3wz%YPVPIGTI(+j(>#Hj@#@HifOfSmp-;U$V zAzU#;WaF)*J#-)9o~Z+tq34v+N2NICH)_tN$f=<10`(7d1FZ$2kYo4k^6kFF0uPK$fB+7)-qpY+F%y zg3kEh0z_#!U;HraXN1t4m zxzG)SL+<7wH|D`IC(pLlbHW$g*sTQ*^(R{ZchBOzY+O$AcCg=35}nXB8r<2AQMuCa z`>9WM{JCAyutif2;Y@`!{b42q@QZ%UWBF8T8vy~I7)QBE#^ei6>|QH#TB(~BFY6ak zlltoEvLX8c#}fO_TYWhu6k8I3#x2{YK4D5ei-3ylH$ zGe}pflRbVljy>$R{QAyrvIM#<_TuXL4ZH8v!%**+1OCuf+^Ox$8 zeHU73Tbj-rIt=dG1wg>wjHLOaV-Wn%KJ1StXNVjk{A0dy8^FxdQ8@?|b|GLi15hWw zy$GqB6cHLwH99QYpo4!zrN48@8^j ziHW!NbpQU6{2(M;&{QqD`?i!p$-hQSLQz9pzAEMTr_S~NSO8$FL9k@eSKnbDztS}&6+@SvsJjohvX)sB~gS}~xrY)Pq?wSuVvU+nd^6709$EUWc5aD_@ zY75D?|6L*>)04K#bEsy2Ef9LMNP&N_V`^v!yXE#fhaFcOH6slfzsRf=Q*xCKUoFBA zhp8Y!ZRxT~FS-{1TA@bv!xR9Q+IHE;SHr#UV-tLTdT@HDI;N<%X_}BHyr<-wNOaBK(esZWQr1cf0AC zPG?sWxcrbQJR;D@NHJ1PN+NVApzk)u*0yiQW2$c+g@>EUA@{Jw7T#@Ic^$d{S%24lM486IBy2==yx#DX*__b*b>pYQG4 z#oJ6G?X0!@zW_{n@2~E5<+e_zQ3F!_)jLt80!&XAQ7$*ATJ;*nRz!2;4&`za)6->y zBu2iUjQ~PIqpKq$9j#W=0_3Gsn#=$rtq`i=jB!n7+XPaxn@&miOhW>vXzJih+vrMQX&%*C0FM2qut5L z>!;`t@;)Kz7IPwWBA`rU?iH!Ej`A8wLX>&#v{ZN~xRMI;VOqsK~T9}4^a?BL&V zOCoYkT@@RN@G|f13C3VI!oywguCYbw(ht_Z!Dce&6pW$M0W49)%>W+gbnFE1f7<(Y z{s>c3kKCnvtPIfpzd!J}L?COgi&fS34ZstT7}I;453}jI-TYJ(@#l@f{|2ziT6=sh zm)k|OvHe&Jvv6(SOSf9pVPmk8S=XylRn`2Fs$9sdFC@aH*3!w|yDNr=`NyhX+Dmj< z>tJdvL`17rU2p4kDgyEv0RL%>ukG1`-sAV2>lOHl2Y4@_Ics5th9a7nSh)V(;8-@d z(rFn7k_U+7rK*LyfK654;srN=MWnD^6QxpGA)=Q85P+^_rb*z|hrL|j`Pp}~_kaJ9 zKlfq(_YVf|v#e_7C_a3cA`L#S2dcWxH=BM|6*~dkiJ(URvN+ZuVE9ql&xkgfN@Y`_ zSZpn0HfI`xPXPFi_xx5OcawNK!)foT^vQZCnHRhct@9ubSR!$B^d+jg zWN2t*^?q{}I3`-t%iz|ASJn8IC_%+8KXsb=mL z@gEhDcL3N;geMzgKVmIiQZDm}0|U<}0oTVwnT!Z81+WB=n^jE%xap`$NCG>^*xZ<) zkX(os+zYF!PEJO>UeDG5+(d-u0a_X!ZvOHc0MQ06m&-BWO8`~^7*~~tQmJa|Xu|d3 z!h1E$$RKP4wZmr2_M^yZ0KgRSC zK$7@3cDr(Ktwwu*b2ReTpfiHQD!+5U+!z0-cnM`p>rQ(mZ*1u3yuM*Kubi4F^5!%*j%}l9Y{Fv>3K{)WD+2LV7X06@^ zByUyKj{-=D^fKo7ABfDk-L9?y@B)CYHpbPqZfzcQG!03Ji26-n1n?p<1Fn-)%Ctmi z3_t_0=NXd}fLj+dQ@IERaCT%Z=b3RXLfZ8kL|g+V7P86yVTd?Zr8xs=GADlP*7;z( zTjzk(l&XFSp)~hoW6V>dNKR$;e@Mjd@?PKK9Q}K<$vd0PTdGIWQ+?lk7k4KnuAUHS z{}k{a^IqPJpxEMs+)E;Am@y~3+hA4)oN&~~R)sVg z(=8F+qZ(48#^CjFOjoMv+1}%FReWz|CK&^+YCfK9m+CdXT3t6YHPza#syB(?_YlMa z2Z-=YBFZKSuNH|$2L=ZELgMq0vSb0^qR7Ri(!#F+_F>E$LoI~l!tzv#a#&z?!UZ(| zBBD-bg%yd@2*o7R0GjoBE?Fe9Eu>N@qZ$lARcpPTI-qgX1`tx7=TefSoT`2kVH^4> z-s6EJaqsMO`_AYVyBICAYdz$dp4gcsvWpX*kzY1Otmh zVcTM%EY6uW5w-%ziBME5&JRW7qhWy!U?Zne`4qFB0w4>}e~WZyw{O39QJ8_(u3ZaN z%i-7%B2I`N|9m-QNjAnym!4fNm&?cHa`e1(+I}Jw$LV_!YJyf9gX1!pRDOOH)0dej ziZj-llT{U}bZwHzJ5>E&ASm9SXf6MpG3MQIY)>y1)5icCb4MNx3feClVO6Diy*_`J za7bJx%&9~~cLIov@dXi`Q>|POEU*DoIZ0+SL|B0!e6q_qKMTBJv4uAx0IZ6fYW%pa zISiyvXDgNBNUuk$nE72qyg?Oz3FwAy*M3_SHvt%6Hou+C@+eSF9rBA0>)4=?k(IGA zG)P3hPefOX(0wBQZs+trRQ2@$HX=}}yoiWCVQqA2v6wwMpDzv`ZZuF;tyChi))N3r zMDs*VbGT4gtIqq-uE|U*MfjI_5xjz}&Bv-30g$NDL$kA~Bs6L)Jnp{xZV>f6fEoZI z!f+Ishvjh&2Smg~A50YrmD1o~8#<3LrydexC@VVR!iPkD%cFcczRngGBmA z0KQb=M*6DOQc>r*m0sp(I`nL!@wdXU-$D_!;nn+I_9DMdjD5rR| zX%QhT)c^n%piY?8Ee?o?YPI}aDMm^a(?rDuO_nUM0W?`v4MOKr+k1E*uM58cHirqd zw%22pafIESlC>N;mwC(qNdzYPN;aEKmKfttWX4P4IQcw)lnA{%ip=ML?gOpXHZz`zZq!NK_0IM$~E_z*Mwfhzt~74PWvGWYD=YsPA|AJ6R1T&)Ui zG^QKO@}MgH8-U1K{I2(@V}RU2D@6|lBGB;gM4B1H0NxJZnkb?@^*Xl>oJNLHigkW^ z`h|^|neL8W&)@F7eTVn@HiW$TlZ??Tt;Kue*gd0MF09VwUO7Z`^TQEgpJSS<230MU z7H1a3reDY@^8z=-wAHyNF$N7HtT2XIWaOwt7mfgGZON(DCWznw z#33Rrf5eA^G5oUyR%A-0!Ll)}5g>Y{wRkyzFN?^VRim+L)lLI@+K=9#eOZzuUzjAy zUuTSeF@Tj(WS&(l4(zVim$iW-6`i}vsxBRH&YVt!V^!%*old6;v>vtPvHyOLXu}k6 z=4_?ntKP@=Fw-k2$Ua?c49-@iTjDtWSQO1{kD}aOqE9z~b}xAR0iL@v{ck<8(|+7o zW?Xb0Dug$A8@W=ACEVDyfCIM%ruM8IB!+?5gv_b zv#nIFFJv++MoOjRL}QZY6Gi_@gmYE(4I=ovB=K9T)zN+h=Q{sbgRfRAHC62{5&bv- zFw^Uq?P$4N&K^nRBig`W{g7Eggm(b=xcAcc{)a9i3>%G?w5O+wyHzuH1AL{3e*?m_ zNQv+QW9Vbn;(gAgo>?j_U7gFFGzcK4Dg=N4bI69H`9g3)qY)q_K%Wkv>Am+rW z=CHsKV2e0+_G}#ErvModS`o)l`q6|M76QyYRVA;gJpd6PEHXvF6^7`>R5nXR5sYNB zSWA?83xFXJ{fPJehF(wiwA<}EfVS$I!}LTKdTYNkrP}&0z`O#$iOhVFbI~5)s@CBP zja*_xrb@=(TmX51zeGe;;JJrg^B)H81&#=HU{gDvx6@J7egH@v&y3d)(bEAu-xzlm zfLnp?CrYLKZf2^eDyceCt0jx%{?}73Ck2uC7;E)ufoYE#z}+5r)`A^%fj#jR-df*L z_1h8JAkXf0X#m)?;C0>sgwX%%=UB(ANMxE#m&xUxI#@2d6VhpYhB5qMBK|v7+N_F~ zh~TqC$^Gs2*f_B6h;#}pd{Sbog*sF=+V~WLN@`n=zh`^P~c!n8EROOF} z@IevXTdh{xk7qs{(u)^&o6VaitJUg#Nz(qlD!to#d7Y~MI|5DObFIaPt>wP}_*npn zb0}o9CPQ@LW2R5%1Iw3RluD&iLs5iR11JOhC4g(dNefDkvY-(_6*@Rr@2OTE1hAI~ z=R{Fzuw2I2p&1Y656(fEkpRdr%OG=lr7;*bCaAvy_^NaMUEX7id0?Vm-#vRI1gi&u zL=mPt9sX}Xe*)liWB5fxy}iJu7I5*SZZL(Zz};3v%f`sXfj86q7m(C}Essfeawvob zbab1|4U;QZo>9jeKnV$_{j|jd&WUIgh3%Ukaa8`)v>7-XE_$g-d9U^@RbMJKT zu@ktajX;~SfVhI%?PZbbM4A}_AO+~jMD$z6;CukzRh8dV<(QWg_-#xm;2s!h}Am3cFIV_|=>-(Nb0Y9aUYg%Hz}1OWN~M zKp3V)S7_MfT|Wt|X%q^XaR3hzMPIO1U&>7Dh>$e~Z!?CTr&|0(rPA4&B!y{Jt`co* z0mB{Og2&CtIR~O!qg-xjC64X!#^84ln8M#L(%W6Hw-!{K5m*#jlk%-d&Y?`RTz;b#VPIQPwQ9P5y(z5>9w zF}OvQ>w&K1X!X+eVL$GsHqnMIa9lH+&CNv70E=J^f+SP~;2A`61`+LzV|-i0e|2!M zu*WIWN?Rhr;p4Z%)t5G)`oW{u-e3RrRyZxsMRJZM9m`I9lGva6_-@D~VK7xm-P$ zN+lK5Xvi4z900EcFbY6b={+L!HDl7-Cnwu8z|CD?{i9}fjs`^FeE!CvIQCCt=8pr& zis*a1kN%@xpWby~gACDTyJU$U6p^O_@)-cHBl0&-Ok^kL)KeA`MBgnG3Nve>h^_+k zN6z6oYq6S{Uxq+l|(4-BM^jiTr`iTFJDhYN-A*f~jOGTkCTMd#coKrdi6&mod! z0Je(gdR6{0GYpZu0idT6NimxxX}5q>H=tIGN`M%-GFHWZkaJ=2+%AuWf6qM zTLA6@=;I>p`y#nr&E~e|Vhw&^ks`pu2cxUgmCER_h&$a{^L_+1lPQ3{={-J6YIL++S%qAtGCm5r@2H-3Nk+dDExWRkepo-nh$z-*f z%$7=-d=$~kRPjCl*8={}CnsmOFGd6i*L|589=?3oIXcrA{wRQAmVss76#q@iaKI6qq=*rKYRRqZ`!ZDy}ATHm|( zqV}UF2Nnj45&`C*dU=Ov)A-O(bX$K{@-k+6F`zFo2G0ffK>%Y!b_bx_<5(vETLX9* zk)A|k*BT?o0JH><0b`&5exj-$0q{NNOjWgA6Dij-nLX`^iE1}Ql8*O2dndCt0IVWH zcIC?9c~wAs?CZY9uU@^WIx~ZxIHw5N#au0rfw(d z{k!*)F(!^w6QgPj5v7dL0w7iIkudw7_fc2GHB@b_+2kfr>jLX!F|TzFi)sJ>pn7qa zX!AHgvjYSE!^X(9%ybSBy$C_Cpch@3tzeT1Ah*SZU6wFdVwR_ z(3qLIq*bYmkE?cfh}i!m;=C%1Dn)=NV@$?-RzTWBnlP&q;dT(UpuVU@ryGj6c6(s` zex=s??r9X&#ruH{fI32YFV*XbS-c{zIW%XTOYJm9u4Lvl0G>hAz1aKc4rbW^;A70V zzuAmu7J38dXHkrRUXh5Osfyc(xG^y?d&rHqeS`PR1UNI<$LJjj>1wq{(xNX`)ID7M zTnqqsIHXFb(%jGj)=UCL2D||pR4iuMxuCf*r!q1%H7j^nkZq#}*6Jg@X^sj9AC zy-C__Y7yy!09FD#((UHrz^}jXskVLRvd$B2szp)er$pTk5aInq{CZ<_iz*zDd_GCi zlfVT>L2-WMAR;Q2z7R!GCZ~#(s`N1;ZUDI>UX1Qz>^^+$g`X#WZU!)i{?4QW;12W- zb9w>ca|bGntUK&uY~7migM-o_ayP5$MIv;TG0A@e)p?*3KT^D~SF3$zs#xs)FpB6~ zfW8o*^F;I=#$>A1>bKj#^A>@Sc7Lp=bb2uA^=1c|DeJwz*L!ILmo4&nEIt->9(*Vq z=pE+t0uJR>4vm|{xpqrLZwJsM!i8~6#pTP(cHz124~8*k44NYPEdU^b7=w{^yOjnm z_&Ge2OH8LTnS{2s;7&3<5 z<2_EwB%#w( z_5A=o#LTxE)81)JVXFvV0bnbDXE8^wGbX>HTwYUH$a4$ppH#|PGektc0pJHjeqv^3 zW?o9Ke;M$EF#uI)vDi+$$25TZ04!yeCjqSjuzA7wC&K{V64h#UkO*su@Xr8lCz5NN zqw&efZfkP#N7I0A@m}XtVP3*4FHVyDF~E&S)JuG1_@>EbQBd_K064*W{WP;o_e-0f z5O~5E003;=dW$!vQw8Xg0D44t4H1@%jy4x03WV?67!3{W90dHSMEp?zyP5URqA0Vo zTD7yG6#Ngn)6*x6tICf>^iKdZnehjy6hFUEzzX1wc{hT-_m5JkbcI=8iC}m?otiQY zVEq$f`U5<{3;?*o6V;nUbPs@^0ys&PRy&s|giW#eLl|JU+9gXWWg>qPKpz6oA;O!1 z-nOx^LLInpzdnT3y;_a-c;C5A6&nyX3Ev&Z`fG!OdsYk$U6-HVHNiJcE>|rQ`C|Z_ zr;5)z=OzJkf6+Fp77|Y=15kzT-MgZzDtlG&Q2-Y3zXc>CqobL5)1x8+tzCOfv}8%G zqMEE$HU9u01Lz;9;=b|mZWTE55oHG9-!JT?(~Uhz!r$;7e*wS|;hjXf&inLnz}fku z=l&1pH#9VpvDO~L%zq5Pidl6l{l-a?%n(9*33-zA@6a$ zD&C18yzy3Md3mwuR|W3>qfL?CoCfSNW8?(@&R5kBizH(+Gc(O6%HnqpPdEbzQ6TOD zya&*a0Eme2Zsz2KLctb*^^e=b5^XdiBj;plwWUj$(@#~^s{owJOm9$4-&ro3Nnp)m z*7t`JjdJCX8 z1GtVknp}(?++Q?2;S3<)0zWy~t%=ah{Y|Kqs(4d6omx?;oPER+Lt$WTwxv>3aE_0) z78i-=rvbzw{&MGV`@jGuw{E@ou!`J5@y7+7dVS|^@7v!^68%F2Io6k0s~=L0o>3?i zjs?D0B*I}a?e!b(Q#mG3W=+|=O?{zra45pZQZIJkC*C^;FxTLGL0U{)0$6_FcNQ@d)lTou^S z2_Ag^lJI@Jr^Vtid26E)5nW>p-VNX+@9AwK=7xHG=a}l{^CIW;%Z4Yg0fd1uJiL5R z#GFBdj{(RL(Z7l4CylWW#_{ybu3f`PP+-4ezZR*3yMU`X+>4-1}7VX%V^ET0h=yn_3*B zJ3XC|p`jU?oCFF59~+Y?F!LypzL*HF0+0gaVpcz)}Nl=;~oPgny0_H9yC zDi1EP)}AdQ?+35~z%4}b0cNwq`_8oY+1WT22LK{5B?&BZJ8ukz0eh0FydJ>Q5GV%U z0mR?)-tP%{{tM@YawSa5QrTiLH*Bq271F6V1A(1kr>b5rA~zYsRqx@5A}``2W~2c* zjhS8s;B)}fs`zVwHcd_WG2oUb+`@N%JfRH$*jJ`dtJy&Ss{wf@!Zc$Fz)w~6KZxuW zX6XTdsu~fb0bNT(uLN)^g8b`s%_{i^z1B7a+_WA_3w-fTAOi^Vqai;iCzKp*?) z`jGa%S2l(QMP#H;1a%(5fMNh`K<@?k8>;eS@8fYIsa2~0wOT0Q^hQiZK#^riHSlt@OG|Ww1NM#=L`y^9C;ghs$&YToeB&&AmbN< zTJe_=zcPSFL4T8pfLqPVm3JEFas(`gwO!r5eWKr-|MTIpIb8grF);ih;#UT6nApEW f;#Y&}e-8d14e)or1;INd00000NkvXXu0mjfsGDIe diff --git a/sl/maintainer.md b/sl/maintainer.md deleted file mode 100644 index 43e37b044a8d..000000000000 --- a/sl/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -[Scientific Linux Development Team](%%GITHUB-REPO%%) diff --git a/sl/metadata.json b/sl/metadata.json deleted file mode 100644 index df07586b5b35..000000000000 --- a/sl/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "hub": { - "categories": [ - "operating-systems" - ] - } -} From a678ca25de88a0d86a209ffafb8e9364630bc9e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Jul 2024 18:15:29 -0700 Subject: [PATCH 1317/2686] Run update.sh --- centos/README.md | 4 +-- debian/README.md | 52 +++++++++++++++----------------- docker/README.md | 16 +++++----- haskell/README.md | 2 -- haxe/README.md | 2 +- httpd/README.md | 4 +-- memcached/README.md | 4 +-- node/README.md | 2 +- openjdk/README.md | 72 ++++++++++++++++++++++----------------------- perl/README.md | 2 +- photon/README.md | 6 ++-- ubuntu/README.md | 6 ++-- 12 files changed, 83 insertions(+), 89 deletions(-) diff --git a/centos/README.md b/centos/README.md index 495133cefec6..6c76bcbfc488 100644 --- a/centos/README.md +++ b/centos/README.md @@ -28,7 +28,7 @@ This image is no longer supported/maintained (non-EOL tags last updated November # Supported tags and respective `Dockerfile` links -- [`centos7`, `7`, `centos7.9.2009`, `7.9.2009`](https://github.com/CentOS/sig-cloud-instance-images/blob/b2d195220e1c5b181427c3172829c23ab9cd27eb/docker/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -36,7 +36,7 @@ This image is no longer supported/maintained (non-EOL tags last updated November [https://bugs.centos.org](https://bugs.centos.org) or [GitHub](https://github.com/CentOS/sig-cloud-instance-images/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/centos/), [`arm32v7`](https://hub.docker.com/r/arm32v7/centos/), [`arm64v8`](https://hub.docker.com/r/arm64v8/centos/), [`i386`](https://hub.docker.com/r/i386/centos/), [`ppc64le`](https://hub.docker.com/r/ppc64le/centos/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/centos/` directory](https://github.com/docker-library/repo-info/blob/master/repos/centos) ([history](https://github.com/docker-library/repo-info/commits/master/repos/centos)) diff --git a/debian/README.md b/debian/README.md index 564f54db51e9..499d05e73228 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,34 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240612`, `12.5`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240612-slim`, `12.5-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240612`, `11.9`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240612-slim`, `11.9-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/bullseye/slim/Dockerfile) -- [`buster`, `buster-20240612`, `10.13`, `10`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/buster/Dockerfile) -- [`buster-slim`, `buster-20240612-slim`, `10.13-slim`, `10-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/buster/slim/Dockerfile) -- [`experimental`, `experimental-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/experimental/Dockerfile) -- [`oldoldstable`, `oldoldstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldoldstable/Dockerfile) -- [`oldoldstable-slim`, `oldoldstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldoldstable/slim/Dockerfile) -- [`oldstable`, `oldstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/rc-buggy/Dockerfile) -- [`sid`, `sid-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/sid/Dockerfile) -- [`sid-slim`, `sid-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/sid/slim/Dockerfile) -- [`stable`, `stable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/stable/slim/Dockerfile) -- [`testing`, `testing-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240612`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240612-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/8d227a7d1f698c702d82e7de764ed0a7df65fb7c/unstable/slim/Dockerfile) +- [`bookworm`, `bookworm-20240701`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/backports/Dockerfile) +- [`bookworm-slim`, `bookworm-20240701-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/slim/Dockerfile) +- [`bullseye`, `bullseye-20240701`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20240701-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/slim/Dockerfile) +- [`experimental`, `experimental-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/experimental/Dockerfile) +- [`oldstable`, `oldstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/backports/Dockerfile) +- [`oldstable-slim`, `oldstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/slim/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/rc-buggy/Dockerfile) +- [`sid`, `sid-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/Dockerfile) +- [`sid-slim`, `sid-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/slim/Dockerfile) +- [`stable`, `stable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/backports/Dockerfile) +- [`stable-slim`, `stable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/slim/Dockerfile) +- [`testing`, `testing-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/backports/Dockerfile) +- [`testing-slim`, `testing-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/slim/Dockerfile) +- [`trixie`, `trixie-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/backports/Dockerfile) +- [`trixie-slim`, `trixie-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/slim/Dockerfile) +- [`unstable`, `unstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/Dockerfile) +- [`unstable-slim`, `unstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index b84371c03fbd..05f08959356a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`27.0.2-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/cli/Dockerfile) -- [`27.0.2-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.2-dind-alpine3.20`, `27.0.2`, `27.0`, `27`, `latest`, `27.0.2-alpine3.20`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/dind/Dockerfile) -- [`27.0.2-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/dind-rootless/Dockerfile) -- [`27.0.2-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.2-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-1809/Dockerfile) +- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/cli/Dockerfile) +- [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) +- [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) +- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) @@ -51,9 +51,9 @@ WARNING: ## Shared Tags -- `27.0.2-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c0963f96ace4f48d13385cbf20356ae605edcb8b/27/windows/windowsservercore-1809/Dockerfile) +- `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: + - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) diff --git a/haskell/README.md b/haskell/README.md index 1657217b5989..2bcf35008d22 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -172,8 +172,6 @@ The `haskell` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. - This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. ## `haskell:-slim` diff --git a/haxe/README.md b/haxe/README.md index ffae077168a8..f56a503c3e99 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -183,7 +183,7 @@ The `haxe` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haxe:-windowsservercore` diff --git a/httpd/README.md b/httpd/README.md index e793dee2c755..f7baddb9a59d 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.59`, `2.4`, `2`, `latest`, `2.4.59-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/b1cb5ded14f70d67aaa987d3267036884a7320ef/2.4/Dockerfile) -- [`2.4.59-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.59-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/a81495e0b89cc2dc06e4ccccb31c40be040ba618/2.4/alpine/Dockerfile) +- [`2.4.60`, `2.4`, `2`, `latest`, `2.4.60-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/e5a3d6dac86ee72f2a8101406fb26fc425bb104c/2.4/Dockerfile) +- [`2.4.60-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.60-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/e5a3d6dac86ee72f2a8101406fb26fc425bb104c/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 9bc1364d81b8..6df43a1f7897 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.28`, `1.6`, `1`, `latest`, `1.6.28-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/4ff42b38a59b98c91a33d1d91d4b2f0d492c951e/1/debian/Dockerfile) -- [`1.6.28-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.28-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/4ff42b38a59b98c91a33d1d91d4b2f0d492c951e/1/alpine/Dockerfile) +- [`1.6.29`, `1.6`, `1`, `latest`, `1.6.29-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/debian/Dockerfile) +- [`1.6.29-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.29-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index a73a8cd99d62..ef9cf60e89ac 100644 --- a/node/README.md +++ b/node/README.md @@ -90,7 +90,7 @@ The `node` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/openjdk/README.md b/openjdk/README.md index 504d3621aff3..173491731d38 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,45 +42,45 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-3-jdk-oraclelinux9`, `24-ea-3-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-3-jdk-oracle`, `24-ea-3-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-3-jdk-oraclelinux8`, `24-ea-3-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-3-jdk-bookworm`, `24-ea-3-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/bookworm/Dockerfile) -- [`24-ea-3-jdk-slim-bookworm`, `24-ea-3-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-3-jdk-slim`, `24-ea-3-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-3-jdk-bullseye`, `24-ea-3-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/bullseye/Dockerfile) -- [`24-ea-3-jdk-slim-bullseye`, `24-ea-3-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-3-jdk-windowsservercore-ltsc2022`, `24-ea-3-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-3-jdk-windowsservercore-1809`, `24-ea-3-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-3-jdk-nanoserver-1809`, `24-ea-3-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-28-jdk-oraclelinux9`, `23-ea-28-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-28-jdk-oracle`, `23-ea-28-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-28-jdk-oraclelinux8`, `23-ea-28-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-28-jdk-bookworm`, `23-ea-28-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/bookworm/Dockerfile) -- [`23-ea-28-jdk-slim-bookworm`, `23-ea-28-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-28-jdk-slim`, `23-ea-28-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-28-jdk-bullseye`, `23-ea-28-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/bullseye/Dockerfile) -- [`23-ea-28-jdk-slim-bullseye`, `23-ea-28-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-28-jdk-windowsservercore-ltsc2022`, `23-ea-28-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-28-jdk-windowsservercore-1809`, `23-ea-28-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-28-jdk-nanoserver-1809`, `23-ea-28-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-4-jdk-oraclelinux9`, `24-ea-4-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-4-jdk-oracle`, `24-ea-4-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-4-jdk-oraclelinux8`, `24-ea-4-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-4-jdk-bookworm`, `24-ea-4-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bookworm/Dockerfile) +- [`24-ea-4-jdk-slim-bookworm`, `24-ea-4-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-4-jdk-slim`, `24-ea-4-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-4-jdk-bullseye`, `24-ea-4-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bullseye/Dockerfile) +- [`24-ea-4-jdk-slim-bullseye`, `24-ea-4-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-4-jdk-windowsservercore-ltsc2022`, `24-ea-4-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-4-jdk-windowsservercore-1809`, `24-ea-4-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-4-jdk-nanoserver-1809`, `24-ea-4-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-29-jdk-oraclelinux9`, `23-ea-29-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-29-jdk-oracle`, `23-ea-29-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-29-jdk-oraclelinux8`, `23-ea-29-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-29-jdk-bookworm`, `23-ea-29-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bookworm/Dockerfile) +- [`23-ea-29-jdk-slim-bookworm`, `23-ea-29-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-29-jdk-slim`, `23-ea-29-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-29-jdk-bullseye`, `23-ea-29-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bullseye/Dockerfile) +- [`23-ea-29-jdk-slim-bullseye`, `23-ea-29-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-29-jdk-windowsservercore-ltsc2022`, `23-ea-29-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-29-jdk-windowsservercore-1809`, `23-ea-29-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-29-jdk-nanoserver-1809`, `23-ea-29-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-3-jdk`, `24-ea-3`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-3-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-3-jdk-windowsservercore`, `24-ea-3-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-3-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-3-jdk-nanoserver`, `24-ea-3-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-3-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f90fffb44c7f12e7512372c8585fa6130e90da6f/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-28-jdk`, `23-ea-28`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-28-jdk-windowsservercore`, `23-ea-28-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-28-jdk-nanoserver`, `23-ea-28-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3fa30b13e98ecaade80efa225b2b8a7fac1e446/23/jdk/windows/nanoserver-1809/Dockerfile) +- `24-ea-4-jdk`, `24-ea-4`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: + - [`24-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-4-jdk-windowsservercore`, `24-ea-4-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) +- `24-ea-4-jdk-nanoserver`, `24-ea-4-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) +- `23-ea-29-jdk`, `23-ea-29`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-29-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-29-jdk-windowsservercore`, `23-ea-29-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) +- `23-ea-29-jdk-nanoserver`, `23-ea-29-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 197dc60a08c1..76e9084fa48e 100644 --- a/perl/README.md +++ b/perl/README.md @@ -194,7 +194,7 @@ The `perl` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm, bullseye, or buster in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/photon/README.md b/photon/README.md index e95718f356e9..a5e0758cb8f0 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240623`, `latest`](https://github.com/vmware/photon-docker-image/blob/0d100680c0526a040845f5c22e3c2563788149a8/docker/Dockerfile) -- [`4.0`, `4.0-20240623`](https://github.com/vmware/photon-docker-image/blob/2b9565bb5931fc9eeba288267f55e9dad0035995/docker/Dockerfile) -- [`3.0`, `3.0-20240616`](https://github.com/vmware/photon-docker-image/blob/cbbc2bbea409cf009bf58be870413861458d1d99/docker/Dockerfile) +- [`5.0`, `5.0-20240701`, `latest`](https://github.com/vmware/photon-docker-image/blob/a0cce2c7aa2a381949b5c76514241bd1597b1e47/docker/Dockerfile) +- [`4.0`, `4.0-20240701`](https://github.com/vmware/photon-docker-image/blob/5a2f4f150af688b0ee1f30453321761eb3f9811b/docker/Dockerfile) +- [`3.0`, `3.0-20240701`](https://github.com/vmware/photon-docker-image/blob/06d65d13573935897a69eb8ad586346f528db4da/docker/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index e0671732eeb8..8be529f52533 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,10 +25,10 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-f351639c&id=f351639c499dcde9b2d9e3aeb2b0344c4a01fc1e) -- [`22.04`, `jammy-20240530`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240530-457c5d99&id=457c5d999100a1eb971d38949b3fe798a84ad6fc) +- [`22.04`, `jammy-20240627.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240627.1-0d60927a&id=0d60927a24b045adcfbdb9a80b7db3bf6bd9fd9b) - [`23.10`, `mantic-20240530`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240530-8dcb055f&id=8dcb055fedbfd33752ede65d6534f702a3b81070) - [`24.04`, `noble-20240605`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240605-baf9888c&id=baf9888c79d71a0ae98d4ef87c838ca3c91f2245) -- [`24.10`, `oracular-20240527`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240527-15366d95&id=15366d954fc6c989ed956729b3a78ff7f1aff13a) +- [`24.10`, `oracular-20240617`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240617-43acaa26&id=43acaa26848f20fe7885f00637b5342967c8ae23) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [the cloud-images bug tracker](https://bugs.launchpad.net/cloud-images) (include the `docker` tag) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) + [`amd64`](https://hub.docker.com/r/amd64/ubuntu/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ubuntu/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ubuntu/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ubuntu/), [`riscv64`](https://hub.docker.com/r/riscv64/ubuntu/), [`s390x`](https://hub.docker.com/r/s390x/ubuntu/) - **Published image artifact details**: [repo-info repo's `repos/ubuntu/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ubuntu) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ubuntu)) From 81ae2626831b0cfc975bde3ef3ef4606e3a77855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20H=C3=BCbner?= Date: Tue, 2 Jul 2024 07:58:59 +0200 Subject: [PATCH 1318/2686] update kong license link fixes https://github.com/Kong/kong/issues/13322 --- kong/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kong/license.md b/kong/license.md index aa0f77f2e58d..510f4360ef21 100644 --- a/kong/license.md +++ b/kong/license.md @@ -1 +1 @@ -View [license information](https://konghq.com/kong/license/) for the software contained in this image. +View [license information](https://github.com/Kong/kong/blob/master/LICENSE) for the software contained in this image. From 0aa03fb9e25a2d338be126211805694ab113847a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jul 2024 12:08:51 -0700 Subject: [PATCH 1319/2686] Run update.sh --- kong/README.md | 2 +- node/README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/kong/README.md b/kong/README.md index d536bc330d1b..61acfac1dc9a 100644 --- a/kong/README.md +++ b/kong/README.md @@ -63,7 +63,7 @@ Please refer to the [installation section](https://docs.konghq.com/gateway/lates # License -View [license information](https://konghq.com/kong/license/) for the software contained in this image. +View [license information](https://github.com/Kong/kong/blob/master/LICENSE) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). diff --git a/node/README.md b/node/README.md index ef9cf60e89ac..87631a6e51e6 100644 --- a/node/README.md +++ b/node/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.3-alpine3.19`, `22.3.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.3-alpine`, `22.3-alpine3.20`, `22.3.0-alpine`, `22.3.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.3`, `22.3-bookworm`, `22.3.0`, `22.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.3-bookworm-slim`, `22.3-slim`, `22.3.0-bookworm-slim`, `22.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.3-bullseye`, `22.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.3-bullseye-slim`, `22.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/17e222f5ca0d572b991cada44394e0eb09ba2b30/22/bullseye-slim/Dockerfile) +- [`22-alpine3.19`, `22.4-alpine3.19`, `22.4.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.19/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.4-alpine`, `22.4-alpine3.20`, `22.4.0-alpine`, `22.4.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.20/Dockerfile) +- [`22`, `22-bookworm`, `22.4`, `22.4-bookworm`, `22.4.0`, `22.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.4-bookworm-slim`, `22.4-slim`, `22.4.0-bookworm-slim`, `22.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm-slim/Dockerfile) +- [`22-bullseye`, `22.4-bullseye`, `22.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye/Dockerfile) +- [`22-bullseye-slim`, `22.4-bullseye-slim`, `22.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.19/Dockerfile) - [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.0-alpine`, `20.15.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.20/Dockerfile) - [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.0`, `20.15.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm/Dockerfile) From 92c8bd8633721d539509e6866c459fcb22873e3e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jul 2024 14:10:36 -0700 Subject: [PATCH 1320/2686] Run update.sh --- golang/README.md | 72 +++++++++++++++++++++++----------------------- mysql/README.md | 7 +++-- postgres/README.md | 8 +++--- traefik/README.md | 24 ++++++++-------- 4 files changed, 56 insertions(+), 55 deletions(-) diff --git a/golang/README.md b/golang/README.md index 6f58033eac1c..7ebc2777b7c7 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,22 +36,22 @@ WARNING: - [`1.23rc1-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) - [`1.23rc1-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23rc1-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) -- [`1.22.4-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) -- [`1.22.4-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bullseye/Dockerfile) -- [`1.22.4-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.4-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/alpine3.20/Dockerfile) -- [`1.22.4-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/alpine3.19/Dockerfile) -- [`1.22.4-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.4-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.4-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.4-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.11-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bookworm/Dockerfile) -- [`1.21.11-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bullseye/Dockerfile) -- [`1.21.11-alpine3.20`, `1.21-alpine3.20`, `1.21.11-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/alpine3.20/Dockerfile) -- [`1.21.11-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/alpine3.19/Dockerfile) -- [`1.21.11-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.11-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.11-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.11-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.5-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) +- [`1.22.5-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bullseye/Dockerfile) +- [`1.22.5-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.5-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.20/Dockerfile) +- [`1.22.5-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.19/Dockerfile) +- [`1.22.5-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.5-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.5-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.5-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.21.12-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) +- [`1.21.12-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bullseye/Dockerfile) +- [`1.21.12-alpine3.20`, `1.21-alpine3.20`, `1.21.12-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.20/Dockerfile) +- [`1.21.12-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.19/Dockerfile) +- [`1.21.12-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.12-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.12-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.12-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -65,26 +65,26 @@ WARNING: - `1.23rc1-nanoserver`, `1.23-rc-nanoserver`: - [`1.23rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) -- `1.22.4`, `1.22`, `1`, `latest`: - - [`1.22.4-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.22/bookworm/Dockerfile) - - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.4-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.4-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/58bc678a838d467ca5afb7e0ee636cf5b8459da2/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.11`, `1.21`: - - [`1.21.11-bookworm`](https://github.com/docker-library/golang/blob/81c0d3115b37997c04828faba09440fd9fffce33/1.21/bookworm/Dockerfile) - - [`1.21.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.11-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.11-nanoserver`, `1.21-nanoserver`: - - [`1.21.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/d92abc1f4a90239f955653f24f69a023d5d1d749/1.21/windows/nanoserver-1809/Dockerfile) +- `1.22.5`, `1.22`, `1`, `latest`: + - [`1.22.5-bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) + - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.5-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) +- `1.22.5-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) +- `1.21.12`, `1.21`: + - [`1.21.12-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) + - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.12-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) +- `1.21.12-nanoserver`, `1.21-nanoserver`: + - [`1.21.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 084288dceec6..401002d0417e 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0`, `8.4`, `8`, `lts`, `latest`, `innovation`, `8.4.0-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `oraclelinux9`, `innovation-oraclelinux9`, `8.4.0-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`, `oracle`, `innovation-oracle`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.4/Dockerfile.oracle) -- [`8.0.37`, `8.0`, `8.0.37-oraclelinux9`, `8.0-oraclelinux9`, `8.0.37-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.0/Dockerfile.oracle) -- [`8.0.37-bookworm`, `8.0-bookworm`, `8.0.37-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/319db566ac7fef45c22f3df15ee5e194a7c43259/8.0/Dockerfile.debian) +- [`9.0.0`, `9.0`, `9`, `innovation`, `latest`, `9.0.0-oraclelinux9`, `9.0-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.0.0-oracle`, `9.0-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/3d11822710789e82f64f08c578162a5b804d2f2f/innovation/Dockerfile.oracle) +- [`8.4.1`, `8.4`, `8`, `lts`, `8.4.1-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.1-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/efa7479ffbb00139f6f1f0b0fe70985f20ee0456/8.4/Dockerfile.oracle) +- [`8.0.38`, `8.0`, `8.0.38-oraclelinux9`, `8.0-oraclelinux9`, `8.0.38-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.oracle) +- [`8.0.38-bookworm`, `8.0-bookworm`, `8.0.38-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index bb21eb353f04..a6dcdf672c77 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17beta1`, `17beta1-bookworm`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bookworm/Dockerfile) -- [`17beta1-bullseye`](https://github.com/docker-library/postgres/blob/41402ac3d12b84453127eaac54b45b300bf30d9a/17/bullseye/Dockerfile) -- [`17beta1-alpine3.20`, `17beta1-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/17/alpine3.20/Dockerfile) -- [`17beta1-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/17/alpine3.19/Dockerfile) +- [`17beta2`, `17beta2-bookworm`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bookworm/Dockerfile) +- [`17beta2-bullseye`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bullseye/Dockerfile) +- [`17beta2-alpine3.20`, `17beta2-alpine`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.20/Dockerfile) +- [`17beta2-alpine3.19`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.19/Dockerfile) - [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) - [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) - [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.20/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 695761a4e904..9bab539aed79 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,18 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.0-rc2-windowsservercore-ltsc2022`, `3.1.0-rc2-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.0-rc2-windowsservercore-1809`, `3.1.0-rc2-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/1809/Dockerfile) -- [`v3.1.0-rc2-nanoserver-ltsc2022`, `3.1.0-rc2-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.0-rc2`, `3.1.0-rc2`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/e8e43baa0a336e4ab03ffcaa02377b446c146274/v3.1/alpine/Dockerfile) -- [`v3.0.3-windowsservercore-ltsc2022`, `3.0.3-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/servercore-ltsc2022/Dockerfile) -- [`v3.0.3-windowsservercore-1809`, `3.0.3-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/1809/Dockerfile) -- [`v3.0.3-nanoserver-ltsc2022`, `3.0.3-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.0.3`, `3.0.3`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/e4bd02cde037ae1002cbb2de6358a2e067158d84/v3.0/alpine/Dockerfile) -- [`v2.11.5-windowsservercore-ltsc2022`, `2.11.5-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.5-windowsservercore-1809`, `2.11.5-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/1809/Dockerfile) -- [`v2.11.5-nanoserver-ltsc2022`, `2.11.5-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.5`, `2.11.5`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/796345ea7521aa8635afbb42f4b9e27b1abb3928/v2.11/alpine/Dockerfile) +- [`v3.1.0-rc3-windowsservercore-ltsc2022`, `3.1.0-rc3-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.0-rc3-windowsservercore-1809`, `3.1.0-rc3-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/1809/Dockerfile) +- [`v3.1.0-rc3-nanoserver-ltsc2022`, `3.1.0-rc3-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.0-rc3`, `3.1.0-rc3`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/alpine/Dockerfile) +- [`v3.0.4-windowsservercore-ltsc2022`, `3.0.4-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/servercore-ltsc2022/Dockerfile) +- [`v3.0.4-windowsservercore-1809`, `3.0.4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/1809/Dockerfile) +- [`v3.0.4-nanoserver-ltsc2022`, `3.0.4-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.0.4`, `3.0.4`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/alpine/Dockerfile) +- [`v2.11.6-windowsservercore-ltsc2022`, `2.11.6-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.6-windowsservercore-1809`, `2.11.6-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/1809/Dockerfile) +- [`v2.11.6-nanoserver-ltsc2022`, `2.11.6-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.6`, `2.11.6`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 7f5038526619dd25c6f35cd19299063f79c68d09 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 2 Jul 2024 11:28:56 -0700 Subject: [PATCH 1321/2686] Adjust CentOS deprecation notice to be more inclusive Co-authored-by: David Dooling --- centos/deprecated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centos/deprecated.md b/centos/deprecated.md index 0d421de8a845..1ebf7d3d0a78 100644 --- a/centos/deprecated.md +++ b/centos/deprecated.md @@ -1 +1 @@ -This image is no longer supported/maintained (non-EOL tags last updated November 16, 2020, [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. +*All* tags of this image are EOL ([June 30, 2024](https://www.redhat.com/en/topics/linux/centos-linux-eol) / [docker-library/official-images#17094](https://github.com/docker-library/official-images/pull/17094), although the last meaningful update was November 16, 2020, long before the EOL date: [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. From 93ee1283dfa366018187960651760b0f15bcd760 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jul 2024 15:08:48 -0700 Subject: [PATCH 1322/2686] Run update.sh --- bash/README.md | 2 +- centos/README.md | 2 +- jruby/README.md | 32 ++++++++++++++++---------------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/bash/README.md b/bash/README.md index dd569bfeac2d..9a36679ae9f4 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240621`, `devel`, `devel-20240621-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/0684c245b36df3eabfd45195aed2acb0616567c6/devel/Dockerfile) +- [`devel-20240628`, `devel`, `devel-20240628-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/eb00adce19d44480c6216fd92896f2eda78f06e5/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) diff --git a/centos/README.md b/centos/README.md index 6c76bcbfc488..2ad8ba2b89f4 100644 --- a/centos/README.md +++ b/centos/README.md @@ -16,7 +16,7 @@ WARNING: # **DEPRECATION NOTICE** -This image is no longer supported/maintained (non-EOL tags last updated November 16, 2020, [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. +*All* tags of this image are EOL ([June 30, 2024](https://www.redhat.com/en/topics/linux/centos-linux-eol) / [docker-library/official-images#17094](https://github.com/docker-library/official-images/pull/17094), although the last meaningful update was November 16, 2020, long before the EOL date: [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. # Quick reference diff --git a/jruby/README.md b/jruby/README.md index a0c7e641dacf..224a1a1d2f27 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,22 +24,22 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.7`, `9.4-jre`, `9.4-jre8`, `9.4.7-jre`, `9.4.7-jre8`, `9.4.7.0`, `9.4.7.0-jre`, `9.4.7.0-jre8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.7-jdk`, `9.4.7-jdk8`, `9.4.7.0-jdk`, `9.4.7.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.7-jre11`, `9.4.7.0-jre11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.7-jdk11`, `9.4.7.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.7-jdk17`, `9.4.7.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.7-jre17`, `9.4.7.0-jre17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.7-jdk21`, `9.4.7.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.7-jre21`, `9.4.7.0-jre21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/6143dcc782ee66ddafe9785c8c229fda0855fe19/9.3/jre21/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.8`, `9.4-jre`, `9.4-jre8`, `9.4.8-jre`, `9.4.8-jre8`, `9.4.8.0`, `9.4.8.0-jre`, `9.4.8.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.8-jdk`, `9.4.8-jdk8`, `9.4.8.0-jdk`, `9.4.8.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk8/Dockerfile) +- [`9.4-jre11`, `9.4.8-jre11`, `9.4.8.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre11/Dockerfile) +- [`9.4-jdk11`, `9.4.8-jdk11`, `9.4.8.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk11/Dockerfile) +- [`9.4-jdk17`, `9.4.8-jdk17`, `9.4.8.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk17/Dockerfile) +- [`9.4-jre17`, `9.4.8-jre17`, `9.4.8.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre17/Dockerfile) +- [`9.4-jdk21`, `9.4.8-jdk21`, `9.4.8.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk21/Dockerfile) +- [`9.4-jre21`, `9.4.8-jre21`, `9.4.8.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre21/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk8/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk11/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre17/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre21/Dockerfile) # Quick reference (cont.) From a7f4c24ae05ad615f0fc0eca9285768af8817e09 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Jul 2024 17:10:18 -0700 Subject: [PATCH 1323/2686] Run update.sh --- buildpack-deps/README.md | 3 - python/README.md | 124 +++++++++++++++++++-------------------- 2 files changed, 62 insertions(+), 65 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index fa93125eef15..475a209c63d0 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -30,9 +30,6 @@ WARNING: - [`bullseye-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) - [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/scm/Dockerfile) - [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/Dockerfile) -- [`buster-curl`, `oldoldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/buster/curl/Dockerfile) -- [`buster-scm`, `oldoldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/buster/scm/Dockerfile) -- [`buster`, `oldoldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/buster/Dockerfile) - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/curl/Dockerfile) - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/scm/Dockerfile) - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/Dockerfile) diff --git a/python/README.md b/python/README.md index dbe622e596b5..de2b852ddae2 100644 --- a/python/README.md +++ b/python/README.md @@ -28,78 +28,78 @@ WARNING: ## Simple Tags -- [`3.13.0b2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bookworm/Dockerfile) -- [`3.13.0b2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0b2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bullseye/Dockerfile) -- [`3.13.0b2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0b2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bookworm/Dockerfile) -- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bookworm/Dockerfile) -- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bullseye/Dockerfile) -- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/slim-bullseye/Dockerfile) -- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.12/alpine3.20/Dockerfile) -- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.12/alpine3.19/Dockerfile) -- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) -- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bookworm/Dockerfile) -- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bullseye/Dockerfile) -- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.11/alpine3.19/Dockerfile) -- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.10/alpine3.20/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/2d4fb586c48b067b432cf56653ee2541d94fdd7d/3.10/alpine3.19/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.9/alpine3.20/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/alpine3.19/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bookworm/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/f93fe0bd5c6649cc821ab7f8e959a322054fe798/3.8/alpine3.20/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/alpine3.19/Dockerfile) +- [`3.13.0b3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) +- [`3.13.0b3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0b3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bullseye/Dockerfile) +- [`3.13.0b3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0b3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0b3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) +- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bookworm/Dockerfile) +- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bullseye/Dockerfile) +- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bullseye/Dockerfile) +- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.20/Dockerfile) +- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.19/Dockerfile) +- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) +- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bookworm/Dockerfile) +- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bullseye/Dockerfile) +- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bullseye/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.19/Dockerfile) +- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.19/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.20/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.19/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.20/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.19/Dockerfile) ## Shared Tags -- `3.13.0b2`, `3.13-rc`: - - [`3.13.0b2-bookworm`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/bookworm/Dockerfile) - - [`3.13.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0b2-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/748d6e9b44c0ee63e766a7c601d471e0763383d6/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b3`, `3.13-rc`: + - [`3.13.0b3-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- `3.13.0b3-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.4`, `3.12`, `3`, `latest`: - - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/bookworm/Dockerfile) - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/b968d488efc09fd34672fc6238182e1222ae005e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/bookworm/Dockerfile) - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.9-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/89b2500cd1255b1be5f57c1bce598f031172bb0a/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.10/bookworm/Dockerfile) + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.9/bookworm/Dockerfile) + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) - `3.8.19`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/1b7a1106674a21e699b155cbd53bf39387284cca/3.8/bookworm/Dockerfile) + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) # Quick reference (cont.) From 31cce5b7d47d266776f5eb7dadc1e204d4444add Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 09:08:53 -0700 Subject: [PATCH 1324/2686] Run update.sh --- kong/README.md | 19 +++++++++++- mongo/README.md | 15 +++++++++ nextcloud/README.md | 10 +++--- node/README.md | 4 --- perl/README.md | 76 +++++++++++++++++++-------------------------- wordpress/README.md | 18 +++++------ 6 files changed, 79 insertions(+), 63 deletions(-) diff --git a/kong/README.md b/kong/README.md index 61acfac1dc9a..c3eb1b72eb95 100644 --- a/kong/README.md +++ b/kong/README.md @@ -28,7 +28,8 @@ WARNING: - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) -- [`2.8.5-ubuntu`, `2.8-ubuntu`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/3fe94ba928bf75b385bd98aa2d5ad07b86fd3eb8/ubuntu/Dockerfile) +- [`2.8.5-alpine`, `2.8-alpine`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/alpine/Dockerfile) +- [`2.8.5-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/ubuntu/Dockerfile) # Quick reference (cont.) @@ -61,6 +62,22 @@ Kong's official documentation can be found at [docs.konghq.com](https://docs.kon Please refer to the [installation section](https://docs.konghq.com/gateway/latest/install/docker/#main) on our documentation website to learn how to use this image. +# Image Variants + +The `kong` images come in many flavors, each designed for a specific use case. + +## `kong:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +## `kong:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](https://github.com/Kong/kong/blob/master/LICENSE) for the software contained in this image. diff --git a/mongo/README.md b/mongo/README.md index d5b6f1f1f50e..a5e408467215 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -43,6 +43,11 @@ WARNING: - [`6.0.16-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) - [`6.0.16-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.28-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) +- [`5.0.28-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.28-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.28-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.28-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) @@ -81,6 +86,16 @@ WARNING: - `6.0.16-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.28-rc0`, `5.0-rc`: + - [`5.0.28-rc0-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) + - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.28-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- `5.0.28-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.28-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.28-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.27`, `5.0`, `5`: - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 863a25d53b2d..05d3b63d7f00 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -30,13 +30,13 @@ WARNING: - [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/apache/Dockerfile) - [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm/Dockerfile) -- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm-alpine/Dockerfile) -- [`28.0.7-apache`, `28.0-apache`, `28-apache`, `28.0.7`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/apache/Dockerfile) -- [`28.0.7-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm/Dockerfile) -- [`28.0.7-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm-alpine/Dockerfile) +- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/27/fpm-alpine/Dockerfile) +- [`28.0.7-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.7`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/apache/Dockerfile) +- [`28.0.7-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm/Dockerfile) +- [`28.0.7-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/28/fpm-alpine/Dockerfile) - [`29.0.3-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.3`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/apache/Dockerfile) - [`29.0.3-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm/Dockerfile) -- [`29.0.3-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm-alpine/Dockerfile) +- [`29.0.3-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 87631a6e51e6..41aad8ec39b8 100644 --- a/node/README.md +++ b/node/README.md @@ -36,16 +36,12 @@ WARNING: - [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.0-bookworm-slim`, `20.15.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.15-bullseye`, `20.15.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye/Dockerfile) - [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye-slim/Dockerfile) -- [`20-buster`, `20.15-buster`, `20.15.0-buster`, `iron-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/buster/Dockerfile) -- [`20-buster-slim`, `20.15-buster-slim`, `20.15.0-buster-slim`, `iron-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/buster-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.19/Dockerfile) - [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.20/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) - [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) - [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) - [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.3-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye-slim/Dockerfile) -- [`18-buster`, `18.20-buster`, `18.20.3-buster`, `hydrogen-buster`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/buster/Dockerfile) -- [`18-buster-slim`, `18.20-buster-slim`, `18.20.3-buster-slim`, `hydrogen-buster-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/buster-slim/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 76e9084fa48e..49a1e71e7da8 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,50 +24,38 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-buster`, `5.40-buster`, `5-buster`, `buster`, `stable-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main-buster/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-slim-buster`, `5.40-slim-buster`, `5-slim-buster`, `slim-buster`, `stable-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim-buster/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-threaded-buster`, `5.40-threaded-buster`, `5-threaded-buster`, `threaded-buster`, `stable-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-main,threaded-buster/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded-buster`, `5.40-slim-threaded-buster`, `5-slim-threaded-buster`, `slim-threaded-buster`, `stable-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.040.000-slim,threaded-buster/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-buster`, `5.38-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main-buster/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-slim-buster`, `5.38-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim-buster/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-threaded-buster`, `5.38-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-main,threaded-buster/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded-buster`, `5.38-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.038.002-slim,threaded-buster/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-buster`, `5.36-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main-buster/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-slim-buster`, `5.36-slim-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim-buster/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-threaded-buster`, `5.36-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-main,threaded-buster/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded-buster`, `5.36-slim-threaded-buster`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.036.003-slim,threaded-buster/Dockerfile) -- [`5.39.10`, `5.39`, `devel`, `5.39.10-bookworm`, `5.39-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main-bookworm/Dockerfile) -- [`5.39.10-bullseye`, `5.39-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main-bullseye/Dockerfile) -- [`5.39.10-slim`, `5.39-slim`, `devel-slim`, `5.39.10-slim-bookworm`, `5.39-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim-bookworm/Dockerfile) -- [`5.39.10-slim-bullseye`, `5.39-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim-bullseye/Dockerfile) -- [`5.39.10-threaded`, `5.39-threaded`, `devel-threaded`, `5.39.10-threaded-bookworm`, `5.39-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main,threaded-bookworm/Dockerfile) -- [`5.39.10-threaded-bullseye`, `5.39-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-main,threaded-bullseye/Dockerfile) -- [`5.39.10-slim-threaded`, `5.39-slim-threaded`, `devel-slim-threaded`, `5.39.10-slim-threaded-bookworm`, `5.39-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim,threaded-bookworm/Dockerfile) -- [`5.39.10-slim-threaded-bullseye`, `5.39-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/310b7bc1e03fa38094922c1a2e2cbd608bd0b3a4/5.039.010-slim,threaded-bullseye/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.41.1`, `5.41`, `devel`, `5.41.1-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bookworm/Dockerfile) +- [`5.41.1-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bullseye/Dockerfile) +- [`5.41.1-slim`, `5.41-slim`, `devel-slim`, `5.41.1-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bookworm/Dockerfile) +- [`5.41.1-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bullseye/Dockerfile) +- [`5.41.1-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.1-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bookworm/Dockerfile) +- [`5.41.1-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bullseye/Dockerfile) +- [`5.41.1-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.1-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bookworm/Dockerfile) +- [`5.41.1-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index bf276fb5027c..3184eb973a58 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -36,15 +36,15 @@ WARNING: - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-RC1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-RC1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-RC1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-RC1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-RC1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-RC1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-RC1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-RC1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-RC1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f8861e199a1da42cbdfc0318df83091d5eddc5f6/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-RC2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-RC2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-RC2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-RC2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-RC2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-RC2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-RC2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-RC2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-RC2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 02225320424861a35be33a7821445b65d48f71e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 10:08:48 -0700 Subject: [PATCH 1325/2686] Run update.sh --- znc/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/znc/README.md b/znc/README.md index c58745b759d2..5f0ee5dc8190 100644 --- a/znc/README.md +++ b/znc/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.9.0`, `1.9`, `latest`](https://github.com/znc/znc-docker/blob/8638ba43acaef4bff2d4d39668c1992f411230a6/full/Dockerfile) -- [`1.9.0-slim`, `1.9-slim`, `slim`](https://github.com/znc/znc-docker/blob/8638ba43acaef4bff2d4d39668c1992f411230a6/slim/Dockerfile) +- [`1.9.1`, `1.9`, `latest`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/full/Dockerfile) +- [`1.9.1-slim`, `1.9-slim`, `slim`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/slim/Dockerfile) # Quick reference (cont.) From 7ecbd816336870a175b848054853af8f544af26b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 11:08:50 -0700 Subject: [PATCH 1326/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index 07673670ea9f..5ed7929430b4 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.9`](https://github.com/arangodb/arangodb-docker/blob/d5a70b0416512013194c74f339fc8b7c0d6f8224/alpine/3.11.9/Dockerfile) +- [`3.11`, `3.11.10`](https://github.com/arangodb/arangodb-docker/blob/94572b3e9c902e5a41c1765ca8c0c341e09eb227/alpine/3.11.10/Dockerfile) - [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) # Quick reference (cont.) From e3d350517ae4278b132f449c3a8ced2eae131804 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 12:08:47 -0700 Subject: [PATCH 1327/2686] Run update.sh --- docker/README.md | 8 ++++---- rabbitmq/README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index 05f08959356a..ea62203825c9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/cli/Dockerfile) +- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/27/cli/Dockerfile) - [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) - [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) - [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) - [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) - [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) - [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) - [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9b848bdd6ac9..169d90081cd1 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,10 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.3`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/013a76f659c4c5e379f80507b100a85fffb95552/3.13/ubuntu/Dockerfile) -- [`3.13.3-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/013a76f659c4c5e379f80507b100a85fffb95552/3.13/alpine/Dockerfile) -- [`3.13.3-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/ubuntu/Dockerfile) +- [`3.13.4-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/alpine/Dockerfile) +- [`3.13.4-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) - [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/alpine/Dockerfile) From 085a866304bc14da991d05b07442f206fd9ab8cd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 15:08:48 -0700 Subject: [PATCH 1328/2686] Run update.sh --- httpd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index f7baddb9a59d..98d795847f67 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.60`, `2.4`, `2`, `latest`, `2.4.60-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/e5a3d6dac86ee72f2a8101406fb26fc425bb104c/2.4/Dockerfile) -- [`2.4.60-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.60-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/e5a3d6dac86ee72f2a8101406fb26fc425bb104c/2.4/alpine/Dockerfile) +- [`2.4.61`, `2.4`, `2`, `latest`, `2.4.61-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/Dockerfile) +- [`2.4.61-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.61-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/alpine/Dockerfile) # Quick reference (cont.) From 0620dfb211b521d3262a81756f737e6f4d5ff628 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 16:08:52 -0700 Subject: [PATCH 1329/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index fb095851b395..8e89a44652e5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ec5aa528ff05152e58b85e3d0a850ad8a627187c/7-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim-fips/Dockerfile) # Quick reference (cont.) From 0612ca6ffbab597a5f8662975839119aa8ed9ce3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Jul 2024 17:08:49 -0700 Subject: [PATCH 1330/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index b9da32363222..1cc1c7a67fa0 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240624.0`](https://github.com/amazonlinux/container-images/blob/79921b7f2b8ace2a04214cac4e2b2dd375f793af/Dockerfile) +- [`2023`, `latest`, `2023.5.20240701.0`](https://github.com/amazonlinux/container-images/blob/3bbb9c330290a57dce82f86e126abfae5f158796/Dockerfile) - [`2`, `2.0.20240620.0`](https://github.com/amazonlinux/container-images/blob/3940ec6a9ed3bbb1dd7ccca2fcfcc4a28213588a/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) From 9dab16c7f8cc909b897b08f8769ec59187e2a48d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Jul 2024 19:09:25 -0700 Subject: [PATCH 1331/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index bcae47560f3c..9aa8b3bb0605 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -28,8 +28,8 @@ WARNING: - [`5.21.0-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.0-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/enterprise/Dockerfile) - [`5.21.0-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.0-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/community/Dockerfile) - [`5.21.0-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/enterprise/Dockerfile) -- [`4.4.34`, `4.4.34-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/community/Dockerfile) -- [`4.4.34-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d8543a8aec237f8d127f233c74f09cf3c76f9051/4.4.34/bullseye/enterprise/Dockerfile) +- [`4.4.35`, `4.4.35-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/community/Dockerfile) +- [`4.4.35-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 3524605155c9bc0a5caf829d408199a4b2b6c8ea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jul 2024 12:08:53 -0700 Subject: [PATCH 1332/2686] Run update.sh --- joomla/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/joomla/README.md b/joomla/README.md index 7a5ef081782f..c13329f2c5be 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,6 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`5.2.0-alpha2-php8.1-apache`, `5.2-php8.1-apache`, `5.2.alpha-php8.1-apache`, `5.2.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/apache/Dockerfile) +- [`5.2.0-alpha2-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.alpha-php8.1-fpm-alpine`, `5.2.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-alpha2-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.alpha-php8.1-fpm`, `5.2.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm/Dockerfile) +- [`5.2.0-alpha2`, `5.2`, `5.2.alpha`, `5.2.0-alpha`, `5.2.0-alpha2-apache`, `5.2-apache`, `5.2.alpha-apache`, `5.2.0-alpha-apache`, `5.2.0-alpha2-php8.2`, `5.2-php8.2`, `5.2.alpha-php8.2`, `5.2.0-alpha-php8.2`, `5.2.0-alpha2-php8.2-apache`, `5.2-php8.2-apache`, `5.2.alpha-php8.2-apache`, `5.2.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/apache/Dockerfile) +- [`5.2.0-alpha2-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.alpha-php8.2-fpm-alpine`, `5.2.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-alpha2-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.alpha-php8.2-fpm`, `5.2.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm/Dockerfile) +- [`5.2.0-alpha2-php8.3-apache`, `5.2-php8.3-apache`, `5.2.alpha-php8.3-apache`, `5.2.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/apache/Dockerfile) +- [`5.2.0-alpha2-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.alpha-php8.3-fpm-alpine`, `5.2.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-alpha2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm/Dockerfile) - [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/apache/Dockerfile) - [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm-alpine/Dockerfile) - [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm/Dockerfile) From d0c5005ed065ff278cd183bca6718f33955869e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jul 2024 14:09:27 -0700 Subject: [PATCH 1333/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index f5737dd671c6..0cc907b17f68 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,9 +30,9 @@ WARNING: - [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/postgres-tomcat/Dockerfile) - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.0`, `16.4-mysql-tomcat`, `16.4.0-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.0-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.0-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16.4/mariadb-tomcat/Dockerfile) +- [`16.4`, `16.4.1`, `16.4-mysql-tomcat`, `16.4.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mysql-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/postgres-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) From a20b1d523ed8502bf7403b2aa0dcc05517035338 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 5 Jul 2024 15:02:53 -0700 Subject: [PATCH 1334/2686] Apply a couple minor improvements/simplifications to `generate-dockerfile-links-partial.*` This creates no visible change in behavior (the `--arch-filter` flag to `bashbrew list` didn't exist at the time this was originally written, and it looks like our newline outputting behavior has changed over time such that it can now be simplified). --- .template-helpers/generate-dockerfile-links-partial.sh | 2 +- .template-helpers/generate-dockerfile-links-partial.tmpl | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.template-helpers/generate-dockerfile-links-partial.sh b/.template-helpers/generate-dockerfile-links-partial.sh index 3f0a1c91a734..126fcbea3920 100755 --- a/.template-helpers/generate-dockerfile-links-partial.sh +++ b/.template-helpers/generate-dockerfile-links-partial.sh @@ -13,7 +13,7 @@ if [ -z "${BASHBREW_LIBRARY:-}" ]; then repo="https://github.com/docker-library/official-images/raw/master/library/$repo" fi -if [ -n "$ARCH_SPECIFIC_DOCS" ] && archTags="$(bashbrew cat --format '{{ range .Entries }}{{ if .HasArchitecture arch }}{{ .Tags | first }}{{ "\n" }}{{ end }}{{ end }}' "$repo")" && [ -z "$archTags" ]; then +if [ -n "$ARCH_SPECIFIC_DOCS" ] && archTags="$(bashbrew list --uniq --arch-filter "$repo")" && [ -z "$archTags" ]; then echo "**WARNING:** THIS IMAGE *IS NOT SUPPORTED* ON THE \`$BASHBREW_ARCH\` ARCHITECTURE" exit fi diff --git a/.template-helpers/generate-dockerfile-links-partial.tmpl b/.template-helpers/generate-dockerfile-links-partial.tmpl index 2889640fb4ce..5edc9c17f66e 100644 --- a/.template-helpers/generate-dockerfile-links-partial.tmpl +++ b/.template-helpers/generate-dockerfile-links-partial.tmpl @@ -33,16 +33,14 @@ This template defines the "Supported tags and Dockerfile links" portion of an im {{- $url = $url | ternary $url (hasPrefix "https://git.launchpad.net/" $repoUrlBase | ternary (print $repoUrlBase "/tree/" $dockerfilePath "?h=" ($e.ArchGitFetch $arch) "&id=" $gitCommit) "") -}} {{- /* TODO decide what to do (if anything) about other non-GitHub repos with respect to URL */ -}} - {{- if $i -}} - {{- "\n" -}} - {{- end -}} - - {{- "\t" -}} {{- if $url -}} [ {{- end -}} ` {{- $e.Tags | join "`, `" -}} ` {{- if $url -}} ]( {{- $url -}} ) {{- end -}} + + {{- "\n" -}} {{- end -}} -{{- "\n\n" -}} +{{- "\n" -}} {{- if (len $sharedTagGroups) -}} {{- "## Shared Tags\n\n" -}} From 796319414b3bfc2a25583527dc4fcb02c39132ca Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 5 Jul 2024 15:10:49 -0700 Subject: [PATCH 1335/2686] Add newlines between tag groups so they get better line-spacing Especially with Docker Hub's new stylesheets, the tag listing is *really* compressed and hard to scan/read, especially on the really extreme examples like `tomcat`. This adjusts the line-spacing such that they should have a little more breathing room overall. --- .template-helpers/generate-dockerfile-links-partial.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.template-helpers/generate-dockerfile-links-partial.tmpl b/.template-helpers/generate-dockerfile-links-partial.tmpl index 5edc9c17f66e..64472167decb 100644 --- a/.template-helpers/generate-dockerfile-links-partial.tmpl +++ b/.template-helpers/generate-dockerfile-links-partial.tmpl @@ -38,9 +38,8 @@ This template defines the "Supported tags and Dockerfile links" portion of an im ` {{- $e.Tags | join "`, `" -}} ` {{- if $url -}} ]( {{- $url -}} ) {{- end -}} - {{- "\n" -}} + {{- "\n\n" -}} {{- end -}} -{{- "\n" -}} {{- if (len $sharedTagGroups) -}} {{- "## Shared Tags\n\n" -}} @@ -51,7 +50,7 @@ This template defines the "Supported tags and Dockerfile links" portion of an im {{- if (len $entries) -}} {{- "-\t`" -}} {{ .SharedTags | join "`, `" }} - {{- "`:\n" -}} + {{- "`:\n\n" -}} {{- range $i, $e := $entries -}} {{- $arch := $archSpecific | ternary arch ($e.HasArchitecture arch | ternary arch ($e.Architectures | first)) -}} @@ -79,6 +78,7 @@ This template defines the "Supported tags and Dockerfile links" portion of an im {{- "\n" -}} {{- end -}} + {{- "\n" -}} {{- end -}} {{- end -}} {{- "\n" -}} From 6fbb0282e9b476bbb7e13dcc3630dd0c618af50c Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 5 Jul 2024 16:08:09 -0700 Subject: [PATCH 1336/2686] Trim descriptions based on bytes, not characters It turns out that the Hub description length limit is 25k *bytes*, not characters. We've gotten lucky that our few unicode glyphs have landed so far such that we've never run into a problem with this before now, but we're currently hitting this while trying to push the `amd64/nextcloud` description in that the trimmed version ends up being exactly 25,003 bytes thanks to the unicode glyphs throwing off our trimming calculations (and getting really [un]lucky with the exact positioning of the markdown such that our trimming doesn't walk back far enough). This fixes that by calculating and trimming based on bytes, accounting for cases of unicode glyphs directly spanning the 25k byte boundary. After applying this fix, the same breaking `amd64/nextcloud` trimmed description is 24,725 bytes instead. --- push.pl | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/push.pl b/push.pl index f5d69dd98494..d8895772b030 100755 --- a/push.pl +++ b/push.pl @@ -15,7 +15,9 @@ use Term::UI; use Term::ReadLine; -my $hubLengthLimit = 25_000; +require bytes; # this is not recommended, but we *only* use "bytes::length" from it to determine whether we need to do a more correct conversion to/from bytes for trimming (see $hubLengthLimit and usages) + +my $hubLengthLimit = 25_000; # NOTE: this is *bytes*, not characters 🙃 my $githubBase = 'https://github.com/docker-library/docs/tree/master'; # TODO point this at the correct "dist-xxx" branch based on "namespace" my $username; @@ -75,7 +77,7 @@ sub prompt_for_edit { $proposedText =~ s%$supportedTagsRegex%$sponsoredLinks$1$2%; } - if ($lengthLimit > 0 && length($proposedText) > $lengthLimit) { + if ($lengthLimit > 0 && bytes::length($proposedText) > $lengthLimit) { # TODO https://github.com/docker/hub-beta-feedback/issues/238 my $fullUrl = "$githubBase/$proposedFile"; my $shortTags = "-\tSee [\"Supported tags and respective \`Dockerfile\` links\" at $fullUrl]($fullUrl#supported-tags-and-respective-dockerfile-links)\n\n"; @@ -91,9 +93,18 @@ sub prompt_for_edit { $trimmedText =~ s%$supportedTagsRegex%$sponsoredLinks$1$tagsNote%ms; # (we scrape until the next "h1" or a line starting with a link which is likely a build status badge for an architecture-namespace) - if (length($trimmedText) > $lengthLimit) { - # ... if that doesn't do the trick, then do our older naïve description trimming - $trimmedText = $startingNote . substr $proposedText, 0, ($lengthLimit - length($startingNote . $endingNote)); + if (bytes::length($trimmedText) > $lengthLimit) { + # ... if that doesn't do the trick, then do our older naïve description trimming (respecting utf8; see https://www.perlmonks.org/?node_id=1230659 and https://perldoc.perl.org/utf8) + $trimmedText = $proposedText; + utf8::encode($trimmedText); + $trimmedText = $startingNote . substr $trimmedText, 0, ($lengthLimit - bytes::length($startingNote . $endingNote)); + # (deal with the potential of "bytes::substr" here cutting us in the middle of a unicode glyph, which is arguably a much worse problem than the markdown cutting described below 😬 again, see https://www.perlmonks.org/?node_id=1230659) + $trimmedText =~ s/(?: + [\xC0-\xDF] + | [\xE0-\xEF] [\x80-\xBF]? + | [\xF0-\xF7] [\x80-\xBF]{0,2} + )\z//x; + utf8::decode($trimmedText); # adding the "ending note" (https://github.com/docker/hub-feedback/issues/2220) is a bit more complicated as we have to deal with cutting off markdown ~cleanly so it renders correctly # TODO deal with "```foo" appropriately (so we don't drop our note in the middle of a code block) - the Hub's current markdown rendering (2022-04-07) does not auto-close a dangling block like this, so this isn't urgent From 91eeb8d637e38fcc185bd7716384cf8f0cf76922 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 5 Jul 2024 16:46:01 -0700 Subject: [PATCH 1337/2686] Update `push.pl` runtime to Perl 5.39 and Debian Bookworm --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b849af2edf39..66365c00b774 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM perl:5.30-buster +FROM perl:5.39-bookworm RUN set -eux; \ apt-get update; \ From 9955914a84139c7ffa905643a1d69a38887b2afc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jul 2024 17:09:02 -0700 Subject: [PATCH 1338/2686] Run update.sh --- drupal/README.md | 24 +++++++------- ghost/README.md | 4 +-- haxe/README.md | 12 +++---- mongo/README.md | 30 ++++++++--------- php/README.md | 84 ++++++++++++++++-------------------------------- tomcat/README.md | 4 +-- 6 files changed, 64 insertions(+), 94 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index ffafb2f5d239..179fe1173488 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -36,18 +36,18 @@ WARNING: - [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) - [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.3.0-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.0-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.0-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.0-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.3.0-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.0-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.0-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.0-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.3.0-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.0-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.0-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.3.0-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.3.0-php8.2`, `10.3-php8.2`, `10-php8.2`, `php8.2`, `10.3.0-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.3.0-apache`, `10.3-apache`, `10-apache`, `apache`, `10.3.0`, `10.3`, `10`, `latest`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.0-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.3.0-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.3.0-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.3.0-fpm`, `10.3-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.0-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.3.0-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.0-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.3.0-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.0-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.3.0-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.3.0-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.3.0-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.0-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.3.0-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d0dadcdb25f51984f63088d9ef6238a3b4480bc6/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `apache`, `10.3.1`, `10.3`, `10`, `latest`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) - [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) - [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 94e4d63e194e..9ed45e21c1c0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.87.0`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1b2bf3e790b799e4e9b232ad8bc4b6622e466c76/5/debian/Dockerfile) -- [`5.87.0-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1b2bf3e790b799e4e9b232ad8bc4b6622e466c76/5/alpine/Dockerfile) +- [`5.87.1`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/debian/Dockerfile) +- [`5.87.1-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index f56a503c3e99..3e8bd3ed716f 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,16 +28,16 @@ WARNING: ## Simple Tags +- [`4.3.4-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) - [`4.3.4-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) -- [`4.3.4-buster`, `4.3-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/buster/Dockerfile) - [`4.3.4-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) - [`4.3.4-alpine3.19`, `4.3-alpine3.19`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) - [`4.3.4-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.18/Dockerfile) - [`4.3.4-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.17/Dockerfile) - [`4.3.4-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.16/Dockerfile) +- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) -- [`4.2.5-buster`, `4.2-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/buster/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - [`4.2.5-alpine3.19`, `4.2-alpine3.19`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) @@ -45,7 +45,6 @@ WARNING: - [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.17/Dockerfile) - [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.16/Dockerfile) - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) -- [`4.1.5-buster`, `4.1-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/buster/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - [`4.1.5-alpine3.19`, `4.1-alpine3.19`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) @@ -53,7 +52,6 @@ WARNING: - [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.17/Dockerfile) - [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.16/Dockerfile) - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) -- [`4.0.5-buster`, `4.0-buster`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/buster/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - [`4.0.5-alpine3.19`, `4.0-alpine3.19`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) @@ -64,14 +62,14 @@ WARNING: ## Shared Tags - `4.3.4`, `4.3`, `latest`: - - [`4.3.4-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) + - [`4.3.4-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) - `4.3.4-windowsservercore`, `4.3-windowsservercore`: - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - - [`4.2.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) + - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: @@ -183,7 +181,7 @@ The `haxe` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haxe:-windowsservercore` diff --git a/mongo/README.md b/mongo/README.md index a5e408467215..7f4b3d03249a 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,11 +28,11 @@ WARNING: ## Simple Tags -- [`8.0.0-rc9-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/Dockerfile) -- [`8.0.0-rc9-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc9-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc9-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc9-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc11-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) +- [`8.0.0-rc11-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc11-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc11-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc11-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - [`7.0.12-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.12-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) @@ -56,16 +56,16 @@ WARNING: ## Shared Tags -- `8.0.0-rc9`, `8.0-rc`: - - [`8.0.0-rc9-jammy`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/Dockerfile) - - [`8.0.0-rc9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc9-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc9-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2c58e6ea3cbf26da2366a6335b73e83da861fb3f/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `8.0.0-rc11`, `8.0-rc`: + - [`8.0.0-rc11-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) + - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc11-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- `8.0.0-rc11-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: - [`7.0.12-jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/php/README.md b/php/README.md index c849ae3748f3..3cae99867888 100644 --- a/php/README.md +++ b/php/README.md @@ -24,62 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.9RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.9RC1-bookworm`, `8.3-rc-bookworm`, `8.3.9RC1-cli`, `8.3-rc-cli`, `8.3.9RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.9RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.9RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.9RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.9RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.9RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.9RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.9RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.9RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.9RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.9RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.9RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.9RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.9RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.9RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.9RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/cli/Dockerfile) -- [`8.3.9RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.9RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/fpm/Dockerfile) -- [`8.3.9RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.9RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.20/zts/Dockerfile) -- [`8.3.9RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.9RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.9RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.9RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/9cf25725489ff2dd1197d885455d77bbe93a3e8f/8.3-rc/alpine3.19/zts/Dockerfile) -- [`8.3.8-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.8-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.8-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.8`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/cli/Dockerfile) -- [`8.3.8-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.8-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/apache/Dockerfile) -- [`8.3.8-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.8-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/fpm/Dockerfile) -- [`8.3.8-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.8-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bookworm/zts/Dockerfile) -- [`8.3.8-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.8-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/cli/Dockerfile) -- [`8.3.8-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/apache/Dockerfile) -- [`8.3.8-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/fpm/Dockerfile) -- [`8.3.8-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/bullseye/zts/Dockerfile) -- [`8.3.8-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.8-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.8-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.8-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.8-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.8-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.8-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.8-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.8-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.8-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.8-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.8-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.3/alpine3.19/zts/Dockerfile) -- [`8.2.21RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.21RC1-bookworm`, `8.2-rc-bookworm`, `8.2.21RC1-cli`, `8.2-rc-cli`, `8.2.21RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/cli/Dockerfile) -- [`8.2.21RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.21RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/apache/Dockerfile) -- [`8.2.21RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.21RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/fpm/Dockerfile) -- [`8.2.21RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.21RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bookworm/zts/Dockerfile) -- [`8.2.21RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.21RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/cli/Dockerfile) -- [`8.2.21RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/apache/Dockerfile) -- [`8.2.21RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/fpm/Dockerfile) -- [`8.2.21RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.21RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.21RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.21RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.21RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/cli/Dockerfile) -- [`8.2.21RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.21RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/fpm/Dockerfile) -- [`8.2.21RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.21RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.20/zts/Dockerfile) -- [`8.2.21RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.21RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/cli/Dockerfile) -- [`8.2.21RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/fpm/Dockerfile) -- [`8.2.21RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0021cdb0ae9df485d3729b1d9ecff73b73dcef43/8.2-rc/alpine3.19/zts/Dockerfile) -- [`8.2.20-cli-bookworm`, `8.2-cli-bookworm`, `8.2.20-bookworm`, `8.2-bookworm`, `8.2.20-cli`, `8.2-cli`, `8.2.20`, `8.2`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/cli/Dockerfile) -- [`8.2.20-apache-bookworm`, `8.2-apache-bookworm`, `8.2.20-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/apache/Dockerfile) -- [`8.2.20-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.20-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/fpm/Dockerfile) -- [`8.2.20-zts-bookworm`, `8.2-zts-bookworm`, `8.2.20-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bookworm/zts/Dockerfile) -- [`8.2.20-cli-bullseye`, `8.2-cli-bullseye`, `8.2.20-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/cli/Dockerfile) -- [`8.2.20-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/apache/Dockerfile) -- [`8.2.20-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/fpm/Dockerfile) -- [`8.2.20-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/bullseye/zts/Dockerfile) -- [`8.2.20-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.20-alpine3.20`, `8.2-alpine3.20`, `8.2.20-cli-alpine`, `8.2-cli-alpine`, `8.2.20-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/cli/Dockerfile) -- [`8.2.20-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.20-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/fpm/Dockerfile) -- [`8.2.20-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.20-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.20/zts/Dockerfile) -- [`8.2.20-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.20-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.20-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.20-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.2/alpine3.19/zts/Dockerfile) +- [`8.3.9-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.9-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.9-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.9`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/cli/Dockerfile) +- [`8.3.9-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.9-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/apache/Dockerfile) +- [`8.3.9-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.9-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/fpm/Dockerfile) +- [`8.3.9-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.9-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/zts/Dockerfile) +- [`8.3.9-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.9-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/cli/Dockerfile) +- [`8.3.9-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/apache/Dockerfile) +- [`8.3.9-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/fpm/Dockerfile) +- [`8.3.9-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/zts/Dockerfile) +- [`8.3.9-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.9-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.9-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.9-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.9-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.9-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.9-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.9-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.9-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.9-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.9-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.9-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.21-cli-bookworm`, `8.2-cli-bookworm`, `8.2.21-bookworm`, `8.2-bookworm`, `8.2.21-cli`, `8.2-cli`, `8.2.21`, `8.2`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/cli/Dockerfile) +- [`8.2.21-apache-bookworm`, `8.2-apache-bookworm`, `8.2.21-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/apache/Dockerfile) +- [`8.2.21-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.21-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/fpm/Dockerfile) +- [`8.2.21-zts-bookworm`, `8.2-zts-bookworm`, `8.2.21-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/zts/Dockerfile) +- [`8.2.21-cli-bullseye`, `8.2-cli-bullseye`, `8.2.21-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/cli/Dockerfile) +- [`8.2.21-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/apache/Dockerfile) +- [`8.2.21-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/fpm/Dockerfile) +- [`8.2.21-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/zts/Dockerfile) +- [`8.2.21-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.21-alpine3.20`, `8.2-alpine3.20`, `8.2.21-cli-alpine`, `8.2-cli-alpine`, `8.2.21-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.21-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.21-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.21-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.21-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.21-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.21-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.21-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.21-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/zts/Dockerfile) - [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) - [`8.1.29-apache-bookworm`, `8.1-apache-bookworm`, `8.1.29-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/apache/Dockerfile) - [`8.1.29-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.29-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/fpm/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 4ad30005e43a..7a5fdb217f6b 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,8 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M21-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M21-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M21-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M21`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M21-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M21-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M21-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/8e7b733a76bf1e79c0a58d2a64ed7e29f5caf17e/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M22-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M22-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M22`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.25-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.25-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.25-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.25`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk21/temurin-jammy/Dockerfile) - [`10.1.25-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.25-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.25-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre21/temurin-jammy/Dockerfile) - [`10.1.25-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.25-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.25-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk17/temurin-jammy/Dockerfile) From 20d0481fba2d7a3d015932887b2257ec96b01f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?eW=C9=98yn?= <5607939+Llewellynvdm@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:55:59 +0200 Subject: [PATCH 1339/2686] Joomla Update (#2462) * Update the Joomla stack details * Update the Joomla gitub-repo * Update the Joomla stack details to allow auto deployment * Update Joomla Docker documentation to improve clarity and enhance configuration options - Changed container network configuration to use Docker networks instead of linking containers. - Introduced new environment variables for database configuration: - `JOOMLA_DB_PASSWORD_FILE`: Path to a file containing the database password. - `JOOMLA_DB_TYPE`: Database type with options for "mysqli" and "pgsql". - Added environment variables for auto-deployment configuration: - `JOOMLA_SITE_NAME`, `JOOMLA_ADMIN_USER`, `JOOMLA_ADMIN_USERNAME`, `JOOMLA_ADMIN_PASSWORD`, `JOOMLA_ADMIN_EMAIL` - `JOOMLA_EXTENSIONS_URLS`, `JOOMLA_EXTENSIONS_PATHS` - `JOOMLA_SMTP_HOST`, `JOOMLA_SMTP_HOST_PORT` - Updated port mapping instructions to reflect the new network setup. - Corrected the Dockerfile reference link for adding additional PHP extensions. These changes improve the setup process, provide more flexible configuration options, and correct outdated references. * Fix network name in Docker run commands to be consistent. * Fix formatting in joomla/content.md file --- joomla/content.md | 28 +++++++++++++++++++++------- joomla/github-repo | 2 +- joomla/stack.yml | 38 ++++++++++++++++++++++++++++++-------- 3 files changed, 52 insertions(+), 16 deletions(-) diff --git a/joomla/content.md b/joomla/content.md index 7ab6be806a4b..e367ebcee16f 100644 --- a/joomla/content.md +++ b/joomla/content.md @@ -9,31 +9,45 @@ Joomla is a free and open-source content management system (CMS) for publishing # How to use this image ```console -$ docker run --name some-%%REPO%% --link some-mysql:mysql -d %%IMAGE%% +$ docker run --name some-%%REPO%% --network some-network -d %%IMAGE%% ``` -The following environment variables are also honored for configuring your Joomla instance: +The following environment variables are honored for configuring your Joomla instance: - `-e JOOMLA_DB_HOST=...` (defaults to the IP and port of the linked `mysql` container) - `-e JOOMLA_DB_USER=...` (defaults to "root") - `-e JOOMLA_DB_PASSWORD=...` (defaults to the value of the `MYSQL_ROOT_PASSWORD` environment variable from the linked `mysql` container) +- `-e JOOMLA_DB_PASSWORD_FILE=...` (path to a file containing the database password) - `-e JOOMLA_DB_NAME=...` (defaults to "joomla") +- `-e JOOMLA_DB_TYPE=...` (defaults to "mysqli" options: mysqli, pgsql) If the `JOOMLA_DB_NAME` specified does not already exist on the given MySQL server, it will be created automatically upon startup of the `%%REPO%%` container, provided that the `JOOMLA_DB_USER` specified has the necessary permissions to create it. +The following environment variables are also honored for configuring auto deployment (skip the browser setup) for your Joomla instance: + +- `-e JOOMLA_SITE_NAME=...` (name of the Joomla site) +- `-e JOOMLA_ADMIN_USER=...` (full name of the Joomla administrator) +- `-e JOOMLA_ADMIN_USERNAME=...` (username of the Joomla administrator) +- `-e JOOMLA_ADMIN_PASSWORD=...` (password of the Joomla administrator) +- `-e JOOMLA_ADMIN_EMAIL=...` (email address of the Joomla administrator) +- `-e JOOMLA_EXTENSIONS_URLS=...` (semicolon-separated list of URLs to install Joomla extensions from) +- `-e JOOMLA_EXTENSIONS_PATHS=...` (semicolon-separated list of file paths to install Joomla extensions from) +- `-e JOOMLA_SMTP_HOST=...` (SMTP host for outgoing email) +- `-e JOOMLA_SMTP_HOST_PORT=...` (SMTP port for outgoing email) + If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used: ```console -$ docker run --name some-%%REPO%% --link some-mysql:mysql -p 8080:80 -d %%IMAGE%% +$ docker run --name some-%%REPO%% --network some-network -p 8080:80 -d %%IMAGE%% ``` Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. -If you'd like to use an external database instead of a linked `mysql` container, specify the hostname and port with `JOOMLA_DB_HOST` along with the password in `JOOMLA_DB_PASSWORD` and the username in `JOOMLA_DB_USER` (if it is something other than `root`): +If you'd like to use an external database instead of a MySQL container, specify the hostname and port with `JOOMLA_DB_HOST` along with the password in `JOOMLA_DB_PASSWORD` and the username in `JOOMLA_DB_USER` (if it is something other than `root`): ```console -$ docker run --name some-%%REPO%% -e JOOMLA_DB_HOST=10.1.2.3:3306 \ - -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d %%REPO%% +$ docker run --name some-%%REPO%% --network some-network -e JOOMLA_DB_HOST=10.1.2.3:3306 \ + -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d %%IMAGE%% ``` ## %%STACK%% @@ -44,7 +58,7 @@ Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size. -If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. Additionally, the [`%%REPO%%` Dockerfile](https://github.com/joomla/docker-joomla/blob/966275ada2148e343a68c8c03870f11cc7f5b89c/apache/Dockerfile#L7-L11) has an example of doing this. +If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. Additionally, the [`%%REPO%%` Dockerfile](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.1/php8.3/apache/Dockerfile#L51-L64) has an example of doing this. The following Docker Hub features can help with the task of keeping your dependent images up-to-date: diff --git a/joomla/github-repo b/joomla/github-repo index 6bb120cbf247..4abb699f820b 100644 --- a/joomla/github-repo +++ b/joomla/github-repo @@ -1 +1 @@ -https://github.com/joomla/docker-joomla +https://github.com/joomla-docker/docker-joomla diff --git a/joomla/stack.yml b/joomla/stack.yml index 91b6f6a9f0b3..438e87771535 100644 --- a/joomla/stack.yml +++ b/joomla/stack.yml @@ -1,19 +1,41 @@ -version: '3.1' - services: + joomla: image: joomla restart: always - links: - - joomladb:mysql ports: - 8080:80 environment: - JOOMLA_DB_HOST: joomladb - JOOMLA_DB_PASSWORD: example + JOOMLA_DB_HOST: db + JOOMLA_DB_USER: joomla + JOOMLA_DB_PASSWORD: examplepass + JOOMLA_DB_NAME: joomla_db + JOOMLA_SITE_NAME: Joomla + JOOMLA_ADMIN_USER: Joomla Hero + JOOMLA_ADMIN_USERNAME: joomla + JOOMLA_ADMIN_PASSWORD: joomla@secured + JOOMLA_ADMIN_EMAIL: joomla@example.com + volumes: + - joomla_data:/var/www/html + networks: + - joomla_network - joomladb: + db: image: mysql:8.0 restart: always environment: - MYSQL_ROOT_PASSWORD: example + MYSQL_DATABASE: joomla_db + MYSQL_USER: joomla + MYSQL_PASSWORD: examplepass + MYSQL_RANDOM_ROOT_PASSWORD: '1' + volumes: + - db_data:/var/lib/mysql + networks: + - joomla_network + +volumes: + joomla_data: + db_data: + +networks: + joomla_network: From 2532cd23f4e2209d83c801fe4a16c05704476734 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jul 2024 10:08:52 -0700 Subject: [PATCH 1340/2686] Run update.sh --- arangodb/README.md | 2 +- clearlinux/README.md | 2 +- haxe/README.md | 16 +++++----- joomla/README.md | 72 +++++++++++++++++++++++++++++++++----------- photon/README.md | 6 ++-- 5 files changed, 67 insertions(+), 31 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 5ed7929430b4..8fced2e0f8f4 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.10`](https://github.com/arangodb/arangodb-docker/blob/94572b3e9c902e5a41c1765ca8c0c341e09eb227/alpine/3.11.10/Dockerfile) +- [`3.11`, `3.11.10.1`](https://github.com/arangodb/arangodb-docker/blob/ce25dfe5cb8cc8658b031136b262bd8d2be7e679/alpine/3.11.10.1/Dockerfile) - [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index f1a6c3d84c1e..b954612fd716 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/68e01605e9214b1884687b702416befa1cfe74cb/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1488533b57265100236f37b95475c355fdac8255/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index 3e8bd3ed716f..83d7dea349e0 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -32,32 +32,32 @@ WARNING: - [`4.3.4-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) - [`4.3.4-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.4-alpine3.19`, `4.3-alpine3.19`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) +- [`4.3.4-alpine3.20`, `4.3-alpine3.20`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.3/alpine3.20/Dockerfile) +- [`4.3.4-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) - [`4.3.4-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.18/Dockerfile) - [`4.3.4-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.17/Dockerfile) -- [`4.3.4-alpine3.16`, `4.3-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.16/Dockerfile) - [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) -- [`4.2.5-alpine3.19`, `4.2-alpine3.19`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) +- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.2/alpine3.20/Dockerfile) +- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) - [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) - [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.17/Dockerfile) -- [`4.2.5-alpine3.16`, `4.2-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.16/Dockerfile) - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) -- [`4.1.5-alpine3.19`, `4.1-alpine3.19`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) +- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.1/alpine3.20/Dockerfile) +- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) - [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) - [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.17/Dockerfile) -- [`4.1.5-alpine3.16`, `4.1-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.16/Dockerfile) - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- [`4.0.5-alpine3.19`, `4.0-alpine3.19`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) +- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.0/alpine3.20/Dockerfile) +- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) - [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) - [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.17/Dockerfile) -- [`4.0.5-alpine3.16`, `4.0-alpine3.16`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.16/Dockerfile) ## Shared Tags diff --git a/joomla/README.md b/joomla/README.md index c13329f2c5be..85e822a6d0d5 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [Joomla!](https://github.com/joomla/docker-joomla) + [Joomla!](https://github.com/joomla-docker/docker-joomla) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -52,7 +52,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/joomla/docker-joomla/issues](https://github.com/joomla/docker-joomla/issues?q=) + [https://github.com/joomla-docker/docker-joomla/issues](https://github.com/joomla-docker/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) @@ -79,30 +79,44 @@ Joomla is a free and open-source content management system (CMS) for publishing # How to use this image ```console -$ docker run --name some-joomla --link some-mysql:mysql -d joomla +$ docker run --name some-joomla --network some-network -d joomla ``` -The following environment variables are also honored for configuring your Joomla instance: +The following environment variables are honored for configuring your Joomla instance: - `-e JOOMLA_DB_HOST=...` (defaults to the IP and port of the linked `mysql` container) - `-e JOOMLA_DB_USER=...` (defaults to "root") - `-e JOOMLA_DB_PASSWORD=...` (defaults to the value of the `MYSQL_ROOT_PASSWORD` environment variable from the linked `mysql` container) +- `-e JOOMLA_DB_PASSWORD_FILE=...` (path to a file containing the database password) - `-e JOOMLA_DB_NAME=...` (defaults to "joomla") +- `-e JOOMLA_DB_TYPE=...` (defaults to "mysqli" options: mysqli, pgsql) If the `JOOMLA_DB_NAME` specified does not already exist on the given MySQL server, it will be created automatically upon startup of the `joomla` container, provided that the `JOOMLA_DB_USER` specified has the necessary permissions to create it. +The following environment variables are also honored for configuring auto deployment (skip the browser setup) for your Joomla instance: + +- `-e JOOMLA_SITE_NAME=...` (name of the Joomla site) +- `-e JOOMLA_ADMIN_USER=...` (full name of the Joomla administrator) +- `-e JOOMLA_ADMIN_USERNAME=...` (username of the Joomla administrator) +- `-e JOOMLA_ADMIN_PASSWORD=...` (password of the Joomla administrator) +- `-e JOOMLA_ADMIN_EMAIL=...` (email address of the Joomla administrator) +- `-e JOOMLA_EXTENSIONS_URLS=...` (semicolon-separated list of URLs to install Joomla extensions from) +- `-e JOOMLA_EXTENSIONS_PATHS=...` (semicolon-separated list of file paths to install Joomla extensions from) +- `-e JOOMLA_SMTP_HOST=...` (SMTP host for outgoing email) +- `-e JOOMLA_SMTP_HOST_PORT=...` (SMTP port for outgoing email) + If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used: ```console -$ docker run --name some-joomla --link some-mysql:mysql -p 8080:80 -d joomla +$ docker run --name some-joomla --network some-network -p 8080:80 -d joomla ``` Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. -If you'd like to use an external database instead of a linked `mysql` container, specify the hostname and port with `JOOMLA_DB_HOST` along with the password in `JOOMLA_DB_PASSWORD` and the username in `JOOMLA_DB_USER` (if it is something other than `root`): +If you'd like to use an external database instead of a MySQL container, specify the hostname and port with `JOOMLA_DB_HOST` along with the password in `JOOMLA_DB_PASSWORD` and the username in `JOOMLA_DB_USER` (if it is something other than `root`): ```console -$ docker run --name some-joomla -e JOOMLA_DB_HOST=10.1.2.3:3306 \ +$ docker run --name some-joomla --network some-network -e JOOMLA_DB_HOST=10.1.2.3:3306 \ -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d joomla ``` @@ -111,28 +125,50 @@ $ docker run --name some-joomla -e JOOMLA_DB_HOST=10.1.2.3:3306 \ Example `docker-compose.yml` for `joomla`: ```yaml -version: '3.1' - services: + joomla: image: joomla restart: always - links: - - joomladb:mysql ports: - 8080:80 environment: - JOOMLA_DB_HOST: joomladb - JOOMLA_DB_PASSWORD: example - - joomladb: + JOOMLA_DB_HOST: db + JOOMLA_DB_USER: joomla + JOOMLA_DB_PASSWORD: examplepass + JOOMLA_DB_NAME: joomla_db + JOOMLA_SITE_NAME: Joomla + JOOMLA_ADMIN_USER: Joomla Hero + JOOMLA_ADMIN_USERNAME: joomla + JOOMLA_ADMIN_PASSWORD: joomla@secured + JOOMLA_ADMIN_EMAIL: joomla@example.com + volumes: + - joomla_data:/var/www/html + networks: + - joomla_network + + db: image: mysql:8.0 restart: always environment: - MYSQL_ROOT_PASSWORD: example + MYSQL_DATABASE: joomla_db + MYSQL_USER: joomla + MYSQL_PASSWORD: examplepass + MYSQL_RANDOM_ROOT_PASSWORD: '1' + volumes: + - db_data:/var/lib/mysql + networks: + - joomla_network + +volumes: + joomla_data: + db_data: + +networks: + joomla_network: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/joomla/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/20d0481fba2d7a3d015932887b2257ec96b01f20/joomla/stack.yml) Run `docker stack deploy -c stack.yml joomla` (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). @@ -140,7 +176,7 @@ Run `docker stack deploy -c stack.yml joomla` (or `docker-compose -f stack.yml u This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size. -If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. Additionally, the [`joomla` Dockerfile](https://github.com/joomla/docker-joomla/blob/966275ada2148e343a68c8c03870f11cc7f5b89c/apache/Dockerfile#L7-L11) has an example of doing this. +If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. Additionally, the [`joomla` Dockerfile](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.1/php8.3/apache/Dockerfile#L51-L64) has an example of doing this. The following Docker Hub features can help with the task of keeping your dependent images up-to-date: diff --git a/photon/README.md b/photon/README.md index a5e0758cb8f0..fd90bcc620ef 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240701`, `latest`](https://github.com/vmware/photon-docker-image/blob/a0cce2c7aa2a381949b5c76514241bd1597b1e47/docker/Dockerfile) -- [`4.0`, `4.0-20240701`](https://github.com/vmware/photon-docker-image/blob/5a2f4f150af688b0ee1f30453321761eb3f9811b/docker/Dockerfile) -- [`3.0`, `3.0-20240701`](https://github.com/vmware/photon-docker-image/blob/06d65d13573935897a69eb8ad586346f528db4da/docker/Dockerfile) +- [`5.0`, `5.0-20240707`, `latest`](https://github.com/vmware/photon-docker-image/blob/d36c2c0d5474eaa4c49119f550bb7d370dd590c8/docker/Dockerfile) +- [`4.0`, `4.0-20240707`](https://github.com/vmware/photon-docker-image/blob/d91326c2fb64831070e02c88d62e32f89bbecda1/docker/Dockerfile) +- [`3.0`, `3.0-20240707`](https://github.com/vmware/photon-docker-image/blob/ca04c70bf78c387e49445ac0588c075b4a921ede/docker/Dockerfile) # Quick reference (cont.) From 2686af49e4cf9f88667f9151141c3ebb9ec7d75d Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Mon, 8 Jul 2024 19:53:06 +0200 Subject: [PATCH 1341/2686] Update examples from "ruby:3.0" to "ruby:3.3" (#2463) * Update examples from "ruby:3.0" to "ruby:3.3" Previous: https://github.com/docker-library/docs/pull/2051 3.0 images are not build/updated anymore * Drop mentions of unused bundler env variables for ruby Dropped in: * https://github.com/docker-library/ruby/pull/209 * https://github.com/docker-library/ruby/pull/306 --- ruby/content.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ruby/content.md b/ruby/content.md index 5fddf48924b4..1d19791995a9 100644 --- a/ruby/content.md +++ b/ruby/content.md @@ -11,7 +11,7 @@ Ruby is a dynamic, reflective, object-oriented, general-purpose, open-source pro ## Create a `Dockerfile` in your Ruby app project ```dockerfile -FROM %%IMAGE%%:3.0 +FROM %%IMAGE%%:3.3 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 @@ -40,7 +40,7 @@ $ docker run -it --name my-running-script my-ruby-app The above example `Dockerfile` expects a `Gemfile.lock` in your app directory. This `docker run` will help you generate one. Run it in the root of your app, next to the `Gemfile`: ```console -$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:3.0 bundle install +$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:3.3 bundle install ``` ## Run a single Ruby script @@ -48,7 +48,7 @@ $ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:3.0 bundle in For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a Ruby script by using the Ruby Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:3.0 ruby your-daemon-or-script.rb +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:3.3 ruby your-daemon-or-script.rb ``` ## Encoding @@ -59,6 +59,6 @@ By default, Ruby inherits the locale of the environment in which it is run. For This image sets several environment variables which change the behavior of Bundler and Gem for running a single application within a container (especially in such a way that the development sources of the application can be bind-mounted inside a container and not have `.bundle` from the host interfere with the proper functionality of the container). -The environment variables we set are canonically listed in the above-linked `Dockerfiles`, but some of them include `GEM_HOME`, `BUNDLE_PATH`, `BUNDLE_BIN`, `BUNDLE_SILENCE_ROOT_WARNING`, and `BUNDLE_APP_CONFIG`. +The environment variables we set are canonically listed in the above-linked `Dockerfiles`, but some of them include `GEM_HOME`, `BUNDLE_SILENCE_ROOT_WARNING`, and `BUNDLE_APP_CONFIG`. If these cause issues for your use case (running multiple Ruby applications in a single container, for example), setting them to the empty string *should* be sufficient for undoing their behavior. From c23bb7f075a9e23cec76288b81feff8bb15f584e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jul 2024 11:08:54 -0700 Subject: [PATCH 1342/2686] Run update.sh --- adminer/README.md | 1 + aerospike/README.md | 1 + almalinux/README.md | 3 + alpine/README.md | 4 + alt/README.md | 2 + amazoncorretto/README.md | 47 ++++++++ amazonlinux/README.md | 2 + arangodb/README.md | 1 + archlinux/README.md | 2 + backdrop/README.md | 1 + bash/README.md | 12 ++ bonita/README.md | 9 +- buildpack-deps/README.md | 23 ++++ busybox/README.md | 7 ++ caddy/README.md | 10 ++ cassandra/README.md | 4 + chronograf/README.md | 7 ++ clojure/README.md | 66 +++++++++++ composer/README.md | 6 + couchbase/README.md | 7 ++ couchdb/README.md | 3 + crate/README.md | 3 + dart/README.md | 1 + debian/README.md | 23 ++++ docker/README.md | 26 +++++ drupal/README.md | 47 ++++++++ eclipse-mosquitto/README.md | 2 + eclipse-temurin/README.md | 140 ++++++++++++++++++++++ eggdrop/README.md | 1 + elasticsearch/README.md | 3 +- elixir/README.md | 45 ++++++++ emqx/README.md | 6 + erlang/README.md | 19 +++ fedora/README.md | 3 + flink/README.md | 7 ++ fluentd/README.md | 1 + friendica/README.md | 11 ++ gazebo/README.md | 1 + gcc/README.md | 3 + geonetwork/README.md | 3 + ghost/README.md | 1 + golang/README.md | 40 +++++++ gradle/README.md | 33 ++++++ groovy/README.md | 6 + haproxy/README.md | 12 ++ haskell/README.md | 11 ++ haxe/README.md | 44 +++++++ hello-world/README.md | 5 + httpd/README.md | 1 + hylang/README.md | 38 ++++++ ibm-semeru-runtimes/README.md | 48 ++++++++ ibmjava/README.md | 2 + influxdb/README.md | 15 +++ irssi/README.md | 1 + jetty/README.md | 212 ++++++++++++++++++++++------------ joomla/README.md | 23 ++++ jruby/README.md | 15 +++ julia/README.md | 28 +++++ kapacitor/README.md | 3 + kibana/README.md | 3 +- kong/README.md | 5 + lightstreamer/README.md | 14 +++ liquibase/README.md | 1 + logstash/README.md | 3 +- mageia/README.md | 1 + mariadb/README.md | 11 ++ matomo/README.md | 2 + maven/README.md | 34 ++++++ mediawiki/README.md | 8 ++ memcached/README.md | 1 + mongo-express/README.md | 3 + mongo/README.md | 53 +++++++++ monica/README.md | 5 + mono/README.md | 3 + mysql/README.md | 3 + nats/README.md | 18 +++ neo4j/README.md | 5 + neurodebian/README.md | 15 +++ nextcloud/README.md | 8 ++ nginx/README.md | 13 +++ node/README.md | 17 +++ notary/README.md | 1 + odoo/README.md | 2 + open-liberty/README.md | 20 ++++ openjdk/README.md | 28 +++++ oraclelinux/README.md | 8 ++ orientdb/README.md | 3 + percona/README.md | 6 + perl/README.md | 31 +++++ photon/README.md | 2 + php-zendserver/README.md | 3 + php/README.md | 41 +++++++ phpmyadmin/README.md | 2 + postfixadmin/README.md | 2 + postgres/README.md | 23 ++++ pypy/README.md | 28 +++++ python/README.md | 58 ++++++++++ rabbitmq/README.md | 7 ++ rakudo-star/README.md | 1 + redis/README.md | 7 ++ redmine/README.md | 5 + registry/README.md | 1 + rocket.chat/README.md | 4 + rockylinux/README.md | 3 + ros/README.md | 15 +++ ruby/README.md | 31 ++++- rust/README.md | 5 + sapmachine/README.md | 47 ++++++++ satosa/README.md | 2 + silverpeas/README.md | 1 + solr/README.md | 5 + sonarqube/README.md | 9 ++ spark/README.md | 19 +++ spiped/README.md | 1 + storm/README.md | 1 + swift/README.md | 55 +++++++++ swipl/README.md | 1 + telegraf/README.md | 5 + tomcat/README.md | 25 ++++ tomee/README.md | 47 ++++++++ traefik/README.md | 11 ++ ubuntu/README.md | 4 + unit/README.md | 14 +++ varnish/README.md | 9 ++ websphere-liberty/README.md | 17 +++ wordpress/README.md | 20 ++++ xwiki/README.md | 11 ++ yourls/README.md | 2 + znc/README.md | 1 + zookeeper/README.md | 3 + 130 files changed, 1892 insertions(+), 82 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 049e52bc7ae6..71f29f9caabc 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.8.1-standalone`, `4-standalone`, `standalone`, `4.8.1`, `4`, `latest`](https://github.com/TimWolla/docker-adminer/blob/c9c54b18f79a66409a3153a94f629ea68f08647c/4/Dockerfile) + - [`4.8.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/c9c54b18f79a66409a3153a94f629ea68f08647c/4/fastcgi/Dockerfile) # Quick reference (cont.) diff --git a/aerospike/README.md b/aerospike/README.md index 1bfa5183a34c..e37b520547f8 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`ee-7.1.0.2`, `ee-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/enterprise/ubuntu22.04/Dockerfile) + - [`ce-7.1.0.2`, `ce-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/almalinux/README.md b/almalinux/README.md index bd6b32874be3..5c0bff414ba9 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8`, `8.10`, `8.10-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/default/amd64/Dockerfile) + - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/minimal/amd64/Dockerfile) + - [`latest`, `9`, `9.4`, `9.4-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/default/amd64/Dockerfile) + - [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/alpine/README.md b/alpine/README.md index 83645925c8f1..058f9553c6c4 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -25,9 +25,13 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20240606`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/75a51b285731679e7c39c2e3c1cae4edcd6851e5/x86_64/Dockerfile) + - [`3.20.1`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/d796f6cbd6ffa3aeb21f6e5a783c20b61dba64dd/x86_64/Dockerfile) + - [`3.19.2`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0ea45484ad78078c51350293201cec8650c2f6bf/x86_64/Dockerfile) + - [`3.18.7`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/fb6cd4d1c0fc2b1b73c34a445d120c02c82752cd/x86_64/Dockerfile) + - [`3.17.8`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/7b631cf259b81eec0f59e8f3cccac479c702d2c1/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/alt/README.md b/alt/README.md index a1f2b97991d2..bc72ff795b79 100644 --- a/alt/README.md +++ b/alt/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/924b51de1708a3c8b0dd76193a414460ff721c35/x86_64/Dockerfile) + - [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/fc69e420b7b8c5b62cd3d8b13562f122ecdcc2d7/x86_64/Dockerfile) + - [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/342757f6f3ca8c82bb6a4169ceef071ff3a8a879/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 2443d3d4988c..1d53efa321fe 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -25,52 +25,99 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8`, `8u412`, `8u412-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u412-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2-generic/Dockerfile) + - [`8-al2023`, `8u412-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u412-al2023-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2023/Dockerfile) + - [`8-al2-native-jre`, `8u412-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/al2/Dockerfile) + - [`8-al2-native-jdk`, `8u412-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2/Dockerfile) + - [`8-alpine3.16`, `8u412-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.16/Dockerfile) + - [`8-alpine3.16-jre`, `8u412-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.16/Dockerfile) + - [`8-alpine3.17`, `8u412-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.17/Dockerfile) + - [`8-alpine3.17-jre`, `8u412-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.17/Dockerfile) + - [`8-alpine3.18`, `8u412-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.18/Dockerfile) + - [`8-alpine3.18-jre`, `8u412-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.18/Dockerfile) + - [`8-alpine3.19`, `8u412-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u412-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.19/Dockerfile) + - [`8-alpine3.19-jre`, `8u412-alpine3.19-jre`, `8-alpine-jre`, `8u412-alpine-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.19/Dockerfile) + - [`11`, `11.0.23`, `11.0.23-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.23-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2-generic/Dockerfile) + - [`11-al2023`, `11.0.23-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2023/Dockerfile) + - [`11-al2023-headless`, `11.0.23-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2023/Dockerfile) + - [`11-al2023-headful`, `11.0.23-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headful/al2023/Dockerfile) + - [`11-al2-native-headless`, `11.0.23-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2/Dockerfile) + - [`11-al2-native-jdk`, `11.0.23-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2/Dockerfile) + - [`11-alpine3.16`, `11.0.23-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.16/Dockerfile) + - [`11-alpine3.17`, `11.0.23-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.17/Dockerfile) + - [`11-alpine3.18`, `11.0.23-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.18/Dockerfile) + - [`11-alpine3.19`, `11.0.23-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.23-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.19/Dockerfile) + - [`17`, `17.0.11`, `17.0.11-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.11-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2-generic/Dockerfile) + - [`17-al2023`, `17.0.11-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2023/Dockerfile) + - [`17-al2023-headless`, `17.0.11-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2023/Dockerfile) + - [`17-al2023-headful`, `17.0.11-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2023/Dockerfile) + - [`17-al2-native-headless`, `17.0.11-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2/Dockerfile) + - [`17-al2-native-headful`, `17.0.11-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2/Dockerfile) + - [`17-al2-native-jdk`, `17.0.11-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2/Dockerfile) + - [`17-alpine3.16`, `17.0.11-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.16/Dockerfile) + - [`17-alpine3.17`, `17.0.11-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.17/Dockerfile) + - [`17-alpine3.18`, `17.0.11-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.18/Dockerfile) + - [`17-alpine3.19`, `17.0.11-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.11-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.19/Dockerfile) + - [`21`, `21.0.3`, `21.0.3-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.3-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2-generic/Dockerfile) + - [`21-al2023`, `21.0.3-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2023/Dockerfile) + - [`21-al2023-headless`, `21.0.3-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headless/al2023/Dockerfile) + - [`21-al2023-headful`, `21.0.3-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headful/al2023/Dockerfile) + - [`21-alpine3.16`, `21.0.3-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.16/Dockerfile) + - [`21-alpine3.17`, `21.0.3-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.17/Dockerfile) + - [`21-alpine3.18`, `21.0.3-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.18/Dockerfile) + - [`21-alpine3.19`, `21.0.3-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.3-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.19/Dockerfile) + - [`22-al2023`, `22.0.1-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/al2023/Dockerfile) + - [`22-al2023-headless`, `22.0.1-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headless/al2023/Dockerfile) + - [`22-al2023-headful`, `22.0.1-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headful/al2023/Dockerfile) + - [`22-alpine3.16`, `22.0.1-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.16/Dockerfile) + - [`22-alpine3.17`, `22.0.1-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.17/Dockerfile) + - [`22-alpine3.18`, `22.0.1-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.18/Dockerfile) + - [`22-alpine3.19`, `22.0.1-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.1-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.19/Dockerfile) # Quick reference (cont.) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 1cc1c7a67fa0..4571a7952d17 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2023`, `latest`, `2023.5.20240701.0`](https://github.com/amazonlinux/container-images/blob/3bbb9c330290a57dce82f86e126abfae5f158796/Dockerfile) + - [`2`, `2.0.20240620.0`](https://github.com/amazonlinux/container-images/blob/3940ec6a9ed3bbb1dd7ccca2fcfcc4a28213588a/Dockerfile) + - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) # Quick reference (cont.) diff --git a/arangodb/README.md b/arangodb/README.md index 8fced2e0f8f4..e4e0231e330a 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.11`, `3.11.10.1`](https://github.com/arangodb/arangodb-docker/blob/ce25dfe5cb8cc8658b031136b262bd8d2be7e679/alpine/3.11.10.1/Dockerfile) + - [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 34fd887c3b7a..82f4c4cd3237 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `base`, `base-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base) + - [`base-devel`, `base-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base-devel) + - [`multilib-devel`, `multilib-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/backdrop/README.md b/backdrop/README.md index db146f49a35b..55b859f8e15a 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.26.1`, `1.26`, `1`, `1.26.1-apache`, `1.26-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/apache/Dockerfile) + - [`1.26.1-fpm`, `1.26-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 9a36679ae9f4..4560f557044e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -25,17 +25,29 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`devel-20240628`, `devel`, `devel-20240628-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/eb00adce19d44480c6216fd92896f2eda78f06e5/devel/Dockerfile) + - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) + - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) + - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) + - [`5.0.18`, `5.0`, `5.0.18-alpine3.20`, `5.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/699819eee5befbf7ac7f906e7a30171287de720b/5.0/Dockerfile) + - [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.20`, `4.4-alpine3.20`, `4-alpine3.20`](https://github.com/tianon/docker-bash/blob/f7d533503f4423a7542fd5479b053a35027025a1/4.4/Dockerfile) + - [`4.3.48`, `4.3`, `4.3.48-alpine3.20`, `4.3-alpine3.20`](https://github.com/tianon/docker-bash/blob/0f38d86a4e6b5431d22f2afb2bd7c181221ad7d7/4.3/Dockerfile) + - [`4.2.53`, `4.2`, `4.2.53-alpine3.20`, `4.2-alpine3.20`](https://github.com/tianon/docker-bash/blob/05f9e93fbf2b995ee28a757b3cbcd0ae8d90445c/4.2/Dockerfile) + - [`4.1.17`, `4.1`, `4.1.17-alpine3.20`, `4.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/9e8e378aa52eebb91a1c74b9b4b8db724d4cef95/4.1/Dockerfile) + - [`4.0.44`, `4.0`, `4.0.44-alpine3.20`, `4.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/94dfac8edcd2f9cab9ad6277d5b621d3b68ed865/4.0/Dockerfile) + - [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.20`, `3.2-alpine3.20`, `3-alpine3.20`](https://github.com/tianon/docker-bash/blob/bd69755669b80037ca0d1e2181a823860af9737d/3.2/Dockerfile) + - [`3.1.23`, `3.1`, `3.1.23-alpine3.20`, `3.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/a83617b0ccad194449d1b3302900d0e3da9208b0/3.1/Dockerfile) + - [`3.0.22`, `3.0`, `3.0.22-alpine3.20`, `3.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/70ab2885f72c548029c8121364a553c35e7a68bb/3.0/Dockerfile) # Quick reference (cont.) diff --git a/bonita/README.md b/bonita/README.md index d5a813552939..d2a866c5e905 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -24,10 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2022.1-u0`, `2022.1`, `7.14.0`, `7.14`](https://github.com/bonitasoft/bonita-distrib/blob/4cdeb1c385b981e7074ce19cc685c08028d7149d/docker/Dockerfile) -- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/607a6a3885df35979e0946611af4f7c858f9c989/docker/Dockerfile) -- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`](https://github.com/bonitasoft/bonita-distrib/blob/814cc8cc0a6e8b02c827cb1dfeabb1bb4569a865/docker/Dockerfile) -- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/a8f0abf47fa8f7b96cb010e7d80b032ae96720ca/docker/Dockerfile) +- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/0fbc47d8fcb6629b943b4c1e00052ca14c3d1e1b/docker/Dockerfile) + +- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`](https://github.com/bonitasoft/bonita-distrib/blob/31dcebbf22ebcce11f8e3a9b9444802136c36c03/docker/Dockerfile) + +- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/397824cf4f302c37f3534908728a2b8321a31565/docker/Dockerfile) # Quick reference (cont.) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 475a209c63d0..74e7a0b2eeb0 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -25,28 +25,51 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`bookworm-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) + - [`bookworm-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/scm/Dockerfile) + - [`bookworm`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/Dockerfile) + - [`bullseye-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) + - [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/scm/Dockerfile) + - [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/Dockerfile) + - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/curl/Dockerfile) + - [`sid-scm`, `unstable-scm`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/scm/Dockerfile) + - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/Dockerfile) + - [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/curl/Dockerfile) + - [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/scm/Dockerfile) + - [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/Dockerfile) + - [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) + - [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/scm/Dockerfile) + - [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/Dockerfile) + - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) + - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/scm/Dockerfile) + - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/Dockerfile) + - [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) + - [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/scm/Dockerfile) + - [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/Dockerfile) + - [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/curl/Dockerfile) + - [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/scm/Dockerfile) + - [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index 38f03d8aaa6d..fc94e32a4e88 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) + - [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/uclibc/amd64/index.json) + - [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/musl/amd64/index.json) + - [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) + - [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) + - [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/uclibc/amd64/index.json) + - [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/musl/amd64/index.json) + - [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index e6a7896c915d..191a8b697d8d 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -29,23 +29,33 @@ WARNING: ## Simple Tags - [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) + - [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) + - [`2.8.4-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) + - [`2.8.4-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) + - [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) + - [`2.8.4-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) ## Shared Tags - `2.8.4`, `2.8`, `2`, `latest`: + - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) + - `2.8.4-builder`, `2.8-builder`, `2-builder`, `builder`: + - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) + - `2.8.4-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index df854f34ab20..54f3e1f3f1ec 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -25,9 +25,13 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) + - [`4.1.5`, `4.1`, `4`, `latest`, `4.1.5-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/7ae558bbbbfa3f07eaaecae0ff84a4537d37c570/4.1/Dockerfile) + - [`4.0.13`, `4.0`, `4.0.13-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b51ed0210fc94d22dce73d8f07d1af1a3416d56a/4.0/Dockerfile) + - [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) + - [`3.0.30`, `3.0`, `3.0.30-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/2324f94cb4e9686859e3f487f725908bfbefc9d2/3.0/Dockerfile) # Quick reference (cont.) diff --git a/chronograf/README.md b/chronograf/README.md index c4a865701534..d2682cbd01d3 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/Dockerfile) + - [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/alpine/Dockerfile) + - [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/Dockerfile) + - [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/alpine/Dockerfile) + - [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/Dockerfile) + - [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/alpine/Dockerfile) + - [`1.10`, `1.10.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/Dockerfile) + - [`1.10-alpine`, `1.10.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index e2d20acbb218..19f2ac837a6c 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -25,71 +25,137 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/latest/Dockerfile) + - [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) + - [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/lein/Dockerfile) + - [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/lein/Dockerfile) + - [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/lein/Dockerfile) + - [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/lein/Dockerfile) + - [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) + - [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) + - [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) + - [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/tools-deps/Dockerfile) + - [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/tools-deps/Dockerfile) + - [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/tools-deps/Dockerfile) + - [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/tools-deps/Dockerfile) + - [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) + - [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) + - [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) + - [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/lein/Dockerfile) + - [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/lein/Dockerfile) + - [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/lein/Dockerfile) + - [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/lein/Dockerfile) + - [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) + - [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) + - [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) + - [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/tools-deps/Dockerfile) + - [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/tools-deps/Dockerfile) + - [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/tools-deps/Dockerfile) + - [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/tools-deps/Dockerfile) + - [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) + - [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) + - [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) + - [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/lein/Dockerfile) + - [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/lein/Dockerfile) + - [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/lein/Dockerfile) + - [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/lein/Dockerfile) + - [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) + - [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) + - [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) + - [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/tools-deps/Dockerfile) + - [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/tools-deps/Dockerfile) + - [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/tools-deps/Dockerfile) + - [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/tools-deps/Dockerfile) + - [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) + - [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) + - [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) + - [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/lein/Dockerfile) + - [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/lein/Dockerfile) + - [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/lein/Dockerfile) + - [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/lein/Dockerfile) + - [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) + - [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) + - [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/tools-deps/Dockerfile) + - [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/tools-deps/Dockerfile) + - [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/tools-deps/Dockerfile) + - [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/tools-deps/Dockerfile) + - [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) + - [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) + - [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/lein/Dockerfile) + - [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/lein/Dockerfile) + - [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/lein/Dockerfile) + - [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/lein/Dockerfile) + - [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) + - [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) + - [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/tools-deps/Dockerfile) + - [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/tools-deps/Dockerfile) + - [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/tools-deps/Dockerfile) + - [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/tools-deps/Dockerfile) + - [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index f24c2de7c3d6..1c37d112754c 100644 --- a/composer/README.md +++ b/composer/README.md @@ -25,11 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.7.7`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/88c873f3c2afcc399ec92eeec62a30e559a8b8ea/2.7/Dockerfile) + - [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) + - [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) + - [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) + - [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) + - [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/e04a63cb8591a14e78974fd8acf4043625d5ba14/2.2/Dockerfile) + - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/9cac6280bc40c7d606f7fd2dfce0f77fefd056a8/1.10/Dockerfile) # Quick reference (cont.) diff --git a/couchbase/README.md b/couchbase/README.md index dda92fb57376..1c008e69cf10 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`7.6.1`, `enterprise-7.6.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) + - [`community-7.6.1`, `community`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) + - [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) + - [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) + - [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.1.6/Dockerfile) + - [`community-7.1.1`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.1.1/Dockerfile) + - [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.0.5/Dockerfile) + - [`community-7.0.2`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.0.2/Dockerfile) # Quick reference (cont.) diff --git a/couchdb/README.md b/couchdb/README.md index 099c8f932f6d..1a7ad5f4b33e 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `3.3.3`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.3.3/Dockerfile) + - [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.2.3/Dockerfile) + - [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.1.2/Dockerfile) + - [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/2.3.1/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 41942c3dc22b..6e80ec19afce 100644 --- a/crate/README.md +++ b/crate/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.7.2`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/aa2d1170ed5040ca10b99dcee4f8b63190e5b3c1/Dockerfile) + - [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) + - [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) + - [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index ab9095d003f6..f701ff2dfc2c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.4.4-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.4`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/stable/bookworm/Dockerfile) + - [`3.5.0-180.3.beta-sdk`, `beta-sdk`, `3.5.0-180.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index 499d05e73228..30f4b33f2c8d 100644 --- a/debian/README.md +++ b/debian/README.md @@ -25,28 +25,51 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`bookworm`, `bookworm-20240701`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/Dockerfile) + - [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/backports/Dockerfile) + - [`bookworm-slim`, `bookworm-20240701-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/slim/Dockerfile) + - [`bullseye`, `bullseye-20240701`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/Dockerfile) + - [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/backports/Dockerfile) + - [`bullseye-slim`, `bullseye-20240701-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/slim/Dockerfile) + - [`experimental`, `experimental-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/experimental/Dockerfile) + - [`oldstable`, `oldstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/Dockerfile) + - [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/backports/Dockerfile) + - [`oldstable-slim`, `oldstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/slim/Dockerfile) + - [`rc-buggy`, `rc-buggy-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/rc-buggy/Dockerfile) + - [`sid`, `sid-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/Dockerfile) + - [`sid-slim`, `sid-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/slim/Dockerfile) + - [`stable`, `stable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/Dockerfile) + - [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/backports/Dockerfile) + - [`stable-slim`, `stable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/slim/Dockerfile) + - [`testing`, `testing-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/Dockerfile) + - [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/backports/Dockerfile) + - [`testing-slim`, `testing-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/slim/Dockerfile) + - [`trixie`, `trixie-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/Dockerfile) + - [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/backports/Dockerfile) + - [`trixie-slim`, `trixie-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/slim/Dockerfile) + - [`unstable`, `unstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/Dockerfile) + - [`unstable-slim`, `unstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index ea62203825c9..ed86c36f391d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -29,38 +29,64 @@ WARNING: ## Simple Tags - [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/27/cli/Dockerfile) + - [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) + - [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) + - [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/26/cli/Dockerfile) + - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) + - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/25/cli/Dockerfile) + - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) + - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/24/cli/Dockerfile) + - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) + - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: + - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) + - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) + - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) + - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 179fe1173488..098f8718bddd 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -25,52 +25,99 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`11.0.0-beta1-php8.3-apache-bookworm`, `11.0-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `11.0.0-beta1-php8.3-apache`, `11.0-rc-php8.3-apache`, `rc-php8.3-apache`, `11.0.0-beta1-php8.3`, `11.0-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bookworm/Dockerfile) + - [`11.0.0-beta1-php8.3-fpm-bookworm`, `11.0-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `11.0.0-beta1-php8.3-fpm`, `11.0-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bookworm/Dockerfile) + - [`11.0.0-beta1-php8.3-apache-bullseye`, `11.0-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bullseye/Dockerfile) + - [`11.0.0-beta1-php8.3-fpm-bullseye`, `11.0-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bullseye/Dockerfile) + - [`11.0.0-beta1-php8.3-fpm-alpine3.20`, `11.0-rc-php8.3-fpm-alpine3.20`, `rc-php8.3-fpm-alpine3.20`, `11.0.0-beta1-php8.3-fpm-alpine`, `11.0-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.20/Dockerfile) + - [`11.0.0-beta1-php8.3-fpm-alpine3.19`, `11.0-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.19/Dockerfile) + - [`11.0.0-beta1-php8.2-apache-bookworm`, `11.0-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `11.0.0-beta1-php8.2-apache`, `11.0-rc-php8.2-apache`, `rc-php8.2-apache`, `11.0.0-beta1-php8.2`, `11.0-rc-php8.2`, `rc-php8.2`, `11.0.0-beta1-apache-bookworm`, `11.0-rc-apache-bookworm`, `rc-apache-bookworm`, `11.0.0-beta1-apache`, `11.0-rc-apache`, `rc-apache`, `11.0.0-beta1`, `11.0-rc`, `rc`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bookworm/Dockerfile) + - [`11.0.0-beta1-php8.2-fpm-bookworm`, `11.0-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `11.0.0-beta1-php8.2-fpm`, `11.0-rc-php8.2-fpm`, `rc-php8.2-fpm`, `11.0.0-beta1-fpm-bookworm`, `11.0-rc-fpm-bookworm`, `rc-fpm-bookworm`, `11.0.0-beta1-fpm`, `11.0-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bookworm/Dockerfile) + - [`11.0.0-beta1-php8.2-apache-bullseye`, `11.0-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `11.0.0-beta1-apache-bullseye`, `11.0-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bullseye/Dockerfile) + - [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) + - [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) + - [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) + - [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) + - [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bookworm/Dockerfile) + - [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bullseye/Dockerfile) + - [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bullseye/Dockerfile) + - [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.20/Dockerfile) + - [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.19/Dockerfile) + - [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `apache`, `10.3.1`, `10.3`, `10`, `latest`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bookworm/Dockerfile) + - [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bookworm/Dockerfile) + - [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bullseye/Dockerfile) + - [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bullseye/Dockerfile) + - [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.20/Dockerfile) + - [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.19/Dockerfile) + - [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) + - [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) + - [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) + - [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bullseye/Dockerfile) + - [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.20/Dockerfile) + - [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.19/Dockerfile) + - [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bookworm/Dockerfile) + - [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bookworm/Dockerfile) + - [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bullseye/Dockerfile) + - [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bullseye/Dockerfile) + - [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.20/Dockerfile) + - [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.19/Dockerfile) + - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) + - [`7.101-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.101-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bookworm/Dockerfile) + - [`7.101-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bullseye/Dockerfile) + - [`7.101-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bullseye/Dockerfile) + - [`7.101-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.101-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.20/Dockerfile) + - [`7.101-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.19/Dockerfile) + - [`7.101-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.101-php8.1-apache`, `7-php8.1-apache`, `7.101-php8.1`, `7-php8.1`, `7.101-apache-bookworm`, `7-apache-bookworm`, `7.101-apache`, `7-apache`, `7.101`, `7`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bookworm/Dockerfile) + - [`7.101-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.101-php8.1-fpm`, `7-php8.1-fpm`, `7.101-fpm-bookworm`, `7-fpm-bookworm`, `7.101-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bookworm/Dockerfile) + - [`7.101-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.101-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bullseye/Dockerfile) + - [`7.101-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.101-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bullseye/Dockerfile) + - [`7.101-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.101-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.101-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.101-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.20/Dockerfile) + - [`7.101-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.101-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 42a8fbed2658..666b393969ba 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.0.18`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0/Dockerfile) + - [`2.0.18-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0-openssl/Dockerfile) + - [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 540c50b1de97..416e5494d84b 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -29,188 +29,328 @@ WARNING: ## Simple Tags - [`8u412-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/alpine/Dockerfile) + - [`8u412-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/focal/Dockerfile) + - [`8u412-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) + - [`8u412-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/centos/Dockerfile) + - [`8u412-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubi/ubi9-minimal/Dockerfile) + - [`8u412-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u412-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u412-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u412-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/alpine/Dockerfile) + - [`8u412-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/focal/Dockerfile) + - [`8u412-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) + - [`8u412-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/centos/Dockerfile) + - [`8u412-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubi/ubi9-minimal/Dockerfile) + - [`8u412-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u412-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u412-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u412-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.23_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/alpine/Dockerfile) + - [`11.0.23_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/focal/Dockerfile) + - [`11.0.23_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) + - [`11.0.23_9-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/centos/Dockerfile) + - [`11.0.23_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubi/ubi9-minimal/Dockerfile) + - [`11.0.23_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.23_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.23_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.23_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/alpine/Dockerfile) + - [`11.0.23_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/focal/Dockerfile) + - [`11.0.23_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) + - [`11.0.23_9-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/centos/Dockerfile) + - [`11.0.23_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubi/ubi9-minimal/Dockerfile) + - [`11.0.23_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.23_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.23_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.23_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.11_9-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/alpine/Dockerfile) + - [`17.0.11_9-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/focal/Dockerfile) + - [`17.0.11_9-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) + - [`17.0.11_9-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/centos/Dockerfile) + - [`17.0.11_9-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubi/ubi9-minimal/Dockerfile) + - [`17.0.11_9-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.11_9-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.11_9-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.11_9-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/alpine/Dockerfile) + - [`17.0.11_9-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/focal/Dockerfile) + - [`17.0.11_9-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) + - [`17.0.11_9-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/centos/Dockerfile) + - [`17.0.11_9-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubi/ubi9-minimal/Dockerfile) + - [`17.0.11_9-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.11_9-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.11_9-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.11_9-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.3_9-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/alpine/Dockerfile) + - [`21.0.3_9-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) + - [`21.0.3_9-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubi/ubi9-minimal/Dockerfile) + - [`21.0.3_9-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.3_9-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.3_9-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.3_9-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/alpine/Dockerfile) + - [`21.0.3_9-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) + - [`21.0.3_9-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubi/ubi9-minimal/Dockerfile) + - [`21.0.3_9-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.3_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.3_9-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.3_9-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) + - [`22.0.1_8-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/alpine/Dockerfile) + - [`22.0.1_8-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) + - [`22.0.1_8-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubi/ubi9-minimal/Dockerfile) + - [`22.0.1_8-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.1_8-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22.0.1_8-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) + - [`22.0.1_8-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/alpine/Dockerfile) + - [`22.0.1_8-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) + - [`22.0.1_8-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubi/ubi9-minimal/Dockerfile) + - [`22.0.1_8-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.1_8-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.1_8-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`22.0.1_8-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags - `8u412-b08-jdk`, `8-jdk`, `8`: + - [`8u412-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) + - `8u412-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) + - `8u412-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u412-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`8u412-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) + - `8u412-b08-jre`, `8-jre`: + - [`8u412-b08-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) + - `8u412-b08-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) + - `8u412-b08-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u412-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`8u412-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) + - `11.0.23_9-jdk`, `11-jdk`, `11`: + - [`11.0.23_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) + - `11.0.23_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) + - `11.0.23_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.23_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.23_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) + - `11.0.23_9-jre`, `11-jre`: + - [`11.0.23_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) + - `11.0.23_9-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) + - `11.0.23_9-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.23_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.23_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) + - `17.0.11_9-jdk`, `17-jdk`, `17`: + - [`17.0.11_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) + - `17.0.11_9-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) + - `17.0.11_9-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.11_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.11_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) + - `17.0.11_9-jre`, `17-jre`: + - [`17.0.11_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) + - `17.0.11_9-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) + - `17.0.11_9-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.11_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.11_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) + - `21.0.3_9-jdk`, `21-jdk`, `21`, `latest`: + - [`21.0.3_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) + - `21.0.3_9-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) + - `21.0.3_9-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21.0.3_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.3_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) + - `21.0.3_9-jre`, `21-jre`: + - [`21.0.3_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) + - `21.0.3_9-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) + - `21.0.3_9-jre-nanoserver`, `21-jre-nanoserver`: + - [`21.0.3_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.3_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) + - `22.0.1_8-jdk`, `22-jdk`, `22`: + - [`22.0.1_8-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) + - `22.0.1_8-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: + - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) + - `22.0.1_8-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: + - [`22.0.1_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`22.0.1_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) + - `22.0.1_8-jre`, `22-jre`: + - [`22.0.1_8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) + - `22.0.1_8-jre-windowsservercore`, `22-jre-windowsservercore`: + - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) + - `22.0.1_8-jre-nanoserver`, `22-jre-nanoserver`: + - [`22.0.1_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`22.0.1_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) diff --git a/eggdrop/README.md b/eggdrop/README.md index b7aff1adf96b..f720ead099ac 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`develop`](https://github.com/eggheads/eggdrop-docker/blob/ffa90b0ffecc389997799f525e32f45f60b4897a/develop/Dockerfile) + - [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/1.9/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 1aed4c3cd900..5bfc072c10a0 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/elasticsearch/Dockerfile) +- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/elasticsearch/Dockerfile) + - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index a0ddac83f4e0..f3b709e4cf74 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -25,50 +25,95 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.17.1`, `1.17`, `latest`, `1.17.1-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/Dockerfile) + - [`1.17.1-slim`, `1.17-slim`, `slim`, `1.17.1-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/slim/Dockerfile) + - [`1.17.1-alpine`, `1.17-alpine`, `alpine`, `1.17.1-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/alpine/Dockerfile) + - [`1.17.1-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25/Dockerfile) + - [`1.17.1-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-alpine/Dockerfile) + - [`1.17.1-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-slim/Dockerfile) + - [`1.17.1-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26/Dockerfile) + - [`1.17.1-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-alpine/Dockerfile) + - [`1.17.1-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-slim/Dockerfile) + - [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) + - [`1.16.3-slim`, `1.16-slim`, `1.16.3-otp-26-slim`, `1.16-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/slim/Dockerfile) + - [`1.16.3-alpine`, `1.16-alpine`, `1.16.3-otp-26-alpine`, `1.16-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/alpine/Dockerfile) + - [`1.16.3-otp-24`, `1.16-otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24/Dockerfile) + - [`1.16.3-otp-24-alpine`, `1.16-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-alpine/Dockerfile) + - [`1.16.3-otp-24-slim`, `1.16-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-24-slim/Dockerfile) + - [`1.16.3-otp-25`, `1.16-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25/Dockerfile) + - [`1.16.3-otp-25-alpine`, `1.16-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-alpine/Dockerfile) + - [`1.16.3-otp-25-slim`, `1.16-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/otp-25-slim/Dockerfile) + - [`1.15.8`, `1.15`, `1.15.8-otp-26`, `1.15-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/Dockerfile) + - [`1.15.8-slim`, `1.15-slim`, `1.15.8-otp-26-slim`, `1.15-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/slim/Dockerfile) + - [`1.15.8-alpine`, `1.15-alpine`, `1.15.8-otp-26-alpine`, `1.15-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/alpine/Dockerfile) + - [`1.15.8-otp-24`, `1.15-otp-24`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24/Dockerfile) + - [`1.15.8-otp-24-alpine`, `1.15-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24-alpine/Dockerfile) + - [`1.15.8-otp-24-slim`, `1.15-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-24-slim/Dockerfile) + - [`1.15.8-otp-25`, `1.15-otp-25`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25/Dockerfile) + - [`1.15.8-otp-25-alpine`, `1.15-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25-alpine/Dockerfile) + - [`1.15.8-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25-slim/Dockerfile) + - [`1.14.5`, `1.14`, `1.14.5-otp-26`, `1.14-otp-26`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) + - [`1.14.5-slim`, `1.14-slim`, `1.14.5-otp-26-slim`, `1.14-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) + - [`1.14.5-alpine`, `1.14-alpine`, `1.14.5-otp-26-alpine`, `1.14-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) + - [`1.14.5-otp-24`, `1.14-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) + - [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) + - [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) + - [`1.14.5-otp-25`, `1.14-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) + - [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) + - [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) + - [`1.13.4`, `1.13`, `1.13.4-otp-24`, `1.13-otp-24`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) + - [`1.13.4-slim`, `1.13-slim`, `1.13.4-otp-24-slim`, `1.13-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) + - [`1.13.4-alpine`, `1.13-alpine`, `1.13.4-otp-24-alpine`, `1.13-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) + - [`1.13.4-otp-23-slim`, `1.13-otp-23-slim`](https://github.com/erlef/docker-elixir/blob/2bc3fd2b7218d6958c766c42b86e259949b56b95/1.13/otp-23-slim/Dockerfile) + - [`1.13.4-otp-25`, `1.13-otp-25`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25/Dockerfile) + - [`1.13.4-otp-25-alpine`, `1.13-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-alpine/Dockerfile) + - [`1.13.4-otp-25-slim`, `1.13-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-slim/Dockerfile) + - [`1.12.3`, `1.12`, `1.12.3-otp-24`, `1.12-otp-24`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/Dockerfile) + - [`1.12.3-slim`, `1.12-slim`, `1.12.3-otp-24-slim`, `1.12-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/slim/Dockerfile) + - [`1.12.3-alpine`, `1.12-alpine`, `1.12.3-otp-24-alpine`, `1.12-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/alpine/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index e50a492945bb..26cd3c453361 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -25,11 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) + - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) + - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) + - [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) + - [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) + - [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) + - [`5.7.1`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/02b0801191ba3fafb9f9c845c69d8045d7c85430/5.7/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 7a3f4b84314a..2bda9001c02a 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -25,24 +25,43 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`27.0.0.0`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/Dockerfile) + - [`27.0.0.0-slim`, `27.0.0-slim`, `27.0-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/slim/Dockerfile) + - [`27.0.0.0-alpine`, `27.0.0-alpine`, `27.0-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/alpine/Dockerfile) + - [`26.2.5.0`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/Dockerfile) + - [`26.2.5.0-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/slim/Dockerfile) + - [`26.2.5.0-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/alpine/Dockerfile) + - [`25.3.2.12`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/Dockerfile) + - [`25.3.2.12-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/slim/Dockerfile) + - [`25.3.2.12-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/alpine/Dockerfile) + - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) + - [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) + - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) + - [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/Dockerfile) + - [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/slim/Dockerfile) + - [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/Dockerfile) + - [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/slim/Dockerfile) + - [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) + - [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) + - [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) + - [`20.3.8.26-slim`, `20.3.8-slim`, `20.3-slim`, `20-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/slim/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index f5d9c3eaedd4..bd1658744df8 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/793480f5cc9e9ab1c530803fa9c573267b453678/x86_64/Dockerfile) + - [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3a007c3e0e2cd2c7e4196e8f534a5de7b0303775/x86_64/Dockerfile) + - [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1c3015854b7ccfd458331f5a7a77886c26d7014/x86_64/Dockerfile) + - [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/333a04d60e14cc6d735679925ed1da6f05bee622/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 8e77732c9b86..b6ac225d48fd 100644 --- a/flink/README.md +++ b/flink/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.19.1-scala_2.12-java8`, `1.19-scala_2.12-java8`, `scala_2.12-java8`, `1.19.1-java8`, `1.19-java8`, `java8`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java8-ubuntu/Dockerfile) + - [`1.19.1-scala_2.12-java17`, `1.19-scala_2.12-java17`, `scala_2.12-java17`, `1.19.1-java17`, `1.19-java17`, `java17`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java17-ubuntu/Dockerfile) + - [`1.19.1-scala_2.12-java11`, `1.19-scala_2.12-java11`, `scala_2.12-java11`, `1.19.1-scala_2.12`, `1.19-scala_2.12`, `scala_2.12`, `1.19.1-java11`, `1.19-java11`, `java11`, `1.19.1`, `1.19`, `latest`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java11-ubuntu/Dockerfile) + - [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java8-ubuntu/Dockerfile) + - [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java17-ubuntu/Dockerfile) + - [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java11-ubuntu/Dockerfile) + - [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java8-ubuntu/Dockerfile) + - [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/fluentd/README.md b/fluentd/README.md index 26dbefcc850c..219b035c4694 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`v1.16.2-1.1`, `v1.16-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/alpine/Dockerfile) + - [`v1.16.2-debian-1.1`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/debian/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 729010ae7a26..71ed2289f05e 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -25,16 +25,27 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2023.12-apache`, `2023.12`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/apache/Dockerfile) + - [`2023.12-fpm`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm/Dockerfile) + - [`2023.12-fpm-alpine`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm-alpine/Dockerfile) + - [`2024.03-apache`, `apache`, `stable-apache`, `2024.03`, `latest`, `stable`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/apache/Dockerfile) + - [`2024.03-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm/Dockerfile) + - [`2024.03-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm-alpine/Dockerfile) + - [`2024.06-dev-apache`, `dev-apache`, `2024.06-dev`, `dev`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/apache/Dockerfile) + - [`2024.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm/Dockerfile) + - [`2024.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm-alpine/Dockerfile) + - [`2024.06-rc-apache`, `rc-apache`, `2024.06-rc`, `rc`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/apache/Dockerfile) + - [`2024.06-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm/Dockerfile) + - [`2024.06-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 148c74ec1a31..7c6bb700652f 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) + - [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index 9bc3e62411bd..867dc2f7c024 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/14/Dockerfile) + - [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/13/Dockerfile) + - [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/4a0eb64954fed9990b723b618fa13f6b8f7762e3/12/Dockerfile) + - [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/11/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 2b3e925cf164..dc5734ca8831 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) + - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) + - [`4.2.10`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/4305f7ddf869d8023a56d2b71a8270f706cec8aa/4.2.10/Dockerfile) + - [`4.4.5`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/9afe0745446f0692445d1c177601b16cc5e2440b/4.4.5/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9ed45e21c1c0..7714af77f1cc 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.87.1`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/debian/Dockerfile) + - [`5.87.1-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 7ebc2777b7c7..92c59e7dd7c0 100644 --- a/golang/README.md +++ b/golang/README.md @@ -29,60 +29,100 @@ WARNING: ## Simple Tags - [`1.23rc1-bookworm`, `1.23-rc-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) + - [`1.23rc1-bullseye`, `1.23-rc-bullseye`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bullseye/Dockerfile) + - [`1.23rc1-alpine3.20`, `1.23-rc-alpine3.20`, `1.23rc1-alpine`, `1.23-rc-alpine`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.20/Dockerfile) + - [`1.23rc1-alpine3.19`, `1.23-rc-alpine3.19`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.19/Dockerfile) + - [`1.23rc1-windowsservercore-ltsc2022`, `1.23-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23rc1-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.23rc1-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23rc1-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) + - [`1.22.5-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) + - [`1.22.5-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bullseye/Dockerfile) + - [`1.22.5-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.5-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.20/Dockerfile) + - [`1.22.5-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.19/Dockerfile) + - [`1.22.5-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.5-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.5-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.5-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.21.12-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) + - [`1.21.12-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bullseye/Dockerfile) + - [`1.21.12-alpine3.20`, `1.21-alpine3.20`, `1.21.12-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.20/Dockerfile) + - [`1.21.12-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.19/Dockerfile) + - [`1.21.12-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.12-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) + - [`1.21.12-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.12-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags - `1.23rc1`, `1.23-rc`: + - [`1.23rc1-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - `1.23rc1-windowsservercore`, `1.23-rc-windowsservercore`: + - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - `1.23rc1-nanoserver`, `1.23-rc-nanoserver`: + - [`1.23rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) + - `1.22.5`, `1.22`, `1`, `latest`: + - [`1.22.5-bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) + - `1.22.5-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) + - `1.22.5-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.22.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) + - `1.21.12`, `1.21`: + - [`1.21.12-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) + - `1.21.12-windowsservercore`, `1.21-windowsservercore`: + - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) + - `1.21.12-nanoserver`, `1.21-nanoserver`: + - [`1.21.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) - [`1.21.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index ef0fd8f89128..1863ae69067d 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -25,38 +25,71 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8/Dockerfile) + - [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8-focal/Dockerfile) + - [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11/Dockerfile) + - [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-focal/Dockerfile) + - [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-alpine/Dockerfile) + - [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17/Dockerfile) + - [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-focal/Dockerfile) + - [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-alpine/Dockerfile) + - [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-graal/Dockerfile) + - [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21/Dockerfile) + - [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-alpine/Dockerfile) + - [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-graal/Dockerfile) + - [`8.8.0-jdk22`, `8.8-jdk22`, `8-jdk22`, `jdk22`, `8.8.0-jdk22-jammy`, `8.8-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22/Dockerfile) + - [`8.8.0-jdk22-alpine`, `8.8-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-alpine/Dockerfile) + - [`8.8.0-jdk22-graal`, `8.8-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-graal/Dockerfile) + - [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current/Dockerfile) + - [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-alpine/Dockerfile) + - [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-graal/Dockerfile) + - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) + - [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) + - [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) + - [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-focal/Dockerfile) + - [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-alpine/Dockerfile) + - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17/Dockerfile) + - [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-focal/Dockerfile) + - [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-alpine/Dockerfile) + - [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8/Dockerfile) + - [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8-focal/Dockerfile) + - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11/Dockerfile) + - [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-focal/Dockerfile) + - [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-alpine/Dockerfile) + - [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17/Dockerfile) + - [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-focal/Dockerfile) + - [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-alpine/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index f0c5115636a3..99bc6cd04545 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -25,11 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.0.22-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.22-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk8/Dockerfile) + - [`4.0.22-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.22-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11/Dockerfile) + - [`4.0.22-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11-alpine/Dockerfile) + - [`4.0.22-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.22-jdk`, `4.0-jdk`, `4.0.22`, `4.0`, `4`, `jdk`, `latest`, `4.0.22-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.22-jdk-jammy`, `4.0-jdk-jammy`, `4.0.22-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17/Dockerfile) + - [`4.0.22-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.22-jdk-alpine`, `4.0-jdk-alpine`, `4.0.22-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17-alpine/Dockerfile) + - [`4.0.22-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.22-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21/Dockerfile) + - [`4.0.22-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index cb6773f7a498..e81cd64183f4 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -25,17 +25,29 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.1-dev1`, `3.1-dev`, `3.1-dev1-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/Dockerfile) + - [`3.1-dev1-alpine`, `3.1-dev-alpine`, `3.1-dev1-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/alpine/Dockerfile) + - [`3.0.2`, `3.0`, `lts`, `latest`, `3.0.2-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/Dockerfile) + - [`3.0.2-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.2-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/alpine/Dockerfile) + - [`2.9.9`, `2.9`, `2.9.9-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/Dockerfile) + - [`2.9.9-alpine`, `2.9-alpine`, `2.9.9-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/alpine/Dockerfile) + - [`2.8.10`, `2.8`, `2.8.10-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/Dockerfile) + - [`2.8.10-alpine`, `2.8-alpine`, `2.8.10-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/alpine/Dockerfile) + - [`2.6.18`, `2.6`, `2.6.18-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/Dockerfile) + - [`2.6.18-alpine`, `2.6-alpine`, `2.6.18-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/alpine/Dockerfile) + - [`2.4.27`, `2.4`, `2.4.27-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/Dockerfile) + - [`2.4.27-alpine`, `2.4-alpine`, `2.4.27-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/alpine/Dockerfile) + - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 2bcf35008d22..3b9f65c0075d 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -25,16 +25,27 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.10.1-buster`, `9.10-buster`, `9-buster`, `buster`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/buster/Dockerfile) + - [`9.10.1-slim-buster`, `9.10-slim-buster`, `9-slim-buster`, `slim-buster`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/slim-buster/Dockerfile) + - [`9.8.2-buster`, `9.8-buster`, `9.8.2`, `9.8`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/buster/Dockerfile) + - [`9.8.2-slim-buster`, `9.8-slim-buster`, `9.8.2-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/slim-buster/Dockerfile) + - [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/buster/Dockerfile) + - [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/slim-buster/Dockerfile) + - [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/buster/Dockerfile) + - [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/slim-buster/Dockerfile) + - [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/buster/Dockerfile) + - [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/slim-buster/Dockerfile) + - [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/buster/Dockerfile) + - [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/slim-buster/Dockerfile) # Quick reference (cont.) diff --git a/haxe/README.md b/haxe/README.md index 83d7dea349e0..c1c39cff9f29 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -29,64 +29,108 @@ WARNING: ## Simple Tags - [`4.3.4-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) + - [`4.3.4-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) + - [`4.3.4-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.4-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) + - [`4.3.4-alpine3.20`, `4.3-alpine3.20`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.3/alpine3.20/Dockerfile) + - [`4.3.4-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) + - [`4.3.4-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.18/Dockerfile) + - [`4.3.4-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.17/Dockerfile) + - [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) + - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) + - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) + - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) + - [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.2/alpine3.20/Dockerfile) + - [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) + - [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) + - [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.17/Dockerfile) + - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) + - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) + - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) + - [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.1/alpine3.20/Dockerfile) + - [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) + - [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) + - [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.17/Dockerfile) + - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) + - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) + - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) + - [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.0/alpine3.20/Dockerfile) + - [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) + - [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) + - [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.17/Dockerfile) ## Shared Tags - `4.3.4`, `4.3`, `latest`: + - [`4.3.4-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) + - `4.3.4-windowsservercore`, `4.3-windowsservercore`: + - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) + - `4.2.5`, `4.2`: + - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) + - `4.2.5-windowsservercore`, `4.2-windowsservercore`: + - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) + - `4.1.5`, `4.1`: + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) + - `4.1.5-windowsservercore`, `4.1-windowsservercore`: + - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) + - `4.0.5`, `4.0`: + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) + - `4.0.5-windowsservercore`, `4.0-windowsservercore`: + - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) diff --git a/hello-world/README.md b/hello-world/README.md index 83f9abe89477..2a43e84868e9 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -29,16 +29,21 @@ WARNING: ## Simple Tags - [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) + - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) + - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) ## Shared Tags - `latest`: + - [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) + - `nanoserver`: + - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index 98d795847f67..9918a282c1a5 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.4.61`, `2.4`, `2`, `latest`, `2.4.61-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/Dockerfile) + - [`2.4.61-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.61-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 14d16ace0af4..7355c8a9225d 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -29,47 +29,85 @@ WARNING: ## Simple Tags - [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bullseye) + - [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) + - [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) + - [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bullseye) + - [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) + - [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) + - [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bullseye) + - [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) + - [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) + - [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bullseye) + - [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) + - [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) + - [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bullseye) + - [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) + - [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) + - [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + - [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) + - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags - `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - `0.29.0-pypy3.9`, `0.29-pypy3.9`, `0-pypy3.9`, `pypy3.9`: + - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index ac1f2ade967f..1ce1c16ecf7f 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -29,57 +29,105 @@ WARNING: ## Simple Tags - [`open-8u412-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-8u412-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u412-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/centos/Dockerfile.open.releases.full) + - [`open-8u412-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-8u412-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u412-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/centos/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/centos/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/centos/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/centos/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/centos/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/centos/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/centos/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jdk-centos7`, `open-22-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/centos/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/focal/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jre-centos7`, `open-22-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/centos/Dockerfile.open.releases.full) ## Shared Tags - `open-8u412-b08-jdk`, `open-8-jdk`: + - [`open-8u412-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-8u412-b08-jre`, `open-8-jre`: + - [`open-8u412-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-11.0.23_9-jdk`, `open-11-jdk`: + - [`open-11.0.23_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-11.0.23_9-jre`, `open-11-jre`: + - [`open-11.0.23_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-17.0.11_9-jdk`, `open-17-jdk`: + - [`open-17.0.11_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-17.0.11_9-jre`, `open-17-jre`: + - [`open-17.0.11_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-21.0.3_9-jdk`, `open-21-jdk`: + - [`open-21.0.3_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-21.0.3_9-jre`, `open-21-jre`: + - [`open-21.0.3_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-22.0.1_8-jdk`, `open-22-jdk`: + - [`open-22.0.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - `open-22.0.1_8-jre`, `open-22-jre`: + - [`open-22.0.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 0dd38a8e4b77..97691cbed543 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/jre/ubuntu/Dockerfile) + - [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sfj/ubuntu/Dockerfile) + - [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index e9356381e75a..0c6c56f298f4 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -25,20 +25,35 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/Dockerfile) + - [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/alpine/Dockerfile) + - [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/Dockerfile) + - [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/alpine/Dockerfile) + - [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/Dockerfile) + - [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/alpine/Dockerfile) + - [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/Dockerfile) + - [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/alpine/Dockerfile) + - [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/Dockerfile) + - [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/alpine/Dockerfile) + - [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/Dockerfile) + - [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/alpine/Dockerfile) + - [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/Dockerfile) + - [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/alpine/Dockerfile) + - [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/Dockerfile) + - [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 8ab17174e27a..42a8c530fbe5 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) + - [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.20`, `1.4-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/jessfraz/irssi/blob/ce043e84f00a74532313e8a6203bc8b96194c28a/alpine/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index 0c8ec278f1fa..368c233503c8 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,77 +24,147 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.54-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.54-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.54-jre8`, `9.4-jre8`, `9-jre8`, `9.4.54-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.54-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.54-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.54-jre21`, `9.4-jre21`, `9-jre21`, `9.4.54-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.54-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.54-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.54-jre17`, `9.4-jre17`, `9-jre17`, `9.4.54-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.54-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.54-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.54-jre11`, `9.4-jre11`, `9-jre11`, `9.4.54-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.54-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.54-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.54-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.54-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.54`, `9.4`, `9`, `9.4.54-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.54-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.54-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.54-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.54-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.54-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.54-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.54-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.54-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.54-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.54-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.9-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.9-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.9-jre21`, `12.0-jre21`, `12-jre21`, `12.0.9-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.9-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.9-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.9-jre17`, `12.0-jre17`, `12-jre17`, `12.0.9-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.9-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.9-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.9`, `12.0`, `12`, `12.0.9-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.9-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.9-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.9-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.9-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.9-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.9-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.20-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.20-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.20-jre21`, `11.0-jre21`, `11-jre21`, `11.0.20-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.20-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.20-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.20-jre17`, `11.0-jre17`, `11-jre17`, `11.0.20-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.20-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.20-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.20-jre11`, `11.0-jre11`, `11-jre11`, `11.0.20-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.20-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.20-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.20`, `11.0`, `11`, `11.0.20-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.20-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.20-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.20-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.20-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.20-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.20-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.20-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.20-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.20-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.20-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.20-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.20-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.20-jre21`, `10.0-jre21`, `10-jre21`, `10.0.20-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.20-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.20-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.20-jre17`, `10.0-jre17`, `10-jre17`, `10.0.20-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.20-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.20-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.20-jre11`, `10.0-jre11`, `10-jre11`, `10.0.20-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.20-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.20-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.20`, `10.0`, `10`, `10.0.20-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.20-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.20-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.20-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.20-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.20-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.20-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.20-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.20-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.20-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.20-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.54-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.54-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.54-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.54-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.54-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.54-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.54-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.54-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7604c3108dce61c83d8ad437cb60e6ce18807e00/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.54-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.9-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.9-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.9-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.9-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.9-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/4f5deba4673f90744a34137c0443798fb06783c6/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.20-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.20-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.20-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.20-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.20-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.20-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.20-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.20-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.20-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.20-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.20-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.20-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.20-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b1fb72be33eebf2721aac8e4e04afc3fcd211da/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.20-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/a97362b6118b4ba29c18eed3f79a8fc813076ed4/amazoncorretto/10.0/jdk11/Dockerfile) +- [`9.4.55-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.55-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre8-alpine/Dockerfile) + +- [`9.4.55-jre8`, `9.4-jre8`, `9-jre8`, `9.4.55-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre8/Dockerfile) + +- [`9.4.55-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.55-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre21-alpine/Dockerfile) + +- [`9.4.55-jre21`, `9.4-jre21`, `9-jre21`, `9.4.55-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre21/Dockerfile) + +- [`9.4.55-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.55-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre17-alpine/Dockerfile) + +- [`9.4.55-jre17`, `9.4-jre17`, `9-jre17`, `9.4.55-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre17/Dockerfile) + +- [`9.4.55-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.55-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre11-alpine/Dockerfile) + +- [`9.4.55-jre11`, `9.4-jre11`, `9-jre11`, `9.4.55-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre11/Dockerfile) + +- [`9.4.55-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.55-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk8/Dockerfile) + +- [`9.4.55-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.55-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) + +- [`9.4.55`, `9.4`, `9`, `9.4.55-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.55-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.55-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk21/Dockerfile) + +- [`9.4.55-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.55-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) + +- [`9.4.55-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.55-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk17/Dockerfile) + +- [`9.4.55-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.55-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) + +- [`9.4.55-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.55-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk11/Dockerfile) + +- [`12.0.11-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.11-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre21-alpine/Dockerfile) + +- [`12.0.11-jre21`, `12.0-jre21`, `12-jre21`, `12.0.11-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre21/Dockerfile) + +- [`12.0.11-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.11-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre17-alpine/Dockerfile) + +- [`12.0.11-jre17`, `12.0-jre17`, `12-jre17`, `12.0.11-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre17/Dockerfile) + +- [`12.0.11-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.11-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) + +- [`12.0.11`, `12.0`, `12`, `12.0.11-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.11-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.11-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk21/Dockerfile) + +- [`12.0.11-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.11-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) + +- [`12.0.11-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.11-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk17/Dockerfile) + +- [`11.0.22-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.22-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21-alpine/Dockerfile) + +- [`11.0.22-jre21`, `11.0-jre21`, `11-jre21`, `11.0.22-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21/Dockerfile) + +- [`11.0.22-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.22-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre17-alpine/Dockerfile) + +- [`11.0.22-jre17`, `11.0-jre17`, `11-jre17`, `11.0.22-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre17/Dockerfile) + +- [`11.0.22-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.22-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre11-alpine/Dockerfile) + +- [`11.0.22-jre11`, `11.0-jre11`, `11-jre11`, `11.0.22-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre11/Dockerfile) + +- [`11.0.22-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.22-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) + +- [`11.0.22`, `11.0`, `11`, `11.0.22-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.22-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.22-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk21/Dockerfile) + +- [`11.0.22-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.22-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) + +- [`11.0.22-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.22-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk17/Dockerfile) + +- [`11.0.22-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.22-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) + +- [`11.0.22-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.22-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk11/Dockerfile) + +- [`10.0.22-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.22-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21-alpine/Dockerfile) + +- [`10.0.22-jre21`, `10.0-jre21`, `10-jre21`, `10.0.22-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21/Dockerfile) + +- [`10.0.22-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.22-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre17-alpine/Dockerfile) + +- [`10.0.22-jre17`, `10.0-jre17`, `10-jre17`, `10.0.22-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre17/Dockerfile) + +- [`10.0.22-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.22-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre11-alpine/Dockerfile) + +- [`10.0.22-jre11`, `10.0-jre11`, `10-jre11`, `10.0.22-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre11/Dockerfile) + +- [`10.0.22-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.22-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) + +- [`10.0.22`, `10.0`, `10`, `10.0.22-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.22-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.22-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk21/Dockerfile) + +- [`10.0.22-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.22-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) + +- [`10.0.22-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.22-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk17/Dockerfile) + +- [`10.0.22-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.22-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) + +- [`10.0.22-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.22-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk11/Dockerfile) + +- [`9.4.55-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8-alpine/Dockerfile) + +- [`9.4.55-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8/Dockerfile) + +- [`9.4.55-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk21-alpine/Dockerfile) + +- [`9.4.55-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.55-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk21/Dockerfile) + +- [`9.4.55-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk17-alpine/Dockerfile) + +- [`9.4.55-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk17/Dockerfile) + +- [`9.4.55-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk11-alpine/Dockerfile) + +- [`9.4.55-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk11/Dockerfile) + +- [`12.0.11-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk21-alpine/Dockerfile) + +- [`12.0.11-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.11-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk21/Dockerfile) + +- [`12.0.11-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk17-alpine/Dockerfile) + +- [`12.0.11-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk17/Dockerfile) + +- [`11.0.22-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk21-alpine/Dockerfile) + +- [`11.0.22-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.22-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk21/Dockerfile) + +- [`11.0.22-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk17-alpine/Dockerfile) + +- [`11.0.22-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk17/Dockerfile) + +- [`11.0.22-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk11-alpine/Dockerfile) + +- [`11.0.22-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk11/Dockerfile) + +- [`10.0.22-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk21-alpine/Dockerfile) + +- [`10.0.22-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.22-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk21/Dockerfile) + +- [`10.0.22-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk17-alpine/Dockerfile) + +- [`10.0.22-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk17/Dockerfile) + +- [`10.0.22-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk11-alpine/Dockerfile) + +- [`10.0.22-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 85e822a6d0d5..a9d30e426ae1 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -25,28 +25,51 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.2.0-alpha2-php8.1-apache`, `5.2-php8.1-apache`, `5.2.alpha-php8.1-apache`, `5.2.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/apache/Dockerfile) + - [`5.2.0-alpha2-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.alpha-php8.1-fpm-alpine`, `5.2.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm-alpine/Dockerfile) + - [`5.2.0-alpha2-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.alpha-php8.1-fpm`, `5.2.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm/Dockerfile) + - [`5.2.0-alpha2`, `5.2`, `5.2.alpha`, `5.2.0-alpha`, `5.2.0-alpha2-apache`, `5.2-apache`, `5.2.alpha-apache`, `5.2.0-alpha-apache`, `5.2.0-alpha2-php8.2`, `5.2-php8.2`, `5.2.alpha-php8.2`, `5.2.0-alpha-php8.2`, `5.2.0-alpha2-php8.2-apache`, `5.2-php8.2-apache`, `5.2.alpha-php8.2-apache`, `5.2.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/apache/Dockerfile) + - [`5.2.0-alpha2-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.alpha-php8.2-fpm-alpine`, `5.2.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm-alpine/Dockerfile) + - [`5.2.0-alpha2-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.alpha-php8.2-fpm`, `5.2.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm/Dockerfile) + - [`5.2.0-alpha2-php8.3-apache`, `5.2-php8.3-apache`, `5.2.alpha-php8.3-apache`, `5.2.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/apache/Dockerfile) + - [`5.2.0-alpha2-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.alpha-php8.3-fpm-alpine`, `5.2.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm-alpine/Dockerfile) + - [`5.2.0-alpha2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm/Dockerfile) + - [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/apache/Dockerfile) + - [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm-alpine/Dockerfile) + - [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm/Dockerfile) + - [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/apache/Dockerfile) + - [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm-alpine/Dockerfile) + - [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm/Dockerfile) + - [`5.1.1-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/apache/Dockerfile) + - [`5.1.1-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm-alpine/Dockerfile) + - [`5.1.1-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm/Dockerfile) + - [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/apache/Dockerfile) + - [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm-alpine/Dockerfile) + - [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm/Dockerfile) + - [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/apache/Dockerfile) + - [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm-alpine/Dockerfile) + - [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index 224a1a1d2f27..3b16761f40ab 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -25,20 +25,35 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `9`, `9.4`, `9.4.8`, `9.4-jre`, `9.4-jre8`, `9.4.8-jre`, `9.4.8-jre8`, `9.4.8.0`, `9.4.8.0-jre`, `9.4.8.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre8/Dockerfile) + - [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.8-jdk`, `9.4.8-jdk8`, `9.4.8.0-jdk`, `9.4.8.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk8/Dockerfile) + - [`9.4-jre11`, `9.4.8-jre11`, `9.4.8.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre11/Dockerfile) + - [`9.4-jdk11`, `9.4.8-jdk11`, `9.4.8.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk11/Dockerfile) + - [`9.4-jdk17`, `9.4.8-jdk17`, `9.4.8.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk17/Dockerfile) + - [`9.4-jre17`, `9.4.8-jre17`, `9.4.8.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre17/Dockerfile) + - [`9.4-jdk21`, `9.4.8-jdk21`, `9.4.8.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk21/Dockerfile) + - [`9.4-jre21`, `9.4.8-jre21`, `9.4.8.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre21/Dockerfile) + - [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre8/Dockerfile) + - [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk8/Dockerfile) + - [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre11/Dockerfile) + - [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk11/Dockerfile) + - [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk17/Dockerfile) + - [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre17/Dockerfile) + - [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk21/Dockerfile) + - [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 4c5003a13cec..d0f59c85888c 100644 --- a/julia/README.md +++ b/julia/README.md @@ -29,45 +29,73 @@ WARNING: ## Simple Tags - [`1.11.0-rc1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-rc1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bullseye/Dockerfile) + - [`1.11.0-rc1-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-rc1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.20/Dockerfile) + - [`1.11.0-rc1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.19/Dockerfile) + - [`1.11.0-rc1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) + - [`1.10.4-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bullseye/Dockerfile) + - [`1.10.4-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.4-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.20/Dockerfile) + - [`1.10.4-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.19/Dockerfile) + - [`1.10.4-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.4-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) + - [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bullseye/Dockerfile) + - [`1.6.7-alpine3.20`, `1.6-alpine3.20`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.20/Dockerfile) + - [`1.6.7-alpine3.19`, `1.6-alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.19/Dockerfile) + - [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `1.11.0-rc1`, `1.11-rc`, `rc`: + - [`1.11.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - `1.11.0-rc1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: + - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - `1.10.4`, `1.10`, `1`, `latest`: + - [`1.10.4-bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) + - `1.10.4-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) + - `1.6.7`, `1.6`: + - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) + - `1.6.7-windowsservercore`, `1.6-windowsservercore`: + - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) diff --git a/kapacitor/README.md b/kapacitor/README.md index d8bd9345ac66..c32b0321f77e 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/Dockerfile) + - [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/alpine/Dockerfile) + - [`1.7`, `1.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/Dockerfile) + - [`1.7-alpine`, `1.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 0dd017dc3a74..8728c88417c9 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/kibana/Dockerfile) +- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/kibana/Dockerfile) + - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/kibana/Dockerfile) # Quick reference (cont.) diff --git a/kong/README.md b/kong/README.md index c3eb1b72eb95..d505fda71d97 100644 --- a/kong/README.md +++ b/kong/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) + - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) + - [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) + - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) + - [`2.8.5-alpine`, `2.8-alpine`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/alpine/Dockerfile) + - [`2.8.5-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 419aadbce83e..9105c484b0ae 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -25,19 +25,33 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`6.0.3`, `6.0`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/6.0/Dockerfile) + - [`6.1.0`, `6.1`, `6`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/6.1/Dockerfile) + - [`7.0.3-jdk8-temurin`, `7.0-jdk8-temurin`, `7.0.3-jdk8`, `7.0-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.0/jdk8/Dockerfile) + - [`7.0.3-jdk11-temurin`, `7.0-jdk11-temurin`, `7.0.3-jdk11`, `7.0-jdk11`, `7.0.3`, `7.0`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.0/jdk11/Dockerfile) + - [`7.1.3-jdk8-temurin`, `7.1-jdk8-temurin`, `7.1.3-jdk8`, `7.1-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.1/jdk8/Dockerfile) + - [`7.1.3-jdk11-temurin`, `7.1-jdk11-temurin`, `7.1.3-jdk11`, `7.1-jdk11`, `7.1.3`, `7.1`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.1/jdk11/Dockerfile) + - [`7.2.2-jdk8-temurin`, `7.2-jdk8-temurin`, `7.2.2-jdk8`, `7.2-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk8/Dockerfile) + - [`7.2.2-jdk11-temurin`, `7.2-jdk11-temurin`, `7.2.2-jdk11`, `7.2-jdk11`, `7.2.2`, `7.2`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk11/Dockerfile) + - [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk8/Dockerfile) + - [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk11/Dockerfile) + - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) + - [`7.4.2-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.2-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk8/Dockerfile) + - [`7.4.2-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.2-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk11/Dockerfile) + - [`7.4.2-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.2-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk17/Dockerfile) + - [`7.4.2-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.2-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.2`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk21/Dockerfile) # Quick reference (cont.) diff --git a/liquibase/README.md b/liquibase/README.md index b677c2062966..dd1e9071788f 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.28`, `4.28.0`, `4.28.0.1`, `latest`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile) + - [`4.28-alpine`, `4.28.0-alpine`, `4.28.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile.alpine) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 9432f96c87a3..56298e6f8a7b 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1`](https://github.com/elastic/dockerfiles/blob/69af7042cfc0b32c0d9de82110f15ff8dd74ded8/logstash/Dockerfile) +- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/logstash/Dockerfile) + - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/logstash/Dockerfile) # Quick reference (cont.) diff --git a/mageia/README.md b/mageia/README.md index 37c74a4a09bc..e0233e538582 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/9/x86_64/Dockerfile) + - [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 697250426236..cbdae3346fa2 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -27,16 +27,27 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links - [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5-ubi/Dockerfile) + - [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5/Dockerfile) + - [`11.4.2-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.2-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4-ubi/Dockerfile) + - [`11.4.2-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.2`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4/Dockerfile) + - [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.2/Dockerfile) + - [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.1/Dockerfile) + - [`10.11.8-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.8-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11-ubi/Dockerfile) + - [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `10.11.8`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11/Dockerfile) + - [`10.6.18-ubi9`, `10.6-ubi9`, `10.6.18-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6-ubi/Dockerfile) + - [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6/Dockerfile) + - [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.5/Dockerfile) + - [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.4/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index eddda1c26db6..f6ae05cca877 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.1.0-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.0`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/apache/Dockerfile) + - [`5.1.0-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm/Dockerfile) + - [`5.1.0-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 69734e45429b..5cc4aa6101a8 100644 --- a/maven/README.md +++ b/maven/README.md @@ -25,39 +25,73 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.9.8-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11/Dockerfile) + - [`3.9.8-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-alpine/Dockerfile) + - [`3.9.8-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-focal/Dockerfile) + - [`3.9.8-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17/Dockerfile) + - [`3.9.8-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-alpine/Dockerfile) + - [`3.9.8-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-focal/Dockerfile) + - [`3.9.8-eclipse-temurin-21`, `3.9.8`, `3.9.8-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21/Dockerfile) + - [`3.9.8-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-alpine/Dockerfile) + - [`3.9.8-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-jammy/Dockerfile) + - [`3.9.8-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22/Dockerfile) + - [`3.9.8-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-alpine/Dockerfile) + - [`3.9.8-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-jammy/Dockerfile) + - [`3.9.8-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8/Dockerfile) + - [`3.9.8-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-alpine/Dockerfile) + - [`3.9.8-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-focal/Dockerfile) + - [`3.9.8-ibmjava-8`, `3.9.8-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibmjava-8/Dockerfile) + - [`3.9.8-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-11-focal/Dockerfile) + - [`3.9.8-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-17-focal/Dockerfile) + - [`3.9.8-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-21-jammy/Dockerfile) + - [`3.9.8-amazoncorretto-11`, `3.9.8-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11/Dockerfile) + - [`3.9.8-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-al2023/Dockerfile) + - [`3.9.8-amazoncorretto-11-debian`, `3.9.8-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-debian/Dockerfile) + - [`3.9.8-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17/Dockerfile) + - [`3.9.8-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-al2023/Dockerfile) + - [`3.9.8-amazoncorretto-17-debian`, `3.9.8-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-debian/Dockerfile) + - [`3.9.8-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21/Dockerfile) + - [`3.9.8-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-al2023/Dockerfile) + - [`3.9.8-amazoncorretto-21-debian`, `3.9.8-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-debian/Dockerfile) + - [`3.9.8-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8/Dockerfile) + - [`3.9.8-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-al2023/Dockerfile) + - [`3.9.8-amazoncorretto-8-debian`, `3.9.8-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-debian/Dockerfile) + - [`3.9.8-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-11/Dockerfile) + - [`3.9.8-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-17/Dockerfile) + - [`3.9.8-sapmachine-21`, `3.9.8-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-21/Dockerfile) + - [`3.9.8-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-22/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 46c99c2e5470..e4f8294ca089 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -25,13 +25,21 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.42.1`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/apache/Dockerfile) + - [`1.42.1-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm/Dockerfile) + - [`1.42.1-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm-alpine/Dockerfile) + - [`1.41.2`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/apache/Dockerfile) + - [`1.41.2-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm/Dockerfile) + - [`1.41.2-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm-alpine/Dockerfile) + - [`1.39.8`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/apache/Dockerfile) + - [`1.39.8-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm/Dockerfile) + - [`1.39.8-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 6df43a1f7897..744a0f68ca30 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.29`, `1.6`, `1`, `latest`, `1.6.29-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/debian/Dockerfile) + - [`1.6.29-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.29-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo-express/README.md b/mongo-express/README.md index 10cfe2e290c0..f3d10ae16d5d 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.19/Dockerfile) + - [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.18/Dockerfile) + - [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.19/Dockerfile) + - [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.18/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 7f4b3d03249a..a2f64ea532c1 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -29,81 +29,134 @@ WARNING: ## Simple Tags - [`8.0.0-rc11-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) + - [`8.0.0-rc11-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc11-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc11-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc11-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) + - [`7.0.12-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.12-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.12-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.12-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.16-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) + - [`6.0.16-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.16-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.16-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.28-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) + - [`5.0.28-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.28-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`5.0.28-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.28-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) + - [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) + - [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.27-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.27-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags - `8.0.0-rc11`, `8.0-rc`: + - [`8.0.0-rc11-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - `8.0.0-rc11-windowsservercore`, `8.0-rc-windowsservercore`: + - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - `8.0.0-rc11-nanoserver`, `8.0-rc-nanoserver`: + - [`8.0.0-rc11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.12`, `7.0`, `7`, `latest`: + - [`7.0.12-jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) + - `7.0.12-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: + - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) + - `7.0.12-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: + - [`7.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) + - `6.0.16`, `6.0`, `6`: + - [`6.0.16-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) + - `6.0.16-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) + - `6.0.16-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: + - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) + - `5.0.28-rc0`, `5.0-rc`: + - [`5.0.28-rc0-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - `5.0.28-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - `5.0.28-rc0-nanoserver`, `5.0-rc-nanoserver`: + - [`5.0.28-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.28-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) + - `5.0.27`, `5.0`, `5`: + - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) + - `5.0.27-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) + - `5.0.27-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: + - [`5.0.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - [`5.0.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) diff --git a/monica/README.md b/monica/README.md index 04529d258973..92d0dcc7842b 100644 --- a/monica/README.md +++ b/monica/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/apache/Dockerfile) + - [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm/Dockerfile) + - [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm-alpine/Dockerfile) + - [`5.0.0-beta.4-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/apache/Dockerfile) + - [`5.0.0-beta.4-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm/Dockerfile) + - [`5.0.0-beta.4-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mono/README.md b/mono/README.md index 87f1c260b53d..ad5ba76fa561 100644 --- a/mono/README.md +++ b/mono/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`6.12.0.182`, `latest`, `6.12.0`, `6.12`, `6`](https://github.com/mono/docker/blob/9293c0cddf31a3dc829fccc6f8e1eb507a91cd34/6.12.0.182/Dockerfile) + - [`6.12.0.182-slim`, `slim`, `6.12.0-slim`, `6.12-slim`, `6-slim`](https://github.com/mono/docker/blob/9293c0cddf31a3dc829fccc6f8e1eb507a91cd34/6.12.0.182/slim/Dockerfile) + - [`6.10.0.104`, `6.10.0`, `6.10`](https://github.com/mono/docker/blob/0403aaf506b8f6859332a5035f660a7a228d3a97/6.10.0.104/Dockerfile) + - [`6.10.0.104-slim`, `6.10.0-slim`, `6.10-slim`](https://github.com/mono/docker/blob/0403aaf506b8f6859332a5035f660a7a228d3a97/6.10.0.104/slim/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 401002d0417e..b70645ff1694 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.0.0`, `9.0`, `9`, `innovation`, `latest`, `9.0.0-oraclelinux9`, `9.0-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.0.0-oracle`, `9.0-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/3d11822710789e82f64f08c578162a5b804d2f2f/innovation/Dockerfile.oracle) + - [`8.4.1`, `8.4`, `8`, `lts`, `8.4.1-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.1-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/efa7479ffbb00139f6f1f0b0fe70985f20ee0456/8.4/Dockerfile.oracle) + - [`8.0.38`, `8.0`, `8.0.38-oraclelinux9`, `8.0-oraclelinux9`, `8.0.38-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.oracle) + - [`8.0.38-bookworm`, `8.0-bookworm`, `8.0.38-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 64be3de6298e..5b7905cde947 100644 --- a/nats/README.md +++ b/nats/README.md @@ -29,28 +29,46 @@ WARNING: ## Simple Tags - [`2.10.17-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.17-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/alpine3.20/Dockerfile) + - [`2.10.17-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.17-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) + - [`2.10.17-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.17-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/alpine3.18/Dockerfile) + - [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) + - [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags - `2.10.17`, `2.10`, `2`, `latest`: + - [`2.10.17-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) + - `2.10.17-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + - [`2.10.17-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) + - `2.10.17-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: + - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) + - `2.9.25`, `2.9`: + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) + - `2.9.25-windowsservercore`, `2.9-windowsservercore`: + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) + - `2.9.25-nanoserver`, `2.9-nanoserver`: + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 9aa8b3bb0605..46ea4ab77ca0 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.21.0-community-bullseye`, `5.21-community-bullseye`, `5-community-bullseye`, `5.21.0-community`, `5.21-community`, `5-community`, `5.21.0-bullseye`, `5.21-bullseye`, `5-bullseye`, `5.21.0`, `5.21`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/community/Dockerfile) + - [`5.21.0-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.0-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/enterprise/Dockerfile) + - [`5.21.0-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.0-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/community/Dockerfile) + - [`5.21.0-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/enterprise/Dockerfile) + - [`4.4.35`, `4.4.35-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/community/Dockerfile) + - [`4.4.35-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/neurodebian/README.md b/neurodebian/README.md index eeb403371b54..27cc0394718c 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -25,20 +25,35 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal/Dockerfile) + - [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal-non-free/Dockerfile) + - [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy/Dockerfile) + - [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy-non-free/Dockerfile) + - [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble/Dockerfile) + - [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble-non-free/Dockerfile) + - [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster/Dockerfile) + - [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster-non-free/Dockerfile) + - [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye/Dockerfile) + - [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye-non-free/Dockerfile) + - [`bookworm`, `nd120`, `latest`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm/Dockerfile) + - [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm-non-free/Dockerfile) + - [`trixie`, `nd130`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie/Dockerfile) + - [`trixie-non-free`, `nd130-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie-non-free/Dockerfile) + - [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid/Dockerfile) + - [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid-non-free/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 05d3b63d7f00..55fd805c1014 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -29,13 +29,21 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/apache/Dockerfile) + - [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm/Dockerfile) + - [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/27/fpm-alpine/Dockerfile) + - [`28.0.7-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.7`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/apache/Dockerfile) + - [`28.0.7-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm/Dockerfile) + - [`28.0.7-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/28/fpm-alpine/Dockerfile) + - [`29.0.3-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.3`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/apache/Dockerfile) + - [`29.0.3-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm/Dockerfile) + - [`29.0.3-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index b72821f255b1..9a046eff1df9 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -25,18 +25,31 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.27.0`, `mainline`, `1`, `1.27`, `latest`, `1.27.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/mainline/debian/Dockerfile) + - [`1.27.0-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-perl/Dockerfile) + - [`1.27.0-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-otel/Dockerfile) + - [`1.27.0-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.0-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.27-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine/Dockerfile) + - [`1.27.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.0-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.27-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-perl/Dockerfile) + - [`1.27.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.0-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.27-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-slim/Dockerfile) + - [`1.27.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.0-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.27-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-otel/Dockerfile) + - [`1.26.1`, `stable`, `1.26`, `1.26.1-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/stable/debian/Dockerfile) + - [`1.26.1-perl`, `stable-perl`, `1.26-perl`, `1.26.1-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-perl/Dockerfile) + - [`1.26.1-otel`, `stable-otel`, `1.26-otel`, `1.26.1-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-otel/Dockerfile) + - [`1.26.1-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.1-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine/Dockerfile) + - [`1.26.1-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.1-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-perl/Dockerfile) + - [`1.26.1-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.1-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-slim/Dockerfile) + - [`1.26.1-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.1-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-otel/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 41aad8ec39b8..b464eb102068 100644 --- a/node/README.md +++ b/node/README.md @@ -25,22 +25,39 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`22-alpine3.19`, `22.4-alpine3.19`, `22.4.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.19/Dockerfile) + - [`22-alpine`, `22-alpine3.20`, `22.4-alpine`, `22.4-alpine3.20`, `22.4.0-alpine`, `22.4.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.20/Dockerfile) + - [`22`, `22-bookworm`, `22.4`, `22.4-bookworm`, `22.4.0`, `22.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm/Dockerfile) + - [`22-bookworm-slim`, `22-slim`, `22.4-bookworm-slim`, `22.4-slim`, `22.4.0-bookworm-slim`, `22.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm-slim/Dockerfile) + - [`22-bullseye`, `22.4-bullseye`, `22.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye/Dockerfile) + - [`22-bullseye-slim`, `22.4-bullseye-slim`, `22.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye-slim/Dockerfile) + - [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.19/Dockerfile) + - [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.0-alpine`, `20.15.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.20/Dockerfile) + - [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.0`, `20.15.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm/Dockerfile) + - [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.0-bookworm-slim`, `20.15.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm-slim/Dockerfile) + - [`20-bullseye`, `20.15-bullseye`, `20.15.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye/Dockerfile) + - [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye-slim/Dockerfile) + - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.19/Dockerfile) + - [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.20/Dockerfile) + - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) + - [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) + - [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) + - [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.3-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye-slim/Dockerfile) # Quick reference (cont.) diff --git a/notary/README.md b/notary/README.md index 3bf523016431..987c7c12ce17 100644 --- a/notary/README.md +++ b/notary/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`server-0.7.0`, `server`](https://github.com/docker/notary-official-images/blob/77b9b7833f8dd6be07104b214193788795a320ff/notary-server/Dockerfile) + - [`signer-0.7.0`, `signer`](https://github.com/docker/notary-official-images/blob/77b9b7833f8dd6be07104b214193788795a320ff/notary-signer/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 42838574bdc8..ff9ada59aaee 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`17.0-20240624`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/17.0/Dockerfile) + - [`16.0-20240624`, `16.0`, `16`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/16.0/Dockerfile) + - [`15.0-20240624`, `15.0`, `15`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/15.0/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index d701825f6eff..95ff0cd006cc 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -25,25 +25,45 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk8) + - [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk11) + - [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk17) + - [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) + - [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) + - [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) + - [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk8) + - [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk11) + - [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) + - [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) + - [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) + - [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) + - [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 173491731d38..3a59a8425f81 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -43,43 +43,71 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags - [`24-ea-4-jdk-oraclelinux9`, `24-ea-4-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-4-jdk-oracle`, `24-ea-4-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-4-jdk-oraclelinux8`, `24-ea-4-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux8/Dockerfile) + - [`24-ea-4-jdk-bookworm`, `24-ea-4-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bookworm/Dockerfile) + - [`24-ea-4-jdk-slim-bookworm`, `24-ea-4-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-4-jdk-slim`, `24-ea-4-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bookworm/Dockerfile) + - [`24-ea-4-jdk-bullseye`, `24-ea-4-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bullseye/Dockerfile) + - [`24-ea-4-jdk-slim-bullseye`, `24-ea-4-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bullseye/Dockerfile) + - [`24-ea-4-jdk-windowsservercore-ltsc2022`, `24-ea-4-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-4-jdk-windowsservercore-1809`, `24-ea-4-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-4-jdk-nanoserver-1809`, `24-ea-4-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-29-jdk-oraclelinux9`, `23-ea-29-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-29-jdk-oracle`, `23-ea-29-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-29-jdk-oraclelinux8`, `23-ea-29-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux8/Dockerfile) + - [`23-ea-29-jdk-bookworm`, `23-ea-29-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bookworm/Dockerfile) + - [`23-ea-29-jdk-slim-bookworm`, `23-ea-29-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-29-jdk-slim`, `23-ea-29-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bookworm/Dockerfile) + - [`23-ea-29-jdk-bullseye`, `23-ea-29-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bullseye/Dockerfile) + - [`23-ea-29-jdk-slim-bullseye`, `23-ea-29-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bullseye/Dockerfile) + - [`23-ea-29-jdk-windowsservercore-ltsc2022`, `23-ea-29-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-29-jdk-windowsservercore-1809`, `23-ea-29-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-29-jdk-nanoserver-1809`, `23-ea-29-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags - `24-ea-4-jdk`, `24-ea-4`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: + - [`24-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) + - `24-ea-4-jdk-windowsservercore`, `24-ea-4-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) + - `24-ea-4-jdk-nanoserver`, `24-ea-4-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) + - `23-ea-29-jdk`, `23-ea-29`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: + - [`23-ea-29-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) + - `23-ea-29-jdk-windowsservercore`, `23-ea-29-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) + - `23-ea-29-jdk-nanoserver`, `23-ea-29-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 8e89a44652e5..13ad4e283f2e 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -25,13 +25,21 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9/Dockerfile) + - [`9-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim/Dockerfile) + - [`9-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim-fips/Dockerfile) + - [`8.10`, `8`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8/Dockerfile) + - [`8-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim/Dockerfile) + - [`8-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim-fips/Dockerfile) + - [`7.9`, `7`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7/Dockerfile) + - [`7-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim/Dockerfile) + - [`7-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index d6f3b6c75a3f..f897b36a438c 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.2.31`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31/Dockerfile) + - [`3.2.31-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31-tp3/Dockerfile) + - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) + - [`3.1.20-tp3`, `3.1-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20-tp3/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index ab8d25be1f08..ed3bef070d4b 100644 --- a/percona/README.md +++ b/percona/README.md @@ -25,11 +25,17 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.0.36-28-centos`, `8.0-centos`, `8-centos`, `8.0.36-28`, `8.0`, `8`, `ps-8.0.36-28`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/02252c71b5fcf2d2235f7ec0d81940d4f2c45b64/percona-server-8.0/Dockerfile) + - [`5.7.44-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.44`, `5.7`, `5`, `ps-5.7.44`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/b89efa5f100edacc0ef660cef37975acfaf67326/percona-server-5.7/Dockerfile-dockerhub) + - [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) + - [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) + - [`psmdb-5.0.18`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-5.0/Dockerfile) + - [`psmdb-4.4.22`, `psmdb-4.4`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.4/Dockerfile) + - [`psmdb-4.2.24`, `psmdb-4.2`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.2/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 49a1e71e7da8..d98709a55f9a 100644 --- a/perl/README.md +++ b/perl/README.md @@ -25,36 +25,67 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bookworm/Dockerfile) + - [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bullseye/Dockerfile) + - [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bookworm/Dockerfile) + - [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bullseye/Dockerfile) + - [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bookworm/Dockerfile) + - [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bullseye/Dockerfile) + - [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bookworm/Dockerfile) + - [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bullseye/Dockerfile) + - [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bookworm/Dockerfile) + - [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bullseye/Dockerfile) + - [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bookworm/Dockerfile) + - [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bullseye/Dockerfile) + - [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bookworm/Dockerfile) + - [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bullseye/Dockerfile) + - [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bookworm/Dockerfile) + - [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bullseye/Dockerfile) + - [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bookworm/Dockerfile) + - [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bullseye/Dockerfile) + - [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bookworm/Dockerfile) + - [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bullseye/Dockerfile) + - [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bookworm/Dockerfile) + - [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bullseye/Dockerfile) + - [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bookworm/Dockerfile) + - [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bullseye/Dockerfile) + - [`5.41.1`, `5.41`, `devel`, `5.41.1-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bookworm/Dockerfile) + - [`5.41.1-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bullseye/Dockerfile) + - [`5.41.1-slim`, `5.41-slim`, `devel-slim`, `5.41.1-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bookworm/Dockerfile) + - [`5.41.1-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bullseye/Dockerfile) + - [`5.41.1-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.1-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bookworm/Dockerfile) + - [`5.41.1-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bullseye/Dockerfile) + - [`5.41.1-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.1-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bookworm/Dockerfile) + - [`5.41.1-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index fd90bcc620ef..6c93f0e2b2d3 100644 --- a/photon/README.md +++ b/photon/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.0`, `5.0-20240707`, `latest`](https://github.com/vmware/photon-docker-image/blob/d36c2c0d5474eaa4c49119f550bb7d370dd590c8/docker/Dockerfile) + - [`4.0`, `4.0-20240707`](https://github.com/vmware/photon-docker-image/blob/d91326c2fb64831070e02c88d62e32f89bbecda1/docker/Dockerfile) + - [`3.0`, `3.0-20240707`](https://github.com/vmware/photon-docker-image/blob/ca04c70bf78c387e49445ac0588c075b4a921ede/docker/Dockerfile) # Quick reference (cont.) diff --git a/php-zendserver/README.md b/php-zendserver/README.md index 73bbfb9c560a..6ad28b2f4b5c 100644 --- a/php-zendserver/README.md +++ b/php-zendserver/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.5`, `8.5-php5.6`, `5.6`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/8.5/5.6/Dockerfile) + - [`9.1`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/9.1/7.1/Dockerfile) + - [`2019.0`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/2019.0/Dockerfile) + - [`2021.0`, `latest`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/2021.0/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 3cae99867888..4146ae84269a 100644 --- a/php/README.md +++ b/php/README.md @@ -25,46 +25,87 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`8.3.9-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.9-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.9-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.9`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/cli/Dockerfile) + - [`8.3.9-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.9-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/apache/Dockerfile) + - [`8.3.9-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.9-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/fpm/Dockerfile) + - [`8.3.9-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.9-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/zts/Dockerfile) + - [`8.3.9-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.9-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/cli/Dockerfile) + - [`8.3.9-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/apache/Dockerfile) + - [`8.3.9-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/fpm/Dockerfile) + - [`8.3.9-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/zts/Dockerfile) + - [`8.3.9-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.9-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.9-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.9-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/cli/Dockerfile) + - [`8.3.9-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.9-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/fpm/Dockerfile) + - [`8.3.9-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.9-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/zts/Dockerfile) + - [`8.3.9-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.9-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/cli/Dockerfile) + - [`8.3.9-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/fpm/Dockerfile) + - [`8.3.9-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/zts/Dockerfile) + - [`8.2.21-cli-bookworm`, `8.2-cli-bookworm`, `8.2.21-bookworm`, `8.2-bookworm`, `8.2.21-cli`, `8.2-cli`, `8.2.21`, `8.2`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/cli/Dockerfile) + - [`8.2.21-apache-bookworm`, `8.2-apache-bookworm`, `8.2.21-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/apache/Dockerfile) + - [`8.2.21-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.21-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/fpm/Dockerfile) + - [`8.2.21-zts-bookworm`, `8.2-zts-bookworm`, `8.2.21-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/zts/Dockerfile) + - [`8.2.21-cli-bullseye`, `8.2-cli-bullseye`, `8.2.21-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/cli/Dockerfile) + - [`8.2.21-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/apache/Dockerfile) + - [`8.2.21-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/fpm/Dockerfile) + - [`8.2.21-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/zts/Dockerfile) + - [`8.2.21-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.21-alpine3.20`, `8.2-alpine3.20`, `8.2.21-cli-alpine`, `8.2-cli-alpine`, `8.2.21-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/cli/Dockerfile) + - [`8.2.21-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.21-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/fpm/Dockerfile) + - [`8.2.21-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.21-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/zts/Dockerfile) + - [`8.2.21-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.21-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/cli/Dockerfile) + - [`8.2.21-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/fpm/Dockerfile) + - [`8.2.21-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/zts/Dockerfile) + - [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) + - [`8.1.29-apache-bookworm`, `8.1-apache-bookworm`, `8.1.29-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/apache/Dockerfile) + - [`8.1.29-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.29-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/fpm/Dockerfile) + - [`8.1.29-zts-bookworm`, `8.1-zts-bookworm`, `8.1.29-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/zts/Dockerfile) + - [`8.1.29-cli-bullseye`, `8.1-cli-bullseye`, `8.1.29-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/cli/Dockerfile) + - [`8.1.29-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/apache/Dockerfile) + - [`8.1.29-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/fpm/Dockerfile) + - [`8.1.29-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/zts/Dockerfile) + - [`8.1.29-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.29-alpine3.20`, `8.1-alpine3.20`, `8.1.29-cli-alpine`, `8.1-cli-alpine`, `8.1.29-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/cli/Dockerfile) + - [`8.1.29-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.29-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/fpm/Dockerfile) + - [`8.1.29-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.29-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/zts/Dockerfile) + - [`8.1.29-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.29-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/cli/Dockerfile) + - [`8.1.29-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/fpm/Dockerfile) + - [`8.1.29-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 40d86291cbbb..9ae0ae6f75bf 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/apache/Dockerfile) + - [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/fpm/Dockerfile) + - [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/8674356a6d0f67eb89d0200647832fc3853781fd/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 9ab93a36f282..a06916a5671d 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/apache/Dockerfile) + - [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm/Dockerfile) + - [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index a6dcdf672c77..8605b9fb2d74 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -25,28 +25,51 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`17beta2`, `17beta2-bookworm`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bookworm/Dockerfile) + - [`17beta2-bullseye`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bullseye/Dockerfile) + - [`17beta2-alpine3.20`, `17beta2-alpine`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.20/Dockerfile) + - [`17beta2-alpine3.19`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.19/Dockerfile) + - [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) + - [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) + - [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.20/Dockerfile) + - [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.19/Dockerfile) + - [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) + - [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) + - [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.20/Dockerfile) + - [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.19/Dockerfile) + - [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) + - [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) + - [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.20/Dockerfile) + - [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.19/Dockerfile) + - [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) + - [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) + - [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.20/Dockerfile) + - [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.19/Dockerfile) + - [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) + - [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) + - [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.20/Dockerfile) + - [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 1ab66802c227..4da79a2647f9 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -29,45 +29,73 @@ WARNING: ## Simple Tags - [`3.10-7.3.16-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.16-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bookworm/Dockerfile) + - [`3.10-7.3.16-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.16-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bookworm/Dockerfile) + - [`3.10-7.3.16-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.16-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) + - [`3.10-7.3.16-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.16-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.16-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.16-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bullseye/Dockerfile) + - [`3.10-7.3.16-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.16-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.16-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.16-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.9-7.3.16-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bookworm/Dockerfile) + - [`3.9-7.3.16-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bookworm/Dockerfile) + - [`3.9-7.3.16-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) + - [`3.9-7.3.16-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.16-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bullseye/Dockerfile) + - [`3.9-7.3.16-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.9-7.3.16-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.16-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.16-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bookworm/Dockerfile) + - [`2.7-7.3.16-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.16-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bookworm/Dockerfile) + - [`2.7-7.3.16-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.16-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) + - [`2.7-7.3.16-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.16-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.16-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.16-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bullseye/Dockerfile) + - [`2.7-7.3.16-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.16-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.16-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.16-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `3.10-7.3.16`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.16`, `3-7.3`, `3-7`, `3`, `latest`: + - [`3.10-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) + - `3.10-7.3.16-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.16-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) + - `3.9-7.3.16`, `3.9-7.3`, `3.9-7`, `3.9`: + - [`3.9-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) + - `3.9-7.3.16-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: + - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) + - `2.7-7.3.16`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.16`, `2-7.3`, `2-7`, `2`: + - [`2.7-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) + - `2.7-7.3.16-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.16-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) diff --git a/python/README.md b/python/README.md index de2b852ddae2..c1139044e1b2 100644 --- a/python/README.md +++ b/python/README.md @@ -29,76 +29,134 @@ WARNING: ## Simple Tags - [`3.13.0b3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bookworm/Dockerfile) + - [`3.13.0b3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bullseye/Dockerfile) + - [`3.13.0b3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bullseye/Dockerfile) + - [`3.13.0b3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.20/Dockerfile) + - [`3.13.0b3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.19/Dockerfile) + - [`3.13.0b3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) + - [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bookworm/Dockerfile) + - [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bullseye/Dockerfile) + - [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bullseye/Dockerfile) + - [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.20/Dockerfile) + - [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.19/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) + - [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bookworm/Dockerfile) + - [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bullseye/Dockerfile) + - [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bullseye/Dockerfile) + - [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.20/Dockerfile) + - [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.19/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) + - [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bookworm/Dockerfile) + - [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bullseye/Dockerfile) + - [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bullseye/Dockerfile) + - [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.20/Dockerfile) + - [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.19/Dockerfile) + - [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) + - [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bookworm/Dockerfile) + - [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bullseye/Dockerfile) + - [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bullseye/Dockerfile) + - [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.20/Dockerfile) + - [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.19/Dockerfile) + - [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) + - [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bookworm/Dockerfile) + - [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bullseye/Dockerfile) + - [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bullseye/Dockerfile) + - [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.20/Dockerfile) + - [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.19/Dockerfile) ## Shared Tags - `3.13.0b3`, `3.13-rc`: + - [`3.13.0b3-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - `3.13.0b3-windowsservercore`, `3.13-rc-windowsservercore`: + - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - `3.12.4`, `3.12`, `3`, `latest`: + - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) + - `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) + - `3.11.9`, `3.11`: + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) + - `3.11.9-windowsservercore`, `3.11-windowsservercore`: + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) + - `3.10.14`, `3.10`: + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) + - `3.9.19`, `3.9`: + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) + - `3.8.19`, `3.8`: + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 169d90081cd1..feef2f343c71 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/ubuntu/Dockerfile) + - [`3.13.4-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) + - [`3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/alpine/Dockerfile) + - [`3.13.4-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) + - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/ubuntu/Dockerfile) + - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) + - [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/alpine/Dockerfile) + - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 08fceb5aac0f..39ce6b20dd71 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `2024.05`, `bookworm`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/bookworm/Dockerfile) + - [`alpine`, `2024.05-alpine`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index f3bf952e17c5..b742230e0511 100644 --- a/redis/README.md +++ b/redis/README.md @@ -25,12 +25,19 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`7.4-rc2`, `7.4-rc`, `7.4-rc2-bookworm`, `7.4-rc-bookworm`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/debian/Dockerfile) + - [`7.4-rc2-alpine`, `7.4-rc-alpine`, `7.4-rc2-alpine3.20`, `7.4-rc-alpine3.20`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/alpine/Dockerfile) + - [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) + - [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) + - [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) + - [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.20`, `7.0-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/alpine/Dockerfile) + - [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) + - [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 932488689681..8dd148e34bc0 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/bookworm/Dockerfile) + - [`5.1.3-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.3-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.20/Dockerfile) + - [`5.1.3-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.19/Dockerfile) + - [`5.0.9`, `5.0`, `5.0.9-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/bookworm/Dockerfile) + - [`5.0.9-alpine3.20`, `5.0-alpine3.20`, `5.0.9-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.20/Dockerfile) + - [`5.0.9-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index fcfa1cc10714..0251d5df7cdb 100644 --- a/registry/README.md +++ b/registry/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.0.0-alpha.1`](https://github.com/docker/distribution-library-image/blob/6356e8dbe1969f7340ca25a9874faa26e6e6f71d/Dockerfile) + - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index db5f90f21ac7..51b358af7918 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -25,9 +25,13 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`6.9.2`, `6.9`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.9/Dockerfile) + - [`6.8.2`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.8/Dockerfile) + - [`6.7.5`, `6.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.7/Dockerfile) + - [`6.6.10`, `6.6`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.6/Dockerfile) + - [`6.5.8`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.5/Dockerfile) # Quick reference (cont.) diff --git a/rockylinux/README.md b/rockylinux/README.md index a79efa6314e5..2355343b90de 100644 --- a/rockylinux/README.md +++ b/rockylinux/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.3.20231119`, `9.3`, `9`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/53416a9aaea6ac6ded18c2047d51e26983160faf/Dockerfile) + - [`9.3.20231119-minimal`, `9.3-minimal`, `9-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/e784104b999a1ff6b66cb0aeee0408fb030c840b/Dockerfile) + - [`8.9.20231119`, `8.9`, `8`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/2085c6419637bf970a532888141569c5865ae61f/Dockerfile) + - [`8.9.20231119-minimal`, `8.9-minimal`, `8-minimal`](https://github.com/rocky-linux/sig-cloud-instance-images/blob/6d81e6b46e052158df83357c569c8a6773a81e78/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index 0f4c58ee32f9..eec0119375ad 100644 --- a/ros/README.md +++ b/ros/README.md @@ -25,20 +25,35 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/noetic/ubuntu/focal/ros-core/Dockerfile) + - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) + - [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) + - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) + - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/humble/ubuntu/jammy/ros-core/Dockerfile) + - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) + - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) + - [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) + - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) + - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) + - [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/74e321bc1837c29f223a6d54895aa3c8eb184119/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) + - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) + - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) + - [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-core/Dockerfile) + - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-base/Dockerfile) + - [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/perception/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index b21a68d61161..ef5933b00f9d 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -25,28 +25,51 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.4.0-preview1-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bookworm/Dockerfile) + - [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bookworm/Dockerfile) + - [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bullseye/Dockerfile) + - [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) + - [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.4-rc/alpine3.20/Dockerfile) + - [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) + - [`3.3.3-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.3`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bookworm/Dockerfile) + - [`3.3.3-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.3-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bookworm/Dockerfile) + - [`3.3.3-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bullseye/Dockerfile) + - [`3.3.3-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bullseye/Dockerfile) + - [`3.3.3-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.3-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.20/Dockerfile) + - [`3.3.3-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.19/Dockerfile) + - [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) + - [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) + - [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) + - [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bullseye/Dockerfile) + - [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.2/alpine3.20/Dockerfile) + - [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) + - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bookworm/Dockerfile) + - [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bookworm/Dockerfile) + - [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bullseye/Dockerfile) + - [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bullseye/Dockerfile) + - [`3.1.6-alpine3.20`, `3.1-alpine3.20`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.20/Dockerfile) + - [`3.1.6-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.19/Dockerfile) # Quick reference (cont.) @@ -81,7 +104,7 @@ Ruby is a dynamic, reflective, object-oriented, general-purpose, open-source pro ## Create a `Dockerfile` in your Ruby app project ```dockerfile -FROM ruby:3.0 +FROM ruby:3.3 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 @@ -110,7 +133,7 @@ $ docker run -it --name my-running-script my-ruby-app The above example `Dockerfile` expects a `Gemfile.lock` in your app directory. This `docker run` will help you generate one. Run it in the root of your app, next to the `Gemfile`: ```console -$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:3.0 bundle install +$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:3.3 bundle install ``` ## Run a single Ruby script @@ -118,7 +141,7 @@ $ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:3.0 bundle install For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a Ruby script by using the Ruby Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp ruby:3.0 ruby your-daemon-or-script.rb +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp ruby:3.3 ruby your-daemon-or-script.rb ``` ## Encoding @@ -129,7 +152,7 @@ By default, Ruby inherits the locale of the environment in which it is run. For This image sets several environment variables which change the behavior of Bundler and Gem for running a single application within a container (especially in such a way that the development sources of the application can be bind-mounted inside a container and not have `.bundle` from the host interfere with the proper functionality of the container). -The environment variables we set are canonically listed in the above-linked `Dockerfiles`, but some of them include `GEM_HOME`, `BUNDLE_PATH`, `BUNDLE_BIN`, `BUNDLE_SILENCE_ROOT_WARNING`, and `BUNDLE_APP_CONFIG`. +The environment variables we set are canonically listed in the above-linked `Dockerfiles`, but some of them include `GEM_HOME`, `BUNDLE_SILENCE_ROOT_WARNING`, and `BUNDLE_APP_CONFIG`. If these cause issues for your use case (running multiple Ruby applications in a single container, for example), setting them to the empty string *should* be sufficient for undoing their behavior. diff --git a/rust/README.md b/rust/README.md index 9701bea0d4e5..2bf692366606 100644 --- a/rust/README.md +++ b/rust/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1-bullseye`, `1.79-bullseye`, `1.79.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/Dockerfile) + - [`1-slim-bullseye`, `1.79-slim-bullseye`, `1.79.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/slim/Dockerfile) + - [`1-bookworm`, `1.79-bookworm`, `1.79.0-bookworm`, `bookworm`, `1`, `1.79`, `1.79.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/Dockerfile) + - [`1-slim-bookworm`, `1.79-slim-bookworm`, `1.79.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.79-slim`, `1.79.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/slim/Dockerfile) + - [`1-alpine3.19`, `1.79-alpine3.19`, `1.79.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.19/Dockerfile) + - [`1-alpine3.20`, `1.79-alpine3.20`, `1.79.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.79-alpine`, `1.79.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 64fcc93f09e9..c2f3ba21df45 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -25,52 +25,99 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `jdk-ubuntu`, `22`, `22-jdk-ubuntu`, `22.0.1`, `22.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `22-ubuntu-noble`, `22-ubuntu-24.04`, `22.0.1-ubuntu-noble`, `22.0.1-ubuntu-24.04`, `22-jdk-ubuntu-noble`, `22-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `22.0.1-jdk-ubuntu-noble`, `22.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk/Dockerfile) + - [`jdk-headless-ubuntu`, `22-jdk-headless-ubuntu`, `22.0.1-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-noble`, `22-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `22.0.1-jdk-headless-ubuntu-noble`, `22.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk-headless/Dockerfile) + - [`jre-ubuntu`, `22-jre-ubuntu`, `22.0.1-jre-ubuntu`, `22-jre-ubuntu-noble`, `22-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `22.0.1-jre-ubuntu-noble`, `22.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre/Dockerfile) + - [`jre-headless-ubuntu`, `22-jre-headless-ubuntu`, `22.0.1-jre-headless-ubuntu`, `22-jre-headless-ubuntu-noble`, `22-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `22.0.1-jre-headless-ubuntu-noble`, `22.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre-headless/Dockerfile) + - [`ubuntu-jammy`, `ubuntu-22.04`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.1-ubuntu-jammy`, `22.0.1-ubuntu-22.04`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `22.0.1-jdk-ubuntu-jammy`, `22.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk/Dockerfile) + - [`22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `22.0.1-jdk-headless-ubuntu-jammy`, `22.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk-headless/Dockerfile) + - [`22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `22.0.1-jre-ubuntu-jammy`, `22.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre/Dockerfile) + - [`22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `22.0.1-jre-headless-ubuntu-jammy`, `22.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre-headless/Dockerfile) + - [`ubuntu-focal`, `ubuntu-20.04`, `22-ubuntu-focal`, `22-ubuntu-20.04`, `22.0.1-ubuntu-focal`, `22.0.1-ubuntu-20.04`, `22-jdk-ubuntu-focal`, `22-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `22.0.1-jdk-ubuntu-focal`, `22.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk/Dockerfile) + - [`22-jdk-headless-ubuntu-focal`, `22-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `22.0.1-jdk-headless-ubuntu-focal`, `22.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk-headless/Dockerfile) + - [`22-jre-ubuntu-focal`, `22-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `22.0.1-jre-ubuntu-focal`, `22.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre/Dockerfile) + - [`22-jre-headless-ubuntu-focal`, `22-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `22.0.1-jre-headless-ubuntu-focal`, `22.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre-headless/Dockerfile) + - [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.3`, `21.0.3-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.3-ubuntu-noble`, `21.0.3-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.3-jdk-ubuntu-noble`, `21.0.3-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk/Dockerfile) + - [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.3-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.3-jdk-headless-ubuntu-noble`, `21.0.3-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk-headless/Dockerfile) + - [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.3-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.3-jre-ubuntu-noble`, `21.0.3-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre/Dockerfile) + - [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.3-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.3-jre-headless-ubuntu-noble`, `21.0.3-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre-headless/Dockerfile) + - [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.3-ubuntu-jammy`, `21.0.3-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.3-jdk-ubuntu-jammy`, `21.0.3-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk/Dockerfile) + - [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.3-jdk-headless-ubuntu-jammy`, `21.0.3-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk-headless/Dockerfile) + - [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.3-jre-ubuntu-jammy`, `21.0.3-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre/Dockerfile) + - [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre-headless/Dockerfile) + - [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.3-ubuntu-focal`, `21.0.3-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.3-jdk-ubuntu-focal`, `21.0.3-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk/Dockerfile) + - [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.3-jdk-headless-ubuntu-focal`, `21.0.3-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk-headless/Dockerfile) + - [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.3-jre-ubuntu-focal`, `21.0.3-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre/Dockerfile) + - [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.3-jre-headless-ubuntu-focal`, `21.0.3-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre-headless/Dockerfile) + - [`17`, `17-jdk-ubuntu`, `17.0.11`, `17.0.11-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.11-ubuntu-noble`, `17.0.11-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.11-jdk-ubuntu-noble`, `17.0.11-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk/Dockerfile) + - [`17-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.11-jdk-headless-ubuntu-noble`, `17.0.11-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk-headless/Dockerfile) + - [`17-jre-ubuntu`, `17.0.11-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.11-jre-ubuntu-noble`, `17.0.11-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre/Dockerfile) + - [`17-jre-headless-ubuntu`, `17.0.11-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.11-jre-headless-ubuntu-noble`, `17.0.11-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre-headless/Dockerfile) + - [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.11-ubuntu-jammy`, `17.0.11-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.11-jdk-ubuntu-jammy`, `17.0.11-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk/Dockerfile) + - [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.11-jdk-headless-ubuntu-jammy`, `17.0.11-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk-headless/Dockerfile) + - [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.11-jre-ubuntu-jammy`, `17.0.11-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre/Dockerfile) + - [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre-headless/Dockerfile) + - [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.11-ubuntu-focal`, `17.0.11-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.11-jdk-ubuntu-focal`, `17.0.11-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk/Dockerfile) + - [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.11-jdk-headless-ubuntu-focal`, `17.0.11-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk-headless/Dockerfile) + - [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.11-jre-ubuntu-focal`, `17.0.11-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre/Dockerfile) + - [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.11-jre-headless-ubuntu-focal`, `17.0.11-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre-headless/Dockerfile) + - [`11`, `11-jdk-ubuntu`, `11.0.23`, `11.0.23-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.23-ubuntu-noble`, `11.0.23-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.23-jdk-ubuntu-noble`, `11.0.23-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk/Dockerfile) + - [`11-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.23-jdk-headless-ubuntu-noble`, `11.0.23-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk-headless/Dockerfile) + - [`11-jre-ubuntu`, `11.0.23-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.23-jre-ubuntu-noble`, `11.0.23-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre/Dockerfile) + - [`11-jre-headless-ubuntu`, `11.0.23-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.23-jre-headless-ubuntu-noble`, `11.0.23-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre-headless/Dockerfile) + - [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.23-ubuntu-jammy`, `11.0.23-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.23-jdk-ubuntu-jammy`, `11.0.23-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk/Dockerfile) + - [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.23-jdk-headless-ubuntu-jammy`, `11.0.23-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk-headless/Dockerfile) + - [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.23-jre-ubuntu-jammy`, `11.0.23-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre/Dockerfile) + - [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre-headless/Dockerfile) + - [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.23-ubuntu-focal`, `11.0.23-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.23-jdk-ubuntu-focal`, `11.0.23-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk/Dockerfile) + - [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.23-jdk-headless-ubuntu-focal`, `11.0.23-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk-headless/Dockerfile) + - [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.23-jre-ubuntu-focal`, `11.0.23-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre/Dockerfile) + - [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.23-jre-headless-ubuntu-focal`, `11.0.23-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) diff --git a/satosa/README.md b/satosa/README.md index 77d7f2636cf5..277e87c6dd94 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -29,11 +29,13 @@ WARNING: ## Simple Tags - [`8.4.0-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) + - [`8.4.0-alpine3.19`, `8.4-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/74a847396f1190ec26679fc3bf09ffcc42d2e999/8.4/alpine3.19/Dockerfile) ## Shared Tags - `8.4.0`, `8.4`, `8`, `latest`: + - [`8.4.0-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index b0a06a207fd5..0bd00bfd729d 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`6.4.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/54368db3f823b6ced026297c058973eabad1e930/Dockerfile) + - [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 4e8eea0ae922..196e5b6a4f44 100644 --- a/solr/README.md +++ b/solr/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.6.1`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) + - [`9.6.1-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) + - [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5/Dockerfile) + - [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5-slim/Dockerfile) + - [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) + - [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 64a86ca830fc..837a7d9fcb67 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -25,14 +25,23 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.9.6-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/community/Dockerfile) + - [`9.9.6-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/developer/Dockerfile) + - [`9.9.6-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/enterprise/Dockerfile) + - [`9.9.6-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/app/Dockerfile) + - [`9.9.6-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/search/Dockerfile) + - [`10.6.0-community`, `10.6-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/community/Dockerfile) + - [`10.6.0-developer`, `10.6-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/developer/Dockerfile) + - [`10.6.0-enterprise`, `10.6-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/enterprise/Dockerfile) + - [`10.6.0-datacenter-app`, `10.6-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/app/Dockerfile) + - [`10.6.0-datacenter-search`, `10.6-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index fc9882b2d48d..45132b06f706 100644 --- a/spark/README.md +++ b/spark/README.md @@ -25,24 +25,43 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.5.1-scala2.12-java17-python3-ubuntu`, `3.5.1-java17-python3`, `3.5.1-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java17-r-ubuntu`, `3.5.1-java17-r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-r-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java17-ubuntu`, `3.5.1-java17-scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-r-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java11-python3-ubuntu`, `3.5.1-python3`, `3.5.1`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java11-r-ubuntu`, `3.5.1-r`, `r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-r-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java11-ubuntu`, `3.5.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-ubuntu/Dockerfile) + - [`3.5.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java17-python3-ubuntu`, `3.5.0-java17-python3`, `3.5.0-java17`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java17-r-ubuntu`, `3.5.0-java17-r`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-r-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java17-ubuntu`, `3.5.0-java17-scala`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-r-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) + - [`3.5.0-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-r-ubuntu/Dockerfile) + - [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `3.4.1`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) + - [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) + - [`3.4.1-scala2.12-java11-ubuntu`, `3.4.1-scala`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-ubuntu/Dockerfile) + - [`3.4.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/spiped/README.md b/spiped/README.md index 5684191f6c8c..2e971abf258e 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) + - [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2197b4c98a1ec5cf9f2203e660951aedbccc5d0d/1.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index 9c0c3f6ba1af..d008bcd6a34c 100644 --- a/storm/README.md +++ b/storm/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.6.2`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d8c821ffb599be733400c98cc10fe4c05966b552/2.6.2/Dockerfile) + - [`2.6.2-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/31209f0cde237834a3602a382e69a6caa6bdcffc/2.6.2-jre17/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index c585dda5af9c..a0294f286fdc 100644 --- a/swift/README.md +++ b/swift/README.md @@ -25,60 +25,115 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) + - [`5.10.1-slim`, `5.10-slim`, `5.10.1-jammy-slim`, `5.10-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/slim/Dockerfile) + - [`5.10.1-focal-slim`, `5.10-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/slim/Dockerfile) + - [`5.10.1-focal`, `5.10-focal`, `focal`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/Dockerfile) + - [`5.10.1-mantic`, `5.10-mantic`, `mantic`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/23.10/Dockerfile) + - [`5.10.1-noble`, `5.10-noble`, `noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) + - [`5.10.1-bookworm`, `5.10-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) + - [`5.10.1-fedora39`, `5.10-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) + - [`5.10.1-amazonlinux2`, `5.10-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/Dockerfile) + - [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) + - [`5.10.1-centos7`, `5.10-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/Dockerfile) + - [`5.10.1-centos7-slim`, `5.10-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/slim/Dockerfile) + - [`5.10.1-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/Dockerfile) + - [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) + - [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/windows/LTSC2022/Dockerfile) + - [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) + - [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) + - [`5.9.2-focal-slim`, `5.9-focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) + - [`5.9.2-focal`, `5.9-focal`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/Dockerfile) + - [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) + - [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) + - [`5.9.2-centos7`, `5.9-centos7`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/Dockerfile) + - [`5.9.2-centos7-slim`, `5.9-centos7-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/slim/Dockerfile) + - [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) + - [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) + - [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) + - [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) + - [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) + - [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) + - [`5.8.1-focal`, `5.8-focal`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/Dockerfile) + - [`5.8.1-amazonlinux2`, `5.8-amazonlinux2`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/Dockerfile) + - [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) + - [`5.8.1-centos7`, `5.8-centos7`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/Dockerfile) + - [`5.8.1-centos7-slim`, `5.8-centos7-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/slim/Dockerfile) + - [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) + - [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) + - [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) + - [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) + - [`5.7.3-focal-slim`, `5.7-focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) + - [`5.7.3-focal`, `5.7-focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) + - [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) + - [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) + - [`5.7.3-centos7`, `5.7-centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) + - [`5.7.3-centos7-slim`, `5.7-centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) + - [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) + - [`5.6.3-focal`, `5.6-focal`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/Dockerfile) + - [`5.6.3-amazonlinux2`, `5.6-amazonlinux2`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/Dockerfile) + - [`5.6.3-amazonlinux2-slim`, `5.6-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/slim/Dockerfile) + - [`5.6.3-centos7`, `5.6-centos7`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/Dockerfile) + - [`5.6.3-centos7-slim`, `5.6-centos7-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/slim/Dockerfile) + - [`5.5.3-focal-slim`, `5.5-focal-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/slim/Dockerfile) + - [`5.5.3-focal`, `5.5-focal`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/Dockerfile) + - [`5.5.3-amazonlinux2`, `5.5-amazonlinux2`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/Dockerfile) + - [`5.5.3-amazonlinux2-slim`, `5.5-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/slim/Dockerfile) + - [`5.5.3-centos7`, `5.5-centos7`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/Dockerfile) + - [`5.5.3-centos7-slim`, `5.5-centos7-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/slim/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 7b9a86a82205..ec73df9cb0d3 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`latest`, `9.3.6`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.3.6/bookworm/Dockerfile) + - [`stable`, `9.2.5`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.2.5/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 710572f04c2b..04029088f647 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -25,10 +25,15 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/Dockerfile) + - [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/alpine/Dockerfile) + - [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/Dockerfile) + - [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/alpine/Dockerfile) + - [`1.31`, `1.31.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/Dockerfile) + - [`1.31-alpine`, `1.31.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 7a5fdb217f6b..c7bec67faef0 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -25,30 +25,55 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`11.0.0-M22-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M22-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M22-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M22`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jdk21/temurin-jammy/Dockerfile) + - [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) + - [`10.1.25-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.25-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.25-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.25`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk21/temurin-jammy/Dockerfile) + - [`10.1.25-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.25-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.25-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre21/temurin-jammy/Dockerfile) + - [`10.1.25-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.25-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.25-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk17/temurin-jammy/Dockerfile) + - [`10.1.25-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.25-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.25-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre17/temurin-jammy/Dockerfile) + - [`10.1.25-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.25-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.25-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk11/temurin-jammy/Dockerfile) + - [`10.1.25-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.25-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.25-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre11/temurin-jammy/Dockerfile) + - [`9.0.90-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.90-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.90-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.90`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/temurin-jammy/Dockerfile) + - [`9.0.90-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.90-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.90-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre21/temurin-jammy/Dockerfile) + - [`9.0.90-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.90-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/corretto-al2/Dockerfile) + - [`9.0.90-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.90-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.90-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-jammy/Dockerfile) + - [`9.0.90-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.90-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.90-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-jammy/Dockerfile) + - [`9.0.90-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-focal/Dockerfile) + - [`9.0.90-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-focal/Dockerfile) + - [`9.0.90-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.90-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/corretto-al2/Dockerfile) + - [`9.0.90-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.90-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.90-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-jammy/Dockerfile) + - [`9.0.90-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.90-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.90-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-jammy/Dockerfile) + - [`9.0.90-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-focal/Dockerfile) + - [`9.0.90-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-focal/Dockerfile) + - [`9.0.90-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.90-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/corretto-al2/Dockerfile) + - [`9.0.90-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.90-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.90-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-jammy/Dockerfile) + - [`9.0.90-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.90-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.90-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-jammy/Dockerfile) + - [`9.0.90-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-focal/Dockerfile) + - [`9.0.90-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-focal/Dockerfile) + - [`9.0.90-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.90-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 9b7b4d0d6cf0..3b77fcb71836 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -25,52 +25,99 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) + - [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) + - [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) + - [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) + - [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) + - [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) + - [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) + - [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) + - [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) + - [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) + - [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) + - [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) + - [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) + - [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) + - [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) + - [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) + - [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) + - [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) + - [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) + - [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) + - [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) + - [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) + - [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) + - [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-ubuntu-microprofile`, `10.0.0-M1-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre11-ubuntu-microprofile`, `10.0.0-M1-ubuntu-microprofile`, `10.0.0-M1-jre11-Temurin-microprofile`, `10.0.0-M1-Temurin-microprofile`, `10.0.0-M1-jre11-microprofile`, `10.0.0-M1-microprofile`, `10.0.0-M1-jre11-Temurin-ubuntu`, `10.0.0-M1-Temurin-ubuntu`, `10.0.0-M1-jre11-ubuntu`, `10.0.0-M1-ubuntu`, `10.0.0-M1-jre11-Temurin`, `10.0.0-M1-Temurin`, `10.0.0-M1-jre11`, `10.0.0-M1`, `10.0-jre11-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre11-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre11-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre11-microprofile`, `10.0-microprofile`, `10.0-jre11-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre11-ubuntu`, `10.0-ubuntu`, `10.0-jre11-Temurin`, `10.0-Temurin`, `10.0-jre11`, `10.0`, `10-jre11-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre11-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre11-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre11-microprofile`, `10-microprofile`, `10-jre11-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre11-ubuntu`, `10-ubuntu`, `10-jre11-Temurin`, `10-Temurin`, `10-jre11`, `10`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-ubuntu-plume`, `10.0.0-M1-Temurin-ubuntu-plume`, `10.0.0-M1-jre11-ubuntu-plume`, `10.0.0-M1-ubuntu-plume`, `10.0.0-M1-jre11-Temurin-plume`, `10.0.0-M1-Temurin-plume`, `10.0.0-M1-jre11-plume`, `10.0.0-M1-plume`, `10.0-jre11-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre11-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre11-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre11-plume`, `10.0-plume`, `10-jre11-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre11-ubuntu-plume`, `10-ubuntu-plume`, `10-jre11-Temurin-plume`, `10-Temurin-plume`, `10-jre11-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plume/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-ubuntu-plus`, `10.0.0-M1-Temurin-ubuntu-plus`, `10.0.0-M1-jre11-ubuntu-plus`, `10.0.0-M1-ubuntu-plus`, `10.0.0-M1-jre11-Temurin-plus`, `10.0.0-M1-Temurin-plus`, `10.0.0-M1-jre11-plus`, `10.0.0-M1-plus`, `10.0-jre11-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre11-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre11-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre11-plus`, `10.0-plus`, `10-jre11-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre11-ubuntu-plus`, `10-ubuntu-plus`, `10-jre11-Temurin-plus`, `10-Temurin-plus`, `10-jre11-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plus/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-ubuntu-webprofile`, `10.0.0-M1-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre11-ubuntu-webprofile`, `10.0.0-M1-ubuntu-webprofile`, `10.0.0-M1-jre11-Temurin-webprofile`, `10.0.0-M1-Temurin-webprofile`, `10.0.0-M1-jre11-webprofile`, `10.0.0-M1-webprofile`, `10.0-jre11-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre11-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre11-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre11-webprofile`, `10.0-webprofile`, `10-jre11-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre11-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre11-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre11-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-alpine-microprofile`, `10.0.0-M1-Temurin-alpine-microprofile`, `10.0.0-M1-jre11-alpine-microprofile`, `10.0.0-M1-alpine-microprofile`, `10.0.0-M1-jre11-Temurin-alpine`, `10.0.0-M1-Temurin-alpine`, `10.0.0-M1-jre11-alpine`, `10.0.0-M1-alpine`, `10.0-jre11-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre11-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre11-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre11-alpine`, `10.0-alpine`, `10-jre11-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre11-alpine-microprofile`, `10-alpine-microprofile`, `10-jre11-Temurin-alpine`, `10-Temurin-alpine`, `10-jre11-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/microprofile/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-alpine-plume`, `10.0.0-M1-Temurin-alpine-plume`, `10.0.0-M1-jre11-alpine-plume`, `10.0.0-M1-alpine-plume`, `10.0-jre11-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre11-alpine-plume`, `10.0-alpine-plume`, `10-jre11-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre11-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plume/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-alpine-plus`, `10.0.0-M1-Temurin-alpine-plus`, `10.0.0-M1-jre11-alpine-plus`, `10.0.0-M1-alpine-plus`, `10.0-jre11-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre11-alpine-plus`, `10.0-alpine-plus`, `10-jre11-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre11-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plus/Dockerfile) + - [`10.0.0-M1-jre11-Temurin-alpine-webprofile`, `10.0.0-M1-Temurin-alpine-webprofile`, `10.0.0-M1-jre11-alpine-webprofile`, `10.0.0-M1-alpine-webprofile`, `10.0-jre11-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre11-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre11-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre11-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/webprofile/Dockerfile) + - [`10.0.0-M1-jre11-Semeru-ubuntu-microprofile`, `10.0.0-M1-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre11-Semeru-microprofile`, `10.0.0-M1-Semeru-microprofile`, `10.0.0-M1-jre11-Semeru-ubuntu`, `10.0.0-M1-Semeru-ubuntu`, `10.0.0-M1-jre11-Semeru`, `10.0.0-M1-Semeru`, `10.0-jre11-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre11-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre11-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre11-Semeru`, `10.0-Semeru`, `10-jre11-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre11-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre11-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre11-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) + - [`10.0.0-M1-jre11-Semeru-ubuntu-plume`, `10.0.0-M1-Semeru-ubuntu-plume`, `10.0.0-M1-jre11-Semeru-plume`, `10.0.0-M1-Semeru-plume`, `10.0-jre11-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre11-Semeru-plume`, `10.0-Semeru-plume`, `10-jre11-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre11-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plume/Dockerfile) + - [`10.0.0-M1-jre11-Semeru-ubuntu-plus`, `10.0.0-M1-Semeru-ubuntu-plus`, `10.0.0-M1-jre11-Semeru-plus`, `10.0.0-M1-Semeru-plus`, `10.0-jre11-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre11-Semeru-plus`, `10.0-Semeru-plus`, `10-jre11-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre11-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plus/Dockerfile) + - [`10.0.0-M1-jre11-Semeru-ubuntu-webprofile`, `10.0.0-M1-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre11-Semeru-webprofile`, `10.0.0-M1-Semeru-webprofile`, `10.0-jre11-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre11-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre11-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre11-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre17-ubuntu-microprofile`, `10.0.0-M1-jre17-Temurin-microprofile`, `10.0.0-M1-jre17-microprofile`, `10.0.0-M1-jre17-Temurin-ubuntu`, `10.0.0-M1-jre17-ubuntu`, `10.0.0-M1-jre17-Temurin`, `10.0.0-M1-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-ubuntu-plume`, `10.0.0-M1-jre17-ubuntu-plume`, `10.0.0-M1-jre17-Temurin-plume`, `10.0.0-M1-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-ubuntu-plus`, `10.0.0-M1-jre17-ubuntu-plus`, `10.0.0-M1-jre17-Temurin-plus`, `10.0.0-M1-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre17-ubuntu-webprofile`, `10.0.0-M1-jre17-Temurin-webprofile`, `10.0.0-M1-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-alpine-microprofile`, `10.0.0-M1-jre17-alpine-microprofile`, `10.0.0-M1-jre17-Temurin-alpine`, `10.0.0-M1-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-alpine-plume`, `10.0.0-M1-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-alpine-plus`, `10.0.0-M1-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) + - [`10.0.0-M1-jre17-Temurin-alpine-webprofile`, `10.0.0-M1-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) + - [`10.0.0-M1-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre17-Semeru-microprofile`, `10.0.0-M1-jre17-Semeru-ubuntu`, `10.0.0-M1-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) + - [`10.0.0-M1-jre17-Semeru-ubuntu-plume`, `10.0.0-M1-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) + - [`10.0.0-M1-jre17-Semeru-ubuntu-plus`, `10.0.0-M1-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) + - [`10.0.0-M1-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 9bab539aed79..4e95775c3004 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -25,16 +25,27 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`v3.1.0-rc3-windowsservercore-ltsc2022`, `3.1.0-rc3-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/servercore-ltsc2022/Dockerfile) + - [`v3.1.0-rc3-windowsservercore-1809`, `3.1.0-rc3-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/1809/Dockerfile) + - [`v3.1.0-rc3-nanoserver-ltsc2022`, `3.1.0-rc3-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/nanoserver-ltsc2022/Dockerfile) + - [`v3.1.0-rc3`, `3.1.0-rc3`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/alpine/Dockerfile) + - [`v3.0.4-windowsservercore-ltsc2022`, `3.0.4-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/servercore-ltsc2022/Dockerfile) + - [`v3.0.4-windowsservercore-1809`, `3.0.4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/1809/Dockerfile) + - [`v3.0.4-nanoserver-ltsc2022`, `3.0.4-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`v3.0.4`, `3.0.4`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/alpine/Dockerfile) + - [`v2.11.6-windowsservercore-ltsc2022`, `2.11.6-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/servercore-ltsc2022/Dockerfile) + - [`v2.11.6-windowsservercore-1809`, `2.11.6-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/1809/Dockerfile) + - [`v2.11.6-nanoserver-ltsc2022`, `2.11.6-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + - [`v2.11.6`, `2.11.6`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 8be529f52533..4741fb8786b1 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -25,9 +25,13 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-f351639c&id=f351639c499dcde9b2d9e3aeb2b0344c4a01fc1e) + - [`22.04`, `jammy-20240627.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240627.1-0d60927a&id=0d60927a24b045adcfbdb9a80b7db3bf6bd9fd9b) + - [`23.10`, `mantic-20240530`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240530-8dcb055f&id=8dcb055fedbfd33752ede65d6534f702a3b81070) + - [`24.04`, `noble-20240605`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240605-baf9888c&id=baf9888c79d71a0ae98d4ef87c838ca3c91f2245) + - [`24.10`, `oracular-20240617`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240617-43acaa26&id=43acaa26848f20fe7885f00637b5342967c8ae23) # Quick reference (cont.) diff --git a/unit/README.md b/unit/README.md index df36a544cb40..ecd39bd66175 100644 --- a/unit/README.md +++ b/unit/README.md @@ -25,19 +25,33 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.32.1-go1.22`, `go1.22`, `go1`, `go`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.22) + - [`1.32.1-go1.21`, `go1.21`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.21) + - [`1.32.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.jsc11) + - [`1.32.1-node21`, `node21`, `node`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node21) + - [`1.32.1-node20`, `node20`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node20) + - [`1.32.1-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.38) + - [`1.32.1-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.36) + - [`1.32.1-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.3) + - [`1.32.1-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.2) + - [`1.32.1-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.12) + - [`1.32.1-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.11) + - [`1.32.1-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.3) + - [`1.32.1-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.2) + - [`1.32.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.wasm) + - [`1.32.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 261c81f74ee1..9099c01ac82d 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -25,14 +25,23 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`fresh`, `7.5.0`, `7.5`, `latest`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/debian/Dockerfile) + - [`fresh-alpine`, `7.5.0-alpine`, `7.5-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/alpine/Dockerfile) + - [`old`, `7.4.3`, `7.4`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/debian/Dockerfile) + - [`old-alpine`, `7.4.3-alpine`, `7.4-alpine`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/alpine/Dockerfile) + - [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) + - [`7.4.2`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) + - [`7.4.2-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/fresh/alpine/Dockerfile) + - [`7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) + - [`7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/old/alpine/Dockerfile) + - [`6.0.12`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 479e30c29713..c768a56875b6 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -25,22 +25,39 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) + - [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) + - [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) + - [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.ibmjava8) + - [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk11) + - [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) + - [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) + - [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) + - [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) + - [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) + - [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) + - [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 3184eb973a58..0a8c4811c35f 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -25,25 +25,45 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`6.5.5-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.5-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/apache/Dockerfile) + - [`6.5.5-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm/Dockerfile) + - [`6.5.5-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm-alpine/Dockerfile) + - [`6.5.5-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.5`, `6.5`, `6`, `latest`, `6.5.5-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.5-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/apache/Dockerfile) + - [`6.5.5-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.5-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm/Dockerfile) + - [`6.5.5-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.5-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm-alpine/Dockerfile) + - [`6.5.5-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.5-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/apache/Dockerfile) + - [`6.5.5-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm/Dockerfile) + - [`6.5.5-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm-alpine/Dockerfile) + - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) + - [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) + - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) + - [`beta-6.6-RC2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/apache/Dockerfile) + - [`beta-6.6-RC2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm/Dockerfile) + - [`beta-6.6-RC2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm-alpine/Dockerfile) + - [`beta-6.6-RC2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/apache/Dockerfile) + - [`beta-6.6-RC2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm/Dockerfile) + - [`beta-6.6-RC2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm-alpine/Dockerfile) + - [`beta-6.6-RC2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/apache/Dockerfile) + - [`beta-6.6-RC2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm/Dockerfile) + - [`beta-6.6-RC2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 0cc907b17f68..30f35d1ca617 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -25,16 +25,27 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`16`, `16.5`, `16.5.0`, `16-mysql-tomcat`, `16.5-mysql-tomcat`, `16.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mysql-tomcat/Dockerfile) + - [`16-postgres-tomcat`, `16.5-postgres-tomcat`, `16.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/postgres-tomcat/Dockerfile) + - [`16-mariadb-tomcat`, `16.5-mariadb-tomcat`, `16.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mariadb-tomcat/Dockerfile) + - [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) + - [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/postgres-tomcat/Dockerfile) + - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mariadb-tomcat/Dockerfile) + - [`16.4`, `16.4.1`, `16.4-mysql-tomcat`, `16.4.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mysql-tomcat/Dockerfile) + - [`16.4-postgres-tomcat`, `16.4.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/postgres-tomcat/Dockerfile) + - [`16.4-mariadb-tomcat`, `16.4.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mariadb-tomcat/Dockerfile) + - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) + - [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) + - [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index 09016ccb9141..d66ba904b40a 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -25,7 +25,9 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.9.2-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.2`, `1.9`, `1`, `latest`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/apache/Dockerfile) + - [`1.9.2-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm/Dockerfile) + - [`1.9.2-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/znc/README.md b/znc/README.md index 5f0ee5dc8190..2a8b5d3721d3 100644 --- a/znc/README.md +++ b/znc/README.md @@ -25,6 +25,7 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`1.9.1`, `1.9`, `latest`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/full/Dockerfile) + - [`1.9.1-slim`, `1.9-slim`, `slim`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/slim/Dockerfile) # Quick reference (cont.) diff --git a/zookeeper/README.md b/zookeeper/README.md index d92f3e0f3f82..15e387f46bc8 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -25,8 +25,11 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.7.2/Dockerfile) + - [`3.7.2-jre-17`, `3.7-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.7.2/Dockerfile) + - [`3.8.4`, `3.8`, `3.8.4-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.8.4/Dockerfile) + - [`3.9.2`, `3.9`, `3.9.2-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.9.2/Dockerfile) # Quick reference (cont.) From 7163847267f818bd424b53b76c48170631c3aa52 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jul 2024 14:08:48 -0700 Subject: [PATCH 1343/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 3a59a8425f81..3c6efa4c7816 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-4-jdk-oraclelinux9`, `24-ea-4-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-4-jdk-oracle`, `24-ea-4-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-5-jdk-oraclelinux9`, `24-ea-5-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-5-jdk-oracle`, `24-ea-5-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-4-jdk-oraclelinux8`, `24-ea-4-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-5-jdk-oraclelinux8`, `24-ea-5-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-4-jdk-bookworm`, `24-ea-4-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bookworm/Dockerfile) +- [`24-ea-5-jdk-bookworm`, `24-ea-5-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/bookworm/Dockerfile) -- [`24-ea-4-jdk-slim-bookworm`, `24-ea-4-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-4-jdk-slim`, `24-ea-4-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-5-jdk-slim-bookworm`, `24-ea-5-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-5-jdk-slim`, `24-ea-5-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-4-jdk-bullseye`, `24-ea-4-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/bullseye/Dockerfile) +- [`24-ea-5-jdk-bullseye`, `24-ea-5-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/bullseye/Dockerfile) -- [`24-ea-4-jdk-slim-bullseye`, `24-ea-4-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-5-jdk-slim-bullseye`, `24-ea-5-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-4-jdk-windowsservercore-ltsc2022`, `24-ea-4-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-5-jdk-windowsservercore-ltsc2022`, `24-ea-5-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-4-jdk-windowsservercore-1809`, `24-ea-4-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-5-jdk-windowsservercore-1809`, `24-ea-5-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-4-jdk-nanoserver-1809`, `24-ea-4-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-5-jdk-nanoserver-1809`, `24-ea-5-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-29-jdk-oraclelinux9`, `23-ea-29-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-29-jdk-oracle`, `23-ea-29-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-30-jdk-oraclelinux9`, `23-ea-30-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-30-jdk-oracle`, `23-ea-30-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-29-jdk-oraclelinux8`, `23-ea-29-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-30-jdk-oraclelinux8`, `23-ea-30-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-29-jdk-bookworm`, `23-ea-29-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bookworm/Dockerfile) +- [`23-ea-30-jdk-bookworm`, `23-ea-30-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/bookworm/Dockerfile) -- [`23-ea-29-jdk-slim-bookworm`, `23-ea-29-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-29-jdk-slim`, `23-ea-29-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-30-jdk-slim-bookworm`, `23-ea-30-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-30-jdk-slim`, `23-ea-30-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-29-jdk-bullseye`, `23-ea-29-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/bullseye/Dockerfile) +- [`23-ea-30-jdk-bullseye`, `23-ea-30-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/bullseye/Dockerfile) -- [`23-ea-29-jdk-slim-bullseye`, `23-ea-29-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-30-jdk-slim-bullseye`, `23-ea-30-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-29-jdk-windowsservercore-ltsc2022`, `23-ea-29-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-30-jdk-windowsservercore-ltsc2022`, `23-ea-30-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-29-jdk-windowsservercore-1809`, `23-ea-29-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-30-jdk-windowsservercore-1809`, `23-ea-30-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-29-jdk-nanoserver-1809`, `23-ea-29-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-30-jdk-nanoserver-1809`, `23-ea-30-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-4-jdk`, `24-ea-4`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-5-jdk`, `24-ea-5`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-4-jdk-windowsservercore`, `24-ea-4-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-5-jdk-windowsservercore`, `24-ea-5-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-4-jdk-nanoserver`, `24-ea-4-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-5-jdk-nanoserver`, `24-ea-5-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/3d363e20083936cb1fe59597fef8e4b63f61332d/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-29-jdk`, `23-ea-29`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-ea-30-jdk`, `23-ea-30`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-29-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-29-jdk-windowsservercore`, `23-ea-29-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-ea-30-jdk-windowsservercore`, `23-ea-30-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-29-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-29-jdk-nanoserver`, `23-ea-29-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-ea-30-jdk-nanoserver`, `23-ea-30-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-29-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8fb7baaf08ca26dc309e88a259aa0491f18c5a28/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 71286b3ff902f47873e4910def436c14cf4ff8c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jul 2024 16:08:47 -0700 Subject: [PATCH 1344/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- rabbitmq/README.md | 4 ++-- tomcat/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 13ad4e283f2e..92481924298f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a08268e45e6baf5294d964ff9c51ac8be0e75c48/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index feef2f343c71..71a7f6b171c9 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,11 +32,11 @@ WARNING: - [`3.13.4-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/62d163ace25f2a4b3c9affd3f6328e4629df1b37/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index c7bec67faef0..3b956892ea75 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,41 +40,41 @@ WARNING: - [`10.1.25-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.25-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.25-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.90-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.90-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.90-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.90`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.91-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.91-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.91-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.91`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.90-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.90-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.90-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.91-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.91-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.91-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.90-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.90-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.91-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.91-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.90-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.90-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.90-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.91-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.91-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.91-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.90-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.90-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.90-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.91-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.91-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.91-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.90-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.91-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-focal/Dockerfile) -- [`9.0.90-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.91-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-focal/Dockerfile) -- [`9.0.90-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.90-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.91-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.91-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.90-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.90-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.90-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.91-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.91-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.91-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.90-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.90-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.90-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.91-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.91-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.91-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.90-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.91-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-focal/Dockerfile) -- [`9.0.90-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.91-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-focal/Dockerfile) -- [`9.0.90-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.90-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.91-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.91-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.90-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.90-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.90-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.91-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.91-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.91-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.90-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.90-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.90-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.91-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.91-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.91-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.90-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.91-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-focal/Dockerfile) -- [`9.0.90-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.91-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-focal/Dockerfile) -- [`9.0.90-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.90-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/139ed29a3847ee69219a980b34cfa31991713d38/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.91-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.91-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From f7ffa415b9ceda6462c205b6bb3aa7d1ab6836a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Jul 2024 17:08:48 -0700 Subject: [PATCH 1345/2686] Run update.sh --- php/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/php/README.md b/php/README.md index 4146ae84269a..af9dec598367 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.0alpha1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha1-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha1-cli`, `8.4-rc-cli`, `8.4.0alpha1`, `8.4-rc`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.0alpha1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.0alpha1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.0alpha1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.0alpha1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.0alpha1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.0alpha1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.0alpha1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.0alpha1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.0alpha1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.0alpha1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/zts/Dockerfile) + +- [`8.4.0alpha1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/cli/Dockerfile) + +- [`8.4.0alpha1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/fpm/Dockerfile) + +- [`8.4.0alpha1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/zts/Dockerfile) + - [`8.3.9-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.9-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.9-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.9`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/cli/Dockerfile) - [`8.3.9-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.9-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/apache/Dockerfile) From 657084641e6ee08d300e2a5e5004092f15ebdba6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Jul 2024 09:08:54 -0700 Subject: [PATCH 1346/2686] Run update.sh --- node/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/node/README.md b/node/README.md index b464eb102068..7ab60c5de8dd 100644 --- a/node/README.md +++ b/node/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.4-alpine3.19`, `22.4.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.4-alpine3.19`, `22.4.1-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.4-alpine`, `22.4-alpine3.20`, `22.4.0-alpine`, `22.4.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.4-alpine`, `22.4-alpine3.20`, `22.4.1-alpine`, `22.4.1-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.4`, `22.4-bookworm`, `22.4.0`, `22.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.4`, `22.4-bookworm`, `22.4.1`, `22.4.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.4-bookworm-slim`, `22.4-slim`, `22.4.0-bookworm-slim`, `22.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.4-bookworm-slim`, `22.4-slim`, `22.4.1-bookworm-slim`, `22.4.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.4-bullseye`, `22.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.4-bullseye`, `22.4.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.4-bullseye-slim`, `22.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58d00e1735812b2a237b80785ee0924f061cf728/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.4-bullseye-slim`, `22.4.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.0-alpine`, `20.15.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.1-alpine`, `20.15.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.0`, `20.15.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.1`, `20.15.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.0-bookworm-slim`, `20.15.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.1-bookworm-slim`, `20.15.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.15-bullseye`, `20.15.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.15-bullseye`, `20.15.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/73d1fd5cb366c132572dea5cb5a1ad39e1b00d2b/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bullseye-slim/Dockerfile) -- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.3-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.19/Dockerfile) +- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) -- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.3-alpine`, `18.20.3-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/416397c67bb40e186b621d7dc12deb6b0a1ce34e/18/alpine3.20/Dockerfile) +- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.4-alpine`, `18.20.4-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.20/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.3`, `18.20.3-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.4`, `18.20.4-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.3-bookworm-slim`, `18.20.3-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.4-bookworm-slim`, `18.20.4-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.3-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.4-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.3-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d3965ef329265accff145164f06653216e416685/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.4-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bullseye-slim/Dockerfile) # Quick reference (cont.) From 3d7560d3c8033b77016f7c840586c83d1604eb9e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Jul 2024 12:09:24 -0700 Subject: [PATCH 1347/2686] Run update.sh --- bash/README.md | 2 +- lightstreamer/README.md | 8 +++---- neo4j/README.md | 8 +++---- ruby/README.md | 48 ++++++++++++++++++++--------------------- 4 files changed, 33 insertions(+), 33 deletions(-) diff --git a/bash/README.md b/bash/README.md index 4560f557044e..d44b7805b05a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240628`, `devel`, `devel-20240628-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/eb00adce19d44480c6216fd92896f2eda78f06e5/devel/Dockerfile) +- [`devel-20240706`, `devel`, `devel-20240706-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f17b86ca80f75e0c7a0740b9d3ce8865c5d4513/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 9105c484b0ae..0db8be37e192 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -46,13 +46,13 @@ WARNING: - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) -- [`7.4.2-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.2-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk8/Dockerfile) +- [`7.4.4-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.4-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk8/Dockerfile) -- [`7.4.2-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.2-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk11/Dockerfile) +- [`7.4.4-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.4-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk11/Dockerfile) -- [`7.4.2-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.2-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk17/Dockerfile) +- [`7.4.4-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.4-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk17/Dockerfile) -- [`7.4.2-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.2-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.2`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/a5a40050110b2aa65c8ddf1e93db23938e557f1c/7.4/jdk21/Dockerfile) +- [`7.4.4-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.4-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.4`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk21/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 46ea4ab77ca0..5487dde20513 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.21.0-community-bullseye`, `5.21-community-bullseye`, `5-community-bullseye`, `5.21.0-community`, `5.21-community`, `5-community`, `5.21.0-bullseye`, `5.21-bullseye`, `5-bullseye`, `5.21.0`, `5.21`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/community/Dockerfile) +- [`5.21.2-community-bullseye`, `5.21-community-bullseye`, `5-community-bullseye`, `5.21.2-community`, `5.21-community`, `5-community`, `5.21.2-bullseye`, `5.21-bullseye`, `5-bullseye`, `5.21.2`, `5.21`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/bullseye/community/Dockerfile) -- [`5.21.0-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.0-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/bullseye/enterprise/Dockerfile) +- [`5.21.2-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.2-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/bullseye/enterprise/Dockerfile) -- [`5.21.0-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.0-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/community/Dockerfile) +- [`5.21.2-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.2-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/ubi9/community/Dockerfile) -- [`5.21.0-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b1989e4b7222c257c56a1fc432b8bad090c159b8/5.21.0/ubi9/enterprise/Dockerfile) +- [`5.21.2-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/ubi9/enterprise/Dockerfile) - [`4.4.35`, `4.4.35-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/community/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index ef5933b00f9d..d8249fa79771 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-preview1-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-preview1-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/bookworm/Dockerfile) -- [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/slim-bookworm/Dockerfile) -- [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/bullseye/Dockerfile) -- [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/alpine3.20/Dockerfile) -- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/bfd3f474cdaef7cf5ed6741bef80355c62e9ba2f/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.3-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.3`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bookworm/Dockerfile) +- [`3.3.4-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.4`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/bookworm/Dockerfile) -- [`3.3.3-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.3-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bookworm/Dockerfile) +- [`3.3.4-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.4-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/slim-bookworm/Dockerfile) -- [`3.3.3-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/bullseye/Dockerfile) +- [`3.3.4-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/bullseye/Dockerfile) -- [`3.3.3-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/slim-bullseye/Dockerfile) +- [`3.3.4-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/slim-bullseye/Dockerfile) -- [`3.3.3-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.3-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.20/Dockerfile) +- [`3.3.4-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.4-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/alpine3.20/Dockerfile) -- [`3.3.3-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/b8b0053a92b4f7232fe28c45e44a469c032affe2/3.3/alpine3.19/Dockerfile) +- [`3.3.4-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/alpine3.19/Dockerfile) -- [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bookworm/Dockerfile) +- [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/bookworm/Dockerfile) -- [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bookworm/Dockerfile) +- [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/slim-bookworm/Dockerfile) -- [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/bullseye/Dockerfile) +- [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/bullseye/Dockerfile) -- [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/slim-bullseye/Dockerfile) +- [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/slim-bullseye/Dockerfile) -- [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/a4c6c26df171630eca259b1254a8b374c2eb0a43/3.2/alpine3.20/Dockerfile) +- [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/alpine3.20/Dockerfile) -- [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/53646d3dc96008bd20218a4d9aeb5695619fb4f7/3.2/alpine3.19/Dockerfile) +- [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/alpine3.19/Dockerfile) -- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bookworm/Dockerfile) +- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/slim-bookworm/Dockerfile) -- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/bullseye/Dockerfile) +- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/alpine3.20/Dockerfile) -- [`3.1.6-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/74a48e2248ff94c6ebf93958070bafaf5cbdffcc/3.1/alpine3.19/Dockerfile) +- [`3.1.6-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/alpine3.19/Dockerfile) # Quick reference (cont.) From 2f364db6960d3dbeee9cdd7bff46746ab1922121 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 9 Jul 2024 15:37:22 -0700 Subject: [PATCH 1348/2686] =?UTF-8?q?Update=20to=20actions/checkout@v4=20?= =?UTF-8?q?=F0=9F=99=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (this is effectively a functional no-op solving a "problem" that really ought to be solved at a different level within GHA) --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebe9572e6e2a..1d61341dfce3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,29 +19,29 @@ jobs: markdownfmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker pull tianon/markdownfmt - run: .ci/check-markdownfmt.sh ymlfmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker pull tianon/ymlfmt - run: .ci/check-ymlfmt.sh short: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: .ci/check-short.sh required-files: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: .ci/check-required-files.sh no-readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - run: .ci/check-pr-no-readme.sh @@ -49,5 +49,5 @@ jobs: metadata: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: .ci/check-metadata.sh From e8cf9f4b04a1e5936bf188330d552bafb4091499 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jul 2024 09:08:47 -0700 Subject: [PATCH 1349/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 0a8c4811c35f..6d19b8cba56d 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-RC2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-RC3-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC3-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-RC2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-RC3-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-RC2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-RC3-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-RC2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-RC3-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC3`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC3-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC3-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-RC2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-RC3-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC3-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-RC2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-RC3-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC3-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-RC2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-RC3-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC3-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-RC2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-RC3-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-RC2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/df9c4cc5137812cd4bfbab9dcbac68b96d33fc87/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-RC3-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From af34ce785e765d067f2980227a05a990b3947a67 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jul 2024 10:08:47 -0700 Subject: [PATCH 1350/2686] Run update.sh --- registry/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/README.md b/registry/README.md index 0251d5df7cdb..b31e6dfbcaa5 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-alpha.1`](https://github.com/docker/distribution-library-image/blob/6356e8dbe1969f7340ca25a9874faa26e6e6f71d/Dockerfile) +- [`3.0.0-beta.1`](https://github.com/distribution/distribution-library-image/blob/a943e89c3efe06134cd9a4b439203c5341082cbc/Dockerfile) -- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/docker/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) +- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) # Quick reference (cont.) From 3a266fd411a75dcaf22e44782b0eefcd456176f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jul 2024 11:08:54 -0700 Subject: [PATCH 1351/2686] Run update.sh --- python/README.md | 120 ++++++++++++++++++++++----------------------- rabbitmq/README.md | 4 +- 2 files changed, 62 insertions(+), 62 deletions(-) diff --git a/python/README.md b/python/README.md index c1139044e1b2..04f7b7a50774 100644 --- a/python/README.md +++ b/python/README.md @@ -28,136 +28,136 @@ WARNING: ## Simple Tags -- [`3.13.0b3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) +- [`3.13.0b3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bookworm/Dockerfile) -- [`3.13.0b3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0b3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0b3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bullseye/Dockerfile) +- [`3.13.0b3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bullseye/Dockerfile) -- [`3.13.0b3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0b3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0b3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0b3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0b3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) +- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bookworm/Dockerfile) -- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bookworm/Dockerfile) +- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/slim-bookworm/Dockerfile) -- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bullseye/Dockerfile) +- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bullseye/Dockerfile) -- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/slim-bullseye/Dockerfile) +- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/slim-bullseye/Dockerfile) -- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.20/Dockerfile) +- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/alpine3.20/Dockerfile) -- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/alpine3.19/Dockerfile) +- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/alpine3.19/Dockerfile) -- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) +- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bookworm/Dockerfile) -- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bookworm/Dockerfile) +- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/slim-bookworm/Dockerfile) -- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bullseye/Dockerfile) +- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bullseye/Dockerfile) -- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/slim-bullseye/Dockerfile) +- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/alpine3.19/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/alpine3.19/Dockerfile) -- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bookworm/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bullseye/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/alpine3.20/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/alpine3.19/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bookworm/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bullseye/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.20/Dockerfile) +- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/alpine3.20/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/alpine3.19/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/alpine3.19/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bookworm/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bullseye/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.20/Dockerfile) +- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/alpine3.20/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/alpine3.19/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/alpine3.19/Dockerfile) ## Shared Tags - `3.13.0b3`, `3.13-rc`: - - [`3.13.0b3-bookworm`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/bookworm/Dockerfile) - - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0b3-bookworm`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0b3-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a2520ad1af2f65e0cf23e8f53c4a20e6502a4032/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.4`, `3.12`, `3`, `latest`: - - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/bookworm/Dockerfile) - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bookworm/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/3c2ae4b9e0a400a7d1378ff121152d66e3df491e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/bookworm/Dockerfile) - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bookworm/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.9-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/20b3773ebc8443d9249bb1bd7fd4b4ac6f4269a2/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/f7f0ac802a9c6bd2ec5ae6213ab57ba7ec71c147/3.10/bookworm/Dockerfile) + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/d8eb2b33ad9b0afec34e3edf184f809c3012cb60/3.9/bookworm/Dockerfile) + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bookworm/Dockerfile) - `3.8.19`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/78bf492e6a793c950e2b6f678763453f9276f5c0/3.8/bookworm/Dockerfile) + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 71a7f6b171c9..521b74c8afb5 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/ubuntu/Dockerfile) +- [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f269e108493fd46322e88a1753c2af21590094d8/3.13/ubuntu/Dockerfile) - [`3.13.4-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f1d6b407fa37ad6fe4de699fba2724143ff66e34/3.13/alpine/Dockerfile) +- [`3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f269e108493fd46322e88a1753c2af21590094d8/3.13/alpine/Dockerfile) - [`3.13.4-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) From a99f11794fa74b734179277b8b3dcb80f18b09d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Jul 2024 12:08:47 -0700 Subject: [PATCH 1352/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index e81cd64183f4..2e71c584c956 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev1`, `3.1-dev`, `3.1-dev1-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/Dockerfile) +- [`3.1-dev3`, `3.1-dev`, `3.1-dev3-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/da5603561f715baf0d19d0857224a715b899f126/3.1/Dockerfile) -- [`3.1-dev1-alpine`, `3.1-dev-alpine`, `3.1-dev1-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/90192f6c7f183049e1ac746438584e7aa5dc3c2e/3.1/alpine/Dockerfile) +- [`3.1-dev3-alpine`, `3.1-dev-alpine`, `3.1-dev3-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/da5603561f715baf0d19d0857224a715b899f126/3.1/alpine/Dockerfile) - [`3.0.2`, `3.0`, `lts`, `latest`, `3.0.2-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/Dockerfile) From ff682480d94f46461008471932cde8100e192628 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jul 2024 10:08:53 -0700 Subject: [PATCH 1353/2686] Run update.sh --- hylang/README.md | 70 ++++++++++++++++++++++++------------------------ odoo/README.md | 6 ++--- swipl/README.md | 4 +-- 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index 7355c8a9225d..eb62b37340a6 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,89 +28,89 @@ WARNING: ## Simple Tags -- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) -- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) -- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) -- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) -- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) ## Shared Tags - `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: - - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: - - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: - - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: - - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: - - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: - - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - `0.29.0-pypy3.9`, `0.29-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d800afaded561e73bfd169af3cac158b2c42e1c9/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) + - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index ff9ada59aaee..1936e1acb866 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240624`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/17.0/Dockerfile) +- [`17.0-20240711`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/17.0/Dockerfile) -- [`16.0-20240624`, `16.0`, `16`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/16.0/Dockerfile) +- [`16.0-20240711`, `16.0`, `16`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/16.0/Dockerfile) -- [`15.0-20240624`, `15.0`, `15`](https://github.com/odoo/docker/blob/a25c36df57efc4fe900f04b97cef0e92d5f1a09f/15.0/Dockerfile) +- [`15.0-20240711`, `15.0`, `15`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/15.0/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index ec73df9cb0d3..0ef68445b6bc 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.6`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.3.6/bookworm/Dockerfile) +- [`latest`, `9.3.8`](https://github.com/SWI-Prolog/docker-swipl/blob/debcf80f61dab217a2ade259a203a2b9e6f0a268/9.3.8/bookworm/Dockerfile) -- [`stable`, `9.2.5`](https://github.com/SWI-Prolog/docker-swipl/blob/e5e2a61337a7f21d8b6c53fb6521d507b9d48771/9.2.5/bookworm/Dockerfile) +- [`stable`, `9.2.5`](https://github.com/SWI-Prolog/docker-swipl/blob/debcf80f61dab217a2ade259a203a2b9e6f0a268/9.2.5/bookworm/Dockerfile) # Quick reference (cont.) From 7adc25a8e8163598dde66106a7142cd9432cb10a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jul 2024 11:08:54 -0700 Subject: [PATCH 1354/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 5bfc072c10a0..6ad991f3d50d 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/elasticsearch/Dockerfile) +- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/elasticsearch/Dockerfile) - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 8728c88417c9..a7476d25ddcf 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/kibana/Dockerfile) +- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/kibana/Dockerfile) - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 56298e6f8a7b..698582f6a54d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.2`](https://github.com/elastic/dockerfiles/blob/6a774f1d36237237d5eda06004226f05ef409bf7/logstash/Dockerfile) +- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/logstash/Dockerfile) - [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/logstash/Dockerfile) From 20141ca71fef53e0c1da5b3f61f066ef4a4ebecf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jul 2024 12:08:47 -0700 Subject: [PATCH 1355/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 92481924298f..09601837e301 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/13d3ed67efbee3ff5de5bb595100a9bde7237ea9/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7-slim-fips/Dockerfile) # Quick reference (cont.) From 2c9ca75ae8a602d08e45f2a8a91788404e296bd0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jul 2024 14:08:49 -0700 Subject: [PATCH 1356/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4571a7952d17..faf2893bd04f 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240701.0`](https://github.com/amazonlinux/container-images/blob/3bbb9c330290a57dce82f86e126abfae5f158796/Dockerfile) +- [`2023`, `latest`, `2023.5.20240708.0`](https://github.com/amazonlinux/container-images/blob/9aa5efdadd1dbd202f24e6425831f550a005700d/Dockerfile) - [`2`, `2.0.20240620.0`](https://github.com/amazonlinux/container-images/blob/3940ec6a9ed3bbb1dd7ccca2fcfcc4a28213588a/Dockerfile) From 85244febca8a44c4c7dc3d696ff0532854ab7244 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Jul 2024 17:08:50 -0700 Subject: [PATCH 1357/2686] Run update.sh --- docker/README.md | 40 ++++++++++++++++++++-------------------- haproxy/README.md | 4 ++-- influxdb/README.md | 32 ++++++++++++++++---------------- 3 files changed, 38 insertions(+), 38 deletions(-) diff --git a/docker/README.md b/docker/README.md index ed86c36f391d..370723c8a9ad 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,67 +28,67 @@ WARNING: ## Simple Tags -- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/27/cli/Dockerfile) +- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/cli/Dockerfile) - [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) - [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) -- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) +- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/b348a31fc955dd6500a4aa9537bbef51688a181e/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/windows/windowsservercore-1809/Dockerfile) + - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ab4a58f46763f976f9eb9d0c3379c389c0211928/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0de39b0b5c83f4f2d849f2e41b91a2eec7645f83/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/581ac7f48197b1b82993873d04de0a6c6431df22/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 2e71c584c956..d371b26d52d8 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.1-dev3-alpine`, `3.1-dev-alpine`, `3.1-dev3-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/da5603561f715baf0d19d0857224a715b899f126/3.1/alpine/Dockerfile) -- [`3.0.2`, `3.0`, `lts`, `latest`, `3.0.2-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/Dockerfile) +- [`3.0.3`, `3.0`, `lts`, `latest`, `3.0.3-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/Dockerfile) -- [`3.0.2-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.2-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/12bf60c7685bdfa526057a0ccf89967291106b4c/3.0/alpine/Dockerfile) +- [`3.0.3-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.3-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/alpine/Dockerfile) - [`2.9.9`, `2.9`, `2.9.9-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 0c6c56f298f4..f5e9b8185b9b 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aaea43796c7833895f32ecea4ff36048cc809786/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From aebc0b291f906dc40ec7ea9dd2188b02c7637e55 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jul 2024 10:08:49 -0700 Subject: [PATCH 1358/2686] Run update.sh --- jetty/README.md | 64 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/jetty/README.md b/jetty/README.md index 368c233503c8..73f993506d81 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -70,6 +70,22 @@ WARNING: - [`12.0.11-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.11-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.10-jre21-alpine`, `12.0.10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre21-alpine/Dockerfile) + +- [`12.0.10-jre21`, `12.0.10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre21/Dockerfile) + +- [`12.0.10-jre17-alpine`, `12.0.10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre17-alpine/Dockerfile) + +- [`12.0.10-jre17`, `12.0.10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre17/Dockerfile) + +- [`12.0.10-jdk21-alpine`, `12.0.10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk21-alpine/Dockerfile) + +- [`12.0.10`, `12.0.10-jdk21`, `12.0.10-eclipse-temurin`, `12.0.10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk21/Dockerfile) + +- [`12.0.10-jdk17-alpine`, `12.0.10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk17-alpine/Dockerfile) + +- [`12.0.10-jdk17`, `12.0.10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk17/Dockerfile) + - [`11.0.22-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.22-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21-alpine/Dockerfile) - [`11.0.22-jre21`, `11.0-jre21`, `11-jre21`, `11.0.22-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21/Dockerfile) @@ -94,6 +110,30 @@ WARNING: - [`11.0.22-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.22-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.21-jre21-alpine`, `11.0.21-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre21-alpine/Dockerfile) + +- [`11.0.21-jre21`, `11.0.21-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre21/Dockerfile) + +- [`11.0.21-jre17-alpine`, `11.0.21-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre17-alpine/Dockerfile) + +- [`11.0.21-jre17`, `11.0.21-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre17/Dockerfile) + +- [`11.0.21-jre11-alpine`, `11.0.21-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre11-alpine/Dockerfile) + +- [`11.0.21-jre11`, `11.0.21-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre11/Dockerfile) + +- [`11.0.21-jdk21-alpine`, `11.0.21-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk21-alpine/Dockerfile) + +- [`11.0.21`, `11.0.21-jdk21`, `11.0.21-eclipse-temurin`, `11.0.21-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk21/Dockerfile) + +- [`11.0.21-jdk17-alpine`, `11.0.21-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk17-alpine/Dockerfile) + +- [`11.0.21-jdk17`, `11.0.21-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk17/Dockerfile) + +- [`11.0.21-jdk11-alpine`, `11.0.21-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk11-alpine/Dockerfile) + +- [`11.0.21-jdk11`, `11.0.21-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk11/Dockerfile) + - [`10.0.22-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.22-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21-alpine/Dockerfile) - [`10.0.22-jre21`, `10.0-jre21`, `10-jre21`, `10.0.22-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21/Dockerfile) @@ -118,6 +158,30 @@ WARNING: - [`10.0.22-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.22-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.21-jre21-alpine`, `10.0.21-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre21-alpine/Dockerfile) + +- [`10.0.21-jre21`, `10.0.21-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre21/Dockerfile) + +- [`10.0.21-jre17-alpine`, `10.0.21-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre17-alpine/Dockerfile) + +- [`10.0.21-jre17`, `10.0.21-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre17/Dockerfile) + +- [`10.0.21-jre11-alpine`, `10.0.21-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre11-alpine/Dockerfile) + +- [`10.0.21-jre11`, `10.0.21-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre11/Dockerfile) + +- [`10.0.21-jdk21-alpine`, `10.0.21-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk21-alpine/Dockerfile) + +- [`10.0.21`, `10.0.21-jdk21`, `10.0.21-eclipse-temurin`, `10.0.21-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk21/Dockerfile) + +- [`10.0.21-jdk17-alpine`, `10.0.21-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk17-alpine/Dockerfile) + +- [`10.0.21-jdk17`, `10.0.21-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk17/Dockerfile) + +- [`10.0.21-jdk11-alpine`, `10.0.21-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk11-alpine/Dockerfile) + +- [`10.0.21-jdk11`, `10.0.21-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk11/Dockerfile) + - [`9.4.55-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - [`9.4.55-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8/Dockerfile) From 3c1fc5e88ebaa0e82992ea46387673ee80d5df6d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jul 2024 11:09:06 -0700 Subject: [PATCH 1359/2686] Run update.sh --- api-firewall/README.md | 2 +- crate/README.md | 4 +--- fedora/README.md | 8 +++----- gradle/README.md | 36 ++++++++++++++++++------------------ liquibase/README.md | 4 ++-- 5 files changed, 25 insertions(+), 29 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index e6156dd690c2..d14323dbe24f 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.7.3`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/c63bbed490a94a2ea89c6ea656592f15ffb9cb92/0.7.3/Dockerfile) +- [`0.7.4`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0ea1be5ada7c57564afb40d303b32eea3282c778/0.7.4/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 6e80ec19afce..835e355890e7 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,14 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.2`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/aa2d1170ed5040ca10b99dcee4f8b63190e5b3c1/Dockerfile) +- [`5.7.3`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/72ee4689255f3f67ff7e3a39af19fe8b53263dbf/Dockerfile) - [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) - [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) -- [`5.4.8`, `5.4`](https://github.com/crate/docker-crate/blob/87d8fc91744a3760211335884ba8cb82884451c2/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/fedora/README.md b/fedora/README.md index bd1658744df8..ea8f486f8948 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`38`](https://github.com/fedora-cloud/docker-brew-fedora/blob/793480f5cc9e9ab1c530803fa9c573267b453678/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b437eac0888c8d19b668eb5ea5ee6419fe9b212c/x86_64/Dockerfile) -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3a007c3e0e2cd2c7e4196e8f534a5de7b0303775/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a6d8c7a70cfeac384560e39d12d6734e5cd45c3c/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1c3015854b7ccfd458331f5a7a77886c26d7014/x86_64/Dockerfile) - -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/333a04d60e14cc6d735679925ed1da6f05bee622/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a9c81afc3165034349f390c1df17019e0e40c947/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 1863ae69067d..128692c17299 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.8.0-jdk8`, `8.8-jdk8`, `8-jdk8`, `jdk8`, `8.8.0-jdk8-jammy`, `8.8-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8/Dockerfile) +- [`8.9.0-jdk8`, `8.9-jdk8`, `8-jdk8`, `jdk8`, `8.9.0-jdk8-jammy`, `8.9-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk8/Dockerfile) -- [`8.8.0-jdk8-focal`, `8.8-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk8-focal/Dockerfile) +- [`8.9.0-jdk8-focal`, `8.9-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk8-focal/Dockerfile) -- [`8.8.0-jdk11`, `8.8-jdk11`, `8-jdk11`, `jdk11`, `8.8.0-jdk11-jammy`, `8.8-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11/Dockerfile) +- [`8.9.0-jdk11`, `8.9-jdk11`, `8-jdk11`, `jdk11`, `8.9.0-jdk11-jammy`, `8.9-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11/Dockerfile) -- [`8.8.0-jdk11-focal`, `8.8-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-focal/Dockerfile) +- [`8.9.0-jdk11-focal`, `8.9-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11-focal/Dockerfile) -- [`8.8.0-jdk11-alpine`, `8.8-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk11-alpine/Dockerfile) +- [`8.9.0-jdk11-alpine`, `8.9-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11-alpine/Dockerfile) -- [`8.8.0-jdk17`, `8.8-jdk17`, `8-jdk17`, `jdk17`, `8.8.0-jdk17-jammy`, `8.8-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17/Dockerfile) +- [`8.9.0-jdk17`, `8.9-jdk17`, `8-jdk17`, `jdk17`, `8.9.0-jdk17-jammy`, `8.9-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17/Dockerfile) -- [`8.8.0-jdk17-focal`, `8.8-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.8.0-jdk-focal`, `8.8-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.8.0-focal`, `8.8-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-focal/Dockerfile) +- [`8.9.0-jdk17-focal`, `8.9-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.9.0-jdk-focal`, `8.9-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.9.0-focal`, `8.9-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-focal/Dockerfile) -- [`8.8.0-jdk17-alpine`, `8.8-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.8.0-jdk-alpine`, `8.8-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-alpine/Dockerfile) +- [`8.9.0-jdk17-alpine`, `8.9-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.9.0-jdk-alpine`, `8.9-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-alpine/Dockerfile) -- [`8.8.0-jdk17-graal`, `8.8-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.8.0-jdk-graal`, `8.8-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.8.0-graal`, `8.8-graal`, `8-graal`, `graal`, `8.8.0-jdk17-graal-jammy`, `8.8-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.8.0-jdk-graal-jammy`, `8.8-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.8.0-graal-jammy`, `8.8-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk17-graal/Dockerfile) +- [`8.9.0-jdk17-graal`, `8.9-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.9.0-jdk-graal`, `8.9-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.9.0-graal`, `8.9-graal`, `8-graal`, `graal`, `8.9.0-jdk17-graal-jammy`, `8.9-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.9.0-jdk-graal-jammy`, `8.9-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.9.0-graal-jammy`, `8.9-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-graal/Dockerfile) -- [`8.8.0-jdk21`, `8.8-jdk21`, `8-jdk21`, `jdk21`, `8.8.0-jdk21-jammy`, `8.8-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.8.0-jdk`, `8.8-jdk`, `8-jdk`, `jdk`, `8.8.0`, `8.8`, `8`, `8.8.0-jdk-jammy`, `8.8-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.8.0-jammy`, `8.8-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21/Dockerfile) +- [`8.9.0-jdk21`, `8.9-jdk21`, `8-jdk21`, `jdk21`, `8.9.0-jdk21-jammy`, `8.9-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.9.0-jdk`, `8.9-jdk`, `8-jdk`, `jdk`, `8.9.0`, `8.9`, `8`, `8.9.0-jdk-jammy`, `8.9-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.9.0-jammy`, `8.9-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21/Dockerfile) -- [`8.8.0-jdk21-alpine`, `8.8-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.8.0-alpine`, `8.8-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-alpine/Dockerfile) +- [`8.9.0-jdk21-alpine`, `8.9-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.9.0-alpine`, `8.9-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21-alpine/Dockerfile) -- [`8.8.0-jdk21-graal`, `8.8-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.8.0-jdk21-graal-jammy`, `8.8-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk21-graal/Dockerfile) +- [`8.9.0-jdk21-graal`, `8.9-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.9.0-jdk21-graal-jammy`, `8.9-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21-graal/Dockerfile) -- [`8.8.0-jdk22`, `8.8-jdk22`, `8-jdk22`, `jdk22`, `8.8.0-jdk22-jammy`, `8.8-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22/Dockerfile) +- [`8.9.0-jdk22`, `8.9-jdk22`, `8-jdk22`, `jdk22`, `8.9.0-jdk22-jammy`, `8.9-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22/Dockerfile) -- [`8.8.0-jdk22-alpine`, `8.8-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-alpine/Dockerfile) +- [`8.9.0-jdk22-alpine`, `8.9-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22-alpine/Dockerfile) -- [`8.8.0-jdk22-graal`, `8.8-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk22-graal/Dockerfile) +- [`8.9.0-jdk22-graal`, `8.9-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22-graal/Dockerfile) -- [`8.8.0-jdk-lts-and-current`, `8.8-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.8.0-jdk-lts-and-current-jammy`, `8.8-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.8.0-jdk-21-and-22`, `8.8-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.8.0-jdk-21-and-22-jammy`, `8.8-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current/Dockerfile) +- [`8.9.0-jdk-lts-and-current`, `8.9-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.9.0-jdk-lts-and-current-jammy`, `8.9-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.9.0-jdk-21-and-22`, `8.9-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.9.0-jdk-21-and-22-jammy`, `8.9-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current/Dockerfile) -- [`8.8.0-jdk-lts-and-current-alpine`, `8.8-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.8.0-jdk-21-and-22-alpine`, `8.8-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-alpine/Dockerfile) +- [`8.9.0-jdk-lts-and-current-alpine`, `8.9-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.9.0-jdk-21-and-22-alpine`, `8.9-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current-alpine/Dockerfile) -- [`8.8.0-jdk-lts-and-current-graal`, `8.8-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.8.0-jdk-lts-and-current-graal-jammy`, `8.8-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.8.0-jdk-21-and-22-graal`, `8.8-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.8.0-jdk-21-and-22-graal-jammy`, `8.8-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f0a6db274bded26d03d8d3a405003e4eddbd1f9/jdk-lts-and-current-graal/Dockerfile) +- [`8.9.0-jdk-lts-and-current-graal`, `8.9-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.9.0-jdk-lts-and-current-graal-jammy`, `8.9-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.9.0-jdk-21-and-22-graal`, `8.9-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.9.0-jdk-21-and-22-graal-jammy`, `8.9-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/liquibase/README.md b/liquibase/README.md index dd1e9071788f..999b3d57c5e7 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.28`, `4.28.0`, `4.28.0.1`, `latest`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile) +- [`4.28`, `4.28.0`, `4.28.0.1`, `latest`](https://github.com/liquibase/docker/blob/666d1c82ff5b6f3a282a7dc2767ae6d95be82ad3/Dockerfile) -- [`4.28-alpine`, `4.28.0-alpine`, `4.28.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/fd4c7b81522d7956289e7534078390212b2f77f4/Dockerfile.alpine) +- [`4.28-alpine`, `4.28.0-alpine`, `4.28.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/666d1c82ff5b6f3a282a7dc2767ae6d95be82ad3/Dockerfile.alpine) # Quick reference (cont.) From cc00269c4ccd96ac16cd6fbec6a2fc20bbc0f227 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jul 2024 14:09:03 -0700 Subject: [PATCH 1360/2686] Run update.sh --- drupal/README.md | 24 ++++++++-------- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ tomcat/README.md | 12 ++++---- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 098f8718bddd..7f669c85f253 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-beta1-php8.3-apache-bookworm`, `11.0-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `11.0.0-beta1-php8.3-apache`, `11.0-rc-php8.3-apache`, `rc-php8.3-apache`, `11.0.0-beta1-php8.3`, `11.0-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bookworm/Dockerfile) +- [`11.0.0-rc1-php8.3-apache-bookworm`, `11.0-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `11.0.0-rc1-php8.3-apache`, `11.0-rc-php8.3-apache`, `rc-php8.3-apache`, `11.0.0-rc1-php8.3`, `11.0-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/apache-bookworm/Dockerfile) -- [`11.0.0-beta1-php8.3-fpm-bookworm`, `11.0-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `11.0.0-beta1-php8.3-fpm`, `11.0-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.0-rc1-php8.3-fpm-bookworm`, `11.0-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `11.0.0-rc1-php8.3-fpm`, `11.0-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.0-beta1-php8.3-apache-bullseye`, `11.0-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/apache-bullseye/Dockerfile) +- [`11.0.0-rc1-php8.3-apache-bullseye`, `11.0-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/apache-bullseye/Dockerfile) -- [`11.0.0-beta1-php8.3-fpm-bullseye`, `11.0-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.0-rc1-php8.3-fpm-bullseye`, `11.0-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.0-beta1-php8.3-fpm-alpine3.20`, `11.0-rc-php8.3-fpm-alpine3.20`, `rc-php8.3-fpm-alpine3.20`, `11.0.0-beta1-php8.3-fpm-alpine`, `11.0-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.0-rc1-php8.3-fpm-alpine3.20`, `11.0-rc-php8.3-fpm-alpine3.20`, `rc-php8.3-fpm-alpine3.20`, `11.0.0-rc1-php8.3-fpm-alpine`, `11.0-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.0-beta1-php8.3-fpm-alpine3.19`, `11.0-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.0-rc1-php8.3-fpm-alpine3.19`, `11.0-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-alpine3.19/Dockerfile) -- [`11.0.0-beta1-php8.2-apache-bookworm`, `11.0-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `11.0.0-beta1-php8.2-apache`, `11.0-rc-php8.2-apache`, `rc-php8.2-apache`, `11.0.0-beta1-php8.2`, `11.0-rc-php8.2`, `rc-php8.2`, `11.0.0-beta1-apache-bookworm`, `11.0-rc-apache-bookworm`, `rc-apache-bookworm`, `11.0.0-beta1-apache`, `11.0-rc-apache`, `rc-apache`, `11.0.0-beta1`, `11.0-rc`, `rc`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bookworm/Dockerfile) +- [`11.0.0-rc1-php8.2-apache-bookworm`, `11.0-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `11.0.0-rc1-php8.2-apache`, `11.0-rc-php8.2-apache`, `rc-php8.2-apache`, `11.0.0-rc1-php8.2`, `11.0-rc-php8.2`, `rc-php8.2`, `11.0.0-rc1-apache-bookworm`, `11.0-rc-apache-bookworm`, `rc-apache-bookworm`, `11.0.0-rc1-apache`, `11.0-rc-apache`, `rc-apache`, `11.0.0-rc1`, `11.0-rc`, `rc`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/apache-bookworm/Dockerfile) -- [`11.0.0-beta1-php8.2-fpm-bookworm`, `11.0-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `11.0.0-beta1-php8.2-fpm`, `11.0-rc-php8.2-fpm`, `rc-php8.2-fpm`, `11.0.0-beta1-fpm-bookworm`, `11.0-rc-fpm-bookworm`, `rc-fpm-bookworm`, `11.0.0-beta1-fpm`, `11.0-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bookworm/Dockerfile) +- [`11.0.0-rc1-php8.2-fpm-bookworm`, `11.0-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `11.0.0-rc1-php8.2-fpm`, `11.0-rc-php8.2-fpm`, `rc-php8.2-fpm`, `11.0.0-rc1-fpm-bookworm`, `11.0-rc-fpm-bookworm`, `rc-fpm-bookworm`, `11.0.0-rc1-fpm`, `11.0-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-bookworm/Dockerfile) -- [`11.0.0-beta1-php8.2-apache-bullseye`, `11.0-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `11.0.0-beta1-apache-bullseye`, `11.0-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/apache-bullseye/Dockerfile) +- [`11.0.0-rc1-php8.2-apache-bullseye`, `11.0-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `11.0.0-rc1-apache-bullseye`, `11.0-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/apache-bullseye/Dockerfile) -- [`11.0.0-beta1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-beta1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-bullseye/Dockerfile) +- [`11.0.0-rc1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-rc1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-bullseye/Dockerfile) -- [`11.0.0-beta1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-beta1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-beta1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-beta1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) +- [`11.0.0-rc1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-rc1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-rc1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-rc1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) -- [`11.0.0-beta1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-beta1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/21e8f7baa1bf58761ea68149c8210836bc69b472/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) +- [`11.0.0-rc1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-rc1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) - [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 3c6efa4c7816..17ae5eb1c5c0 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-5-jdk-oraclelinux9`, `24-ea-5-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-5-jdk-oracle`, `24-ea-5-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-6-jdk-oraclelinux9`, `24-ea-6-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-6-jdk-oracle`, `24-ea-6-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-5-jdk-oraclelinux8`, `24-ea-5-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-6-jdk-oraclelinux8`, `24-ea-6-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-5-jdk-bookworm`, `24-ea-5-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/bookworm/Dockerfile) +- [`24-ea-6-jdk-bookworm`, `24-ea-6-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/bookworm/Dockerfile) -- [`24-ea-5-jdk-slim-bookworm`, `24-ea-5-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-5-jdk-slim`, `24-ea-5-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-6-jdk-slim-bookworm`, `24-ea-6-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-6-jdk-slim`, `24-ea-6-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-5-jdk-bullseye`, `24-ea-5-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/bullseye/Dockerfile) +- [`24-ea-6-jdk-bullseye`, `24-ea-6-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/bullseye/Dockerfile) -- [`24-ea-5-jdk-slim-bullseye`, `24-ea-5-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-6-jdk-slim-bullseye`, `24-ea-6-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-5-jdk-windowsservercore-ltsc2022`, `24-ea-5-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-6-jdk-windowsservercore-ltsc2022`, `24-ea-6-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-5-jdk-windowsservercore-1809`, `24-ea-5-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-6-jdk-windowsservercore-1809`, `24-ea-6-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-5-jdk-nanoserver-1809`, `24-ea-5-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-6-jdk-nanoserver-1809`, `24-ea-6-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-30-jdk-oraclelinux9`, `23-ea-30-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-30-jdk-oracle`, `23-ea-30-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-31-jdk-oraclelinux9`, `23-ea-31-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-31-jdk-oracle`, `23-ea-31-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-30-jdk-oraclelinux8`, `23-ea-30-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-31-jdk-oraclelinux8`, `23-ea-31-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-30-jdk-bookworm`, `23-ea-30-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/bookworm/Dockerfile) +- [`23-ea-31-jdk-bookworm`, `23-ea-31-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/bookworm/Dockerfile) -- [`23-ea-30-jdk-slim-bookworm`, `23-ea-30-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-30-jdk-slim`, `23-ea-30-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-31-jdk-slim-bookworm`, `23-ea-31-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-31-jdk-slim`, `23-ea-31-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-30-jdk-bullseye`, `23-ea-30-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/bullseye/Dockerfile) +- [`23-ea-31-jdk-bullseye`, `23-ea-31-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/bullseye/Dockerfile) -- [`23-ea-30-jdk-slim-bullseye`, `23-ea-30-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-31-jdk-slim-bullseye`, `23-ea-31-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-30-jdk-windowsservercore-ltsc2022`, `23-ea-30-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-31-jdk-windowsservercore-ltsc2022`, `23-ea-31-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-30-jdk-windowsservercore-1809`, `23-ea-30-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-31-jdk-windowsservercore-1809`, `23-ea-31-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-30-jdk-nanoserver-1809`, `23-ea-30-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-31-jdk-nanoserver-1809`, `23-ea-31-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-5-jdk`, `24-ea-5`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-6-jdk`, `24-ea-6`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-5-jdk-windowsservercore`, `24-ea-5-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-6-jdk-windowsservercore`, `24-ea-6-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-5-jdk-nanoserver`, `24-ea-5-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-6-jdk-nanoserver`, `24-ea-6-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8a834e11974725684e817f370310bb13bbab7ed9/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-30-jdk`, `23-ea-30`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-ea-31-jdk`, `23-ea-31`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-30-jdk-windowsservercore`, `23-ea-30-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-ea-31-jdk-windowsservercore`, `23-ea-31-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-30-jdk-nanoserver`, `23-ea-30-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-ea-31-jdk-nanoserver`, `23-ea-31-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bc62b39c4ddac1a0a98c61d91b6a12cdba24264f/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 3b956892ea75..e99dd8ebb1fe 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -28,17 +28,17 @@ WARNING: - [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.25-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.25-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.25-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.25`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.26-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.26-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.26-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.26`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.25-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.25-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.25-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.26-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.26-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.26-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.25-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.25-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.25-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.26-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.26-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.26-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.25-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.25-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.25-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.26-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.26-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.26-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.25-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.25-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.25-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.26-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.26-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.26-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.25-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.25-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.25-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/3f32851578fdc88622b6dd24c83fef4195249c2d/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.26-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.26-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.26-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.91-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.91-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.91-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.91`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/temurin-jammy/Dockerfile) From 6f24346eba41b4d63ea4f08b6b952055b8bce5cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Jul 2024 15:08:50 -0700 Subject: [PATCH 1361/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 7714af77f1cc..d70b2602a56c 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.87.1`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/debian/Dockerfile) +- [`5.87.2`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/035db75f8de147549cc5b665ab8c97fa9f3ed2cb/5/debian/Dockerfile) -- [`5.87.1-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5018c52524d50890500bdde0194d4443ccf7305f/5/alpine/Dockerfile) +- [`5.87.2-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/035db75f8de147549cc5b665ab8c97fa9f3ed2cb/5/alpine/Dockerfile) # Quick reference (cont.) From 07915384a1e038b9f5eec3cd579b7a5e817752ba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Jul 2024 12:08:52 -0700 Subject: [PATCH 1362/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 82f4c4cd3237..6a805fd5204b 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base) +- [`latest`, `base`, `base-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.base) -- [`base-devel`, `base-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240101.0.204074`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4caef241ef62b1e01362a6d0c7eab7f6149aa3be/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index b954612fd716..7d5bb895b21d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1488533b57265100236f37b95475c355fdac8255/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f4043e617e4ffc33dff4ce58b0a7bf9ad85f9b41/Dockerfile) # Quick reference (cont.) From a43e3a82941c5b9de71296765bc082eed6550038 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Jul 2024 13:08:52 -0700 Subject: [PATCH 1363/2686] Run update.sh --- traefik/README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 4e95775c3004..d6386cd695e8 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.0-rc3-windowsservercore-ltsc2022`, `3.1.0-rc3-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.0-windowsservercore-ltsc2022`, `3.1.0-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.0-rc3-windowsservercore-1809`, `3.1.0-rc3-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/1809/Dockerfile) +- [`v3.1.0-windowsservercore-1809`, `3.1.0-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/1809/Dockerfile) -- [`v3.1.0-rc3-nanoserver-ltsc2022`, `3.1.0-rc3-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.0-nanoserver-ltsc2022`, `3.1.0-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.0-rc3`, `3.1.0-rc3`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/30b5ca403f1a1caef4c6b91112616eec405c4d95/v3.1/alpine/Dockerfile) - -- [`v3.0.4-windowsservercore-ltsc2022`, `3.0.4-windowsservercore-ltsc2022`, `v3.0-windowsservercore-ltsc2022`, `3.0-windowsservercore-ltsc2022`, `beaufort-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/servercore-ltsc2022/Dockerfile) - -- [`v3.0.4-windowsservercore-1809`, `3.0.4-windowsservercore-1809`, `v3.0-windowsservercore-1809`, `3.0-windowsservercore-1809`, `beaufort-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/1809/Dockerfile) - -- [`v3.0.4-nanoserver-ltsc2022`, `3.0.4-nanoserver-ltsc2022`, `v3.0-nanoserver-ltsc2022`, `3.0-nanoserver-ltsc2022`, `beaufort-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`v3.0.4`, `3.0.4`, `v3.0`, `3.0`, `beaufort`, `latest`](https://github.com/traefik/traefik-library-image/blob/10af0cbf05f6af64df7062738a2d612bd95a5e3b/v3.0/alpine/Dockerfile) +- [`v3.1.0`, `3.1.0`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/alpine/Dockerfile) - [`v2.11.6-windowsservercore-ltsc2022`, `2.11.6-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/servercore-ltsc2022/Dockerfile) From 4f885e076da1a0d3a11fcb1fac74a2a6102c2984 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Jul 2024 15:08:57 -0700 Subject: [PATCH 1364/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 6d19b8cba56d..035071eaf563 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-RC3-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC3-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/apache/Dockerfile) +- [`beta-6.6-RC4-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC4-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/apache/Dockerfile) -- [`beta-6.6-RC3-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/fpm/Dockerfile) +- [`beta-6.6-RC4-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/fpm/Dockerfile) -- [`beta-6.6-RC3-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.6-RC4-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.6-RC3-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC3`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC3-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC3-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/apache/Dockerfile) +- [`beta-6.6-RC4-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC4`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC4-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC4-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/apache/Dockerfile) -- [`beta-6.6-RC3-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC3-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/fpm/Dockerfile) +- [`beta-6.6-RC4-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC4-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/fpm/Dockerfile) -- [`beta-6.6-RC3-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC3-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.6-RC4-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC4-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.6-RC3-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC3-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/apache/Dockerfile) +- [`beta-6.6-RC4-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC4-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/apache/Dockerfile) -- [`beta-6.6-RC3-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/fpm/Dockerfile) +- [`beta-6.6-RC4-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/fpm/Dockerfile) -- [`beta-6.6-RC3-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e5544dda3d10e8087068aedce42e4f316646c40e/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.6-RC4-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 66f87014ef770e50355291ee2f0086a27e1c1a73 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Jul 2024 16:08:49 -0700 Subject: [PATCH 1365/2686] Run update.sh --- mongo/README.md | 86 +++++++++++++++++-------------------------------- 1 file changed, 30 insertions(+), 56 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index a2f64ea532c1..9a5f7d90237d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc11-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) +- [`8.0.0-rc13-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/Dockerfile) -- [`8.0.0-rc11-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc13-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc11-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc13-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc11-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc13-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc11-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc13-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) @@ -58,43 +58,33 @@ WARNING: - [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.28-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) +- [`5.0.28-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) -- [`5.0.28-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.28-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.28-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.28-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.28-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.28-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.28-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`5.0.27-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - -- [`5.0.27-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.27-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.27-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.27-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.28-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8.0.0-rc11`, `8.0-rc`: +- `8.0.0-rc13`, `8.0-rc`: - - [`8.0.0-rc11-jammy`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/Dockerfile) - - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc13-jammy`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/Dockerfile) + - [`8.0.0-rc13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc11-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc13-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc11-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc11-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc13-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc11-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8598bc41c6b3f5915de3dfca5deac49a99252474/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc13-nanoserver-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: @@ -128,37 +118,21 @@ WARNING: - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.28-rc0`, `5.0-rc`: - - - [`5.0.28-rc0-focal`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/Dockerfile) - - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `5.0.28-rc0-windowsservercore`, `5.0-rc-windowsservercore`: - - - [`5.0.28-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.28-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `5.0.28-rc0-nanoserver`, `5.0-rc-nanoserver`: - - - [`5.0.28-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.28-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9668538655744192b58d750c167932bbd7743899/5.0-rc/windows/nanoserver-1809/Dockerfile) - -- `5.0.27`, `5.0`, `5`: +- `5.0.28`, `5.0`, `5`: - - [`5.0.27-focal`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/Dockerfile) - - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.28-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) + - [`5.0.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.27-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: +- `5.0.28-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.27-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.27-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d1b988343d35d517c36a8ffb4eedff4044acda9c/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.27-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: +- `5.0.28-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.27-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.27-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9aecfc0ac2fe64bae4baa4fe88a505f9f01cbc4b/5.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.28-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.28-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 657557822ecebebf0fa6bea96536125881c5bfb2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Jul 2024 17:08:52 -0700 Subject: [PATCH 1366/2686] Run update.sh --- swift/README.md | 2 +- ubuntu/README.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/swift/README.md b/swift/README.md index a0294f286fdc..afac5373c818 100644 --- a/swift/README.md +++ b/swift/README.md @@ -214,7 +214,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal, jammy, mantic, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `swift:-slim` diff --git a/ubuntu/README.md b/ubuntu/README.md index 4741fb8786b1..e0139b262504 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,8 +28,6 @@ WARNING: - [`22.04`, `jammy-20240627.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240627.1-0d60927a&id=0d60927a24b045adcfbdb9a80b7db3bf6bd9fd9b) -- [`23.10`, `mantic-20240530`, `mantic`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-mantic-amd64-20240530-8dcb055f&id=8dcb055fedbfd33752ede65d6534f702a3b81070) - - [`24.04`, `noble-20240605`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240605-baf9888c&id=baf9888c79d71a0ae98d4ef87c838ca3c91f2245) - [`24.10`, `oracular-20240617`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240617-43acaa26&id=43acaa26848f20fe7885f00637b5342967c8ae23) From f1a142459ced72261126364d348d7fff3bee55d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jul 2024 12:09:01 -0700 Subject: [PATCH 1367/2686] Run update.sh --- elixir/README.md | 18 +++++++++--------- joomla/README.md | 30 +++++++++++++++--------------- photon/README.md | 6 +++--- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index f3b709e4cf74..6f8147fe8150 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.1`, `1.17`, `latest`, `1.17.1-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/Dockerfile) +- [`1.17.2`, `1.17`, `latest`, `1.17.2-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/Dockerfile) -- [`1.17.1-slim`, `1.17-slim`, `slim`, `1.17.1-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/slim/Dockerfile) +- [`1.17.2-slim`, `1.17-slim`, `slim`, `1.17.2-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/slim/Dockerfile) -- [`1.17.1-alpine`, `1.17-alpine`, `alpine`, `1.17.1-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/alpine/Dockerfile) +- [`1.17.2-alpine`, `1.17-alpine`, `alpine`, `1.17.2-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/alpine/Dockerfile) -- [`1.17.1-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25/Dockerfile) +- [`1.17.2-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25/Dockerfile) -- [`1.17.1-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-alpine/Dockerfile) +- [`1.17.2-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25-alpine/Dockerfile) -- [`1.17.1-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-25-slim/Dockerfile) +- [`1.17.2-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25-slim/Dockerfile) -- [`1.17.1-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26/Dockerfile) +- [`1.17.2-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26/Dockerfile) -- [`1.17.1-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-alpine/Dockerfile) +- [`1.17.2-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26-alpine/Dockerfile) -- [`1.17.1-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/3823cde382a1926c8ee01dcd16e30d03224a202a/1.17/otp-26-slim/Dockerfile) +- [`1.17.2-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26-slim/Dockerfile) - [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index a9d30e426ae1..5dc060ac8a7d 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -42,35 +42,35 @@ WARNING: - [`5.2.0-alpha2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm/Dockerfile) -- [`5.1.1-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/apache/Dockerfile) +- [`5.1.2-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/apache/Dockerfile) -- [`5.1.1-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.1-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.1/fpm/Dockerfile) +- [`5.1.2-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/fpm/Dockerfile) -- [`5.1.1`, `5.1`, `5`, `latest`, `5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.1-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/apache/Dockerfile) +- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.2-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/apache/Dockerfile) -- [`5.1.1-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.1-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.2/fpm/Dockerfile) +- [`5.1.2-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/fpm/Dockerfile) -- [`5.1.1-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/apache/Dockerfile) +- [`5.1.2-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/apache/Dockerfile) -- [`5.1.1-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.2-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/fpm-alpine/Dockerfile) -- [`5.1.1-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/5.1/php8.3/fpm/Dockerfile) +- [`5.1.2-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/fpm/Dockerfile) -- [`4.4.5`, `4.4`, `4`, `4.4.5-apache`, `4.4-apache`, `4-apache`, `4.4.5-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.5-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/apache/Dockerfile) +- [`4.4.6`, `4.4`, `4`, `4.4.6-apache`, `4.4-apache`, `4-apache`, `4.4.6-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.6-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/apache/Dockerfile) -- [`4.4.5-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.6-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.5-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.1/fpm/Dockerfile) +- [`4.4.6-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/fpm/Dockerfile) -- [`4.4.5-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/apache/Dockerfile) +- [`4.4.6-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/apache/Dockerfile) -- [`4.4.5-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.6-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.5-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dc41da6f1db9d744478ae04ebed834af60cf5328/4.4/php8.2/fpm/Dockerfile) +- [`4.4.6-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 6c93f0e2b2d3..e0091bb3c310 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240707`, `latest`](https://github.com/vmware/photon-docker-image/blob/d36c2c0d5474eaa4c49119f550bb7d370dd590c8/docker/Dockerfile) +- [`5.0`, `5.0-20240716`, `latest`](https://github.com/vmware/photon-docker-image/blob/b9d4da7f69fe97b281915d7bd5d31d4de1634d68/docker/Dockerfile) -- [`4.0`, `4.0-20240707`](https://github.com/vmware/photon-docker-image/blob/d91326c2fb64831070e02c88d62e32f89bbecda1/docker/Dockerfile) +- [`4.0`, `4.0-20240716`](https://github.com/vmware/photon-docker-image/blob/8e9fb50e381fe48ce9830250c5759f1baca3a0e7/docker/Dockerfile) -- [`3.0`, `3.0-20240707`](https://github.com/vmware/photon-docker-image/blob/ca04c70bf78c387e49445ac0588c075b4a921ede/docker/Dockerfile) +- [`3.0`, `3.0-20240716`](https://github.com/vmware/photon-docker-image/blob/5fb486a53f31e32f876c6c1928d23350b7e2aa61/docker/Dockerfile) # Quick reference (cont.) From 873692e58b4dc4672b2662d4fd6af5e6d8206b6e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jul 2024 13:09:01 -0700 Subject: [PATCH 1368/2686] Run update.sh --- orientdb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index f897b36a438c..9ce82bcff3a3 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.31`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31/Dockerfile) +- [`3.2.32`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/cab5819e857b7aadc5209e4cc68f52f72d829eab/release/3.2.x/3.2.32/Dockerfile) -- [`3.2.31-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/35349cf05bcd03b1e8f726aae11c7217140c9c1f/release/3.2.x/3.2.31-tp3/Dockerfile) +- [`3.2.32-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/cab5819e857b7aadc5209e4cc68f52f72d829eab/release/3.2.x/3.2.32-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From 17ff9fdadfc8a63e96181bbe06b460e0934c0063 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jul 2024 15:08:54 -0700 Subject: [PATCH 1369/2686] Run update.sh --- bash/README.md | 2 +- buildpack-deps/README.md | 6 ------ golang/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 19 insertions(+), 25 deletions(-) diff --git a/bash/README.md b/bash/README.md index d44b7805b05a..a3c5b5b8c369 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240706`, `devel`, `devel-20240706-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f17b86ca80f75e0c7a0740b9d3ce8865c5d4513/devel/Dockerfile) +- [`devel-20240711`, `devel`, `devel-20240711-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f3e43fabdd7d92ecf33881c7cc69a5b847d096b/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 74e7a0b2eeb0..2bf6a9fb1da0 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -60,12 +60,6 @@ WARNING: - [`jammy`, `22.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/Dockerfile) -- [`mantic-curl`, `23.10-curl`](https://github.com/docker-library/buildpack-deps/blob/6b4838ad208cd3447d2c8d6535827e0dfc74a145/ubuntu/mantic/curl/Dockerfile) - -- [`mantic-scm`, `23.10-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/scm/Dockerfile) - -- [`mantic`, `23.10`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/mantic/Dockerfile) - - [`noble-curl`, `24.04-curl`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/curl/Dockerfile) - [`noble-scm`, `24.04-scm`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/scm/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 92c59e7dd7c0..4dfbd6f5485d 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`1.23rc1-bookworm`, `1.23-rc-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) +- [`1.23rc2-bookworm`, `1.23-rc-bookworm`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bookworm/Dockerfile) -- [`1.23rc1-bullseye`, `1.23-rc-bullseye`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bullseye/Dockerfile) +- [`1.23rc2-bullseye`, `1.23-rc-bullseye`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bullseye/Dockerfile) -- [`1.23rc1-alpine3.20`, `1.23-rc-alpine3.20`, `1.23rc1-alpine`, `1.23-rc-alpine`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.20/Dockerfile) +- [`1.23rc2-alpine3.20`, `1.23-rc-alpine3.20`, `1.23rc2-alpine`, `1.23-rc-alpine`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/alpine3.20/Dockerfile) -- [`1.23rc1-alpine3.19`, `1.23-rc-alpine3.19`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/alpine3.19/Dockerfile) +- [`1.23rc2-alpine3.19`, `1.23-rc-alpine3.19`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/alpine3.19/Dockerfile) -- [`1.23rc1-windowsservercore-ltsc2022`, `1.23-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23rc2-windowsservercore-ltsc2022`, `1.23-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23rc1-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.23rc2-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.23rc1-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23rc2-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23rc1-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) +- [`1.23rc2-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) - [`1.22.5-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) @@ -78,21 +78,21 @@ WARNING: ## Shared Tags -- `1.23rc1`, `1.23-rc`: +- `1.23rc2`, `1.23-rc`: - - [`1.23rc1-bookworm`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/bookworm/Dockerfile) - - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.23rc2-bookworm`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bookworm/Dockerfile) + - [`1.23rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) -- `1.23rc1-windowsservercore`, `1.23-rc-windowsservercore`: +- `1.23rc2-windowsservercore`, `1.23-rc-windowsservercore`: - - [`1.23rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.23rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) -- `1.23rc1-nanoserver`, `1.23-rc-nanoserver`: +- `1.23rc2-nanoserver`, `1.23-rc-nanoserver`: - - [`1.23rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/d59b341d37b5b2314cad111c54170ebf54f1ca4e/1.23-rc/windows/nanoserver-1809/Dockerfile) + - [`1.23rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) - `1.22.5`, `1.22`, `1`, `latest`: From 4cc89bf7493731d17f4a1a146b2481bb5d214663 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Jul 2024 16:08:49 -0700 Subject: [PATCH 1370/2686] Run update.sh --- wordpress/README.md | 36 +++++++++--------------------------- 1 file changed, 9 insertions(+), 27 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 035071eaf563..e57853db72da 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.5-php8.1-apache`, `6.5-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.5.5-php8.1`, `6.5-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/apache/Dockerfile) +- [`6.6.0-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.0-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/apache/Dockerfile) -- [`6.5.5-php8.1-fpm`, `6.5-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm/Dockerfile) +- [`6.6.0-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/fpm/Dockerfile) -- [`6.5.5-php8.1-fpm-alpine`, `6.5-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.0-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.5.5-apache`, `6.5-apache`, `6-apache`, `apache`, `6.5.5`, `6.5`, `6`, `latest`, `6.5.5-php8.2-apache`, `6.5-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.5.5-php8.2`, `6.5-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/apache/Dockerfile) +- [`6.6.0-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.0`, `6.6`, `6`, `latest`, `6.6.0-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.0-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/apache/Dockerfile) -- [`6.5.5-fpm`, `6.5-fpm`, `6-fpm`, `fpm`, `6.5.5-php8.2-fpm`, `6.5-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm/Dockerfile) +- [`6.6.0-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.0-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/fpm/Dockerfile) -- [`6.5.5-fpm-alpine`, `6.5-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.5.5-php8.2-fpm-alpine`, `6.5-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.0-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.0-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.5.5-php8.3-apache`, `6.5-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.5.5-php8.3`, `6.5-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/apache/Dockerfile) +- [`6.6.0-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.0-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/apache/Dockerfile) -- [`6.5.5-php8.3-fpm`, `6.5-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm/Dockerfile) +- [`6.6.0-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/fpm/Dockerfile) -- [`6.5.5-php8.3-fpm-alpine`, `6.5-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b77ff19ea62969cf22d5de48e07a0fc95a9caed6/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.0-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) @@ -48,24 +48,6 @@ WARNING: - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6-RC4-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6-RC4-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/apache/Dockerfile) - -- [`beta-6.6-RC4-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.6-RC4-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.6-RC4-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6-RC4`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6-RC4-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6-RC4-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/apache/Dockerfile) - -- [`beta-6.6-RC4-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6-RC4-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.6-RC4-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6-RC4-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.6-RC4-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6-RC4-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/apache/Dockerfile) - -- [`beta-6.6-RC4-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.6-RC4-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/189288c6014999c10e82904ab4f14e6c3a1b349e/beta/php8.3/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 1883231593d9a4bd001abe818e1693c69201e22b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jul 2024 10:08:59 -0700 Subject: [PATCH 1371/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 80 +++++++++++++---------------------- nats/README.md | 36 ++++++++-------- 2 files changed, 48 insertions(+), 68 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 1ce1c16ecf7f..43bdda1581b2 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,107 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u412-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u412-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u412-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u412-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u412-b08-jdk-centos7`, `open-8-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/centos/Dockerfile.open.releases.full) +- [`open-8u412-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u412-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u412-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u412-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u412-b08-jre-centos7`, `open-8-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/centos/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.23_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jdk-centos7`, `open-11-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/centos/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jre-centos7`, `open-11-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/centos/Dockerfile.open.releases.full) +- [`open-17.0.11_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jdk-centos7`, `open-17-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/centos/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.3_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jre-centos7`, `open-17-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/centos/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-21.0.3_9-jdk-centos7`, `open-21-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/centos/Dockerfile.open.releases.full) - -- [`open-21.0.3_9-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-21.0.3_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-21.0.3_9-jre-centos7`, `open-21-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/centos/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jdk-centos7`, `open-22-jdk-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/centos/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-22.0.1_8-jre-centos7`, `open-22-jre-centos7`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/centos/Dockerfile.open.releases.full) +- [`open-22.0.1_8-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags - `open-8u412-b08-jdk`, `open-8-jdk`: - - [`open-8u412-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u412-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u412-b08-jre`, `open-8-jre`: - - [`open-8u412-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u412-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.23_9-jdk`, `open-11-jdk`: - - [`open-11.0.23_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.23_9-jre`, `open-11-jre`: - - [`open-11.0.23_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.23_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.11_9-jdk`, `open-17-jdk`: - - [`open-17.0.11_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.11_9-jre`, `open-17-jre`: - - [`open-17.0.11_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.11_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.3_9-jdk`, `open-21-jdk`: - - [`open-21.0.3_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.3_9-jre`, `open-21-jre`: - - [`open-21.0.3_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.3_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.1_8-jdk`, `open-22-jdk`: - - [`open-22.0.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.1_8-jre`, `open-22-jre`: - - [`open-22.0.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a3c82d720a98bbdd4cb70f1db22eb27060af2164/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 5b7905cde947..461b692133ac 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`2.10.17-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.17-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/alpine3.20/Dockerfile) +- [`2.10.18-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.18-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/alpine3.20/Dockerfile) -- [`2.10.17-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.17-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) +- [`2.10.18-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.18-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/scratch/Dockerfile) -- [`2.10.17-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.18-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.17-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.18-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.17`, `2.10`, `2`, `latest`: +- `2.10.18`, `2.10`, `2`, `latest`: - - [`2.10.17-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/scratch/Dockerfile) - - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.18-scratch`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/scratch/Dockerfile) + - [`2.10.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.17-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.18-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.17-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.18-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.17-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.18-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.17-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/b62a08ad939fa4ed4927abbc45c497576b50dda5/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From a5fe2bdccf740ec685b782c9c4ab1ae2cabde8af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Jul 2024 18:08:48 -0700 Subject: [PATCH 1372/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 1d53efa321fe..8b25ef5c5434 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u412`, `8u412-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u412-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u422`, `8u422-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u422-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u412-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u412-al2023-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u422-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u422-al2023-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u412-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u422-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u412-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u422-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2/Dockerfile) -- [`8-alpine3.16`, `8u412-alpine3.16`, `8-alpine3.16-full`, `8-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.16/Dockerfile) +- [`8-alpine3.17`, `8u422-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.16-jre`, `8u412-alpine3.16-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.16/Dockerfile) +- [`8-alpine3.17-jre`, `8u422-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.17`, `8u412-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u422-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.17-jre`, `8u412-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18-jre`, `8u422-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.18`, `8u412-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u422-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.18-jre`, `8u412-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19-jre`, `8u422-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.19`, `8u412-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`, `8-alpine`, `8u412-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.20`, `8u422-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u422-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.19-jre`, `8u412-alpine3.19-jre`, `8-alpine-jre`, `8u412-alpine-jre`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.20-jre`, `8u422-alpine3.20-jre`, `8-alpine-jre`, `8u422-alpine-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.20/Dockerfile) -- [`11`, `11.0.23`, `11.0.23-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.23-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.24`, `11.0.24-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.24-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.23-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.24-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.23-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.24-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.23-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.24-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.23-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.24-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.23-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.24-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2/Dockerfile) -- [`11-alpine3.16`, `11.0.23-alpine3.16`, `11-alpine3.16-full`, `11-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.16/Dockerfile) +- [`11-alpine3.17`, `11.0.24-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.17`, `11.0.23-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.18`, `11.0.24-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.18`, `11.0.23-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.19`, `11.0.24-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.19`, `11.0.23-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`, `11-alpine`, `11.0.23-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.20`, `11.0.24-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.24-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.20/Dockerfile) -- [`17`, `17.0.11`, `17.0.11-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.11-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.12`, `17.0.12-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.12-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.11-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.12-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.11-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.12-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.11-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.12-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.11-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.12-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.11-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.12-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.11-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.12-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2/Dockerfile) -- [`17-alpine3.16`, `17.0.11-alpine3.16`, `17-alpine3.16-full`, `17-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.16/Dockerfile) +- [`17-alpine3.17`, `17.0.12-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.17`, `17.0.11-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.18`, `17.0.12-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.18`, `17.0.11-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.19`, `17.0.12-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.19`, `17.0.11-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`, `17-alpine`, `17.0.11-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.20`, `17.0.12-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.12-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.20/Dockerfile) -- [`21`, `21.0.3`, `21.0.3-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.3-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.4`, `21.0.4-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.4-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.3-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.4-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.3-al2023-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.4-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.3-al2023-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.4-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/headful/al2023/Dockerfile) -- [`21-alpine3.16`, `21.0.3-alpine3.16`, `21-alpine3.16-full`, `21-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.16/Dockerfile) +- [`21-alpine3.17`, `21.0.4-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.17`, `21.0.3-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.18`, `21.0.4-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.18`, `21.0.3-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.19`, `21.0.4-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.19`, `21.0.3-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`, `21-alpine`, `21.0.3-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.20`, `21.0.4-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.4-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.20/Dockerfile) -- [`22-al2023`, `22.0.1-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/al2023/Dockerfile) +- [`22-al2023`, `22.0.2-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/al2023/Dockerfile) -- [`22-al2023-headless`, `22.0.1-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headless/al2023/Dockerfile) +- [`22-al2023-headless`, `22.0.2-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/headless/al2023/Dockerfile) -- [`22-al2023-headful`, `22.0.1-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/headful/al2023/Dockerfile) +- [`22-al2023-headful`, `22.0.2-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/headful/al2023/Dockerfile) -- [`22-alpine3.16`, `22.0.1-alpine3.16`, `22-alpine3.16-full`, `22-alpine3.16-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.16/Dockerfile) +- [`22-alpine3.17`, `22.0.2-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.17/Dockerfile) -- [`22-alpine3.17`, `22.0.1-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.17/Dockerfile) +- [`22-alpine3.18`, `22.0.2-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.18/Dockerfile) -- [`22-alpine3.18`, `22.0.1-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.18/Dockerfile) +- [`22-alpine3.19`, `22.0.2-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.19/Dockerfile) -- [`22-alpine3.19`, `22.0.1-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`, `22-alpine`, `22.0.1-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/681bfefafc18d88293253af8b529454855f76c81/22/jdk/alpine/3.19/Dockerfile) +- [`22-alpine3.20`, `22.0.2-alpine3.20`, `22-alpine3.20-full`, `22-alpine3.20-jdk`, `22-alpine`, `22.0.2-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.20/Dockerfile) # Quick reference (cont.) From e7cae6788a94cdd3379bb9b730571e7d3a6eb14d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jul 2024 07:08:52 -0700 Subject: [PATCH 1373/2686] Run update.sh --- ghost/README.md | 4 ++-- httpd/README.md | 4 ++-- node/README.md | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index d70b2602a56c..5e88be774884 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.87.2`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/035db75f8de147549cc5b665ab8c97fa9f3ed2cb/5/debian/Dockerfile) +- [`5.87.3`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c3fca0fdd9e81fa47749134a751e6469366b6ea7/5/debian/Dockerfile) -- [`5.87.2-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/035db75f8de147549cc5b665ab8c97fa9f3ed2cb/5/alpine/Dockerfile) +- [`5.87.3-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c3fca0fdd9e81fa47749134a751e6469366b6ea7/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/httpd/README.md b/httpd/README.md index 9918a282c1a5..a12bbbf03de9 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.61`, `2.4`, `2`, `latest`, `2.4.61-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/Dockerfile) +- [`2.4.62`, `2.4`, `2`, `latest`, `2.4.62-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/3056c115a9f3c2467cc6f67470cfded70c4adc64/2.4/Dockerfile) -- [`2.4.61-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.61-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/4bbf4e38bd43edd3a6aa832eef382b8cfe06cb10/2.4/alpine/Dockerfile) +- [`2.4.62-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.62-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/3056c115a9f3c2467cc6f67470cfded70c4adc64/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 7ab60c5de8dd..dedfb3c92517 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.4-alpine3.19`, `22.4.1-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.5-alpine3.19`, `22.5.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.4-alpine`, `22.4-alpine3.20`, `22.4.1-alpine`, `22.4.1-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.5-alpine`, `22.5-alpine3.20`, `22.5.0-alpine`, `22.5.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.4`, `22.4-bookworm`, `22.4.1`, `22.4.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.5`, `22.5-bookworm`, `22.5.0`, `22.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.4-bookworm-slim`, `22.4-slim`, `22.4.1-bookworm-slim`, `22.4.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.5-bookworm-slim`, `22.5-slim`, `22.5.0-bookworm-slim`, `22.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.4-bullseye`, `22.4.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.5-bullseye`, `22.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.4-bullseye-slim`, `22.4.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.5-bullseye-slim`, `22.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.19/Dockerfile) From 860c9ab316d0cd14db1e9ae49e55817f0096b290 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jul 2024 12:08:48 -0700 Subject: [PATCH 1374/2686] Run update.sh --- aerospike/README.md | 4 +-- docker/README.md | 40 +++++++++++++-------------- open-liberty/README.md | 54 ++++++++++++++++++++++--------------- websphere-liberty/README.md | 48 ++++++++++++++++++++------------- 4 files changed, 85 insertions(+), 61 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index e37b520547f8..e9b28914ccd3 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.2`, `ee-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.3`, `ee-7.1.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8604900602430740d476f04ab210611d929ca421/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.2`, `ce-7.1.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/feb210615277101e394d632493807e8b65f44b5d/community/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.3`, `ce-7.1.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8604900602430740d476f04ab210611d929ca421/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 370723c8a9ad..5bcdda563ba3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,67 +28,67 @@ WARNING: ## Simple Tags -- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/cli/Dockerfile) +- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/cli/Dockerfile) - [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) - [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) -- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-1809/Dockerfile) +- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bf7d7034099346397bdeac2a2178f2a1716e4feb/27/windows/windowsservercore-1809/Dockerfile) + - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bfc5d2e0cd4a7a41e73a1830ea383de76ccda960/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e9d4f3887eb113c9ca5b0574b96ab067a178cb67/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f3e179fc5fc10b978bc6d333a7d6186d11803866/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 95ff0cd006cc..1db7c1ddf619 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,47 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/fe6067176da4f12661750fa401e80dd00c5dfe34/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`24.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk8) + +- [`24.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index c768a56875b6..25666f046b3a 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/17a8c1db7842cba9935fe22d0b0b9293bf165bde/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`24.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.ibmjava8) + +- [`24.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 6a88964724b94601ad02607a803c163fa6cb51b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Jul 2024 14:09:30 -0700 Subject: [PATCH 1375/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index faf2893bd04f..9b6b38ac5367 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -26,7 +26,7 @@ WARNING: - [`2023`, `latest`, `2023.5.20240708.0`](https://github.com/amazonlinux/container-images/blob/9aa5efdadd1dbd202f24e6425831f550a005700d/Dockerfile) -- [`2`, `2.0.20240620.0`](https://github.com/amazonlinux/container-images/blob/3940ec6a9ed3bbb1dd7ccca2fcfcc4a28213588a/Dockerfile) +- [`2`, `2.0.20240709.1`](https://github.com/amazonlinux/container-images/blob/658e36f64d9196707f00b3e5082ce8a54d65ed26/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) From ab1718d9c73c4f59b0fb438e173a0bc575bc4309 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jul 2024 10:08:50 -0700 Subject: [PATCH 1376/2686] Run update.sh --- cassandra/README.md | 2 +- python/README.md | 30 +++++++------- sapmachine/README.md | 96 ++++++++++++++++++++++---------------------- swift/README.md | 24 ----------- 4 files changed, 64 insertions(+), 88 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 54f3e1f3f1ec..0fcdaa6ca6fb 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-beta1`, `5.0`, `5`, `5.0-beta1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/dd34dfac80c45a1c4e6ac6029e80385c778e8d1d/5.0/Dockerfile) +- [`5.0-rc1`, `5.0`, `5`, `5.0-rc1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/7ebf445be0a2847cfe94cf1cee3f3b9df891f0d1/5.0/Dockerfile) - [`4.1.5`, `4.1`, `4`, `latest`, `4.1.5-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/7ae558bbbbfa3f07eaaecae0ff84a4537d37c570/4.1/Dockerfile) diff --git a/python/README.md b/python/README.md index 04f7b7a50774..223a315d0065 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.13.0b3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bookworm/Dockerfile) +- [`3.13.0b4-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bookworm/Dockerfile) -- [`3.13.0b3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0b4-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b4-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0b3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bullseye/Dockerfile) +- [`3.13.0b4-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bullseye/Dockerfile) -- [`3.13.0b3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0b4-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0b4-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0b4-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0b4-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0b3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0b4-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) - [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bookworm/Dockerfile) @@ -114,16 +114,16 @@ WARNING: ## Shared Tags -- `3.13.0b3`, `3.13-rc`: +- `3.13.0b4`, `3.13-rc`: - - [`3.13.0b3-bookworm`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/bookworm/Dockerfile) - - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0b4-bookworm`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bookworm/Dockerfile) + - [`3.13.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0b3-windowsservercore`, `3.13-rc-windowsservercore`: +- `3.13.0b4-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/569c82f764bd2b39c3aab2610a080220efd53778/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.4`, `3.12`, `3`, `latest`: diff --git a/sapmachine/README.md b/sapmachine/README.md index c2f3ba21df45..da612bb85cf1 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `22`, `22-jdk-ubuntu`, `22.0.1`, `22.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `22-ubuntu-noble`, `22-ubuntu-24.04`, `22.0.1-ubuntu-noble`, `22.0.1-ubuntu-24.04`, `22-jdk-ubuntu-noble`, `22-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `22.0.1-jdk-ubuntu-noble`, `22.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `22`, `22-jdk-ubuntu`, `22.0.2`, `22.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `22-ubuntu-noble`, `22-ubuntu-24.04`, `22.0.2-ubuntu-noble`, `22.0.2-ubuntu-24.04`, `22-jdk-ubuntu-noble`, `22-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `22.0.2-jdk-ubuntu-noble`, `22.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `22-jdk-headless-ubuntu`, `22.0.1-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-noble`, `22-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `22.0.1-jdk-headless-ubuntu-noble`, `22.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `22-jdk-headless-ubuntu`, `22.0.2-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-noble`, `22-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `22.0.2-jdk-headless-ubuntu-noble`, `22.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `22-jre-ubuntu`, `22.0.1-jre-ubuntu`, `22-jre-ubuntu-noble`, `22-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `22.0.1-jre-ubuntu-noble`, `22.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `22-jre-ubuntu`, `22.0.2-jre-ubuntu`, `22-jre-ubuntu-noble`, `22-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `22.0.2-jre-ubuntu-noble`, `22.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `22-jre-headless-ubuntu`, `22.0.1-jre-headless-ubuntu`, `22-jre-headless-ubuntu-noble`, `22-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `22.0.1-jre-headless-ubuntu-noble`, `22.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `22-jre-headless-ubuntu`, `22.0.2-jre-headless-ubuntu`, `22-jre-headless-ubuntu-noble`, `22-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `22.0.2-jre-headless-ubuntu-noble`, `22.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.1-ubuntu-jammy`, `22.0.1-ubuntu-22.04`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `22.0.1-jdk-ubuntu-jammy`, `22.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.2-ubuntu-jammy`, `22.0.2-ubuntu-22.04`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `22.0.2-jdk-ubuntu-jammy`, `22.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jdk/Dockerfile) -- [`22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `22.0.1-jdk-headless-ubuntu-jammy`, `22.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jdk-headless/Dockerfile) +- [`22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `22.0.2-jdk-headless-ubuntu-jammy`, `22.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jdk-headless/Dockerfile) -- [`22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `22.0.1-jre-ubuntu-jammy`, `22.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre/Dockerfile) +- [`22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `22.0.2-jre-ubuntu-jammy`, `22.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jre/Dockerfile) -- [`22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `22.0.1-jre-headless-ubuntu-jammy`, `22.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/22_04/jre-headless/Dockerfile) +- [`22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `22.0.2-jre-headless-ubuntu-jammy`, `22.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `22-ubuntu-focal`, `22-ubuntu-20.04`, `22.0.1-ubuntu-focal`, `22.0.1-ubuntu-20.04`, `22-jdk-ubuntu-focal`, `22-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `22.0.1-jdk-ubuntu-focal`, `22.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `22-ubuntu-focal`, `22-ubuntu-20.04`, `22.0.2-ubuntu-focal`, `22.0.2-ubuntu-20.04`, `22-jdk-ubuntu-focal`, `22-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `22.0.2-jdk-ubuntu-focal`, `22.0.2-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jdk/Dockerfile) -- [`22-jdk-headless-ubuntu-focal`, `22-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `22.0.1-jdk-headless-ubuntu-focal`, `22.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jdk-headless/Dockerfile) +- [`22-jdk-headless-ubuntu-focal`, `22-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `22.0.2-jdk-headless-ubuntu-focal`, `22.0.2-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jdk-headless/Dockerfile) -- [`22-jre-ubuntu-focal`, `22-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `22.0.1-jre-ubuntu-focal`, `22.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre/Dockerfile) +- [`22-jre-ubuntu-focal`, `22-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `22.0.2-jre-ubuntu-focal`, `22.0.2-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jre/Dockerfile) -- [`22-jre-headless-ubuntu-focal`, `22-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `22.0.1-jre-headless-ubuntu-focal`, `22.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/04c8d1661ca9abba2b13b89f81b3486d111e2e7d/dockerfiles/official/22/ubuntu/20_04/jre-headless/Dockerfile) +- [`22-jre-headless-ubuntu-focal`, `22-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `22.0.2-jre-headless-ubuntu-focal`, `22.0.2-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jre-headless/Dockerfile) -- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.3`, `21.0.3-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.3-ubuntu-noble`, `21.0.3-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.3-jdk-ubuntu-noble`, `21.0.3-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk/Dockerfile) +- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.4`, `21.0.4-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.4-ubuntu-noble`, `21.0.4-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.4-jdk-ubuntu-noble`, `21.0.4-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.3-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.3-jdk-headless-ubuntu-noble`, `21.0.3-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.4-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.4-jdk-headless-ubuntu-noble`, `21.0.4-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.3-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.3-jre-ubuntu-noble`, `21.0.3-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.4-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.4-jre-ubuntu-noble`, `21.0.4-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.3-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.3-jre-headless-ubuntu-noble`, `21.0.3-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.4-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.4-jre-headless-ubuntu-noble`, `21.0.4-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.3-ubuntu-jammy`, `21.0.3-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.3-jdk-ubuntu-jammy`, `21.0.3-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.4-ubuntu-jammy`, `21.0.4-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.4-jdk-ubuntu-jammy`, `21.0.4-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.3-jdk-headless-ubuntu-jammy`, `21.0.3-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.4-jdk-headless-ubuntu-jammy`, `21.0.4-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.3-jre-ubuntu-jammy`, `21.0.3-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.4-jre-ubuntu-jammy`, `21.0.4-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.3-jre-headless-ubuntu-jammy`, `21.0.3-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.4-jre-headless-ubuntu-jammy`, `21.0.4-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.3-ubuntu-focal`, `21.0.3-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.3-jdk-ubuntu-focal`, `21.0.3-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk/Dockerfile) +- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.4-ubuntu-focal`, `21.0.4-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.4-jdk-ubuntu-focal`, `21.0.4-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.3-jdk-headless-ubuntu-focal`, `21.0.3-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.4-jdk-headless-ubuntu-focal`, `21.0.4-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.3-jre-ubuntu-focal`, `21.0.3-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre/Dockerfile) +- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.4-jre-ubuntu-focal`, `21.0.4-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.3-jre-headless-ubuntu-focal`, `21.0.3-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/57124976c93709a1972c2b0c860edb2ca6525815/dockerfiles/official/21/ubuntu/20_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.4-jre-headless-ubuntu-focal`, `21.0.4-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) -- [`17`, `17-jdk-ubuntu`, `17.0.11`, `17.0.11-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.11-ubuntu-noble`, `17.0.11-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.11-jdk-ubuntu-noble`, `17.0.11-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk/Dockerfile) +- [`17`, `17-jdk-ubuntu`, `17.0.12`, `17.0.12-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.12-ubuntu-noble`, `17.0.12-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.12-jdk-ubuntu-noble`, `17.0.12-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17.0.11-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.11-jdk-headless-ubuntu-noble`, `17.0.11-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17.0.12-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.12-jdk-headless-ubuntu-noble`, `17.0.12-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu`, `17.0.11-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.11-jre-ubuntu-noble`, `17.0.11-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre-ubuntu`, `17.0.12-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.12-jre-ubuntu-noble`, `17.0.12-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu`, `17.0.11-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.11-jre-headless-ubuntu-noble`, `17.0.11-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu`, `17.0.12-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.12-jre-headless-ubuntu-noble`, `17.0.12-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.11-ubuntu-jammy`, `17.0.11-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.11-jdk-ubuntu-jammy`, `17.0.11-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.12-ubuntu-jammy`, `17.0.12-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.12-jdk-ubuntu-jammy`, `17.0.12-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.11-jdk-headless-ubuntu-jammy`, `17.0.11-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.12-jdk-headless-ubuntu-jammy`, `17.0.12-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.11-jre-ubuntu-jammy`, `17.0.11-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.12-jre-ubuntu-jammy`, `17.0.12-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.11-jre-headless-ubuntu-jammy`, `17.0.11-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.12-jre-headless-ubuntu-jammy`, `17.0.12-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.11-ubuntu-focal`, `17.0.11-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.11-jdk-ubuntu-focal`, `17.0.11-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk/Dockerfile) +- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.12-ubuntu-focal`, `17.0.12-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.12-jdk-ubuntu-focal`, `17.0.12-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.11-jdk-headless-ubuntu-focal`, `17.0.11-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.12-jdk-headless-ubuntu-focal`, `17.0.12-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.11-jre-ubuntu-focal`, `17.0.11-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.12-jre-ubuntu-focal`, `17.0.12-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.11-jre-headless-ubuntu-focal`, `17.0.11-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/dfb41efa53bcb479c2ec52d7117f2e39db4acb34/dockerfiles/official/17/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.12-jre-headless-ubuntu-focal`, `17.0.12-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) -- [`11`, `11-jdk-ubuntu`, `11.0.23`, `11.0.23-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.23-ubuntu-noble`, `11.0.23-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.23-jdk-ubuntu-noble`, `11.0.23-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk/Dockerfile) +- [`11`, `11-jdk-ubuntu`, `11.0.24`, `11.0.24-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.24-ubuntu-noble`, `11.0.24-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.24-jdk-ubuntu-noble`, `11.0.24-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11.0.23-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.23-jdk-headless-ubuntu-noble`, `11.0.23-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11.0.24-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.24-jdk-headless-ubuntu-noble`, `11.0.24-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu`, `11.0.23-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.23-jre-ubuntu-noble`, `11.0.23-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre-ubuntu`, `11.0.24-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.24-jre-ubuntu-noble`, `11.0.24-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu`, `11.0.23-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.23-jre-headless-ubuntu-noble`, `11.0.23-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu`, `11.0.24-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.24-jre-headless-ubuntu-noble`, `11.0.24-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.23-ubuntu-jammy`, `11.0.23-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.23-jdk-ubuntu-jammy`, `11.0.23-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.24-ubuntu-jammy`, `11.0.24-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.24-jdk-ubuntu-jammy`, `11.0.24-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.23-jdk-headless-ubuntu-jammy`, `11.0.23-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.24-jdk-headless-ubuntu-jammy`, `11.0.24-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.23-jre-ubuntu-jammy`, `11.0.23-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.24-jre-ubuntu-jammy`, `11.0.24-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.23-jre-headless-ubuntu-jammy`, `11.0.23-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.24-jre-headless-ubuntu-jammy`, `11.0.24-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) -- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.23-ubuntu-focal`, `11.0.23-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.23-jdk-ubuntu-focal`, `11.0.23-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk/Dockerfile) +- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.24-ubuntu-focal`, `11.0.24-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.24-jdk-ubuntu-focal`, `11.0.24-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.23-jdk-headless-ubuntu-focal`, `11.0.23-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.24-jdk-headless-ubuntu-focal`, `11.0.24-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.23-jre-ubuntu-focal`, `11.0.23-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre/Dockerfile) +- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.24-jre-ubuntu-focal`, `11.0.24-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.23-jre-headless-ubuntu-focal`, `11.0.23-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/05efe26bea6456dc7e561c6d601b2132f6bae6f2/dockerfiles/official/11/ubuntu/20_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.24-jre-headless-ubuntu-focal`, `11.0.24-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index afac5373c818..57f0ae25f82d 100644 --- a/swift/README.md +++ b/swift/README.md @@ -44,10 +44,6 @@ WARNING: - [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) -- [`5.10.1-centos7`, `5.10-centos7`, `centos7`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/Dockerfile) - -- [`5.10.1-centos7-slim`, `5.10-centos7-slim`, `centos7-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/centos/7/slim/Dockerfile) - - [`5.10.1-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/Dockerfile) - [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) @@ -66,10 +62,6 @@ WARNING: - [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) -- [`5.9.2-centos7`, `5.9-centos7`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/Dockerfile) - -- [`5.9.2-centos7-slim`, `5.9-centos7-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/centos/7/slim/Dockerfile) - - [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) - [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) @@ -88,10 +80,6 @@ WARNING: - [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) -- [`5.8.1-centos7`, `5.8-centos7`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/Dockerfile) - -- [`5.8.1-centos7-slim`, `5.8-centos7-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/centos/7/slim/Dockerfile) - - [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) - [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) @@ -108,10 +96,6 @@ WARNING: - [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) -- [`5.7.3-centos7`, `5.7-centos7`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/Dockerfile) - -- [`5.7.3-centos7-slim`, `5.7-centos7-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/centos/7/slim/Dockerfile) - - [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) - [`5.6.3-focal`, `5.6-focal`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/Dockerfile) @@ -120,10 +104,6 @@ WARNING: - [`5.6.3-amazonlinux2-slim`, `5.6-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/slim/Dockerfile) -- [`5.6.3-centos7`, `5.6-centos7`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/Dockerfile) - -- [`5.6.3-centos7-slim`, `5.6-centos7-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/centos/7/slim/Dockerfile) - - [`5.5.3-focal-slim`, `5.5-focal-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/slim/Dockerfile) - [`5.5.3-focal`, `5.5-focal`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/Dockerfile) @@ -132,10 +112,6 @@ WARNING: - [`5.5.3-amazonlinux2-slim`, `5.5-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/slim/Dockerfile) -- [`5.5.3-centos7`, `5.5-centos7`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/Dockerfile) - -- [`5.5.3-centos7-slim`, `5.5-centos7-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/centos/7/slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From db081a390441eca357b748386da0339535bfe2fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jul 2024 11:08:56 -0700 Subject: [PATCH 1377/2686] Run update.sh --- docker/README.md | 40 +++++++++++----------- node/README.md | 12 +++---- php/README.md | 84 ++++++++++++++++++++++++++++++++++++++-------- rabbitmq/README.md | 10 +++++- 4 files changed, 105 insertions(+), 41 deletions(-) diff --git a/docker/README.md b/docker/README.md index 5bcdda563ba3..73a278d5c79c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,67 +28,67 @@ WARNING: ## Simple Tags -- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/cli/Dockerfile) +- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/cli/Dockerfile) - [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) - [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) -- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-1809/Dockerfile) +- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dab785b0505432eb567e6e50b6b379dbca6eeaf/27/windows/windowsservercore-1809/Dockerfile) + - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e403f2b0689355e782dad8b88cdf01a11a0d8381/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a5a4a8100e83d20e491dbcce1648722e0e1302f5/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d3f3f4306d56a5295e676cca650159fbbf21d342/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index dedfb3c92517..4c89b80c97b3 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.5-alpine3.19`, `22.5.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.5-alpine3.19`, `22.5.1-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.5-alpine`, `22.5-alpine3.20`, `22.5.0-alpine`, `22.5.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.5-alpine`, `22.5-alpine3.20`, `22.5.1-alpine`, `22.5.1-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.5`, `22.5-bookworm`, `22.5.0`, `22.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.5`, `22.5-bookworm`, `22.5.1`, `22.5.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.5-bookworm-slim`, `22.5-slim`, `22.5.0-bookworm-slim`, `22.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.5-bookworm-slim`, `22.5-slim`, `22.5.1-bookworm-slim`, `22.5.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.5-bullseye`, `22.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.5-bullseye`, `22.5.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.5-bullseye-slim`, `22.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1fb7b0001b7a08268ffa2c6dac3ae06e6528c8bd/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.5-bullseye-slim`, `22.5.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.19/Dockerfile) diff --git a/php/README.md b/php/README.md index af9dec598367..3384ea250cb2 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0alpha1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha1-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha1-cli`, `8.4-rc-cli`, `8.4.0alpha1`, `8.4-rc`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0alpha2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha2-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha2-cli`, `8.4-rc-cli`, `8.4.0alpha2`, `8.4-rc`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0alpha1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0alpha2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0alpha1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0alpha2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0alpha1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0alpha2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0alpha1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0alpha2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0alpha1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0alpha2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0alpha1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0alpha2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0alpha1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0alpha2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0alpha1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0alpha2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha2-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0alpha1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0alpha2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0alpha1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0alpha2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0alpha1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0alpha2-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha2-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0alpha1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0alpha2-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0alpha1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/6de7c598d37fbd5fc7af21ff17d274cf1af6aeb0/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0alpha2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/zts/Dockerfile) + +- [`8.3.10RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.10RC1-bookworm`, `8.3-rc-bookworm`, `8.3.10RC1-cli`, `8.3-rc-cli`, `8.3.10RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.10RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.10RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.10RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.10RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.10RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.10RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.10RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.10RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.10RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.10RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.10RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.10RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.10RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.10RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.10RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.10RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.10RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.10RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.10RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.10RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.10RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.10RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.10RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.9-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.9-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.9-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.9`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.3.9-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.22RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.22RC1-bookworm`, `8.2-rc-bookworm`, `8.2.22RC1-cli`, `8.2-rc-cli`, `8.2.22RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.22RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.22RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.22RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.22RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.22RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.22RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.22RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.22RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.22RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.22RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.22RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.22RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.22RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.22RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.22RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.22RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.22RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.22RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.22RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.22RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.22RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.22RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.22RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.21-cli-bookworm`, `8.2-cli-bookworm`, `8.2.21-bookworm`, `8.2-bookworm`, `8.2.21-cli`, `8.2-cli`, `8.2.21`, `8.2`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/cli/Dockerfile) - [`8.2.21-apache-bookworm`, `8.2-apache-bookworm`, `8.2.21-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/apache/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 521b74c8afb5..a870bb3f483c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`4.0.0-beta.1`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/Dockerfile) + +- [`4.0.0-beta.1-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) + +- [`4.0.0-beta.1-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/Dockerfile) + +- [`4.0.0-beta.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) + - [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f269e108493fd46322e88a1753c2af21590094d8/3.13/ubuntu/Dockerfile) - [`3.13.4-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) @@ -46,7 +54,7 @@ WARNING: [https://github.com/docker-library/rabbitmq/issues](https://github.com/docker-library/rabbitmq/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/) + [`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`riscv64`](https://hub.docker.com/r/riscv64/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/) - **Published image artifact details**: [repo-info repo's `repos/rabbitmq/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rabbitmq) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rabbitmq)) From d19f2abd8aad4e216c2580d20a25fdc3432b94e7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jul 2024 12:08:52 -0700 Subject: [PATCH 1378/2686] Run update.sh --- gcc/README.md | 2 +- wordpress/README.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/gcc/README.md b/gcc/README.md index 867dc2f7c024..483365b1ff84 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -30,7 +30,7 @@ WARNING: - [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/4a0eb64954fed9990b723b618fa13f6b8f7762e3/12/Dockerfile) -- [`11.4.0`, `11.4`, `11`, `11.4.0-bullseye`, `11.4-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/11/Dockerfile) +- [`11.5.0`, `11.5`, `11`, `11.5.0-bullseye`, `11.5-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/f2681d9a12524b97ffe225a35d2c2f9f839cff0a/11/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index e57853db72da..17a7616be63d 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,6 +48,24 @@ WARNING: - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) +- [`beta-6.6.1-RC1-php8.1-apache`, `beta-6.6.1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6.1-RC1-php8.1`, `beta-6.6.1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/apache/Dockerfile) + +- [`beta-6.6.1-RC1-php8.1-fpm`, `beta-6.6.1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.6.1-RC1-php8.1-fpm-alpine`, `beta-6.6.1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.6.1-RC1-apache`, `beta-6.6.1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6.1-RC1`, `beta-6.6.1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6.1-RC1-php8.2-apache`, `beta-6.6.1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6.1-RC1-php8.2`, `beta-6.6.1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/apache/Dockerfile) + +- [`beta-6.6.1-RC1-fpm`, `beta-6.6.1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6.1-RC1-php8.2-fpm`, `beta-6.6.1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.6.1-RC1-fpm-alpine`, `beta-6.6.1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6.1-RC1-php8.2-fpm-alpine`, `beta-6.6.1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.6.1-RC1-php8.3-apache`, `beta-6.6.1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6.1-RC1-php8.3`, `beta-6.6.1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/apache/Dockerfile) + +- [`beta-6.6.1-RC1-php8.3-fpm`, `beta-6.6.1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.6.1-RC1-php8.3-fpm-alpine`, `beta-6.6.1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 20f0a39eb57dd2f1704622de0bb69cf8ecc2cf25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Jul 2024 18:09:00 -0700 Subject: [PATCH 1379/2686] Run update.sh --- couchbase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 1c008e69cf10..264b293e48c4 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.1`, `enterprise-7.6.1`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) +- [`7.6.2`, `enterprise-7.6.2`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/ba43d566538a8e0b6315569b94f0a7cf835c222b/enterprise/couchbase-server/7.6.2/Dockerfile) -- [`community-7.6.1`, `community`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) +- [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) - [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) From c30440350fd1c413e5d4e23e35a5dee57f8fb241 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jul 2024 06:09:00 -0700 Subject: [PATCH 1380/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 5e88be774884..3046c4f7a46e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.87.3`, `5.87`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c3fca0fdd9e81fa47749134a751e6469366b6ea7/5/debian/Dockerfile) +- [`5.88.1`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/48d24c4edaf68ca606dc7d90e97ee57bff31bac4/5/debian/Dockerfile) -- [`5.87.3-alpine`, `5.87-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c3fca0fdd9e81fa47749134a751e6469366b6ea7/5/alpine/Dockerfile) +- [`5.88.1-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/48d24c4edaf68ca606dc7d90e97ee57bff31bac4/5/alpine/Dockerfile) # Quick reference (cont.) From ad40b8417285c84c01fc88504392e08275d80991 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Mon, 22 Jul 2024 17:32:13 +0200 Subject: [PATCH 1381/2686] docs(ubuntu): close Mantic and backfill Noble and Oracular --- ubuntu/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index fe73921c0de3..b4f498c168ee 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -34,5 +34,5 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) -- [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) -- [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) +- [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) +- [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) From 111c5d202e7ca9cb774d4e7367df32ecfdc41e51 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jul 2024 12:08:52 -0700 Subject: [PATCH 1382/2686] Run update.sh --- archlinux/README.md | 6 ++--- clearlinux/README.md | 2 +- perl/README.md | 64 ++++++++++++++++++++++---------------------- photon/README.md | 6 ++--- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 6a805fd5204b..5a7328af9b9e 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.base) +- [`latest`, `base`, `base-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.base) -- [`base-devel`, `base-devel-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240714.0.246936`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4a92dba2124ec21c3971c3b247880ce153c97fb5/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 7d5bb895b21d..738c52d3108e 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f4043e617e4ffc33dff4ce58b0a7bf9ad85f9b41/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/65dba8369447f9bc5cbb9569a7c780e8a653ca9c/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index d98709a55f9a..5d3c52781803 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.1`, `5.41`, `devel`, `5.41.1-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bookworm/Dockerfile) +- [`5.41.2`, `5.41`, `devel`, `5.41.2-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main-bookworm/Dockerfile) -- [`5.41.1-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main-bullseye/Dockerfile) +- [`5.41.2-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main-bullseye/Dockerfile) -- [`5.41.1-slim`, `5.41-slim`, `devel-slim`, `5.41.1-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bookworm/Dockerfile) +- [`5.41.2-slim`, `5.41-slim`, `devel-slim`, `5.41.2-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim-bookworm/Dockerfile) -- [`5.41.1-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim-bullseye/Dockerfile) +- [`5.41.2-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim-bullseye/Dockerfile) -- [`5.41.1-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.1-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bookworm/Dockerfile) +- [`5.41.2-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.2-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main,threaded-bookworm/Dockerfile) -- [`5.41.1-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-main,threaded-bullseye/Dockerfile) +- [`5.41.2-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main,threaded-bullseye/Dockerfile) -- [`5.41.1-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.1-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bookworm/Dockerfile) +- [`5.41.2-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.2-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim,threaded-bookworm/Dockerfile) -- [`5.41.1-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d8d1d47872c9c76bff44200268569a1a756f1bbd/5.041.001-slim,threaded-bullseye/Dockerfile) +- [`5.41.2-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index e0091bb3c310..1c83626539cd 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240716`, `latest`](https://github.com/vmware/photon-docker-image/blob/b9d4da7f69fe97b281915d7bd5d31d4de1634d68/docker/Dockerfile) +- [`5.0`, `5.0-20240721`, `latest`](https://github.com/vmware/photon-docker-image/blob/1db00f15bc3a3de31752c0c621dfec4951f555c9/docker/Dockerfile) -- [`4.0`, `4.0-20240716`](https://github.com/vmware/photon-docker-image/blob/8e9fb50e381fe48ce9830250c5759f1baca3a0e7/docker/Dockerfile) +- [`4.0`, `4.0-20240721`](https://github.com/vmware/photon-docker-image/blob/1de134c2702857a9b34e7ea8e434aa5ca62b53a0/docker/Dockerfile) -- [`3.0`, `3.0-20240716`](https://github.com/vmware/photon-docker-image/blob/5fb486a53f31e32f876c6c1928d23350b7e2aa61/docker/Dockerfile) +- [`3.0`, `3.0-20240721`](https://github.com/vmware/photon-docker-image/blob/5c01224aed1248597f2120eb1ad9111e19435262/docker/Dockerfile) # Quick reference (cont.) From c2dacbd5932061072007bef82deea99a46456e55 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jul 2024 14:08:58 -0700 Subject: [PATCH 1383/2686] Run update.sh --- alpine/README.md | 8 +-- clojure/README.md | 134 ++++++++++++++++++++--------------------- docker/README.md | 16 ++--- nextcloud/README.md | 18 +++--- openjdk/README.md | 72 +++++++++++----------- postfixadmin/README.md | 2 +- rabbitmq/README.md | 8 +-- telegraf/README.md | 12 ++-- ubuntu/README.md | 4 +- 9 files changed, 137 insertions(+), 137 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 058f9553c6c4..645becf23d50 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20240606`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/75a51b285731679e7c39c2e3c1cae4edcd6851e5/x86_64/Dockerfile) -- [`3.20.1`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/d796f6cbd6ffa3aeb21f6e5a783c20b61dba64dd/x86_64/Dockerfile) +- [`3.20.2`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/3b06e21a03a8564bb1b261da824b9e2cfa6e8bdf/x86_64/Dockerfile) -- [`3.19.2`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0ea45484ad78078c51350293201cec8650c2f6bf/x86_64/Dockerfile) +- [`3.19.3`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/e18b92255654f757419d5e7f45e917d4ad787a68/x86_64/Dockerfile) -- [`3.18.7`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/fb6cd4d1c0fc2b1b73c34a445d120c02c82752cd/x86_64/Dockerfile) +- [`3.18.8`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/19842e73b6c42f620a710957101663da79870a37/x86_64/Dockerfile) -- [`3.17.8`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/7b631cf259b81eec0f59e8f3cccac479c702d2c1/x86_64/Dockerfile) +- [`3.17.9`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/efaaa8fee828ca129b2ca85104dd2f96a35f93dc/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 19f2ac837a6c..eb13ddd3afa6 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,139 +24,139 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/22167afbc6b9ab69c814f6de120e7ea953c7c277/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 73a278d5c79c..c6edc031ef55 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`27.0.3-cli`, `27.0-cli`, `27-cli`, `cli`, `27.0.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/cli/Dockerfile) +- [`27.1.0-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/cli/Dockerfile) -- [`27.0.3-dind`, `27.0-dind`, `27-dind`, `dind`, `27.0.3-dind-alpine3.20`, `27.0.3`, `27.0`, `27`, `latest`, `27.0.3-alpine3.20`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind/Dockerfile) +- [`27.1.0-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.0-dind-alpine3.20`, `27.1.0`, `27.1`, `27`, `latest`, `27.1.0-alpine3.20`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/dind/Dockerfile) -- [`27.0.3-dind-rootless`, `27.0-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/75c73110b6ee739dab28c30b757eec51484968c1/27/dind-rootless/Dockerfile) +- [`27.1.0-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/dind-rootless/Dockerfile) -- [`27.0.3-windowsservercore-ltsc2022`, `27.0-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.1.0-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.0.3-windowsservercore-1809`, `27.0-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-1809/Dockerfile) +- [`27.1.0-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/cli/Dockerfile) @@ -70,10 +70,10 @@ WARNING: ## Shared Tags -- `27.0.3-windowsservercore`, `27.0-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.1.0-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.0.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/694a68ce537163d0d6054e51fe64d8c7b350c9db/27/windows/windowsservercore-1809/Dockerfile) + - [`27.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: diff --git a/nextcloud/README.md b/nextcloud/README.md index 55fd805c1014..bb655387e0b5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/apache/Dockerfile) +- [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/apache/Dockerfile) -- [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/27/fpm/Dockerfile) +- [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/fpm/Dockerfile) -- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/27/fpm-alpine/Dockerfile) +- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/fpm-alpine/Dockerfile) -- [`28.0.7-apache`, `28.0-apache`, `28-apache`, `stable-apache`, `production-apache`, `28.0.7`, `28.0`, `28`, `stable`, `production`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/apache/Dockerfile) +- [`28.0.8-apache`, `28.0-apache`, `28-apache`, `28.0.8`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/apache/Dockerfile) -- [`28.0.7-fpm`, `28.0-fpm`, `28-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/28/fpm/Dockerfile) +- [`28.0.8-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/fpm/Dockerfile) -- [`28.0.7-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/28/fpm-alpine/Dockerfile) +- [`28.0.8-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/fpm-alpine/Dockerfile) -- [`29.0.3-apache`, `29.0-apache`, `29-apache`, `apache`, `29.0.3`, `29.0`, `29`, `latest`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/apache/Dockerfile) +- [`29.0.4-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.4`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/apache/Dockerfile) -- [`29.0.3-fpm`, `29.0-fpm`, `29-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/cd162a43212520628036e13fbfc1aba201139005/29/fpm/Dockerfile) +- [`29.0.4-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/fpm/Dockerfile) -- [`29.0.3-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/08596d2c3e93e652a77c90b4274aaf04c76a9537/29/fpm-alpine/Dockerfile) +- [`29.0.4-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 17ae5eb1c5c0..a4cd5f05642c 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-6-jdk-oraclelinux9`, `24-ea-6-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-6-jdk-oracle`, `24-ea-6-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-7-jdk-oraclelinux9`, `24-ea-7-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-7-jdk-oracle`, `24-ea-7-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-6-jdk-oraclelinux8`, `24-ea-6-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-7-jdk-oraclelinux8`, `24-ea-7-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-6-jdk-bookworm`, `24-ea-6-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/bookworm/Dockerfile) +- [`24-ea-7-jdk-bookworm`, `24-ea-7-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/bookworm/Dockerfile) -- [`24-ea-6-jdk-slim-bookworm`, `24-ea-6-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-6-jdk-slim`, `24-ea-6-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-7-jdk-slim-bookworm`, `24-ea-7-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-7-jdk-slim`, `24-ea-7-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-6-jdk-bullseye`, `24-ea-6-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/bullseye/Dockerfile) +- [`24-ea-7-jdk-bullseye`, `24-ea-7-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/bullseye/Dockerfile) -- [`24-ea-6-jdk-slim-bullseye`, `24-ea-6-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-7-jdk-slim-bullseye`, `24-ea-7-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-6-jdk-windowsservercore-ltsc2022`, `24-ea-6-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-7-jdk-windowsservercore-ltsc2022`, `24-ea-7-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-6-jdk-windowsservercore-1809`, `24-ea-6-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-7-jdk-windowsservercore-1809`, `24-ea-7-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-6-jdk-nanoserver-1809`, `24-ea-6-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-7-jdk-nanoserver-1809`, `24-ea-7-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-31-jdk-oraclelinux9`, `23-ea-31-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-31-jdk-oracle`, `23-ea-31-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-33-jdk-oraclelinux9`, `23-ea-33-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-33-jdk-oracle`, `23-ea-33-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-31-jdk-oraclelinux8`, `23-ea-31-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-33-jdk-oraclelinux8`, `23-ea-33-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-31-jdk-bookworm`, `23-ea-31-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/bookworm/Dockerfile) +- [`23-ea-33-jdk-bookworm`, `23-ea-33-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/bookworm/Dockerfile) -- [`23-ea-31-jdk-slim-bookworm`, `23-ea-31-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-31-jdk-slim`, `23-ea-31-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-33-jdk-slim-bookworm`, `23-ea-33-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-33-jdk-slim`, `23-ea-33-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-31-jdk-bullseye`, `23-ea-31-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/bullseye/Dockerfile) +- [`23-ea-33-jdk-bullseye`, `23-ea-33-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/bullseye/Dockerfile) -- [`23-ea-31-jdk-slim-bullseye`, `23-ea-31-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-33-jdk-slim-bullseye`, `23-ea-33-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-31-jdk-windowsservercore-ltsc2022`, `23-ea-31-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-33-jdk-windowsservercore-ltsc2022`, `23-ea-33-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-31-jdk-windowsservercore-1809`, `23-ea-31-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-33-jdk-windowsservercore-1809`, `23-ea-33-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-31-jdk-nanoserver-1809`, `23-ea-31-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-33-jdk-nanoserver-1809`, `23-ea-33-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-6-jdk`, `24-ea-6`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-7-jdk`, `24-ea-7`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-6-jdk-windowsservercore`, `24-ea-6-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-7-jdk-windowsservercore`, `24-ea-7-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-6-jdk-nanoserver`, `24-ea-6-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-7-jdk-nanoserver`, `24-ea-7-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/c49c89e7ba75ecdaaf39554d6ccd33aaffe1786f/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-31-jdk`, `23-ea-31`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-ea-33-jdk`, `23-ea-33`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-31-jdk-windowsservercore`, `23-ea-31-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-ea-33-jdk-windowsservercore`, `23-ea-33-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-31-jdk-nanoserver`, `23-ea-31-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-ea-33-jdk-nanoserver`, `23-ea-33-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/817b8217bacd3caa1521492b06f08099f919332a/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index a06916a5671d..9324f49c74b7 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -36,7 +36,7 @@ WARNING: [https://github.com/postfixadmin/docker/issues](https://github.com/postfixadmin/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/postfixadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postfixadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postfixadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postfixadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postfixadmin/), [`i386`](https://hub.docker.com/r/i386/postfixadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/postfixadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postfixadmin/), [`s390x`](https://hub.docker.com/r/s390x/postfixadmin/) + [`amd64`](https://hub.docker.com/r/amd64/postfixadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/postfixadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/postfixadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/postfixadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/postfixadmin/), [`i386`](https://hub.docker.com/r/i386/postfixadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/postfixadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/postfixadmin/), [`riscv64`](https://hub.docker.com/r/riscv64/postfixadmin/), [`s390x`](https://hub.docker.com/r/s390x/postfixadmin/) - **Published image artifact details**: [repo-info repo's `repos/postfixadmin/` directory](https://github.com/docker-library/repo-info/blob/master/repos/postfixadmin) ([history](https://github.com/docker-library/repo-info/commits/master/repos/postfixadmin)) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index a870bb3f483c..07f1831df88f 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.0.0-beta.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) -- [`3.13.4`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/f269e108493fd46322e88a1753c2af21590094d8/3.13/ubuntu/Dockerfile) +- [`3.13.5`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8f0c1fd9bafcdb016bad4d1a18e9747460131867/3.13/ubuntu/Dockerfile) -- [`3.13.4-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.5-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f269e108493fd46322e88a1753c2af21590094d8/3.13/alpine/Dockerfile) +- [`3.13.5-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8f0c1fd9bafcdb016bad4d1a18e9747460131867/3.13/alpine/Dockerfile) -- [`3.13.4-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.5-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/ubuntu/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 04029088f647..a8c875e9e811 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.29/alpine/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.30/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08c4afb5aa36afa3b5f5101678048b55b57290e5/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.31/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index e0139b262504..d2ec2ab673fa 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -87,8 +87,8 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) -- [Lunar](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/lunar/ubuntu-oci) -- [Mantic](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/mantic/ubuntu-oci) +- [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) +- [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) # License From 0cbc4535db4fa332e8e4c9aee3220bc8e7223f78 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jul 2024 17:08:58 -0700 Subject: [PATCH 1384/2686] Run update.sh --- debian/README.md | 48 ++++++------ eclipse-temurin/README.md | 158 +++++++++++++++++++------------------- gcc/README.md | 8 +- mysql/README.md | 8 +- 4 files changed, 108 insertions(+), 114 deletions(-) diff --git a/debian/README.md b/debian/README.md index 30f4b33f2c8d..fe2bac3e2794 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240701`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20240722`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240701-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20240722-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240701`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20240722`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240701-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20240722-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/experimental/Dockerfile) +- [`experimental`, `experimental-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/experimental/Dockerfile) -- [`oldstable`, `oldstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/rc-buggy/Dockerfile) -- [`sid`, `sid-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/Dockerfile) +- [`sid`, `sid-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/sid/Dockerfile) -- [`sid-slim`, `sid-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/sid/slim/Dockerfile) -- [`stable`, `stable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/Dockerfile) +- [`stable`, `stable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/slim/Dockerfile) -- [`testing`, `testing-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/Dockerfile) +- [`testing`, `testing-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/Dockerfile) +- [`trixie`, `trixie-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240701`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/Dockerfile) +- [`unstable`, `unstable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240701-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/a6805afee173140046c0f4cd6a1a46ad2870e2ea/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 416e5494d84b..f70961af3f9b 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -34,8 +34,6 @@ WARNING: - [`8u412-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u412-b08-jdk-centos7`, `8-jdk-centos7`, `8-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/centos/Dockerfile) - - [`8u412-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubi/ubi9-minimal/Dockerfile) - [`8u412-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -52,8 +50,6 @@ WARNING: - [`8u412-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) -- [`8u412-b08-jre-centos7`, `8-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/centos/Dockerfile) - - [`8u412-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubi/ubi9-minimal/Dockerfile) - [`8u412-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -70,8 +66,6 @@ WARNING: - [`11.0.23_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.23_9-jdk-centos7`, `11-jdk-centos7`, `11-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/centos/Dockerfile) - - [`11.0.23_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubi/ubi9-minimal/Dockerfile) - [`11.0.23_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -88,8 +82,6 @@ WARNING: - [`11.0.23_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.23_9-jre-centos7`, `11-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/centos/Dockerfile) - - [`11.0.23_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubi/ubi9-minimal/Dockerfile) - [`11.0.23_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -100,69 +92,73 @@ WARNING: - [`11.0.23_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.11_9-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/alpine/Dockerfile) +- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/alpine/Dockerfile) + +- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/focal/Dockerfile) + +- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.11_9-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.11_9-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.11_9-jdk-centos7`, `17-jdk-centos7`, `17-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/centos/Dockerfile) +- [`17.0.12_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.11_9-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.11_9-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.12_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.11_9-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.12_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.11_9-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/alpine/Dockerfile) -- [`17.0.11_9-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.11_9-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/alpine/Dockerfile) +- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.11_9-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.11_9-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.11_9-jre-centos7`, `17-jre-centos7`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/centos/Dockerfile) +- [`17.0.12_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.11_9-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.11_9-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.12_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.11_9-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.12_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.11_9-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/alpine/Dockerfile) -- [`17.0.11_9-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.3_9-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/alpine/Dockerfile) +- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.3_9-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.3_9-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.3_9-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.4_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.3_9-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.4_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.3_9-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.4_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.3_9-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/alpine/Dockerfile) -- [`21.0.3_9-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/alpine/Dockerfile) +- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.3_9-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.3_9-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.3_9-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.4_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.3_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.4_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.3_9-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.4_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.3_9-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) - [`22.0.1_8-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/alpine/Dockerfile) @@ -258,69 +254,69 @@ WARNING: - [`11.0.23_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.23_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) -- `17.0.11_9-jdk`, `17-jdk`, `17`: +- `17.0.12_7-jdk`, `17-jdk`, `17`: - - [`17.0.11_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/ubuntu/jammy/Dockerfile) - - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.11_9-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.12_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.11_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.11_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.11_9-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.12_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.11_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.11_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.12_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-1809/Dockerfile) -- `17.0.11_9-jre`, `17-jre`: +- `17.0.12_7-jre`, `17-jre`: - - [`17.0.11_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/ubuntu/jammy/Dockerfile) - - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.11_9-jre-windowsservercore`, `17-jre-windowsservercore`: +- `17.0.12_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.11_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.11_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.11_9-jre-nanoserver`, `17-jre-nanoserver`: +- `17.0.12_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.11_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.11_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/17/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.12_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-1809/Dockerfile) -- `21.0.3_9-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.4_7-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.3_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/ubuntu/jammy/Dockerfile) - - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.3_9-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.4_7-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.3_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.3_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.3_9-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.4_7-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.3_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.3_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.4_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-1809/Dockerfile) -- `21.0.3_9-jre`, `21-jre`: +- `21.0.4_7-jre`, `21-jre`: - - [`21.0.3_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/ubuntu/jammy/Dockerfile) - - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.3_9-jre-windowsservercore`, `21-jre-windowsservercore`: +- `21.0.4_7-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.3_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.3_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.3_9-jre-nanoserver`, `21-jre-nanoserver`: +- `21.0.4_7-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.3_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.3_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/21/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) - `22.0.1_8-jdk`, `22-jdk`, `22`: @@ -476,7 +472,7 @@ The `eclipse-temurin` images come in many flavors, each designed for a specific This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `eclipse-temurin:-alpine` diff --git a/gcc/README.md b/gcc/README.md index 483365b1ff84..a2f0fa6dc58a 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/14/Dockerfile) +- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/14/Dockerfile) -- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/dfd9a5f296cd45762afd9b9e098d293b12dc5193/13/Dockerfile) +- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/13/Dockerfile) -- [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/4a0eb64954fed9990b723b618fa13f6b8f7762e3/12/Dockerfile) - -- [`11.5.0`, `11.5`, `11`, `11.5.0-bullseye`, `11.5-bullseye`, `11-bullseye`](https://github.com/docker-library/gcc/blob/f2681d9a12524b97ffe225a35d2c2f9f839cff0a/11/Dockerfile) +- [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/12/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index b70645ff1694..ba03b012affe 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.0.0`, `9.0`, `9`, `innovation`, `latest`, `9.0.0-oraclelinux9`, `9.0-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.0.0-oracle`, `9.0-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/3d11822710789e82f64f08c578162a5b804d2f2f/innovation/Dockerfile.oracle) +- [`9.0.1`, `9.0`, `9`, `innovation`, `latest`, `9.0.1-oraclelinux9`, `9.0-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.0.1-oracle`, `9.0-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/a482468640c602ccd8a7c86a4c7422f18a307326/innovation/Dockerfile.oracle) -- [`8.4.1`, `8.4`, `8`, `lts`, `8.4.1-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.1-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/efa7479ffbb00139f6f1f0b0fe70985f20ee0456/8.4/Dockerfile.oracle) +- [`8.4.2`, `8.4`, `8`, `lts`, `8.4.2-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.2-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/ea8ec8343c4540ac52e8bba94b5a531e298ff700/8.4/Dockerfile.oracle) -- [`8.0.38`, `8.0`, `8.0.38-oraclelinux9`, `8.0-oraclelinux9`, `8.0.38-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.oracle) +- [`8.0.39`, `8.0`, `8.0.39-oraclelinux9`, `8.0-oraclelinux9`, `8.0.39-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/3e6dfd03b956727c7fb5b30360512a11751a3e9d/8.0/Dockerfile.oracle) -- [`8.0.38-bookworm`, `8.0-bookworm`, `8.0.38-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/db7daba00da79773c594b94bd91c9deeca1c9c88/8.0/Dockerfile.debian) +- [`8.0.39-bookworm`, `8.0-bookworm`, `8.0.39-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/3e6dfd03b956727c7fb5b30360512a11751a3e9d/8.0/Dockerfile.debian) # Quick reference (cont.) From af85cbeffbeb47e9bba4cec9e8f489cc22dd62f0 Mon Sep 17 00:00:00 2001 From: mitja <25105259+nice2mitja@users.noreply.github.com> Date: Tue, 23 Jul 2024 18:44:38 +0200 Subject: [PATCH 1385/2686] SapMachine: minor content update on architectures and "Overview" section. (#2471) * Minor update on architectures and "Overview" section. Architectures are now part of the "Quick reference (cont.)" section. Update the "Overview" section. --- sapmachine/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sapmachine/content.md b/sapmachine/content.md index 414c058bb729..fb3758f08dce 100644 --- a/sapmachine/content.md +++ b/sapmachine/content.md @@ -1,10 +1,10 @@ ### Overview -The image in this repository contains the SapMachine Java virtual machine (JVM). SapMachine is an OpenJDK based JVM that is build, quality tested and long-term supported by SAP. It is the default JVM on the [SAP Cloud Platform](https://cloudplatform.sap.com/index.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack). +SapMachine is a binary distribution of the [Open Java Development Kit (OpenJDK)](https://openjdk.org/). It is built, quality tested and long-term supported by SAP. -For more information see the [SapMachine website](https://sapmachine.io). +SapMachine is the default Java runtime for [SAP's Business Technology Platform](https://www.sap.com/products/technology-platform.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack). -The SapMachine image supports the x86/64 architecture. +For more information see the [SapMachine website](https://sapmachine.io). Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates. From dd514bbddf8b472c7b6c93e3600aad87aef2723a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jul 2024 10:09:04 -0700 Subject: [PATCH 1386/2686] Run update.sh --- almalinux/README.md | 8 ++++---- fedora/README.md | 6 +++--- neo4j/README.md | 12 ++++++------ sapmachine/README.md | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 5c0bff414ba9..4d4ea1bf4959 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.10`, `8.10-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20240723`](https://github.com/AlmaLinux/container-images/blob/584b31e78a465a342845694393b2347ad4dfb553/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240528`](https://github.com/AlmaLinux/container-images/blob/88d9aea4fbb24eee1aaf9184954e583993e750f9/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240723`](https://github.com/AlmaLinux/container-images/blob/584b31e78a465a342845694393b2347ad4dfb553/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.4`, `9.4-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/default/amd64/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4-20240723`](https://github.com/AlmaLinux/container-images/blob/c7a0d7b57007f9b09b3f9e997df54f89d023bf60/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240530`](https://github.com/AlmaLinux/container-images/blob/ae4de0cbc927f1caf1a9d137d8f6cf69455dffe9/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240723`](https://github.com/AlmaLinux/container-images/blob/c7a0d7b57007f9b09b3f9e997df54f89d023bf60/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index ea8f486f8948..d1d588b528f0 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b437eac0888c8d19b668eb5ea5ee6419fe9b212c/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/fe832bce8c523c7d99b059d93afd32d2b01afee4/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a6d8c7a70cfeac384560e39d12d6734e5cd45c3c/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1225af72e061af0bcee8c8c426a6396ef6c60cf/x86_64/Dockerfile) -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a9c81afc3165034349f390c1df17019e0e40c947/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/98b56c235d7395fcdee8ed37a6960f26a1dbdd13/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 5487dde20513..adea4ae1a3b1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.21.2-community-bullseye`, `5.21-community-bullseye`, `5-community-bullseye`, `5.21.2-community`, `5.21-community`, `5-community`, `5.21.2-bullseye`, `5.21-bullseye`, `5-bullseye`, `5.21.2`, `5.21`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/bullseye/community/Dockerfile) +- [`5.22.0-community-bullseye`, `5.22-community-bullseye`, `5-community-bullseye`, `5.22.0-community`, `5.22-community`, `5-community`, `5.22.0-bullseye`, `5.22-bullseye`, `5-bullseye`, `5.22.0`, `5.22`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/bullseye/community/Dockerfile) -- [`5.21.2-enterprise-bullseye`, `5.21-enterprise-bullseye`, `5-enterprise-bullseye`, `5.21.2-enterprise`, `5.21-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/bullseye/enterprise/Dockerfile) +- [`5.22.0-enterprise-bullseye`, `5.22-enterprise-bullseye`, `5-enterprise-bullseye`, `5.22.0-enterprise`, `5.22-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/bullseye/enterprise/Dockerfile) -- [`5.21.2-community-ubi9`, `5.21-community-ubi9`, `5-community-ubi9`, `5.21.2-ubi9`, `5.21-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/ubi9/community/Dockerfile) +- [`5.22.0-community-ubi9`, `5.22-community-ubi9`, `5-community-ubi9`, `5.22.0-ubi9`, `5.22-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/ubi9/community/Dockerfile) -- [`5.21.2-enterprise-ubi9`, `5.21-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ffbc64121d15ea1e1fa75115ab0d1dae0f729ffb/5.21.2/ubi9/enterprise/Dockerfile) +- [`5.22.0-enterprise-ubi9`, `5.22-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/ubi9/enterprise/Dockerfile) -- [`4.4.35`, `4.4.35-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/community/Dockerfile) +- [`4.4.36`, `4.4.36-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/4.4.36/bullseye/community/Dockerfile) -- [`4.4.35-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/62fed0e66f4f437924853a02aced6ffaf2b507cd/4.4.35/bullseye/enterprise/Dockerfile) +- [`4.4.36-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/4.4.36/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index da612bb85cf1..b986070bdd4c 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -141,11 +141,11 @@ WARNING: ### Overview -The image in this repository contains the SapMachine Java virtual machine (JVM). SapMachine is an OpenJDK based JVM that is build, quality tested and long-term supported by SAP. It is the default JVM on the [SAP Cloud Platform](https://cloudplatform.sap.com/index.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack). +SapMachine is a binary distribution of the [Open Java Development Kit (OpenJDK)](https://openjdk.org/). It is built, quality tested and long-term supported by SAP. -For more information see the [SapMachine website](https://sapmachine.io). +SapMachine is the default Java runtime for [SAP's Business Technology Platform](https://www.sap.com/products/technology-platform.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack). -The SapMachine image supports the x86/64 architecture. +For more information see the [SapMachine website](https://sapmachine.io). Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates. From 63a06d248ba78ec2aeb244d22b3dc2dff21422a4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jul 2024 11:08:54 -0700 Subject: [PATCH 1387/2686] Run update.sh --- storm/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storm/README.md b/storm/README.md index d008bcd6a34c..ac2d8fa435fc 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.2`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/d8c821ffb599be733400c98cc10fe4c05966b552/2.6.2/Dockerfile) +- [`2.6.3`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/e7117105eb207e0ffad071d429e7c3de8c0864ce/2.6.3/Dockerfile) -- [`2.6.2-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/31209f0cde237834a3602a382e69a6caa6bdcffc/2.6.2-jre17/Dockerfile) +- [`2.6.3-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/e7117105eb207e0ffad071d429e7c3de8c0864ce/2.6.3-jre17/Dockerfile) # Quick reference (cont.) From 92f34a39b513b545b20f1eef14fbcead96fd6097 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jul 2024 12:09:16 -0700 Subject: [PATCH 1388/2686] Run update.sh --- tomee/README.md | 96 +++++++++++++++++++------------------------------ 1 file changed, 36 insertions(+), 60 deletions(-) diff --git a/tomee/README.md b/tomee/README.md index 3b77fcb71836..2c56c52d9404 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,101 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-ubuntu-microprofile`, `10.0.0-M1-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre11-ubuntu-microprofile`, `10.0.0-M1-ubuntu-microprofile`, `10.0.0-M1-jre11-Temurin-microprofile`, `10.0.0-M1-Temurin-microprofile`, `10.0.0-M1-jre11-microprofile`, `10.0.0-M1-microprofile`, `10.0.0-M1-jre11-Temurin-ubuntu`, `10.0.0-M1-Temurin-ubuntu`, `10.0.0-M1-jre11-ubuntu`, `10.0.0-M1-ubuntu`, `10.0.0-M1-jre11-Temurin`, `10.0.0-M1-Temurin`, `10.0.0-M1-jre11`, `10.0.0-M1`, `10.0-jre11-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre11-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre11-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre11-microprofile`, `10.0-microprofile`, `10.0-jre11-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre11-ubuntu`, `10.0-ubuntu`, `10.0-jre11-Temurin`, `10.0-Temurin`, `10.0-jre11`, `10.0`, `10-jre11-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre11-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre11-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre11-microprofile`, `10-microprofile`, `10-jre11-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre11-ubuntu`, `10-ubuntu`, `10-jre11-Temurin`, `10-Temurin`, `10-jre11`, `10`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M2-Temurin-ubuntu-microprofile`, `10.0.0-M2-jre17-ubuntu-microprofile`, `10.0.0-M2-ubuntu-microprofile`, `10.0.0-M2-jre17-Temurin-microprofile`, `10.0.0-M2-Temurin-microprofile`, `10.0.0-M2-jre17-microprofile`, `10.0.0-M2-microprofile`, `10.0.0-M2-jre17-Temurin-ubuntu`, `10.0.0-M2-Temurin-ubuntu`, `10.0.0-M2-jre17-ubuntu`, `10.0.0-M2-ubuntu`, `10.0.0-M2-jre17-Temurin`, `10.0.0-M2-Temurin`, `10.0.0-M2-jre17`, `10.0.0-M2`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-ubuntu`, `10.0-jre17-Temurin`, `10.0-Temurin`, `10.0-jre17`, `10.0`, `10-jre17-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre17-microprofile`, `10-microprofile`, `10-jre17-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-ubuntu`, `10-jre17-Temurin`, `10-Temurin`, `10-jre17`, `10`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-ubuntu-plume`, `10.0.0-M1-Temurin-ubuntu-plume`, `10.0.0-M1-jre11-ubuntu-plume`, `10.0.0-M1-ubuntu-plume`, `10.0.0-M1-jre11-Temurin-plume`, `10.0.0-M1-Temurin-plume`, `10.0.0-M1-jre11-plume`, `10.0.0-M1-plume`, `10.0-jre11-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre11-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre11-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre11-plume`, `10.0-plume`, `10-jre11-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre11-ubuntu-plume`, `10-ubuntu-plume`, `10-jre11-Temurin-plume`, `10-Temurin-plume`, `10-jre11-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-ubuntu-plume`, `10.0.0-M2-Temurin-ubuntu-plume`, `10.0.0-M2-jre17-ubuntu-plume`, `10.0.0-M2-ubuntu-plume`, `10.0.0-M2-jre17-Temurin-plume`, `10.0.0-M2-Temurin-plume`, `10.0.0-M2-jre17-plume`, `10.0.0-M2-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre17-plume`, `10.0-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-Temurin-plume`, `10-jre17-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-ubuntu-plus`, `10.0.0-M1-Temurin-ubuntu-plus`, `10.0.0-M1-jre11-ubuntu-plus`, `10.0.0-M1-ubuntu-plus`, `10.0.0-M1-jre11-Temurin-plus`, `10.0.0-M1-Temurin-plus`, `10.0.0-M1-jre11-plus`, `10.0.0-M1-plus`, `10.0-jre11-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre11-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre11-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre11-plus`, `10.0-plus`, `10-jre11-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre11-ubuntu-plus`, `10-ubuntu-plus`, `10-jre11-Temurin-plus`, `10-Temurin-plus`, `10-jre11-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-ubuntu-plus`, `10.0.0-M2-Temurin-ubuntu-plus`, `10.0.0-M2-jre17-ubuntu-plus`, `10.0.0-M2-ubuntu-plus`, `10.0.0-M2-jre17-Temurin-plus`, `10.0.0-M2-Temurin-plus`, `10.0.0-M2-jre17-plus`, `10.0.0-M2-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre17-plus`, `10.0-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-Temurin-plus`, `10-jre17-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-ubuntu-webprofile`, `10.0.0-M1-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre11-ubuntu-webprofile`, `10.0.0-M1-ubuntu-webprofile`, `10.0.0-M1-jre11-Temurin-webprofile`, `10.0.0-M1-Temurin-webprofile`, `10.0.0-M1-jre11-webprofile`, `10.0.0-M1-webprofile`, `10.0-jre11-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre11-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre11-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre11-webprofile`, `10.0-webprofile`, `10-jre11-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre11-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre11-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre11-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M2-Temurin-ubuntu-webprofile`, `10.0.0-M2-jre17-ubuntu-webprofile`, `10.0.0-M2-ubuntu-webprofile`, `10.0.0-M2-jre17-Temurin-webprofile`, `10.0.0-M2-Temurin-webprofile`, `10.0.0-M2-jre17-webprofile`, `10.0.0-M2-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre17-webprofile`, `10.0-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre17-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-alpine-microprofile`, `10.0.0-M1-Temurin-alpine-microprofile`, `10.0.0-M1-jre11-alpine-microprofile`, `10.0.0-M1-alpine-microprofile`, `10.0.0-M1-jre11-Temurin-alpine`, `10.0.0-M1-Temurin-alpine`, `10.0.0-M1-jre11-alpine`, `10.0.0-M1-alpine`, `10.0-jre11-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre11-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre11-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre11-alpine`, `10.0-alpine`, `10-jre11-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre11-alpine-microprofile`, `10-alpine-microprofile`, `10-jre11-Temurin-alpine`, `10-Temurin-alpine`, `10-jre11-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-alpine-microprofile`, `10.0.0-M2-Temurin-alpine-microprofile`, `10.0.0-M2-jre17-alpine-microprofile`, `10.0.0-M2-alpine-microprofile`, `10.0.0-M2-jre17-Temurin-alpine`, `10.0.0-M2-Temurin-alpine`, `10.0.0-M2-jre17-alpine`, `10.0.0-M2-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre17-alpine`, `10.0-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-Temurin-alpine`, `10-jre17-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-alpine-plume`, `10.0.0-M1-Temurin-alpine-plume`, `10.0.0-M1-jre11-alpine-plume`, `10.0.0-M1-alpine-plume`, `10.0-jre11-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre11-alpine-plume`, `10.0-alpine-plume`, `10-jre11-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre11-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-alpine-plume`, `10.0.0-M2-Temurin-alpine-plume`, `10.0.0-M2-jre17-alpine-plume`, `10.0.0-M2-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10.0-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-alpine-plus`, `10.0.0-M1-Temurin-alpine-plus`, `10.0.0-M1-jre11-alpine-plus`, `10.0.0-M1-alpine-plus`, `10.0-jre11-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre11-alpine-plus`, `10.0-alpine-plus`, `10-jre11-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre11-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-alpine-plus`, `10.0.0-M2-Temurin-alpine-plus`, `10.0.0-M2-jre17-alpine-plus`, `10.0.0-M2-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10.0-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.0.0-M1-jre11-Temurin-alpine-webprofile`, `10.0.0-M1-Temurin-alpine-webprofile`, `10.0.0-M1-jre11-alpine-webprofile`, `10.0.0-M1-alpine-webprofile`, `10.0-jre11-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre11-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre11-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre11-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-M2-jre17-Temurin-alpine-webprofile`, `10.0.0-M2-Temurin-alpine-webprofile`, `10.0.0-M2-jre17-alpine-webprofile`, `10.0.0-M2-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.0-M1-jre11-Semeru-ubuntu-microprofile`, `10.0.0-M1-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre11-Semeru-microprofile`, `10.0.0-M1-Semeru-microprofile`, `10.0.0-M1-jre11-Semeru-ubuntu`, `10.0.0-M1-Semeru-ubuntu`, `10.0.0-M1-jre11-Semeru`, `10.0.0-M1-Semeru`, `10.0-jre11-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre11-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre11-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre11-Semeru`, `10.0-Semeru`, `10-jre11-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre11-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre11-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre11-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M2-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M2-Semeru-ubuntu-microprofile`, `10.0.0-M2-jre17-Semeru-microprofile`, `10.0.0-M2-Semeru-microprofile`, `10.0.0-M2-jre17-Semeru-ubuntu`, `10.0.0-M2-Semeru-ubuntu`, `10.0.0-M2-jre17-Semeru`, `10.0.0-M2-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10.0-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre17-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.0-M1-jre11-Semeru-ubuntu-plume`, `10.0.0-M1-Semeru-ubuntu-plume`, `10.0.0-M1-jre11-Semeru-plume`, `10.0.0-M1-Semeru-plume`, `10.0-jre11-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre11-Semeru-plume`, `10.0-Semeru-plume`, `10-jre11-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre11-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-M2-jre17-Semeru-ubuntu-plume`, `10.0.0-M2-Semeru-ubuntu-plume`, `10.0.0-M2-jre17-Semeru-plume`, `10.0.0-M2-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10.0-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.0-M1-jre11-Semeru-ubuntu-plus`, `10.0.0-M1-Semeru-ubuntu-plus`, `10.0.0-M1-jre11-Semeru-plus`, `10.0.0-M1-Semeru-plus`, `10.0-jre11-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre11-Semeru-plus`, `10.0-Semeru-plus`, `10-jre11-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre11-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-M2-jre17-Semeru-ubuntu-plus`, `10.0.0-M2-Semeru-ubuntu-plus`, `10.0.0-M2-jre17-Semeru-plus`, `10.0.0-M2-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10.0-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.0-M1-jre11-Semeru-ubuntu-webprofile`, `10.0.0-M1-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre11-Semeru-webprofile`, `10.0.0-M1-Semeru-webprofile`, `10.0-jre11-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre11-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre11-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre11-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre11/Semeru/ubuntu/webprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M1-jre17-ubuntu-microprofile`, `10.0.0-M1-jre17-Temurin-microprofile`, `10.0.0-M1-jre17-microprofile`, `10.0.0-M1-jre17-Temurin-ubuntu`, `10.0.0-M1-jre17-ubuntu`, `10.0.0-M1-jre17-Temurin`, `10.0.0-M1-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-ubuntu-plume`, `10.0.0-M1-jre17-ubuntu-plume`, `10.0.0-M1-jre17-Temurin-plume`, `10.0.0-M1-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-ubuntu-plus`, `10.0.0-M1-jre17-ubuntu-plus`, `10.0.0-M1-jre17-Temurin-plus`, `10.0.0-M1-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M1-jre17-ubuntu-webprofile`, `10.0.0-M1-jre17-Temurin-webprofile`, `10.0.0-M1-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-alpine-microprofile`, `10.0.0-M1-jre17-alpine-microprofile`, `10.0.0-M1-jre17-Temurin-alpine`, `10.0.0-M1-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-alpine-plume`, `10.0.0-M1-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-alpine-plus`, `10.0.0-M1-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) - -- [`10.0.0-M1-jre17-Temurin-alpine-webprofile`, `10.0.0-M1-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M1-jre17-Semeru-microprofile`, `10.0.0-M1-jre17-Semeru-ubuntu`, `10.0.0-M1-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) - -- [`10.0.0-M1-jre17-Semeru-ubuntu-plume`, `10.0.0-M1-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) - -- [`10.0.0-M1-jre17-Semeru-ubuntu-plus`, `10.0.0-M1-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) - -- [`10.0.0-M1-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M1-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/47f8011e6567dfc4317d7f5b84e9aafb14f5963d/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M2-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M2-Semeru-ubuntu-webprofile`, `10.0.0-M2-jre17-Semeru-webprofile`, `10.0.0-M2-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 7d011a112f1f2a7b9c594116c67dec0d85ff94fa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Jul 2024 18:09:03 -0700 Subject: [PATCH 1389/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 46 ++++++------ eclipse-temurin/README.md | 148 ++++++++++++++++++++------------------ rabbitmq/README.md | 8 +-- wordpress/README.md | 36 +++------- 5 files changed, 115 insertions(+), 125 deletions(-) diff --git a/bash/README.md b/bash/README.md index a3c5b5b8c369..80fb0d810724 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240711`, `devel`, `devel-20240711-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f3e43fabdd7d92ecf33881c7cc69a5b847d096b/devel/Dockerfile) +- [`devel-20240718`, `devel`, `devel-20240718-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/0c9b183a6cb6331ab23e88c0b9b313c164305e35/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index c6edc031ef55..4eeeca847c3a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,67 +28,67 @@ WARNING: ## Simple Tags -- [`27.1.0-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/cli/Dockerfile) +- [`27.1.1-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/cli/Dockerfile) -- [`27.1.0-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.0-dind-alpine3.20`, `27.1.0`, `27.1`, `27`, `latest`, `27.1.0-alpine3.20`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/dind/Dockerfile) +- [`27.1.1-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.1-dind-alpine3.20`, `27.1.1`, `27.1`, `27`, `latest`, `27.1.1-alpine3.20`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind/Dockerfile) -- [`27.1.0-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/dind-rootless/Dockerfile) +- [`27.1.1-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind-rootless/Dockerfile) -- [`27.1.0-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.1.1-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.1.0-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-1809/Dockerfile) +- [`27.1.1-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/cli/Dockerfile) +- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/cli/Dockerfile) - [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-1809/Dockerfile) +- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.1.0-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.1.1-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc40408b3cda03b569d976adcf8ac4654be1c542/27/windows/windowsservercore-1809/Dockerfile) + - [`27.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7b3d2fd09745c5bf9e4010781fce12c031b2ffc5/26/windows/windowsservercore-1809/Dockerfile) + - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-1809/Dockerfile) - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/76d8175f8b4ff4fd27c16090be7fcdaf490e4f3d/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e23eebce8242288c988a1491b6b3dfe69e87660c/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index f70961af3f9b..e1b52e1e93ff 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -60,37 +60,41 @@ WARNING: - [`8u412-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.23_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/alpine/Dockerfile) +- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/alpine/Dockerfile) -- [`11.0.23_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.23_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.23_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.23_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.23_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.24_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.23_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.24_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.23_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.24_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.23_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/alpine/Dockerfile) +- [`11.0.24_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.23_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/alpine/Dockerfile) -- [`11.0.23_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.23_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.23_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.23_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.23_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.24_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.23_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.24_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + +- [`11.0.24_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) + +- [`11.0.24_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-1809/Dockerfile) - [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/alpine/Dockerfile) @@ -160,33 +164,37 @@ WARNING: - [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) -- [`22.0.1_8-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/alpine/Dockerfile) +- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/alpine/Dockerfile) + +- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/jammy/Dockerfile) + +- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/noble/Dockerfile) -- [`22.0.1_8-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubi/ubi9-minimal/Dockerfile) -- [`22.0.1_8-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.1_8-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.2_9-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`22.0.1_8-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.2_9-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22.0.1_8-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22.0.2_9-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`22.0.1_8-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/alpine/Dockerfile) -- [`22.0.1_8-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/alpine/Dockerfile) +- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/jammy/Dockerfile) -- [`22.0.1_8-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/noble/Dockerfile) -- [`22.0.1_8-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubi/ubi9-minimal/Dockerfile) -- [`22.0.1_8-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.2_9-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.1_8-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.2_9-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`22.0.1_8-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) +- [`22.0.2_9-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) -- [`22.0.1_8-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) +- [`22.0.2_9-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -222,37 +230,37 @@ WARNING: - [`8u412-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`8u412-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.23_9-jdk`, `11-jdk`, `11`: +- `11.0.24_8-jdk`, `11-jdk`, `11`: - - [`11.0.23_9-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/ubuntu/jammy/Dockerfile) - - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.23_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.24_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.23_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.23_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.23_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.24_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.23_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.23_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.24_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-1809/Dockerfile) -- `11.0.23_9-jre`, `11-jre`: +- `11.0.24_8-jre`, `11-jre`: - - [`11.0.23_9-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/ubuntu/jammy/Dockerfile) - - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.23_9-jre-windowsservercore`, `11-jre-windowsservercore`: +- `11.0.24_8-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.23_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.23_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.23_9-jre-nanoserver`, `11-jre-nanoserver`: +- `11.0.24_8-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.23_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.23_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/11/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.24_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-1809/Dockerfile) - `17.0.12_7-jdk`, `17-jdk`, `17`: @@ -318,37 +326,37 @@ WARNING: - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) -- `22.0.1_8-jdk`, `22-jdk`, `22`: +- `22.0.2_9-jdk`, `22-jdk`, `22`: - - [`22.0.1_8-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/ubuntu/jammy/Dockerfile) - - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22.0.1_8-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: +- `22.0.2_9-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.1_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) -- `22.0.1_8-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: +- `22.0.2_9-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22.0.1_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.1_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jdk/windows/nanoserver-1809/Dockerfile) + - [`22.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-1809/Dockerfile) -- `22.0.1_8-jre`, `22-jre`: +- `22.0.2_9-jre`, `22-jre`: - - [`22.0.1_8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/ubuntu/jammy/Dockerfile) - - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) -- `22.0.1_8-jre-windowsservercore`, `22-jre-windowsservercore`: +- `22.0.2_9-jre-windowsservercore`, `22-jre-windowsservercore`: - - [`22.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.1_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) -- `22.0.1_8-jre-nanoserver`, `22-jre-nanoserver`: +- `22.0.2_9-jre-nanoserver`, `22-jre-nanoserver`: - - [`22.0.1_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.1_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/22/jre/windows/nanoserver-1809/Dockerfile) + - [`22.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 07f1831df88f..e2f178c5e8a6 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.0.0-beta.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) -- [`3.13.5`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/8f0c1fd9bafcdb016bad4d1a18e9747460131867/3.13/ubuntu/Dockerfile) +- [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/753003d979b69971fe7b4a41d36ebd53447ec5e7/3.13/ubuntu/Dockerfile) -- [`3.13.5-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.6-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.5-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8f0c1fd9bafcdb016bad4d1a18e9747460131867/3.13/alpine/Dockerfile) +- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/753003d979b69971fe7b4a41d36ebd53447ec5e7/3.13/alpine/Dockerfile) -- [`3.13.5-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.6-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/ubuntu/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 17a7616be63d..212b5bbc95fa 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.0-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.0-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/apache/Dockerfile) +- [`6.6.1-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.1-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/apache/Dockerfile) -- [`6.6.0-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/fpm/Dockerfile) +- [`6.6.1-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/fpm/Dockerfile) -- [`6.6.0-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.1-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.0-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.0`, `6.6`, `6`, `latest`, `6.6.0-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.0-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/apache/Dockerfile) +- [`6.6.1-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.1`, `6.6`, `6`, `latest`, `6.6.1-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.1-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/apache/Dockerfile) -- [`6.6.0-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.0-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/fpm/Dockerfile) +- [`6.6.1-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.1-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/fpm/Dockerfile) -- [`6.6.0-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.0-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.1-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.1-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.0-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.0-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/apache/Dockerfile) +- [`6.6.1-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.1-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/apache/Dockerfile) -- [`6.6.0-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/fpm/Dockerfile) +- [`6.6.1-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/fpm/Dockerfile) -- [`6.6.0-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b9a56e029c2e85369f96b1f0f5ffbeb0e25882b8/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.1-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) @@ -48,24 +48,6 @@ WARNING: - [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6.1-RC1-php8.1-apache`, `beta-6.6.1-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6.1-RC1-php8.1`, `beta-6.6.1-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/apache/Dockerfile) - -- [`beta-6.6.1-RC1-php8.1-fpm`, `beta-6.6.1-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.6.1-RC1-php8.1-fpm-alpine`, `beta-6.6.1-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.6.1-RC1-apache`, `beta-6.6.1-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6.1-RC1`, `beta-6.6.1`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6.1-RC1-php8.2-apache`, `beta-6.6.1-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6.1-RC1-php8.2`, `beta-6.6.1-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/apache/Dockerfile) - -- [`beta-6.6.1-RC1-fpm`, `beta-6.6.1-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6.1-RC1-php8.2-fpm`, `beta-6.6.1-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.6.1-RC1-fpm-alpine`, `beta-6.6.1-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6.1-RC1-php8.2-fpm-alpine`, `beta-6.6.1-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.6.1-RC1-php8.3-apache`, `beta-6.6.1-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6.1-RC1-php8.3`, `beta-6.6.1-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/apache/Dockerfile) - -- [`beta-6.6.1-RC1-php8.3-fpm`, `beta-6.6.1-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.6.1-RC1-php8.3-fpm-alpine`, `beta-6.6.1-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/2cb57ab7b6beab34aff0450f26eca2180b9dfaad/beta/php8.3/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 4e109bb6412963711a2b6f5689b3823b185af310 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jul 2024 08:08:56 -0700 Subject: [PATCH 1390/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 4c89b80c97b3..daa736e5756b 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`22-bullseye-slim`, `22.5-bullseye-slim`, `22.5.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.15-alpine3.19`, `20.15.1-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.16-alpine3.19`, `20.16.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.15-alpine`, `20.15-alpine3.20`, `20.15.1-alpine`, `20.15.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.16-alpine`, `20.16-alpine3.20`, `20.16.0-alpine`, `20.16.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.15`, `20.15-bookworm`, `20.15.1`, `20.15.1-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.16`, `20.16-bookworm`, `20.16.0`, `20.16.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.15-bookworm-slim`, `20.15-slim`, `20.15.1-bookworm-slim`, `20.15.1-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.16-bookworm-slim`, `20.16-slim`, `20.16.0-bookworm-slim`, `20.16.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.15-bullseye`, `20.15.1-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.16-bullseye`, `20.16.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.15-bullseye-slim`, `20.15.1-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.16-bullseye-slim`, `20.16.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bullseye-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) From 3374c45d9e2a990a29289b531b2eca45e6c82b70 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jul 2024 10:08:52 -0700 Subject: [PATCH 1391/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- sonarqube/README.md | 20 ++++++++++---------- swipl/README.md | 4 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e2f178c5e8a6..0cd721e196bb 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.1`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.3`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/a1177f4c71c9c3214bd1ec3f653d1dbf91e0d3fb/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-beta.1-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-beta.3-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.1-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.3-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/a1177f4c71c9c3214bd1ec3f653d1dbf91e0d3fb/4.0-rc/alpine/Dockerfile) -- [`4.0.0-beta.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-beta.3-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/753003d979b69971fe7b4a41d36ebd53447ec5e7/3.13/ubuntu/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 837a7d9fcb67..3554c27be44b 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.6-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/community/Dockerfile) +- [`9.9.6-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/community/Dockerfile) -- [`9.9.6-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/developer/Dockerfile) +- [`9.9.6-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/developer/Dockerfile) -- [`9.9.6-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/enterprise/Dockerfile) +- [`9.9.6-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/enterprise/Dockerfile) -- [`9.9.6-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/app/Dockerfile) +- [`9.9.6-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/datacenter/app/Dockerfile) -- [`9.9.6-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/9/datacenter/search/Dockerfile) +- [`9.9.6-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/datacenter/search/Dockerfile) -- [`10.6.0-community`, `10.6-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/community/Dockerfile) +- [`10.6.0-community`, `10.6-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/community/Dockerfile) -- [`10.6.0-developer`, `10.6-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/developer/Dockerfile) +- [`10.6.0-developer`, `10.6-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/developer/Dockerfile) -- [`10.6.0-enterprise`, `10.6-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/enterprise/Dockerfile) +- [`10.6.0-enterprise`, `10.6-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/enterprise/Dockerfile) -- [`10.6.0-datacenter-app`, `10.6-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/app/Dockerfile) +- [`10.6.0-datacenter-app`, `10.6-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/datacenter/app/Dockerfile) -- [`10.6.0-datacenter-search`, `10.6-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/c46099ea4f748bc1bfea76bfc928b935a4e07430/10/datacenter/search/Dockerfile) +- [`10.6.0-datacenter-search`, `10.6-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 0ef68445b6bc..2e227f7400f3 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.8`](https://github.com/SWI-Prolog/docker-swipl/blob/debcf80f61dab217a2ade259a203a2b9e6f0a268/9.3.8/bookworm/Dockerfile) +- [`latest`, `9.3.8`](https://github.com/SWI-Prolog/docker-swipl/blob/053b5508dfed21e7549947113893517c64494cce/9.3.8/bookworm/Dockerfile) -- [`stable`, `9.2.5`](https://github.com/SWI-Prolog/docker-swipl/blob/debcf80f61dab217a2ade259a203a2b9e6f0a268/9.2.5/bookworm/Dockerfile) +- [`stable`, `9.2.6`](https://github.com/SWI-Prolog/docker-swipl/blob/053b5508dfed21e7549947113893517c64494cce/9.2.6/bookworm/Dockerfile) # Quick reference (cont.) From 4aa3d1b1c9c9a2954e2bd5bc39556760d7161fa7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jul 2024 15:08:59 -0700 Subject: [PATCH 1392/2686] Run update.sh --- haproxy/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index d371b26d52d8..00c66ee3c545 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev3`, `3.1-dev`, `3.1-dev3-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/da5603561f715baf0d19d0857224a715b899f126/3.1/Dockerfile) +- [`3.1-dev4`, `3.1-dev`, `3.1-dev4-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/027eb3e20eacc457cfd53a54982823aadebcfa4e/3.1/Dockerfile) -- [`3.1-dev3-alpine`, `3.1-dev-alpine`, `3.1-dev3-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/da5603561f715baf0d19d0857224a715b899f126/3.1/alpine/Dockerfile) +- [`3.1-dev4-alpine`, `3.1-dev-alpine`, `3.1-dev4-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/027eb3e20eacc457cfd53a54982823aadebcfa4e/3.1/alpine/Dockerfile) - [`3.0.3`, `3.0`, `lts`, `latest`, `3.0.3-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 09601837e301..d51dec654393 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c84482379fe634b0b9db34cddc5555557bd4c514/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim-fips/Dockerfile) # Quick reference (cont.) From c88522f95bebcab2322f3020f2f735210286939b Mon Sep 17 00:00:00 2001 From: John O'Nolan Date: Thu, 25 Jul 2024 07:05:49 -0400 Subject: [PATCH 1393/2686] Updated Ghost logo + metadata --- ghost/README-short.txt | 2 +- ghost/content.md | 4 +++- ghost/logo.png | Bin 43370 -> 339175 bytes 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ghost/README-short.txt b/ghost/README-short.txt index 74097a2bf7c1..00045aa8b086 100644 --- a/ghost/README-short.txt +++ b/ghost/README-short.txt @@ -1 +1 @@ -Ghost is a free and open source blogging platform written in JavaScript +Publish by web and email newsletter, with member signups and subscription payments. \ No newline at end of file diff --git a/ghost/content.md b/ghost/content.md index 4a9f1607841d..6f671747851d 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -1,6 +1,8 @@ # Ghost -Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications. +Ghost is an independent platform for publishing online by web and email newsletter. It has user signups, gated access and subscription payments built-in (with Stripe) to allow you to build a direct relationship with your audience. It's fast, user-friendly, and runs on Node.js & MySQL8. + +Ghost is used in production by Apple, OpenAI, TheAtlantic, SkyNews, DuckDuckGo, Buffer, and tens of thousands of companies, news websites and independent creators. Learn more about the project on [Ghost.org](https://ghost.org) > [wikipedia.org/wiki/Ghost_(blogging_platform)](http://en.wikipedia.org/wiki/Ghost_%28blogging_platform%29) diff --git a/ghost/logo.png b/ghost/logo.png index d3f2d3cebe18e98bb3582a3586f336ec1c8d3039..efe7f2243a30e0f67ba3aabed275ba3adbd5cd67 100644 GIT binary patch literal 339175 zcmX`SWmH^E(>98`Gq?oL3=$kdaCaCW0S0&1;4-)b3mV*=;O-I#?(Pr*1PJaD$C#4Pthe-4KLqma$tU94s!Tz8-$w6G; z;4leafADbWnWV5mco%h93Am~W$^+OxNS5Nt;&5=av6zp>$Z*K4zVcGyA3foZo*?yX z!){Dp*kYj*S$p??#DP+E8wk)UW<}HJDd2!I?tbw#v7zgM`ahtfH9mw z06}yo7E#0G$5VN2Ta^af%z(;}(A9yZ)$O2kK0Q@!+YMGxRL5c40Tqb0ZQv81#na8- zzYN9KcTI>u07j^ZF-I;K2=D>C)q$ftlX#ziWSWn+nYvvW=Qm?mU`B%v=h7?2L{J&v zO9p7CJ{I&R>~7v+f~q17EeYDUpNAANYBd|#oRXS4sFv^)i@N2#J4gwr4M2w9c=CukXi2QVChUBoFAz`4vmc7N}1aqpC2ly12FnKzzDD!{O-TlaKT5d&bR zM3Tx|+I3<;tR$UEP1Z{#(TUk*`Ab~{1~vhv$IFSNHZpbYFdMRg0%|~a(N~h~a1;7A zUS9Wg4Q365kLHYIFbM{KBoh8>TU{QFC$to(bw5^iJ5&d{qrN^ah?Zok}h6MyLcQhJq3xlIj(^e&Rj|Z*nqDhY8ak7o%~OzaL=Y z05Bz7cWt_#r2pN9={Ng3Zx4K16w3qKfnJ%Y;wRXVni_s84}l7=R>$uEnqhDj^6~=%5huYV*@O()! z&}+*Q1AV&r#^M+Ra{!K4J}v<|{8*`4mG%+gRm-m+uj6<)3?J^d6=@QLnuxsmm`niP z*XjmQ=h_wm92mSyqhF%dDtY~}W)Ex?{6mpd1}V?LsJae)q{xtrx}t5Xm->!3Odg4|wvgt`PE8 zUT*~WAj2rOlTVCH^Nd&PzyNG!{*RyI-8H=pmD-UvOrs;_!v1ZeE-af}7!8d63F*48 zdhItqPJ<i zKsSir$mThs%?i|n024q8TSq*XVLAB-vp{couPvpqfJj?|mVc3w-d*`j*U31$moCV)c|8Evs zJmO0}9BdckHhTVtLEaJ%5MK=s2*11y{{2cCBlP#dkLQ!`wJ((f@txR=G(Ld;QwnB; zN0V#Y#f_J@xl4&)ggR8`lQr({qMwrgt?MV2oWx%)fQ^Uasl0RSg7*%{{hwaPh>UbT zSPEh{a0urd-Sb^1TH^oXWTM;a=QF>wIdx6j{zgH}opbF&>@F15pCtO8`G3-ZkC67i zLfWYb!AA-$Zq(yu_c@I_+a&*QeMwIb3n7Q0fcMT9ud`pz9%8kJxx{h$DEfQ<$ADxD z+qSqH=0mV>RBM}yWR}vCWz=Psv1x6%uLTQGuUt&{#n*7pgCD>>Lv7F<*Y_Gu{ zETIx=VT6BUIOjJ{d~$xV_i0=SD^~L>C;GLQ?$b*iu)xS*fo+FyLUhF3@g}mnuLRld z@A!cCFcpML<55EhpX1?%R8eKA70$O@cvzplZmsRPeqc1tP1giDLc0e=O2EJytU2;J z#603Ss(_k>zP3uYZ!jllN8)8c>@;|ICrXml)uAd%HBbnN)J-k|ELJ3^=ea&P@{b=V zm4J_kN_ow~#n@<8DILODI5aD%G5T?&l><&(oD(E?u-S*h8|0E^*w+U=!!Be+74Mmg zJ~3x7a5Co8<`ifqasEPjJHVgdTZ$~5w?y=+N8sPkCeT_d_2`1HBuN?zpdD4^CmVK~ zX$6@nD^t`!{_iS?+n*TI1rF0n8C|tOn3?L0x;t%-9ARSkNKC>nhrRbW`K?91`iOfR zeTxo*K@f#EDA4IPjQGo9)ip#ZEDrfBZnQS&(aw2Q&8y-YwC2RZNsD4+bLm4)5j6}> z_h2uzN$lk=n8(IA<@Zl-m%OMRvp%*TZ^FZu(@?YSFZk%8z+$(Po!ROq&|~a$Lu^DdIq_e_b0Gv9(2MEcpepk; zWMfk{L6;|^^h+bkbBI!=b03IAeVH*vtZo<%|ytMtYIb$X=5i;lIPZxaeyjO8_Eu-H)m{l z-y1j71iutLqaMxPG*m8f<^v9y;qyi}igB{*zYFyTw#%iGvg-Lh@Eti&yvL2DKyT7W z$i{6Ein{K)f67^<(|D%{oabh&Dte4*+%J`ec^rUp&W%&kTs1wn9blygrMkAABRy@)DlALWFRj32Q|xQ-+-V8jiDCvD^f}ZJ>$`)%cfTAeyy`=$4>y$`QNplb|$eR*NKF0 zyevIpL#PLm{0pRP#t=M6{@oE5Ex-yj#JiL4Y0r`{3$;#7TNC0BhgaRgYGZr~qTa!u zryL9nv$jQ{%k=~_4-wh`d?TmDBi8)mJ0456?)F&BE$d}PXX87_1&3KDmo$Zb* z*0Ae-d5X>k%tObf`VTU&^h3Jjodoqku;BRzm8kBaS8l5!q?R}$!RU}@Rz28|@FbyK ziFRB>ycWRjM%61chqS08vhN6*E8er9d2jl+h8?#d6DslEkG)?S`JU4&_dMzF`#&XY zUaj^Omm)sB^1k%)PZ2u{*=f5^u*%M$rT@U+_2vk2ZLrKx>TO2o^k*zoOL^9}ymFlo zR(MD5Uq?8;6uUpRVyZ`UqaB}iIA2-s<%DUrX;jCdKG4QM<&ARY$vI*%bYWxgzbkk3y@e10^yPmSHf%R!7E_bVkDy za6|J+I)jL=bnyyN^hY9~2wKO@fIExn5JkH=0&c~0sLnlUu4lEBh!f^!9*;t|?KPj- zFvb=-2w{J`FRsU+U9+BbZXsnUKZ+`PK>K2PQ8Pi%P?enbP`1*yK8`O`0{(4GeTZJm z*(cZmv<-6s!TIK~f78x#@`VKkf?6qh731L-EWy}6O-v!lC)nuWMNUv1_k#}~iJkbH zGzdf_tH(_u${ToMETyBvJybO2m+V6xtZT#0-ggMrr1);4%G0^EX ze)dcwx%dG+*+)-m-EKy?ULM6RTj#CY8JBvro=ddR#x`as>i*l{tJ_q*PZ*1`Lw{UM zGb&ZADE@YsmhP$LEfqMeUOj(Li0cF8g~?eb&zu1P z%(9bur=$ysSqh2`L)59zg2+xRMq11ef;emmSnV);N&ykeSL5Ct0 zGtFJ2XG=<%4Sk>qJ<-V?M895Jx5Bc(zfe52!`CDNmBtRgurlDylA4~AD#Dqs^ zgqFUg->s`fG$NXl4YT!@v8#yp@CLMVY@D$nqBc85Kx_q48)BUMH86Bs@#F#RYKj-% zHqz(Dk|H%%7u)hs5abXYLuwzypgBc;G#r(qQFCqj1#)?(uMc&`ev0B+e&LXX4EPZOB89(jk~@V%koH96 z#QlIuZ2p(UhV!h50Nn6HdX|fS9i`u_v$-b72W1X526j1Y$!y%-OQ8+!lt|$*O#_O5_3-sD;P;7 zC9dd@*CD^j37aPS&G8Zbu})s2Lvb!K%<6><2^I#0x*-VLtVm;_{Tj>R8>~4F5M{g>Z;71aD37tulIa(sNPU=tbBoD_;#;x3sSc>!bg(@{f^ndXBCuevz!&=$ zV4Z|C2dTmTVWlQ9FVpaR`SX)E%4}-C4tKH?*A~%5h-A*7Q@zQMy)FLz8*jgbvy4v$ z9j6s<>kP*fR+@ZZsx%2W{BXTiT&y!^hz>Tb#DIcy4rIrFlDx<*4V2e-lP&p)u_gGZ|;*Tw9uWwNO&Ex3u&JH^P97EgK$n$?vs7Ta5${M(Tyn@AK zVJB>>Wxh>^ZUdB1lN4Iavg^*5A{rKCDsOxIIOlIj)*e2Z(%)U_f7lkeoI=2M3`6w786|Fj{1u$F8(gEh9FFh0Th^ z&yJwlxe7t-OYIew)bn+QBD-W?`IgNU&+38I~yFbzopfy?l zCDl6MPcEt6um}VR2}ad)EeAbmUi*idpl)A|{=<3V&jrGc2B4m->*)!U7hTxljqHKv zpx(xBa6px_JZegav|zY+w{m_^2-q5Tz3Wn7exg`@+kEgRk4Y#jXFGIq=2}O8cF!WF zee!`}cEs4ydF^|N{`cF@-uL`rW$~@*y8BTs``+k2c`$5OF;EPqxg|!x2y{;WWjfg( zFXXT$+1G?A4FaA4G%&z4B&0Sd!IhpoSi~cZ6JZVPT|CHUnamZ9Pdb>~3OJ1$XrJu= zG611Riy}s`b(3U6lkDy4cz5`@W&A6<#&OoH?;_H9m%H30^XfL33M(Fv=1+F&un&s@ zIKiT&XZ!K=9@IiDFH~R#tJt?^tH*pd?YZD1{OI}b>VY2gBEK&Gl(Xlgc0+!zf8q0r z9tA5eokp43rSW3`G8JuQ6pSs$CC3LiK6cewe;Y~x)EEz3DIOynT7TJ(iRga78skG} zZ&NXs2 zxiS_HAty7?myWwEk?k1BhBYWg$6!FDefA$L$OaqbLZ0{9gdM{O;=Y)#zQ1rLgCQM4 zORE`Hsr(G>ooBWF#SN7ht&sRA@aT)_Fo-6~*vqNOZP?DVohtonaF6XiThy}LwCp@( zGcQ$!ig&A>IC()b25FpG3OAJHTahZ*{Z=8W$abe#M(0U*KY7%jeBU7W{!7xBkKt11 z1}s#u4MbH|+)s*cCmU8dVjbO&IY@hzk#j^T_?WSUgltE&zaHrwu zWJMfOc@pk@Rz5o}ltDpc)6zNLE6MCLb^h))6^Kb=_Ot0v{&eCWkpnsiPFYklBH&E;3kztWqID?*u(R|sg7U6%V~vs z<-@thMLP{+oJ{)cm{;SY1X#?Q~c*6=0+3>$>79+`GX`(I62=5TN zI;xNmXFGv}Cgk~!)BBDiyyLlOu=R@HZ#N(~8|;WR7^8`f>BkEM;=`?IK5TrFKVvP@ zP@pf;7%I0bk52vg`)?l}S;3Y9)SlG_YW4+bVMH-!@mZ9@=E*Q`X~5H&JtwK_ExMfc zt#LOFMn9jFmgjE?lT9g=zB!~w9ZJ)Xn)Dv|ZRT~CMGFY38ewl(_VDK6*1!Ph5XGNg zS*z!i@cp1op5?IW=2KpaB9c+`8APG{CPU4k5zKff-Euk86$*ShV-+0J4mu+cm zq-U_>ar}}o3v+RMWJE(j|L5P?NwT+@*|T7YF%MR@kQoUiHB+td_2l|nHB z>a0pXj(3l2q00_>Cuz$_xjLCpx3wIS?C?B~U6Dabj-`~B+M?nuv$nrPBhzHl}-W5s8inW)9NM*$ySTgI*{fWr|jF79~h_#Qqf5j zox+Z~i;Bm%ht^p4)6d;Yu%Kthow*jZ7kmUl`25=EM1GZKJYYrGYdjExx#(Zx-9RCz z8y8)GQBJ%oQDxGF7uyPC$A(2@Hjv!@$DOOXT^42ouA8pGk<;I9pt#5u!K5&>2hx!o z_JoUhWqt+dvln8>lJ=-yFlUxfI#av4u_wA@1t9Ag&TZ)7$Y*e-(i+Q#p$_1fvs;34 z{IcsiUDL=xaSV(8e7)I%Z_Fl3ktVWXuSH;8Mp%QK(?(*1)%f8g))_fnx(_n5h7($e z9#HgNk#t)j#DUdxNNhx_g@cs+Pu}I@myX*aLu|y|A1%y1pH9*wGLwa8m51Zb4$>p? z(w6ht!mCfMy%qixWEgxQJ3#H+i->euMKD#LP&7aIDSi>9Nqm#3pXoE*F*!~cd-GCx z2os68SBLv)CWb}JAXqp+*ckqNHIw&7_qDwb;4QoZ@#NI!PGU>@Ra@)rDN7ayciWy& zna+^W7lMzEOD`nXKS>hA{=S_1%uzQ{=cF`4my-a@rHNTQkL}&$Cc-9w_MBNNs2X`^ z*%DvA$x$(9`q<-oIsfF4ib=X5*&9D%^SL-pT3Tq)ns^#Hx-C=utqOUEVQEp$UFSmb z;7`thy4ze9+dqeZ)k z8|riVv>GI}i4NZoTKsuX2pmoDE^ku*?MqZ|{&iFgx?25jvcJzrJ-rgX*+tvK821Kn z^A)((PrDume7qyy%J8cHADF-Ucb`ySSe6h;`P*QvW&xM2Pu$jB*f5xLcb=z6s@R1H zopMiXxT1d5;Lpue6p3nhfSAUQ(B!bdXfJ`=8xnf1@Tqde*6C2RgQFaFGS>R*}f9LsUwrxy2@shVxrYa2b>U=^8hE70a}pv^gYHrsuclHw(`hU@g1th8k%+SMg@w_x$`p6zpp$%p+awa=FE z2OQ&GAc_3S!83i2Yz2dW6QoZy`EfjFCLlcwi@IO9q|Exk4bQYi4($s>lD)IP^zSQl z==*QM?o^1SUQv+TWA?puol!O+qr?o-xQ?3@+g>@qy!nV@8_R4JHMV!Iq9yy zCWtTk$B~UbY&30$-+qJgRm(Ng_nlrIY6-idOH_m3^WQvy1F(^OPtdUK;t@T z9}dXwR{?!D7`(&YU>aH`|Jz>0NWl_gc_EP#bw<2dM8g1w$ODtLbx);F!K%D3`h5Yr zny91ZP7NYPnIN25wlA~`$wpJ0tP?l_bjB_^Q{ujY45xha?Ge}E=0D^(b3iJlLy4@b zH2TdSZl$}TSVJ3#Y-nqL&J;ZPldhJ%r2K7QpOjn#L@M`IZ4lXN5#R|sfzNq33lCTV zRRS8FN?Q-3n*StoSR_!+M2h6r)rg4^JPW3IR?^vOE)X>0W@H4V*wP)hl zT1TAI>$&jZ7OSM-@lT@sGxpOTtD0SLBvPtyWzytHW%LLWML!w*E8Kgv?we)fORSHI zo^iLu@k^tn;-Y1YYTgo3M@z%$)S@wo$>MbtA;~*EgQjtcT(A&hv^!P6#2k9Pn>e-K zzBT(tY2`y1rkOlfn|DOqC8qyKif+&)I)gH?GO7j>@UJ`I4X6dVVpw?yn?bZ!ifL3> zZS$_?oRW3@C(_2`l~{7A`%g70p*28x3EH<|743PvN_{4s@+Js_gY?Gqsz03P(#D9S!!P`9Vie=R`r{n~9IOO7ct*tT)Ia9F@qQ z^>e*y^OmB2V!pYc*outT^r3 zuYY5ZM6bpM2QyO5oI-F|q4=m?^5|t__CIaE{RjlOVQgG()({1h!R_sNV&<$H;ew}b zLjPltgkT+QvX`X`@?jOhP1vm%Y?u50|CqVNxWxMeYBPYgKY7D~yt34=nW)9@8;}e8(sIG_X6MjTt zQX>(Cf;B{e9If(hTuOwaTXj8-7=envPV}z`#hN}TMol6)u!tOFT?iZ1&RyD*LO>}j z28!q*5;PI=auox~1qsLpts-(tHPpk(f7}dbvt4_B$I4Fq@RvCku zziV}y`%Niv-g+l%E;2`6;v*2m+5kTuE`OpK_HdJ{hzhP1!YGbMyYnF)#Y0X`eG|nn zfER_jL65v2hl@z_ar-=(Xc80JA)bhVwJ8rq=E#!h#P$QbxUG# YitqE+~M zn|m8V8hpg^^H}9_87E>+=dZ)62M@p)rf7=H4OnT@Lr0o-;m1W(LK_eymawVYBF% znKbVpedCzMFn#6bar=_@c&&drAnGSHFiCq6czfW2<~Gy!A{pA~LDNF&7ot~uz4G{h+pPn4H=e7LW_+XHvVIgOemLV zYP5*u^J9yR^h71xdPgY!G=!n3X$th7zLT zzH*O=@E~4U1xO?V>5L&R(W9rgm`|HYWMQU3AfAirFp#YwMoO8c8a}_b^MFsF#FZnc z&}{{oMUIIv;$ysex>BKB{gypVe>z23Wd|k!a=WRuh*9{}OSY5b!k?L?HQ5%M^Qp}u z-=vdUNT`By^2K+s9bEhGkSi)>vB#!%xD@d`ZM^*uPQEo(q@u6{nJGg;=Y?#xrxO?2 zQepPDQ!9=;SKG)>MMhN+keit#EG+=`o(? z+Kj+`_Gj(pUd6p12pAu*#y@^n)!9&Ap5;zE+L^N>*ig%DS|`v1qLfkT9Q+J|Yu(>@ zlI;~|L6|LO?Nk4;9_fla+$8koO4zx#KO(7t{QQjJ84!FB2e5|6Ft6b_-hm`=WE_rQ z{5FlZA{~e#n@oUK7@@N?#b+Yb$0Q96tL(ot_HP&Y(w>o}vw!DECrRkIiZ8Fdjvs8j zKLqEM8V%;eb(#8vIJB29VMS*(fEb)h`+p#xo?9pJxIxcxf1(sQ7pc&8gWjQLpG<&v~c zoK!u_0J}ehF_94xt=skXBJ0ZKS^I0pf`?Kd+lYt0uBoJp&Z*LB!OP-rN|$QaZuaUT zpDV)AI{av=*}XJFKqU3izP*=61+v*@1MI%iJ(!i$HUIm1BB`VZRuZqRDeF5^US}ww z?mH6KnJQtH?J9_O7}&qclCH`MS~iN=%Dl7OA1WdwUk^XgrMjTES z1?I$m8DS=f=H*tMqnaHKo5RjEip7cw3a7ya&8Z|ecpHabg}Jg#)-tAE2BWnaJsFmd zMs2O53v=%H70DFt$ws)tG=Rik5(Sqr>gaufUrnsUs-wtT?QSQj(^jE=YE+Ou`fTRY zkRBivSQC`=mTrfHXp|EUpKF$pK2)Wyv7*Lv>dnk&2@@KxCVgAkF0xq!uM%*;J1aJA zyk)aR^CB?tH2=PqV z&pqTVVD?*9dCN6T!HH^#=#Ip$sK<9pz@cawm>9EA;ZO^;) zTEBwqmkNFy@u3R=*D|H6K(Nb1UExQ)#)(mr4IvoB{CNarFN244)tXZ2z3}!d7gS_M z9jjkNN2@7jk9C*aIj9rtnk&MZ>1l>{x*D9v=mR_kcxR#ARN8_jLQQ?=Uwp?*?{g<7 zFZDoU7N8J-55n7&lJT!XnNBy;rcrqdxcw4S1!}q>7K#JYiF$jjcpD$t=o&XEM%eMx z?7n&)TwZ*@#vkEDW}Ql`2wpzjtv@W9bDtnW;-9zs+^yfLS=h@i)4 zxdpj0_Kt(R^!?wEFT@hsP8b#~HHPJE8+-8FxTS73k)>ne~(C1=b`-zSKuB3hxy z3zPZj&)Ldntgp&w2usib8!Ud1W?Rx|a@Pn~cg!Z_dfu6MQwjL;8xUwQe5Pum(MVYj z5tjTg-s4iFS9t1vp8iy8%kz+Z7?p980=d+9(C-rAAstJ$I8K+~M6KYRWnXXkyvw^J zzT`}d*XRc%4iezi6~d_c!K}>G%UuX-GOtM91OFZ4?lqETTa z2icxw?Fn)?2PK5gH3(O7>c@PR%~X(=HjYciza&MzRd3xc`kaOLK8GKtR4lNoLx51fvzAo zqR;PE-j0jLxl3+P+z31>ZUrR9?u5x6rYGdzAyu*L@3dLT=gqZMWTnssE7DZDE1JZe zXCztLV8>SnKqNUvBpOrNM9T@%Z}FeHiSspa8=aNg(q=pah-K#RJ2!5X_`iM-$ldPm z02Xm7W)nqHlbViytq(dXU8sV2K*tiZa$=_5;EwpiO-lB<5}P^bX#(1OT!cr!k2O1r zDT&7n#&9)LaGsP3QlI%KDO+!!A7JUlk!Cz==&0VqobnbUu>ns2js0+dij6H>-3|4QgZZw3If2*j zyua9d5H~xf@d(A@&+g^rSLBey5@jOKrWqG5)=tP6OUcJ2GTY-`d!JQVzyJggHqDQM z6S_I%7T)F84xF1=`hKraTTr`QK_fVVkpHSzZsJl$>K^1kgj?}_8Lv{1wyIvE&`3lF z5=bbe!9^ZT9u-}^J&0`p#P~t?eiS$2lr%gdNKcj`;(nX~5xlAtNSerIl;j=$zQuVQnGEC5u~;bfSWgH*7Cu&sZF|HD5v6W5>Vb_eq(LeA~$@f7-J6$ml&a` z0$1`qeck;zmKWgQ*&Cp9m}!~E$UaB(WN&U9fSCdW(uu~I=OVm+!WKRiEy~J?EZdV_ zO#?tQ*~_|IRPs!rz@$~;-kJ}+DY&70pRA%-9T)06q%T#sIj$fpsTeVsrX#yF_Mk40 zeXz<*vRo$5@uQGqXaivl;W2#VF=23t?asH+Mb$o|LKL(T*v2Kgl&u>AMxq79(xSiX zN34%gz0A$-Bl`_(coROew82k&o5wSeJb+Pl1|QHm`w>XzoaHk>60E7d;jPJgJ~RO^c#l123GlIahr-sH z9=Xv2nJ}zSW(#KbYILC z>t~Xdo1mf-#W3VRGqSUsDmU0>B7PRMraIM|^e<7~YXX02?{4zSPXncG33yLRE;ugM zvUOO*>%H6f#X9x4+9KUlF%@x81pnX!bOv9 zKJ^T03|!W32&>>1(WuE~U@S-W;?U17j8cP->?ZBvRG!(lFkWNYib{z3Jt4_iIRHRv zxl$^ozpB^P`?U~KVUVmEuB!0BK!&8~9+OY*YTCAw5F#(3#j1yaDn&OgfMiousVswYlZzM8NXz}bPoWe)W?8GOFdAAQS+oP-qH z7&dkGahMy^8WPfa*(OdwL&TmdiRpXAwi-NpW z3G4H7{?8Zc+W=Uyeh->lDZ7Qn4}jg=pi z|3MYAN-Z;bheVvbOsU7*C}_+)>FmagZzBCw!eHc(#RmUv{N&5ghb~unF`U&_S!M*@ z-ZWODCN`2>`^7fe&&gdSme$h6R@>>+Ooe;5Nvpw?bI5>`@vsgi@qrA;CZn8M%ILG!Xuy4<$3!*syA zV~kFUqyJ&GMMH148C}=+@Z%%>d;Q^&#Hpd=4R{& zVm9l|VBB*(M$+!khZ!Fui~Iidj)=F8GN7$#5%;1m_j%5%da8U!Qkpi6@<$}6xEYR3KhHIj7RupH zRpH`>WWOUv^XrK2`!qx_NQ}7j4FpMKTML^6mBlUt{O`V=|KZ~@H%pDH_sntA#W3~E z;nsE(FwDyu;Bir^paNu+jjNt*Xbi+j=b;Fk%p97^BT(_%CR>wb`{DFwbxEd8jZyFq z1mA02Xq!j#m^?V1o_f5$;g;~h8!`TMtH9dXY)Us?>Ci)Q#@ zHRWC7Al3jLVk61}fv8?UC&b4xWD76G^$R?@0*Lw|OK7lhH+3-R=ELytPTTN`1#@A^ zBd0h7kV%Vq<(2pTN|y@l@^B&JKpwe;5gyAcmXl4lDK4*vc{Q*b6=I6p-{57pF1;A{ zcNzl|PQ)?tw0`Dh``@{F#-EER6o?OZ#WNdZF!+>b4G;rK3SEz7Mz{ILly zT&ef2u69stL9VH#$ivd}s;=8(bmU(*ZMU^sQk&iIUyj&*W6j+eR?`F6&5iRI(BRmm z_+Qwa2o?ah@v5$PQzNnz38X{v`!1B*A^2>)5l=E^KsX-@P}7C52^=ThuhKg3U7hI>lJ1{k~k2i$PU8K;cJfZlBSYNXr!$ z8B4Dh-eJY2$lX*tP2VI{$~90e&GA*p<plcA~zO@lf;?CxrhG$J_*6U4L5kW2Bo zn*M6n>E6e$ez`LYAfTz>9TvLP?bZHkm&2%V2*Wi?de1;Mm5vO5CoY+O^PqSW)gdBp za%MBRQ8gg)7p4ieitlDvL)P5arQoyx_b$TxjKh$mRBhRjdjdD62V};6()1=b1I7xq zGm{xVwUN-H*b1u4&EUym;K%}suLbakj?=93pq+2D?7Z=GnH(*bQi>Dt=x<_pi9>UM z{TF*%c(ucD6D;B)d}iykf%NHcrj$GmsB?1mn@VXGCKNTR5d{4@AMibVOH1E=Af8@A z(*mA4Z4Tp3aA-|xmHc9T9K0ACb`qjflvJ0@i&N9hW@TtTz`>I?eBzn+vJ}R z_|Sg6`YrZ2&5W6zU!}**J%{*>f0uuYGjl$3{*M1k^!cfOk`?SxAFEbui3E=&YQ5Sg z`fiNypTfex>>c*Fr62a)M9hze@m@|TmM_ZPmmhFU>*TPHRLaIJxRU$MKO>ZvXAZ8V zDnFPm^l5J>iD2!t@wH+Xy|@1!^)tUVrq}}~+E<6>$uNm9ARI9r2hPcslF_(BSQ}2| z-2n^Jt<>dygRbtr?h*9kka*6gTplKkr~#o9-TGXM`~A@jB<9M8fzyOfMN*!Q=NB?Pct@?FhVf4d=HOLS|WmhO1#LAmSyI0&~_EnH~Z+r}i zO!Q?FwcOX5#Xqu}!P#plcaBebH2uBy1t2NgE?2ef0VxLX>FO(Wyxr85T~{1OQc`5y z42)X|!0aw|!6k)P`iY9HSBgFY*SUZu86hc8I#S18{r&SDGX{H|h6+P#L54fXw3zhW zZRO`f1x-5N7`l(0wCbZtzSW^<5&Z#GEXG0fOCNDTG7JL&mJ3s?S66YpsX<=m*E!67 zQn8BbkxgzU{bf==PR?bP|3wpR?ow36?D9sVOZH*+iz>c1{EGc2b^@Mi2L7q@v)wY0 z4|TH+%aG#gG)5g88_nowxgk8`o5*;ebsS~k0?5kXcnskYPrNj3GW<6M9f5E4zwERx}UA$sgC_eWa;rZ?vYu9ZpE;3~=(<7v0U!33T==wFFXp4}g18n{T` z;(&a8@t6JZx^?4O5cTe2_*q*g3B%gVq&Eol7ZI{Pn>@Mnnw*J%98VCfuoZu}r0ria zi1_CuP|>dj$seN$enrMRX717!cPDg2nHda)Q#dR#HG`Ykq)7qTfl#<)fJZ0hrnAKD-RM1SB81Hpe)aTpq zHl3JFrE(dD8Pb?BW#oG##g)Ia(_%)D!fz;?AP_SLaYi5&PFY0cW{Jj2ar~A+qARrm zRZdM{+!NN3FBLW%B$xaMjr?#yN)|lC{+17ROXaGxC)-5|x!rd>*<1lZaYLi5BKl{s zZ9_499l_ebqQm>G>-o(ckLX(CZ=`^#yabX&^q6rk@kQ>>@TI9^huJ@6f5XkPWpuL+ zDbitG9Ux+^yu%~ly)!5~CrtpswjX2yiKLvFTF_tM9_kWFz` zG8t{&(k9|i0|RA&J^84N5JX^t7~=9?4!Wv59P)4=2EsSv-Ufh5`~9d}A{&9Ws=&Gm zW!T=2)L!qzB zsH560Tjw~ewyRgdWd9!k+dw40MjA2y-FIh1pdn$HTK1^$P6=|TTEi<9GU4lx9NK2M zhJlyE<}i%pVN#60<^B)k7Iq!_4)K1e=(3N~HfMV3iH08vGYe3mLCHa>|I@IwcxFwj zHkS7(z-T-&j6zYtiSy^5`7&%XY(EP~GyN(k6a~!dhg*84^t<$(X@Gn3FqBRohTH?> zwA``CfSic92Gp8D-h_Y}1jMfJ&ytSX&Mf;|rXuYMXeIZoEMTFK2L){)B^1*F;h=

cAZLj0{Xt$>jh~gVfCE; zNL%T&ahd;|D(`Nx4Q1D^Tojr)0J^Y!YP0Z;apZF4F$7|MDY;7)7e=JxCoPB|0TOZ? zpmAfK0c3u7U&Xx1YB50jL+<}bglYb{PpHHD&uY3+Ew3EK=C@4X9zZoR7*LV4neLV)cqAjD_- zCaRiNs}|pwIQ#OCKE-{L#;CZ7MwIGIiL3@p0W6AWYtczL6a{dUy}@)yOo}kZ5zZK} zgxK&!vPqC;X#kK!a^_7zx=g|{nW$4Zi;__!O$LNcIXz=oJQhmRw$vsYfMR?=E1??+ zPt%s4u*En^!Va&NlDvWM6O&`ag$ghtKTNev@3Bngdo2D!=7QB|3et6s)x6E+Hm0vU zJTv$%QkfvPHFjN=F+VJb9I*1|Jcqz(jfiMhqelYEw^?SDD*K$33!$MHMpl?461neL z=tp^w$mPtnj{R3OTwbS9AV>0P2w8;=32DN3A)=gpgpJRR7@uby*Sqh-jEZwsl;$so zdFPu&kTk`vz_vS>a9deGbn9J3AL;`!*T9v`=QV=iKo2M^k$_)iHS{R;eSb+Y;!C~T&QN9OJtDBPla2)J!-g5HOiPT zmfsj4yE&z5%2p2`L4oEIgeAdrK64e=oL37uQ&<(4m>~(7yj~`AgGfvuyR6al40(S* zl1lH@in3t+Fl}&5CO(&mE>_a&tmQ*yRWyo`^UzHlM z$rg~5uasx}i}BHyiSLoN{Q~)*aax*(RKL9LX}*fXj>!aukq^?ZA&o8Zjbpz`{eiz% zO2ROVUuS{0V}2w`q%>T&#qUEX%?o3Nb@}Y9B%#l8K4krv1xh{?1l#Ul!fn$!)%u|* z0WAi203g*qj)4m|&*6cyYS5%fypMd0O{*53J)6STCuqEB3*i!}pu!9lEP$>SFf7mI z(IY&=(gZF@rRQnJO}YV8kS}Tjkr?7N_T2)?&_yd)%%02{6CYg?@s#MSMTcrplZM%l z%n-R!qO9G|8e;%z1)u^d|H(A_MwGKB{oXjNxDNdF@N%?$v(;Q%^01*ob@>H#^D6R0 z^Wx(6X*iNVBSDfwiYn_qx9zE@(|E7+t_Ts~b`4qxnc?s|y~EhiIz^^wQBXn-qEAod zJ!;LMmI%{*QDiK_wj{?C6YFJadA!}q>GuCln;?%+s}c_vOJU2+14!AymhaUdl{=;W zKQyM|J-RjSJX@vD3Yz!Mcn1Jutu15bEybS3w%U?++gL!B*C(%nLIHWO#R(&k4@-U3 zIcn}q^PXH@8rbFc65){ADjKFXiIpZC{9gKPEnfy4?qOu)n)t>9>8O~rNf^( z356s^7pZb#%8>h+(4f$i{+OG5YtpwK~OhF2v0=N#c+lf zEybMc1=GfAD6}yX1hXjL@#?^MY>p?&rX6@8IbEmz`zDo%$1AkRR+KY_!v|R#gDm}J zHy#o{%NG!CDBEv#&BF{#ZMN*xNShUTrPc{b{!;&^nYgD_OxY z+z^?N3}5=Kq(l+1t+wRdHm&mP`Dfl}KQ4n}Poty(>iazp##k0g z`J&Gcg_V|(YFHT834@H6wV{Jy0gA>2E~Eh@slgD>Y!5v<$9FT7tQ|I z#sKB;-Lh8PYDiY7#+tobkxd#N*K}Y(k=WLXRm*ZpzC&^h`;GMuqCFQA>8nGUf3WP8 z0Cd|KO;1`4>gcpo;OkOC7{0EE##w6+HoYgy+CFriX9SN_SguPe-kl^T!22mlg{DdC zvsCU*wV3?AF@Kmw*Wy%8HNUgrc|ekf(wIDUK9SF0{6mmq&m!ip8fNYPiam>4*RQ^R z3bp~Zg$3lynG3Iik`D#cH8{23W8-34yaDo2x=%GpLs~Rx0qM;n^do8gq7Z9`A~TS6 zv#8mWvVp;$IQ2vROoFs6Mo)iHVSwgSJ}E68jkJCM)>Ew8C>&bUIR3kQR!WpzlnKGHdKwc|i(-lLrnFZSzLRv^DsYuo<(nh%8j{ON3(MahO z$cK+t)=8oLb?Te+ncSpl|05BmwiEMVAoaU+jXq7qAN{mX&_b`6y4i(q%#lX3Q-Nj1XwJn@Ng`NJ9C& zFg`}oCf{jg$ciyJ55V%6Y9l1uBAn>ovhGWD4A}~j+o}izOn!$< z4q~Yop~?NrfT_xlSPLfg6VvI_l%N<&C}=Fi43yh2EibOY==Re@5IcFqbuy%EK-!G0 z^m!HqB|JHePXC7(KY5>qhO>hyB_c9Ls1IojubC*36e}!6H4KrGzWHn@9{K#3IcAH2*e2@TSpb^26V+p>9fd>355fM!2Vmd9_V=kHaIpRD{+9MF!(^!?B9n=)r}gzIOjp-oePs=v zJbVI=?mmM1AKrtN`;TF5WgVV8cmj_fJo499?mvOG)wLw(8(dJ{A=dZ ziJVo&L)vaSW0**TT$M?7o=N=E)H5d;2}ugcPj;Uq#VKctrq24s*tuXM^T(KHrJ{>2 zXdkOY>mwu^d0w%nVOO6#Jhjz}(YM?J;uoJc78H9AMU6kPB*@>T@A9)0_pD?==B4zz zw79*LN11lhbTyt-kTh}T4GKW6`AvdPoa{TIg8`-)&T+@@M4)F987W2*#t8{12_2UH zO9T&#d6z=F~ zM=h+(Q>hGnVHA57CM-t3{oAmG*zy*si_aB^F$3vP*m3Fje-|3(aGIHr;O}BMfQ}9_ zuRF-U18@T5@;7_l0uh?%q&Fm3WZ|2q2~0y-jlq~o$>ddwF&1Lt<)rmM1@}R2S%^HP zOE^-FkC2QII1w`D=3=`-8ZCBum$v(k#vnXPB-|OArW9P3_Ahx0$8(>30bcy#OK|R^ z7h5aGVNW>B#CS>Gk?OT4YcO>d4(C#}Hih-p(m@3sN;dsx<92;&yk^(CZ7oe;X}Q&F zx$jZi>#QZKk5}RGePw_8H;A*?&%@?fR4tgMgj|Fk~1<*QqV z7@R#jrvKYQBuqe0QFXWq;Zw1%RO0Tyb`wl&)OPY^aw_GxXc;Wj>lc3*njUaPMvBVh zhFw9)Dv7;3lQ72a!aWd{QOHFvbphJ{Xg43~D)U$tB!TEWHzM6x(MMSNAiV<=iUMw5 zzxw`3*g`D2zsv-;_}omIZ-Zh_Vpf5F-oY5dFKQr`+Odrimo#yaiB=+M7p){Ccps7| zPbcs!6o<&|;4I07ef}Bl+nNx;1g!c_SlJRlwR16UYdd9OKJke#V7@45`~a2;nSzL= zk`j5#@@R6I<4r5#2N3cawgu?OedT)S30Hz_!^Kxg3h4el-dZ)D|J)03>1UpUmw)M_ zt(D^#Oj?4lzPjcKhI5x%ZLJpTt5Z(|*4t~-mIzo!Li}G;M}xC;w9!Wr;)sX)-6SnA zcp~E9){eOQljR9amX`eI(*EVvva;mwIg;YwT(chEc?h>!67sCkpzN)3mkE69oeO1{%)QX4Pa!wb|cOIkR}u2y^iNbL(P za25(<7}fxA*33Fh_>Sf0b!A9HW(6$ve^xJ;v=~m(J$f;YW3{%>M_6V7&9D4DWR-ww z-p0>EL-Wc!_tg@jps;58A8+N!=v&$n&z`&Z&9*mu6%>08i|}9Fu;4#~#ij51A}}~5 z8AzJ>JWrD;*6_%vuXBAZt0d1QN{$#=3sg+uat|Ka`c(f{b<@Y!GcJY4wL zg<$Du|66(d1fD!x@dCahAuEqs^0Bh+*L8T(u{I4vcN+d231K;(q5x~W3lO^XgtIS9 z7PyVGii88*%q0AIBH}D0EfJaQTZZKWOR&6eU;BOHi}0kiklg?9t|uZN{O~<^=P%!c zYd^jMW9p>@N|^eER^LB;XZ30ObDOO%Sbo ziNG_(j>t0%!&JzfETbWno!Sf~)G|C(NJt(8c?>iIxtwLhmZT%)b;faDx@v8x|J&JJ zscJ63eQ_)HBJ8)XU;W@qutnIimUrUB znE|M4$4kO5Ar&atcVr$Rk>zkD0iJ@oNzkZztQ|nf1_0BLru#Wf6o}m2Db|U}nM{PJ zlLF5tB^{-pW!zpS&+gwwOZC&O&0WXycOZQQm-91E7rMUpN;kC z>oAg7z7tswxhs^{0Q3sirK%hYIc8H~9uEwhM`#~APo@4p$K1CS$}`1|#+IIpzGW@) z?Ac3SgT{UX6nh3Jz`4bteJ7O9PdbD!J92R5`LosMhDgZRbW%=xCeV&ulk8Wv?35%Y6mGGkwpfpyYycE>-5nZ+*|ux8_Jk`{&%PoFIs#!*8YQtQ|I5KcW=`t0!k7yT4c>Tr+_$ zRUSW&z!Q-s{&v?V1}2V>IO|Aj8F8**&PuZH&_2H#m*0J>Er$#57PMdc$rX72`|rZL zfBiPx_~})@0~d&TN^KNo7eEssi48z<2q?CTOwe;%tM`A|o@}gKzP5>w0n9}wGYFDC zrX!gOULN74kh-R4z$h@#nuD2{#v)}nK zZZYa33pJElmuweUw?#7O{%POk;gg5qQ-Al<@R|SgvvB?+7h(CpvUjU;?o7_z$}R5p zF8sleg*X?8+^N($>3AatI<3LQB@HYwM z#IGGOVeN?9^0#R%B>N7uR*^%?aNzJkSU$AhhktncKHRx-8{T^Tr|`G`)A!--^*gZE zmKpPHWP2STdjKNZ>8j|0zKsLa*(~Adon%W#a(JP_Cau zu*6u6M9h-9rN2X<+{Y3*;MUe!%`&2%1bQ*t@FI1?#DD0pBMHEWHw(F1W>Z|vgP}OL zk`O2v*=yK3H>@pbWqS69f?^g8loaB}K0iyijXWc@V-B6?iE!SLAxue_;l9vJ^%sSQ zEHraLg-6|8#7ysX@-Opk1u2p75Y4d#Stp?!EIRhIlr(7OWL%kHv1%|Z8-rv(aw=eD z3I7;$)3e<2(}#}slgoHgmJ*~xwjC%6|NC1j!LzNU| z%3>kOu>RM{N{k!bbZ40dHe&tgv%=&3QeNk=!jB2BWMogkZB_V%>({Tp4o?{q*a93m zbnNSGn|>7(yBrmPQlRRtU<}ik;-?&p$7-wQ8AzpIPEnc^XrAydUg*jUy$KIoGx-yR z@T?s)yiNeX&&^Jn0f|Iy!pU;bbH3S9b`XT4Qmq`7|f6n@XYfiiim^)8|SYy`XR=}9|)s{%PGOe^E%kA9do;`5%Ae?>S zJiPFQ7vcOzpMgUyIaztM+Sb9N%I>^c|=ldBIO z+DeE96C2T{EJ71wOxH3otEQ?n@eG>NF+C^0 zWdIqMOsh1Zk$f4c{iFg2ndXUAHC?;Q#f}kPdZuxvgU+y zzt&^L?{Kvq&+!QBJ>m{mEw6CrZD0lXov%DGnDTri;WKB@S^%bfFNx);VenQ@t$9Vs z(wIapbKMxewQsbLEc=5JCw_tb^1*$6;rhX22Vvi#{cRa7+;6QS*MIr}{ODi*jo(e{ z!L56~9!mXRG7~G_iG0(g);o4=lFhV3NIDG%SU)h>ztVVNp|b$IgF**MeZY3oDUoqY ztY6tmku#c`3RawWw@?^+p^(!UPs*FfN6M&3!c?17X?*8z&=jv?e)w2FFX^E9n8n&Z zFZ!(Tr8*ho4mQh%Es7n9Ti36?e+r&5=5OV5LeKu#JE&B(fuk}DNt@qk}V;ZB>!NEAjocd zVv{UBc*~#EO`fxc%fjJyvCK*2Y{I7_AP_ewm@I|0Bkt3$7g-ADjO;tO-&;fu_yz1s zo}69z+xOwkKmQ55`DZ_YTkqY-E=K8HgtVk^EZaZh36{Gl_Vs?*?u_^jkGeMrZ3)bNyM}NC*@vnel*P~|E zEroO7+GaaS^E5;fx@qxr`|{Rj@|Nc7zVv(NE<;2*DvO)KXHR-0!eabXpz4>H!hKe@ z&NC&kD*R^Y6vLa|{HASx$(5KP{~7oS5rj$oq`X?P-k?H0s@V~@+4qi`mH79^_hX5` zo=O;ncfkAw=_|ieD&VndGkzDSU;NMiBY5?H^LOF-&pz)3ZfD_e?pB_BI1=)3C6SNy z=&H27mJbqi2MbQu(B&z72GS9CyRwlh_)OVE6jIGuU_vK%tucWZK-lq!wJ*|!{AL3N z2_XQHX0uEh$xs$pL*3Y5qKTvl(z+FTR>}IxH0Df|#Om2F-e~4g4G;6_X!n@$tcy0{&toQ%) zzAy|J7Gt;nmnax8KI)&h;5W+Ph01?eUw9dc<9Xcpz~t?qMY1gF&NX9-bJr}2r%~^I zM3_110=0u66C1{J|r52=&lJrM@Z7K zbW-BNj8ul^vKuI7(&pStm!~LsWX-QgPFl4ve9)dwnIK%#bY}xZS@@Ihk@AKP3>VO3 z+DUkg@7NMeGZxEf^q>9AbMT-1@BThK_vvTBw8UfW(Q0tHdiWTg+s|ii^kMWQ+0u;!}Km~ zuJ!5EGCl^>O6l%{WrC@Z=Zi$)*q^R$0ugfC`7XN?*Y{1ltCri&_rUQ(aNx)xAIJS0 zci>0=<_GYT@B9$1{^SE+UqH$Pq)SxaFHix$U?HJ(AS1E7|63U+wgcO#!rlR(oZo0+ zpf8Um7T-zNnj#l`)AU(qWpVRCa!>VCC%u+agpFU-(@ zUmK81WMQMI37J$&X^5(BN+v{dImQJYO=FVA@OP3B)09nun-oc2?9JUpfC-);$Oq3* zN8X{D`uL^fV#S~C{4( z_zafu__^coOaH|$!)O2JufUNrM|?OZD0{1i+hW(BWR9nquZMFz+-c_C>d_L9Y549I zbUPpsfk?>0_h?P<0c;fNh>$c52QKFI1@T`e@W%{?Gd;p582+1SpDnKjEVm~t>zQ;= z5{N=L5V9*?QT%KY*>}5T`Lvtto;6uo@;hjGB694Ich72Cf^z@nJ^0)I>3g1tI5#b~ zC_ii1EwIK2-L$2^9&3b?Xq%e>jt5qpf5h5YVLU4}`;MESAWfyu65%h!Zfb2Bpey)i z_Dq_(O~Z>J8IU9m07xC#0%6M;F`^v~)d@Qj#E`Zt8X_C7d1PrgoL8~65rG}k8*6E) zovAg3n9K_$B)bw%-3{xhwxF};E`GCZwO<9ruELmsa#86l%3>0}Q$eOqPR33`Wx2F4 zT?!IKXI05JC~qjvyom&Gxxw_1lqzwf6LiXxoWP2i5alJL0iZ}ULYyf}gdmZNBubK% zESSbJrt8q9Az-?`*RsssJ&0teOFAN;S zcP7Wng;ka#WT*bvFoA1D~xonM;~>j=;B@Mn6oM8KVJZrnkG2GSvfsl03riuJBx zn8)BEmUrArWC?e*YD}k@7|fSTf07rjJBx@vQ^alI+t#N$SLDF4190fX5ud-iSMR{P zfBhDG_gjAociQic*fGeCB~WTph6=F22|5i>9COH^#020_4aF{!tq3U+_Dtux6_&^j zat}z`dJpvf^c)fHi(xwh8nCoD;q3wGq*=j3#xDRNe1|ZM2*q)y@%`U2QaM!89IqLD zeeC_(GbwL#%(IJ7zLmyNB_X>E7QS))+WWr&PYF+#fT;V`uEU}Rwt3Covtri#jv+ma z)bvG0k0^MEKP)# zizW+VA~Wc+M4sctEP#@Na=n`h`LIwBFi2fin@7A^cx9cucKH+`n*c!FPTW1WR^f}k z{&Vn!fAB>(c;cYH>(+EUapdE{lX$q`kcae19dJrTcj3gluF~NN$6TvL?r*jh8pOXombRGzZCn8IeKu(q$f2N0tVUW1^ zWa8QsBqUQ@<3Y+mUka`T!B-M87TPziH3=4&_P?cgz~LmM?-umCU9;ToS%*#>_S^P4 zf^zG6Ks+N#!L?0P5pMsqJ*y$p|FNL8t#`3@SxvBaay|rF%3? z9)N;i52UZVbQ){}*=;H}d|6`pjf4Z*XY#dDU(G3qf>enSFF$wJieYT6|3iK77Q*%- zEDN*DLmMSDMa$X@`R*(4BIbX^w!*E|Cl6n`-2$EhX74$3Lfx-+7Zx!HBZdaCS<>oE zVl(7RhM)QQ(nX<|>uBpO7fwq;csD|t8W&Rh6+>OFh@?gZ07jVPtSsw*<~frfE^u+- zg|7FYB*hj4qA}AKuP;$gLnugwB^gY<`}}ptJ>;iPtJnr>0{m^ z;_B(v`yaylfBh!h{@|7;b}p};6s@lN`f-c=oy(iINZozdzMm)lJ-GuB-8=GiNLxck zn1=3{02LH&vObggLJt|C-I6xTO6TiZY%FwW6sAMVA=B;~JFyc3FtUqj7@1*0$Uu-D zx>hB{XLZLB}N8)-G+yIc8Okp=3QziARgr(FTj#Fl5m0fz3@q$L#7*kHphMvi!_ z`?~VK+wbmkeG)Aq?f2E?RZmEkmRcgRf8q(r(*7o#KJW7G@){2!bPMf$z9JcM*T7~s zuGC^oTx$_C?bosxObB4 z==5vSho!Zw&=eE-!0;@L&1+ClBB%Bf+67Xxr3pyHIGB`QXcO#VntbZKGD__K0MxF? zHUj|KFS+|vcqcZxm7_vcNV7s3YE6DVbd5rl{2`RBDz`Qc-iwv2MV-M2>=7 zbVS4LZuQEqeE~lC>L=mw>7!wHo+!w!JYMmFth0Koy7eAU!ucLf5cbxO=yv4<@pbPe zWYhW&>wbDG$9l9L1dE6zB!s#;`7C?llIuN_F(?#@wqxiJ`B4 zw{Gk|auAN6KLJPDx^~x`D;9Vm(vk*A-&Z*F(3Qctygh0y9qxT3avj~wf;(Aw!Yz7t zKm7L3Hsr=V!Ubzi7-nt48Zr=01Z@+&N9^QG7HU)q}lO8<=TIiC1 zp0H&jL$*G!z9ATj?Ei-L|5Ea?{}||wE%+D^0)`plKOSWl(JsQcCK#26AGF;?jBBQ0aYk4djK z0O#vnsj?*e%k;!0H}~CA~3M;ELNHh zSrbwe?8`;qJk2oSH)|(}wA6zR4=~*A!X^QY#w#FRH}Vc3nn0RJhqM@So#f1I2kX`x zoO$Ui{KEg@=iyRo`8f03nO0(lLp!?)eIMc%~G;jYL;aGbTcDZswswW_kOeBJ_ zHcdNTc@h%We5AD=Ye7?s>pO5Ex8FGjAaBu&1txV9iqzHKVr8+mYam%h@L9iZ#F!+o zdtr5gZc*7i%DZJX&NVBzYK7gaCjJZ*cb11EBa@btOx*Uh5D1rB1LN1ictWz~$(u7# zxaamAJ^&}5Jq^ds9`kEFmfXqdlh6*=z11kVrv(?bDag$i96`a8)*WkdYjGalxexbS ztA=y8Lg5%)#}b)}&$*(yvQ3agwZzJkGaKwl&a(CJPHQFk@If2rZMgaNHMrVZOFn$} zIy}DjxFuR^{-DW@KukK1Z)0)yBf`x=a0Sx#K@14^7D;fMi3q-7zC#s2xBttqrlY(_ z;jHYJxubQ)F>+60%uFNKjUi`fG5Pil`Z7Os+rmfr-V=b!Md?j)Dz48z3baw9%%Jr_y_+^;RThJh-*F>|N=?y6qun(|S{E`c&C69~ER~|n0?pL_b z+zHiaxtJokuyGxS*ZM>J3yZh`$%lnRD*PY1Sfw)AR76V}G;b4hV*ppLQ|J=U)H?tq zQ2}pQN!A@}f~BGr%l*0zU!M)6cF{C#pIi%WTa&d(ShMlOZ8f|c&h~H%$6GS8ygw`; zKXCMbf7lTb=ceTZ{{u%4!O2UfTPw$YzaSnhJTP(`T1i+#21r6E8;=TXg39vvTvrH= zVUq0Mg!i2X5Hg_T{%`OhjDuu=t^o@`g-RBlY5(brgB>;%)3dqF7%&yWlv^dH9I|5B zcm#y+mM}R;Y8>W>oByQ;Dv4Wa{Oy0w}wKR8?NRTCpgISbzC6wl12RdiYGXE=f zB%YcZ)>COM>VCC*(ACJeZ}kDFIw;ARu?Hm*Q`DsOq`Qd0(UvX}c{R<~rLZP{k=7Mk zj+rY02jWjegJ=;YS;_gRzay#*=GTO95ts>Zw+)gTW6E0DQaMH0@Y)z8L4fg)vcQZ1 zbNyMKfkF+-e3TZFr+8c9cKU@g@cd_%l630(B-W!TMowfx2G;fK@+T3i2mm|DgkcbSzI&dv|r_ED65OreP8JdRixw*TLl1of?n- z$cxuQnoIka{5y0mV7IT_f}8JL_lwSba7RGmqqs$Ju=+sW6)f)l<=o70M=rM*-dT5C z{4VcJBs}iDIWl_pYMahmSK<91yaQKS3(2*XlsK0>)<;rzCxRnumPDCQ8FDiTqTj< z@^LbS%Iqo3YK@uo-kAAcv19R64kg_5)}roLy9?BUFz+BX4>rr(O9#_x+5nyDw;myx zH_1enP3Mpaiz&s&9_nfaB_5 z^DJEa_$4^?>?!Z|UeI5iG+o&55b+YOmuH@WW>2=wM5|X@k4Ot`Ll51nbWOR;$WvAA-Qwz zS+4$koyK)Dp{PaMJWgeSBwN5-5*?BShZaehHbjV27UDD?Y1WL*zB^jk4FpO#e9pR)*^oqZM zzngCMO6y~S8`a^HhgxEB+PhP^-IGpSJOQVlI}N9vKkau?a+-Lr)oy~&jOS{slkILB z6s&PUb*q_w60IKI^5M_)h*podqgAqE_+6L+u~?555!`NfiU$s^$MZd=c(7pDau-QR zuzci$2eV5Sk`)_C61pS>7aS{IY;yI8r=)X+N-94J;lZ5=7zsCV_a75qqF-cgfC=ol zP`x39WPfYnIQ86FIQh(}w*Jp}D@YKA!inmsOfF7i^6Bi+610}iOj+{+J*ah90neM^3QhqFf9eCrx~`0kBhQ8HKqSOh?O!S_0@E3l9?>M?ESX5+Ny5O;`jYduyUhV6CzT94H=wqQKDQLTk7bJG^P z*6o6o*M8)6Ak$#ca0|23c^^P5Ak%b4NY?t}w!5K@9Ek~}$$ATkw`Q!9)5uXww6SEi zD~%;m;{J_0L*dKB-jgf>@o~TPZ4_+Nc_Cgi3u&>s6U5J4J`2x%<}w^TbrhCb;Xe=$ zh+7fcOqNnR3>sc1%ul@KA-G6cv;eJ#UBe#Ve;nP^!Y*2rWW_9pd^cI(_6y>jwW9r8 zZmluyJ>9-~3vRr5)myY6wOfdUlZ+oG$K|VmEyg#|LIiPlt>}6d4{w}!>quCS65P?2 zeLQYa{H=Fx!1bSg06+Q8_u;)U+S+_eQiXi!$ZTJK)!z>&{DgddcJf?`5~0nh?&@1a7H_ zB!-d>%v<;w-H2ddz7(=ymMnN?1fB8!1`9yWJc( zJaIh*NhD;$yAHJ)?B$>-cfz8J$5}6)Jbdied$>jC-r|AV$P#M_5+!fBSc@bBY<8bo z&m=ir!}BPdHN;(7i$uiz@ML8@TR#$^31nnyp`jq zzw?*NpUJg=+w}6jPwL8;WK9EdsAF(PgXoIZ5}rL*g6t~syTYvVq z@Plu^4!2s%%!6CFU|#m++;y<_I4L2*rtREi77-8=3zV+a8lE5X>Qako#Lt8FkA*rmkn8SAmU+u(R@bD*Fns6 zOxUKgdUpa!ai;H??8v;7%9Df*L*s>x!G#G7LVlokt9920s!cRqQ-2C06Jz;{;bTP3 z&E@Esqj3Hs=i$_Ir{Vm|=i$P~F8DPYUchz!_y&^2!4ZvhzlfQhp%IA($!Bt%Y4TRA zPD_r9q8=_<|}@CRXm-1Iz{213-y)?HdgLn6$==j@vdI$V%^6&x?n+CxQ_Wx zr=nY%NJtR0sf!honrS2^5Z$vv4yL&4mW|dEnpajmxos!6BtzZz0$Fo#LX|s}+`Cv^ zI@4M`&ih@bnrJatUyqB)(FG0b%yI$N#~a&%+uAoW&PYBQZxP{Lp*tqf^)^`DnBVY! zCJK1EyUUAnr*pejxwBkw`{Q6)3T|?Cnl}ZY1O#{Gf|P_|q{pO#9Zf7#ICsRS9oMG# zh4Kdiady$Vli5G`{#)?&>pzCK{`|+Sh31NHcM`Jeva%M)iUs-)B^qLUEp~icNWV)& z(8V)-7i0*>g&eJAabYVoh7ZtKHclFV>Ma;aqiJI~#|&tN;c!D3V|k!!GvjZiW_Q7A?*^+9Vp*fjwUeN3?qw zhE84p-Src-xMG4pwV~Z7fnT8$FaVo~>7<(k)(+_q!W#6?r!;)FjtJsWd=9^GO9zS< zGF2u3!3g3)2nx^=#dqKYv;D1w!;ye9FPw#!zWAcw3fCP(cl6W|SU$L%7Gb&t%FZGY ztP!ncVs)C`dQbyC&E&uY){%%u*m|`IXIJcV8u9(D1!cd#=LA0IBIAh1%H!a2<*gKJ z({wIJS}Wn=oy3B;S3PM`y?e_56-3>?O%{fI+c9{yM{u9=i<>85M<(2XDeS&vAo@s= z3XhFA_Je73X+k0cVvWdpygnsok>Gbnw*1)~@escCcp|$$x5KY@nFdRP33cWyM5kNQ zap5Bu;pn*&-lE_H`qb8KSX{rpo~<$I{2U;C4=iCL7(sR>L_auAJ_ym-RIyeLTm%xDl&-++b7}d5=Tmw z_U{kGsI6@;86z z;`XxUgA)-DWiWgl93^w~c}uqaHYq8Z2j~n&CNdC~E&5ta_t8Gg>ot(mo9$VAW*(wZ z%EM;Q|BCGZ`|ayjKll=C5;m>1oVak|^0IB-0L7ldhAa&;S~mIyNH#)( z9c{d|qC=TVJWSZ3gr=~#FWs~vUMk!GCkO^Qam#!NSAA!@)oq|)BPQ%N;_%b~6iA!+k#GzIgn|S|vr-@!)353I2 zB38p8ep9+*6j}zrB#pJ9|03x?fxaalOYwXP=ep%xuG)J}_PE`t4jzSeQJ?3${~*OkotfFduiunnodiYNzpebn}8l z$k1Xl1)H|C_3=;w6T<_Nm}G5nbrytgmtS{CptE}TH5G#Vd!pmk$E1bzwkSBcD@}5> ziuGUuVMFT*T9tzP*?Mw+^9LEO#a+eL*V6%y*z4Rni~Wc9`}IGQ{oF0DlL>|p2CX%$ zzhK)n5Vs`;2o@q9T|P{*CCNyPkt9!Jn~m`!sZZM+H%)Q_bZutIFW3j)=5PG;1NhOu z{ww(LpL`!~y>s2KMZ#>Q@dJPdS`3UsO*ZUKYGp<)jcJ%V7L#z13;pRHpG+(AMh6!EsmLrHHv%Je zud-ZVXM#G92&h_-Yx6)V@=Cb`st&X<`&@mw<$dnRrWz>2Cunx zSG>>|w_|k#W9dLRgb&ZeSei6(F}qDdx?c<77qf>03^8qY%D3M^$?e+Y3DUCP!qy4Z zOUn(js+g!zPrFI2=abZf3tC)kzqS_Ky3%2OHoAYIyHWP4clG3UZ(52wMlHKtoZ`BP zEXY?GIwY4dcMli($99Q?)>)z^Xx%Y+OW$c+zv2XLXMuWr{}DX6{UB{y>)(eH=G~bq z*dF47c9iz0dKJ zLgj+z#7RD2fHTnSY^FFqtI}?sa8G0YS8Q9j-t&)dT>ap8VH2=<1mxVsZ?>)RtDx95 zSkz$GcR#r!(TQb7%smhqF5vQe7&n<**d!b#*L1&}05Bb)2-}$y*#I9BvR1f5kvvPu zfQV{kazGyGy0FP?cZmhfKP#D-!|B~j=JG<(+FZ_}i2)A)`alK0ojB}ws(R*Am*C}} zf5{*A=hk-YKeFEoY+ke73Ykt2Uth&VTS4t^=?b9R>=-rHl6gH))g2O)*%YL6WDiX z9~^e|*jkK^oj&I4)NA_P`6Y)Az`?dIJ)!c4CpyA2jfW!!LEXkJfJ3_0@ATy@HccR9 zt}Lz&Jvo>(S?SN(PnUeib`-v60kQ^{pC^x=cx#he4F0es8jtTh^z}7e4evi$y6`NJ zn1Z!ak`K%BMAMwab4ZrjdO3U|Y{`7&)X`99ZkybtCXx@6h4T15?tggSpJqN z|Iwer^`E>Cx8A$aw&T^V4WcNR7Ka^>$_is>ol5HjzGboYf>=FR0^}fs1TSbz+zwWB2o_gf+O(c`>RRxqJt0^@|oNMM}S+mQk%vU)4V zdJqO5dQJT!xOe>?JZ!b+4{ty6ntLZyJ5uEhG`Kzh;`dmmNIIMx9MUIs>)KRWDBmPE zFMp27B%E(?q$P64TP?p^2!8zh2{?T6ND#0OEc)MS%3pXzL;sf4sceC3v{I7*>P z7RmU4Cq-!GxcA{bc;EzmZ+Uu>4r%nRbaAWQMBssMxt-Qb(Y(YuqXZv?Tr9JzyThlB z!QtbF;b>cLhaDkl30xvw5sv)ay?z_+-?-}uDORGaF=`d@eFUvkhPao-oxGe|-jdr5 zYbh*1H{`wgb4AG3!=8Yz<*lBvyy0w-CBH6crEObRe)u;0@L&BE{P^Gel|O-<*S8qg zEO31U8TdLwHEo9=zSHt|f?J@Qb|ec1As~1!)mevt@Wf;qk^mW@7)d0g5I30uM-z?N zXR&_tt-&Z+dHUkniuqr$Bd}@P@oq{h(bLa&7wCXPEfjsG*P(&PT_3Y+$EIs^;Nuy(xs#TVhl*3xn56VLcV0Qa?;dIxvr!isk}S_uMwIypQa z!si4(Uzch9Kq!k757(#p1n?%FcI{=p<)Fn5g4`sY$lZ8XBIi%P|G@sR=A->{*WDua z6=$J%6b=>)!fp@}C;lYs#=G)hRXL8}^1J$EB@m4p_xz!9_gdlEovw|C6FPy=!MV)1 zbraqt%eheP%O`T9>ydW_n^1BSh0sZp4@rz9Dus(-U7YUslKbt?xG-TyrMS)O#0$5< zngI>&BGnO{%kRG=j26j9w@sJ&ynC;!E1}-pd&ga>(EZA3qkY}Agv9+lXsr%z_c06y zkVyp1AfA#<`vo@5L{JD}Kw%ZvtvCyXvx2z46Bkdy@e8N?Hp1>*rM$O!aBg7N-@Mx0 zjmkhKaMAh!k^Bb!%H6h1JTIj2hZZ(*?NDg1{+;2e>V83baO3mkThHb37QxlEq>%Bu zz_ov?ZM|K8;|l!XU;Y{V)gS)*mek$N?~5oM=kj;+s8GMo#_k@WzBb?0lxeJ8&OkV3!Dh|>n~_(= zreM>y<2A4eICJiq-)`I2Z-HXRViv()4n_|0*+maHC5;VDrx)|`^G!H3%g>qOb(Z!jKYM*kMq^3?TB+uXZy91DNL7wb@laxvsD^f*=bje5D zJtqVoJ$n?+edIiR@>f3rAN!?``g1y*Ams!mch12|Yh~~|SGnDmR@c+|gnXt&*do?n zBd-+mk+j_=ECTlKP6pDt1e3OFjk^i?otlEs@7$6c`S99hFAT5wh0Lof>p->ScmSZg z?=2(up7^acwKJE)d9bAmlOW?#dRBLjfe>uMfaS> zm?&)J^#T5@j9A?vFNxLVdO)cNiKToWHj-{U5OLiWU)p3j*HKtc0wczYdIL%xV?-Et z1lX_PX-UPymP|ajb>F{tr?|j#L7bbC!z7Zfr6_P)eD+CL6XV>VoN(<)YFxj9?+fcR zxdvfgL&BLSO(dF4vXU(A+vhD=c+QAFI2CNHlR%u2aIdcc z+`IN6y#C+)Dg5An{ByYT!42QmyX_^93;0_Ouyn`*cAF9r`XD3%LVt5n9tlEethdlR z*kIkt`6zV@nnPf5HDsJ_3Q=Gx>^CJM6-&bq`sO zbou;A!e{Tr1pMDYt)Al5g`esJm+h`)L2}b9|EA}o<4+{RXPh> zQWg-JLQJ1pG_v4k6Zzry0kXBGOaKhYUuPajWh$)$>AGI^zB5veOr|nXl0?zrz|jNn zkzf1>Jp1WO@cieV_v<>Gg~18(ZsE8SI{n!Sj(Ds(|Mt9vDOx*xRPLW?&bJgEFwfzT zw?sNS=vd zCh5LQ0}oX6Z7SA-TZn)7uT6gEb{ErzFH=zGQY1cY2d zAUS}<2T5t%dN^&t9N$ahc2HXiRx-03HaKwP78j?x_TEHmizCiqhuY9)T;4u>`x^ZC zPyQPI?4SR!KirUNDk!<=@&K;2;NvBTzR9l{Ipn3Aru<-^;LXAo!dd=>TVX)Z9+4F& z=bOjNNl2#%G_Ub}N>W-A>=%Wtn*ZmSyA@l4?_R(9{uf}uSooViapLlc<^3zSK(QlG z(oBps2ag?~7J*qbN3}di(m`c@h62f8_sEa(dXR2}wn_{jndLzY=(aOki|+;}Sn9tF z-SAva6KX zVSBeG@6xmu7Sp=jtDMle7PfSq(i6I;K!gRGwx9Ku4QtYQ8JI^fdEu_}eK&ZH$0RHU zM-BQ?JjFbahp-!w6CB<4x=&iGh7(|)+U_cnLUyW%Y`Me9hY7jGf)mcHd2KN*i)TfOnt zRrvnD{15QGfAQ~Hi^zw0EmEu-pzngUSJIFm6JAa(pgv%bK?&O?wGK&EV?d1k@xE-= zhK$SpJx5o(T82u)drF#S0SaZKv0~-0KDK#+xFj(l5BVMMg!x~w<=B+%co*J6PM^E@ zm3EN+7AUqoN}85gP||{o(U8oW#zw&M13hz{gAo=6MliZhTKR>}NLGsLbR7j(o5?iO zcfk&*rG;BQXxcG$t?5?W~h% z{0Y+yYKfcd-r@*?bNza9zZDj5-S@6MkMD(b1x~0veDW}yxNyRg4!0J=3;SS_b;h5n z?udrhaznJ%*tA{h)Dj^RART^4W%jfdVA8OP_vbz|@w^KYNJm)C64nNIAv7*b4ia>D z6a}v=cZBs5$aXC7caPy3yzVsrD7d+62G=M+cE^fqtI`^j=qe_gn=7xgZaLR9XBBX3 zU#9-7i|ks5C$mE&KU1_0VMNv@0`3oCOu|)@1b19??<^xr2bR1`lzYxuuI}Fo>u{dj zf8^hluOAc1c5K&Pe5E^20g@b(1$@)Q^)jIy1Pe?cK+DeksTJ`34rC{fd5ef6sjhCF z)y%nxxpQND`}gf75Rr7!{8aQRtUzN(c_F@shOZkTTLw4rj1a$`2j5Lx8`MOy)~X=Gp473>bsrRT=#}GNXUqf0 z3?Pvq!^c}WPo=hQNt}j}gz(DgSPhBnbn;5`E6bF|d6-E6!!-Mzn#EGG6Xt)#wm~}_ zo8P#3{k?C(0K$;LBY0zwGUXO!3 zcXxq~fDS+`8->|KQi2=_sts9W9g@_IiI)cjac=qO<{_m_Nd-VRzl3;n^W7i6>7w~E{4PPrTqC-d|U0rIXvbcd(7 zWoZ(88(>1Cf4IrH4#J)Bi_@JI1O-p0^?mf(ia)yjW_@a0xZ}-R8y5O+IDZm{{+VxWGO9Ji_IK!F^w0>FUatDCh=uW3uIP>mnNjQfj@CB!tXvbnk-&qN zh}^qz2ky64k!d`4#9%z3K{^+$N8MX+8odDr78~s{{$bxM=1=yb^`-SV5vJpI1y$Kyd=X`uPUt;ISS7W8;|R zIfu=j{}tN|7QS))+WWr&3&i3Hh;F~T=P)!NjTz_`H8}OTU*)u*D6m_g6H1v}Si&6u z#Nu_?olG}ROv0!4Ix}-f7$;OYiCLa&$g`m=6DK>Uc@vx_6+BJ!MzAe6kCQk=$|Ral zPIs=vnHNsO^RGM)pZ)uvh4U|;^V`>gCmms7u|JL6pU;5@;CYES7y~RO2wq#8wEWSf zD4j+gg>fV%Y5QHjPGdC?f|W=J)>@6X+nP06QCu9}AN~-YWFAg2clRH+0;yXw;C9k- zf}^u?96ft1>?j05)9w!cOKxJ6bi{@6)3_Kt2+Hnbn%1b4G>NZ3uwQSTk0oZq7 ze;_Q8jJS6H?)QEQ|Ms8#|NMc5t1U5+Lkk%l07nZ$1btf=Zqh*88Q17LCDw}qdnsBc zBoV3PvVM<}6<}qOSumOZbmC0&42eyS{vn&gbLUoD7#21E+n#r#*cMp$cDxI1wI?oI zxV&teH$bs1(dVR9iB!ajFRb-&C0c7O7VbO|Cxp43sN60_2ag}}0+%BuYwo;}RXkOF z-MfzAZbo6--zXp_mnx#Qw)_kaPl5~-t#J6hyj>=_l%du=Uz2M)WE)D>4d=#Y>%tdJ zGo=H0?L*jtHxLlqU1<{6R!rjVPm{C`Vv_Rf(tmRQF+&;G!cMtOFqW1VwbAg4D)5 zAz2FB6Z@Uc;)(Xo^5qEA-RpN@wYAV78BA6w?8g=&LC%C2x5q^S;@8EvI&_;4wDCJZ zK5SC3-@ETQONbNn9h^(rYTVY@TL@Ryk{g=E#p>(piFkQZi*(Bx(w9s*&ym0yv=pXm zam#4j{VQ1%4N&Yz%tI0!iWY}WA8?47yL>lk z$4X;9=D8?L8$uo|;UOvRF}b4?SDvwwkRSh%7Ld{$RT84O1}=x;X##XrjQKGnKRxqe zr%W^#2)ARETYUY(D=)w&{?5nX*-t+QM^7L20*!MY3AFhU!*TV;AHa>bZ@|49cf;C_R5y@_gp1E@K;X{MaBGB)ojci* z!$1N85n1tTL)P(B^VMh#K=&*pu~VD2*iEOyL$>^o3P@$fO$r==a4u7>J-GD`jvP3G z>Q6FniO9X{xBaeMju@ozAk}$%Pffg*7UMU`)yZ2F(w4Yk(YIfqe!!971Kwijw(E74 zIM<#XnRP_iZ}aRdg?N&CB-H+Nb6@7EXlo{ak8R3tG+^i$Mu=;ZtwBga(kbh-ZyIzd z3-8_$DM!}a!usXdPaHwKbLA$y{bxUdfAxR+1GxX;U7vp-<4hmuP({~f{b2HQ zBw#lsNmTfx&~fc8JkRr4zE4R;j+2(DU*H-;LRhK`o?~~`{IA#oxRLfB-?;k0@4|wx z&=zv$+%w;5+uT<`v8{oFLlVM!28)eYO*Z0Vy2$7J^~Mx6&D2cZmFx2)lEOn>SVszB z`^5P;6In7*)`>tS4tav4cj+We*UOaBg>F1X7CBAj)$)-dcp?4VOK0Kv&p!`8_m!V( zHQC3#&%56~*SU|Z;$mXUg|#U3dw>5{sC0|ESNtjBkz_o0;)#Yo{rkzfj|V4p)as&3 z2`(7-E<&xgZP|Qw~faU2qzG_0}kD~4%EWC>)xuevKCJ^pGFde zzW7li?J8ml>CnSqDavkFw1N{Eh#Gq&4mO^_;N7oKs3PqZw{{JJAVeWI3W)xCliF*y zxlwl^d;xhKL&{$|^e#S=PTh_R_5J#QCav}GXQeDPX=f!|DDT!%Tz&Hj+<5aETxKiH%NO9(rL%D4jr#5vXT=&v6c?msMK_*>sCo8Y<4+l>=a^Qq(cXr2(x30ncn|D1a4P7tP zZG&Vw5*oCEgs7XiD_9Wd!;Wi{u*Sl*%l%AYQ$v4Xi&2Qy8e#dcP-gz)Y(Lbl}w)tPN`DowD?_az6{;$J=u+X=x>pylL zh6by?=lV1ro9VmC{N_soWbHX14c=6IPWgPrHCQQ#BpKAQVOT<)G%9t}FZ5GM))e!b zToQyfPtNMaGz-yoZY4ngymtE8&pZpC{!e}eUjF%){0ZewqwB2~YjF`d5$rG~FT_7_ z=P^8l2OmC!d#z^qNlQK+KUj&bR8gp$+AJK$IPl=T;G>?kvy-^psT1h%@HOXZm0e&= z-fDL#UXOL-1U+}~;bG?j(~>C{#vgF_cnwzk0fUinL?Sg^%L~fA(7YBb9_hq*6aZ1x zX*21-_A#|Y=#BLo+E=n+r4zOxF8rp|n9h1Y5|XSURDd&NaekAZjSIoU^;Ee4NNP-W zxx$6~p4=@hCBOd$cTH+0i3~Y7x1lRP`T(xCq{9j6tKQ8D$%ajZwSy?d`i)m`e z?l~v0A31##&b)BGCAsI|=&55qeYfuB(Vd6k?3I;#hK6r<)3m@Q@18|}TSBjimKy5= z$$TpN#H4L%4;)KLW z=p9bF4^|hqK4dakNAh0coQPJ?%6pSU`7{p0-~yaj*x-~S2x<$w35-lCK9TNCQVSZIZ? zF27sL#$*1S{>}p>TAYoo-v!0C0y8adu(MNPx^J*^pZ>IHYX{@&)2>jVy6>4zyzCnZ zD`z(+Jbw1qzX;F%%rkKG+_5NVO#N<8(hbbJEww_T+vVu~tp{-L=6$$- z+u&)~xLCTi^)LtW(poZ#=Q zMAzQ93Ri#nf!|KnkvDf}pmVniYjM^guhEEvD^`ks_mMPMx|YM;UJncSU3yNaz4WQ) z;N0a4aOCVU*w+fYxbDYUTvj6yaaO3%rqD8FVLe(4AnqWAV+!^Nyw)_i&*eq^u`Z$o z!;$Q;R%6Mhee3<3@ZmexTZ>&>c%29wu}B#t&G>F6(ZUke(s)wrts(oom2N4XS2A(G zyP;$B#vG`#&8VgX}gVSbNvQ9ZhkLDTSdXX3a-$tvA~ zxczi}Y1yr9X)QSik014l3Kz!h@OAU;EATJ>&;KvD`lEMzeQ^r}%KX`)o3fkUmtiHK zmWR}@EH4+gh7j}#%eIp^1BTao}}`oJdv%i^Q=sEJ)z zJxBz$$PQ>2yw3B$5(EIcP!gk(V|Zs$mGfpUVak8u4s_Rybb<5hvGd2_Xa4Rd;bZ@^ zkHHJCJm-ZBhp_lM=E{b};cnsVgO+UEy>ZWLi2cdaw;#0@g|(E??3Yif$gg`fN%-*} z#w53orFdom3U0|w2&)RW-HjFk|NNxMM5g_7XO5hF=A^gSxLuFDV7C&i9p3V>8rK)B z$Fn=4i%|Mo&ua{lHlNfT5?R@feSJqs3wJEa@0^e=1DQA^fru<{Cfn;agj7s$eMUM2 zkDp8)1jbArlFJqmmU+LTE;=BD*s#9C9lq$^?~QkEw4`G-y43CUhy z#`;WaVQdl{kzFLURs-D!a;@El@2XQ zlhB^y`5S({(o#4e&|662B5&VEqLpaP@5(hzmXKVhxi9*K;nBs9o{A1)+%SNov&rw7 z5a85)X+MHYv{HB^Did5E66(mgWjU*eBP7n+=*~EKI%??yI0nZMIHuCU9U~?El#a!Qv=6*T`G#mQB79-k@3gT}8M_;O6sx5) z=aD#`7M}L}uh2*T{3_W zk93C+5$I^e_*B8yVGtpcmMzXoG^T95$P;MJf#FHXvH@`II;kRFPADl9N!ToG;$-W5 z{D1b>e-=LdcR%G14|MA!fUN0o;ruqbt!CC)H||`$1GnD0<9+3wVCK)j0Pg;8Ya0}88WM9p~(GB*|VwIjPaV~GcTNhlNV3HkyD4gAh^03chHI& z`>?ZCIEy5#9hfo=J?7VI=Hq*IWCVpD6oi1b(I}|lp?pd3w?JH=fC+ZK3|K~!%aXLv ziC|2^;fm})#YtRakk3L%?ag%4E2F=Uxw={LYjs*u`EV7UxH^0oc5GVlYc!sCOOhud zZt=czm2%dk$KhOy{A@cb16Tam%OgT(ee!>)cx09vKM;9`+bnh_`M5{!UfYr1zW;^~-BuT$}Ri9@;+P z@_6U!ZMgOBb^n=8rcY~jnpFQ2bnlAi)1$0o)hKL!5Ug@* zcxt+<8+VViRrj^Q^(bTqGyHQ!Mq-i2t+FjS;&clKV!C>(Uy6#HJ+J*Q^_3=IU9o)$_k%JHdYY`qdA< z1Pj2zTIktx&)jNbI{}JqgN>LthXw_ysi+My)D(-q<-om>ywWs^xlIHF%SGoHBD9ma zi)y8d)(sL#->_)`Dn!SS*@uS*$ZiNMWs>jYs?=5F2~tAhrP{x~IyG()@NxKfYwh@j z|K%_Evpl@}$TYaz_&RAPA}4UVU4a7WxD9u&-{Y17G;u_Ks&tYwnQ)U9l?r+2Mikvt zP-~3BoS)<^U)XMix)I}Y+UgVMPqZ5IXZ$)3cik;0_lMrO#qDeH3=h9_|LSo!qxsc%Q=p0!Ch zJ9y#{T>99vaQOw#|nx(yl=I1bzfd zTV5Np+}8j8qv3oER}a_TxZ+*2T-wPJVoV~J*(K1BbtaQ+J@C7WE#+Ot;=9Lwo2)~T z_)nv?F4t2ym=FmUTDRx{ooQ=eJTwx=BpiEan~WqHD*#=zY>M9Iame4ZG48nWgInLS z9JcOtR-^qb5pmyL7_ID6k6DpwRLPX*y=B?sr zXY=?0B6e%D)jOoa=Q{e`q!cpIK@ws~*67$3`5etgbs|Zl2OH#RF$l34F@Ns1`CqXm zSlBv{g}hx||FLr+2O8AuG-MZ^vF6l1lk6;zqCiQ*L-Win2$g)6tO-UY)^%Ajg=_c# zwOBBzI+7teI9tjV3V93Z0CeXf%hIF7Bi)aLC6%(6Mkl8o96ogfKK?5ogU^5Y6}a@t zXZ&9O-a;{jDCk)4UUlb+J1zP?+`V?UwRSuv=Q2RhCfg*M1i=vnZp;8=fg7l`16`;Z zlPn@wcl1Pjhf{A(!zVl6Rs%>EXJ^U@c&X@dR(hA$wUM-?oOLLNsH~5m=z@n?QNcMeT3JT zuiKdakay>vG9^&$V@Y4vw8U=JV!+N|z5uPW{@Swrw~9bN}}JmXtj3n-4hh;kVU&5_d_% zb5yA76!!uDxGFzljXleSq5^M-!OgLsEbpioJ~e?A;r5)8FohV`6O zetb#_oVGU;8Y4=GQ*s&tceq zbbl87TP?M7r@D9jKHPlgCVcq*?V!oV^Dm}0o%$W}8%amXbi9mK0xZ^KLQae(TK`G# z$-+YfeTkzB*VGchFfE2QsgB$>y9bXRg!3Q00Owyk=QXb0{m1QS^>{U&DBb>c0^7=Z z+9Eg!xd3U`r1U1x(n8x)Bu29BqOj+Qf}e1bIo#uBoLpe|D-3^QwvN`A{g)5l*ToaEfL{Wn6#Dy zNu1k~)|K7GfAgIiaO15H{7!E^jwZXs1p*RCUz03caW}W<#+1%papW8fA+KSp=d>1N z8mv0FFg@iz)>$4WAXzxl1`bUV)5+u)+jnZ~am`U!8)Ha&h+k3pVaY(1Hdcu1S#Y;3 zx5(a+HMd)qI|=^iAx}^oQU2g>-iCkuPyYbk{fi%avYLhTY!yZlAje`BM!=LV;P?#L zy^T&4Mktb?Z$7kSXfNLD%ucB+i3C}j`JD)gk8e~k-;MLXVoP8bwGLzbEI>?O~aA-JuZsvh?;2s^oLqhxp)!bzm5j!U*C96iM?3U-GTX)cx z_w2_^CtzE8kPwtCgaZ4NIPuI0e`5I;zWfEa^fS+R;Q-6w1l&h=AH%KpK7?EE-+|lj z--?z4C+w{Ia9&Amr>R_w4vIQX>m!n;AG~%H>k@N{KJ89h9V-E-+f6F2mu*lpY~kRM zgRQmWB)ssM7sAQq?SK9dyC>n~@~~sjy3aonk)%xrNSf+IK&a4Qb6T{Wr}u>G3T(F@ zC1U033oLWL$&2QL@BM*RaCO3%TL<7=of_g6G91OQ;-mSU8#pZq;K|Ei=`Q0zY z1b@#@d;HLHPN!V65?quaH6w~$CCTtQ0 z?KHbkVW;+O!{qPS?v9^72^U_z2&bPv2d6Hb@>Yf5F1F$cTOiWwY5fnn-&tZ2!*oFk zp(Yc822T)=gbx>~J7VT6Ki7YHrL`8`3cI}-lidlUK;Oijw*32^n0!u6lijlnlGXS; z68~&5!hb2JZ>jPWlCG-f%hU>xYOMHwBA{blfbrTKC%&Hsw053`{2 zKo;_r_56?RgQwkjpGJDsfpE;jL~h8|0gRUmSea@NO9|D4K_N{dn4q?dPH>hy3l(xA zWgD7zAet}RnIWOrgZoH_!@=VR;p2bjv|_;bX=xmjI%<2u~C z5wz>*-r+UUXf^N;*m#}*bvujO!(!p0#x)5vX>oMODEhS1ldWB3PNR!yK~~`c%3(MO zA3JvpUi`x4R`Y(!yB0Zrf2Y;==Xk_8(Ot#4ktJ6jqPYv7TnM3OWk^k5+I1+_3qFs+ z5WZ9s-KrpJmi=PjSPmyxy8IqE+7geYuobH#55Rknvrc>7^IkZ#Qjkxp21b-J`1 z&XQPOUd|fxxNDX_5OS?09QU8Vhwt5lpZ?iT{Tc;#vbWo{=~hcB-C}Lp+(5LSj%~3Z zte65>cdfyd)tzpB;pGc(-Xs?eT+0amTbfEfKobwzZaww3dqX zc*X~6_t_3vf{gh3Pw#`QpNfRl)rZrvpS^qzp843baPra_*ne=Jf5va&iw7IVLnhbO zagp~l9by=^^`$BZ6D?y{C4^8$_c(ucNNWvQ+PBZw@r}0LufKh*O=mRuk&)$=h`9H(eCUABnOo5RgV+8H{^T3~ zA5Tg+VGyt&t{XuVNZ+K&5iyujYe-R`7RfSef`~0Cj8g2D@&N0wrz4BI6voM+a;NsofYGuY}Z&6oqRtwzKJo z3iuU)y(Y{T35H|~h6~^_?ku?Q3`9k3_#W91pYTk9q>vdaM&7wzDn=^+I6?h#OE`Y% zzx*XQbNLJ$ICdav{afMX@wyiVoltt?&71J#eptYp+@IujpH46{mJ6zel;7mT&b;g~ z$(mIcKD&*qC$080T3%AQrXXrAJ|ByE$Spwrv()V*UCM6t*C{#38vrSC%G{4-@Og9n$8k6^Bk9hJF65hY2~W15*4> zAjZ?+QRoYr>afGm((+PD!*74wzANYEbie&`g1p-x;QE`_;jQnz)qcP0>%t4%?nG@O zG?5kp^VtpPxb<|s@e(uY^1kZlzS-+L;p%X`Z#jUoQZnw4X&6X&A z`0fp#=Lfg$c_QiBoZqPo&-94zBU{ES+lDrf1^}vZc0XOcooorw`PM3P;^JvIdEu1T z!n^wRR*_^ei(B1JvwKrWZ%PhUBz1tKIJVEQ8(DD6a&BnOEz3Rf@Xmd>^5ggYdvatL z+Zb*g?b}K^%O>uCWtz08JGHIU4{$O4G+BwL>l$|_gG59;{4Q9LSj4SG{;FABWHVXP@%~WdG5FDQ>sZ(Sr{kz}25#gWDgp8t6NZ(xUPy zIe-r=Fe2tB*T%DuP}I1i4{q`4HM?}B}z^MTyn1nE>i1Z5%+4aI!)4!NRwC{;ebbX z8u*>-t>xhD>z-)1ou{0Y<7O+oyG7%G!g`_ml-dZtPb`4Y6&^bGMSSvp32s-iPyWiM z;iWHr6kh(>kHFD0$I@bJXO(be@N16Vy8$1*e-j?IRvYi0wT_2C+U$O0^ZUdwf3D|@$vgM6W2XuB4UE8)FhD1N!+!HE(*tCA&_8Vt)V-fc`{EH z^II}#;5i|lgEZ;Ar7fM8m*PV8rF;$zT6&^|kDeZ%Y8%s;=Jyk>Psw^Jlg=gyu7Y86 z1@AuS7OOkb=C(L)$0@hfvD;etjeqxj_|E_154~GfIJgu#V`WST5^)d>lPL+rFpX`6 zw%=MGH8Mgd^^q z_|3MJd=(Vi4ja`vjD1FGT`=u=;u_2g5aAKi1TMTw(FcVC8bN-%D=g7_kWwIV#Q;>} zMG}K5Q($5Hrj9Jv+D>7hLq2M7dA;zl^Y9D*`Om{A|Km@<;gg5cHnHw-IHz5|`lG9@ z#`%_a@kzTuMQZ``y(f}8TbBZm_Wq}qDct1;bLr$DzlLOOExAOY;AE$Qc;MHDhybz9 zoo4jepLrIZ|J?I%{PZzT5}rJWn*C_?n678n6z>hP9?l3!TLA-apGmXqgd&SOM?u)$ z6p1AvAifUL^VwPjX=kHwe{x{i3);>V$1RTb2gJE2Y(cPbTKKjMJ^`0qZz(d4nYCqG z^C!t)`SAyEuK{s820dtrh}%|}mM!E8QXB2G3v#bZCX5i=xCN@?N>WNg zH0@3w!Ru`qkDNRTC(fUQSAOk_@Y(GvS0pItv3sdtv|KLw@6e=RSS8B_tQ&*#Dos{{XTqNe%-+kM~oHsw^$L zx~jFBnI0`Lzzl!^Fc4gVBuIiro*fovd&Jt_9k@%bk!!YQ1kY$ZV(oYaaBt7ZH5x%2 zNgN4)1ZD_1#Awyi(=#omyQ{jpw64n1DXTK`$Ax=@d$`AY@Bg3G)jb0+qdV*W|3pX+ z57!>FG*wtD)KFj)FJx+?c@{^|ivAV^zfy}!4pC`lSmTwn1!&eZlzcbUp#UW4uAGJc;R=xL_r12G2)x>rPU@2+!^7H#m*7U<6>GHh1PDrCl_Z$KfrzM)4*7IUZkZCNelZ6jRhM4h z)E@dgU_`6s+vK#2p=+-Prtr#{St7d6zj1-CI|X~C=|@TQw-ufTUtAMrdVqRd3)8`S zjiurOJE~0!&b;^H6?9&I*N?sj9{<=o12eFT7z2syl{7!|*XQ8m^T$ZrgN(^SGH0SG zP?`XqUl2y5D~O3%@)TtO%WrH`{djUM}s!xkKpW!uam|z4LCxS%eb*5;M=qs z!jN?9XP<*QQ7t%Ma}q7*TNB2&jJ$MCwV@5beB-fHGEaZj&;O0`Jy}l7UON8(yovIr zR(EFR;LPyoo$IhszH6nQ#NlqsdTlNTQTN`9!X%|(I5cfpzF;Ix8M((>4a`S_B*$kC zBul^wW+op-mV)DhJ}1c1%#lLWBCS)`U2WjdPxG%U z#uCh)n1!pSuENs%QVKtsh~QO~5H1l9LXhzAR74!Q%?wBd*;zHcPYLHJ(VxnG-AzQI zN;t;hPcyg1R1paAhQ1H?zxyB@dio&cqCjc%?WLGyoAXF?m2ZbcNpgDK6@e^~sIt>( zmrb?0ifGkqXx23omM%pqn%q22k)BY>jlX$Jnn?kl7Y+$p^m&*KOvc66F9r$!Ww>_X z8fiA>ugwt?0syT{_aJ6Y`Z={~@|&3=t;y5ZnOGMlSM^0%uiH{QzaFxK`-)nT``>j4 zp8CYo@X-4ofr;sfIH$~LLG;}S zofTrFY}aTK#c)nqiew(e+7R&vN%v)EXuO!ThRm!*^RUDv@ZQs88 z;{h3c9yZE%r3|7P#qxG-(niTBlq7lo(k9KJHY%2`LL-HvnUdxXxI(j1Q1JZUzV z`RHofd4Md9E#{o(nsXzd)AFMqc^LLRv6mtWQC4kAbhjp28+MTAiD5=Wd`N_tOXg9X z_$lT)I3JKrv@~IACme)m>m+G5CgmHM9H9t8;M7R+;sGaPTn$Xq^*}UVc@?N=(K@`@q zF9IY0_ZhZHgTV0U!DvRfj0R$N`~ACM{}cDa)_vPxB4|aN>ri;u80PtoN^sasjC{)6 z4%T#s1rcP{G>i`F!{l(iwz>jWPR+vQpbbIuGR=JB_f9fN1DCRyCs@wY#y}4snoI9Z z6fb6e#eW8WbHYMq(AAovRzkELBwUCN>KL^xhV1QR?M~9tu=a#kvYX7Vy1d5{e2aN! z!U0b3N+rG_p`-({nzx7+6h2vj;S>~<|iymCU1tqW> z7zJ-wm3&sD*8o(%^fk&{&Jun}Sk}$!W6YI6OU>CX+zFx3Ng;JHTqqsB6t$@v z^Ej-e$X3_~og~djVE2WiUhhhN1Kt8{e$WCsZB$FM@5Yyf; z`4Jour?+Nr!RePy!|`t)hnN2I3*@&UPiTqpfP1qfi&?vsIwef1eCB$-hBn$|Yi)nS_qgf;eaA zkh+?}@5(;&X+6D+o5vi@3zOCZvNn*IfwXUU|1*;@jNzY$V<=tM35-D%O|dwMXqEPZ z>&3u#6$TrV;r=+GZDNaKMa#XKU5*XQ8nKl(a6 z|2toVTNkfJxEGE$&yXt)j;8a_V(K;s^_B@ql{;wP!>;kvvS*0g_fR|J^x4Qgo z0Du(-*YBl1YiV}uM+I5}e&Fc?@WH?Get77^55nY@i70&x&ml2%{ld*4X}=hVnmIZ6 zqmKmpUnB`|lIYuZ6hV;2%)T8WrF1!zE^1WR9EunaCE;XdC`KzvbCjIh^8uHs(`cg7 zfdlV20FQn25z>I5wgaWjDB+~BB&|m`F&@mpaG$7ufnbS=*OD~XWrCX}!re8N498hz zM|f*y7GV?3W-zNZN??ijs`Q*e4U^)0+zL|pSHEyL{Jjk4j+}$#h1=4Wg&JEl5!Cb< z8`Vr(_TMO(h76Ai_7y`9`aK5e22`Mz%Me0tu=;#KOhK)G%@SfgS4f;96Y#+M9)X8H z^cWm`*8>z)42e_k*~H3GQozWtaw5&EaQ^kP6iv$~xa^jJ57H-J6XM)34>7Xa)V58q zW!DzC|J@H!)_2TQzm|dpph*?y6j|e(B0gyzm_bGD2=ecpm_!nDxQtAWk@?=O%QxWs zYp2P-1riR*(XT4OHx!wQ=CVpKW${PU`asI$9tXgoikbOfJm|aL63-1{ddb#~Ob3R8 z9v&e_an@8+!hlpJfhHEtOG3#W6Z5f#cnBG`G%w8P5G*+MEsOOMGeZ6$DR&5l>_ui| zVk~IIrYX!Z3O|m2{S|orKYkw0zkFPnOWr6vKG(!Cn+ujr&bPc`;w_%=-WS_H?^IXY z2)beQ9JKF0y|+sq#R}!>=4F2t&i|(8H_G=)@t+S2$Pd9?mN&E@cy59FFgM7$6#zKNrD4WeS7{6+_-oX&b@j*Xgn68)NxIl zWOS2_d~DaQi&OkSJjOU78C@ER#DGXpL%k~~?M+L3 z>!kCH45iSZlba`r=xN+rkk=IF79)$DJ8~Xg{*&*(t6zGRlKvG-3)*Z-YZNpQ-fL$x zJ*Vr^3=8OIi%Ok+Pz?y|-pLK;X9{M+%t;fmlrGr)=!;6B<+nFX4YxPFeKS1u!%qiB zo_Ts6L5Bcyeukh+N((LxILeWU5bTrQ*~S`+3>l8@$C%D@@o!6oyvinGl}!2)WHs+7bK z9n{gOe`3otWmCViumsQj_UGW`-}@>oT)U+h5imG5Gs|_N9h79KzUOs)%3w=BTWmC~ zQI<1Cs%zf=Z3w`ncFB=nGfPeTwW)7CuHCD0PtX4zb!?RHiSnir65jQS&g|It^l;^$ zhmG=GEG6|Y=xYsB!vJ+_Bv3P3>LKl5oBpQf`ys2IgcxfkG;^T{{P>VOJpl6oa!f=9 z0BYmUjq5Mjv2`G`E6+q3Sc0U+%*20~(8NT7PyggQ;RAp9{V=n8bJR-s=s9|v@`s;-sZ6F*VVT5(DZ8}~i z6R{ixO%qjfi`o?uYnIn=~CU+Y!s+g|}?`YCjgQ~fjV*>_5Kc4`0&U%ut}l5TUVP2JyG zztfyz2JHjy3{1!ayW!A#9;QTtW65z{;G6v!0`ZIt0!D&6^YTebcsP6N5`{7bmelJ& z1Zg5DordfmpB$;vdW1$WYSxZJq5XG144Zb$5CKlfB$uMuAcyjmoFYEKeu6pPXP7Gl zwIQhO!_dRm&didZiI`hC78FEn2#<>;?QAtB45DZl63DAi(&9UnLi2JF&7w@R1J+Cs z+ojh= zHj=JX+7L_me47;5!M&BVWQL&mUeCe^+G(j$3jYG=%+x6~W z@n&qZ-cS5>@ZI;r5C6@N!~S>e4+P3+tT|M&bZZ%APh5eEM=yu(OUc%HEk}jo4Cbo4 z@c@ge^GanwW>O?6X}yxWoK=%UYuWEzkDBuI>twAZJGQXUQ{=7j5(12wd_ z`=MR%)DJxgTla3EG2B_aO_8ohQo8Ds6MI*rza*U`LMQc^`mb{n;PoWc?&^aNiltBX z?k+Mys9{1PaA;;qofYWk1h2PGE*U15Qt-;TsK{5yha#;&jOXm z2!LAq%q)>l)Ns;9qzGB0r6A4IP{t$4bSygQuO(B>s2N&KW?6(oR@VgfvWcTL%@QUg zX^l|h6d94ogp5p0kTwM8efIcS_}ahxJvi~~D{0Luu$l-3gTUid!Yi-N0r2K5F{h9) z18P5Th5X@t%QIll6lh>jKx;P}m>sA4P~bSImp={Xf4|bixB$Rg($+@lS>9Aa!nu$_MqHp+Lk^pZUAH7s|#F$YB;HR2qgS;7H>1D$WWSkhe$&uQsUV;x05JTxF) zLtJH(nfQDIRaDds`N>pW9a%~{s^6uA`Qh(-7~c06-a}z^MLt8n49 z3z6~YdK>DN6OOTTQy+SXhP`e8(3ArTKgYF=0>O#U5R5Xaq^ z7|yBlv4F$$IW|2Gk9_zcc=$sP!%!e#?gVM?%3{m}jtq{}nTTerDLTXhNkMrW+3Z8v z6DQ)X+qG-Q(oTMs!hGW2=#b>@;PvRH@Wf)O6RshXar!%F;OIAx!qI1s!j&^upauYn z_RyF4i_@@M66}ps0|;}WK}4SSO)w30Non~&3CoJ{FzxAm*Ves;-z9$`{b{Sy6`d~_ zk3rBFw}IwY+Yao2{ZAZ(`<^%edmh~nTlQ?DoOV$opQ%cIMMj*z%7Bk}K9Q;H^)$rKCm3kfcS@v~I5XeS^tAyB127?lp& z+o33VIA`dfjuF$wH&2l{+sl9ORe0gkUkdYhm8V2iuh<23tvt&B95j*M8rPIs4n8}i zO$F?(2K=tLUoTnk(8f+uO|v6Facd*K9FEw=kHa_ZcNflucU20+j7e|6@lZdO*u9(y=@8}{ph2V z-vbF4bTr3ge5<#ksR|`VRD^JJaD^!DO%ZaKz~SU=EN%2m(J^zxhp+=l?1tYls?X49 zv}fmn<5(kxYZW@l1O)qojK{HOkHe9#AAz&4o`vh@ujhGgqP}^~73>0O_+w5#Mpwwj#Nkr`PPhR)_yVNh`SFZpQPQ3*n$nkn7^ix2Ajgys156350bV9T_$8e%(YIX7TOEDM5%9=>!yGlY|BY1%i?-Z6+h=&y8ze)#svTKi~B9ZxE zDJA9eSnG;50{g?^cJ;75SmIyI+8lQ%I?ry}ISudr@u#D|NBE7-=17nsQIZoRroLA$ zNmDiP!Db+xoHQ*>smuZMK8eE6cIiYM4R<678cDhD#8ATMZ-N=kI~8hVRss=v4Nksz z62AHA=iu7etAR;cNm;0&2~t7KJbVELn$W40Ot{EvW&!Oy8`{UrwbxZDiL5J|gBnHO z+^xPFMQaE1wH}9yYTKB+^eC)_tToWF=C?`PrMWa_3I;W#I6#6m&s3vL~iA2R#7FX@aI%kA2@e z$VUXV1r#+a2oTniFO|(?&RN1MlISBmF5Oyy(=Qw+b1r5Uz&SH;+S-(CFl|9e0G~`U zRi2P|A^S*a{}5(Sq%$5e;hykEqI!w&#VqNRH60m{ks)D3D2X9yDryKR>Ci+ z?M#Us{aSKR*Ct}voJN^02ge|7ZAvWKNeL5C149|qF?r#pNtoKcnM}1Vy>TWmA%6rX zo_Qs-zovvvU?5jaB3=Dn>_R)d@(JUh)K>DO=BKn4#O&Q-^EmZRx&OK9CWc-!KgzWB*$V>;=E(*a=$G%qEVN5P+#E^NdkuVW>fMz0p(Eb0`9R7_H zVA_pO^4#wJzQB-7jYadGD({gS7q7#W zQx2)G6?$1W|d8Au~kjQe-yPfK9W28IXiam~knA+Dn2? zC-9tw0#!1*ihGRuJ31U0lHsVO7$R**hxROo<0UOf`Xi0d+FJ4xVe`&B#LP@X#wm=) zk_MD<1N)?4sNS)l4H@6E8OAqH!kzgg_(ottUi-qgVDZ|V*{h}qFA(7`Ycex~k_m5U z+?&=UtKb-FjJKX^khM2sZs?z?4r)RRdDb^FAm3}}KVR1l>+98UY%nU{m4cZ@-!nTq z`vR=9bl@(^^yH>b25A0i*eKtVrQERVVLqDFoNcAo{eDQJsf{ShYcMNt>?oWGxm*#n zNQ|J7#%UW(n-(ccUR~qc&Rlo)4k3Mxu%w<*Uzvt|>|>9>PyU@x!ebwQjC?)tc_hde zuFk`m@1TS11z5VdNM<0UjSxrk*jM(mE)(IgfRu@DG+7|2C=pd;7LhWZi?q&*w3G>)ymm5)(w|)q?Sgmz#M6|y9f^*ZO?pjomC*Z% zsHui?UV*BzS&=CW=unb`CPJiAQc-Q5g=QJ(-$7$eQdqRZU!GegTl^RTb%Z`KQ~a@S zABWHW?|%Z{`u%UiiJzGKCHb zLSFW?D_H|`PY{7x@3J_JAbe&v{WqaD(nMC8#0rOcS9(S^PfGc(emu*KKTU4u8CeFMJnJI}(^vsa;3 zG?4-YOe&bmgn~Cx_wtjUlB!+NR$0nT&|_1WHe4p`+V;PUEj{cD#=(v?OH*4Jlms7k zf0WPkBDdaLY1nP~TBi6cK`ZNHdxqEcKXCva`N)&7=b`i2fqy zUpos|&s>I^m#@Q0fNk=Xy0aqtmIMaKWP{IUjNutH4|?Kb?}FVA-v^VJ0|bLGEZ>pv z)2zLqxePEpJUU8dVt1C7;o{MAaQ)0ICH2ee5=V|9Z7U&$oe@@umJOogeRT6kCR%IW zz=wgAZh`3{w*rh(KnV+?iDQh8h0HxMXTwp$$fj9@M^>ZI1M$#W7&~Q_UyUJ)bA-L5 zS>oke%Qz@zOiv6>%G_R6kqP8zTpbJ*JT^?GcgTQj-o2gh$fd)l;Iseq{|DF3T%xut zNaz#8{x)C)09jKW@7QZ~O9Vatxju~z>P1Yt+5p>I&@PlM89qw5hwrWP|6Y_qwIv(n z9u^P3HhcN}&%-*)U1>n3rl$UG0HuSlQQnrK5kz@y(6Szc(oZehcC887>Sxx=d}M+y z(?iZ>qL!bjz2Cxov@|#+iPz*2JmzrD_*5eq#pnANyNB0#AJ6 zaXO@_jc~ZmT@G50SAy2#)pJ2gdOMkT_!uj{o6Qmm{wd8%(z+yReUOQ;MNzS56v?M7T&^lGHZ!DiJ=zBc05s@MMSo$+T>Fl{6lhU=Ynia6Fe!&Jxq{ z_22qBy!e?HVd45BG(xEXIj6KeYVOscpJq($4Mm`+x}f+DW=%8PRRipwUZqknZlJYb zHn?5=oGdK_+9=uQWj*j4+Mg(cmtug|3x z!svG#n8~fdhQfi-Z=({1h)pVajFACMSTo@{x+Z2{u{s(H3pZ4#USgg&+dO2SxcHtI zf1Id2UZv2%n|E)8>0R3bzP%3fS8fRL?i3)n`fNbn>IrXwQ+pN68KTcd{hjM`wX;XH zmKP_!U*&p@_OvL)vY5H5?TzoD^S@sigyva~24|z(!xE->abfPC!#c}dt3bpqr=4$0w3*(AIw8bj9&e=2sShn=PrmBZAyVFLBARl)tb4c1 z2Rq0kO5@?{ToM(Dvh6(+~%$Y%iQOQy?ZQw2S5| zn6dql4?aW=qR3F8*%dq8($hXN5cm!eXvsH)&8(`V0g2&KlXSgn>7tmNED~tQM6o?M zjs@GphnXo^T3m*+fw_D6voFDG&%8m|$}!gncU?;;6kxo~PnGcj80kuH0sH8I_W0>AL{(7(tO zskYm2RdWT!Wc#vWfQCU+bL8+GU>TW>```6ofbVw&Ey?{bv1JpC1t~ki95M#i&SDOa z)3A7BfdWVn%-@N*ZP>pGOAJ2?#27#N(RafAPd^Bgo2O#f-sR{Y(v^HZaeg@qIKF%C z)sv)sVFDez_GQbkr>90Tk1NM{mvRGTGbkkuXNDjz9N4Uf5f@j<#EN!mRV9ubX_&R!Ix8Mvne5Vc|+P1Ep@|KpSz1oZ3sVuT>`}FO-}lgiE5v z6C;bE3D(5SG)#syyLmAPA%5dCaP&*h6LV7TbtgDM14IT82lj*j%?L7F>izERNvHkQ z)W(&y(mO|M>GflIE30!DTJX&G(D~n1PgBuoW{|o!%G+A5hYh=Rc6N4MFRfbxf)40m zfB!AmDBrcxPimnNMqTQ1Z=?}TZMPwVHpz$};RX#)!rbv7a3BYYCb~hSYxy8Dn7y^H zb=E^@#2TTbpLN`7eVny6Q%9Ky2>;^&eDJ;Z!%zI3AA=`9@dS)-8V3|@A~7&GI|rv< zIs<24K1<03BZ0mqCK2AN!=EX&R6p5TbIg4VMTzDIooI%{ghG`5uLOc-l}tl0;tWT& zVzaJpnH#`oM{CctMq*|vUW+)XGVgIc;v7!SOv2+Idkh|Y-vdO5++K{D4^G5Jui#KR z*|dtyqA*HPXCx;$W9exeerzaaV~)|Ru+Eia(uF=B*gk4I(65C;nua!(1LN_=H{XD- z{pK_9xqtClIQ_~Q>XYv_9I)Ulkx;;eEPp|}G7-TN>0)|nZ8Q~{->L@?*G^(*D>rO#2>Gqq;B#|&6aGU{_>tVJ`tb&0dUj5v>_=iCfl#KBk( z)@*+#*O76@P`aoMdF2Z)!fRi7nV107Xhh~@5;pDF0(&0b4>LhKGL+yN_ZUTt8tRC@ z2xm1%;{WpT3verFTriV6`iBgU3`O4&X7E`ckoGD1j!e!>kqHqpIUw_0?{hT4)cBYO zspry}p}S)2mRK(5+6&&!xGLQtAw$AZ;3RQq6gI?Az3f|}{X(MlqQHIf$GnyL-OUih zW`Hzhh52fi!T_(({7;2-+Wq(;GI^Ule$JRsdtXKE>nQ*%{Z z<*983@e)>x{s1)Z|31g%K;>@Fe=bcH9=hK0d)qU*t_{ZIZ7*YCgMDgoaq;4MURpN; zGC4K%p|G$&3mfHaDZMszzx#uzM(<_c236e(A(=0z@BFM&lDy0uOEVix!DYdqx zkY4)kvj{sLq(1k@*!2pPrAVgqlZmN39v~BpR$6)VcyJLL(a04ZxH_qRL z6VIK5YiF)e4h)KmpEMqFAgB6WGR25~5Fn1&E`_7jCRb4s8?%?AlR4Ryug37YC^_wN z{*YBBYElSLm8BV-SM!8}NI7}@*|`+5^Ef(wj}5^SAAcMkc<&*~wSa_vOum*RnCab4 zC-;}4)=&t~C^a2IDJe-at1Ptx5dRMRBj)Yee2_9PQG_A1^QJKcDXL3#q6XyD%ctQ> z|K`i^%}+fC$G>%g=2(H8`ku8c#p+tP^L&`gc`k>!6C%8s*vK$vL8o?KH&_%+#4`hK z@8|km223a={jO+Ra~@?kb(hL^gs}1YchlZgT0;klAXdLqi{;)nJG5yO9N-N!$vXeq8F>AfSK-XdCn#huYDgwFPZEQ$ZT}9+K{B;k$?v^0pM$=a5|&(eInhv3jdLt#qOdQ4C_%6(zfsJlFVS zNd)jUjWNAB(~34ANspb8Bx$>6x(8sSL7rbu*F5)8XeuX+h!g6HKh-=G-%um5^MRf4 z zl{zsLCBBA?#+}6#3NcHWmse7BtJRbxotO`ZW)xjE?*OF^hhiiyPoJzyVmMM#uqrVi zLxB-^_b1;854`UXX*6P_tJM@*Grd2`(la)gCbnwywHp zSJ6?RCBRI)>MgAaCe^H&d#hn-!86#uBSWjw%xY_wjbCTK6k>{#8~wGa!$;;qPA{`5^`c9L^R); z-o81!JD#*9&dh&|0OiRK1^ufir0?Cysafnu|KuAF#kvEd1>7Y$c6*@+f({6 z4853$5@A3=*yv}gB1%wMswO1qn@zw5-Q`t}oTNos-zNbpy9iMy(KJnlEAUyct2gw8rucK+z&5O6-^h;;q{Hx~!qmUAt zb-OBBO{$QS2PTb245iB&gOvPhC?4W?tdMB|np!R0AtId#e_}qmF=?7#%UR32VgsJ3 z3SX>K9;3@dZz3LeuByZkVS=^CKl&&<^!^78^Px>6I8qKer{mx7*idvdCzGq8l%?E> zCMIfl;(JKoA>)CG0nzMg_d|OEfi|58lj!Gx1jX^^Pr#Rh#^cMs@fA3G_$)DDk~cv^ zf;zmNT-7TMX6>b@$C06f)n3*9S(o#CAf6_Jj~7BB(2D{ecNHnz8$bN{7nSL1T%Lt@x;md zaKGLP&(B}G1*75qFqCSV3#Y~)Fz53Ac3SI^ z=0OA@nVDf91J2nb)Oo^DGBs(gbZ!T_o_y2<##}VTk^mEtbAhhUWAwf}In>u~_It9= zr-yv*3$ZBaneHkF-&i4`59SKl_2>ceueoyaJVi7!`%SNR0|3TxC}6nt9(d0oc>D(*Cqjvw&F`!U;lS_5L}8uCa10M+ z#sf{NTa^TI-;W7~k8Eynd^_f=yP^Ae^r(ghF{d*sYTd!Sa35|j&NsA&NYU#dOz4{E# z#E9PiOvL1Y@qVoB3C(ahm*L+qVv2Ao$K;^sVY4Qs_SwkD@R-wjf*QX;0D9u;V`^I? zSGJ{Zh?G4OXM(d-=PYsP!k)ZMi3?9Y|2iD~=8>TJJPF%^CS>!D8JOO-8D@5Gg>8Fx z1Wn*b*t>UD z%v4kYN0oC{bF9`W){%31cqoz+G7>b5vIEe9v(#a{Tm>yC-Q#4V939KYe5BpvFGlms zfg-v9Wf*X5iyi2Rv0)ibYENW3j9h)3IL^gL$`y1#4>)ps>ojb?e-DK_KKGqt$tR=; zte~J$VN3&qE+Y!i{D@PCwWk@A129ZCsCw0UmSLf!|mc12QvnaHcb~_Dir)-tw}ZO;c{NHb*b6x7_^v zeNc5Qzf)f4I?CS$3CUl1c!PZ=5iI6Va{!rX$dN_7yyd|%75Ttrioh4+1&!c^Fw4%U zI-IUIeJqF@SIHqavuiW__}}?4_{iV*NRV1ih{*uvpSbwiC3x-2ufhC{g{YNapNOs+ zg%Ax859AcWlfrlov7>p6drwiU$j@UXhSg1u*WHw`5OV~GmZR&le+RJ16$s%`lgRP> z(*s_JHr9Al$$=F6H8k2Ge~)*3;vFy=m;#L6gNzU)ri!Y-gnxeEnLnyTM3IdH(?@t)1Tg zWnHT8x^Aai;D4RjzwxRULNzY72Q2}1VC$Cm^?q_-7^Dn$dHXuGfQptj#mS)UGrX_N z?_!wTx4i$=`bMfV{|5WrKzw#Xzn;s|g!%cx1*?Qj& z*z?GJFurLrnj{Xfuh=SFK5-s~0uzE76pStx`G91)gm@5he}p|YIyFw3$i=X4*c6Kg z?$l}sqv5iUs(xr7xXEM+?@u7|lH#6L7TMW&^}`NuARO}3}mWa7C6sl znnOM>)I54a*yp)6LO-n;(l`Y83<85`YDL=cdb(Ae3ij1C^+a)QHkW&G{+Ht%w2gl6 zwcX!fKHkEwQcND1JcI8^xDj& zq@(;T_4Gh@Ja+=lzH*jqv?bha%C(^--cjlwC7R^(;G*vXX$w%(kotrS21d8K zO^nA{WIQkd+N#oea0c_P=SZ3&F^o}kKGC{+?!R5Lw z^P=~wWu){2nYmK^=Q@k&*0fk26cdKI+APg3a7MW<&``frTi1leo~dcWk|7(3#Mhpezd0f54}2L8OBOMXsoih6Nr&16lb zC?P--K$rXftvvs|ABg$5*JVQ!^7fQr=zd{gVd1qwpI;XPGBG{<(*d+T2^-}tFM~RN z@$W$xl2kL4$7(Nx(d$~jd!^Qe54GAmB}GvXANH1OWj<8xnXokNXulfWhw>9tf9-WX zP;>PW;bRQ{CqD56h1lKyj=ew{5daEzd+X9IIQHyuxO(y`F$~cGGDW#!%?C3e=>X=i zvz?)iIGJ}y>jBB!Dn+(hUXetC6uNh{E74uLiSbB6X(J$uL-AIo&2Zp!U!q9_5+R+$ z5OIzXBofdZWc$JG@bo9&1>>71Vx%iHW#~fk-G~edWkpU*M<;1bL@Es2WV9z=Swd;= zEWGfCFTj=4SA%4D8s7Pdcf$4q+mekq&^)4V#~=T*&%oDz>lwIu=4#C9>}&u5AxwB! z0CL@_^);ZNsl>D{y^2%h2Y}sAjwhVzwbYB#_xU|g@W*hhrI(6e%ruF!L}aaB&BTcA zzXo+zdjcA+sCzvbGv2F~Fg5ezY@aP*SD#yb!Qw@bPx+H>Bnfrx`377UD{fqO1`p|v z_ID`p7mrPlg@QY8D?~FZ4C#C1%P+z6zyEa-CT!ldm9&Xl_G}9pza6ma&>qSdj+xg{ zi-HldM#jcsL_N@qSYSfJzC@>Y?B3GNMcLQvZvko!i0Dt9bDATABn$zK?<#V7CzCDD z<54i`EF(tF{FQoEt$*AS-MHpt&Kb?HC^*GXCq@3^?quyPue*%dtFf!O<&(l|B$KBI zyhaR(Vd--8t!~7lsEOL~z<%;kyLjY840541wFA4pJPCOk^B!cs8JQ?&ca>fjW@-#0 zul`loL*S|b0pzxHJ5ZLEJy!Our3`%jt7qHZ>Bp?BmoX~e+h9cA+7fp2vx^J!&kXwf z`WTSOO@BA6-D9v(-tyA4Nh--CYfCSQ1#f*1JJ_J#QErrx4~KMR2+^QcyWB z0GfEI7TJ)!uIGghT9%T5J|N{U_or+V-y546gLnSKJA&rpCt&mL&2$}!e`G$cp1KOh zgXZJLxf?OsipsT-2?h>F8BY>6wc@b4L&@(0C4s2vK=URf^w(JHfuVKR*0M$=5nS2a zs@KdgF@SB82-F;e9C3>s-6IncnWB-=;XoK|g(rXTNs2-hqiiMSgD4wE!~`)>Lqj<~ ziDEut`|%%?P$DC7t08V}9 zbTst>CmIdvh2>#-9H|M&ZpQi6k^T-VdjRLA(2HpfmCBdxcLzod+is)#}owHzA zC)AmE=Q*i}A+9qYWy$7L&|{np&(|J`>ya4^*SGB^#z;4oCC&A=_3~NYocuITz7v|0 zi6Srz2NQn02J#7wC}&;8nvJGD3vmP#o_A?(5srT2a9~8f23O8pjtM;{#$bBuCfI)8 zPS|l^7vU28!_d=1BSSe$wg7-96GtSV(R>JTM&*=%A!$3n<-OV{rFWT;w*;-ii*2X{ z!4A}A66lT=gk@r&2$;f8f!XyjEV;uzdK%sN|~j` zIx!g|;gB^T^HqEuP2{#eurJ`-Rk(WMTofJ|CPS|y_sLF7782r}EDFD?l{JqLsbp9J!prtf18zn8ZkXjcuc>y99-!ySTV8_o+c&SSJHA z{rAH9?S_r=wwHc{Pm^%3UhjnfytRXYreYAdu1_A%L{<+*4Q zm7Kt%jdCR&h<@FUoVeNSs*}vEhQc9Cz8)A>_cn*sU5yOLS~q3>UK4XG(x{|A8WT$m zoij`u6BtG!8W%v40`g~MfO4)5O!SAE4;(L=MWJS*o5EW1!5XER9SSMhk>rR@Of9@# zi}26wg*$W7|!gYUXOCKhx+&gK}h_>2GQi}0=A|2COrmCIU6 zmJK*S$$a=c?q0?9xuu8+saro#f@RaT5NR?fsju7ufI?bozALA20I2!CBudHk9VjHG z0YGbIxSx&tzXwH>om=CR(D-D*z%*@Xr~0ChMJwT>3Gv$Om40KkVW9)txBmd8;YFwV z2C~&^J@Am{8Z(1mI(80T{nCqY?#LPm9*;E!8xh?nYhTHRt zl&p{^K5i||w7Z5Rg3hdc+Kd)3z+2{|N2y@~$9-{9y=h(M7+T@k>1PeTa_W1-djp>T zy|g5QG6lV8leX(x^WxUo-bT5L;$U-NKz?=b$JbGI?Aq&Lqr7cJYcBdd=bRhpywu2{ ziE%O70q8H`7^rVmwhz{i`-b`~`BeV4*URtT^vPbgZGd7i@~ru$gDCeLvYAVKXL9QV z{FQ(7GjQkw2Z=yO4L}h2heK)^PQQ2-&L6%2D~q>dPLGt)T|*x?8?0AfBhltTW}y`gAM zg%Ve^kAC6@9*12I?j(~8%t9X9jLek-Cm}^$m8GTJ7WF55K`HKq*Du16uN;BJxg}z3 zb{*OUk9_12nBG1`_23w9Ub+R}{Pc71`Ct12X?<$YAjE*IV14A?4BuEQC;$N=Qrlo# zNy}{?ycwTBU_lTV;=_9(I=MgjH)}l_ITAHGCgKOe0Q8I{zMR<$W?wgqReJAATB+WC z#9>a_toH?AoySn`qELfZ?KGN4fijCJ#-eFChA*M@1la7{H~<*$;2-_taW6^JJnFHJ1z5=K|q;9+nptqp$!?HK8kl19l#c zj$%%Td^QnHlt1+%68~MnG2N6)2uoLK6LO!tFvuLaif~?HhFnU-h`tu6=|O=5`oiEJ ze#ib`*7DmyGjx0DcEG92F}Kn39nu&HE+l3l;zZiNoLH6npVmzF6f;Sc%FLd^o3qay zCV3nVS|&_XIJ0jjg*X1L5`?V34HRiPhJu^GGZ;%CHxOZIkSJ4_) zF#Fvestur-VHoncXZuo^N!`Qqzit1QW?64Vc{|$JD5m%o*R5_`94sOFz#5R59s8aR zG}14?MtMt0Kj$ngno;1w3-&7!r?$S!wE_vseP9!j8co0t2nJQM zx!Qxx1ZR3z&5Is~IgoU7@?SwnD5}vVB6{ZoJK#tEZ$AQ$ee7W(&`}G4nu^==x8cch?sD`8Y7xr&tY?uyXG&$S<_&(VC*dDq^p>`Ev zQK<~)A`PwL{CY)v&&|%k(Pxjr>tBDJ2nuZP(9;KlR^<^fxk61+OeXkQ_}1@zn;4dI zY4lP$ea(!&PVV+QlFIGi%v`45nle@J#)N=_42n)V2c~nG*>JUXnOKP5^XAZSuXHb9 z9by|tC1Zfvb4{=xujJ=b=e;7GrSGaPqZMlCi!55dRp|Fb_G8NCP2Q|gO~c|ddMVKj z|9J&0W`+_jaB985*PrXvTh<2XE~(08dNnc1%mluFXJI+)nOESI&p!`W&&|S(OV@~a zpV~5IiD_B8DriAQg8-pJL^~w>!{K?O2Bb&?h+|5@CuDt7P8gnVGj@JoPoPV%giIpbV8xs6tOBr52R0?Ti-RfTENsWLm(HZT?NKYjhh4m_*%9}m^n;KE~?*(JfOQ?FU+Sn+Am-R%#8khl@oSOPjSjeA+jq;Y1e#C#tD70;? zUK{RSsvietTpH16x-R(1L8crbf9H41A>rg8Cfr@|p$F~b=KdJUP7`e)b$HWQ!6+qy z2@~J_^xyxl;NkCkhz@m6&d(KPHb3?J8A>h~lkas!63K@eQ#g3OvW9>N{Gpf|gQG%W z*iF=W;2#qB(Z3>^T9G8O>y1B&9;>FX_;6431O3Ap#<5GtC~ypZND2R<<9ijEB9unr zU(k3U1A;c^Gkazz-v@s0CWm@zhi$l%>6TopGQ&f?3qzPabp@XPgBR!%=LPG!|6K>* zkq-AkV;8Fwnu+PM+ zHbZc=x-^V~gF12I>>hG8Mj>Cb42vt;Qxu3V9`0GZ?V#>ht#B&gj4oQ6%*_>qV$%*gk8?CQa_ zpcS}u^ctzSh{M?x|&GlY0H9=_(*~mNyO^q!|@s?XLzbR^krtx4j2oJ$b};(i5WDo?9~1T zEfBCHt}QyRce$@>0FnuJnLRcCauy~$&;o{K>qQIA_snyHp8pN^e9QH=QZf{LjenQ- zHW-fYZV3vI7nc_2UKr%r!5NUrO+Opf_2aNnz9-8d%!S^(dgHb_bHM<_LBD?0ek+1Z zAO0;^Pl)G+gIkCOXemw~kg7*MBf)GoQ_7WCf}16Ccv$a!Vh{Z6|LbSrzNhxlbI26n z;f4MPM?U`=Ts}5S2>_!Va?wdT$RTMsD$*_>p^yF!_=(prgzoAR=JY@()0j{Y&93Oc z^~u*`)n~%Cj11%ToUn;Oo-mPmcAVrEsXFZRo{|EN4pE)~Bv^>?z`yZfy1sSaR(Rwi z4^wm=VuDtq--i$w0LG469L^yg%(pJzf|vgDci^?Jz7`#0!!z6O-wyBkk#~kUy^ok5 z9N(p5m*7AC^6yYK^99OhkQu>pi2*F($b_3FMm51%mR3hhH&)}d!&dhL6IJ2!oBg_emc|B6Sv>9NyPbdIbxH(TI zR!6?_9hllS1Dp45BjEz>(M~5bBV&`}(X1)df%_f*DmFVxk?nx}zW_uq5w%JnI3$8j z8i9+9hFtMZoZ=mTFo{_+m3FdO|NIR7LWUqQ0QNu$zbYgoK`m|StN5XF9*=IueLOop z;UrOocD<|+JE+Tq^Xjif?uDMLa*zx$LqmVNl~uxNI}YuK&AYe5#ly!b*{PO3WWj)l zuAtai0tHSZ0D(7VikeS0!7~Q(8lFoq0_C5ohez*1TqaH_M=8%s&4hEsyq0e17vo!_whYc7fb%< zuFMAsqd3ROWHv6pc=ysKq zP7y+S4x+?Ae`lYLDlrC~JbJ{~$FIZ9B6#)in;3j0a-hKFH%Y77p&`yfngnxM8( zk}6?@f!m3uTvak7;{zSXaOsUpluYnS(0XuWt!?|aQxvV4-81z5>hdbQ{>)MM+`s%B z<^LcJkF1DOQtwQFWvRF`44Ban2)$8fHn{Kc0Y%8W_JduXH82!4Kt9tGy$^BqfH;x+ z-Vd9;>VBww#kS);nG$_pmT znecat?8QBD57WmY?jMN zK6O39S~0`Jb(Pz{wuzdBI_0M9x3k)!PW7Tw`q4UrG8gM*AjZeINy5THfoFVjga#xuR$dV3t8)d9l=Ky z0#WqZS6_$MzxGCu)GksVVtu>esULg-rnXK|UCVQ~;hEog7XILW{lh>+T}sh&)DmVP zqkPJ^i-~BXN!!Q*b5$Qu0MMi%$OJ?t0Sv7O*>orV@-0WbH@l^Fpc*QoWnbz^0ZrJX zcWOk4CfY6DNGc1+TgpijszIq%h%Kl3oAxc!$hmLwP_Z{N^JR&H9=NCJ+I4LT~v;07b?YD}_*0Y)*3H_XgAG9hzt`Q$~|^U!{n-Z?}2 z=+5%($cO~u88xpcP(UpwI4U4oY7=eIi>YX3um)sQ+V0D50D<48z&jh|9u@~PgGRzyhY!f~KZA{O&r81z z*Ty82zsrr)Z^Ks-nQHx;P}i&Lp?m2ci`*@-(17~{IeKpqZ<8~dH?O%mLnCcCFfTaU zeFj`*d(N^?0pH zj^>@15OBC78V@8y(98-WP$6Sfu{0DN(33McI^FMmWDnJWk-5?A$>8CD1HtH4G9V`kV%QSpp%&q9Al+Ih!3&zd8NQQJ;!qy zUjiZM0SW;UsJV7Bui_Ju@GuKf#1sqp4+{Mq83W(#f`BalrHS)8A*;*2Sx$SQ8`dYo zEU2nnT40|de@$)Q0^1MW2NzyFMvPy%#~41Kw*PsablVQ(>?#EV()ALCp};fhOR@cR zX@l+hj|_e#9&S4S+e#Gpfvjg+;W`Jk;^@_$u2Ww#bLTe9u-<}#49GtiWJ#)qPsj|0 zUeXfIVI9Snhq|h#0gSwo+FKGPYcy;?>4Kt6d&6|O(6l(+fs&%vdsXd!Ch)leXDAXd zeb6+B12sq{##JwbnAVH}SRV>zSQvh?-ww}3xkGc^x}Qvt8rwnU!u~0!r4fxT&cRv?&Jlxsc+nPf!a^_e z&2w+pj&FJHjq{n2hPpAa2FTMfS&Rk1=87j(4YCCEkAQJnX6j3TMAf7Usug0W;N%PTNjbV0CqDO){9a>ir zWSStam>7U$`qas0P-HVb%;prG>|h?4jge$-h5doW)w_S?!p(xtJp(1B}rVBcW^$tl7cz!3fU!3^V?$q?x*!xr~9^&t}{V2It4NXefKQ|i4|0H)7d^-RO00s?`DV0SYb{3Y!*JT8LE~}aTZiGy z%O~LYbBAGRZYk{5VHn#q8JLg>O29WZ5gpelHwJ~|9+qT=2H(0QZ~>q1F`klTucY4^ z#*kwXdR^u=e&KB9=(C15qwiW|h*$u?Oh?x%MkH0}y>;2DlJA>bNNd`Or+XSZT(Khsdu1+Tn{w}oAO&jISmtp9BVPRq6wSLbH#DGjp zPyciP$4|mWxo4&1&~0ho2>mum8**3|zxUL+YoAw#aO3M57dKU+>rO<2w~d$+ z*c&Wss0669Fq%kM+kfp^{~(Vmd7U%a&pZ+z_-F&}iusW|ii`7kDD z@8K$%F%0JryVyr!Jjl^}m7Ey6oY#Ysd98NkaAaYw?|LB?WlkL=-;QK@B~I?y&x05s zaw6|UrUSE>qXYaDf3Bofy3aoy?#3*b}g2&kQwy%*W?`?ep-}fA>{bzO}@&mk(5@4@R{xOfQ1=BjAJE zK!sYBqGW115hFq`<=^%5-w0C6%3b50^@@?ngosO(>Hh0iwA9~Jo5oq+M-3VTZp(2+ z`M!Fx;i{&sGr{C+YhXudwIN!%Z3%0|;6R<3$*uD>ufCrP z*lp}jRmprw|A3ifXZ9_q-?ENrt$Z4Tgje@ooZ-p$!$nO<^i>%W4LRW^jL1iVn>7%V zv~FGuGPmj$@aC>4Y`1QBFHhmmjtrRWr5&lTnfBZ^8fHFMd1|5o^^|LG^;!4DpycGg()ab+Hk zed7dNIyxJra$P2(ayyRwJ;>2BhO}iO9T|%|ius`29&0`&739A}S9p+X<$ChiMQTW+){v+!HiN@A||$!vQ@>^`ptvr~a2u!;7DJ36|!U&2kHq z1?7S2<)blTR144 zON2uvV4QPijxynIUdlK@GZ3yI_{$MBOoC=Ubf0bSphgS{vr-@qEhTnPXK;8LwUn0U zL{BMec`UW19+dC)b|&ndWfV>2xeXo*k6M9P9gb8r2L5Vu0QEK-N^L!yK3ifv$ZVh% z*lV_9v12HgBD}zz7w(j2z$G-LgWoTy{4QfozEVKo@ ze5KfV-k#sw2Mb+wnBY0(?}7ulRfR(}T58z#4ZZDMMEeAKid|zrYi$j{l(_ZmiH5p1 zG#+nh3B10$Fi0e0bF{rOjX%6kiZz<1^#%13&)*@QxpQB06r~iAlR| zFWyef$7S->0I!*k_$iLq$(Ld%nK>~5Pl*MWQewfR^@vWPk+RH*1>-@k6KP3wFy|!C z22cib7yUb{6sD3L-H`zr8x}Jw4vS0k(N&J@X)!!Fb2v@SOu|DSdVuV~@jm4u@v$H5 z#Ljby+KiV!`!bw)z43LJz`imz63-!;Oc7lNLzG&1*1gkwqgrV$Hq0GUw8ud6!c zw}VVK^LGo!EoKvmqA^|4p7#Yo&}=^X}}#hByRo%hS6~8dVW_E zX7%TJess&uOlF=t>60(!h7pwXD~ITX2K-mjfzFID!&fF8N{WY0tQ5i@~=ITGv`j(2?XbYMDWV@?YefQ0>tW<@swGjj6VufdIrS4sOY z8ki7bM5Y2Gg25{SoN1%S*sk)vbt&N?R*+R9q=QWaq`8UrBNsoG=2}W(Qn$l6_#$y!Ik6Z41VKw ztkzG#q_pqsg8Jq@77JW!N7pSyF)|IHZ0l(Fy&i&H7*F-PS84OdXmfO5k55Uf5DzTQ z-e5@XVF^zU)CJ2Nd_e{DVYP=f)XRtGRZdjvaL^exif)d;h|_;eCJUy+KMi zN+EHPAVrPE=@-w!*_Xqivf33*1^0;&El0ZQPHKHo|KhMap{# zA;||8GYOoPSjG%F4u5ns&yqlwV)vuD*D$s{mYmD64{45d6fK!o9!oMs@GfRdMyK=5 zJ7;K+81)L)l8?hsY>(IN`uXed+Sgu(3&$=A6H}$oy$9cQ01mz95HTWm!uXGT@O^iTsKyrU_-dt*GO(gRB zZOljRZEcMmXqw!NHEVJ-Ok`%Gd`=cxFSz`U3_-r?7)e84s;wxl`0kuqCxI=;=nKsB zLo<9k*G8<`XG-1#f1&_j_S6L!o1TFEPaLAX%svmukl^RlvzH@2a=!Nd!nHZdF>)UGSzI#vP&^}JaJ=UttXDj~q>;fgwrQH?V)ob>SiC+5W~(*q zf4%4#a=n3jQ=EFA|H=bYe!1c$)g)M4ny)ze=fxoxa-zJS1 zgmKaM&>WD2D=Q(~`C3L2WzG6DjwgiHMA-9msf~`4e<1k!A{`(}f&2-z-BmnLxjf z-4E>{Mv5Hl*W&dmf(gCazG-#rI_d9?aL`tqJ!~{1thET5Xa`x5=IhXK6q{d)naD8d z3=v;SSq*vV6j(!pM3I>qClp-K-%RM2rX^lUR_z{kYX9>anV2s&uazzeHREf{hxEB1 zwjjZRGyBySpL#-_j4{`s=CfEQnHmQLyf}q2oFVMEWs62qjap&~w$$(_WX(*e;VH+* zc+=I+c;{*mcPwJo^^@mAJ;&)c;suPFH90d46G4-L0ua|p8WERLE_T73f5l43$Vz6> z6?5%)o;lA^6?22cOzv?{BW{YmAYH>#WQG_2adCjq1RME{n7c%+Q_(+t-ms=-^WGhV zUoRg!4QsboTK9j}?g_*-w!?cVKdbhV7a&Nm;#4ir%q-|RDd5ihF7Pdw9;T{%vsFbu z2BY7zZ@x6w_hzg-Hp;rn*vN3_SC>QS^-y01WNK>cLmLsW-hAoDNZie)7-X}w**uoS z*xj~if7j7nK1;ovnwGe;uLxn~^!pC7_QVUq)qmdCnGVrXfHk#(;_%0B2j6=?{M6t3 zahTjPMH&mLF8p0Ob{UR;;{@DZyc3xPeHf)fkdkE~agM$g$OH@ziTM`$e2Cdq3K_{7 z31U9F0Cn^pPXgD;rc*JSd5i{Q%)N#>qH!5YZDTj1e@SL^y50Oo?ThaTh*{UxeOuw7 z_dh@k6x~~e#O%bpCD<*Ti&HP13Yw2Mh`FM3Jo%xF1?J=74?GC_0~3SH%KX)N`24^6 z0(|*5z6!S&ZVO?Y32VrNmQx3xTi;>e?93_P(qHVl>v!Vs_3pFcy0_AE%}nyio(YQ7 zqEnA4;=<|fntl}0QQj{NL=ty__moJGArmap2k5o0UCZ@0Lc(PNDZQ`nf$FX=m=9OG zR=zJ!%70AYH?RcqY}5YNj7x1yyjF2wd0hoa^L4eLwLX^p&DRrgE}&s?r=f4b8NrPK ziyln4tBomEh|cDhj-7+;_wR-+d$*H05fbaeqoZV6b?yA+uveGkJ7TWs1Q$mb?h>;y zd-4KY4qB0Aa#)|D#D)|(YkHjOTf4IoL!>9%p&i%B7u~BB@Q?@2{a5qq1rE|IR>|M3 zO89ALn5w`WCoxz?H-=3I#<$UoloZXCTA^}(E9RUxqSN!}(rTvt7jbhXFh8+nGt2}g zX5&w~l_#Y?Q%EAW#1N;^N}Pp3gv^GCno^bXbs|g^lv2 zN|X6jdH-Gkej6faLl))6TW>!+D55D}$>&KzaF9NT;1wbh7?su#vLL#q{y5h>r%IgT z(m~;^%n+m_sm$z|p@>(zAKFFIGt^ojF@0-x9$x#>(ID|#gse#bIZ#L=p?p3tyEpkp z1O&el7!HbdwX_l$nzb&OGDYo&&&dV5-Vm0K=Mtv^H5e(1ODCCF#mvBo;YsFJl+$B4 zW-g~L`mAAzc}1e1NmrR8fVAV}P{r`P$b4Y9Tq@nT9-Pb&zoQoC@Rtq;2IMr2iw`dH zc?o@aO30 z_1yzPSXsi{4#E{}SC#Ewo}2uhNPg`N$oR!WmTNdOAHLZC&in`Ix}9Iy3w+hJ;~%-M zh~|EHv*wFq08ry;MWE4(9-xh}aT#Ycce0@CU3_*aXfbYHz6N_9Jph}wZ;1qY_-|x< zjD!hSPFur51?^njGu75qvG!y-6_HFr2?;Tkm!@Z)xHVQKOL*H0hoO_|y zGkqD5$;nMW8`k9Guu<;1G?`!Z+oWxE4BA#(DK~VR^kY3m;Zb!(lSHb2kk6MaP0=cO zr{1@!dSD_)5mhcz2?epxc3`JoxJa0wxzLaQ?H`55KK^KQxgp%i6nxI>-7HllAya%lHCmk2w!6T)WVugWlqJ|hR8J^;HP+(p-YqC7aa z2-byj@{Qkl7OtlJCp@$G%tVlQKJ|l7!rsUC((|*YufV5%`P1<2KYSrMrh{Pv0rUY5 zhVYC;Wz#X-d_cS6T7(PGVq!&*Ln8X??=_Yh@dpM5>%@1iRQ9{i#4t3C%4K*jZb|<$ zQ<1NMkkh$QtzEIta-9tl!Nl;|ot$PTRc+oX=EO{@{MPl=@tkIWnpYHh;G{fXnYjeH zra#N?aY(xDdfh^YIwQ|WpI)BfDeDJAUafy-fmA;fA(g5G5yp71?fKlMVWNt2C2Ks2 z{-rt*2VFmZ1+JaB3=h2j2@16fi7}ksIunF03$TEhz0*8&*_qpE0@fK=LkIS2=PtqV zZ@vm6f%!mz4Emc)ZrKDgySI_w2;#KvYSdy7ZJhZG15-X-6ke9Vw3G4`CQYsMn`x^$rb}X9Uq119a|`r z@$B)l;B=j!7E%q{!YuUN|22%F@s!g73twklRGWDn0YI&X0wHKcO$}ubI%W`hrvH6d z7Y)^`FYA4Gqx3CdI{nGTh50}3^-y01WMXpq7sI+d1{>wBOPhqE-!pCZ`F@^sSP<^YKBZ z3!UgRzvJKzIP~=WRBt4BVj@MJz6-Bkgu`Dx0*lud6HyQ;8*+LN%nLFfI}YujXV1KR z7C!y|{7>-4H;zJX4N5vV!+}Tvd&70(b+F8Y(1@T8_SA;0!JDLkZH1+1Qg?n`oy=a~ zlL^Ig-!&1Tnt*7AQ$;oy;;ad-U5(L^{j7P4f*?@?1tZ>8dnyu~zMPoU8HHPfYVq>v zTI#LJ{jc81pJ3*>T)$jpiMu=$FBdbV9p=HTgwu&672q1Fs%vIl^n8@WU{m2eBpNWr zac0w~F#;&U5wd1N6&*21uYD$#A>o18#p@TY0_Mlq^XUELJdH0PUcs=tw`Q*gjmC0b zd(9vvlPWgvRE<(wvnS6{P7!1}W_E2QyfVFW3yg1?q6m4n7naia3!j+UT6;6*C>2S5 zC5(qs{v%4fij2TeC*4ocut?yO@u62^kfF&9z31|HL~EbmhVf|h5lNpo9MMucnA|o) zNgK~Te;8I#1Edj&h7ZWFps(fg)9(MgFCoE?-9sAp=wcv6Z;fKh=??H5_yT|GomQ*6 zrSzgR+Dxc? zXJfX#)AajpHge-3U(gSHO%4)8yNIO56}Iu<6r!&UOc1RgTTQ%xviVL#eQYmE|0!;J zIHaEV#N+U>pa1@F*p5f1bLWVNKl9RA`V*}Mznil7GLt}#-=V$)pR3fK)e2D#hdgyU%6@&P)F( zZ%ERpj82Tg6CZm#NI}Qc!5BX=QR30WyQ2-Iz7!4W>B<8Q5pCuC_v)-O-%Q%&C zWTds?d0LuZ2u#Q<`H4(y-9+YCq!|brk@1FW2T+k08^*0*u^02v%fdqoKAB;r ztnU*T_#c7^6wYZUD&X(D_#=lAFuSzqj- z*uq29h9u1c+wP)y6^FIus8?5PY@bHHp zhOK+I*472h(O&=hQ8@j|X&P5#YSLke3Cy-k!NVVV2=+X@huS^$hf+B*M*m4RF)X0YhMjHxAr_%(yB1W7dNF3kiHl4*4n#h)Sdk_?$>vOKYZ}k23 z9Q0P3Jz1?VNgP}g1zUU!qKmamuXs2{dJ zTmPn7gt7 zC%$=-oTs%3lQ170C%HC|A;3)FsEt5o1BvyOrI_yn83R7-$aQ2*`CkBt?}bRQ5@Qgx z6Y)3sc_a-*jCY?Td*L23Hft%;3yz2TDtSZz#L-lb2soc{#a>}muKz55{Sdt@&iv~PUl4fuoq^^f7w@k^Q57UC!`m1Pt_`l}1Y z*l#kAas@>A{3R2YnE(=ozyY+IS$mlG!BtAjC|AAp49}BVNeD*?7XjUArDKF37N?A1h(V6~LGoO~nMK2VLq5_rHDyIDkHQTcM2F6geNsunh~r6GqpR#*%VtQohxeXGDnu$=g5FV5*UPJCWMP4BLYcd zOs}y9MBt<1M)E{gRlW~ddoBODD3p>YU-(ZaGa@5_;XsU{=&|a#}QX0`Jg)r|xIuEod zl}3d5IY!`~34&Y;fXJknz{{<8)j#Qn91LKI6Q_}_J;9LZ{@`DEKYahsf0X77CHp8f z!_OmMd<|xgUpDdMU7Xz1_bTT37#k)BOZ5Lh&B@B`p!rx_r9(VMV2MltX(ZOb9%$T? zPL+uU{8mM+0*Baj$>eG{IhnhpqL#=m-K6nY_1O+PO(|yq){G6o2i0E%<{^gb-LiWN zJpKcZkqMSAXhQa#&%OeePtH=-_qA?pm!=}j-}v-6Jo=G`;l3yKQ@h8%bsYZ9-~A1^ zcK&*XX%O0=8HStr-rn~#L!%DvicJ?4L0?L-jRet^b=LPM05lwqposI#>^lcFqSZ1V zX@eBZjs{)fq4{pH!3<%p$;YCv`IW565Q5lQva=)x3|@d{{9wtMOc3e!OZ;MpM$@;J zYc6YDYQ;>J1G}m87#Ubxz3b*(iy!pZau3a{$z6d7GY$(c-^S*sDK`|`cxCIxFo`HQ&9)hW@o9VsLpsg4VMD)!|S19UT?2i|sRN$Kw%G(uQo=vz-`|<)CpP0ZwA%K$gnFkdiVeSV^!>A;xqOr#RSi=m-WOs7=42|*J%Wnim z?zUR1lF85bq(A`jpZw-&XxRS_cpbc9I9%EfUO(x~tU`@0Xn{R*E#bdjCQjw|dL8Ze zpcrSV4QXR)biKW3o^4XH9XxdoihHHDi*S%i$ znyu~2HAP5)v$UhdtGT^e{qaF28kw0XtIEWmMvxJya?QTA&RFk#@7xa`|C=9&>Fv{j zaaiLCfU~chgVQgbj>0!zIJi4!d@y3NznEz7&QkRGpd^D7`Z4)pq(hWVyTts;mK@qsE|E;6#gWpysi;};aI7S6$WRL1i%iFZ?|Xpe zK^M&N@%l4I;p&;IF>lFQj3k5AqO&^2_docq`(f{+dugsvOY-S|@_VE;a%QQWrLPKF zQcGd$l4Vzrg|0ZOEn%G*(j1+vJW!>cqHtTzUQ`|DL(e<_O+}a-A>wuWY5>06|Cwlz zN1b9ie3qz#-m5hNmix^FO8&GHs9>;Z9H~RXL_zLvUSp@`rdhjGGJttjd~IFyev3=& zoBQR}cgXWpV^|Dg%JTv>c*qFKYLH8!FTdl8zHk$kp($Xq98Upb`Q3!E62X`m`n+D= zFh5RSbFQuK_EPS%`71YJ`PL#l@czfiWD12YV?jfKCaH5*Zb)=J;;p*{{3!u}T_5=x z9}DkYKX)0HZZ1%yC}eW*=E%f2X+)5g$1uTNjoZwbVAoz9KtYbfxUQ2T1`el$vYxac zgfdfTUJwBRWQNBuHmOb32CYh!Aftpqg?H(4>c{BR1kK^~GZ*3d*-Lp3=LJjEDAG>&E<8sBYc zN7wD#y&TDZd8J<{-kuD|MhM=!FN3Q3^v3A-PMf(@zxK@g4V#LIlwOhrX~%rin5gNx zuOV50<~lQ8)0&S0(*cNf#n;+`g!rt)RmKzkLt^{m|INqX(EAQbz7Nzm+`N1f-uT+F zAbqZl~U3AdKh*_LukW8&Gqj@^qI0UX(8#^26N*`EccEt$> zQ*uH4(rLp122&G*GtUV05upB}rG)C;3n+x~eEwlRcxWo@0hPh4rq7}>E~qSO+oYTOZU zQlGuRWFB!Efch<~;9L#$VF9zRcQbVRRW+deasOyhI#4(>?|1OhOB?G`NE zm?x%VY;ugALE#8yQy-t1CfvFjw98S00m8WFxl$`c&AS-P1OF&9I_Cz7eT(=r`OPKV zne!rf(7c9b_?Q`q)1!!4tT)|rDzAl0LXdcF3=^)L-mw+#EG)vsBge@{Fiku_dHyRr zp;wPlNr`>rvtZ22zz)s(zW@>eoutL8BLFZ=H`wn^=BnsJkJ6-NSdWi~F6Hxjt@=5t zZ!jBgNx=zyadBbp3vCbdVL+ySF09Jauu;}s`T@KC-b>Xt2(h3)`759zQ=bzncp@jGZEM#hH7^a_~+N-`L<1*id8Q^Yz-?PBsPQ25>D zoEvySGMht=aMj8AJt&;yP&~AmQS!=>T_(jx(jn7Dsf|vuOQtZs9nzwVjE%&&{NbSA z{m||}T@oQFfB(0_ zyj_=7$ncZ8s1HRZ`1E%n?3&?0uFL)?>P!^F8f!aBm31xE-X-xxzo`WWB z4OeK)zluX%(K53Cye6p18IZl2i3l)z6HFhu-&z}?nY$*&Og~q&F6$%XF=I(>)flo2 z;~5@c-2?=;;fslpv8q;i{_L~P;xNsWXdsFYsLvAetQJr4rLyjZ5%Tu812C}H$lx$e zCUi%Q`pCj@>L>VWu*%wNAnnbgtj3Uh^UbU|czwjJ0_j@y{bmBOLR z^!q#pUr@wdwdV^=vmuUqt$YuNu9rb=WCcDia86n^44EO=V_ ztXygKXW@(cGzb&YM)x$CbhQ=oPweqr8D(owI%kl!H%fa6Gk2m_DBj)-$kg;NhAIxi zMp;)WZLj%S8%N%DeURT}>B)S^eW!002S4NkTh{>=8M@YIEMee;IAeV1pt<)BpoY@G zAa;ESMwm!Fl+XuSI}&MHxmXWp`eE$M4SF?H5zrF7e$mcO-JgxQ++Qr4bBii zcEo0Hr#@%mT80goVd1`NTG^Skcjm9y|3dT>bEDRT=b=7A-#!yAzXWqvZl-YJPM9vA5qzw>vJ8{+wqtr9p|In|g{x6hfVndQ&f)#EY3EiL z56lQ=SYKJb6Jf$>L5H*Zl^C2@cgICDR>Xstw3UV(P(Mc9!V)zhJ~AN**J=p%&Vy$B zun^(xV`yh%Q9%7knjXi=W3zB+Xl#@;J2-!s7sTKTfjR17hB*KzwT65?<<*uOd9nd& zbE6tEXRzHVxj(r{XYh7@)Il@jpfIoRPyY-;%d|b?n($^(?#3Ubsm={XT$Vf^=fz14)D8MPjPgHJWre zW!hDVc@%}$RWZxS&m%>;qMROVF2F;?KTc4b>f#7m(Pw3d7%u#q+%y4G+ooX8LwjI) z`zAS{)>gW3`a7p7bS`OiR$}r*A}~UoqvIIMeiJx5*7(IMMOdY zmp(JWwZqLhMOUbURzF`5zxF`3Ob?SqO~t9d{I7$O^w5kzy?*-*ich;fxsM_g@Oj>K zpP1OxL{5^8H}o#e4Om9gJn1acWtdaYM1THQlUa491t3%E zSOAonnY2!>KF>|XH4=$=Z}AfFddLV+nh*7LX=p$`F^S;i;}_t;4?Ic23k+>LHM0qB z1PMNd=amY(Y5Y7VGUaOTF>E`1CS+y-H5{m2!Ru&}g<2PW4*e}4Y{h5`Lky2*#b z7femW;R?zfB*9K40v;@DN~4Uz7GNQY2onIH;T++4W;pi(?@s2llAs@*_}gWF6!Zld z9vy+>&%6X{Xj)dxyQv$v4`A2H=`X(6uL{mU`wtaO2_CNRYv-Wx9s7QIqT&2Ey>S^x z*F(dUj7gg&L|<=<09GI+hb{>7L2a&Cr321rKsGxw`n;1@eDc4Q-(_J^8VOdePZ_b6`Fm z`S8QUyj(qd4Sx3@{Vtq&Pv>VrAE9Zv6EVPR%&=hQ0eTz| z2DTkQalkV1tPgXeWpMdwZS(NDs$OSisUTLlk6yjpqgdG1%mROEwjutjNpDC*K9fh@ ztdlc!)c1dG#Ymc^O- zqQEA#7en|)f4dIwT8ehNGekL1#y3sF^>dft>dEtYn#}oc_mdXdH11u)gm}CEc^(q( z6mu<5<8c~q_yVh_eVYEt?ctn-ajogCpT_#J_0uqIOiaIenrJ4Mm_@h;{o5!#%S>QE z{z2Q#Rt9AE?%fB&68tULDC;h5fLk&H`g%Xc!b)rVZ@i{9*4tmXS3|rYzjMFn>4M%U z5C+(Tv}8)`O`i^_f_QWK5HH)zhd3kVt^2mXpZlMGDoF9C$(ERGLBoG1zkM3cA3mR= zN@2BmZb_Svv zE}99r6g`XcdqfkllBo4AuL~V^!^v@-oaBe1vv_ipADKoHVCs-YfRMuc3(Ce_3y@u7MC( zhPZLg)UNlx6CyEx)=OH=)G4ReP7`fD2a_nrD8!gq*SrYUHzdIzsC{Gl;#()E75A%k za<$pa)8y@~o`vQSBUW9w5(FN$?V>8pR8Z_<~4<9E7d&U

^rlMp$0cjb+&xA7kI6UxNkxft&jSe zzem}g#;=3+PtG}wR5!{%Wn_Bt*O%w#Z#3O&WkANprk>u&0kZzm3+S7^_jv%;3Hn6M&(^Iy$TG zeRL1p_r!g$5*V)E`G0&0Ui{2UmYCzYc5)84B4;58oA!Y^TWfTe%dk@Tf)bw_0&x`0KIlng;&=tJe0+&+0av|yU6sjYk1MA z2k|>jsZvg-!2IARYLUh^Pr~IlPQl#eYq2Fg@5LI( z`41&NX%fgNxYTguav%ADIwPw;OFWp{kv{4>O+Zw86KXU~TWLD;o8IHSq%|4kxZ2w5 zMQb&^C%=1leWNs#%K1+%&d;B0y4T78&pp?REiqbU^ zn2$~4K~gwLW>=fGPs7yasc?u7$-3USa0AZ2b^+#ZE|6ps$FrJDz0hQBY-$X49^3(k z-gAh?_|<>+b@=jcd<9%VvXnF$(=Ck%zknkH6Y84OqpzoR73ov0dSAaNaFX{=GbBeC zGX4aa%u^A9e9>!Xh#hk<7wzh{^tIZY)ap?^bo!0_zScgeW@~MNj0hA_0+u0ZT$FUt zH&n;37l%2|O^v}6!pF;gso^)zFZg;l01Sg;nXFv-z&ee4%uq5Q zx`sKjOi%7b>~p-waF<3SbvXdr4{0wCq;jq{VlcB%&Z(`Yak*Xnhu#BMPG2I2^sW1L zka^U|*eF~*dpQyD09pX%lT?RcE$-a}uZbbh^lhBZDkU_Gz_EB^J_vno!&K0EU=%Ja zG16evERRkF92b}ne13UuK^PRRqvUm}lJ-MBk)i4O6mGmL_?-82=D{;#p&3t^OkSs| zO1Lkrp^AhReFSM{orArIh1-;F>Ea)=7XHhkpY<;B?6xk z4KBxogPiYUO%5#8Z%qtViAd1?9_f$ri413-51uD4YXPzr99f0!r%gR6Z0|6I*c~Ru zVPf+{)OrNw1M{As85J^9RSG4!6f_GeC#CV1DTmG z|J$#?7k>RqGOJVBV?vw)fRzL^^raYq^aC7dGTH-}-;lcw^;*E}9S}l=_Xi07VEUrB zle5HDxj=e738m>Z@EqeDT;3?7Le{?y3bF>c>O=_@*$PocJB>lAF-HXSq|Q)EUJ9WP@9oaMRY zp!qllH!sgcM|$*W34eH?<8x@fwRz_Z`F%_VM&|gpPr!frC%+Gifmz`tjKq*7V(jub zLs%F_9Gp35^&wV+ai{8a=1yxb5;DKz;x7260Wqu6{%RPMfdBJm~4;arpZBu@Io%lq-lai(kBNA<)&n=4TDF zQZRHf-wMX+O{%pugjxX`o~v?dG|c9?qHgPZVwg@)0-Ull#kd{lIRH}!x6B>OLY^i# za%OR2`_M8UeTqznVsMHx!ZK^kwB*8#IkrHb~0hYXS>9Ntfo-m6@|E+*|(GGT@H*= zcV$iHPgXo>qC3g-RRmed?+%h*2;&OgN)f%_KgC{isox1!k=e=kIwhKQm1;K#f`(8~ zGzk+kQ*idB*Tb1~#ca*ucmt@xqMcW#`yscz+H;C%9sqdaIj(Lop4Lt0hgBb(1$VI1 zRMH<4}4$)9|~z-iz^&egO1*MnBu{nT=8}u17AAb_Qf42gqHOwhhy7qcpwS z>)N1o*6%ex-?X`UZaASa9F!7Pyk1on;pxNPLywXUZXtp+-C%#z56RTT&WCrxPyCNR z9#r(Bu9 zOe5nl6Arh{lf+D5J<-PmD2D#!8rVKioudIPR)D2;>sVMiN$z9>Z&cQdd)QG^9u}z4itft>u2T%6tSuq z5?8Ae@^4KzX<}1<0%XEYhN$+wOT-^E@dQq_TzvP<``I_NXDUuaeOa9Dx56VrpfCXq zz43@V+e8p3triSYS3|vCz0f?*~1EnxM(o85Az_S8k97`TnOLA(JB1 zgv?#N8AJ0ztSh2_r?w$$33N@_#4V1s61>SOVQzmp;4I9cfllb7(}@X50YI2(7#$xc z2lb(mk??HF8^TMK&LhOl=+g&m76nyoD*50=$8^u#0}cxxnG5EX9F&NvN+xAuURI?s zCA{rY-lrin!wP~S9K&kRK%ac>>A{4UapO%3)Ds__IkbsaxDvAvQVIM zcD)RK=0}~?7V5-^7B|*0YcHIj8Hc+Sz;YXXtw{RR@n-w;UwY}43#63+*~kHMcjaz3 z3cuTr?kL%*GY6&YS zf>K6D|4s%Cz$gFqkHP*Y_Xa6g7uHe~mTPCP!|PvtouXHHmbf{N*&buH4~?=pQ(!>C z;e=VvG2h4Poo=!fPWe7OGY)y2X&7-F9hQKlx`$NA-71D_^r_FhCUh95nE0;BYRhEMdPL2~|%s!lwpF9*hJ_RJMnytzmk9W=Yb zjOP^TYjgxAHjTsHNB6?+hjzhI(3Jd#fA}Ba*td>@tU{eO0V7Z@)>Ol?)61{kb>_5H zkm2~MCd|N;I;qHTVGj#?7F#VxriU^kVoZ8OnhmwX+7f~JAv1o++C_D|+e28*fCJ6g zxy%fd56M<@P-9T|-IjG}D%{87VtteAx{7;x+)dY;ez)y^JDy}7$#_Jr1JoF|7M1 zcWONPt$yd&rK4wqhIJgaAKDYNrBj4MuAaNZJ)z!vW;_h?P;0IBVZ_I39H5Vkcx~bO zO$rH&4A0o6sR*~kfUG5L$XdX$LomI4D><(t&c404OrO-Jl%EOBY~4`G&ylpsv?d&y zx7$r&(0$f`FtV3EIzfz?fsc%ctJE2nB4N2s#Qjl#gt&W(d_qn>`%=KixATC#a(4E1 zKKK!V2L*0?*MT}a83s#uF7d7_Oy}eoZ}}L|Fbt;X{b9Acv7G{fr5I+RsIUCq*93~! zr!NkIzNLJp$QFu|Js$Kky(*eHEV8@Jr{n@bxYw{h?5wRdc)x2&sQ zolZg~<~}hIDQ5^De4x%hfa0*u-+e>Bd?B{<`h*ljsvgmeawh`ff7egE6W;sN?;$^q zm6Y>idHyyWd*)bB7%~vC3CYMR;CPqv8?}gZk8kCA`h8;6UXl^wU`-Z+L$Y@M$nIKauG?zjKVsv7Z zp2fa)QZ5ke>y1k{;qs~3aDXpR7-7=r+=+fM_zaqAZ4Fuv%#e=#{rseF648zgu9AZYN zJdB%V;I85D&At&;!+~$WAE0?5G;yS^*>)NZXhpn~&sc`4*Xl#9ou;;QozT*s=1O7U zXP9Ve#(7L4DJWFy?9{#Z95V<|Bi38{?FwjiOep3)xLVg;V>L{hTD+@pNuRl^F~AL5 zOlaF;yXi-fK)>+%N!Yx5JM4Mneu|2Pg!JOg`GjM;szTK`WUWVRUwtMxkAbDq{z~|e z<~+2ycw>%CvNr9QfzeG9(NCkBLZYvB$p-|V9|_FSmVLVjx8d_E%bCcp1h2*{>2a@C zlz&8$6ebvtxZbOwuo)f0Mlvfa4E7Po-;8iVMR>R=+rnRSiErLINUgQ*{ne+ z#K`+!F}rqBL1Sfk$`!lRIfEB#dpkq4XwpO|mT*!0?KAutIE12}{F`rAeVBuOrPuQw zdebu5zr+HzYiUEjw^80)2@J?DH(hUJKxSqR&UA*>ehD_pK&3y&-M%UM)z|jDR5P|c zQ(o)!Zh61gwlnuMB9eZTZ!};kfClCRphocV0nSKJAxhmK`a=B3|Me5F^T8d&eBj}P z2=me#m*Lb4r&HEje6|ACI8@2^qmvT%VbVc7bnYy!5)*=^S13XAWFqX9U^8=EE*+AZ z;OnsJJux@r@aPJ*sY+`5MCdtYTG(c|>ZCj&f%zDX{lhULvoSd{LD~;wK1Qd;NCJs< zkXcnYkkKp)f1}1@HfTR?&EBG9gP2Hhg&go9jd_$D*B^S{gJiyS>N}_5KmC*6Bj!s8 z5xwZeI#<15IE(YsI4fB<#}p3#*6)IXOII{++G}uNmY1@&qa+>;b>($Gq!Av3Ijk}> z(g4Sehpw0JPW4OCjCoEKWvH1Ry&W2hW6gnnx9!m;Mh8sq%6mPFk&f2aP=9v??CW;4 zhKTE`^}Fm(6OQG-vW@hQOJ6EkS2Yf>^WHowdR~0NMA&C_e>4Fo{bNess}6#KSAGmU zSms;<3>d=Qa1150Ue1N8g{MPzQ_Fwa3JNl=ow)?N9^6m<8ORjeo?nKgg+=hItU5@< zdAT(D%(7@A;l=n183gYczsBd$86KI6nZ4U#baF!c@>p|0_!@;UL0~gEvngoBX9&g? zZ`=Z2R|<_g#0*I659ML%W?@s-bn`xjJW(!dJ$Pod5QD?>;&Y^Fkr3|~IAoY`FZ!)q zKXVZ-1t!D_wba~zZ6g=PWv=1;SMXBo(WW+_zyozWYl{Ol4XO%LW%-V)UmK+Kqg70M zedsCqY{(Nb$a_7S*eJcrSX(ZTMg}Bs=8px2{TE=P^ew#rIYw-7jn59keDrE#5CXv| zf@aW-EYCxMFkH*`wregE9!;Hcn#hBU^n4Q`<+LQ(iF7(Y7r(#z&%Ybq|1BqT@N`o63@1%ApYsA=EC62ErcykQqTD9W@{5KY|jm?rJifv6x*CFFeVDrh3W9=D}*EXgoM zA_hY67^Xup@OBR=;;(J!Q0_G)RfIeTVD^EtjGOmnto6MFt@jME(dX!Q1AT9(&-JcT z6X?Rbmc&34QIrG+x;@_@xX7RFfG7mIA@=2FQJ;OFWRJNYP0VK5FRnilYu@Yyr~fhV zXPIQ*1I~DEg~w;W$`=ftti3Pu4>Dw~0u+q)+TK{uDgENnGqCNzZrFZcZ@?$huy}ng z;F={^>qhB)q~mjP!aN4Mrw!AS2zTmJCxy68!$T$m^MowlTp&}c(V*?Xd(jsJl1bKD z5VYK(I?&u{^PU|+dpsI_LvF{2evW+VhNIvI+rxZJUe(i$W?8~IYvv=Zf!=@2c!&lB z&jE;M1e;<-GpvZ;CucU(HFQS59hf$*$3UUk<9g;@&ttd-lLBK3rhL6(*II9}Zm#F{ zSB!~$4_vd=1xL5y?{%gMpr6%7`ED=EkU{9Desv96&qfK1MtAks7Z(>V)~+`_JT)=- z*hUh)mh$fhZ)X&dQ=0XP<`#!ogWH2xveuP92{7 zjz}B92@&Iq_Gk9Zz$gEQABE{1)5JJHI`~dJcLFZHaS_BK0Fs?Y(Md6C( zTG$s32Ru4C1{0+52!ER<$oz`@R7QsAutVt|YAmpBbVSFt(Z2(e4c@qT1Lm(UhJ*Ju zX+H39?xg5h=%l}G|2EkF_1 zED@wg)q1@NHuwN6VTZrxw|xuo82eBu;@{~$^EK6;SEg5xN2Kb{*X(cguggQs47Zm) z8<=lkf@%k-2g4lcel-!wP4lJuoPVqFIcN8=&u#06Wp5VqleIwc->hBrrd2aFLE(G_|eY+h9HhFJTM((Za&QYvuJu24r$_^Tz}5{4{Koo~4O_Xycgm zyBg2#XGajFw@bf5{;+?9EF{VT7NW`O&}<(!$|~nc-{_YNKbi4Fsa}eCKa3@ z=3^o;9;l_k`}jO+JL^xY5c zrq9D)JOY36FFs4pX#$JqI4wyYuUS^RzOFni3&IWn6cOqgz(f&VP10lOSL~Q$m{GMg z)~)(s_lz&8!(6{1B6VBk7+huu0F0(5k0HG$d2IBMof({NyXaNxm6Bj}jZZ^;F7-C7 z{aYtSovK{gP(-}0i&sVHeplk4+*T%po%!rlvgRV!*Z3MYtbS{T5Q{|psd2?|6y9ez z$PBcCvqX^Qel_+ufB0-B2$~32V`yVtr0s$ba`g!|EjwrH$)n2;7~FKr=+z63iQd49W7`B8A``8tSAdRk2<&;qpBD06k}a^xxI758ClN_M^Y%Lknd3;SWP+ z0o2;-)kb-3qx3F;@_2S}Vg8x&dLsieF*W_uZX*fdK&2m((NubI&`tF8h*U1UU@t;R-?^>Jzbvq-yS`E9iw(m%@gT00h|o&i(KM|Htox>FrZw zI)&F!@^$*f({TCNmE=4Q@{W^mwip2_Y638-6uujyUadx(;&cE}rt*}WDoW0^gvA-N zs~laW64gHE?!YX(9Fj3IDEzF;QZaNg9~&Wu@)%xsl9B_WuLky&;@79cm$WtE@Wpc$ zpF?vhEa>-f<;+#ec#aXRR??X8B}__)rdQ+B6R`dM?Xc&e-EedE7W{wz_P>UuTT8-x za0DnhcnmD4(~N&*p`d&(q1F}a+=ja_JV%SsR3o_ zecl(=T*gWNOviZ-c*w+o>(wu??L)B`ruxjJ>$&$W&uV5V4qvtHZQm_%l3wsl{ZivD z_P>P~`)T^6+7uYneNZowUzKl}59ez2HQsMSNM(n?5^fexG856HY4X&P9;tT5K;`75W+6T@-foe#t0)=l&XIi)8ighu1R z5Q+xDNSj`KCjXgBSpi)(p3)WvTsY~knnw#`qV@%o z5+c5T<&VAsrNF@@1nf#=DvXK3LQdZ-1ToH5YVfdvMbkEDJZ9n3nf@yD#?G zAn?e0L;t2)dsvS2Vxs!CH^?)tUEsV?dKPqm{YFzV!m8!zgRoK7T?PThyWyCd4%tk^ z*=O3AmA3cGXBx>IOC_ZD^MhX0=}P?J0Ic~H)GCpKJbemY1t#cny;0i4^+zO&KT#X- z#1B6XTMulN5WC0>+`2p$n2*cxu<}ZRrDC#2Dbz64fj3tY;{oh&-c`v46XBJSkP5TQ zhfbBXAe;b@4j*PpI1wRd<0ZzUB5B+(nt@Hk5WwS`#-r9F{EbYG5Oaj@V)whr$r5AS zuPjGra&}0^wvZ{ge(?s}x{{pE!*iVVowBB*<2gFAZ=HZ0_wS%X`b+=j%RzcMpH_xf z-`jIe5oDz~lGp2-)<_=7i>hAn1z}e_1Gz3={8p95wEukegFCGZ805D+p1@Ybwtu z`cnF42;)R}r17$|E+}FrPIUv~FiYr!=#-1H#l7ynY9rSV4Frn3)5e%2g0R)x!T~^y zA<)E_ohvga59T*B^0_VPoVo5bOj<-(^xT@B3DIY0VzsfrS(>(GPE-@RlLE55)-vVZ zG$=nYvfj5o{Y7~73(t{Ode0*VVcUJXC_n~D{i`7&yra1i*Ozc<(jsH4-Ix782) z+{Lvnmd&8uHh6dD(fmC_tQQ=e;83nPVP<{C4!JhfZr=ZSZ%Q9rhJ7`l#{QQ3wAXdt zW4{{##X5`kgTJ)FaNJ!9vv#2Adb0`EMiRn%S_a{o2Qj5;e7+~a()@0(J*1DX{DOUt z4+JfZ)9BAN)Y;SzUA=QwWn4<3nQ+MU#7-P|`abxv|NciQgf1RFs98YYjn}{W2F#wk zO42Xxd^C@Wng=5KF@t!}E}%&gX$det205Nb6}(?dy-!3zoNkuhfnqw6R)x&EqI8R| zQ>2yQjUNCIg>B62+)TMo zux<<&eD&NlxO`$3=F#+OVVRuHaXi&f%yEKD&gSsW{zvzc#_090y#fFEpZ|$CX3|vo zydLW8hc>Vg^?RCU5cmL*kb$ZPz}Jblyvq3(*9D3SYGAZAL(nYmbv2?X6MSA^PWMpB z2_eguRefb&%l3*9+uP25Z`&6Q*R}Lr_r&x@&%dh2gYLOg_th_9^7C}pi1hSK)}$02 zN{unSlBeF)h7LvhOfVV&i?{FQXL29PX91uE7J6KFd6ml*=P`kEW?sA=ztgbT+@4cJ zo}L80ZYD+AgrZ;2Ixf$zYItXOaC$LvosD%lS3t4$F#*uh35_dI;Boki--7+`cnG#1 z*aI`Wx51sIWeR|y&6Khkr^X&xlf+$j$!;q$#+5uH^W}Zg2Cu-ivzG|JZrZt(@H?4d ztwkn3M#x%=n(Y;gaCnDIQb(sIf+l2!OtTONqNapH<|5+|1z2&~So5OgS=wcs;U~ib z4M5CoSwQ8Ia0<@`%cek347X<79*{+5EO6<{pl)QU%%&?oYL<`p!{EAX-h`f zr~&cb&A>)kSJ7N_$x*j4AH6vGruPSVeh_ZHe8dPUoJBJHm2sXomsygcP?OhhIxtd| zvSB{t(nj`Dr#0zfL)x;?+IX_6}03^PO1Nlb-gzQucJ=9NsnFwz!E1(DeqqVTuT?<9uS9VO;t zV)Hm97euCn^OVHc_G_fYSWTu>6iztQKd~hoUYo{J^cGKfKCWN50Sh-4;7%X}?%Ym( zADw7w#t!Y9c5VvqPEwStZ+`kYGQEVAJB&7(cQzAMUh0oi zl(ho?kuMrPjw84s9ue4Z~}IRG$wf%}oy6hs1@8Ege( zdB9R%eN))JYe5j#rS}P=E-NK(!1KDOb@Hk&JpDqnI<@~HkLgeTx8H(`Z=9jXQ};jp zSP*v1kY-|dIGK@FImxQ59ilw^OHSW}gVz+%pPplfZmMIbBTnAP{2Y7sJ3;Vto|qN% zv7ok~k~)y7KmOHbbG=M<}a0n#Z#5hU2^;9jBrg zf`ZioAF)KgtF&G|nun1I?ecAUch|%BQ#<7nXuK;7T$=k59f{V$wXH4h?Yv^fx&R>W zCB3RXKV8xVg8LYx6pF|&!gx`4rPxcgenRbj8?o<7CcfcbQ)$z_w3Q}0ZiD$4tb~<0 z*mS+c1PdA;-YB{B0(2ct?rw`8pv^XQWz#dgibZ7Jk}D#4QA8P^N@YFjwNzO`NMZpD zG7cuhYD8^niQiKMS7cOjr}sa#A0GI?A-ad5a`7NSiT|0G&JwZie9_Hx=&|Nu7#+{U zT2Z*&@VAQD&Xd%POr5+&z!}TR!IL^Bj)uvZoHQ)MQNw{u5+w!1_EMI0$~Q6=+aH?> zOh;fMkdYWk4(3dJq6P*{14!$E{aab1L|X`7=#)OSd6L?|p5gs#=dVZ2$70O)fuV@$ zoK6f9wmBX&K3jHep?oK&UOEkjzkI|pw&fQ!fp}<^G?7!Q#)PAxQ+7W7|weE%?bE>b25cl?` zBFc3=YL2B_9`p+lUkId0^GtlZ+FXLXm*4kLntPbecyE{pxtAK#zEh0%ETll*-#$lv z;(MmOJWzcj^(~uUY53v#8fvtiX#UaqIPYD);ET6qzocg{H1C)H_3y#LwOizG_TUGe zBtZ+}LHr}lE-@g986m%k6mFL_zIr{nib3nd03YmA$Jxvg@7`WmA|~Y4rK=GKW5AA~ zXyTPnW$MluJcr4E^QgXvPLHmtblTACfi3Wx9Lv==CeP?iY^ z*NDkenjg~2(-{-`aQhCOH(U1ap$zW6Vcw}$4>d;Fod0$c0~7t4Ic!7#UNH*gI)lbJ zb}zaEv)oN+nhl6M+`Y{#t`nr01^SGPmzw+Bc$JZK+1J#z zQ-2NUiOh~Z@;5$A3FmFXkaxOIi@@2Of-5TPG=U6*4e5KxCdSotTALG`+f!qF$jnf%hroZfGko zH|V6kb?;W#eqbBinw^8+`la87o0o1{7!jhXzHlt5Zju=5L(YLyba#%nB8M~7;j(h2 z&9Kv;Ca{;8;7kPbL6YGy=iJa^a$0=baDdeI4p<3x(=%z1=IodDbWI7~dulpW{rYg^ ze(1)u)`poVUJH>B_)I`FQjEU26CN5Qjb-1RUK>zEk8MU515)y$^g6Gp%j0r-*t#C4 z2jR>!a!-#RGJeuSZ^K!QW6qb=yyiwV{PCJI6RBI)Z3~0z>KfwANPtW-K2kZmhE9(RWDEYj+Sprg|GOW9shMdCfxC2bE}MJ$0tB5N zlLA%3xhZ#28UyhtE{{oMML}?cxk+wZyb4o6>#~W6`V?9>-Or(QV}DVjj9L(!|DoYw zGRs2KC=^0rge^!>wPHMWmve&%6X}FWGV_f8dzYC)=Tcyjib8^+Mm(AVPXz7vCOGrL zt8nxDtc+R1Nrrbd&$=z(wQy!ZSo>(;T{e)HXEmI8fJQpP?iIUN%{72}y+zUMtJ^T` z^}&~A(KJ*OO%<=l*7LpmJl{9-*|`66zr5ct!5XlPjSP2wbvYD$v8Dmpy?ggT*eE?q zPaHuTrXzo{lR26}jZKY`3D)pPWFpAFV>Oyu zt)PuE{jEthcI*>sJMcYBLO2`_t|(3OFn4thu3xwgi*rkq!(^3gnY&T*fsD~`MeU=1 z$>trKXjHF$@m128L|P#e?*_~o2~@kDUK0_#fQo1o;@K5->X$S@#DCnU3={$CY#z3BIE>;6#p*s`hzJ3s!@j~Ogv1FVzKxPaDVL{Jzz4S!yf0oekG}(EC zL=$_pPd(JAckVYNa@gr?z96K)yf16d5@G?u;!nS9#x2;%fKcp; zmp-t08sn0FaG=Md1wFN~`(BvMOFvw3%|MTHjl!go7}M=CWa!Q01Sh)$l6lW?SDpIJ zRB4^@@r_^0{tA!lOD4k3!mFQu4!-s2FOcST)3%wQwSE{TW~K;Nk`^R6c!Mw*FZY6`xF%iFnsf;7CgD=jN|4W880pOmvvBxx-=KUSD1aGav(|JNFuo@|8<>x^ zfHRkGEx_W?tNoA+#^@V+s0E(@84RKSr+oZ&fgm-l&}vWXLEb6mcL%*K%Kpr@HR^dYAohO zF!(uDraI&0yr`iQsF!=GRcP0I)c04f_uI4`Z4Ayv=~2eUYFdyQ1G2gb2VtYUEyWx* zu6+Zx9ZYSd*G4upgx)|3QIryZ*4iB3_v$EA#Czggr2j2_&uv(#gfH5ct_DQ^-ar3t z*n~+3*SbkU)(O)5Ta~Ng;DB+gg>g~S1}R^`Bbp8qB6N#;!`$wKYM=)^EF3FzF8;cn4CWt2bh+N3hIs$xh<)NqiG2QnXb){@y({9~pF z59`tCn7JGeQ=jI3;npI|p1uO}*XGHmgTnHz#s2enky*j^F;58Q6}fWe3cUE4mtc8e zInj)cX?|!vf=VD#pJ|F56vUsx_iRdG7!eCZ>AX^sPa*c>0nE${6O#4LsJ6|i>}}ny zLHbpE>Uy%diyAQZn<*rIyLE4RL;Q(}m8uGKRSom+5;Gxtshk2PO3XRypgjG{z07m! zq#oZ){Mwi7ebX0j>K0W*Aib4AYuI7wPF{7_<1wWjHHJ zBO{{w1Qt5%ZC7JGG-D}Dfai8xod7cJYmA$TUejNJStrDxz`e6@p2w6}o7z&TdGdA~ zdjHFP)tQy0+whHl{~0*;tyk%xE&F!Bz9$|GIB}eOLMYNy%8TI=jwO_vq6=buWDeU+ zp?p;?CeE`#0-)g-VT(hXmX;9RkO)(>*< zLrdF?eOlfvRg>j2`r!1s4W~DxoMVXy1Q=wPO#DeD=|GMLA_xL=4F{Df`}kvY*kD8xvHa#qyvQOe9BL#=zivmftF^WC+3lvY!wD6` zDs&ld6~B-ZB1_)T$73vJQzxxP_@fN#6#c3rhh$Y{DIZGn*4DDqdt^4kHSgu%#V*9e zgfU9i#HMl5-Y_ypKaVRXuae{W(#@q9$!ld*7#4D}5B(SpOc93m#VqOAPfR*^_Q*LQ z%xV(#Hb$7&G%cfd>P{l`oy!l<6#9HzL0Us#m}rrf$yp`$HH>&g*kW_IJ3?b+g@XNZm!n8~g5YDv87mFUbe94vV z^NWSVuNmLK`iciN7H1gL^1!dpVkT~EXbLq5^(lT|u7(!Dj@r?_vjmif2Hqq08R~?J zW^@_$q!r#1pmDp#(`IT^_sVs1P#<`_-0fz~oDiWNz!{95nN}teW!!o%Fq^HKSLCd; zZ(xYw67)IY%$~b7dmTRW|NeKdb^p%5fb0qc{k|aeUxrIZ&j8FX0+}}P`a9fTL8!DA zkw?toKl-X}iP8K{-aC58?REQxc^ZUf z+bFU4wa&rvT1^8I=I|hFl)End0JwZsOTpTn>s1F`gTeaLMpy_ka`lQGWW?f>xGU3+ zJ^HHJH-w=kKm?if9viof1o``Z=Dp;&jn3I9T}Nrz&C9po+~EtEpyWf?ImtARL^*07 zkYS)q=PNNRBbqUJPFf{hO9M?`McP)yFuD}&DoNg=SyeQR!st@?iRMn|=Ru}eVSX2`pk&O2d4UX%J`KpFcKMV0p$TT$Eah)#n=?br<-UL# zZz3vus@QA;FEkE7K^!zRRqY!uwq-I@tj%?W*Ca?>Z> zMi%t9q%;A1+lFc5+6Q^Q>3f?5!T0E=x#x-t4xk_D;hJ9L1DO$>AS@>bOCC{rVpzaugMZ0Zy3jaOo}bz~N9M-!`V z3jIsDM^etj=vPt^^FbzClju7#MrKl;f`fomCh*f=N==E<|&~&IcUXoaiw@fJ?WZK-x+0_IsH8zBz zf)}U$1F5BfY4TtgkNOxg9OiS`DWa42qkUR_yE?#Yrn+fAm&7!Ky#2SlXRpbpCdBm@ zSMO_6X~HLMkG~xUX=@t=(`a9UI?^eKC4m1wdwb9`51c9v=IKKm-Cn z0*PFh$s(C#v8!sP=Ak$*GiT;uPM`S~^AqMD%s-fydFeTQPM>OapRQ`M$SPKmNoF!P z0GWv$fdCNu9=^MqXV@(L*_$ z+%9j?xPiug^!2??R&COS4#Xc_S*GJ>Ptex-R_6`bO3Ra?$X{XV^y$Z}Oa!HgCGaS7 zNOyOLu?5~IK56Rlt$Uq(K0zyIPNnLyu@TG0a+_qxWhWfWMrX-8d0qmgBYBrktag)M zE8V2eMlwu1XciADDd?6TrawmZn~fOWh(15g_kpY&>n5jm>68ET^L{^AC-`^DPkt$# z$*a-|G3wz3q2hL`j0QJZI1pO2g^D$+VKh_6gz~I489NK#G-<2e)ysbm<3$5$Mbd-UMT2b~e} zEO}CN-$$u)n*C!B$dP>F*O7A1$kwxM`sKg*Wtl~^c9L$>In7zhCxWK{^i+^WQw0X! ziL6Zpkn|Kwtbie=6Mi%W6aiKCmcsx#N2QE;2vDl4sv?$xt?S|{=%fKTBRoO2{K>_QQ9WZ# zX%^ehLaSm}cBpw0lE=Eb!Fdc&8e}5`d58`MLW1}sa+N1i`JW1Js{r$5U^^MLC1nUO zE-F5i!XwCEf@MO%Jk%m>hXAPL)%WI?wj^23C9=h8&6~Y{{Z~JwkN(py(s%CbSH5$N zPFy&XmLBn5H97uPCVSL-Cg5{Y_JhRI8>K(fzKn6+z@EGlW$A0`tu8OV@8jdH+{ZWX zrb`F;eiD|ERLQ4&4Er=07wM+*z5QgYuqT8)A}l+PpFd5PzxOR#IeW^yFUb=!&ibqv zk=hkv5aC@QMA_(KFG#0{_+Ao@cjomgU0W>D5LeCMwt+{vN7-2OrV>OFm5uVUGICpn zXy!Tc@i0y#RR8ufGOCVY^iQLzUz-F-9Z6$_RDaH5X15MQO^VN z@)q=i!(lA(dWi$35irmkfZ=fK9EZwp&UCh{c1w`s@Uk9D;3Jz2po*q7(}9Y#MSYKs z9-Wq1bn)}&+QsAaul`^EijJNec4Y8=Zgv+JN2_-zc#7mdb#_-Nq zU?q@Fiedv`Z>pORrBWgw14+M);KuX($%X-YQkIV&r4tuV((1WYI@TEn81lb?J-|M=(sNZZeL`dttQ`i!dQ0YPTP55a?4 z(y>!(X*2rK&a1$;r85Z6H;+#>^J%ox zpp11w;gz7vu4>>a`+4L53zqwQ!qwK}b-M7@)ntIsBwtFXhM6E_83-|ti?Ln`oA+z5 zr)BB*3ay?wnd-dt_*pv9O6NhQrN^Qzc@jOsar6!mUKU(7&9isq$m%iOYx4N(J67*T z2qYLIsO*(K4KOXGguZczjLLLH$L>KSCs{6^#}Zbq%tyGzTf><-=nolYc$=9S-EvHUK@`# z>E?&G%IuO>C=0W4?+1Gk7|65Yn3mI}79**txo$|Mx?itzH+)XFKq#M_HR;}zk$;vM|YO(9 zY@71K@QLtEtZ*eLvgp^?x2#v~=O7?V%8nkCLEf5UD0xOJ9lymHGr0lEm#l?m#}P6R za;3<5`eMHf#G8`Lc%K}=krY@<**DNr=4cEIjPs!`t;ctcE8s*>q)-!~J*rU|F(o!j z@H`Narl8$~fM4T6{8-Uk%at0WxIC)-1cde{K1f-|_yk^xOwhhBt_Q4I_guRvNEJB|FoNh$qrA+BU zz=fo&(hcEd2@?N_5n}6Oq5h+sSDLLV8`*h(2k)ggaq$G5x^g-#yBd{KxVG8Q=sXhJ zPrJWoTeP#D_h#fx=6Sz~F1acSh|3!bt>v;rH!IuGz}^qOAZvSlm+p0*53a9Xo>=l2 z$$poz88RKe%X>)pvcpa}@)EVre*SqXTft^5Z9TxWj{l@_0{IzEP_l$d4tg?LbTW=1 zsy!J>kD3M*#}q?DN1FU@D9QeseMboxAJL2g90Sq74iK;4hX~dcM-RY>tOcqHD0oAV z>m%ZNbZU`a(hbNH^7-`uJRt~(FerVzf<=_ZKnCdLnUz7-E)n~WtQ{%z1c2lj$dA2P z4gWyaWXF%R)w6AOyPf(}m zhmUwu`iIw(oJ`Ad=jU`!1_!+aHZ8--Csa))Q*CROp}d!6>)B?i?CEQl>GBWWPDk~c zr+idS>gv266{yd2$24J;+bJd^XD=Q7JEjw_UZ91}GZd&d?5!|FsN8 zN$)04h2{`?d}B(1pl;+CFA|LZ9wCLNbu4&MM?^itV3u*@-6d z0N_x}<%#s4@Z14Y&Z!gRKm5P`K7H@czNgEscxG$>mOyF0y944M|Lw=L`FO*iKqzkc zx$Ftx%m4WFr*UUE?3eu#`{D)B8*a&FjszVP10=mG$LOXT)H`p&`EQ-4i*H@*ydX!@ zMTR?_mt*tEW=F?n@_Mil!d{T zM}B*}*|>3EmEjAS-u@_cEyW+$53}Bf`a29CX>yI@YylhpKAs1#(kvdhSR0bV9VR0z zL~MHZUT0sS0$NVVzZ#aqQs-dY;L6GE6UbRwM0yOiZ_IkVJC2J$E~fI-41%oVEe%=S zT|J|3PveEE=aGN4PNW7)`B~Z=y^Hp*jqR$?(ja+RC3208|3IEELTF@D0?Q#j8EfS< zdyy|BBVcKDImyGl&Fv)PrG0fF6K?p9(Jzf1+fvzV9Eq_xCG(o(bnJ>#rtdiwoQRP2- zY3AngvfIVuE2%ASzW)(DyZ@-s=g{?`8f(#yL6xU&a9h9i`^9*{ydP$W^f6F_zd>d| z&8ejdNK3<*!5KrC@E{pkdra|JJqa;{ojCNC4bLd2x#WvphJmoQx$*4(jSpN)udQ8O zqnF{p@VqWM3@yfQ86n>!@597*mVRpka4&La^o{)Sj?p`ub zrp3)3%gh~Db5zzA<8hE4Wl&Ped<-XU)sSNWRWw7xa~j7DuN?_$q$BIOj6 zVKfjZ90m9QzM{34Vl_!m)wl{3xT6BJs6YOke%HJlMj)zip)>4>bglbPh}AS_J*JGx zpnPrJ8XNKW`P9Zh0oXG3+*qvG!up-epb1uIM`s{4GO14I;+179<$-`$H_IE12Ng>p zU8BAns-HALOsP0}Q@gB%9b!|Yg>ifFAtJ&9HV*wzHI2tUi%Q4FH>LCGvFtCin zZP}Hvr7R07|G^mXS%cn+{(U|EM@4r?zs73(OW;!hfAZh|uk^()K1j#Va=bHFFVfl9 zFQ-$X_%`x!xiLL$GA~O~vtD5RHOYJFCR5;z5qM7W<%GJaJp?sU_&$%{{`F5f5A{yo zl-`v!Di_V>dK9@+_6Y73FNnyZ?6sKE?#329d-x<79?K_B(Ch#7hjjYtE6IbSUJ$8y zK3+?Y5>Csyrjt|;zKbgDf$8+b+Qsv9{K6S>A;#W!oDk?WE)9775Z+J4L+u#d$$9hw z%Or$GZ5P~w26?e^{V;jgp&m#>Mn`_2FMN9U9`Xz1X7xZONoo?Mpk5u-e)-$9 zC~#6x5m6+OH*z8woC=*nI!l+ndnwIGu>p}!g4(4AHy(DgWqk2qP_nt~>;lgxqwuT} z$7dIJ@2K z=qWDuHW)=cB_fKl06O7UoLiQ5MxERrD@g0VA4(1c!NjsT znY3-m^$Yd#MB|Toz!ybAbQoFWnKud*n`;{7XB+;BP8t6mpbJPP2Xdl5Q^@Rre`(Ol zUe`}q+9~v59O26r%f(iuKn7wuF9Yq=Cxb2^i>VKClz%lNlzAwUqI)JrI_6nVAmlC% zZj8_XERxN~W+a)%QCKN7@MW!QTA(h+gH7ZODxTbaKtKQ2e@zd+ypxZ{?b4lmryXW`6xJlQ4_M4Q) zkz>o9%$!#vMEQ17jGQ!)w4Ze$)QCOP`<)T9@%ULc(X)~Eg}nO1Z_|ZuzfqQUjX)=s z?w%HXS&Wcaj)7+{3~$EgiKDY`T%p0>0JxnlDRzb%{|y-${P3p$GSP7!>V+V2WL!bn z@;#D{e;o%P^9i3hLaO(KwDvJlkMA2{2y;zqy;K<_^3IR%=PM%~l<-9ki;Kes$XuMf z^ne^P*v#B4W}7`wT6r8UUyEB0B=oSf@{qyRr!-QJ%0O;bu&8|sUPD59FCZj+Q~5;d zPof0;5%u>E{x3hID-&==&k?e&7>TjJ$OcUKfg-Rh3WfMSI)G}K$?^%gc|9QblW*7u*yPi_O&tQ8kB&`4i z0YBRFq0*kNaQhw=v{7X=lp023u+a#>YI&X~iK8>N5LmVHSNb@S7;LOfn{+R1*0c=(n}&K4EQNn z_eagI0TPf-0rM*N@^7sZfT`A8>%pPoYa%nWN*QP*KvWKip7?n7+K~Zw{ze6=~Qjf)eZ4tDqD{9j|i;sW&EBf32 z-~ZIf(x()=-z@+5lEO2ub)M$s<#Lg0K0-Yo)G^L^76XKh9QGjSX@4 zjekVX?meQ#qetnL@4rRYe)Rn$$HT~$G@5)V7vH93z}Z929uQuB#`@>lpZvhJQ(saL z^kwOVK-6E-L^_W0XLN>h>2ak`^DUhibTE?2Z0z#@xuBdhnws1%#48!92dQ1(gC=HF zmsFp*nApo_R(|S@Jw%yWqedAoLqE(BUB%zd0EwgU(f~O`Kmpydo+TV)c(mfp8Xzse z(zf1B84OzKR1`urjpzlGlF*=|i1qYZ>v2v&aqgiV5saIEi|8jm3 z^IBY12zNibM>|iq%8W*^@&o0QuR4XZu$(s-PRizQQ&=WYr7r_a3nhg?F&R4S?RfnU zuhAQS{06b7g}okkKkW>HJ5Olyao%X2PNQNM{eJd%>~%9)lgZQp(or!iRI$YjHYa6S zR$c;@Pr_m&XL;>tssnExfB5x-&dABPowLHu>w2@nm2dtHx|EA)9*@h>!(IJ3{a3&K zI?oW6aswcqVDJr_(BWmkZUy7S@;SBVG8YzO4u0p}^7Z&|dcFp2puDjy+@6^_gob?3cCp`7^@-7+0a?yI zRAbc=MiT(mUuFE08~;;sdugK1zeAdwue8sopiedO384;oP!f%HF;WTYD>AAt#|rp~ zR(|?->OoBu;EjNU6b))_GiOt^!N~U~ryB()PjZ__SEnAFs*LH9%%u|eDhP0j{8;sY<$%7m%THQ*&{N~^PBfbBZ zKkg=SwvvqF)2YtBeua*oKb4k9&6TBCd?%7DH%;Z1B~sY~V!SJx(MM?`I@fcQ?+F>t z>4kvf?%Bq}C-lL8{6~7)84u}JcD^5EJR;}ui_>x!$ZlFz8%w|A@~U)VR`+h>346sK zByY)?YnSQuKmGwNmCflgSoI#0ST@n86A`nAWp8IE>5;Wd=V)VJZb_dS}umxQ9>mQYbC@x^n2bhUmD;jfkq z8Nx<&XyrYW?<~yqGVpjEU&Y_f02#&6O9SK(p>_qD4sC-feAb#>8j3&bInvR3-kXue z_mVf{kH8-VP0oWr(vb>8(KNN^Lx4vUECy-|QlTMWnMB|Jv+t!%Ad&3e8CotKrkn7%+!Qy7$pU} z#KyLR~1;x4WD7d@~|5wX?l+LJ$5o>EZMgYWA0Wt!c!&N#e&=Zg= z054E~_ADZw!2nVK9ILS!p$)2lbAkrMffkHc+BQ}xq)ras0sugdQw>-ZlLC!cmV)0< z`Ul3P#5GTqja@Oe0Bl#Cpil$Qr*krn9EC$J>^3(cTB{aRxpfkYi0RG?qcmI~YeE;JF!Wr!IK8j24TuV2YA6Z^Z_am`q zmt`D{#8YG!6HX^KAtLu|uty{9AxX#jj&+ho?hfHNk8jMCTXt+P0{;IR&%a*7mrW&T7U33>4ddQXX)*K@kgBp|9Dz@t9?*BHd)l)xHkgYBhLZGk5PmMLZHS&krhu)Y{UyB<;DJu2z*tT^B{Gpr zev3Q~m=@&_(v5mdR0!~vw0~=I=deJ3Xi|69q{Cs-3vKvr2;aR7?chBi;pHvpvqEj@ zs-h=jykVoDt=!NkLH8k+)A~L{+bqLFo)>JD2#WCHt<1+7kdXKg{1E5q$Kg1J|j-NfYm_Yn=Z>meL#6{nn$sm}? z=@it-%O~jv|K}gjg|{!HhY!AbK({}>P3sTWlku@zHk$J$b2d8Sep!nwUY0^s7~7r{ zQlldqLTO*hq#ViEmCu(4@XU67=uu3t))VeJuM64 zRDZtvD6bx;ab~R%`0DOc`A_7APc!nB+ zzbH5lXzD(UUg0XZgFj~|z__WwnAX=t)v{!W=w~3rsO@&qy!?1lP$ot|p+o8-INFrF z;ep`tHTrOf2CAO7LLe>I6G#0qb2#1a<3?XrGY&k+fO_gH>FR{Ck({C9_%<5I!ahRa zDC55+AIwWwAt*GA!FmFmmY)D`C)_y7NY+j(v8CE3VE3EvTN;jL?( zNBDRr*B8^Ws$^8KF(IA`_CAz}oP0ztFiEh06A>H`p2YKS@ z*itcA{N%{ATwKUYvA8bz#`QVygi!WscZLMtyuQ(SLU>Qd@~PwWtr}? zdOB@0B^o6$4zFFTLr+OIjF-WBkO3ymFK4QHm2hfDzBWCub-uN{*Uj_$yZONIFD{VqB~ugeE$ZYD8>6Q_KH^}U1&I&>QXArmkoim>?)r~ zm4tW~Hyz)&pHId@qb!|C&qwF3EvGi(eI}1@Kgs(_$~_{n+~JY(3Zy5x$P80je$|!5 zH=y$d_NSev=8N~faCOh!45xjCN)c#3OjUyfc?wEG_~5W^Z3J8RDTX;jR6yb&7Z{q< zG$3=#P?cGbk`M=k3j0*!rU5>KBh69eK`#Pg@?o%D@H4`RM3Jb{+Zs>Hly^XSXeDTU zZxU&rJzP1XZtc+MqY#?><~lky%56OFr7wR1@Ue}+Hc%N;^9jlzd8XNyzGFG0vYH6M zHW}a4#s@hu3UoyKbnj5FM8cV1pqP3o!H|eJP_aHm7Mo|oxH~$AivT`7wCo$A2mA*8 zp;bYq2cF=6Z~W>bdiUS_$8@^XUIO}&mQSwI`M0jn0xyx`)2hlPh3WD@4lJrB`827R zydb%L={_jA3uHbYQ=a#C%z@m@e{2AJ_LKLL5wx&;l;*p#lE<2LLy;rtZjfodG*AF? zUIIHVdk|yZ)4_V7(>vSio3wHN5p6%)?2M2#y7I$!(w!kO8n>Z0Je`KcUXaeq!eyPh z`U)L8a}xTHhJ$r4w5?AQW{m&XFl-5BcBnd%eA+%A+lS^cGViMQSX-J13MLXA3eVJG z5I?m=Fda0p+nU_1G2BpoFTEi?bOy+A{O#@mIktT4zwKiDfL;b4U}U$9h5A`59295B z%{UZV?`9bxDEIyI=oCP^u)(nlc{c`K2<@4gK-5P@Kw@FVc=MmW zNpJqio5>TwWj?<3m_F;u`j!;~|oBRE}Pp=Tlo2=F%xHsoF7nE;yC| znLLX&N=ps6Y`)xZ`NYvw*4MxJnjYPLtb0Fn30hHzb}?7ELA~51vT$UcPFy%aD<@az zSAY2~z5nmt*Ur;s?}1AqXK$89L1iY(I0BjB(K8+}&k8ur_Pp5}1xKjxKr4mno2tlS z0N7BiG;;I`tvA+aMu0p`fdbbS8i(rV#ut!;TracLp#j)JH9R!0;Ekh3v_pjFPjOIw zvUCM={U)=F2Ptp!q~#E1@OCcVx3SKVXx!QIcQmq-eyHMa15BhHA-@H5hh7H`2Q}Ei zGvat#im}&4-bQCoSz*z}Zx2KUXF#hwhw-m8)pf7IXhov{?cf_)$3e{%47?xQxSeh( z=lel;U&NT@LxDXP z=fCw@n!w2?Q%!X;Cih3?H}R~b^HgncmcdC+H#Xf8$_0`#|C z>f7g2#{;NyFt0%FFpfd&atQ3@CKBlRmq($#Xc-nr+hHewU+56SZ#Ord{cHK@eN~}< zRr-q>oWg9(hP8l9&7_CQ`w-6$9U?Vn?h?R8#(RGywBRZcxgV1AB{EFVdRz;r(r1(J^e z&9hcf!JeYFE-ZJRhd2N9TlDJpUrighInMf{jm|ZHBV90<*5-DGklgPvDW_cNp9sv5 zJrT0ek@J}p56)!IPU4bv%e*9jl@2evI(mF5(em)i2ejUKK$5}3n;tR$(jKlO#b6kP zvj1Z#8C{?L^i$`R(YVq7_PQY`Qr2Qr$~HV*5&;282mtnj zErKff2LPM(Y}#*7&mGW%|Tsx)4xuo=!4wl^m!T z)-hCc%oIuC;3$o3P&9;AtQdg@Dte&3@;mCqX)UAZ&(ek-Ez(~gN}z2*Id;|?AJT_u z^S znU*N;0`-6%j&tNKZ0ZEr!|#zoy<3kWHL44Dgcbk@qUT9vJcYjg53XyY zrLp3?!5_%wBh?Bp{!JcMls625q4)B82%q)F8$6#m5j>;3m!TixtR+}4!*H0juJ5q# zILIIvdOj=dfg$*`QjS|UIxuVE46A5>%rY$hpiU%2s8v*|@|41&2ZoVQaavy2{^(ja zTeOnA79r&Iw!7PVbnp5-y-YC6t}O7=Iq&HNsUztWDb8kJ-SXX!i3k}H$j177yZLwi z<#*_ncP=HR#(|evef9oV$pbQhJ3TlrxkX(rlyc1(LRv@6wD1PQeV#?*dpp?pnB+T1 zCdHsg%K`X~k);J%Iejec0byh3;mt?sM)l-v*`I*%6q0%vjR4N5E-3evEG?vsluzzG zvAaK7auLBRp{jw+xcR3CcjT2tfO-Qyci#h<=LA}cDvfDKP0|8@QjZJa+Vq@0dZyI! zBRps-Cki>#~UZzSUj84K-}^L4V+k}uYebPVZuh&Jx(dN|`vh%PZCLo?pUja%z?-=_pJ zR)q)kNLLDR%&U|MM5KDhb>80N+%JsKX|xJB>(#gA!wYdd*CCOf<7XmvhWYWd_^ zx|Ei|eA?HMPR1IQi(bXkoxRifmh^m)Y&wB(T$W^&OIwqH!k?7y{@}D9{p~O4@$GwQ zNo=~Huox~$)=cxH)}-izRIhTQ`Dg@uQu4x?0k7>O4&YN`flGWJG_u{pC|_$ zdzCnS`DOa6Hk@nh;HWqN;15l{y5eUT8AAq3E8n4fTECwg$Ndh6t~H160qI^|rI#Uv z7Bkl0hpgsV`OFGK7XCp-&8%{J?)HeH3**Yt1XJANDJUP+>>VhvN?}R{GOJS0B6#}o zWTE_gVQHSe|7YJ%o`IxDim~wMtB0L;;GvU;qjF0*8xE|Hc=I)H;7c=9X#;vWMs#H0 zaau$$r@8#y%k;*L$BUzTvO_hVl!F)WluQK+)naUs*d zvu0dQGBnCEExoOGnor|O#zz;Ay)~=nR%vndXgbpO_9wUL*@N|Tv@dUTm-I4|6to@! ztn-quWcYOT=KE5(O+NeCXUUk6_HKEiOj*VrFUJO`bttSdYEfOZln2pJhEjfcCK|S{ zUWR~S+l(`Hf}DLVU4NDeHs4IuAnc>G&S zMg1AD)2K22V}H!L0Iz|S$f4Hq!FwUz|I5Fp-~QE4(*Yb?&o+`Lf$!CLweujXoH?0* z{6hD~lQ^T04T#BpzExZ|q<0U;WwZE5ydcF8p-`4<@ujuJAYnc6=;mGe^}qXZSLS+J z`Zey1kT4#>QMxhTT+X+*ckP`vxu^U>x$J2~IGd36j_mDqGJT7l-Fryu_a7&EE`Ik7 zdi96zBz=`PxaWB36tI*x(fPNo(Wxt!++dNeZ^;xJi$yo}Vn*e!T1JRLZ2SU;4G`#& zrk*F2p+br1tVop{iYPruCkfi4ACt`%eDzViLurR_mb|MC2h<&2R#G)l(#DL>g8^TF zFl>NyZTWH&dKG3F8AHtYJO%>BAF{UVXNR@)oeNf;!xPvFN4=TXEWJwkKsN>Qx;9en zYW0Jd3YdwiK!=Pu5pL(-xFr*A_=DPfjtu1$obCYgCR2ciL?ZZok~UW`~CmJyUT3dO+b?E*bF9`UQ{$n2w_Hi{@$LA3>>lSRi8r9LCes zCK>5&SD1+UydsZBvM(i=2MrBA^^O7!t%;vl@-(*Y%d#f*(Hl2XCh~&DA(PGa4mPAC z6AgkX>ql3YC~ZyNunIT{lp8Jo8(=6!Z8M_A_^--#kNo3`X6YB|iHTqS&woRAKDm($ zhOMU?$uQyjG0whznU+?T6L{yPOtQf_-z+{cIn7y?$)0q2RyRS!d5wz~BstJWV@PPB_Uom-CXT)PCjoa~nscY4o=Cn2n3hh}wGigf<^OPP*ar zYnSQL_uneFx@Ut)E+u5o&;0TtUHju78hcweI&rM!$)E6&3OVg6LJx%WtIEJi@JH() zE2E5M8Q+LWV#&8Zp%oPi*wDnKeN!iAsIFU>HNJ>yTvW%EC7q}@TSm#yd;C4i=y(|p z48sOU*U2vp5TYI<&vY+0nErX0a>xQdtd;EqKx-gL+`8QIA4)QtVaCB`a~u4AH0sY* z7{CY$qz;tu`BTI|4dgfR%oOr*<-E!wgI&!xxBajYc>h*Tykv3#* zR-VP{+JHAsE*v{T4?0iL*B^Z4Pvs&%dm|V^^%?*p0Rq}{5el;ocfcc-I0_`GUjB#a zfqP=CK&?^iXcx^GiEQ=`3}>Y=63s9KFn447zK2KwsZtUkU*G31w^%n?I)sMLbLB~xm4Dg)-!HUdUO`vg!%a(dGv1I5dIva+~f3Nk+&h(K(UHAC|>2d#q*Y72mU@NBAc1M_zK9_luAkGQ4E! zqrdw_Czqe5&EQ;)dO?`V;?>T#qffGDCEYV(cQQ#e@}!w~!Y8z|y`A@jba`{RXRp0V zm%jUETDF^(>UM_8e)(e$_q8AWUMjmMZwTA7l1afDxj94v@)6-&M8%lEVF3?0pq~Dh zcLC_pQ5B$bg)t+@*)VbjI#IRWc;z^F9tX zoaEG$v|nVJ@At^YM>KWKY34@BP-0rx1H$j`cgDy1gY{I$WDwOnh+r6RdzR%_T^sO) zjq`K!X&D#qBcVoLBLM4xQUpl~+VrjGp8{S5Fv=_@iQz$wWnThwqc2nxsKaSOLo{QR z$dsT0Ed(`)3}b8>>kb52RBM-D{9Uj#Iif>dfx3pW#6iHcHm4d(0zL(JTeedL!*#A& zhoN$jCTx@leOSo_c^?5ZDgX?9klq6bRAChdiQprW8}~%OFFvX@6w(NWgWwnK-3j5>zy3)A@qDx`FOA|!pG$AQ zM#oMbPx~}@xo+OeL3%qnABAg^SYus&mG1?~o6$!_CW}WM>3MSJK7IQ4zfAXX965Tl zctA#aH%HPl>=oyGJ9vrLcusFoPho0(D4zR7Tk>%1bY74rX-~*BPUzelSCTh`^PaM& zgpcCg&0d^ir%%#_Z@=N&3tBNypVzgopbv3I#U>bP-l6Ju1?)i#QfN%hMq5{r|Lrk; zeo_gKw$T7-s`vFO0L%Vh4+h2^dRI|G&l_fWV_x*I2DXM8AlsAiOYcVs|G6HF`km>E zI2cDhXAP*KFl+F5;bdZ~t-LW)k7Igey0ZPCN7WM%g~X`0nWNYXrse3&>u2b~+ZPM? zpC)k6OP_f2IWJ4nnHx@1_FnMGSA6p~Z@^9`PVLFP9HyI@u9Z_O^v=I{hhF*4r9_9E zGL@+81pVz#@6y-5y_t`_O=q&(30Fyxg`lULgrdOMt)I?|kEF}4VsWP@Bcjw>aFpy9 zIm*ZGo?q)+`y+aGe?1?$yPl8S-P_x@y(4hJ7H2nsA4n&pl;1MtRL1ghM;_x^AjgX&|!`_Hr{P|zgyk*b9Ugt%aJ930x z={yHV`I5r2DLw7&pt3}2GAXjM7$I}nQ<6N^b9p~VkPYUnPLemobPEgIuipD8Edk@D zTStyArKMaUO+Iyo1}_ojP2-b1(Iv<7W3OLdNGKO^{0Ey1j4lCbIgu*i5Q3KH^gn`r>|?6P zisV)f5XE-f0D0@PJ}w$EFq~045NDP#Qiq-hnGxJLjYLBpnU^64H9+R#pg~KpT z&xPD%yIKnb8fx&4HmbY2NF#zMJxFnbd?9UCC&qQY`=R4iVLg3xL8 z%qo5VU;SRX;hYr`dm0$*r@D;T2zW*x|M=t13$k05UQLQIG1WHFC10a_q6!;6>h@`iiOTVOz=bbx$?ZV0A0omTzp?kda>hVURhxeQ$+NFPDgfr1gyU8uT zoL{;KE6`$>=h4+=dU)$G-FWYYDtT<*CQk^;a;S0^u!>}c3xWs(+CpdRm8mfcO#WPHLE8 zzh=6;SBxUIr~mY6qWkOt>w&)1F%x{#OZ|uY)#M)1=w&1+_>*Um@SkAMu>HVbBx=Za z;3cf98u>NhL?(Zsy=p!RuG2BC@p>Q|_bNivVhzponh6o`Xmw<)l47!Ay#wjL{Ga{< zZLM!4p#Sv#r~P{4?ETOqdD&wzmm64D?$#C$}(Nv zn7+ZMV?BJF@;v?8t917DE2(VWjLzPdj`Gd}@;a@aKdo}kf%E_qdTugfXv)aOepvqs4>L+HEe}Ql6@za-t)TFB(|1JGDIQ|Fn911h@E_Irf z{zVLPL|5he%VT(FgoBvJW>{wj+yI4PR(iDJ>ol!6!J&nI0C>_akIL+3(V!I`b%}#W zXZLv4fCd0iz?QBTg=CAXi*)IGmlCMQ*=s%uck}6%DawM5#Es5?o&~>M5IAwbbM3kMosfQew1R|HbugHfmEhjLSX`GX_j(ix-2Hj2IhoBYIjFEK9IT+9GeW z$D~t$Yb zs#cuoj)X>=q^&0l4hn@edqC8_lMcpMm8tItz;L6@BIGNjn%Bni!{#-R+31H-jL8!l zr&xDg21igvB~`F(l|Cm+(C7#TbO8WspAfJakr_$S?@|r{_;Q9PStf*S*6v4~xr7Q~ z45HR61ys?h5@+yBXr&k6SK0A^62>@!f!C*QT`Eu(a|8u+QcS!i0XE-zE6`s zWJ@8fzsZef-*f|V!99#HkwHEA^!ZPJ-FYNFPI8}*<=uR|o+gh@UOM0XolEy+EEq7thn`*;C2*;Jn!r zbLQF=I)47F$^Yn^2W3o-QTZ@jzxT&~D1uAc9*sY#gUTL|J8t5rmuFx96Ud_wEHA59 z)Nv$5VF^PX4JofRaoeBNIAHt_go6wj#B+zy6)$QSN4pJO4UiDVSLtQwg%(3gKxT7p zXqTRJ)&uiAtntz+|GAkv*o>%4-&3xrfCML%Wi$>!K?((biUxB!XP^L3f--VEeMMJ( zc!f?}I#ED(2Kj6-Jh<_o+wvdl?=ey+(#mtD=}Wmi<(>3lKO{=Rum zWcinPV5oRa7VyGk}YugBf%chk-1I~`qna>^DNk4z(YsYoD7{u4uJ?#P%{ z&mE`DXPflVk3XulO_LX(a|(v(gRdG~M*K8OP-nCVdf5Zm2ny0^O|5HhDHG(T{21HB z==f?V9fu_qwTkwJB}L^6&Vpx5cZjhj@gtE3{pEWB@4@UQ8&{Z3v}VCR3gu;hhzc12 zhf3A-cMVW9ZUK%B@za|#Ep^j=361!nkv3{YJq_@my^q$`0q92lAyOkraBeMk<#|m% zwwuMoI#j%lvJUu6y=0JG2vs{nU3;McPQ2bQ<0~q>H=3iyhlUmT>*TE;drtm_x}O@l zMgJr{<`IpbX=s+*=m}8w79N#86GJpq{g1gm?Yt4c`15~HkG{T>j^KTA_kK5Vv(tH^ z7dkJpT8_21vrQ{!Ptv9De=8YJvB`^lIprjB=*JD74a&2CA{TUE@VcYCt@VG;GYyo8 ztngzdIzFIkJRvVB9r$(zh8mi@o#n}{ayV3ehbjAIu&_U!J0aiI0EwgN%OzMPJP*L1 zHTzm}(|D~khsnQ{9_eh+D>E24bJ5eyMZuW9iJ;g~<$wYz+9F~(h`1^mdUSzmg<7UM zv6q53hD$m>6QS;L8UPGuNMuk8$TdUpT@??;c5SCgORZ>~24Gi;tepXJLHsu4l01QJ_1f%R#;rjCi^gEy4 zp$A{xA7Vt;KMHiB_JH;e^vZx@3vPBRsHW8juE))Qhz)w6UI1ow#+ISK+^;M8j@LlflL{<%BXd>7k!f{*q1alw|#! z-pz!6v5dK(e3cKKNcv-!FDu;c43H zGwb(DFGxECur+K6Rtzr}ds@uMo7_IPO)(fTV(U^2X5t0sG#{vi(Zf zsM2?#0eZX(=^V?5bEbfNF53OQ{+9e$A&Me{7d=H*g)CrNk3FL2yacNvkesaJv6!7`g~p*UeFNG z)-Vr9cxixO_@?UwhtkYiyC`9Z;b+Cibg@zrJ&U|SQ??Oc7A@yU>ZfRE6P#J?A=y5W z`YFo?dR6J7y!MCJXzkLPDjMDgGU<$po4>tT6dfq{Vhk*FGhlr8MP8~k%`-)v@;G(* zWLnO}UV(h0_-?w%JRivz)14W-Ve$Tr2lT}+KF=2xPW@54*oNtpDgK);Zg*B{ygrxr zYwX+XS~}sREWMK1w$V6yKX{Y)@w3M}@5f3~gb%)cn2y~|x2$jPmG!_;mu`)+tyQ&r znFW_+XndUS;yfKYz0%E|?a__*zM#GBJ(^|oV%HfMGqBf}@@*iavwF^+aFB%zj5O%U zg*N##P`yN_QJ&BXb#kqoGj?IXY$WSq^nnahTJ=_%JHb9nMGY4lI6PaEUk3U%KR_}6tnLlgT1^9e*c zv)adM$RDBk&XwDs3q_w|rwF~0h1S8qDZtUBQbzE!0k*7rYOon*>TrvF7H=Jx=8|^N}sTQobp&=jq*t z^zq;RV?LJm*wM7yOHSQN_kyqozMGUvmm_Mv)}pQUH@`Qb=>p+eUxugZ5dKt}Q960AD3 zTxvtiJj+8e%MzY7I1ZwvUQ67}pL!zS#g9$_fDl69=W-B3!jc$Lo*@{5g9T1Wu_Cze z?epn0t4TS=mXAc-ezr}IZ$5VAhO(D}4G6yVd|`PZ70ZSI=XK)JNqXgbm(!+f-s{2M zll@)sj${g0aqy=0>p#DqPN7Omsnqbuf63dDEQqqGsFBK)J=fBGA6K?+zCuANa1*PcZ_JRsj+2S;OcEuFyXC$Jt#^hpEqi3JVhB z47;kxh~-9&9`#iX=t%QwjcHNR0gH|Xyjmo?8T8h$Xta-vuTZ5Co{-F<8@!EC9_-I% z=0Wiyz^|A<$};e7l4MAnDR~88go+eP90&5i{tu1B1hg9rR_YW07f)ZbrAH265!Q3s zD<(}I$oHOM2A{(I%Kr{)>EP1u)as>3YFz5Sc3iK0>Hmwf%1si5unPElPhQkdG`w+H zjh7vP91xBD@$Z)Kw8np{3Gj!~Z|RIJLh?3z@yic7d3Pf%QDV{k?Cyh9ujP}+>CCmu zd7s`m!<$%cEzcX$%fwK*4i14G{AE|(JO{UWx~AYV*NdUJdBp63noyzF>~?>p%{JN!LOxbeP|`FVQfyKmEC zXZ#=#Z?v3i^FYdqz@IkG^RrUP3N(vn9EC}!g>b|0(85b0!3_-L!FrtAiFoo%Ne~L) zB4SruOI{OEYXVr}w(fkxXNNIzh72N{bULiD^r8h@f)(fry$mk2m=>QM))m(Zl2<(d zW*IAojfddL424=)nPOA4PzxS11?7IbyrMpHLZNCaQ z+D?bkIs;^$mtPg&&wDE_ynP`VAA4!TdD&Z0PD9}^E{f^S$9L%N zXLqyr!w_jwCR9MosNAoSmQb-fJsrImZDXUHauu`Ca=>UjD(Ob)eiEjQH_LNcKKY9G zoa}Dz>Ip4V-L#&Uf}v4F6bKhhP{>OK<~rqfboFR5aK8TF>ts}E|BXgfe>;6(&kXf8 zz+d$20kdHU0i6y}u+tw4$R7c}2Lm>thvb1+RFaa=0cvvPhCtPL1@PJ;(HTXiw6ak{ zI@=d3-K#Um!sPAh`=SbBji~HOh63arpbY`im6i_(3w++rgA{9eVr4)og47tJo^scQ zDVVq~2Zdm1E7$fG*#NeGqu+_2~>#;I0EX&{h?QCg=i7wTCm8@1j5peqn1 z-vjx+GMemDc*l}809bjS?@DUXW;~$%9vU?fz=vg)KDIFteV##~bKr40p_PUU1Qehf>oQa+tt;N@7nFJxMd5N4xk<@{;7@Xnjcr_^sI!l?yoO0SDi z|LaN!vd$7YUaN$t;~(Ubu|qaSK4g{O}W87HmK z9P`!pI{slMnqL|rIdo0Y--P}$(4iOv8EM!xM}u+d_^tOXBL}}fkHMo@Xh=I^%pfU( ziz72#v6VCgCk#!X#HzTc3QlHMh5ps^$LZwdQwr#L=7?vk9)0yNEuT_A#WnzMJ|E}1 zH2A)d4(TUv#F5VExb&S@(nfFI@3GT)7bfMn-ATFBj};5M-gi2n{@Fi%mW-6_p3f3a z?(s-{!joTRO)#IZ#Rf>a=^T#vjZ-iZqBUa_4!F4fA>aNr z9|7$(*w!?_Lxwc!Xx<3b*;ygVQ6AiPX?NrIoG4c1b?kyT(ZI&UZ~y&I>E35wc7{Yg8H)FXu&h6Ne1%^5&KuoC)N)!1m5)T9 zm=Q7&K%Y;;;^kU0F~uN1FTpB?humx~M0DTpefCv1f%Qc?^7jaziq)l$rESD3o@75S z(Mp#Sj`Gp+Da#SGXK9bAwSg?>olH9K{Z=E6|D!`0}j#08c#tA42p(@X0bpz3uJPEL;$ML5lRq1nvaP&OiuVR0KI5uQV zoyJj$b*5Sd_A@#R&KoN0MGYN?_mAO?FE^oA%pQA8H_Py7&9q`Z&r3&5i#*5j4k{zM zZ~hlKC4{k~f#m)_2q8 zfa(z`vsV1a2EjrXf1xur7&!AXq>FD~Ov|zMIwMI1zSwFqF+(INjRN2~j1sLOc|R79Ezz-4E1jY`lJ4ht za_bRoKH0RTSJOOmo8)A<^e__gU)4>_8*}C6^DghD&I5A4^W;4E@_xS`s8&d218wOe z+z%iC&hfSb{J}s(l(qtnfc&H#1@us?XT5`gXCeULFvp7^c0h0&pz4p6LK2~wB7Iu} zW@{dQQcG5neHXnmYN8k%eY!N0X@6`6_;jN)!uZ$jiDr;S0-%lKA2O&~z}|ZZ7#zZb z6d-S;AGPB0C-J}-48hBUULRt4mGu_1?$|ydk4rizv}9jy)!?{_oH3wFwzT}}01cu_ zM8;kjwZTfBoiv#OnpQrIWgs31*%-=Y_3J|eC=2qIAA)W|n@9oYgxbf}>X@4OfmCMVq(yi(td&twB zAl>)852b8!XRiwIVpRFS1w#9lJD{T65yJY6J>?zkO!LCgCA#v%@6yuoRp2=rZ_U=# zF;_RCNuNm2HQMz-<-Ej~ewTQ$CqI4uVvMSMP}X#K|Yu?6-U zzuR!fgHng>0`=bKPdnKJ^U_%~M}w@h4ugYLbBB6x8(;f_*UCvBMObyr$Tx#OyZ6jy zL1atDIHZ{+-c!K7@A?ogg`SGVWF=3=n4Wfq$Jf993aQo&o9toz&T6jwe$t1JzZ z&F`h1@@9GLi%=A4Zu@ar61L3wcIAHblaJH#DWKtpO!nnFgmJweX^ZR7!~r>Ww2QEXxW5E;-vKoKC2Of#Vh6yRlqaTCPg zn31DHb_A_t&j^hO`AyhPL~gyl0yb2Xks7&cdu!hPm!5tw3b1Y{MHEmtlKuFPRsAq; z_dPm)KzU^G1-K6PU1&V1^q~~5lSXJL1c>8lv@)8-yWci}Qe!~tGM|B$^COL8 z>^B*eTi0bTiWozxI!k+|!%Kj_<OK#m})gsvM8)XKNSBQ=t#lKDkPwAFu! zN1!iEme_bP!FUjk_mj1u_k5Q8$MHXuZyo=j@H`%p7cqbbJ@Wwy)-&;51c)*jS<${yha)te5EW$a$I)@LK|4_)cHoI9z7TgWI!45VFeB?dfn!YPcS4L%@Hc)tjkJqq5`jY zrA`~+yLuUdA`4PM1aW#HR5VlFZ%~F+2KwH5+<;l-HOfo~#kFX$c4%<6K5rz+eH=ow zi37=4r`e%SsHsZRbU8Qd8{^X+AXCLb74HXEo|-WcGIMol4VwV% z1%t))C;HEG*nGN9pa1OFw6n3Dbi&4?r|Cp24!i{G(mSuGQwTYw-UqTjQNBy3Va=B% zSl#!ucdvLXavO|PeptaVd0#&J>AUH;-1)`Daszr66q9nARl0mumSBy>gu_-QoKz0x z^;wxO^+d*ew@99>V%@fz=;wP#e)RwRzonD7K&WXOH^);n8RnUgnjum({=q))ngx5htgmy2Kl<_! z-TClNr#$xLvUQup3BgV*DISL8mFXhx@0r`)PA{0UGf&(2yI5*!bG(zMEbwI-**mtGX6Yjt)(&?#-+LuAKER4TcCJQP@|(ayMAE7Rp&?_DA>UD`{deFKr&VIK{VhGgW)*-js8BtI!-D% zAgOE&1*O^EMgK0CVJaRMkP-3lNkuoago|%LT74Qz(*yjJqZEo zTqT*+#kKJjs#3IhW1l`}NH{t}kFKH=z(|=%l%+9p45XIdGLFoP&~F#3m!b4vouK6f zOi|?Utq(qp?u6H|-H>+ty2U6Q4f7dlVD(G$lD_|6B2i1(TE;L8Zv_~7MO{5LA6 z3#LB`0H8^Y)C{;I-M{`dJ-Gf=GCp`8imaGOdpPzcsfK)V)ku!&MIFkY(;~Mh_pKNn ziPVW~M&Iu|A$i#^>!HY(9dfg6>(B=c(C@UMH{h_6an43X&b(yS_FP}82p zOms>nMgt2f%nO9z+5D?Nyh`((@aB!+8Dx*r4AR|C?kK^dGAlJ#ydO(z9k4%fl#ZXz z$J+8yyS)60g>~{QB=165%GBkVj`!_c*q{CMGkW$g?<=86)Z516)C*p|q;Oo62D`wM z(wbz0A)lx+(R2z@xIQ72dq2i>q%)FM&K{@5V~fe)VeiMrqs?r5?3N=T<<@nw6H!!w z%WdjBGnQ6g#pI1)WybBr7dLWyeg3mg)6y=(eW7Or*H|Y|z2t^GPt-p^0i%IL(%%A{ zB|$+P6~69+uIOpweDwq%7cWu`+A$3h9S1(Wa;tdP*js%k$aFOCUl(?G9R8N+UmpBRS(h4H1x274B8@v6d_u+?O;}MdY_lc36vt zU<4vCiSiB%BmvV<3kN+^ET%}mXh7$@Q?T4#9d^qN@J*BRX zZ{4F${^8vu`{$PyXtVQztUt)dw=b=&(z$Dw(^9Oo)F~~&%3ks$W7Ed-xiq0Ao(}=i zQTo1|kfmgndzje!@yU;W*_HR0mR47i5n_8zc+zS=O_<5e?2@k@%PZhp272L_G}%RR zcgckIwzfO3O=o!UMTI=kHrc1Sqf7L||NEcOoB!;O(h@S1%hIBOXt2kv`=FPL(35e} z*Z-17>}BXYr9JrylOG{~agizQB@vy4dM8?OViftw2Oow!A+6BDbBE1yR;Uf0=S}~+ z9M-zPpJ}w5KY#uzz2ITU{nld6R=k##jqmYY&6sGIwCEV3XHe-;TbV_}hMpGH_LWLf zGJ<4ozpJt{@NkKA#t3KO1nlr1gXmLNPUUmGixlGZx|^N1VC(62&R3KwD~g4D`qlFB zXCPB*-V@T3C zpcKSYEA{j8OQ?$gaMc5%HH`+?U9$>ZT8U~<#X;cXE3g09Pw97pu@&k`gFv+xw3Rn{ z4zYcDbtF%_(Bl0GzTIV}TjT(?jmT=07jFCqt7HUY%Movtb>szS3^n>E)H!6DZ~pcZ z+J3s;P0lQ&37+-)kMcf@P9|S?>smUkisMf3G^}#p%eY)bn7kF`@<4tuD))dO+0rHn z{C0Bp!I!t_Ugrs6BO~1lA_hn~q(n~JlI6Uk(w`tP>K4iG%LG)EiLXhSsA9uuKYLeJ z&Yh;W|K&fWQ&(Tn@r_1E&7*Go5VU8jT|<8?x5j@xF+^eZ_@^djDVa+drJZesK|j7o z`PR^=%eQo)iJxXo{2u1_VatCRAS^DL0rD~s9prxdCe|x5I077bCclRalA0F&n{~Fe z#>Kw?56h>5-(a7GVg*XkC5j4g^ml_kP2m7~y)2_ByYAnUubk|>7{~Lhk0`FLda_4D z(vQk=DBftum+q}yIFXh(@y)Y)yL)M~-ehVU&J(Q+>PI16R5jV1&{yw&rL$fFIH#q3 zWJXHv{NS6?(`q<3+%ra+H9zhOlpWEPSbT9HT8%^&=V>%K>KFN>o2~!e9fp42CEK5P9P} zn%7JW^zuvFrZvuVHgE(mUx*Yy7;Gt|8agE(te1^tzb+a9mVgEY?XLe_&*kSe=+veQ z6u`$CjAnsF)hur@!$#F`~0hP_Xh6`Tz~i^-J!v;*$Z;^+N&zx(%uR&Kt^S+A1}k2 zAD3fzsVv0``A;sT<-f7by7Pq4_OlJT{n7PgB=D(>qvGvII;}H=I8E|^lx1DHok!Ua z83o?~($-Uv3%Sjc4vN!q?0debko5+8S5Ce53Vr+k^r!irDrqMhiVfiedLTG4Eo`Oq zV?$e40VW_!7a(qQy(qF1Yipl2^+KwXqN|7MS$SjPhzHhWmS{G3Sy!?uR{h4cLX!+D~ zn#oGuj~%<4V^X{zX>)h?A1f60fZY1;^C@>N;uD;rUYL`}11lUy!A8RN1c zo)sR?@bPW$tUQ17?|+^0tNUL-48;Z@a{b%aPX?~cqZKOUQJ$7}ewLY{LIsz12E(>) zSZKj~dITYFk~g@8o}jMYaPaL1*;bj68UP3s#p4j6e`=%7 z+AdHFSG&IOh}J%2OtuUSXf<7S5u?Kv)>nm!KuyC!j9 z9vP9{Y0pQ@ml94o?>Rr@$uORD>oQkE?&=@?fZpni5cag7;*F9QfzFc3R0et;KYq!e z3RvY&982Xz5lS+C)r+R_OfD2D4ssj$B>x+MCap)T^#!R;$`dmE;Bd{1&>D9`9uNM+ z3E;zo=f#XKO6WNCDu2H49*~19UWtPW{4mTni{X0tH=ef`_n>l{AWq(4UZQiNfCo^h zEwUq)p#)|n=s=+q*o7uu$~AvvE?s1Jvok(6pKOuLI8LWilZ!+tt{6J}osENi zJ;t}pm=zwFPEDZ8-62#A8m<#BkK!YO`IBkd?7Saa&$i0O^Zo2f*S#NNumumYrS7mH zQcmYuSjrb0K9VJ6(7!c!4;AvNg}&&IUI<~3*Sv8mJmAxk&fWpQi2_D2pT;RW(kWDf zk!VWN#YaU0dk2&j8mOe@5g>{f2_CCQNBa<1^3VEZB0$78b3k97MEUHO>lAVbE@fe- zekG}|$YtycNVJ;P^pt%2JyHRP;8IE%p@JkPC&)cRzO?cp)ie8<#b6Q#CQlR)#ewHQ zEw+h1MfOH|snzdM0i*kz5s-Hy@LmKl87sQPix8045u_CvR1JTlyG2L{FqW{=U|3K? zX7G0b%u2Y+m{c}kx`?ua45(IsHF^>)L?zD^DN$H1KltJ%J-l%}yQM%Ovk%;YqLk&M@JLt~dVK zAJVB;FBTd@tJ%PiCmR<8`oH|{b*Uwi81@4A5WS$aKEf=}(5a1mZ6o|}vbdy^x&f>S>OY3j-2p|WOSN%IW83>cCD(hZ~+_5`e2skginp)pg_iii0avwDWbKY11o zLEm9R2F6oru{#cYFX=U<&&z4cQYRXqF$AX=1whH{muZjum6t}b0g_fIBzp5E>#e6- z9bn(4;s-CrM?OaP+?!`RMRFw12<`C^g|S>VSPX^zsaB0W8SDY!B}%tGyrp0(D99&M z+U4{rUB4^qZ>LjRel>+YlX@2gBxlCYEzHs4>SDV4gUjaQAU8W>if?A;Hg1TF7<8PR7y|BN2rdqU7d&~HX3Vzgf0RS$Y#j126h@8p4q zMnDKrc%YtHP6}1y0+rNMtKx`9XuFUf=YBjh}JNgJhWS-yaK>(&lDgT=`fMwbwVv4rL0l4 z3=7D~tXh%m;*fb{To3@Jkt0;u`b{QxFh5OS84$+%(Dvj#VXg6RUQLr=VVb=l$v6plX)t?1!dyNmWvi>>saG%2xBlfnrG@3AJ(*+R-U*^!1mty` zh>+;5NfS+g@|VEquXKUQYw87+XV3-}f#ivfR!*aiEqpce zL2tQbPtHQ}ejH1;o^#r*&g-(>c|Z2csaFU*QKCy*@w(s$%1)G&Y>emSUA+H=+vv;p zZ_v*AHnl?q2qFRClc#;*91x(Xp)Car&FkP`{8Ik$HJV{` zkN~}?K%p*6#=6aX2cskUa!fXa-gBdctgm{&*i%@0T@2`!&l-rjy7d8XgM)+sirBF* z7Tc3a!+4pH8i_1U^0>&XKrneiY0t^c-+r3p{#-Y?Cd;An z{YE2!%S6tTiv-MP$*M9T^I{)oAv^}u- z2*x!|6l!0Q$f-&mMK6imgh{~hPj0dV`P!G`1IlF;|L~`6jL+-bp3`usf9I7A(*xrl zlz%H<`K%|pUxplBZbGj@oS{7AcZ&gA-iZZU?7_z6faGA z#+&K+UXj(KbaZ7g-TU$7Z@#2KF({Heb<@c8f0H*V{*Ziw1JgwjMdP8`Gbn$(S^u0d z*<5A*6t)h58iqTO8GkSv7mQB$33QM%4wMD}VXDtc+Xp4m>L`Twnl0AL4(+)BMD%=k zPp5%^P>qtt}gm~eh!q4T0&NuGqPGm1Al!e(^! zg5(>_Z5eDZ{aW~D6ijCCZEts;_RnbZ(UZ;#vQ##+hcrRP33+Lk+zFD$1js#YPo9Ju zY56 z^&l(CGi`^6;~%@I^k=Cb@{5;pc@;o^{F9S)riZB~kn5q!0gVa7YqKVQXBic9i_63W9!0P#95?rH@wu_+xdm#p2Z~R9^5WUBK zGKO?q)YW#hYTfY@>T6A-vPyuBl~-sLKBF0BPpvF#;{d=bw}SxCs4@<~9nB8v9V@>_ z0YIIMvoM@KqCgV?CBI8O@-iVbNvS`+K!2ct1H_QDCqZrz1Vlt00^>nXty0pW(uTC+ zxW#{+r!xWvhpPNS*|P_a>EV~R)80YeSk4~kXZIeJyPg7_zH+gf$T^mm!tPJ>V32%@ z;kX=|JD-e~pc~S2okzj$0+GoJkw`47?|0spJD=X5xh~DZ5#EeG&dYdtZwTMC&d2eN z#>z7~e#Nj%x@Tf?kVuWCbZQs>l@{dX#(X3%d)?<27wO5(yR^N&L1$mTLa+Vt5A1?M zGWHk>y&(`h_j==mT$>M#|5(OH%@djq@{JKDn2O$s*x5wRcp*nw|7mSl#29DPJs$WR z4Voc57y%0ng~MRU7bJ95&o;+P4@e`lEY}vJ#>()(XVXTScz}^n$7_AgVq!PD<^+lf zA&*CGd5p|dMh8}+ek+CbKArL5NUJwilLBAfE5SwuKc1HTDr^AoJsG@bLP1+m3a780 zP8-UT2Vt5woO8N#^lrNQBdWY)u+EniKKlA`+N3?5h#-U$tOCfx07u_W<*385mqczo zkGQ0y$i-3KGs51MeDv-@x}BWY8uOAXHbB_>vA;XjQ?H`jB_gdq74-!(^CJWKX@+ea z(tZ;57OkE+p1dlb{KH4Rz9;Bk(-*dSd(G zpFD$40beqnWW3aLW2IvBfK4dMMs>NL0N*PJ305_Nac`894h(prGz71tRaTb%E11{w zoM1A@QGhh|e|}?36afs&Z}&_xw?1>pod*jt4-1$Pkv{8JL$EuuwCB}zsJ`Zpy;RwcZbZxY^ zyGyq}{50wQxrMysiWBitVfJi@F{64D_7N1e7%`Kwp0`Q3#w75q8tg<(85~T%0RX~Q&#ZO=^0<*# zW{Y>X_G$gmx-PxqOZQf~xV-V2^G|y};4;7{$Jr_oF)h>L*`Zq>-J=ddXyGABP7*hb2n|I=g)K_?%otGNQ`!0Nigsn zG7`-6lnwD|7LPBu>Xg~asg+LAEYe4R_hC27_Y7#Ye(UuyDoE<}nCFoIOIe^NbMIr% zOS{N;kf!&bO@SYj7%+VVFjER023B=?a`uh`@A|c>dr`1LOGT~+dC}K-6h>8nq#dWM zp(V*!F{7UB2~q_0lfmdiKoDGwXM8VSMjYpcTm|?^6|5ey)H6bw&>ZE#XQ?01fC2MW z0u@A2v?X9lSuKCWNG)_)y&?cOX0#fK42!4}_>8JKdXT@>zKac%UJ3 zBN~s$W8|Ap@{(q2#-pkaYTYt4exP`_6ss366gd!#bxQq=!^QAz1j!GLJ7*{c?c-<` ziXTImHyA!v5h{I0s>2Xq^Vf%8-lF~OoxJh8`~CR#gK{TG4ri`hqPfmPkxwMdOR!Qt z;&mU7%SQB&k80QbAEiDc8}U}}{CDevPigzfGaB)7t91WI)?4WmL-vA{JY_&)zX@+s zF#V$wnrwvZ?InXr0Qsc*%?XxIuBCk-ya|5u$x}M@+GV=-r+?7HEWJKcIcI#P9zNHv zP)#oYsx|=r2wpC`NvzlwdBUI4oER7DVIG;_UF8A4tHrfqpsT4lEKZ87aEqX$ZHqg!-|;-)NV05r8- znM63)E145z$qg=pDS3mk6U7r$*#tWG=6O1Ld`Xu(vC!xEJ5RPc#j&4-JzqT7c}mW` zaV{AZdK>v(ITBaA2}MvRGTHlaWWE!`8+84bpJ&gA2*TjoDzER&#{sij+-5SV0G^^4 z0zq4mUO1SP)qE~*ab+njzv6p9*qxt^kDcTR*=KJ}QE+02O%arkfz`YuEGTW_{g_`` zpp%zQ(st+lc<Vkf2IhlxH9`LU1IKwZHIM zv{PgV+ktHCyJavDDGHw6NYo#=#xKItPR1dbI*4)kB!n3Ie^kjLKnJya(_R#Q!@9>- zftJc-bQK9FJm5bARnY;iSo42nBzd`7${q#s6(HB8kQvEjhUQhvb^ulpfSo5PYH?DO z)T5^>5RF0KD~pjI6U`7S1G40W9w(LQv+@$Y4S{O=LGlqpMr4kTfAZthm4mDf!w5TI z{oW&ba_2$vcCc*U-Q1#$$4~YB%DGdtcJXXl(!|S{(h=^ZY&IJ5{twm*od;!{H;ikY zbyARAf6D5tosBKJ*%={YKDCg&ARIsD2(kynjfrR#jioI_9!NLH@~i#by*%MIDxQ@| z)`^QN%iZMH(XQSPk{5*Q{H=ffBRYQZ9MvHb&>e_kQ^rAjhe1jrvQbuNZt@fALe=;; z5eNAiN5z5hZ=x~u%C!jnP`;!6@aDWABt(-|MU@tilzN4x z5H>0|pL71lPA=2(+A@9p(bwtz4{2CbR#;K%Dg&zqaH8*<0(>pljHH%92s|)ubV|m6 zGJ&G-=^TWvz=`mgfD^Bc0ujJ4tz&7&1IHu5ekUW}eny10;&-Fv*3&tB5QdmQ*k>YfDoK)sy&8;;~(oBtY4ZQn@Y*|KtC9< z4n)_yO(6eVdjao7t7)J)&N_^ zo{SUa)5ch_cBpCev}60%Gvjrn-~|AQ{_w`M$n&}p2)Mm`3$3w0*4`i=BK`spu5<}m zS{G8IU()S#-i{}?@25$kd{k|qhc|9%eR+fW@y-Zg`OkX@c_~)ji^%rISdVZ=&xdS8 z_oF!=d+N}>{n6*0$7QGUj4$TNtr8)5+UMrdZS6sqa#`YhSeNLvs63eJTW)WcBitq4 zbZ?T5s6Tq*c=Cd5K75iskDfeEum3lHn7l67b^-dy`q6aHw44|g^dITkNYs!$?mdhj z=lviUG7-HYr4_YXBRO>vs2-y3Q^hBlOm5O8*;SYZ@k%`w44YIEV7Li-VF&}x9D^@d zke!lO=miZe7g}v0AC#^(Vp>)fGPIW%P}FZjn^`XZfF=zjm;>d8Uy3ng1lmuKEA^1Y zXRY>%-fN47LhS*f8Z=jR4Ahrn*;eSwS~Px;7MGS#<`keK^hH0mAQ606UwCyYNDwRyo1imO_uOa=%+U zicx}Xh`gg(!CPNu2$lv5G9IwZh8~>42D(6~M~iGPad$Vj>A{z`^5*Zk`4o5k;bYof z-%RgWhM&3mN;e616oCCC>w&pBy$2*Mu?^$AReQSjB{CV~M5>)shrC~Vm+PQQsUTI2wTzFU?;DIM{DR{Ehks}# zYv7b2yj5d1r7wiG9Qy{Lh2vTV&WjSdYM4$uk^?Z1)=rWsbih{`y^4haXc1@!h&`E z!Ft{h-u*3h9+Hz6Pb4?C-1EVwU*-K1Q@8P)6~x?P7W6lN{dMPtUe}rnNHk>O+myk+ zfQDH9iN2|_@Eh5E9OGnwjMCA#Y<%zuSez$&J$5&CI}gZix+p3g6HL-q@!sgt_CpxdS}V2UK{j4M|8m4wf|6mmUtn0(e@pMRD3XYR;?9>*)kwgdB~KjDg~#`V-8Y<{1YA5Y3@idKKti5yl=pX%zmNL!De z(Z++vX+OxZ(SX8fP=gmtqX53%yQdd zkWJ|_Xbt8_{03Meks(pzpc1Vhp8^dxTS)}77DXfsG$Sfw5iE(%_S?82sP)^j%m@^w1=gmWp8^o9lN{NDZ6}B@P0m}OR}E|9o8nO{B?O( zT0cBamm990T1^|#Km5B7I>oZlYh%&vX`OP(IzZQ8Z}by~R;Q8828RLw5&DX*^*ljP zkBm8jE42@n0wSM^E>guS8qx5Te4!@a^_P{911YW;tphbfAB+K(SKQ%e`phVR)-tVV zpsfbI%Fm%kPIP&cvgAf(p@$lsZfMQ{N?9(U;J(m}vwi``zxJiY?YEUz?oP3n|627R zhnxG$9-OC;g3_%W(E|Z>uf@h6&?_=8+IYk=qYy{b1jX1sT2};Fh1LM*TBr!*AeyEZ zp3)Ilx>jVmVBM(kN%tl=I(sZ=a$mBQe3Xj98&hc4r~}ac#F&oMAOFFavMQ`!SLdCN zappt`e@tUve>#v{vfq62jJBR^Bo71&boM~-vaD$te|+KK+0F}+Pr;g`dp1&?M|pCI zmtbXYMKKy&`;s@5L=T6oJJ?vb_xYE!^=v)gie7HQ<~W?M9OoNKW+{si>G)60T?`R4 z3gzfvHB>0-(%z-x$I?EKbdqG}?b&+#H0>FA_50uHyd$Rxg_P@W{p`zN@%#rIN>pv? zuA1I=TU1>kUY+QRfc{2rxt!Vu5rd2^QhnsgQl9!R6I$Mh=J=2C(3tJ8@m{2mPr-^W z<|$Z*>G)VF>4VZAWa&0%03jrx9phjg>Q0SuWEr2^F^SHY=)YZOg1QT{iX#tCcz&<0rc6`u9psma!SfV-XMQu zWhr|eLEZ5W&g)sRut1>{zO9$I%6j7Bp|Yskv7J6h6itG=jB}|FP)-?Hy_e_ zfAK3*TF|;J1)!jTXt*y*^H_hj!4)Y`Yvd5jYg3n>N{-QMJ3~#%TU4b-5RYIiD;@wh z!6<5ZMtT)Z@ytjwIu8f}iY0zw^GHS~G!uo|_#i+ljpBTN!jh}1|E!L|upos-mcjT9 z{%Uy<+`pkOS8)83d18Vkk%1+>9^A9<8iwTDCv zrOl$2Cs`q#wj2ibfI-_KI_gjTkn%`vj7WZkd4Px7!3-{PbV?p-)K#Ge(t!n`Nk~Rn zFGQ-wbf`Yz&CvKq9foQ}0A`VWngO@QMv5}|MuvD2F zfj9d4il`}K3kk9LeJHeWTnlr}n#9I;HKwa4eqJ;qr0c({{FzU|3iLu5AP0FV@EHo& zgDhfvevpwcf*F;Xp>Za1C{B-7eJ8)83XNFPRt-~CgsPekNFb7&dAt&x|vGkB~j_li}S0=KuBdyrn)J7il;sCj1n(}>O2vA z=f?G)eO?T>sRzGBkOi4}3PBAWt^3q~9)cseBSenHO`FdHNHeKtseRf&uD7EpMaP>JSn;eH-Gc}~4(pU-#wtHDW2uxG3(#_W82f9F3Hdh? z#Q}~*S`~0sKul(RgSN9Kck!YhC{h9a9S~^&D0AQ(>aWHQ!T68B;AmK&yqY1iY-Gj? zPzw;qZygN|pbRTbeCIqUrTtK@2wnB_+87BCSKAQV0ous7EjB}R^^U;Dns=3@iN?_H z%c|B$Y=11l{wrltKVCF$#XGV5lgtj`w$@<~{mkDe+Wi^rDJeHmo1PW7R=y*rbi|awiByyE81} zm@Vxv&2`G{Gfgz|eITjqm?Ol_d&5h;)-GL0&-rHb%}0-E^YN3E{?hlpO((Bjvi|AG zHBy-hMH}zxkU}p7Rk$Wp*+m?%T81wxcq5a5AKQY}Wmhvtq(PRardO4yiP36V&`RgZ zjji_Rm*1jc2wT1=;e}j+)ta$6h`DBkp*XXcYsjFepNoV*IC3v0C4fqM?qVsyyH zbNyb@vzwd^g4>_orpLD)lhnX9QH1uT3Yf)uQzT_SI&45shRY~>KiFvDlc|mzTTC~u zvw-K@+4(=h^!)O5T+PKGkG(iB4QRMRz{GL!bQQ zW7^-@@3pJLFhzM_y@zI!wU+{Rxq&__KwmVjaYG0;?rR>~e{#67?U127PwH-JA!qlS#o zb~Ye}@7e|)07vXw_$F;HMhJqATrH%)xVRu`8eKbK9YBTztC@c{nCLbb7Q*)WJG#6NdnTPsyL|>3VpXe{EW7quG9Sd zLh+>JrC)jJuSCz!#j~Owa&11VVP1wjNqa%chN|>-TJD%Se&KAscciP!_LB|T>Wr<; zCr{F`!&m?42c5oJG&(B_FS^Dh6Salc{J8Nt03|~$=Tn_x?CV{E=hArSWH#YID9$XimU8_M%AIP-TgQl@g-`Eo^NByRlMiYYK z?hkOn38JS_F$~husB#Y-&t&C$IgTU)DWBvurM=GRU=Iv$LQiXnix(ytOGLh1N@iTX zmJvq92norcnp>KuwF@UZPtgK>@V6h(z3X@TU@XcK4&aSgi~q)E;m}yaOXR?q3ip0j zgW{@`Ne=`E040`Aluhkj?9b-rWi<%2G#}KARZSw&9cAehg0zZWZ7FJK+Mr4via>l& zek;`WY028CH9l>r0eD#zH0O#~-J>@+9qpBzD(%#obyFh%DiQFnqF36jzr-mTND;FE z^J`bQ)P=l+C?GXDm?1Rv<)N=v&@_E-oF+1!qZ))O)2p#0@=U<2Lqw7v#Y(n%%5m&r z-pGNW&a)?w+rTN}ztMQ3Wv~e=$!7=ydWVR5OGfO6(i^owf@`~2(du-Kjw|%G__6Cj zVxg&SlL(U$k(|uP@qP4X_a7&tA|J(@X?%A7iL2Z4sgr4+Mw;B(my2zK-HJZWUh|O{ z4KQaLv0$=#N(*g0eMWabzMeO-7mr6Q$E(X2)Rt6*75qUXg>MsGW%6x*Z#R90aZV%0 zysw-&o%X!2KHb~dNhe~7$LG>_J1@xP3#5i#=r7+4SQilwMF5z$kt$(kUSTv=b&Ryi zpo-V@ckLCmJ{575pS5vWjZbR4BzzegaWsz^?`FMk$=Z6HF)pZ$msuF{cRXC>e_q&4 z=q-y^XH{lcw)lJ&gNiboW$_-yxWO=M1A8xaFu*1XRfI$=+9-IfN!cg?pjs=HUKv5l zM%mM&N)=9dIngE4lNH=J)rY+wN9p+KzPuV(1uZ9gyHJnm*E|K*B#i>-P-vsN zN_8ETAB)CQ@LS62569>Lm=+!ZWydOE^-~OW^^|GlBY@?$Y!1jCTak8XCaEz(2Hsrk8ku4EO?qBpY`!AtCJoEkWpAtK}*h3q*bl z*R#DIkVI%(s!GOjLoQ$IV*pUfj|i%~M@x(=YX_i3WNS|!ga&0|3|8YGQ=x9tXI5S7 zx8R0St#dqBG?^j#gGlzsm;?|5S3!P^P%i|%*jCWq`XtMKs^nJFV`$_kJsdV3JxK?W z$YyeWzkcswTEZk@^~_q@z@0XDr%ik19*nuX^h%E875R{4#K@NNdOedp`?4^LH-X>% z8%61~wG<#}dOebL_oly3UWZgJTdnQ-ToXQv9 zcE5QU8s7`TpQ{(n(fRLu%k@hWf5eu2HczbYzTny(Wv@IBWaDufqZ5x(UwKF5c|j!+ z7(ZF$#hwZXq5ficN#ss#khH?kyPjOZYR1@nhH(+^)sx9X81Y32FOT7E1Yr)eSY3$2 z#z(CPN3GLIX!al&dS5eiReJBISFgbW zB^nzad}FxM7xJ0xySw{o9d0`Psxv-TPOs)D<%ExPOk!CJE3|Ojg~f#=0A4q z0g_I?+RYo#^)P|bS9*kGpnMLz9P2yE7aH>35;i{g*7H*rPtwxrBE9$T-lMx;+(lij zeQ%Hez@ehazA*F;Na-?EVmw!S2V4lXmJx*+i-Is)3#UQ z47^g6KhEq&KuOt%sX&GiYvm|N^7R#&s3v+OFo2*vjQD=vS9}}E8-p!*P}R;rBFSgH z=07+-6n^LdB;{$UZ0l%aP5GLvtzaAg5!CN%Y6HcR7Vk64VtPb|gS`M?V`HzI913L# z7U!|Ou}Rxc)-}%3$}u{+wvy;h-i7`BOjF2*j>ytjT{b%+HTtqKQVj9bhf_07%J_P8 z^KRY@e`Fy&&&T}Exf2+rt+|Rk*_L@^> z4-vm*D4;<3&k3Pt?~8MuV;gn3)U8cw;asZ}=UDFqdgJlF&J z$s;-&7uZh%+A(@+lh`ZM8#krm(gs1s7m!=Z5_zEBK6oFfQofpHfBYMUM%p9P56UHM z7h^o%UVhxkJ{AGKwR}~PQd+@^4kQ3MdrG{l8Is7g_Xh+|1)#vY;o60$_8_Xr>lq!E zwI8$OX)4iM2COt5&hkT+q|01fy8z1()wYV%&e~dpK@{Ly(o=N29ia`?OXJ4B@2fz5 z{2Lghc0GwIgICIpK3YBgt8Aj{SO0Qnb30wgCkKg$-g|cck+v}}Sz7D71BvdUZ&F=H zSvIF-Sa3*)@k!N#vGApi_gs^wckie2_}vIjRTS@|7@q-jv~snpclL&)6#;1();{n{ zUKzk%m6fw6bL@0-;`iUywhN6m&3bFvdO-wzi@&88g-0Fh ztHQ}g?i1i2XLu9!WLMqyga$>VzAP+-ww@n^xoQJJ($o{mt@w35H9kA2JPH4~xbVNW zu-1jq;^OuTX@K-*cAg_0hv#AF`gzMxIc#1%BZFY@$0^LxQ6=a_I0O$IV36DFBGuA> zDs*6qs8S9Bcp@Z~uyU^K?U-g^D&?@CWHpr&&T7%U7mEp6dz!eqJ^< zbB@C6mT&MNl!nJ%1QJMq4(Q!TzKtqEN~8hgL^f99Gy)iIv>lOxmAa%@&oqiLLfDU3 zxELz^dSdQk9Q3;@_;h5;tOPJQ*;1vMmi6`4G%{=M^N)^J@f2mAMxX`=N5LEsQNOjI z@c~3DNG5Ejy3!HY5j;Av<&`P_hW_Y?u8i1c8ETCW<7cZ`uvcIx3ZE81;CRpE5veeM zAwn=ZEFURtKu-oYmLe31OLc&!qd#aO%RlPp3&2x{f1m*!=;fUE%!K4A*xlU8UI{pc z_VKNIDo8Y_e)KL098A)D1^dUrri?shi!FV3> z;|O2%CpY}>)&y}KX6dWvO^4+Tr9H@K`JD@ki)$}0A}nEuDGuwgn3eu8G_>L!G)T;_ zKs8+Q6(EXZ6qK!~VAVV{qpqmD+LSo(o54eQ4oTK7p2$bvCaD+HUA?=tn*=VODz$og zH3|H<7t6&<({lPpsaMDz3cmTAZ%)7Q?w6);b+&>~EfqyNa>CpMTX0HlR20sr+;+au z&5*GdgfBYe-qLx`pp*)PWPi8ok(Q)W<`+&=y+64RTTRMb*s!=g-{DZ0gdo1 zR;>$)$1@QpR_s`5r! z18E(U7NgLYQH>MVyCJ~kg$TY3l1krWYHdF33mE^}55bo!9;LSJ6d_@qt^jnR$~Z9! z`Tzm@O8S+mnp6h~RK}Dp{VNs3B~vQp9C9kAV~}>kvMN~|dll8O<&6%bzt7cyWTHUQ z7g7s*d%m6(swM{(F;89Ml>%&$M|yd=K^qB;cGU+|Eju$pE2@IBI}F2KxmLeEJyIT3 zQNZ4F`53PRpEh`&+U&r0zI!8Y0!+v8K75o61L@ymC)a3xd8zYU%ON6p%!+JI9*|Hj zBP_;70OLd2Q)-pG_A#n1{OqT{N_TabZW-&6u3WdN>M!N1vS%fSk!?cf`0N4MEgR8G ze4fDLIEyPQw0!bJY9Fo#d+0YFJxV8n?W}LorSH8>m%jTgrM*A?0CU(-bA3TXJ$Vyh zJenAc6+b`#{S%;HF<@HE6UTJ~8Rx$bk0pLLg3BRW?+?mjR=U>nAy3L-(*G`p7t#PZ z$f(en#1IA<<{%4O@|neKNW)>uz_j>248&288Hnnv6pY6jbcKEyA*g_CDkMUIlnd0l z7l4)bcN|rrn_?CrJ4we15-lA++8GveDF@z2Hz@{4IsvPA7m|^%Fiu{KJ0IWf6wGF( ztE#_(oM1R2(Gf=KQWs@wYkbQ^fU-A(Z>=pSU$Mu94J7`}`&IUM`Bm9?&dbM=hh}0I zNhSds1%4n^x$TmNrJS@fH#eWW9(?-O(y^t^sQQ9#eR9(!@trGujGsY;ya!P2Og#VF z@_~9-*s=>$Ca@O?KuXYeLX;?(;FPsQ7NuPv5Xp=*(%@#i0=Y4X>7^V3WrSd+HmV%( zb8k?|DcpoeQrF&qvid2HTR()J2DTPeUakA9(f1}daOs;xL}i}aCulu9xdw!Lv&)3w zA!xryd{RJN%P-rMoXQ`S-l@_WP>7IA1%^s|;cYa!#6u^B7lJ>nJJ5xmpgL~VY86=M zMI`Yq;_^Q&FARALungfHYhCNp&>MiQ;jgrmwsF8dcb<-^!8{@?Ws9VSFjYD!z$}IK zSU?%$$G?G4%!dZ_s2`KkSKg}uc~JEisx~ckC;Om{$Iq-TN%Y7m_k8$>{l%-kqEV(VYo5HxB zrjsDkK0`j?tI!n7E$MTe7kz1MB^xJY0PS^Npl!Yx{^_%HVd43AzSVg_mb6b@kLdWX zx+zBB5$c5iidJ;SXjF|${6u5Na_9vc|D^0oJ6~L5b|L| zX0h``u=nHEN4L@@a8dw3CZt?lf`NcEwG}j;ZZt0%ZY0aD*zlOk7g34v!FxbBu))Eb z-_!D|o&6;EC;R2%!P4kynOSM$Q90{9eac$mQTDJT1jlqI{1=RW3fN;znRXRCTY` zTk;41sA5G0oUr673`P@~u_A3tjgk%c_~!_Y3#MpJWW*sJjjeJ68G8njv56pBs-qJq z)gX{(!YAHXs>B?$h_7oTB|$+|sAP5}+oE|FhbDj2V6XU%)YvjgOOdX>u+NE_!(R&( zEr5ob(m)4;88^%AC3 zdL9OOo_Ot3XLn1I&;XvUY86hcI-jb@u8#sd4$zH3 z!59G$kB~<_!zUT3vY{{te^hbc?_TXN-%3~m9avIt)-+UEHt4YLI(!slBS37VCRdna zcxxl1u~s-E0UtfcjO|X4_W_Dd=qDTOF~ayK^0FaXUw9xz&d`we@+=}?Ee3$d0et6a zw7mM@zLHsBr26!wPCjSLn<{`5EkEN+p<@P8iTy(p#M2`EWMCSMuZ)hZqJgMygj9eV zjX_hzkc=Z2kFN0r1yAFVLFPJ40wWEjz#duog{jZt{4N|C$A2e?Cs_H7EdEj zf^q)51Zytc2a*LEuQ1r^46)751HyYjmQS6a%fJ6!?F*6Tt}Ugj33(Y9&dKGVZQBpQ zLxjq>?j?!BhyC&I4Q9&&$Gnm>1K+hg97Er0n(?=K>>38mVR4|jD+DZ z7VuE$0mc~?@?ov*nZXHTFYTSOt2Bz6!7B<2XRU-riHoxqwgiC)frQT=N$P~+sm=g7 zzMMr>ge42SnR{!Wjw~;xJrI%=FK3#_rt=t8@Ut<%CxF~|_Xh23Y?I7@s1TS&(37LI z3_c`c|Rs;mPtJ|(?UxDT4L~o zv0Q4HXWOWpure+i+!vRZ==7B{wEk#=-u;Vrov^OKQjM2vCWf4#uLFp4z(yVjnK1_; zLcb!<22or99BlSn3@5CMJh$H^7X%M7{)6o$@I>2eZvfux%R2YV zrA2J+8zq<#6wu?*1~UN!8Q@XEcE$RkEUV?3r;~<=gtjXERN5K)phs==`JgA+MJomp z8fS>1y#8o2bDgd6ilcfkM5M8L?tM#k5>}{qNaPBR|3K}wHn8g7;cULiK=Qydx{pRc zNf(ocoYRZJFY;t(V=GM_2_Mfd9_c25PUMNCy?po7C`3Chz3klxdNjM~kO17!GU&My zk8j;cM*#El5gQ-8v}-g@x*!D5u~NAyEMY9XAr}<#cb=eQJ(!kZg}ldQT6EE|GpA@i z9k(mGahmp^Y(IXMPQ>B@ul$qmcRFo>>V77wSTyu?W~BD`?=zX{dBUL;hsp}jbB!Jj zNDmBGOa(@jqa;=g^c>+Z6UueGmeEohDzU~c@%d@{uRXkw21v~?Lq%cN8!$8_jum-k&Tb};{D*IS9{xe(|J02muH~L#e*^{WygdDchq7s zp615o)T?}{VLJJ$Ym*ZfPo&S^{>R_YXTSKYi5Nn_euCFhuZDaT{%}Abw3nEOLE+F( ziI4M9^^7|K=tf{jGjNlE8uESE;*Ku#HGT zkJ1CY_;Bz%V)5bE@m0I(rSPQJ_Q0^HsBZv?Fs6skjyVCf6wV`C#giNTd` zzboMc?dfzO^+BTndX$0SMHw=J%VXYn9pY3C2l0Ba2V`e+Q`5~YEOcIw6XmvX@xJH6 zGrx>vh>%cRNA8a2{Q76!(Djs4K@ z{4X*g{a;xa#Zh>nj^VAX&enSgEw@~ASnIzv{d>ODjw1=-u^)>&XD&3k|giv6Y>o zuKF}mQ?3f2QgDXPsRAYdg7IhlJ%Cb@87ET~!uLRBEr=a3muR4_;s9M$aG<8fH5IMM z7d9TFdnMxsv@D_NCCXoCQmqhEs8t_%Ko#{*Fm4N|%8MbHlEFyOqBRM5?|=bHa&eId zTsz?SkJwfOfSIW7kf`P3OkO`fz)sKxCMWx%#nXlDmW`wc>2jaUGJ0b5urw_THio5{)j^FkkML?f9ukUu2CC$MgPU=9H3FD(~c$Rd}L^H z#z$>b*q99dHWdJUH7=p3?66MxnjzEnGR8z1Pqu zvL{gX?&XUKslo;$s$0w{kuAYe0|zimltWI6*PSQp zRKM}#$$r{keq?1?L~FUwcbe`*+3E}-HbhweoPG1PbPozaTcQ_EWhL-hbg_N=qj4&| zujw6sMmIj3tP4I*dlZ$|ZL$aHic}A2Cvu1mg|AvzZI+QSgwbZ@<;Qr?3Q}2uUg~bU86ak9F+I;Wpt57t`(Vt4s9BPd=qD-u(hVc{@1$AE9p} z)VU|T5ofrC4kSw{+Pny}$I+{NHL!f{q%*Ywlw(6H=+{tjj3{pMim9fJJdk$ax&~&x zIY@alzFO5x?SueKXUGApnP-qH5LYYGT1k=_ zT8*lZk_jU`z+Q)HY}@QDsWDI+K2D5y90_#y%k{K{>Nli=a;%?1kM#t@ATkLRv1pu^ zW{207Fn~bq8wV9X1Q-t#d->FcY5)coS*bMic#x{`ZzQCmN%kT{pAor=f$k#rnZ{y6 zKDdsB$pRVw>V>8rW4T{p@SVs3-;bCkDxp=qg7F#~AQL#QRscL7BC^SMW2E@GZH}(3 zCb^ssK$#X?pO;F>alBbxn)kvBA88snLf7O5>kYns|S&%O0J9lv1j9o#ZF4r7_la!d9s-{)jBWM(&5dJ*L#s60b_51&O!ZN8vL{xx(K<=J0`RhtTWD^ClChAP4hZ25g~9w9;)P$o_sHq`CBDROp)6fW zOR%Q7{Bb#ww_He=o{d1xI{pVTkoUU3jr)(&{Ub8z6-IUhuTJQsqv>PPV^U9*S+Z$f zjFaSn&!;d-AH-yAjp)>sOU{UiWog+~XLM~9BZT9edHpJdxxRPIybQjMt`D@YOyp8Za*EXRY!x4w?3;swWnzyjpPsQ6&>>%v0mtVQ}W} zQh4DEki!}hLtc(nUbDO=4zPU#qo!4^-ZeoDyyf+&=unc#5l~nD7CkT`1Byi61*{6K zXgCy5CJbaCS($7+EUztRq0RYZ`I^#C_NKIWY$<{LRJWLok7>CrJq0#Ey7xQlJ9Ouh zJ9+aU5rC^Gmy4Hr7vqJZZWa{4DyLGVDvU(2gtRY%ms`#A#e-@8N4}ebl|?o__Vvc| z>0a^BO!6|UbO!shc$~^HjoG_W-1c+kzE2(&-dnPGgpQwGqlF_!=+l4vl%CvvM6-g< zg7==9@UN|xo?c7}(T2RZ%4=_!15c1#m1On2B1yrX8nFPTB>(845&VnfMxtumXfdU( zqU1G7OP}=<8m+<`kRI!3#6)aH@&L%RpeRQ1PzcDbL3IFntPVKiNhGaQ^@1HuO{Aa> zr9mI?qvFiJWh|Qk5#W7)X#pAF>#%dz}v3NOy|l zrCgyb$Ex~T%YX`HWlQ;>_mFfP|4nwwDU6iq%==FwEuUP=I+0{TFYD9&-JNtF$j&-1 z!&;#8@4T6euBr>m7`6T)0nMUEwHpGY%KZ`HCspHLu|)`#TywQ0)NR&dRg)B%8vEH4 zzA*ek)CT!OygZA?k+<6h6uI|?r;xlzI5{LZ=0yvmIGVmNOR#E2lrYPXsN+-_(oi{G zq0w_4yE|)uaNd$v`t8y+GII*42vY~0P$Yx!2^FXkp)1nWX#=6nh(JZio4A)xAJbWt zB-G31yU8S`4d@K^IgJ2&iUy?E_~4D<_ddT%cR#%&L>k=%tmO+v0Q>}7Pc0`oN`+G2 zi05N&&W_wo_j1hVjpy^@lyBN}zEke~=sX|$`+G@o<2#S&y}x{yb~blVRyRAc#xH*MmU@y{S|UgSfH(FLE8%B?TLDo&az(%NORVzrCWR4|$A1M_04yTT_0>Wd7xamZkqBvU4A~!PpG#T5Pb7ev;J4=) zdrl<0U`-l&hDT3$xe&p~DEX1>YxD8YSQ5T=WJcrHSOHoWFDK3SF_53tH(80^J>cqKYs$GWw~zsIf7kN=1|5J?GD9zvV&A9@4HkLw8IAKJ*44_UiJssNYk zYpQ^nO&&?P%A44pp;~H(<3G_cO|rUJBO;tqIhzlkrc0z0Fj^CWw?HCiUL=XNdogcO1p|~OcP*y*T?pDUNMlO<%3t2 zR#(%>UZnA-X?Zg*8{Y0{U@yqt_70tW<2716f6nt2f!uNR1hFN2fGilR2pDSYrGhG2 z{fWr@MaFk6381RADlei1T7{O;Fl0as#p6%(j)ZWy{k-+~cgC1Kr57oL&i3d`<`-uZ zdT4+t4zrkWR){mok$h_p$YGejWi896xCaHyn_vc|QXcw2O)AK+0^sv7{(U!=Vl zy|zKbRgo14W{?BAy7TvO@qqABD=tTtUZq>mN2BEN*xT7xc7-70AK6UNY7v84EBlJbDy+f54z?d^?i4+W& zK`9&{Z;8-ii(v41fQ-Ce(_)I%NU}rV42h&Wu53G#o<1 zXrPMsBY-cfgtbZWWypAou}4>E)J@eh0FaEMU?aQ66!{>(4Mb97{2K|jnY)rYRUPD+ zjVEs`48sJ&FCJ_N$O?5^I!T1IhElHK7X}_r3bb29eAl*|EMrOds7}h4XnoeWRH_^z;u;Ajv zoTk%fi;Hyp!daElsU28fb#eI=EH*;+I>Tjgb%ic{|J%KGv?1@u4BDOn2V0ZPF|w%{ zO;-kSpEs-VPwuBvRXAY~wcUt7B>S9a7zQ;qYmJZ4pm%6&#ewnND&qwVycu`xgDPg2?Mp2tW|af;x!feHdz>qeSqljb1Gzm)3oF2bXou4Cb+7@e{dO4|jri2|gO zG0xWL%vZ2<1|*#}X!5mzDSp_c$=av6BJGYpJBV! zMp6Kv90HaV+_*y^XI>@AqtI^2wSC=?1PWzRA~pe?k6#-d(dqo)Ytv|!dV<0$?|wXd zr}9YS+7dNqFpLKy4U1P(lP-6tzD)i!L&p66+w`@#b&H^|5vui{<8bXw0s%P7?_Y5!*4eMm7ve zm5YUnx(I5COGuvycKPY(=$>zHtOKv)OZ?CS5-A^&GAgH5(a1ak`Z=o+dlJb2Zx%yM!KS~!E z?mXK}%fYw~=f3rNXRsV`;|)5?kAD?e!{gugc7%kH2*$spilKtvu>-+LH@$X1W(GypZ>R)Sig?-O%&rb>SW6eGiO0X9$f4g5w;h zf>}MMp@>vbi&}8?gREVci^#BI9duZuS+x6meU zaoJ4AOO{x`e({UzowC?TidzgfuU~LuZKPTUskmZg!gWn|LCM~aVstFdr}NYK{tpg( z(csS3Zc-YPboy1^c%C;lPV-suY1S$WO;gyJM%mOJ(#cwR>D7^CzVPaJIsxnBfB2AY zynEe@0uj#I#FbJ~35@mjxG@@ZF(nCc6_9D0SVJLjmB^wjkpJr?8>$gXL5PcI31KBW zxRvxuT`cvr{?Kt4T4N(pU+7!mwsc4I zKxu~(0h->0+Ka1ICgg8F{$m8Meh3x6*!S8%uXRX8iO)ltJyK=JQLi))oGm|V+L%v3 zj8T_}tv`5@^Dp;KEv@9saOG(AX_;6OBLv$Z?dwa8UdCd%Tgs0NDomLxvi|6?r4M7+ z?-9+oDQy$5y|Cj#*(({#GAzE3aA#NL2TzKz&f%q1p)gS_MsG}B`w4BYucy0E_I7q? z?b3NV_x9_)JnJlLV-NrV4aY#eTH81RVW17t%7>a|nv85jBk=fQ`$Ut22jQ>7cq$G` z-=izWnTCmc&N7Bxl<-1dM0ilBXNcr?>$0v{4A*-1O&G434~e3YU(_=iJXVR7+{bm( zp(fr54<~e@hk@=JsuZoVy``cj~xhV0Jh-AMNjC8zL2sUsI&e;^&WM9N0Ea>F-mF?2s#hmk`wWMmW2W^A=_}Ph z{AUEjy6rLq75*)L9!DemAgmWb4wAhUP6~vZ4OxmQeiteuNaF>}3ELFMzx(3bMRLqZ zdJRu%B}7tCn1A}ZoA*BS$1zahytAbU;dSZfpmdR^%Qv|*zL_Y!iz@O3fls^dlLY?R z02$BE)8gu}0`RB4iv?_tZ6mrIIFjDNo)x3PYRNU;dh{fHAC2d-_r2`Nba#oALjA-6 z>9R19^ZA~vyabCc#${c|`bLhnUp{$UFX1f>Q6~8QH}?Ll$&w^V55-hH_K4i8dYS22 zu#5;r_yCeZ;qT=;U-?8K1r)gyZdZ6I7a#~=a0eL7UUR%XU>T(8@rs-LQv zpNQ=45kY6PS4Ez4+}+I7)O7jO*0rwx__U3Hl&M%(uV2!S{^Xz4sb#q(geaK@Hv5Wk zQM6(HukvLODR)Ro22*NO7fK^wL70(;iSC_i51Z}XpIv+D!#ni&wcC02gy_mo_a^6O$MPI|efNcYZ#Z+B51|1j%HW50Jx_QL9L#Wm)AJr03Yuj- z36`fneEC(|g4a%y?HRNn!267=;aq#>+)fTJM*3%e@iY2n3qrVAIzrH^086c53r-fZ z<4~IVpZ2ToQdI(@GD1^=gEIZ91PdiDFC!ff+vrC<@w|MmYd=<7bnZQWiB&qUw+2ur zzU}Vj*v_xF(T^Xz+JdSJ`qTgWzo)g5_eD<1Sw#_p06;xKJ-3Qbk01IKU~4l`FDo8V7U}( zIibmTO$Iat^C$0l4I@T`3y(dYP_D#0tbE3@Tl%qFyqF?$P-&C?Go?Vl-@(oemz!9Q z%MoWxK^mc(nzGa8HY)d6GUY%jAs7puawiauE;ubC-JJe4?U1pz-)Y{vB>d$!gYVD) zR)0_Iy#+2{08C94jSu>7wFX^fBbyVL8*Ty#$TLqf(+}Vv$4r|2VWY?OpUFXN(!(x8 znl_59g!=A+#LP~8H*MKo?iB!D54G(SEZb=Ki#M;`UVx2hI~tx6h_B1Z(s!UzKB$~C zfvMO=Kz?3ET)N+@qaSb>Zf#fgKofSu>N^5k-B($yUUF!iV|Af<*NKwj)fPydU0;z; z!RmbLYezo)@;mzU&384=um9wq)^}%D5D~^N&YOj`orxsrs@X7)B0Xb{dbT%pO6*_r zN@g$A4g`OoY1F6iG2M+xJd%-M1d8rL)%f1LyJ@G7LtbiR zixFN$jqDl@Un*0f3h4ivfA`n*gz);BI+1lnTV%!$xx(Q&0rqONa$Ou=re2-*Ge6pa zQ^nffm*C^$eVuw$7n~msw%Bilok+Y=656v)zp4(aO}{E5IoGeQ>GfByww|XC^l$&W zf4dF;e`ny{Q3Aya+ll>FXdjNi07x<;OdOi4J4lqx;3@0NCQE@HCz9>ABm$lG04VK0 zvYz&%s; z!h+=&JZYI2AR>R~<>e9KSZn8#knvX2V|HMSTq?3mvEoB}&%h?-d{HD5Q`BUH{@@+IxVsf2Jp=6iszeJQ|n{DZlCU%>F;1!;S{JKt}df4{5 zorZ@`clCtul6LL3;p*+{W;=D=1-IVyHu6EX9dDb@r9>w=LIpS0a9#LaY3rlpx_g$r z-)9F1*o|giWXN0jSo~8tSh1WVrD{=vj`N!rba8!c!AA*NxHnbtXSW~PI*_t3{>|_I zXzLt%M;H)H#D+YYP}yx1HuH^mgJU};0}$JvQvmJvF&~LwCh4h>LNnY#M?n6uAVPL& z9)BOZKf|BuU!M}he36&%>t}fo;pjxi?@!6+DbHu`9TV!$xuTvi_y_?9qA#GKCf8Q; zh}`CgLS&BlK|$n(p~FdW2iW0Np!4S4%f3U0FZL_zFIeku<#6A#o$NrsPv3p4BOtby zf2TpZkw%BEFPM2Yu;}k`cNpcfPLJAxjx$?$epcTtqa9^o_}$&Tt@|iOzIdp1_~5~& zUIo_lechKn3Q~8yIytH9O6pd`Z*S@-$WQ;`r}UTq`Y*g4rA<4VwyuF@@O8aSB)tk5 zx-ljKz^sIlwVRet2nxERZ$Suk|6!p6S&t?;NPJ9;74V=8TFj~rdM^)->p%$jj(nTx zb#PKji8@h9^i9;Ci4vgq6dCj}R6+xCiKyF41N*?Cewc^;rto{lrWlNQub|f0W zIC5cAQ)pgaq7*EXj|3w0%X~DQ2P_bSCVwxMCsuAGCj*nwo;rBukS~tX`29$*S~jzE zoZEohmJn2mIPs$E8Rn}Bm1qhbJD_7KQ^vpEteEe>8vG<0+ha&H$;bGHH2HhjdBH~_ zIPX7E&ybZY5o{oH<~N}Laef+I5_#R)r~`Vn6XF_Frtp@jNM$#yCd+NttE-!S z0`~>w=I2&|ov^42xgO}pW}j`tlulaR5?GtxreE=ded5moYs5S1Rx#ULJILE^Xp3wCd7SwdHzs$0sBCAA3xE>Hd^x4KmDUAZV6m9M?~I{k!=N!ZJYybv`n@^*D*)Dj^VtFNuSg8{MLZXP)5H{i1vbn z<0B?m%-lgfCGD?r8K|lSKw0>b8VyfHYUtWy4+^xm$uj|<0Y=9I580*b^$%Z>4KFY4 zG}&qtxf$f{RtKx^i}P zR(JWjesx8!e(<^mH~;c~|1arN+5WNHU;`Rpll49}qBSo&K%yN{lGFx-ps#*kNYKF3 zUQdj+h|=hwC_J~I^;nNi9Fb$}9c-w^?hnQuN>g7Zy&kk%nmaRwazlol?`@3Yy;-Y+(Hvf?}Xn-70;q))n z8~rH+wjXS%(`$+ls*ZUu&_Fa1uMWT{wX-DQt!wF0(y8`m%*W7iM6N5S|J^`=o}m7s zJVSkzA7G0{wGiW>wqx*9xi(DJ+0{lq);g_8X)b@aeM{QP+pb4vH#b|y)LH8c>prFW z3~K&s>Gs`6FBYv(+xber^AbB)Na_M`J+q@)(#7c%@WV^*urpf({?2%1y4ZHYDx)CE zlj2v;u8Uv0CIK+72N)I_%KM*w`7M3y)3E;NfBP@`PG+5NR*K4kpTr()_>oITX=JC3 zu+yvGO7C*;-S%7TsnOxDxjz-mTi;7I;jwELlnpfjzCATRO#6?434a@|=eG?n(Qa_C z7hKFnN#?zxJ7x0c&GpNGXE$G(s1fHcyz|@(h`n!mFFI;;CS<)zm>x2usIXV%6m;Za zx!vsR2FTm4S7e~38P~Eny&TT>U;qDqWpt}C!%Aq+TIhM`D7E{JKpA!Vb)7~D4(j@k zv$jaSocD3};jV7Gdw+l5f{llEF3GyKh4Q35PnDkLVX9NU}Qa$lHTUg;fPmBv--l&Eqp zMl}gN^Rv1s$whl#^DU1SHV~`}t5p};LUidiOv`U0D%NR6kY5jG9C&j$TcjO!#{+`} zd~4YvSUZ&>{5j+)%vwo#D77L2_8gWsp?w{IZ-XoFoB zILLDx8%y`aZ6-Qo3Bj)x!`+pDzk>pzUWqdjUB%e1`D(5i^IEFMS z?Q^-FnPr5nj~)21aS35ZS(~Wrt!sm!^xbID3U&?x5=8@(-y=M@IE@ctRN!3Uy=} zftHUHveyaf;x-5J1D0{8buL`eNm^n(MY}6nhf`S#QKvL@y*RzN+yantZq*9yMW(}Q zd)ew6pKIB5M7@?vMt}LMTgi9YmKMFZzSlag&Mnrw7n^bwOse?KR&{Fd{X@IGww)x) zPFQ8fEtNO3q1`Usf4uGMKyK;m#SQ)7fAP<0dO`4~X2m;pIJq7++Zt>bC!I@1AqG9J z%Op`ZY4AbLi(ufX(@1k&%-``^`be4OvGd+u2lnVEj$eEv-!J)EHa5McXLvnTp#Cug zVQ&QHvo15b6XEW+0kcEdM4{K!zyf>l!Tz!ucn0Sn`Mw+86-oylq>77r%E&BxuJ)!`#5NEQ+1Rx;MzzO79PQBuy z2U%@)m=?_nM$&WkcLJt0x+j+i&?_CRcv1%Ews#HfNKwz- zDb5{R3|62LgvzxC!i`djwjlyOgR1Q1iGe83hX>xbyu8zZtbUxBY|m(9nc5vOb!EFB z0}ir4DhEq=j|TeiQ>n;yS4_8ZI;~FzFQF{)u+iJ2LoWut5OmPMH?liDJ(j?}X#*Rd zBm^+PoS=6Cj90x&uTWqciYtx!pYdaai2^(Ved%BjWkLf%@2mn{5&=>`SM(ojKB%(w zP9rba{aTr7TRNl)I4{6{?K@Se{Vulr_Wj3t2GvPjST5Bsl(iEpfP1C6o`&A1U~%8Q zYH<_Wucg;lqKnp!w;t?hM?&=-Ck^m2ZUkY<(C7f^?OX7Y+2BHB8O12mh0UgJ>0kf; z@70lbyi|^gFMGJVrH^GA*0nVXl&TE#BlO?-ppE64FrCnPU-);f8Jd0hh z^0n8%S%{u8%CQ&es-j~clY^Si9o7r?z$gv*h#QJ20wAK$>uR7?Mn^Suauj=m5X34? z-H?_=*miYe%iRe)Y(T#RBX!7G+Hm>l`Pnw|@t%J1S3j?FTQzHUrroLs?}P>@*3u~g zFj-DuF9!o&o!3C21Q})Ip#%9fB!9I>N*Y@+nCv^=f2g0D1Q&zzn^sibcwZ3lF#hbvHW0|6*M@A za&S74{h1*SV9$Grp$dd@IJ7b~t#^^fuBU$)PCi(gA8r z>QW|h1Q zivZ3;fJ|^ns4Lzdo;xvrC?n|;G7ewQ_ya| z`<@;i?&;O<|A=0E{SNpTr^R{8bh^O)O2I=E+@a$owjN#FC^1*=@gBGGak6Uf=Kr%b)lbW2~P_UlB~S|-ER zwvwU-#{v@UAce0{kwXS8)0p>=hYw{BAg$+ec70J7d#j^Rr%~-uor8N9K*-5i+rIXj zzxf6I^1uFq8i0~Snj2nqQlobbRZtvh)GvK^s*Acy$g%|=4|U=B-8Ld)C!XK0H3%sS z)1{vQQjPc84LI!kZo$V%n|ig>wI3IB`SNlr1TL zZB(u^7JwP`@3Ges>4A*Z@l6e)q)(>c1ty@oV_OIY*zS4RJarB_{b~rlB!doYVgD3J zV;~#K0AN6$zn<64B+K%~Q48$H*7{hcIp6Grlo6JLmNB8h@ejFHHOJ)(uf2^-FC`X_ zpxH@cyc3!b-^ZZQ^I)SVJJHb|j&0P`9ux-;3QZ zkxB6l!d>s#M_5!W>!u^iN!%T4X&q=<53{q-%!{oR;V8$9lHkE;@bRYI##{rj^@Q`o zL+w1nt?J7fkaBj3+I?(`O2)>M((!it{sY~8|AAio@ar0c;3dIETg%w9J^gnZ3v`Ry zFMW6BW0Exs42ta>J3>YkmFexA&tsS{zxTNv$(cv`eQq<4=k+CB&n5uL!tzvs`<#69 zH3LU^MC4c=`F>Vfku`dsq=TW?Tl}RMPxSszfuZbJD5VS_RqO>b->Hsr`*!{MYI6d8 z#d$RpCkC8KnPmjTDC-9UmivGEAO5CJ!*aygGh}z>grIDv83Z4}mr~cVIJ_)&FTq6F zity7GfRycbOS$!6C!Kb+!tPg2EjT@{yPwoEKj7r^vi9R<8~rHT@&4)mwdZLIHl@8#sk2XZ$Wwds{>6Oy^ zYyb*JswAXC`xEm;dNdCO@mbTy3)_SzU=qu6xnTg$`kgz-V+bM~g!Xc*8ZhTvgM%)# z;>M@fCCZ39dX+bt)+;twl)Vr%5l$r{kbRUblsUf@n^T-2mRY>&NEhk!QphM8@*$1C z3HnVL_$WEfP4L;Vo z@`^5QuIRg;eYXW5e;SOVIYW{?Zu|Yz1L*wUkzI9W=DZ<&FVjBNQzGB?{S%s#{7>bqG-_sB3j7|z~ zhsPYsk3c$Kd$vpMkLDo(ykzii!5r8E1O2RkZcnOmO|T^V)aM`@grISfGtef%4(9hI zy(?2ti*)!q?KjGv1~M4b01k`<_F@oNVc<+kZ=jn)Icm%tv;)15*!>Xr3eg}F_(R0f z^jZhtrlSC66PReXJA*kCXH#eB5r0N;gtL>iYww@{$kXkWkR+Y=PplUu-(0~rcd!rj zZh*ekqwIuLM?T2G@Wsvb)^T*^2jdF*(bb!i*>;&?h7-*RMne{t&6CsfUOxI2cA8M0 z`dJ?~eTw=nj4C_jU2cqB`?|zBa{utq+O6z5yw#yhsnSDyt^W1>L(QkGkGU&{64vdA zS9I z76Vf08BWu|QLmA94iAhE;yGzz74JwFhdeOAn$d-|QJQ7}OnqZ@eM2q{AY3v}u*^As zhu}GZnh-=-Ej;kjEncH8HA;gF@K9aj@mS;dn}IydUZ6f2`0kB_kOgAoDALGj`HV6~ z*2p&6q-{zJzSrOPjsw5ST8=gfu|`>vHkGz4J})C64|jLLuAE<8)wLjP9v1Mt`KV zfUEeUH$V9iVen-cQ6EL!Xt^t!uaw=eZtv;cAN~Pdy?H%pkib6AhSUd)N!-?E{Rmx5 zq1|R9%&rH?ygu|ZX z0;34!uWo&}-TT}B__yX@)hC-#7q1fwI{w(Jr)kWoq$(|EOPzjI%KP}sGXM3qt@)_I zMxP(tjdN|II_d$uU}LK}kGgnq`#ZmAi_b4_F6qOT_kaBV{8^*SGyA$?@;cu!e$O_sMlsSJR! zRTi=XfY*TZ&TkHNa-b-wyk1`b&TJX`qHQmqLsB0d)%peU!uuHHC=cRDlgxahlezl@ z({r*}Squcy_&fScgA9fSX!?l@*lC9_7_Cs94s7-j4Sa@yXXb4#1Oc#vluS^zX`Klo zG{LWd2Ccn*#z0npp_25v(+BcB_ZN|X97wkED1h;XZ4X> zq-Tw343J`jqVA+AY&7N>z%51Fr}eX7lxUE>a__XPCAGmMNOFal#I&B<5w%V=!wT#Z! z6VV?Y+PNp(wgP_f^;a~umfO8Hb?c!{L%!d5arx?oUj6uoftMk8X;n4fE0Sb#??T=P zOgj^h83K7F+O>JztXe&oaFYv%wQlpr3+;sl5gf|k@OkWd3?J5a##Gbyp40X00+3k% zFaZ1EHwDmlOkidatqJ!e-BX2c=ph17lnABqLCgTb-t-zQIh(-=pjQnK7QxSlQf&F!b^Lzinyr@%>@P zs2@f_C{8hJqBq~Q2(d21v*8_?q)qL`0Q^iknQ352w{zaO*cL1*cOMc^(1s&7A#C3x6MZMlymTlWb#Qpi12ic zeO$NrE$^(NXLq=jLH*ae7(`1j{=i45lTK?c3(}QW*Kc1NN7U2k%mL|VT-5;N`^^u2 z_*jFaAHjJbMnAN>Q|fgl@c-H&k*{Ei$TJ?T76DH=-cy?Zc4?3$NCskU{zlV<@+P=# zb`70=yw{-+uTd{Kw%tr8zu;@*+M5zz{}XyfS01(46P)?<2bwC%=a%`{JF{zy3A_gf zU$VKSdnfKJ}b*zP^TfnjZQp%5}j;8LRn~6w%e@%$j7@n{9JpH9^e4N zZuHGam@^k zN=9)ZWd>9X;F|y_puDH~=jcwMECFB#(%zR|z{W445e6>O^P zS~d(l%#y)hl)08S04U1fj=Lk}kOs^19_)}iDab+z)_a~@0-GY(h7t_8W&o!$OoSs1 zz$Q}JToxYa)BN=vFNaKq8U~$#kM=wR$d1p3UALXExCuI#e=Nl%6q1P9i9k0+lF1>EUnDVG+ zcw1!1*6ipi!H&$8JqZmXXE@X$r>^ID)XhZ1#ip-)z;ySYZjJWxep!oHrUbXSPC`lf zy1Fl*=h|e80cW!!{rytsa@Iz@`slj(7L`eXdaUYeR@>fP>?z7FnSZJ~G?o#NhX>2| z{N~1kDF6-9&p4^+?hkbLzN`azUl+T-{llNMAdJV6G93A^-$1{OMvTUIqU$gcG7&!1 z|Ik6zb%8q80S8NrEb@%{E3zASJchycF0>5+8|?%VGYpDYbXlIwxWJn)zNViO#m>I} zD%ULi@c@T*h4!(?dg8|HJ{l){KL9TUq6AI>kwOMIfiB&hg}Q_9#)bWzi<`?Hf3SP3 z+UwG6dmSpK1|rLR+;9H&8~XJ9$G&Gdg}JXvo2~m`3I`bat|CBjr)lj*P9K%2Qbp10 z*1I3d5PVzrQFah%qaV`GCTY8gAP03jUgS?1{V4gJZb40{a|v#~+XAV7_uu{7WQQ9) zBFR2$?+sC}2SvY6>g1MSY-g9I3$4yH01<&YsBu=$VFpq8PSCRi4p7r$){WH>gv4Gm zf1knWhKt7=1KxysR7d(~9zZgs1^^I*J+A6BWpu-2oHq31Z|SIK)@w<{xjabF*^vKm z-*cLc*6MpRo1(!OW&LN*GuAgtA;J4dCyD_l+MHGl%skM@b>L7A20Lh)2+E>~Y%>ES zVG7tBI}&CX-pkMtyi{JdE76XMXF#YcmX)zn`=W6gl8^(kndnjn+aXI=SvN`Zr2d!u zLQ5|@dT0iKBvr{JB+^@}m^&eo{wwF0qa6z6TE!q|xTRI`Aa=YiY5>w+T6H11c$%85 zt^@hhd{XCc8LdA#KkezPxuITt`(2${)fb=>?fdqcZ`l%8$bi4uuF%=FqB1p`U;V64 zFKQ$EfDPbpUE5S*9ic8k&&7)y=b`$L9yPW1)_NNH{fAF=Jxp1I{_+Q3(=alH?PG15 z-r)3(Cvw~n0ymzf^8hjWjA*y}BaY&eUm@llouVhH5`m?Lqs0{vZBtbyQ_w zA5BIvvTWMz3`U|n$OJVQ#xPLQoo;G3>tR>p+#M1@*+fL4SHCxmeILMEFI~uj3w7Qp zmUU`!9tLCGVVTnk;s|oO+iL^>3Y?ftUqPC!-aw>N;(1Wke*l~v(V~4ZD#WwgvnzX7 z3|K5jaJ-xxuwYC@M0++4M^P9v7y?Ppxz$++Kpa*M41nQRk)h5=m-Er{blXP+Qf;)V zOe22H_6j>>uzs;tqmi8PjD|E(piN#);K>z{pbf=kT!RqP^CUZiY$(R#Xp0%DFr^y! zsifh^RYTWf+N^G_LrgTmgbYZ~>=>wslOx6+3^=h&4Oj&UAmteWy)yNW<=*+tb=^j{ zOfk}h=q|TnxqbZhef_e&@1?rf`L45078`E53Uy-RwOKSe}x{mv%j? zH6VKpJ@it_zCpw9JOLWBa&np(;P{+C#`42-XoHBXXTcnu>?x;%J;6)@7!Xg=ovVTG znY(igO6QknZS6-l%yqc;(07!g2(UkX_lf@DFaN>k*COHIJk_D;9_;>z1CVh?p8>eg z&6}HE=102Qf`o_rHtnje6ImhXSS1?P6#!QaJjiw{DQj5D_Pgcp$7Q3Y;=l zPhE6$fNJEq-a{}JfxW#+ z5%O^eB%+#dc;5lPmx;iWD6R|B=MH@OJL2`zU_aGHIS`~q?U5rmzj@<~>e5P(ZS!}BjSnBTQIL<@=+8O5`tc9y z0(+rY4zYg{+H@kCIXMj&b4QQKm-=kM_w1#RmzELi8B>G_YSPSyQ6duf`pEa$wTJJ1 z6%04OepC7Uw|_m80OV;68m9-yZXi-~6aePw9o*yjSUHc~dz|3?M;@0*0v`x8nC3uO zy;(E_c?1caZ=k6gr}Fjm^3>kfM{OwFr}${yKm6i--F`RF2cssPEZ#bAHo;gz`e!ovMy}Y&~S!v6!=_26XD4;% ztFjj4umAmj*@CH`DO@K5Hi95A@y=?^=o$QFXs-}363Cj!1b8=|wErd9VeyyLifh{@ zpb%1I-IzwV1Q0Vl6&b(|rbM@+a$`W{iaE61nFmA zSghq@-r}i3U6FFvj}8#BV;|^%U+84*k$K$+;uI7Kl-ZH&*mNQ4n2_A+u0ws%et z(G2WDnPdGLr(*EuwgdS!yF6%X?b{alw(nk62ZZeTVfk*_aykND_BN-vE(#zb3A*gs zfTJKvm)ki^cPZJT=mKQ!zr=OXr{QW{82ARoyYaPp*hr$j zh5?sQ*C~BNWfthx-zbl&lRdAqi%U8=J?)?z&TcB{S8)0(EH4 zia6DCS&)eSywIO%TcvhVmFrLfq1Ek3=Cx#G-^*PnE{ym0yWI8pV(We132XaaM&qyF zzB2mamc*TxJ49^GYLR=_sKDVI-27XqTs#h zUr){J(Mw|bZnuLjHUpu}oEH?kQy6Gr-YX1#M}=bqvHjiR0Ae;$7oKaUb6x1y7uWst zFaF*SD%3pIMzxm%bS&LiXfGARZ*}H^V5u$A`_Vu9aoZkod*S}WUEejt&;8If9yS%X zR14;1Ha;)r0GRt0yys^%04Xp0<-h(5`uP4Mq!9yh);>(5Xo_2PH27-hg8@au%&}FS zU)pPpa8SZ?LlxS70hPo&?KUS+V6^vYjb6!rv(u}fHjF;fxWPi>8)FvX$^cpeq~I6~ z(in%LOwB4wkB(8PNM5YyNJpd+jVz#Av7#C%Nk5*-F;$@8Fz{)Y~V zpfiyy2hI3C087bpprhRg;$>={pYc#PBw`-4V3}lmLf!X3%@7I=GE5k7h}#sXBZUAR zQ}R?FJTFvu*T)FZfHnizl7N^5J1#^fD_Zl3#0FCIO~a8n5zo3toN_k(M`?719Myl7 z?M@5wEp(Qpb{S?cKpACpjD?|^(@z}^VQb(I^2EuRM-EBR!G`<4IK&B z-Lq`ZBL>f!)CZB9D{}#*86n>hrLeiFZFu%=YZ@53G-oI znSRGBN3}W4EM4q5eOfuQ^dn}#{F>1+(B~Axzfhjig82p|^Ew7F=7_2OE@y4vRYw`R z!7B#g^t4UUDx(m;{Oey>*_z`DhSf}S9~Nd^)4{DBR~^=7a@WiNx}*g>Z+`Dx&s;Vm zeQ4)@+#hV+M>EDc;?Z`)YR+QqKvyXAR9AS9DztB=p`5 zC>yu|K|ji$bmawcaq}v^W(tFr%x@voZ@1q;X2jDamr0m1N*O%kF}T&BV}{v|1qpir z%463s^7EPLe_O9-e-b)g(ZP)ZhQFU0p<*vA3g@hhy?eQ=`A@oY zHY3y4--<)+Z9D)|fHvz@)RF1~yk)0CIYHPVayI-8P!@ z(}}f{=%ta*-5BQ}K&!9iNKBN_O3Yi}nM{Cb15S_{d#=n2CV=AB-m=o(w3*@6@9XNl z(dxV%TvMpC6&EV(a(;!LOXYvjDV|K1@`eE^dqXvq256zechmzbh(Xyl$-5L zj2^D6PM3Blm8)(-a#-!XYG>-`J&c^;dO*%o;MhMve$8)D@r7r$4Q~w^4r1Q}h$eAR z-v3w`&~;09hg7?(zC#0)I*s_QPb=fL8>KFQuT6lUU&weNn?KZPSm&EBd-IduYqJ<; z*r)qmY)|8j+E(U>50brClm{w$ zxo2e&;N_W>RZ3~6wXS9W>spNM-A~_tsvSBDdv2az^YRfS#GaLE>lO}mAprx{>+tfc zS9JBV1t2<9-PU}RGWsyRIvNd>1nNu1N~>rAzb9Mo*43Nq+H?AE{^h?Syu?`NKrB22 z-UkN^Ea%|gWJrq{yQ2nUm?cCj!jZ?6jG%@Kc(|ix&QK;LJu->o5p-gZG1EN|vq-SD z0ZfNb@=H&lXF^fL#bgpkGYnV=g|rSH!O4>cxsb7^A$1}IJm^kS^@nB+pJgHfGSqej z^9=9Xy`T&&od-DAPQP|)QL;~JugoV)YICfnV2`l_Z+*GkJ-@!H zJ=tYTTK73nt{yN;&CZt*1BNw+C19v8>y%um6i9OK{6O7nb@tA~W;>RxGph{GR+%{HbmC?gFK=Gb*~SlOFromW+wU?m{qX6Q?mm62 z^?LgUzwe!hGU5d9WN_K{GLTO)_y7&`EYR+9J_7Hk|M{o3Cl9_0c|#_Hds_cF7wY*_ z&+T{$)_V>?2VT!2068|wkVhu=u9?u}Xmysy5IpRZW6A^0b5Bqs%zz(622RGbu8xv& zQl~#FgA8DRu^dFY?&#A{Z<=4V^pOLquVx8Qy8?qv;X z{?-5GUy+D|)!4(CfIHHhs$$TN{dFOtIE4rjbfhcJDo;D0np7qRBAOj#hv83#bQER7 zc43M?ESv# ztpf1OH!D~0H&5~rqn|>cGui}|5uMX+Ph?J`w{d@B0C3i(uA>S#uqRx<>Rfm)f2IYH zs|9*!e`$IRofc4sSWlD-9`39C^E7jL)`Rsh;Nk>Ek@lfQ5`bc?M8BIyppnP=Yml5K z%pslGg`B4+is@sa{TmPO5AV7nhC0rh4Dv8t)GPYiNGd~6-uPb*AuQ?3^jZx{>S%)= ze#rj2yk7zkD`va5^mT&9OF>WPGXvUZKNkc7Et1%t=NA`sS{F`zvh^k8)1$R4>Bd}T zSKl)~F613#whnS3>8Gq8?%Qry<@Uvkt8GN%f&gHU%DLlzsrA0U{ZxaHvK{@)AN{aS z9qWu8{XaBsxPreT@{tRWdm}|c&?`emxvhs=Ngk39Vk{!9@u|^jdY7sfYGi41C*-sy%Cg$I^oZZU-1D2m>Q$l-6iP>KYKEhq_a+;K2`k zy4cEk`;&KVXOueas?mKoJoGJiSDS{VhJS^+>S2bB;6{mb@OJa|MO}zqPF4T(?Wf?F z5lBX!0l(2G5jwn>p6wsaJ7=UB_-;PTo~asSFVpkxH|Y^*K%tRk-2DT4>nzIzlxb3b zbTtyI;<@1qlS`l;kEtF8VEBj5LPtHk?gQnVp` z@sf#-_JDeI{?kAOb~210!)+Eyxu?(eLPr414tS(Z`SQ^Niu#YWG8_H`@Ho42qYWBE z$zA~uwBZBIsTI&x^{l*gWukvN1x`Znp?Q{5yvr1<(sFeQ*4piR*H@Qg&3Owz?j9Q0 z?))qMsjU;Cc3uXNk5F{GU-DX1&^plNleSf_aIE(E)nz@CqXi&qJ)fi!0YQ+NWQxjf zGAwRSxEXW|N!lsz-L5oW+sY`Xp`X8a5o}R$cIxMK>TxNjEI_|~|FM3){J~dr_4bX^ zv1ZJ~$Ndqs2`4%6HU}dD2EseN^2kf_CD4xAI6=zwkj-wPt1l6EhhJo5hBokgw`p*AtaLf9~%EnursvakMe(9MTqp zX9ojbHE%-&Fp`3S5J-}PvtY;dMfP`{c3fNJ^eY{cMzQ+JObn844XM<&O0qLVw4cfn zTRAE}LC3}O5Q}KB+U`#lhOun)ADs}?V}Y_cE0VZesD_la7Ulel!$EwFp9XdP%njvj zyoSZdZQ+MXlPOWY$MLPjN zcC20u_NqNtRb~YkA!KPw;MJyhZDnt~C{wAFcMOW`2PjhIO$m(3C`efsQ???0{d+$O z?Lr8e(H{_jjf1vQ+pP~(uF=k6j76c#F$aXr*qU}oO(zoPQWnC61s^#nJLpV6P zPE4C31=UcxHJG^EhM})tU(-WBn5v|yyQE0xi4BMA+JIJ0J+}n%NgXw{r>rdUE6@M- zKm9G;ZNt}2#>9vS@{DLiNF8DVP|#%1h{5q|mMS0k1dDKbIHaW~$v?%k%yeuz71jzt zTNovy03>q-_!1w1Dv zImx`*di6WNTk8C+TiiDK4tMvYVp>K#3Qaa5qPix%P3`;A`3{{`t5^Wt3Tqphlz`~; z{4}0`zP3>c99bX%dV4uxG(K=fD6PaXA6q)#bOdBMJFABa>ZNwJe)iqAv=NKHD^su@ zZtsXsPwDkfevfkVTOR4RtFjqu_u*&{pbo(nLvTaAjRo$H7lUu}dnVKUXJ@0y8XW=m z8IwJx&riX6`${#Y3%KjczTQ0BDOj^;GvC9ZIP5X_b;^7!%AExwi71K=F+Wd2JQMt2 z!2Om166m2KW^i)Zt#t#DfQZ_gtJgPlrco>p~Z{L6TPky)=;nQaD5AA-NlY8*pQTjTN&PY4VNf!jR-D7*^AuYbeWWkfan;d_YMTgI}HI84KgZ&}?dU;&imJ~y{lx)j*(}c6fW0Ia!Rd??^6}r_+BR;UqiPfAe+fLppKpXZo9|-S)3Z zd5qmDE~_QS^XqFmzqzWm_|VVXAf>@}v+BWSG4Y%2zQ4T<46ON|^bwIt-%@>yc1Shd zTf6Q-8{?KVtnt!38E0DJ_+d7lF z24qW9rU#c(;dMcM&8`O>?vun0+AX_a-M;_6b_9O)M}H7}a=0uzrXZz46Wf;RLNo>W zv)?3Y8(bH4L_4=9WDm3?D)tnG_H=kw1qt5~FM3{Maq`5npGwDX^Yv^3kiACFLWCFY zZt$CmMrWfSv**X?4Q^EC`M47W*d$$P(NYq*QxN@Z%I=Px@pUi5jLzVi>$_#jQ|a+h zx_zFh8>a$tnn5oC$VnTn24}cb!@dC6>y80^prC_n?=9Tx+Us15?c1Mx)z2JR?X>z* zW&=Yy`q3Gc7RDkN)gIyUS4M5h!uAr#6leG8{U>t-=pGg9na^irR=$)DxFcy!_lUxs z!VYp28(Ukk)1x3P`ZsV+;&o7WX`L9WE>O(lIyeAtp4Akc z7*XgAv^OHZ{8=Pi^~K&~CYuV-+db+gI!M8+CeQI{uZ742=y!@Eb{%sTd|&HGuCQ7k zav4CrMc@y5c=YP_BQ%|Y)ArrvG}!otl zdEj#AyjPvB(}A}#mgR&lUcP7t8M^9$YU(&j>vSulLAM`2)~RAw@7`>|+%?gFF*ukf zp={5|>7?{9=SAbQtVb$0-cbd%Sp7ZfKhh#IDgE`X94yRdwD3T~uM*&Vsn@d!K=y{o z=0Zb+y=wm$*DTPO4fX8>ENa5_UJNW$H={Q~dqF|~L>z3O^9~9Io-?qL{i#vaeZ|=p zd^CWs!N-cPSPxk-klc-Zqp{~#dv_G@cUL3bFzbj!t%z9Z90@ZpSPbyXAHHfs?GLN< zKAjf&`i@sNO^ldiVk3NUI?3^olL zyC@D9_KLbAb_tDDmf*~7G=Y6uhXoN{LLf5haU6NXDO$W=(Ue!K2Zj6$CM4e*^UeT) zrUAqV-m!eNg_v(vdIynu&)IFT-e@1o5E?r#qWx*Vl?O}%xMrg0;QiC>XRM>skKZ`u zH4`wI*lOS{SU~DFEC9!#kopf3jv9o~Mzz1Gaby z6E$1DAqR9rN#>lmZ4mLqf;3~zkxp@YHtlsomhyA;9T#go>e*PU(NlE^ zwu09(^rzlxzgs%Cts~uz>GUccvAKTx+S&;_k!l4E#^cwof(K`q?y2wnZUp2D zymCX&0)QON&e9&c_JW;R`eXDQEyL0{&=OP1o;S%5i8tfb4YEaZ-8$y4lV0{oqqO%wU6!)4{Qen+tkf7PfEKhwnaaBOo6MM-PxnLePLtIbA{o zJXIsy!9{v0;ZxF)CG08ZL6gSx5T)J3*OXM+vP!tV5(*(sL9Mj`))x8N7!hlM41Q*qHn9kx$9ehdO%O zlclqh(o>!uc=)bGT0ss#+8`ti)QL{1LkmECnhum3S=h}A=s(Rb??I-CA5fqOci4j| zwpz9fG!R2GB$R9n_|^I}sHIPyin)*lVARV9gv!K@^`h$Tiq}`QL#vER*D1CFHk5Iy zj@#E24jMGt>KegD_o|E6d2z-u+rg;XT0Wu!zHZ^VCZ(jUqZ0ifLR49y*a_gEnXoZJ zSxQF>M510x_iODmbfTMgZ{06ofQ~BMcXuo!A7vWWVGH2SwqWk+^($*S^#8MUDdXjJ z!j4SI`Y+z*(RYoP2HDt-K8qvEbRvazGR?0hY&f&=zo~1l!}&|Up4mZ!vpIT9d()t@ zP)tF_4tUF-dmv>-&#~X(ndR-ELXwddur3awQ}3hFCZj_PpeE4oU&MYxZ}kb&&6{g8 z3T+EscP6YAC;`ZQJE``xtO4o6+Xy`BYYGwoTr`8Y*gKTbX)UhZd-LNrw45!p-j}r~ zYjpx;nB(-~tns3ID4m*RPN5s*@=l>&0j#pB1Rv$V#ggE|FTbbnfAQXVN8ZO5Tg_<{ zyajK}%n(DqkVSvk9gz|DxPdfh$Fou*P|<**OOj^bX+WL_FwvcYp=&Hp;&%`$QaRCb zwdqxk2dV`Y!~%IJc*S)*5V!~!hpPB8!!|DDZ1sG>NK_FnGxme$SEF$c$L zq=5}{35lb(0a$tI~rJss|2`)*6FDejGXtVxZ!^_elTjaw(6dua^Pe z3GOr=In0S!a;hf<;Mv*$09i`r^lRDPkrLY-MsUdWD|9kZyaeP4r<|bOWhB%RNhn-( z&Q18J|G_t?EJ~I?+D*qfpO~HdA=7`9v7Rn9d$y727e$DoBZzIM>0KO}%#?K&moILr z?Qf@`QX7kGGqTyl4RkL-Rp9nMu&5LSt=uI}t2@G32SV5J7pM4}$s+AVGF)3d)q}|2ltn z2x$7HXTs$7_R>G~%J2WC1DpTWuV;1;;eO+Ou0S0NN^-iV3f1QbpZOW`-9u2#(QY?- zsQ27xdRJlv-x7&2!`h3X2q2;ye1dje<0GIe75lVRa0^W+k3tUCc>LWWw4pB@RJta`??T zWn)JURweT0{%+avK#s~w(*tHD$;@1}N>mcP{9APA><&^yc8?+>s7Xiwz=1g_et$ zcjSbE0ng9*5FI#&$c_8EDNpv&{TWZ*@$&MeHc-L4WML8?CE_j|26O=ckN6tv6-kTj z65CDl!x1qFy29ao40;K8A~EA`gQC1xS>(2Vg7<-0)B^=_^{1$(u_iS2Pbk|il`cy$ zxF>rz@JH!kP5>|@7|Nt5&P1JeW!mrM%bVJ1)lNb0AYA%XUe(Pmr>*(ddLEQ!tE>Dl zIJKh6*0xO5pOld>JrAT_i&e(xDxGR&yZ5q=qHeugr~6V5JX$c@?zP{fyJV3DIpo^R zX}yamt<**@(1vs0{Np7Q?Z1~R{` z*R$OP>#33F?EYRPoCRwy?XMC&5A+f_1YlPj#dZ-B`jEbZ;hr`?4%Be5UJ`pXq$SF| z1TZjPPaFT?pZwUKxN(A_dtP->-uC0PuNf%|yA|kbMK#E3_dGu++&(gRUA8>S_Pd3y zVvG-UG^Q;8EQb=FU!4UH%4i!!0v!ry%YTK|S6{zrPGEBwAHMluYe4d}BaDHyE$E1? z8iPkNBR;f=xg>&ihQb&@qr(J!B@{xF5y1e|u_8S`<{-*Xk^L~YbDm> z98g+)K(~XfWRL;DJfMvJZ{&AR#XJHeiwqgs!gJDZI1=C_MT3^rM5gUbsQ$ZGP=7M= zqMbML1z8C%`si1%@f>Y-{aAv;*qS?(Pb_zj-bS;p(Lx@S5s-@)*K}B0;GuM*%Mh(} z`6yfQHnd)ITM10fLI7aN>%y>3P#Ee1v;vR#v`y{D{{yx;yWetjTQcAQBN>`=n(9QyRxVvjRgKhcWeD!Yg&*#a`O0sVrXgI@M z(NUk!MCH+2%-_CK(6A&Ws*Rqv$SC(QfFX*V$P(%?qai=j=f`HP>;>(QVZEmWGGD^= ztk;0#`+LIn*#dT?yd0Pu6ZRor2r}yXTADbJYxw{n!Dx2l5J*NPM@PmqMNjay^)`^f zArH4M94A?|C+LQqe z_7a8Z2T-|)U3hG(?6euD#ieEoX*d{a%Q?%efpNUtsZeiM*CDN|3`MR9$>!e0fNk_1 z$LGT@kkzT-4vxoVl(0^nb`3Cfx|U=_MG%-Xwkaojp;M`_Y_k0IPSpQi27_*=iUhnu z1b})r!s8_~fbWc3Xeh<&VE1^GBhAlbiL_)P4*-Q?uNzRTKdnbZKo2PW9fG1S3)5&;i z=gNT+f?gvn^D;D*m*Rmy(ti-18gQV@a->1^BXm?SBl`4r4R|u)^tG}hVHp7_C!5=j zQ=RXtxNTQm(~;Np;Jaiguger)3{DLkYJH3*r`blJtp&?&i)VFbF5T>8)zJ?1=iS$6 zU}9}7{ax^(O@J1&_3Ey)e8GldvGtB8XXim4wA>shXe*Yf(RUv|RUY1a{Z*Zcg_rp$ zrfBOxzpWltakpA*c|bQ(ud|F4Sg7kDrfSh#&VlrDwlq7w*3L zrC-k~0Kv#|FEY*VMogfNru$E0!-~8U+tRLm;G=FYHE|Cj0@~JwFPxlEe|5n4X~y0(GFH z@@b>E>>vvH?mEwdnh6pI_6qaPK0&Zt?j1HJOKRQ3sst?-WrL1iI8qg~uh%yS0E&F# zJMR}jQ5ZZsr_l{KjwDjBNl6~SCK`Ftw%{!bzU{n?wXHv_^)&avUO#HSCCfqs{A+m6 zDPgmDHCntR1X9bWIvy0)fDn9Z>*OAUlNeA;sokw-X$Zy<`)xM3iKJx?*mumAW57Rej9 z7dy|-X=?@4bs1&qRXHe-7hiwEVDMObeaLLE)0;q^f}!%?#q|YUyu74`2Oa(B3*zhk z=nGwJ4yzr_PJs^${8$D1v)Xn2`lc4!c28O9;r8Bm?;rx(3HY>!5CmS^b}LR!!rpX{@7&fC^Ym^59_j$Fa(j} z7)?xlAP6%l&%|nzI|n(IXKe?vrE=I5PG6(TS1;Q69c2M}KWD>ncI)`E83Sr)q-`>i z#b8}m2LOyfbHBu0mr77$g()8v_GV2yDnZZL^);PtqaeEWFdRJC<;6ze#Sc4FU*f&^ ztI3zjrQ5mQ>7jhqz@~2b+j`b7%Hn+BpMSc%b8ncn9?p124_g3IrnH@2URXO?hbKpS zCRymLwY_ZxjSIP*TTy4k?HePBgsdIgOJ`5a?JKm`?EcP$!NxJ1h?mLD6EDVqQGPcC z>x;QmX!bz7e&)z__MYZ9`;PDK1sk(xyOAzO`t$qI?L_*_QBDwz%fpu+-=?2PhC7ZYM1`O>#ip4i=Pc zIR3KsK;3`3>$`C^2XLrmmJ@2vNct9w#!pFg6LO=!{gn}wS3i7XM!uBw>BA>-3Id6# z@?;JkUdRamsQJ+Q!0BvL0X*bl3GBMd6&5z;uK}z8aqO6dG|HLv;LHLHqlbxdD5XKQ z%tXq4RsSi+9($R@eSiMR(}aWt+FuaNt=3?!i|oCQ`X1^z0XW4e03xUeoB|A((g;A; zopuDeq4H23Y7D#(?n&1F0oYnK;eD}tsteP$>h{9R6!?@0IM69#4mg0#!=<(${1Te- z1~Kfq$^i2HJxM(7bOB(u`VRbz>rKWo#BG#DQ?7`>1?aU^kl8CCNmkuKSOWVgz-~^w z2%Sg9ZzeQ#1R@&15Yy1uGrt*n_JI>-?|}B)25w9C4M6i#BOTg?S9Q0ir2^+w^IF%b z&2YQE*3k*|A<8h5+Ac__9Udft{y;leKAVrZe*LO;ut^#H=)sS6hWYs;5oyW{x{cmkzI@rqVrnBs z&OeH51N#Y8(XTpmE+ZHn64fo?rzqk%n3Oh#-Br zOe}+)=G11>E4(MBt{5Qo8ch->xghWf0_!+HNVWa?q#dZQOKk{XVsYfKi=Dk75`+5Z zpnF@Xm^G+b(GaHNE3l8qZ1QvI{%V0Q)|nhbz;Z0z~-a{K1poBI23f2gC}x(%%o zXd|&GlLXuI68OlZ8%_z{^Y%>y*&8puDl{!^M=qU$wXWTc^z|pwr^7Z>-xtR>o~c&X zAf~S)q0U9~c`F3EYF_^E z>&WX~b@czHFI{Ou+}sP|iG1m(hX5Zv_*YGs>l>NeyNsA^A_{`Iqw%zd5s{96thE_? z9oEm`dbYb@J>{AO0JGmY5XtZ9L3gu!bGp4?29&!9fIF337+8 zf)km746?E`62Z{}%bO++L+K}Ne=-L+0!;;X4je=%AU7r)HQ@wanFh}Wm%x9_9)zHL zGJfxQp^W(bc?qgVkv45ypDr2ejPL1pUteTzh9HRoUjyCbb<=d5z&p}u_r%L>^t*5x z&L$4DdLS3;<-O(j2OyVS=G=VBZn;MGKsS*CUnYWo5yX;lK6V#i&vfR`p8X#_(dY%L zV!O0_kPD#xoK%k_+887)tBnx}pX~LUd6+RF=#YS}laIxyE|~qM;RONt2AM<^ zaPem6mvrCUY14B@%2h@&)L&_5p|V$PrOCwh|9bz>PLtpK@Xc3Wd5z7!3V96B35()Q zuIm)VmtmSA{8k}V8`F}B@jdF5^IJO)l_wgAWI3LR^$gF=I-O@2Z?_}kNM3toKPAsE z>3TK+$V?Dsjg0SQXOQ1J7I@%$dE_Gt`>dR5h*Mr;IU`^U_|}ZOyCF4=1Bi`8dznNu zAH6{f$OA390KHCiTGvQNHx4BrC_@a(Y2Rt2oXc@>R)6D2j~booAjE+{`N>AE8$P76 z1T#19Zd$N&XeZ*9p0V1u)E60E++5P>nFc!4N2Z%4QzNbIQQK<^YRc$GnJ!j#T2YpL z{Pu$xP3-|{WQma{;slO8^UxC7`=-2CkVKx=Y6~DM0};&F9gD>GHD3lN=DDMP%T(6; z3kPow^@9{*MBt6ddmRW^!I4gFi$$j!NbE_)^7R%56EpockSbVbv2@d(ZjcdYMRbk` zlq@(W2i`y>MJ{l6?s#`^v_$LWza{8A!Dm_n0pFNucosk_(E!+$CT0gO@#<^G`n$AC zztgE~#nB(5fzduwDBE&!1qymW7G$`+viING$t88pRaAd3?PQEfbdL zXrsT(R#6OoJWmLg*~M|<7VLg}*5%TIN1$oiUPM_Ptf%?-YkpJZ)9CGO+WD79M0+7d zQ2n;B2Nvv4PA|_luzyoW8V-j;oqARC=?4Z%Ut8g{bb^XaIa$bg((+#W85&*!+Zv17 zetIU0$xI(rAn$Z2q+h>%)qGE#f+e;H-Cc8ULmY*v>pePWL~@*Bd|?Cfey_fw=Z#3; z32VE5{^BawJD*-Ez;CX;xRhVE;w^tA&C4Ht<@`7I&*p?x*9Dub>jV0|T;7ObVkH^= zMr;DNg6?*uQw<2cLRnOn5A>y?|!#{V(x)HUY@q=!9N-f>W;9(Ax;epI&Z$ zzALow-Ygm)JOtj#{uP|=2&mFffBVvXrT2_CzYz^qHM&qxGqyMN;HC1$Drxkf14ru# zT30(|wAkKq8hSesT|s;qC{}}_&IV{qEMPPGjs60TFUu}heXeZ{KDM$BxA$AmPMh<4 z_3EkyOb*-vdhWmU;X5(Zl~3duk`W#N78^J1gPjZ$!s!NFV)mj`vU=_qQH1` z`HbX}15tF+4mR8(w}0Geq$z=xySo7aG^3y_)0;twVZp~#20>%OVOqHrK_I6<9RZGD zR=iUd1>mg?)paoIxj6c5m33PHuX(VcJd^$EhWdi604qix9Rm{2hiTvBdK~ll4j(bfvTusfcEoDClW;H^`~iO`i$sTfQ){5JkV@4|o(#*Bf@Z zK`L_iK3u(>uwzZ@tz}=ncu}Vd)dL6>?05UAGC;tWz#~p2uk9ppH>BvtIPfZr-awFB z{;lVdT;KGmzdrq{`at!M>ly*H>0T>91BEgzs`*MZZftxFHR%4)I%=exwRH)$Q-WQ! zlJAHfkFsQy}@3VWITidt}F)ikN!7*Oy}1Z-B6ZoZ=q*Ux>@Nb!Iqwxdhj4MV|Q}a zPK|}5KrG0R>>=C^xsTI-s==kY8%mijRmyodXwcJ4n4S`QetllwYrz(g23^rxwXda| z^6o2G|51uAJE)X%Kr)o;&?I8%fM;a{uN>X587cu|m(T%2ex45*U=-Y(dDA9bf~2f&o>PsWnYafgs)M zszJIWZZ#QF;5-BDPCB9iwj!eX&uxJuFsM2Da~X0lKt^aA{GK{$6zLi5Ju z6f~$kRrX_ROVnwTpmEmafc7c)68Mjz!b?gY3;??g z>g{;>@&zqtXKnHHVRc%NoW6!adi~m{_TnQT?7;-C3kfwAZ}Z4FGT%x4g!IentGc_R z`a9{nV5yJk)VrM&fY?GlYJ)Z?@J9Of!l0uRWlFEJvop70u4*nnoga#M4i67>_;g== z^VRD&^*ocv3$Ps=?Pl<4{a*&XQ(iUJadH-+kWMPtams-@2iBMd@=UnBu6tLWje_^~ zJCm56ay@kf<~dxyTLVIF3^6#!LV&$kzm5RrvSz`L-p~0uh}3(Tj`(~Iyhi6o1E}R` z*`mf0feZU^bxX>=2?EyjCYO}wOcI)$xkHFO`u*D^=+0@f1wn}8nogIuuM#+#kh%R*Zgfm+b@lwCibdNa_FjHh0w5Es54d|$o?<742Q+eo z`Y}id!7yQ&m|7BDF^Ay}s9~;`%VD&U%fbV#O%@qwWHll23U=2a*6|J~Wqv|;5`TtX zSxT>iEr|L~Ark=_H66+&1~#hyxhaEXdSMcZMj zIv{UcvuR{DR_mp{hCt66_)nu70mPCilS_5WSI_ad*hXc_A%Ob31tFb?RYyPif^?X6 zr9z{=)<+LqR*Vi7qm%mga;AH2mqYh?+qIO_%(<0ob=S7nL2s!a5p9>2!UGzl1R z_TF#m%H@5@*Y5%lB8t6yqtNF27=&a&ojbO9e);=jWxC^_0fc(bmxCO5NCRC6JXSDX z1WG-n)918Pg2DRAB>WQ{jM!T1X~NIczwg(BsmBOkhZh_oqL^#t~l5>Q-6kmcOz_3S`;`}OLpm(|HV z+#kB#YxT56=wP7HRSY0TGH;cWg#I;vMCBi0zR}}%M;2=lK)Zbx|3n}@0S5Y>`QKg- z0s4oLn*=7z2?4Or=>*cNzpo1@v4J`1BBt$C262T9iLho0unbsa&<>!849p5S9*R1J zK{{%ONFpVGK`amNd!V4YrM&Y`A5D_wN*Rpx5@BgDpGd|1K+Fx zv+}u4W!q>!IXR{CZ8V2?-r=!duIoXggm1V)#{_8BkqoNj3z^jwaur{$y$i8rIN zFaWSs>*0JwW9#UzJ-gfji;`zM33oN1R?9966-)WsyRUxqy3^Y-Q|HMr7pys$ZG`8a z|9%aa*6!d+`iHv*y8n3R%;wZ4%J0FMj)o7LI!KO!ihhN~-$`aPNL0g5QxOECpUbhY zLSwH!2Y?df2Hp|(Gz2)xzu2?5W`q+d)&^RSl9wJ1D5-a>KM(TBL^M;MfO7302aE<^ zGF9#~!HwG*05>#V zBKQP(it9-_M;Oxy)GN~0G|$sxeQ}f`{*HC6Wm^3N_{I=q=zHEPK8!#>Ss)4?AlUB& zTr^K2;?O245pHWk4{<1&fJgq009Xs7jx=v0t7pp7MTa|>qtSn<;{e%FopbS-^lF>` zV5md)3yJqGKG8N1@C9vcDeLs&g0A1buKc{eziS5u_R($&90=83Lc4R>39)`@n_#qn zVKsYD{TPjwz=Csu`ik3*>o>1!$6Cox&!BRj3R~~?9MxCW?CdmjrWRPNPJw8rk@KRi zr!?EqWp{0LDXcgxBOn4kzT7NpT*d3B9X@(C*5R(5pS7Hy(al%ydeO-Mpes^20yBp? z>0zr2sRa!(N~`;rsLRA?izJ&I5_L%v2$eadSZHn*0Y3w2FUq+9=gG=%nW} z3zUs#0emVv^v^M^SX$IoMrTUyXaxv2urCB|m;=qjh!~RvA_Tx$%S|p7%F(gluhmlF|5T=D-2i=>WUT^?hjz`r z(OwGyCKCqL+Bv1=Q54Ir`!XSpEMO~Bgvv?Z_0YkG2J%l=X;}ZkN6c+BzSCp}`))x~v-MD>NbsQ^SaRS{n{}`fHWMN5 zq@9aZQ)$pq30u2ddS?kJd!3oE9@^}LI+_#sMT7r$Y~Xe)2GrOJX3>KG#(b{{`iCW+T(HS-QP<^d4fNT;3km`%oQ%4bck+{u^*4*kmT$uW# z0g3KSzV=?0v&+*;Q|W0r*?L;aP_gzJYLA$1acDL&IfmA|;`J`c>RJ@)INEd3n>tRcO7Et*y**I#oq*&_o4-lOKu zX3WFo7c&jOn>=p`K-6;S@9>UpDm_@HH=guj8Oj@b#5mvpA*{bU{LD57+EAB7owu1J z2k1!=17gsjpx*Ce{fH>Jc)z9P&AwB}Ps{UnIMmhkQ$l&;NQKJU$UCAmO4#6+wRNOT zCP6*YNudtnMu1`vuWvKZz~q2iOy_iT2yIBvslk7Yw!}E3_JC-pgW7K&^`k(c*9!tM zwM#)~+^0yEXCu%%F=Um{p3z?H*u;n^)tz;{FCAAGbh!l}hll&>SM0ovy8dq^fl7-v zpygMm{8HCYCR;F$Tf(c~HNJMhU+cEGkI)dMq%EMmtobNsYSc|xbWSq*-rCqr9##Rn ztFjsF!|Jw4%j7minHJZ5x4Gi$9?LJ*x_24vfeVu)A>qo$x)A;DzTUYgby4coe`rv_ zz*|CHAV3?a?@_-bIXeO05Um<^@C2s-_DhVfol5)ewTp6w-)D9`UoypC^WY+vgZK8z zdJciev)hJu576g#g8=Uc)Nk@S7KP78KPKoyjj@7ArW8DZHP8eU?eO4G33w2kvO36a z5c=(#uU^uNuiJE{wV(K^^IO-$N@}O1+u%9^vfV$wy4>DxpuQ{!KkY%t(ksH83DwaN z4kR<<7p}ofE9cq(uD;GEYshxYQ-6+M&#n#v;dPRm`L zex(cJfalFqPfo6vPJGU)$cZ z1II_~qeGBXWkrFOk+oxJ2VUf|z`?ccELX1^&7F!Ux(@21 zP1Q8g5#3Dx9jvLX$mNV}tD=Geo>wGsfXn(H%8T9qQ1q@EG ziRcr_2nSW%MjBpR)79%2bpPqT9Xfkh&Fa#wrTKFWs%P=)( zU4y^1DZVAk{{HFZ1zpsI+iP9OEqXSGtx4>=VwsQex?27OcC*{HIwh*}S%Vby|2Pt5 zZKFYyXdXhk)nx4iO!iVBKqP0osM6}MmT2J5Pg0QXdc6ldp_hJ6L0>vay`2dkjL)tf}x}k zPZf@1f;@X~FW?y7C!W%%M%3(w8VGP&!7;SVNPDQl^F)`I4f&boHzV=l>z6eMsYbR2 z7u_)TA!hSo(zdRxom2ORdidb!HVRUL7CvbwqIY~k-t*Rr()A_P5{ub6hAOF}UTpdm zEZ8G9qu(5r(AgHKT)n*Vx+(7zLv-+7PE{|#Q31RKH0l%-U4Y)*h_#0TAneH$WF)p} z;PJ?J|IL#O*z@iTj)5Z?popnPV~@^D!5?REj8p)MZQx6cU-qU@1e`*2thY%)LU2l2 zsCdqSFU&v_fL$hdKRO|87lyi9LG1Mjy}GJk>^hf6d?b5SlZo~{>lg#DiFJk%DahaA zTD+^^!toxID@ynd-{*3LAO_#<)i>a;L5JHfobCzfC{JmUA>VcNw!-}VlY3r~A9xLN zLy^W@eh6MH=U8_I<`~du9ld@O0DTDRK~Ex0nipI747Qk4#gL!=4P+Al9=ZC@eUA!K z*Ks9N^(l08fo)BhgfdP4B_qquBcoB%iOG}JMVycr01)^$a{pG=%R7*WGXfi zUsA6yJ77gH3qeR{CIpp@FDq`(E1(a|dW+cbfJ$atZxU=a+G41$j+zucJlwS{=C8J3 z%59a}zebnZYwu)GBZd4D!fvVP3z1eD0tWOqOsRtj)fwtD_)km!`4{Rl0WGul^eSz1 z49^Xk#J>tnS%`l7X`#$y|`-Nz8hQ8U3ewdN*da*t$5Eb&*^a697p-SY@-b)ePJLk z>2!1_XILYm&U9hqR5Rc<{cCkVQG%W_vT^h7MdUiO?-14j+N&SDs=-mKm%nX0U^!YAHWGv8UKd-VnYei12xo-$MmNGD*v?r(Aup6 zQ3BFLfO7zF#XKCCbX_HXU!C!;{xbrp=y1X)K$kJ&Bht;h!&B6Mr4Um>s?_G8;!sa7 zz5OBRHV_%woI@Gbgsf%Bq%0rdaLfWy(C;-_5_li&jelbRotTF`=iGys-@&{vcL$CJ ze&D&|#^aqwZhGT1L!`sx(y0t(X}jR4nXN6#2fpD%r$>4vNWwYOJUl&Kw7LQ9m zL{RxoZtoTZ#+{ADx164yYDMd#hq92pj}C;<1nRbBSrSXjC=0v%OX=9Us8hpMThM;6 z(b_fmS+eDaz7;P;8FwKzd)A{2YY*pNOV(l{3BF3($(g64IRr}}RhXK8tW&VIXQx-! zaY`B(0JqnyL%~uCc0kFP7v`U2SpCAWYxW!ino%d`@8<8*cj@_s#I32BCIluc8FVsR z-PhQy;={KNpuFtTyHm~rDGTgg|L{$yJ15&#?q9yVZs&?Th&$Hpy8Zr><*Rj{!pH8c zo5uivg1pD?>R*@*SSrttT@n6CxamN#KL-Ydk%n~T(UfVqoSX&}FTk6~lu21V15_0# z9t#`*Yxl<%jH=Eczzdo3IFugr7S4_F7zG7z$7vzZA%=ja-OEli2N01PabyEQJEedj zw5@$FmuZRd$n`(k5e7gp3!cXyA&x!?$aw%!1ov6_;`t-6*78vpJ&3?GUN_Yh3T3j< z=o!WIZtG|Ol@#hlgAS^Eg(8V41fbwU+>SBL6m2#-=7AX#@(#&#o~x~n^klx6%y(Kn z7@A+vmnB`q#?R@7-!c*xy^ptVHUQ~TAYP^imEERV;PKF=+?MCyGYNcw=`E3~a`iV} z*2Bl!HtGTPQ}u$gGbwZ|C_L@+yp%0akwA@`w;?s;_CHe)GY^Y*?fFV%!_5={3y zVs_i6aquHT&l(l2a$ zp7j(>?qguGcX1MQJ|g%}p-T-+e>hc4?(b5th0$R#DNq#nqj|8UM%)oWRJxvhdAp1x zl#|RoodZ`p5nbF_>S^TV-sQ{7`n?$GvMW{zWa=sDTJHsR#u9LXwh#~6=Md@b2$Tq> zgXv#fZEMRnIE_D(VA?9JdVHJXOP(}!v^!;OE51#~|B!8i^dla?hbn$V3iOJfq@$w$4j{`UZ#(%BzYv~_dFQzy7^R)NGUJ9Lj2@mh{MEwECvFq{P zWqC`~Yh3$f!GWgHh7t;OfR?a(oD6`0#-zg1<*3-?o3CEisZQ(Ng8}_D`>FH;`Lit0 zwp;qU+q+sWp3_okTUtF<(vcqqI-A02dzEuDPEU1O7;L{ASfF;of7?QJf!{q~(W!Ek z_yz5JJ3FfdEKA_GZtKg*?$qMe)!MS=tGu(>U(y2*s=-H@f;{>M4nBehyb)zeRnTCG+!vu65lHjJaFMJOOp++5IS9nt#kl1G7_nAaX=^wIIXDY9SY_3Q(X&kZhS zg1aYlv-h78=%A6xY2al#c8O^>kph0b(Rvib0oja>uGOme?C8he(f5hWR+hCK?XV-Q z2h73M?QeTN%^>Sq5UHalWi7_x?og*Wl^~=AAk^pS;=EJtJAjZmsMQVabboV0Y|yYHjg)NuIu-*0KM|382qh@x9>kh4<|J63_%_G06}1+ zeCvES$iQAF4(Sk7u%aY_*wNa?oLK-r&p&tM!(cs156$WoE31Ecpobws;Xuc{t zCirAG+8kuH{}bpU14NSo?UN%~BMH3nd&agv6d54KJQ`g-w;t<-06ha&h(VJ4j^F2g z%7aj&+YADe>x+cEn2{DAtsw*$#Dn>n0ez=a*M9V8D4V433zUb`(0IrfZ6nfc&mnKs zK@7sMPRNsNFM{fZGIWgsB_{Y60}>qDAcAl&PeGA_D-G~+T~SWD)zey8026HlkS8-* z-F}DPd~7TP^5}_8ZnXV+MyLHMyDQKy)E)r+iX#19h-j}alZkF)AdGEJ!JR3 zPr-s+AuX^J^~)56PX!ry!DvgweQysy)GoRYAxl@&93(cl`Y;Jbt@~GM!AS2Utedc$ zpVz->=LALjsQI<3h}X#)+$GooNqeOBfbAW!wi8Mw9$i={-0hi>6F!e!d-$wexM>gt zn&bDJ$FlIzbg^UODOCP;U(YrGITl@_@ypTe(O`pqGc;j2dx20u7kCA5*3DXQq%teG zC+%Y*=v&R0b&wzcEX9Ku{VY?NmcDMIEwCf+`KjlA=yrcSzxqxy&ZifrHSj3lzKnj9 z?KA2L5aV-Uf*hXx9RsNUxVnC_O5v4%LBt;WN8C4LZ zQ!UW^yG%w8GUIpd4K|TCQG{}t14v=x7fmk*-(G-(0%mphsSXB$0uKbzc>5SXB$f-< z%qykzJ1T>B1#aTHgd}(bff<0ckm2+m5AQe#jx@LLVnG6q2F&u}@NcG9^PoVRfe*=c z*y(0y3&c>tMg$p<)DA9C4tgf?NH`5-HeHEhnV|n67$VHu>-TVtSv4TjWnrG8h*mN`I?Bnqi+B51Wi3DnlPAO+?yr7fQ z)4En+?S}_qy=3CgrI)qzofO*$d%IWC)=s8nv2?A@LN?N%Q=E{;t@1US;s>v`0HoTc zzWuHp#*2DLG#V;6n?`L%<@4H4cV9vF7l!s|^;_6y4wUC7z20Su;-Nj!?syhjK|BX{B$j$y)l z&2V7Git{{q8rb~0^!&D7UvvO+tO1V&60?zraw(A3XZc!=X{nFc%NUL*L5I_2DX-|Q?Z;_2Z>srcIW<6-yXN2iosy&@Nzj3y)2-=ese?F?@_Ps z`Sp37rqzJJ8i3`e_a6f<2l&EDlUeHFCFQ5z@GlGihvC26mUah02RZPUz<~bAY>rdu z801{sRRoicl?7SFU<5&`b&vsC6eve#)epbbDNgjT0|DnsUJU6kh7pIM!9o8?=OBxp zD*$N%y&+hil{t4(_^*C5-DRB4gq88N3q+Fe3xd?pKtcbpDl@yF_c}ffG%KJmnMBY+ z+AaY00^Rs5wu&(TzC=7uvkK|ee0(M2f{17Ao^$+bm1#A*!htxFp#As(iZ*CV@*Y}p# zb%v)M1IS3Pp7Xw3FW$YaBMo(H^xC0yu&visXr!m>&C%ERiQm&;qpbTVJ3rmu6Lvya z2Su&Q3fteZw`W)0_Ntx%vi2!V($cC=>^ouA`m;~7lGMAdJQ4MO&TI%o$>^}oA7oz- zu1cLK@W0!cw%7#3rgawTr2$Ckgez09(Ep=}QQeYsF9;2Ra0!f@_{%_}wtW&?l(}sG zvWyGSvC)iU_hwg??WY6^dzkVmX};v^iw;13l?DvGO9@P2ATY~&HUyX7-Fs(t&7x?T z0LzqW$is{gIPTn|U}6GB+DD{yTi*514X%T%5}edS{g$PU zK-Aq!whYcTz+Z;N>&V9f!=F@i{L%9kR^t*!+29^dZO1an0Ga{omK9ZrTc*8)TRy1`y#rGFlJ| zL|lLXQONll*Qx*&UM@wtRUQcFXU?{c!liU#K;n7M%6Hz5BQ#_F@jg%TqmV}kCW%wc z(_C&zqX9u|d(aVd2W5s06mp;wMoof^?gjANhXff0QpUha?D;5PSSFi9ga9JbI?)-U zlW_eDfLlVn)boD4Q$TIg&AZn%@5AkV?` zhbwknd$_%`ItIJVm^tX6o#FLRKbLLvqfEgf@DYrL!g%6*kNj@@iT*$atc92InbZ9g zpI8$F{?RD^o_=ls9=o40;BPumcxr(1C0xH-gr2U)Mn;|*!Ont?0if)Zm7T_{*EHvy ze=A^8=cEAi=+)7P8G?z^%3!Jn1;Ic{@;`2<@Kp2#40fFcwSoF_=b|q1KB2>QuZ)J2 zX<5q&xB0fja4?~!_a1i2PHVgF%K?F_?em9)KBe#L7KpvjzSriebnH0eF5KFjfY#Gnyz(*$`+reT#h*2h$q= zl0&ipu~$R_SOEYQ?vcs3%5?#5eM|HG*NN(0e$FaWAJ2eRXr*Hl_^0NH!rFkFFpKgANg2%!KaQ@b_v4rbi_q{WT`{x5Uc@6&v)UzOIVkgsZSuU8wT&L{Z4b}AOYDK zjCf~)!4$~XWw$>BdNgpXNp?1z+3Q?BhP^&Fm^oJNZ#tm)Z}|GpzY9Q!9t{jI@W_G1 zo`C%(hWPdrA>>ITt@SH$GVY612bawpx$Bq z-2#%*<5Y~?`HPDh0F<3f&bH5b9!Ot^u8x(}`zd|q-nu1XH*94JR$F+NAhbxIlS>u= zmASGnzkaz5F`w9*3;P`4t5;XGm#oeWR<3UMi(|R{bUST_Mh=2UM$bXWGVF0w@SwjP zQvibji1|GUG$4o>M<&>K!R&N#%1V10bHHQm5NJv|F^I5F>6`X;&2$9#gH==0 zjGa*zhRoH20m}4FfPMN5@S}$(cUH*LMtd(0E(~S{9kdEL@d}7(0P^Hz6686xPd*I_ z0k)M*9=IZ?@^tNYd4l?{lr>t&f}flogA4-R#DI*feh9e~AY%~XKnr=40qnTOWDpAG zfi@ql$+D2{CEb~U@Lp3=0UfZVbX`LL&cO4L2oeCYO&!Im#XJkODKUX8@XIgB@H!8l z-K>K|(h<-Fn-ORm`6J77=u`mSGT2Y){JMN`vyGfzwULI05;(N!v8%XGaJ6YZLr3aW ze@bw%=s6%nbs>B0@n3ve9Dz=9CjfQT>_O-4`Sndb7*Wb$x9vn;3I?kC9@H?iC!*^n zd+-E$6nsl><2ur@s9*1Gvzj2(-^G*Nf4oKJb=$wVj%X>GkKXCisHse`KJm4f8r-QE z#sEXC-IV{X|6scbY?r|3P)~&VZz+=A83X%g3^pk^HP^RfyLj{~#tY^tPMl%2?3ebg zTpoUYPT=y}eElu}Avzk_>hD?4^XTyR^Y~3YA7~v@nv+Jns9;f@vla?ZaKH`oKd56420FxV8DAE;U!qE`!1q31BA?Sg&yI2PYaxNF*eql!!Vvjsj z02~#1E}Q=>`MrMA9Q;_0Ksn%VJpG<8P?=7_MF`-!)AM%n_Sf{m`GSLwdeOg|9wxpZ zSu_%jawM^JN!h6isBH1kDLzWDq`U{y{o<@umG1_ zJ`GHAuDjE&WsQLs8KCqaBnIBW^eG(XKtTX-Vs@4+p?&8#e_wTp34?5=iGinJ|L`3& z3_z=bNdXz9(2f%PLMp;bMSCKiA4h6P!6>F-WFF|XjcB8d;YoFwlSy!SxqNw37onHw zMXe)?2n=q2Ti}pAC_>2iT@JlfI&?9+liTSOZh*a2s@sUg>R|laeA!i7P9 z?g)ticT|jw0dw7Q8AuH32BtfPE5Ed>Xwom~cUQRbh{sIu9!vkLzH>}?r#;5)DZHq5 zZ4LL#!KLgS9L?(2tO}>R{f2@X07MBmH@f@cecXbOqSChAsMfmvqKq`$-`>}}$~3HH zSuAVq=}`kKsWw_8rSoA6KuTT;6!k0-rB?&68XRpSC1na&2|(JsT5{06{r{>TRJcC$ z?Sngu>rPwiNQnYgq^Eu$8fG$MYT$>GJ6LADx9KH=YuG#-KpdMjZ||$@C_OrS&poZt z3C3Ok{4Q7zkb|MeSCG0$Hv)C9T&xI(T1N1B^vd!+h`9Jo9#IeKTMVlu=7Hc6ogX=P zu}>&2lVbsm<{Sd${zsX1hJd5p^B{rKyOaVLeNV=qg8jMq@LtYfLqPw%BV)pNc3Kqh z#_v%S$Uw2zM}rsChgeric2b{Bbcl8WF!)VCTdbDbnjDyO=8aI0uQ-y}{>;a4q))+Q zkTDv;o7ow)ll?W7$@00N9YH|GY_`?>2Gg`9p%TNUD@Fs_WrhF@?1^4JN)crpOAeh} zV2@SaF18Vnv&)Ok*5B5SEJMMe?R;$*>aZ>(uRdjQ+U{@rcD|%!_cbSlr|Ybp%c#o= z;F;gwFH7gg(obe*YOs!oU?(g-Ij!kG z{Nk5x4piBKGLhMAVWE&Vk2llw>cTUsaGwI^16xdz_9(#n}<4 zK$9sSPn-pK33H!u96^RW_5B!hfMHofGWCEKc&rb;Gf8t)YGk*Ogtd(#y!h%x-3hB0 z?m8vw;$-W2S=x!{N`kEuXLq=jE_O_~QXSd&^zDb*OH_xB&B?bEhdwvA{N3N((b+cQ z^6JO$$YG@O?ez~{*YtJTNtt8J?c9?R;MBtuiH5*IX(Z^%5wz|}RD$sg_rQ_L&^&g- zM*<>%8ZZxnGIflZ25^`Tz%^Y8T9bd!sT3M8AQTQLE2W9d@M@}WVn@a_yRG8Id3?DCyFB;&3Pj2S906$EmU{Gjn)qH_A;?H zT4m(52Af#NB<8OFi9&`vy^67GD7PyHx2mi9gdh+2z-F`iAqWJ$i=}yb*MH}owUoI2 zS392z16@LYV`&Hs95d)Nj?lE``FDNdkmutIGuh4Rg|(^a`CvR)1Z zT-XAXHfgH+ezP?TG;N`)tx?o7u~v|CUE@%vF!w;{;}(Dj`XFmBXFE=hM%}Ez>9X_y zDaoJ(OJw>#lkc&EVjtI7@WcsYn2u!qCsb#@5-B^bW0wZ9`lM_{b_0|^d;cB%>f_gQ z2uPmY6f6bvPklG`LdIU+r{=TQt2uiQhvUYmJkeJl=1kHXs;u2I*c6D6Z*s`Y@agle zp%Md4YFJ8-)(X97A?L!s5)>R(JBX{NhP=_R^vQ=!TzM7hc|tg;5=w44WW=G*a_ z4hU0?uJeJLiFWUWl@z@-{t{*9z))6@9U1Fw07bl> z7W8WQN>k5D`5K4Rz50L!c9?`O5+PXEG#XGq0^_371OUiiYjPr5e zgiw~1@?SZ;_Ug^+cA)ITYMonl-iAo>L1ckKx!S02vpc#5q@=jt0ubyB9Q+>`BG;kV zF?ap)ru)3rrtP+adCeG^J@mlDZE|h?{+^v<0vxUXF0sw^(zT2AJP>LDQtABr_{}$D z7DIu(KpSeXXDnjh9$3_eo{VzQoSSEB?d3LVv@;a#&qPkej2ID4>7tqbg9))$z+q-z z_Eh|aX=fPlDS^W0;Lcp;mwbKk0mxp2`dAta0vH7Nsp<3Y92w8vo6|Ud$4q$ET|vj2 zw9$Q;If{g_lwk5<|Fqyv3+vA!plimK`f01YfC1_TtQpzz*?O0BO-CL5soNDE>LT!R zCdc9Sp&l-Ed3|N`bDP0+W2?O*R6$bPuD97fcL-$!guwBXQ4%wV9XyCGvMY0Uzj{g5 zqt*FS*QQ)uv=N*KvElmiN?B*J9@c3)G4UK?nG+ZD!|q5XjV&%O+HMdg(8MBl0@&+F z5g;|dLe58QXA!3j$gn(n`tBvs*MuNZAFI3BB(!yhm%Xl^HImisSL`_ z(Df7VF*s=j)p(l2iY2gXw}s@dtiY4L{Lfaj+g16H_EV=?Vk}0007f6&}nn# zhs1J1`I7F#dJ2^^p@=CU|I`gIe0N@RqD|?cbU7V+?}*7lduN?Zo75V(u+wZBh1NF* zV?DLk0>Ex;>-gP(xAB&fIEVpd*8@&v#hjB^SXns$kM%Nh6KoD%9P~e6Jfkc7O7j~@ z7L`)B6%oW|yOgi9%gfDPzirc;9v)f;7_KA3@+nOGt@+mxgWjue=T~iV(bkh3w8FL{ zRQ;(_*|gnRqJ7yOR)4Yit@6DEAFG3D*3l4hqtG&LykC8XF6Eoa5$kU#kK1&(W^?-lGI;24S<|x97UWBvA%cflQ2<6=o+kBxv_cWYl6dnCG!MW<>+S&0fp<*j zqXi!9%$Kg|bq-Fhh{>s!|aZ`83q;_u;z7zH|_gS3Dx!8^A{C>P!qn3o4` z2&$bCE)J&Ip$c)-z>Gzb#V*;bRFmcHyzyWSUQv7Dli*uytohlQFvrjc=S{crr} z!2P5J0L>TNNBLNtj!WjV6Zezfzk zT7XeMd#zd^Q(ow!bS1btIi*kEd`A%VM7ad{a`V7er?sDpQUe`b^iE`$fWSV4;0W-B z$#~$Lvp75wxADfBlsKqo&s#_aKdJ4-si3h#Dbcp`jF}$|Jf4aVXL)=sw)}0rp4A9Q zZtNV*KK1>fcPFKt3DxZVz2CEIHj2Xj(BB)%C3kWVWZ3h;1SCE{xeA;F5LoP0;JTe{ z0p#^s+Gs=T)#7ecnt@j^mx07uf`IM&)$5!3y96^An;}2DIByPu$w4%?p=BSfiNFAE zK#{+rI+L{=68NE(si(9z-kFuPI+S-F?(XS)E2{(?#X$YO7{U=dy)QYXvsNfbvB8dF!`L8hzuM-O1y2uVwi z&U@ggeJ2R6q79m-@u`!{6!d}s7|bAm0_>Jmnr=tsDns9P*-{lJpYU9>un_ebOY@V^$@>i zAJ&L3G!LDQ9O~RR1n3GR)|TSyPELH?NmHG+Q)KhmRL|Nf{;|@&{r>pPw~?8hhlE%H z>?-#_s01BLAMw}VFLufdCarA~U?Da@EL6c9mjVq?>+^U2pXj`#b7u z620(SXB%j^yjoz zVEae?Yj?jyfIz($IC<4c-mG*bfQ7V{>+bz0`t-h?3SLGj+;BA_)_&f{s*AP_bhM%K zhwc91p^QRY*WRsij>q}UIh|i$)M;2PfPh1xl)66RQSC2@Ki`b|hhKhApT7T8_hhfb z(KQ{1YT78s-GNTG;q!MtdFRutwlpOGsUsq*1V>oDmH_0?&jxXT<3^Fm9VRpm1$3YQ z6~G<3WhP*I3Q}Uv5ECFye^9){S-iHZHYo)ZnCW)MePJRe~1ED<{&4~ zZcH?eq6!V|hs2`|(0hdGI&9j_%jFg6@-m=TI!I~+`gnP#L+nNN_XVCot~?u&4kBai zJO)U;Zp;A`;rFCz6!{QUO7*^)G#uRxiPYvP2oJ3aZO&dS$`?m@%JgW(JGWy{q}4(F zPqbM8!ST5T*j+a{l^xWX32arXA?gVNXDxPQmh(RQ5-+E}6YN9#{^k#UT>U}Ww4_X# zs-0U#s~CuGc8No|IK5}-+u7E1n=OC1y$$xZ+I^K5VF1ON*HZ6mZ7*MMBj)E9y|azl zSyU2rtWBw77qHc54%E?$<`nu?xW>Kqx3)tHm+BKsaI`p|Px`d05_oK%Wr2R-#n1oh zuad5BC5X4jJn-%GF5GufTYal^BARuAn7x!SC+u`2_I46)v}i-29Lcm9JH_+kNQ+e$ zXl0sd`Tlhbuj$mZJ)9^akLH2z?!Et|Ue9I``d(D}SfsfZm>f%cECN23EC_7S>0Oa)itZt3FoVDJZax!{w>S$5ASHs|SF0=B4QefJ{m5h@#UKEmxBGCD0e{0ia~286@DKsYDcjtyb+vu>em}2k- z?>LVzExgB}3Q)(W|0)Pf#wP}m$*fgJ6WkApW09(*`cX@M7C#NU1W2)_V)fuPX zF)(Wx5F&FuTf~i6+*E-3;&QAD4_JWPsQ>8}oNPYzyTAV#sa+8Q84H15Y*@A}@L~J< ztoNPQ+T_9RCl!sMc$a}-UwQIA@E6jLHYVGHz*3?enQrfmY4zF*E;Jq5*SW2wX<#uO z@tKtIrCytyJdcymH6Yj%pr@oCdmrgn&T~&lkCmSVJv^tuLlU8_K%galKc{oI8+%-w z?)bwUu)llzeHj7yQ18`+&^oWi4M%ud0U= z9(u5`Mp-CpRpL1yZs>;MJxoNW4*>EvXaj1VG15C%qpIM6MSHm1isqgWa6CI{dIpq*#} zYC?$|z+tdHp&3-l5dVnrMc>ihTgP!6((AP>OatCSo+mlP{48I@U8W5*f+b7L6a`%@ zAE$t=9`@In=^zU9S4k1y+yU+Jpbq4Ej~z_ z)JA>txl^70lJYDaSf`g4HLxk8GJd$K1bz>l67W23kl=>DcA#}yNO!Hi-aiR5f1!iXfO32u3=~sT@SL1P=ybPuZo*|0JHhgk+W|WlNKnryvOca0`fCo4Bvh}ijOW*$8x9#4dXKx_z zX$G$?%5yVNY+IQltBb))MDp?nuPU8oRHTeRlwGJwZw{Zt!wAc@7&yS-Nvec@{PqLA z|M_=*7Dz7;aZ{}aOv8HhgV%KP=BDO<{pzNcU-p=PxVs|*Iz4S!H?ppW)IOQ<6r63m zqQ^JGmew;QX)%N9y_G_-L?X5Rtk1c$SLEO1aPW9*){!wjU1`hrf$Dg$W~-6X;Jk>F^8^4^{X&_544JS_rl z4sE~*Xk!|Ghlw!mbc%t7TqS{^&U7J_;qkR(S~FIH`RYj>uZ;WhIVQzEpLAG!)>Jevh7&4KKRH`r&HHlFcPT7u=Bco z-TcDYSziOf^zi8uJ#2uTt?mH6sV!;O!{l@{-PR&*Ps>!_>sK%9{W6-b+wiuLcCf=` z8WnL3kcK!_NnPB>HPX2UODDE_m)j0- zcd-F4_2OpSW=hwMXHoHTdhG4@w^qkG{A+dXsxOUydLD?*pH=$mD8yYm52Ty}a=1Oz zZ4Jvh5MKkbfMNCpz2+22>2D{MfBL5N{+yh_2uL+{&FN@+mc8Ul@7MYD8NK-WRdqa9 zudZwPHD)?Ekkz)ShbE>@F2~hoeW9)LJq0Kfd7BNJOz?xyqjH2`*PS~BClR58gu;#) z;Q%y)H|TV*8htV2uMTDGnWrJ>v3o)jaMfsBj?o8xZ7T3QI#JQ~XoREy%t2qG(7z3U z%L~`KP|$y49$_G%=^TJN7#>6;@m+cAK${JeXPSZJz!)4==&YFNfBfyV;wR>p>r7C0 zqH%N#N1hU$peBktm2WsIkc2&ykGhQ>qSlcg=BKPlH`~V`@LoM{?3K%5@^K0W$>3U-Hb6Eyo-V-W4&&E@UD)Om+4Yv z2Q0L!0=CPuvayW7ukz#c>_mT5A66HkYcs$ZIIfqScfInaTif5+#l_ZHc3tnq%}Lq| zCUZR>9eH8U5&gFv;JXs(lq+Iuuw{V`HEN?6^&Ks8dv>w~R^`3-Km93v{|~=(o>*-` zABD)JfQf<}iXTu&^9AF~6y!YHl&+QbU9|vSuy#l6gQH_9Lu4Z%+3Mmr@II!s{C5Hg z{Ea@~Dfb@r$w#i^{`Skdeiwk$Yd-9?Cy;vq#NIUvES@?_qVLb1;jkqt8>R0OJc>IR zbpi|)!(3x<7;dV}AOQV(U-K-BzRPGrJ-NK}!khx&@9wP{)DlSlA#@TziWons z4d<7WYx#uU{p4#pxj3ck*VlEYm35WaCaeytonI0R9;tC;W0DzuCTIiWAYt2L<1uC^ z@Fx1~;>dW<^0Sq%U~Oj41(CXYs1dpaIf?fP{<54mo=4&p7?87R{{luhusmYigJXc? zP`6g}zAi^#O~HY7w;VGI#bezeJv$f~Nd+h-I`s<)cfKJgMt*>30$pL-1^X0{^c%{i z1WrMM+k&ve?mZA# z7Oxx7WRqx_LV4v$?JV1TRXsDRj285T=)J0h9eYA(caG?%1|NYN?QFjVc8k`Ajrb2B4=+M)r=q#4aC)Vxep+1_AoofQVBXT8P0)7qs zpy_dZJK3)6MJUL&+s0VBVCwFOpNhq1!3YK}kL9t~;fw)L&i^@F&uS6+=RThe$^AOz z94liMMeluAgJlZPjbyS3Q91h`qZ6|C++t+sXuUnmfOosWgdQg-g1-5ipVR%;gQO!B z)j*Z^V3eQ%eccT!*6~o+fgCC=Wh&I&Ho{QeyLfq7cl0PH*0QYyVX_^tPWpm5tqb_D z?|%AiTU&B=()UhhowsEMY3(C2?Lfqp-v0i(?o2M~g7g}Itl1$pTHAtpFjS5rJrHqr zC8IOS1p{(XyUzW-<|oQ{YIR<-e5C+2JVum(zKQsy-Z>?N-k zgHq?fB7Uc5P<3Z9Bi@L7?L0d1}=d>uoeUVupUM)@{H5SF}a>BtZNs@K&r^`ahM>o zAzK$pMmfW@*cM%mRXjACJS_+1-3<_Xz|{W>Vg~jhd@)&X_sVqK>o>33xl{KKVT)V; zq-cYNuT3VZD>ywd8cK&(w&MW;V=%&zp~VlB-LEdLui9>pq8(d4ZOIm*GZ52na4HAw zGd30VUAyeSL9|cYW*(H$kJHU>-G2N)|L~Xpg>aOK2SIR|hTfL8u0*Jfv~1rG^_;Im z*MHO{?>vxDr;szqL-cDc8}WK0?g@`4GdILUYiJVhXoSv2C~ptr#k%>m*YT|P>@dsG z_)_kS)6eG=aO7**n&3avGr0D8I3G)cQR-78-OqW3f{6F_-nHl(ABbeL-9cUZ!um)s zFMSrR;2vlUk-9{H*S)2s{pp|olpa2{gPcz4XoC}_V>NXuQ{AgQ)kfO=;#A5g$i+?D zPraNresOiV{XX{t2{{=S4Gz>OgN6J4=kMwM<9*x8w;xD|H8riqV+5;=}+4aI_^ zC|?&0%t+-f%BVWJ`d{aFj;U}&N@dU`fMPGzo?dbM%EnhQkT!cau%cBWxDxP#UY{Wo znmQ?T_EGN=Z;|&R&PVcj&2d!B!RK86foIVGkODh*z%fXmKqn1>hfIRTrdRHeLFA2g zuQLZA9RW_fJU9^uz~XnMUBGT({k5(NJ|Z9@uM-3hnu*NpAj8@Nil!~_9qItpwYx*& zT!~4rf?9 zSs(Fm`5G%^837^9o)^Dx^X4@@+mQk2Zleg?*I2Z*5=#f$ zcN<{GHdT6&9##Wp>lj@y%V>F7_+3XpR_Sf!Yffqw-CsnPT_tmRf7om9WO-rvu0gg&FC)vR~mPckhCQbr- z3VPa~{inaB+Yh(Z3Y2M7dWtzO-fw7G)CFy;`xt3cvuf|r{bB3DIiVMCUu{m|uI6>~ z?nRxi%S&`1X7tP`s^MAd?Xpn(o4@--ofdYoji8)#BTfJzt3O#A@9($wPtH#1NB``{ z+vvwx4W#b3A#9tb;QprWno{Tba&D7JZ;djEeD{^$h%Da#ao~}p65MITV!)89v+Lyt z5Gy&Y*l3RQe5T;E*F#7sMG~=^0Pau*gKQE}hzNG{)1aipIl=;U(JSsEGr2gXnF1-L zg*k$50AJp841Zq6OmAYFO>&?t4+JApPPR>Dd%2o_kZ@E|B~)Le4;u{tJeYL)H+zT9*mtyQq$?IgStc5 z?VY6~5OwPY?`E?a=-l?^LS$s`vIljmM1$isM^Z1GdC8Scx!kKxBz z+Futp{F%mzXzs%lX1P!i~`q>T@A`;4@ zAeP+u1`c5g(kw;0KE4068S(e^djan4Bv#0y6I?oE4hM<&tiMx+*2|W+<=N%SOB-c4 zzrL)~qRJ=+E<~?ALL31iu>yov-Y@_57j+s~4T}0HvTa*VM=Cmx_+blvO4e_F{I)Ja zFYlEzN%FP!vr8uI53mfU$r$*6-{G%c3y9R=|_Tc%!q9#JHTz!#mT(G|QWd>5dz*IoZ>#WB<^ z*H!juCuA9icU1S7ecBWUuZuQG(!UC>7~YMJuj#)KT948G11pT&>!Wa`Bt=#NmB|K zF6Vy~TUd4_th+L)jL4|LOxo7eoKB~yBkt-$%5GY!bGP5UPjH!Sx^BoBM^@U`YP&9O zZYt2%&a5^vuXR%0B)5^}6L&l`RS=f}wa4{o_aBGydJ5 z{u$x4xD3u`?VK)Zs5b((|U!_wGoj`@%*RQ*~7x@;6XP%Kwf z2(=wA3$W6Y&%tl`$~Z8Ww|D)j<$Y<_#=2iTt8+l`8UfWjU35~O7JFcim3!>B=S4@a z2#jJr**wRDL=h+uI1q`>WAIZDv<38lV22ExxglxS-~ZX))z2Cz==Qe^E~RhjCu*R} z|7IcD$+IQsDB!+~dYqk~(!&-2Tx|*?zp1pXxcIKqSsYGTgl7zOzKGqE8@a6Hjt{US6z@9_7O$teVer$)i$QN8 zPq#A+`tR*$`4GycmgnUTLC;Q*$;MN$-&hWCV4#&~m-_x(_HkN|gq;6p_Wrcl(&RW3#N5xh`^~($XVzYYl>i7d$tH$d z_m~aUGh-vk`kTxoGkw+X(Jzo`BpZ`Srs*E3n_`n}flD_CqCqSL5KCdH0;&qNSLL30 z_j_Vqj|g{vJl=TEy;;PJ*&s8jZk}`ACBh@Zm&e0n@c}c@`xl?Np4ap(YVWct zBQXT!+J$nTip?x-soU?uR=}+GuH2I-|H}FX9X@zSx88V@TKMgJsSXr4#Hm^YJ7dqMg0Wq*G=dUk9BhY`8LG? z;zxV;N%Hh$5?W0?Hk$H|(dhoq;mx9=^WV`}`MvtZCCm+*UQaZFTd@JgWl?f7WTOd; z${62I^!m4cmdg}JAs-+(iz9c%`6$~I=DD)u0E+b95QUJnB%3?igVV8|7Y9o8V)Np5 z2?^^IEPNM%aML&UKDe8A=vrG_E9Z&S{}4%W zo_>{Z-g<0c9DVZlp&iV=FX1(OFW4qfgk#%l{GqqKX|%<_uxbJjfCjLoFVcn_m8kCo zxbnw$ki7$-W`-&yw4Zj>K;jZPRjd?502(7DH;^H3cBs203405GHrpJ}fm=x1`eoF0%ts8?_B zC7GP~5L=>EahJC#Zh7yu7mT`W^$wd01{QH!U1V9Zsp#nP^B~@)^ zpBQ9?+tz^20G>w?Uz(Vx)v#Cxt$*7F{)~R{D3&@Bg#23x#6d4^a^XtL`nhe|xqg)n z5BBqx>8Ni#f>P~seG%C-*f06ayG5<#@3NbgO@Cx|2M~EF!G%0c%Ab=mH_o3gQ>|(= zJ*mP`o~w>Sqiu|~+9crYIW2jr)qGagcbKW;8X3`pc1wL$1{?XoYrmj_hr6SaxV7=h zRNf_K)1+M8CG6y2h&a{Vw79-AdTop@2&3)Jj6|(N5&#U3<$qE8mV+*&Af6qOG5ePY zbr8iiXlT{%qrqykspEH2V=LNco;V~iJx04=`S)c`!xYHCH0Aw{M*;a1n$ptWQ}4v- z8DJPv9LdxhhR@8#axf}Du`9`r(L~1wL*=z-@{*a}{^47BzNnNVTi=#Q2!h%A?84W( z&%8&~A3iK}6fih)V;Ytlmo+JqSOOgV_LH zEWak1(W3~Tm~fzpa0&!=4SEBuA#fPk<6%~W1WFg2`GoI7dE5gyQ;8`!zr~BNTLqlD zp~LDiX%rwd5up>}fRL;%=x`eqjZ82gJp?83hjXBbRyiZp}`9}?4qtu;uwXF%;gk%3GuPAsAV4JAZBn>L#=5A`}XdkHW zC44x3?aM#A{F^P|IG7jpM~%X^_7tARU+1q~9`yfuj)*UGn_Kd>kbf2_=3D5}>8mrV zIOnNFLj)8kmEU>EKW`2r5fCLG zWI{pyD7t5Px~ywEG-$vSau`r+WroLm=NW{m`K{E~c-po-oYQ_c9naCpmSktSaE$n2 zijlw+J{fGpcYwuL$A#( zPwPBi@chP8Lt101*HUb1wsF9qB~59X;Q&AbpsGKDpA0d8%@`5ZIuthQW~6ZdP;ulc z?&?$?7^!)0BPQTI%Otjgu~Xj|6eH$UY>FZ^_(VQ3>@*?u+ONezX^5YB4961u6QZE? zzi1e-c8%egsuTNr4Eu_5$5o#X zywB7)4^E%c>#8YPhekGQ9hU@NWa}t-X-s2>tZE@+qs(?7TvlL!5f2*}{n$oIqDU0MuLCwRf$ORb0`f`J)KJd!7K zzS-qE5v~KGCI?{Nq)p|rz(gaQ*RZ|k)hextgbu{i;PaG&vMkR^p8bBDoRC>ce1{&B zgv^7+3GaWL&i}X!^C(Q(jXuQ8h$r7S{YE(Y0Xl?yB$iA;p^)=2Hr7 z+&YM3HCX!s0BUeDN5G|@S{86H6|bTLNdUxpdY4h<15Y?^NwK_oH`W&T$U6g^n5Haj zSN(TnEU9r|YIP9jpmhQKVtn33ywh!+!hN02q16GNp)>-BZJ!zFX#l1fE+}*4#Dp$P zP;ZX(p<@GOM_@jsB~n90dDa~O=wU10jjmqDGNPlzA&sn3fe{^nK|IIwonL8YPHk)|I`?dny)>$S1stz^?oGPFJ!8c9ogi%C>nWjcwiCP{DA~NRJ z6#LfNB7rR-YzKc2oiVSA18kQP4mz-<)7jAFMy3{BeEK@2;rH?Wft}q%wg}xL^CrKN zt!_4wBIx6~ZSC6HdcL%O|A8CK{M@WMA|-O716(uf>ni^>iobQ?!eEnD^Hi>~L&>79 z0|D8kwu1G0qFSz1yL`@c!<4#{;!8-lKc(eh`Yu7>CIO zglik*Iso{0AkTRVUWqu#_k#!b>srXz=YbO#>(?*~=oZwIQ(CE;P|v7Zf%esWqs%b; z+ho_nQxngfmL>;?JI{r8Apf&EME^@qLv7!bvFN+>7^YtIp~qmYp!Edr<2o)pVKC0} zPA^=YDD_?__YJ5ee}S57O@2f@B?DR4{8hA>6^v1yF7?LCujOdNEN=<8Vh1M`W$L4c ziyG~aov%_QHZ44?y^uo*2PL@k)FnC`q8ReLL_y?mKs{$WF6qqCST9R0+!xTyIiiEGN zq4WM$yKiWMMv)|-mvn?ne+OW$QiD?qph0>v)bJjdC40Y&wAb%-l+PW5Erjw8&Yfi;jPlNkd3r-0!?9;q!D+oJi#{n3mj zB|=Muj=K|C>#sVkzNgNf0Q}9JoqSsPF`Ry$cg_PwNWEgoXyr?^oZkiC2N zYpojQnU$!#(woorFqvjkBpcgXdFqtvIRnL7r_A5lW*7%!u*|3zdvAy9d^Q|*+B5&yf#}D@@xb(0E<%44 zMnUJIWz?zfk5bOZW!mb)?byO+>yDWx8J&zBO!T? zZH`vVs-r+=4OKZybV5Skvu2*HI3}_fTntQ!daUIG0cC4miHeA0Q`Um`2&AOh%%=_% zqfsjV;G=tV``ue5RGr_Q**OEI(CT4>#W6Z5hG5Qh*TqyL^d-+s|3dkL!l$-L>hy@W zRl`GuFo=49)$uF>!t$Ql>@(4qh$I5PEJij`g z2elF6)D%GzW_G$=-1)=jS{|n0U^p$#Cka&n+)t2)0|Vq395rkKEdpwL2KsH(CF($M zug*|vN>;YlJwbaU^mWW}XzLZTkDyHROs(RrdZaf97Ud~Htx~uac-_F8KRsdtZofl5 z)NmE*c{Y+QTLafb#?PbnK=}`SS~{$JK>RoNHYv2Z6yPG^^EdHsj{ z)l<)t)k_;PjrEo)aEA7)<*3e>S0^L)IdhHvb2-;4+qBhu68pjZhxEp`zGM0$Rj0$6 zRXaC3Q{V*Fve_I9v5zZx3YOU7y*u|nJ5jZR*2u&`#`GH43i4_ZMgHjx1g7AKB>Org z|EV%`9<-t9blPC^S+2L~Q83^?7We(Sq{qquIgJ?}B^0Luv+SK;wMW~HLNsNhDYQ$i zp(e8`(^Rr6Bd~Z1CW+u4jqT>`w{FsdoA>i{Sy7C$>L}=zxn>7TOt_qmPO6l3DwJ&f zcS6U93tHP=r|pZ|!zj#N9tqk!zhygY&6@Qe%wXt%*6bL)eKQ*ip{azl*&P@)%+;u9 z9nWYu{wWTV9-pXyRZY++Qmfx#~4^Fq~|cGm8Wv=CpU? zXRJqR>fv-^bPQ!WM4buCWBVSRs3?8-erzKOX9^{tkeC9nY8~^;3o$Ftvw7Dfn!S$7 zPf?0%JJ?kw2aWz1>R-ZsOh87hNCM>qT|^!gunHo%NDc*srjPXOAIQJe8)Qf8#zdob z(D&PX=k@##(Zh!i_x$`1JdZ=mp-8v!i}r^gA6Wxfw}_V$!&C8Mh~etoZMB)X*uLsW=wXK1r^Yw4nN1a&t*nlAl++W^W$M@J z#zwBs`#*avPbYIH%C=6akf3TI&|@|LX6;no%@LxtwQLXf?%s9UDaxeDSj#k^!^p~x z)1(;Nsgd(mhV2>sk)k{YYEV=;?pW8RsrA2SaV(~=-m>dYoRG)N0SQdnfF}J^CY*Xt zf45%y{~XLTB?u{v6Ra+WaRB^^%UEB;9kCWd_qV22RVYWeeFWt%_7H z2epas{^Tt>IylVH6B+r^ZFq46MxGOgXk}39xhaOcH-@r^VVY0{+76&;GO3zn_?Lk1 zysx4&z^Js*0o3+R(@M^ehyG%A*vHBb&*9qnH0Y*ZR?gqCq=ihXw=e9!oY zQ2xlbz|9dB1dJz}{ax6Lz{pGVCQ_#`7eg{Qn+|E4-gol2+&$EaYCv4*EObUs zg1RuFPvSb9Db|Z1-!#fG&^B`W8~OK=*nptErz7AMMFzzb{Gj2QoG^aj=^NQr$c7>( z;((+Ds$z3S^d0BRRP?;|1C`Nz`4h)R2d7dxA>}Pw@U7-j9gWd8y2Iev@F!6M*&;X( zULBv80NNx+y)p?QV$58(2)>dwt*Z=<8fySiz z#8jC4J2U;2+PsAfF ztOL3K;k~>)uqaomwBV>xo@OQMS60f_z>@#^_J&W_@&=@6y<Fw)*h5zu?P zCyK@%urI0Om!K~-H>U-)vAzZI8}>I?K^p)D8zqDMB2X@G$8zFbbV!g2eL_JJ0nk*y z&@>1oY$e9F)(;-_tJRO4$CT7yun1d-{A>UyC}|sj%}xYu!l6V`*tbx*VF!PKa3UHz zT%BjUNy&k%KddyT2>?mZg51#HdA4eRq3jqvF>qa3J*8fm{(Rqgb~({y5zrwtSip@SUqXyrff0fWQi{TG0^Dz=7gHZShbxvQ7UI=~^q zaFT7p!gr>EHj(SB{cG3R+gqKBLI2CHRRZqiOp%kr6GCcDzpGpb_^%zEugnUaGQ(F+ zQUtLCvp$osK4vAnT)*u)nQQ-J z5w+DQ*aGc(!$jW2@jWjiI;b@Ij=#q?ldN5O*zl}4aO%C35={>%{#vD>s{F=d=YTw_ zV-QBg)AEQ%pAjP?rw)k2=g-1?Aw(GoFr^=!$4|G@%{?_=iO{4llxg%+1aUw>)j4$p zX}JIMZ~QdRgB9f|>p*Pl+=_TDw4JxTO=Tha$-+>Kj%Y~~L=GifKR+n>3tO~ze>c-2 zQII^nOBa;SqV~yUWi18@b@;pe&aM2+Y<1=*s^{H6W>)vS&~VPxP?u?BvhW?-Me_B~ zEd^Vm&*|t3wk$&?36!VzYf}%#{xRK7E$Vi~ZJHT~(a4ss$w0bY+k0CDHrMw%Kp98v zxv>DVFf0}2!6Q7eEr`IbG@_<_r*&mDegJ+$CXm1OgWYO{L;KLGP|ISKU4l+Un!Vrz zUQ7$p9CW8pICJNHLIVA+gGp)?fUAIdF9j!JjB?n1$Eg`9vW-8PV8=HE8MwZHCiVxu9kfd8pN~F|W2fX4hNV#>&$Uth_;5;ABiy`=Rt%D$G%MT{lY^{#zRyfYpty9G%y7A)x`upEYWkeCjZJIlALko+7qV z?4~#wd7*jU0yyRKKyn>s#X%4UNa*?CCqJY8`}e)Q5iD1kNoW(RQ>8LsJXohoujGS! zR|fmLKMef&v@T*`gXHa-Tq(CE1-O95I4Y$etBtm>H^bl^(}))v@gL>XOD*nd@fgYl zKEtgp=p@8`DBr#Jmf_Q1$21$*?sa;MQaj4iyEhdY3&8)3o-Ts9Wo2R>y=(3FNyg_! zBCD}OEWkl?jPoWp!}i@XtIxOZ>1dMy-b!Jp83NLSrbl@d(iI(BBaxx()8ho|(iJr zqeueMK<-?yy$EdrPbxhl0BgV`8kQKba$w6XNG)iRMx)4DSAExtU?@lP_dJap0w;}P zWMm}#3O?-?TX#>T)?w6k;TDlle2yvB&CBq5M7DEBMx&2TU$Q(xy;CHhg%{&@TQKgsjb>|#{%WNu`i9@bB>9+Q}v-{iB2z= z`%!YK)MuxjoKCGHGKJ6ZdBlF)Dy8P#k3-Y{lG9_m21L@SVYi9rdiT!a373sjEWMx#9$fvS;1Lr$i6qhpmE$Uq*i{imPg>!Lsf@Y8(epb8YDymE3Z zJ5NzC7Fih$Rgm4VBn-TL@!a6VtkL0aS;rv`h&TrxT|q&g#k$sfWeS$;h_$x4R-Knw zrpp_m(4Y5PPvunhtcuf8tllwDRsdL_wqJbP@$$Vhy*#04bbvWEDuGBX}NfThH?EuV>^WMpBnvw z{BAT53SHrS`x$uIzpoGA{@j&Id0W}zgF}yiC{yG6P5+tmZ_)8utGWg6=FYi1B`Y5u zxIhg^0BmO_s#q^dz7{e^K!#{RUVxsO!~a-m(`(L+lyv)fDpR^D-7@WpVeLm=|52T) znJ!Ehr)0jG9UpN{Zod9H?cKf`n!_A}#G(DwW;sL5T-R6IEYq6v86X24ySHvph;k*L zf~hi}Ob11&;vTm#$X7=vkx`q1-ctI#?3N$>&0ke&F(B%_p8TJhA5M#VjMI}{uplu2 zi1wYSchAB=J%?tBp-<0ex(+;X*QcsrWWh&o%%B6HwO^*-6Br?iN}mz%_%&5Iul(gd z3?nBcw7s%X90gfh5k_H%Z0D)u9*Bdfla#kxJl-E75knq3H!jkF?1VBzCblnZX9aBA z@y@Fgl6N|x;CLv*@7{Zur(vmM#4EG0aZRb7+D;aoS>IeQP6?AKow7Y6EaYXcf5|5_ z3%N-|AmUR@)V|H8cmjBmn?lsSSyoMGKZkhNLB_$nK40dHpH z69fRBhw_lum+bl2^@)1g65CzNIL&4dyQ8j-l1VsgDNzA%1$S7cwRPwRc3>Ln;5^Zx z-f9;F(b_V;FBh6r-&7P8L>naR6dnBFA{o=E13%Oy$}t+ttbf^pkS7 z6*?Rqkx9it(JklerYyxC)=0b_Iw%niIpJIn+-0uLP~CV%wh$f$_0~2vb5!W(fB&sw z7iKdX1Tjui`Nw`+xKa1^n-x0rbamMQYq;|8_U(WZyw4zl3aw*Wy(dG~F7>|Y(dIEy ztfEp??MrJLAqy3yXwRqR_$*j#89ob6TGOpJKFo{J z<=)ybnzDwckn0Jx)ryNkET^KUpu~jM#Zk(;S4s5Y(lb|c-ZG6!4kbKy>0F6|%*)(f zhTXQfE=(uTaVH1I^zP5zq5X#k#c;^>hPoYZH4IsqRYjiHs0;>0A}+G?7A5Z!4a>Vz zr+uQ08$Kvengq1okVKOsIBGJu}-dePWs#m_|6e_j-ty+i@%g*H?$#i8$lGgtq0S!#Bh z0^p?dAko+_CWEFA9AGZ7l>m}GGJ>EzwhoWzK)~d#8OTgzT&MlY^&tj&TFGS0 zy8eyZaw0*W67*&0!{(LLX3mjU!?Reu#>7y+p-*$2^=DDGT%H*~Qjd1T#9pTUm9}tBN4FX3 z8W9UohxZkfhUg3dkB?|5KN#L`>28{_7Tt1=XMmj5CaW=1baH@BqqV+}tYWc`@pD{I z%-nkzK3RE*Dj!k+pGE+O8s_bH&tJPb=>D<}P}hEB`f8M6%mt<4v~8*yw{mB7%XR_w zvL;dTko6yWHWST!J9picv6!k@Czbd4THS(IuAL;K4?9csSi$}7Xdsf7ox74553XmG zlqp!+zPjDKoc|#^c&%=3`N1nW3bI%Ls5fUu@&m;v|IcQipBh=J_0H|Hv5{@= z!<)A%2~h#q0MdvxqP|M_ZY{&)j(t$Y2Ol}eAP#ieEgqML`Gz}aT0e%9(MxBUezh#Z z(i=#AoYHLY@?WRNEcH8inn`-^ejG>Tg`DT^#_~UtJcT z%WfzaZd|0}!}5D`X8@EyYrngkjGnjFoxAg*BRZ{#Vu_v{&_{24kbg?_L__2{earoj zqFnQ7?Ss7&`seGb?qUv;SbXE-uGK;3ZO@OeX^U z>Kct4&5?r#^RA2= z`TF~>zDl=Ve>0aYq%O<=!TOS*UOC@W-C@ok`-~5vW4^wYcYZwD-5;V)_o>(ABOV4m zQ=2jZ+MpM$J=8lRw3|+N(Ay(9LG}^gBIX z>xRivTFN+6PRXyzs~s`>6phpl4CsPS&4V1%D#C(yP0$VBG^3?3%B70fUr?ACf#(}9 z|D0~V@nOzqWdQFh>w2Klj4JM@x)XVJLKbxkLmN>SeJazl2FK*6j)Gly`chsGvUhJU zM?TJ7-m#O>=W`F8t0Urd_c{6bP{RGAyhB%>76zxH>pWot62srg5Q@&mW_#TlNOsXO zgJPFF!Q(XI?z2QIsDn)(yp8|sTTggf(8u*lyzx}x?$l+bj zmqz&(y6`(Z4^LzCWPBIib(Lk>iQqR;%kN&kN3;^r$Pv^xqr92ULS@jDmBty3z8By| zVL-$3X?4HKEc-~Z)t}P1{+JhmOrapzJ#Vuq9<~P=b6zI@<47DsU+OEeKI6hOH!`?C z7#swheznj82%&$R9RimaD3`x-P^}(XTc#JySJwx};UsVGYYt-7i)sg)1v${J({nYi zMLq%jgji2#ujQJ~2OVL2tFl>*MyhL5WSW>bAmSuZ-3^O%OWu{$vi4(ZgARB1=&hH( zM+XldmXq1FEvt^=PP^y~gM4cSysj8SouJiWuyA9O4(>gmlY>KQIvfTz{F?R$10NV4 z+BI#?o}81}XG~FZHBC7ZPj2)bHF6PU`B9=2kD3&>jiwAf=4lv4c(MkhWyD~3I?pbP zfK0u68naK)b=q@1C#c9`>c3k7Lo%%6N;HB!e<1){HN@t{dp^t@3T4DZcn^J;Wvc}J7HJ4yl|aJg;BUD|KaHr=<_Sj zKbv*FY?E66ezFZqNb5;Bn(Fn;oTnpPHQzjKwr*=HyK9Lp%7b1uCHhN_VD(tJcB{|lt8Du14Yz2 zIo2QM1b{tpCMkM13@o9Z&}*(0tUDTWf;Iqc9S17tkuX{hXZ2DK8@AGR*1R5<^w>Kf zQy_oJ13pXWtP9L0?oZK#(U!BMSPzE7{>UYd8SIxETYt!ni_=P-=k#6usGy7x43Ie` zIwJamfB!Na9~_rM3Af6bAbI`8ERNyk|4-_Hgqemqk5$6iCuK_4;V>E_kq%jmesp+5 z`}g;!l1Za$v8b=BvgG;ZQq*O$cTHz${u`HNa5~BlL$FQ0p>kY)~~o zEr3gn-fz@&$OuO^eTqpfUyBalt=65b>$6JUIBoCv=38S{a46D?$Y4LZ9&W7}_N@@{f7PE`osz zrtn?+-ywow3a6XU5lui_3Uz0o-LGLiD17&KBb{x}v~k-0U{RY-g37kM>aDIiF3Nwy z=V%k!^0*N=XK#>6X@f;W0-M}LM>+*^nLRGKG@-LJ(ivNFC;h7J_1nGfo*O?Q%=wM5S!4|(Ua zMaqNbxL{w}W+tRMuI$(-@0`1QDMu~J?p&!j9>zaZ+YRhljj|`;4c!2R)j?V-Q4XHf z=~sDBtwcq#15$Sdd+lrA$OkAEUeH4YYhR_R_ZW4Kb!kx-Fau^YV&vdPryUU;zcba;~(NEKPdnHHc=O{fvy?d=IAs&YMR1`?K3@W z$n+#FOS1(p?$BeFM)MI*`K^j;*>igTw7lTX((;z2rO_8s;ZDJ}qp%0i!2Y|JpWO*S zGKJ?1kR{ER;LtEKGjQ{b59rq0H}hknK=V|r)f#b_Ls(lLmJzACm`@G4nl`b+Cr2m4 z-y%mnHZN?`-o4%Y&ep}P!68_yi}YsMnV9SDCv#B5>Q@X-&h58v(cYcivbICkb5vtv zirLzoY?rRtKzE)-MqGAMna!ZB9juMDWi^%n7SueqsIQ&>DF77(;K9*P$@Lbs8P$KZU4mR- zf7`<$U;86!c-47BfiPql0FtpecJG892yKxX0K^3Pg*tKz)n;4+5>}(Cu-EzR* zB5(g*^J~rw(GIa_f;vC-x13QTZ|1Fc7wQC;dibCNH*Ev9S~)b^sp9zLwI4%-Bij}@ z_apCowY8nUfB4#KgI#^YCCH*ez6G&YfCBTl9<1%Cj$56+oX_nVoE)Kd_txz^1uHlW zMBrb?=q|%Si_P$&w9KP_T4re(Y$|H8?73wjya_5M-+k1CMi13(uQb&ki9k^k1tHfw z)gkbaBg~LpnWPj9vb?5;hMAriuF1iHKm5we1;7tRC7+Bg)3E0A8j6PCY+~O|k;zVg zmERJDkSNH}emRKn($kmo4k_Y9kzjZJwQjSz;~W5}KLe*iqx)XC{`i^2gHb%8dwlzBbOXf+uu z(qcSf#Spo$ZZJX`7|+%QK|~OQwz`2*kUa;w1eIverwS5)wcemdYh<1OJsXfpmwRh$ zZ&?IIMISVPLjh)@5%}~&12HeWhNGNVR=nTwm#vJVCy04 z9M}G?n`59%TE8}L7{N4-Ku^gPH(hUc)A$V&4bbHUOZI8$+AUW4JtOOL<8)rW}s;-c)}52<+pRo~!|37)hK+t&!LFde?ekI65O!Ygx;#p~Ex+9%!9Y z-?X7ok0ZhQgyrbEJ@u!91#@9a&FRrRxt4Xfdyp5SKe%}}kC4hKb<#Za(? z)+MCv_(c`RB0Dj%?n9=$UU=#ftq)3h_wK{|z8q4xo)0FR+m2W>J>{HTgXz?-{fGPX z&X0dd$3vbgGBs>vH3JNJUu$GQN7_|L8l0ef@ZrjgHnul?C#>53qjpf7)xg(LYqIx6 z0>^`bVez~TzSYI@Zs+(jsI@g} z+AZkthBpylY59amPJbr=Q=#szZ|(UMqXFfEO-=~vWktlt8@mG4W(D)!A8kZMQ?Mr^ z*<@;U5jt4Zp#$}aVoJNt)YQ-4pOSw~mtT06Hg?YE=tnvI{G?2UtpadPQG}dj z^D8bJlMH}~iPJ;D`O^MbSzFHz$nnAc;OyK9f)zDtl>xYVPp#t>KztrX_`0 zKBv8RTJ&YgfQEb(gtYY_1*Pnx2vP4e_z5)5NXw%UqvpGU58rA~$F$%7@muuE@4cRt zqwH8EyIAG*8uMA0wk3~?LC^(LLP-(!ARRoze52O>uJ$3iqV$93Y0*Pd7h}-)B$pCQgG$% z*J0amA<`T{Vfda@W1-${^K?2Afj+^$Y0H?<*K7Xxnhkn&|KUSg937R@#p|@E@(L1I z>%kDYsNY?N*mjcA?QI2Qi+wpBA}kWUu>8s>gJq7YSmjwhgdPFu60MNIvSPDNnzqER zH9uL`L0V4T4U)_BCm8^f=mX~sS}NUnLHaW0W@w+I!8zLXp#^VIJAK^5TtL^xoawY;<<6U&vb&&euet&+Oo- zvK@ReOvyk7(ZT)w!3lXcx2>KDQVwc@s?~pU`=1nzCu>3EBzBE}FjU(|me>@(8R`14 zO>Y1N8^EzOWuK=;cM<|z?+PntwuHCY>!`+}9Zf7nfD*MbT*10cu-wQ1n-e@AAbl~GJ)z!olkD?KLec{`FR95d~vW%jZrxPR#8=vfXG-2hT1f;Nr|F} z#kBzKy0-9oZN$)DG~(vbV29u2E-)?Ru+i6oJfl2Wi_+G`3v_9SfXM0OM|*o^>vgq# z+J%YYg74Jyw=T%8MCe%_da&QBOl4YM%ZtxthbNuhRrpFAf;tsf4<#&>rx3jv{@=QA zp`0ahQlc}Ng1k6A+4GdVeNARzk^6iGi_FC?*28+sTEx2WT-JVUZ06{zOuf4O%eSoU zO&%AO{sjE2JX;^iC#4fLxS>vwo7Xjv;(%;!<%o-Hf4qO^uJ<$J7nqR&|Jox7u7mtX zxpd|31C|t=4dn9~dgwV%kMt*snlD9GtgpE(nz9#q|E#GOIq5|Sd${va%K0@)#R1uv zpFH+!K$bnzyWcWX&mnl!qz(p@67oaFT}GP|()kL;Oob1PpFKaTKvI7*&ebKN)_^qi z*HT6RqAJ24{Q1lI06=+mRi#nw{wX%g;YeJ5ODsz1w%P6CzQCvIAB-0Ea}@+E&_ZUEyq2Bkc1$ zSe2(=t(H^7<@(9tAsr797Fpb$`*h|}^Xz!ce4wc4)Z(bfnNae%bzvvlm%K(rcW*S$ zy#nfb>bUMwCD-$Iz%}xb%b3lw-I))L(M%#B^$^7z`51n$Zf()p_7>fH|9yJ(KmMKD z4=rjzgoYn&zo?|KkicJDF+eeII;F-LjUI^KtOvuS%hhv^vnD|Gas(kKoBC?CK`BZ^x2FY4C$(s+qz49dF6>u&mjJdTGNDz+a{9C#vlv(iFQ?)5na zr-!JuKV|#ZD=)o}2c_h2z`Xm_V&VLi?ZJY``XQb*5{s;QR@!u4rZQz`M0R*uFNet< z4GxIdk+%Q2ItVr}P?V(Gqg19m$rLPcAoLuOOw()@aF zIZpLF5ZRGR9I>~5_zFF|eVYh)(%Qc20y}(>*w%v7#v+aernC+64RKl5a&C*{B=~zD zd`OMK3HfQCGb+@Szy`P;v}dc{QdwbW^T;QFHA z$Hsty@c^%2x=0-MzMR6ut zBvfuC0zxN6amf^{i_csk1pwL?)bvSgJ6Eisui>xy1F_{t7YIgqK!J1fPV?O{Kr9=z zxPq=k3W{Ph&Ok8MxdP2(V6g>=4KEn~!5`jkku1E(2IA_gMAVbK7PNVkhUhG6z_1o0 zN4NBo)j5F7KnG$X2Q^58juN+{{`#Ga3~ZNr$C_|lG1LnqZd9-i%*B?kuM@%Y60{3~ zKkn#^lp1;)dKzjV52pC4>p8aa+uDpHGUKuoq-k3d88bmSRQoZFG#Fc*)VXO>EB`4X z#d;5)2Odsjz^t3FD}ZbUaRjj(%LFR`tTJv7dAn-10bJHXIC@J!6!3o|{{+rLvdWiA z>!6jU^H(p^l^36*quu>HH7Z9wPEP1Vr#LMZBXyyJJ_vC0wHf;s=~TYw)5YZ^aTzok zyaG92M4}gE5jy9YTQfKu*CT*lV2*$c&&xt_nJy+#kDNz6kHbCF;p>SN~v3S9Dt%?DX7c{c_p&ntGEmzp zIPZFD`n*PB*4Allh=7R0bMv)dgmO#)sGc{)RyoDhfp!jIO27xf5h0gt%pf)L?*iog z-aY};MDy2iNYoyjC81omsfXE2{yWb<&S_|o;(+Y$Z#oD90R^U_cziDA+>z zVe0UFD^Ce><92KeUsFS4Fi4AzSx!|r+>8dx9j(}Jxepd?%LACNhSmooVG0!iXw`hV zr6jgx!b@n>mpODaZgU*LZu=lejpZnWtc_mj&o@!aC_0Ai2K=8&sdg{!Yo1Ro;zDzOQX;lpU~6PJGA4)9Ujxvfjd2M=oWL+n*vkUm5|);ETMwnKXLt6$HD51Ns#e5*Xca30lU zLK@0X&}qd1k@lB0GU5Q;S_V532qP0Kd`GVBZ*Yp1Id-osG!GnD|cWs9@FP_VzO6ANEwrv$v zF{&|?&%MEMk(1FSdzp9JwwWr!Qv9M$4PbidpMHieKXcW=KrqaywqFlcN5IbHAWK02 zf;v_r(saKv+9rz5U(wqQP=RE0*`z@p_Ni&QZ6~RLExHV zoybj+4=^&kUjY^M+oYGwhAj~}(IdzD~fa@|Ho2Y*4w=NTkZc8Uh}>fc}}%w zwL;7EKmb+aHZM^U|8G37VQ*U=ax<=Vw2Fm;aZy&b> z?u4PX8UZ+vi)cA0{EE?ettAmgJ(0b(uU@2UpMELp`~7PG zfMq3z2;8xW4Em+j47aKwvindsTK3b!4dYD%~C>fgRXZ@&Cm&U1BrC7)ov zq6ZV^ZE!hPKzqnvKHiI7#TVol=UWE`{a#$=7^jNBF5&z^^3#x4O8^R zu&8mISz8pKw4nE2eLFiavIyNr@3e1A+4b-&a#Og(m>yER^PV5YBjV~G`YOJM}Z6lO*<{5j%r9*0Zk@Ie?b7Lsbu% z1O~9+c~Izc0FaeobU*?1VC&Y|usI!cVfr?Yu-cWSd)wE{NlBe0Wr*PSwFAjasu!2X02a7biCGBs*Zq zv?*D{t_}zXt<&m@TJJnHtZen3PaR(!A{{bFmbV9`)ptZK78Brvx^FXwq5m=TrDREuH0g)Th07AJ;TgUluV{2PDyxC&bXtrLqBBrZ6`0YRoPIYysWCz+lx@>SXlyVsJnJJ7 zQH|_B*rR{=ci+r&X~i(eoLmVv=W{`-!I|A%msyk0*pfB_bEkiYBB(3CMzju&REO z@}B$6m+0K(9cW(-|2jZmXrsx#B{Fw~wb_eS_6OQ`n8)Bd+P~1{Rb5j3Zt# zf*4Q$VcTF`{T`0ot79A=a{65U3CbvWFAx}8aSU`O&{wH~L6vJ7wS8*kpHkF2+GMi^ zE+D;)6N7nk^tb}(PuSQ^d5%F+{9T_>L){4(2Lz*vFV53>VO26>WAamqVPRZv-Y7vw1c?RBeli)85fzX4pY%**sE9zNxKk?iQ? zGeCR_twbPfD|VUkn~LqRftOl`?MoN(v|({z7J*lNGld-ONOeJbwQHKUPQNN^Ki12j z7tidPY`ZJ;y#CE^)9tt3t{v3K0AlpY5&uz}8`}Js zqVLG2AGFPJz{KUBLB*B4%}!M>#>L5Th+fk(U&_x|$;j);>~Z_7<(ZZU8a_)zkAlIb zo?kXFJoV1wn93%k{KNr~bQY$VVysb!`V9F@<*fjqcdw<_oPbWbHp)S08dAVRW+)tk zRHLSff_lV{$}^=x2wd05Z_dYT2E!Z`c{vhX=HC3;7ty? zPZ2|;GnoNgUYPMXl!5%LV2CLKyb=F&=tjpt!9%N4Jo1zPza}vL*g-_@$aH|Cwlz49 z3JUZmP3W>IeUlpbH)kXDfrRP0(25RTyCasZ*T*sXM&wm)d?2Ep^D$~i1!w5|KrU^y zp>MEIHixF^!&b4g1Fln8)@47n`a5`wj8Qj# z@Zyc@Lj>dnI(YD4h+yyM^&fd*H=Offb zoDW%qUhGN*$+K!(s`FBu4?l-1J3_z<0sLz+{i-gGpVw`7%Qm>H^wDdt(@*~DKjiixa3HMt*!v^fNo3PjrzQ@zAE%pT z+GH25ftJmk9Xc5zA0NKj|BbD*FYLU< zoo8L#Pn9k@YgFQ_&I}F=Ps;yenub<*Q$C+e!8#@NK>so)W0~iR*QXo?FN4lh?lOAZ zz&Aom%>{kH6cYuI)s#pL@%Uh6Z{lqyrUgWhP^8M2DS83zi1|2-yr=y1lv~gjJHZN|M#qNWm*J)Vl7!dCL zKK$ML;5OZP?>4D()*V?-<+OIH3VHq9CVl1)KA%rh_vR~kF47n^m@`P!Kyd(B3LfF- zsI7^X@P@Z_+hx5GN*kquqBReDK7o?Aw&93P8pF~9L)4fJ8x>0}(D5t{<{_9ia7z(P zO|%cT6vI0Sv8h$HDTSMSsWG1kMoCdlQcwOzC=DvW-WJr#Im#4VW5$*MU8JZr8hU#k z+Z#tFkuIRyBQ7oZktbUxfHa6TlcaKzKdDZOfMcFeK+` zB|GNPOYKeQYl3NPpxYBZ#;B6Dt^@!p>SJ>dS*yat4HePu`JYkqKIt(=jrLOF)tMsjNMP%J}Er@qr;t0w6n;A!cs_-Yyco62+9K=EUm za<4ts4#-)U;p2qkrrtTL7yPUAl66GZzH?hvTSvC*DO{-_)67c;JXPgrKvpv6ZpYfDpWRWEHk&amBTx`F*4iz~DAn=7QQk&Zrd?fp>QXruDisFQD&QmNXOsD=*v6a^P|pWiV=HHrxM6ex{^SPLiL z23US?UN}G4s&!w0u9d0h5YB+t)xo9uIm_!&%G!?=UHdUFYd_Wo2T9g`NTlV>m%m3J zy!vx;US=9idQPB`v8_RfI0%&6JL@B=19C&VtZi;(C+*=!H);3IZO?<<5paCqb@Txu zu*;4854>)=-W`9XMU(4Q{jNfxeH?W}o3PZ>9n@Ox6d?akKXtbB#QCr!hv@hs^r4Ag zr^hfo3eZPJY@-~H>M$&4__HzUlrXjBpaJc@qe{imQnKry(#aGc(Fnwbyjcw<RjoCX9FJi>1T?}gk_qVQ5%%zsv*yCAfA*Ka3#FC+j;2F46Df*qsyy<(9jt3EhxNeG`wKT@bcp`I!L@IG|F z>vDvB8lo0hHZ_&0b+@{-vX&rE=1KV{0FzddB3Xv{``VaTwi^93hSOR`&5%Od^!mN# zAN4{qJ|Uo0%eQ93a1hps;53%oCZK zwt4YFo?dqAjW=oU)@|#q6f$)YZn+ShR|F9)ZX%HRFt|Xio^nm;@(*<(SSuM)&D)A= ztwGeA%P?JP^xqWb>%G@TL7t?cEf%xK`yfJ1%Yb}4Wnx)mqsMq>DR2DTua-g8umdIx zrGx>Bj=kxE4l;E}J`$!@whu((Jy@_-70-{p@-p4~@NWK{7mKg0)NOO;rW}jWEZON= z5DWd+Z5n01aNZGXFk&0$x9G|X*XZcrFmJCbO8@-Tojf&brJgt9p?0>AyYBTZXN%F4OF!THffz-b)}%9t8k(XtmeZ5gH@(8TCH!AKas z%+WSszeT*ukdrHZA2CDMfkU}wZ4#N&fYWHO3?C&^;82Z=dA@ONLZBUt3UQ>FnIbQb zczP@Vh-sC4Yj4&vu)f$bPNVi=f;LM?OM*PH45vPr@rH78pTWx>Vf+AV6#!!1<9rQ7 zXxr;|135?{fLaBAD*L7bI;pu=ih)fu;2DSgzO^a^AcFOPc5XU5ILhpA89?eNy{5Y; zIzdf+XgoE_bfJ~60~+KyQhBZcH5~;I>r!>bNOw2M@5eUl0;smnIOY=^A#O@wf1zp< zYG(o{e;_3@vjwG(&t17hS6+H9>+r(|yJhR$RHict@)w=HXdP+EvqnL6!MWr&oB3jI z8B`+M&1z;N{1SDLb%3(FRz3xNun(GN-kfA!4z1NGz`1BW{4h_oI>|kM?&_6dbLtLS z)JQM0+bvxSBDBovl&}?D`!P5nvgPjT>RNVaRtEYcGV|lV`WxCG9J17?R;qOk^55{k zvt!-*cZNEWL*MHFnM@Ot0|+-RT*z&E|AP=Oc^2Gj99X-f88(h$wgT zgyIZ}_0p{Cd#J1NU6nt7enM!P#2uT}``sJ#X@475VUP(rJ1xJ?sYE~$Kemg|r$!F( zv-eKxkn|X@%V2yq#y%}67(C0n?MNPyp`eLJKnuniO)G!9@51u|N5t1q6<%5r@aAe z%b|c7&>#D`9MSRe{5)y~#!QQ>AYG?66&q3qwT5f*+R4#T-UVx6)2fP-Ft4YQXZ@YX z+DHCQ>S2RxTU&XdcD|NDdTlEmY-;GlwI6vq;C#T~+F*z3U|5cZtkT-{RLDQ%`NXe9D!ZxgOt2HyY18NZ+DT|6FZyyt#B{(h6c1G;gduLe`WeVec zobrBM63%U0|3o)``C)!Z7Nf6htmY|M^A+DVS3zN_ z^Mh5XvKl@)6XbZ2x8yxKIHK)K=jrMTH}ay!`#109`?5A*1doLrf5v`*0 z#x@}Bcpx>;f(+P2eOa%%`C(>?Q;D>1T9BGX22%~R8mllujgPXAJ|jpvO|FviF&M4v zAW~=Gpm{kZ8Uy?^cD2g0$zN(KSm`e^MaL2V7G{-$>G?*Cit&(Uy87= z0f_Z0T+D!_n^e96=t*5fSsa-gte??Sxe`QT z{!^J+HO~%)+V-8dCT3|Fc|kHz4o=Qn*$g1Y!k61&={zsl5=!w9D>p}bCAWE zm9sWDA413e-TQPWZ~IFfTTc!1!t}VpNO;TjcPsym0*t!3(OFJ@&|g}?)@}sqQcsth zo=zPg=sc@>a5RYVBz4o1U9g&jMrUL|h`QeF6r-Je8rI@WLeeW|%3+G0d0e}pBZ9V1 zI=K-wpiq^$4lps6kvxP7g*PBDHFW~;Fjg)3j%<7T?SJ*PypBWGXRPHYMLEHo=W`FO z*C|uxg@RT&$z6Wz-P;|UoXhl?fA*W?z=Fmg8*G&h;Lr$UC&1Ah zjF0JGX!F>jo__!=Rwy+_0G@|(hq4YR1B z;|5^0G~?(k0;|?JA5|Wmg=99ATHC76(3GJ`IRBW)s!1>}Sm{ZV6jf1-jz|RGSY!mo z?mReJ(Y~~EaO!oUn6Kv70$pmI8P-0DbywbXKI0A`t(mCa!A$M5{3VkDIp6ygOFUi~Q%D~dRoc&Z5eXr#EdBYN!esz3Y9S15-%G}T9n6s||DbCPQ zJ`+Qp-@1G;M?rF=#V=nY1l>1~{Eft;(Z&2`2T-{)nT+Qx+)THRcy2OoY!`}gmg{1_pv zn3^1=pd3?>XR5lBDMpE$&P0Bl$oVnK4G~^M)f;pV#cQYGCcM_-sVPU|v`7j%BE13X z-u1^R@yUs=0a@_u$vGgHxK+~A2^p#96)*RKQKC*yJ%&X`V^UD6!gdI084`{r_=p0T z!Cpr%jlyXg76g1?yu@C41$rfiF(~t&HIMpk zkOu}3WySW#SJYTei6%okgl9SoZzFqC8L`jR4p}7yVbG3Rkx^m53k-Qz2Tj|))i

hR=01ftFZ!1CAH#n#%}aJjOvhynUtv|Q(eQbl@>{3$>fcG(fl==5T)&z>5BK+n zJYWh|1?eV}^K#ad(jd-;toc~m+Rg_L%Al1vBeM0a)b&UI{;%l0pZvree^vugogk|p zh0cd5fHUl}#^#_NpH)$GJ1qlqTNf_o?;ri*7iP95Io9|UAVfyIj@6%8J z!}s%LQQ9&uHb+5L%6bjvXvB)LXV|ly%Cx9F73+8yRVyP_S6;lHr*$3d?$g8D5Avae z7j9h2PR`2uiYa^DsYHHc2c(`9yLW$=4jvw6^2FC&6WpCHy z&!TiFhzvF(r5;9&zlj5Q4-S$tJ-3VzdD2|J)bgwUMqB9jip*dC%qM93@}+$6;L-kG zb_(j8R?{o(R6nbXkUsOXI($QsVhc(%dscUxV%v2}{v^pXs=NiSlqrkKYjh$GoFia;?@=&-FYKIrBq|&O5LC z*rr~gY~>$y0~BirY|lid^Q@6T&k)Kz_DeB%q+1V5L`Tm5khL+g16D|$Euxn2Kp4UZ zvc$@$6daQJWkS1!d{wV&bEs-!$evmeE`*He8QF~nr#))w<+tpa$36Oy)BgUGU9irQ zBETo=h3N3P9;0I(>6CKty|Z}8J;wz$xbC#+s3lS) z%KV3a{xaSBpe#$0L;Y4ZR&o?%hU-Dd!NWpSJKNvC@>vgwP)T9*KGcpEkUAjom{^sX0FyFgd zq8}%9i`$~R`}~_2G)(fTm|TglX~na;jjlK%b!**uokA=%J#d*Mw>VcTZ03VosT*t%WNA%dsUm{j!lWctZ!}R)5c{hcyUC;_T2yI zBl_WA{3RVed}z)=>GPTw*iJ$jt^Fd;rMi|y#mpQ`UFmD`H8Zi+K{p!OW&Qm5?10Gh zs|O!^1U%XBPwYzjfrA0uKBn{l6Pj$d*)llz3G_f}>A-1${w@)yt_Dk?-RR-0Uxj1P zi<-2U>~W5MNV+p5`K%ETex07AQR*>f7=Z^ynqubBv@AM%`nbZN0??z$?NJKGPL&Y~ z^CGo?gCIXPL(mf@Gj0U+fcM9S+X2>W+LCQ$k=8%`rB9WH;dk^WxQ08y^^DpH&zN~d-?*rAzx=1=E=Q$i1 z^-lljp9de9BX*O;n484wkl7ehCI0`0^OPw%|`B9sd zwWxify~F8+Xw0aQ4KvczHxdRkD^1Jf9|>?4_jOfD20DWThIi2du%^c0)0^4rr1H?{ zsWHt&7+cf);(&&O0%CPk&|!%5pxh^eQBnT=ySHT+nO9nYKU8lZ0QHDTicLdW27ID^ z)`kvE=3LNCDSo$sDQh(E0}gE4vk#unA}u<+t+~1kqe)P?9LZ|{c1kbFG4l%vW z74Wavc^g?@O9VpJf6VFv^kHC04n53^+!v)Fjeg{9dd1Gj;8u2uPV#PuWo?RV8+!z22mNR188}=^V-^AyDsEK@wbQQ$HCAqi@G+Z>qBy^^SIy3 zebfVm1O}NynPAfc7AYpR=O{~Tx>DOGq`>=Qp2R6p%bbyatRpfS1nk*|C+SH9MAGC) zYD#Bj$f>Z~RD`09r2MK=H_TXW5U7K4&)jeK7Y zCX{Ja8|Sui6l7JRAoH1p^=EY?O&kf`DN78{!&?vNSPmzwhg3P?ly`2CUAwk+w(|U9 z+4@(W`{b8@V{mk?QqP}5=PRK@VV})t3Zuf0^PrQq{Rli#FxU~4C0Fh(8&2s;j(ie< zpZ0DqL(GDM9GK&rClC)R+cwWB)>_@C96{kiZy zQE;lMBNwV?v>$xbJAw=2Zg!q>&`jet)?^-sHBsO>bZE_C8mTIvArZ)zx2v^3El)vS z5NuJ?@5;Za0ZT#tQJ1)b=(>iyPFgm1b}?iJg^^aGG3ew7Bmtn3eJxaN?wqHmzwp_7 zasR=??0l4UAB%h{RHvfW z$EHc;6Un)pKazLkDzudo*@-Sbb0g=MqbMgT%f{?RTh33TFDoV5Av z-}ugV>9xQ6hBcd4X%=)ykz?r7gl${fXXYC%%-CvX{bQ{;W6(96r#Ww3*vb0$_AlS2 z1C7L_sE17ct-y!11448rueA5fX$(8%UAKMvC|K0?Of zok**h|41)^F+{LsMzyvBwJ_E5yZ8Pb`r)5_E1%~f4uB|anU0mCAbLpDeAbknY&0wv zyC_q-#2Gl+J;(;+$_qE>;t=(a)6yT@yqnjF?8vsfL*zo7kQ@cc+cuUy+Phm6u};a7 zowWAlni#kh-{pkrqDe70+n0Cp=$O#HJ2*L)p1DH5`NzLqqAMeS!ftp*UFxIp)btqw zQp8efycOVCACv;^L48(7iPBdb21HueAjVKu4)EYu{j2UHsDqxIxcPKFDvMtBUD3wg@n{RdXq*#&|yn)l-l`%qCJIx zv`xR#DYf$&g{TX!CHf&{p5!$rrM?=W$PUQrnq-p8%}z*tUJo0*aO0^mE$gUW3-l3e z`CE43n#(R+Yil|3vA(r6*qE~GmC$zU^*8C2zxof^neny--QbPwyprPV1nn+{$1^Rg zT(odD%Y3eOOJ@{tKL2C$(&c;>%bmC1E^A|~UtOg7_8&OZ$+G?mn1fx<_`5CjdIg>4 zl6R|vx{0GkY6p_1uv1t5JDBS%*lXDgl(XjXYn*J&c|C}*918LzO{Zm!1*X;!Sr%P6 zYw9^SXLUx94i)h*5{Upn@nv#j(i+zYdMjO>a#=GB=98x$Y<`!ISN`g|^s~SHQ7&v{ zZ9XXQ)v{gT>fBC9wVA?^xp6F*_2Or(bQ@k!c zca7G!w{loK=f6@6mn>M9G^^Vb%D(Y8-~K3{Gcv2|QM7K0>V%xTyqyi6Od*pK*u}Vh z^2?v4>z{hM0T~TAFi^9=1`nXcosnjgzj;nUwvK8l5XEeJiAP`Bl%k!1Q7jI9JT_GJ zS*@D!WAagMOCSF^bm7s?*P=X9a94WX#ymxUTV21Ib944WxQM4T~$aZiCvzY zwG!bdulW<&sR-Nb8X;$rkOv=ql+XXrJc&Ad zM$W&rcjC=@OCwg52+%cAPel$w8^Ay=C`NP?etiNz?#EBbeeSbj_|J&u0$AWK=Ar>?CbpJeQ4@oTh#tr=t&1k?V zx@J^A4H$bv_fxP3eGq9q)i~YUWaQis>363hLTy#h2Aq1i283UU;*ia_ZVFJ)2?5Z` z_&xwa1U+6hP(F)B)8!*lh~Qko^aMmhl4C6axcfEDK2FJtASLofXj^CwXErifHTk0y zMmk$)fgstP#;6lfOW*r$si?V&zOqjq#^DaWLcF+P(bx`HQz zN(+1h)_*Y~v(}l-;V}Bs5)K5tpNK}hq~)VCjQwjh zNv%@jP#?)fb{u@_bDth`?Pc1%eYc$Zkq;VNSQ{_&fLW~*1)}ON`R!{ZG&-H9Tg|yn zpDp*xG_1L;2N5SiBOp>X)w0SKy~P0$TO%}`)b$^W>S#zE#DS7EEIDFRBkW3(M;5B{ zBkND(oR77&yu(zUezm?~C$azH@4rd!zxJBxqM~PXSFhHl>R+?Tg7#n4WlWJr^qiF0 z4EV5K)7`=H?u{3AvZHkO?RT>iLKF61nRXm~V~`Q;a|&R*UI@L3gC`yh(O;;$YCXBB zJK7q>JVd8pq|}s6-QWM%q&DC*hvjijncD~cd!3#nOWkQ0XJFPAyx{kcColKHAH{K* z8YONSAC*!H&sj!Pz+=^AeQQOa#K#P9gK~fvU@N%HDYsaeCFxF5ji)ELLKC(Sn}ZI z=daP$#dCSrEip#o+{lzG2}p?1(Td8#_B(Ig%ns6gWtOGLoT-yE$kQ5~zp`Tvh^#e9 zgAM!4Kl>s*_r*_?1?dx?BZ5yWyR9$N1ZW`ghy{hR6Wk9`xHb>g`s#p5 zY_=9WGraHomCqb^rpdVyZ}?JpLcc=v8S z^8=<|)xB(sLy|^(#-ML#I}rz@IxaFz zN~T`PG+)UtpCu(xj-zriyZl~R+n@_i-N-iP_+Y=RSIG|33D8*&K$OTwo-$kx9F*vX zL_x%kh~x6!kA6ho`;&i{&mmEL%?j-EE>+NQCM&hx3(##Q2c=!K&$Zu#)+qmEb)MCz z&&uZJF!**Q-+TWjKN+G!M}gfsrrY{hxiCKGwnybZ4p8{N&Mh7RXAau1esg@H_343> z9^S$z1O~} z*Dum%|MM^AC<|1)-)^H;PS#G^9jWsaf+aIJJjp9Wal|4S0FMp>L7PS1B4nQgAT2foI7TxXIXG1xOs3?zE%}Amz2wbMx`?T# zW$}6AONKv6kp~k|qONB4e6gLO5D-HLhBFk3*Q_N>G-;Q^tn~GHO%Hs19*~o(()j^TzxiTF| z-jjP0DM_->Ts{XHw=V9`=FSBg;@tTh5!-%O!|m1H%<43-a=>kIKvr|~V?E!${np#` z-GBRMgIzcvb#xQ(NwJUC6LoP*YWNxYsnI8)JB>{tLPIrbRCf(q-`=K;ogF&beL(NO z^5a-WO74s%8UcA7EDF&~7i#|( z`%H^yr%uCQhzn1}hL1zybXUJ-$=ToEchEi3ok;LO~7>w`S4YgSLYE$v_EY&IQHGhg1E$@{7r%pLOU4a99>x~Xdzbw;Q<|ruX2y#$awC@xmy{}FF{a+i1@ybyrvvI!Ro-bC{ zXWDGAX zNc%MfSAg26e#pmofU*vL>39DLU4G%&yzW63pXbOzJy#>QY~6ZS9cLX}2rzZ#ZK79x{o8@s+Y?4yX(Us)uQg& zmFb($tiI|5mDAVD&W$JiMlUq3oH zrf>cC|B*g??Y*qXRtLvJ42A6LUJfRl!%67L45f`sR-lqkM<4zqKiQU7!tKv~?gd)k zTF>h=?tXBmoDK5Km0`4NJ3A0U)4>q!kW2V-_9QIH3_dBOV^|I07u2ubwX2u6585eH>o!KHnNcgO)nGzvv&cXw~TedbzO5L)e*$o_6N-sfGFHb^;`&6`nYD#Y@k@1l3Nd{W|k^|GeAS_c({&QPLIqXe`x!+ z&a3kdOkcxtn4^=yZlFV7Ab1!7Z=fB;nmTJ@>bJsXrkQAz7%Is6PHkVNz+)phK^{c9 z;LoCgtW2s^Oh7+%c--qT)}Zj_MSqGBBjO2#!E2yWSfssd}BM=wInO8;s(*7`@sDE`vtd>8T6K zGY`%@Y9dp6WlB=sIZ@6DIXtrSKSclU+_;gq(mfg?H>sWpBJ`IixDI%ggADTt=bL5W zxg0zw*Tt!M^=n_JcYpK~x3$1K`=Vi$y{m`ZO&| zXBhw{C|mPy$tF-Zi&LY|oS$E9s@`a()0@a4L`W3(zz zY^N(&*cgp{ebLKqP*w#Vrd^u)sR70d2n6nbc$dEUul{2Whl_$=SzpOUVJ1Vb#{4~H`MkLlWrH|V9`{%qaYAO%3h zM6|5y5!$aU{a{#;z$SO$It5 zM4*@{A9Wa+<5!Aq9qaZ>D7Blq2C|cv4IVIo)6;-O zCK!chdp`7j2MA!fBPRv*NCSEj5{P+l6zbI0sRbh3{!lvEift1*pMeII2Xh2EkrI`q zj&n7}S{x%6%wBnK1kzT~@{Bb(s>N;@p*$t1FHg$lrsrD@Pn`%D@Hmfja-y;PM4jIU zV;nk=r^L5u&AqI+ahx^DAa$n_FD` zJ!5r9=C&?G+fK_{oGj}3AE}-XGB^x_V=wJ$4jPPi31|j!9M)SPn|DZg_;ibX?C?w01v4BNP+K>l^WS5&znG| zqug}#Ea)_?C!=jME1|D8dgu(8>nzSfo9`4}^Jx82>3*zITFl0~UPK;eq*hNTBl;WU9+ZAZKNLpc2dI@miH=$K_wc`}r7 zJQ%L^tqr>R{IzVb%2cew!O6Lw4b*S{Z+@SyzHoyKiO?ApA35NN*8xwU-c}<*u`LNM z8Pqtv_#Q#zPLT5hn}Na+ZY;4=i|Qq!VRPfw04*yPxVcuC(GpS%O1&s`7Fy$Hyh^Fb zzTfs{pb6JQAZRmU34uR%AZMER4A3y8jw6zw2nLW70qF=?lRu}(BLP=D(@<}h(81*ou8~^l)M%J#p_yT?E55GJ_J@#n# z_MJiR9_B^PWeZ$bcn$}UmT5-GDQ6C{Znj7d87x2Y6xqC>yhg-zN)+jqx_R(va4uxw zyGB52$S2OknT3+OBp;m(4|H~|$vs_%|)O~WHZjds)uB$vIYITRa!?sIizBqt)8)DD16 z+G}lk)WKhjcC^>^J6?a>)5`4lwtj!I2>oNG)CD;G-}p|;sHf%MW8z+Uy)s85UL~hk zPI&@eq5x)9*cl8K=$uT~tX+f&b>#Lpj<|ukb1w!M)Z2iecR z%;RMnZPTe(4{qM0dmr8@wO}@5C-*NuerA8A;h~3v`2nZ3*r$p1E3t84mC7w zeFII&7jjd_(1g;>CTcw?f--$b(GD#$SfMrs)ZtZ9;92?x@_gb{nD3zD}(#pyY~kt2;lu2F+?E6W)bU|zm@ewPQq|hWi@x4*nNa?Mbz>lV zy3W(4an&hUvN6Esh4bY=#5dohgZuXh4L>7kK{(jm)|5tDl$WLfnn(PhG>?r_qPRhh zmq{=PQfW-%)@a!^mPaETH38MmgwZfx{oZpnre?=HuIYq%JOyj$_}A$%PmdCMTL$>2 zJYh8iXJNu=f#EaJjm(c;I*MpdU@b3h^hRS55vz@-U2&`{^QbH{GPJDCIeR+h#@;&-F*H1>|m(FQ%3R@d5YJ$D;IKE;_%1_;Qru* z$o)_K-skDrFTB`Mf&hL3DDzRXwm0-yMxe&f#8b^&c_J#(+IB>gCLC4+Q$!s`;t2Y= z2XqmHvx7baHFle=p8BZ{tdH*2e2`%otmvo?<2pJ|(ufAVH6C4r{DRCT^@&0T`g-Ww z+I}c|Zq$?I$xxp}*sT-tZ~d48AEDF*=Y*iYoBpJUpJQwRbzo3i^+0ds{OhztsnDgnGn90M3XJEkbnR0wWk7%MU^j#JlYH(+(T$4) z{Q~8??IUX^xs-J~myHv+Ivi}#4ldKKYF%u-9`euPB%ke}G|1xfybbO8TAnf`k!cw? zIzBuse|4?Ms%=x7{Pc4nYUb0xbgN%+K-M?6hJmYc7_B%k-~Y3}pbuaBxdCXi$uoA{ zSo=-oLZi4z*Mip0a7^yfukCF*!WB}kV{YFX^}qqS)vc{uFKLroufLJ|NvG8^wExK7 zm`!F-LQ#HN`#(wnSVWzZpqw^xo4`J#j@}E;z;Bhic96%jOHCblDb|}RtHpZ$T>tsU zG4aXCcnTJ-On+R{S-|}=u-_Y<{#ALr%M8hs=dI796Vj%}ev*zZsp3)Zy%=FP^JX~X z%M}bmIDLdr02!pz=+LpDH=I&wkvYWw{{Q?x(CxQA$_jjSbFKWXm0hdKE+o|`Y1>dS zPI(8AJor_%pE@; zSJt7w$@vb!v^9OB*h6CW92#K542l!!=v_~#d4>%T;Rsrs?$go&1+%ZGuyPoG8wbX6 z@#_@uBIi?dinz^#n>JH0c8U$bk#%z}Vm1}@BCYVeceAzgQXq*P#jQSS2SA8WY!lE~ zKA1wI21Jc7QRokU7Ph#B|N5zOr>8DK{*fLB&25(`?={4d^LiL)u`lE3Zi3H-bSJI3 zsm@=R7A@^ThNTX7~_fM#5$UDf)EUe%~{rcD-s>+~y`b|k<% z)#%4@aX@lZBjwC;ltK;(ls~DjfbhfJyUU}g;+K}C^vIBK&j%<#uWE#qL zyDRmy^UaGFvMrKlfA+V3N3VVT?~NC%8`QzjE&*p3nY=gx3v1YRFb0^YeAM$%804eu z4o0?tiXM=7?(${Y8vgFT{{g-85C1@_D;ggL@>8B_>H!p$DBv>tAIKf09tKdSDu8;X z&Xe%GmIIiKiKgwr64_biG@J!9p7#9XmX7B0&KeN%mFZ6sb-mvyhU`Tv+BD@jEK5^P z!_;#L@(m*p&9nGvP_D%h@Vt-UrOp%KVJgN;pW;9dO*&@LfN2Tb+)`Th?mnQe|3AKx zqZblFUs+krk&xNiyl%Bq$|mGvNddC~ce&pw;a0XcZEmv_aI zvSsHgiD1ack(_c~c1>Yh_^ulI&bzni{;daPRBre!#!Egg-nf((w##l=GO8xi5cY@s z#SwY>v(M4z{@IuEV$C)=er@`&XQ3x6f zJ2MeNzqVf{Z4iKEv=MUUxqtG7A*y_Xc5mOK&Ysw&) z`da_0elLdz&Z}-OYXGV0U(}uXtdYC`{n*=y%PHV%8|(RyK@s2M!AZ(fu!cy75F_gg z&t1Ek4=OyaJ9jCKg^qgO$1o@*J7meak6GQm{q8&O(JO!XH`)0DA@dKES1y*56Lhya zzWG9px}*fUgB!!mdEq*%!2^L%$3~|P%c9%aY`{75Re>n0~^8VFsieLQM zz~da{Kj^X!k9J%S(!os2zt*3|qJ6sTQsm`!>iAhB9j7@ahzEls_9W$W=e_q{*Y8i( zfJ~%i4#PN%cZ#B(xYuLq-ZL!&x7U1BgidAlwhm@?f>CoIWdjb32sYWLzuT!FHHw4W zc$y*sBW5(}yJ(n*U=)MsM}P5c`sr7HkiVDH(aRj%SzVBBO0T}3ORwK6EZ|r zjs`<{{>lY<`g6}`r)2l`1G<0nZjOKq5yEVQ%K0FE@-9_CET2aQ2XyC`A7q0oMsZQ2 zATlTTy6m)-%65~-hh^%Q%!`&0!Y}@>ewVJl^h^Vu@H0`TIVOQyqPE>MizR$vUzoZM z3<8vt`gt*;9HJJV;Wt;(Z64%6u(t2`fs(n7A39Kn7OLPTwa9OR{$zi8ujCyXqBabJ zQ_Oi~IL(D0kdIPNeU4?**lhauQcg-AjJu(x_@3r<7>qGB=3Gz zoFA#b!O7Qtp>`zW>8qcjZ&#D~j?DmYE3UKfxM43QB4cll1IInot12k zE_)Q8APxj^_*~|QObrA-NhQG=5I-LMNt#Z*=*KeW;;h~;FEL0X<+X&VmkZo99V*j7 zc9IlJTD5Cz%4x0m;hmpmmJk{z9u znHfXfZAJ3B_t71?`{8XmskBPOL(HTcaJas`VGGp7!Py(4E)R!#>^yy$e&=8Q(Qtn= zwr^_t1llmAXriIt0Ui;8TQpK_N)-FvFpA|3B=o>$tDxD9m5riX&g39A@J(Y`swKrJ z9GTMrMJvLh8*Gu~B#sI=U@q53W7ob19eJ7uNl-GV7o#ernRL}c} zWs&h_p({~ey;S{83~TY`_S?2dx81SkIX{WKWamesFDE6kA^Li4eLZiLyS87t#SUP;aO#QBgl9}-27DOv*RB?5D}w_6SyeDh6hY99z; zs4Ful+1lS&ady4Ngfanr8+26yJwJ2(hd_8%Hf-6rutOU==V|xWEqd=qKcY5S7t}n0 z4@#(WRi?F~O{X=o*|Yh0EyyiJhr(ur82G3IBUlCz{VKtJ&zWiSUxxplq)~bue>{nR zEJ@3vAXCqt)j|1Hr$=#e+Q>aT>gytQP*~z%o0IE?rIbP%gvSccjOy_#;3oj1Q zkexhDN}P~<76@~Ww8%OTiExk}eq{$9&hpf*4}Sh0?cI5h=PS!XOZk&9|Fus%T}RRu zCDcFs9pn?z59t&C^fUDN|KfMboaUxg)ag>-mH;hUS2T#yK|AyrBCcLyH!HyyP(sX& zSI2$N(C5G_ZfDW)bOWk)Ljme&RYUAfLkGN7W<{_J@Wucu1)g`Xg>|wk&bkizm?wbh zI4NcdJ{A1*zN0>1P7`@IqS6!n7Vx5@pfBil(kTB%V-@)52sj{iu-MW7eamDZw>~|J zgtYWpn*rY#aAwT|Kry*qaZu;^^7xVgUP%jZZn{&pOaU^;n2!htJcO@upC=}hb`AVc z9(0hENS!a@$OgR#xhepcf7Sa|xe)>8Aaaa^YhDSQ4sA32PtIg|_Di3qr#}B#+Pil@ z|CJNP3wY1#FVZ47@nhcA$TgdjU1(z4VqKk#SsnP%odoTg4hU6#)3qOE{YL52eD=rS zIBX6MlME`!b4Po7*$K(hwB&^JLC4EB!aDs*1uB=5r(Lb(vqNP4h^+m{>kNnV>Q}!` zzxd|2%(gI|K2GW&lr~U(&dJ*zQ}PZAdIC7a`IKGuWUG3`9=b709xNOFTUlKjB0HDz zw!Ew*}+N=nUUSH1=$J&Ay{=`_b-8N)uR)3G!<(Fn_Fk&kJRPvQN% z9U+Z{49%ea3|UzntKtjAa7Q_n?+kPz81j*32B28pv2bu26`vLSxBt~w>FpoBp7WE1 zb=e82+w$bl#g7&5V z`pfjf7e5)mkb@_VqfP|8X5T&9qrjJ;9fNmaz0&ej<1jn^svyuU3_25~D^qZe@O^hm zg2@UrjEPGW9Gd!!J0fl*-7!dpwY*9kz-q7@t-Ly!ZiMv)#|O~xd3Mkq)K3Vu6QRyH z{XMH|Cyk6=>VO$7Na(NfKSt;d<`wjW5m0C|bx1I4XV_x3;xC&|eN4{OA|Ipzr?4pO)!bdZ>7UNNEZhoGjAB5Jkwh zXTVtA9%T`}=3D;pC|21i%p#01U9GHHDFbtB=g!ggP`Bfu&ToDD<$UG|G&d>#*M;k0ooqU&- z`6P|glL*K}8iVrwGt7PA7|nT{$YUxRf%jWsnJN$SI*ULc2q41gBo0U%B;mUe5GoiY z$cOFU)~Gj5o7){yaH-0Nd+*mG)p$L;^?<(pKm08{93l=YvJg<54{;1u>e(Q3H(VuL zPc@3q!M4j<5cv~hc{n&BvPNU)>P33$v(M(yu!n;aA}5*4Tw$3?HD5205FB+&+E~Ls zayE#Z-d^^$FLmD7-lWUVUd_|DbdIr%tjYS5gNJ)`<@xLMoB!f>eZgg|YXmWoFQG`X zvB)s0Q{S2bt<>-o!%N=W0l?wycFM*mJdNMkX$BSx&QA|AD!^1(D4#$>@_MIQCk2!W zKnTlgmbq2 znvsJB-Eplw7Qt-!!2ye~gHt8Cc6w^*=THfIPssnf1v z!L^R5VNcS!8Yr~l`m(2)HKn0{I(&Iy&}kch$LQ+Rpep5xEoCY^YMVyR{lH+hKZnBanOo`pj(y@NbSd zFBWy@tFiz-A6hs>KZ^6Pm7hP_9ikum`;@Y?bduk{`0P^|u*<3Flp_jMx7{6de_p)4 zK`Wb^dHS!Ud+)tZ-~QMC*6OCtnd)Y3K(o3iTikYW3i`oSqJB@|1=n}((6F{xrn@*J zGnp>7b3Sjsd-vV<=;XRw!>gTA}I~6f{pLh6eOxV>TFBQ^NF%qcS~8re4X&S6&bD^p(6o{r1}* z<&syo*N2g_t-QtVd~L{IoEb+-Wz;q49_J@oE;B4vUm@)hgtq#rRfT__d9E%-Gze{;(D-QPv>ZbkLlYj2f zkB(wD}xC5!JSrd zENl&59pI63HMmATY{Xh39&^y`b-Ha*9guh3S`;UwM*L*@lohGnpzr+EYq@?Wb@6;&;GPdITrDS^56+8h|1M?k-o8z*{N-QMt+(DHRB+a3wJmKr zR--?)HD|7fsr7Q1scAC?J<#am+=z8Iu(~DjtnT7??&{S{|3|OAHaH+}dwvPBZWRFX z9oUMN%S_jszNJ7HaaUuz3?|&zCM~i5&86nv2sce&F2qf(6aFZeuD!O*v3aZ$$K7_# z0XgRRV}A|^CX6VYcCYu{6ng4U(>kliJtZ8PPg`a$_1=pH3s6RiBi!8Pp$0oqbQEZ8 zaKl(fE0CrXAnH*HG9z!H`3}w@@@)2Q-KVercVD3oUVAr3Bi7c+!oa*9WWJh5t8&$Q`*_Cp7X@?V{o)QE9uH3kJ*Y1c>xMnageMauJK zN>+(Tr)o3ojFGzSuiBH9L1)XfDcRvl29IRX_~C%Ozi9gZKqCy_m6AN4zECSq*iA&4>FV4QPnH9 z8(57FNxe4C@6h?DZ{%qI+b@4_i258*)XAQ%c--KsM$lPaKe`gp5`{r@Ux9 ziMwU|9)sd_zt(5uHudgJIYzNMsar168|)_n9@QyeCoErz-#g>+Z3Xf(ICaKNWpX=6 zpwB{%$$;LScW%6m{l;ECC!*e)t@pyHf<{5v@`}sq?t0Ur{0Rxaz1Q{_F`{Nsh+{Vlru z+|%@6hyonebsu^0xkWxwY+%qKZ1SDp8rk)kPH~mr)fp+(tvg-mI*00@=q_1hx50Au zi2P~U5=D{SuVnGLOu-TdNoYPg)aXabk&TN_Kb<2b`RtF}E@l0MY@41B9h99G>v<*b z|LisT=~w?Q*HPCSk^+CwN6yG(&H~wPcI*ygQtX~6I53e-$cu74;89W4b!;22$n>kt z%a?NGXaC+^`tWD3TAN2FkVXo?@=uA<2mmy48F;e6Kus-NuA>GB4wpiYj{KX}Zyf|a zMgE&-rUrizDL_7Uq%lGOyOnQi(qhQ?2yHgSpSEc61&qq2*B9z_w%p+h+h4>ALeIQ zH*`m=mF$q@9kFJWoIH|N%dv3&%<6L@M(enoTAmLK+&!SJ%R6-KlTYVU(`CmJ89|b~ zw=V5uM`2}co_9-;^&Jx3C_8Y?h7qPiy7}gNw0r-d(Y`X!bN$oL<}*bWbz5H9u2)QYJ6VB=8#pZ|b%}jG?=_PIXLpGfG`gv%YBgfym3nM9KS!82~|Q73O2 zYp~#u<2BNeV{)3bs`OPwd zKO+RXIB=A)dj;<^ss|8ieX+WW(#|?UE)LV$x$PX?kWpHWr&c2=ig3H|5gP{q|XdiMuE$Y-=zr$c_Oo>7dJasGGosONEay?ndtB4X?D#hRHV5R+ zo!6f@Aiv^tS_EVn(>`icW2%hy`?B|=dFek84F#D|jzG&nUjk3YMtsSE33r`42icxe z&uBX>a#@^(ul-;DfQDT#%J=Qo3%-Tfv2fsO?-3%_)`jAhL+^=-`-k?>)?s zkewTs^ZxeP7|v&Ts@BH##$e3OXJaOjmV8FYJf7scd*=at_}V+!!JyhEJ6Cq-sn0xH zYPBebT*+FH!yyVH3*NUbo~J+jKmJ#=Gekda$>$D`iztsPTncg%y_So;$cZ9}5g z@or%ZH%2fbvL@An(H8fVxjCs!!QpZ$D31P4ml*0)+610ft6c$RYV&HqtxXG{#s(4^ zQ3p#Z7hy!P(momH4|GQv(y~*>=pqJAc+EUR2PmoIw1n>sVEFi{FkDM-;GL1tpX$rh zdA4!nQgaUgU%u8nn5b#DreoEaRarsSNe#_5a@|&DB8?ocP-)nZ0Q6l7bg6t&Q%_fp z2~caY|Ee5Nr8%`Et0Hfm8+#)By87bt^c#Qt&+;_Xhc|E0(e8dZOCtbxK#0GedS2ID zV7oe+R5BrFR}5VBD>rLE^d+8=4e*r62w7X?cXQRN4y@}xWRORq)UxJdbLV`Sel?V_ zfA8L)a|Z|H_$cpMCHCT(&;3RoOiI;>lBl^%+seBi4mPE1x665(;g|o-pVG}=yy0!1 z6p%ZBWm4T&>S*$eOgQ7f5Ux+j+A#OY!mXoywEZ;mh){NvB#JcDOBSEY?pHG9>=$4E zMo<{R!C)wK!~s0IqWoh0*?5pHt7^bIY(( zZ*ciZnocJ?F$GH!H;05gN#le78h`8eWencFqo870Ir!dbOx}(_w6u&yD8?C-kKR26 z3~H%U^I*s}`77jga3u%86FwdELYorKTW%Fwc@*vWyRZC`zVmOsmW@t6uVa0s?ub>U zP0i*rJIPk-!F6$=R;%P$PDo$qcDaLdvltu>F;J3Z8kSra11ARvZtiU5DPOZW+y3;} zCJ%4lqr30lDI@{L?kUv%9$j2E8t;NPMno1&tIc2{#Re7^^J9crXz2r zIO0#FTOh}U;HHoP9}|EpHJEM3V;^C6YY&Cds@C`f3+neAe7Vulu2gVj;ckOX5yC#I z(vJ}piq1kcpbEZb0TuNJ5EQ_9dm!DlL?zqWkcjv+Iw_Qe@9`Kdyg@?RQbG-1LSN~Z%#(?ny`0c z!u)%*j2zf_89$vbktgA6+yCYyARS6SMwQE7aL8&KsC*d^CIZLT^Do7X>$kSGK`;H@ z@6v^*Zw$KaZjK_H)H6Twnu(LT)o$e}b(|K-CRZfDDDM)^Z)hNgK_vl z9=+1FATli~J0vS*J&4XN&dx$rWwUCiQw@z5C*;HyrAs8_X!jtOqfU)PU1aD?q9B{H zCS-6H#QD%QA$d{c@WRpl5#9Rb`*i=KyX8dS;hJpU`0N)xnYRw6RQ9QtsaOX&3UZH5 z4j1%K{_EePPyYTFisMraLl|iaHUOti#C}T+$nqvngaC=C!ynu+pS4e_-57(F)`)@Q z!S(mZ&Kc%lvi}T7!9y)=sXrMF=|Mmet|woI5y*x2RW?RpdMnA-uLK$6@DQb7-vcv` z5)(K6L0@+;5jY}B4H=NuBJ5cOr`W7a21eV205`9XBBHJu>U2>{?=)m+dNs5gJ1|DR z@4cL`EdPd0J%UQgU)<0KFCo<8SWM&WP(LYa0pK1*#_GQgp2s7vkq_J50==$!-*Q9w zZ|a#EzBgV5#Zv5o18cec{BM7WUi{rJ(ZS$&JiL8-&~N*;_T!|Uw^9C5mlvxNATlRO zr@|KcZChP%L`WPH-8f{fkrAA7v?z{=0RMX8x~%^YIz-RQc^@0+w(0!!YdMOsKSVH& z4)$}zCJ#Og4#u@lyg1~&k_VrX9ymBeJ$QIm2bILJc>P;1=Y{8GXDyvZMZR4yI0eCY zL7%$=1${A+5sd0UJK{fqseNXF{)ywXzBSbQsT;XH-g^1Fw0rBey`zpe4yqtO*tf-) zHsu!s`e{NFC!9i@Vh-&)jE z%_o8JbAlZsB6v14);BlGBF5pjr0t96^MZ9*+cDR5AbQ~8puFWY^;>U!m?Io& zc+XuvPgh=gDwmy4O&0?$4v&;|_g+2_@pt~^AJN69E_;JJmasMlL=_w~Gyu>Q1kJ4j zs!CD>CBbg88L1Wzj(nj8)Hq0teM*prMLrCur)ZBG8*ZSeIw9eqp0hCXwlPqpZNWOC z4A)wD!5XCi$*34&td>rdDdl0C1zxqMWAdnt*R8FQV-gO1p+F@#Tv%cP`Dc}P_V=s} zm^vB&FSx8W2)*afbb)~J4P)i~Q|qI=0R56EJ{MSpJLM#(zh92nkfYA!hW-TKM^1#} zX{S$lizqk?Hoc3y4@W#u1=IBtK|ZA*1Zq||Bjrd;(;!|@Pyn&!4l-5H&tJVlpZVv1 zkiqr?nR+G8hi&jSH;1j5)@}G8&Zm(Oumo*LfnOWng5OlH^kq4b* zak;GhkX@|ASvruNuVmM%T>sfnudB3m`EuPl_#_WV<;X|gVXHU`(h~RH|A1ck%3tN_ zW|TlTG)<~~=qwAM7W8#aGSv%okMZQp^TuW(Yma1~HkEh=+s@C+c~~1e7ifE^--8c7 z%8SpBj}C+V*S_K)|3Dwp*q+y7LrsD%hWE)G=a{rjwBe|si%kBpO;abQUcPNQ>mcrw zQ?%^;(SXaZ2)F$@r8`5y-!TG`=nZ<3Mrq1}UglYs^G@Zp%!5C@e42EgmPTth zzFU9ki-u;R(uFzpOe6U>r=%%Q6|@>61wzS+OyRi{Xk@dSZj{T%+dp`nzW(3+|8wM` zoDH&?N5Jx$ka-!+%4c`z;zfoLHE$;?|pP9Uz2TkH@3I(bSc@r zYPP;Y+gEl5CuFPamLg6_-GL;7kioFs|L_id`1*T;0XWX2$}=}U^$cyE-^%SL+gqL- zALXrkB~O|9^~`5qq~H7B{qbNp*ByjW10)lHqAowMy}DCxIOfGuAkes({@@2`&VE(Mkn;8) zKFGUY3BB^LoR1;V4>{u_<*j(r7P;hO7Sw1i1<^Rv0(7g{nw7x~bGiM(9K>>ZH zdFBxcty`(5GJ1!%5*XXm_DrKkG#bQgr^T;sZqkLPpQ811=ji<(y^0 z3o1{JWI9%vBDFvK$$Q(E&*ei2#R-uGbsg*5>t*U!JuO{9v5dIgdFLa#`~K}b z-73>I7{8}J_d?!Di*ghsWd}ue(2`xZ*h03nSViT-ApOEo5)>3SS9PuJ|CeV4n$` z03O#T^=sppv}H@Xk^Hlz!|3Pm5oNSISK0*2_V)|PK1be~ijo93u=a`15PxbGw5g@-Hc9O z>O7d7T@^_8#&TP^S)@LfIWLz#HifL8y{Jlg$9Nie+skQbDmp_p;P}Mv|1LfIrO)T+ z!S3BV`5XxuFgejf2W`iz1cM_w{c%x1Z=lmOeEq@RH{e|8&Q}__W}Zcvl>8S?uhJo@ zOhMWjA{>{8fu5c0D9M>i`Fy5&GP)ejw{__fX#_vpgcWdr@{WcF^y9DmOHEIyZqs%eFho)Q5}x6K0ifIn}-Wc6g*5p<$)qq$dm$DNr(Zl z)R3P6;52cr0MJI0G`RxC(dP2FgEl$Y_HX~&Kcfe??v<@^>l%<8nOL2}9AY+OSClt8 zMh+Up;G9&)Kz6p0X;l(c*}l9(n-{jTVGHGJD@ZBE{CIGDWZIV)ONq98@xT1f=*sigD`=?glb{LHSRq@tIZPxR zVGeBuZKt5I)!^#9D1c>d`^EdjfcTVQ(Ld(c)lB{t(7_|9?cfP(N{zFCGNGfX4a9Hq zEu5O2!PvN6-fU&3tqOu+rKk8z2|FPsG@gmZK$4;%hRQnM)_)Nod4F@H3xHpOXH$4j z^8=!^sgpa5qevR!v)YE{?54I}am_|}h@m`k-Gy10bIr)}a33{D(}0O$YbD5Ylo8OQ zZD*>;`qcG@K9Bmch;iIuOWOd;Wh~1m(+ePbdd-`UUR9}NWQ^%n=0SvmG!LCu{|D@bX{yf3JUUkxB z3Ykp3+8Clg4?g^m-uvMzrlnm~GEGDExUMiY|CaWF^&g!vp*-bt~RkbCP);HP!`$wR}5GcTx7dzkNTS4>4~G%Ajp5qGVbpLvM@8lu&KK}C813CV_v!uD-ll`S{aj~RqjLRI&(OtZu4E!) zSFCg_hh**3?t{I2s`{1ZuG1g?pZ;auaZ4*`qrBBAnV~TQu!W=3HezOXG1|Zmj2uyV z9|A8ShSui{5V9I40={VYOGn`-@*y?Od+Ne(Zhiw1KFsX2BERdCtz{2MK~4QcL))RT z%}+=Cla{aC&xV(v*yK*YsC~5jGaAB5bE-53aLW#||3~)zGs?E)Iu8VQoHQ?AdY}2c zuUEbb1)$)G0zd);jYyCZMNv`R+>sM6uPPKoRr? z9v}!)D4@J|&-;8Xy}c(o_Kw&)cEma7X6CCZ0KJq^mG9nrO!(NbzwII{TF_>78f)=y zu2&6z!BZzPR2g?5%n_u0E`U%mY^n^x6d4}F~!w9JWLW$Nj< zz?ZqFtpa^1ZOpkTU2X+f>33A&@!7yACQ*<;8XDI>$eadsO`%6wmwMjxjt;}!AN#Nq zwhY6(10QtSxfAe2?MI88zdbWoD*6*Al}O8pBM1PEL~l2h!fVVg-y!slv^rf%C^6Z?V zi^3r%T`pq?pw^P_Q>nL&?UYxZKp?NW3KRQs(wrLqn4i#3gPG)I1B4R0cUO*~k;qfH^~Ck{~k=ovhb9nT_h`5^#7(}9Bz9*2j2_Jic; z?wgyAwQb2$RkwNcte}w^SA`zcgd0<_08hTg6OppJcub5Vv#9*vmcM)Kv%8 z&Hc98S5w32^4H`&^&DtzQS6C~XH{)Y`7kR?Myx(RBh|^6;Y2HHV%7CKv0t+L0FaxL z@!XN;12b4lQ}g!NRHML;$h^$vbLdQY(ip{jCjDd^%d8U^rA%oAurV8(^+%>jvD_bF z1T|oWx_&T{e?F(seCgz4AA(7z0l~l+%XHx2TJZTON%JA5R;B8{Qki51P@Vv-V4CX3 zF_drobsHMTrdP7o^zVwM+Jm1m&}qyQH6D2C`Ow~J3g5f7v`oN>%)wkg)o;N3jq6fQ(x<#ojOuvl({zn!&}5kX60oKwyHx}PKocZG=?B;j~9@kCntt=Cr$INI@DO?+HanMJYV*-)2U51z}fr6yRmbq03Q zrm5Xz=lhX}wSP7~V`>-1X7BQ5)x>yimKP?yU@AZbAOeSs_Eh*eMML?rsUdV=B4JI4 z0x(0S+mmm+aZ^nSwh)*+Rj;twE!>!e?|<$a6nzTKp*q#sAb_S==nrCym;wNAiiMHW zc8wz1WNzR#I5h3zKEv_Ge(VqCSSyRGv_ba{_xpniF)~)+&9R`vNJzuE%Qs>6%1tuM z!ZJ{cGI3}RmBn_<{#5og2SOHUlezyB?}5V)o$z&S9`>4k2dOWpv0=tq_hlR^&CTil zXGYtk*()Yc_%nGn=23+3#7V~VwQ7PR(sG+RUh}IA_T#iN!ldZNbFJg1qvvOI=7yvn zgtL&k>iwJhF5jdyEs%{JGR7FfmTpwuS-+((K_xMml*b#^x~X4@{+^PWGa$&9wADzl zY1)~{i}CfUa0V*%XOPB#v;xSoag}G(WqA(L(V}~}j-+i{Ouo@FkA$?Td6o4%G!0bj zxiAWKeIVK7bIqjr%LEB~MnVT6){AMFMscbhSq-3Ri$KP9--GwU(MKO4#(w$MEUc5? z$C~$pAis}RsDVl9;@4y$z(Y@Niekm@1Teu)9A1j=ndr!*hMJqWUxHf4ejb(LuZOkh zKnLue9;a2tARhzd!-r1fNS868e*|hqI(PK|XGDh&GVpPK8>_4E+F$<-Tt9Uh^0A6w z)5wJ6`Z6H%j`wN|nC39CG@8z&482X5^w_6KKXBhkzlQMgczB{~SMS&u9g=(f)SGbY z+<6%#y;e+4CvAm;fI91lNCa*3vo#Ydv5Js>)3mcnCt}+nqtnoqzp3NJwjzA3yI&`0 z*7xhK?<7gK&cdog{}>$X$ESV+cG9M4Gp1fYqk#qe-s1b4<;&l-wnd2Z7E{w=NhAlp zB#;lIzVputp=3hWw6mGoYkHvz^BXe*Hic0yfiQ`Is53L_fBN6^*KU($;=n`4oJL|- z2ovw_m5Pb;=qCuBBPXo^qUC+UT|*ma)N*w9_0Y!ETKCaYFg!2X5u*b+0tR$a$LkyG zE!miWi*UpdeMj(=T{PRm%>w}p)(g)a5#bm;>m_`{)8jC9Xc}ftUxB&nw_@}2u7Fs7 z&L(9MRAP}eKng64Nyi)j>OrL@@SLTUr$ze7mCG25n2(V$tL|f(S@)SR7%|yo6s90; zOn4-Iiu4^KxB>Z{)s3@}JZ$VEYgGwQeJ8(Rl9{XeOjTKZN){TO=_W(^PThu?6rYS| z{F5w_io`->ETujWd38O{OtqYhze)=Z#qnP{htuDAM5m-pHcD{wx^I?DM%UtZll`v# z(Cv?Rl!O{0XwJ2IX+2dZ*}C$gJ|X5Slrbs8=6w;`BAO>Xm7(ZW9UbBu!i+T( zMx^~-A(CoBD8FEOHM(yfOddZ*ejuxhixjmBL!BeI!4uIjDwgl7Qrbd3dk&neFR#E$ zU-~M%`R(rpuoZ~EEd^|V9&wiXbDOYoEQknnMFS{))`^%vfT@~;QFsBWA9xlcu-rPD!kSvzmxpU*674$<+dy1KjqW`<^Q<2xcI8RwxcV$!_;IK zn4|34$*83M?Noo8A#$C^W(d9Mdj3wroY@3=gqLIeL2X*H;Q=#_(IlYCu-4>lOd|SV zrjQG=s$5$#!)YKFl?chSD<v|BJ`rm9ITbrcGTKnwO$fb%fBo$`s3}4b2$P)LHtS zByARMU%o*b7y5AEoIw8&+{_R}42}=eZ#>8lflBXiA9U^N_Te2_+v4)ZXKtLkN@i9z zoZvosXc7h{hC*3E3$ngWXO65aF2T41An*Q#j}U0#O+}AUqFu1DpHl`&cbt)%Y8ccT z)w$F(->kZCD!WW=R+VJ+H={OtVag)tC@4O^zrmo#%6oxnFnPfy)4rJiBG{Y+xFE0^ zz8OESOIzU%(>~7IT-QeCXCT45z-vd3Lu3-HFd|$xW`1MgoM&~NYq}xzsHwLwIgr&E z0JJHYFcXIR5oG;CtZwWFquQ<#Pro=nGi`-c)IcAImPk$`irK;xiv{!hJWsN5shhAB z(rWzsn)$M7thCJ5>bawtP6cRF%~ra4W9~Kq&}seBwJ3CqnPi^JEF>^`9{B(I#z*1A zM?OIQA9&jN>cT<*9{%9Il6^iB!T|}rXDtYQ?t_Dt1>oSD^qsF?lGM?9|hU!l+bAjkVIa=P#C z?StFr&%>3MUsiO(%9N1$#EBwh>ea|~<404v3JKt~6~d8Ik*c4(tX8lH()ja9r? zHJ_9Zs-t&XO`1QeyO)<+_kAbD)G}r^zm@=yD_5?Zft|Gdq(A_stxm?xCTea=*rYnt zU}3Z8>r$iXh}y`F$ry>s`LAfRYf9D+B5x=o}$MNwrpUEYhg7GUw_oG1G3Jv7b2 z^Fq*f12rT4<3m(2JRKO%2u-JF^5i%9S3uOoc zj9M2w&=A4M(f8Z~4}bat1Zt9+8P!RUGCzS0sb|oPejflfnLZUFoPAb6jMZOlV?KUU zg=Cy%egUKsR^!753m7TVS{Th)h2NSfi(pf|BRjRPaGa^(cizBk?iQxH;l^)qP9^HZ`@F&NvbWX>$n{LOW(D^Q^il4-pk5r!lc|g zmA6bP$v5gc*AMbGK*m=kL`>10&?u`bVSurWT(gk9o2{$Z-pDiyD5@k|dnxJfP^Sn+ ze8u>?o-auyvW1+|L6g*{4!mH#y+ea=@}nPwJ$E06mDzbm<8G1Z71A9#^8=$_vAL5! zEXjY;q>Srbn7Ggw8|t8|s^?tPy4!d*NT?%&7oSHF*Mf~})88s6w0Zy7C=Bn}LrteM zKb#f=OYYpYiyYGNlj;{Dc~SWtJ{0=gm8*c}6e|G7222 z&XutZg9EioSIt4KTQxD0*k>Gm7x$D-FHq|p9;TDe(LC<-cOHi|r}@$ID=kjb;xgu| zRwnPYMtxUALy^LiCg%G;kFL>cF`+X68PQYq(GT(0>e|w@PV+PQ^QPfFop+rEH_vA$ zZ7prooCDI4U+C{2_^kUFhMm+lrD}9jnXI*%kD7N)jRc|Topva`-Mh*Arm87nhP6qJ z$YiM9Hfl`u0nKP+O55h|CW{^x2$E4-yp}MgKn8@s%O)*^(zhL>VWBzJ$;Tch2SuW{ zWndX>MuY-`SMn*oYM0&8P}l#h&qd@oSvP@-?e<&X6T* z8nUdoDl$hQVYKSBi&e&2S{M35U(;oUI@T>8qv~daYXQA5a(b1#pCv!%%WZA4@}%x0 zHPPx;e`Bg)+V#9ju4l9~r^9Kxvrqp3SOw(xnx}`5j)!!sy1-Qi#h5`H&#bcPcLQop zf*L2AfFXWFNEz2*v(Bs=bI`QiD$*F&6#gCkzIvR9dc zI8Ylwh?YhF74fpPjp?ZdCCQ<%wlY3khVKVYPYM~ILgt^=c(7I-P1d@4cEixVy)b$F zINUgW7M}V1A3|$o6*P@YX+HlOX`|QTsD{J=g*c_+Z#|}(wC4N2sbdmU^Lfw6pRFT% zdCEbCrUmWzqb3WIY5~c|w&>$d0=Rkg@^9wXc1*Cgnd-C!oY*XDv&o)+*Jf0C(hI0A z<%_QAIbkR=iG*fZ>p)Hu;}FY@8;)$&aX$f8i7Ro5DqELjD~yAvW37$MSrhrOQA!0l z|6)AhW@7o~<1fPVfAu{wZ9;z#GQ|oeQFH)RaOC6uGRe+wg82Y=A)K}3ROphkD6A7hfbz$mk#eAUcmEFxEIm3p2Oj#>E*56N%SH_IiI0 zV(<~TgcI3OQ-WuajO-bM_y5W#VD!L*bd7*9tNv8KCQLlFquQrDFUnGF1_qM7NM#D5 zbxMas9*p~}QJYRi(VJ4DVe_@CFqS;$KuLxnFEdtLRSoLqp8kw%XKG$(lfu(*t%crE zp?+-v0BA5R^#ZkGjLGiAH+BD-06Z!h$FMk)P_iPWgxZvB$PHtY(<+;kCl3i-sILAt zd728FQVZy~u6&>AsLg?o;r@@AsTmb#gbby>%hM*1Aen|@cBJxQp+}=OqFV8EPMY)< z*V)904Z`RKAj`l>h;2TH6Q-H3tGxoktS%TV`RjY{KM4>0{HI`7U!P;fZ+Y;6j^|qI z!Dnr>g7$;W;#eAPB9ly)%bdy6GaX`G)q64=f!IoaXnO1t!XDCY6dpt%13rH65S@HZ z=P6;-t5!*VBi_euFlai;U|wat39h5l`1|FrIxYFjuSVce>ZuWTA{$J${QS0QlT2LO zei_A^GG~cjFmZw@CZ6;6^DrJTNbhp!cm`p?6wUj{bVAQyKb?Gz@16PX3B6$;@m1ss@=0%I|MRa!?KDL!0JVlk)${`A`pl8R@;Q-YyK-wY0#7O znRY-Te}~G+_%>hTowP}+jj&tMfb{nF|Dx;8!?2TTQNsYIv3lSIz{_GwjDJIIgCt@Nj50%TkYrw zkhLw=Dz+|Uj=mdXho&5ZKSscT_P<8L1FuNR=KkyM*+r3HC?q66a6|Nmd95xj(*}cPSm+PZGuRhSU|;sp8Kqw> zsoRI9#$af21kODD8Xc0D@V@CDqK7@-$CD(ZU^H{9x_Pr5f&0tEjuYOlVXjvaS5nVi zsQ_oDiqq=^qJw&@h~8jLn!l~E{*Z2+X&EM)r*Q+dYTJzKDRv&zf}NxtkoqtfwO+WK zXoFtcRY?~m`~=shuG?#`)z{USdWm6$KAQUbcbqaBRJojG&+|ZT15r@a5Z7^wjI1|GYLzg8P8AUqdq)2}QQ#2SkuovF4kR=H&OG!!W0jpd>C33>P#Iw3j6N6m#(#(_G5iz+57Cdyn6-)DKZv>LuEZf zk7i5Vj%IJb8-MdHc=em#_8==n#PYq)pRuoH4`Ak7?@cy5k(^gz!u}R^5p~WXaDJ>SC$s%e>=Ze z)qq$y3p;7kq|q;?>gJq2zm>&8k_B}dY&(;y?bI^`Fx4`%3$^*^JUwJ~2!ilQ@mO8j-5H6snG-q+r^1W$bK>#*pw2&lEd(7XjY zrg!=9ynK3jGA2Q~XH;MDf9M=Od+io&mgoS;5+VxO>$Dl`tKJzMeL7I&O@!eCRHC@Kf)nymdDS z39rmQ0BE}n>HcO79i*eIHjtR7N){lM$cN2Gh1&#uJI}|YyO&KaYe1h@ByMzRd)ORA z?Rv~im}*0en%C*3ZGoqyin4?q)iQZK->DH$+smkHl>!BbH5342+iSnldXUGt0^OWJkEvW zxyE*w`ugj6W&je+MKVA9bspgad<4~qP3C?TOr$OGc@{;w(vx`>p58Uk2lsvI<1lvk zAo+YOJIOg6Hi)1jm|P*?Cu&zjVF>BP`AYJa>-9uwR5wGy95aT09A)TIi{Y`lN zTi+$KD{QMDHk)*kvDNNPm{b4-7HmSRK-PTRBlX@^n`|`8tOzX`h>`ZDh|cv>Q*@Tp zwO3w)g=;g?N7b@~I>fd>Mz^HlDJ|so>fh-r8QnDM0UM`1f46B-S-nCZWNS`qJetnl z5Ur8Utww{fS<2g-1|dpm-cG6}*V9|mfb8xcddzk8`(Y<-DOEHD4TyU)v#h#>Ql}Z= z=k6TAH<#b8Zj=`&Iwtx1JIr(OCYeeX2^n@}r+S1h$%bI^)dTfbM>SSD`NyNCOs+ezVCA*5p&qGj0t8ld!& zBRY$utCJ*l#7sGGQnFbCmWQXHJFN<8KTr#T&my>3SzIAs5u-%jm_Ht3ICfwPmgg7X z+Nn!PA18ZH%`lsqizaI#ZxZ!VXH)xLWVARFP=Hb8%ULu`X(?C0sh-!|4a!$VuRE}y zH3*eL7+3-*Ce|kFth(kDGn8-H(nriV7-6z0oR@F1W65kW{?#8%Nr8vsQ7P4f*DDAjbn@NFX>k1)5$ zG|HHu{qUx-6m}M`^LPX%91k4a_rU!yyl0yFr?u*}A9(sV0*b*gr=iAZg`~l8+7F5r z)lKEhUcL-Z|LLE@!pwDVt_%z)SQ{Q8VZ;yKH-q;&GG)_}auFs*O^uocGKR@amU$Ow zNWRyZsO{l)lh6wTsqETCp?4=v9Cw=V6?pPd-L5Nt8g^1++6)XdO~f1w=AWT636ya>j zH{Q)}nY7S^>lNnBLj8uSDH}x7EFqW%5<&@KL$@0xMZ_9AI0ci(_L3B-49?>a;@VS5 z6i$)rV&gSPnXk3wRmuZ36}VxxHhgS(N-Ym)5SSp)z>SNvAx>r9)!Re4Y;1Uw02Ao@ z2A+bxvPS2MbnfaR0J6J(H!R+m3l5;Mez;{0PK>~wyAQ#I7f!+a%xw^s)IcNn$a*px z6I08;57ZgYckEZp=E0EVdXWC5mt^r89Ao~>t|jp_P`&(#fW;5X7Lm<+7&7@D+OHGpDiWU`J`Cipel zfalYr8K@;b8U^E-+U3*;t zV57BmA@@-4WZr@SZAO@`Mb$Yb(!4mJK95K)O>G6al_&(c=chgj5B}^Y35eXjd=-{% z-S$zhR>Fzr^cMnbpmxAQJo^Kz(3l9WA|12uvW^he zxP$f)G$BLtvdO#dqVU3}zV&T*&)EsVT8Gq#ggmb#9mHcsi}|*$#iTlV}|O)B%uhj6d-Ys`sqEmJu`tWe~3?WLhz(;u;8^_4ph2wNt<=S+S)yC5oeEX<>bdw% zz6ph<30UQJ*&G;g1;aDiOoi)P+1MdzZgu@OY@$^rI`p!Mj@Svqs$NX!4l{{q#>x0t zt;PbItpB8bVeMEO^VMa5s!9SPO+!;dks3$=7-7&OSdKG7S4|fIM!N_Hx&pdel&OZP z(!yl(`5Q)kk7kMK2yyu)E1N+`nz-NnX97xW?2BZ4A+8GiU?((cHJa% z+!zH=LA5tc2_K}&$rJNkb$pW+_SU7%07?FvgZNYh8n6RCHcz(h6m(2gC-mOFVTa~F z3p;7k)^huN7tnRKGXYCnung)(hLX;4})z^dElrN&56sJ}agMl)^QuHrzVqoB+Yv zhSNq2lRpVMkFzfbGwI&h-O_=GWNYkR?e6J@UHv^2ws*yW2{zlpf;Lt+NOOYP4+J(n zeY@nVmjVayw#JpG(*4+~yldwck1vlq zRQa_edz0SCO##zkt)HAMX_kKtRN5V%v$_H4Jp)k70jsalW~&&F(Aa#9RyYHFT``rh z`KGyS)k1wImaaM-Y8dA%TbuD1Mwn(*bya;CcN5!Qxsk1Z>ZXvN$)2@o<)vPnRqRV< z$RK%8-`92Yg@&g%Br2F}ZJ2}+l)@o>CU1-}2B2@V&EJ{cZ;2z!QxVC?8o7@V3S?Z=tNA15tPvXoSj z`B_CwBeh0X@8N9)o9V2ANQ;c*Ezia&Df#hSfNIupD=_uza5H{K->+*!9f*;7S-Yij z?v%ItPbwMv-!CmJoXIa&0Lb8AKTg5lfSt5yDjJy{s7T4S3PO^7cMI>;^Lnuk`F9PL zq)fYcq=;nSg(^{qj2dYAoVF{WMEsAH4ZOPf*Ed!+W!V)%8zEC4XUrFyQpEBD(RCHQ z_`+#&^d5JA9i2sVw6s1l6=@s7=ET_>fJ~C*GevC$Zg73W15^S64xmk2`GZiNelz#} zBHj+W$4Mdad=IQAMQI5>C}@hcwz}p(%5J~m^!Eh`-lCIG#)J5Ks z(z-BT=ovRvWvivLN!PTWcMzF7{tj_S<-6Wj{AQ}&4;{&KN9tnJ5d_71nY8i%S=|BR z#?4G_Ixqb1Lgq}|G!y$}4Fa@AK({4ZONrz@78dJbAZ@*_e==R0`#nuc@S)a@mPo4Z zRP|2jj8&jemWSbMCIuO>XyCbI6X0R>;6kPZQR}YS-pC-RDOA%H0*X`{xh#1%Z@Z22 zg8Rt|cU&m}Dhy(NJE>gS$h5y|W_%7lOlEFXnP-r7q{+UggTwPO^?ynkSxjRG_Q8if z`}bh##8H^P;lRh$8Pa~NudI;yRk;xk9TfAc;QJ8-BLp$RcRiWNFT`Y3<;kTc63-c5 z-)L@yzfp7S>)IiX>D;a&01{-t4?prS9DMj8ui-%O;o5QY`~`BN@9FP{>60fYG_7}} zFG-_~rdLRJ&pq`lyzqrDJB{?3r^Vbh-dC6o@w|k%U$76J$%&xRQu6SY1`&1Rme2)& z1dOWj1P%{hgpj*vdezxQZ6DgdA13cQ0c(p(@XY7_Bg|g72o}->!L%V2N&sk~UIY*( zu77KjwWH@*^4;ilV`4w*CIcw&p=r8}3s=u&NRu|P;@@@qRDNCaKY3z4i@)pZd7gFG zchcs`lpFtQX=&+7e!XIXwX)K)V}iBC#OS&1dWAVLDN)hS>Xc7yy*Rd-I6_0a#gx}o zwq?nd5tt02rN)~2cTp{bh3F# zn<8$G7|Ie3YSnn!tY56&IG_TqO!le!R`xRspqX$sxv|+h%uiWW zeq|#`c@>{q-3}HTmRw3quN1SVnKBJbV)-fO6x*n;ryE;rTfTXkSf+6Fs?J8euiI{| zF4=#pUBCRUx)kzcen^jMtW8!_G6hV+aB*Io3-g;+m7nx^Hl28xorJo5v=htuSewu3bu ztOZse#4o)vgyjvTg}%1opW3}eGuK6Cl4W9BnemNd?Z<$@$9|{z=tM_ymr!$a{meN6 zA6-r}GI8_}g{LI|Rc_FG$gpGOuD=2CYaLgiN|Cv$2)&2&sM=L#AkI`_l@5Y+N?_x8f|*WZBaZ@wvg7)gZ5+7s&) zXmY&!ri*0_m$0_vyiVXXnb}D zeB4=DUtd2{cfFzkSy{Qg($_ce8*cP_U?**w>Hx)7fJfc?b!fin+E(+d-m8DUZgDkA z3?TBH8P6CAOU9^aNs-X^+G?hf!Q@es{%CHcu(_b6J&I3A>c9jR9kpADpw~&lU$55C(>4R810RhsUICtXe z<24cUr*?$H(RiIjx=>yJY0pPH^|UY2dB<*(HKC!jh0f%iG^aep`?1W0Rh@%a~E{`z%d$oJiQ5A+TV1p&`Gt#UNiLfU%mjW^)A zzxX1|Uz_nJu)5Bn4aUaRn#}Y}vKECqR{3W5YXxd=Of~>E-WhyRKH&S5B{WlJyUfHt6w5>93}@wz5a_^Su7~ zrr!VarB_ScZ2Lez?NV;hv8ffwCVA-JcT%671aR}l%>TRYdPm*G{{De~=01jDCv7|3 z=|bUmn*dB+MthK98q15|U~Bm|EkxT?red`G_54A_$nc{^ml+m1FzF8m9vPGHS}79| zsTz}UO-ds%0?7A+jE{1R`c2X-?7i;@5qdI_!cD65l0FGPX(4XNWxDb5W`gEX7!eE2 zri=-(=SvWiEAgHxLr;ogZB`ipu;()ZUiA+4utgW_KxjK ztARoC^+4(0z}PShO^?FGmrldt?fELt%FLumJ4BCL-E2zPCW!CIJc!JF&Ig%1s zK}}tn+Edqdv(^4G*|mh;a{cT3*g{%_VZ;J38r5z9;|iPvG{&OX#pCq=y{jeM^KMS*6j?G^%dgeO-dHxzJR6 zzYto+qf?!^YUP*|lyQ_V4?qez?YyJIJD&Fp48Zu&BhWuF0q1`3B)tB$uX{&(Jzapu z#U|yYvn6RzG6#*i&cFb&dxcsblB`~HF$>V&L9OxRSta67yoml?Ns5<9o0I>BO;i4k z4%xc{KDM2nsXK%aQ!N15ISqa5smZaa-EU4!6S)b!Z`a8qIJxB9D; z1I-J*A_+B`p^22q*5(T-QPNCdpz_w_Z%}KJwkB;hkrBcVWd3JPUxxknAAv!~xHAax zPUEG3IIwC1E@c-}!ZiQyvXd(I4)v2?hWGv8lY@QX9?&q50g@`>yA&LZoPsd`1ltr;3nN)u|$6 zfwbNN0Bd_AeYWQ7mQwTjH|d;#*hVhMY9uUnBjKj{jDnNA+M%yZ`g>DG#?%e6QNY8O zCZNYu*DEt*SZx$kJp2nk4e$P?pCh_+`{HGobKqmy2_}$kF!+$u&dXLX!D>Ys#Q>xX z24x{w6q`^1FkPp~Bkd46W4H|pgcRz8b2f1$NAz&7=%5g~`|i63?)u1w94(s!?o4XO zl`C-h)z&oy}k_n-cGvnPm z$36QG43UfGSoatc z$XHWO6VnTqUOoeBE30ACgA@!lcS+;5+PNMww++wAJ9Pp%mSPE0m(Hh@=}mn&Br^p_ z;w}uy=B_n?3>b4p81(Ois}A!jsaV~bw@ICiVi*C^*{S;~0X@~MrOpZSle}A>n&?v9 zI~AZ%m$b|vV@LAu2AY}k*ym|~>1XP$<@K$5u9A#tW-55T$dB;6x}T0sXqkz?jgrmk zV-!q~IhU;tJ&*L5X3P?olms2fey7rQ|2q1j-T%{{fcO2{FVndnH_lw3h*wLqvmSh` z1=Fi=>UoR7N9iM9VOFHM4O#;>A*Hr418?-oF_k_yVZD%Pkx}7w@n;8XKZ1!-;qM{s z8Wr{sjuVyZ_#MVC>)lsuudv(Rz2Pv|yrk!q^q>nT^%e5_;G8NlMQld1+)14Js^>gmkv~*1AIqkkP2EfzuE=6dV63UO$^*KSVuC)a@X*D zk&RGS;*(w7@u05J1CwM9cIt_je6Pqx5jRurv%E`8wTsfdBj0c!-4qh(l+naJ&lHrj z3{rt}QoHoKw4*6$z#*tBGQJul=!isM+pHJUMyjUQT4=AW0VF9niE~-%WlU<86$Zjo zI>=-LX6nChni}X*U9X$Xa?%VpS0$xEreQti-z#QIpz~3aCa*(a=t0drRT=$Y^H`f` zvd2Ip(lcEf&=*0#hh;yb_=uF5%#%2e=xP|-I#8wimgkoi<}kBM%&TKs@BYL`2z;Rb z#O&o6xa}n6ct*zh(lV^CuKIAh81ZVIH6N{T>UjuDOT?!?d6S$9Pd+8F#D1WfTWO!E>cLpndwdF;Ul z3XY1P4JsrmnAd*bCknFA_hanHQ5bdof|0+T`Hz19OE+)E5lN=D6s~4ZT{1#Scr8RT z)SC4Vs#$qXyzCmNx1PIcJpsVho1t%JwV|KMzvsWV!ar>_ubtFB*@i<1G1Y58c1}aT zqg3(V$QNJD1l|r3-|Sk=oAT^-7aXS|Bl;D!q)FwD$?JhS+3?*!H0`Jg0Haf{W^DP< zq*ZF8P74eCSz$5>w@sc2rGU1L4vmvd6M@0ym(IY*z6qE*ae#?Ox?ESpahw&8?zDc=UOfRG0R5p-gwKE%Tj!8^61Bn(ZvxIgd=5Ckcx z>A<>ftgOqJ5eRYDr;Z;WfO7r(74Pt_is!wtj+Lut?`m#x9-b3XLu7inYkeUxl^)oO|9RmsAYp!wy4`XJOh`h&1ZUR=D= z&3Y`tIUig_uO;x$ljg$|q6tAWs*@l25QW(79U82F4+IZaUU?N}-aG|+PTmERcO9qm zJt(S`t2=5@I-F*>bOM@Fk3Rvge*K${1}_pFWI)CJ??0n&9y88(APxGG$`L)L!bL%BV0lCKBez1QmLB zC!lft^c6V#=snOsHt3%XrhVBKErO)=msl5rc?kX z0GbTU;B#d-2n9uuZZncA1|Zc(r5m7$uZHo+d^RB86aZ2ULQGX*K$;@> zh+qjC>K?T>rlx+``cn+8{7%+alSVO}qk0qOY;^r%J0S%lb#c3JxJc&Dx)FK*c6PI`UfH9-s5<1m9@6IO01$#Lnw>@sdU`*XH7*w=8;Y9 z>_GrG3q_2gbD%I~)OO@_TYpEh%zHlm5qRvMeHOZ$=Hte>^KkRrMOeH&3#%CMYITLq zz(A%Q9nSq>g8_Ji2v`g}L>Qs~i0?WzpKW9sr5)V&0EzQ?5r_&&_m$&0M(8^5&;xMt zCq4|L2M>_11LS?_%9)>;fiq7&4bvx2!k)WNxaYb_i$husmk(;MG4IPSy$mmY=__=; z34xE$9^b1mct|1`11n?0i36cXdt}@oj-TQA!Q&ihrgTHbR2K=2G)W|_B82*-=wBV) z`5c|;cMS}XMriEtVVHUSb$I?y{|r{=<{&3ghU=D0e1KG7lM#7fs1#Sd>}#BF@)_rQ zn9}KRaUB#9(JQNFTb4RD2|w$S=3#2-a!pG3ET{@w+m*4CwvmeRU)3E#h^ZEU?CKrr z=`irmU?*)mZDsRpH<9Z=OWku#>cq{EziD`XGZ2%jPIE`jNO>YCU;-_IF@TH-$jZq# zavKR|EmNePQJKU|5OlqhH-!o|GFRc^8XYRw3H$CpLOvD*9M)UH{Cn_G68G*y>_!tU z<{`X^v~^%$!-vNm8zPVpK?o>mVgNH`lF_fe$%iB*Il9=IX z=;#wdr=c4z1E_pFXJq#34abyRk@gzZuQuc-yhZ2|8Pj~+tng5AlU47kE{z*EY);5E zZ=?7&>D%V_)XhX25F2G`3X%;B^p>sanoMF{P6a6d)UHFt2&i?}*ssD=r0?o^tMj#r ziPg-t$~3LJ(Rn15P5PwTj`&>NhEE&1x(8d?v@=FJ(Xuk#fwbM$+UC6S_9b*jw;}zh znKL!gz@U)VWqduQj}VA(BcK;qS?)QH3qwtac{2w~a zM?c&+bDsP@7H{2#bq7AyR#wPAjlc&+z1nESaN{md3}_Lx93Xwc0GfR#WNfTW`$$G<+!M+~5a~k@#(^e+tolM}i+7$nzEvVUwI&#yLF)DR{KtGr=YygUP(i}u8 z!R3sys@1U=njz7@(`u+b3QwDi@sQ2InB1H{6hSOUkd18O@%k%Dl4ISv22c1gBw)GF2C891T@yX zSrtjkysdE0Krh`#5Q0pFKNY=z!O3Ab_|S33kj%l%*~>AErVNzg_*EZfEK%B*kZ(Yc z3a24^F`HABWHqw}lDB@nGF|E_XS5_Xn*&n!_#8{M^}I;uGtWJ%`U|qkwSiZa_J(>H z6B!#*HLtOXX)sycwWcV|mqDfc6A_%Psh4D8p@PD6-P_R*l|}9I`M7VA7nh%mwMi>h zJBLgSy4wfBIRX4_9A(1FpS!78Y*YBxmfkm1WpK)2l#7Nb|w|W@QMtVWWu^(=Zx? zGC~n4P<|E(05&Gm7^rAY9N`Kj`a{!GbSB9|pZ*jKPEAqNE3kU@V;x#_9W^!=UwD~L z|K9)LeSjyWv;PW~!DoG-Y1UJJ_{R=}%p_sYy$P0|+o;VEO$?ZH|5SC3)vz*-B192q zdLw|FM=H_^EB)iMH8MYBlvP>!tZKfGjw)($_!m-@s0KTT;awWQ!m{rwYT*&o=;qcJFRy4K-<6 z>VDHTs9*n@7ts$J`HYO0zof|(RQu1``s)C3V^qM5nTt9wqsz$Xrms83nLl+2j=cA7 zV%$jrxKRoq2;4w0$1)+bV4Rz^bIkj-C9SJk*Dd6~`jp0wm#!e^zODRbGx zI08Vn1#hybl1I5yA|sPNSe@Hao`DpY@E!GR+AjuDrW>T}I6x3PK5~%BI*RY{Gf+=+ z^k7u(RqLql)zUNd8LMNY4xr`%==z+`nzXKdAE&{SJeM-!7pV3I`< z=N^}r0;T#g>ymFo@6Z6e>oY&=0LU+rDblsqPdm-WIXdlpZE2Y_x<1;~I?)QN%sVmS zmDk|f29qnBw$X+fbrdP7&{LYsTCJR60VZk=&`b&=Tb=xg55e?ZCy2pL0FMcw&(Ta2 zK?%~~GiT{Ko&$mcm~}L}+Ss7}!U$QI$E^z&;e{`L8E#*=B-&wWpQD|0z+f2}Z>?$e z%iju3FrtBn_-V4k20MztY^yN^Eh&${K<0wY>70@IZGs<+cgF7^pFR>aIRMh_H1NX* z4#3#aBLq5r@bCUT%wD=wvleZ#f5v+@`yJOgKVN6rknI0f2EK9shxkZ(PtS|&4XIIO zjY37Z+QkD7u`v8Fj{~<|?^SV=QvDpOBmE!8OpRg9yxnY;n(W>119;5%Ud~dcU-SiL zoVd1H!pC_AMk1MF%^NPnoU%=v%d|4N5=K;wF_`Ll;dyS1sbxSzFDPJbRg?1P6SxRz z1fzEAAJTqI20Hwc@iNJM)fOPU*#e#ar-;dxzGr~5ZBana(ZTg|9lS$g0 z3p-?*BtS2WLwKI)3AZg7TY1UE`IRwLOy_4o*$N2mjHp!Xv-* zvqTfFyz)BSJbNCN$me6xfsbYK38Rz2gUMAHqFu46m4u~L0u)ip=1gj3%o(ur_t0O3 z(tZ$7=z`G$`{2Q!{S+L0_yO2GH00@4(9nwT19)MM*u|4 zhfBzyqxNHEehyyz(pTxMkFurw>nOuAt_Q9w#Qj8ftYLy6ZA+GT4t#Xd8W5Gj zqdc!=j4N;FxynMR?isw!g$6)EhJ0Dv1*SeZmvDk zbOs2fMgX#N7~!2Kc4pcR`p#1=`N*DavWMKh1OPUzS6w-E&o@ixKp2mTbR9Gi=ZeP< zX66zaRn*LHXgkrE!>zR6Q{$EoPh4$9v_{GBFDrtJ#=VC zuu-B$RSThe5pb+7F1yWgiO%OJ$P~*15Ox3+2DL0z`@$Et`U)TjZMkt{rUSR!MvOMY zm><@aG$9C1D3XegqEa}Gi4QGoX|wAe9i~WM*WNe}i#O*W>0(eR^tZ_vBWCIna0t~6 zi^np3pYLr)4GzMLY9`a#8J(5JPWU0Ry^1HthsG zkNG<@EhhC55Jo#Zn={B95TjS z`XHTm!qA%hVzxlRW?(ATLx6{k{g;kteQHn7!d;s=V#n&l?~u+H|EN_5yBetD_!3ZJ z6paHlhupQ{z0>gV|LQ-dvp&$g>caCcJ8i+a06vyH_&}2@)EKmCzz6=Tb$8$w1>gt}>!h)&RD4AzGpNz^YUjub(g1aLtR%j3aB!DBULFId$|HoGL zhl(#+o8KC!MPABRz6y$V(w(GsXMkX81Ry(y5#CvDF#b3b|`JS zdG-oS9Nz~MNA?n9?>Ek1LKUQKEHGq{;D7tgUF?y;hvr>(63LOh6F$tZa&G615>v^b zhNN9FEF@pU|61!odgwN;E~n+_2u|)8iWl?j=HIo-Ne4Fih)$uizO4VGjRzhw< zWsT;Wr-8J@9OQ&&YBpMZzD>f^`^=Ng(W*M+Qb5g!CK>>UBVxHc1y(d*tfvE2zpOZ3 zCRxCdu}~Ajf?{6Nlybpe*< z@PzYaI_rZ^IY+ZA1RwspKj@SN9ySmztsvCV`S>EQUG_l7@1# zeEO&0&;}>0Ma_BpE;Gx%czvscKxR*2N(6eufAlP2$n#-2Wfw9qx_vz zO}5P$AefppAbo=myS{%6cG9-e9WNL#89!tb;+W^X-NmVLPBz>+0Mt}&{=06Go3w$! zjz5wfAw-H+Y08vbPjXG5O1u*`;iP<{&9tN{0(i8USgd-K4lz@iFb&}=Y89@$au)X9 zcNB)F$7tjAw$wHp)aA=6{XgLCnN84+_bpxVylX{{m2KnJgrgekEJlaf?d>S8MO zDva{40X={Cxr}4UhX(SMU*B#k_4Z#Z*xJVpq+rbROx1DAU(Ugo?>n2`he&@QldS62 zB$d)*4zaIuS|8sBnHR{!-~E$60iXHr{y(HmxOx5(y#B54!Q8bOSe~7yHM|~tKG@Gg zG#{v8fEegPn_H3mo1;YO^&-pA3iEA4NL#+ofP^IYj*;#g9f6Y{`XIdfmwy2!4j&>@ zA~c)YSY7calDE77g%=gqrNiY<^b5(TqpzspXt{c?Ev*oE!ZK0w(bc<~0Ld#~|7&>T z+u!ja(iwPAWy_j=grKR8<40#lsJ>-pJ8_&3?_;~TGYTbKv7!G&Yryj$%pGwur~C_* ze-ZKxpri1P=cqA4@X2p3!eFd&xiV_`>vua>S}%sgbC-%`Mw|L zaGEzHxyBpKbcqE;HScEmHdCtYr8?k5HE94GO)2NUc7VtoCEHei3%kJC^Dg{<@7PXRJ0$?fo_C%d30dn5uTAX@Mu#)IDJ!Oh$YZ@k#+qmcJ%b zfq*piK!s2;!Lccm6d7Acg?q{7Zz3PTnTL096U4*(_TG0G`bNAXIYp<^+6%U&X0xlX zsmJmRnNpSR+S2Vg=ZYZUVClP=(HV&Bgb* zLrm5ex;$@es{WNkv!fYi_@)rUR( z{qVkD`z84Bum2h`^{DYU{lt?_19IC(x?1*Ue4sD`8GV1aV9+cCx+9@!ePsZE!ACx4 zqE?s3RwHns^MSF(Tn5I+;NZI+g8P2*W3d0B2Z){^t--TLeAKE|h^Pf}m><)!f)3pC zVP~m`q9EY3N}3NJ?Fzvc9>Ry3k<;IQ3f}nEcS*~G0-7>Jx-y`eVr}#VDKo!8Zhu&N zdaWfi$(Up=8*-4l=EKNU=7eFVeB(7AMKHS}C-e?9lifup*AE>yNT;69U!8%c ze((2S;rjK2#&R(}TdU?u96zap;31O;6y#A&UsNAR8LCkUt$>tNN?s6`iOK3K^dHo9 z)3lm5Pf<_>LXRu=lIP?1ToAk2yE|!XsWk9EHJt&1saXTk+c)e8!)IY9y<bQ2-8TWldnaLNVzgqmVN_?Etp8<$gRGLezG})wNjs!GY4%>sz$Abs-TdN<@|eki zX-%CHMggG0@N>#GeksSs2TaQ5LetCKj};9BWa~2&AYiUx?V5yfsxv=`j6-#JjADS} zwM1Kxy~MetLl&864S$UMYm$2=F4XEk>Atd7(F$E-U2+YRkugj1o&jiYY8okkk-F7T zH0i9A5f8OaC`d0Rx*D)=)fmXgS&fZ01iBGA3X5sPr<>59)y0U z0YQ4XzOq8*VBX}a6fFw-OO>tY_lD-8DEX)U3^WVd)e6zB5PWp^_R{Y&KX}q#_IBKuDH~6zY%~8Iwr*K zoCWf>rn(7VXI{}>gHgR_v-k5PlE*D9-nW{PGK7$;`ZX2L1S_eZ$v}XTq5{aqP$8Op z-7vG2Q%3bHi-94lpMFgdG$wB7_S)4Lt_PEX034zggw3#mq*(5S z9NlGf4n+s>{;?saRT&H*WX=1R)BzdpYgJ)6Hw6E0;bCIya{dQ~>P0gK+}u#Bfdh^TKikpl(OZ>sh~PrhSm_$C@eT`4@q3joD7* zZln@hS;q;plhYcTK4&4Cj@YD*@jI_4eXoYsfD~ZFHE1)Y2(ovopedFhjFT~ye$;S0 z0a*aGAWYh7Ov-R85CMv2;qOAz9iCtbO*1Kj9_p>_|0B55G$^fGA~4BN`mVk{c-Jre zEPU*r|GHa`_fTXj)Ow)9`O>XfI$V&>_gGz*h*AVVS|OaRXgw78kXG4L$dPuMdM?bV z&dO;oB*}T1fce4;e&_ZCB53 zx{q~USzL5&S_|hFd0`4_K9C_l{lpL8xj*|$ao%_CBHiyGT?3Lgn|9%U9pT)MK#x(Ngx*S!){`NEI%=D)R|fIC#zC5{=32gflDy+w*8Oa%1R&-ex;9-a>7$ZW8~#KKSK6gI zkg{2xo8`M>f_2B~_RSkJ|FYc!jR0ilEReT9)lK*&3EWm4!Rwx{`@S6s!dqEv6^R1W zu^TmI@II@VeVg8cjIm*6z-VRwB0;TVFnqq7^nu=Qf%_Lyro{S#2j`q71ex>x(Lp+2 z1EqW3yrEQ%kRTDT#NOKaVoHgOXIuIhvqrMoq-DC)PqG+buWDixDUX_6{ zX@1$0DS%3WgZ|Ftno9noV24@E6r?o0Z)}`8AK9l zZSZhwuxKf4?fd@TFTs0%^^7p{WvS zE3~QT@T`ZNKSCOSP6sY}$P9`6JsiNIXjgO&NI^_FI-FxAEO#-+iz2S>^zRqc;DFZph?=CggOkWRHU z+HSFmH!!+fTd%!n;%}Pr)+q){fGxehS$;cd%juP+#rfZE_drLxn>%NLynU%wbI}GA zYP$`Onk=kN8}^{)J8y1}dCYT1uOInx54fCP>!0kd~~! z-;5> z{*%d7h$y8GNM)^noIfOB!)72PHps9uc8%ah)~#cd(J>ms>7vHt;KL8X(Bvd(DNy6F zMp3td85q)-&;x9$MNZsE21Bq73O9>pReimrVMThif)TvdeLxMOO-{p%W>;9hOE0_# z&;I#e(cy}Gy18Z0U;z@)O+^Q-i*Bc01JYg-!rvAVD20%?pvPLz70y}hQAUvl1L=G0 z@50gP*x|gOGe0`LhR11uhW74-sk`r{{(JTh{}3)d^;7}`WvW@BR8R*-nC=!PKCHEa z3eFKlVF}NFc(j6sRqtf+^U5tjIKewZ$(9dsntu8O2WlGYs zmHgTfgr+)2Vyu{;rYCC%MVhT?Q$qFKv;vwDsdqSwO-<{lH;K@&JoVSG7~3TI#g7bAyL z0Usk`s1mJ>(nrKWZHPge?N0Dfyu5YU{Wr&0Z`@t}Uz=!=yxG19NepsCGA z^9@`PnUhige>F`LG^?Bqa|#4NsfCp^QZvAM17~JkHuEAifzo-zN~!tF^?{l`P<7ah zp76R(pVgllOxf(d%A?9f%d@5pGq3aTRc9JwlIMg0l*z*VZ}W_*>(?kjMEI;Sl=@n` z`YM_ZnWoOhzR-OlOqo%@H+d%(fzt5llgHuxfB%=^!~gi#U}(=2X*k~a&J%F<$!B1G z<^}-|GPzn`4}yb@aG+@!fd^||nJ#c~npx+z$-L3cjdetjFn;JD9DUEb;az|0XC1wJ z0Co=y5Rh11T%lL`)IsN5Nwn_H*eV zlXsKaZcOTE9{Sg7RSFM23KPs=@w|_2qNxK8%uSv=2|WY-@ak8-0Rh+oUQOn zJLyi6{le1X!WY{;(H4O8_4R)mcFqF1wOAj7(QcLH3R7J6;@w*H-_cPlJR z4YOaVu_kgxJGmMG2bD}Jc_@Iv)Ka83Ccc(2ugTs7w#p0&4;UFeG;hK~{EmO{0jC`p zrsp@vAEb=7*EWI?FM;&=n^0CM+6_aDJ8Bzt_3nbf$uT;;9Ki#go*oZ7R22<-ZppqT z01|!DCZ=B=z)&vUid;Z3I)K5ejWn=SxZ z6Ci6(3spe1N9SEF$Cw;cK*M`=v?(%?lDm!XBhT{q>HjORI=?{vVW?#w zKM&M2VC1{f3l31YL7Gr?syS;t;$eI?(!(eh0n)}KFa+}GtsH2dv)W8|@L2ywNUJydy1DWkG2eIwlPP2@HkxMVW0?+@| zmz;+9rf&m2P^$a_O^u%lXtH$O#<>AX>3PuK6l`w(+3La86JVjyH3E!fdg>$wb$Ue&wm~kuHWEEm(CqyD&?o(gJ)ND z{&GF_XI(Pt{Zxw?>yhWdD@f06>2hNlYSU1D1I?;Sb=r&^aO8Pa1s*%;ZA#eNzwZFZ z7M8qCv_G)0lrumg zGhxO4S$CKCkpuvPObcpN5Y(XRA2m1Jn{r?w`HJ{61JFhr9n(klO;SXgxtUuITzH39 zG`U!wUxMYiMKYo58yg}&k$v|ahXW6upx@pU!;*;>o06HD;m(FfPXh%SawZ9~-*uBd zd(`mS$zBT&q?p$eH zT9Zy>qZ*x8Q!(v6!?<=b@F2{8jkcwBEt)u}RoZ2eI)DNfye{HB{T-_1fO-$qyvabK zUjL!7sz23)$jebB>(zI#u?C;xB%93K7KzX1J{!68 zzj+*HPMsy+3i9>XSQi=~4(CDZ072^@PT8A;@s9lgGL8ruFa+%Qk%RE?&;JZO^fNyN zlgE!ZK|~+49Nk!&n}apfcr5vIM!0Mrgv0lE5uB@0y6@`|&)&fNdxwTxe%`DK=_DSa zxVE|?S_^!yr@xQ-_}c4lz!Sg!d03HXS7k8I3bS0KE^N-0nH@^U%YcMw#GtQ;e=Wt)&blir7Pis{eoSbfy*|7p2R zd9>qKHsiH+(j6va|NC|!crmrtfb4CJBkEP5twEjw+)nfyX4HIfimBAuh4Qs#BveM_53t}g1D#!+ zu=l=WZu8zvw#=jn;jp|RY7|Q!trFJxx~lu&?=Q_RI+gqg^f)OXN&?Zz9b^2<`y#!x zn$t?T)bQP?KBvb+osglyqKRQZTjbDBZ2wG5MQA6QV+~G?()+hAUJJ}ni?kdl!Nj_) z%rBD(R)@=L_dp*^9Na@@TBCa>y`Kz#KbaXL+vuT--I|SNs@kvYV#ZW?eW+vtQ91~b zF)^`l4M+m}tFp)#$jVM^g|SH&md&o&qya1yP9(38N--;@Jj@^%okz?&U1~=CK|1## zOU#&o+L-yetRMAk0!*Nu<7oP=x${Q)XVY@>zD?G$P1+#O*=inD8kqH8p@~kcZj)nv z3KY|#lXmE4>$AwvZo_`76befOF8@EW~;SUwu z2bzzx*O;fe2WY%6v8CSy~%ea7FW_X;z(d&hr_+GDuMKjzLJFv?H;fOiF{odkka? zJ+F+4bj9n{FwlvnSNPYxyBCJ`?}sS|KJfl4U-}Zf@wKl@J9A+g|CdavFbBavLb*Uc zZKL){uWiWq2^NARIjOcMdt|ySk{ZPaQkqyNFs%Nr3Ow4Sb|&Qd-e$av7NG8=J5QU1 z;KkH-M29E#J=|5;r(q|(<7qpnd%FmIGwn-V;zfHW(tsvA%u;U%)dGPxQMspi9DvB6 zng(r1a$P8Q@~kFCEGe_$x|AnnXPY-D<^t*yIuU;SH+}^k{>7gl27BR}(-b)Ez{-*j zk%{4J(Gi?t^sl$%51s9l>1U?9;EoYu|l_PI4D% zCw|g19X_7F17w{JwDh_>clGb4jT|*43%BOr(o3h|>YL|a-f2_F$Hm%oTr<8_^SL&W zxCLfVqX!$oWCh@J);8bZ^6}q(=>I0`(gK;9JtF22(3_u16GXqyPk@da*Bj$lKHp5&bWE$4BA7L-)h}2kwW#@i8(9 zB26it;jywR!Uj1{MEVXC4fW?)kd&WHl|YzT6mIl5aMLq5NPZoduuV(1Z^O#MQh3JD z3Fo_<=A*;qclN1g;iWHsjh<=w=oso?R<%H^m43*1|E7X0Bcu-Rz;Z8jzmuv6YU_*8dB3(pySROnkn0wwjv2gub^GjYX5RV7q1M z>$&tmr1_u;Ph<{#M)3g+K61gKFq&YYRuiJ6O;y4PDfr;c#OUWU;+j>iN@rCC!|TWt zTzTajOrJaeqX(zyHu`Uf$&^(gasv}p2FAf}R*=*YpIx3?Ait2IsWD>c(J>ugS#=Ua zGQVKP12q~pZWKA8)#Jr^)A!PfzX~!M7#5Sv13I+LvL_YP4)+@wmLaDJ!9xql9Lq5f zWnhZX$-N9_UUJ}o6_ zgSuf3n@Rm<=AS7ln~ljBYZ-T0C(J~}a*}zQ4s~*^wvtwvfn=3U-nXel-d4&^=eq_A zk#W~dNBV5KPSf_ON`z`AoDT3n7-n8U)k`sB1oR=79vWf(r5Lrud|4*vu2kjX8kIlA z2F3S`YLBLWd3&oGQI=41t8Byiuah?OZ`}>)J&<`I-$M=vJoesu7rgIRev!iKj_lh* z4C&mp>u~Sqe?7 zj(_mI@ZhIE3H$E7#|b(HXzk*fUYTE@I+-9w!P9^IXXF>crQMexG!KbXJ6lXmdEALML_d>9@X|?37)(Z#+7fm9H>LqN%v5G1qKe+EVc`vidrYJkwxg1}P= zbS}y8o(Y&faR?@k?t`I;5ibRH5?{10=Z4rCo=y)#oGw-MzA-i1YQpJTVNf(U$@s=( zD%6#iC(AFZG9b;WCSz?rqSi7*{=1#?Yr-5^h)%YO!8S?hp%qfSl&jF?5Wq;lfC5&Q z*B2yh)qswRO8|_jg%qFkm(ALtYXhLypa`e~_+UU~RsU>t{WA@ae~r!qDrEyiriE#l zF^cI`6~uEq-uric9v=PG&%lvK-%V#*pqAstne%kE$EBBFr$Yu?>;ACM4fOX2r+zu38U8*0~8bQ znJ5Soe>ws<9qO->A}96^4a3NxLojyauxsme_};(%H*o9R*=!A|pK7i_4M;FDPvd%x z+mlJgtu95{kggM*hhF|Ex$x~)atkn<(Y)l{nCi3}?NS}MNQ8~B+4|4g(Z0Byv`I2s z2*Hb~W3vZ(`v!j14aPL=q_-`#TU_lH$aXXobznfhv(@W$i?>eOf{8=F9)h;NcS_@yBP7 z0cU_v21iW>A)%wB7_F|xZzuu9lhV--q<>_9Hu~KI-lPemQK6uOR#MOGUiore@-8V(`Se~2rJ|!Vvag+@j z7PMW*`)kW<6g>z1MOK59w`ZUa#tuw7iR=N`ch6CBct_@iT0N(;r5#pD_gqsolW>Gfi3 z>KdPk^=)4N(767&PqLB9m4F zs_S2aTA?F~#!6jH1o}E*8wMxG;h~@VDfsX|{(Eru$36lB6XOIZZl1dUr@r?joO$v& z2jnliHMdN(gZwv^Svbk6a^ei@NH9zI|9Xc zig~iG7;K=_#duA1EW?KuCfXSCWK9r96-2YLB1F96aJ%RS(=#v#!H88zO?9&1#8fL>ZAl~w@{}-j*Jr#Ovh|rdF?EPrk!+>ePrO#X;XYQS}{gGOQnRtbpMsY=|)p6 ze1GBkZ82HG4UPOY90P%2d&>}kMl*`Cd0Vw%*|b^YXl@lS!vDj$0oaKtv5GQLT|U_xa!)XtHd3E^&0+^S|?c_TJF55QITT9D;uVu6ewUr1s-uG+21P}h) zCt+moG?j;Ed0c$qWq9*@PtoCm7+x2(9=Jv}*4Jg7u)jyCB3${iFTCkh1VKi)LoHxH zt-|!l6HeRlUbyckAEWa-&>RZ$MlA%M>$9p35ES5Hl_pcNvz`w(CYmi7f35`!PVf)4 zDgEPP(CffF@>J$?OT+I8yj@54)9`I@5z^Afy+$|Z9zA&Ej) zB&ju|g*OoDX=G0`0U(F{h5g}zV>q8xLQfXFHhIBY0U2Qeg*oFv2UCwiN52Zut_lJl z9TM>hP2T|hKmxyp4;+B0yH8S{&;8LK!LRv<88%*L}}Zoo!=N9X6|DyZqno6zF%AUsH@q zr9I4HRyhE=#F0o6I;gn{%+IEMUKy7}k{$9^gw{d>F*9l`+~$d z2q%-Xq%hS&gqqv%Vbg198ifv<=zoESR$--f_4h)j+vM?#4h=X+YHUMW!ba+|vVo7W zpiO-&A1{J+3!516I_Mj+>K*9O2L&A`ZP>Ia&j3QuL~Lkk9QsFx;KsQt1YGcb$zZFr zfvHi9O<=6NW@LlRJuuX;Ka6pM>W<)M{NP>!BBT4KVR(<%jG!skMmS?c&m*I!iN0Bx zFM-Jh;a?)NUpv=rg)xpBe*}+d&YW+kNDdsNU?7I2G8gmjGF}=*>bkYll9~XREHr6D zG&`cph+wPA^rz4bAohG-SAew6o6{m{Pf=Z)y02r)^7XIkY~mAw4@}C)XlANu{aaOH z@}WV8%4q7u5%}=0|9yDmGe6_LA9c)lH~CgvdF>5&{oCJz%dfl+OE+&N8V`SnX)B)V zAqNUVq7ASLX=?^O@U5hIMX+)2Cq4?tKkz;}*pSQ{-5L{Zhg(Byc%BHFT2W|U4vJBV zww47Tek}Z&XI}=4bcNw)t@J@jNxM9qhL_uSLZ zz>8n{3IP4Wsuk?Jfj}*olF}X<=4+v%V1ev23Vie04$kD1 zANT`WeSsX%BWOJs%osMgDkR7UopkOrJ=iY;d!}Lfo_nCnjmN2Pe+QoZ{O6&C^wNg1 zn3kzYXKL4!k@42R160zCzg{sqA8CKXJ;}CaNrx@9HYIa%n`t{BL#ORVvD(puy#1*( z@IP%9f)~@Ky*@Fq@3T-4j(^9GBDG_L#5Aj228zguz$Y&QHmQTk zMoY#*WwK{;hOXv1z8|Dwal_4l4kQ#8zaDt-IQ-QA{nudP_%!=oK3lP(V zLWh_1JBba~y;%WJL@U$jquZclvu|t|`bGyS;ui$QjT}1I48dJMADHj|(N|o3t`Nfm zJO%(1-jb!#2+DjpMTp4NNo5v+x#{TY@R798WWi}gb`SNFCIW)mituqE@O={3!yDzKCA-Zd#@`nR$rTN$&wE(QQn9}xg;2Be<{UDv!Z z$r{T*NlkyXyO+OT3v!GH17b>|o`(FlV!Yb>*=P`yKA*f7`bYzkB%iEbWTb35ff5P3 zF|}RPNq$XJ@PU8$D{%DvkI-r1$ULLq;KteWaOvgO;JVXzkZ%QP0ll`vJDICPOG7y& zMSlVTpL8GVUzU~iho(;GZ*lNl4>`JXuhT#bkp_aC${pZX4biMNf`18@>xB{Cp2j_UfE=Jm<5=3Zt0xEWMu3yL7J!7bP3Rv)T3Hy;z@&me-#476 z;rk3m3je*3sDPcp$EDi=4hPQmJI%+ver#U*>Q~{(fB$NFo)ar+o|Jw~(Sc8)jnYLgmzhKhmZO%k0rb_d4%;4yJ8~G?L`BY4d zt)WudRy+YiHf{vM1V$06;vWs1eC!eU+5hinp`)i8=C9p$8_t}Q^sUHA;lzxrd&#Fi zJH#LAMUqh5h+E8v1m{kd@$|_0FPV#sOVjT7k1qzYH&Z?fVWKEW13TWRaz9RCWuB zhK2>FR#IFm@wb1%W?F^Futff+ru_|If$!-u)9Z17qd*`<69)9PIA&V&p|A1Wlon@z zqjFC%R!83ZE;#wo55VDfKjgHYd+0h!^sl`3CR{&r9&Vny7^2s0_!G=SL@E4E8p6__ zAnt_^Ty|(_5PT3*%;rI%4Lw7Hu>XO3Vd~gX7(0A`!rfwh=&(^dw_`P&RKBqhe7x3y zwHj0wXmF+0r-|#;M~UhPf`&p4-^BHa4(51Tde`pWkWVYn8&6wM8#;UW3PsXFpn_&$ z-AxkbadZ5NLXXN=g zPe1+DBD9|)Wa)ll4G7Xtbgsw9V5Iq&o`ya5-$$lt=bn5DzVq9^?KEIFA^LYEQ>tO} zit{zu1hwELEOL`bOH2Z8bl*we)Rj|xrLwW=?$Y^1yt6&}ww32o9$|BV?Ay)j?4-tY zdgkh-qg#1!a{w}Yc(`lV+AY{gZ(C|wESTQX0?ByiZ7+IwdjtenCOeJQNtWZr0K%bZ zhK2JGiC0eeBp)s>GB!C=lKz6UK8o5W*Hlkvh9u1~W^60%SNlTvM9J5O{>jh5BcJ)0 z+n5ZU*bH0A`SH`|qOc4w&nVn zi}1`}{te7syGd6 zYoA}FvaUNYGIRQ(le%6fCw*e_Y-JR~@5lh)9RhU5B(lWF2ty6{<*CG9(n8{;$V}_R z4EmN}exogu5a%Lx*v=~UaY+0r$bEN9Rj4Ly(Xllp#Xkf&BkV=~&>nkOl zl{J?3n^pfN&#HRyGny{=^&d_MPs&J%N#3XJ5(47U1N-1zf9q3l?1PUw4a5jtU%WjF zx6WU38jn{U^L-8093bb&Rus)@!>{8OJ9u+=U7PxDSyjI{MnL8~eWN3A6G$i0va21&}d7Y;lYB9kRNGJ3K`_M{=ymzbi$wD&3$M{pn!)7Vi?(8 zr*)z5x&jhF)-Y;$Z#(dTW?rcEK;VG@2?JKV{I##cneRX8wWJmz<62sXKva*bmAR-H z-elg;wE`gHkP{&Xs5a7fW%e92A4bzAem~roz6$Rafp&U#^e&=9N z#!WUuU5$FaB-#I~CBH2IqK+SVyYk*iKDib8_3KwJe|#&?ZmGv7r}mz9Lv|Q;(%Y7{ zi}3F>{~Xw~TY#8Yd(k94Xp%a-rMfoV$N)-)Bp_u&G~qL;#M4y!LlZ^|Y7cXmY0%EcE?!NLvi7edbE96nR^hY9CRI=Tx#8Jm#0jEn1alFt;Ajs#y8In>NO#f@K(7A^V`52`zqxP<8f4T6L`(k|Bf1k z_&c5BRV_u#Bc(ffT^iMoY6YtPsxp=7@^9#GqlT$cemZ6bG+)G;(3*aPoM!qA@OMvt zAMCyFZaDGb_rblN_z3h24v+))5(1A44tTuy8abM;VN@&f{qiS=+m=6cl)_%4PgJWF z@+{Rk7dDPds5Ab?b=v2c{h{e8*mwUuFztW`hSbHnuCK0;nHOsQ2F~!3JtxW-ni*Pc+{| z9~AWaSh#ruUi<5B!`UaFj)H+e=NNeLfF)y@Gts7Acx5uW6~7yyYhJz*eL!SBtBJ%Q zLChF(*m_5_x;od+$MYwp8KnB!Ho-7h#dv-D>Y#b zcm@a%V}X~l;(tY1KpE;-c6bxCVm-vzUvZyZYq09BEj#T8N@~%@ylZziF+0Q4<1l_` zF9AA?A~x$ZBDWkExqkMN`+kF%M$Hu0CTu&$!i|&`Phfxflq&e9J?_H1RgeujP|)_o`?Bs*U3K#!%O2i8syti z1|JVHfhvQkl@URL4W?IAH(RF6U!Xlhd#2#n``-%f%ae`PR_>g?VH1JjexKRn{Ju$|s- zqvWvM9U;tZLF;Pv(iPIeklAE^KWQx&uHS&C{^-wO=G5sBD%{sAnp*_{QlNQ8=A%`6 z1qfg@00~%3=7$J2Ab^FSsZgMS`@@5bc$i?a1{th)6v!7qw8JL&d#JNM$aigbFATb| z+H>E1&^s~;*Is=EzWdw%qnjf$ajwa7Of`dbT8`M}{2t#|`*iK*tGY(IC<2!RU??zS zR8h(54n6Kxiu~ye8 z(iJ<15}*i&dhrI0rySq4h|(A;43z%=xa53AFTs|oAz>bIVT(?56-7M(T% z4?oPfh%g^Ka}XkYhUi8trHxWa{G@t7kUkb6);~%ikrCL{Ma%$3=Rw~UWP&jNb&M!B zzu_DSoxRS8&tOiY>!HtMRJFbK&%ro!}C#R$c|)rf@|D0Mj-yGsAm zR7%&WcW4j>rzhb4PkkKj|LKnt&@Sn;@I~_Lz^GR9*Kbi&DRl70HB6e!py6nRLrA?= zlg*#XNW02tB1xa6CI2QgEu6ml1RQwiKBr~e3!S~Y2`r#_)ykp|WP#v=XhaCzOZ1d9 z9-gr$O-qC0wv2ON#{GH@epnnKs_+r0imqMIKQau1lM@uZ2@{144o>J8K!V>#hx6I1 z*T~@=!N=~wLDE*voH+w8eBsM*Hcpj#H9gzXpkg*VB_@8-qzP5)rpm10hLMiy$Fz}Tif3M z+tI2`(q`}Hb=k^0JL!&+lOdKLzkcP)H@5QdmU@4DYR_-D3HLw1PWqvw?P@%%wT-4z z{sCwl=^uv$nX@yTcwebF_ZrQlfG~2J+4Ck9HJqP?>h+8niOi*q1uAAJ#V@LJ69AHN zNvdCQb9(o$d;;G8Yd;O${kvgd<~Es1t;~D#2{cz|1z!-h+xBKxHZU<>+DME=t0ncB zy6YeudGvnhaS~Z%qOoi|X&mcx?bJo`hge%)jUj)_7?H>pp6MYbU-^P~=03)?XHzYa z{)KkY`5^8&WbOwhM#$U@wGd4S%bjtc=*{mv2j`x9mD(o^hP8<_lg)PgcfKAsP?2O} zwSso2qca>3*1_RIz1bK!gZ6a8F2~4Wv?3e}I=vZBm3PeK?JF}d?|{hMwHq*h!+}F5 z$;L5BrU|5THD$#in?va|<9*!%)PoZXu$72XS#L(*Q_tN)6A(!NPs6(jEdsSRbe#+& z04$D=W=c%jDe=Wvf5mu35TSAs0Rf~4qe=iOOH*EfykF`GB+iei<40iceJ33NxE~HY za4+->57HSKb54SN`{EV2e(pRh-0{Kz=dCx?s`b1aZCL$k)A$w{Zl9HnQxDOnl7hd%`!8E;&NXhwSb;w3t-2Yui0 zfI(b?7hik{UitbrVfNx>Uq2qd&=-1;;*_fpTtEH{Zsnp8(BXfYB*GsD(qJIsCHpLB z^EA#o<9qWezZVu#U|~8!R~QML;j>a9cQHhH2(^m<4IR#>@44Fvg+}1qlTX4^|KW3R z^YrN$PBBBLJ5Sr; zf9js~^=Jk=Tgi7P-ErD-1T0Kj>ix0FJ-_G}lRtu;^p2(`^QZjUcJt8pe$)#tCjxo0 zjn}J;eg$OYc_e&=Nps?Qm=vH2#WvcT}UkN*8n!K1(WNdg;a z7PKHEftKasr4 zG2GaWTbHlHwKp%o^6h!5Ls`afpH{W2fI^sly2K9XxDj=BsFQ@lD;$0@M9HCWy$)F6 z*&TRLqP87RHg@+Nqhnzh-PgYT6q!TOp@*v5_|#z=>X8gV5g7!Qbo%I4K#u;vW)VS( z%l7OYogEV9x051k?IJA+nQghg!ZB<)5Qsqn(3EEO(slA9K|r$R>dPiB?HKoj@iuD9 zZvZ5I_NcX+U(4n`->s5xo7W%#cC|nxzpk-@ekOKy`b=Jpc7P`^egY&C5CQegF)B~> z+Z631nYE*L8Sh8WVNeGIrbABCvH#)w;h@txAoD*sJxN8Q=I)jQ9k(uBhQ;eQVe!^& zGBYCIEz+7HQ|`b=X@k}y0s{sba+-MZ-GpEYy)bq1C`GawJ-CmwEO?JjCdVjNbYSNS znR9W-Zrk#ow2n)4xM^slfKuPc&~KjU<}vVRc^Cm8G)7@;5e)S^(9u6J4&A$ZX+Dx> zC(xoo&b#pI3G0b|FY8VN;=xD114=Ep@caw#@|V9(;bz%Sgn<&zZVkrLk;=ctF>Cr= z1g!)E3V>*CCBRC}JNDnO01B9y$o3oU=V79DC1`=MpYW6BkON$U4tz}Bb&{feU3~6Y zc>G`g8<@L%8G=MDEk0S#Py;?N<_JC<(ET)i~9)rYqCE$VPSm?vBI=2jKfuWJJ0z$lge<)cQ4>Du`!Lj_^=6=ip zkbUYg-q4p)EJEH87D_fOxP9^%%$|epy|`O=U;=@zx@o{zC06!+rhrtLNwEm zxm0u{%sn#<$lr8y6iL6c-8NM>oMpfve%Zkm?b*q3)P17EEcKad18Rkk>B7F8pK;m| z_jmi!H8P#Ukg5ox&>V;A7R(p3DG}yLKF=~{NHHdmPRHhr9q;SY?;DvIUNk;aHnFHB z0h(cLN*OSS3}kp!uYW85)aGlT%65VVCc3=ro#a!sjhU^oLd*QqwEom*+A3D5I)yO$ScWr3mwEPYddUk zEVrsR6Cew~K%Jgotw3O=DZI8s!t$n!y@LZzn>k76Rp2$R+424)ynfLS#RNc4C!EjB zP(9J)3jMEE=I7zf?>r7~KK=yto1oP&Hw1u~08G^gZ^|s2sDUNzZHIP}FQQfy;&Uvh z0H$qRidqxeF&#A608r5Yy>A?y^4{4&LJZUZp`Xjdi4!n-_%OY5`rF@zC;!8LaDerC z+$$^VUro)}d=C~OYO8DxK-9di0|HR#&A2zovdRd6Ea~KebWydQ5budF!M^qVA7FcY zh4NL85udIyZ^51u2sm$41vt zH7Gngeey7T{J;7Y*#F>h0tJgs%8sAN?5?3X*79oR3ldLA#>`t1)y5L%jnYx{bvW|q zeXz&nO{bV61JgnfvKzV`5J0n{%debqOw|qVM`BaEYu~>niFq%Zz2Sod!zLUyOa zeeoxT%-wVMaTq&%5JnH|cbdX}(q^EB1N|p(?YB?}fuI8&*=_XeKpH^cN|{?xcUT{2 z0(cBHcH{L6yf(vcT)XVA6`n`nFf=ty2O6UPMr*^HltIe_D;uSiOK-w~Y5-&Pi`e5U5lDal8R_SY00=m-p!z4?^YsRZf{~_klww`)bpLPM z-?xx7U(&SxcYwz`owgnU3)7ZIVtjJ%({9`zhMn{yO?R?@a_K`ZEvd`DPI930$e+)@ zZ&shSgb7j!OdT)B|H!Gppk82TkUU&vX=-~wF+`C$w6P+2`$26MDr{0uwebkv30PId_k_fc9tB}DMTornhr{Oq^fGdhR>ThgAH*+Hzt}p@uvwu z#r;OVl#zXt&_6!n83k9yMu-s9v8y{_0MNVyPl|uxE8l?&&%aL5gyckG4pa~hV>4>u=ar|AKa`IbENuIV%yLPS>sayYCR=f2d88=9; z8$m>JU$Hxt+C&g;piQ+UADb4K)S-@+hz8EhD;%Hx@lhB%a?k;eLv9Z4A;x-Fe;-A! z!Z9Xia;L?@fCOt!ijSYD)mmF#B4_e-^to6I8c94!JeWPvcoNu9XKQd^2&=Rnp^nJR z4>_Q-@4k~TaqI~6jSN$81Pq2iW|yn0J_rStC1(Kz|1Uo{-rR~i7RRjRO)+CMwh}af zNze8%vW^RNrVj#dOt>!lhK8LsXo@8Hj-6AE?cQgD8Gi)o1!@P;;e2%k=C59-XS!X# zc6N5djq~T>)vx_ETz&m@Im?KLUMO@1w3Bfcrd-d3l%5Kp3WqX^$yJ~`zWu5%a^Dtz zF_1Nr=9z;I(R!G8x_MVua60dXzVR^!Y!5mBa>&i01$gN%|B3*}sspbwi&HEuZRa^s z7%i~MwH|yqU1O>6(I&l>cOYLWOs*}7l}hLi0BC^-)BzzSJgC&QA-xq4(4^7W%ClQ} zXD7X-WSuDDGgq%({gbV}u;o#hnB4O_Zq)t}?4%!R${B(tAh6y1-md4~&Qu{T5C~wy zc?fd9axrE0nUHJVC2oWnLsr8~`RBuipspwNHM|)Z$;R3mFvWR?(s5HnCg#3ReE=T& z7k?Xe4-JrJ!k?7BOrbT=_M1*IW)qBcZw7(ccmNViu<#p2xk6!O=@^_rIPu|!Vc0SL zD6K^hf_YF>ntpH3ee>K^IRC;M4=iW=!{tiFp+}`!}F*; zzzA7m`=?>oKp%ApoyxrGCA<_#tGi2_VsYGWUbq71o_z(*J0OCG3o@rIW=DFrv~m2R zgk3S-9U^pp_<9F1F-l5YL}n(o%{#V}1Q^>+5pR0Pxt&b5Iy(d7;sN67!V+mk zmYjA3K?w#MAZFJAD`b5AA#7Hrg`Vj-5UE}NO&q-Dd*pitjO%z718Rdz(gvtR61dYh} z(>So7#cFUQ4~O`**4V_V)`b+8P<}>Kx&Jn`R)NKn^AXD&ud2CKd`*M9nS#_K*0!NNN*R33EYU3c8nl)z>NYVR_1{saQ z0SzoPzfdC*s5k4%BpU!peey*drj(H2x02pzz_0^6-tn}p2w0f5JQ_QZuzoyJoyMVV zVQmGl*v*L9HtMqV`bUDi)pwI^%A_|E0AccSj7Zv|CWG@aLf}E=!HlSGUj!%qpC(31 z08!XTa@*YmFsa=YAMY9Hg?IhZWANzT`xHsn796v^bbFq{^HQkIwP0($9wnoi`C-W@ z@haksYADq2(f8l)v@4_G#B~osP>SD+Ai!WJ+b4Dr{^s zU=ZLKvQz;xIjh(Xyo9x}E!sf?7{a;sL*MW)nf0N+M4!`c z^bHR>KsyM#-5NpwPo`AHh)EOyiFFU$@%tKT-bky+2Y;@Uxzjp=e2hL9d^&t6=F*#0 zt#2q3$kGFljZ!p+1V$i$cRa?Ys{^J_9E0hT$6)-(Av&?VC_3p-LNc=oek4>*IH}wV z6#Usbr0w9)yg{qN!T}klKu|=Y@0WaBpJ9Z&Z$xGu8JO`-2b#wY9w0|^48lMHjt#GI z6=qp!12EJ!I$Gm3^e02}B76@IWn6Q>4NoGsE-0 zP=};4K;ZAXeW~U)JQ4&EEKK1tq82s?9zbbxLx|lX_`9Ifc_&7?nw*63W5*nw-2=BS zUW6zA{qMnV8(O zNRz6xXtQ)j`~MyB8QZta*hz0W*_o@CitW6xBtn2-T8WON)OR?$}%!5SSMs+aI^MdIZGJbKSi35 zUdO1Rba!oWm7G`+AYimA^bJ|MHBTp}V>B)s&Mcsw@m!T++M}eN0f1-;iq!5JnK0bA zi*RZ=gfPDB{5`aHg3PiIkobek*2$?G0SPiqXy()r%sjaNR~A>`&BvdCbI-j-j^Ox? z_Qj!LDTNc0abhVb)Xfv(Pn5&G+Hs?4MtY4kBn)mror!`8K?j?7QF}>Z>NPz0iB9eq zgn*=~)&%Ee|A*&Dtj;;D$=tj@&<@Rl7M2K{_()4Fae9_$ORR1a#xw;h6{bRgbK!_= z&77^_XBv3OhWj?j%$w|WD)T*N>VkP2I`Z~;Ac6C8_t20B8;*fT-=gH3fEU4+rN14z_q5^${kh-kj~mh%A7FVP)F+GRigxOiFPDZCu&`wGJGc6Z)_}nT4P^ z7BMg3kV1}(<^4e{McMJec3Q#aoNdpIzZUAY@4jPj=#hJ&Yxgc##l!YU%3Bh1fl_6( ziC>;ufUB>ag_%;EPQ9?~&M|}uk1R!1A{$MZ9{P?k1xN!^4J@YDDdGjn>e)UXzWgeXp(fs|H3M20N-lO(4r`!Bvviqxco4{0ly@$LxbEFpYnXSW9_KCEdGOiHY1 zwQ$^V4xseh&xcj-CxjC96*e2%@F8Kzq^A^Snwf7oyTPW8(UDPz>qVx&k|@V^hU;N0 z$$39Wi^&Adjd^FVk@x2#F!R<$;aO3e;X#=H?B4BxF#ByV!^h6j-W&<&(`zO0Z(U3i z%is%D2F)P(Nrhky?2p0BzV8Dc$~NZLiat6F@Hj8965)!&UPCaC!j3?*rP2NS9W%Ng zrkvITO~Ejc>7*MQT*vFEO$izpKNcIJ#q?%Q>`1O6+R?x(+N8!w(+vUWHjWj3^}bmE zU}D&8yoQm#(D5B3aQQ<9ZP5C(k}@Q`Hfr}MAcJ3j=%Byiz%hbBJa6abxeM^dcfJP~ zo_j8UC?*t4pS`{^G!URkilo6ZXcB24H#syN5p+;0f(F(^O;4D`k_XS-2uOA8wo?)k~k* z<~v(YJCU&7`Sf=9Xf&Euso$GPA-1YLse6x;j+9j)YUU24APw&d3}Ip_b;-&#o0M;= zS|Ocxs_B4iFHIc=^(~f0YcrS(@+5VeJazy+_8Y$n2Oc<1QI#+}FPZEhBZCrNWNeVB z+z4SmLnIz%X82r?xJh}9$X*9R4!-MdIw2kN;}E}C_%5djL0fuE*H2#{rhaWowsA#DgIWTY_)5pUikC3o*4liCrO z0;~%HsktlH;g!Gn0o55nlsNx_%`mA+`ki5h)L)I09`neFThJjnxl>X{S1oBZGOrSi z2?H@Os-Hq6t^i(42#boEqmBSp=$iZM>hhsKi7^WH{hn9#%qvOxgNDS1YYq~8nJ0mP zFH2b*@||&c2rS?kvgperZ4;BWLd?$MSuyOq-w_U|?2vOAcushr97ZY3S7QD*%BX$d z!|Lc>aJFu-0iF?H;oF~rDb6>VBl>%+)$p3aaEK>qHa21%g7!i8R{{uJ8&C^_+Jl4d zdVs?A_By5%!4`o;)N~*?M9n1~6u1$i*ID29Hp|y)uy2*02a_62KR`3xQIO&_Zbdrh z_z$De4G%kw<6iRjD4cfEuD7J!(oZyPJ#gWZ(L1{Rft^SzQ1d~ik`6H93G8Q{dKzB; z=C_=dZXpE7005}cbx$Ygv{SX7KxkBM%qM$KSTDLwEa32K%!Bj@CJF^KG~fUcAjI_; zX%%&6I0Hol1zkbwL4DwXGWvUrpE%*hehOxZmB(Nw{huz?0g7Cbpr6SXvoPc}&*pizlTd60U{&&i z8VQo-EcI7)J=J8`Mn+UMQp%U#c^_nTYOZtAB6>D=08Z$y-hEx#=fKCu{>#4$lgIay zF9@ELj?tBnsiCt0);7fa#-D`jnK(HgBuH+V@nW-u>AMfZk@wwC3<&}Z)}~;=ox3_6 zlQKZe#@y8#aOuTUFh6rk`hkH6Ge#n$vsM6sW)=!&Hf`AC3lpUOfmtm)_`p1HlSdFV zc6c8Qj1K$L$y+|utv|iJ6lr@5iQ5^SXJ0(By)!)tpunj_<)s=#>_Mc!^9zl$%KvT&b~E4 z6B9sOa-K;?hn!7NaF}Ej{YRe^ElrTQThkAkiK(nx1;k{Yp}d=!=rV$bRv9J!a&Cps znBNPT1b?Pj2L`v*M!iIuttRO=W}(yN|4YLF57 zoPm7=GC!pKe+%!_J=X+CcG5eNw(Wq9XRJIqmM> zi6mh&;?tDZW<-RZfreyMo%07xoAi&0~grEQa{}<5R*8>YPw_))*o=LDsCO71i&e3^-tvG@Y)`mbZucG+B>0_$Xf?Wab(7=#=z(c+Zbb%e6~o(7DBG6wpEv38J{8Cq;&<*?4B>n2&2w<+ z)l+c(h1bZzJ4QiMn=*hn*YgEaXk21|rP9pkfK}1dOp!oY0ha{ES|HjWW{h-*U>iXI zcUfeXSYpcz7DNWKfCS_eMHRd-qlSHCc{tb~g~vjkSLKQ($4XQ+ky=9l&^C^Rh;g`Y$w0uCwCgu$?oEIs*R;ss)i3R&-|){?`}nlN9YCV_wlUTG;H!2T9; zuxBa$9+a(nu4kwpCXXI*b8;Vyxxc=#Vd@t&t3qu6MmgJ9TlMB{!Ia78(@IRgAmmMn z14v{7Pyws4+W!vq0a&)H2rD?p@a2kk*uRc(`7pR zfukLr{&eq7AEp=&6y$2$zIX{<{L0s0=G1AYvDyIXas@y{Gs?bL8ra(y5h@CU;#kKy zpY8+PMpHL`)qSi+A?A;9UB;+(W?63+qhw55BXAI6U!qcc8`W}ScH`|#A~ zJ_k3?oT0g-rn%Ig#>N=Pu!BkpnB;eA_Iv{k`+sOZSOr+Xs+{Y0Jw06fo(30Eb_0v3 zpRP;qb z`q`%Y+W{4I@7C38v%1vX!)tX17ge5*v{rs=x>-xAvf@%Q8y|{{W-L3aWRgSFl++X= zPgIO+&{prLlvG*qc!u}xE zN(fUnvBBTF2l`;&{l{SHUFtm!f|LGFaE%JP$K(ULfBC-6Pg! zQaT$nA)pv|6Z^*mFyf)l*E|@xU5O$9YQXR3KXkLZjs|=E3X1ExL zboY25LVhUj9%_oP&Im#-y!Zx1nZi@d=`{Ap*?NY_H%I_z`|UNI548W6>3dOY7iXGC zdrj&mq`6H2D_lYUkN_UA(F{;)ONgl}Qo!TUiUkm`lQDE@V<5R?B0H5$)~s8sFqsVK zKrNFTsC(wKi2akWpP`=usPft-FXg9s>^aL=zo2m=e!VOevl3R7fSzDtR4f}afob%|0}#)x$g>Zt*n zuctZzocmHVZ4eKAGm(krn|@e3VgLvPo?Q-jOgiA^H#_Y7a{2i?tQ%lz?OGL@+nw$S`n@y=auy!cT&ReLcyjJK6;JOJ_Lm~ z)hdiX?9T+>0d!OzoEn4CeS63}3mG*8OQ;Q@vorXld(6J0Q%t(LLi8+urif=)v0WJ9 z>*5Qq!?jcB<8qoJ5he2ptjwpnxuH|K$s690g|*V{7A8WZ!OUQI1{fQ6pGLm!qgdg&A?qP@@7e|d3<#!=6iS!PrWlCWGM?Q*Z7L(!4U^3eztY|WhM7S~ z?5r>k3IqD!P6Y3mJFbC&F(28gZ*0^7rVfgBN0GPau+bLvsTQ=b4-bL)&Q3XK6AQvN z<5?-F)wy};61?{HZ^G5r-z4xAiD*WAP0qDyzYhx2!BN21WWh4caWG9le?^kY|F9}Mr?597y<6CFAK)Kl=>AO8tl zed#3{|CEYnNp(TZZXJL^XtzvXp8xS*fYi)M`bK@v_oq|?5`XKuRkkAyJkrcIY0K8r z+qwV0)n|6n+n?MV`}*~(mp=~MOr6_$dcErm>{^4J^rJ~l3u`M2E~;(m*OnLZ_VTt{ zs$)e(sy3WymbE%ORK{co3v7- z*fzdqv&T?^|H5B>3kIe};ek(o2>K^SywueOGnv5X6!^Ws1~?`@XwEF<9T*$M0ASV# zUM@cW25Ai@j_-#aC-GeljFJh!Wz8}B^NwNKJv;#8hxZa7Is4QrbfBI|7;lg=e84FK z0^WFhOTV3xX+pujOE1+fT|Z&j9av|_2v|QpsLi=`;VMOZLX#{sed%%98??<{zC9a! zLwv_=wASepO-$BS@H~;=JlpLZ*HOYbvUkccn3Hhy_5y*CnKS3%rLR6t=WY;_ZMF0< z-Q<&z72cM)h|sU0o2^lj;L>I<#<@VlZZ?D|i}ML3_5S&E#+Y=0m@vmm6Ty#Zfi_J6 z&D8kpsieQhR+J4=>zz-`!+hH8ec|y9Rs|D>~VJX`YkfkOq4V&7@9D_iQnF%$@2^~n&f#-Rk z$yMiW@0WsSj!>B4^$kc50L1*F^q>7bJZSf4e0booL1%khdj17?h^LFdNW+7U&su{cOl--nn z6JqehIc^e)4^y)~GFWN5;-*pC-Xvoy&XBpeRYf}zDis-AqaP1#%IoM8GTtBfM?Vh_ z{_F>d*+RdJ1qTGy7M8>5&Ff??p${gc@R}R(5VKY=Ljff*#{&?LJbFJ&9NkYEl+_Sv zt7MQ<`qP~I#)ceY)=MFLFTHfiF(cRLIc9u8wTGFzIG$?rFd$!4(|0#l55A(+yb2{PG^CXF)S*MC`&e3%8C9Y$fOnB9dsZZYhbXR zH_u;&Q$KhfuAjLC^Ve^ZsTbMm#~l{5)RNyz=0a$@so$X+=c#@)4!ud{LlN3!k_SVX z*oUQxEF|^epXxfZeZiqWUI&O$RRz>};TSy~O`BbV=d*>>TuknQoQ7@K@5DDnM-mg} zEYz8qGt1A}l&RGL1;iW>KmZ1&QXS-n8ZtaMZ{p}-m^ywKhNmZ?+ey4JAJhWk0g>MH z$b$|vUD^mf6A~HAvX&$GcaV#R4fXV&Wy!!t(*qFy6YhJ>$m^*R{S(4CazFt9iK2#) znMMxmhr!7S?+}kp^lKqJF@~lNeNcvs3(+2UA0fa)^*W>35vFxI8GaGwuFW{$@m(i$ zc*gt4Km-<6G0kx)1VE{QDCBw$NPlJfkdK@MA%r&sddX+>u;z#9M%YJqj_~ge?@Ug> z%Bb@__)HH3T_JQdoio(gMf9P&zaNJ8?uD^qN1H`F>nU ziX>F92gG|;ZAMXJQPVg4I`_5ObMkebzGI+iNAvlC(2{l<7M+brE5D`m!`T0up4$N< zKh$IkXnp4D)vJF3+f3UYp^3>ozvD*sAHh!gp{BQEQPw^4PA=lS96mg&-E&*XGj7~a z1qenz+dwmo{-Pz3AX*8Vy;LnHZUngm$jTdWbFo$Qqw?lwpk62yUg;U^gOB}-Ux9l* z@u-vjufg2R4OqG{=gqOuG$e%8rN~$)m2KHzn{I(M3ILgzk-LV65#IHYchiA|_}ucG zXTbc4$li1dK?s)LH$LnboDH~s_A*>}{&lj0*OEBToPaQ4TzQsg+Q2N6^ppKXip*Bq zgs4uP;Sj@)Lc+P?sn;X>reJ7l+}o(HtP)^YnqTmKFrf}6?68zA+j)2Tb2d4LDuJt+)92yrGcVJ%QsoEIcWSJy8aXxTq)%jSD`vk&bZS6v{#8I> z0uV{hHHnjinFqegS{)5&@=}eyTDPDy!=uYHO3G|Z!f#RD{FsSr%OuinD~u&EoRzaI zRQV8@78+iKbA*#pj3Iq1Z3HGrd)zn=qIuQ9{V=kBFPSOfVTaf^8+`T*MweS%^~}5S z>%cMO!yd(<0J1<$zdQgrZ{`Tmw*vw_1BfS?TPsYT?k6&Jgh($~y3cJApPmi{#KOtl zcm~I)Ye&BW9=j1dxxCP%5QPzb?U$7`=)=t7x{CfD6zR(4#eftwAB#6{!Kv>*1?Qi6 z7UpNJlQ1H7xUX9x#Rq^~N^bahVRBQT5vP}tcAH=>g*{@zL4zD2uF#+Z>n-JY6HfeI zB(M_wO(BI(edoLI$``%>Gq1l6Nz#nE z^oBB@&u_TN{y)G@`k|(rX!Eu0EXJ*9MA|)9$Cz)WO#QC@ z+-^M^pKp6lGm7D2!UtwHvPp^nrFNxceU@M2>j}7FiBo-1@jED9Rx$(9Lj3%H`%hut zy~jved;7|DSeacUQ!NV5i_YmA>vGC69k#}yP|J9JLOeO$7qok*4-UWQewaMApR^`u zmP8KUAv`H2WLkDPO-$eL0D%KMi5yQ)N5}XGJYw`0-t2t07-43aY4=P<=%3&~YC}0D zNNN2U5^N^o!3Z);2tX!|9-v4+*q()(vkr*NOM4TOJmQy)NKiT24Tjgm&t3h!B>feT zn#M>k6jEOtVH>Yl&=#Nh)le)tfD&_zv0hnqtPDAsU}qiGdt3^sx@c`F`B z$kDLKhoq$rI<(QLoc%kH>GzB%__4E6Iq?hO@l0uL>@o%!F_d)?fEld{x`+M=0~6yg zyk{DA4-V2h7=ep|QEaS3e#oTna1ZLm(Y(|9SW%eSu5RyNK^nzbm^pQpv>r2Wyh(i{ zgJ#P(O{CtDaZcw8Bol~*D-5>cboPLX*N2W0r_bnM+K~Vi<24`bKjtU8iD9k9x2#hl z>`{1XJ`l6Zn_Jmh_W|j< zl*6C8>^OrYuj3@oT&Bt{5n9TcuIqN#z_-$_`Ua$f5iOtTXa?kh66>% zSbq|BEBtvM1Cr(j@o_wl02JqJyg8NwArr?B_%k>#>J({0N&zfb_fDrl=yQx6`c^E> z&co%GPs8=o7lX-Gsk+!7f|zu;QA`;3T@lSBNK)2ed@mV3OT?RF6ya#!S{7lR9(i z97WVxym=dLU%pQL-U=tM>jT!PpG)235aC6Qb0Q5C{+}5DofK%bfiVY=`6G-g&k^o? z?s8%-ZIoadlVFOhsBDaQJ*Y8Lz@q{v!VJ+EN4^#5xJS%W$SVmwQ1#_Lq@F2ljI?Ie znzP=l4E;I!+#hN?b?om}IIn}W9Ta+cEkuPXWu3&(xh?NlZf!g?5WESN z34O|A%33$>LaPpV6#p~^lA%pT_fQ}_3=(|T8d?Y3&uDgt2MHpO!h-~H&7g*oBH{6& zq)=7}hX-zjtQ|5vBJkZEPD(Fmjo-d>8O}ZZES&n@_sPGC0EYn5h&t4C03L*>$zqL& z4O2u|S2Z0oz{-6Qf+vXfqVV;`jEWG|j_IZmK;`FS(GlqfpD)CHNkD@&A9SFi_jBp) z?S1@FZ+`pR@WP+|Dcm}DP7O;o@AX~JS--+fUfhV$)$sChCN6$g^xW+rl_3YAC(+_R`Z&S`r`r)NJbwJ0o?U5TE zK0MsDYwZ^7q#t^EE0TjIEr(v*`sC7vOe&nq*0d^`o#<#CECga=k)U z^%ZSOrGN!DzffxOTntuIC)uKLwm`>&>OK%}C zA0)x;?(`Dju@RU$afqTAp{+IoCk$B}Pk9aw!kDE3jztJ*N*E{r4rI4H#!}BXJcZz{$3=^uBGW3B< zU=0>C+`{CUIG+rI3~Lp?8#inp0Kg_1Cs6A|8fl{Mg&N5K7>$&zx-&i}!2u+7 zQ6%pG#4)#!(kW>}mQhcCKTI7z;=t%07}+;XAO!t9FjK!4&_`;;M|nfD!gX(2wXv>4 z=i208Lh_&DvpdiXG4zoKbDANtQ5zCQfq$2lne(`;+5g4_TB6%*0~20^L-K53x`*~o zIUqF&{Ual^?&u7l^;Oc`@Hr-0+rnTLqssZi3VnpD4hk{bNj?u9!Sry|t(DVHJq2%m z_j^wIe;&k)Qa}WVFu~vR^B4pa2Y4Y3go-~8w=Z;$g#G0`he3#FJs@a6lsOd(BY6FD zbhHTC!U3oJiDp*l=i=H*S`gP>)NmlZ=o=k{;r;tzaC(}2Uv8W_4Nv^;{|1+ye~!%X zbj=wfq)d6F$+9o#y$ABdJqVBs4ifsWgjThQX-ZPDN-;??>eXcJ$!{a$U6|_rpT1%% zb^CGI|98@lGTGmnxqA6G;SSOrjpU9a`j23#*%pqb*GDdFw7-fCyd3A>h}8B<%gvBP^D2>H9P_x|G~ z#hkrzgU$%?j^zH3G-kHSV8h-D<|UZ7oSLqfCS;7z%(Yz^ zVsF5e*G`eM{xbb7$jRO;3H3@JtpTwKGp{C?a1DI;Be8p$naCOQ@Qloq0Hnn^-k3~I z3ZZUszDYDMW+v76Re*#F6-?4_8yV+_uuP;63e>Ra9cU-ja2-EIAYvjDi;;>jL~0Kn z4tM0B({daoO&ChF$>9~X8Ez~vdK39{1b+_H`n58^!6sH%nAd!GKu%ga8-1C`*_;_Q zGBGS7_`r7^sA1=6I&-770cb{726IFPA^Ket4zWzkkc#N%f%6*Ao*3P?7y8G?e7@@~ zADwE$`*=`T-Gt7EJg~1qSZXmpB27RSfp#oxWnmt!zV-&3{@xEr^HEJvL#jb;oCbjv zFXIr0nWWk66fE+50#MH6kO0i6!3f$6e&79dNYDyCRMXP}T$9vi9bRifj^z@>qLY9J zYCmw!^iNE}1UZ@ShQ;eQ;F&-CLwM~gU!{W|788xjKpWCMFSH63w5h6 zSy!O;wm_o_Qw>Iw>_yqW!|Pb`1`yg~j7dQWS1kaa#Ox8amVVUx|5mQ=q<1Xcu>(4$ zI~u7SNAw@>lrzHHS*Tlix83_&z2EpAY=iJ+0H86cO~9CR(})aF++j6=Pi(0JH5Vqy zs!b-XSn>=>*)wx1{tqJO0|Q29Z{Uf`lcV&B zWnXyV4Vb-jP0mKp+olEqN!)+l4NWTbl)+La8UjedDbW7lG%w{u2X&N$qwPPo7qt`! zM7ZAKA5uoAQ9U;V=!E>)ro0fx)lLEQ#aj(lN7hDk9#8E+)a4_gfr+S z)2cAv%W%kGDZWrG4?0S1Vr2t3EG3*SFaW{l0~lsd!t)<%hOykWny>D2DGSLh^9;D6OMZQ23TKB*KCoCC*(gDdqW7ZOr1v+-wm7T6NbOD= z1rd=Z)jaiMw*T*djvraNqZ80M-O;G+IHLdfq$bmI$(o-CSC$tiZmAwHtZc9AmFmTjHjocgDbC`_U2w#@nAz=wpjWLkb665 z@IlQFjHt0u3qp^f6g8M+c_})di0%(j!#a!|*yFSzlXM*qFI>EF%V|TF!eNcxye6JX zZ3Q6e^8XL^{`1L_EV~Z`&wUY*T32SJD%rY$Mt7s3now*A${h{??AVNr+0K%H?R?lz z1o?T*7UVyG-u=9`07x4fL5=~OA%+AngX)IthUn@pv?!e=Q|pY>5$}$ld+(8c-JidR z$jpdLKUI2S?|04>1dL<@Zy_agV{%&7u`L}DoR({$rgdq-+|Z0=jo=ZjNVl%s zfLje2!5gK|z4bm^`QU6Kinyc;>j=TKvCeSwRV}eJgrJBMu?GSjZ4e~jh)-QA<=bx4 z0MZen>OR4unp6+&5=F9Dao~zoFj)^4loIGI$D`5(k~E@zd1b@-oE* zCMcM{X_P%ZQ?&$(EFp5yqXOLk7L12t%|rHqR=fr%A80Hd`<_0WmJ?z)=`z5(d08V& zS4}@v9fvR1OBT8i%1KX|n4>iW1&`J}{hjZ@YcKr~TzvPvvaw#ZBSk={%JncBI1f=Z z7E7uC1hh)iaReiX#Un2T41B~ekx{Zj()&bm)1hv`wAPV68sJ`xcr1M|mW&<_+j5Ya<}zM)XZ3LrBL)g;#TnGIRe( zM;s4g@M%rYLz31SxSwZqyU=$DR5$t3kn9-6#l^70%%fO@{sNk$MhBCka z5@f>JckC(n`G4`>z%!ryc(PX9xOg>NLT=@wMOSexJc6?O8K5EHjjM7;$W(2zFoc?0fTT~@$PNZHh# zFr({BFUiqszfn?SimjJD%C1TglUxKS=&Nra& z!?dX%i4t0FZlSe=_S1L{qS|Ye=2!?u1aILGpFRK(jVA;{-c7q}d*b$(2p|Ztp*o}# z**!lJ244P#2N~?#y9ajc+mkNQ+kgB>W5qh2PA5Vlf^CXOGcKh{ha%tx^0KTdy-OCp zRjxzX_p_P_Z<7wZ&jV#z2nywOT8IhIp$t$gA!)Na^#j3#aeSv1 ze9s%q$--Io1Z4|kNW>2S%8|i(Lp?3QTuRD-MYMq8CiAAxZQHRcl_@T_I?(ig{C)NG zhw%Czz65VHRu3d00o1&p#m!4CA`)Hs@Z(ZOrgnl+Fd2(3g%uPLsF9)2zbq=fC+oUT zE4cZtGYnIuyw7QfY{vP2l!qtl*?^9+rkWo&qCYz6vv{nPY>8}w3W9-cJGaB`Mq`cSW%Vcpjj;f9WNMDTY<_Kk($coPe*`TfxHJT{+z70p(q=I|2(a%pq-41v zA9yJumNgP5Jl*TUyYIv8hRm&|Jv^m7Om%Z35R}V<_I?Pt0BARQp}%Ftec3#1+vY?c zeG9;0vBgNYdmVbIXT1Cof#c4GXzV}USTznEg1twcg58G>q)p>^_yLv^mR}|jt7%g| z5{GoMTd{CV%Q3mJEFa|k9Awd&Mz+pDAri?=%2?j89feIW*#M=XrArIBeF7LI225!~ z`YP}qqM!(7l=3M^w|q=g9Y7)*c#p?{V@K1ntJL>aR(RPYEgiD}G;rb4CiC3p@(te; z1mTMdWs~5$E1^@Em`P07!Ym_zD+_({a zYe{csRRhmP$Js@ex`Y6Lp3J(!BKOs}&9@#m?p0o1;nv@SS{JKa0<;zpQ6_-Zi*Dcr zqw%+Cvlfy1k{SkoX7URR+R+m75C32PEgXLFM6y)ez~xv-7?$%5=V{r>N?wvB+W*MM zkkT>}n3nVDC)s3=fa3V4Kax(}!lP<&sTbahK_rC2LZRhQd!IhoXt;MZ>9_+QeCJKL z^v;KkHugUF8ITV?;5-2n3qMz8z&l}WEKS;>SQzNe5We$Z2}uB6G5|^pmlM-DWu~svsx0L%tEhzy3gs8!ts1th9hS;=MCGQ={$ARul zCvIheGf{wEPFkWp4!A_?Zlldk7LrR>(xC&FKRg3hKRlP0Z%s3qN_!txrhJ!0S<6PP z479eoP>cdZfr*W4(A=#3GirDE67$w%I+Lv?zX-7LP=Ess;Xty1o2s|(+?6iA#Js1Q zw+o2M%cq1OC*pB`nl^M}Tf`IHh$OP*jV=W&Z8)0GRX+JlFSRpE4RhyWtA-F0_1!39 zrc_$MtNIB5@@ZEQ?1hU`KKQp#Ks4_0IM7&nuzw(7o~~r84(5~gponH$_LQMTAfK!| zVT;E?0pi%_^7w(5YTky6r{0BEU-~MXeeLzsK2mFT;}S%$Kv-qj5Z3&ECfueKs7>b~ zaImt!Yr-UKQZ|l5xjYb*)q~0?FU1Q$x4?&TSz@v>mfOoyUn)!W7Pnc2|At&JCNK4u)w+H)36RTE<{IYl)pLVUQ1#s zVO3@%vcT|f>)nup{@Hmxd6e`2C=W#%qwn-*FP=U76Gj}Ui+`Rl2D?|F%ZMWx-BR1bVIdqah>Jq#oR%jC6-@L_rvrwNKs71(U9|p5 zV~x)bJaYto_`mx5@X4R~kpx_qFJ4U-^`SO>rH~NRD$}Oiw3KCq?mrL`LdW*~!i4`6U-h}r@z+kkv$NPx1mBfC#~HPSwfB{=lVv2=IH_6GRleIYk4TuBxNIQYY~JB1QFwO>5h?OosLre*I!-nRkDO|jxl^Fa$x_9&(7(BTKk!?ajLqN!VHkr534 z@Xu7A%WZX{dt&-deLxUrNMs`|Gdppt(a!J9caz-9q+_*gFxSKr1lselvXuu>F@b13!JEwA`m?XY+kg32aQn(t%C*XmC^*cJ6P=S3FK`;z0txbr@`jSqLFGY5 z^@ebVf^1vkCzkBP@)ka{AvIuLGW-j?=(**tr zjPl5(X1+APL5({xwzLawr_F8&rP>!tV(n~EQ zyr{-!o*rzNI=@jO@RNxi+#}_gHJs#~CNK?Zbl582ErJ7Z_4Gyf`oH-PX-UgRfBbW> z@99IVDb7+hkFO9wYMw7ZzQ`<@J~A+fA*UDNS_XO3Myq-{?I(HehrTbJOq9~mSVAIQ z`d8AIHv+GuV}Wr=%0xw!Q1>2x&ip=XXaTIj0k`FRlB53->YSxMzS;&f{{*0D^?GEFhW%Kwy=dRmc2>QJ)07_SV?ssi}i}y zV15Tue=MbU1p)YU^L$Wk7*seRDD8f*$Cc+Jl}lR$y)>o}@uuwdA3p{MjvY&v-=(`e zkTBj|$(!X10iy^Q;!g^RCTkwHjdBuOT4IQKhP*ch+bP!T<#*nL*Z=rW;q>=jYe>yK zOD2?(0vPI+u||Q{z39=d#UJ>&yr&9!&n$jQ$yP2$Ti$|ILq9dT$!^%JZ1JIkEf z7srr+X`{pG3@;cCP@d&wMq2A`G)d)w*HnR3C#kUPZ>W$WP~-zRPXM}0T3-Ro(5!;h zM2RQ-Ms^<913&iP{AcjVzx~7MbfKi}Z!95q(viCP$kMDmU(F|5K@>|!o<*}YV49CE zjS6`0Jg^r&_7gt{hn_v20MxB(%h?Ko%V)}_-l;14r3N(M(W%?_?N0IHzK{!Vy`R&N z){5sf-c=^XDLDd}4X1$xl&ttEYADWQ$`6I%Zs zGEp&F@DK_h&FkaQ5<%c?vQ(CJL2&IVhY6F3dItb**-*}x12(Pq~H1U3Ngo5CLpy!kwoQ|#mz-H?_lE)^2KnD(|TluHB`ckF=OO_}aR zLU-b1YU?*HT!6R#^v~d%|MuU(^>gQB1T|xC$y*t3bsmK?x2+!lrkJ2LLFo4&vqb2G zR?&j}5Nw)CJF`|6O-LxN_H#caN%kw24kwhB_?XTAqdY)~@EaG-pZ*nChpej>k34lZ7@LD2vRb{?U49}guRhz(vy$CcljpT79GC=^94xCCO;Xu?fBgu(HW)$ z0szXC4gy{n9JIm-DxTOTJZ-1#d9^sl00D{DCvwUwP8OIl!XNey8uSq)LcPYCheMhkwuS4 zYKTydu$7Da@^UG#WUg!!Uri1Q056|YZevp>8?lrvEeXW7#l(HO%KLRvn$n(^oCjHo zMHVc*j7o?MNC)2ef@E&b zkt4A8*iqQAcYk9sya{jq(I3H^U;QIE{mS1Y;x%jbu%o{c|B!)uuw!kso@AL+d&yR4 zkqcGkZcgxZ(wkPG8p&z!W4}&ssB~jaJA}^gjmxb#|Bv#ZrKy1FFJCx&_P1aivOWTG z^!Q6n5MP2(9;tM7#`Sj6F8>-V_POf{E4qRBVM^zC9NJ6L5^$!YUqL{<3CyUTl$9ii zDc!`{H;}8zgvk(jQ&FnO`6b20u_+Iz?f={_{49L_AOB248ur80vzOrZs-YZaUSe~w$(}QG^q#h_?1vF$O?9SPzuFZ0N2%aNSm zzKh*Y;S#Zv$x4HH!&9fOpT7wA?%d0#hOHJYzB)09NLt=&K;Uia>LPNxX*C^wC}{=N zelqq6qH!*uGx_BF(sGuNHOWDaB&PBROf)Fmyq_SHQ-_G0$*t!gz#0@Ony8B-DIZMo z1%$<^ENRScrhK{>5g22gh?d0Zy+=gS>GUSHfH1(Gf@rI0xt8rU6d$LzG$s9A_g(su z`ajiC1hKe*U3x^I94%|R4;_SqCyqB(wLNK>T((wZt6)?IHR$vO)kXsy*<1(|T9EGD zzTFV}+vyZL1md{A2Fv5x>9g>5WA*r;0pI8bq8}}|l3F7ax6UYpBKMD}$C zH{gSBeiQ!szyBZL%7-5|Wpm4<&jWc|7M2fGhvS+X7o?4*Zn2;=wdO}hO8i{WJ0rR& z#iUJnBqG@!HKF>f8r5Ss|Btd^(oBB$zi{Egg>S+-WL>rY)X|e)ZicIW2BU0IQ4`RE z2)#!$GRvG=^GojayP<=bpZ0sEr~>H0qW++L+6~j~UKA85uxT$pssl0;4%WgdH#Q+I zt)i(TPULY8YWqL-Q$Gkl^k4j4IMi4y?p$9^;Qw~>nNG;MOM3!VWn((6$6qPOmzE_X zBy^KBrU*~SI{5=1Z-D%vw8RAOx42K>o%Wvu0bB?qkc8l-Wpw-Dciw_a@10JkQh~B8 zkft~ZSvyoY(syGCNvC%$a5#BmI&Bme5JbRyQa1AfN%;NvYW=0LrwNtUWFm*_^l)%BJ_g>$rePM9?4^LfMm& zHw0&QLQsl}vTOzfECx$B(gtE8Qz1Z$?J}^p04`NoIi{KGln91#B>PpEsKm%c#bjl* z>^GWDOb@ghx&*SZ{|8-h^#Ah*A z)fMucyA6P;FYY&mfPf+?xz9{EG$Kb3WGNQk-BH@!MCA{39?P;Uy0x74c3}S_i^pPF zYK5m-;j%Tnm=TXE#?9t;u3dxo{`zHj{SUtaZ~y6^nvpPel!e;?`~1F} zfJpJxmPrwj2-UeNR6>zB_2d)V8KnLPDh^@HobHyt@}2VpGN**~!N5*=kn{gYTpqcs z>jFZOHE%*s5~p8jTEa*`Hkl0X)G`ctFyAFZ-F3O;Wi?KV+NEjne)aRY1|kFIEs)oE z!~mB<&SlO`KkWG$lrGn;=sVdykRo>ak1AO!LNEQrPZ z8E^ja%W%E1e*E08{@>EQ7z>NrfG$qUz$m~lf8+?>16#I+JL0f_d(DZ2RX z>}&79?S{y_@I&9<0Qd%k?L)A-3@aE`u^{j=7=X0r1TO_d!h?4~Jooue!Hxra;Dc|y zme#jt?3d00=8dZOkTIvKcDX+VmjUIy6bxMPpRzvyK~TCBE`Xfu6&I3UI-TjlsSna6 zfOvE)UJiGt0YbQh=H{i#aOcLYrW{t&lsyeobEkrU-H?{?2o#hJr=V`k<}!=|qE`#R zPF9?9hXMk&m2$F}CM?`OCaRrso6)T$FoI%jcKVob*_kCZL6&*Zd-Q-OF6H(ffLoj* zOHk^EmL?fAs6<;zK;h=dR-~L}+LM)PHLXjhP5ikXVj0u&A1teU(O-ld=tKcf(E>*# z257+xdhC!*zSNgB9;IbPvAm>XW${_EcpTW@SQQT^0)nJErJ&p|LwlOiexC(8R(7Jw zC|fzuvT^s$&2*yNo#o|xBsR9wWDVF3JNNHR!~+S<``>y6-uuS4ns)k5K3bQK1~%iY zs%tJ(u_i_U0o9?n$LkNdK2;k7X&EeF5JeGtu(_8xjk^2_4puD9N5#! zz><$#3}$%d78?P)Wdp#E*VM;=1BlROFMYF>9=mg$sCT99^O#;T*-C|(FE}Xq8hv~K zM5MRc{6EU0lcwFR%kn|8u9_S#B;35>J9P%uc^Qn}Xzn%fy;g)7T8oWJ>w}b7eWJ|g z!E1;BysC|W9zSZ0_`t+trl_))XT|{tWzuGTuoDt_(g|l0r5-gujy2YbAN<9ig=ZVk zj{pHTU*EiZEgj>EOO95{2}x-ASSkBC(tQjur&E?4<>fB1oEn8|ym8M7-kkpQ$DdCC z1J|tMt)Gh}!N35aHVWYv(V(tt&U+-mTjyKdZbq zL|Z{hdn#rSwv3cI&W{x^iFw}yS6wvh*S162P(pc-LQo$TnCa&XxG64GMg|n9aO9Mt ziHnN}in_1{t2Mlm&soM=?hc3v!m1l1*(M0 z11}VuOxn-mv}pXvT9nHHH%Q|JmuT_8BZ(1A=jBJSTy&`OAY%&tGhNL`R%07N>&D$% zH{t%xynHH__P3ZWuiOFKn|^_ZH{j99m)}3#kdJS{>F<26?AKB^Q1YEM()~jSZsd@% zHxOnc& zmtmcbYBYm#YhbW8)FMXF??oxt9shv0Mn_-EkLf9G#CAZICE%6IGX z^?X9st-EQXYdW^IfSuLVY>k-GC25I+Ox4=@5@+*!amO||))0_q8iIrOZJ>simU+=l z);jM9W^joK9wCb-Qr)?F1I{)i7!l7QaF+Kf)Kc6HyUso@Epp;feS$Q zU*u(3JK$hLLiQa!+yKIzaQEgNxN-4P^LHg};?MV2tSEq~_8JrrVJu+Lrrg|gP3@BSX-o{kcJ2#;4`RYU_mw> z>-r&0x$d`e3$}U|f&uRuJW_F_rGQ}~RNOTOF0<&y1f?v?Me zwZz3XyVq~PsXza7c&dffqpR~sV}}xLIT{!^gAMTS{X#vRuGRiermK-FVRKh(rMc(bj-On zjvC47lX=|QcsIxVKguJObzeY8vhErkFC^T$(znjiyYrS4dOm~{P+ z*wa`mKK8eN2!8m#_`B&?T|7$n`uR)g?hf3)AxHIQ%`M&QVDD+5qfm3%5CBKu@zk>? z8Y{~u(g{=O3~%tp_3gONL+%ZUK)0CVJrlbcO9&DXjQ7l|Z#UMEck@xM5fsRZQWsIm zD`rFt;K&`9OrWD@3!2fuI)rqiG=b>}Efqlkg_~jb?1FO^&Cr}44w`>U z9}8eCf4B3c z8)e9`Ot@C=!3W=b1^)8C`|lfz#~Y2(;-;|<=<$a#Ve5)*zSRvMi?pKgvum%(E`|Bv#(BwjdodIB3D>#o(q zN00w%(*b@RM%mO-vjP}k-J#t;8PfUvAX5voZy?#ILB?1xG~pmnNo)0AaEbigjgS(rz%S zoM{a`lZ8}d3#tuI6iLo)Tkebqg&gKQ=R*LXl)1zg_`*iAuH-nb9m(lU&nJO5SCdsDErr4h?{@A=%L6mehC*~>zC;m^ufBh;?A>Vot~VA$ zJdvp^4+|Y3I(A$LnX#!H3^|72f*uufgpmJYY?`tyig{ z(CY67)N*}-Vzz1ie z!_CWA8zOSEoW^rMpOUq*%9r%f=~mNKA|fEitFBHte@G+_zjzW(e&*v1_&Aug#Es>E zE<)6|ThkJw#qCRt<>XKTEV%UKgTHwLu6}qngZM;p1Y_~NA@nbS0MKm<C8OhJ+{*0xa+nanGf`ccH!j5vW;&MZft|uarFPX!mjWLl^TCP@rD;?RJ z)5KrOJ7B^>R*P);DAtr|-Y1Z)78x8O5uJc0sQ`Hccix>oR&T{ zhoF|wc`KHjVkHEGmME%Yb?J1g32iK2N=wQXwl9@?Jhr9NyS6u$o&6_{C(^O&;DP4- z4!C>cI=u4l{}*`sPyP%py?rWQpvc8XZ8=&(q4L>M+C(q_UATZOGt{8HO~xf$>W>84 z19-P!D+6@cC5@WI7((MoQXx2%xlM>oJ@L#;d%NGGj!2u53tK1k!OK`m`IM$I*T#|_AP z8$xyP+2bj#xW0e+{1sTfbUANSPvmN)T%1?-(Uc;WexS(5RG(<1+CzD7YILdzN3{8r z#w9J>;{m{$OPaN`3RuWk^Z;)3i3k&#_Gu50^VaJQX-WeF5se7Cf%>`Q3=CWUlh+r|SKZk)f^ST}B@ zHi}lR)pEHaC?XlusbV=FlhjV=g1vn4W!_wl`<*Zz3~RXw`_x~3BQ3SUqj%9VSOPVb zse!8>Tha+uV6CY9E=)ji)6zdc((1}K)kUd0I>CzCe_EnQM+T?Aa&chVSiVrKI!kGf z2lfptPh7T!7LP;EKM&jY?MvZaZ^+iWU;hhuJ3DrvKly`BClK=5vO`wv}IL zcoYf9D>PyBY%Mt%WC*>d8SG}M<0)%^|8hUjqgpsM|oyS1df%ins_ zZ+r&rPh6NKKy7LPu|@?54;ocne&&e?158kR0IF$~eI7R7*1wKU15-T*BcOQp3*QHy z`G-FR&-}nA5(v3@=~_CP7D4sBn|ITm2LxfbNj4D>oN)1XTI(*$u;^y+{JZQ8X@J;? z@B1hm`_xAoP3Zn)Rl%iR2=rExbtUrs4z#Re`<~sf=c)Y(=v;p944nDin`yraEpdVZ ztTonDzzeNR!3`NxO~ZboKQ4 ze8&pj46m1DrTbNY@1&R#d6-59M(N*j`j;gak->;w#s%EJq@9Gak3uhp;5Ggx|I-4@ zJgN=)1GHsANHB;7m&&z(eQI8`iCdR9#YaQ}KwCyqivc3V`fiCFjjpS*|A0uMCL2T= z$=b1yNh1CTCC;?(wZmj|X5Epm6$DQ9<@Iy{%G6Up+ImdQ<_Hl*-!vq`?S zJYDcutSJP_(UONty3j(f(pXL|z4JbN@a^w5ZTVHWdG%TgD1vGWT>EaU($-b7fKIr* zE9=t40cKG35(=q{g^Wz>sc>?i$E56$Di)o^#j?SCDd!WdI?1ww$La2ZU55_BzQ)>t zr&{49f(RxrzWG*T<@qLj@Av;8ooWTG_EyHJV$rA(Dp1eK@=2UZ<`y?h+U^dZ#>p@P z0ts!9y%u&Xma#=!K41pWrn-?j)dWN>yDNQw$A%hN3eX}woD@z!RCBtO=l@Y2iNyPN zZymbY2yB3C3;`MUfow`?nOLDc0Q7xdZ@g;>Yu=?)dP3=Q=fkRPs^j;bObF^y;En%b zKanOO7lIxA?PMeF>~m0ByQt!n$qzs;yW%nj1wPb-3vIQjDv#_&w9?Q3hy(D^pZFa7 z(0}>&8!hIZbi4WT#mngy;=2u~PRpkf0m(N!r%U=)%jJc1Q5=HXvS$I`Yb1c1&7b@H zryI@ai3DbFWBT1&w_sW}bn~&ckO3uLPPV)8gJA#m)$4HjyKlnf_s;+j2%E~p&zgQJ zyBN!!5CBi$@}3V>tp%h9P~bY)(~t-dC$NbpW-X%DcL8?p+Y9@S9D@Bv4<|o(V%D|u zmtgtAC3TvZSdXaQ$l{Tb%%nu6y`T%dY>$^^6*3ai<#(&)S+?Scl_Zn7X}Jtg6R#M> zvPW$yX&+M`3AD;dai0L%D#(B~~K7?O3^= zHLz1CpHtOnf~2`5a8gL=!a~y)7Bl(4&E>eaBX3*}Y5&vN*WQ5l{`#A6@!j_lQKdSz zjWQ^r2B58FOgf^}mlO~bgOVaCY8=)lj^+AL_q~L`N9Pg|q2*c0N|ZjA@_v~G*~79x zCtBgp#ubKTw`qcUGE?xV0(B2 zo+sTDwvj;ZE6;h-k1ebp*%^@oc^;e_8?Jy54W?OZL?AKk=gPmUn#{&hy8BW)VQ zND=}ZZ>$w)4SD`Ye;{d!aWnYsMq_*D`t7VKPJ|(E$ej`qDa)`hmZ`fVgO+J!AU`R4 zLp}j}8{m$_13_9MH!JzL-rRojo(2RxyAJJ77qg*O`rK=$(#3&ze@Tu@*2>dO<&@WS z0#pL(!QLehg8MFIL4a038zW&RAIVCSmh>#9&xLJ^X;bl`XHLS7hPYvxajDt$^OqB_ z#p8&xMqS9-RFN&ZUnPHyTtA@@4GVb0>O(v;MoUHskTQ@0VB%r4lhG1a%0HJ>6iZPi zZGqz?E5o!bAtUh5r&-}Y0crdr6J_g&t!a* zjs12X&4esY=|rnc_GnZ2MD3}`$LZ!1twP!3fp?)Gi9?csN9W?5D7efDFAu~rzt^<& z3vavyulz6nE4=>FOVA$eJh^h9*^h6!WCoEFP@p~gl=6!z1>!*zI;G8p(2k~KUQ`T- z-D#n8QyRP&t4D=Iu|h&+PNJ)qM`$Je@tFTdd6W{reBs=ge-0ZY8`cWOeIQ#^wC29@ zb_2B|ttA9%+#C{idsrUsx8{D97D&xu)xrB)qLS9H zTl0|7+;nAG(pS0hKyVtJjtbQw;Xr`1@90x-{8Jx=1J4{wcZgtE_ix`5K*&ehhGc2L zleI8S==V}%1wkTm``QigOV6g|1S!%c>SYa)01i73Eeydx2ntv!1ckK4DLo5;m;BK2 zqqximwcbdSaMS(H1N)OE9+za{{t(>UpEj%0QO0`z3=y@Gm#NYg69Fl=bChz7OdhyK zqqI2PzjR}!yEtd_7UkJgrr}W5QP6)u8#e?kY&_pkS5I))*o{5Uo zgWivzZ`vkOlJ3(;$G=WQOJ9}-p|v9~fm%#?!VTninl^Li=FLQ4S4%q+?Y!y?Amd}& zgsnjOq*wxQAIY{II}#|zI550RjgvHjHlGNH5TvgZVuKg{0j>FNz!NU{ z*tvgS11z^Sp#CbH`R<#^%8-&@7jGTmspl&@pA$*^hnmx3*Z)@90?e!Q@ zBV8mSvOR60$NestUW@=Y-Cn%F;C|pD322OiF-{I`#mA>U*jzCCs{1 zeR7oseQUgcH||S8y;1#^j;c+7AEfQ%Q?=9`A_1Uvvp6wyedkE}xxi)1q$r4%UT=)X zcj!Km4z@l8KE)~#f^wNZOliniRTFu1*{y&magFgf9B!pBfAfPrf55fI%5(eLHH(lnfDUb|MlW!$xUY&XJFwkevAjx*x)gnY zb~NDmAn3ueKh3!sf-8fpAejuAo}z&DFw3FJN0$|YoNkr*f0Rul8+QK($;J_oaUaN* zlc6S2t*KaVTz%pPv{`;@11yEp?Y3{KtE9X7Oli_mgkUTN9G^mc(Q5!p;Ia78}0 zo30UH<4IX7X<1gez!1Unsy;2t?tP#oTibT;grlE$5e~ojOxp92mu20_mlvjGORLNj z5Nz(;yQfLRt`y&ex88?yZ@iN%GMVV8JjYVrt&FL%iPrMv+sTBE>`j_u*$a_?-$cHP zHo5#Q<>Py?toA;ABoPwSBIC{QH_l&xTUT!+B9bgV_i1U?DjzwVmzD(slJkX+nG_(= zOBV|o5S{muOq9ks79wr6#pOLFpYApY(gx7gLfYR^@?FYa7Z3M0B4m_;K*zjJ2yqpS zyDZNNlfVGY5|9a>NJgX%$_0@Gobw)!g}motv229KyE_`~Je^dA@!)AwsF}wjrO~>! zvRbTkQ3x@Ku2ZT*2II8vp#kHIWmy-7e`on-T3U7S)VuJ(x4zww%Zs_JmBONYQKStl zunZ0`YxiKS96bIgbWLRjR6SIdFj3{Ij?*psWYRJ$e7vy8`z~r^5ec9@03!B`%Nv4k?X;P8SNNK8LrJVM$x46L_Rc2Rb9>Kn#gr%Tabp%a9d^m zA7yjMM(_VX8IHte$ao*f){z=ervah`em7`9=+nlu0l?bB-AJh|#nOXu2JUkDPxO}~{m}Qr_x=1A;qXVF zOMoWb{(R+ny2Nnh&i!;OEfNDfS~T7FQP$U^&k=x}Y-}t_u_IacW z1eX%I!u%rn*xL|~L(e~#j?>+-e}78T=~rHX@BQBIr@Kq8e)s{1v zyC=eeYD3iY5B;^2Ka*xqzabx%pi^P(#3m5iPk2m)3K0M%GhjpN7H$hchzCg6LQDf# zrt0DcXmhgIy~LQ(?A>m)`G1s$Ca9|U7YzaVGHjr1Xl;-CK(>a^a*D1~puF3;NdeRw zR^K30``snAfw4A#&J%x48^q;Q02@zF!GduB9R_G+oSiTzUYIR16}CwVbd*sv-)7Y7 z47Z|Xl?gC9%^W`4)ew;vf9$jH{eSN#Vc)T*lExHoI>+Tjx34WHt$wnIpk{wHZ!FK3 z80HP@xsW2?0kT?7hr(wF_Kq~<=IM_<-vIW#2`D8C%l(yd3;VPHgGu9dG4Hi#fD>w@ zKltW%(=FvpRw6COD!GdS4jH%?aIb;4nfP6~6PRJ(j1Sf2cBCbxjlB!F#053;_#Kab zZHUv}!-vv|U`S3@n=(Q2wtV3-+_`x>od`yo`_mGs)hV}yysWJdUpkVPN{;F$mVG4< z6p=zAK+E^0pe=cZaI^dTnU(8|c{H(X}bSUl*YwrK&IWQikUld?pXtB|dGbbkk(oRv0P zHz0hW+`@kA+O>2q$k|t4htuDEHPshdvVfKtQilNm&FF1^1^@?E_0kvyq#cR^xrtuN zJJ-)d)rmS8Oj+fE`lS6b3%tjpY%Fj7w&OCZ0|(*A$3B{l(#7|;uUvu4@4O3N`>lTs zSKt4jQ8rx3`?wq??js)^xoV3d7Qz0sVHuKO35anoogdVo#YGu`OEb$;N4>@8|4|-^Z20~Ulno{z$A7bFLH`6s z*|gH973p8PH2-4LlXK$Iv zauPx{T{`X6IGIdDMQQ?jpH4ftEDL(?m8gOJ{(q8_WmOg=46v%xh z9R-9>WaBTbv(Fo)7g&40bKjl@@a<1WnWA;oE|_RgyPKFj9_jH!Hbkc~ zqLZ!4k{|@ac&7#uINaxfVPbh;TR=<4eLR^hot`!=%hW)KR!K`*mSm3Y%^S-xF5K&o z_jW9$y(HMya6iM94?j#xtj@o63a*_wm)dR#+>t*aAA*e)OpLi5Wbl`lmk42sYF3WT?d%DLXTRV0?bqEeV|2*tJb`*9u z77r}DYag73Q(yZUy#9wT!I|%T&yJn3%`$@TJFcn4=zurG>Mw1Ts1XnjQzav`9)?ao zRw9VC3dAz12mtl*TAsVY=X9&27_vhiYGh3}8yr)DpOY*>GPxNrpKrzaf0RciS1z18 zeF!#KHkN=KIr&dv5`P0m+4M4N@EK}JSPLPbu)7GtMhsF3m=q1q(7X(K4odUZ@!lpx zdjiwr1aK(pf{zD!gv$yH*y%m-%9nXHT(FaOZO*Oa2SLxCrw_qXFFp&O`3FClj_^f` z2$F=`*Kfj|=Iag#QhTK z1g?Ac*%|_i4Tx-j<1Sn((jacUMDfgb-b^=HM+y^@PDcTQCS?U*s7wB6saEzAd6^Mq zKNdjA;3SYc(cp_UB)gf=eG7DI)Lx0(!NA&@e<4CFA=jmsOp4^$j@v?eCD?+Y_wHk zH>YgI`G1tnD@`r^&iQkve-SoVHnjE+9C+ct()N2-V3aK*Lk5A?GJy{10{ydy###ro zdBqQaYYGGW;H+lLXs5lX-vd~J;pRs-Pj|+t<0h+1VKJcdsQv1hS^R(^DjkG{h)4*n z`8RgV?;-)7{lcf=#UK4F9R1Ws;NY{z6L`cWR0tYzuS2>=B$1FzL{`ctF3pN`Dinra zmd?=RzW>Y4M2wB(%Uleic# z#B!HmDofz9)cHja7o#gH&HnW75JbBlgrM;8r;3=+&C(fo=grQj-A59&eP3hINvA9= zCbESmj-h1)_uHfs!qQ%mRlZ9iTS!VCDJxO1qCQnEGJ^t6XLg&d8ks?4&Fi$dBXFx5 zM9L-Kel8%Io~Lg*-#YJ#3{1+M6TGKmTRvq9|H>8LDQ{Sx_i;ba{rkK;4OSzNrZ_iU z9oIs!J}u@A>j{J}lw)~uIoCoe$9qkg-ne)PE;LpSJU;ir+wTZq1lvbb+0mx|V3)(t zz8l+TeNT&=KIvo9cd4wn%++m~`CUG(3S&)sY9@jAA*D+Lag%x3w}WJz@{FHp`Cmi0 zw(s4OtQ^Nb{i&ue9ZPA$a=q~S8}RBM{O|DX-~Eq?bl5SvP$SsJ9pf!4f zayQFTvDxPTQ8uMC6*T?j3un*%7HqI=cP`ozmkTlzeVvZbVJ5E!ZnnJ4_U41!(a z(>HHeeeP>%_JeVYWB};7EWa<4TC7kE3+!e6aP%SbgbvkkH1O@p3%e_!wwHAYNfAFh zLsrvl@Ho%o`3pYAi}{{<;Td@5^Pfzc%AfxD^GVZ>z!CR~APKp*d@E`C`N-YXvR`C% zYWF`xIYDdNu3d2OnWJ#%xf8JK@PRz}p>^QiJ>I~Lz;g*tMM_JuVxz@92NzGhpEf5a zAReQdB;CeT%13A02L?Xbx!lo^-X$Qo09pGTvgRA4-RLDie8FBh-jy~9FO=mm+xG5C z%Z~8Ew`5Uj{=;LBk;vgEUT~Q2v5<=&Ax75BQ(fA61qMsfW&$BUVB$0hifjf3Q4Ekl zfo0>5_9ILT@km@`(zZh6Wk5^irt)pc8i9Tj&PRfY^?Lt)v78CfI-Jf_@l@wSBWY^c3&<;B!Wkm2Bz|aT()$27nUtrJ`$-z;<0BB9RA3Qu=nYw8{%;^ z5x)C(?!l=){~EmemwyRweD#mhQN?6kHI@!)H@eRQIDTLOGN^K@Ep4@KDnnQ;KA#>P zSZsS@fX`$g=ptt_F3&yDQsb+h158}8fbiJLLs0#rGu`~vkr7uIsb9GLTl{v7bLpd; z|3}&M5*NbsBWKT^eFrvJHoO%)b@b$yo9^+?V3bidP==6}q1v2z2nT&fsrjo9&GN3` zHDJKcfYmK4=n2b^kQlq;RGL_?QRRGS=HScEs2XdNk-~dAC<+fGpT4XTpl$%r!Do-b zC%^PXIPsZ}!M>x1lZ68PA}PTABKgSOa;aguh_Db5x+{aMA!W%6g31FYkEYG)c-ICh zfmiRX^4%He zSEV0BRqY^Pkei2BNU-y0%1>J~IzgVkzoV34TJNv=5#=wxp2)`XiQMOrEg=&=%_?8U zxRh^yZ%Fvgg9qWM=bnRuFFcoyD#kLtdFdj&_R=50cN%NQ@`a0V|Lz^jNkPiNYprV% zN*ORX_N1&f2Jx6!3r~%kZd@{4!6&w)K#zI!+tz^!Q>C+2PdcqSeAUejNj zY}RTn3SETY-R{u6RSst%TvH zLqnt-zaR~*2Fn0yq6?v=xC8Z$U7GpXAqocJ67|kQ`{CKoeF~0#;srSN>5nxe;_0+; z9l<8vD{{X9(f5{bmg9G`RRfo5t*++H#nF+GrG{YaJN`5rdGUGJv2Rz3Hv7ro72{l> z(~_F>U3vcuTs?g*5gs~$3!-f3PHCl!|5zsSyAZvps&589LBml?I*6I1j|A#1A>pHJ zK`pH*R)PdFaZf}6*LVUHE;FN3py;wpBqMj}J{Ghd+(pa5y|Q8`s^wbx-jKj;8D*;4 z4rhl*2FNqHdqN0SI9cVC%sII5);sA&dTdXG`|=nO zEzFy$hF==6?n5bkif{q79j?Pz0h_8kA(*n${W5qWm%^NwJvVdVv zJ>TJhmco-K8f)RnhIqV?!o;@l{$IZgAAai<_|EVBK|?|=srCydudKQEL;|1=W@DTQ zjQwa=(S@|!19Sj*HO7D^D3TTRKEKh!pdQCt>DPlg*f}wTj={aepouH^RJF!bwcL!O zo^P)QxnI*<_K4>HQMQ0Y_>BwaPyY%$0NL<%koJLWyLSr4<9N5UbPXtj2O5AD$yiJL zU4*5}?L6_&l7Jz{5q65jCk2BPa^dFm-n0OKpU?90m)Le!BDTx5X!(x=3z~cYm@>7q zpe9VAhBp{3q-6%t<T_Vb@kNBiPtV2lHgqD7K$ z=f*9wL~A8!#`Ap{d5=imGlF+(>_72z1GtVS%`e8uN7+K&q`SC%DW(19mFsZ+jZM8^HU_gB$By<^Hxv4sBpf0CF z;r$}%o{DmeYC46hk=50eeDYZHw?ZVY`HrBREDFLya$4zxHrl%(_0Jh&P|TK)i4YE4 z_J-+OKx@Zhu|O27M@->o@|eVr?S=+X)kdFKu z_YmE0EFD)rJPQ}!c^9rV!~+S(_45}}-d&?C{U1PAYUU%JdlKK-@6YEJ$n-NpFEkCTH(?w zwEn#R&2Pb*U-=_=`|E$vSUfK1YL_8{>$*)i%vcL`(PMwhf}z_G^ar4c2SA&+NWyd; z+GB4kaLX`MSWy%*dK^_{q4VCRGxg|NL#>n0_Z-0TLgG zU6KdVDvlgI{!$b4mtd4FBlBo5YGA+5KWkMB(C=I7G%tZz3-Ra*N2hlvDQU&sp0_Q` z4;{e16)rFc?AjM%Cct1x##DW$Ni_PIoL_b4vwP}t>5staBXSX=eV;8wvE>onrIVl< zVz6WX-gFE4(;t5Uj(p@<*n8|S>^^iLY5UP zdm6vn_UudmZc18p$d}onMjkCLS3W$~Xn`*$OG{MXGnHZ52w%!B3V0zRl72>ACxMEf zT9#ba1&B@Pwr@o^hyM5e|PeG41hKkQ?ObV#~?GQrbYD_q8+x zbmuPEbL4Pi@o20a&*L(y9VvZR-g^(;`^LB6yZ`a`(rx8;Z{OleEGfT+P|pC&+Fz`A zr9A27Y21d&I1%(4KdeOl$IUS=trSA6j!Muv<%$A#12MI8?$3^JP~1R$!p}JoRDY=y zWwgzLtmA$z2&zcj*H&5g$$AuiL)~rE{6EU3mw4ga=?Od_c_6Le@X_PH+H|sChf%ha ztd#(uc+kF94a!CjPFf?`M*hxCMQR$P&bS7=S94tnn>G=Eoozr!NVmweB+I4TvMG){ zf+k1C5@Kd>AqAN*w3E=HL3$zvOSYgRAG8OCvd-bE*&2^s#rr=FK6f0BeDwK5N^lPe zZemBxFP0r%aEN5&emNP5H?iN(znatJ|4U{K3*CKFYT69(o4 zQZo<8q(EOXM+AT`Kcqbu3;AR%x<#BUD0%q~#hojIPVyDat6Q={L@W|OkBQi&BAe>v zad}x)J~%*byf=W18cL9cz;~sPg(qDMxWpUxv-RX&W5K!#m*4#WZd|yS?&d)9f%`ck z5uEflWw1*mhoaVisE%R-gJJGdEl9`}sam#jqS|yaeoZvNz%WCx?10o85gA$Bs39I%p z6CO|UIt(|{7I&J65W#?|3UWqWwN#~0!foeWN3H#nMpQ>#gE0u0mv9s9zCEz((0+LO zW6#6UPktm3lAZhaCBTJ5BJC%i=A(Smjp=vuQLPvOf^W2>>^gWLfjk1837{4LkCqj@ z2p8nBJ=bBtMCU5JQn zTSQ=V!;EE*5U@f3RK1ln@?IS<@A1D$&Oq^%6N$_h zCDJKgd;@&b?hih50*-z9)3B|ve&BwOhIPZGci)4r|C|2~&V2j34LQ4zFZ2uw(5t+6 z5eMyr+pZhGD#KDe4F4cj`oI44VOQR_(x=@i1&U9Hkdu;>3OO=?YfA{X>2{>rQmq1) zaawp&n|!-E@Y$SIzTL_1R-V=7<39J^Utc_Ho&QJKbP^xb@w+4stR*~s^u(#ANxlH1 zY)Pq2ECc4N+2QH|z2kkC=46OJJrMS5V1`Vc63)*g2nZ+MM zt1MdD+lm|Qzc0NWkC1cT6Vmcy2?_@UPz7qS#%nstAAuO|_c-~PPr~7kKG#?}4#B?W zZ^yp9>B!o}MsuE)9Ia+63Eix|^WeU;S7K5CKLhKKQ5u5UTUVF!$w)*z7+A-0C&@H{ zQr;($PL-0o8e+5*P4+XC!s81Ag~SjDma-0foGrTvxje`UlJ=F9!cA9k1aXsPBEJjC z$rcYOTl&$u>0JYc*$uD$R2UY}g?afjtOZ^MhYxYjPqGd)@!elpftA~L;P&+!aO=vo zL<-Nn@pifx5SQJh6VRwVP<@cZ2(-i}s(Pi3_oh#Q?NJOy9q`n3sjY%UXt?}{SfpZ? zrCUTYYDW_5C09^R@XCY??<-j<7ga9siC%d8G~N%h|Ji36BL30z8<({$H^l7px4#X4 z{XhQCaPHOD%y9atr$5iX%sF`ioq9y4XfM=Pk=aIqdWYzc9+@l8ZpysjG@ve$==y0t@ z-N&FoM;lwD@-BJ6_p(of{Q8ifjUXJBk+313e?O7Bw4U??R&o-cN;t@I&cJ6Gf9Q$GCfxWQ%;Qn;~2yR9{^x`w=W^ugnd0}zEZeU(oH2Etfl9q4XU0#O! zjU|Oo-74DuY5C6NV>RDMZkA|GDYQaf6gkO}cu)ueOk0@*Q%I#WGxVAOpd?YhjK4^ahTQ(qDHW)(2sY!QntO!N%OP4W5xo}YX z$^363-_>t&E@Uy3*MToaB&%0)Ll-fo&H4-GC|$Jh;WDeePalCJAO9HaI&dIcJDPNz zd-ZjAMk3!A_VO7+BlobRqyBHf(7d9 z{L}aU@iTi z6TVuMYnaD|`gs`h|0tVYUcPYd^cUa($^&Z^<8i!?m#oFCN}ym~0x<7@rPHtxS|Fb% z{9e02t1}D$qn)FPrsdsX(5h&RL~~_{geO%;LiB`59wMlTHnan+X}_uj#O2dOqre4g zCRNg^?z?7O_pavDq@|>jA#?K`FF~A?TgA8S+70_oGyv`+&m~fV))Kro1n<+>{ZzJy zAmG!RgY({oX*wkfml>r5@|-|T zZj<`hTz&klEm+eUsP0NT;5H2)dn$5-%B|ct!NID31b7$H!Bi!8Jv~Qj6`o*~xtnZGr!oacY^mMyCUznr;QDZ}fKYo5 z2AE6R4JEDOPFn(USsRka2D?Vxf>dtT@^__SANTRKvATSJ)9 zl6UBtXB!gz0&L&CJGE!D%w2l>ZTRMI|9kl0o3Fs_baCR8l@_dhmsSR55b~hc^?wb@ z+aNf5_Apy_Tk!1()XUlp|D^*}$p4Th$5Q>eQ|3}#>62E-m+?jt44^SRx%Q*7%i7PN3$2*FX+GL^MnMow9 zZBreEQ}gf1MeW_tc)P+f-~0SST`Ly-oYzA{I(u=jdqXTiBXXdZdsT>BXhDl=gf_pD zsMeZmm+LAKG2v$SpxVmuNa|8TuULvJ0?d?{3(C>Yt6g>si01~niv9+58Eh{wAP2f+Fy?&XJsv9!*+9$2-Q|XCT)PIh zE?-OgYtYJZ``Y!ibSRe<)lL-tK;@y!g$kfj4ni8hf@>RG0YuygZ2MH;JJsGISZ%0{&jf!PyZa=`>Su1)5L6E9s7h?OM#4Ekn-rl(fJwC1?6wnIB4Q+_y6uR zD!@-;K^5HxLozIpFhSKjP|2584(K;JQK2FgS`*E8tOW6g)g%fvbd2m=&NA*|Q2v z=dsMp?d2NocZG04kPY4pPRXfnrz%el7j%{c-lg&M$6kOJe&n<8>A(BaX@5x~A|+jT zL@k2o`}bGUCg3I1RBv09o2Wwps|9cpiJ;Bdtko}xN^e&4(w_t-iM%BD1O^FQySgr4 zxJ>Pfv=;=TE=Grp3UP=*HmVcw#^Zb!_}zq0X)2YF!Fftkz7!IdNUh$z54W#hgWFec zG**p^aOe7sbgTC58#j~H122_KCt{Vn($bnKn}?zy6FlzlrHQoRJJ>xRP#G6WgNbf@ za*W0FMX~neGSYo3DAK_MB>j{9=<-Q!CURtMie{2G*`u#SGzx*kldKlfQmgH0Dd5tM zov{D-Q8@VAvyFA`Ane$;FQxm^JMX}2|N9@pneV*{AAI9m$x1}kQ3I^85O&k2`?^1@ zQTj*+wX>X{l2##ib_@sTw|-Q{ji?<4mqqClU6!4in9+^epBu8J7r8#C1|!*!4y|_( zLA6y%pOCS>dTOOtjd>eE9JKOHm)l0q|D$XLd2qL%Yk8opV_b&ycuC)YQUm(*Ja!ED z9yrVc=7&mO{2M7V)9!xfxyB)F1^!#2@MGN*P$m zVQ51Iv)JJ3)`MW$vrz)jz%>yF>QS^;BUmCrVaYuxh07%?N7+!G2uHSh@JUvS`FLS$ zS9mhp{^Q5s@QW{|ldX_A-MoASK6v??X_?jOzxj^f=1}W>QqHzhboT|*t$ILtm)}8B z#rv_^|HUytyTdChuB8dBbm{&-i*%TI%8Xh}3HTXXeTYD)HfqODofb*IgwYn=E4#{e ztpK0qW%|AzSB4Q^|i z59%$j4Hod4{UQK{jD*m?B&y0+T9bf44r>izwVav23D8s8T!K{0_31NK*@MJCVPc|^ z0TKm0t4;hS84g@Tm)n|XOO#1j1*hzN`YHItm%a!e`>7v=6QB8HzFoa>hg$ygufGkK z-aDPN`}$^foQP>NFp9Yxun>|&Ococ_y&PrV1QC{{d=%|uLYL0v%LH**PdYuS9G#oW zvD6i5iPO@cVogcf@`T~1*#Z&Eg@bgXe7e-J5R8UIO!f1-_u$^0yL_B65|F$hTxyuV zyS``3Ht^B6z6H_}5D6<+u4y&VlMsdSBvAeyReQ?@}B$lAl zZ(f!*VJisMZ$4Id0UJTGreU4p9*=Ff_vp|e*mv}3^Y=7t-@7-}(dAR`!kd5cr|{li zf1@EFuh?;t@&W*zgn_$rXn}Fjx`Qb`@22aS@6A2kUo$?iEkTxp>JHk)n_5GS3zsW(MFZXtzw?rhwWfQm{s=J2zpV3Qc~3q@~3$LLc^tWm9l$IjYr3 zmmqn-%M4%m;m^XS|K3kGn(AlM{UfXQ@4?NBSK)(izX~@mU4eTyZ)eK^?rpfgQtlGT zw}7YRN|E-5NE-68D|IV%5CEIOEIuqCxm-@jAeTLrvh@9c>LyZM|=Pcx&Fy->S9jiya;sYP4Enl$V7BsLFFWLGO8qN#}J!;X5%S@Fw&TlrIsU$=Wr zGDDz~xN-p|*JO19W$6GQmXRD!%3UewZ&K<57Rr4p<#=IO(3dC{qM44+-IN8*di z7&^u{0pGSagXVT7La~4b-CvE>0c`#2v_Q>f5Zf7wP#u>ONDpdRXe&R}QNy|MzoLty zG!K9(zo`-%0;y`LE=^Mksx_LlkKv!Fb~2%7t^M55Yr_2TwqbocyOS ziN67(jM5{1a2?`y-Y|v^$bH(LdHnU}L1tq+;Txoo-?w7+^I-7lf(qggk33O!(T}V6bqZ4TrqdM^KT6Mipt1B(*Nz<&Ve&=ihiYEuFcatOoazH3Z2AT0`g%bI^+;ul+>)RH#=+&b-n!YId^5{S;+M3V74UmgEAFQ}3QVFTKh|N4)JAk)l<`0lX?o8DB}@!B&(@4m5ZuPHd)&8?zL%Ti z`82Cy%|cRv`)HQ7Z%e1E;awejjvP+JV=r1e8tVsIoUVO%8b0{eEAZ{#{f}_=d#|ZJ z7F`9vZ1D|SJ@%r@8M6zx^F5V~BKV9u#a{s(gV9kq8jw zNcZi)3DxP5K17dfy{Phw5{Eno;Yh&*Yb59&oj5R(>u)FD35_Wq~%vA z8`ru!BrU_*e(ws5@>t8T!LkQ%c7!vFYzzrwmXJAnT8{DzbB4E;G#Ymu<)T3Vgeu<4 zH*Oa|sDVN>p7R$11vWOf#30m{Zh+RjF({yS;6em~$qs9VL~mcc4%befg9~rH3%9Q?7ZQ?}HzjLG zV;P}K3^NglQg=j1O5zLF2HFEb06YVH+5E}3uX8=*goX$$0^$*3EPlc5H<_yERG3kR z(+Na~Y{qg}fWG@Ae@zuEmI;@Q?C%KW9+Qcj2)2-yTjAcGNm*ir#AC=K1y%$Hi0c z!pr~mx8dSDr{KaHZ#C`XJ||5BS6!v8{^9Gk$C)Np)V8{YC0)dwz#D*pxfy3%xQ2jm zFpgYN8-UvE5TQ!Q)CZA66)6}6iYXff^1+zL&2OhmNgMRyP*1W6==4;Ti!W=x1 zyS#L|gEpugEWu5JIzSKBKmo>S$Lz?Hp13#BIn7}!9oZ2BX7eVl|n@BrsH@KXr?_PtK|+6T>4Z1ed-gd>O#E;t}M&%RbxLW1V*Jx z5eyABOQ~l+F`6Y+F-qQu459l;ArP7LWbLkL7aT_$R7x3^I+{8}M``tC3SiqXfV{iD*FCpMx*UeJ6P@PTtppR*$@&XDKbS+S!nf?R)pZ zp2LS=--+X}ZO0A(B&V0Iz@>NJfj|HM{cE^-`ZU~1cXvdW${y(ewe9X7On;>I)zW-( znL>-Cx4KJhoB^G{oJ!OUO+68MIpn;NhKdZ&hhZgDkUZ7ckH76iDn6 zuTgZMF*_l0U{fv2cc8@tB7gxR_Fa291}MA%F17?vpo(?Gk4GC?ZSJJA-P)w^Gt_o} z^5=d6KJ~Ld4$pr6GwGf{Jd*b6hiBo+2WQjG-neH3FEzx?;JER7T9#iC5lPFm%3UIq zzI?%6j#0iV@CL3}nN&n}=K&VCIeb1*eMkW~BtyC0CfOk!hpWmpa99Msq;Q1%YR3f> zS1gUuhZ#a!OYJ}~S^u;Zkl&X^ovkqWlD>Qz6)9SiZ7C%f>2ViQ0P#tcZlpN^`%^4{sjB62BNM^+jVl1`jT){y*{_KG9| zQbYUI>~DHk;CbfD}0X@uQT8I9{l-l z{F}7TWBKAm)k(Qwwxp*0k5zY6uWJ)MItZwT7D)}B^g%mL(MQy*9_)(yzqC@@|68q^ z6BK#Ss}d{l^9%UMq04e+#x47*KHSyFizLsCJ8hkf+J{wl_H@wKA+l=CN}0k*O|!W|@zEo?jMF z4u))K_fbviMtX@xt_=&i3vegk#;ycR_+<#bP9i8^t2CKL-xs@Pb%5B}N@PZtctgtt zeWNndUa4$7ChBb;YXJiaV4%-k2ll}a{g?j;KK?U54u_sQnVj4>cQI+fmoHyU_h{fA z5j^g8+E_+barqTmM(ETm&`0RX5-m!5CJj?6oy0CA@3Evu3c|LPXtcbh%n0}bh&3W* zPn{;#A~~`|E-FMzR*7s$3E7GggaBlBQ`N|WZF^uCYavMGheAsu*RF5ca-=kQaoqy)JX0G0ySyx@cP=>)bbPJx3aUv9E)4T&lB1R)Lial@ zeq8e8VICQ(C>v#zA`f->70N?ved98$QRZ3VM6wYUi;b3zioe$?1E6&J>b;xrM6nty zsZof>YT|Mr1Y+A0VO^CMISvq_(hivO<%yOAE0aBG2Fow-Cpd|=kwCP=zgz|x7*Uw~ z4!~g5v@}qW6ecGjl>H}dykYXDzB70O1s1^q9(41}XTJ|V^MCm{_}EYXDD2#~H=U4$ zNA_Mjb3W|@xN~DUSxIn%db;@U{{3{jcsho)SVQpM4h)!2!@_u`vX4sYFLHSpELDIX z69NERPSKVE+fplF;HG#j1j6)P;4ouZ!o|De73t7%+jd3aqD(+Hcz#{lBx%u8 zJD{dpEHRn?OeA~dh~r7wWS;I?Sz1W3r;X$b<r5!sO(y=Ekv)kKPI(8n| z4@dUui*Wczm;w&zj6LTH+WU$-9zS((&lHjq)b@Z7Ft4Q4xsGx7KT` z2Q3e+k{cO9O>xt>Y{;4?AJDG5zVUvoLQ5Kl&Z|QdW%_*=Q5xm(lkkw2UzIo?j*OQQ zj zt3^6|qI^z6m58*G(;{JZ`G+AaH82G_BcQO4S}IbOBSlx_wK8B5Qu1b=H-C#ex5M5> zTmD1;)qf5j|LGrtU55^&DvczIS&+ zI`%cB;|T0}>QFjX7wZF;(Ov!UG<^3z{vN#Z^}mAKSFXXz{d?`UPWb>)2n24kb@9ET zR!>7jgZD(j%)8L;^}d5cyG{5i;PEb2I+F^xb+j&zlkNVm`%kD4|5hP562@Z?K!v2W z^KFKbC~eLtakP6?M%s-{UKu-}s~-E8K+P`_Q&%|aRhsoJ-x}qykcYnf3gw};q;VP6 zC|cn`$jx`zFJ|3jBm4H@7!Vvx2#z9Y@xmpdsSR%Xd4^LiWeo1cm_fSdCHs)UF% zl{L#iD-YR&4Z)t>T}!uGQM%6v?c|u$N3E%~z{Xfdz?RqX zANUk}>gRq6KK=7Q0Xz2ZgO$emar5$3xOwqXIyLLg^&81bf)KfL z1mz^Iyb+#~98?rky7Vh>no@oe$C$8-P>2N-&29Rm4drF;$As_hSdg3OiF7P2HI|KC zu(Kf@ST}f*)sDt$h41g*z5|!uc^6Lq&3E9`U;GuE`J3-H^>hbX4TFF=w@oS2mc;|w z&5tsom-BUwBptv!RGbJ|@D4zAqf*|^eS3+OCY3Hfy8jzxf=*d9AG&-(m$E_=eN8Hy z(xY8gZp?9Sd^wm;?>6Y9OZm7Yxv}Bl$UJk~5H};yc;e)tT|TJgp|-H6o<9ByjcN9` zVU)*Gyg67;x?%>OHL$gZ?b_tMR_W3{Q9RzA2Gc%0L&I8k`Y2xLno7YChaA6~6f2-Z zDV{r!jspzZdkEDs;m9d520Y|2H9=sFp(0Egz+@i*d=kBW(JzJ2k@6oWbV?piFb81tGq++z$*p>OB624!%}Pi2A_+++XH65~ z$a_SlWhqwv4%0$Hs1&DB;-@sJGS)-{Wm?K^LdV-eG$4?QR_`e>Wv$2pJ1%XCol+9Y z#&T(c0c07>q!5n8C<>^3B15y=NxIzqlMaG@a_OU)l1oxAhE z-p1mwKW!?730471%z8$+j z?Mt`d9w6JR{jW$+ue~$+-MQ2XJb_SsK=mW(W|h7KY8X-B*7rn|elzXv|Hgu$+FBMD zi4&bvYa#7+N5Ka*78)-q-x9kWkNntMtErY17`o@P+A^n&w5G4e??^r#Yl$&TfA-?p zvtNOSEDya!J$3Ztmz!zjpTQ_kob)ZvsR6yUh#&0d4Qr_T2bKO#!Uk>pQX?Pok|tOU ze!&t9L+}jzfCyH@*eX|$shKC{0N_bmi?Rf}KSY2kSTf*a3SbD520Q?2vt$>@Gkz>U zG;Y9w%V0C2If@0&t!Pvh+CWlI>Zp-F^061;V?Xty&EJo~{u9TN)*f$GU%qfTSw?Va z)}7_$OhoRZB_uD;N@RrZ51E$bPt$S%9q>t7MLnA>CFMJ=VTv%7G^&~+(!%$IP@yRZ zm(ve?Ng-Jva&<;tUX|SAC;ztXrxb{3_iRNi{>joIzl$GSQpNXnhwU254L077d3sH9boNmSp^FK&2fea}g4kLiBtSZ^F*_CCfgqOeg`kx?FJ ziKi}{JM$5E1oF^Z;o)P)z7*o*B^YItB4&~-GHXq%`0I9Gb2m%YGB^(?%0mQZLJtHUkzcAfgy* z0LhaoZP~DCR=-`@Xl29C+pgeC#KF7=GYC`#WhV5Q6r5w{JIO zk?m=|=Tw`A&O7rXaVjmnB+Uj*<$nOF8rs zIY@g?49F@L313t!L1~Ytk#8AK;U_{;2o3)8r!k!vWUA;4)VJ0~i7m3^A78CtZ%}rk(HL#=ZU=NtMgcHlN~Z=<|mqBPn@; z@@ zUP$1!@7tS>&&B;7NanE2F2Dal+RyR&SN<5zz506EXA^Ys2gN5$WjPW8t!k@}8x``~ z64g-pMgi9apk=Kyi7{PL(x=no$w-Hk(E|kL&vL826IpQNqgA$)K>$VIG=0&851^Lt z;0X$JrBN)eA-Ggio7cor<-Lmt*5-$K<}qJ46z0Q_p-Qw-9y@6!iThu;aN)u?;StCq zX<>(-KJjZ!+x~yUC{Lu+h`}t=@!UYYjThIHzKxKzYR7b*Q93O`(19O9<)xZz1zbZF zywu1@drt@m$}!$#_Kym|Vjk$u4HLb~H(OYMz>1DnVyc}4##zz$p;9K^a#9-&W2})i z_p)6`#z|M$Lj+G^divuZfoH$)8TiDPejK*#-J4c3-D@l$cN#K+dqr+uy$*Mm8>`5z z+nI=@le6-Mb+mR&=~SvhMCe|TNY)TcXSyU1%JV7k#e+pU?;0Q$QSz;q5os_bWTLbV zTACG#RU?!O1L@+x1+sVqCLU=+`2=q!U(DZ^7GY`o&a{_i+pb+r+3beh2M?t0xUrlz z(%-$YoNgw^1xgHYK;my8XI}m?YSXhJ?A};n&}#6VM5^@J7~AhkT7v`MChxH}K($F-s11BBncPlw9`(SX z{Q1y01&GzcTUnBxSWsMu# zV^odBEm_kIjO!;8iV%Wmlr`Whm;UMUWik?I^SCUxqEoEWrGU7Xqp@=2ldF~z;aJ+y zSUDQPv2FLBw8RRJ&Bfz#QSRTm1-GwXhfAm4gZIAi&9spmEg$!qvcd9@J`*a$8H9*Y zu5|x5?y~=uCLEweG`jkKPZP3I>C4&^6Bq!)iFNm}2~z|kKqq&~UK~+p|2kjNCb%85 zg+a9!UrvSus=m-lC9qY(_~Rh8aw?kCyCmEExiQg~f30qZ$dEaq*8lx?QMz^4(MHI_ zwz!P4NhD1F>BGMJ!$c2{NX9!so-FBG`-;-3-5)S8t_j@tjOY(SlQeV!@dRy%RY)QM z2e{QMO)_+R&R^?0$0gvq2C!UgI&}VKmlx=D*BX3V6eYmiF0*2{9zf{wG1^fNF+AL; z!4Cj$VM*Z`LIldfQwh?C#rXn8jWwbYz?L})y4}8eH@xu0AB3Zy`gr;~^z6w-ZD5aufaF`%@%uEVEKcRvU7(|UW3rymt=61J zvR))h$E1)Kkh~*EoPcXbdCx}rIT33|$~zMc{GIRUSX^94r&8hRRp}=3J-d=+W2yPW zTgex3L;3a{$xph}@$zN3cIF(Mf9*}U@a9`^;f=T8+Szjq-dc+AzWxvMO^nu7X9JOD zL2bA{{8s<>E**)`?J4xMy-Jt#F>_x0k|}_eZ4p`-RZOS02|Y$=0c_omje;TiTR6Pu7AI{rZ1#Yu!n#`kS~RD~G%nfFl}amnsc9yf)Mji~KJG5k_AQBDi>3 zYu`Z;9R9RvHp{aV)>6qe1_Axtd@uf)2x>9O4l2EMClubcojc&biQ{nO6EDECU-%px z|Nc)j;Cyd7Y8I^@D|hd~oombK^enUr+`V}lR_@$^d$;d2?^p6tE&QVswAe~AWxzP4 zrCHM{Xa<@uKNJfgXSRSfA}N7#5(?pLO?E7~sz<=zYX$>p_htaF{#xE5==~_IajMHa zqhkpEKnc4MUY>w`5_PbWPIhmiuI~->B*;s5`5rQFvVP5OXT>gEd8|AT;rf+=Z z;<+d|6cW%S|+s)st zOhWLO*?YHcC!&IcBpvZfq-0f{s0A5N^9}1RVLHD|Na#KeBpi4`72dy5EE?%94k8@e zx2NaZaaq;QT`<9ut9ERIh3!j;s9-u)?%rw0#YI>?e=%7(&b;y+IQ#k=aPz_?=#mI9skoJaTDq)@djfJ%P>ReVwUa7%PJT}lQ}{kQxe1;~TK<@3&MUC-y4TZe`@%401} zrB8qPQ7*qid8Dmwyc1*;FSE?l)d_Au7(?EzC2boeL&8oP=@@%EEr+8fQVmkgB&BE8 z@>uTGuvmyDehacKa*CB%nyd;DB2?yopTqXso-&D!JhWh6^r(Z%MFTC_-;hbx)PbB~ z@S}<&p-eGMU5Oh?d$WJSO` zL{{$R3l5Qtb zjK;!&8_3b3fo{?zfs@4)_Uh_N+BCj=@e*7+eFm<5cs7v_yn!5l<9-*mlBv?PM8CJ$ z)LNN&-q}uFq-!1tltw<!$QUz@Q)g@W<9qjL@L1vVf zMx)Iy+klV4*LRroiNt4@3n9SYwr3CQ*n`K??t{Z0dA_lZJPZ4eABCO!_NC3+3rqQ? za9j#Cjrop{e0tVuA|1FyEA1I6L?ovRID@1uP9$U@qcOn+~LO@)SHHnZc8j096 z7MJ^tW#fKhiNRaOub;mFSKj-eAsJ`k`nmJ4(mcO?<3@U)j>#R+-v;$b29|Xo+{F>K zRcvrvm9R`)tu`VKO&cs8TUHO1;I>6XmSh<+9BWC-j)G1|kVqu|6i&s`;Yp#kl<4u@ zyK6J4Ry-=9YK-eBdsAm%;-$O>#qbOX0U0NAI&GN_ojYo6!_RSDinLk3`((XKvqpJ> zWH&zq8e`Ncf zz0Ke5yzgS$wrs`Nwv;aU3kAGuP@Minl7dULaLLrYd&zRLawjkGN`E(R!L7@kI*WrN_xm*qWhrD znFP(9%=MoxYXG#zFZE7)39WRs$5o1Fh*Ic5f_@5nqm^%?Jk}By!t^7La`QRKBX5o4 zX7o|kqgm<;XI8jflSm&Sn#W8&G@bLh8A7D0VL}xb%@$E>G6*qh)hN1TT=Soga0Lc8 zu^LkjMCt&F#U{4Mhma2i$6Ada(O zipbz52e$m^Ez9J5n+OVQwuOR9`!aUz$fr*2+L`v0AOT5Bsg`i>M*bd(Wdl9six2ZM ztra|F3oR$Kglpw~Lq72IEhHk1rQ_Bu-t69$eqC}NGuHaQEgu2Ext*wTb$&{Kxy`iN zO7>B+JPDD}39zIEJeg2wiHdaaa|#=JtR1Etba+ybx<%K*s98x&<7@Se9BQcMKiV=Z z@wO};pvKcysJ8#pMV^!tA{mwpT7ngA0dl;VuyJIw2Rl_+KEFCIed5REq5f+A*CKtS zXe1w_kTfmirHkjz{48t&dE_l}+>Aa7O0R_>T21$Z5sQe1YOngVWB&Urf8FmSZR;g3 zIz&z{5bSG%W9`T&HNm}fA(NI;F9$N@fWdOxoy70Si{2RC&W{0L4*VF91r8lnshNZp z9XN^3FN4pnR4D*dJCTd>MP6bxOdY2RvZO_yKvW&oO}JL;-f|ixK2BE5`#fYxm|KQZ z-1vIa{uz*}G%*;*aHg@^X0*H5oju@kZMB+u9zE%EoV3kiU`9Y7AlU-YXq*}n($#Lv zJ4-8S{f%-?ZK~V;p))8xt8JX$gQ@SD1Q&(1+;FIBJQQ+a%Dob%E@Cq#RLico)5?Y( z>4@4$pJHn*$|p(RaG7QG?js-G?MOzRXo;I)^Et@^JYuS3sFTs&f}Q;}16ZK~hY43!DxqkNja$tUxT;{OCJ2>~bn7@%pqzn{JJwLj}PR2MVCV4KAI|TX1Ct)W$*3y8ooFy8iV;QwOnH zcO19!?>7n8l57F0@)!H_XyVij#CQtUPi*^FtOB@I1pA8O(BvTK3Ram;mo`S#{y^tl zB?1D3R*M2?laHt((UDOZsr1A)VyEY!l~?snkAbZ|q0{Wcwn?-3QSFqud}#SKV~Bp% zrxakSOpn{+ch@*w9fS0H9b0Am?(#otzS5hciSJxEclMF*{UDjZ zCXf(Te+Nc+;-xmI(qEVOcWYXjA)BOY(opQYvUVGVjdjSP;o z)-Y?d2~+^j+ZHo8@)64$!QAX80gD=tjID&0bVLaNq$~ocHp1?K!BHJPiaXNagCi@! zp_W+kQY*ILGHA*+LMzQaHBo8B#gF)Ok6(j!&R<&`mq1A=cWTBN+eKeXwt@?9bG8NYY3)Mllk@S6~y#rfHqyX7o|CJP31f7b%#P4)Qy%zqO=$t?{AzA)DlD zrg|=G(6Gt6mj@u$5dAxV;sKhPSU|6n=dp}mp1~0~t))Iy%cr0J(eJWjlYri36#yoY z95%?3F-en)AKL5tr5r-5d?oX(h;3d$Ek9Dx>-2OrZH=i-@L=n$^*f_p2_Wb)nLulA zPp!%-!e#Bb5ey8>@K~EZ0JGF{{5?!m4SOBiueNg`z;V`1BAgOPY z{8k*+N{R2MQzBiyaO}6JfV~}KRigs+J{N>>Z{Eksz7SCP>k{1tq0&2g>PJUo+a{>A z0gor4;;a_*tU01KuGg#_HO1ImV>(xblzW$~WnLTQiIh#V`J7}^SU^x>i2o8s8Kua2 zG&mMm%JV5-q*j+civ_)(M`N`Xsrg%rC8*CGYioTOx76|Eo)QNw4I_hWjq50_UK3l> z+<`>N0L%D`tYy~M60X+P z3S5mX07__D;w)Aw<5qW)1jdr6V z3#RU+Y-F!PEH~5x_`NkMIF%>~r|pjR@RSp$D9$;N z%B^^9^(n4w-5y$vx5OI6iX=}}(}=NWEPxi_s(sgPW5>8xd)GN`2l4CYpjw=xj514_ z*7udoL_Sb94FS1$_Uu=h61obbjIvJg%R=OP==Ia}o}TNy85=2a2v84UCaD=pdb$XW zERRx?EGTeOBWO@C0BK4=0XxG~=pQ|SgTz+?BF(q>(J?XSPLGhhqO5@WrZwy3~R4N8VCR2hXtO^gXixeNB0w`vsc>N6$Ckv_hvv6ORD8-?evk=yt6t-eg4HmrB+oBu3jlqsp-(d!`u%u}VhQ zcjynFPF&-ya(c+*$Bz?KM@#~JBEi;e{yi~aQ=)WR;BFDEwFq4Nv&Pmg;^nOqUDgpD zM{TK;S-#crUFM+fbdEAgkHiq-Z^0&$N4^PN%dXvfcQ*a(OEAhPPW)i6pAQAzeNtPF zQwzIG>(!NpzOaUbS(}9VmJbaT9hUyB0yYvj!GTG=o?jPQ4b%md z47+Jv7ewIlb6x_pL8u}S!Tt7W(J9KsD+tjq36dscH=Rq6Qtwn<8MM;LyGyP9R}> z!lja>-bqXayOiCPM~zlrD3*_cJT5A?|A8 zC!4;ohLDmj&DoHA4wYW*AI#@pyH5Z#YOF+BZU6?9Am6h#+FL;Mk|hBpbZ0- zkOGg=|8n_s0AjG&H~p2;>a_B@j_vQLyeXwcwCS_NLZvfEe$fptjdW#LOLJ|BRo`+Z zJq~rb>r~!2cYgftQXcs+-N)KD2aGaGk2H;Jb8d0iR0QPe)pxE=L-;KiWt2IjZ*bS& zV;nwlXqh$8*R)nc_G@_Z)aB0Sql=8q3a2K$#3-s;qZ$5J{QKZz2k>`byUi99@B&R- zKtLNPLI55RwK7tGmQT9_yD9`j7=vBX6%=9)1%=bH5(5vT0Kpbxu(6deU9y5tX8~F| z7=xaR+vxo{iSDx!t=2}<9u3})5CPgt)Uq3|#Wy4~h+DFXv^3=8mjJbj(^|+lN(#}$ zYujT~yrSg7fxPl^M%iiL99jT9fUV<5RUEAw4Ti}|Ve6Azt8hHwQKZE$(X!!i0IvTB zZrk92aQV-SH=yIPemLIfDOSaD6Jzk$L;-tN)&}MS0=yl#sDfk$ za%=+ueL7S%55{|RPi2ES=TU2xU0aKkmx5CTAgBc)QSIyqaw1ks7{t<#_WcP&U>Mx0 za_PQ=t)dBb_2Ci$w!rnP$Z62a&@jA7t?d$+gwh_A6N@{`(kf+9%5`D)oJjsP&2arc zxTFV_7L_gy<~YofULmsGq{C)ctYVUcXxf)vBBb4D@nj*m3|Igf6v%Hcx%2Hm`VL1# zAWEG_BIasL;iYAYOo}DQ=HJE_ZP`jJ#@G^lzjpOqYl`5!F!2g@$)HXfbD54YwpZce zo{`|;C9}rJ>x7NmPn1Q3Ko@WsQ+hzbu&9euXGRg8^4-NRVV3l_ z+MAF=4;Tf2*&scr1*L-4779?VC`@@rIg70r#S)~;j@YIyg1nJFn1s&mL%Ozg*wwlZ zwGd~=Ve@bMo^FRazPuSawsIb-We6&K_320(M;n9$=D6A$!OM$Q=t5e6i3oIzp;Uqq zqOB?yG{>*fX3`7N?j*_}QAeo84=Nt^uin*2udbmGYGpiJyn?6CT2dPqy_=zNp>&0% zpV#IapN+zl69NHlb`f3kb@1B=0CS>C#foGx+vtmulZVpzqU^4S8OZ z*^^nQzN=~FS|Fuka;v9fGQf>2Nh%HnJk-)_g0V+_3g`%;h$c;F0#Hyex@d|6y^2%N zON6pl4bDUt&1q7W4oXJ=(c*SwIQ?m@F^3xUI`*7!UY8Ca+G?f!4HTv%RDF>@@@s(+ zm0+L?oQ>*7&qt=DlW?X5dx~)$N`21{)a2)f)25R#Mx zaG)_ppA)d_QzDZYE=NY}He5=JNmE5kxl9${CPEVmDbU*f@+IEhwV8wrMZq#SgfM2IkhXq`R5UBM9Lpq`+dt5gXp0ReB^nj30iHYO3 zE>(6*J!^tsz`15t#gb&0d`TlK2}-_V6w(z{nfP=_Jw`{^+?WYMBDt?dJ&u)1N#CJI3L8mMzuB;-S)>Yuaw+8IOIKG-h;>nA+Sm$|yx*oJ{{U zY+~7z1O#QYf{Zd;`UhhV&`Ic-zM!xM_@*bxe_E~J6o>pIX-kYKO|ktTBt>PpbgpZDUysY)k+`SWo|`r7+r z2#ql)iUJmEZ7N1dchH0^R_a2>0kM@f;S zLjjC2T4=BG8cRXgs5G?diU=shOO}_wJ}3Is*B4z@@`fG(OU7Pht+LZk@|yO(~C-_r$$z?I5=rD$Wh z1QDd3=wi!~ZaZd}PMt#wHhs14v!ph*4F&RDim9Rg`z+^rjG!<_f-%axf)@{FW&Y-s zO-n#VE66AtA$?l>F3ShXJQ_6rtcwWr5t6R7yC*Zls=n)(ylP7dhDtT>{Ev%LYyC6g zVDL>!U9B+{xAZ#*=!iNttwC4cRXBm%Mge(Nf(lQOm=L-NE!3@Jg2w`AgjOS~0R)@_ z#LD{sHbKDQX-ktU6y-O9r4l+0dFKIlsh(12Hoo8>d@Rf%1m!PiU@y_i*C@|4fK%j# zKIy31z+t-lDfXdazmM_{;%USek6(f5nYs& z9{QZ6Y^o`zygN?<`V?DT;mnd*>7Zvd>&Gag43JHE@t~JYOF&RYE66BArEA$0S~u3B zJ*rJi{=1&+{3NKu>9kB#;_~s-e$NW87FO-KpJcn1f^}JUS_DhSF^%R~)N#AuCJd|{ zU{h#AgIOUfaspA-pi;gHR#Pb;5F1-StClw~fUKpF1+{miqwds02C5XMSWOD3itVr@ zEvj8{s!QgK7GA6=lJ8(Zqe{NKXA-2tGFjzv@??p~UaXJ`U$#M|hzSj`7UhR7nB${d zF+bDTB1K+mTKe>S8eLjEkpTA`ByA?;6f%*5+{k1JUMUCe{|Z1$F{3V2HzI8w6vWu!+n7$x=tkv90@YJTbNc%1z8rR z|5iF}9)lxknRNNw>QVsL_B4?w<*3nja7RMNXv)Np`zmUeuywr{i^dGFuB{VHQUF@z zL`nghYgI>uMCGO_ez{E&V|M*d*PXGBNYex^M`k3J6qveHQMKD4C_gG6!IqQvGfNp$ z^W)vkLt?tZo27*6A{?{A9c2_HakE}L=w(wAkR+oOWRx|Eoq#}n@1H!nH2(BCYXX`@ zP>fp`CS4YuS@HKhw*a6W_7F{BJDu%tyjwnPOSx@nwnIzl%7DLx<#aNA{7i_7rG-Ee z!NwpYLi-PjECi+1rgRu+9fBo7P%A$N?0ng3?YPf4KPTb=4)BAdgVI1G5`+|(B~{TB zz9CgA0bB;4@+swIi4(aOi%K+k=g2HFRdInL2SLJzO8Wo@9O+ps@tM#m4?(4`PC+#J zkbI~Q-SA@GoUSc$9yC*!?61@f=(x(Wnw3?j*FJ}K-nq7YJ!V%efDVN`MNlM)lI7cH zdE1Vjts3Nz;#ZFxNtuX0m6mF_&_5pcjZrmALQR1*t9*TYT_j=1c!f~_geTa;K$ z+m2K|8t}Tk3*~z>EHf(bu40S|J_k@l3pkGuMAxt3F2||k(piJjZc0^avPxu0EKjb9 z7~&>*qV{k4V^1G4e<}yIrwRe|VQ{Wp*@;_Fb>ezmtmH>kk&T7Q+P?F9b~-`63$Ja( zs`v@RECv*BZS3wNB;=;czfVgoPXB$TQY!e87-f{fvSq9vD4Xsg!kX;fyXRWdA%6iz z8RY@U5VO1gO-JB*|FgpCn#431p|EF7c%5-T|MWF<67I5?XfUMRcZDTd>=GZe!3MuC zU^`S^I%uTgmrtYE?<#~^#H!FZJO_P zsMj+C$qoR=Ruk3cvU|{|y}Rv|OiS9e);*XsW+5vIjGqmRIC^?y&!qV-z?xu%~4+G_$#=4SQjYW_ekh*Q6VYTHq9 zOvjgI#Yb6_?3SgJs$4Z8G{w?NYYAZnNf|x_uggJ59=`9dsMj?K?7kGDHHPQzH+dtOq`Omyq_Fj5V)~G;H~m~IA!=nj zYblie?g`zzDGDG^Q~%Y%uI^WGY31aGO1iQmu*+T|zoegpp;}s65H~rU5=J^jh=PjXzPPwr zxya8aM#~0CX@+RwV9UBu>;JVUWO1liJaU@#bNTa@A+`b)C)FMoLOm6M z$~%BD9oUqDp`P46fyp#kRQ!7#RshQnB)dXF`vx8ApVoh5`pxYUX7~R-sgFO=G~w7w zkiyJ&ew;$9ci*@-88D6xonuBBWlq_0)(?~|)f+}D$S4~rUEqA)=MOVoC|=`RbMK$& z-?OYLb?tUN{IzHj=^d_z_TZzo3@MmThnR-y9Tj@g#scx}fU=4-MhpIZz^s*bTIEa- z`^vdZT57q`&un=V2F0poXpyo|p6gBaQM(6U*PM7sq&NUmc;!9%&v?(z9Xc-Lr5Dt4`r3Z0&&7dikI<^)YFSjubk{DgU!2aJ3vR&RAIVRV_T+6s$8*lsEj55mlWb0W!P_~Q(1ZA{> zjIvQe6JSk-l8+&pyP+CA9dFm9q&3R3+}D=L_%wA|9ztkovb)0Xde;?a7y0R&jH9<0 z3EBxA8e^Ln{UtKCX3&%svMp_A3zS6yZWO&x0@)l*F=b*v%V3PQncf3wOrv=gRK9XF zyk#78tQ>m*$+2jaYjy5HvS{a{3N0|sXV70G5>$9Oat4?haJTAF`5{7N%7yZwi3W7< z>j0H%^E|ZMUNm7stN*AL3Z^Y7au_Ng+>nnF57kmoVb~N$_2-|fv_tzdmO=|b;wNiE z2qqYL#!=bua+y$>o8l?ycl&%?b^3IhW&%>KlAq!z&fouiztnDU{N88)Kg%-G8Yc#X z(`7Xo$;T)gBwNz@fwH9t2+DXn`Y0PAHLa8ZElRqq1zlRWt_ic22JPN2RjNtt`C8)k zVRq%+TU-3QS}OGh{aKb76IMqYEz%|EJ3j*fW9`fVA;dNjaDdLntG-vC>&?7Q^UX_e z2#!W3B?0Pn(q57h1-L2Ds&ee&E5I?>rBPK<6}*NPIF3%h$5sOl%rkrefr zpnpL1H zOczo|xX=x>piZp(?>-_@br1bAtxViLT>YKMOA81~q(IQelxB{s^~e zC#>vO383XFa-pFkL=wA+AZLR>Yy?^MQU@=pblPADX82>0p`mXuK$^fOf5Jd;6zP6={D9T z-v_{feeZw9`&!)kx3-@6Y6V5AgUY+OaJi(sKguxI)!OCQEf1vsKVYGDMf+6diFe-deUwqwE?aZ& z2g#PWh|tUO^77T4d-fe{hJ!D{D5E?;(H4O&O^LS}T>UEySHE>tZ5L##5j zJk*vPtYz|_bXJE#ayaiGOCxEhk26^MyCG%g&}Hs&xC4o@zj~==B4Lb{~R?r?!-b-G**0 za{ybn3AA@S2k5cZ^|Yzb`8>>gE_n>x#>nbIW#!8cYQJ^c1NmNe3`|-y1`d^oT0w+L zV3lZUY44MV-v4K~8#0dhb~j|~A7zw>EU~d>{>sgp%df%~l`Y$Q4jg#lz|yvRrCmOk1gq1nLs7Z*zr7v*lj`a;kJKsNz|H8RM9x!{M`}DYMwakAeIgF+}Cy8 z5@jRT!ANprs~*e}Q2nN!ltJ>S`@gSmieqT_K0RwqpH9cankz0g2^ zEL+k7f^z51)jPX(@7>w-O%No=dDwPAb zpGxw(tVa4XbdVPNJMed~)!9y0=y>M2V9hUtmW%2g7O}nOM(S|3Y?l6C8}DZM(dm&s z9R~aFn>R)oWdkHGhUq`V)j+U?Wy|-5BS(*)YO?VHj55kYlv&n?p_(oY@aOfr7MVvI zx1MyYHDBmP-w!Z!>6`wI`&j%P1J$@df%*Z`zV9Ol=u?0(f+wgx9I#sLnU)cqO0UI- zp7hp2vP*#Ub0~SV?r8HkKz*NvvJRBrI%FXs^^z9tGS#)@F|^7Qdc>9yxVmathd{L< zHbBIBs5O!ng(MQGVoO1A0CAM^e{=lD0& zT0B}gMtR^8;WsXvKm9AP#bwK#g5@QK_{%WLC=XEjCeqqnB14uL_)ikOTw%Qud*Y|K zV1}E%=Y45hPx|fBq0oBXrzzE^==iW0?9y-jN$$FqwE%$ZWf1**2FDp8Gf*!t7(*7b zMF!dV0Ri6@5cYo{Aec{}DsiyFJnAywRCAgsok2YlSD{5dO!+}Ot>uM@FjUZX0BwCx zL?Fs1Ez3#e6;v97mBt^FgAx0+LQZJOAi6@%DlP(Ze zqQhna6HR@yl?}f~OJc-rY_(xeSakkuTZyWSg2{JKeroc#^#9uLdEEQ>z2A|1jPgJw z!j*-|^k2baAX}b*jK}hh@}Q+};=&0}Kvef6-4}*-J7f~;(g?QP!P-Pmv|fe~n3~LE z5z>BOV0=Nj=~`mOW!n*NVE_7!Jw~_2>I|?iK$5iPL9vkF(4x`4cjdFhUG&!SEZVrO zro23e`cr$1Ak;(=08LF486dk3#+6@@XG~Vu73< zUC%KpA`&#<4(ci1wiL6w7!i^~9Pc(&f6B{M1=0JSy>h7{F= z!cjG9^2idxW8eS#;_Vt+=k>cD0yfGheG(_||2=#5>^txn$nX(l6H7XlcRG0)#trGC zJU|&bi4OHMWSN5g-L(Y3xXBNoZ&}#Tr3baRhsavWN&7|V_g|K~49J6)A?2Mz2Mb9B zOPcSX--807Py==X0yX&Sf++-e{ddksOVtfCM)O*1eJQYRGzT;33GR7uN8jx-C<)Uq z0}DQ`cJL)!aYOHDnV4B#6l|CP(vEc=JSjAYAJil5UX^ugS((~3HcV|WD1XK>62Y<~{%N1FTa#MZ+o03HntKSW zt=IXX6y$Of8xh58a6A(_Av(GYIe5hpilKmQ3L&Vp29#blID5 zISo+=7^w77KCnHjpfjnE^y)lPsfmRn*tX&trVm5PDzwN-07?7U|80D;M5mX2li#(5 zIm#$&khqmE9jwV?(^Jy1yxZ@-++^tm7-f`4EE}N(8ydz?%Z8WrSYT>otjnL*_-=%F z5bz)-{Z0)hfYVy5fize$VuT!by;GjqGEfQ6YS`(S909Dg`dr=)ShIWR$P`%cP0w4_ z0Pn6x+U|Vm#hL!9-(8wpAqV|LUU=(8tG;XQTIFuj=|!inR-QgQmvit_w0D|+>y7n7 zux82F|7XWBl8I3^i^Rv^*j+D=g#`rV>eY9yjvLZPd6-hu;^~R8=5~m5X&`Iy%yL)z z-SvFlB@KOkJs8oS{`stD^t>z2wSxfWlVNp}(g4s8q|{?pShvcpl%>{ala(UKqlrSR zq!kb9Js2<^L0dPprN&rQTwU5*$k-tkmf&uwt z_0Ztjl&X4978&{!2imV9Y}(Qgt#b)Kn(A_|RK98By9y_i{!@NOA4dddUFwPn3?-3I zahHl`I`;qhWO)ClxP5v?8RY>B9=rQ5;4zaedk;uWZY?jrGv1Is%EOYHhEG5DZo7y= z*96MTRh$N~D=Z494-E84P1{*ZyH4+Vw1i#d)D>p!-FiTi3b`{r|2w$vUVm@EC%aW7 zpv32*pOw1Sv#7#`q5-#Y^n?~953(Fc0dUO?0NTmb?rhM|vT*o9(iv#I3yw6%cZ112 zaRaDl+`m^qKbMtmM=si6vrumz5;XNw9cmy)(Gt2Ko=P~O8v<9_u+Kh!hOz%^c@X_y ze_w09M;T>ai2?rA`Lkz!2Ocwd?0V36L;5I>QnYq#mc|fI&|1&r?fq}mrpPWJGAk@k zlIHPC?rUMv`}N3LfYLnaAL1r5nKT}hTHjL{CCT3u^yXqshFHri&c&b-Od{HDg3p7A zwz%oOc{{2E1?S(#9ZFsqI7cu%C3}&(M?8UOeRpXAdKGn>k@B=!bjiO&CvHvN!11Nd zv^h`uF#wn)b8#whK{uDGJsaHIJ+XICwJI1(Lj>@rFR@bjF(kt*aq0rVIn{wlMO5+S@5TxN!dQqPXe*Z~EA`u^2cX5WDvx8d zuX1^|`#%$r(47X9vHx$*{y)kn8!V6A#&a!?EuBAd^!Q6n_Pzw8jPeL%h^BBYVR-E% zN=@5HGQ`qS)AW(wuJ`kV_b6m7+SauIjJ0ZLdzJY`Enicz^JlOCzEenDuPq9}m5+-g zYLH(d(s2W{$%nTTK;?b#$q15N;NR^!2+CtDW&|QmCj3es6s!gC)TLI4)e7m6Io)@b zg-K=kKKB1L%fssbqm1%EUGexhy54oA+s9J_HC>|JuT^SgG%NhBIK6wHpLyz&zk}8G({BzF1f+ZNk<$Rf zq-g)y5>lQ`Q2QRiAYKOaOg?~7GNmnVjF*7uXHZ@!EVhJbauV9)!&p;_r6qtZqeyun zaujuZLCA-FqRLhFzDU_bTYsKR1oypG%@zJq{qD#f6Q&t{#{R!Hd64~olu;gz#8Z#U zjptqRSZzYrvb?-}b=RIfcbnJc#^$^LXbKv&}0VW{VkH|;y%-IIM!q;f!FsnS6N=SDC4iqOqv zYBKhJFzFcLzbnkX-(CHm(z2d0e3VhvAh`7EpPxT__N(w1%VXcG#-&)JY!>laz#;C} zJMnEq7#k&Bn^U{o=(XrwZczvzc()HK??dvT-K{%5=up11bt3dH>6%jpg`pTlt?a$T z3c(?Nd2{}RiA>&y5~>Li@-T-L2%zP@{afgP-W={pM&y4rAyjRGEKS;qrQAqdvt{i6 zo3sCqGRlLNW*m9x;<+mFbNwkxQo6N#v=l)5oi#zPbprPB z_;-E&x@1UNyylg^SK_FZr*|Wt^*FqA<++x|TK&}A&5En*H;3cgWS~pd69t5$xmM3E z>yiMnMIlsH7?tN;Ik%d9;3ZKx-LXoNXc<K z&{mdOdu-=4AXo-q%Sx!Y9Q*&)>HnjQ^2j8@mBkPr+kGEe9(w|E_Uzer##6CI*{tH% zhWBZc{c-^PJp~c%I_Iv*d1$)2fcC634hef6HyN1Dmxp#GU1dO2-_yQJhoq$ZK+>Q^ zLL~)h1*E$>MY>l+Ktw{3mhMJ+7ZwDO4ry3m>0XwuUD$W|zaQ_Jd(WIR^V~UeYR1SX zksMvIEBGVVv#KW~Ti@_wl`DrMA(5?U4dk*B+Q}F@8Ih{|_M)kmR4#+cFoCrUmeXO|8aRH&F+Lx zVr(sfcx>7rwsd@9QSM#&d+PGD=QGFAbq=Sy?RCkxx%}qGqv^tJH&9ocG}AqmAY^O& zLL*&?^AW2Lhxaf{UW{s#rMl=1zOjC{nW&Xk!4))=u?^ukP?QX*x)QNl0L_`;{vO#G zY}Xc+>yXLrsmgd>`}@QBH0(nuj-we9ITd}B;I*+%8>$0mcSTB_5cWe+c)EKcu};+w zJkD%)yE4{cLYX)IS1AE^zW5p6fU*t-j^&%kzxhoe@3uGml6b2 z*T+I`iP4s(x}37EFw)xk7v%N5QFXMFo!^?HCcF40JippWo?(>{SY_t*f9g`F z1^jKC0oEiW=2|4TbiJTb*;U`H;8J(!)=@V}32KuntTvUBx`5X)J*KJS*~&Z_cL z=zvp?j;$9FsX#^R#He-fLyXm>=w4SDK)^M_oBZXkQwDh@S+jghERv@lD(vWeL>h94 zDs)yC4y3#l*ms79hcb^@K*qMSzh1Y?V&+gX5(*^SI8*u}03-C@-nWNw;GFq(=rtoQ zFRe)bgC7B6-yWHPbHzW8j9mnQ7Z?$v{*nFs!jt6zC=wU8Q62mzuuMpQg;1su%KnEQ zV=58hgmi$hX3Orca;N2WBZ=o3gy!fu#y)C^5YG$L3uK7T+EH|yyi_5}?Zrk*IcU9%y$*SC0{nwiBYM#dU?xL@e>OY^5sj<;Q>50P$ z3_8N~c)fu4tcANm92a{Le}i|Mjv z8V$m|3!|;R-8x^I&fKFj_?>9un zvtcLg4RJvv?UDr8@714%Opg`zWzoYZ%Zq+aW-D|B(T$}o@rKqKpfb-gz5U zOJF!WsY0eEZ#GEFTUGQkIac6{qrMmHwkpq0$RH*PEG%f8%Ok~hR50(m_)xQeFoGLN z{Q0m6x6IcF_W$~R%P>wWNQOXbx;|5E$cAEK0<1(4;T|zjk1$&quvd9@93iW&Ajxe; zr;(BzBCw3E+17FS5puB@VgNy_B!+FSmJ*OC94{TeRhMj=&Sv4L17EjVN@^58$P8F1 zK-plcv23^_vqGASiBPeCJW>)|{497F{oiYLTxP;F2I`M1DT1y^8#K6xY>)@nf5c@H5*tnc(;c$F|E+ht2-N1s> zWeDx9x?LYQ&7nLjr2MXM+2^=5TL~iwn792^mmitvT>+HP?StLl-C9GwLntj~G8xPm z?LoVP3ZrBBAJOsbGs*UKYqzn6J?`tOW}`1ZtlC5(Ob26%iR>jf1z>~X#*xk|(g~;? z&Bge*V!j*LdA!%Hd@FelC;AsmG%+wL0dirofy#^l3wVnI;hnVe zlpvk?!rOJ~EOVP-SyC7NF5B$qH%2KF3lYpH`1;&=Xzy`Ap`HQj^6=ehW3ibv^QeD} zQ>~ZTNSO!xbDLEjr5XtB``FO7)9Gn<7x$>2-mh&PrljXx-b&f#!LC`JNHvxtC)m(%*CO~|10y@-yhKiRHSs&?Egn^clvkgG z(FDbF(9@~wuCu1M1n(R%MQ&YJ#+6lE^GW*xcqgulFJ=S($ExBF^{UWM*{}^iOFFJq z+KQN1iNg4!X7x8gbA*4O7{9jh8%X`gu}hDGi<8S`D!rz~jkCM++>J~-4p83%fWou< zuIZ&JzECrJv#}qcsOqyI6`82Nv+LF6RSuUK%8?hlzv3zx^>;%Hs3>wAo-Zz6^v)qNh~SO4z&RM!TVy2lgg z>~&nfZ8YXqcu(U`qxJtZ%y&3|3leZ6##G3gzmuyR$0~W&x#NBGUPq1icF#Z|jgSr_ z@|k1l*ve6~e87x||NKH04h`CP7AG0MxD;m$oyeDl@w9 zfVMQrZ0&oOI`;yL@F|%s3@J#_MA{BS5AA9}aNikspz0Y=y?>HUQUpb1OsE-OwrV^vTbab3?j4D!$I67drpB$xeOz zK5ionm4;7YWFo?IJW@4!U9-93^^loDcb%shJLRjt`k{?w)>Qk?C0C&f-7*DJU)xaM zkQF!Q_nD%P$C0!$wj}KGXZJXS+ONv4?=9$cfIr0yjnWM1(tLZ7ZjOCK!3^tEHeQQ} z@j<-L^Xu>9pZqE$XUY;4?1S zcgM8hqzx9bng{~S1Z2$ZveS@1q2ZEW5RGI1$VRDKDC_kDG#MvB!X3@{_F1k7%e#6C zQbn@5O$(gQihHB!D`jBeC6`_q@_Y|#ns@)4JuLS3hNpTwWbNhV=vz?oGATV5tZ%Q) zN5fVOAYW&WNmZpiR87X0gpr@VyBE9F3e0BD>?RziA%7j9j&MBLbsVqvEgojNOAv#& z?{W}il<YC8zc51!g=5ffV<$Q65*@3q#^KN?f!5S#2 zVQ2(v5Ev$#2%>RuPTe4dS=*^WA+U|;?^}C7lg|-h;K_Z3 zG55Ob`OP(k8yMGVEj#_n+2SSMkax@FVz%x@0%Zo7o93K}9)fX>aoa`x04VA|IOLeV za*P7TXgLT{$>>Fm*D07k^Lsi4ePQ^f-J*ES*~ULMny4dJ6f-xUz&&ez9ahHfe*B+; zRgW}08A`RkJ1V}`qV1;g@e{NiCa!B6GhP7fLBUqMwaI*Pc0`Qw0J?D8bk;sUz1 zipI`q^Wi7&4IfanUxe9Z5H`PhBy5V2m3=bTw4h6+k|F;@w^=<%U?;>6?!x7B5-JET z9XJ-?cDtNIT0fUyDw4q-I?l%lC6G>~BUOhtnP=!C;`a}5dn?mDtA0t$Ar-)&x0r30 zG#P@w#?-g=YI$RAU$ODAkst$!zO*-w4;{=U_nf<_dHCnEg(B(45;KB%ZXLC@Hq5yqIVw-{t4iz^ti|MKp{*a+OS`6vJRdvu}`bNaGf8{*Wru7jT;mKQL zn9{z0u$ugBa%FurzkVD^-Y42LiD`lT4WcmzmvsfA4UL9xmJR(&YG6E0(N!!#@g^H0TQo3?e}E54y2QXOEo30tOV)#Vr|;A zhH|}6MM{yPDSmLs350i@LUt@qvc7%a&0@>T1HP=&Ung7Yv(Qt}RVnYLipLBl%7^_j zc!oVXWHhyXM|weIoOkHo>Ltz^=c5jC>^A6VGr946s*YFHOUFlMYP_bEzdFvOv&Fk6A*rh?`yWH9FBPb4dAp)SuD;%mAoR)M zs6u*wq(!KA6XqDLPM9O+^r5lW5UUG%+#=MJkaUK(7L8P>GxR;@n8;WqC$H<7yu?IP zcA2RSyTD?>X>;anuq4}N<9^OvJV%lE#`=J+IQzGT_cXeocq6duji$^ZM#I--OXVqt zgwdJ#J3dq|^+roC^F>Q@pAVte+k}ykge`8DS=H4{?tKNq>&5wXm|~DG*2BF^VAKY#ifkH?s8_yct4$a(T+=Ws!-zQJrx)w8JIYkVHO?FVrg|}( z-}@rQ_snTvr&GW*Iq2%4SXgek<+7w2!Ut~Fz(wlw#a#gsD*>dQd0D^DvSDmf0Fqy2 zATqP0g5vu&48C}Dh;=6LTS~7JeVI5Y7bG9e%vCxK$-RCrrl7fXGvP8mxfX;_1*U2f zEbK|}Yp5j=s|KdC!O{oFX8T*?Gq)B0T%BPwEZ4ezAb%4EZ_pdD=_QpfJ)K{6hOsBr z{rs!l*j;f>Acsg(R?6^8L)FTp;{USGV!MAIGhQyimJ~+bZg3-JtHLmP7uG@yYau!l z4y_pcLDyZnm^y>`Zg<-HXYQ-O=6;GTR=fI(P=eXKU+rsWEc70XaA{{|H>kB>$Yk)` zP$>9&Rqd^T)qQd$#wbW|rJ%nCw^ORCbM;}Swk~cyrRe!~(m1i(J)E@;FM`HOce{JZ zzRymv-B)b;D&8h|CmWCG6NiCItjCO)U+A*DB)5wJXojTm!l&!=4;IccPK3+@rj4}) zszO0CXn~t&mYD1xiDj<(_z#;ky}}YeNKZn!PY-p4m|t*k@W}~$HAo22eApm<#T93(XiT>b`Njeo$ti(U4}r{2Q)~6ITjPMxT*&AFkVd>4n2f&B_ILI4of9XF51@&!rX^svS1ZSh1} zQbe;RpXM>)&h)I{MFN1OR;+e*tN+c(LjE`TY8pAB5(qf=A1cKI6^91^TVhqaPech4 zK+xwm%fxdf=kx#|hhXxtRocmCe5i>U+kL`MknmyE)d&D`Jjzrz?5cZgMV@Oh{fE~Z zS+WtubX~i_dCSG^$-MJjYB}*c#|i+@F=y30sl)+xeH4!Cg(20({`RrMeOf7TVvubY z%`4msdNs#V-cPP3mzOuuWGtV6aI%*K08k;%EOnM7eqUt7#*0QyIEo$D!sL&n8>yV& zjxVw)n2TwJbb35CJIx4FHT%{>Bd_ppK@-RSUlJ8{dU zJt-QS6ZoAGJisz1_Ll))yN6P@bU5)GCpgEeZrMn!-6*uP5htpxCK3PC#H+3DzHz8B z42#R4`u0lLHa!Ti9C|WH zrmh71R-0_&9K0<+?y*#|2@jGD;0k|~Zp1K|oyC+$Fy|2h9rQI`lJ#>skc;R=$_g?N zfy;06B`wA))<{PXP!l{kPg%I1EfeM&kE7nhQ8#Y~mbfY3=wwJfPNx!k^OSD;%x?SR z@DJs$fZuc0Fq~@0%OVZaLIjzjedK|cLb}I_Npn200FdyPny=z19!cOPXKd`EZ7Kr* z=tNMS5P}HW?4z9ALN=k$eBNl`53E3q5ee%S7aj?bov*k+rMs821<*lF^J3JGfclQU z&*|w~Pk2%r*B}cBI7xo1tjPRKDSu^r{QGw_t~yo_0gIJ;2}2tf0B&%g>yKjRB+=+P>A>eTk4f0UHsYr02Ggu9l?{+W90GNH-pc8ny-&R*_mQy6b(*s0MiBt) zKB4sQB`eA>SPlbD;vyX30gH+`B=kC&R|%??0UzW50lFmrfk{9FTOHj6zHKJHm53F7 z6QBmPGrpRfn=kd~bo+l0mZJp`7>3_^JjPolbyg-P-vBujbN*R_cy@9d0$r?zd=iC^ zn=9Z|L?d|~d)MkjeuHPVaAO4VIs%0^v8;4TsM$q|{Gt0T48)_XF>Fg@W@J3a(ma?@ zypE&PznYV?rTrcYQANUNhp@1-$5!};Y-Img4o&11>~Yjuts(klVV5y?R z)emn25m{tS!aGkpiE0ArMC7O@92R+lR6>mx=Sc_omd}|xiZW1>T4i@woU^TTI|6ep zL4mQBc$Nx;AC+dy4>#))XC1zIEUVx;D2$PS;^7dHUARb~e9Uq=?vJ^C)$@%)t>GG-G8-VfWar(et@W3qoCclu|b+#fUC}I z$l$Hs%QG8v*yMO#nNY{iZR0@YQBg$7Ryd8I?>pGR3HFym=Z!@u3D(tPZt?S#XGo)u zZ5Kfs9dH#cTLQcrK5H)7oo?C%Y*6J2YOK~}*$yxN4m&&#y0!%JGn5RtPO$fTssCppD*InY{@E+{A z<7t!mQ;dHzGSX@J{ebt|jxW=WbjXx9QLF*?(}+H_6zwcVXrb%aBJW9405v#24C0SZ V=h0!+i5t)WRYi?gRq~eM{|7PU0ZRY? literal 43370 zcmeFZXH-+$7BCv%fC?f;KzflJL2Br|DZMLAn)DWFhTcIvV(2Oz=^dpUdI!-!lokjm z9W)4`V<7bQ?Rf9u-fxU|-{1G=WiU*#v*uiL&A!&0%jo<18q}1`lpqj@T1!*a5Cpn3 z3<8lpyG#K*iB`YI1-vo&s+sv3c{%$A*m*mF?mBweJ8^1x*ts|vI@vh}!M`}kgFs|| z!i>#)&Gd9-9lSh*?1*E80zIAp&>)b!Qs5Ii2RA2QPJ1U8n5P2QR$CVrC(KcS>!F06 zu-+3DCs&weu(y*@u)eWFu$zO7BbSmQr+lC+fWX7a*N!vL!`;(IHc)}cmm9<>f{accXCws_VVETy=Yn3|E5Lcf8zT$tmFTtMf88dLIGl+ zMA812sQ-Bc=nwJZh2jEVE>z#i6VP{WK(YV$OA!hJ70+m?-Zc)KTA#g?E?|-&{Jr&O zmd{YypPX<07<)|qhpLDz>9_hjtM6iu)-qEhY=>ZKB2QszAIMedN>e!V?p&r&{&HFK z`t?6Qoo8E0h*~Y_S8Tqk3ZKUv=7`y*=WH2gSG}tqlJOA*%rDA1C*WqRb0H!gBFXD8 zTKhlC-IX2lNIN75Miwn6s$=4=C(^I!f+0*vMs(I7g5C=~z*%`TLH=2%k`5Fb46 zUxO%K#~*qI{3K!WlqB~B#-wMF%7Q@3u|I=cR@Q$M1ZF>GA^gVcEIu5~CURJ#p5@8i?qZ(`e8fO(RGqp(Ahy;{I zUIT%Km4oKYMM9dD6)jjfPH`s8M>Wv+iJED)7CjotMB=<4T~9DC@K&ag6JQ$eJi7h^ zd*J$1eo)8;20AYyG=&OdO@bMK0gS57#K{Twa{|77j`_IFy@2!o;E$h3VQQkZl8qk<4Q#|L$Q4bA4vG@MuPku%hO__UK3yU zYXCDyrB~Y?tS!*Yv9GtyIXiW1m|DZ0FZhgvw@$MizKq*@IgSRDl0EGC@hgFWsTjCV z#Cvf7cGwxP3weG@EQ=Ej!xs&zr8TFo?&V<~$k+wNV{xV}h2OeNoaH7bT29BAh5==i z9|{;p#?Lk9j@$h
}g4 z%U-N|>GC>Js7{gjeZzMHtJ_#M@XM8rxpW9QFd(sYGFr(@Tfh_B`|h{McLaFIJM#Y#%GH>` z;z;Y?-s(5Z3#Mg4@;|E1FT}`wgLQvQ` z+UTDJWe%7PSm6a^2EeiS3$ir{|hkhzW@t~(arT+(v_nNVY+6v z7%H<}OkPrRF4OQI_V-@(eSD!+;)ALG*H96%Y>Nwi#J~QR8a*z!;Nh1jaI7|&-+!KF9;>gzjjJG}a zd3>Sl;!l~D$Mi2&^i1&o9txnokkaFnfANP|`Jdrs)Bobn#gJ9!b06lr7eBvUoQC~z zu_RARO%lBe%^vgc;mx~pvBK7jr}~f!{xtlfK;lpT;m>`ZIyCI+1v33TrBaa#Xj$I8 zQN|1YWDESzceudiCrXyxdm+KcfRKOl$CdH|mk_`o?g#%^^Qt|t2DOVd#4;_5$6OGR z2Jq*JKUr3zr2*}Zf=!Rj87nrZHs0;8>i$`C;Upmemy+|RH*#zeG7X)gL>#j|4 z8fm^)01q09;-O7QJRAr#CVe|Y_9GQmy^q1~;|_6z9Z|4O+5&!i z5v`NRl$&ERkd)C`K$U#nSi2!D8cEN*{GqztviNb#NJN# z=WgAp_VUVwdNTPaysfhH!pJFe^nO_EJ1!VGJ{$?zr|)e^w2`#`A#%Rs)F#~)#mL7WXMfi9h zkzM@5rW1@0gMmtdXtS-=r^M~E5xbCYf)VWTUxNwnaa|NvozJ=!qg<;Jnw@p6OwQVL z7M4yZ6z2LIq!lK#yyCoAY91k%z$|L+Zxpr{<7>{}cB$@UBhWo?c(#D(Pu%dm#fdIB z)5?i?^~p7}_wH$BKYV7b6Mhsr94-f*p%AePGaZk%NE~|Od<8T1glF^O8v1HH2Dfny zby14X0X#i08emkl0u#IfCc_0rh=&#SbLXt1=Uhda0x_jbF#Rb94w9vQED!2{mYWh?C1)}L1 zM;K*$%8v@nj7&C9JN7*9ec|L{E#iDE+8fNdo$4%ZeI4J1*cnATS4b_T>(|}hOPCPD zMw^SY74WUxJqdy2uy*0hM{rGFqy=RIFotj29D8E9+njs))!sKP8(1~Pl_nepoX2&^ z(PPjF(mV}t>+`Q8ATpV#VumI5ht~Zin$Q6cStPJZnbjz#bqSj)Pr+&jsK7$gO6E7J z0^z?G=D8M|n>Nxl&)eUu541(FJd%LP@2j0*R@utabF4*~!$!8b>c-7K9Hwq2n!dV{ z8TjK8=)(Y%FnYrs#%;& z>Uui;aoWBi54Px_BSe*BzVZ^|@D8`2UY51!m;Q-cES>j8U9aUxb3++4d>$hcA+38; zf2k+fz|@LRY2)>V?-q+4 zC;E$K>AfFrJ2|Uk#NLdM9_Q>V%5-olRj23BLs^RP_>YVXTS<-i&U-TPML=*A?qFHF z-N&+~P-}l>jSvaHlChGp+aGxM5FL;r#u5RBTOiGy_l$!>OVjS=aNuVuCZ4y<`^O$U zL9P)f$b9FDCex3ddibczpVT&2$oDN9qN@jE%(YxpL$r}KB2njR!Fj1Q{DXU|$>Vh^ zQ<8%fR+`Ry4Q4^rudu`0^RuiiO8opWD@ut6Da8r-sUpIHJvnLnyFo!{t*v+=`gx|E zt#j^q*;+k%_wP5~lK@@Ma^1U{ql#%bWwx%_UNUhw44Nie!ECQLY^ zRh+-vsP`pTT37U5gwdT66$4adef&@oB*!o(qPHrzB8#5?M84w$H(ltZ53P1Eh=u97wc1C= zn7?@cS=*twb4n~E5Z266c&;C}_ZPxwf%{m9mwBJj02;N?}{=c|XT;M%t{LmtuxG*p7ZT4==5vWjgA83m*g@^O-RWO;WoT7y^~Tk=bO7Zc4hG9 zHl9J@%uj}jPTO;7;hK`p242C=_33BbpTja!&Waf?>8IUH-%f9MVp@?(7!Z|wmGZRC zAK8`mno?aUcJBbe(Hj_;P54l>VB3n45$10!3XY4bSD(7!&?Jh{_6_O%KfyfI`BW0uN_HpAdRD3Qt3k<53>#QM?Hc z%UyFc*#3RwTlhz9``aLh5cY$y4iZ~$w+7j6BFf%`H)zj zCQ6wvkHe;SveA#FY)8tY`tKawVO1cL`SACntkRB$Mm6#Z=>{*p7CSn*R)uJ!33rGk zJQwFzpdXFEEEUi9z0~p=iZR!H-uUhwpDkbB=#~%n2F*#YcSSk`68|dI_e2-@V?-%8 zc5hU~bN)|3#%fu>5vJa_q*`$cQkmA7#BS4DT5zsWaB7VVaL{cx31<8#@}wLHMEf$P zSL{a-QYmm1Rt}}Oy-VOy^VNk6D5aP&haV9zhkhf`XWulBY?-__0^TM%`M_+T%hiiwE)j{_E)e&xW@f z;~8H^F|DckqK;{R%rR2ZrlRz=;C_6dle6S4s?L^h4dnDfpbYO6R4q%qOzPWW;~%iz zLzY^s8i{Q;PUlEplm9ggN<#}_uxI);_kYUnB_IRCagae zmxdpgwocFh=s)p=R%MBNuqOt5vPmMQmO9kBMaTptu9p$&a z7zUO3n<(^`k?>nsIx!)p?{MLc^^6( zp)*@q^v7gdWox#Wo!f(Rx?)2Csqx=5X$W(foyUa{iJA*`ag+O+RAln{#g%_z1p0AK z&)cY}cD13V37w3=Fjk}7p%|vL08MH#(Q757v(sGHB(Gs0a%uQ4-qHJL6l2iltK5Ko zmqdXCuPg=mx1oYBuYMvP^tpa|adva$q^n|r7DFv*q9yeTCPNrUiR=x!Dltoajc}i! z_T(d!cFejPfM|1}u;{%+^>tpB%9PaQ6HR8?!Y&)ygpNwdjN<)IkbQn?0bezs#DQ#J6IkImHT7&dm6*J-pb1W0U&a{uuL>fF=T~&U@K7 zp$5fs_w5wcYriy!M$Kt+QW|@DJ`{60Om}@Hg<#m*&t=Vwni*M1k7Zd^8V_ABT`X0~ z4Web`mV1b~@p(%JSG^UTUt^9eUt~|Ket4(ghl6pjP=GDclB@9*IQULSV1~8y8CrU? z^X7(zeQ3L}h3jXtW)D+$rC+S$Zew>Ums5LDiM=9+#T8~>mybvkt1*xNgzZ*_aryIB zi=~bX3j6)0YwmJ|<(zG)!mW-B{jQ>yGO(2A3`mhck=q zwb-6vB~2=c_!qFX3PQm`cg9DV!5Zzu(~}bK+pPvj>7Wr%_QMq`Z78loiGPphlC$eA z;4GP9S>1LKVSr3bQ*Gxmk}qXn>0ZbON9dy*klJCgXZtZr0U1~sUH>Y1vCR6}k0GKx zJ9bU(NFGQyJF2GybC;~QRE=xtk&0^QEdW~4r_Ze~7Mp&ek6bdm$AS7t&xL8^XK?AE z>WjgN?{+G6toz%sR`Y1c+ku8EeYbo!>z;p)O6UYn9Lyo;o&Jh4 zl%#qZMXVY-N#5%OK@Zui9L?!60z%ARQW3Lioiq$R!6&80Rq! zJ@KL&G$(S#H%Gv<6S;k?i_aprtZh$~7D-6^TJ&5o;X#P%&KknY1z7k)KKGK0)U;la z;~(NGX4++e0y8bFR7%;rIbzKi0Rl%4{^V`_s>$IqDX8|i-tPXww3TaFNTVQLzC^hkdSL|Kq zOy)IPGWTy0{SHiOf=aE(X%=(Vuovuny@Qjj3(nf*coX*_q@TsRF2eR?$FUp{6k@3{ zkOD5@?fB_yVS(we6MN~3I!NBzI}JPuv@>o0o8<<4uuK>XUn>9c`KPrs5&br%hjhZYwZ`2twkm&?1e0O!NeknUUPR2Ek5%A z{|peMf6!xK4;IQHJ1KxVK#!wiimB<*b|*fL>lHpdKJVT*U(IGheQP!B7U(S%EIc$v zN{ROPOs&Y6*L=jV2(AtNx$xs`VpDMgIy%Q9666o(-?Gx-4j~HDDoVMgk z#~vhGhwDK1+U4vYFxerB6e31-G`14W?#Ut+YjUL{@r z9UkYUCSYIoUL&NwP^btfJZa~|u4S0J3C{)e7!|e%^P74`hHE=)k7F4_Q;da&CX$_l zvsv&<17Z@Im{sAfIG=^tJ#~&&ys(EI{>1@)8By%?*DXKoCb@0f_%0g~w&2e_ilAZi z+x6@^>;_@hiEO~)IlPnSCf`1-zRs;GZphg34qTwqocRu_q&{0U_;BYT(NyK{Wya@p zwxMHo9F0~OV?;ze6n5(n5Bn%oHj|mrpXduGO&FB7h#Tbs( z`ZBU&!XPjqZWzQ7v#>3Q5hgeo1!wRma2ib0OzM-~6cAiIdn@g7Ej7k8F*@-}Op3IB z5_ObSX3$w7bHur|Ii8eu7y?8aiteR1p&0hlMrFhQi8F zCBVkAKc&Nwti&+`;nmxc)cDa%UDiU1yQJn<9Aejztk$OusBgHPoEnUh4_gv(LcRVr z>OM)YnAl6Ol;?Wvib!gL&#WZ>+BDKX#T zVlO%MXy5JsLNTyY$c#oAk55}ND0>kPOFLTgY$P+2xUBE6fZ}!(YMvl97Esk{0=FRI zGY{bHijSD1?A@7X^|8MOe8ke@1tH;VxG|q1`|qfpPX#iv_75f_BV<~7=d&9J%mAi( zwSYmOVEFTFp`Q^qYhJp8gopN3ExzqGBc%E$$hZ`g4n0}hPP?xD5 zb)JW3S#oGYhqO@239(+$OSGaSiBD93_-?{5ZGAV_6GQ@f*WPU{$RC4~`%D2^2sNl+ z8C(H7?})ml#sU8RM|@F1io@vHNEUs5M1HVW!hv0uOX@j$1ssoXO?Y)BFxdzw6}^0X za(cW%x~xF-0(~s&ezn-{g>SVaAEf7LR~Fy-0PdKY!q~zIcTV@zLPDtcbZ9=4{=K~b z1TriJb9z~~5ISwfM`7=-J8jmk#%*imw;9nHEIz&VZ;bC^4+zSK^_OW>L5y1=Sf-H^ zE_>=p+YiNIVO>r#SkpM2ST!GG%F~@{z zQn+);$4YzpS~j?*)LmIH6>(sl6lt zqVp4p&NE}ik%Ml~(uovgoAYVm$dv)+y58VsA+o{)2CPTiG+5?%!uzf8k(gwO$znqE zgrTIZwtf{p^bs_((wBrl>=6*2jor&GIE>K+flhQXB@Qc_^)1x-m;*L4V{km`0{kq) zfyWx5HsB5~j1Jx)jUxTcF(lk#VN2?m^@v#7ORtsRs<=4_2gmkPfIdLn)9Ec|hO^wp zN3e%)YDvf-^uF{X$6|_|54mmo^tb#qJgf2hTkomzx`_0b1Lc-$m#uP|bBfGx|3LZ292v37*fo$JhOI+3@1AQPZ zK6UJJUvli=I+xSfSUvkYB21J_s^!)j< zx=gr%PKt(+H3($1*Vr62rOSL2KHKUkUaDRpz%tBS9piKS1Xku4HzS;x_~j4X=`RxJ zXQhA@E75!;iTn~OQrFG``ruo1dq#6EWCMns_ zkg%Q~hH6lMeRRF{>Ix_l77}cwv%yOp*5dq#E0dOMsgI)m8_$AOM5_2e zU{>e@af8=a(i=k{`tR}kmYrreVocAkfQ0<+h|c6R_(8v;~qaXP=3iUt&k59PDJ4V0kMYbqhuLevVo z-2*XN!U9BphL&T|?5S^;vZsedGL?Ir?=Y@mQmG7v$?wwuuFJMPmJn7D^b}CAfvE^o z!&gzvaFW}%`akh+ok*kl-ht0utg^SITlB=Mldq)L5G`)Bkt%kDwCp8OJ-h zYHBP@=`d1>=`1xSsutItsLXatS3wg8m6A~|k4N7gj{}>TJOW6?brB(@&MHJ-*U7D= zw&MUXO`~QE_DU4_@em#s^vqcPafNPA6HVVA1KNO%0Ckf_p~xemD|P5lve$ySCL6o! z_H2(rhT^1~fb6n%o`WkKH(#KIN0@g5C1~DEl-fEo{;yiUtJG;BTtobc=sK=&CR9H) zhV<8+>cp)5)fJXo=Kz z1RJWm!;nVQXRe3OM{XQP6W=fehPX(c9cX(;vlmwp?uiu<>@^1a|4Pm zCxNuVEvFtczwqxxYBJ#3G$pWQ zY;R(_wF{5YVTG+lI&gKme6fqvu1KZlKMOVIEAgvrRTT#upoL`AQR`vCHg0TAX-UbF zn?DCGgk@xUe9rFB1A`A9d6a*i<0G$pWo^%%O>&Cf&P8R4Ep^IP{^7#k@HiV#dVMtR zCWibz6tFnXpj&=>sPxUSwVH+ni&wviei{&fd;#v_U1$PFtoKO3gDPb# zk}ZbeDb9P9v^9FjJ#b=dpt~tu3ZqrI>p`V&q8xI(uG)uDTs`=~W`Xy>@gpXN-kKnl z#Lc?VhQ&%J-Ca5V6>kA6C4OrGZ78FMv3l#KmA~e3)zISf=>F)OK1W$D;Qf9H@h-Rc zlD(zGZr*Uq`H zE>2nVMbDgr*n&-%coJlmFp^XTae>}UReG1u3E(Y6Ao_Yj2CVo687pbSoMmy^^Hy`b z_cqkNqNVu9{?CBa@xK|M-_tGlGY3(~n*b+A9t&>uCp|uym2>IQsaGB($`a8tc)t~2 zvmdloB=sRNE>L48eNKRlsvTxP!<>+~AfnJ7>WBPcE<%T*8T9@(t;z0T6?vO)4p#4yUx>MM;?WlX_wgkC=cv>Cw?`~ zSN`0~l#YEU;|G^+5>N>!`g>H4Z>_E|`5>`< z;?oAT;jkD^tzF(zI)b0xs8hzE?u{aw)WUqsUK04y7j1)+TlVL6b1XMX?rbP!Sg#*y zARWQTQJC$s5-kA=>z~#tLak?6Jtr z?D3ClqxC$;<3>o4me3$wMSgy3Q$t;^Dr4laI$^SLU;);p=wAG>xh3Yg4#&Hkx2bZq_JErhu z)eEU8-C*iuaDZ8mZmWTTvdpmsh7}rp7L>O30$y!28gS0zR8WJNNN@ap__6&~shOTD zW7UJv09A`_+_JR#!|1&pa5Z9L;MRy{xy>94zU0Q%q(O3R) zoUUa+)}!9#{X^}M^&2&AOmb=hv%i!Uk<8T*7@t;@Y-S#lA;~EY9IHdFoAHt*F*&ui zK6mR=RWd2XXMVB%HWR@Omc3`qaCsX(z7`TCnL*}gj>MS2s5oQpL0!E%!*dNj+Z=*0 z0qI?F2p<&F4;D!+5mZ$KFRYZ-+M5Oke{pk}oxAJ?)a6K&l4CTq<{$Lys4Ns!@?*@l zzk2We5Vk2TVNg`M>9B^Xv#%zMtFCj1pzJVryby}A{+cn_rdz8U4fer7OJSz?%ssP= zy+~pig;W2%O4054(RIQsa5S69-65=W^vvwhp5K_VPjeYrmCEf%r-a78NxN7Vk@$VmV) z;o9@5Y(`YBQy)iAD7%^U!x7drjZkT9+1;7(_C%ED)VY*L|1Z+l{a5os|ITyp%5mIPoy<8Y|bs?TQvFY6s8}Lgnf

6Dv`_-z(J&$kC$6Oy8}i^5#yZ!lPLypGA?Xv(fI6ZN`1S%&n4&*a>urjnnd8=hX1 z0&A$UDh=qkq(OPuSn=J62G*Mm)*2Nu>vcgW*0dG5GXwDZK6Qu{7#?U!M_17+wYw0Q zvzvB@oug}lfiVHpK1nMi6D7yVA}7~#!lDF-V(=vdet?AKbu*cV(mN%SFFM(xA- zf!1Aem_R0cG$a3JY62{=8WxR9OSNSQqn)K zHi&rG%hUgrc64s#IJw4yCgL)i3uL6 z*ex=l6_TIx<4M`nlR&;}zyc-)X`43+f*R%I3bGYUJDq30EeZl1ZF-aOk0Ot)n_Ezh5Q1_(=hZ z(zmEG!H4>L#sn5%gMe!-QqDczp18i=3IT9Um-w(fY^kqP#97`PAFA!(7Cd6xRxz=b zbT(BP$|+ypM>>pSqioO?^BD~cLSTay7uINM?X|GtkXfqW-5~8a3AD$L`Q2t+d^_bz zF}8ya&7zcZCV?$OkktZ)SML?PTKC=sA8}lXz>S;BLpR>P%r_VK0SFoQ!cce(=#{`O zt==my+wDDUl;2uUq3>_m`V%7NZ)-Xr{X(*Z51VaX+svIUy&$nz!j?4`YaXy@r}Q7k|TnE1_FU zQ0`mqJ4+YA4$gDO{R1+osuG3%2-Ds*?2JDDm_l7#xs_2-!LjASIW9fwM62x@>|qrH z{3#^ZbSQ4ZfZ2IHA=(oIio6AuqVp*{Owt{gc(fS5J83wQ?jYOYmy;Tj&CeqChF!M8 zGolNgC@6-cFqlgHjzG{%*EPNI`F?vOlovSrT8{O>HqSaCy85BfW+QgP0pl9&Pww`c zV(J{i%PZ33!x8Rd*f97&SDhNl2sl`}((2bshn|)h@_a=PO)GMHKL|1Hk74M=>|3v{ zB|-F~!@CR`nMWR`^&=}z zq(|<&dHV@1jG$Ef+{H=0bPWia^jwq!bf2Tzk>*?@Tc`1tyz_bozdh zx!WvZBEBIuOF=w?lp!yww%Y0~Q0y_dhQt~hbj;-Iw9o1`f?)hv>WN^sE>%*(hJ3~h!?)j4#fJV)Of0oXY+C)RMjU=cVIck77DYC1oDk0 zY25sEyur$H|3Pr5_{%<3^hO3QyC-TfF}_Oz9YcR@IdLQ`yo-lEp2fi{-Z>Xh=vY`i z_3IfSp%t!PHPjwT{ozky(iXVRPd=LJyu>=Tk#M5IN74HpQuQVZHmyO)2!c@%E^#$N zA7(r+GqKZ+$)L+iL1Y9M(@qSl=|b!0>l}Apu)cDC1C6 z3<<6}m!6e|yzG$)XcGqs6YCv}q;Q`OM{$GXXqX(AXGO$q>gR=_*SBwEq&IdrWTiu> z#V1l$LIj5JO&T*0wuT@dB)TZSG|FDxKNPo~OW$ug8WQm(#zamiHKx}FrAUWQIKWrd zj&vP&kaSYa$=fqMlJ;;x2JMl-K(?a5zEPMphpy%?aov6n$eATGg+Y^?=#9ZNM|%s? z#J~#i;rlSRD3661MI*k)95$nU0#HP=wPf(p7mstYe)FWNnj;83dPh2-`gP1xX1CGR ztH6OB(6vZHb~G6<946-7Oa~IC|2@mzt7otfJ>W7;uK3jo!Z6+$mVR?uepnoK99JLT z+YN5g(hyU%nMpTaDNJhwI&HND&slQQ&h#J6`lJCR!RPYdO1O@u9Sfk>pf>AF;&Lmk zuw#!bOQjSFPzkZkJxWE0d~|!Zxu#Kd0~CAKc6(|0YH~p++fT z$wzdA)@MqdJx%Rhz{*mN4ivmu7^wKmVFNr8YQY`s8Cwxp<8oa|YSgC)pxp$Zeb^f~ zBT%dp-|;On$9cVuGClA%73e{a$t(88z9@c5ao~&;0=AjA4M$v8ZWp^1=S!t|37$>o zr0^aQrXGQhr+3;V=C0dyEzO0DgNE+S>o)22pMvL80m8Kb!l%3*&L56?I|8hEA%3-U z8Fi^Js8m;XQWR{dMJCZIh5ZWO?7V~3UvWKQ3<(jhPKnM5G-Nq1liwA{>kxt;B#n7zd?a18p?b(dkak zg13^QOtr-Phti^Wr}ZeyzEFb=R{b?PIq9E6j@Fu8^^>CeJdCP1$0U!{-AhA4R@vaz z?EKV~EN-LkNYQc47LvgsXIF<^W>o|9rW1=mkt;w$bL3t~JAixyV2B@Pn0+LdMr{Y2 zkzV_#IFh+2&B{M!XV<-)Q4<#Q<7H94;fnd7zTipQna=p$*cC8Ga@05L(K*IJ67w1h zst$a!{Fc0vvf_KvBZ7GbStM*enFO@am_(LBMEx0XY0Kzzi#nRPSr-m}jKFiMO9I(_&su5;xkO+>`TqvG3xX z|8N5?cpNfUq!Y5V=`GNq#}|cd-HROwHR29-u5P|L=L}NBO|?F@5Q_D|u>;m73%HWJ z*~Zt;c;yT!EjHG``#PVJ<<%*dYs9IRB>;w54yL-lTt)%4g9e&+bqw|T^ zFm(Ivp>C>TyRvp}EG29?;}gYqv8s}{C5vc7;4l>^3@Nwq{-vikW%TR3D8B=!oph}% z@J?G$F6WCMOE+C{7GryT`SC@DvcCW(ocOARR5OrXp9xOpftlnUAZs8oBpPPpK6O~VWY-y z1mF_PYedYkz>usfE+i))HDPJq&&gnbzrf;)gDYw#S7YZ&#&UEI#Cq}c+{}d{+dEmzcGZhtfOdOmQHGMivcHCYT8!y&9G&swwwou^mozH!_(QPN zA|=+hsZ};MGK$MX7E=JLEb7ihUnQ)-X)b@LCvrijhx*)p#9fFssZ|K83v=xPHE8r$g6{kk`?)hJQvlFykanjn%R@3S`j{!0pxc1zB;eg8n zk?h2O_NMOGgJJ1oR{;4u#|Vp8ND8;m158X6zyG>RRbHgmTfTL8ayXadIDc_T~bXRk|%~v=+t2#BZ52H`pbzhe<%yHn-Yf|u`Tv%CH z*-R`;^Nr8;txi)*+9aS+;tjWrhNpD8t7(S9$wO~Q7cLDO@o3(4l4JqE4Ie#h;fE;l zP{)-52etflvUi~sv^5%^6h{k)2$q6Sop_Kg@qS8u+U<0nfCRd$#XiNhhCoL`9o!k2 zjkzBkPq9IU3*wh=PF+Ea-N(f{g@ zgn4(pdG^C-llJgohHyAYfyKq>wU;V4UrjeCeCfHL<>DD5JWgEr%S1?o_}1&_J_Rwf zT)+0G57Ro7p!91%(00vl?#`th%oG*LmjjBxI>mOb*-&y?3k}Lh^P>zpWBcn5|B$)g zWU~1QK6{iWE=)cjdk`yb{5Trnq6MHa_y4teq zBNb=Dq2#^bywY$Mya6n|p?Iggt`8JuU59?Z|HB*Rnf}g8)ry}wWlF3U`;~dyyh2^X z=Uj*!q)Y7ft55nk{!=KG^c4Mv8N#C>iYNvu5ELT6i6ll60oUr+BY!GbonxaJJ zY>s6RINLB>VLGZ~**4$Au!-%(98}eQWdj+VZC?USxj6BrkC_$C^H6*-}Ram!<8Qn^t~_OXnI2d z;wBa&Hi~{p$dD6mnFSqfl3%Wsv%f`o6`(EXd1yOdEmq({j0r`HC)^%&ld?nNu3cZM2ADyrY} z?UM7_N&-%}p7Qgg=!5c8mTehN41L}9!GPf=NSBzbFsknZ_8p-4Y52H}PS-Vo4pjGG zb2cq2_T398WlAZ zzV*V0^-_|hHDx5F6(4z>7<2kDbY@_&k97X)O{F6wp!=w>5-Vfz5adB}kpv74d0Vl9yAA zj4h9&D&?8E+xk@kkR0K(4Zf|-W z;ti{L{HNtxyqq&UfW@i;^G}re?cE&O8G1u~>Yg|lqu^MsZqa$_4a>XKp8lY+^&xO; zbSu80)}H%_#E>NN(oLci-FjQ{mET_kKL{AZ!ZQ$=Ee4ZQnvtNfq89ggNp5pqLS z^}^Oe<*lxI`WZLKSr#sPT-|K)T3*j@cX!4M;1KonXGn|6$En3cEBr~WthSl*%+yf1 zdI;J!3+C4xp`l#o|!wcrx*VGZkvvY{oo%>!KH zeWg+I_&1a*8fquE6Jn(_%{Uub7lQ99A{}+>TZ9101%xPmQjzb6aM_xq)A|@`ND&o|Zu!Mv1wm zAsHn8_P3AQB|?t zV$D|btR5szZ0@MP4}^aMajAYJQmP7G*a{RyDl3a@??oh$0*xmkhW9h3AwsVy9_Inv zh{tw%uK+z^)sU)h)MPLe0@ebW#RT-! z0W7CYrFw(SODkU$-HhfXBat+ACgx-*@5;YBs^J$%%zAwr5 zU_VyPMcs;_rliU>Wh~cA6O3DP8e!+acY$%q{4}6pmDu&Oisw1Es6i<$%fM~V7F}l7 z%P8zm|5%oh9_-SNbvYv+8xX+hf!&7mfMWHxt)fWgVg_ltVM}4jl1ff&rzE|pO)0;H zTVaJjiH6mqy#T(lTp0iL$T>~1VVc(zk$pg$E>H}4sM%eVnh+R@L>Jpj1DB?wUH#Lp zEL;MK6#xPd5BX()QH}>n7b`#-hZ6rTR)l*%x%|m)cKwI_ksmzqZR)S{yGSSyiH?gd z^RoBi`YMuf*(R$eAd#FR z2CkuDdKDhQowHR$uKLV%)Q@q#wUiHo70`dT8@EJ9tu!z&1*X2 z-tCPsJ(3O!79ezmYDryfpodr|)9bX&0~+T5xfWw){TNh2Y^||)2jr~^nQl(@hSNyu z#a_&C_z2pkAgEDScQrBfjLeoq^7XSmGr^eFM?g87g=4gHB4V80vB%$UWp01D;!a8K z4Y(_E)sReBf=G|&o=H|FPP_a5gbe>)tb;uRkV5bD@8}0d)dQheog~`=Frol;pKQR0 z3MmLH|A(dP4r?lV+5tpXX{#(!q^v6h1*8{|W=FaRp;zf$gAhWu!MY+Sp?4JpLX%GD zh=NIgfCxwzNeCSYC4@loo%sF!<#{sPbEdsB^WM4BLs51%N(DF0=8JBAF8{82xDDK* zTt*$j{hkGYyzJUbwQe1c|M>8Zl5~11r>oAAblr`2uR$Y7t;?mTP{q`4WL4k#uj@zYU72|6b1`JP$Yc&Z<dBPrCK}=g`|A0odQy$9M?n-AYu< zFbGLha65HJS@*(LOsLqHesZ|yC)`(d9s$k=aZJKY^kw`VL0b-m_}nYEyW;-%_dhMJ zztAWCI-#7T#s8mO&&BsH;sQMu2Fk7<|1EjU{^m`%1E(O^#q;QI_D8qOQo8BX*DFhr z$wEOT>yvZz(TNqctd^GMAXov~QmF_2Gb%dXU0wNtzl@?~_a62cr@u7{7tIApvk0M z$UjZlqCEpER!V^eXh@uAQ{Hj=ElojJ2QlMowNs%XLi@}JW1k^etO9l{WoxCm)}_Xw zrr9sTxj1Gi#>=|(YYZoyelUN`M}c%yW+3I%ypX^(p_ure|gAk zmBD&Va`UmG+(4Q-K0NSh4~ou>J~_3I&T2aa5VBw}*a zGPE5B20zuMwUjX|dEY9^tdTI}7T>!QNd(46aaoA`8e-XA#L@M;1m4R%QfxK^>sE_^ zKWdC;J72b+wqcost?rgYX-Xq*b1VI40-Dnv7fm=-@2p?#K#AV8ndwMVjk+VC`W40o z!T(s_3d<{I4@llk9vF6sm?dsSZEBb*Q7;bwf8`&O3mWk$D~c#8#~g z%wP{k*m<-CK)Y2W=FKCK$UA1s`6cl~C~9CW&&J57#Hp7DCIHlTufYao1=4v?Td=`w zH|L7^3s{%78-2B*s0?WXa%-DMvWIRxr27lFD3iD#1X>4MmLk$ON?b>A&nC|F z=MC^YTNwADLnr;*M|W-5AaXzWws$kjKWX^JYHc)6mp)c)9hv<6?>V9Ot(axgqK;wl zrOv-Ifj48};S_{=--Hu-Myk2xL;Ph`WIKZLAh2&@X?p$JkRNy=F?wBZ4VLFLP@?EN z?xbC#cG3m+C*^sqZ&{K)tA2eLqXOo)0!5Q~&C1=HYRWSFW_0vgWmnuC5OnDDfogP^LHO;e*^l1T}L7!rydU6UJ5G?Knb*V^wDEs@lGgI zTWDh8q>PJEjLTTw+6Y@6mUU5?xqnOM%<*Su)+RtZ`V1$;t&}e=Mb@JcW7}nQ%H9SZ zvG>rTkj$gTO^xK6f=W+d;4$>B!&JHBAYL#&4Mml_={Vyuv*FRWAFU7}iY zKzMSs2Ssjp~k{=}ng1sxIzT#=HjjL_7cauDwfU`1xEj&i$NHzV7pUleN-0^h}a z61Tr#T&#${=K+@qtXq&9=WiPRBW~$H!r73!qWLN(&l#XoyXa3Ha_5pGRi6!940nY; zNOGSU);Z4Sdh@pn>_0hfPyI7oc z>Cb-4;E-2&#?TCwIUAHltiZksogTj_-f6-zvtwzfpYAFLR|P6sB17N}Hg~@w(!WmE zs-{XGDJXd{dU&pYiTVbCZ2de6u3y21%{a>CHgrfbKlcr9PiHjBeYttdPi_S=>OI_FY=1U@0XYkjvT@ZK8ncav7E5oh?;5oF z#x&*I5>>x8iJi^s0VRB{cVk`y#yi}V^dBW=LY5Yj^{3f-agwL8{%ILfHG8j&wr^2z zl4%V3D8$QETo7V188N@z4YG-l=XYhTP6vGE_xk1O7mUj=2;QCbP_}0A_}cZ|uh(bS zzU3B1Plhy}8Z*hw2>g{uguyn}qxZ>&v?;~g91ztH{~d=wZ3ZMOalcZD9razA-*vR! zRBA_-u-l#jQR1?lEd7Bx&nHWi06Zn^cFm!b(5r&j=R_1N_-Cs;qNAbz?S`3I`&+OB z(-n%l(S+4T&s^V66LsS$Pmg+E{v@O6rDPK)5cK2vUOdie@p0Xq5eJp>98?|LW*?uj z1D)d{5HLoRy&|1UKkA5rY0tK+L=QXjd&<6Avj;W%{?YqM`qrj zZ06~>(tkLqee>E28!y-P`IjMFYmm+-_-9uzk7;??aj&QYQTYT`&=WLnQcWC%u?6Cg zU&hcg?j5^kLErv3i!R3@Y@HAdw>eEDSc?9dD)-sRjr;A&B2mB(QYa18pQuG27rrW2 z*2$;|1hMxsR*phx$C|5u{8zT@+`)%R?bD^~(B}YJx%$d9YkGtm!ciKo#8kyK=UhUy z;s(SAPXZxrLe}+BM{vn>7gm~ z95h1al9IjNOTxy+2-rJmQrPGnDyU?#+&mAko)h}fJG>U|p~yN)M_H;dO&r!0L>}82?3%hrKFYBQP}9ex2?X-)B^YE-Md0dMwUtJLAszqBX233mKqOhi zg8w-r*t=biDy-D57j-=VNdsd2;BKT1lbjl%$Yk^-fEtULEaggWQvIe$2KY{Q6f0~CHhyS!shck0DTo+TxNA)^rx$Kwq zGyn8UZiyDrfDW!HCKwI)$E53=QEW8P%XWMt7=IfxIG^Shx5-Kand^qDND)RGMdyJq zl!PRk_mj7-f`c1?yK}EOIazclJ^V5xw?nE5k2ghmOY09GzxG~-|1b#ro>hZnVvns> zskE92D5*K;5lF#6X$2U1m2Tr5wgzll@-{IL ziR|?lBj#Y!vfU(f&mo@y9kA@j>#YuXiR>4Lv`klwdI3bd>?kdSodzY@yzM0e&c{P* zX49Dmf1fvQ$#{M_KTFIJNfg_fj}D#204=uumJm{7pWkwjO7sZq?99v5(JJUZZN=6Z z2g)F)b`S5&%*(;a+JodP1J5f>c8w(p^rxi8b!l$!yfERHyeR$>ww~Y4&>&L^@*9S- zsw`Xtx52w_(OOIdAv`a&2PZwT0RhSLk>vwAIONyQSfLarN+pR8qx^EmHlLH$igs2*5}2s2LaFLvEqwo&ynq8O?HhMDk2cY z9fixfn$vHWGhY~d3ndTv#SM7_tMl3VG%R(gu9v6<=_UpU*7X!gH{75b#@`-jQ!v?e zB4U=bp_1liV|=Q=>;*d)Rl#l4MSrw|(!)v}D|kaJ^z^keb+}yr&D8Np_BK=qF=9Eln%V4-iO)*`Y@j0)^bO!Mv= zrHLKh1ZsJu56b_>ij^d?nJUkE`J>U?SMvxI+FgEQ;~AC16e^@uPDSi?3SkN-g5Mf0NYzos zJdW>~dA!vgoVWJF933}Q3(#O3Ti(TVY!{V8e62HynF?%ax6Ztm0VUwP=M&Hn*XzK0 z3DZ`cIxQ{7?Pv8rs-(S}Q9URx0!75YULg@{>S(3jp6{@ukj-^7v84lS@GMYE$A09J z>h*bi%({U|&jA+m>A;S&0+Vn&)0=8_rOc#IHIQ`lF|iRFEA2ow*Hxn3rr4|{iW9CR zocJAFlTn{3q?K+t!lSz?X={wR{@P85Yie%cqtO7zvAoHWhe+Z-NxQk@@*}*pDQo0K z;tM3Q*kh82!XmRpxE)B;L#GkQ+uoDwkj|*QznydD(zIUf8TJrlPWwMqMp#hZ1kkzA z>~SY{xCHCaQ)~yS>PqGyWs<`M2jdq2l}5I7Wgs7@#MyQyKc_uA{^qDVD?z^fEDrL0 zRKedd`rU0PN#DoHVYkKyO!GOEewrBtSzYs&fBj-DSjRT+@o1X&dl`K*+{qs~QdLGV zRavj<%8t8kvw~&(+^1htJS|d+hVs$97cp9 z*XZ~cYD1!BA%h#U9T`#uChGw2_X^db(ORXA=wI#WdAgaeX~4V{u5Lh`^0CjDZtk)QV&4#}xoic(GVN z*FktC5=NmFO}%Q5hTs1Aacyo#2{@@Ta8jNX><AzU$v6J=$e>V?YPJlp{_# zwDq`sEgUYXuEfu}bfOsDrRwN{WkZ*XR7+aO5HX}5bH1DOS~hOzE{Ivemp~bCVZ3(v z!i_MY7fS3gnNx2k^Y*KV$HA5LOg)@YF!ptCIUOkB-!=FJvseJO2Ey^gd91p=W|8dbmP)XErlO4kIH21r% zRCjPnl@*jA5>qUrcx&C4A{J+uG8;*vp*u#d`%AoLKf3x#)@P&&geT^Jo+c7GlGC)4 zSxqBviYQ%W1*0uAfQ3>8r4cSVI<{wdFdZ@^?tfcA0ZE5ymL7>awtZT#Zoy3J)Qkx) z&&%f;6Cu~&iK4<`TEV)yNH6Cg2h1NqdebmYrAxnsy|2`6@w}*Yp0H?dc$TNS=EzJe z)B)h)0<%iXV-SJ9BM~iAC;I*lEPgb4phxD+SMLAvWp}@fhu_pW*YVA(hb=kBT_1#l z_O{YJaQm9wOekRt>?KGxLF}R%b&O4;_6`h1hWt{bwS`;6 zTdEIb8hD&RG5 z{GcGV7)1w1o0QS_sT|;f1YuRy*T!Xgu}R4yPkMnY19Y54M##*DN0T?jGH`nujm-nD z+ywySAOajtcU)6Ze>_*IQ%Or<{46FKJQRf(o(AbWo^?4mO!Q} zIW=`9zM2aKIc{WP+r(mvsTGg}_DaXK16&%YD)v&xlmp_mnjz~0 z%eu_06J2~8DV>Av()%+VO8%_r7486%KkhhP+TZt`;%b81b=EB{=H!M4I_>0hdsA}V z?s-!BiT7a}L0dN2I$Uvf+Gn&}cq_)w^bT12y(y3=dt@#Cp1sFn;1xgagA+VoWB;cH za2ggYUwjU7QPHyQ#=*dZtHj~i^MnVH)-{IUY~{q4#0bzkTqPlv9^sDM$r&}h8v(?pv_nWR=_BKF>3cw{N@wsDYm%Lk~TpSOjv~*;4ZAv*I zN6RqU74jR)19f4ko=$kDj|pXu(sgfeR;WB2kUFeXL@g%c@h;F6ACH02+y9d%2frG+ z!J}Vkl0V#TjGC1)P@8|H^{nIS1&GpLxa%p$ws%vXnF%b`A@dt7MAU}%WB8#r2Rf4b z+leBujrd~=Ug{tM{sxkEW zN~)NB>0WT!>WVS0C}SgT(sICbz=8t>ojl~H(3h?uX-5P5u=YT)KYkp8WTJ8}R}{>> zL^l$p8XwqE9ukwW8m8;{Qx(~(Bm&NfR4i2tm4UTMk0;CFyT?5su0^TZ%J_L0!&I=M zDUhJkg9~BUaI3*c!(783o^V3nx&<_t;nwgl)qLw6XrH;EjL`UXi0d{9vHw}? z{dwc0;NlmfsmIL0P2Fz~8{^?0yo4LPgY{kqDe(*fowhw{QU5NCh98j6BUVl2d z1nDeH0uW+z?mQA{0~)9#5?{xImdk>DUj@o$WUcGSblJF^*bSHLSqsuXRhqu;Jwd=F z;$tn@AW8!LA%u?ffWj9!PI;|TGB3?{9D^aQkHiZfSx>i#MU*|%3V(OpKGbQ%A&_H{ zc54gc>Q(ta`|mVq(?Vv728DT1egz@?Btb({U|n0*C-2y8uXmN&)V>dSQ2U+XT&mOi zql;MbYn_h+H>6d)Jw^WCwSB>PFair}*-hgoupIEO;pMWBIKvG0H*ZxBU;-5pSCcw4 zEjem``3csoGp!(vAF7Uf^*z0)^bad<4c{5dOH+x0+L@l#j78REkFJ?%86JVy<^p#; z1h6Hj?5Nj|9W2_ctfR!?DCaSZDOPoC?R$o84mw1VKbRR#OLNdGV9W+pXCHD>?f zi+QCp1`4cBc(f&FMWnA2LIeElc7AkwgQ$Hd4E|EoHOuUFS7PSngcEKcRNGd9mT>wU zNx->#2`d1y#!3L#PJ`bO6s!w6L?f=q$#1l-X^1!%KO2qKBtJ}djQ7;G<5c~5|Ih!w zGdaq-$IdYZt;#TeYRwE|Bn*Zo@V@N~bR(R9EyB|Yv0idCeSR&ig+QOf%f^xRpC9)k zM*Z)?zJZs{v88j3;>bx=Sufto&$Z!wyX8f_F)ro~@V25;0vAUj~d#%v@g)ObH*;~8$ zTV34WAj4taVC;^SE#%j^`ucxA|M-M?U@!?9_Yc>rc9d26)b|y|4a}M88fT}$-(=Sh(=fF2n9|C{-Q2_6(ca9H~X^ls*R8X=1^7#HT zN-HV0P!#%62-Q;dIymOrn%UtMUZt~Ci>|udltcW8U(-`#*x-Ntut7am_w`MfiFMX5 zzJW#&2&AqU6b6CuE$*F3?&Ajyol4=y8!2DYz+ zgX;^1-81g5+12#93))!4p!VT_XoCCN7ik#1UjGn$T4-Wq&FsRLUlOL<)6YX3nHuVe z{aO=iDhEn-E~leI?^2@GI}-tT8HQWJQ$^FUMlVCCuK#<6K@I?tZU=(lWL*2jzqJf` zqp9o7>#di0-&SBcG38SqvNZOYS-uJsw)Y*$&EB40gPM~FdJ9JC@~C6mn8|+%u#+XP zomiIjRGvCKkGTTc4uflEY1$tc4gwsTPXU~?;C*|3W7=MX&t$#qMZ28P&T17{0g_SX zIuTR(h}3MtxhAGpQuzNe)+^X`!FPr1vPv$Q@kZOUZ%uZ9ilp>zof?YFB{S*k{`bs~ z;}nNUtUhf0LG)|r`~D;Q6sPh>);e~aYmz1$kiT-uet1#++w0gtKf3?=h_<@&pJmWl zZ1tL|m9l8I=VWZ^gF59ud(#R3in{j9)nokTF2Jx%M`=0Dgi5S~#d*JWtWQ%t}cOn&rApE*xYBD)A zPH-%WC+&l#M|Dt5t?0z>R!J_TB7H6_d#|`yCZU84QW)*|QMR`rSXQxK`A^c(Y(mkN zw#Pv%lqZ1_wOT0>^D+Pkrrprv<}zR0wO$vC35RzOlMFHLoBt8Fa}Yz*rKms&dH2cl z9p>$~vuv`TNtU`k9RN++FfhtOfBnj)2I*WwrG5KlZjOC6ca(L2WH8mz;oo*O<@q+5 z61;E`VG83(Zk5#b*bDWfL=8IYKb)Mf#_A!FF>qVT98n!q4?i`f3e3!KvmuU@_)j-> z<(DpCyT2)&g$~+)IxtcqBbqwu=aT@Oq0rWa^SPZi=nO+3`{=2sF>ghWqRZ>Hb3ib^ zA-E;C(Ph+c#FGF$?dMUryAoC$qj_a=0*$3_QHszA#Ls5AJ%jbUC?zdz=9GB~S!U&X z05qlmrm&05fO-`YTYR$V(URm zd;Y2;lo)tZpphU;&}DYuqQ07lr@H6meEV?K8=p$EbG6thr3$=0v8Dk*ebyqwxh9&M*<4c) zZcXVX9vrlEWUnr~`ct4G$4u&d^}f8{w`#*_yo1h_ z4=M)Pm9ZFBtbqH)R8tOi&Jr6lS^jE3y84vpj-+jQguLi`UW=ld4-)9RHA_2lvkumN zk!B+fH|8D%jM1gd8~fy7J{F)*3Nv7W@V=N$a7?z$w-D*P`S)4Js$+JT+}Z%8ff zZ2tCYu~*&daXg#>nuv!=>IcSps)TRs_|3^EF9s;1PkUmUDW08&A(uC@K;k{z%pyu- z+pLroann!r3CbHXD(&jMZ8qp4r~Vrl7oTP?M(deLDomiJKhQd6hV7sjH~%AlhM0YT zz&~-rtQ;l`yf%nA9T5w4mB4JVl*a>Re3uk0xgeKY;EAEvlIoq)GZOsW zXHvNhTu=v*GtV`>5Bz2_IQ_D6yiRU$U{&jsH)65_BRY=lBV8PM85V)0jz$L*=QtyI zVDB;U2T_>tNFwXdI!iSo5|yT=;_qV9m6)5pS{QGgHgXj=AJKqkP_vaM&C_~=g6wt{ z8t|LTNYB%<BIX@G*t1yIll5xuHsNJNXrED@o#8~x;x zSFyZjUaPjEd8tW0|6_kthUs_0K^>B@k@0Md3%YTRjzUwXwriRvpQmU~NF{{LhEmZ8 zqI6aUU8pFL8l_&ame%Xath+&ZSS03)g#2a%U4crm&}rjC{P@GxKjc-ESm z&RFv@_*~Q155dFx3e<@Qy>eSQL!XsJaHo6D;NS8L;F$Bz4DFovO0gAzZ?08uOvouF z8%w--rA4oSIeM*L6x=qodwO6=OH3x-P^K|wG-yF14)1=vz|#(`lQ0sNI|@e*Eg4xd z{W~3P{{?bE{(TNm&!kmb%l+Li*g?iJ02t;;RSE<5NAr<1^+28%y&1%4nr{zvL3bHV zO#f>Dm ztV7DAPm!P|)a6chV%Fu2DvFkiW&usei+O2V(?T8bk{L-s`-KVZOr58797O7+Z-&-J zKlzvCkWIHZfoY1-t@%FU?j%+bu6$pTWrO$_BvrKM&zHk9e$Lk`TZPGEBQ4YKG6HH` zX3FGb+ETag&+;f5=A+8}RYfk5xVM;J8Y0%798PH`|6p$EX3OW^)|cx(VH$%HE1+&h zL?QNt4WO$QF;&nrs1fzA^q}pLB=2~-bvwLl@ zY_D}-x!E0sJ||ryEr8+1>TXy-2l13U`S;bMJgDV?S!UKMFmrD`L z*lM{}6D&)AGo8Y`CE--hoZiM$X3xpxL`A=67P9WuaS3V32W6yZu%c7B{Z8e}Sl@lR z+eqZVz?r2j*%7b`ZvXpsu9(B2w{wie>1$`f^_H%1+r0j|aJ zD~tRq2d&52KG3QKwreZXbegbl3TA7f!Z2|^i-^Rh^B)xKrYP-YCPr!Rel-T~x`d8I z@`yj)918H}{-)$_P~uvcpRIF-{=(d*P0(S#xyFm3O==lVfVBzg7FhF!)jxcJn#L2f zP_ZnoEpO~-c1MY4?B%+Q=O!@Ui3qhT&>WCQx6U2Dq#<#fM?7m<9alrDydBh*L7Nt>`QEEk@;8^ML?H}X1R{*kn!)_t zdy9npm&?yxDoy*064p_> za=6{-UXn4^8k<+P3%+Ht8a?>pM2Oyci^^mS@~`g0dgXhbfP{>qgeP88Wz;M?L6EBt ztRG(5T_pV~U>nT%Hro-D5wlke_wf!z-}AwQ*M< z6Gh40X;I4>&_a$&riHA?We0BHy!7iARlnmKnuw|hJaKQLe+B+}C;}Fo|K21s_}b?OiGI&ci~Gt*P+8#v{0mu&Z1|D0&2@z`m!*1$xK=!>*SoYOCt z-1XT2RwraJTre^9MfQ~Ed!{R2RB(V9MbW=UE*rHUt0qIwP_L@8^>EyyrYmyd(r6hP zTzzAS%e5ES;$CgWd$bVs(83NR?*{o=fpnuk%7LPtUbB%Pv07!<|)mPuG3R(yv8=jJY*O?FTOu z?<7Nr{G&mB81pM=?qm#MLlag2Dxb&lU$JE{z!<$ zVPlh@`;K#$Xb2wYjq8fYXdyW0&d3pF6=qHKj81QNHDen*EprC`|Bh3SJ&3nJR({<# z^|~PA#*Low*yn_8hYOh80QO^2n>59r>B zzg&MXUPjsRR?sax+4C5T_Ej@-uo~!{$}cMkD)m^S89S?cEf+R|%Rw8k_OKk?C^nhZ zzoMF=FI|ku5r-`Fub{Y~{5G6_67bcuf)OyRSm??hXHJ#GkBa9;-QwK_l>MCdTbkLR za$}t5V)TxMl2=<>A8TaZTalVn!#s^L!{x0OYiM22Qr3EXa9__rvxFbAAJ!TX9mB6L zt(a^SRCOZLCzzl&S7@kshW_b-NfA)l*iC z%_@I=BJKPrhrRS;7x(fWAv&Ap zxBoI94J8MQBvnQr@M)U}0LN&{>~Z7RjiI*``i?$@vN93(%u?Y_^p#x>ZmavXc`yja zPUX^68!k6Wn-;7-D8n*ayCoQy`t2%SEU?~u$F8zTPY!p`2w!)M=O zIs0W}xPn4)0s<`*Os3Tfm~ycDTUs~lp1O0Hc6N%PqO5qM^?T&-O_Bu})X}5SAKV+N zMr!k%T3S1nX19+(8xwjrlCb$|2a5| zbR4iFSbWwGEGP%Fdy;@Et?g2Ifm=_=Il3jwE{S zlu2Q?>wyNcO7v(%6ykn7bNI;C4t%^QpQC5sG)072BYG+$Ol9SY%WGuNAW3cekQz8#Z1ir@czT0!v=iQG8@K){5h7hO`*Y6paT zBWu>Q8ZH*;5ic%>$8?_?*F-w&b!ejRVkFAg7jsrn#a{Xk-pj`K$fP{~c3E<@ro4kS z{>)6Wkr_j?-JH-Zo4J$eJsRpw_#`d|*75@WIsz7)<&IiZI>4zCTzn`|_9lhbn5lwF zF_rPJFXht>;`#j^>HQwxEnVLE#oFetQvk6ASK6Eg^yr~Q0mS#xG3C&^n$)*Oj1o(e3*2Bn7~ zf*_sWm&1z9zWn+^i8Md0^kC){VKE;{C=L`7yzCOCh0GC+-?gpONoE{o7xITWO%!ZP zi-4Wo93!VybmTC1PAge!R74oJNIH$>*#mOM=H{x4NgZ*{=CyqcZDcCZEYxlk<0k>ecQiSP18Ek^`GV<&aaON8&gf+1A2R#M+jh3yzi|gdwy4- zJ=1V?c0%ds7GTZMclY7B?Kk7a)z~Vsjq-=4E`Gcx*_%dP9LX;9oFr3M?2Q?QERiPs z*3|xAzNVeuBd$_EN4@vUiTTUMv;9&_%fbW}r2OvU`@r=EoFVf(UB@%L^58&TO?j zt#sQHR+~Up4Syo*MXHvK8%@XA){;}>8rQR-O3fzg;$7Po1qrxNMuVVi-ujr@cMHt>En%uB&O!p3cLsZdw6u zV0>?VuT@)`P4h&YwG*mUsi4|MS`+PV7G}ZLH*SL}&eV~7?%v2L;%sGy%iEQ2!2RY< zR&telickaP5UZV1-~XnCIU#1e4H1x@UroEMJlfKdLr3d=CZegWTZ(0G1c6~JcvKN- z<1$WF|5a;+(T(FX{2ryRHZMxDo^0ZxtL}yFU2H);o4{N@_95tHUlxQUj^AJ7#jb4C zlsEmvlqf}V$$(`-OH_1bix}90RK~5 zvlHlIaFoqIOGgp$hG~CV=>+a%iopW$uJP|PH_Z0m>!7rlomM(KCe6%RO(zU}UiLA? zxJH|Trnggy4wU|ufWBMaCaZOYw{Hjy+pu`2`J12k-fp)B6?Fp$Y%t>kP2Dya8_@1# zy5|+itf+JMdqvA_?Xt?{#~I29WWzcz6cM^R<>hK}%=`bU^}Sjybz7zw*I#ky2xcLG zK*>61Kp0hY$q29fE3v~g#RbF;?f-wmF`3}<2*le1*jZ2$tPjvhTktyBePCmKeT}FD zuYw0?S?EIMnmH`^-qkZJcje*s2V&Ha*zJB zOr8ae_K`m#tVSZkh-6@oRXV86!d#!#!sC#h?eDuaL=2KvM09*{d1r?xL32E~EErw? z{J5*VSye>xtG%Y)TPE9^6M7=MUxC0av?41*#7H(dzgm5j5lWGH(P=A(TAT$}c@2Pj&D#u_*}1cZuNMs()>*)s;XYbVpOH&8D z=l_I#NImq*x*qFXo7ZVlp1bP9iaE)TzZSC{R^ja$uF|3~UGb zm4EaP_l2LJ3qAX|Hc#?h5^{D{EOl-MtBOLYeSC6B4tYn9pYTignDqxjt8#ZOO40AJ z$i!z>6uJ#?MI(_Di8LB%vE&kV;Wyp2;DDeCC-W{{Kt?&Q=jN82xapYnU@yD|*05qO zqgm?Vv#YKtO^3BT56gGRy5$X@dKm?v#m%3Q%dXkl|J<~wXnN^6cw+*>>(P3Ds>-{9ue!2v;~icH*Fu*;_tTt@K(6NnvUOr_Vb%d6rRYu zC`r)!A>jvcy~CRAN)`0sfz`f!9yLxlw+Ewq2>`t6bw7!`L)L$Zxnmu>Y}IC9nECfz z$6Sk@^dAcJ_X6L##HbmOp5aFDG!5JTYH**qQd&G6XzQ~3VEO=<26CR^Zj>&MvoAV7 z*~`(acaQP+8Gcb;2LF*rozYimJ=?)S1t?l~?N#|}k@&u9tTtY%T=r&6!SID^yIP?2 z22;Y(_L{TZj--t!&g4X?OzzY#7k)k@vW*+){iBHA&?$4T88kRB?wM08U%kP1 zQc!N zZoEv5CKS|t{P!G+Bx%^tr*UusMc($6q|qrYinLc6P-naGpVi~gF#89TR#sR5ywlM9 z){BbCim@dpTu%glVa&C&ZZovSlB}Te${G5H{Mta&Uf@pEv#pIZ?{2h5097kPhV&+{ zMS4<(l(htv61hqGSW{Cmqcyp@f-<(cT0l(}^7<}~v>b70&cVWOg8nS2ef(5<#F?kR zX@niBhdY|L653{ zSW9$fQ?wc8)=wen@r_jN;ewpi{3%QAzFPPhJ7gc0sn&7YZIIr>@71w~PjoSC_=@|k z-LkAJ@$)&7S>-S@%W^B98+;m)1#`w}ii|i?BlZiSgkJ~L{K&Zf@5!Ujq@o0?e53u(DQ4aY=)$GLvwr**qYDL0!DH!cH9>4+ltv7 z8<(7sQJhU{ZK#Q$Ufd6%%=w85khxj;dO?aSv&?hv@<@ySQP)c|ucCWx@F^*1KwIo+ zYP-};23?>F$+*2`k1?E3Q=c=Yds!7ru8DRkD^_ZBTsJ6+2qD**o$zJes=Lo&*m-}{mXJjJNy+=y2!5idKIth z(V)CmWn_*l#PvRaE^Z=x`08D8RfYjd+b7<)>AaQ{%~7QG!gR^W_n6u9lSXzwnS-m5 z&gu6X(VDNE^Z8pF;xpgYnC$YWBunf2r}xLZO-nM~V@|i}+$HB>kJ^hElEO>M?`;l` zGq_pvcz zt^R9FgZ^F-YB?Ssbm!RFR(|>9%ShkdSkIj&2&lQS_1C^ZE%dT(!$MB~4c7{mW0^Sc z3FAWs+d&Qr;m9o0t#Lt`o842e;DnUh#&|oY&RI&+#G7x7(Ep(>VWaC+PgI)ll|&>D zT~eFuu9tO-qZhyp7TipoUqug2tLj0=!5hovRj=PYtG_pSZdOPgFYp8XGSumE*(VGhSAkOmj7hswV`S+`dKrSGcm-3N1uS^mQ>MOp%_1UiT{&*s-e zsJEO`0xGlGZ7=#dD~xJ+yc9agLMiETT#vOixz4wTbL`KJ!Zxb^oCSL5a{`rhP&^@x zXd6?Xm|PNpc(R^4RSZY$E6FC;W*PCB#$-}|$)_p(q`$6JjjAxDInV9(xBE;I=YR+S zIe)*!3%77zzj%IaHE}(h;MD!_y}i=$I)$-1kGqkWN4$ZxOc|+HmGMOGUduil;3xa< z09+5&GLRs@#zop!Guakvr{%z32AjQ}W)!HO@1-`PBk=MY-xI0jCMARfW7JvnOcBzK zownC%qgnb?c}6G?HRoW8YcJ8kEp=fZXQz(k`1+j#Rbz91`x1FwCBb)XKFCi`HNlf< zEn#T`9b)Q^pRt2ole5~V2LhEU$~hkBIn0Q^lS>PmpzW zB*tx!MD*SrbA?FcMGtsg3u_$dZMzT>R&m@XmD?i;_IQhD!A121r435Tj6LK5jd{eA z^wekNJ8C0n3g`j)L7)yoBSc-_L zYzZT4Wl34mkd!4OG`4=vJNl*X^Uus@p6%?=bH>ILT<45<0 zp4#7Q&FILn^&!;xtclwbV^@^YzfbfpK9V<0dNJ|o6ae_Py8fGr&&CdE+lu9bD+B!c z$CUYPS{GU==Chs5lob9Ht<*AWWwB4QniO)CckfjEBX4`+peoHyX<&Z;cq#LBMtIM* zR^N{GN&n=ysM~Lo(`MhlXo_>@%Js_Z&rE7aUab09U0AFg=+AsI6{_c_Bn?aLovl9L z!N5ICrQJ-rhO1H4zkZfssyAf$r{YcOeYz8zUxknU5yoOLm+rq_Wd&qt*?;ened-Z0 znx`Svl@;T;HweP9S`x>mCf=rE@bw3FFUlr8C3( zF1qTK>D&0R`qIk^jmZdORQmb4FaqY4=sRpR-AbbUhyB6~`DB;Ei+_rjjEiKPBP+fp zpRjSlR(y(Z8@)Dm?8HQg*HJ?uVt(&^_hx2`plrF1O?Bks+yVWy-t}z~emUkALr1|M z>|JRx&h&hhP-XW)#XZY<-9^T2QOmGk>c7sC5Wz2l>Ta5n$pvtFODbpCkiyj6*zx7l z%ox$b_IKiLs|Ftp+Tl4!Rvdh^w{3`Py!2j2(eOU*V;&xPt13BVS>XLAKX_I4m7r^A zf=<(_s+d){Z&K=IPkf@#rqffYT3T(BshzWE21ghpx?ePn7L~jgqZOR3O)s{+DAH!0X!p?%593)O0>KJJt?@td0YTmWu`#i3>3!;z51Q(&Ss}Wx%_( z5a9ozDj8Hbo1v~mtJCBDxRtd!P5s|#|A1)*F=tYel)Xp$TlqnT?{;*1X;9$BhZNScqUA$(L>R9`&RKTa2+Z|aka5lQyCLkH#JgP z-1B_A8K?LB4|u1*^Dr_mw)eSo7$W!-II3!pq=pH%Ox_=|!5NIteHtfoT5`ZHaHbmA zWoiTsK`FOO)q>i-?lm4feM>zuyA^*C`K~>-Re{NDXx%03)>{L{fN0M!*fHP-`Oh9s zZ?vp!MdDczAV0P4fhc2`G$TaG8x)8~1TV|C!qnQke$P*T;^vEeja?we zL8N@2^x4`Q#HHfF#9>f72_6^4f-lF-7`veTS)=(NkbG}z3ZPCA`c!7Qah9ECU|NfK zd+#13JQk-}oVNuM!h&Zy2O77vPFK#ES{~U6>X@wO@+_~iLJebzeLF{>` z3mf!U06JPpZlrwQaO&v33=*8b3K}mND2$M-*jWoyqn6#RseJAj`clg49y#eRAOQ6L z;dTVoGPoRUkDIks&O^5s7N>vnzqQ4{^f@`3a9)fKLMo z9U(q=3P|+}Y)D);*ronD$d6jy8wixjh!VBSH=8H@i^Fe#`D-Xy8}r4}jwNBs*KKPkjf)^oS$(L<0{1^5kg*_wKH@;K6p zYGz*lr?nYZ8=STem>dkpE$SJ8u>Ot*G>P=j>R?Up{435Nt{&cyw3AI}&!Q{&C+h$a z?fDXJs1<>be^3_*w0Zb_KtlF^6da|~k^^xOF8~5?{o$TUfUY*h)cjZQDF_u|UgAhR{n5Hs5l^c!7tk8Cr--%eLf@E)R0rr&Rpvt}4-#0%H;t zAqUFh#pj_t`CFDVtnvkrxw?yH4cBKZ*m$lv04)z3Fz2%Gm-}nD=*q64+ia3AH|@;e z$h8YJNzET&irj44EH|^eXrL<=bTQ23 z?&K4=*bL6a!eGkSQgAw%)TjbO%A1o(ORf$&RpS^LP{aeYpP(3VAu?{E%F2XYt5a&Y z#d?$3=15zMHM$R~XzN1?^_C)YDJZ0J0^>}EP;VGpI=f8)0Io!9&})LsZJ<8s>NjgF zgdY__kT!NNC^#*SLiY8YE~%nM#b`#32(?ha+$-d^mR@*kZ7q0+#$dSp>@+g>cIWkW zi^jrIke~zF+C@O2MJs)-%Hed>?IXhCrLAiWl~eqc03Xo4Wx++d8|Bm=CG9xRY5a2K z)3teohpQu6R?k2Q9?K0U+d z7)W93gDVdwC`j6dM+&7Z96C}MJ(-T0i&Zh{c}}YNo0Sa$jX_}G#t;Tl=%JYz@**XA za(BP&f}seu`+4>1feGgE4SfHG@fGA;ep7SY@1`(mhonH{?v~&Tp{niX@G9CVLV(tG z`z;!($=Rqff-uRzH*p_-i>|$G^1Bqmu?>c#d_O1#Rm7`xw@mO6BF}T0iRXW)R;ir~ zSa7EunDC=)0JK}{6K7OlFq(^@ESvw~fRfz6hsVpACQH)vnu7gxM8w1ffePjtHGy>K zB894y4vn0pknZwGoWU3>90LDO8SGX3$iq)&78E7{&DarE2bv{Uk@FLJusiM!kh3_( zRzga}@q?iFA!tz&@^G2S!Mj&_1N{w}utm|m0{va~zN?B%Z!aS{5Gjuh4ESNb>iWru zB{8gxiytYNA=l6IC0Jrk;2G7bCHd#H(lDU76})6SyyW~tdYe1x@7{MbY&yy}4jE&M;Z)PB727GB z?0J`PF355$b3@xFL7FC1VQSFS#du@OpYmCapw&eSGZ8qmfT0e@zUL<->-P20Q&rWo zZHYx3%U{NcYwNJt?(y9UP<)+;B>C&>MWmz3l9Alluq+q7b>x1TgfOb3dXB-sWwu(| z!g7>V&QtK*gkXz8u4_7+-={qnV0Vn^GWWHUPDEt7IvbQ+Cl|BffBVd~np1mwKKkjw zq$4LI_Ie}Da|Tw4s>J>xhXdIP3JeuZ<{W)d_?GfSGyYSfd(_3Rdu9MY=eq#j(rGAP zyy%LX!wb9JEOh7i8r5}tK5yAMCFM}>yGkDl!EM3HssHkfI(Q7g4R{3bPykY5n2#p! zX&G^Iu#t)nlV;M$ZTdYg<0e{4eZvmRpOCjjgwI7^t_?Hf>lS6(&q5c#jdTOb8$=RU z2FXHJZ(Ws{Pj16f?)rAce)f9%Lq%TJ?}6U(=eL)Wp6c^;OKr~DV@Ua~E2;*{P)a9b zgjw#L<6!~c)`Gu=`i9B*`8)9^ejCCQG(OPgqL8`PY|FKQSUT!L&9xP`j88@H5EFVb zbJkt2L#8c#UPhqDNc2u&x76S{%=gE_xxv59=@Z#C`$`8Pm5A9(Q}HwJ9N&(-)#FhU zGPK-B-$g(mp19@{O5;TL^w*{B5T*n2LC^v$<9?C?Rn29|62jvwx)Py{sxZMkmsZ?Y zS@VzRe>%e=s*2^;EQF`$=-IwCT2vlaiA_Sb<)ho<8S2K0eQ|VCwV_jMZ|NnfL|LkH zT0b+ySJX;lDu21@#@-CK#Lu1cvqc;kZU3_?{)3h1t&&8G?_PN!{ZS&I4*xo0!tdo@ z_EjE%k8|v5ePn%R{YUN$;f76IngYV8!np&R=yD#&|3FsJyc63OQvJHdF#Ob5=WuXP z=lClQnr0D}`9`DM(y42h7UYy9yQWRThTmd@gr5`W_T1zR#|>1Op=gkYLoV89ZC!h; zmi}y*b$+a2n5Ht}XMLu$uJYti*O8Hv?F^{X} zFIv<`ouyQ(CoQ=-xT25I`D@hs+RO+pA;HQ_%z6bWRUA;6n*-RbfB+r4#9b+ELH+i!@3#w4nx_nSv6=PaIMG!U!90XJuR`i6& z7Lvq~kC^QH+^#z}_lM3=s%4Ub+_sP$TqZCPMtt2e8>mi{D0AQ*kPEip;?_LI7;HO$ z`-=vW<++Uvngo1B3%22S26qQrc8>1`*IPJ?9)doz`@1NFad${!AdAqLFadsrc;&%{ zyd-kl6NZW+!u@i|A1xHGg<4ka)t^|!*#QGfv0$0 zQUDlPZT|W{)OQVNO)xdVc5nv-6;A8`{TM;LQcKPU8PvJetY$nsF(y_GxZP3tXiu@0 zD|AmUh;hEgE0lm|Z8xufe+if*pwW2n!TSKHW3z9ZM3iq~tg*WCB8a%G?vHbJ(MwXyh7YPJxZ_hE8Y9%=n-O)pN{V@# z+_oLf(bxc%gpC%wa+pb6yCo-YrT(FELVsbW5%lUlK>7dpoe znb%)}4ey5Cs=onD(7_~;L$+?5G0m2T?u}t&%(-~QHf7*1;Jzs&i4L3bb9%6Tg@C7xSRZt`6E$keOJtsgJAoQ{#p{R7;dsD(6;qCXzGo zED>|)K9E~LmJlF{?*mXsz}e6A84#I4la-g9C`WTWK>pH4Xgw!2j_<>F@3FtUv>DRL z5Ogf;Z|&B z5KQ%C=(LLK9FD-B{s~8}1xy6Y?g0ytZcAC++TE&%317-$9@4%IB zE&e=;lI>8hVfKoa(p}m@qM&FlAiVr(peoGIB@lFmq=toiO zjHWpKLK^of58WQi@Iinc70=?lajxL?FYBn}VZadP;@$EO{B#EdC z&*xb5+PApt=o}aO8snAzB5<&Xr$KAKLG?BdEh^kHNm#3FfI<)WMT}vAV}{z=4g0FV zDu8nrDzGzX;_xN!4zBA*@Lm^0SOz{0%ES`!wA13+uYVFs%nFpROF@<4MFDz=#dmkv z6oeQqis{NEVY2b81cNAvO%d-7k`xeW^7VAGAL|gl-9TM%i@2wjflbG=NCr`TVVoNy zr2(tEk4g&6e)9kC+ucJ7N~bxck_Uxo>dYE)+g9|J3c@BM^?+KcBq0!D*F|%86%0Hi z6d``>p&=)jZfTGgjKYTe=gy&!j}jTCh!&l|{y)u}{u!gv1qft3%}Bidz@~_IBP9iT zqarTLuDD*^c3IueZcM-T7M^u14f+>$^)}9IZ4Y1)1zJ|rhK{ejPwFyq@vn;=?4IQN zNZ?W>_8rE#Zc32QpOOM!EcC~Q2xkt3x;lSallL=oikN*0PFk8x)IXd0i8}z+9GFa+ z+^V}HVX8PS`q5$Lyh+f}I@(FRjM#Dqf`!-dVh; zQ6(NjbIQS|#D>j+&Pe7vOsg!$tly)LP72Mnb^VoH0cTEsa_}{=NB!Z zkdV8}nTRJ#<@&Pkf`=5HsY))s;9#~RJi+2MNqDzu4pOmC^@eneZ*71eC2)UCbR^P~ z2w8`G;-_?z74H|ByxlLm;3IwD%YTstAJ?M)LJ`b zajaNImcCw-V(KH3zm-=nO;~p65?X)>q@kc?*wNgeI`sNLzC++WwE`dEfy3n&oc`S< ze+)IWps7$E;iTu(IIQK~F^m<7cd=NWXPN|kFXf(|2xWPV4bZpOwA3X@O|R9MCf~RR zmR+H4sfgczsbn-V7d`_(t7mTnf4k2%yzn>emdzi(i*ay6MjTh~ru6Ftz@6uGO>|06 H Date: Thu, 25 Jul 2024 10:08:51 -0700 Subject: [PATCH 1394/2686] Run update.sh --- eclipse-temurin/README.md | 164 +++++++++++++++++++------------------- 1 file changed, 84 insertions(+), 80 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index e1b52e1e93ff..a1718c23e94d 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,47 +28,51 @@ WARNING: ## Simple Tags -- [`8u412-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/alpine/Dockerfile) +- [`8u422-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/alpine/Dockerfile) -- [`8u412-b08-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/focal/Dockerfile) +- [`8u422-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/focal/Dockerfile) -- [`8u412-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u422-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u412-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u422-b05-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/noble/Dockerfile) -- [`8u412-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u422-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u412-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u422-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u412-b08-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u422-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u412-b08-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u422-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u412-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/alpine/Dockerfile) +- [`8u422-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u412-b08-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/focal/Dockerfile) +- [`8u422-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/alpine/Dockerfile) -- [`8u412-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) +- [`8u422-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/focal/Dockerfile) -- [`8u412-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u422-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/jammy/Dockerfile) -- [`8u412-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u422-b05-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/noble/Dockerfile) -- [`8u412-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u422-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u412-b08-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u422-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u412-b08-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) +- [`8u422-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/alpine/Dockerfile) +- [`8u422-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/focal/Dockerfile) +- [`8u422-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/alpine/Dockerfile) -- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/jammy/Dockerfile) + +- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/noble/Dockerfile) + +- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubi/ubi9-minimal/Dockerfile) - [`11.0.24_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -78,15 +82,15 @@ WARNING: - [`11.0.24_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/alpine/Dockerfile) +- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/alpine/Dockerfile) -- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubi/ubi9-minimal/Dockerfile) - [`11.0.24_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -96,15 +100,15 @@ WARNING: - [`11.0.24_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/alpine/Dockerfile) +- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/alpine/Dockerfile) -- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubi/ubi9-minimal/Dockerfile) - [`17.0.12_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -114,15 +118,15 @@ WARNING: - [`17.0.12_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/alpine/Dockerfile) +- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/alpine/Dockerfile) -- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubi/ubi9-minimal/Dockerfile) - [`17.0.12_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -132,13 +136,13 @@ WARNING: - [`17.0.12_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/alpine/Dockerfile) +- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/alpine/Dockerfile) -- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubi/ubi9-minimal/Dockerfile) - [`21.0.4_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -148,13 +152,13 @@ WARNING: - [`21.0.4_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/alpine/Dockerfile) +- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/alpine/Dockerfile) -- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubi/ubi9-minimal/Dockerfile) - [`21.0.4_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -164,13 +168,13 @@ WARNING: - [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) -- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/alpine/Dockerfile) +- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/alpine/Dockerfile) -- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/jammy/Dockerfile) -- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/noble/Dockerfile) +- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubi/ubi9-minimal/Dockerfile) - [`22.0.2_9-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -180,13 +184,13 @@ WARNING: - [`22.0.2_9-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/alpine/Dockerfile) +- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/alpine/Dockerfile) -- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/jammy/Dockerfile) -- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/noble/Dockerfile) +- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubi/ubi9-minimal/Dockerfile) - [`22.0.2_9-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -198,41 +202,41 @@ WARNING: ## Shared Tags -- `8u412-b08-jdk`, `8-jdk`, `8`: +- `8u422-b05-jdk`, `8-jdk`, `8`: - - [`8u412-b08-jdk-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/ubuntu/jammy/Dockerfile) - - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/noble/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u412-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u422-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u412-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u412-b08-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u412-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u422-b05-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u412-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u412-b08-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u422-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-1809/Dockerfile) -- `8u412-b08-jre`, `8-jre`: +- `8u422-b05-jre`, `8-jre`: - - [`8u412-b08-jre-jammy`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/ubuntu/jammy/Dockerfile) - - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/noble/Dockerfile) + - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u412-b08-jre-windowsservercore`, `8-jre-windowsservercore`: +- `8u422-b05-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u412-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u412-b08-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u412-b08-jre-nanoserver`, `8-jre-nanoserver`: +- `8u422-b05-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u412-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u412-b08-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/057e5aa7581e96b8a2334290e750b329d62abfdf/8/jre/windows/nanoserver-1809/Dockerfile) + - [`8u422-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u422-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-1809/Dockerfile) - `11.0.24_8-jdk`, `11-jdk`, `11`: - - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/noble/Dockerfile) - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) @@ -248,7 +252,7 @@ WARNING: - `11.0.24_8-jre`, `11-jre`: - - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/noble/Dockerfile) - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) @@ -264,7 +268,7 @@ WARNING: - `17.0.12_7-jdk`, `17-jdk`, `17`: - - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/noble/Dockerfile) - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) @@ -280,7 +284,7 @@ WARNING: - `17.0.12_7-jre`, `17-jre`: - - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/noble/Dockerfile) - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) @@ -296,7 +300,7 @@ WARNING: - `21.0.4_7-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/noble/Dockerfile) - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) @@ -312,7 +316,7 @@ WARNING: - `21.0.4_7-jre`, `21-jre`: - - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/noble/Dockerfile) - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) @@ -328,7 +332,7 @@ WARNING: - `22.0.2_9-jdk`, `22-jdk`, `22`: - - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/noble/Dockerfile) - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) @@ -344,7 +348,7 @@ WARNING: - `22.0.2_9-jre`, `22-jre`: - - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/noble/Dockerfile) - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) From 06b08c79d7fd05f1809b2c3bdf501b70366bc8df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jul 2024 12:08:55 -0700 Subject: [PATCH 1395/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index e9b28914ccd3..b397e74b765b 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.3`, `ee-7.1.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8604900602430740d476f04ab210611d929ca421/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.4`, `ee-7.1.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5b0b75ffdc67ec24173935876f571cd1ebe47e4f/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.3`, `ce-7.1.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8604900602430740d476f04ab210611d929ca421/community/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.4`, `ce-7.1.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5b0b75ffdc67ec24173935876f571cd1ebe47e4f/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) From 795571efc29c228d0fdcbf09c5e30df39193583d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jul 2024 13:08:53 -0700 Subject: [PATCH 1396/2686] Run update.sh --- amazonlinux/README.md | 4 +-- haxe/README.md | 68 +++++++++++++++++++++---------------------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 9b6b38ac5367..a69e2973a6c1 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240708.0`](https://github.com/amazonlinux/container-images/blob/9aa5efdadd1dbd202f24e6425831f550a005700d/Dockerfile) +- [`2023`, `latest`, `2023.5.20240722.0`](https://github.com/amazonlinux/container-images/blob/5ab742374d78d507f5ddb156396cb7b08c6c032a/Dockerfile) -- [`2`, `2.0.20240709.1`](https://github.com/amazonlinux/container-images/blob/658e36f64d9196707f00b3e5082ce8a54d65ed26/Dockerfile) +- [`2`, `2.0.20240719.0`](https://github.com/amazonlinux/container-images/blob/777bd118eac88f5da9cd43baee35bea52604def2/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/haxe/README.md b/haxe/README.md index c1c39cff9f29..b6cffddb93aa 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,82 +28,82 @@ WARNING: ## Simple Tags -- [`4.3.4-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) +- [`4.3.5-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bookworm/Dockerfile) -- [`4.3.4-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/bullseye/Dockerfile) +- [`4.3.5-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bullseye/Dockerfile) -- [`4.3.4-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.5-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.4-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.5-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.4-alpine3.20`, `4.3-alpine3.20`, `4.3.4-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.3/alpine3.20/Dockerfile) +- [`4.3.5-alpine3.20`, `4.3-alpine3.20`, `4.3.5-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.20/Dockerfile) -- [`4.3.4-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.19/Dockerfile) +- [`4.3.5-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.19/Dockerfile) -- [`4.3.4-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.18/Dockerfile) +- [`4.3.5-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.18/Dockerfile) -- [`4.3.4-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/alpine3.17/Dockerfile) +- [`4.3.5-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.17/Dockerfile) -- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) +- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bookworm/Dockerfile) -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/bullseye/Dockerfile) +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) -- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.2/alpine3.20/Dockerfile) +- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.20/Dockerfile) -- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.2/alpine3.19/Dockerfile) +- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.19/Dockerfile) -- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.2/alpine3.18/Dockerfile) +- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.18/Dockerfile) -- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.2/alpine3.17/Dockerfile) +- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.17/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) -- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.1/alpine3.20/Dockerfile) +- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.20/Dockerfile) -- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.1/alpine3.19/Dockerfile) +- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.19/Dockerfile) -- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.1/alpine3.18/Dockerfile) +- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.18/Dockerfile) -- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/alpine3.17/Dockerfile) +- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.17/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c678f34e8951bdb1359e08021276df5d38ac83df/4.0/alpine3.20/Dockerfile) +- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.20/Dockerfile) -- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7f47ba7340373d40202dfb77621de1ed3ba3677/4.0/alpine3.19/Dockerfile) +- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.19/Dockerfile) -- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741/4.0/alpine3.18/Dockerfile) +- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.18/Dockerfile) -- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/alpine3.17/Dockerfile) +- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.17/Dockerfile) ## Shared Tags -- `4.3.4`, `4.3`, `latest`: +- `4.3.5`, `4.3`, `latest`: - - [`4.3.4-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.3/bookworm/Dockerfile) - - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) + - [`4.3.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bookworm/Dockerfile) + - [`4.3.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) -- `4.3.4-windowsservercore`, `4.3-windowsservercore`: +- `4.3.5-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.4-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.4-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/882ff89f78244a8a5b05faaf7d4fe9933528f6ca/4.3/windowsservercore-1809/Dockerfile) + - [`4.3.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/1cff33784d835b54074b7befa1ee159877ede9bf/4.2/bookworm/Dockerfile) + - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bookworm/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) @@ -114,7 +114,7 @@ WARNING: - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) @@ -125,7 +125,7 @@ WARNING: - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5a0bf6fd06e6c8ec052cf0a2bbd83b39932a1839/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) From 7861723f835d3f39c1a9e1e9cf2aaf4eacdd0096 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Jul 2024 14:08:55 -0700 Subject: [PATCH 1397/2686] Run update.sh --- clojure/README.md | 144 ++++++++++++++++++++++++--------------------- docker/README.md | 30 +++++----- influxdb/README.md | 32 +++++----- rust/README.md | 12 ++-- 4 files changed, 113 insertions(+), 105 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index eb13ddd3afa6..431110b83c01 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,139 +24,147 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-focal`, `temurin-8-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-focal/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-focal`, `temurin-8-tools-deps-1.11.3.1456-focal`, `temurin-8-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-focal/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.11.3.1456-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-focal`, `temurin-11-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-focal/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-focal`, `temurin-11-tools-deps-1.11.3.1456-focal`, `temurin-11-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-focal/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.11.3.1456-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-focal`, `temurin-17-lein-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-focal/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-focal`, `temurin-17-tools-deps-1.11.3.1456-focal`, `temurin-17-tools-deps-focal`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-focal/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.11.3.1456-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.11.3.1456-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6a8d5b5094a2fd6a1c89781ad0b2f4d41b2f7bc6/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-22/tools-deps/Dockerfile) + +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-22/tools-deps/Dockerfile) + +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-22/tools-deps/Dockerfile) + +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) + +- [`temurin-22-noble`, `temurin-22-tools-deps-1.11.3.1456-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) @@ -265,7 +273,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `clojure:-alpine` diff --git a/docker/README.md b/docker/README.md index 4eeeca847c3a..aac3c6ae3942 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`27.1.1-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/cli/Dockerfile) +- [`27.1.1-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/cli/Dockerfile) - [`27.1.1-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.1-dind-alpine3.20`, `27.1.1`, `27.1`, `27`, `latest`, `27.1.1-alpine3.20`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind/Dockerfile) - [`27.1.1-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind-rootless/Dockerfile) -- [`27.1.1-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.1.1-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.1.1-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-1809/Dockerfile) +- [`27.1.1-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) - [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/cli/Dockerfile) @@ -48,32 +48,32 @@ WARNING: - [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-1809/Dockerfile) -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/cli/Dockerfile) +- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/cli/Dockerfile) - [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-1809/Dockerfile) +- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-1809/Dockerfile) -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/cli/Dockerfile) +- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/cli/Dockerfile) - [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-1809/Dockerfile) +- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.1.1-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/windows/windowsservercore-1809/Dockerfile) + - [`27.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) - `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: @@ -82,13 +82,13 @@ WARNING: - `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/06b497cebd8daa389434d12bbacc00fdbefbe3fe/25/windows/windowsservercore-1809/Dockerfile) + - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-1809/Dockerfile) - `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45294e1500cbbad6a2d52126f9d2c3e8dc9e86f5/24/windows/windowsservercore-1809/Dockerfile) + - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index f5e9b8185b9b..cd37f27c31fa 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.8`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/95763443a387f76ee242515bb950d0f4507674ad/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.8-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 2bf692366606..b45f65a3adcf 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.79-bullseye`, `1.79.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/Dockerfile) +- [`1-bullseye`, `1.80-bullseye`, `1.80.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.79-slim-bullseye`, `1.79.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.80-slim-bullseye`, `1.80.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.79-bookworm`, `1.79.0-bookworm`, `bookworm`, `1`, `1.79`, `1.79.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/Dockerfile) +- [`1-bookworm`, `1.80-bookworm`, `1.80.0-bookworm`, `bookworm`, `1`, `1.80`, `1.80.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.79-slim-bookworm`, `1.79.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.79-slim`, `1.79.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.80-slim-bookworm`, `1.80.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.80-slim`, `1.80.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.79-alpine3.19`, `1.79.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.80-alpine3.19`, `1.80.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.79-alpine3.20`, `1.79.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.79-alpine`, `1.79.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/ea4aab0935fcafe4956d6206f3ecde84ffddf800/1.79.0/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.80-alpine3.20`, `1.80.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.80-alpine`, `1.80.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/alpine3.20/Dockerfile) # Quick reference (cont.) From 0d034649faadaee674c564fafc5986c31ec78bf0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jul 2024 10:08:59 -0700 Subject: [PATCH 1398/2686] Run update.sh --- arangodb/README.md | 2 +- storm/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index e4e0231e330a..ed3281ea87a6 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.11`, `3.11.10.1`](https://github.com/arangodb/arangodb-docker/blob/ce25dfe5cb8cc8658b031136b262bd8d2be7e679/alpine/3.11.10.1/Dockerfile) -- [`3.12`, `3.12.0.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/2ef14f68bdb95bef50e50d3edaf00c646e2e5d87/alpine/3.12.0.2/Dockerfile) +- [`3.12`, `3.12.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/eb4312a4f2e7974dc798d4e6585281b24b283e06/alpine/3.12.1/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index ac2d8fa435fc..52684e5c1f9a 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.3`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/e7117105eb207e0ffad071d429e7c3de8c0864ce/2.6.3/Dockerfile) +- [`2.6.3`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/adb8344286f15872ecebb2796ad7ee0791f09883/2.6.3/Dockerfile) - [`2.6.3-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/e7117105eb207e0ffad071d429e7c3de8c0864ce/2.6.3-jre17/Dockerfile) From b9cfa929365e721d3b5244ad7798ac41df1d2ce6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jul 2024 11:09:05 -0700 Subject: [PATCH 1399/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 999b3d57c5e7..86985aa3f9a4 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.28`, `4.28.0`, `4.28.0.1`, `latest`](https://github.com/liquibase/docker/blob/666d1c82ff5b6f3a282a7dc2767ae6d95be82ad3/Dockerfile) +- [`4.29`, `4.29.0`, `latest`](https://github.com/liquibase/docker/blob/6903fb3ab80cde8a9a763fd230bfa66449fe5ca5/Dockerfile) -- [`4.28-alpine`, `4.28.0-alpine`, `4.28.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/666d1c82ff5b6f3a282a7dc2767ae6d95be82ad3/Dockerfile.alpine) +- [`4.29-alpine`, `4.29.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/6903fb3ab80cde8a9a763fd230bfa66449fe5ca5/Dockerfile.alpine) # Quick reference (cont.) From 65c052f3f7a3dff7ac7be96d24a87a38422e32e4 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 26 Jul 2024 11:55:14 -0700 Subject: [PATCH 1400/2686] Officially deprecate `php-zendserver` image --- php-zendserver/README-short.txt | 2 +- php-zendserver/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 php-zendserver/deprecated.md diff --git a/php-zendserver/README-short.txt b/php-zendserver/README-short.txt index af398674f42d..0f4e14743a98 100644 --- a/php-zendserver/README-short.txt +++ b/php-zendserver/README-short.txt @@ -1 +1 @@ -Zend Server - the integrated PHP application platform for mobile and web apps. +DEPRECATED; Zend Server - the integrated PHP application platform for mobile and web apps. diff --git a/php-zendserver/deprecated.md b/php-zendserver/deprecated.md new file mode 100644 index 000000000000..3758d1cd2b10 --- /dev/null +++ b/php-zendserver/deprecated.md @@ -0,0 +1 @@ +This image is not actively maintained (and [has not been for years](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fphp-zendserver)). It is highly recommended for users to seek out alternatives. From 13cba5e4b43a3dd7ee3b7e13aa1413efb4ef6d1d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Jul 2024 12:08:59 -0700 Subject: [PATCH 1401/2686] Run update.sh --- ruby/README.md | 12 ++++----- tomcat/README.md | 64 +++++++++++++++++++++++++++++++----------------- 2 files changed, 48 insertions(+), 28 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index d8249fa79771..08218a591f0c 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -48,17 +48,17 @@ WARNING: - [`3.3.4-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/alpine3.19/Dockerfile) -- [`3.2.4-bookworm`, `3.2-bookworm`, `3.2.4`, `3.2`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/bookworm/Dockerfile) +- [`3.2.5-bookworm`, `3.2-bookworm`, `3.2.5`, `3.2`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/bookworm/Dockerfile) -- [`3.2.4-slim-bookworm`, `3.2-slim-bookworm`, `3.2.4-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/slim-bookworm/Dockerfile) +- [`3.2.5-slim-bookworm`, `3.2-slim-bookworm`, `3.2.5-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/slim-bookworm/Dockerfile) -- [`3.2.4-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/bullseye/Dockerfile) +- [`3.2.5-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/bullseye/Dockerfile) -- [`3.2.4-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/slim-bullseye/Dockerfile) +- [`3.2.5-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/slim-bullseye/Dockerfile) -- [`3.2.4-alpine3.20`, `3.2-alpine3.20`, `3.2.4-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/alpine3.20/Dockerfile) +- [`3.2.5-alpine3.20`, `3.2-alpine3.20`, `3.2.5-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/alpine3.20/Dockerfile) -- [`3.2.4-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.2/alpine3.19/Dockerfile) +- [`3.2.5-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/alpine3.19/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index e99dd8ebb1fe..ffee98508c8b 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,55 +24,75 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M22-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11.0.0-M22-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M22-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M22`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M22-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M22-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M22`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/11.0/jre21/temurin-noble/Dockerfile) -- [`10.1.26-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`, `10.1.26-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.26-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.26`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jdk21/temurin-jammy/Dockerfile) -- [`10.1.26-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`, `10.1.26-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.26-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.26-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.26-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.26-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.26-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.26-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.26-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.26`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.26-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.26-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.26-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.26-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.26-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.26-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.26-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.26-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.26-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.26-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.26-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.26-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.26-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.26-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre21/temurin-jammy/Dockerfile) -- [`9.0.91-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`, `9.0.91-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.91-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.91`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/temurin-jammy/Dockerfile) +- [`10.1.26-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.26-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.26-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk17/temurin-noble/Dockerfile) -- [`9.0.91-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`, `9.0.91-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.91-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.26-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.26-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.26-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre17/temurin-noble/Dockerfile) + +- [`10.1.26-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk17/temurin-jammy/Dockerfile) + +- [`10.1.26-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre17/temurin-jammy/Dockerfile) + +- [`10.1.26-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.26-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.26-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk11/temurin-noble/Dockerfile) + +- [`10.1.26-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.26-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.26-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre11/temurin-noble/Dockerfile) + +- [`10.1.26-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk11/temurin-jammy/Dockerfile) + +- [`10.1.26-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre11/temurin-jammy/Dockerfile) + +- [`9.0.91-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.91-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.91-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.91`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk21/temurin-noble/Dockerfile) + +- [`9.0.91-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.91-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.91-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre21/temurin-noble/Dockerfile) + +- [`9.0.91-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/temurin-jammy/Dockerfile) + +- [`9.0.91-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre21/temurin-jammy/Dockerfile) - [`9.0.91-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.91-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.91-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.91-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.91-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.91-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.91-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.91-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.91-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.91-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.91-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.91-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.91-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.91-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.91-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-focal/Dockerfile) +- [`9.0.91-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.91-jre17-temurin-focal`, `9.0-jre17-temurin-focal`, `9-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-focal/Dockerfile) +- [`9.0.91-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-jammy/Dockerfile) - [`9.0.91-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.91-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.91-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`, `9.0.91-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.91-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.91-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.91-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.91-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.91-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`, `9.0.91-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.91-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.91-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.91-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.91-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.91-jdk11-temurin-focal`, `9.0-jdk11-temurin-focal`, `9-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-focal/Dockerfile) +- [`9.0.91-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.91-jre11-temurin-focal`, `9.0-jre11-temurin-focal`, `9-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-focal/Dockerfile) +- [`9.0.91-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-jammy/Dockerfile) - [`9.0.91-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.91-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.91-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`, `9.0.91-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.91-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.91-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.91-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.91-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.91-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`, `9.0.91-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.91-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.91-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.91-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.91-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.91-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-focal/Dockerfile) +- [`9.0.91-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.91-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-focal/Dockerfile) +- [`9.0.91-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-jammy/Dockerfile) - [`9.0.91-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.91-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/corretto-al2/Dockerfile) From 7081a6ddd26f44d3508908fa8a308d93890fe59a Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 26 Jul 2024 16:21:40 -0700 Subject: [PATCH 1402/2686] Add `adminer` deprecation notice --- adminer/README-short.txt | 2 +- adminer/deprecated.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 adminer/deprecated.md diff --git a/adminer/README-short.txt b/adminer/README-short.txt index b908ecebb256..0a69ca82298b 100644 --- a/adminer/README-short.txt +++ b/adminer/README-short.txt @@ -1 +1 @@ -Database management in a single PHP file. +DEPRECATED; Database management in a single PHP file. diff --git a/adminer/deprecated.md b/adminer/deprecated.md new file mode 100644 index 000000000000..9633e92f8054 --- /dev/null +++ b/adminer/deprecated.md @@ -0,0 +1,5 @@ +Adminer is [no longer maintained (upstream)](https://www.youtube.com/watch?v=OrOtiu_nfHE&lc=Ugy8pAL8wgAL3_iKkzZ4AaABAg.9pj_kQ2rkuw9pp813OyHha): + +> I've stopped working on it but maybe I'll return to it some day. + +See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-adminer/issues/147). Users are strongly encouraged to seek alternatives. From 4a49280f30eabf2576a8871cd84f3ba5a9a05042 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 07:08:54 -0700 Subject: [PATCH 1403/2686] Run update.sh --- adminer/README.md | 8 ++++++++ php-zendserver/README.md | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/adminer/README.md b/adminer/README.md index 71f29f9caabc..61a2a75207ea 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -14,6 +14,14 @@ WARNING: --> +# **DEPRECATION NOTICE** + +Adminer is [no longer maintained (upstream)](https://www.youtube.com/watch?v=OrOtiu_nfHE&lc=Ugy8pAL8wgAL3_iKkzZ4AaABAg.9pj_kQ2rkuw9pp813OyHha): + +> I've stopped working on it but maybe I'll return to it some day. + +See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-adminer/issues/147). Users are strongly encouraged to seek alternatives. + # Quick reference - **Maintained by**: diff --git a/php-zendserver/README.md b/php-zendserver/README.md index 6ad28b2f4b5c..37c9ecebe181 100644 --- a/php-zendserver/README.md +++ b/php-zendserver/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +This image is not actively maintained (and [has not been for years](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fphp-zendserver)). It is highly recommended for users to seek out alternatives. + # Quick reference - **Maintained by**: From 431d3aae10f79557cda39bb63c43295be64994aa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 08:08:53 -0700 Subject: [PATCH 1404/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 3046c4f7a46e..83901bb6057f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.88.1`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/48d24c4edaf68ca606dc7d90e97ee57bff31bac4/5/debian/Dockerfile) +- [`5.88.2`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/22f52c7dce218c90e39ca9d24490564929f4043a/5/debian/Dockerfile) -- [`5.88.1-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/48d24c4edaf68ca606dc7d90e97ee57bff31bac4/5/alpine/Dockerfile) +- [`5.88.2-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/22f52c7dce218c90e39ca9d24490564929f4043a/5/alpine/Dockerfile) # Quick reference (cont.) From 28f9ef47614f801c42811d4c59f573a63251e9b6 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 29 Jul 2024 09:52:30 -0700 Subject: [PATCH 1405/2686] Officially deprecate ClefOS --- clefos/README-short.txt | 2 +- clefos/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 clefos/deprecated.md diff --git a/clefos/README-short.txt b/clefos/README-short.txt index 373b8d583546..0442de3b60ac 100644 --- a/clefos/README-short.txt +++ b/clefos/README-short.txt @@ -1 +1 @@ -The official build of ClefOS. +DEPRECATED; The official build of ClefOS. diff --git a/clefos/deprecated.md b/clefos/deprecated.md new file mode 100644 index 000000000000..c9f50b6b1c82 --- /dev/null +++ b/clefos/deprecated.md @@ -0,0 +1 @@ +With [the EOL of CentOS 7 (June 30, 2024)](https://www.redhat.com/en/topics/linux/centos-linux-eol), this image/project is [officially deprecated](https://github.com/docker-library/official-images/pull/7964#issuecomment-2253636315). Please adjust your usage accordingly. From ec76efbad298e04eb7178f822579eb3b331aa82d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 10:09:07 -0700 Subject: [PATCH 1406/2686] Run update.sh --- archlinux/README.md | 6 ++-- clearlinux/README.md | 2 +- crate/README.md | 2 +- fedora/README.md | 6 ++-- joomla/README.md | 48 ++++++++++++++--------------- openjdk/README.md | 72 ++++++++++++++++++++++---------------------- photon/README.md | 6 ++-- xwiki/README.md | 6 ++-- zookeeper/README.md | 2 +- 9 files changed, 75 insertions(+), 75 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 5a7328af9b9e..02e1e9fb820d 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.base) +- [`latest`, `base`, `base-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.base) -- [`base-devel`, `base-devel-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240721.0.248532`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/482302c0f1d228555036ec4d36088afdc635c589/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 738c52d3108e..68ab64930dbd 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/65dba8369447f9bc5cbb9569a7c780e8a653ca9c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c636a7e6fc5d0dac37a7b86608068cef48da9aa1/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 835e355890e7..c054096594ab 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.3`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/72ee4689255f3f67ff7e3a39af19fe8b53263dbf/Dockerfile) +- [`5.7.4`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/d8b45726e982beff1fc63aebcd5f4bbc7312dbc4/Dockerfile) - [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index d1d588b528f0..0f57ed6fc23a 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/fe832bce8c523c7d99b059d93afd32d2b01afee4/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8e39969bbb6fb9482cede31c19e969c48252939b/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1225af72e061af0bcee8c8c426a6396ef6c60cf/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7f9dbbf47c41b95d34c7722927bb93816956cfe1/x86_64/Dockerfile) -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/98b56c235d7395fcdee8ed37a6960f26a1dbdd13/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/68b26415c2ff3605aed2f7c737b74048b23d7fdf/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 5dc060ac8a7d..db7ca5c13825 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-alpha2-php8.1-apache`, `5.2-php8.1-apache`, `5.2.alpha-php8.1-apache`, `5.2.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/apache/Dockerfile) +- [`5.2.0-alpha3-php8.1-apache`, `5.2-php8.1-apache`, `5.2.alpha-php8.1-apache`, `5.2.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/apache/Dockerfile) -- [`5.2.0-alpha2-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.alpha-php8.1-fpm-alpine`, `5.2.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-alpha3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.alpha-php8.1-fpm-alpine`, `5.2.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-alpha2-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.alpha-php8.1-fpm`, `5.2.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.1/fpm/Dockerfile) +- [`5.2.0-alpha3-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.alpha-php8.1-fpm`, `5.2.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/fpm/Dockerfile) -- [`5.2.0-alpha2`, `5.2`, `5.2.alpha`, `5.2.0-alpha`, `5.2.0-alpha2-apache`, `5.2-apache`, `5.2.alpha-apache`, `5.2.0-alpha-apache`, `5.2.0-alpha2-php8.2`, `5.2-php8.2`, `5.2.alpha-php8.2`, `5.2.0-alpha-php8.2`, `5.2.0-alpha2-php8.2-apache`, `5.2-php8.2-apache`, `5.2.alpha-php8.2-apache`, `5.2.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/apache/Dockerfile) +- [`5.2.0-alpha3`, `5.2`, `5.2.alpha`, `5.2.0-alpha`, `5.2.0-alpha3-apache`, `5.2-apache`, `5.2.alpha-apache`, `5.2.0-alpha-apache`, `5.2.0-alpha3-php8.2`, `5.2-php8.2`, `5.2.alpha-php8.2`, `5.2.0-alpha-php8.2`, `5.2.0-alpha3-php8.2-apache`, `5.2-php8.2-apache`, `5.2.alpha-php8.2-apache`, `5.2.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/apache/Dockerfile) -- [`5.2.0-alpha2-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.alpha-php8.2-fpm-alpine`, `5.2.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-alpha3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.alpha-php8.2-fpm-alpine`, `5.2.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-alpha2-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.alpha-php8.2-fpm`, `5.2.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3fc2531d198816fd4ab1089d0991763d39657fa5/5.2.alpha/php8.2/fpm/Dockerfile) +- [`5.2.0-alpha3-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.alpha-php8.2-fpm`, `5.2.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/fpm/Dockerfile) -- [`5.2.0-alpha2-php8.3-apache`, `5.2-php8.3-apache`, `5.2.alpha-php8.3-apache`, `5.2.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/apache/Dockerfile) +- [`5.2.0-alpha3-php8.3-apache`, `5.2-php8.3-apache`, `5.2.alpha-php8.3-apache`, `5.2.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/apache/Dockerfile) -- [`5.2.0-alpha2-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.alpha-php8.3-fpm-alpine`, `5.2.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-alpha3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.alpha-php8.3-fpm-alpine`, `5.2.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-alpha2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/360f6bd96c80f72b020d2d9c8aae9daa6bca2887/5.2.alpha/php8.3/fpm/Dockerfile) +- [`5.2.0-alpha3-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/fpm/Dockerfile) -- [`5.1.2-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/apache/Dockerfile) +- [`5.1.2-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/apache/Dockerfile) -- [`5.1.2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.2-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.1/fpm/Dockerfile) +- [`5.1.2-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/fpm/Dockerfile) -- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.2-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/apache/Dockerfile) +- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.2-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/apache/Dockerfile) -- [`5.1.2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.2-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.2/fpm/Dockerfile) +- [`5.1.2-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/fpm/Dockerfile) -- [`5.1.2-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/apache/Dockerfile) +- [`5.1.2-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/apache/Dockerfile) -- [`5.1.2-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.2-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/fpm-alpine/Dockerfile) -- [`5.1.2-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/5.1/php8.3/fpm/Dockerfile) +- [`5.1.2-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/fpm/Dockerfile) -- [`4.4.6`, `4.4`, `4`, `4.4.6-apache`, `4.4-apache`, `4-apache`, `4.4.6-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.6-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/apache/Dockerfile) +- [`4.4.6`, `4.4`, `4`, `4.4.6-apache`, `4.4-apache`, `4-apache`, `4.4.6-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.6-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/apache/Dockerfile) -- [`4.4.6-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.6-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.6-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.1/fpm/Dockerfile) +- [`4.4.6-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/fpm/Dockerfile) -- [`4.4.6-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/apache/Dockerfile) +- [`4.4.6-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/apache/Dockerfile) -- [`4.4.6-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.6-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.6-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/60bdaae5a96b191d1a229b92e0cecf5e0bd1552a/4.4/php8.2/fpm/Dockerfile) +- [`4.4.6-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index a4cd5f05642c..8eb7c6aac607 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-7-jdk-oraclelinux9`, `24-ea-7-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-7-jdk-oracle`, `24-ea-7-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-8-jdk-oraclelinux9`, `24-ea-8-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-8-jdk-oracle`, `24-ea-8-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-7-jdk-oraclelinux8`, `24-ea-7-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-8-jdk-oraclelinux8`, `24-ea-8-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-7-jdk-bookworm`, `24-ea-7-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/bookworm/Dockerfile) +- [`24-ea-8-jdk-bookworm`, `24-ea-8-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/bookworm/Dockerfile) -- [`24-ea-7-jdk-slim-bookworm`, `24-ea-7-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-7-jdk-slim`, `24-ea-7-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-8-jdk-slim-bookworm`, `24-ea-8-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-8-jdk-slim`, `24-ea-8-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-7-jdk-bullseye`, `24-ea-7-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/bullseye/Dockerfile) +- [`24-ea-8-jdk-bullseye`, `24-ea-8-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/bullseye/Dockerfile) -- [`24-ea-7-jdk-slim-bullseye`, `24-ea-7-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-8-jdk-slim-bullseye`, `24-ea-8-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-7-jdk-windowsservercore-ltsc2022`, `24-ea-7-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-8-jdk-windowsservercore-ltsc2022`, `24-ea-8-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-7-jdk-windowsservercore-1809`, `24-ea-7-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-8-jdk-windowsservercore-1809`, `24-ea-8-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-7-jdk-nanoserver-1809`, `24-ea-7-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-8-jdk-nanoserver-1809`, `24-ea-8-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-33-jdk-oraclelinux9`, `23-ea-33-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-33-jdk-oracle`, `23-ea-33-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-34-jdk-oraclelinux9`, `23-ea-34-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-34-jdk-oracle`, `23-ea-34-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-33-jdk-oraclelinux8`, `23-ea-33-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-34-jdk-oraclelinux8`, `23-ea-34-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-33-jdk-bookworm`, `23-ea-33-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/bookworm/Dockerfile) +- [`23-ea-34-jdk-bookworm`, `23-ea-34-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/bookworm/Dockerfile) -- [`23-ea-33-jdk-slim-bookworm`, `23-ea-33-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-33-jdk-slim`, `23-ea-33-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-34-jdk-slim-bookworm`, `23-ea-34-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-34-jdk-slim`, `23-ea-34-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-33-jdk-bullseye`, `23-ea-33-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/bullseye/Dockerfile) +- [`23-ea-34-jdk-bullseye`, `23-ea-34-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/bullseye/Dockerfile) -- [`23-ea-33-jdk-slim-bullseye`, `23-ea-33-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-34-jdk-slim-bullseye`, `23-ea-34-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-33-jdk-windowsservercore-ltsc2022`, `23-ea-33-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-34-jdk-windowsservercore-ltsc2022`, `23-ea-34-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-33-jdk-windowsservercore-1809`, `23-ea-33-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-34-jdk-windowsservercore-1809`, `23-ea-34-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-33-jdk-nanoserver-1809`, `23-ea-33-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-34-jdk-nanoserver-1809`, `23-ea-34-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-7-jdk`, `24-ea-7`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-8-jdk`, `24-ea-8`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-7-jdk-windowsservercore`, `24-ea-7-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-8-jdk-windowsservercore`, `24-ea-8-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-7-jdk-nanoserver`, `24-ea-7-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-8-jdk-nanoserver`, `24-ea-8-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ae3460a719ffbba69c472c5cfc550864dc424dbb/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-33-jdk`, `23-ea-33`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-ea-34-jdk`, `23-ea-34`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-33-jdk-windowsservercore`, `23-ea-33-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-ea-34-jdk-windowsservercore`, `23-ea-34-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-33-jdk-nanoserver`, `23-ea-33-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-ea-34-jdk-nanoserver`, `23-ea-34-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cf878590e03c67d911c050f4c9d74420a0bc5b8e/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 1c83626539cd..c1f42ac58c2a 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240721`, `latest`](https://github.com/vmware/photon-docker-image/blob/1db00f15bc3a3de31752c0c621dfec4951f555c9/docker/Dockerfile) +- [`5.0`, `5.0-20240728`, `latest`](https://github.com/vmware/photon-docker-image/blob/76739d93266ba4b9c23b5d584ea05f80164f3454/docker/Dockerfile) -- [`4.0`, `4.0-20240721`](https://github.com/vmware/photon-docker-image/blob/1de134c2702857a9b34e7ea8e434aa5ca62b53a0/docker/Dockerfile) +- [`4.0`, `4.0-20240728`](https://github.com/vmware/photon-docker-image/blob/8c7c9c14fd4cc0a595d6db411a3f3ca478132fbc/docker/Dockerfile) -- [`3.0`, `3.0-20240721`](https://github.com/vmware/photon-docker-image/blob/5c01224aed1248597f2120eb1ad9111e19435262/docker/Dockerfile) +- [`3.0`, `3.0-20240728`](https://github.com/vmware/photon-docker-image/blob/9d074f9044a410db3e82f9c8e1ffc6fb6e80a321/docker/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 30f35d1ca617..2318625ec1d3 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.5`, `16.5.0`, `16-mysql-tomcat`, `16.5-mysql-tomcat`, `16.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mysql-tomcat/Dockerfile) +- [`16`, `16.6`, `16.6.0`, `16-mysql-tomcat`, `16.6-mysql-tomcat`, `16.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.5-postgres-tomcat`, `16.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.6-postgres-tomcat`, `16.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.5-mariadb-tomcat`, `16.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4607590e83350fd4feafde4cebcca7ad9f8485a9/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.6-mariadb-tomcat`, `16.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index 15e387f46bc8..d8b6536786a8 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/dd520cb108da9eafe6914dce4e5dbd4877dd2411/3.7.2/Dockerfile) +- [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/c03e4eea773bb3406fed38bdda15bf0bdfb1b35b/3.7.2-jre11/Dockerfile) - [`3.7.2-jre-17`, `3.7-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.7.2/Dockerfile) From d4523d020fb5a34730c7f745ef85b9f9ca77cf7d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 12:08:54 -0700 Subject: [PATCH 1407/2686] Run update.sh --- clefos/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clefos/README.md b/clefos/README.md index de51147b6539..cdddb2f4c522 100644 --- a/clefos/README.md +++ b/clefos/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +With [the EOL of CentOS 7 (June 30, 2024)](https://www.redhat.com/en/topics/linux/centos-linux-eol), this image/project is [officially deprecated](https://github.com/docker-library/official-images/pull/7964#issuecomment-2253636315). Please adjust your usage accordingly. + # Quick reference - **Maintained by**: From 9173763b549c221093ab041e4bb4a66123f745a8 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 29 Jul 2024 14:08:18 -0700 Subject: [PATCH 1408/2686] Remove deprecated/removed repos Once their `library/` files are gone, we don't need to keep updating their descriptions. --- centos/README-short.txt | 1 - centos/README.md | 169 --------------- centos/content.md | 108 ---------- centos/deprecated.md | 1 - centos/github-repo | 1 - centos/issues.md | 1 - centos/license.md | 1 - centos/logo.png | Bin 9224 -> 0 bytes centos/maintainer.md | 1 - centos/metadata.json | 5 - consul/README-short.txt | 1 - consul/README.md | 258 ----------------------- consul/content.md | 197 ------------------ consul/deprecated.md | 1 - consul/github-repo | 1 - consul/license.md | 1 - consul/logo.svg | 7 - consul/maintainer.md | 1 - consul/metadata.json | 5 - express-gateway/README-short.txt | 1 - express-gateway/README.md | 124 ----------- express-gateway/content.md | 63 ------ express-gateway/deprecated.md | 1 - express-gateway/github-repo | 1 - express-gateway/license.md | 1 - express-gateway/logo.png | Bin 38611 -> 0 bytes express-gateway/maintainer.md | 1 - express-gateway/metadata.json | 5 - jobber/README-short.txt | 1 - jobber/README.md | 74 ------- jobber/content.md | 13 -- jobber/deprecated.md | 1 - jobber/github-repo | 1 - jobber/license.md | 1 - jobber/maintainer.md | 1 - jobber/metadata.json | 5 - nats-streaming/README-short.txt | 1 - nats-streaming/README.md | 340 ------------------------------- nats-streaming/content.md | 279 ------------------------- nats-streaming/deprecated.md | 1 - nats-streaming/github-repo | 1 - nats-streaming/license.md | 1 - nats-streaming/logo.png | Bin 9499 -> 0 bytes nats-streaming/maintainer.md | 1 - nats-streaming/metadata.json | 5 - vault/README-short.txt | 1 - vault/README.md | 129 ------------ vault/content.md | 68 ------- vault/deprecated.md | 1 - vault/github-repo | 1 - vault/license.md | 1 - vault/logo.svg | 6 - vault/maintainer.md | 1 - vault/metadata.json | 7 - 54 files changed, 1898 deletions(-) delete mode 100644 centos/README-short.txt delete mode 100644 centos/README.md delete mode 100644 centos/content.md delete mode 100644 centos/deprecated.md delete mode 100644 centos/github-repo delete mode 100644 centos/issues.md delete mode 100644 centos/license.md delete mode 100644 centos/logo.png delete mode 100644 centos/maintainer.md delete mode 100644 centos/metadata.json delete mode 100644 consul/README-short.txt delete mode 100644 consul/README.md delete mode 100644 consul/content.md delete mode 100644 consul/deprecated.md delete mode 100644 consul/github-repo delete mode 100644 consul/license.md delete mode 100644 consul/logo.svg delete mode 120000 consul/maintainer.md delete mode 100644 consul/metadata.json delete mode 100644 express-gateway/README-short.txt delete mode 100644 express-gateway/README.md delete mode 100644 express-gateway/content.md delete mode 100644 express-gateway/deprecated.md delete mode 100644 express-gateway/github-repo delete mode 100644 express-gateway/license.md delete mode 100644 express-gateway/logo.png delete mode 100644 express-gateway/maintainer.md delete mode 100644 express-gateway/metadata.json delete mode 100644 jobber/README-short.txt delete mode 100644 jobber/README.md delete mode 100644 jobber/content.md delete mode 100644 jobber/deprecated.md delete mode 100644 jobber/github-repo delete mode 100644 jobber/license.md delete mode 100644 jobber/maintainer.md delete mode 100644 jobber/metadata.json delete mode 100644 nats-streaming/README-short.txt delete mode 100644 nats-streaming/README.md delete mode 100644 nats-streaming/content.md delete mode 100644 nats-streaming/deprecated.md delete mode 100644 nats-streaming/github-repo delete mode 100644 nats-streaming/license.md delete mode 100644 nats-streaming/logo.png delete mode 120000 nats-streaming/maintainer.md delete mode 100644 nats-streaming/metadata.json delete mode 100644 vault/README-short.txt delete mode 100644 vault/README.md delete mode 100644 vault/content.md delete mode 100644 vault/deprecated.md delete mode 100644 vault/github-repo delete mode 100644 vault/license.md delete mode 100644 vault/logo.svg delete mode 120000 vault/maintainer.md delete mode 100644 vault/metadata.json diff --git a/centos/README-short.txt b/centos/README-short.txt deleted file mode 100644 index 8783972e1d40..000000000000 --- a/centos/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -DEPRECATED; The official build of CentOS. diff --git a/centos/README.md b/centos/README.md deleted file mode 100644 index 2ad8ba2b89f4..000000000000 --- a/centos/README.md +++ /dev/null @@ -1,169 +0,0 @@ - - -# **DEPRECATION NOTICE** - -*All* tags of this image are EOL ([June 30, 2024](https://www.redhat.com/en/topics/linux/centos-linux-eol) / [docker-library/official-images#17094](https://github.com/docker-library/official-images/pull/17094), although the last meaningful update was November 16, 2020, long before the EOL date: [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. - -# Quick reference - -- **Maintained by**: - [The CentOS Project](https://github.com/CentOS/sig-cloud-instance-images) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://bugs.centos.org](https://bugs.centos.org) or [GitHub](https://github.com/CentOS/sig-cloud-instance-images/issues) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/centos/` directory](https://github.com/docker-library/repo-info/blob/master/repos/centos) ([history](https://github.com/docker-library/repo-info/commits/master/repos/centos)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/centos` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fcentos) - [official-images repo's `library/centos` file](https://github.com/docker-library/official-images/blob/master/library/centos) ([history](https://github.com/docker-library/official-images/commits/master/library/centos)) - -- **Source of this description**: - [docs repo's `centos/` directory](https://github.com/docker-library/docs/tree/master/centos) ([history](https://github.com/docker-library/docs/commits/master/centos)) - -# CentOS - -CentOS Linux is a community-supported distribution derived from sources freely provided to the public by [Red Hat](ftp://ftp.redhat.com/pub/redhat/linux/enterprise/) for Red Hat Enterprise Linux (RHEL). As such, CentOS Linux aims to be functionally compatible with RHEL. The CentOS Project mainly changes packages to remove upstream vendor branding and artwork. CentOS Linux is no-cost and free to redistribute. Each CentOS Linux version is maintained for up to 10 years (by means of security updates -- the duration of the support interval by Red Hat has varied over time with respect to Sources released). A new CentOS Linux version is released approximately every 2 years and each CentOS Linux version is periodically updated (roughly every 6 months) to support newer hardware. This results in a secure, low-maintenance, reliable, predictable, and reproducible Linux environment. - -> [wiki.centos.org](https://wiki.centos.org/FrontPage) - -![logo](https://raw.githubusercontent.com/docker-library/docs/c4df0024e2cad985326dc38f6b6ce39abeab59c5/centos/logo.png) - -# CentOS image documentation - -The `centos:latest` tag is always the most recent version currently available. - -## Rolling builds - -The CentOS Project offers regularly updated images for all active releases. These images will be updated monthly or as needed for emergency fixes. These rolling updates are tagged with the major version number only. For example: `docker pull centos:6` or `docker pull centos:7` - -## Minor tags - -Additionally, images with minor version tags that correspond to install media are also offered. **These images DO NOT receive updates** as they are intended to match installation iso contents. If you choose to use these images it is highly recommended that you include `RUN yum -y update && yum clean all` in your Dockerfile, or otherwise address any potential security concerns. To use these images, please specify the minor version tag: - -For example: `docker pull centos:5.11` or `docker pull centos:6.6` - -## Overlayfs and yum - -Recent Docker versions support the [overlayfs](https://docs.docker.com/engine/userguide/storagedriver/overlayfs-driver/) backend, which is enabled by default on most distros supporting it from Docker 1.13 onwards. On Centos 6 and 7, **that backend requires yum-plugin-ovl to be installed and enabled**; while it is installed by default in recent centos images, make it sure you retain the `plugins=1` option in `/etc/yum.conf` if you update that file; otherwise, you may encounter errors related to rpmdb checksum failure - see [Docker ticket 10180](https://github.com/docker/docker/issues/10180) for more details. - -# Package documentation - -By default, the CentOS containers are built using yum's `nodocs` option, which helps reduce the size of the image. If you install a package and discover files missing, please comment out the line `tsflags=nodocs` in `/etc/yum.conf` and reinstall your package. - -# Systemd integration - -Systemd is now included in both the centos:7 and centos:latest base containers, but it is not active by default. In order to use systemd, you will need to include text similar to the example Dockerfile below: - -## Dockerfile for systemd base image - -```dockerfile -FROM centos:7 -ENV container docker -RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \ -systemd-tmpfiles-setup.service ] || rm -f $i; done); \ -rm -f /lib/systemd/system/multi-user.target.wants/*;\ -rm -f /etc/systemd/system/*.wants/*;\ -rm -f /lib/systemd/system/local-fs.target.wants/*; \ -rm -f /lib/systemd/system/sockets.target.wants/*udev*; \ -rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \ -rm -f /lib/systemd/system/basic.target.wants/*;\ -rm -f /lib/systemd/system/anaconda.target.wants/*; -VOLUME [ "/sys/fs/cgroup" ] -CMD ["/usr/sbin/init"] -``` - -This Dockerfile deletes a number of unit files which might cause issues. From here, you are ready to build your base image. - -```console -$ docker build --rm -t local/c7-systemd . -``` - -## Example systemd enabled app container - -In order to use the systemd enabled base container created above, you will need to create your `Dockerfile` similar to the one below. - -```dockerfile -FROM local/c7-systemd -RUN yum -y install httpd; yum clean all; systemctl enable httpd.service -EXPOSE 80 -CMD ["/usr/sbin/init"] -``` - -Build this image: - -```console -$ docker build --rm -t local/c7-systemd-httpd . -``` - -## Running a systemd enabled app container - -In order to run a container with systemd, you will need to mount the cgroups volumes from the host. Below is an example command that will run the systemd enabled httpd container created earlier. - -```console -$ docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro -p 80:80 local/c7-systemd-httpd -``` - -This container is running with systemd in a limited context, with the cgroups filesystem mounted. There have been reports that if you're using an Ubuntu host, you will need to add `-v /tmp/$(mktemp -d):/run` in addition to the cgroups mount. - -## A note about vsyscall - -CentOS 6 binaries and/or libraries are built to expect some system calls to be accessed via `vsyscall` mappings. Some linux distributions have opted to disable `vsyscall` entirely (opting exclusively for more secure `vdso` mappings), causing segmentation faults. - -If running `docker run --rm -it centos:centos6.7 bash` immediately exits with status code `139`, check to see if your system has disabled vsyscall: - -```console -$ cat /proc/self/maps | egrep 'vdso|vsyscall' -7fffccfcc000-7fffccfce000 r-xp 00000000 00:00 0 [vdso] -$ -``` - -vs - -```console -$ cat /proc/self/maps | egrep 'vdso|vsyscall' -7fffe03fe000-7fffe0400000 r-xp 00000000 00:00 0 [vdso] -ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] -``` - -If you do not see a `vsyscall` mapping, and you need to run a CentOS 6 container, try adding `vsyscall=emulated` to the kernel options in your bootloader - -Further reading : [lwn.net](https://lwn.net/Articles/446528/) - -# License - -View [license information](https://www.centos.org/legal/) for the software contained in this image. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `centos/` directory](https://github.com/docker-library/repo-info/tree/master/repos/centos). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/centos/content.md b/centos/content.md deleted file mode 100644 index 2ad2c140ca54..000000000000 --- a/centos/content.md +++ /dev/null @@ -1,108 +0,0 @@ -# CentOS - -CentOS Linux is a community-supported distribution derived from sources freely provided to the public by [Red Hat](ftp://ftp.redhat.com/pub/redhat/linux/enterprise/) for Red Hat Enterprise Linux (RHEL). As such, CentOS Linux aims to be functionally compatible with RHEL. The CentOS Project mainly changes packages to remove upstream vendor branding and artwork. CentOS Linux is no-cost and free to redistribute. Each CentOS Linux version is maintained for up to 10 years (by means of security updates -- the duration of the support interval by Red Hat has varied over time with respect to Sources released). A new CentOS Linux version is released approximately every 2 years and each CentOS Linux version is periodically updated (roughly every 6 months) to support newer hardware. This results in a secure, low-maintenance, reliable, predictable, and reproducible Linux environment. - -> [wiki.centos.org](https://wiki.centos.org/FrontPage) - -%%LOGO%% - -# CentOS image documentation - -The `%%IMAGE%%:latest` tag is always the most recent version currently available. - -## Rolling builds - -The CentOS Project offers regularly updated images for all active releases. These images will be updated monthly or as needed for emergency fixes. These rolling updates are tagged with the major version number only. For example: `docker pull %%IMAGE%%:6` or `docker pull %%IMAGE%%:7` - -## Minor tags - -Additionally, images with minor version tags that correspond to install media are also offered. **These images DO NOT receive updates** as they are intended to match installation iso contents. If you choose to use these images it is highly recommended that you include `RUN yum -y update && yum clean all` in your Dockerfile, or otherwise address any potential security concerns. To use these images, please specify the minor version tag: - -For example: `docker pull %%IMAGE%%:5.11` or `docker pull %%IMAGE%%:6.6` - -## Overlayfs and yum - -Recent Docker versions support the [overlayfs](https://docs.docker.com/engine/userguide/storagedriver/overlayfs-driver/) backend, which is enabled by default on most distros supporting it from Docker 1.13 onwards. On Centos 6 and 7, **that backend requires yum-plugin-ovl to be installed and enabled**; while it is installed by default in recent %%IMAGE%% images, make it sure you retain the `plugins=1` option in `/etc/yum.conf` if you update that file; otherwise, you may encounter errors related to rpmdb checksum failure - see [Docker ticket 10180](https://github.com/docker/docker/issues/10180) for more details. - -# Package documentation - -By default, the CentOS containers are built using yum's `nodocs` option, which helps reduce the size of the image. If you install a package and discover files missing, please comment out the line `tsflags=nodocs` in `/etc/yum.conf` and reinstall your package. - -# Systemd integration - -Systemd is now included in both the %%IMAGE%%:7 and %%IMAGE%%:latest base containers, but it is not active by default. In order to use systemd, you will need to include text similar to the example Dockerfile below: - -## Dockerfile for systemd base image - -```dockerfile -FROM %%IMAGE%%:7 -ENV container docker -RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \ -systemd-tmpfiles-setup.service ] || rm -f $i; done); \ -rm -f /lib/systemd/system/multi-user.target.wants/*;\ -rm -f /etc/systemd/system/*.wants/*;\ -rm -f /lib/systemd/system/local-fs.target.wants/*; \ -rm -f /lib/systemd/system/sockets.target.wants/*udev*; \ -rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \ -rm -f /lib/systemd/system/basic.target.wants/*;\ -rm -f /lib/systemd/system/anaconda.target.wants/*; -VOLUME [ "/sys/fs/cgroup" ] -CMD ["/usr/sbin/init"] -``` - -This Dockerfile deletes a number of unit files which might cause issues. From here, you are ready to build your base image. - -```console -$ docker build --rm -t local/c7-systemd . -``` - -## Example systemd enabled app container - -In order to use the systemd enabled base container created above, you will need to create your `Dockerfile` similar to the one below. - -```dockerfile -FROM local/c7-systemd -RUN yum -y install httpd; yum clean all; systemctl enable httpd.service -EXPOSE 80 -CMD ["/usr/sbin/init"] -``` - -Build this image: - -```console -$ docker build --rm -t local/c7-systemd-httpd . -``` - -## Running a systemd enabled app container - -In order to run a container with systemd, you will need to mount the cgroups volumes from the host. Below is an example command that will run the systemd enabled httpd container created earlier. - -```console -$ docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro -p 80:80 local/c7-systemd-httpd -``` - -This container is running with systemd in a limited context, with the cgroups filesystem mounted. There have been reports that if you're using an Ubuntu host, you will need to add `-v /tmp/$(mktemp -d):/run` in addition to the cgroups mount. - -## A note about vsyscall - -CentOS 6 binaries and/or libraries are built to expect some system calls to be accessed via `vsyscall` mappings. Some linux distributions have opted to disable `vsyscall` entirely (opting exclusively for more secure `vdso` mappings), causing segmentation faults. - -If running `docker run --rm -it centos:centos6.7 bash` immediately exits with status code `139`, check to see if your system has disabled vsyscall: - -```console -$ cat /proc/self/maps | egrep 'vdso|vsyscall' -7fffccfcc000-7fffccfce000 r-xp 00000000 00:00 0 [vdso] -$ -``` - -vs - -```console -$ cat /proc/self/maps | egrep 'vdso|vsyscall' -7fffe03fe000-7fffe0400000 r-xp 00000000 00:00 0 [vdso] -ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] -``` - -If you do not see a `vsyscall` mapping, and you need to run a CentOS 6 container, try adding `vsyscall=emulated` to the kernel options in your bootloader - -Further reading : [lwn.net](https://lwn.net/Articles/446528/) diff --git a/centos/deprecated.md b/centos/deprecated.md deleted file mode 100644 index 1ebf7d3d0a78..000000000000 --- a/centos/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -*All* tags of this image are EOL ([June 30, 2024](https://www.redhat.com/en/topics/linux/centos-linux-eol) / [docker-library/official-images#17094](https://github.com/docker-library/official-images/pull/17094), although the last meaningful update was November 16, 2020, long before the EOL date: [docker-library/official-images#9102](https://github.com/docker-library/official-images/pull/9102); see also https://www.centos.org/centos-linux-eol/ and [docker-library/docs#2205](https://github.com/docker-library/docs/pull/2205)). Please adjust your usage accordingly. diff --git a/centos/github-repo b/centos/github-repo deleted file mode 100644 index 6fdc93e0b6d6..000000000000 --- a/centos/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/CentOS/sig-cloud-instance-images diff --git a/centos/issues.md b/centos/issues.md deleted file mode 100644 index e1323c7c9c1a..000000000000 --- a/centos/issues.md +++ /dev/null @@ -1 +0,0 @@ -[https://bugs.centos.org](https://bugs.centos.org) or [GitHub](%%GITHUB-REPO%%/issues) diff --git a/centos/license.md b/centos/license.md deleted file mode 100644 index 6ae999d589b7..000000000000 --- a/centos/license.md +++ /dev/null @@ -1 +0,0 @@ -View [license information](https://www.centos.org/legal/) for the software contained in this image. diff --git a/centos/logo.png b/centos/logo.png deleted file mode 100644 index c74856787c3efb62fefe932cd737b565f1fe2cf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9224 zcmcgyWm8;Du*Tgj5F8d+G+1yaz~U?t2(H0p7k3SAi@Pn5;1YsMkl;>mw}jyCaC!g0 z{c@{roto2CQ|EN|%sfwbSJy;os43uLy~RR6K)?kl%7I_y;C}-H?e$%ySDp7N(9D$; z}9uYb({HxOl5v%Ov?(cM6*AJEq@$w^6A{VQgN5fJDQKyuRB zUQ0*0o^B++w}QGv4W^NMialYf2&h1b5(yFl?Pz{Vj1cPn8(#@}%nwl#Ndz1itcrvr zscg6Kuj;L+nwoTAFdYgUgimiJD0*`<;FK2TP!C!l8GITa63)zB%xt?^JGst843{a? zU?su&{}R!Z6hJF+;I11fF;=**Ft{X?lue!l>jtt@YuFzvGemDiolfQR<9qH>k^#($ z?F&h&emnutsx<|y)TU~DzmDJ?0Qx#A@}0K{u>LiJ&6l4Pb(b5x7X4Iqg4uC9)G|K~ zna*E>EGl3Qvv`JF3sZ@g`&xh;Uy0@QB zGNN0Cx^u>A!U%4@>1hi@!g_U*<;=y~MLu5`19#a-lgrUs2zS4tQz0NxLvZLH4o^Nj zcLqM_jmDwxI8+nK;DGDOQCgCA7VuG0<>J|4D!nVsT`)O;x)ds>Yy-)-exKWzoUvfL zUq-*_ta39I5O6!ZhD|q6yJKhTm}}&^{211yUwxjMxd?QsTzk7|BD(%ZBF&84el4%z zj`%b!z1X~gV5^cy&b5(F5`lW;zSWkJhWTN1+%F&9Ei3BVPw`zs(%f(YN$tIMQ*99v zm90f?#fCf%?+2X>jHwK5>@iKyZU+_~LTe#6pjxV(MGMY|Zmd8N`h;cp+Y z`5-uO!^aKJ9}&wBIQS?lR{0xLZPg;XL`Yx3-DJmp z+bouYvi!AhrY>3kc2B_+qsKeqg70yQ@BeAS*4`|H$1#MO-{*rqkiaM=d+I4(JBV{`x^wxS*#C zG0BMqj19fCB4*-Lx_OznptMWO7Zgb?cf34{}R<< zHAMM9z|lJ=X!K^|7N(dl3?dDB-XW&W$at(UtQd|{n(E-Z|YS!!f>O6LxmpGZbIoK^S zc5{TUl;F?-y{=cP>qCMC-sNTjlVn@!_H)0wM)3zDuF@Q>elH*y!z!R{%h+j8UF@ zAiKs+hJj$6uDYw#m%a3Di!v&O@!cfG2!D2udhZ^)bbw>NCX7`&TJhmt^FO!qp17C6 z%*IRuq@aL%zAvv@W2H0p*W5(n%H7zdU|l(|(N^nMtxnxfG4diidQYO1jFJ<46PvK@ zJu2b7-Q-@Tp>q=>m>bnH@tA`H9BhIKw#k1(WnW1&5%AL!b@(-2e>;>AexsW4cka^h zta;5@>bN$DK$NEAh)T6*YzKxS=(L zP|6}G1)Gve0Np34^WoskbI~0VFAHOKo@usA5PRUZrndIq+J-NyX-PH{i)W3q{s1&O zRRw;C=k}d6I#T6 zgS@(nTa^Gw9&}am{ka`SnewY4c91pi0kMJz)4obVDIdWHl`m{@<fC8>6$nox+KHxmK{Q9G=c}wP)dJlf^}QN6 zlaL|*yYv@Vrs8UZW$0rR<4|pGVSvl$^85E()7~%7k4AXH&j-fwIiT*@;y?Q0mJ;dl zCajvb3AEzrzEBsdG&#(z#BE$thVINK7NL%p9fACdCgPK`k-8?ro^Hvv9q}diPu|xi zgDS5(gTd?Y`5k4BYC!P=y(wowo<&oBR2a8sgPDUggx_tLr=}0Gv-fcFO89z1OtA27 zB;qf`oHgH^lBczcrIwqVPa80}a`8N7g+zB1p!GW=)I# z^%#xjO+w!2xOsnm)Z`0&Py00%W|L|duSdtra>02Zi0!soF~0z{LzJZTB@UKPmwzer zj#D@XK_o5+5PC>dQY9!2VHuP+126Fz?0@dPe2s;X{QkC`4xcCemhE6sz$?x-@oNN( zq|l|x#xHj31rc|Zp5BGhrYtpXsd4W7v6w-S9zY|u(X>#^ds_7Q!miiTB%*Wg(9Pn8 z@qA?AD)GpRJjj<~k9S&lQj|1ndyrx=D8@zIropyJ`}Ao3-oXWQZfXVV(*x~hAd4Zp zJf`*ri>U)A; ztdNim1tiHtMmS%#Gq4p>T?DZp#vdtKUnP3q#Z!FWT0CzJY~v%q8}%$5qv%E&MMg_^ zH>L6Rdf)YwcC$&`0zlOBC{|`*%cQ~%8bAd9V6NRe`{0yNvCf0iWrtWo7N6EDqH**7 zV-+EK`{rX{D8W{2$~ka@w4j7wD2-mag=>@C&;r7kT9v&$*zn@hsjXJd z^V*UPcr1L(%j5OEws1RG6Z;JPMzBTr8`RZlA0L4b|B_>P3_)-pZwP_cJP$4&GM5+{ zDBe~G+h>^?rN`2AG#lDVBsl!Av91e>%H4qQV+WzhHe?(cD5Q-Ka8II_Rn6G7U& zV%poU-`f|GUDkTqwC4_af3x>5#&B#Vh}v|ec?|{qK{xVL^0a&1cBNT<+*+(w<4U@E zJ!?m~fLkcd!};yUPG`-|e|Vj=VFbD2VOQGCau{ z6PKc-535FL>14V?YNn-gU8U)~`vYzo5TKn+>u%Li=A^^5txVbtuVT@^VLb5q7>*?E&4r9;lta=bba!@p-twE)_)!z>j-lxB-a|1gz;?r z8HY9ZQCzKmOav()5X}#qjbSUFQ}fx}@y*(P@nVLUa3dw=)fc{?_O6vr~dmqa6#2x|j2vyq=e1tEY1? zLCDc^^6jcHrl9GD{#?)kZBS5j}}87 zB;V@W&A%0@rFK@Ki2Yf>!|CBqBaHBfY}mAFXFIpeaaT+^^4uH&jh|=5pxgNe{gn@yuVb%Fr7jPSs!o+<1?me=s4MZ;A7Z)4UeS_ zdODSs#T-xI^AE8HgC-|M8yi)GX~#1Cx)TYvRkXjAYm$jjit6k%!<+DC07#kMai+Kh zkco?S(&@7qjQ%_x7WD)fnX0cJ)Z9mPRXP`Xhg}d*MsOc^4xb+vce6n^_Aa57!6;SH zABmt1NdFv|{T?^7Yr_=>O@Y?|6z?*;2@d-GfZmeU`_LHQt<8PH7=Ec7kqdhauk-kf z)HZsS1$cUB+Lf%qml65`!P8B%P9*|#0k{!PkY-ONQ~r(FnOq1*;Ggu3)Cei9fs%C_ zY&LJauh*v}!op+n0IY-Q(9bhDA`2@ypg#`s?R%P&kJbc|2h^1>-}cTC=dUhJMPh0S6Q zheolquNmKJBw)Ou%VI!d&+i?Qq$F{^e{1g9wl3M-%3P@O(8^7xEG(Yy-R~3qAV3+< z+`f#|pPLxYsKWcI+uLUOG<@W-aDutvESCRtQy^0z|DE}xTU5! z%FJqyIjQUcLk(R9H)NxC8$5pgsvO3Tj4!}oDlX7gY4Y8G3IW>V@_@P1iex?@T~IPQ zFOzY|w;(fyZh#>SI5>6Ys{1KboRL);Ycsd0i=Lf5TY;t}^rH!7P-#oL_}}~av34DrIm<4?uyxuAzqgA)r?{L=` zhYP;m|Msi@GiUs1c&V}N;;`%CINSSXwJ<{kP2$s~xU-6}?-*n!u`!T~qRoODwjzNF zO_si6T09rxJ!qFD5)_Ck%qrGr8vUuKH3xg1(Ib%Q!25^^=I>li>yF_L_%dew=O?=J z=bpaK>b<%DHgZSHhKXXrRqFSYu7gRg-YbXMt|r>e=fv3Gy5x`kld3z3`b~w z2>$%uX<-1nSkmm*Xrb7>jRFoD@*6Hg>)EePuj}0YRkhP)@|gBV^y%1HR%H~K9Ovyx zS67s0*-OoAPddd7*L2z!lLOYrWp&w%kRc^QzYj2|ui`R)N_QKXh226n!kFA#Fe=Jp zFMY(-;HT-P1Wm}-x9}Z@wf6ki^5O7b^3EV3MV(ka)hm(RhtAe2<4V{fDwu_9gJRdI z1p)Vsz7+Yjn|JmwM|B3r^jFk_Om8Nr1O}q2;4dWKb~Hi^MVEi{U#viBlQV6hSHg3Z zi>ZGy5Rt1nRB{BM$b8m*2G*M+(I$$&YLcm7-*Y3?ZzJ1bIjcv1lNY9?$ZK;Ke(j#* zqpy||eH5r`@4Z=PdiQTJ0R!uLJG*B4{E(9W_PueSKS5SnAjmfp1pAHxWO{Duh&IW_ z#0c%OfJ}j|7mWYXnc&dTd3b8e*7aNkP%2 zjt1!DdDbR7TknnHk}^B!W6~z4Zjg_i+fzr?dAvzARZ6U9 z;yPB}8(qZd7Qb1MsWEQS&bfwG#b?OUxLm7BFh1DM-vzlm|c~Ll=y&{i8Tg#LP zLquLm_03SZI$^Fo@C*ByFzSCIs?aox(n18!(W^D3H4v!~m29@4Pj*wvZACCQIWk*}SP0)VpT z>F`KJ5)re?;mB)ROzosnMcach>JAm!B~E|d==S)2LIB=6aehUW(`pu<;u-Ipgzf0YFaHMfCFK)h)d(Y7ITk%v`CGZ9nl4<2^R2sM#AiI0A)i=ygZ&Ck zinaLW^+jJpg>c@zR_8?aikqO0zmb5USnbNlS)%?TUr4$1aJ6n0VmpG%{W(o%Y}b#E z_wLRjxxaLb5}x%L!pMuv_1&jy)?tc~fm?pZx^Y3em)IuYE$Eev2xAjfKC7@cE`;$n zz!`~K*bXMt8Oyy!nR0@etI%OOUm-&#O50PV5wfBIQ$hZPkONvD2*elDfS;_swlG%d z<`HHT#v`2BQ|JWYfT?ak5OyZ|ou5fywOBlxOJTP+t3Yz9uTDHV!Za09J$DWtN!B z7rM->z`*6%!X#LNFgYO>64L)$zm^T#>iqQIG<`WyNnDo|2wRQRSc(8@Tagu9i}2S4bot4qKYtWdc_YA zV+J+M!V}cG5zF%jr<1k6{LbMe0Z(t9{QUh5?6W%3Qa(AVg8P@x*aSS70eudvL!NOZ zEFa|jk(V@pJ5qx-5q)$7iimVE-|8M;V`o8q4}A$$Xg4e{LJ`s0#9kifQ~)fag_JI#Hf9rKFm*z z!3lXaj0D4S+^XFGTagF(D|raNEpKPqlubTh12c-hLaDVqYK|i<_D{HJd&=x}4`v*Z z4};vq_5d&Qd+fN!`C$0Bb&`&aSUV_ChfA6uK)l_*w}Sf&2bX&Jx8?U2dQ*~u9oEk> zGQVbVnk=1&-XWh1x(bZB{rqTFnAEU=7+My}nHCwGmAD*ydccI&!K|pKw^NlhIfodi zrQh&qyS7szk2Y3o#L$-JBdL4pr>8eFfpswRB|^cSIFc!7;)*1}m=Lbt;QBkM5)Dav zjw4V;wm9@ie%q(OR;6wl7^ex|q843ouI_L|7Z?Jy5KHvqPHu6Td` zezs5-8!t0SJ2dlw?J>-clf$9sJS=Qz021i%{xgp3baUj-7qXwCXrX55XZ3meakoO* zN7*_~Az@$S8>I(X#QIh~g|0rIJVlf;l^+_kzCy}PVc0Bh*cUOG`?KEq?Zt#A?+Wz> zRqhg+gZ-M{BY)f2vqZ=<%{V11Tpa1Ps~wdJIeMBleK0C2sxFxw>}P!OP9}qCi;p0I z1QNcBi5c;w8_QS!r8(O<9&eV*Doc#o6Eu<%fv?`>;@&`~IC07Tudy<~$HUL>uw*N& z#&%|q4RNvO_vqMpQdg@p*-){B{!-QPIH4zC52@wXST9G?a_}|Hl9mNAaT(dc6Qk!E zg`-#ihXv1RZGP`g zN+VqeKR!iZO!Xpd@+75=O@lQGNs02`Q1$!Ysu&Hz+btYJ1|OW!uzEO>s@w4Z*b6Zv zBU{OM)sQ#n^2iVMIQ341!*yu-66ZM&Z~Y9%;Ba6Wb+Md5f7kPz-$4=$!%2lg7(x-^PXC(rj0-Lkrzlg{C=ablHDERv=7<)#w) zYfxUSK9&_%;WWbQjOf&bcR!)Ze+l+GG5yXQX0u(Gas3NI9mVRmm=N~k;}6}1;AV!L zCbCvN{V4#@l@_j3!GoAdQEx`yzjs1Vm2UlI^6FBZps1uwLdfN<;)jhN+yM7Xedan& zax${_PD(O8DLF*97>N%{xCox1Sc~Hp7fri7)6@*qPF$O5eJTms#lta@$x|tDp`IGr%XA z<46>g_-gbyGP&vd#luq|v>`d!iHYqq*`X*%(VA+`|6=Kd66Y&;QVo?>OdV zEYr)7(~cMNC!Fuk8y;0EBU;?Yr_mp^lacwTqj;4Nv%B$JsN*g}WJ*zV1ln2DG>nm- zUqmmFQ0KIyKlv<*hc@k3Ba@}Cp2$;XKT)GG-N$B5DgFs2TTrcSQESBYxwo^?h~;pr zX#<(WYma)d9KjaB_eQ=fJVGv3iueF=9b8?eiZKO}DVv=w*CbQ!3wh)pSxUj?CzKuCczpKE{PhT-}7> z+4Rsl>JS~Cw!0B2^|-8lXGl6-JvlyRG)J*eRVieRC})G5j*_PAqy*NlTYrG>2?ps6&ncExPU>T(y!d`a67-BPd=J7FTlS#1I5 zry-W%uDsB0aNV|9Us0A);wr8RX2!~eOd}(6lZZ$k9u7DL*;IKaE8{w#X$cf_D8L&U;4Z)Y7CPO8Zc;P!m(T8uiq?`)k;W-qO)#z(y;y_&E1^IoSm*FKWSGmr~sZ$ z;WJAc#9^)7n^P&hWbS^p??^)={8#8CrhhqAY~vru3zSj<^-R~B%_{3lKu{-Fp^~aA z=%c`7iNQQ^XJa%Nw&oB2)z+!!wKsD2Kx!;Dz~XkH{z^Z)dvjv07z&`eGQe#mDdVDb zmgc9h`5t|AR;nwD(X-*8T31le$Z9)xq)@RT>ts-F_yBcB2ZU6vriU-}wlUUzVkQJh z0T=4tYdOYCDyKN-&06<-^fdle=y)?xGFZ0%QMpALNB<9f=p`<0Tx+Q}c?^>|0!aWg z$B2w39{f!rym>>PK=bfUXI;z30G~<`4F~Bbf zim&==kn+5;**le~xaSku7QZ+bn_5^n)$ikF;^ifmIMuCGkQs3?!L};k<52^%86oj(~t1 z_1|3pINW9)r}EukCiqS93KrLH*DHwANN+c?`OK*)LGu$>8;lm(T+^BB8&IAK?8X+WfLbWT!XU25+v=fKA7yIpfZgc*I zy|duku=DM%-u{yiW6x0yQ*8%jQ-P+?g$KL*x zmt|9f@_?h^tv4)8s>0M{WIQCmIg-hCzL3MMVI&%2aUT-7^a{H7*_&F)Q_r6Wl@1XA zh(r{IwWrU;Ju))_VP5q(ArgG_`x`N&+VLDlcA?2c>ugh(LGxtnG$Q<043_K2m0T4j zd5HvVn(6l)-TjniwQRz7aauB4C0QJw)D@%svFH^xyjTrwT?pwF006b8&)#Bdl zG$)kTy9>;FM!LpWuu8vQg2RJOl=xHF7o&8Q@aGaO>4do4T8w6PMV!UqwOf*b#+v1` zH7`Xb8i^)4*{W-nDLy)@bdS>MSw?MiaPi-4JN=>P>yOI)DgWzD7){m}{H<@1UMdW! SwXb(}5I`T)&%L;eRS7siMH diff --git a/centos/maintainer.md b/centos/maintainer.md deleted file mode 100644 index 06be7cefd089..000000000000 --- a/centos/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -[The CentOS Project](%%GITHUB-REPO%%) diff --git a/centos/metadata.json b/centos/metadata.json deleted file mode 100644 index e90624aca4ca..000000000000 --- a/centos/metadata.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "hub": { - "categories": [] - } -} diff --git a/consul/README-short.txt b/consul/README-short.txt deleted file mode 100644 index 71c626fc5884..000000000000 --- a/consul/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -Consul is a datacenter runtime that provides service discovery, configuration, and orchestration. diff --git a/consul/README.md b/consul/README.md deleted file mode 100644 index b2a3e98cd9f8..000000000000 --- a/consul/README.md +++ /dev/null @@ -1,258 +0,0 @@ - - -# **DEPRECATION NOTICE** - -Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/consul](https://hub.docker.com/r/hashicorp/consul) instead of [consul](https://hub.docker.com/_/consul). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/consul. - -# Quick reference - -- **Maintained by**: - [HashiCorp](https://github.com/hashicorp/docker-consul) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/hashicorp/docker-consul/issues](https://github.com/hashicorp/docker-consul/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/consul/` directory](https://github.com/docker-library/repo-info/blob/master/repos/consul) ([history](https://github.com/docker-library/repo-info/commits/master/repos/consul)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/consul` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fconsul) - [official-images repo's `library/consul` file](https://github.com/docker-library/official-images/blob/master/library/consul) ([history](https://github.com/docker-library/official-images/commits/master/library/consul)) - -- **Source of this description**: - [docs repo's `consul/` directory](https://github.com/docker-library/docs/tree/master/consul) ([history](https://github.com/docker-library/docs/commits/master/consul)) - -# Consul - -Consul is a distributed, highly-available, and multi-datacenter aware tool for service discovery, configuration, and orchestration. Consul enables rapid deployment, configuration, and maintenance of service-oriented architectures at massive scale. For more information, please see: - -- [Consul documentation](https://www.consul.io/) -- [Consul on GitHub](https://github.com/hashicorp/consul) - -![logo](https://raw.githubusercontent.com/docker-library/docs/8adb88e1e328c244711742f65319ed4064cff9a2/consul/logo.svg?sanitize=true) - -# Consul and Docker - -Consul has several moving parts so we'll start with a brief introduction to Consul's architecture and then detail how Consul interacts with Docker. Please see the [Consul Architecture](https://www.consul.io/docs/architecture) guide for more detail on all these concepts. - -Each host in a Consul cluster runs the Consul agent, a long running daemon that can be started in client or server mode. Each cluster has at least 1 agent in server mode, and usually 3 or 5 for high availability. The server agents participate in a [consensus protocol](https://www.consul.io/docs/internals/consensus.html), maintain a centralized view of the cluster's state, and respond to queries from other agents in the cluster. The rest of the agents in client mode participate in a [gossip protocol](https://www.consul.io/docs/internals/gossip.html) to discover other agents and check them for failures, and they forward queries about the cluster to the server agents. - -Applications running on a given host communicate only with their local Consul agent, using its HTTP APIs or DNS interface. Services on the host are also registered with the local Consul agent, which syncs the information with the Consul servers. Doing the most basic DNS-based service discovery using Consul, an application queries for `foo.service.consul` and gets a randomly shuffled subset of all the hosts providing service "foo". This allows applications to locate services and balance the load without any intermediate proxies. Several HTTP APIs are also available for applications doing a deeper integration with Consul's service discovery capabilities, as well as its other features such as the key/value store. - -These concepts also apply when running Consul in Docker. Typically, you'll run a single Consul agent container on each host, running alongside the Docker daemon. You'll also need to configure some of the agents as servers (at least 3 for a basic HA setup). Consul should always be run with `--net=host` in Docker because Consul's consensus and gossip protocols are sensitive to delays and packet loss, so the extra layers involved with other networking types are usually undesirable and unnecessary. We will talk more about this below. - -We don't cover Consul's multi-datacenter capability here, but as long as `--net=host` is used, there should be no special considerations for Docker. - -# Using the Container - -We chose Alpine as a lightweight base with a reasonably small surface area for security concerns, but with enough functionality for development, interactive debugging, and useful health, watch, and exec scripts running under Consul in the container. As of Consul 0.7, the image also includes `curl` since it is so commonly used for health checks. - -Consul always runs under [dumb-init](https://github.com/Yelp/dumb-init), which handles reaping zombie processes and forwards signals on to all processes running in the container. We also use [gosu](https://github.com/tianon/gosu) to run Consul as a non-root "consul" user for better security. These binaries are all built by HashiCorp and signed with our [GPG key](https://www.hashicorp.com/security.html), so you can verify the signed package used to build a given base image. - -Running the Consul container with no arguments will give you a Consul server in [development mode](https://www.consul.io/docs/agent/options.html#_dev). The provided entry point script will also look for Consul subcommands and run `consul` as the correct user and with that subcommand. For example, you can execute `docker run consul members` and it will run the `consul members` command inside the container. The entry point also adds some special configuration options as detailed in the sections below when running the `agent` subcommand. Any other command gets `exec`-ed inside the container under `dumb-init`. - -The container exposes `VOLUME /consul/data`, which is a path where Consul will place its persisted state. This isn't used in any way when running in development mode. For client agents, this stores some information about the cluster and the client's health checks in case the container is restarted. For server agents, this stores the client information plus snapshots and data related to the consensus algorithm and other state like Consul's key/value store and catalog. For servers it is highly desirable to keep this volume's data around when restarting containers to recover from outage scenarios. If this is bind mounted then ownership will be changed to the consul user when the container starts. - -The container has a Consul configuration directory set up at `/consul/config` and the agent will load any configuration files placed here by binding a volume or by composing a new image and adding files. Alternatively, configuration can be added by passing the configuration JSON via environment variable `CONSUL_LOCAL_CONFIG`. If this is bind mounted then ownership will be changed to the consul user when the container starts. - -Since Consul is almost always run with `--net=host` in Docker, some care is required when configuring Consul's IP addresses. Consul has the concept of its cluster address as well as its client address. The cluster address is the address at which other Consul agents may contact a given agent. The client address is the address where other processes on the host contact Consul in order to make HTTP or DNS requests. You will typically need to tell Consul what its cluster address is when starting so that it binds to the correct interface and advertises a workable interface to the rest of the Consul agents. You'll see this in the examples below as the `-bind=` argument to Consul. - -The entry point also includes a small utility to look up a client or bind address by interface name. To use this, set the `CONSUL_CLIENT_INTERFACE` and/or `CONSUL_BIND_INTERFACE` environment variables to the name of the interface you'd like Consul to use and a `-client=` and/or `-bind=` argument will be computed and passed to Consul at startup. - -## Running Consul for Development - -```console -$ docker run -d --name=dev-consul -e CONSUL_BIND_INTERFACE=eth0 consul -``` - -This runs a completely in-memory Consul server agent with default bridge networking and no services exposed on the host, which is useful for development but should not be used in production. For example, if that server is running at internal address 172.17.0.2, you can run a three node cluster for development by starting up two more instances and telling them to join the first node. - -```console -$ docker run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=172.17.0.2 -... server 2 starts -$ docker run -d -e CONSUL_BIND_INTERFACE=eth0 consul agent -dev -join=172.17.0.2 -... server 3 starts -``` - -Then we can query for all the members in the cluster by running a Consul CLI command in the first container: - -```console -$ docker exec -t dev-consul consul members -Node Address Status Type Build Protocol DC -579db72c1ae1 172.17.0.3:8301 alive server 0.6.3 2 dc1 -93fe2309ef19 172.17.0.4:8301 alive server 0.6.3 2 dc1 -c9caabfd4c2a 172.17.0.2:8301 alive server 0.6.3 2 dc1 -``` - -Remember that Consul doesn't use the data volume in this mode - once the container stops all of your state will be wiped out, so please don't use this mode for production. Running completely on the bridge network with the development server is useful for testing multiple instances of Consul on a single machine, which is normally difficult to do because of port conflicts. - -Development mode also starts a version of Consul's web UI on port 8500. This can be added to the other Consul configurations by supplying the `-ui` option to Consul on the command line. The web assets are bundled inside the Consul binary in the container. - -## Running Consul Agent in Client Mode - -```console -$ docker run -d --net=host -e 'CONSUL_LOCAL_CONFIG={"leave_on_terminate": true}' consul agent -bind= -retry-join= -==> Starting Consul agent... -==> Starting Consul agent RPC... -==> Consul agent running! - Node name: 'linode' - Datacenter: 'dc1' - Server: false (bootstrap: false) - Client Addr: 127.0.0.1 (HTTP: 8500, HTTPS: -1, DNS: 8600, RPC: 8400) - Cluster Addr: (LAN: 8301, WAN: 8302) - Gossip encrypt: false, RPC-TLS: false, TLS-Incoming: false - Atlas: -... -``` - -This runs a Consul client agent sharing the host's network and advertising the external IP address to the rest of the cluster. Note that the agent defaults to binding its client interfaces to 127.0.0.1, which is the host's loopback interface. This would be a good configuration to use if other containers on the host also use `--net=host`, and it also exposes the agent to processes running directly on the host outside a container, such as HashiCorp's Nomad. - -The `-retry-join` parameter specifies the external IP of one other agent in the cluster to use to join at startup. There are several ways to control how an agent joins the cluster, see the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-join`, `-retry-join`, and `-atlas-join` options. - -Note also we've set [`leave_on_terminate`](https://www.consul.io/docs/agent/options.html#leave_on_terminate) using the `CONSUL_LOCAL_CONFIG` environment variable. This is recommended for clients to and will be defaulted to `true` in Consul 0.7 and later, so this will no longer be necessary. - -At startup, the agent will read config JSON files from `/consul/config`. Data will be persisted in the `/consul/data` volume. - -Here are some example queries on a host with an external IP of 66.175.220.234: - -```console -$ curl http://localhost:8500/v1/health/service/consul?pretty -[ - { - "Node": { - "Node": "linode", - "Address": "66.175.220.234", -... -``` - -```console -$ dig @localhost -p 8600 consul.service.consul -; <<>> DiG 9.9.5-3ubuntu0.7-Ubuntu <<>> @localhost -p 8600 consul.service.consul -; (2 servers found) -;; global options: +cmd -;; Got answer: -;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 61616 -;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0 -;; WARNING: recursion requested but not available - -;; QUESTION SECTION: -;consul.service.consul. IN A - -;; ANSWER SECTION: -consul.service.consul. 0 IN A 66.175.220.234 -... -``` - -If you want to expose the Consul interfaces to other containers via a different network, such as the bridge network, use the `-client` option for Consul: - -```console -docker run -d --net=host consul agent -bind= -client= -retry-join= -==> Starting Consul agent... -==> Starting Consul agent RPC... -==> Consul agent running! - Node name: 'linode' - Datacenter: 'dc1' - Server: false (bootstrap: false) - Client Addr: (HTTP: 8500, HTTPS: -1, DNS: 8600, RPC: 8400) - Cluster Addr: (LAN: 8301, WAN: 8302) - Gossip encrypt: false, RPC-TLS: false, TLS-Incoming: false - Atlas: -... -``` - -With this configuration, Consul's client interfaces will be bound to the bridge IP and available to other containers on that network, but not on the host network. Note that we still keep the cluster address out on the host network for performance. Consul will also accept the `-client=0.0.0.0` option to bind to all interfaces. - -## Running Consul Agent in Server Mode - -```console -$ docker run -d --net=host -e 'CONSUL_LOCAL_CONFIG={"skip_leave_on_interrupt": true}' consul agent -server -bind= -retry-join= -bootstrap-expect= -``` - -This runs a Consul server agent sharing the host's network. All of the network considerations and behavior we covered above for the client agent also apply to the server agent. A single server on its own won't be able to form a quorum and will be waiting for other servers to join. - -Just like the client agent, the `-retry-join` parameter specifies the external IP of one other agent in the cluster to use to join at startup. There are several ways to control how an agent joins the cluster, see the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-join`, `-retry-join`, and `-atlas-join` options. The server agent also consumes a `-bootstrap-expect` option that specifies how many server agents to watch for before bootstrapping the cluster for the first time. This provides an easy way to get an orderly startup with a new cluster. See the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-bootstrap` and `-bootstrap-expect` options. - -Note also we've set [`skip_leave_on_interrupt`](https://www.consul.io/docs/agent/options.html#skip_leave_on_interrupt) using the `CONSUL_LOCAL_CONFIG` environment variable. This is recommended for servers and will be defaulted to `true` in Consul 0.7 and later, so this will no longer be necessary. - -At startup, the agent will read config JSON files from `/consul/config`. Data will be persisted in the `/consul/data` volume. - -Once the cluster is bootstrapped and quorum is achieved, you must use care to keep the minimum number of servers operating in order to avoid an outage state for the cluster. The deployment table in the [consensus](https://www.consul.io/docs/internals/consensus.html) guide outlines the number of servers required for different configurations. There's also an [adding/removing servers](https://www.consul.io/docs/guides/servers.html) guide that describes that process, which is relevant to Docker configurations as well. The [outage recovery](https://www.consul.io/docs/guides/outage.html) guide has steps to perform if servers are permanently lost. In general it's best to restart or replace servers one at a time, making sure servers are healthy before proceeding to the next server. - -## Exposing Consul's DNS Server on Port 53 - -By default, Consul's DNS server is exposed on port 8600. Because this is cumbersome to configure with facilities like `resolv.conf`, you may want to expose DNS on port 53. Consul 0.7 and later supports this by setting an environment variable that runs `setcap` on the Consul binary, allowing it to bind to privileged ports. Note that not all Docker storage backends support this feature (notably AUFS). - -Here's an example: - -```console -$ docker run -d --net=host -e 'CONSUL_ALLOW_PRIVILEGED_PORTS=' consul -dns-port=53 -recursor=8.8.8.8 -``` - -This example also includes a recursor configuration that uses Google's DNS servers for non-Consul lookups. You may want to adjust this based on your particular DNS configuration. If you are binding Consul's client interfaces to the host's loopback address, then you should be able to configure your host's `resolv.conf` to route DNS requests to Consul by including "127.0.0.1" as the primary DNS server. This would expose Consul's DNS to all applications running on the host, but due to Docker's built-in DNS server, you can't point to this directly from inside your containers; Docker will issue an error message if you attempt to do this. You must configure Consul to listen on a non-localhost address that is reachable from within other containers. - -Once you bind Consul's client interfaces to the bridge or other network, you can use the `--dns` option in your *other containers* in order for them to use Consul's DNS server, mapped to port 53. Here's an example: - -```console -$ docker run -d --net=host -e 'CONSUL_ALLOW_PRIVILEGED_PORTS=' consul agent -dns-port=53 -recursor=8.8.8.8 -bind= -``` - -Now start another container and point it at Consul's DNS, using the bridge address of the host: - -```console -$ docker run -i --dns= -t ubuntu sh -c "apt-get update && apt-get install -y dnsutils && dig consul.service.consul" -... -;; ANSWER SECTION: -consul.service.consul. 0 IN A 66.175.220.234 -... -``` - -In the example above, adding the bridge address to the host's `/etc/resolv.conf` file should expose it to all containers without running with the `--dns` option. - -## Service Discovery with Containers - -There are several approaches you can use to register services running in containers with Consul. For manual configuration, your containers can use the local agent's APIs to register and deregister themselves, see the [Agent API](https://www.consul.io/docs/agent/http/agent.html) for more details. Another strategy is to create a derived Consul container for each host type which includes JSON config files for Consul to parse at startup, see [Services](https://www.consul.io/docs/agent/services.html) for more information. Both of these approaches are fairly cumbersome, and the configured services may fall out of sync if containers die or additional containers are started. - -If you run your containers under [HashiCorp's Nomad](https://www.nomadproject.io/) scheduler, it has [first class support for Consul](https://www.nomadproject.io/docs/jobspec/servicediscovery.html). The Nomad agent runs on each host alongside the Consul agent. When jobs are scheduled on a given host, the Nomad agent automatically takes care of syncing the Consul agent with the service information. This is very easy to manage, and even services on hosts running outside of Docker containers can be managed by Nomad and registered with Consul. You can find out more about running Docker under Nomad in the [Docker Driver](https://www.nomadproject.io/docs/drivers/docker.html) guide. - -Other open source options include [Registrator](http://gliderlabs.com/registrator/latest/) from Glider Labs and [ContainerPilot](https://www.joyent.com/containerpilot) from Joyent. Registrator works by running a Registrator instance on each host, alongside the Consul agent. Registrator monitors the Docker daemon for container stop and start events, and handles service registration with Consul using the container names and exposed ports as the service information. ContainerPilot manages service registration using tooling running inside the container to register services with Consul on start, manage a Consul TTL health check while running, and deregister services when the container stops. - -## Running Health Checks in Docker Containers - -Consul has the ability to execute health checks inside containers. If the Docker daemon is exposed to the Consul agent and the `DOCKER_HOST` environment variable is set, then checks can be configured with the Docker container ID to execute in. See the [health checks](https://www.consul.io/docs/agent/checks.html) guide for more details. - -# License - -View [license information](https://raw.githubusercontent.com/hashicorp/consul/master/LICENSE) for the software contained in this image. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `consul/` directory](https://github.com/docker-library/repo-info/tree/master/repos/consul). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/consul/content.md b/consul/content.md deleted file mode 100644 index 5535d7a67745..000000000000 --- a/consul/content.md +++ /dev/null @@ -1,197 +0,0 @@ -# Consul - -Consul is a distributed, highly-available, and multi-datacenter aware tool for service discovery, configuration, and orchestration. Consul enables rapid deployment, configuration, and maintenance of service-oriented architectures at massive scale. For more information, please see: - -- [Consul documentation](https://www.consul.io/) -- [Consul on GitHub](https://github.com/hashicorp/consul) - -%%LOGO%% - -# Consul and Docker - -Consul has several moving parts so we'll start with a brief introduction to Consul's architecture and then detail how Consul interacts with Docker. Please see the [Consul Architecture](https://www.consul.io/docs/architecture) guide for more detail on all these concepts. - -Each host in a Consul cluster runs the Consul agent, a long running daemon that can be started in client or server mode. Each cluster has at least 1 agent in server mode, and usually 3 or 5 for high availability. The server agents participate in a [consensus protocol](https://www.consul.io/docs/internals/consensus.html), maintain a centralized view of the cluster's state, and respond to queries from other agents in the cluster. The rest of the agents in client mode participate in a [gossip protocol](https://www.consul.io/docs/internals/gossip.html) to discover other agents and check them for failures, and they forward queries about the cluster to the server agents. - -Applications running on a given host communicate only with their local Consul agent, using its HTTP APIs or DNS interface. Services on the host are also registered with the local Consul agent, which syncs the information with the Consul servers. Doing the most basic DNS-based service discovery using Consul, an application queries for `foo.service.consul` and gets a randomly shuffled subset of all the hosts providing service "foo". This allows applications to locate services and balance the load without any intermediate proxies. Several HTTP APIs are also available for applications doing a deeper integration with Consul's service discovery capabilities, as well as its other features such as the key/value store. - -These concepts also apply when running Consul in Docker. Typically, you'll run a single Consul agent container on each host, running alongside the Docker daemon. You'll also need to configure some of the agents as servers (at least 3 for a basic HA setup). Consul should always be run with `--net=host` in Docker because Consul's consensus and gossip protocols are sensitive to delays and packet loss, so the extra layers involved with other networking types are usually undesirable and unnecessary. We will talk more about this below. - -We don't cover Consul's multi-datacenter capability here, but as long as `--net=host` is used, there should be no special considerations for Docker. - -# Using the Container - -We chose Alpine as a lightweight base with a reasonably small surface area for security concerns, but with enough functionality for development, interactive debugging, and useful health, watch, and exec scripts running under Consul in the container. As of Consul 0.7, the image also includes `curl` since it is so commonly used for health checks. - -Consul always runs under [dumb-init](https://github.com/Yelp/dumb-init), which handles reaping zombie processes and forwards signals on to all processes running in the container. We also use [gosu](https://github.com/tianon/gosu) to run Consul as a non-root "consul" user for better security. These binaries are all built by HashiCorp and signed with our [GPG key](https://www.hashicorp.com/security.html), so you can verify the signed package used to build a given base image. - -Running the Consul container with no arguments will give you a Consul server in [development mode](https://www.consul.io/docs/agent/options.html#_dev). The provided entry point script will also look for Consul subcommands and run `consul` as the correct user and with that subcommand. For example, you can execute `docker run %%IMAGE%% members` and it will run the `consul members` command inside the container. The entry point also adds some special configuration options as detailed in the sections below when running the `agent` subcommand. Any other command gets `exec`-ed inside the container under `dumb-init`. - -The container exposes `VOLUME /consul/data`, which is a path where Consul will place its persisted state. This isn't used in any way when running in development mode. For client agents, this stores some information about the cluster and the client's health checks in case the container is restarted. For server agents, this stores the client information plus snapshots and data related to the consensus algorithm and other state like Consul's key/value store and catalog. For servers it is highly desirable to keep this volume's data around when restarting containers to recover from outage scenarios. If this is bind mounted then ownership will be changed to the consul user when the container starts. - -The container has a Consul configuration directory set up at `/consul/config` and the agent will load any configuration files placed here by binding a volume or by composing a new image and adding files. Alternatively, configuration can be added by passing the configuration JSON via environment variable `CONSUL_LOCAL_CONFIG`. If this is bind mounted then ownership will be changed to the consul user when the container starts. - -Since Consul is almost always run with `--net=host` in Docker, some care is required when configuring Consul's IP addresses. Consul has the concept of its cluster address as well as its client address. The cluster address is the address at which other Consul agents may contact a given agent. The client address is the address where other processes on the host contact Consul in order to make HTTP or DNS requests. You will typically need to tell Consul what its cluster address is when starting so that it binds to the correct interface and advertises a workable interface to the rest of the Consul agents. You'll see this in the examples below as the `-bind=` argument to Consul. - -The entry point also includes a small utility to look up a client or bind address by interface name. To use this, set the `CONSUL_CLIENT_INTERFACE` and/or `CONSUL_BIND_INTERFACE` environment variables to the name of the interface you'd like Consul to use and a `-client=` and/or `-bind=` argument will be computed and passed to Consul at startup. - -## Running Consul for Development - -```console -$ docker run -d --name=dev-consul -e CONSUL_BIND_INTERFACE=eth0 %%IMAGE%% -``` - -This runs a completely in-memory Consul server agent with default bridge networking and no services exposed on the host, which is useful for development but should not be used in production. For example, if that server is running at internal address 172.17.0.2, you can run a three node cluster for development by starting up two more instances and telling them to join the first node. - -```console -$ docker run -d -e CONSUL_BIND_INTERFACE=eth0 %%IMAGE%% agent -dev -join=172.17.0.2 -... server 2 starts -$ docker run -d -e CONSUL_BIND_INTERFACE=eth0 %%IMAGE%% agent -dev -join=172.17.0.2 -... server 3 starts -``` - -Then we can query for all the members in the cluster by running a Consul CLI command in the first container: - -```console -$ docker exec -t dev-consul %%IMAGE%% members -Node Address Status Type Build Protocol DC -579db72c1ae1 172.17.0.3:8301 alive server 0.6.3 2 dc1 -93fe2309ef19 172.17.0.4:8301 alive server 0.6.3 2 dc1 -c9caabfd4c2a 172.17.0.2:8301 alive server 0.6.3 2 dc1 -``` - -Remember that Consul doesn't use the data volume in this mode - once the container stops all of your state will be wiped out, so please don't use this mode for production. Running completely on the bridge network with the development server is useful for testing multiple instances of Consul on a single machine, which is normally difficult to do because of port conflicts. - -Development mode also starts a version of Consul's web UI on port 8500. This can be added to the other Consul configurations by supplying the `-ui` option to Consul on the command line. The web assets are bundled inside the Consul binary in the container. - -## Running Consul Agent in Client Mode - -```console -$ docker run -d --net=host -e 'CONSUL_LOCAL_CONFIG={"leave_on_terminate": true}' %%IMAGE%% agent -bind= -retry-join= -==> Starting Consul agent... -==> Starting Consul agent RPC... -==> Consul agent running! - Node name: 'linode' - Datacenter: 'dc1' - Server: false (bootstrap: false) - Client Addr: 127.0.0.1 (HTTP: 8500, HTTPS: -1, DNS: 8600, RPC: 8400) - Cluster Addr: (LAN: 8301, WAN: 8302) - Gossip encrypt: false, RPC-TLS: false, TLS-Incoming: false - Atlas: -... -``` - -This runs a Consul client agent sharing the host's network and advertising the external IP address to the rest of the cluster. Note that the agent defaults to binding its client interfaces to 127.0.0.1, which is the host's loopback interface. This would be a good configuration to use if other containers on the host also use `--net=host`, and it also exposes the agent to processes running directly on the host outside a container, such as HashiCorp's Nomad. - -The `-retry-join` parameter specifies the external IP of one other agent in the cluster to use to join at startup. There are several ways to control how an agent joins the cluster, see the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-join`, `-retry-join`, and `-atlas-join` options. - -Note also we've set [`leave_on_terminate`](https://www.consul.io/docs/agent/options.html#leave_on_terminate) using the `CONSUL_LOCAL_CONFIG` environment variable. This is recommended for clients to and will be defaulted to `true` in Consul 0.7 and later, so this will no longer be necessary. - -At startup, the agent will read config JSON files from `/consul/config`. Data will be persisted in the `/consul/data` volume. - -Here are some example queries on a host with an external IP of 66.175.220.234: - -```console -$ curl http://localhost:8500/v1/health/service/consul?pretty -[ - { - "Node": { - "Node": "linode", - "Address": "66.175.220.234", -... -``` - -```console -$ dig @localhost -p 8600 consul.service.consul -; <<>> DiG 9.9.5-3ubuntu0.7-Ubuntu <<>> @localhost -p 8600 consul.service.consul -; (2 servers found) -;; global options: +cmd -;; Got answer: -;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 61616 -;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0 -;; WARNING: recursion requested but not available - -;; QUESTION SECTION: -;consul.service.consul. IN A - -;; ANSWER SECTION: -consul.service.consul. 0 IN A 66.175.220.234 -... -``` - -If you want to expose the Consul interfaces to other containers via a different network, such as the bridge network, use the `-client` option for Consul: - -```console -docker run -d --net=host %%IMAGE%% agent -bind= -client= -retry-join= -==> Starting Consul agent... -==> Starting Consul agent RPC... -==> Consul agent running! - Node name: 'linode' - Datacenter: 'dc1' - Server: false (bootstrap: false) - Client Addr: (HTTP: 8500, HTTPS: -1, DNS: 8600, RPC: 8400) - Cluster Addr: (LAN: 8301, WAN: 8302) - Gossip encrypt: false, RPC-TLS: false, TLS-Incoming: false - Atlas: -... -``` - -With this configuration, Consul's client interfaces will be bound to the bridge IP and available to other containers on that network, but not on the host network. Note that we still keep the cluster address out on the host network for performance. Consul will also accept the `-client=0.0.0.0` option to bind to all interfaces. - -## Running Consul Agent in Server Mode - -```console -$ docker run -d --net=host -e 'CONSUL_LOCAL_CONFIG={"skip_leave_on_interrupt": true}' %%IMAGE%% agent -server -bind= -retry-join= -bootstrap-expect= -``` - -This runs a Consul server agent sharing the host's network. All of the network considerations and behavior we covered above for the client agent also apply to the server agent. A single server on its own won't be able to form a quorum and will be waiting for other servers to join. - -Just like the client agent, the `-retry-join` parameter specifies the external IP of one other agent in the cluster to use to join at startup. There are several ways to control how an agent joins the cluster, see the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-join`, `-retry-join`, and `-atlas-join` options. The server agent also consumes a `-bootstrap-expect` option that specifies how many server agents to watch for before bootstrapping the cluster for the first time. This provides an easy way to get an orderly startup with a new cluster. See the [agent configuration](https://www.consul.io/docs/agent/options.html) guide for more details on the `-bootstrap` and `-bootstrap-expect` options. - -Note also we've set [`skip_leave_on_interrupt`](https://www.consul.io/docs/agent/options.html#skip_leave_on_interrupt) using the `CONSUL_LOCAL_CONFIG` environment variable. This is recommended for servers and will be defaulted to `true` in Consul 0.7 and later, so this will no longer be necessary. - -At startup, the agent will read config JSON files from `/consul/config`. Data will be persisted in the `/consul/data` volume. - -Once the cluster is bootstrapped and quorum is achieved, you must use care to keep the minimum number of servers operating in order to avoid an outage state for the cluster. The deployment table in the [consensus](https://www.consul.io/docs/internals/consensus.html) guide outlines the number of servers required for different configurations. There's also an [adding/removing servers](https://www.consul.io/docs/guides/servers.html) guide that describes that process, which is relevant to Docker configurations as well. The [outage recovery](https://www.consul.io/docs/guides/outage.html) guide has steps to perform if servers are permanently lost. In general it's best to restart or replace servers one at a time, making sure servers are healthy before proceeding to the next server. - -## Exposing Consul's DNS Server on Port 53 - -By default, Consul's DNS server is exposed on port 8600. Because this is cumbersome to configure with facilities like `resolv.conf`, you may want to expose DNS on port 53. Consul 0.7 and later supports this by setting an environment variable that runs `setcap` on the Consul binary, allowing it to bind to privileged ports. Note that not all Docker storage backends support this feature (notably AUFS). - -Here's an example: - -```console -$ docker run -d --net=host -e 'CONSUL_ALLOW_PRIVILEGED_PORTS=' %%IMAGE%% -dns-port=53 -recursor=8.8.8.8 -``` - -This example also includes a recursor configuration that uses Google's DNS servers for non-Consul lookups. You may want to adjust this based on your particular DNS configuration. If you are binding Consul's client interfaces to the host's loopback address, then you should be able to configure your host's `resolv.conf` to route DNS requests to Consul by including "127.0.0.1" as the primary DNS server. This would expose Consul's DNS to all applications running on the host, but due to Docker's built-in DNS server, you can't point to this directly from inside your containers; Docker will issue an error message if you attempt to do this. You must configure Consul to listen on a non-localhost address that is reachable from within other containers. - -Once you bind Consul's client interfaces to the bridge or other network, you can use the `--dns` option in your *other containers* in order for them to use Consul's DNS server, mapped to port 53. Here's an example: - -```console -$ docker run -d --net=host -e 'CONSUL_ALLOW_PRIVILEGED_PORTS=' %%IMAGE%% agent -dns-port=53 -recursor=8.8.8.8 -bind= -``` - -Now start another container and point it at Consul's DNS, using the bridge address of the host: - -```console -$ docker run -i --dns= -t ubuntu sh -c "apt-get update && apt-get install -y dnsutils && dig consul.service.consul" -... -;; ANSWER SECTION: -consul.service.consul. 0 IN A 66.175.220.234 -... -``` - -In the example above, adding the bridge address to the host's `/etc/resolv.conf` file should expose it to all containers without running with the `--dns` option. - -## Service Discovery with Containers - -There are several approaches you can use to register services running in containers with Consul. For manual configuration, your containers can use the local agent's APIs to register and deregister themselves, see the [Agent API](https://www.consul.io/docs/agent/http/agent.html) for more details. Another strategy is to create a derived Consul container for each host type which includes JSON config files for Consul to parse at startup, see [Services](https://www.consul.io/docs/agent/services.html) for more information. Both of these approaches are fairly cumbersome, and the configured services may fall out of sync if containers die or additional containers are started. - -If you run your containers under [HashiCorp's Nomad](https://www.nomadproject.io/) scheduler, it has [first class support for Consul](https://www.nomadproject.io/docs/jobspec/servicediscovery.html). The Nomad agent runs on each host alongside the Consul agent. When jobs are scheduled on a given host, the Nomad agent automatically takes care of syncing the Consul agent with the service information. This is very easy to manage, and even services on hosts running outside of Docker containers can be managed by Nomad and registered with Consul. You can find out more about running Docker under Nomad in the [Docker Driver](https://www.nomadproject.io/docs/drivers/docker.html) guide. - -Other open source options include [Registrator](http://gliderlabs.com/registrator/latest/) from Glider Labs and [ContainerPilot](https://www.joyent.com/containerpilot) from Joyent. Registrator works by running a Registrator instance on each host, alongside the Consul agent. Registrator monitors the Docker daemon for container stop and start events, and handles service registration with Consul using the container names and exposed ports as the service information. ContainerPilot manages service registration using tooling running inside the container to register services with Consul on start, manage a Consul TTL health check while running, and deregister services when the container stops. - -## Running Health Checks in Docker Containers - -Consul has the ability to execute health checks inside containers. If the Docker daemon is exposed to the Consul agent and the `DOCKER_HOST` environment variable is set, then checks can be configured with the Docker container ID to execute in. See the [health checks](https://www.consul.io/docs/agent/checks.html) guide for more details. diff --git a/consul/deprecated.md b/consul/deprecated.md deleted file mode 100644 index 5791985d062e..000000000000 --- a/consul/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -Upcoming in Consul 1.16, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/consul](https://hub.docker.com/r/hashicorp/consul) instead of [consul](https://hub.docker.com/_/consul). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/consul. diff --git a/consul/github-repo b/consul/github-repo deleted file mode 100644 index d3aa632b633f..000000000000 --- a/consul/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/hashicorp/docker-consul diff --git a/consul/license.md b/consul/license.md deleted file mode 100644 index d565b3812251..000000000000 --- a/consul/license.md +++ /dev/null @@ -1 +0,0 @@ -View [license information](https://raw.githubusercontent.com/hashicorp/consul/master/LICENSE) for the software contained in this image. diff --git a/consul/logo.svg b/consul/logo.svg deleted file mode 100644 index 94c38977d8d9..000000000000 --- a/consul/logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/consul/maintainer.md b/consul/maintainer.md deleted file mode 120000 index ef4100e019a3..000000000000 --- a/consul/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -../.common-templates/maintainer-hashicorp.md \ No newline at end of file diff --git a/consul/metadata.json b/consul/metadata.json deleted file mode 100644 index e90624aca4ca..000000000000 --- a/consul/metadata.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "hub": { - "categories": [] - } -} diff --git a/express-gateway/README-short.txt b/express-gateway/README-short.txt deleted file mode 100644 index 87c786a48cdf..000000000000 --- a/express-gateway/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -DEPRECATED; The Official Docker Image of Express Gateway, an API Gateway for APIs and Microservices diff --git a/express-gateway/README.md b/express-gateway/README.md deleted file mode 100644 index ce83cca1464a..000000000000 --- a/express-gateway/README.md +++ /dev/null @@ -1,124 +0,0 @@ - - -# **DEPRECATION NOTICE** - -This project is no longer maintained. Read [here](https://github.com/ExpressGateway/express-gateway/issues/1011#issuecomment-748354599) for more details or if you're interested in taking over the project. - -# Quick reference - -- **Maintained by**: - [the Express Gateway Team](https://github.com/ExpressGateway/express-gateway) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/ExpressGateway/express-gateway/issues](https://github.com/ExpressGateway/express-gateway/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/express-gateway/` directory](https://github.com/docker-library/repo-info/blob/master/repos/express-gateway) ([history](https://github.com/docker-library/repo-info/commits/master/repos/express-gateway)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/express-gateway` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fexpress-gateway) - [official-images repo's `library/express-gateway` file](https://github.com/docker-library/official-images/blob/master/library/express-gateway) ([history](https://github.com/docker-library/official-images/commits/master/library/express-gateway)) - -- **Source of this description**: - [docs repo's `express-gateway/` directory](https://github.com/docker-library/docs/tree/master/express-gateway) ([history](https://github.com/docker-library/docs/commits/master/express-gateway)) - -# What is Express-Gateway? - -Express Gateway is an API Gateway that sits at the heart of any microservices architecture, regardless of what language or platform you're using. Express Gateway secures your microservices and exposes them through APIs using Node.js, ExpressJS and Express middleware. Developing microservices, orchestrating and managing them now can be done insanely fast all on one seamless platform without having to introduce additional infrastructure. - -Express-Gateway's documentation can be found at [https://express-gateway.io/docs](https://express-gateway.io/docs). - -## Main Features - -- Built Entirely on Express and Express Middleware -- Dynamic Centralized Config -- API Consumer and Credentials Management -- Plugins and Plugin Framework -- Distributed Data Store -- CLI -- Admin API - -![logo](https://raw.githubusercontent.com/docker-library/docs/8ee4b026326a61ab0ccf22634eacbbbfbfaaf678/express-gateway/logo.png) - -## How to use this image - -Unless you're using identity features (such as `users`, `applications` and `credentials`), Express-Gateway does not require any data storage. - -If so, skip directly to the point **2**; else, please keep going with this guide. - -### 1. Link Express-Gateway to a Redis container - -#### Start Redis - -Start a Redis container by executing: - -```shell -$ docker run -d --name express-gateway-data-store \ - -p 6379:6379 \ - redis:alpine -``` - -### 2. Start the Express-Gateway instance - -Once the Redis instance has been started (if required), we can start the Express-Gateway instance link it to the Redis container. - -```shell -$ docker run -d --name express-gateway \ - --link eg-database:eg-database \ - -v /my/own/datadir:/var/lib/eg \ - -p 8080:8080 \ - -p 9876:9876 \ - express-gateway -``` - -*Note:* You might want to expose other ports to the host in case you're serving your APIs through **HTTPS**. - -*Note:* You need to mount a volume with configuration files and volumes in order to make Express-Gateway start correctly. - -You can now read the docs at [express-gateway.io/docs](http://express-gateway.io/docs) to learn more about Express-Gateway and configure it accordingly to your needs. - -### Install plugin - -You can install custom plugins to the current Express Gateway image just creating a new `Dockerfile`, use `express-gateway` as base image and then install the required plugins as global yarn packages - -```dockerfile -FROM express-gateway -RUN yarn global add express-gateway-plugin-name -``` - -# License - -View [license information](https://github.com/ExpressGateway/express-gateway/blob/master/LICENSE) for the software contained in this image. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `express-gateway/` directory](https://github.com/docker-library/repo-info/tree/master/repos/express-gateway). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/express-gateway/content.md b/express-gateway/content.md deleted file mode 100644 index 5aa8a3cc9585..000000000000 --- a/express-gateway/content.md +++ /dev/null @@ -1,63 +0,0 @@ -# What is Express-Gateway? - -Express Gateway is an API Gateway that sits at the heart of any microservices architecture, regardless of what language or platform you're using. Express Gateway secures your microservices and exposes them through APIs using Node.js, ExpressJS and Express middleware. Developing microservices, orchestrating and managing them now can be done insanely fast all on one seamless platform without having to introduce additional infrastructure. - -Express-Gateway's documentation can be found at [https://express-gateway.io/docs](https://express-gateway.io/docs). - -## Main Features - -- Built Entirely on Express and Express Middleware -- Dynamic Centralized Config -- API Consumer and Credentials Management -- Plugins and Plugin Framework -- Distributed Data Store -- CLI -- Admin API - -%%LOGO%% - -## How to use this image - -Unless you're using identity features (such as `users`, `applications` and `credentials`), Express-Gateway does not require any data storage. - -If so, skip directly to the point **2**; else, please keep going with this guide. - -### 1. Link Express-Gateway to a Redis container - -#### Start Redis - -Start a Redis container by executing: - -```shell -$ docker run -d --name express-gateway-data-store \ - -p 6379:6379 \ - redis:alpine -``` - -### 2. Start the Express-Gateway instance - -Once the Redis instance has been started (if required), we can start the Express-Gateway instance link it to the Redis container. - -```shell -$ docker run -d --name express-gateway \ - --link eg-database:eg-database \ - -v /my/own/datadir:/var/lib/eg \ - -p 8080:8080 \ - -p 9876:9876 \ - %%IMAGE%% -``` - -*Note:* You might want to expose other ports to the host in case you're serving your APIs through **HTTPS**. - -*Note:* You need to mount a volume with configuration files and volumes in order to make Express-Gateway start correctly. - -You can now read the docs at [express-gateway.io/docs](http://express-gateway.io/docs) to learn more about Express-Gateway and configure it accordingly to your needs. - -### Install plugin - -You can install custom plugins to the current Express Gateway image just creating a new `Dockerfile`, use `%%IMAGE%%` as base image and then install the required plugins as global yarn packages - -```dockerfile -FROM %%IMAGE%% -RUN yarn global add express-gateway-plugin-name -``` diff --git a/express-gateway/deprecated.md b/express-gateway/deprecated.md deleted file mode 100644 index 9a16fcc9850c..000000000000 --- a/express-gateway/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -This project is no longer maintained. Read [here](https://github.com/ExpressGateway/express-gateway/issues/1011#issuecomment-748354599) for more details or if you're interested in taking over the project. diff --git a/express-gateway/github-repo b/express-gateway/github-repo deleted file mode 100644 index ffecc1ea161b..000000000000 --- a/express-gateway/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/ExpressGateway/express-gateway diff --git a/express-gateway/license.md b/express-gateway/license.md deleted file mode 100644 index 2de981d327aa..000000000000 --- a/express-gateway/license.md +++ /dev/null @@ -1 +0,0 @@ -View [license information](https://github.com/ExpressGateway/express-gateway/blob/master/LICENSE) for the software contained in this image. diff --git a/express-gateway/logo.png b/express-gateway/logo.png deleted file mode 100644 index 1da4074db1721ab752e7452ce70d984e2dcfebda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38611 zcmeGDc{tSFA2^H;kuBMYvJYd6hz!Y6V~w%QkS$~@Bn_srFQp8UWhna+28k$HvQ&s6 zOV+a1F!rU$zCCC3xqrX!b3K1Q|2_A0-Pe6PbIy6a&THS^I1{8UGb0}(1Oj2!*F%^= zAjeF>zvA@A!3t+CQy=&budlYHFUrf+_x=rU7l@X#m!pf2zUPgbE@mz_oc%CF7c~eZ z8LN-bLO&Q@tiO(jUc+Vwu*+B(GD(#E>FwtD!JZ0ZGS_zy6&u_lK;5UsM(QSIcdVR~8#kuT5rk2~1#b-mdB&pbk5ym+@2#`s3L3%WBu5*ox)r z=k@Fap2t0+`M#CO@0Y78EiHXs;k-zfI;`PYlCyqNdpn#B;}}x2`Qye3fcXFS&;P3w z&>Sd|r-5M3RbjlpsCU+e+&(7)fk@3&w{FzDY%FiN3lTDfn3SGVN>}9f?mi!L0-|~M zc1cR5d!LQYybojCzud#ed82(K9JD5} znm9EjUIqw6f{lpi>^sgc6w-#E;*>M-pyz}@9%v4ZX9|nb#%Va`LZY}N;$a3`5XeVZ zNj!BMuYxJ0g`uCCaw}t;VL$IW1P$trao3Zavzm7JQAey<5eg`>2=3U>Ic(9zGH^2@7lqzJEkTrxrSgDxHGw2av!)YB9ojQ2mH!g{=SZt&Rh)iTOl*wwnr^z`fy#qrGy~2LdS+ z_sydPw~B|$0Q#eoY8MQT5WBD#;ndR8djhn4ozQBgi$FHF zWcr+`0s8X{oJWX=6YkVzcv9%XC`{d=d<(!y^y$Y|Q|RK@YP1y?0DR3ken5UGWA^1U zH|fC!?;BysGXPmcY}#zfB0y#J;cZTUSNs(U1BL8ej}X_)`_2&D;`@OCY|v~d`L=on z0NJ835Z`ziLj#tC+px(6MwDy5q~_$SfR%WezN1ZgZ#Z^Jg4`)m3yEkNb^@q~gq3Q6 zzsNn=WEB7@%n7#okB6ZO!l!A$n?F*wWb^|_?SwmJp8(r|T`+N`E~6*|B>ydt4R8r{ z6P7NQ0x49m@HiFNp_%-T8-cyP{N8{DkfrKUO(Pv3r5`T>MZi(hKXQ2tF3_Z99+Kn% zfA>UX6sA2+o(5~FLKL{6j$w{$(%?q*Jn}YU6Oh|bWL~~XClu`Xi|NO9QRw*Yr?~6j zWq{nQ^Wz0Yfc{Q)3=6nb*=R_Ma_jG>X>oIVK$fxvD@*}FB!0oKfb*<0%tQJ|zei+5 z=BFSsD9TU&*k#D{Xi>;S#tg8T{#otZy?zQ9H6g%2E3k*kuIV2Kh}F2~Ugcorb3|7y zxEO!p2(izu|M-W0lyNsdLnTob;Ib9>lp4wy%D@A5e{ldR2)1*^WZb%T;z&#!9iRSN zf|)3M5^$kBFE`vK8CVk&A&-9qk@t={+A^2l}N!hl3R6!nw>W8yka8due9Sp zn{d=^3`3Pq^tphj1h?r>fuA30mVXBtn627>9cD*SV#ZkBBjrNlULHxF!)4p&0{>Q+ z*dzuoA7iIICrr_Mput8?zuY2fT2dMfj(Kxa%L`_&8yrx(CInsVox zDc)(Z8$%HYh?zT&KcB=Dhfm)6#n$Vr&KOUJ`+HIBpwOwXaGeBX=U#)`IwJFrSSH*w{N+f1dfW= zul*No$Iyh2eFhtNh!k=33(=~H`7Z#F%R{g}kh6611^bIX(*WfJ_wG{P__Y(T>~U^5 z6rq*>Vgz2}aCA{9+=Yh_JiExG$B8~!VFHfFx1qx1PU-A}-A-1(5tuLo3`MvoTGIk_lOWD=sYl zV}FmFF>OOOea#WUSLCys zQwGjxb#Q={P_8~n)9+P1)4;W%AY{tQ~F;ymRrICei0B?0H`+?J-R=U5qeV(&wEPT+#-IMYv!u_0!$2 zgarLv+8n<&6A4rgJ!ze~_L^cA*c{E4ut=+xqRpYzeAy~%V5$0>R3!j!)mrlA$^Mhk zD2>jliGYxYqRep;CO8kbE-1y(z{#7!;=9;Gi#Hah!8(%_<%nhr@rA>n3iEc%ZiC|n zfHpBDK?9)4S7FQswFW4mO{jd!BP>!Ihtlw{$h#E?tXd(P1h*%U#~6;mw_R?-SY+bu zux4q+Mu2Aj|9BqBLBg+JF)YzWd9|#LtkgGlePh()eBg3ta_WDkI}|?00dvZ=n^BZ3 z`E?x1Sa+rBG|<-)HLk62M{=n@ssHLjiopm|2JDwT5<1P6W}J6@ZZi>ILwjU@z2YJO z8qGK?vSCQY=<+_m-#C#$GdJ7z|1YSdDQ!l}8GJ{peK6gT;;_>iOwCD9luW)I$hU;W zGAjYIDPMI95YoWq$B|o&4+#fRlPkQ-3xcD-kROh&bm974L>GVrLQODcrId6#rq$5$0B>blU z5t|uB2Hn?sYzyG>?Vr}EZz(2)l@M6pvMZ!r*X71uSQ}>83e~j0sk&rY-erKWa@%Z_ zU+)P}M$^gnH3}^Xy}Gb8vnD9MGa8|UN;}*&K6B@M#7Cjv$HJj8)B~E?5QqUmIrQSl z+S>cXm)9$NmuJ0hdu;WTdgqL9mXQV2>cz~4*7w%3heVOIL6D`@DL+FK7+QrQK0$dD-Ndy#&p|Zr^|IH#t?xx+wb~OG#74}o(nu$jDsR#c-sTlPN%p@H z-AC_dFsCQstnHrm_GFyIDc$TTN8j`|0)53`z2n2sLAgHg=CYU;m(4_`J_CTeKtceOXl4NSG&8l zqEPg!oZ0Yok(pZOm#RlB;SNiPZubM>fRu!xP0=|kt6@jIV##ZjcLv)h{2kiY1EWwH zX%@LBeJK35g3ibM8ExQ(WIObF*S)3ZSZrn99348xV?ceAss4fpa(JqU$2t>uE>T(o zS=O7U7(gieo}=J>4wR*UpxCDg;iq8mp z>n7`*GJJxLQ^tb1uhZ=MOyb=fBHVL;6g7A zV_xyH^L$)DDXNrUo37*4^nQQ+6HEiy;R76PmF71P=U&crl66iS#?OSg7uDX^Ery~h z9b`xKPGMHh8c!0JYLg1ZVsC-??^&p!#OfS_u);!x@}$o0+MJr%F{-g!ma&Sro{2={ zW~Z`OI#R%r%g02Ko{x_?xaXu|6_nmAvS6eF)nAfT*lD>q3v1_Gb11vC6QlaXuTYu1 zFd<@tJ{^Cc`}GYLUEvCh6DEty*wozigGqM6fz!RN zD9%=KcG~#sbqfV)zzeiR(Hw&xCTM%rHiYmU)(s>wzipm z+cRV>5zjXLNiKLEf98V-%ILf&?bR3H!782B#(Td&4j3;Hx%fG_-S@*9aBw1S#z>-_ zt5t33%#62e?*JE}M9}fW;H6m9C-(CBy-nkUPpKw_h&<ZNy>H+eC7LNgm{iP85bbCcaPOM!+?!on&aA!oM)H6&AOnjFsyiCl)+TjXp>AcOmvk z3}5oD)c)cgY8a$SMC$iRSt*=*Dcw`Dt=c&SPkAfSVr>Rxq&~??k@JUBMc$nvqv_wJ z4fDr+Z9l+^=ui4a_7$$_HqT4?y*C?hHTV%PsnVEQd8fv{KAhCwU7S?N6?+28`1!;s z=rJs%F44E|s@SP!u9G?HUvM!<4>cWqmh3;=;?{3J;q55)qj*CjaCJyJD`+d1qHnZ^ss-(QF&w{~& zZV5bXHPt^v&67IN`({=B#!^nui%O^|yWiKjF8*Aa5hPHwUW=BK0BrJHt4b)x4aOPOadGMM+Bs1GZ8$=e(WR&($R*Q zhR&}+*b0%GcFri^BHWm%F3DH*jBr06oHERrqUwGeKPx3S)Uk7N;o0G@jH|Y_aS}be zfoGH>d_Ph_riyxMJPLHv`65ve9!ztQ1cpyX1igAYUurn!aZ*ujkag+PsGFaGb2(`p zKYy3^O0MQLR*|q)UL9&7ck6-=%aT#ica5*ryR!0Vx39CpG*;32IsSyiqU&o9O98fZ zR{)LFo-05ZeQ8C3J&5FCc#-TF2fJ2!zn@lT{OU8wp=g_Q#WvLIEseWch3W!XCSnTa z((`tx{7BSc*^J=f!;2%fg8*eVd|R`3dORfZWKEC3wB#()9pjqJHjah#%hj5R*j`!W zZajU`=+ru~?a_Qjh=S00u2}ebZ#g?QuH!U2t!j9p4<(?J|0X~771a|>T-sCgkd@)w zOvO58aF96b;7_Zb-AgsIOo=L%Y*AD&Ukgddle60YA~;&}IsYV%x>2h=3P`4=jNVVt z6hih2j8ri>{uWu{b2**bW(JKOm0dIFP)AzkL=||}CQ254cDwbQF#I#fyC>>M-G6fy zw$X@KNdT5T>aOJ|6p|}W9aJ?f<*9{G z6GsLVm`Ix?RTn9+(+*SfP+(qdC893&s1&-@QeEZ8m<5(=r~5`H3i|OW^5FD5Epz4{ zsh5v$!P1<%jA~x{q&|9|Bw?K?YHH#Q5p@ZC8$+Xcm*&GVQK>@3wKfGNCl)|?cy1ga zb@)=x`;h(SL_zyo+Cr$-bi+>0at`lN-6ya0vUP8NT|PvXZS^NNt$}^jH+Dx zOe$AOZ*N7)`CU#YJ%=^xA8Mg}@`H^719SLG4Kqs9_8aJX%b(ryi$!QLXmuX(O2XGr zd99z(B(uOao1XwLsty%F*0xB}`xP6ljyS8oZ5$0GvG9a{O|?u(aAEbhcbc!gi=Ee) zsDrJ(En;e7=zvll169G^l4@e>TRO9wTC!t@JZ~Bi$p0CRBA;Ji9cYje~^V*^0*&hr^jg+~V&{ z1n>X(?OZ(PSejzil{oyd92n~;N~B`Q`xo$4Q*Z>CX&v@elo@5#MBglV2V?eziH$%S zQXy|M+)p)86ENXmyheigOv@Xu{hW6a-2KS-+#1SQz!W?vehEjF&1#Lz?hm8^o~&c!3_mnP4ouGv25i9(-q0v7W06lx@=EjNv&!eEJh9&knJRkAA)r zpk7m%$T74ciX7mEF^8#;IQvxzbrU%*A(cB@f{%nzEA#jMT)eY$`Y-3(hpHek@Rroc zb*Rfeg8u#9YTiMn@x4+@dD>AKc1)CgCM#^8&a|1NI6HLKDLg?kCE$7Vxc)|?o&R4a zLCcwn7=+eF_N|n7$nS955{pXZSc%;0D*xCjjI2}`&$;mT8qP3C6q4dUbkn$FPui+T zrwarby{n`D?9M5+Q$z;IPAKqCCbHh2?E1&yxskB}&KXj&NO{2PJp0Tqhm~#p2}zRc zs}3&nFUG>jZjM!KO>ggrx#Kz%*=d`OLAP~Y67?YX_Tr5%Y|BjCR{eFMaA72Q(WzPT zo*%_dL7xU8MBa7ue^B2IrSJcPnVFT}2m>jUZE3v3sWVWe#XjILvK5C5M&1Wr{Zl8z zGySe!mh=d)JZwRlq{xOd1hM(IVAFDi%Ad~e;xqEMDCt4PQ^cpA4isG=3-LG;)r;&( z76vc9P9Yf}EN6f^@DNDUKFvjlfKE4#iv=I-it}yrHk|XlhYy-8^7@t4F6VyKed7y! zhD7>%)A9GCF8SJ-u1-lXPyzb$(zdLZgpN|%9?>OscE2{P1cAZJ3x)hUob1~Yl=$pB z*Eymx_Y9@<8HETMS#|SDj)u3KMe+fV`i*MZGRTLwE~c2-Bm|+9rITiY_AFlOy}qlj zoBI)HMK;Za3{6kzEV?fZ6TrJPs+D))N;pW0t1DHA0s+)$;OBO9lVM^~?YXwGv5{bT<0M|#c6kL;*pJH#g0M~>@N}eM70|7lZRrEY>yV)r!&A7S*k9SuljB1~i zHjTC=#TOP|?UzhMbvQ!4N6e>9BYP{-OHiYvJkfKy>3=(3Ph^<%g~a;CIOnV1BMkR0 zrRiXQcf4nrK3IM!Xkzmv5~1}?3*7|J7V?^+F21z;&QT$GSs3X;L&h(d+khJY=HHlx zkp<|eFGljgDd2AdS_ zmUl5=95YZid~)df6SyRkKHtzTUUvNa<;9w1E7T?EevdOXt~f@MSj9Zk$*J5!6Uy&A z))z%uyRJUckPqaW#0}#ISmfE?*KvPAU#B`2pE+R!{@eLT2q`6dJQDRA z7=Ax)0%Rjz1T(x@>*!)IhHZ($H%Ai;-;)K`Eb@jQG3cQ|Zwht{i0T*J26=p?@q$73 zQY|Jr{7M|GSuzkjfkIL8f&Ep#iKxr*sTh%gQ-6Aa@c2Ap0%zI9CQGaIiJJ-~|Ka6Zkc>jgNBF{e+d15qpyN<4rQgo0K2?I@-j}P8G z?Op6!-&Kq?;rPbezJ8ep#{A!NO&^i^59tsHZo&Oox(i7-yzRp&rn+f$r#CxTN@T*O zj}P?dafU*4a)HFIWRN9?m~7I0X{I9+gKO45aInJUPD`>^I=d9Vob&%Howa+p@2{f5 z{O%rIW3Vz%@WS7;24ekp*wg5dBM*5wI z+bQWQw1?UM-XGJ|$ew3vu-EU{bq{E7AF;@tW{{36>=BCsMylz@z14R`f10jOTA8J4&2TVp2?w-*U?|h(GtAfjAVh|L zDRRi~_QH58c~lEN*RkFx&r{rm_67%*rN0HXqE`+?NxWXhH3B3&Lrue3t9W-wc1au# z`NMDi_m2-=6AGaSNtR_Xp^K!L-j93nAxcRO)?x6a>w*l!c&m8OCzDLrhDtOcuHQZT#%CyR<8P?-ZYF zq8cQ(GSx({Msy4aUzsk}%hL%|idh5>Hb@%y_?%;8fBC=~%|S`Rv*-9Sn|QMyY7B7_ zPpSO-XkD$od-wjubBOnr9BkN(5&LBvlbHBlUfhMw%u+9;OAM{aBDE;4dS8uTYy1?> z>^Rookn{!gg-@_Fi@`588vm{z6E*ZyFx0}COPMq4h;gL8H5Ng(Msqv2uYcwym;pI5 zyBlj-`UIZzo<(&7^F4~wK3UZCjd4%Cqpa`7JlsunA+M;3Uc3C+X=FjEPq*`{ucgtC zfNlm|`T;D+*Z(^?YTmp>zO)nKE#mqNdQlt4zqiI0v@fkGUcnZU%*0Y)Nj%4;O_-3` z-V@4{fcZ1ee`drvgR>LmDe95GJlMy`4|=V6#esQ>H%uq})uoNGFyp7Q;>h-O-)Iyo zumWxx-I7BnS!7?(BTtx_Vg~4)IS3ZHR|_2=IqUcEAuv}v8JAb=G}B0x_eGBJFq%%Wzz`t}b$ z_xRJlL_ll(da-MUVMIcHf>%3q_g(3qCUQ~`NHB#dJUC=GuCY5|FKbfD^FyuDS=)fT z&IKOQdD&c2Aoh_7Nu%eA^ zcD9#$=PtM)d^3v`M$O(V`6!zTV5en3T=|E*NJR1Sqxr(1e!4n@!7*;7 zam68q{wUsrAdse0>2FcuRaV#`jGgQs-;J7Fc{nvZR&excvq$cOM6~rXp~iE&;Ri^2 z*y5T&;*_}Y^O5%@GKsUvR%uK<&JgdMXN`dCapF(T3)MZBE3Hk2~P%;<0boX)#< zGsH*aa4&baW>SFI&F8hq*Ku&ozt2`>1G?sGIOZGyZxM(SLNeZ?Ci@Fhv{@g>z#VOO zT-$M6_+I#wPL>cqpOB&Ow`Gpf*XTCI(#bF!jX`YZWPNWeoGlJ*mmW@$g&-lF8oR|c zd^2LLBoP!#KS&U(Hr_7(;oh`W-gb?>oFJ2;mZ>0{mS5R%W-*>{{oiXI$stvM1WtwQ zN)9!h+?)n(CDwrpIls*F4rS6Ix{hrRTfX1jtckWe#xxul)^SlAuEt zpyeoZ*b6bJn9LWXIV)`zjX14`Ui^$V=oNmX|I{)A>!@u|cPcDlIkaMfXe^$DMbbbU zC<*rE^nSW)_yu`m=0jK{6O2GiKtu zsagTfMu153zxM@~^2xI-9bhYv?Z8?wikj+iJh=JFxMb@wEKPHp2=wLu@wU(G1T7is zcz3p^LZ-v{`r*yAFe4^CluO>cVoGt?D!R(pqu?tr$p{KjfV)UMG}ga28WL%DdgaQy z61{RHBhCzld@HM0*Y~ENXdZgmrPiw0fYAL~Q@<~gY}TOX0Avv7g<-r5WN@8|gX~{C zBgwpqPFp^v7vuc`Yo>?y!WiTi-6;067e8f0FfNul?^d&JoDk+d-|*eE^qME8U5g^V zBfy6Auc4Kui!ZmhncV(&R1TAC$RaMxRcs`U&R`@0L5-ch*9D3s7f&%z04{}5k^K*5 zaA>U@-tMRNbiJd8q9QTpdIWPYGr?ZV*-Wfa4^8=Aq zz!X@{pu0vyk@F9Q+Sk$DD88wp=}ko5FB;m&&ZTy=6-7MGbEC|g(kOt(N@lW(TI z4mtwN22^YXJ&g}FLzaA!W5rnS4GNmC1*4Ql(?(GS3Miv^eFfwXYWA$tL{);qc&7KI z0WBot`ekD5t_D5cCF60tV)}zek2&=EPf?3a9Aqh%givenNTO>88FP{Kj8oa z2Zb|5?qAJKqfv*)-wAB*+rI=9S3+kesG6LlmDqNybg_3P&pq_iIUj8@HldjKURO7r zI+@~SXw%8!J@#U>!7T}QYoMKD z)5Syr6_^+ePg>i+FGR>7`9P?!8p4W5#`0|(=+CGl7;*DF5^k>pqnaQFjHd=OH09YO z6D6q=KK`fXGWdm}OaiFjMl=^?0Y_~*;ZKX>GtTV-qj6XMP+b{;Uf)#ze#3dajT3lJ z!9X*gv-Cha??M)=(La{Lo&er0CtDqLDOB4=R@ zQ&b)O2US*$WJ#RiAdEk_4_YE6J|YYF6s)w_)#kVXeBoq4z!l@4AG_CRiTjz(-rpLQ ziH!JnC+(NFMRJ@3VT&)1>ZQ%+w+q46UBv`}8Sujmf$o4TKEFy}kAgh!^}7xQer|hHc{S4%Ufp_R~+`b0GMT z^as+hr|XJe096ICE~TX9(QDc`kQUKB$dqIKWjQde__@6=CK2c4blb7@ztNIP z@tEmv{w%3dCDs3`K$NhAQ>$l5ZsC!h`SsiqO?@HknaZEpUBBE1@2&O^stZ_TbB|&) z&i`t;GeRVRsy?!-ks96^aankxHm8x5w}ZsUy*$)Y7M1PD{hg z%o7T^z<_15+bSyCsn#PiyjmliOG0Hle{I}Qi>fs_vB+Xk0q~#Rl9eFU84;QI*(aON zhif7IZ-{|$qFwK8%wEBIb((SG-vR|Q*GCO}khz&GMqIN#hVi@fxhWg?Q?|LccR*+hP49v|c zKB|`1|1Z1t)wMR3p1m?xEn*@^;X#1<_Q?xoDU21eJ3Ja#gD>(LDMvkpYEan+wI;?N zm}dQuuSy$)80)-ZAycz2%F(exNVfLGK&>|yX16TNtj3b%nJXD05{o{0{(8tmI6=ik zLJt5fG4no&r$mI;Fumu7IE9c89mAR|3UWQd1S%1rXOD?OXS$}VDRD*h3B6ymAK!YS znPy^{QhYJR{V^pQ+M;46<%I|eA%&w+ysKy`%rFPtsku>}6g_Qe)6)EHzbof)Z&(^g zrLOw-YvQJe3~2jfG-HGZo}q7!%c4Zem?BZO6w#RYgkJy!Ebsc+=Ay%utE1ShSAaWo zxL!F^Y0y-;A>i9$*EuX6x2v{JL^aX=ep?AaF0f@ej5Ihjsh1r#!9Fj{-gGIxq0#vD z>{Ex$P+^K=ssOzc5%51CJ8|1wpLjf59*M@YldV&;bgxlTUm$L7!f#4Y$vkb&e5Hm# zJ9xeRSVKxxi1CIjB7M*J<&om>P4l^s`i&P}#Ve*on&)=C5T0Pa;?gXsVwItWrA{QI zSQnhcRDRsVY$>c?%~Bsw6ut938ovFMUUKNwd-xojg_ZF0m|gq&>gWNb;tMs%0@L2# zdTrOJ%=ZRv&tz)n5EFlI1gxB9!w-pkZ*9sSYDeGQ?IiZ6O1kiiQ?fJEoBg9|>JAx% zr?mebZ1+f+;VA;LN{!_ zXuk*rDd&z~oOgX&i++nA7@BGn7{WiptR6<&U$3i-K+Lg8FxU;6q#EE*QpT@xu)_=S zgxVif5%)OB{(Ur1oZFY z`}F?OGaXn%$hwu@@UMvpF}rrD|v%S+_sHK5IjP9R2co z<1Xe-i(8d5ZEa;i3u*cdgGvV<$)6w)HjHf~w1HwjZ`>m()Z2nIF|SAeOu=en{Qsn; zx}^x}H?Lh`s`bUkR1eQ3!C=yrqxvl>Q3&?J_pV1o^>~qPW~wW}4M7I897h*1zx5b9 zO)+q^JnqfJGI$Z-6KsEI^5#bD1Fs-4SpGyTJFwy%3bO;Uyz zJV08)^CgnJz0g#lC#|8hvcF``T)UKAg&C_mPQG(APerbtG?tRKqzifP+<$s zQd&Jr>(kQGz4Fz({;=-qW4q1vt%SUomBT6T-Rj#bjfa28(|)@j#xVy6&*Vn-S7dB7 z>MlH>SpKx8&==WGV)H`m<_$ob)dc(!yo8aDhF!d>)W+mm^Gd?3OoF^ytAaISGsL7( zpYVYVYkg_ERoXWxRbeW>cAvpqw*&ImzPIB3-W{k&qg zaIj3y63`2N0^jBURvs@bU|Atj8H-4QnMk`D-#kxmn4U{iU2p578T;;g92!PxxsqQb ztotk&KNdsr#PYYV=VsAK4xL`1eM^^lPr-M*?wdhRep!IZwpCn7yz?_5nLqQcEwaY< z*3Xymzia%U$X0q&m;RarDNietnw4q^y6i zZi1{H%5njxnR9D@wixq&SOr#06CpZ9E;(HPsRB~Jb6{LJi zC;eULL-RIO9H+jkzO#OC@>jE3I|d=e%$;8&_Xcm|e^xShbL6Q{hPeFMpKpA?f~5HT z-~MMXX1rJe**^h09OYIQ)P@>pDSBjd0$EU^m!Gkh%m(B4xluyum%BQaMU>L2qa8oP%JcgMoXW^FIIZXS}oVb`v~cwfH&#q<{r z%^%9FELDH1|F=NCZU* zNieG_JY!;sRqigoX0UGubs4h4!fo21!YYS|GU{GpPDq}ycboV06No|7Bu~$fNe7|N`fGR1xPIq-9!}eu`^5|*AHMKT5VU2aY%-sSn9f9< z@Qx?6;}U6-i_`{=dS1yh2R~|Vcu6R@XuE&8(}aX+G!y$aW`v9rtP*56T>KydS1M55 z_4lyXN`e(NOGupm1`6W}|IiwQkAcAj3c^L>qQ;=G9Yex@P+J$BAr^BLSxB_*Kh09P zu6)VJ%yK60;zEDD>C*iKnZ9)C?qiVeq81vps&2OBS(e&D$o-*l6;C5^^i{lvTW~{R zXjLwW6ML;bXv%F6hvL9Uxh6--Ea0)1?cXU3oFuDlk-O6cUMAWH`s7$(<_%D(ZkJO* zA*?(>oV%N==iZpl*SANGsa@98`;*3FxKYc!XYk5bB1mK=A~lwiO|hb@D1oF%A72QX z$p&3dKBpCeAS$HZCN&dTJ3|HG)T-k6IerBcxOArx>o%_mo!xKB(-r^D_4gJ zJw`LwYa6fTS@U!GQBuKcDWg-`W%qM!Sun$N+qsU!b~Fs{(*leD5q*6~g?&O5Mm#t6 zw*VF=4*87~L6==;eYHP$P4eme3$GFUI=MPm@xGHDLP#fC%uOThL1pGRLM;=0KJ!6L zX;2JYTgG_bYl1z+Uo9IMY*ElV&2j#qE53SAC4bY^e={x9aPR^Z%JtU0X&upaE76;DG1ov_1HwS%&J^Jr(ayoWn&lYKzQRA4`5Yo^Zzd2p z+g9fPdc#D_)Y>{V;KV5ezSj_y*7vSjhb=PkpiF|gL)FEPPK9vowIQv~okkB!o4?k7 zUd~=z@Flm%K|h1hQ%LB(ADQr6oE%bQxqj6=cD28QGTjE94@dAT(~foM7QvTFJQTP* zG%~d^p(DOGGh2@>q_?U1u@bZzk*eF54(RURqfP*mJ9ljUwsowR)=bsatj`D(Bnm(@ zk!E1@EnN0^!qe4zXU#=HqBwQB+b2G{FZLWxQ`jh=x#*6!9VI4iCVqe~9VSpL)pXeX zpbPOulL6h`Z(52zyq_Z?(kZcqxDx~-Xr^?~lI=Q}= zQkrKioYA_nvv|y+;LC>_W!<31O=GonU@WWLeK=Jy#O? zf85w)Bj?v;yHmUWY-QnKtZH-bgS4#wxb67!i29v`n@<{8H0>f0I71v7XNz-wDnC%w zxF~r#Upp6>l76w2O9sggGt^HenxsBAPoKY|F*67a$0D6GsJRLI)7O$iJw;WL)p<`AqS8a%AF;!z&Bv1FsV~_V4_~u6DhC6|zy2 zlY2Za>F)u0^}$|}eV2Dk08z*9StIbR=YksEG4mbLjugO}rXCeF31?cRyQag*7NwL* zPf>bR+4iWew>)Zos+_P(HfLn4F!bmha1iR;5$grU-Q(wQ4H zR+%ksI|~?3-NKWWzd*hB?sj)%+@)uCwZwa61}4i!t0(-6!F+LxltF(gueVcc0=Z~X zfWGhVD&qd7X5z!q<7bf%^;EZmM1ieP#=5w7at^pvK8Cl%I6q4G+Vkv#7B9R`>h2<(1g(;^JFZeMRNC9|Ul%%R+WOTWroR{E3Cn$D zcPdZp-hKk~aBsf>tLM~tB@*>!Rk3U0`Kp$rDChVzVxd+!aAf~H?`tWMl%h@^mb9|{ zpP(C=J19+22GSz#@RS}>u`qI<<_EF6z5hUY zF~cFQ?5^_1{hn@(P&loKf!p@jp!Cr6MV1IzBvo7DaSY${cWNfkh2Ek1+xZJBKAM>U zgSWM8^_-$wy6o=+ZMU8E0p$rp<)O|~Z#-*+M3eGklkzV-;U;lLfr5@pUC`Otps9m~ zuU@a7(GCKbAoE-WdBx4pd^O_=qpB{ogwYNL-#FL!JpC&>J|cz|xr}K~C>?gAKjLo0 zpXM4POAZpBBOF>jkv0#^40b7_lW6VS$H}YATX*?=a?X!O>$LxNcTM|h_Ts-GjkBb8 zEDAibm$*$}8ZeZ?lai%WU7Zr2TI}=<@f*+bQu6Jr_%vQ|z6S_aLcTnxJ+xIA5wS88 zcuCk}oG-#$xCEQ(50XmCx_UdvqUSz@%s3IiF@cd!>Va-rVT7 ziR|)+AsB-X^Gd9Q?;yx!)X3)D>Bvi*07GD!uv76nwpC|$PTL=@eoGtwJ9UEWPZm*r zxRfOBw~^rmD($2^?ew@;Z{m(~WbK7$IF%peK$A0Vq!<(7o&K# zflEe3T{hX-VE?(<;l_6`#MXIA!W<;l;31%X5t5iY8D^bjOH`GPFMcKKH(0mC?0Zt? z;YjAbjbG|v?-MUKFzJYg59~JUTbV?{TV#;idkoEPG{APgBjUMWDIuu^Hd3}Xb-Dzt zs-Pap>{dJ9%#RJp4RD^BJE}r#$6(+j#d+F<9QN|s`I}iv*X&1w#66Pa4!1-0vb_!A25hcp^Rr-@Tu^oTG`n-| z=VbBnCB+fwr*=aOtRfRfgXxv3icB=a%xh1_oL3IopaLPAnoGM&26S>jQ4!aso%%ju zSK<2m0N7Aq)-f=aWR(uO)urwm)BxWR2TDxU6Xla!fuWPc#jF&PxAJmI3BO%QA z|D!T`t%e1W3)&hfmovFR&Fn>fE1^nF?(Da|`vOA9+A^BQ-t`|RGi=|N51zfrk&|FJ zQ0euc*!wzFR`9y&TGnCfp|D0*&|Fj1Z9fgUPahPO{PWxfcd0&68~}-g?^ZAL8>b7n zl>*FTqG9=$8KO84vTp49CnFp#`)XCQ4+Q_&e+BW2v*W_?e2gN-nE=jkb4! zR{}yLHIjR$&)|xy72RGS3{qs+V6+^xpuGfJ7>+eOduiv}C(mzlZa$%pLtAA&& zuAl=?QuwiYC~kgsNZKP%E@-R+XLvnLvFyPGzgUKvYk2{U9eYhFJM)+J+rnza5FV$(m|0b79s_Mh( zE`XhdnzDayC?{nilj{PuiiV(CW>nFS>!#HiUaWr{f+rfg&#A+CEeXk|C}_zR?Zj0KE7W7`?`Bm zKtJ;aJi#S_{gPjDmw#m969XVA9XATH^#~pGYCT1o!^SyC@#DX^jv}k@kc4kgYscbsrek-wfnvoKV6slfK36)UN)(MV7#q-#IxrGh*!EPq+~h*43jBfEmp>FGk$e)ZLP06-I%3cby2?y0 z2uiQ6_!GF>Gqd78oHg{daJh)$=)J!mKXi(Lb2S8Ub*LJx&UM-Rh;N&$~81^&kQa|#WzrTQntex8e9vQNhh%+rAB#%56ved;7Qr-PD? zMu{PDom|a7b)1CuJZk=dG1V6^V4Z&4NsPLx^ZbB+|4`i{bNA0cwEf=LW~G#vsRh0_ z+F~cL4cB|STuYFWR26fTEhysOM<&walL$C&9>JYHxeH*-JlKtJ8GJFpL82rK z`iJXkTQ6Li{gRyvOHB5|xun@j?3N!azgqR}F+juIaTUFa3$kW!{X*O+-=jnrUp|^7 z0$*z`;CZ}1jou~UM_T&Y`=iF_bUO>z&9u9;L0f!DbOBL!Wl*22hOru6Uzxa+ytj6^ zvFF~(*#F64x>XWtAZu`#J_8d2^PT3wBH)8X;RQ5rFBW;)BAxLAOmEV-QDR8SP3;>Z zoy1DG-A7O2^sY{`R_^vuKb`RVSgJdY!-|lT$1Gy) za_~*3s@a&&SkaM_AoahuO78fP-Xs+oq1YQftYw^%Fa?u-fX19OOTbG)kiJ_8Fa`LQInT2x(E8!z3(2Ka5DjL6gn5see^*CVp)d*otJ`%;r zL78Dsp@sK^)Qz=`v z(V|cWV{9Y)ScVj$vV@X7##)vbOV(_SAz_e^l$1S7)+u||jAgPfV_*OG==Z$u|Glo~ zx;(=7d*A0i=X1{eIm?U+&T$RF3>_gE5nnc6_%10}zev=G^;E@5D6xO&Y>D+OI5~FM zGBr(qxZ2bg=>1*#U3Dqa`iJp|2e0sTkiR#jZh)+LizPcDun~d2f$r-0Ieuos1v6Jv z!xK*ZA0fmV7Dz+!b$^06!>Ig1wn!HJO)Mz4f*)Tae4rf-wJb0*gF?Dg976`HuJxs9X^r`Lxc z>F4b54WPZ!bN7cl`w|cp5hiF=(!%mo=P*kz644^--F5H5&F{@XvqADpl?B`4BC3iXmKx`zU81WQRdupWdYbBuHL* zx%R32+?lzaW<(G)6avzGJ1q|N{>qP5_s?9MGj3Zr&GtOL&{$`8E6SV*E}Ck~mP%!YQ9J(Xk8;P@*^B1}>z^xwqQk zB7mb*#d@?);mX-vB@Pz8x5+Q0YQIOI)0eJm_Y}?~tqURz!N$1)lu>%FSy~M)tL^er zekYE9uq>!)h&d`p3k9N7X}MXZ$7ZI`*mom{!I)smp8RiP%`pq0%mz3`QV@(_Ny@8E zB5|i^7W}W)F`zy*%R)a}YjF;d5ME`|DGy?8ns0|e7B;4UMJPPE<7hpT>Ggs_BgOw zcN=ZM>-phHq;C554=1N7Arsl)uUmqY!oZd!x2j{*tI&_gDlmUX_FdjpgNug9Y++uL z;zTGdd&&jmp#G%>hrloRZWrMA(*gJ8{)Z?Np5%Y&PAb#ehT>cA!W0Q5oh^qJFQE>6 zV}36u{x;?(i(E9AGn;l?;1C&WN0~IBQlq0-Ht0mluPygsvH~LC0RM9Xng}hx(_<$udx!1 z_l8WR=gJ=9K2v+%9;z&~%;JdK>De#+xpBLM$c4BEcCQ2$ydS6A?R>CDQ|NwHmG2Hd zyupD@OUGkjE(dtcPX=jMI=rDQcSzX}u4rIoVw~a4*N8n~AXV~4yJz4s!Gxlol|TnU zAqQyX6+`twKyM~mkjJ4#+ev~4QgNy^IkMw)!%KhaRJ;m3&{-MksuDh&*|9r7l3 zu~Jdb84>}znidm$pJKd1b6i!>P_~Z($cbv-A*P=k|U-*cW=zRVMRBGG5esZhey#;9f8shNp+dP>GtcFR^P6b=p$w_7vf8@Xy zjOf*KZUgNKlq&@jC{e@D2+m~-2{@i<(cM2N&cCwqZJSWjBQw(8qnoM#>Nc++B>?QN z@?D>8lV9&HrT&z+pLPz5kc%_>z}e#V>HmjC;i#wo9L+tx{kmxFkH}Y`mlTmnX_mRj z17Xjz{l?Pl5###jUy)8@jp7}A<>=k%{t9}o&oVKpSph33Jd*>O@8*#b<*|cEl9g|; zS`PAi$Y;u|K`REfUQ^?-WbU)I8TkIaS?&R`&1g^zbU|GrW`n9Z{DX;CY!6N~L`3{MN@zgO((dyJD9b6a#R(ZcA)OgBydnt4 zTfV`jDlwNiZ(^*zgSvCd7V7^eu;X&)x133Z2q!_qDQ)8sxYnJq6GX0LiUG=&ZuXm6 z?5V~(e5G8^Kz1E=Q--eVoX{&Vf6DEGmIHywSgx+wax){!qBfAK*w)zYFV?3TAX~fD zp9+=pogMhnDaxWH8c2ysp98Ae`f3w!_Z$vs3d=G?8BsOoaIh0cDnmArfTg*jWR5ub zTWd(bM4oYrfF9MU<^P>8+x_JC+hcjnd8|-VaEFF#aB2nW*>R4DU6&3<dtylyqQ9O*k8Hb*H)AH;9tGV zD=E4Q2eq$kUc0Hau7MQpl+SSlXDdp{O+OKo7@VIHdNpb_`!_(UQ65j!Ki&WdLTC9* z`RrC@`R|mE@fz!p^F&%PJ;*llQnk;|z4E}yk#OTzd?f-%s^c<^FSGPrwfk>$#5uLn zI&cWee)nIamtB0q@f?a~2?tdupU!=*1G;*nQ1iXL5>KISuU`2!;^T?`q@HDyuF8(L zJZXlR6)^lNtX(abaN~i(SfbYNj=b;i3 z%ZctX0c1R06Sx!(gX4xoueO!2>{T`GJ`V0%?{pJa+dfOf|}HukR>)43^eSK*VaLL=p} zR@Z`3OKS~U1X9fMv=$DHMR1sB)~`$p*iCu zXin+ct&94asB77C*p1;6JgySsLD5jXihZEmrr*U^cn4ZoT~{w51sg7fqZr+0)p3Ix zu0lyCj7@|Ko_y646;(xmHLg~^n~b51PDuR0@}wC3-5sPSyN)*s)(fYvPonV_;Ah7X zAO}(pvL-Q}7g4kQoY_()yj`c#J&_{7(;JsSX$ABH8no=?(2mWg%@LP@yUi~AGf=j4 zf#a2C@5P$f@ZL7H)&n;D)yDiE*EDTfv=V-BUT%&IqdeJc3KI4#&szB6C+|5s1`@IO zDG2WyJ4#Pdx2~s%MSuX*fq#;jFZJ~;HRt;;5iIs-9KDbc32UI|j6lYzv&IcJlO5<(vONzY+h;q*V`w;94gH{|D_*!(^<&u({+Yl2*IEuchkD1U19 zT+ZB~YS>n%uVxQzT)b|NSzO>-(}IHxQ`VCm#veK%e6HHkx~7(ELH@ay2+7cvvtn^# zizI|HD9}6G@YTQ2ER{*fr3IA>(EkS|7T9Y;4I#daGGYcV8h)d|B*<>J zeB6_s@)?gvD7?>MnD(t~XlpzoG6N*3*sEBCC~ccu2mWRoD#x`;jp~j|CA4x;0G`+g zIfh=nh*WJuR31IlkR{>66xtB$ey3omy6=?)S^!xsX%cLUnKx1|)V zV1_K1?+i6=(sK^jyn_56Q668l?RddpJU^Enn^y%w68L5N9bKVYU1h|;gUM26rNgb& zOp0TS-YL#GvDDRH^SJ0kys#c00v9Wi9)1-FprPgaB(e{}1q6@_lAqM)#ZW><3L|@L z_+!&dt?LhX#8j%Wzw;in@NsymWZ49r%%YnMvbc-0DV#L-o;h*)sWJ)&%{e0i`Sz{r z;F5^9+gQ${E9jTIlC(ldU$giNKqbOar_i$^`+eRct;ScGtKRE&3^)zDXXM}hXLDen zPq-#3M`t58Z-fF2wlsBaoh?1(meo)Dl>)sGYLT}aX3mNs97MHZ+l@B8G&zXIiU72; z?vi9MP?juf{&$pYXb0nxv%mUrN+X+PCH52yw2$E^^6nBuN?B@PQpyh82WCm=bgrIl&o}_!Zq<|-W^-5FRNLkgn15Q1lAZ>MfL%; z$%0#z7HB+n47*`^`wd5`+2{onrP0EmD4De95)`i}?3k$8V&jJ$QA%+y-cwy%`h5{$ zaM$Ox+T;CYvxb)D5Ix{mLBIJ0?bx!NSI_!%)_)j(fAZ{yF^y|M5zycYr;NnyR=*OJ zK1R%0jqFZcX-1mbEn*p7?l@?i2%)qn?N;s<_!kC>WUd=2NO=-3dP?8)^`JO%32HmV zRm58cVMhrJ$8-7bg2!T&W>{RxEh}#2AJsgAisME~T_f;e)mhszcDo`ak`WL}%Am%K z4euY={Vx+?KoYoU?53z>^!jTnV7%c+5}7Vzc?6V_8bDJv~bWwB} z%%!!BD{|JJau`e63Fo9T{7d9|2ID^G{u!%F%lm9(@bbF3i|TcA&D$V;0p;rYxXDUI zr$&%Fr^QInef)SnrI$x``vb83`P+cv`V22N#S{0PGz7}Jb4zZn(0x<=X*D6?< zNYt^_Y#nU8DEr0-hbhQkG8cvkl{NXg00ri8Bpau^NSeuy18!wMG{mjyC#C%UTQo=Z zd!?Se-dfvP=kEDLnJjw&WEu$7&j!DIW5J3s5;iJ>g|$kRzUBiRA`RMo`CT9ZSu#eZ z{}+-sUtPNMrl9{yVS2$XwB?69m^W1MWC9e`{JIPNSi~@XR;gJNOy2#Z>-N#S1t@-W z`wc;0Twt1&?T-Xi*RzP`7UPRaax4AFz4zfg=@^6F2&WsNV1o|SAdk$+kz<){k3RWJ z$f>zos_M<7*T$G54iB`Mu)7w#(A`f?cdJntktQQR)&4Wsj6^@@efj55K|?{UL|t5$ zO;8evEmS6_UKntF3N!hMl+8CjcdN>5gd{r^F2v_IhP~W#RLGU{FndF}SWrgq^2mn zay{uAFi?z?*61*+ukslTS+iW+em!RXZI2iTyW#amVLDCr4=R@5;pt4O={FG{&g5x9 zB<{)pXzg|@Fb9^GUm|5<{^}XIP2)*^L-|_y{*>v%ry;Gj`Jm&)qfZNw@5KLbD)liZ z2d)3!>Ou|WEWM-Atty}J{l)>rOd~2zbnpM-lQ_%cE0197B_Ly z6g!B-#)>Lu<#Oe_Z#X>dnG;r6=P%T)T4y1MDCsmY5rr?;C6EA|2EEE{^U_{*Yz#af z4dt$)6n=w=5R>`T#4`TNN3+iFPCe4)GXjkb0Vd5_-5_eXl_KFkzrH$mxE}Y_UtWSV zxqmpLSh%j5B^ocDTHC2B6)uEY^_~+6H~Cw-He$-UxM$&G02*~&>TY5ql2Id+#a}hG zIV22$IUid|r%bc%P6hU-E+&8dc(ze1494Q$n3RxiK@CS|#$dbMsWiCem0sWE7Vi!o2=C(Ea8Vx*4w(zpgELxYnhZDq=-- zo>Fy9!E#%RMnyZ2R#&DTp9{RAN6+067j`tm#3SWNc>WGEx(c5`Q0rqF-`@L*M=?Y5l&;30ltte~Mj`E) zv!Z%b=_i2`?a^;foTH^k65!y1MjQM_p)UK+h41GN`%OjIo~oMoM((2fxPE?7eGbJK z<5P2%Dl*FBaz0FHWzYP8bBqE4;)l4PA&Oi?z*>ILZ?mM_&*>~AwS-yZq z>o|ugx7g*hZxnv-!u{r$Vc-5;VYD&qvGENV_0)2+o8~JGUxSv)y%;FBB>pQw8YIjs z>c>ty_gg%jtz$L)_|A$dt5?z(}{+nh{ z=w46>E-m=9)oXmGqcXf>=ed+?U|PcxvS`cG6H0TppUeOFD`==5p6D_A2oygbEdITl z{!F6^L=LpRp{Go!3?HI}A)4vk{KV z6B2Ia!+rv_qIE<1U<3w}1pqOMURlOWT=spb^{}QdxMmmL=cznTlmQ)v>yXaU&)k$M zQ$zKL9vY*r{wN(R7lrft1fAj>xPWYI%U>j)aFw`UvmAaJg}-(kFn^80r38U{52 zV*l>P$cKX}7Y)zfP5&`ob-i)S-|DqJ z9UJ~`q4{&O2Z?ccQV7S!6OQO7;{Dc?>}j7I7)U{#akSf(IoLI#vxiSe#5xLWS6lyW zcFwl{p)0P-RJcHfa??9c@oxX{oubgxDHm5W#MmVAvY_jwHnfiEaT;0L6S)Mq0R0wZ zL`8v;33a1lCvv3#xr(%Nk2XV7(A00Jt-z(WVWzXC!GV}^zm2KqobNHrs-ThoWy1C2 zi^pO2Df39c`GtaP4{8PEmLVJ9uY$4~fgQxA=Do9gvQl69D({9b4frd=Ri`?+28fHR z5v2`!M~mH+$%n7SmKW4WlS7&-gdDW*D~--b?w!1Qa8K&wVZX-gr$wHnc&B($s_OLf zd9jvU?!52wXM|hvn(u$(tzU8CPye$R&^c2Eone?~7h87^-9SHBqGyYfcLKG?Cg+6& zPYWT1bfO21ZGA!;nY(m@CU`Kb5{9W}I1*1;0${Eg!U1AZQEqtk7UTX=7sZgf{;H7m zN0G+<<6cjmaB`birp@M>jM>F2E@FQek4DnWVNcu< zn`SRXa%YG&CE``Uq1wh@>g_l$l&!6q@S{s`(?ZgZFXez0%(Ve+y+#U`381Rth!h0Q z^gNMk4Hi$yNLrE@S=`m%e^EJwiSMfUh%8_*yO5Y`H2vI9KVJQ!!Q~B6jvTG5vrml) zU>Y`MVv;c$95AJ>=$gJa7yiEH%$UP&=K{U>KC?Qgk+^iX|DqmM1WFr_v@qXOm@Z(U zLqn@r%A^6h|NWuE7ki^3Qx(^<8$5{YPWcLs4??IZ(-cIk-N;1j85ic);O!4s)hM>$ zD58z5C7=23NR7*EY}rLcXu~Us51^+20-Bjv*47E z$tk?lq(jscRXVPD)2J>!5WYXOv~XNf>#ktIw`TLF0Y&Q`H~ZvSw-gO+#t5ME4a20F zUG37T>*?j#pfxcCI^|0IZPHUTzV_ftSWqQT+Z=k(iWHuoM72ntl6xr?4+j1s&4 zZf}3Zja?5)r(bJe4%0tq-qsTW>k`Jqa~|scrHY{(kOUhW$c06st_+1kxeqsN(m@8g zvgykN-$Z-fwO_ zO5b}=M{RNp^higLC}WbE;Z9NVjE>)tFXALq08OEcW)N%G)CPAYP44Icg#N={@}&s0O)Eimf0~6~_|W>?CM?eBtoQ~eQmN_t*uAw~ zo^L!6)qN%p_-n-_`Mxr7CF{XD^`D+I;)Uq{0?${ zqPDT+_|+I)#is5j4<^BsYTdGMR7bZ!^A+Up$waikmiPT7`eEp{Im_1-?l1b8!lU~Y zk}?b3uC42Pe0_!P;G_!OCGJPPB3vkRe}KD}p76#(e;dZ8T3K=!HV@p7=GxtJHd)$} zl%2optD4&ivAU)!`)m7BKRMl1n{+0F^TAZxdf7v4RLh%??1A8!cmwWsDV(p}NK`e*15|9{-lk z0Td|=eryiwhui@BNJo9JZkNZmyN70|*$n2lmvlmEu3horW02iFHzkk16dNi*C1n^8 z``CCoiF8LyKEo=m1dIej&7Z+bbxMOV!7zPqzA^1~&O&!7AR{=@d>xnMi7XS5oF)TWDF_Yfput59{D&*XFIJU5 z8u3jCqC4|~xb=z8Fhb%oy-ki!JbuAH8; z=+Rg7AqQB`x#^u5_#du`@*S`YjjV!JP=Cbp-0bp%?!$Bxn##~*DE?z7$hZLy-RcSK z0QKC>@u*xinrF`@-G?1*CKkWp<@b!^r2j#rbvcYs%5#SVZjgZEz1E~2BRL10kn!JU zX<$v(QQvX&t7vA>KFM&oLs8Y5@vde9MjD+SS|$>sAONm?;R&nHv?v+;Q4-@|JUu1U z24x!}NQl$%R>?#%gg8G^UcS&h{X;qqP&7_Tb6_r_^>=xE)R28;^tCyx6oK1}#0X-d zqp&C!H&+Gn%Jl_Q#j%*KFpt}JPLnQ16+FbcouO%6X9AgSYNi@%i#7Q4%`feop#iYB z@QK8>^_O6p0$G`1C8)CyrF7XWZ8uCeQL1y)-&bt=X`OE{gLUa=kxe=Frr{?8UQI12 zM4o_$jNmcv@HglXG0dM>Y66F=NCmLjh_dvmuj@-v7v1-rJK*{+@3zJ7s5SVG=W z3;)WAb>&6APX(~*EQ^?3xv8uArx!`aNwDow)FLTy%;JwP-=6@a3dr&BmdW&U6a{Oa z+@Iljy)ol0r;tC$A|!)lkO?;^@lTx5mDTs=AHxbg>>wX!5#oxvMt(N!{U&NIpQLw$ zRf&Z(Qij@czWocAeX~ASWOOH*s)1JxZ@4Sr+lNel@5-I|zK?Zdn61d*1glXA8Jo+` zLf^wM++meT`Wf9*d1E!h@kK@+9557{?h*k}k$huJ!_AGmr#0aEE=po*!QscI0Ujm$ zM}0orQH$17wN{M980qd7Wly0mX5<57r=U;5egE&123o(!8=Uvlt?2l zOjDH_vbGMtg-nW*y9s=NxU8#fKxv6ab(F2AC;lDL&zI zwifntXO8v!ppbAMZL0WG*^;&y&ee>SUvP3XnGYAPJ!9}mT9fFk`A%JdjfksF_I%rp}QGwN< zh=k@l{UzoW*kjmd#?W<@NV2m1-V9Gp_L6bmU5#J{+9Ayf%eo2kCU~wz3_9y)j6G;)etA&pGkaMfZFk}xmA zD^B$I;vCY&R3-aSIM-GehO4X%2BS(-^iei^w}q+un4?ANRUID?qBj?A%5jeONbAKd zS*>lT<6O0A{wZ~lcT;}iwU>T42E~cQaXot-z71HWpk1a)!|jZc{eFJ=9?`X4=G44r zpa|`?hn+)?n8X|w_5_sn{j({^*mGcG^tzOT1BbO|sZVp4lt>GXNsyEK^x~6V&N3L` zp%B(57qYtFHgJ>T9ja~Tt^4Gz>2vL{v&>;5_^hU>z+hJ;R!wQlNyFkNKM=G{sWHQ% z=gn@k?tt06z=yQD^7@}Y{_lSU?;X7fv@R}KfaxM9hRW~GJ+-Bq`k5|iFnu^*N8ZRU z+NcE(R5$TjUwPasDsr^>C>``4yrk0m#k^UXbC@UBK0EYTDTaIGsb|0AZ{4m}ceEw2 zv4vhZ0u%`~q#`BjPzHT<4KUyA?KGf@#=0!lX;?M0{<&MVvK*KLG`NwU-i$a+u6MSM zkdzb;h>D(dQyj~&sT#UHtYWkbe_3TA8G_DA2_1Kw#tiTxj34l2s)S^rGfSK-gz8!7 zr3~+1_?<_V^WVL8po>}?OK~gBm?rZaY%&J~r@e4)gLJ3Po)02GL$B)p6i}@@EzP=h zPKl+zn<;5-p?TU0bXto8akT?+^xaQF!Yhqc{g@RKIk)fI)jnrN*xrxs=cbp3+f_aCZ)h6Yma7AG%?muO%kSmjwZ z-Hpy&o#J$JQ^IR5O&A@(>VWpA(}Sse0emUMn$fL`W@(3q^CORv&NZestrWW3QC(6g zyeE^vMwB83oCy(DrlEV>V@D-j6_jdO=Mngcid&Y-+Inzc`lShuCC@7}?fe>tDC#o$ z?3=~bqVON#Klb(sGYQyW`ERSM)hlrBl}Z)F{o7B;>EE#^2*q&hQR zuz_qR;dv8gZ&1v z)4Nfq#7AWok}C=pD!390N%H@{5HRQ$Uyx$qy3xU@U?Ayo|Je1M6}^9gym@5 z?!+e_qODrYWWSQ5W1GkJXSIF5m~{nrRvAmSDuTr>tamVZHzmzYb#T&pjF(vG^QG*# zRY5Kdb(|x$-BKPYHha$x7Cu?*tfb`3%DgN0o6r(~9Di7n(S4ORVIMnBvQfgvS|~++ zwvhDVJKf?|HE|GX>vuuL8WSg_uzWMU?bW=gT`M+FX@zl~B-21S%>|N-Ze1c-bcmqE zSCWxH$9{(Bw=y%O;l&$84c;}?T%KW77PcLW!BG@oN^#nK_DRz=mCcrlL+`W<(G&LN*mJvgMTU}?+LIp^?Vg_dhYCtD`>kL_LMee#Ea`hPHU#_{1 zdJ;c=Sp4xb-I*G;vS=zh^gTaYk|_hV^JvnUL7s*p22|(kc9JmbGWbL8v!vGhf3G5qiO&^xsMHZ} zi~{_2w~IL2v*^aTa?X9QDE=D+LAIRvQd{pqiLQoL-BfQNf}jtw;o)x4Npm6rVQrQL{gN!Vi;_1ET4_+u zY=){=N-UNT^8r8Y5q;k~{b{AS7NG0{1hilCtefgYo_8^rCDeb5LK#D{aV01ZQ636{!cu+XFczE?ypY z*S5O40wlU37dq_&7jq4mdswsoOZUN~y(?S=SJ}OaB|sLMC!87J!DsOInR2nRsX(3n zxJ%8+)I-O%CSPfgBsyKK<;H|_$c1xU?&&TCC>T4EmP_wdq*#4^zzVprO5zysUqidE zZMwufOQTC7>&5a1>g6K{xBeWrs=YA6)szv1) zs70U5ApaqmgcJt5tXv&gUQcNm!u2!ynJS1K!ov#7m|rqu%`q$Nylv}7V`J2-*gN=I znDJ&*Hyc_Rdzij0R&4J8=LSlWNO@_gB6eU6y776^wygci_tWsc&y)ENv1vEWSJ}%i zF77fVCeW9OSV^;XWPK9hf5gW|Qkod;_@<1wpZIv>Qi5rjj9AuH#(=GL_w;9jx;NOC<@CPZlTgF10tx3-H=_tN?=mVbie0jV;?!d4cigpE*#MQgW+;10_`cTeEROh45jV$ zDXWEkpv}p5s8IOo=p_0}{k(xdCWb`6fQ45Y8;P;q4Z2)UR`yle$mtizU?SN}kz_q7 z^5KaLJM-1yF&X}Ya7c#RpzpBm*URWcn5hrnX|(w&WRl92?|Ns<<4#&3rtY_Mmp%$( zkx!#5m_>Kx-YcaI60}rIbol^iM!KY_g4eYW{YZlsW9DU3E`24Bi@`kC=PoXc&wkYs z-DQ51iu`$|)xMtnKH@TT#)0ix?e$ig`{>MPt+j4dsZdFU&gA#czFPG{oxm2w{AyN) zD-|yx)9mL-Ty9iaf%`=t3(0}JyK?HM=NACPitSQly(@7+mat9>61ppoJBScK>J~kmYjeZgZ;tt{giu7&cLT!LeFL0DG45 zZN7WeKDGfp?m8+n)NhHl$wwS#552G*Fj0Y2UdZOt1&8=b*bg~z3hCP5@cposBoppJ zbSJu>RlzQmE163m&IMe5b^*OJD@(yq70Vk3FaAg`%dwzjrYc+ZSOMmCZ;_utC8auL zi>vm2d~Rj)y2=@9a@MunvW*0fvI|D#$yX9&WpwLg;Q^aNSM$&M4lm%s{-|MJZKE%_!-39IWK zZRdv^e+vOhp8%@``$Isv`AFvdmVI645M0z-PbPlv-#C1H1cAmKz*d+G0tm4L5XiLC z_#s1?LCLP)oLwuS;FwhDz-*&>yjUGhBHOD8`@ubo>2PBE^SU-tV<|Dv>qb6;a*CJ+{fl##=iJLL-Z?itro~EVQSlU5vm^X ze)@~=DM|zd$G;#zTxv<+G)pZc|LkmG8!Dhn14b*)!&RBGJPXF%9k;LyK$+n9x&~B1 z0YGDHjCd!B|B=H{U_QsvMw z#b3m8Z#+I4_Aiin05MSEayBc^$NAc^r6tF$6m~$>%{6wd$Delhau=Dj0v(eQc*J$cOV#5^=%Yfh)%@OgTrTyBHLcfTr{n^ zf43bWcy`PJZ8tjovGJ=zEFr%+ycKwHKC%+nk^qRnfVQBoxmLe%Q)4j0UbrzbNaXeJ zzUQsQ;S#VbcO9c-30$q1xk42oF2QAD=F9`V$#b4SIa7w zoo%(nv^x$I+m#a2iWe+FAtmC;vmIK&9c>CUk8tYGOM9JvFj^b4);J4;2Akao?*dA)xli{A}+t z0P|zE+Mk_4``$j6Y`+Z-<-xGkLD)K>mSk)M0v3I2{~1z#Gx=Ld6l*YWdTw3lx1Hya zWrjCTCKckabn-YZ9r=^CAbhf09IQso0*;_gP7t6$Cd(fD^MD?h)K1bAB+QQ+MKQY);%?J4WH+tllF zMf{Ph@$o6wD`SS^dxIGd)o!a?=RORc^3iMZN(3(=%dv2gcqPOqRU_RK5&d^aO(Pf? zS#Xot*IP@^0tisT{$xZNsRp9RE1hECoB5iWtv_9A%sHHHAoglpPPT&gdiJG`Y32GM z_gLT1av!SgWJMkYUSv7jh@;T!nOcj7`)BY874`Z3_BI*GUzrO8Bf9?R+bdCA08rd^ zKv#wb7o|2B^&S^u`qGgRxNR(!`Sit(FNn*-)egca0o7C|&A9#@u*+dr%Q%7q_ucf8 z_YYK`c#zcMDwoGMDZy8wI;!*MA7E_8N5=M_*tvJGJ0&Z1IbqWhB9k|*856b3`?lrB zjrCQo>#AgC3gH+i>qw}fnxf!Ws8I=)RehCY1^;Bv8hLsG+?fw)02d)P3C^5Yxdr8a zPRJ)T4;c%-;c7>`u>r9BdQNz-Hy`eAn6`TS#t+@V?WDPA|0c+hT0f~6&2+8YJy5^g zVR+Im%ivPr!4#@(`uOy(o~C7Za7)S%H|wuqfxoZ+GQ@b#JGC^!Cp=1Fnc!|wEZwQm zBR~{(9loA$l^NJIl*+v0+GPTWoilhq6rCqWiG>@tzl5S_0ao!XRt6eUVg_Yr3Qu+J zmCNk4vnxtHcMVt!6X^m~|3eAP7WP)7>qVTMS=w7@8B~M&NP2_9zVf8G_Cq#HgQ?D2 z|5s%>$#U!4$9b2mU<#&;Z)9YWl+QaJW?mq8*5?-m6@+9(xRf42S_tX@Y9;-W=Qx*k zqZ{0~E@QN^chzt6kn?f|>hHa#!;*tDTi6$nFTkB_r%Yf8`Tci)>QW=P*aXizugc|| zYv(fl-%H7I+?>tiO-bAcYWG<~$IW+7 z4dlTQo)7dPw*XvP)0)_09shq-Uhi?msB4YW8U6z0NcSFXQnb96vD8UEmj1)BXn#v0 zmoS8od3pOP5i*76A`vajS970vUER5UX_|+yDB)^A10F9zdAz!B3O}*|JYF4G)L_tm z78MPMgvqlvjG+Qq&(_puZtZ?_&PZMkYK2SAG@=T^9v`{K4fnHJ=bQz z?bXbwZRGr~@WVH2L5}Ovf85i)xNwmCkZOKZ@mqp1?WD4ZBF?c}G{zx|et9?^rJZp* zUnuu#E?FtN#*c!Jll|hr%PkTJq_Rb4=T2}ow|-@cwj=JJc+8jDvdzE6&%tBihfJEo zxWn;gNpm@0nV)aEXemDrrY!(z@>8V`|UfzbD7eLNp$+ zUHdiVQ}Gbn#744q))`%z;O1?<(MQWp%T+rKW+(2k&fN4katZ2>z60+Lu3Kk?I+-`+ z*5&H@_JWe8f#B!;wwn@~%QU9~1+di2d~m!LvzV);1^`oTN$ld!=>9aVOvf^4^WQJa zD@TvqP5=PX2bc!nG{S*|RwuUj9=A(k)8E}TkUpz(FKUd%BR!x52%|)0`z@=x(_xmg^rzAISlPj zs@#Jv^3sP5SUt3$3m3oV{n=S;0bsj$a4LmEP24&UB6z46R>-fibOL(yu+hKUdCLc&AI+0zbZ}& z_vqAuVgeT@=u1we$(C{vg3^SCti}y5>TvPQD_=X6+Z?!z-{}CdqW3bE$n{fbkj%#(vrny3)}Z25liTWX|VGWERIo`R{*9`N7C07M&BOc@}FIMvx6kuxJTP@)$0;Ws~U zoq20ffkod>mJ4rPw-tC z^#P#rB^vP`&lw&TR>0In!LhS6>U#-4AxFc=#3epC$3ihBJ~;iWmejKhs6jZz!a3*y;Q02X zd#5r`{5QtHTAg0e<_3Y|N(Yo}?f+e+_HO(Ud)_hWk9;?9ArriqlL%fs=CtUDhHDzO z1DN3Q2JF0G#4Ye#@MPTM0`aTY%b@fp&x*6MZ2`cxVNoGL{8kj+;L4E=-8^?N@R2L!u{R64=(L2LTT`Ro)##)Z^~yIaHo@A z-XPLmztZ2vPa2mNwQa7TV^?qfKnYcALuTZe7Md^8QLb3^NDwA}b!p`XDDQ`?nE1l0 z@JWWAomMwRGGJvZK%wb~g2}mTcEpv{=f^@j*V!ai<=%g#dhea)Ao{!oV6jVhG8_OZ zOqF3pj^zRttQwAo5+RgpA%y_bUKM>(xk*f|Xr)3m>TlKfu29LmWWD18`~)eJ?1~sM9&IfFG3mQFnnP+sS~> z#wP@_jtzI%E!Bk(9Imb;77)kXTQ6a=xZYDX1j0fPN*{V1EJi*&r40yyV*&O2Pd>pi zob*hfjSy`V&xucx{W?~kPkyqHwEATRDF5Mlhj5BrdW@ItT>jF0xbSr#EfiSTAI;Cs ztf$l&@Rqc!8K{k*cU&0>;8UKN@Z!!#*^&p0HN;a3mAk~$91g0V>8#NBWOzkD&iNlj zr_N`7ywl4l;Hgn0{xHSct7=DK?mfJ1;M<&D^+(IZ&615ppN}O&?#rx6OE@L>n%QH} zS|Fz5fm@B%z9KsM zSDz=3Kt02r0wWzm@vu(cyvyiCUU0=(wz8^zngd3HCd`!vxz7W!lBBpm^ogPCYlAQ3K|*slGRf}sXxRIK>9|KyFMYhp;Ta&Z&%! zkBuE0E(M>TfnmoD_Lu%wN?=SXow0@ml~2~hQ@ zi68wxkM1}C#cHXiGZTIVTp0(OE47clfO9jcqTm8Zy{u3+0fD_Ve>y66SleZP68w7R z-eRwN@TZU|cZr(60F&;P<_7-55pO@_yU{w^-H%Sf^nH<1$JoE@{U+Y@g{EiS);!+? zsIYp7m+16ABs)jbvNU$Af0=w(wKBxRm%>~3Ji%I&DO{uH`jj8=@K)Sy>u!o_|Ipno zo8qrrRFr|P$EJ^+FN3k3jRlt*akB{qG4Ol-2LRDrBDO?}wqHhFczHd6VxXtLs>~qt zL?a}>_!x8fAwy7Z5bCrg|~DH;M~Dg0WyEW54ke>-E88E z^NFZlQqLS?@0`1tdbtrXKJKjM{yN>WPZfK=vtCEbC+`f+ejq?cAg8-T>np8f^#lID z9n(D2zNYqC<{MzIe-CiD#fn$xc>mvTt?XiM845DSfeyQx9tQp1T>d5Dwb6M{S|p`ul7kO9)B*PH>W7w2NHxw3@7~g z$6LVr@%_U+q5;xwslbk&mQYarZf_4kzr$iN(_Rbu{RGaoP5H+b0lbk47|;fVibsKy z383;1SY~!G7y5ujITgRU{w~&vy%@EvLTL^#bak$;jb2KZ+KeusN(4S8(Bv$ z*Gq*mDsj!2HRIR!Zy)5(&W+SOw6bB*)_04#!R;Bg9c_OK_hg*0gM>n9y!1r(s-@uc z#<~0wyU6LUz-qL#W4YF&9m2k|*H+vztpfI|8~l9!zRO=et2uI|Hpr(6AR8Bp`KflO zAJV+_{QZ&3)6P{h2(mulh_e<5{(nv8jL%*3lovw4We^6hT`Zo8`L_h$JoK{V`i6}9 zd+PHTl(-I@WC_(?k|uuZ{~iwu-|a6T!Na(2;hMs%gY@mBIH&`<}dz^k1rE^n{@x6v} - -# **DEPRECATION NOTICE** - -This project is not actively maintained. See [dshearer/jobber#334](https://github.com/dshearer/jobber/pull/334) for more details. - -# Quick reference - -- **Maintained by**: - [Jobber](https://github.com/dshearer/jobber-docker) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/dshearer/jobber-docker/issues](https://github.com/dshearer/jobber-docker/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/jobber/` directory](https://github.com/docker-library/repo-info/blob/master/repos/jobber) ([history](https://github.com/docker-library/repo-info/commits/master/repos/jobber)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/jobber` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fjobber) - [official-images repo's `library/jobber` file](https://github.com/docker-library/official-images/blob/master/library/jobber) ([history](https://github.com/docker-library/official-images/commits/master/library/jobber)) - -- **Source of this description**: - [docs repo's `jobber/` directory](https://github.com/docker-library/docs/tree/master/jobber) ([history](https://github.com/docker-library/docs/commits/master/jobber)) - -# What is Jobber? - -Jobber is a utility for Unix-like systems that can run arbitrary commands, or "jobs", according to a schedule. It is meant to be a better alternative to the classic Unix utility cron. - -Along with the functionality of cron, Jobber also provides: - -- **Job execution history:** you can see what jobs have recently run, and whether they succeeded or failed. -- **Sophisticated error handling:** you can control whether and when a job is run again after it fails. For example, after an initial failure of a job, Jobber can schedule future runs using an exponential backoff algorithm. -- **Sophisticated error reporting:** you can control whether Jobber notifies you about each failed run, or only about jobs that have been disabled due to repeated failures. - -# How to use this image - -This image contains Jobber running as an unprivileged user named "jobberuser". The jobs are defined in the file /home/jobberuser/.jobber. By default, the only job is one that prints "Jobber is running!" every second. You should replace it with your own jobs. Refer to [the documentation](https://dshearer.github.io/jobber/doc/v1.4/#jobfile) to learn how to do this. - -# License - -[Jobber's license](https://github.com/dshearer/jobber/blob/master/LICENSE) - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `jobber/` directory](https://github.com/docker-library/repo-info/tree/master/repos/jobber). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/jobber/content.md b/jobber/content.md deleted file mode 100644 index bfda592de2a6..000000000000 --- a/jobber/content.md +++ /dev/null @@ -1,13 +0,0 @@ -# What is Jobber? - -Jobber is a utility for Unix-like systems that can run arbitrary commands, or "jobs", according to a schedule. It is meant to be a better alternative to the classic Unix utility cron. - -Along with the functionality of cron, Jobber also provides: - -- **Job execution history:** you can see what jobs have recently run, and whether they succeeded or failed. -- **Sophisticated error handling:** you can control whether and when a job is run again after it fails. For example, after an initial failure of a job, Jobber can schedule future runs using an exponential backoff algorithm. -- **Sophisticated error reporting:** you can control whether Jobber notifies you about each failed run, or only about jobs that have been disabled due to repeated failures. - -# How to use this image - -This image contains Jobber running as an unprivileged user named "jobberuser". The jobs are defined in the file /home/jobberuser/.jobber. By default, the only job is one that prints "Jobber is running!" every second. You should replace it with your own jobs. Refer to [the documentation](https://dshearer.github.io/jobber/doc/v1.4/#jobfile) to learn how to do this. diff --git a/jobber/deprecated.md b/jobber/deprecated.md deleted file mode 100644 index 4ebe5963e7d0..000000000000 --- a/jobber/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -This project is not actively maintained. See [dshearer/jobber#334](https://github.com/dshearer/jobber/pull/334) for more details. diff --git a/jobber/github-repo b/jobber/github-repo deleted file mode 100644 index f2974babe9c4..000000000000 --- a/jobber/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/dshearer/jobber-docker diff --git a/jobber/license.md b/jobber/license.md deleted file mode 100644 index 91922f4333e3..000000000000 --- a/jobber/license.md +++ /dev/null @@ -1 +0,0 @@ -[Jobber's license](https://github.com/dshearer/jobber/blob/master/LICENSE) diff --git a/jobber/maintainer.md b/jobber/maintainer.md deleted file mode 100644 index bc73df28e84d..000000000000 --- a/jobber/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -[Jobber](%%GITHUB-REPO%%) diff --git a/jobber/metadata.json b/jobber/metadata.json deleted file mode 100644 index e90624aca4ca..000000000000 --- a/jobber/metadata.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "hub": { - "categories": [] - } -} diff --git a/nats-streaming/README-short.txt b/nats-streaming/README-short.txt deleted file mode 100644 index caea83c13a35..000000000000 --- a/nats-streaming/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -DEPRECATED; An open-source, high-performance, cloud native messaging streaming system. diff --git a/nats-streaming/README.md b/nats-streaming/README.md deleted file mode 100644 index 754bd8dc5b55..000000000000 --- a/nats-streaming/README.md +++ /dev/null @@ -1,340 +0,0 @@ - - -# **DEPRECATION NOTICE** - -The NATS Streaming Server is being deprecated. Critical bug fixes and security fixes will be applied until June of 2023. NATS enabled applications requiring persistence should use [JetStream](https://docs.nats.io/jetstream/jetstream). - -# Quick reference - -- **Maintained by**: - [the NATS Project](https://github.com/nats-io/nats-streaming-docker) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/nats-io/nats-streaming-docker/issues](https://github.com/nats-io/nats-streaming-docker/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/nats-streaming/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nats-streaming) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nats-streaming)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/nats-streaming` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fnats-streaming) - [official-images repo's `library/nats-streaming` file](https://github.com/docker-library/official-images/blob/master/library/nats-streaming) ([history](https://github.com/docker-library/official-images/commits/master/library/nats-streaming)) - -- **Source of this description**: - [docs repo's `nats-streaming/` directory](https://github.com/docker-library/docs/tree/master/nats-streaming) ([history](https://github.com/docker-library/docs/commits/master/nats-streaming)) - -# [NATS Streaming](https://nats.io): A high-performance cloud native messaging streaming system. - -![logo](https://raw.githubusercontent.com/docker-library/docs/ad703934a62fabf54452755c8486698ff6fc5cc2/nats-streaming/logo.png) - -`nats-streaming` is a high performance streaming server for the NATS Messaging System. - -# Backward compatibility note - -Note that the Streaming server itself is backward compatible with previous releases, however, v0.15.0+ now embeds a NATS Server 2.0, which means that if you run with the embedded NATS server and want to route it to your existing v0.14.3- servers, it will fail due to NATS Server routing protocol change. You can however use v0.15.0+ and connect it to existing NATS cluster and therefore have a mix of v0.15.0 and v0.14.3- streaming servers. - -# Windows Docker images - -Due to restrictions on how the Windows Docker Image is built, running the image without argument will run the NATS Streaming server with memory based store on port 4222 and the monitoring port 8222. If you need to specify any additional argument, or modify these options, you need to specify the executable name as this: - -```bash -$ docker run -p 4223:4223 -p 8223:8223 nats-streaming nats-streaming-server -p 4223 -m 8223 -``` - -If you need to specify the entrypoint: - -```bash -$ docker run --entrypoint c:/nats-streaming-server/nats-streaming-server -p 4222:4222 -p 8222:8222 nats-streaming -``` - -# Non Windows Docker images - -If you need to provide arguments to the NATS Streaming server, just pass them to the command line. For instance, to change the listen and monitoring port to 4223 and 8223 respectively: - -```bash -$ docker run -p 4223:4223 -p 8223:8223 nats-streaming -p 4223 -m 8223 -``` - -If you need to specify the entrypoint: - -```bash -$ docker run --entrypoint /nats-streaming-server -p 4222:4222 -p 8222:8222 nats-streaming -``` - -# Example usage - -```bash -# Run a NATS Streaming server -# Each server exposes multiple ports -# 4222 is for clients. -# 8222 is an HTTP management port for information reporting. -# -# To actually publish the ports when running the container, use the Docker port mapping -# flag "docker run -p :" to publish and map one or more ports, -# or the -P flag to publish all exposed ports and map them to high-order ports. -# -# This should not be confused with the NATS Streaming Server own -p parameter. -# For instance, to run the NATS Streaming Server and have it listen on port 4444, -# you would have to run like this: -# -# docker run -p 4444:4444 nats-streaming -p 4444 -# -# Or, if you want to publish the port 4444 as a different port, for example 5555: -# -# docker run -p 5555:4444 nats-streaming -p 4444 -# -# Check "docker run" for more information. - -$ docker run -d -p 4222:4222 -p 8222:8222 nats-streaming -``` - -Output that you would get if you had started with `-ti` instead of `d` (for daemon): - -```bash -[1] 2022/10/11 14:57:50.404688 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 14:57:50.404739 [INF] STREAM: ServerID: fbZJjwGYLBpNM5I8z23NSN -[1] 2022/10/11 14:57:50.404741 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 14:57:50.404743 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 14:57:50.406004 [INF] Starting nats-server -[1] 2022/10/11 14:57:50.406009 [INF] Version: 2.9.3 -[1] 2022/10/11 14:57:50.406011 [INF] Git: [25e82d7] -[1] 2022/10/11 14:57:50.406013 [INF] Name: NDQOBTB34ECZWAKAJAREPEXQPXGKUEJEZINCHV2CIHGGJQCSCVPQPU5W -[1] 2022/10/11 14:57:50.406015 [INF] ID: NDQOBTB34ECZWAKAJAREPEXQPXGKUEJEZINCHV2CIHGGJQCSCVPQPU5W -[1] 2022/10/11 14:57:50.406423 [INF] Listening for client connections on 0.0.0.0:4222 -[1] 2022/10/11 14:57:50.406679 [INF] Server is ready -[1] 2022/10/11 14:57:50.434935 [INF] STREAM: Recovering the state... -[1] 2022/10/11 14:57:50.434945 [INF] STREAM: No recovered state -[1] 2022/10/11 14:57:50.435271 [INF] STREAM: Message store is MEMORY -[1] 2022/10/11 14:57:50.435303 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 14:57:50.435306 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 14:57:50.435308 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 14:57:50.435310 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 14:57:50.435311 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 14:57:50.435313 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 14:57:50.435315 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 14:57:50.435316 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 14:57:50.435318 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 14:57:50.435320 [INF] STREAM: Streaming Server is ready -``` - -To use a file based store instead, you would run: - -```bash -$ docker run -d -p 4222:4222 -p 8222:8222 nats-streaming -store file -dir datastore - -[1] 2022/10/11 14:59:45.818823 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 14:59:45.818874 [INF] STREAM: ServerID: mNhpLEpCO6WFqrnD9CYEZa -[1] 2022/10/11 14:59:45.818876 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 14:59:45.818877 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 14:59:45.820192 [INF] Starting nats-server -[1] 2022/10/11 14:59:45.820196 [INF] Version: 2.9.3 -[1] 2022/10/11 14:59:45.820198 [INF] Git: [25e82d7] -[1] 2022/10/11 14:59:45.820200 [INF] Name: NCDMFFEVOSPVVGQZVEQ3O5434LHF2KAPOR5LKAI7YEIAFIABTHQLZRLA -[1] 2022/10/11 14:59:45.820202 [INF] ID: NCDMFFEVOSPVVGQZVEQ3O5434LHF2KAPOR5LKAI7YEIAFIABTHQLZRLA -[1] 2022/10/11 14:59:45.820688 [INF] Listening for client connections on 0.0.0.0:4222 -[1] 2022/10/11 14:59:45.820849 [INF] Server is ready -[1] 2022/10/11 14:59:45.848443 [INF] STREAM: Recovering the state... -[1] 2022/10/11 14:59:45.848737 [INF] STREAM: No recovered state -[1] 2022/10/11 14:59:45.849050 [INF] STREAM: Message store is FILE -[1] 2022/10/11 14:59:45.849054 [INF] STREAM: Store location: datastore -[1] 2022/10/11 14:59:45.849070 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 14:59:45.849072 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 14:59:45.849073 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 14:59:45.849075 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 14:59:45.849076 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 14:59:45.849077 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 14:59:45.849078 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 14:59:45.849079 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 14:59:45.849080 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 14:59:45.849082 [INF] STREAM: Streaming Server is ready -``` - -You can also connect to a remote NATS Server running in a docker image. First, run NATS Server: - -```bash -$ docker run -d --name=nats-main -p 4222:4222 -p 6222:6222 -p 8222:8222 nats -``` - -Now, start the Streaming server and link it to the above docker image: - -```bash -$ docker run -d --link nats-main nats-streaming -store file -dir datastore -ns nats://nats-main:4222 - -[1] 2022/10/11 15:00:56.780184 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 15:00:56.780235 [INF] STREAM: ServerID: jVQkB4KiIN4IVIuVoSumE0 -[1] 2022/10/11 15:00:56.780237 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 15:00:56.780241 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 15:00:56.809173 [INF] STREAM: Recovering the state... -[1] 2022/10/11 15:00:56.810336 [INF] STREAM: Recovered 0 channel(s) -[1] 2022/10/11 15:00:56.810612 [INF] STREAM: Message store is FILE -[1] 2022/10/11 15:00:56.810617 [INF] STREAM: Store location: datastore -[1] 2022/10/11 15:00:56.810633 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 15:00:56.810635 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 15:00:56.810636 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 15:00:56.810637 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 15:00:56.810639 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 15:00:56.810640 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 15:00:56.810641 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 15:00:56.810642 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 15:00:56.810643 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 15:00:56.810644 [INF] STREAM: Streaming Server is ready -``` - -Notice that the output shows that the NATS Server was not started, as opposed to the first output. - -# Commandline Options - -```bash -Streaming Server Options: - -cid, --cluster_id Cluster ID (default: test-cluster) - -st, --store Store type: MEMORY|FILE|SQL (default: MEMORY) - --dir For FILE store type, this is the root directory - -mc, --max_channels Max number of channels (0 for unlimited) - -msu, --max_subs Max number of subscriptions per channel (0 for unlimited) - -mm, --max_msgs Max number of messages per channel (0 for unlimited) - -mb, --max_bytes Max messages total size per channel (0 for unlimited) - -ma, --max_age Max duration a message can be stored ("0s" for unlimited) - -mi, --max_inactivity Max inactivity (no new message, no subscription) after which a channel can be garbage collected (0 for unlimited) - -ns, --nats_server Connect to this external NATS Server URL (embedded otherwise) - -sc, --stan_config Streaming server configuration file - -hbi, --hb_interval Interval at which server sends heartbeat to a client - -hbt, --hb_timeout How long server waits for a heartbeat response - -hbf, --hb_fail_count Number of failed heartbeats before server closes the client connection - --ft_group Name of the FT Group. A group can be 2 or more servers with a single active server and all sharing the same datastore - -sl, --signal [=] Send signal to nats-streaming-server process (stop, quit, reopen, reload - only for embedded NATS Server) - --encrypt Specify if server should use encryption at rest - --encryption_cipher Cipher to use for encryption. Currently support AES and CHAHA (ChaChaPoly). Defaults to AES - --encryption_key Encryption Key. It is recommended to specify it through the NATS_STREAMING_ENCRYPTION_KEY environment variable instead - --replace_durable Replace the existing durable subscription instead of reporting a duplicate durable error - -Streaming Server Clustering Options: - --clustered Run the server in a clustered configuration (default: false) - --cluster_node_id ID of the node within the cluster if there is no stored ID (default: random UUID) - --cluster_bootstrap Bootstrap the cluster if there is no existing state by electing self as leader (default: false) - --cluster_peers Comma separated list of cluster peer node IDs to bootstrap cluster state - --cluster_log_path Directory to store log replication data - --cluster_log_cache_size Number of log entries to cache in memory to reduce disk IO (default: 512) - --cluster_log_snapshots Number of log snapshots to retain (default: 2) - --cluster_trailing_logs Number of log entries to leave after a snapshot and compaction - --cluster_sync Do a file sync after every write to the replication log and message store - --cluster_raft_logging Enable logging from the Raft library (disabled by default) - --cluster_allow_add_remove_node Enable the ability to send NATS requests to the leader to add/remove cluster nodes - -Streaming Server File Store Options: - --file_compact_enabled Enable file compaction - --file_compact_frag File fragmentation threshold for compaction - --file_compact_interval Minimum interval (in seconds) between file compactions - --file_compact_min_size Minimum file size for compaction - --file_buffer_size File buffer size (in bytes) - --file_crc Enable file CRC-32 checksum - --file_crc_poly Polynomial used to make the table used for CRC-32 checksum - --file_sync Enable File.Sync on Flush - --file_slice_max_msgs Maximum number of messages per file slice (subject to channel limits) - --file_slice_max_bytes Maximum file slice size - including index file (subject to channel limits) - --file_slice_max_age Maximum file slice duration starting when the first message is stored (subject to channel limits) - --file_slice_archive_script Path to script to use if you want to archive a file slice being removed - --file_fds_limit Store will try to use no more file descriptors than this given limit - --file_parallel_recovery On startup, number of channels that can be recovered in parallel - --file_truncate_bad_eof Truncate files for which there is an unexpected EOF on recovery, dataloss may occur - --file_read_buffer_size Size of messages read ahead buffer (0 to disable) - --file_auto_sync Interval at which the store should be automatically flushed and sync'ed on disk (<= 0 to disable) - -Streaming Server SQL Store Options: - --sql_driver Name of the SQL Driver ("mysql" or "postgres") - --sql_source Datasource used when opening an SQL connection to the database - --sql_no_caching Enable/Disable caching for improved performance - --sql_max_open_conns Maximum number of opened connections to the database - --sql_bulk_insert_limit Maximum number of messages stored with a single SQL "INSERT" statement - -Streaming Server TLS Options: - -secure Use a TLS connection to the NATS server without - verification; weaker than specifying certificates. - -tls_client_key Client key for the streaming server - -tls_client_cert Client certificate for the streaming server - -tls_client_cacert Client certificate CA for the streaming server - -Streaming Server Logging Options: - -SD, --stan_debug= Enable STAN debugging output - -SV, --stan_trace= Trace the raw STAN protocol - -SDV Debug and trace STAN - --syslog_name On Windows, when running several servers as a service, use this name for the event source - (See additional NATS logging options below) - -Embedded NATS Server Options: - -a, --addr Bind to host address (default: 0.0.0.0) - -p, --port Use port for clients (default: 4222) - -P, --pid File to store PID - -m, --http_port Use port for http monitoring - -ms,--https_port Use port for https monitoring - -c, --config Configuration file - -Logging Options: - -l, --log File to redirect log output - -T, --logtime= Timestamp log entries (default: true) - -s, --syslog Enable syslog as log method - -r, --remote_syslog Syslog server addr (udp://localhost:514) - -D, --debug= Enable debugging output - -V, --trace= Trace the raw protocol - -DV Debug and trace - -Authorization Options: - --user User required for connections - --pass Password required for connections - --auth Authorization token required for connections - -TLS Options: - --tls= Enable TLS, do not verify clients (default: false) - --tlscert Server certificate file - --tlskey Private key for server certificate - --tlsverify= Enable TLS, verify client certificates - --tlscacert Client certificate CA for verification - -NATS Clustering Options: - --routes Routes to solicit and connect - --cluster Cluster URL for solicited routes - -Common Options: - -h, --help Show this message - -v, --version Show version - --help_tls TLS help. -``` - -# Configuration - -Details on how to configure further the NATS Streaming server can be found [here](https://docs.nats.io/nats-streaming-server/configuring) - -# License - -View [license information](https://github.com/nats-io/nats-streaming-server/blob/master/LICENSE) for the software contained in this image. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `nats-streaming/` directory](https://github.com/docker-library/repo-info/tree/master/repos/nats-streaming). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/nats-streaming/content.md b/nats-streaming/content.md deleted file mode 100644 index 0545e41334ee..000000000000 --- a/nats-streaming/content.md +++ /dev/null @@ -1,279 +0,0 @@ -# [NATS Streaming](https://nats.io): A high-performance cloud native messaging streaming system. - -%%LOGO%% - -`nats-streaming` is a high performance streaming server for the NATS Messaging System. - -# Backward compatibility note - -Note that the Streaming server itself is backward compatible with previous releases, however, v0.15.0+ now embeds a NATS Server 2.0, which means that if you run with the embedded NATS server and want to route it to your existing v0.14.3- servers, it will fail due to NATS Server routing protocol change. You can however use v0.15.0+ and connect it to existing NATS cluster and therefore have a mix of v0.15.0 and v0.14.3- streaming servers. - -# Windows Docker images - -Due to restrictions on how the Windows Docker Image is built, running the image without argument will run the NATS Streaming server with memory based store on port 4222 and the monitoring port 8222. If you need to specify any additional argument, or modify these options, you need to specify the executable name as this: - -```bash -$ docker run -p 4223:4223 -p 8223:8223 %%IMAGE%% nats-streaming-server -p 4223 -m 8223 -``` - -If you need to specify the entrypoint: - -```bash -$ docker run --entrypoint c:/nats-streaming-server/nats-streaming-server -p 4222:4222 -p 8222:8222 %%IMAGE%% -``` - -# Non Windows Docker images - -If you need to provide arguments to the NATS Streaming server, just pass them to the command line. For instance, to change the listen and monitoring port to 4223 and 8223 respectively: - -```bash -$ docker run -p 4223:4223 -p 8223:8223 %%IMAGE%% -p 4223 -m 8223 -``` - -If you need to specify the entrypoint: - -```bash -$ docker run --entrypoint /nats-streaming-server -p 4222:4222 -p 8222:8222 %%IMAGE%% -``` - -# Example usage - -```bash -# Run a NATS Streaming server -# Each server exposes multiple ports -# 4222 is for clients. -# 8222 is an HTTP management port for information reporting. -# -# To actually publish the ports when running the container, use the Docker port mapping -# flag "docker run -p :" to publish and map one or more ports, -# or the -P flag to publish all exposed ports and map them to high-order ports. -# -# This should not be confused with the NATS Streaming Server own -p parameter. -# For instance, to run the NATS Streaming Server and have it listen on port 4444, -# you would have to run like this: -# -# docker run -p 4444:4444 %%IMAGE%% -p 4444 -# -# Or, if you want to publish the port 4444 as a different port, for example 5555: -# -# docker run -p 5555:4444 %%IMAGE%% -p 4444 -# -# Check "docker run" for more information. - -$ docker run -d -p 4222:4222 -p 8222:8222 %%IMAGE%% -``` - -Output that you would get if you had started with `-ti` instead of `d` (for daemon): - -```bash -[1] 2022/10/11 14:57:50.404688 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 14:57:50.404739 [INF] STREAM: ServerID: fbZJjwGYLBpNM5I8z23NSN -[1] 2022/10/11 14:57:50.404741 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 14:57:50.404743 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 14:57:50.406004 [INF] Starting nats-server -[1] 2022/10/11 14:57:50.406009 [INF] Version: 2.9.3 -[1] 2022/10/11 14:57:50.406011 [INF] Git: [25e82d7] -[1] 2022/10/11 14:57:50.406013 [INF] Name: NDQOBTB34ECZWAKAJAREPEXQPXGKUEJEZINCHV2CIHGGJQCSCVPQPU5W -[1] 2022/10/11 14:57:50.406015 [INF] ID: NDQOBTB34ECZWAKAJAREPEXQPXGKUEJEZINCHV2CIHGGJQCSCVPQPU5W -[1] 2022/10/11 14:57:50.406423 [INF] Listening for client connections on 0.0.0.0:4222 -[1] 2022/10/11 14:57:50.406679 [INF] Server is ready -[1] 2022/10/11 14:57:50.434935 [INF] STREAM: Recovering the state... -[1] 2022/10/11 14:57:50.434945 [INF] STREAM: No recovered state -[1] 2022/10/11 14:57:50.435271 [INF] STREAM: Message store is MEMORY -[1] 2022/10/11 14:57:50.435303 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 14:57:50.435306 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 14:57:50.435308 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 14:57:50.435310 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 14:57:50.435311 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 14:57:50.435313 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 14:57:50.435315 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 14:57:50.435316 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 14:57:50.435318 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 14:57:50.435320 [INF] STREAM: Streaming Server is ready -``` - -To use a file based store instead, you would run: - -```bash -$ docker run -d -p 4222:4222 -p 8222:8222 %%IMAGE%% -store file -dir datastore - -[1] 2022/10/11 14:59:45.818823 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 14:59:45.818874 [INF] STREAM: ServerID: mNhpLEpCO6WFqrnD9CYEZa -[1] 2022/10/11 14:59:45.818876 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 14:59:45.818877 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 14:59:45.820192 [INF] Starting nats-server -[1] 2022/10/11 14:59:45.820196 [INF] Version: 2.9.3 -[1] 2022/10/11 14:59:45.820198 [INF] Git: [25e82d7] -[1] 2022/10/11 14:59:45.820200 [INF] Name: NCDMFFEVOSPVVGQZVEQ3O5434LHF2KAPOR5LKAI7YEIAFIABTHQLZRLA -[1] 2022/10/11 14:59:45.820202 [INF] ID: NCDMFFEVOSPVVGQZVEQ3O5434LHF2KAPOR5LKAI7YEIAFIABTHQLZRLA -[1] 2022/10/11 14:59:45.820688 [INF] Listening for client connections on 0.0.0.0:4222 -[1] 2022/10/11 14:59:45.820849 [INF] Server is ready -[1] 2022/10/11 14:59:45.848443 [INF] STREAM: Recovering the state... -[1] 2022/10/11 14:59:45.848737 [INF] STREAM: No recovered state -[1] 2022/10/11 14:59:45.849050 [INF] STREAM: Message store is FILE -[1] 2022/10/11 14:59:45.849054 [INF] STREAM: Store location: datastore -[1] 2022/10/11 14:59:45.849070 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 14:59:45.849072 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 14:59:45.849073 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 14:59:45.849075 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 14:59:45.849076 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 14:59:45.849077 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 14:59:45.849078 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 14:59:45.849079 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 14:59:45.849080 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 14:59:45.849082 [INF] STREAM: Streaming Server is ready -``` - -You can also connect to a remote NATS Server running in a docker image. First, run NATS Server: - -```bash -$ docker run -d --name=nats-main -p 4222:4222 -p 6222:6222 -p 8222:8222 nats -``` - -Now, start the Streaming server and link it to the above docker image: - -```bash -$ docker run -d --link nats-main %%IMAGE%% -store file -dir datastore -ns nats://nats-main:4222 - -[1] 2022/10/11 15:00:56.780184 [INF] STREAM: Starting nats-streaming-server[test-cluster] version 0.25.2 -[1] 2022/10/11 15:00:56.780235 [INF] STREAM: ServerID: jVQkB4KiIN4IVIuVoSumE0 -[1] 2022/10/11 15:00:56.780237 [INF] STREAM: Go version: go1.19.2 -[1] 2022/10/11 15:00:56.780241 [INF] STREAM: Git commit: [9e599667] -[1] 2022/10/11 15:00:56.809173 [INF] STREAM: Recovering the state... -[1] 2022/10/11 15:00:56.810336 [INF] STREAM: Recovered 0 channel(s) -[1] 2022/10/11 15:00:56.810612 [INF] STREAM: Message store is FILE -[1] 2022/10/11 15:00:56.810617 [INF] STREAM: Store location: datastore -[1] 2022/10/11 15:00:56.810633 [INF] STREAM: ---------- Store Limits ---------- -[1] 2022/10/11 15:00:56.810635 [INF] STREAM: Channels: 100 * -[1] 2022/10/11 15:00:56.810636 [INF] STREAM: --------- Channels Limits -------- -[1] 2022/10/11 15:00:56.810637 [INF] STREAM: Subscriptions: 1000 * -[1] 2022/10/11 15:00:56.810639 [INF] STREAM: Messages : 1000000 * -[1] 2022/10/11 15:00:56.810640 [INF] STREAM: Bytes : 976.56 MB * -[1] 2022/10/11 15:00:56.810641 [INF] STREAM: Age : unlimited * -[1] 2022/10/11 15:00:56.810642 [INF] STREAM: Inactivity : unlimited * -[1] 2022/10/11 15:00:56.810643 [INF] STREAM: ---------------------------------- -[1] 2022/10/11 15:00:56.810644 [INF] STREAM: Streaming Server is ready -``` - -Notice that the output shows that the NATS Server was not started, as opposed to the first output. - -# Commandline Options - -```bash -Streaming Server Options: - -cid, --cluster_id Cluster ID (default: test-cluster) - -st, --store Store type: MEMORY|FILE|SQL (default: MEMORY) - --dir For FILE store type, this is the root directory - -mc, --max_channels Max number of channels (0 for unlimited) - -msu, --max_subs Max number of subscriptions per channel (0 for unlimited) - -mm, --max_msgs Max number of messages per channel (0 for unlimited) - -mb, --max_bytes Max messages total size per channel (0 for unlimited) - -ma, --max_age Max duration a message can be stored ("0s" for unlimited) - -mi, --max_inactivity Max inactivity (no new message, no subscription) after which a channel can be garbage collected (0 for unlimited) - -ns, --nats_server Connect to this external NATS Server URL (embedded otherwise) - -sc, --stan_config Streaming server configuration file - -hbi, --hb_interval Interval at which server sends heartbeat to a client - -hbt, --hb_timeout How long server waits for a heartbeat response - -hbf, --hb_fail_count Number of failed heartbeats before server closes the client connection - --ft_group Name of the FT Group. A group can be 2 or more servers with a single active server and all sharing the same datastore - -sl, --signal [=] Send signal to nats-streaming-server process (stop, quit, reopen, reload - only for embedded NATS Server) - --encrypt Specify if server should use encryption at rest - --encryption_cipher Cipher to use for encryption. Currently support AES and CHAHA (ChaChaPoly). Defaults to AES - --encryption_key Encryption Key. It is recommended to specify it through the NATS_STREAMING_ENCRYPTION_KEY environment variable instead - --replace_durable Replace the existing durable subscription instead of reporting a duplicate durable error - -Streaming Server Clustering Options: - --clustered Run the server in a clustered configuration (default: false) - --cluster_node_id ID of the node within the cluster if there is no stored ID (default: random UUID) - --cluster_bootstrap Bootstrap the cluster if there is no existing state by electing self as leader (default: false) - --cluster_peers Comma separated list of cluster peer node IDs to bootstrap cluster state - --cluster_log_path Directory to store log replication data - --cluster_log_cache_size Number of log entries to cache in memory to reduce disk IO (default: 512) - --cluster_log_snapshots Number of log snapshots to retain (default: 2) - --cluster_trailing_logs Number of log entries to leave after a snapshot and compaction - --cluster_sync Do a file sync after every write to the replication log and message store - --cluster_raft_logging Enable logging from the Raft library (disabled by default) - --cluster_allow_add_remove_node Enable the ability to send NATS requests to the leader to add/remove cluster nodes - -Streaming Server File Store Options: - --file_compact_enabled Enable file compaction - --file_compact_frag File fragmentation threshold for compaction - --file_compact_interval Minimum interval (in seconds) between file compactions - --file_compact_min_size Minimum file size for compaction - --file_buffer_size File buffer size (in bytes) - --file_crc Enable file CRC-32 checksum - --file_crc_poly Polynomial used to make the table used for CRC-32 checksum - --file_sync Enable File.Sync on Flush - --file_slice_max_msgs Maximum number of messages per file slice (subject to channel limits) - --file_slice_max_bytes Maximum file slice size - including index file (subject to channel limits) - --file_slice_max_age Maximum file slice duration starting when the first message is stored (subject to channel limits) - --file_slice_archive_script Path to script to use if you want to archive a file slice being removed - --file_fds_limit Store will try to use no more file descriptors than this given limit - --file_parallel_recovery On startup, number of channels that can be recovered in parallel - --file_truncate_bad_eof Truncate files for which there is an unexpected EOF on recovery, dataloss may occur - --file_read_buffer_size Size of messages read ahead buffer (0 to disable) - --file_auto_sync Interval at which the store should be automatically flushed and sync'ed on disk (<= 0 to disable) - -Streaming Server SQL Store Options: - --sql_driver Name of the SQL Driver ("mysql" or "postgres") - --sql_source Datasource used when opening an SQL connection to the database - --sql_no_caching Enable/Disable caching for improved performance - --sql_max_open_conns Maximum number of opened connections to the database - --sql_bulk_insert_limit Maximum number of messages stored with a single SQL "INSERT" statement - -Streaming Server TLS Options: - -secure Use a TLS connection to the NATS server without - verification; weaker than specifying certificates. - -tls_client_key Client key for the streaming server - -tls_client_cert Client certificate for the streaming server - -tls_client_cacert Client certificate CA for the streaming server - -Streaming Server Logging Options: - -SD, --stan_debug= Enable STAN debugging output - -SV, --stan_trace= Trace the raw STAN protocol - -SDV Debug and trace STAN - --syslog_name On Windows, when running several servers as a service, use this name for the event source - (See additional NATS logging options below) - -Embedded NATS Server Options: - -a, --addr Bind to host address (default: 0.0.0.0) - -p, --port Use port for clients (default: 4222) - -P, --pid File to store PID - -m, --http_port Use port for http monitoring - -ms,--https_port Use port for https monitoring - -c, --config Configuration file - -Logging Options: - -l, --log File to redirect log output - -T, --logtime= Timestamp log entries (default: true) - -s, --syslog Enable syslog as log method - -r, --remote_syslog Syslog server addr (udp://localhost:514) - -D, --debug= Enable debugging output - -V, --trace= Trace the raw protocol - -DV Debug and trace - -Authorization Options: - --user User required for connections - --pass Password required for connections - --auth Authorization token required for connections - -TLS Options: - --tls= Enable TLS, do not verify clients (default: false) - --tlscert Server certificate file - --tlskey Private key for server certificate - --tlsverify= Enable TLS, verify client certificates - --tlscacert Client certificate CA for verification - -NATS Clustering Options: - --routes Routes to solicit and connect - --cluster Cluster URL for solicited routes - -Common Options: - -h, --help Show this message - -v, --version Show version - --help_tls TLS help. -``` - -# Configuration - -Details on how to configure further the NATS Streaming server can be found [here](https://docs.nats.io/nats-streaming-server/configuring) diff --git a/nats-streaming/deprecated.md b/nats-streaming/deprecated.md deleted file mode 100644 index db266bd8ecad..000000000000 --- a/nats-streaming/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -The NATS Streaming Server is being deprecated. Critical bug fixes and security fixes will be applied until June of 2023. NATS enabled applications requiring persistence should use [JetStream](https://docs.nats.io/jetstream/jetstream). diff --git a/nats-streaming/github-repo b/nats-streaming/github-repo deleted file mode 100644 index a585949191c7..000000000000 --- a/nats-streaming/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/nats-io/nats-streaming-docker diff --git a/nats-streaming/license.md b/nats-streaming/license.md deleted file mode 100644 index 316d32e6bf65..000000000000 --- a/nats-streaming/license.md +++ /dev/null @@ -1 +0,0 @@ -View [license information](https://github.com/nats-io/nats-streaming-server/blob/master/LICENSE) for the software contained in this image. diff --git a/nats-streaming/logo.png b/nats-streaming/logo.png deleted file mode 100644 index 384aab597c7d84338457ce91c4bf547deb8cdb5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9499 zcmY*<1zc3YyEZHfEKBXe(zP^;bayPZNG~DXC`dOb(jC$uh;*aU(o)jhEg>xeN{isd z|GnS+zVG~g=S;oxJnzhzcV^DKCq`RSg%C^)#=yWJR7EMGAHpyHZV=AHv#a#A<3oVy ziB>^kd>p4ecu3&6p^Q8+FnE~%-I#tQvOW(2Mh<$0UWOX#5;m^RJXW@@)^!hAX&w*ujN)gn0Ov zWWaDZT*|}tsRUY4`G2ZEq@+;lpsnf8t$9~fwYheyJ(*h@zni!_d2wit5$FyS12_P~&&@71^hmX`Fi5)Q zkDC7EQUSsR2ePT!ji62H@5;S-;)ji@om_;uWmTO*-JiXd3l#QNqvks~(7&wr&(l(a^?Ql- zPE}K79z2a4+gm?Z+pOaibo%TYu_btyeY{&w(`is=^P&=?vOLy`Yoe{m^m0bHf~Dfu zLS5nvQqI`pQ+fI5F_am1R5mIZbybXj-Q4LPK%%iJIZG3?k4M@YA&k^Gol{$ zrOwx5uLt~!HWS}~!dN2t=5gXB;~;6UPE&a~J)xv*YPfsNo_G8t92mm;hFTzHh*43( z4%7Pa6{hyLF!z8co0tL$B_!DU1=;r?`}Unk25Jk$#LjRMos75E@FY+_^;=~jD}efo zb`4VB10it6M+F2L>CWQ3KO%bem9TR}4RpwcN76_DkxSoUROGkKSB$%m)tmI_B~GYL z+w-s+B+6?Ypa!p)ljTKY`+Mue7E7ti0QKaPLi5?|)N;6AdWOPn9r-Od|CkMd2qJv; zJ%^xY!8eeux*X&piM<-qKA<1L&=CJsM>N)g3yNZN!fRkl2<84C2AW zWCwX7(=fP*(QP0%0Mh9l&m)e3qgnk|!da7)!_fvp{RaX_F_R~=$E{IqJh+4Mc6hW5QXvL^K1 zfJr*YkR@F+eEJjaNWi zIi~St4dslY4fh5@Utr>I>^NgakJA$}az*P&QgG34CuynPeBFB~su+2s5}PsocO`^! zbj1s#ycsuiy&Bf(Pc$@0blCIivw91}Iax>BD!~yfv^k`6HQEO5|J0y>PX3wyE|l6m z4dB!HGmQmm?Lp$=|CIGl%dPaaTn&^Y-k1@;fGgw^OSn?;NAZJ3-q5*F?32aI8pod* zq*Kiq@ODVX#^^JmE+3z3f_zv95Vh)w(zCGyLvezl$U&Nkn``O1eG?Th>l5-|# zgg}lIrZo_zKU%U&sf=Q$Ge$oh5&C^13TY&61mi93*K;mvR-sb1?zNMZqWD{ZH$Cr! z_yIH&@gYA^vwNh}@x|^DF-~-U(A^rA&YGEpoY5bQ=kp4wTN6g`%(Sdn!tC@vlpP(* zYED=A;afe;GPdQPs~bPgws>+hxzJqq*20*?~Kx#epb zg8?H)Y%u_z;>WruYR|JSb=?6R>FM#$EwxUJ0nB#TK&X<`0GX=%TJ!olaUvdjqOQ_6 z;36o0Cuco?Z_YF&2SU!tiq^hz4sZk=cV}!3UqYOyz2acKCam~6&8hexG5OUL$ZxJx z{7|vj9#z~49mV4pDd=L#HCXscZOQd=GoO^CWm2J3a#W;GA&>8wfomSd<>|11c+U?idKN1xlT>6JgT)JQr zc0guTB)XRrVXr;~BiUTvO9(S56FMl)Ut&*Ld3lkMP1+fLX1=27WvdF(YEuuKN{yiX zEk{%46NY+CMrX4@F(BH@=7cbYDj65K0h*Q0SBG#PtiMP1roEc)@i4sx&2%gF(zgKb zdCKd&gAX-Ss#D>=qWJo!RdrY~(!#T40pjwDDG+nttUs7x!Mz z*xBT{eCWnEq&@Tlp)zh91*E}JIYCI8_ity2c$pEc$%JG323n=`*z&)Uv0NFYv~i4t zw5#OibMVU=dP@C^Ho1jHC4vRf&PvHWF|AUA+Jx*Ohcz9Cg%SCHkzWF%0h5M=q}kr; zg6(`k1nqGSE=p=k&}cqagkj-{%c{3LsEGX82>2cBns`hux#Y+Zf1tuoOuHxw3up0zgD764}W2k2&_ASqc6mPgT|@P-7-^$VlMY6aDQO z+o%S}8Y;(3VriQLZY&?(1FKI+{rBdHt+m7hTRB@pB7XLb2#M3 ztFJW7H25F|lzKYSq$^4rOc->c z5p;w!vMj>=z;jJvQz{8XZ}(cFl-h}5xk3$&=GZ3r)`S0@lw>U)QR_R?e@h_~p3$2HML-kM7lmpvaRI3SL{=by=Uc5%s( zBoFil7!40k#>N--_v8RA)1(sT837sLZj>r>enr$w@8xKTkvK zvZw?JnYx~6GGJZhmmHnh!xp0%e&TZ0;A4-pFAt1;(jU+KoC@Q{)4{J-r?QO4Nfl6k zTXoJPQO`tT+E_#pcz+a_eYnqej^#qNN(I#3}Bcn&;P?#%E~B3Hg6NaA0!#b)igB6r!cxorJ-iVlrMghQ0$j4iTC9F8h%?F=|Mze z!Tnl5X-234*x~OiRqE?7m5I+p*(LDyl>KkTZlw0iJR{csETm0ck8O3LoxX?_VC0Zp z{3e3DQfq^{n-vu+O4NTIBEtPuJc0eu^m_>h9E8&g^<(Hfu6|-Y5AotZHl28O3lhZ}f)dQtAqO zSM@{-IgblH@pqdjF@zMS<2@rVLufu?3{k2GmLT5JYj|}yuvF?`k7#pl^3AAYqUS=c z3~1TYVEG0GAWWs7bG~Pg!eB0eSZ`CL;($3l zT?kyfHuzM+WfHRAK*!Wqz6*6*S$fht?Jj8P{MWprWFyTosv`*09ZP8UMXflW><2$8 zwgMBn`!E<=&7=`(Mh~`DMj5-rqU5MR`segLue{eUQ^SQ$Tve#;TQ|CaV+Ldm8reFT z(N6#0c{`DxaD|9!exsLn0pteh~=5?w@dih>d zx(I=A_|I_Ny4Aw4#?_=X`j-uyB9GtL_5UJ8_KX8Ut5dABT4BkHPfeGuE(>k9`0k$e zd{^l$s*^7!0*B$JPV@0na|SoO%iEyxC%}u8p%ITRuz}#;k3J1%<-O>xCd2&f_X`yU zv!zA3@wa-RH`2HoDHps<0m+t>JVEYcIrLdTfzRy5lM7^7&-+HhZq!1ve%XEJH?brH zWP`9!(KzXqm?D{lc=jr6TMlJ@oCtjb?44nsM=WYGvc2n8B^=RjatnY3NlL2evo-IXnlRWhAtp_S z<|gwWA~5FVVrfMuYohaM*#WIk+^PZve$Xf_vD;Uj>;5$WD~t8yCm*`Ox3?eGb1{$62)+g#DR(py(KQ<@&imtq`Qn5C4OVO^=8O%{CD^erw6JGSctxQsDqSRuO2tlTnzS2s zY9)RpvTkyhZM82NjMdGOOM0EDhjI9R>h|bSCImsjpWC&o1mMmB!C~>g1rX7-2L%04 z7!@%t1DpA$@{%VapU0lYlZfTunEqr3{yoVu3$>+S{V4_b?n-_SheBRm3yZA^f|>&EkoJx-`;MU5^=ID6cd6p^*)oAL^jmdQ z^uJfi+~Pf9Uz@gC*2CTil~~YLhPucg>B^k)>rO@{pgu{-pxJD+KUiZKUr;|H?fEF7ef2 zn8kC1p?RwgoK5bFSm2Sv=@PMQtWrL1l;2H_*j}Gb@TlYx7*&lw3~((S$pSIl1$fS zC@f8e3OmqpHs-YDAgGJn8u%sciV-ek!_SeNcC_(09TkZOn|@lU$+fM1@;w@2z?XKS z{2j7}id7^UGvr2)a{Jg@21h$ z3$1-_o?Iv`fGH#SP1X{*ojUo>PihYB7ZxH&dB>uryd}XD?wdfDT*zC{#j?8JjQ528 z*?U963FnoVFbM@5S5(LVwrG54P;THOb%!?07b%I~2=vsH&&=2Dx?NYFcAP#Y$5ow& zGPWbvP*EuU;9`4cP!|FfzqIa0nHzYl{|>gKTl&73X5hWFEcUW!Q|l zSUHzd1n<5aK6C^(FX+Mn6dJc|qqKLVVxep7VX&L35uwKiG~cB%jEZ1;%t12RwWLapYs{AF#4ABied`EgP$k_XWq@)6)5fl49mq4{BhAF^w_ zNImJ3g>QJFd&9uanE zoH@S}*)NXsWk5m=k-MWG3VdG!0r1`SCfS6KzY$ zM}CTK6nn%%fTnydeX)PGk@8KXD_EUdpI|Jz7xkJ%Lpm0+m~V<5n}PN5jJyz})cT{5 zH>PTNAR*KlccJUVq6Hhry-cR4bKa9%QS7KO7Va_br zy}zC-{>b-gC2S76J_2oORnXbKr*4NduQgY$(Mu5dc(3CSyL3`LX_?~SYmDp?AXWrt z+cKeZ_tqtw7vQ;3!TSvvVbo@aW{_!rKhMj7XVXBE7qmsfZ2hush)Oqpw|A{33n5@-3s? z19P}CBio!g1k9w#u)9fGF{)>Q=25ri_e@6z{>)~ESw4sSPj(mWoX+@9mkv5ZlQ(sB z=p_P1??&tyIVUx>Q|!hCS`u**YvF*|>aq~$A}<0TlgpkH^Lv8!SN2inh85Kl%i$}u zZSgMI;mRShAvi)elf0QDE=nfRq5CvMPRojK63^d*^IjDj4Y)Vf*g#M=B5haec=_}uWTWNxb@n7((QWbag2^2uDK4#-O`iw_V z_*Bo~m$$suRuAa=Jy&K&l@zkg$FVCj6+31l^EU@_qy2M8vhtn&DtnSsf-xZOVdfkU z9XpY#RC|^bdRJMemG7oPfJ@uJ93H0JPiN%MbpwT??SJc>Q8(aBL=LRCV&vZ6hPCcF ztrY($xcf7or!?{!5~$qp+LjqT_j zZiTpZDM)_Ct!1GDtF{H59qY<_(ZM2@Ss%{#pAU4y``9g?U0qp?y*`l(`h(JMgayuq z(=pNt2?UNBbPTe{p}+Snm7Q&V_`0(B`Ns%4qwd}XL8~`QrkhX4$jL^jwMYdJ;#RxV z;_mje3_4Qv+t{h@?Y_TyB|UlR$?d2Dl1*JQimAY|z(KqyK%DBVido{nUk$`I9{zk_ zf~Jh91T?rM71J>u=8MfKlM@zo$*f+y1RD<@hur#_VxG|Xo3Ue4eXsqL#!cS`o^2#b zdC!a#E2ocLsH{fXa@nzO;wgvKcnsW}_J=rAsTmbVFz_gVg9Zg)iGNg{6JGRPXBn!J z=k!OK3BkXREeiac=0>^~S0fj-tpM7Kko*y#%^-LbTcqBhl zN5nZ?IMaxqUtRg_GySfJSZPe2nb?yxx-^6&QY^YKAo<|EwL~H}41Ac};wkdB;F2$w zz}S@{0RdYzh}49Te5t58yfAVrXeZaq_A9kQnq$hTli;wfa%=w;O8+s=+OPF|Su zGn$%4{?Z|op-*i3(W@)9{=%0b7e+Nn%q29M$j#E^UPvCgwOoG^eLRDo>Ohk$0S;in^ zv9vkL;gFZwc+lN-?>B|Jf0hGuomD`?L^F>!k#} zUk8UlYaeV$QD+Z+cC-Kk_=J~NjQ$#R10F#(!fOX97v-nhTqp%UsHFb+Okm+=cjlc32l_UqQ3et$u_tPCZ{I$ZZZz3DY&Ld4ficlDX zunPfcFq^I>265@%hWxEnTi-9`Bl+sz020hyRF0sUfYmquA^}Xiz>DaCqWT+a${B)e zp;*4d@L*vOeHv~o?Ev>DJTYfOJL`;BcNAtN@M+9ht9yZDfsUEtU^q_ipoLGGWj1D6 za#bvw@F!sY%g*KJWNc9o6ZYe&tH)2sepbhXC_JgmhEd3G>ed^8N>|IXDHNSC7^*?x z**r<#umlWLX3^U)pYy2d@^h+csH2W9D--eOvvV|(FeNP-p*5_!qv`a~xK2~?To0l} zLW(U+pZOC-?_QlnKd;y;H=&cUnJi?`&9<8MDK_Yth0m>PiQ9;sM|&P8WsjI^36k(} zP$!7O^b>YJeIwnrExwN~w~5z+c6SO~v=IjoCOu@5>Fv}!)EHeQRhUEGGl-wUNKK~Y z9~3$(;6A~JqwgO`6(h@#Uypy8n8kK%*uhfku;ZPVcNZb~8rY+;V67HXwtw)d(5g7! zh4jLn%>NB3v$)_Ci5kM$X_4vt^7XsD2;vS=!_hr@ zWc_f@KcAlZAEdB@$1)iXk!>hapYP9T^St<2Hm4K6qRY-o>W0r$sId;you4z!hR9 z=H!pGO#ksbF_Sd30tfp;ygCC_b3Tr2Da*GLY=zAv zCj3RTo}1i{7n)U~NKH_p_p_9(mfMd@OM!Y5N7t4CxTrD49J|L%teoOM5BW*%)nAhq z0v`4%KliUX8(;2`4vb@!_}Yj~Qv)%%v4(!9S&%6_m^X5g6hW?7B!>O+xWK}~_xoxH z^XW+cZm?|wbe?UPjHHDpWhcBmKU=a$$Ny)geyjMvufz|XBJ*Xdv24TTq-(n}zWQyU z9`m}>IS{h>%R^SRw7x3x@5P4mQ~ooS)gB5p^2JKubM$|J;{tS2{Y;`s)%&ZQO)U>t9g=?z!WbeopgtyiyV(6I%7ljD?})-Nk2>{8W7%Q-Nf zkO{m^k|c9Qg?cR^Ry7Cill@k|8qpgX7HsKMdAKN;#d5e^jByw^`F%q%R=>1jAm?My z!HMdx&YW8Dmc1c$M>)i9KaI4I;FOb2D3*bA%>y4~3v0I4 zTnJ+OHoRjG0W}x-V#M?$0MxW0?235#HwX|Fw(=B563)tqq{wO+M}7C1MvarSF}06uIFYX|3YClp6(y4ZHg0Uu$L=RNqdM2IDJIh zwA7x-F3iv#n(#dwCU8!ZY$%72OYDT#V3d*Ps29oo?sHi3#C@@I`*wMfLmO*u(Y>AA zMa_=;lQ*|tMsXR2v`8{ChV9H%lSvqOpP<7Gxiqy3r2 zVUF - -# **DEPRECATION NOTICE** - -Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/vault](https://hub.docker.com/r/hashicorp/vault) instead of [vault](https://hub.docker.com/_/vault). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/vault. - -# Quick reference - -- **Maintained by**: - [HashiCorp](https://github.com/hashicorp/docker-vault) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -**No supported tags** - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/hashicorp/docker-vault/issues](https://github.com/hashicorp/docker-vault/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** - -- **Published image artifact details**: - [repo-info repo's `repos/vault/` directory](https://github.com/docker-library/repo-info/blob/master/repos/vault) ([history](https://github.com/docker-library/repo-info/commits/master/repos/vault)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/vault` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fvault) - [official-images repo's `library/vault` file](https://github.com/docker-library/official-images/blob/master/library/vault) ([history](https://github.com/docker-library/official-images/commits/master/library/vault)) - -- **Source of this description**: - [docs repo's `vault/` directory](https://github.com/docker-library/docs/tree/master/vault) ([history](https://github.com/docker-library/docs/commits/master/vault)) - -# Vault - -Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certificates, and more. Vault provides a unified interface to any secret, while providing tight access control and recording a detailed audit log. For more information, please see: - -- [Vault documentation](https://www.vaultproject.io/) -- [Vault on GitHub](https://github.com/hashicorp/vault) - -![logo](https://raw.githubusercontent.com/docker-library/docs/90d4d43bdfccd5cb21e5fd964d32b0074af0f357/vault/logo.svg?sanitize=true) - -# Using the Container - -We chose Alpine as a lightweight base with a reasonably small surface area for security concerns, but with enough functionality for development and interactive debugging. - -Vault always runs under [dumb-init](https://github.com/Yelp/dumb-init), which handles reaping zombie processes and forwards signals on to all processes running in the container. This binary is built by HashiCorp and signed with our [GPG key](https://www.hashicorp.com/security.html), so you can verify the signed package used to build a given base image. - -Running the Vault container with no arguments will give you a Vault server in [development mode](https://www.vaultproject.io/docs/concepts/dev-server.html). The provided entry point script will also look for Vault subcommands and run `vault` with that subcommand. For example, you can execute `docker run vault status` and it will run the `vault status` command inside the container. The entry point also adds some special configuration options as detailed in the sections below when running the `server` subcommand. Any other command gets `exec`-ed inside the container under `dumb-init`. - -The container exposes two optional `VOLUME`s: - -- `/vault/logs`, to use for writing persistent audit logs. By default nothing is written here; the `file` audit backend must be enabled with a path under this directory. -- `/vault/file`, to use for writing persistent storage data when using the`file` data storage plugin. By default nothing is written here (a `dev` server uses an in-memory data store); the `file` data storage backend must be enabled in Vault's configuration before the container is started. - -The container has a Vault configuration directory set up at `/vault/config` and the server will load any HCL or JSON configuration files placed here by binding a volume or by composing a new image and adding files. Alternatively, configuration can be added by passing the configuration JSON via environment variable `VAULT_LOCAL_CONFIG`. - -## Memory Locking and 'setcap' - -The container will attempt to lock memory to prevent sensitive values from being swapped to disk and as a result must have `--cap-add=IPC_LOCK` provided to `docker run`. Since the Vault binary runs as a non-root user, `setcap` is used to give the binary the ability to lock memory. With some Docker storage plugins in some distributions this call will not work correctly; it seems to fail most often with AUFS. The memory locking behavior can be disabled by setting the `SKIP_SETCAP` environment variable to any non-empty value. - -## Running Vault for Development - -```console -$ docker run --cap-add=IPC_LOCK -d --name=dev-vault vault -``` - -This runs a completely in-memory Vault server, which is useful for development but should not be used in production. - -When running in development mode, two additional options can be set via environment variables: - -- `VAULT_DEV_ROOT_TOKEN_ID`: This sets the ID of the initial generated root token to the given value -- `VAULT_DEV_LISTEN_ADDRESS`: This sets the IP:port of the development server listener (defaults to 0.0.0.0:8200) - -As an example: - -```console -$ docker run --cap-add=IPC_LOCK -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=0.0.0.0:1234' vault -``` - -## Running Vault in Server Mode for Development - -```console -$ docker run --cap-add=IPC_LOCK -e 'VAULT_LOCAL_CONFIG={"storage": {"file": {"path": "/vault/file"}}, "listener": [{"tcp": { "address": "0.0.0.0:8200", "tls_disable": true}}], "default_lease_ttl": "168h", "max_lease_ttl": "720h", "ui": true}' -p 8200:8200 vault server -``` - -This runs a Vault server with TLS disabled, the `file` storage backend at path `/vault/file` and a default secret lease duration of one week and a maximum of 30 days. Disabling TLS and using the `file` storage backend are not recommended for production use. - -Note the `--cap-add=IPC_LOCK`: this is required in order for Vault to lock memory, which prevents it from being swapped to disk. This is highly recommended. In a non-development environment, if you do not wish to use this functionality, you must add `"disable_mlock: true"` to the configuration information. - -At startup, the server will read configuration HCL and JSON files from `/vault/config` (any information passed into `VAULT_LOCAL_CONFIG` is written into `local.json` in this directory and read as part of reading the directory for configuration files). Please see Vault's [configuration documentation](https://www.vaultproject.io/docs/config/index.html) for a full list of options. - -We suggest volume mounting a directory into the Docker image in order to give both the configuration and TLS certificates to Vault. You can accomplish this with: - -```console -$ docker run --volume config/:/vault/config.d ... -``` - -For more scalability and reliability, we suggest running containerized Vault in an orchestration environment like k8s or OpenShift. - -Since 0.6.3 this container also supports the `VAULT_REDIRECT_INTERFACE` and `VAULT_CLUSTER_INTERFACE` environment variables. If set, the IP addresses used for the redirect and cluster addresses in Vault's configuration will be the address of the named interface inside the container (e.g. `eth0`). - -# License - -View [license information](https://raw.githubusercontent.com/hashicorp/vault/master/LICENSE) for the software contained in this image. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `vault/` directory](https://github.com/docker-library/repo-info/tree/master/repos/vault). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/vault/content.md b/vault/content.md deleted file mode 100644 index d3a27503d7e0..000000000000 --- a/vault/content.md +++ /dev/null @@ -1,68 +0,0 @@ -# Vault - -Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certificates, and more. Vault provides a unified interface to any secret, while providing tight access control and recording a detailed audit log. For more information, please see: - -- [Vault documentation](https://www.vaultproject.io/) -- [Vault on GitHub](https://github.com/hashicorp/vault) - -%%LOGO%% - -# Using the Container - -We chose Alpine as a lightweight base with a reasonably small surface area for security concerns, but with enough functionality for development and interactive debugging. - -Vault always runs under [dumb-init](https://github.com/Yelp/dumb-init), which handles reaping zombie processes and forwards signals on to all processes running in the container. This binary is built by HashiCorp and signed with our [GPG key](https://www.hashicorp.com/security.html), so you can verify the signed package used to build a given base image. - -Running the Vault container with no arguments will give you a Vault server in [development mode](https://www.vaultproject.io/docs/concepts/dev-server.html). The provided entry point script will also look for Vault subcommands and run `vault` with that subcommand. For example, you can execute `docker run vault status` and it will run the `vault status` command inside the container. The entry point also adds some special configuration options as detailed in the sections below when running the `server` subcommand. Any other command gets `exec`-ed inside the container under `dumb-init`. - -The container exposes two optional `VOLUME`s: - -- `/vault/logs`, to use for writing persistent audit logs. By default nothing is written here; the `file` audit backend must be enabled with a path under this directory. -- `/vault/file`, to use for writing persistent storage data when using the`file` data storage plugin. By default nothing is written here (a `dev` server uses an in-memory data store); the `file` data storage backend must be enabled in Vault's configuration before the container is started. - -The container has a Vault configuration directory set up at `/vault/config` and the server will load any HCL or JSON configuration files placed here by binding a volume or by composing a new image and adding files. Alternatively, configuration can be added by passing the configuration JSON via environment variable `VAULT_LOCAL_CONFIG`. - -## Memory Locking and 'setcap' - -The container will attempt to lock memory to prevent sensitive values from being swapped to disk and as a result must have `--cap-add=IPC_LOCK` provided to `docker run`. Since the Vault binary runs as a non-root user, `setcap` is used to give the binary the ability to lock memory. With some Docker storage plugins in some distributions this call will not work correctly; it seems to fail most often with AUFS. The memory locking behavior can be disabled by setting the `SKIP_SETCAP` environment variable to any non-empty value. - -## Running Vault for Development - -```console -$ docker run --cap-add=IPC_LOCK -d --name=dev-vault %%IMAGE%% -``` - -This runs a completely in-memory Vault server, which is useful for development but should not be used in production. - -When running in development mode, two additional options can be set via environment variables: - -- `VAULT_DEV_ROOT_TOKEN_ID`: This sets the ID of the initial generated root token to the given value -- `VAULT_DEV_LISTEN_ADDRESS`: This sets the IP:port of the development server listener (defaults to 0.0.0.0:8200) - -As an example: - -```console -$ docker run --cap-add=IPC_LOCK -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=0.0.0.0:1234' %%IMAGE%% -``` - -## Running Vault in Server Mode for Development - -```console -$ docker run --cap-add=IPC_LOCK -e 'VAULT_LOCAL_CONFIG={"storage": {"file": {"path": "/vault/file"}}, "listener": [{"tcp": { "address": "0.0.0.0:8200", "tls_disable": true}}], "default_lease_ttl": "168h", "max_lease_ttl": "720h", "ui": true}' -p 8200:8200 %%IMAGE%% server -``` - -This runs a Vault server with TLS disabled, the `file` storage backend at path `/vault/file` and a default secret lease duration of one week and a maximum of 30 days. Disabling TLS and using the `file` storage backend are not recommended for production use. - -Note the `--cap-add=IPC_LOCK`: this is required in order for Vault to lock memory, which prevents it from being swapped to disk. This is highly recommended. In a non-development environment, if you do not wish to use this functionality, you must add `"disable_mlock: true"` to the configuration information. - -At startup, the server will read configuration HCL and JSON files from `/vault/config` (any information passed into `VAULT_LOCAL_CONFIG` is written into `local.json` in this directory and read as part of reading the directory for configuration files). Please see Vault's [configuration documentation](https://www.vaultproject.io/docs/config/index.html) for a full list of options. - -We suggest volume mounting a directory into the Docker image in order to give both the configuration and TLS certificates to Vault. You can accomplish this with: - -```console -$ docker run --volume config/:/vault/config.d ... -``` - -For more scalability and reliability, we suggest running containerized Vault in an orchestration environment like k8s or OpenShift. - -Since 0.6.3 this container also supports the `VAULT_REDIRECT_INTERFACE` and `VAULT_CLUSTER_INTERFACE` environment variables. If set, the IP addresses used for the redirect and cluster addresses in Vault's configuration will be the address of the named interface inside the container (e.g. `eth0`). diff --git a/vault/deprecated.md b/vault/deprecated.md deleted file mode 100644 index 5a601656e8b9..000000000000 --- a/vault/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -Upcoming in Vault 1.14, we will stop publishing official Dockerhub images and publish only our Verified Publisher images. Users of Docker images should pull from [hashicorp/vault](https://hub.docker.com/r/hashicorp/vault) instead of [vault](https://hub.docker.com/_/vault). Verified Publisher images can be found at https://hub.docker.com/r/hashicorp/vault. diff --git a/vault/github-repo b/vault/github-repo deleted file mode 100644 index a4a1b4c45f2e..000000000000 --- a/vault/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/hashicorp/docker-vault diff --git a/vault/license.md b/vault/license.md deleted file mode 100644 index 2111daccf7f8..000000000000 --- a/vault/license.md +++ /dev/null @@ -1 +0,0 @@ -View [license information](https://raw.githubusercontent.com/hashicorp/vault/master/LICENSE) for the software contained in this image. diff --git a/vault/logo.svg b/vault/logo.svg deleted file mode 100644 index 86094d3162f5..000000000000 --- a/vault/logo.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/vault/maintainer.md b/vault/maintainer.md deleted file mode 120000 index ef4100e019a3..000000000000 --- a/vault/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -../.common-templates/maintainer-hashicorp.md \ No newline at end of file diff --git a/vault/metadata.json b/vault/metadata.json deleted file mode 100644 index f1e52700787d..000000000000 --- a/vault/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "hub": { - "categories": [ - "security" - ] - } -} From 0cce2db78ec9d0688b63c4b54a5e0a52e716f0c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 14:08:54 -0700 Subject: [PATCH 1409/2686] Run update.sh --- julia/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/julia/README.md b/julia/README.md index d0f59c85888c..a127403f32c9 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`1.11.0-rc1-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-rc2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-rc1-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-rc2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-rc1-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-rc1-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.20/Dockerfile) +- [`1.11.0-rc2-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-rc2-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/alpine3.20/Dockerfile) -- [`1.11.0-rc1-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/alpine3.19/Dockerfile) +- [`1.11.0-rc2-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/alpine3.19/Dockerfile) -- [`1.11.0-rc1-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-rc2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-rc1-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-rc2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) @@ -66,16 +66,16 @@ WARNING: ## Shared Tags -- `1.11.0-rc1`, `1.11-rc`, `rc`: +- `1.11.0-rc2`, `1.11-rc`, `rc`: - - [`1.11.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc2-bookworm`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-rc1-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: +- `1.11.0-rc2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/58c34fdecfa1f8b741d6f5e03e83e57d2aba1078/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.4`, `1.10`, `1`, `latest`: From 10076f39394fcd9fb562fabd9a5e2bd3c62c5b32 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 15:09:01 -0700 Subject: [PATCH 1410/2686] Run update.sh --- adminer/README.md | 6 ++---- clefos/README.md | 4 ++-- php-zendserver/README.md | 10 ++-------- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 61a2a75207ea..15b9ebbe4e91 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -32,9 +32,7 @@ See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-admine # Supported tags and respective `Dockerfile` links -- [`4.8.1-standalone`, `4-standalone`, `standalone`, `4.8.1`, `4`, `latest`](https://github.com/TimWolla/docker-adminer/blob/c9c54b18f79a66409a3153a94f629ea68f08647c/4/Dockerfile) - -- [`4.8.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/c9c54b18f79a66409a3153a94f629ea68f08647c/4/fastcgi/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -42,7 +40,7 @@ See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-admine [https://github.com/TimWolla/docker-adminer/issues](https://github.com/TimWolla/docker-adminer/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/adminer/), [`arm32v5`](https://hub.docker.com/r/arm32v5/adminer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/adminer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/adminer/), [`i386`](https://hub.docker.com/r/i386/adminer/), [`mips64le`](https://hub.docker.com/r/mips64le/adminer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/adminer/), [`s390x`](https://hub.docker.com/r/s390x/adminer/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/adminer/` directory](https://github.com/docker-library/repo-info/blob/master/repos/adminer) ([history](https://github.com/docker-library/repo-info/commits/master/repos/adminer)) diff --git a/clefos/README.md b/clefos/README.md index cdddb2f4c522..234ff01d241b 100644 --- a/clefos/README.md +++ b/clefos/README.md @@ -28,7 +28,7 @@ With [the EOL of CentOS 7 (June 30, 2024)](https://www.redhat.com/en/topics/linu # Supported tags and respective `Dockerfile` links -- [`7`, `7.7.1908`, `latest`](https://github.com/nealef/clefos/blob/1aa7d3771b2ced8b8b5cdc9a1a1752d93c56a60e/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -36,7 +36,7 @@ With [the EOL of CentOS 7 (June 30, 2024)](https://www.redhat.com/en/topics/linu [GitHub](https://github.com/nealef/clefos/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`s390x`](https://hub.docker.com/r/s390x/clefos/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/clefos/` directory](https://github.com/docker-library/repo-info/blob/master/repos/clefos) ([history](https://github.com/docker-library/repo-info/commits/master/repos/clefos)) diff --git a/php-zendserver/README.md b/php-zendserver/README.md index 37c9ecebe181..bcb614fa8271 100644 --- a/php-zendserver/README.md +++ b/php-zendserver/README.md @@ -28,13 +28,7 @@ This image is not actively maintained (and [has not been for years](https://gith # Supported tags and respective `Dockerfile` links -- [`8.5`, `8.5-php5.6`, `5.6`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/8.5/5.6/Dockerfile) - -- [`9.1`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/9.1/7.1/Dockerfile) - -- [`2019.0`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/2019.0/Dockerfile) - -- [`2021.0`, `latest`](https://github.com/zendtech/php-zendserver-docker/blob/bcd65b82acb4f3b5b67f8c657c52f08bc52d8789/2021.0/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -42,7 +36,7 @@ This image is not actively maintained (and [has not been for years](https://gith [Zend Support Center](https://www.zend.com/en/support-center) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/php-zendserver/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/php-zendserver/` directory](https://github.com/docker-library/repo-info/blob/master/repos/php-zendserver) ([history](https://github.com/docker-library/repo-info/commits/master/repos/php-zendserver)) From 20c9d2ce8d59a55cada07b97cf0bffa063ea741a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Jul 2024 17:09:01 -0700 Subject: [PATCH 1411/2686] Run update.sh --- redis/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/redis/README.md b/redis/README.md index b742230e0511..628558c17876 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.4-rc2`, `7.4-rc`, `7.4-rc2-bookworm`, `7.4-rc-bookworm`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/debian/Dockerfile) +- [`7.4.0`, `7.4`, `7`, `latest`, `7.4.0-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/debian/Dockerfile) -- [`7.4-rc2-alpine`, `7.4-rc-alpine`, `7.4-rc2-alpine3.20`, `7.4-rc-alpine3.20`](https://github.com/redis/docker-library-redis/blob/c828d8c6d982f0d45e1e8f564aae50b42f6d1ec0/7.4-rc/alpine/Dockerfile) +- [`7.4.0-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.0-alpine3.20`, `7.4-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/alpine/Dockerfile) -- [`7.2.5`, `7.2`, `7`, `latest`, `7.2.5-bookworm`, `7.2-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) +- [`7.2.5`, `7.2`, `7.2.5-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) -- [`7.2.5-alpine`, `7.2-alpine`, `7-alpine`, `alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) +- [`7.2.5-alpine`, `7.2-alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) - [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) From ad1a5c76ca3fa3815e895226b8fa9111fdcaaf1b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jul 2024 11:08:55 -0700 Subject: [PATCH 1412/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 1936e1acb866..01e81d15baa8 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240711`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/17.0/Dockerfile) +- [`17.0-20240730`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/17.0/Dockerfile) -- [`16.0-20240711`, `16.0`, `16`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/16.0/Dockerfile) +- [`16.0-20240730`, `16.0`, `16`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/16.0/Dockerfile) -- [`15.0-20240711`, `15.0`, `15`](https://github.com/odoo/docker/blob/c8297f5332271108e7e477afe8e8e17ca73afdd7/15.0/Dockerfile) +- [`15.0-20240730`, `15.0`, `15`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/15.0/Dockerfile) # Quick reference (cont.) From d1dec3eaa4f4c3e231d82fc1339e8d5447e0b427 Mon Sep 17 00:00:00 2001 From: John O'Nolan Date: Tue, 30 Jul 2024 15:06:34 -0400 Subject: [PATCH 1413/2686] Updated content --- ghost/content.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ghost/content.md b/ghost/content.md index 6f671747851d..773054ee90a3 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -2,9 +2,7 @@ Ghost is an independent platform for publishing online by web and email newsletter. It has user signups, gated access and subscription payments built-in (with Stripe) to allow you to build a direct relationship with your audience. It's fast, user-friendly, and runs on Node.js & MySQL8. -Ghost is used in production by Apple, OpenAI, TheAtlantic, SkyNews, DuckDuckGo, Buffer, and tens of thousands of companies, news websites and independent creators. Learn more about the project on [Ghost.org](https://ghost.org) - -> [wikipedia.org/wiki/Ghost_(blogging_platform)](http://en.wikipedia.org/wiki/Ghost_%28blogging_platform%29) +> [Ghost.org)](https://ghost.org) %%LOGO%% From 1e2bc576da95ad4aa61188d19bd7ad28362bdf0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jul 2024 12:08:52 -0700 Subject: [PATCH 1414/2686] Run update.sh --- traefik/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index d6386cd695e8..baaf0b599dac 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.0-windowsservercore-ltsc2022`, `3.1.0-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.1-windowsservercore-ltsc2022`, `3.1.1-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.0-windowsservercore-1809`, `3.1.0-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/1809/Dockerfile) +- [`v3.1.1-windowsservercore-1809`, `3.1.1-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/1809/Dockerfile) -- [`v3.1.0-nanoserver-ltsc2022`, `3.1.0-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.1-nanoserver-ltsc2022`, `3.1.1-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.0`, `3.1.0`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/2f8afc4591f5faf2b4ec8279ed8128ffbb919e41/v3.1/alpine/Dockerfile) +- [`v3.1.1`, `3.1.1`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/alpine/Dockerfile) -- [`v2.11.6-windowsservercore-ltsc2022`, `2.11.6-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.7-windowsservercore-ltsc2022`, `2.11.7-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.6-windowsservercore-1809`, `2.11.6-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/1809/Dockerfile) +- [`v2.11.7-windowsservercore-1809`, `2.11.7-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/1809/Dockerfile) -- [`v2.11.6-nanoserver-ltsc2022`, `2.11.6-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.7-nanoserver-ltsc2022`, `2.11.7-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.6`, `2.11.6`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/1e50ba91255ec5269abb2bf117a21e5ae7ffe2a9/v2.11/alpine/Dockerfile) +- [`v2.11.7`, `2.11.7`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/alpine/Dockerfile) # Quick reference (cont.) From bf92f27f0c087034a749b6ca930322e46bbe31e7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jul 2024 16:08:53 -0700 Subject: [PATCH 1415/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 80fb0d810724..b89a0f20cadc 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240718`, `devel`, `devel-20240718-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/0c9b183a6cb6331ab23e88c0b9b313c164305e35/devel/Dockerfile) +- [`devel-20240726`, `devel`, `devel-20240726-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/95a1ab2021358f4a1146d5b0cf462b0f40ec9860/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) From 9dfc74d1e89896dfbc5cae6b01ef5607ba73d792 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Jul 2024 17:09:01 -0700 Subject: [PATCH 1416/2686] Run update.sh --- elasticsearch/README.md | 2 +- ghost/README.md | 6 +++--- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 6ad991f3d50d..5c26a11eaea0 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/elasticsearch/Dockerfile) -- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/elasticsearch/Dockerfile) +- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 83901bb6057f..0f73649d8daf 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -49,11 +49,11 @@ WARNING: # Ghost -Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications. +Ghost is an independent platform for publishing online by web and email newsletter. It has user signups, gated access and subscription payments built-in (with Stripe) to allow you to build a direct relationship with your audience. It's fast, user-friendly, and runs on Node.js & MySQL8. -> [wikipedia.org/wiki/Ghost_(blogging_platform)](http://en.wikipedia.org/wiki/Ghost_%28blogging_platform%29) +> [Ghost.org)](https://ghost.org) -![logo](https://raw.githubusercontent.com/docker-library/docs/c5b6d94dc8f0557925ab37ca43141c0efc5cc363/ghost/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/c88522f95bebcab2322f3020f2f735210286939b/ghost/logo.png) # How to use this image diff --git a/kibana/README.md b/kibana/README.md index a7476d25ddcf..eafb40dbef44 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/kibana/Dockerfile) -- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/kibana/Dockerfile) +- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 698582f6a54d..001d425017cb 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/logstash/Dockerfile) -- [`7.17.22`](https://github.com/elastic/dockerfiles/blob/1f54f19c85034114800de30ef9929c9b52947ffb/logstash/Dockerfile) +- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/logstash/Dockerfile) # Quick reference (cont.) From 1b59adf2e82e5783213003b59619c96541054946 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jul 2024 10:08:54 -0700 Subject: [PATCH 1417/2686] Run update.sh --- plone/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/README.md b/plone/README.md index b0a4e0f1d405..1fa37e4daf72 100644 --- a/plone/README.md +++ b/plone/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.13-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.13`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/fd5a572ead9cabb20b9fcb24e16631f673610118/5.2/5.2.13/debian/Dockerfile) +- [`5.2.14-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.14`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/a3a9c7e0c5ca324f488fe7354f00a997398195f7/5.2/5.2.14/debian/Dockerfile) # Quick reference (cont.) From ab936c8c602588ce25b89ad6b41abe8fde855421 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jul 2024 12:08:56 -0700 Subject: [PATCH 1418/2686] Run update.sh --- docker/README.md | 45 --------------------------------------------- ghost/README.md | 4 ++-- 2 files changed, 2 insertions(+), 47 deletions(-) diff --git a/docker/README.md b/docker/README.md index aac3c6ae3942..1f57e09eb1d6 100644 --- a/docker/README.md +++ b/docker/README.md @@ -38,36 +38,6 @@ WARNING: - [`27.1.1-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) -- [`26.1.4-cli`, `26.1-cli`, `26-cli`, `26.1.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/cli/Dockerfile) - -- [`26.1.4-dind`, `26.1-dind`, `26-dind`, `26.1.4-dind-alpine3.20`, `26.1.4`, `26.1`, `26`, `26.1.4-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/26/dind/Dockerfile) - -- [`26.1.4-dind-rootless`, `26.1-dind-rootless`, `26-dind-rootless`](https://github.com/docker-library/docker/blob/6ce7fe78a5a66dadf37e9226d8485e94e894814f/26/dind-rootless/Dockerfile) - -- [`26.1.4-windowsservercore-ltsc2022`, `26.1-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`26.1.4-windowsservercore-1809`, `26.1-windowsservercore-1809`, `26-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-1809/Dockerfile) - -- [`25.0.5-cli`, `25.0-cli`, `25-cli`, `25.0.5-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/cli/Dockerfile) - -- [`25.0.5-dind`, `25.0-dind`, `25-dind`, `25.0.5-dind-alpine3.20`, `25.0.5-git`, `25.0-git`, `25-git`, `25.0.5`, `25.0`, `25`, `25.0.5-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/25/dind/Dockerfile) - -- [`25.0.5-dind-rootless`, `25.0-dind-rootless`, `25-dind-rootless`](https://github.com/docker-library/docker/blob/a40d64fc2cc3b417f9408d3b1c539ec860780e86/25/dind-rootless/Dockerfile) - -- [`25.0.5-windowsservercore-ltsc2022`, `25.0-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`25.0.5-windowsservercore-1809`, `25.0-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-1809/Dockerfile) - -- [`24.0.9-cli`, `24.0-cli`, `24-cli`, `24.0.9-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/cli/Dockerfile) - -- [`24.0.9-dind`, `24.0-dind`, `24-dind`, `24.0.9-dind-alpine3.20`, `24.0.9-git`, `24.0-git`, `24-git`, `24.0.9`, `24.0`, `24`, `24.0.9-alpine3.20`](https://github.com/docker-library/docker/blob/12a00d721d4d84bd69ffd4a69f1f2851751ac2d9/24/dind/Dockerfile) - -- [`24.0.9-dind-rootless`, `24.0-dind-rootless`, `24-dind-rootless`](https://github.com/docker-library/docker/blob/faa16b36dd3257f8b020489d44fd7a339f11701d/24/dind-rootless/Dockerfile) - -- [`24.0.9-windowsservercore-ltsc2022`, `24.0-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`24.0.9-windowsservercore-1809`, `24.0-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-1809/Dockerfile) - ## Shared Tags - `27.1.1-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: @@ -75,21 +45,6 @@ WARNING: - [`27.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-ltsc2022/Dockerfile) - [`27.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) -- `26.1.4-windowsservercore`, `26.1-windowsservercore`, `26-windowsservercore`: - - - [`26.1.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-ltsc2022/Dockerfile) - - [`26.1.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fa327fa3796638b29faee017e8ebb30e94e4428f/26/windows/windowsservercore-1809/Dockerfile) - -- `25.0.5-windowsservercore`, `25.0-windowsservercore`, `25-windowsservercore`: - - - [`25.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25.0.5-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad85990a80623b66f91fb7e8f3ef3fa1f3f9c187/25/windows/windowsservercore-1809/Dockerfile) - -- `24.0.9-windowsservercore`, `24.0-windowsservercore`, `24-windowsservercore`: - - - [`24.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24.0.9-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3b9c6eaa290cb4a3f54179a27dcd9036971a6bb4/24/windows/windowsservercore-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/ghost/README.md b/ghost/README.md index 0f73649d8daf..802b8e44c272 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.88.2`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/22f52c7dce218c90e39ca9d24490564929f4043a/5/debian/Dockerfile) +- [`5.88.3`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/551c52bee52afc9b1da4b2bc54c0120d5151ab3f/5/debian/Dockerfile) -- [`5.88.2-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/22f52c7dce218c90e39ca9d24490564929f4043a/5/alpine/Dockerfile) +- [`5.88.3-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/551c52bee52afc9b1da4b2bc54c0120d5151ab3f/5/alpine/Dockerfile) # Quick reference (cont.) From dc5b57bd1bb56adfd3c99647b7280f053ae43577 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jul 2024 13:08:55 -0700 Subject: [PATCH 1419/2686] Run update.sh --- rabbitmq/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 0cd721e196bb..d946ff86d97e 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.3`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/a1177f4c71c9c3214bd1ec3f653d1dbf91e0d3fb/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.3`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/4.0-rc/ubuntu/Dockerfile) - [`4.0.0-beta.3-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.3-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/a1177f4c71c9c3214bd1ec3f653d1dbf91e0d3fb/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.3-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/4.0-rc/alpine/Dockerfile) - [`4.0.0-beta.3-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) -- [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/753003d979b69971fe7b4a41d36ebd53447ec5e7/3.13/ubuntu/Dockerfile) +- [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/ubuntu/Dockerfile) - [`3.13.6-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/753003d979b69971fe7b4a41d36ebd53447ec5e7/3.13/alpine/Dockerfile) +- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/alpine/Dockerfile) - [`3.13.6-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/4714b6a2b184712243839ecca500befce49a66d7/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) From 8056634bcb1fe2d7b537a1f79167ef447ff9db6f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 31 Jul 2024 17:08:52 -0700 Subject: [PATCH 1420/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index b89a0f20cadc..725876a87dc2 100644 --- a/bash/README.md +++ b/bash/README.md @@ -28,7 +28,7 @@ WARNING: - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) -- [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/967275700d273c985448c889a4e825008cd1fb97/5.2/Dockerfile) +- [`5.2.32`, `5.2`, `5`, `latest`, `5.2.32-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/95adeb6b0abeb0db1244107df795e1f5a1560877/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) From 6c7a0bf34d2498e30ada148d4c95a6e2628ad7c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Aug 2024 10:08:52 -0700 Subject: [PATCH 1421/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 86985aa3f9a4..5d3a85587c28 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.29`, `4.29.0`, `latest`](https://github.com/liquibase/docker/blob/6903fb3ab80cde8a9a763fd230bfa66449fe5ca5/Dockerfile) +- [`4.29`, `4.29.1`, `latest`](https://github.com/liquibase/docker/blob/07e271e1a0d33b7670c5abcaf940e83bc0d17418/Dockerfile) -- [`4.29-alpine`, `4.29.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/6903fb3ab80cde8a9a763fd230bfa66449fe5ca5/Dockerfile.alpine) +- [`4.29-alpine`, `4.29.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/07e271e1a0d33b7670c5abcaf940e83bc0d17418/Dockerfile.alpine) # Quick reference (cont.) From 82fe46456c74f7062ead824f591a191da9fa312e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Aug 2024 11:08:53 -0700 Subject: [PATCH 1422/2686] Run update.sh --- flink/README.md | 16 +++--- ghost/README.md | 4 +- python/README.md | 124 +++++++++++++++++++++++------------------------ 3 files changed, 73 insertions(+), 71 deletions(-) diff --git a/flink/README.md b/flink/README.md index b6ac225d48fd..63bb127d6bfd 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,11 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.19.1-scala_2.12-java8`, `1.19-scala_2.12-java8`, `scala_2.12-java8`, `1.19.1-java8`, `1.19-java8`, `java8`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.20.0-scala_2.12-java8`, `1.20-scala_2.12-java8`, `scala_2.12-java8`, `1.20.0-java8`, `1.20-java8`, `java8`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.19.1-scala_2.12-java17`, `1.19-scala_2.12-java17`, `scala_2.12-java17`, `1.19.1-java17`, `1.19-java17`, `java17`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.0-scala_2.12-java17`, `1.20-scala_2.12-java17`, `scala_2.12-java17`, `1.20.0-java17`, `1.20-java17`, `java17`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.19.1-scala_2.12-java11`, `1.19-scala_2.12-java11`, `scala_2.12-java11`, `1.19.1-scala_2.12`, `1.19-scala_2.12`, `scala_2.12`, `1.19.1-java11`, `1.19-java11`, `java11`, `1.19.1`, `1.19`, `latest`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.0-scala_2.12-java11`, `1.20-scala_2.12-java11`, `scala_2.12-java11`, `1.20.0-scala_2.12`, `1.20-scala_2.12`, `scala_2.12`, `1.20.0-java11`, `1.20-java11`, `java11`, `1.20.0`, `1.20`, `latest`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java11-ubuntu/Dockerfile) + +- [`1.19.1-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.1-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java8-ubuntu/Dockerfile) + +- [`1.19.1-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.1-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java17-ubuntu/Dockerfile) + +- [`1.19.1-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.1-scala_2.12`, `1.19-scala_2.12`, `1.19.1-java11`, `1.19-java11`, `1.19.1`, `1.19`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java11-ubuntu/Dockerfile) - [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java8-ubuntu/Dockerfile) @@ -36,10 +42,6 @@ WARNING: - [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.17.2-scala_2.12-java8`, `1.17-scala_2.12-java8`, `1.17.2-java8`, `1.17-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java8-ubuntu/Dockerfile) - -- [`1.17.2-scala_2.12-java11`, `1.17-scala_2.12-java11`, `1.17.2-scala_2.12`, `1.17-scala_2.12`, `1.17.2-java11`, `1.17-java11`, `1.17.2`, `1.17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.17/scala_2.12-java11-ubuntu/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/ghost/README.md b/ghost/README.md index 802b8e44c272..0ced2d60e130 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.88.3`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/551c52bee52afc9b1da4b2bc54c0120d5151ab3f/5/debian/Dockerfile) +- [`5.88.3`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6301aa705da7d33de4a1eebfe0ce0177ae41f9b3/5/debian/Dockerfile) -- [`5.88.3-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/551c52bee52afc9b1da4b2bc54c0120d5151ab3f/5/alpine/Dockerfile) +- [`5.88.3-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6301aa705da7d33de4a1eebfe0ce0177ae41f9b3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 223a315d0065..80d6b9016f4c 100644 --- a/python/README.md +++ b/python/README.md @@ -28,136 +28,136 @@ WARNING: ## Simple Tags -- [`3.13.0b4-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bookworm/Dockerfile) +- [`3.13.0rc1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bookworm/Dockerfile) -- [`3.13.0b4-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0b4-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0rc1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0b4-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bullseye/Dockerfile) +- [`3.13.0rc1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bullseye/Dockerfile) -- [`3.13.0b4-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0rc1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0b4-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0b4-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0rc1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0b4-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0rc1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0b4-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0rc1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0b4-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0rc1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bookworm/Dockerfile) +- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bookworm/Dockerfile) -- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/slim-bookworm/Dockerfile) +- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/slim-bookworm/Dockerfile) -- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bullseye/Dockerfile) +- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bullseye/Dockerfile) -- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/slim-bullseye/Dockerfile) +- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/slim-bullseye/Dockerfile) -- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/alpine3.20/Dockerfile) +- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/alpine3.20/Dockerfile) -- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/alpine3.19/Dockerfile) +- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/alpine3.19/Dockerfile) -- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bookworm/Dockerfile) +- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bookworm/Dockerfile) -- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/slim-bookworm/Dockerfile) +- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/slim-bookworm/Dockerfile) -- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bullseye/Dockerfile) +- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bullseye/Dockerfile) -- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/slim-bullseye/Dockerfile) +- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/alpine3.19/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/alpine3.19/Dockerfile) -- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bookworm/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bookworm/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bullseye/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/alpine3.20/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/alpine3.19/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bookworm/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bookworm/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bullseye/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/alpine3.20/Dockerfile) +- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/alpine3.20/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/alpine3.19/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/alpine3.19/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bookworm/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bookworm/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bullseye/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/alpine3.20/Dockerfile) +- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/alpine3.20/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/alpine3.19/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/alpine3.19/Dockerfile) ## Shared Tags -- `3.13.0b4`, `3.13-rc`: +- `3.13.0rc1`, `3.13-rc`: - - [`3.13.0b4-bookworm`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/bookworm/Dockerfile) - - [`3.13.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc1-bookworm`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bookworm/Dockerfile) + - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0b4-windowsservercore`, `3.13-rc-windowsservercore`: +- `3.13.0rc1-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0b4-windowsservercore-1809`](https://github.com/docker-library/python/blob/ec14acd6a0830012b4330429bc173247a375857e/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.4`, `3.12`, `3`, `latest`: - - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/bookworm/Dockerfile) - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bookworm/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/5ed2758efb58d9acaafa90515caa43edbcfe4c4e/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/bookworm/Dockerfile) - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bookworm/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.9-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/de17a909b9143e7715550ce85023fee87c48c7d6/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/cb3ed4c9ff44fb15611034ae4d579ef82a6d12e5/3.10/bookworm/Dockerfile) + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/70b9507c0503d4dab77c0d898c4faaa67e555907/3.9/bookworm/Dockerfile) + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bookworm/Dockerfile) - `3.8.19`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/e835636db72db5f0b9ab192362992c763af60260/3.8/bookworm/Dockerfile) + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bookworm/Dockerfile) # Quick reference (cont.) From 17d017e547e2dc617f5ae9eb50c56b9c7e643136 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Aug 2024 12:09:29 -0700 Subject: [PATCH 1423/2686] Run update.sh --- php/README.md | 56 +++++++++++++-------------------------------------- 1 file changed, 14 insertions(+), 42 deletions(-) diff --git a/php/README.md b/php/README.md index 3384ea250cb2..ba79af1c7dde 100644 --- a/php/README.md +++ b/php/README.md @@ -52,61 +52,33 @@ WARNING: - [`8.4.0alpha2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/zts/Dockerfile) -- [`8.3.10RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.10RC1-bookworm`, `8.3-rc-bookworm`, `8.3.10RC1-cli`, `8.3-rc-cli`, `8.3.10RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.10-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.10-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.10-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.10`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/cli/Dockerfile) -- [`8.3.10RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.10RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.10-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.10-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/apache/Dockerfile) -- [`8.3.10RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.10RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.10-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.10-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/fpm/Dockerfile) -- [`8.3.10RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.10RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.10-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.10-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/zts/Dockerfile) -- [`8.3.10RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.10RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.10-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.10-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/cli/Dockerfile) -- [`8.3.10RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.10-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/apache/Dockerfile) -- [`8.3.10RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.10-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/fpm/Dockerfile) -- [`8.3.10RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.10-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/zts/Dockerfile) -- [`8.3.10RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.10RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.10RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.10RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.10-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.10-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.10-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.10-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.10RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.10RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.10-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.10-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.10RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.10RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.10-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.10-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.10RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.10RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.10-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.10-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.10RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.10-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.10RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/88eace45c30034413550759e5f598d163696a71d/8.3-rc/alpine3.19/zts/Dockerfile) - -- [`8.3.9-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.9-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.9-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.9`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/cli/Dockerfile) - -- [`8.3.9-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.9-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/apache/Dockerfile) - -- [`8.3.9-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.9-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.9-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.9-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bookworm/zts/Dockerfile) - -- [`8.3.9-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.9-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/cli/Dockerfile) - -- [`8.3.9-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/apache/Dockerfile) - -- [`8.3.9-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.9-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/bullseye/zts/Dockerfile) - -- [`8.3.9-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.9-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.9-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.9-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.9-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.9-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.9-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.9-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.20/zts/Dockerfile) - -- [`8.3.9-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.9-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/cli/Dockerfile) - -- [`8.3.9-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/fpm/Dockerfile) - -- [`8.3.9-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/21e6a92a1998c7f3157bc5df291fbd600330e33d/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.10-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/zts/Dockerfile) - [`8.2.22RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.22RC1-bookworm`, `8.2-rc-bookworm`, `8.2.22RC1-cli`, `8.2-rc-cli`, `8.2.22RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/cli/Dockerfile) From 6664b4c6e5a6dbef952b37b48b532a23c786756b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Aug 2024 14:08:51 -0700 Subject: [PATCH 1424/2686] Run update.sh --- amazonlinux/README.md | 2 +- gcc/README.md | 2 +- php/README.md | 56 +++++++++++-------------------------------- 3 files changed, 16 insertions(+), 44 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index a69e2973a6c1..9dd39ad52543 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240722.0`](https://github.com/amazonlinux/container-images/blob/5ab742374d78d507f5ddb156396cb7b08c6c032a/Dockerfile) +- [`2023`, `latest`, `2023.5.20240730.0`](https://github.com/amazonlinux/container-images/blob/7a6b2fcfccde9bc1e30ca7a82f339032334222e8/Dockerfile) - [`2`, `2.0.20240719.0`](https://github.com/amazonlinux/container-images/blob/777bd118eac88f5da9cd43baee35bea52604def2/Dockerfile) diff --git a/gcc/README.md b/gcc/README.md index a2f0fa6dc58a..b2b5b26ed237 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`14.1.0`, `14.1`, `14`, `latest`, `14.1.0-bookworm`, `14.1-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/14/Dockerfile) +- [`14.2.0`, `14.2`, `14`, `latest`, `14.2.0-bookworm`, `14.2-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/22c26a9e4edb4ce4f7676dfa100afc80fc2ccbea/14/Dockerfile) - [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/13/Dockerfile) diff --git a/php/README.md b/php/README.md index ba79af1c7dde..9976782274b9 100644 --- a/php/README.md +++ b/php/README.md @@ -80,61 +80,33 @@ WARNING: - [`8.3.10-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/zts/Dockerfile) -- [`8.2.22RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.22RC1-bookworm`, `8.2-rc-bookworm`, `8.2.22RC1-cli`, `8.2-rc-cli`, `8.2.22RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/cli/Dockerfile) +- [`8.2.22-cli-bookworm`, `8.2-cli-bookworm`, `8.2.22-bookworm`, `8.2-bookworm`, `8.2.22-cli`, `8.2-cli`, `8.2.22`, `8.2`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/cli/Dockerfile) -- [`8.2.22RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.22RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/apache/Dockerfile) +- [`8.2.22-apache-bookworm`, `8.2-apache-bookworm`, `8.2.22-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/apache/Dockerfile) -- [`8.2.22RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.22RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.2.22-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.22-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/fpm/Dockerfile) -- [`8.2.22RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.22RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bookworm/zts/Dockerfile) +- [`8.2.22-zts-bookworm`, `8.2-zts-bookworm`, `8.2.22-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/zts/Dockerfile) -- [`8.2.22RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.22RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/cli/Dockerfile) +- [`8.2.22-cli-bullseye`, `8.2-cli-bullseye`, `8.2.22-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/cli/Dockerfile) -- [`8.2.22RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/apache/Dockerfile) +- [`8.2.22-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/apache/Dockerfile) -- [`8.2.22RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.2.22-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/fpm/Dockerfile) -- [`8.2.22RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/bullseye/zts/Dockerfile) +- [`8.2.22-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/zts/Dockerfile) -- [`8.2.22RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.22RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.22RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.22RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/cli/Dockerfile) +- [`8.2.22-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.22-alpine3.20`, `8.2-alpine3.20`, `8.2.22-cli-alpine`, `8.2-cli-alpine`, `8.2.22-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/cli/Dockerfile) -- [`8.2.22RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.22RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/fpm/Dockerfile) +- [`8.2.22-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.22-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/fpm/Dockerfile) -- [`8.2.22RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.22RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.20/zts/Dockerfile) +- [`8.2.22-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.22-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/zts/Dockerfile) -- [`8.2.22RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.22RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.22-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.22-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/cli/Dockerfile) -- [`8.2.22RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.22-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/fpm/Dockerfile) -- [`8.2.22RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/972f00a34e84d29b299458e9c1a1918a847c54df/8.2-rc/alpine3.19/zts/Dockerfile) - -- [`8.2.21-cli-bookworm`, `8.2-cli-bookworm`, `8.2.21-bookworm`, `8.2-bookworm`, `8.2.21-cli`, `8.2-cli`, `8.2.21`, `8.2`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/cli/Dockerfile) - -- [`8.2.21-apache-bookworm`, `8.2-apache-bookworm`, `8.2.21-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/apache/Dockerfile) - -- [`8.2.21-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.21-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.21-zts-bookworm`, `8.2-zts-bookworm`, `8.2.21-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bookworm/zts/Dockerfile) - -- [`8.2.21-cli-bullseye`, `8.2-cli-bullseye`, `8.2.21-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/cli/Dockerfile) - -- [`8.2.21-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/apache/Dockerfile) - -- [`8.2.21-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.21-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/bullseye/zts/Dockerfile) - -- [`8.2.21-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.21-alpine3.20`, `8.2-alpine3.20`, `8.2.21-cli-alpine`, `8.2-cli-alpine`, `8.2.21-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.21-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.21-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.21-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.21-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.20/zts/Dockerfile) - -- [`8.2.21-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.21-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/cli/Dockerfile) - -- [`8.2.21-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/fpm/Dockerfile) - -- [`8.2.21-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/5aa02c9ae74d5298b27c08f3a447c06248a9cd7e/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.22-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/zts/Dockerfile) - [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) From 6bcd09328e5a337f20e62f30e06833831265bb0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 Aug 2024 15:08:57 -0700 Subject: [PATCH 1425/2686] Run update.sh --- mongo/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 9a5f7d90237d..23ea564e54b4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc13-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/Dockerfile) +- [`8.0.0-rc15-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/Dockerfile) -- [`8.0.0-rc13-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc15-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc13-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc15-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc13-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc15-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc13-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc15-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) @@ -70,21 +70,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc13`, `8.0-rc`: +- `8.0.0-rc15`, `8.0-rc`: - - [`8.0.0-rc13-jammy`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/Dockerfile) - - [`8.0.0-rc13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc15-jammy`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/Dockerfile) + - [`8.0.0-rc15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc13-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc15-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc13-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc13-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc15-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc13-nanoserver-1809`](https://github.com/docker-library/mongo/blob/504c80f4edb65d4b9b11f7b2dd64e022763f9207/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: From 8799d93f0cd0e22acfedd682a4df271dd01fc4e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Aug 2024 11:08:53 -0700 Subject: [PATCH 1426/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- crate/README.md | 6 ++---- photon/README.md | 2 +- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 02e1e9fb820d..6459c47e5847 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.base) +- [`latest`, `base`, `base-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.base) -- [`base-devel`, `base-devel-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240728.0.249973`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/99788745914e8ad11d9d2c8157d0a71e82a6fa29/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 68ab64930dbd..2970f95ca51f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c636a7e6fc5d0dac37a7b86608068cef48da9aa1/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/451c2b4f2c6bbea1b527e58342836427b27581a4/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index c054096594ab..52703d8eceed 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,11 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.7.4`, `5.7`, `latest`](https://github.com/crate/docker-crate/blob/d8b45726e982beff1fc63aebcd5f4bbc7312dbc4/Dockerfile) +- [`5.8.1`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/f6eefe79843a1746efe46779b5cfd32df4f3e6df/Dockerfile) -- [`5.6.5`, `5.6`](https://github.com/crate/docker-crate/blob/b47c08eac6dc3148ef596eac6749ed5b3210ee7a/Dockerfile) - -- [`5.5.5`, `5.5.4`, `5.5`](https://github.com/crate/docker-crate/blob/976468768511b4574a26631fe646ff7fdfaf03ef/Dockerfile) +- [`5.7.4`, `5.7`](https://github.com/crate/docker-crate/blob/d8b45726e982beff1fc63aebcd5f4bbc7312dbc4/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index c1f42ac58c2a..59cfb4fe5a53 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240728`, `latest`](https://github.com/vmware/photon-docker-image/blob/76739d93266ba4b9c23b5d584ea05f80164f3454/docker/Dockerfile) +- [`5.0`, `5.0-20240804`, `latest`](https://github.com/vmware/photon-docker-image/blob/6abd9888c6bd0daa3fe3e5ad15e8437605d2ee13/docker/Dockerfile) - [`4.0`, `4.0-20240728`](https://github.com/vmware/photon-docker-image/blob/8c7c9c14fd4cc0a595d6db411a3f3ca478132fbc/docker/Dockerfile) From f123daf3a6d6faf3e05a172f55f4cfe9f2200b5f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Aug 2024 12:08:52 -0700 Subject: [PATCH 1427/2686] Run update.sh --- drupal/README.md | 48 +++++++++++++++---------------- ghost/README.md | 4 +-- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 3 files changed, 62 insertions(+), 62 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 7f669c85f253..79ec61955fa0 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-rc1-php8.3-apache-bookworm`, `11.0-rc-php8.3-apache-bookworm`, `rc-php8.3-apache-bookworm`, `11.0.0-rc1-php8.3-apache`, `11.0-rc-php8.3-apache`, `rc-php8.3-apache`, `11.0.0-rc1-php8.3`, `11.0-rc-php8.3`, `rc-php8.3`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/apache-bookworm/Dockerfile) +- [`11.0.0-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.0-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.0-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.0-rc1-php8.3-fpm-bookworm`, `11.0-rc-php8.3-fpm-bookworm`, `rc-php8.3-fpm-bookworm`, `11.0.0-rc1-php8.3-fpm`, `11.0-rc-php8.3-fpm`, `rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.0-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.0-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.0-rc1-php8.3-apache-bullseye`, `11.0-rc-php8.3-apache-bullseye`, `rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/apache-bullseye/Dockerfile) +- [`11.0.0-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.0-rc1-php8.3-fpm-bullseye`, `11.0-rc-php8.3-fpm-bullseye`, `rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.0-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.0-rc1-php8.3-fpm-alpine3.20`, `11.0-rc-php8.3-fpm-alpine3.20`, `rc-php8.3-fpm-alpine3.20`, `11.0.0-rc1-php8.3-fpm-alpine`, `11.0-rc-php8.3-fpm-alpine`, `rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.0-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.0-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.0-rc1-php8.3-fpm-alpine3.19`, `11.0-rc-php8.3-fpm-alpine3.19`, `rc-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.0-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`11.0.0-rc1-php8.2-apache-bookworm`, `11.0-rc-php8.2-apache-bookworm`, `rc-php8.2-apache-bookworm`, `11.0.0-rc1-php8.2-apache`, `11.0-rc-php8.2-apache`, `rc-php8.2-apache`, `11.0.0-rc1-php8.2`, `11.0-rc-php8.2`, `rc-php8.2`, `11.0.0-rc1-apache-bookworm`, `11.0-rc-apache-bookworm`, `rc-apache-bookworm`, `11.0.0-rc1-apache`, `11.0-rc-apache`, `rc-apache`, `11.0.0-rc1`, `11.0-rc`, `rc`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/apache-bookworm/Dockerfile) +- [`11.0.0-php8.2-apache-bookworm`, `11.0-php8.2-apache-bookworm`, `11-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `11.0.0-php8.2-apache`, `11.0-php8.2-apache`, `11-php8.2-apache`, `php8.2-apache`, `11.0.0-php8.2`, `11.0-php8.2`, `11-php8.2`, `php8.2`, `11.0.0-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.0-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/apache-bookworm/Dockerfile) -- [`11.0.0-rc1-php8.2-fpm-bookworm`, `11.0-rc-php8.2-fpm-bookworm`, `rc-php8.2-fpm-bookworm`, `11.0.0-rc1-php8.2-fpm`, `11.0-rc-php8.2-fpm`, `rc-php8.2-fpm`, `11.0.0-rc1-fpm-bookworm`, `11.0-rc-fpm-bookworm`, `rc-fpm-bookworm`, `11.0.0-rc1-fpm`, `11.0-rc-fpm`, `rc-fpm`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-bookworm/Dockerfile) +- [`11.0.0-php8.2-fpm-bookworm`, `11.0-php8.2-fpm-bookworm`, `11-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `11.0.0-php8.2-fpm`, `11.0-php8.2-fpm`, `11-php8.2-fpm`, `php8.2-fpm`, `11.0.0-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.0-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-bookworm/Dockerfile) -- [`11.0.0-rc1-php8.2-apache-bullseye`, `11.0-rc-php8.2-apache-bullseye`, `rc-php8.2-apache-bullseye`, `11.0.0-rc1-apache-bullseye`, `11.0-rc-apache-bullseye`, `rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/apache-bullseye/Dockerfile) +- [`11.0.0-php8.2-apache-bullseye`, `11.0-php8.2-apache-bullseye`, `11-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `11.0.0-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/apache-bullseye/Dockerfile) -- [`11.0.0-rc1-php8.2-fpm-bullseye`, `11.0-rc-php8.2-fpm-bullseye`, `rc-php8.2-fpm-bullseye`, `11.0.0-rc1-fpm-bullseye`, `11.0-rc-fpm-bullseye`, `rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-bullseye/Dockerfile) +- [`11.0.0-php8.2-fpm-bullseye`, `11.0-php8.2-fpm-bullseye`, `11-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `11.0.0-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-bullseye/Dockerfile) -- [`11.0.0-rc1-php8.2-fpm-alpine3.20`, `11.0-rc-php8.2-fpm-alpine3.20`, `rc-php8.2-fpm-alpine3.20`, `11.0.0-rc1-php8.2-fpm-alpine`, `11.0-rc-php8.2-fpm-alpine`, `rc-php8.2-fpm-alpine`, `11.0.0-rc1-fpm-alpine3.20`, `11.0-rc-fpm-alpine3.20`, `rc-fpm-alpine3.20`, `11.0.0-rc1-fpm-alpine`, `11.0-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-alpine3.20/Dockerfile) +- [`11.0.0-php8.2-fpm-alpine3.20`, `11.0-php8.2-fpm-alpine3.20`, `11-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `11.0.0-php8.2-fpm-alpine`, `11.0-php8.2-fpm-alpine`, `11-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `11.0.0-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.0-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-alpine3.20/Dockerfile) -- [`11.0.0-rc1-php8.2-fpm-alpine3.19`, `11.0-rc-php8.2-fpm-alpine3.19`, `rc-php8.2-fpm-alpine3.19`, `11.0.0-rc1-fpm-alpine3.19`, `11.0-rc-fpm-alpine3.19`, `rc-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/90506dc95917ee6c094ebc19aaa7978c0c8e4a24/11.0-rc/php8.2/fpm-alpine3.19/Dockerfile) +- [`11.0.0-php8.2-fpm-alpine3.19`, `11.0-php8.2-fpm-alpine3.19`, `11-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `11.0.0-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `apache`, `10.3.1`, `10.3`, `10`, `latest`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `10.3.1`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 0ced2d60e130..37ffffa2d0a6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.88.3`, `5.88`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6301aa705da7d33de4a1eebfe0ce0177ae41f9b3/5/debian/Dockerfile) +- [`5.89.0`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0210c7f896e971346409fdb630a22ea0df87ed9f/5/debian/Dockerfile) -- [`5.88.3-alpine`, `5.88-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6301aa705da7d33de4a1eebfe0ce0177ae41f9b3/5/alpine/Dockerfile) +- [`5.89.0-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0210c7f896e971346409fdb630a22ea0df87ed9f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 8eb7c6aac607..4a460b6db466 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-8-jdk-oraclelinux9`, `24-ea-8-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-8-jdk-oracle`, `24-ea-8-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-9-jdk-oraclelinux9`, `24-ea-9-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-9-jdk-oracle`, `24-ea-9-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-8-jdk-oraclelinux8`, `24-ea-8-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-9-jdk-oraclelinux8`, `24-ea-9-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-8-jdk-bookworm`, `24-ea-8-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/bookworm/Dockerfile) +- [`24-ea-9-jdk-bookworm`, `24-ea-9-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/bookworm/Dockerfile) -- [`24-ea-8-jdk-slim-bookworm`, `24-ea-8-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-8-jdk-slim`, `24-ea-8-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-9-jdk-slim-bookworm`, `24-ea-9-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-9-jdk-slim`, `24-ea-9-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-8-jdk-bullseye`, `24-ea-8-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/bullseye/Dockerfile) +- [`24-ea-9-jdk-bullseye`, `24-ea-9-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/bullseye/Dockerfile) -- [`24-ea-8-jdk-slim-bullseye`, `24-ea-8-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-9-jdk-slim-bullseye`, `24-ea-9-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-8-jdk-windowsservercore-ltsc2022`, `24-ea-8-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-9-jdk-windowsservercore-ltsc2022`, `24-ea-9-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-8-jdk-windowsservercore-1809`, `24-ea-8-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-9-jdk-windowsservercore-1809`, `24-ea-9-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-8-jdk-nanoserver-1809`, `24-ea-8-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-9-jdk-nanoserver-1809`, `24-ea-9-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-34-jdk-oraclelinux9`, `23-ea-34-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-34-jdk-oracle`, `23-ea-34-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux9/Dockerfile) +- [`23-ea-35-jdk-oraclelinux9`, `23-ea-35-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-35-jdk-oracle`, `23-ea-35-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-34-jdk-oraclelinux8`, `23-ea-34-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux8/Dockerfile) +- [`23-ea-35-jdk-oraclelinux8`, `23-ea-35-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-34-jdk-bookworm`, `23-ea-34-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/bookworm/Dockerfile) +- [`23-ea-35-jdk-bookworm`, `23-ea-35-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/bookworm/Dockerfile) -- [`23-ea-34-jdk-slim-bookworm`, `23-ea-34-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-34-jdk-slim`, `23-ea-34-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/slim-bookworm/Dockerfile) +- [`23-ea-35-jdk-slim-bookworm`, `23-ea-35-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-35-jdk-slim`, `23-ea-35-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-34-jdk-bullseye`, `23-ea-34-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/bullseye/Dockerfile) +- [`23-ea-35-jdk-bullseye`, `23-ea-35-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/bullseye/Dockerfile) -- [`23-ea-34-jdk-slim-bullseye`, `23-ea-34-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/slim-bullseye/Dockerfile) +- [`23-ea-35-jdk-slim-bullseye`, `23-ea-35-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-34-jdk-windowsservercore-ltsc2022`, `23-ea-34-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-ea-35-jdk-windowsservercore-ltsc2022`, `23-ea-35-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-34-jdk-windowsservercore-1809`, `23-ea-34-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-ea-35-jdk-windowsservercore-1809`, `23-ea-35-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-34-jdk-nanoserver-1809`, `23-ea-34-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-ea-35-jdk-nanoserver-1809`, `23-ea-35-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-8-jdk`, `24-ea-8`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-9-jdk`, `24-ea-9`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-8-jdk-windowsservercore`, `24-ea-8-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-9-jdk-windowsservercore`, `24-ea-9-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-8-jdk-nanoserver`, `24-ea-8-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-9-jdk-nanoserver`, `24-ea-9-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/29d3befe39d6af5e009e5214237adcbbed4886d1/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-34-jdk`, `23-ea-34`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-ea-35-jdk`, `23-ea-35`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: - - [`23-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-35-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux9/Dockerfile) + - [`23-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-34-jdk-windowsservercore`, `23-ea-34-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-ea-35-jdk-windowsservercore`, `23-ea-35-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-34-jdk-nanoserver`, `23-ea-34-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-ea-35-jdk-nanoserver`, `23-ea-35-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02c05e9d33d6ce8687bd09f046dc6ec2abc56da7/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 81a31eedc893cc13ceeaef04d34778da65301837 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 Aug 2024 17:08:51 -0700 Subject: [PATCH 1428/2686] Run update.sh --- mongo/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 23ea564e54b4..8f7a24e29fb2 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc15-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/Dockerfile) +- [`8.0.0-rc16-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/Dockerfile) -- [`8.0.0-rc15-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc16-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc15-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc16-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc15-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc16-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc15-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc16-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) @@ -70,21 +70,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc15`, `8.0-rc`: +- `8.0.0-rc16`, `8.0-rc`: - - [`8.0.0-rc15-jammy`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/Dockerfile) - - [`8.0.0-rc15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc16-jammy`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/Dockerfile) + - [`8.0.0-rc16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc15-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc16-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc15-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc16-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9895a972ea1383762df0723c37626d75ab6da0ab/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: From 87e2dba8f66315c121fc33bfb60ea1a72a61c39a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Aug 2024 13:08:57 -0700 Subject: [PATCH 1429/2686] Run update.sh --- dart/README.md | 4 +--- influxdb/README.md | 32 ++++++++++++++++---------------- traefik/README.md | 16 ++++++++-------- 3 files changed, 25 insertions(+), 27 deletions(-) diff --git a/dart/README.md b/dart/README.md index f701ff2dfc2c..8ce066a31e64 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.4-sdk`, `3.4-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.4.4`, `3.4`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/stable/bookworm/Dockerfile) - -- [`3.5.0-180.3.beta-sdk`, `beta-sdk`, `3.5.0-180.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d3658d21b1bd35658346d3fb4345d9a8084759e5/beta/bookworm/Dockerfile) +- [`3.5.0-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.0`, `3.5`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/e597e8fea5215866dd987c3d785db7cb0500258a/stable/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index cd37f27c31fa..012ba0f4c8d4 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.5-data`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.5-meta`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.8`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.8`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.8-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0bb9f6b67f00d50780d16f668e1872dac472b885/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.8-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index baaf0b599dac..3fcfefaceeed 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.1-windowsservercore-ltsc2022`, `3.1.1-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.2-windowsservercore-ltsc2022`, `3.1.2-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.1-windowsservercore-1809`, `3.1.1-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/1809/Dockerfile) +- [`v3.1.2-windowsservercore-1809`, `3.1.2-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/1809/Dockerfile) -- [`v3.1.1-nanoserver-ltsc2022`, `3.1.1-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.2-nanoserver-ltsc2022`, `3.1.2-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.1`, `3.1.1`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/422a4acd435b4e67d31da91ecfa4177f33cafe60/v3.1/alpine/Dockerfile) +- [`v3.1.2`, `3.1.2`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/alpine/Dockerfile) -- [`v2.11.7-windowsservercore-ltsc2022`, `2.11.7-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.8-windowsservercore-ltsc2022`, `2.11.8-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.7-windowsservercore-1809`, `2.11.7-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/1809/Dockerfile) +- [`v2.11.8-windowsservercore-1809`, `2.11.8-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/1809/Dockerfile) -- [`v2.11.7-nanoserver-ltsc2022`, `2.11.7-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.8-nanoserver-ltsc2022`, `2.11.8-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.7`, `2.11.7`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/b84002647aa4a9dcc2750b8ba37206c2f9bc6c28/v2.11/alpine/Dockerfile) +- [`v2.11.8`, `2.11.8`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/alpine/Dockerfile) # Quick reference (cont.) From f38722d43506b0ae487641ab815d19634e7d5f15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Aug 2024 14:08:49 -0700 Subject: [PATCH 1430/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index daa736e5756b..8952fc0988a9 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.5-alpine3.19`, `22.5.1-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.6-alpine3.19`, `22.6.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.5-alpine`, `22.5-alpine3.20`, `22.5.1-alpine`, `22.5.1-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.6-alpine`, `22.6-alpine3.20`, `22.6.0-alpine`, `22.6.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.5`, `22.5-bookworm`, `22.5.1`, `22.5.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.6`, `22.6-bookworm`, `22.6.0`, `22.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.5-bookworm-slim`, `22.5-slim`, `22.5.1-bookworm-slim`, `22.5.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.6-bookworm-slim`, `22.6-slim`, `22.6.0-bookworm-slim`, `22.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.5-bullseye`, `22.5.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.6-bullseye`, `22.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.5-bullseye-slim`, `22.5.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1f1f3a626ff1c6738c04e9917f01d1051eacaa74/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.6-bullseye-slim`, `22.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.16-alpine3.19`, `20.16.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/alpine3.19/Dockerfile) From 3303af983a70d98b573ccce8bab6f2265c8e4342 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Aug 2024 16:08:55 -0700 Subject: [PATCH 1431/2686] Run update.sh --- bash/README.md | 4 +-- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/bash/README.md b/bash/README.md index 725876a87dc2..4d06bef8b45c 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240726`, `devel`, `devel-20240726-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/95a1ab2021358f4a1146d5b0cf462b0f40ec9860/devel/Dockerfile) +- [`devel-20240730`, `devel`, `devel-20240730-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/b9f3fba007d7d27ace88ef8f77346b1b24e8d41f/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) -- [`5.2.32`, `5.2`, `5`, `latest`, `5.2.32-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/95adeb6b0abeb0db1244107df795e1f5a1560877/5.2/Dockerfile) +- [`5.2.32`, `5.2`, `5`, `latest`, `5.2.32-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/b4a43db2826bfa7fd10beb8352ac4891d3ded65a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 4dfbd6f5485d..bce1cfa7ad78 100644 --- a/golang/README.md +++ b/golang/README.md @@ -44,37 +44,37 @@ WARNING: - [`1.23rc2-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) -- [`1.22.5-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) +- [`1.22.6-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) -- [`1.22.5-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bullseye/Dockerfile) +- [`1.22.6-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bullseye/Dockerfile) -- [`1.22.5-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.5-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.20/Dockerfile) +- [`1.22.6-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.6-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.20/Dockerfile) -- [`1.22.5-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/alpine3.19/Dockerfile) +- [`1.22.6-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.19/Dockerfile) -- [`1.22.5-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.6-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.5-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.6-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.5-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.6-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.5-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.6-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) -- [`1.21.12-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) +- [`1.21.13-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bookworm/Dockerfile) -- [`1.21.12-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bullseye/Dockerfile) +- [`1.21.13-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bullseye/Dockerfile) -- [`1.21.12-alpine3.20`, `1.21-alpine3.20`, `1.21.12-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.20/Dockerfile) +- [`1.21.13-alpine3.20`, `1.21-alpine3.20`, `1.21.13-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/alpine3.20/Dockerfile) -- [`1.21.12-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/alpine3.19/Dockerfile) +- [`1.21.13-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/alpine3.19/Dockerfile) -- [`1.21.12-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.21.13-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.21.12-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) +- [`1.21.13-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) -- [`1.21.12-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.21.13-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.21.12-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.21.13-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -94,37 +94,37 @@ WARNING: - [`1.23rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) -- `1.22.5`, `1.22`, `1`, `latest`: +- `1.22.6`, `1.22`, `1`, `latest`: - - [`1.22.5-bookworm`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/bookworm/Dockerfile) - - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.6-bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) + - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.5-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.22.6-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.22.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.5-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.22.6-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.22.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/539882fb23e90d31854a51a773accf8731cf0c9d/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.12`, `1.21`: +- `1.21.13`, `1.21`: - - [`1.21.12-bookworm`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/bookworm/Dockerfile) - - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) + - [`1.21.13-bookworm`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bookworm/Dockerfile) + - [`1.21.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.12-windowsservercore`, `1.21-windowsservercore`: +- `1.21.13-windowsservercore`, `1.21-windowsservercore`: - - [`1.21.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/windowsservercore-1809/Dockerfile) + - [`1.21.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.21.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) -- `1.21.12-nanoserver`, `1.21-nanoserver`: +- `1.21.13-nanoserver`, `1.21-nanoserver`: - - [`1.21.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/4e6e4352c680762dbb74fc43ff59dd0df72918ad/1.21/windows/nanoserver-1809/Dockerfile) + - [`1.21.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.21.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From d2297dc0729da157a0a761eb4c6d8042f1012d33 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 Aug 2024 17:09:02 -0700 Subject: [PATCH 1432/2686] Run update.sh --- mongo/README.md | 26 +++++++++++++++++ tomcat/README.md | 72 ++++++++++++++++++++++++------------------------ 2 files changed, 62 insertions(+), 36 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 8f7a24e29fb2..dc571e08724c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,6 +38,16 @@ WARNING: - [`8.0.0-rc16-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.13-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/Dockerfile) + +- [`7.0.13-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.13-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`7.0.13-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.13-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - [`7.0.12-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,6 +96,22 @@ WARNING: - [`8.0.0-rc16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.13-rc0`, `7.0-rc`: + + - [`7.0.13-rc0-jammy`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/Dockerfile) + - [`7.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.13-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.13-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.13-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.13-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.12`, `7.0`, `7`, `latest`: - [`7.0.12-jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index ffee98508c8b..9f37a882797b 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,77 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M22-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M22-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M22-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M22`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.0-M24-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M24-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M24-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M24`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-M22-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M22-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M22-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.0-M24-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M24-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M24-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.0-M22-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M24-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M22-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f310ad695a638b361001f95f7a35f0cc43db6e35/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M24-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.26-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.26-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.26-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.26`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.28-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.28-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.28-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.28`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.26-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.26-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.26-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.28-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.28-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.28-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.26-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.28-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.26-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.28-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.26-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.26-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.26-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.28-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.28-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.28-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.26-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.26-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.26-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.28-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.28-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.28-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.26-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.28-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.26-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.28-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.26-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.26-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.26-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.28-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.28-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.28-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.26-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.26-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.26-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.28-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.28-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.28-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.26-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.28-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.26-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a4b26353acf854ee3f0a656eec8297c9ffc632a0/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.28-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.91-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.91-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.91-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.91`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.93-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.93-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.93-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.93`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.91-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.91-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.91-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.93-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.93-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.93-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.91-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.93-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.91-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.93-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.91-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.91-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.93-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.93-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.91-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.91-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.91-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.93-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.93-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.93-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.91-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.91-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.91-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.93-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.93-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.93-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.91-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.93-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.91-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.93-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.91-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.91-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.93-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.93-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.91-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.91-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.91-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.93-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.93-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.93-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.91-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.91-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.91-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.93-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.93-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.93-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.91-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.93-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.91-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.93-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.91-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.91-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.93-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.93-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.91-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.91-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.91-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.93-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.93-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.93-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.91-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.91-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.91-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/11b7d077d48f21a6efa58d00258301676664774e/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.93-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.93-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.93-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.91-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.93-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.91-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.93-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.91-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.91-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a280a462a08befda350fb6729b8dd6ebaf9ced85/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.93-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.93-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From f5324993075d408758660fce2f2f80abac1f2180 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Aug 2024 11:08:53 -0700 Subject: [PATCH 1433/2686] Run update.sh --- alpine/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/README.md b/alpine/README.md index 645becf23d50..6e31535d3cd8 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20240606`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/75a51b285731679e7c39c2e3c1cae4edcd6851e5/x86_64/Dockerfile) +- [`20240807`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/35654ae14e617434d5ca29771296f6b9485eaa85/x86_64/Dockerfile) - [`3.20.2`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/3b06e21a03a8564bb1b261da824b9e2cfa6e8bdf/x86_64/Dockerfile) From 797a1badf092e6ce1eb5e18fe60031fc22c2b02d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Aug 2024 12:15:38 -0700 Subject: [PATCH 1434/2686] Run update.sh --- clojure/README.md | 142 +++++++++++++++++++++++----------------------- drupal/README.md | 72 ++++++++++------------- php/README.md | 28 ++++----- python/README.md | 30 +++++----- 4 files changed, 130 insertions(+), 142 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 431110b83c01..bc77b5a3fae5 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,147 +24,147 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.3.1456-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.4.1474-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.3.1456-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.4.1474-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.3.1456-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.4.1474-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.3.1456`, `temurin-8-tools-deps-1.11.3.1456-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.4.1474`, `temurin-8-tools-deps-1.11.4.1474-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.11.3.1456-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.11.4.1474-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.3.1456-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.4.1474-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.3.1456-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.4.1474-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.3.1456-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.4.1474-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.3.1456`, `temurin-11-tools-deps-1.11.3.1456-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.4.1474`, `temurin-11-tools-deps-1.11.4.1474-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.11.3.1456-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.11.4.1474-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.3.1456-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.4.1474-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.3.1456-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.4.1474-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.3.1456-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.4.1474-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.3.1456`, `temurin-17-tools-deps-1.11.3.1456-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.4.1474`, `temurin-17-tools-deps-1.11.4.1474-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.11.3.1456-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.11.4.1474-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.3.1456-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.4.1474-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.3.1456`, `temurin-21-tools-deps-1.11.3.1456-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.3.1456`, `tools-deps-1.11.3.1456-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.4.1474`, `temurin-21-tools-deps-1.11.4.1474-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.4.1474`, `tools-deps-1.11.4.1474-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.3.1456-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.4.1474-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.3.1456-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.3.1456-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.4.1474-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.4.1474-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.3.1456-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.4.1474-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.3.1456-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.4.1474-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.11.3.1456-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.11.4.1474-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.3.1456-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.4.1474-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.3.1456`, `temurin-22-tools-deps-1.11.3.1456-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.4.1474`, `temurin-22-tools-deps-1.11.4.1474-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.3.1456-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.3.1456-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.4.1474-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.3.1456-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.3.1456-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.4.1474-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-noble`, `temurin-22-tools-deps-1.11.3.1456-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/075129eca2b1738fff39adb344f58359e3ceb427/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) +- [`temurin-22-noble`, `temurin-22-tools-deps-1.11.4.1474-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 79ec61955fa0..66ef137efd42 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,77 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.0-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.0-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.0-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.0-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.0-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.0-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.0-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.0-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.0-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.0-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.0-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.0-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.0-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.0-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.0-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.0-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.0-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.0-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.0-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.0-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.0-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.0-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.0-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.0-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.0-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.0-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.0-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.0-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`11.0.0-php8.2-apache-bookworm`, `11.0-php8.2-apache-bookworm`, `11-php8.2-apache-bookworm`, `php8.2-apache-bookworm`, `11.0.0-php8.2-apache`, `11.0-php8.2-apache`, `11-php8.2-apache`, `php8.2-apache`, `11.0.0-php8.2`, `11.0-php8.2`, `11-php8.2`, `php8.2`, `11.0.0-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.0-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/apache-bookworm/Dockerfile) +- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/apache-bookworm/Dockerfile) -- [`11.0.0-php8.2-fpm-bookworm`, `11.0-php8.2-fpm-bookworm`, `11-php8.2-fpm-bookworm`, `php8.2-fpm-bookworm`, `11.0.0-php8.2-fpm`, `11.0-php8.2-fpm`, `11-php8.2-fpm`, `php8.2-fpm`, `11.0.0-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.0-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.0-php8.2-apache-bullseye`, `11.0-php8.2-apache-bullseye`, `11-php8.2-apache-bullseye`, `php8.2-apache-bullseye`, `11.0.0-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/apache-bullseye/Dockerfile) +- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/apache-bullseye/Dockerfile) -- [`11.0.0-php8.2-fpm-bullseye`, `11.0-php8.2-fpm-bullseye`, `11-php8.2-fpm-bullseye`, `php8.2-fpm-bullseye`, `11.0.0-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.0-php8.2-fpm-alpine3.20`, `11.0-php8.2-fpm-alpine3.20`, `11-php8.2-fpm-alpine3.20`, `php8.2-fpm-alpine3.20`, `11.0.0-php8.2-fpm-alpine`, `11.0-php8.2-fpm-alpine`, `11-php8.2-fpm-alpine`, `php8.2-fpm-alpine`, `11.0.0-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.0-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.0-php8.2-fpm-alpine3.19`, `11.0-php8.2-fpm-alpine3.19`, `11-php8.2-fpm-alpine3.19`, `php8.2-fpm-alpine3.19`, `11.0.0-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5d83ee0ff3071b546781da3758c043599b9b183e/11.0/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `10.3.1`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `10.3.1`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/19d83f7f476fc0295927838f27a524df977f9b25/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.3/fpm-alpine3.19/Dockerfile) - -- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bookworm/Dockerfile) - -- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bookworm/Dockerfile) - -- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/apache-bullseye/Dockerfile) - -- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-bullseye/Dockerfile) - -- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.20/Dockerfile) - -- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/bf2a89f89a4740a74086694f2fa3efb971554028/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) diff --git a/php/README.md b/php/README.md index 9976782274b9..149d48a051d4 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0alpha2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha2-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha2-cli`, `8.4-rc-cli`, `8.4.0alpha2`, `8.4-rc`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0alpha4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha4-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha4-cli`, `8.4-rc-cli`, `8.4.0alpha4`, `8.4-rc`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0alpha2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0alpha4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0alpha2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0alpha4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0alpha2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0alpha4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0alpha2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0alpha4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0alpha2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0alpha4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0alpha2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0alpha4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0alpha2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0alpha4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0alpha2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha2-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0alpha4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0alpha2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0alpha4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0alpha2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0alpha4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0alpha2-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha2-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0alpha4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0alpha2-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0alpha4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0alpha2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/50d9abf52e2ab6b91fe2963b57cfa62d862193f7/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0alpha4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/zts/Dockerfile) - [`8.3.10-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.10-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.10-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.10`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/cli/Dockerfile) diff --git a/python/README.md b/python/README.md index 80d6b9016f4c..9b0a95a32412 100644 --- a/python/README.md +++ b/python/README.md @@ -44,21 +44,21 @@ WARNING: - [`3.13.0rc1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.4-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bookworm/Dockerfile) +- [`3.12.5-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bookworm/Dockerfile) -- [`3.12.4-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.4-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/slim-bookworm/Dockerfile) +- [`3.12.5-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.5-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/slim-bookworm/Dockerfile) -- [`3.12.4-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bullseye/Dockerfile) +- [`3.12.5-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bullseye/Dockerfile) -- [`3.12.4-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/slim-bullseye/Dockerfile) +- [`3.12.5-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/slim-bullseye/Dockerfile) -- [`3.12.4-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.4-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/alpine3.20/Dockerfile) +- [`3.12.5-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/alpine3.20/Dockerfile) -- [`3.12.4-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/alpine3.19/Dockerfile) +- [`3.12.5-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/alpine3.19/Dockerfile) -- [`3.12.4-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.5-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.4-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.5-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bookworm/Dockerfile) @@ -125,16 +125,16 @@ WARNING: - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.4`, `3.12`, `3`, `latest`: +- `3.12.5`, `3.12`, `3`, `latest`: - - [`3.12.4-bookworm`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/bookworm/Dockerfile) - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.5-bookworm`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bookworm/Dockerfile) + - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.4-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.12.5-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0d5638323cb325f17caa71bbee67db68bd194edc/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: From d42535efe95ddaef61dd261ce5ffa0e234624977 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 Aug 2024 16:08:58 -0700 Subject: [PATCH 1435/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 00c66ee3c545..cee1a909c187 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev4`, `3.1-dev`, `3.1-dev4-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/027eb3e20eacc457cfd53a54982823aadebcfa4e/3.1/Dockerfile) +- [`3.1-dev5`, `3.1-dev`, `3.1-dev5-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/aa204b15e00e1e32e56efd4b92cceded52b41db5/3.1/Dockerfile) -- [`3.1-dev4-alpine`, `3.1-dev-alpine`, `3.1-dev4-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/027eb3e20eacc457cfd53a54982823aadebcfa4e/3.1/alpine/Dockerfile) +- [`3.1-dev5-alpine`, `3.1-dev-alpine`, `3.1-dev5-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/aa204b15e00e1e32e56efd4b92cceded52b41db5/3.1/alpine/Dockerfile) - [`3.0.3`, `3.0`, `lts`, `latest`, `3.0.3-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/Dockerfile) From 498d4f9d0723dfeffd93558737134ad61d474092 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Aug 2024 11:09:03 -0700 Subject: [PATCH 1436/2686] Run update.sh --- drupal/README.md | 36 ++++++++++++++++++------------------ geonetwork/README.md | 4 ++-- wordpress/README.md | 6 +++--- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 66ef137efd42..7c75ab5cc67a 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.0-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.0-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.0-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.0-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.1-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.1-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.1-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.1-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.1-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.1`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.0-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.0-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.0-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.0-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.1-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.1-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.1-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.1-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.0-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.0-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.1-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.1-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.0-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.0-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.1-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.1-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.0-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.0-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.0-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.0-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.1-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.1-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.1-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.1-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.0-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.0-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.1-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.1-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.1-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.1-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.2-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.2-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.2-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.1-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.1-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.2-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.2-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.2-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.2-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.1-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.2-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.2-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.2-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.1-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.1-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.1-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.1-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.1-apache`, `10.3-apache`, `10-apache`, `10.3.1`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.2-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.2-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.2-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.2-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.2-apache`, `10.3-apache`, `10-apache`, `10.3.2`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.1-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.1-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.1-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.1-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.2-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.2-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.2-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.2-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.1-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.1-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.2-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.2-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.1-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.2-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.2-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.1-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.1-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.1-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.2-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.2-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.2-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.2-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.1-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.1-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.2-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.2-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/apache-bookworm/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index dc5734ca8831..0ac66f8dc7ec 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) +- [`3.12.12`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/Dockerfile) -- [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) +- [`3.12.12-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/postgres/Dockerfile) - [`4.2.10`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/4305f7ddf869d8023a56d2b71a8270f706cec8aa/4.2.10/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 212b5bbc95fa..5eef425e8bf1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -42,11 +42,11 @@ WARNING: - [`6.6.1-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/fpm-alpine/Dockerfile) -- [`cli-2.10.0-php8.1`, `cli-2.10-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.1/alpine/Dockerfile) +- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.1/alpine/Dockerfile) -- [`cli-2.10.0`, `cli-2.10`, `cli-2`, `cli`, `cli-2.10.0-php8.2`, `cli-2.10-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.2/alpine/Dockerfile) +- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.2/alpine/Dockerfile) -- [`cli-2.10.0-php8.3`, `cli-2.10-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/509adb58cbc7463a03e317931df65868ec8a3e92/cli/php8.3/alpine/Dockerfile) +- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.3/alpine/Dockerfile) # Quick reference (cont.) From 1a6655a2ae77d63b3345cdc2c927b333118df86f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Aug 2024 12:08:52 -0700 Subject: [PATCH 1437/2686] Run update.sh --- postgres/README.md | 48 +++++++++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 8605b9fb2d74..862a9fb0c08c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17beta2`, `17beta2-bookworm`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bookworm/Dockerfile) +- [`17beta3`, `17beta3-bookworm`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/bookworm/Dockerfile) -- [`17beta2-bullseye`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/bullseye/Dockerfile) +- [`17beta3-bullseye`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/bullseye/Dockerfile) -- [`17beta2-alpine3.20`, `17beta2-alpine`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.20/Dockerfile) +- [`17beta3-alpine3.20`, `17beta3-alpine`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/alpine3.20/Dockerfile) -- [`17beta2-alpine3.19`](https://github.com/docker-library/postgres/blob/9bf5a6d620a90158d8192ee0dba05acc4464d002/17/alpine3.19/Dockerfile) +- [`17beta3-alpine3.19`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/alpine3.19/Dockerfile) -- [`16.3`, `16`, `latest`, `16.3-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bookworm/Dockerfile) +- [`16.4`, `16`, `latest`, `16.4-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/bookworm/Dockerfile) -- [`16.3-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d08757ccb56ee047efd76c41dbc148e2e2c4f68f/16/bullseye/Dockerfile) +- [`16.4-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/bullseye/Dockerfile) -- [`16.3-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.3-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.20/Dockerfile) +- [`16.4-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.4-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.20/Dockerfile) -- [`16.3-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/16/alpine3.19/Dockerfile) +- [`16.4-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.19/Dockerfile) -- [`15.7`, `15`, `15.7-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bookworm/Dockerfile) +- [`15.8`, `15`, `15.8-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/bookworm/Dockerfile) -- [`15.7-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8a0b96710d917d1c3b32a5fe5b66687ad83827da/15/bullseye/Dockerfile) +- [`15.8-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/bullseye/Dockerfile) -- [`15.7-alpine3.20`, `15-alpine3.20`, `15.7-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.20/Dockerfile) +- [`15.8-alpine3.20`, `15-alpine3.20`, `15.8-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/alpine3.20/Dockerfile) -- [`15.7-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/15/alpine3.19/Dockerfile) +- [`15.8-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/alpine3.19/Dockerfile) -- [`14.12`, `14`, `14.12-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bookworm/Dockerfile) +- [`14.13`, `14`, `14.13-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/bookworm/Dockerfile) -- [`14.12-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/662dbe5225f4d404364bdcf5e49dd5d88357ed31/14/bullseye/Dockerfile) +- [`14.13-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/bullseye/Dockerfile) -- [`14.12-alpine3.20`, `14-alpine3.20`, `14.12-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.20/Dockerfile) +- [`14.13-alpine3.20`, `14-alpine3.20`, `14.13-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/alpine3.20/Dockerfile) -- [`14.12-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/14/alpine3.19/Dockerfile) +- [`14.13-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/alpine3.19/Dockerfile) -- [`13.15`, `13`, `13.15-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bookworm/Dockerfile) +- [`13.16`, `13`, `13.16-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/bookworm/Dockerfile) -- [`13.15-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/f3ab8c6db63e2986453e0a4fae2c5f372dd4f05e/13/bullseye/Dockerfile) +- [`13.16-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/bullseye/Dockerfile) -- [`13.15-alpine3.20`, `13-alpine3.20`, `13.15-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.20/Dockerfile) +- [`13.16-alpine3.20`, `13-alpine3.20`, `13.16-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/alpine3.20/Dockerfile) -- [`13.15-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/13/alpine3.19/Dockerfile) +- [`13.16-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/alpine3.19/Dockerfile) -- [`12.19`, `12`, `12.19-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bookworm/Dockerfile) +- [`12.20`, `12`, `12.20-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/bookworm/Dockerfile) -- [`12.19-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/ccf4f2289a1e59ddf74a5d1e6eb7693b7f464b54/12/bullseye/Dockerfile) +- [`12.20-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/bullseye/Dockerfile) -- [`12.19-alpine3.20`, `12-alpine3.20`, `12.19-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.20/Dockerfile) +- [`12.20-alpine3.20`, `12-alpine3.20`, `12.20-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/alpine3.20/Dockerfile) -- [`12.19-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/3e9b4eaaebf00d7a8ece67f02e2d6546402f4de7/12/alpine3.19/Dockerfile) +- [`12.20-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/alpine3.19/Dockerfile) # Quick reference (cont.) From b59881ae3e05b1e69cb2bd9b13883b5d78ad78f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Aug 2024 13:08:50 -0700 Subject: [PATCH 1438/2686] Run update.sh --- eggdrop/README.md | 6 ++++-- rust/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/eggdrop/README.md b/eggdrop/README.md index f720ead099ac..50136d0ba4eb 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,9 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/ffa90b0ffecc389997799f525e32f45f60b4897a/develop/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/e685e40a5bb54f0f6fd78193cef31429faa29a61/develop/Dockerfile) -- [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/80fba087712325adc72a96265d4984c6760aff1a/1.9/Dockerfile) +- [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/57fb1652a1880665b12e9f51775f173ecde24285/1.9/Dockerfile) + +- [`1.10.0rc1`](https://github.com/eggheads/eggdrop-docker/blob/e685e40a5bb54f0f6fd78193cef31429faa29a61/1.10/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index b45f65a3adcf..8f2a0b53bc39 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.80-bullseye`, `1.80.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bullseye/Dockerfile) +- [`1-bullseye`, `1.80-bullseye`, `1.80.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.80-slim-bullseye`, `1.80.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.80-slim-bullseye`, `1.80.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.80-bookworm`, `1.80.0-bookworm`, `bookworm`, `1`, `1.80`, `1.80.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bookworm/Dockerfile) +- [`1-bookworm`, `1.80-bookworm`, `1.80.1-bookworm`, `bookworm`, `1`, `1.80`, `1.80.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.80-slim-bookworm`, `1.80.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.80-slim`, `1.80.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.80-slim-bookworm`, `1.80.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.80-slim`, `1.80.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.80-alpine3.19`, `1.80.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.80-alpine3.19`, `1.80.1-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.80-alpine3.20`, `1.80.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.80-alpine`, `1.80.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/7932cc837034e38e33566d7c4df0304314e7279f/1.80.0/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.80-alpine3.20`, `1.80.1-alpine3.20`, `alpine3.20`, `1-alpine`, `1.80-alpine`, `1.80.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/alpine3.20/Dockerfile) # Quick reference (cont.) From 47d9123e2a300f189dfdd9b6ea950637d2b05917 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Aug 2024 15:09:08 -0700 Subject: [PATCH 1439/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 5c26a11eaea0..45b067ec5177 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/elasticsearch/Dockerfile) +- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/elasticsearch/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index eafb40dbef44..daa51539a976 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/kibana/Dockerfile) +- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/kibana/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 001d425017cb..911a0e43adf7 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.3`](https://github.com/elastic/dockerfiles/blob/1281351b137229a96022f864d5b3cbd544f83871/logstash/Dockerfile) +- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/logstash/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/logstash/Dockerfile) From 27e830c9dd0670fe2a4bb54dfa760e0590cc3d22 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Aug 2024 10:08:56 -0700 Subject: [PATCH 1440/2686] Run update.sh --- haxe/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index b6cffddb93aa..1be3747d73f4 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`4.3.5-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bookworm/Dockerfile) +- [`4.3.6-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bookworm/Dockerfile) -- [`4.3.5-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bullseye/Dockerfile) +- [`4.3.6-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bullseye/Dockerfile) -- [`4.3.5-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.6-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.5-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) +- [`4.3.6-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.5-alpine3.20`, `4.3-alpine3.20`, `4.3.5-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.20/Dockerfile) +- [`4.3.6-alpine3.20`, `4.3-alpine3.20`, `4.3.6-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.20/Dockerfile) -- [`4.3.5-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.19/Dockerfile) +- [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.19/Dockerfile) -- [`4.3.5-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.18/Dockerfile) +- [`4.3.6-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.18/Dockerfile) -- [`4.3.5-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/alpine3.17/Dockerfile) +- [`4.3.6-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.17/Dockerfile) - [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bookworm/Dockerfile) @@ -90,16 +90,16 @@ WARNING: ## Shared Tags -- `4.3.5`, `4.3`, `latest`: +- `4.3.6`, `4.3`, `latest`: - - [`4.3.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/bookworm/Dockerfile) - - [`4.3.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) + - [`4.3.6-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bookworm/Dockerfile) + - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.6-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) -- `4.3.5-windowsservercore`, `4.3-windowsservercore`: +- `4.3.6-windowsservercore`, `4.3-windowsservercore`: - - [`4.3.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/06c07a989caa62b8e178a84b15f9e03bfa9b31e6/4.3/windowsservercore-1809/Dockerfile) + - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`4.3.6-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: From 490883db71e13bba6b49a4e99c1f274d36679b81 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Aug 2024 11:08:59 -0700 Subject: [PATCH 1441/2686] Run update.sh --- haskell/README.md | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 3b9f65c0075d..e202888fdcb6 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,29 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.10.1-buster`, `9.10-buster`, `9-buster`, `buster`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/buster/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/65b8848bc9e63d54f12ecf3f31d04621d62d761c/9.10/bullseye/Dockerfile) -- [`9.10.1-slim-buster`, `9.10-slim-buster`, `9-slim-buster`, `slim-buster`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/ca3084159e14e2a753fe633789347a9d8633e5ea/9.10/slim-buster/Dockerfile) - -- [`9.8.2-buster`, `9.8-buster`, `9.8.2`, `9.8`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/buster/Dockerfile) - -- [`9.8.2-slim-buster`, `9.8-slim-buster`, `9.8.2-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.8/slim-buster/Dockerfile) - -- [`9.6.5-buster`, `9.6-buster`, `9.6.5`, `9.6`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/buster/Dockerfile) - -- [`9.6.5-slim-buster`, `9.6-slim-buster`, `9.6.5-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.6/slim-buster/Dockerfile) - -- [`9.4.8-buster`, `9.4-buster`, `9.4.8`, `9.4`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/buster/Dockerfile) - -- [`9.4.8-slim-buster`, `9.4-slim-buster`, `9.4.8-slim`, `9.4-slim`](https://github.com/haskell/docker-haskell/blob/a722a82c30fa5e321bae769bbd7720e3a3ba874e/9.4/slim-buster/Dockerfile) - -- [`9.2.8-buster`, `9.2-buster`, `9.2.8`, `9.2`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/buster/Dockerfile) - -- [`9.2.8-slim-buster`, `9.2-slim-buster`, `9.2.8-slim`, `9.2-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.2/slim-buster/Dockerfile) - -- [`9.0.2-buster`, `9.0-buster`, `9.0.2`, `9.0`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/buster/Dockerfile) - -- [`9.0.2-slim-buster`, `9.0-slim-buster`, `9.0.2-slim`, `9.0-slim`](https://github.com/haskell/docker-haskell/blob/360d1218729e65b9a783fd30fc2d3c3b473d29ce/9.0/slim-buster/Dockerfile) +- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/65b8848bc9e63d54f12ecf3f31d04621d62d761c/9.10/slim-bullseye/Dockerfile) # Quick reference (cont.) @@ -183,7 +163,7 @@ The `haskell` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haskell:-slim` From 585d9015492f074155162e82a6ed0ebb7e60b61e Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 9 Aug 2024 11:26:00 -0700 Subject: [PATCH 1442/2686] Deprecate `mono` image (due to maintainer inactivity) --- mono/README-short.txt | 2 +- mono/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 mono/deprecated.md diff --git a/mono/README-short.txt b/mono/README-short.txt index 19bb0ad99d97..8b4e69d86aea 100644 --- a/mono/README-short.txt +++ b/mono/README-short.txt @@ -1 +1 @@ -Mono is an open source implementation of Microsoft's .NET Framework +DEPRECATED; Mono is an open source implementation of Microsoft's .NET Framework diff --git a/mono/deprecated.md b/mono/deprecated.md new file mode 100644 index 000000000000..bf91fc036570 --- /dev/null +++ b/mono/deprecated.md @@ -0,0 +1 @@ +This image is deprecated due to maintainer inactivity (last updated Jun 2022; [docker-library/official-images#12682](https://github.com/docker-library/official-images/pull/12682)). From 66640dbd914368c5f510230b9560d2d9ce567808 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Aug 2024 12:08:55 -0700 Subject: [PATCH 1443/2686] Run update.sh --- amazonlinux/README.md | 2 +- influxdb/README.md | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 9dd39ad52543..04fc855c409d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240730.0`](https://github.com/amazonlinux/container-images/blob/7a6b2fcfccde9bc1e30ca7a82f339032334222e8/Dockerfile) +- [`2023`, `latest`, `2023.5.20240805.0`](https://github.com/amazonlinux/container-images/blob/6d74be550141b91913144f2cbf3775f793082a37/Dockerfile) - [`2`, `2.0.20240719.0`](https://github.com/amazonlinux/container-images/blob/777bd118eac88f5da9cd43baee35bea52604def2/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 012ba0f4c8d4..357d96268e87 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.8`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.9`, `latest`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.8-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae5525d875f5520ad05aefe4951a5aad84487d4c/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.9-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From 039300eb9224694ddf7bdc89df511e67c455bc6a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 Aug 2024 17:09:01 -0700 Subject: [PATCH 1444/2686] Run update.sh --- mono/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mono/README.md b/mono/README.md index ad5ba76fa561..c56ffd3cecd3 100644 --- a/mono/README.md +++ b/mono/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +This image is deprecated due to maintainer inactivity (last updated Jun 2022; [docker-library/official-images#12682](https://github.com/docker-library/official-images/pull/12682)). + # Quick reference - **Maintained by**: From d9eb7612dcd76a79ab390bb3320a6484051b16f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Aug 2024 10:08:59 -0700 Subject: [PATCH 1445/2686] Run update.sh --- archlinux/README.md | 6 +-- clearlinux/README.md | 2 +- couchdb/README.md | 4 -- elixir/README.md | 2 - emqx/README.md | 2 +- erlang/README.md | 16 ------- haskell/README.md | 4 ++ ibm-semeru-runtimes/README.md | 80 +++++++++++++++++------------------ mariadb/README.md | 24 +++++------ mongo/README.md | 62 +++++++++++++++++++-------- neurodebian/README.md | 4 -- odoo/README.md | 6 +-- photon/README.md | 6 +-- telegraf/README.md | 12 +++--- 14 files changed, 116 insertions(+), 114 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 6459c47e5847..c6679ac697c5 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.base) +- [`latest`, `base`, `base-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.base) -- [`base-devel`, `base-devel-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240804.0.251467`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/01ae228c8051756518e072052944c489103e143f/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2970f95ca51f..c61a16486a29 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/451c2b4f2c6bbea1b527e58342836427b27581a4/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2796025d007ea6237915b070547a5fd096eb7703/Dockerfile) # Quick reference (cont.) diff --git a/couchdb/README.md b/couchdb/README.md index 1a7ad5f4b33e..de8d8967c1a3 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -28,10 +28,6 @@ WARNING: - [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.2.3/Dockerfile) -- [`3.1.2`, `3.1`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.1.2/Dockerfile) - -- [`2.3.1`, `2.3`, `2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/2.3.1/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/elixir/README.md b/elixir/README.md index 6f8147fe8150..a2090e486bcb 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -102,8 +102,6 @@ WARNING: - [`1.13.4-alpine`, `1.13-alpine`, `1.13.4-otp-24-alpine`, `1.13-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) -- [`1.13.4-otp-23-slim`, `1.13-otp-23-slim`](https://github.com/erlef/docker-elixir/blob/2bc3fd2b7218d6958c766c42b86e259949b56b95/1.13/otp-23-slim/Dockerfile) - - [`1.13.4-otp-25`, `1.13-otp-25`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25/Dockerfile) - [`1.13.4-otp-25-alpine`, `1.13-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-alpine/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index 26cd3c453361..ef8c9b11d4df 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -36,7 +36,7 @@ WARNING: - [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) -- [`5.7.1`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/02b0801191ba3fafb9f9c845c69d8045d7c85430/5.7/Dockerfile) +- [`5.7.2`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 2bda9001c02a..f9c85f74156a 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -48,22 +48,6 @@ WARNING: - [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) -- [`23.3.4.20`, `23.3.4`, `23.3`, `23`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/Dockerfile) - -- [`23.3.4.20-slim`, `23.3.4-slim`, `23.3-slim`, `23-slim`](https://github.com/erlang/docker-erlang-otp/blob/23c0ba4f6ad91572990ccc5a22fb59861494887e/23/slim/Dockerfile) - -- [`22.3.4.27`, `22.3.4`, `22.3`, `22`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/Dockerfile) - -- [`22.3.4.27-slim`, `22.3.4-slim`, `22.3-slim`, `22-slim`](https://github.com/erlang/docker-erlang-otp/blob/b3cbee1be5d91c64f5f71ccc3393009b72b55922/22/slim/Dockerfile) - -- [`21.3.8.24`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/Dockerfile) - -- [`21.3.8.24-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/21/slim/Dockerfile) - -- [`20.3.8.26`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/Dockerfile) - -- [`20.3.8.26-slim`, `20.3.8-slim`, `20.3-slim`, `20-slim`](https://github.com/erlang/docker-erlang-otp/blob/fd21a3bf876b240b413d2cd4543d832dca466c5c/20/slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/haskell/README.md b/haskell/README.md index e202888fdcb6..ff0b60d844cc 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -28,6 +28,10 @@ WARNING: - [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/65b8848bc9e63d54f12ecf3f31d04621d62d761c/9.10/slim-bullseye/Dockerfile) +- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/45be610ef8bc3e4f844ff2fff1a66e6809d26dbf/9.6/bullseye/Dockerfile) + +- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/45be610ef8bc3e4f844ff2fff1a66e6809d26dbf/9.6/slim-bullseye/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 43bdda1581b2..dfe88881a171 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u412-b08-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u412-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u412-b08-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u412-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.23_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.11_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.3_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.1_8-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.1_8-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.1_8-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.1_8-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u412-b08-jdk`, `open-8-jdk`: +- `open-8u422-b05-jdk`, `open-8-jdk`: - - [`open-8u412-b08-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-8u412-b08-jre`, `open-8-jre`: +- `open-8u422-b05-jre`, `open-8-jre`: - - [`open-8u412-b08-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.23_9-jdk`, `open-11-jdk`: +- `open-11.0.24_8-jdk`, `open-11-jdk`: - - [`open-11.0.23_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.23_9-jre`, `open-11-jre`: +- `open-11.0.24_8-jre`, `open-11-jre`: - - [`open-11.0.23_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.11_9-jdk`, `open-17-jdk`: +- `open-17.0.12_7-jdk`, `open-17-jdk`: - - [`open-17.0.11_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.11_9-jre`, `open-17-jre`: +- `open-17.0.12_7-jre`, `open-17-jre`: - - [`open-17.0.11_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.3_9-jdk`, `open-21-jdk`: +- `open-21.0.4_7-jdk`, `open-21-jdk`: - - [`open-21.0.3_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.3_9-jre`, `open-21-jre`: +- `open-21.0.4_7-jre`, `open-21-jre`: - - [`open-21.0.3_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.1_8-jdk`, `open-22-jdk`: +- `open-22.0.2_9-jdk`, `open-22-jdk`: - - [`open-22.0.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.1_8-jre`, `open-22-jre`: +- `open-22.0.2_9-jre`, `open-22-jre`: - - [`open-22.0.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/85c863fc29210104181c7b8ef9d24f3e52fcc87e/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index cbdae3346fa2..9e424e4bd8fb 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,29 +26,27 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5-ubi/Dockerfile) +- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/e730514e2771bdca0d7f66f8547ca418e20add8e/11.5-ubi/Dockerfile) -- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.5/Dockerfile) +- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/e730514e2771bdca0d7f66f8547ca418e20add8e/11.5/Dockerfile) -- [`11.4.2-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.2-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4-ubi/Dockerfile) +- [`11.4.3-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.4-ubi/Dockerfile) -- [`11.4.2-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.2`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/11135d071fd1fe355b1f7fa99b9d3b4a59bb5225/11.4/Dockerfile) +- [`11.4.3-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.3`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.4/Dockerfile) -- [`11.2.4-jammy`, `11.2-jammy`, `11.2.4`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.2/Dockerfile) +- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.2/Dockerfile) -- [`11.1.5-jammy`, `11.1-jammy`, `11.1.5`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/11.1/Dockerfile) +- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.1/Dockerfile) -- [`10.11.8-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.8-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11-ubi/Dockerfile) +- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.11-ubi/Dockerfile) -- [`10.11.8-jammy`, `10.11-jammy`, `10-jammy`, `10.11.8`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.11/Dockerfile) +- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.11/Dockerfile) -- [`10.6.18-ubi9`, `10.6-ubi9`, `10.6.18-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6-ubi/Dockerfile) +- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.6-ubi/Dockerfile) -- [`10.6.18-focal`, `10.6-focal`, `10.6.18`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.6/Dockerfile) +- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.6/Dockerfile) -- [`10.5.25-focal`, `10.5-focal`, `10.5.25`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.5/Dockerfile) - -- [`10.4.34-focal`, `10.4-focal`, `10.4.34`, `10.4`](https://github.com/MariaDB/mariadb-docker/blob/81c4ce79659a9b705686b5704a3f3d3b9119532a/10.4/Dockerfile) +- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.5/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index dc571e08724c..c3419f35a8a7 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.0-rc16-jammy`, `8.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/Dockerfile) +- [`8.0.0-rc16-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/f9fd3b13f22665e05d51017ff4193d38bcb9c764/8.0-rc/Dockerfile) - [`8.0.0-rc16-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -38,15 +38,15 @@ WARNING: - [`8.0.0-rc16-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.13-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/Dockerfile) +- [`7.0.13-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) -- [`7.0.13-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.13-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.13-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.13-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.13-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.13-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.13-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.13-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) @@ -58,6 +58,16 @@ WARNING: - [`7.0.12-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.17-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/Dockerfile) + +- [`6.0.17-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.17-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`6.0.17-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`6.0.17-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.16-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) - [`6.0.16-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -82,7 +92,7 @@ WARNING: - `8.0.0-rc16`, `8.0-rc`: - - [`8.0.0-rc16-jammy`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/Dockerfile) + - [`8.0.0-rc16-noble`](https://github.com/docker-library/mongo/blob/f9fd3b13f22665e05d51017ff4193d38bcb9c764/8.0-rc/Dockerfile) - [`8.0.0-rc16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.0-rc16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -96,21 +106,21 @@ WARNING: - [`8.0.0-rc16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.13-rc0`, `7.0-rc`: +- `7.0.13-rc1`, `7.0-rc`: - - [`7.0.13-rc0-jammy`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/Dockerfile) - - [`7.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.13-rc1-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) + - [`7.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.13-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.13-rc0-windowsservercore`, `7.0-rc-windowsservercore`: +- `7.0.13-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.13-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.13-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.13-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.13-rc0-nanoserver`, `7.0-rc-nanoserver`: +- `7.0.13-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.13-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.13-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f67df06afba874f83a82d71a2622c9317be1e2f/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.13-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.13-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: @@ -128,6 +138,22 @@ WARNING: - [`7.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.17-rc0`, `6.0-rc`: + + - [`6.0.17-rc0-jammy`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/Dockerfile) + - [`6.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.17-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.17-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.17-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.17-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-1809/Dockerfile) + - `6.0.16`, `6.0`, `6`: - [`6.0.16-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) @@ -410,7 +436,7 @@ The `mongo` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `mongo:-windowsservercore` diff --git a/neurodebian/README.md b/neurodebian/README.md index 27cc0394718c..429b54fc254e 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -36,10 +36,6 @@ WARNING: - [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble-non-free/Dockerfile) -- [`buster`, `nd100`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster/Dockerfile) - -- [`buster-non-free`, `nd100-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/buster-non-free/Dockerfile) - - [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye/Dockerfile) - [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye-non-free/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 01e81d15baa8..17d4957009e1 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240730`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/17.0/Dockerfile) +- [`17.0-20240812`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/17.0/Dockerfile) -- [`16.0-20240730`, `16.0`, `16`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/16.0/Dockerfile) +- [`16.0-20240812`, `16.0`, `16`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/16.0/Dockerfile) -- [`15.0-20240730`, `15.0`, `15`](https://github.com/odoo/docker/blob/0a794bf1c202f1d7ca409ce30c159350dc541100/15.0/Dockerfile) +- [`15.0-20240812`, `15.0`, `15`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 59cfb4fe5a53..196443f86563 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240804`, `latest`](https://github.com/vmware/photon-docker-image/blob/6abd9888c6bd0daa3fe3e5ad15e8437605d2ee13/docker/Dockerfile) +- [`5.0`, `5.0-20240811`, `latest`](https://github.com/vmware/photon-docker-image/blob/addcaa0896dfc5666377dd0b93ab4a7e0ed376ef/docker/Dockerfile) -- [`4.0`, `4.0-20240728`](https://github.com/vmware/photon-docker-image/blob/8c7c9c14fd4cc0a595d6db411a3f3ca478132fbc/docker/Dockerfile) +- [`4.0`, `4.0-20240811`](https://github.com/vmware/photon-docker-image/blob/f7956f0db606de9f7ad792069fc8af72ffae5550/docker/Dockerfile) -- [`3.0`, `3.0-20240728`](https://github.com/vmware/photon-docker-image/blob/9d074f9044a410db3e82f9c8e1ffc6fb6e80a321/docker/Dockerfile) +- [`3.0`, `3.0-20240811`](https://github.com/vmware/photon-docker-image/blob/6ec28bc6af5c74f1af22f891355388d885418a5d/docker/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index a8c875e9e811..71bb74c03d5e 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.29/Dockerfile) +- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.29/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.29/alpine/Dockerfile) +- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.29/alpine/Dockerfile) -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.30/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.30/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8eccc88a2ed9f2b96423917716fc7c50fc2a20e9/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.31/alpine/Dockerfile) # Quick reference (cont.) From ab0984534328ccfd0128d79fcfe6eff6f8600e4c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Aug 2024 11:08:54 -0700 Subject: [PATCH 1446/2686] Run update.sh --- ghost/README.md | 4 +-- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ spark/README.md | 32 ++++++++------------- 3 files changed, 50 insertions(+), 58 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 37ffffa2d0a6..c2abc4c073af 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.89.0`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0210c7f896e971346409fdb630a22ea0df87ed9f/5/debian/Dockerfile) +- [`5.89.1`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5d4a006ca8d49802981b640dd1c0f69df5dd5c31/5/debian/Dockerfile) -- [`5.89.0-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0210c7f896e971346409fdb630a22ea0df87ed9f/5/alpine/Dockerfile) +- [`5.89.1-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5d4a006ca8d49802981b640dd1c0f69df5dd5c31/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 4a460b6db466..05f3545c76c7 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-9-jdk-oraclelinux9`, `24-ea-9-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-9-jdk-oracle`, `24-ea-9-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-10-jdk-oraclelinux9`, `24-ea-10-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-10-jdk-oracle`, `24-ea-10-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-9-jdk-oraclelinux8`, `24-ea-9-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-10-jdk-oraclelinux8`, `24-ea-10-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-9-jdk-bookworm`, `24-ea-9-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/bookworm/Dockerfile) +- [`24-ea-10-jdk-bookworm`, `24-ea-10-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/bookworm/Dockerfile) -- [`24-ea-9-jdk-slim-bookworm`, `24-ea-9-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-9-jdk-slim`, `24-ea-9-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-10-jdk-slim-bookworm`, `24-ea-10-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-10-jdk-slim`, `24-ea-10-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-9-jdk-bullseye`, `24-ea-9-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/bullseye/Dockerfile) +- [`24-ea-10-jdk-bullseye`, `24-ea-10-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/bullseye/Dockerfile) -- [`24-ea-9-jdk-slim-bullseye`, `24-ea-9-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-10-jdk-slim-bullseye`, `24-ea-10-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-9-jdk-windowsservercore-ltsc2022`, `24-ea-9-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-10-jdk-windowsservercore-ltsc2022`, `24-ea-10-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-9-jdk-windowsservercore-1809`, `24-ea-9-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-10-jdk-windowsservercore-1809`, `24-ea-10-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-9-jdk-nanoserver-1809`, `24-ea-9-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-10-jdk-nanoserver-1809`, `24-ea-10-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-ea-35-jdk-oraclelinux9`, `23-ea-35-oraclelinux9`, `23-ea-jdk-oraclelinux9`, `23-ea-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-ea-35-jdk-oracle`, `23-ea-35-oracle`, `23-ea-jdk-oracle`, `23-ea-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux9/Dockerfile) +- [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux9/Dockerfile) -- [`23-ea-35-jdk-oraclelinux8`, `23-ea-35-oraclelinux8`, `23-ea-jdk-oraclelinux8`, `23-ea-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux8/Dockerfile) +- [`23-rc-jdk-oraclelinux8`, `23-rc-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux8/Dockerfile) -- [`23-ea-35-jdk-bookworm`, `23-ea-35-bookworm`, `23-ea-jdk-bookworm`, `23-ea-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/bookworm/Dockerfile) +- [`23-rc-jdk-bookworm`, `23-rc-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/bookworm/Dockerfile) -- [`23-ea-35-jdk-slim-bookworm`, `23-ea-35-slim-bookworm`, `23-ea-jdk-slim-bookworm`, `23-ea-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-ea-35-jdk-slim`, `23-ea-35-slim`, `23-ea-jdk-slim`, `23-ea-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/slim-bookworm/Dockerfile) +- [`23-rc-jdk-slim-bookworm`, `23-rc-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-rc-jdk-slim`, `23-rc-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/slim-bookworm/Dockerfile) -- [`23-ea-35-jdk-bullseye`, `23-ea-35-bullseye`, `23-ea-jdk-bullseye`, `23-ea-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/bullseye/Dockerfile) +- [`23-rc-jdk-bullseye`, `23-rc-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/bullseye/Dockerfile) -- [`23-ea-35-jdk-slim-bullseye`, `23-ea-35-slim-bullseye`, `23-ea-jdk-slim-bullseye`, `23-ea-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/slim-bullseye/Dockerfile) +- [`23-rc-jdk-slim-bullseye`, `23-rc-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/slim-bullseye/Dockerfile) -- [`23-ea-35-jdk-windowsservercore-ltsc2022`, `23-ea-35-windowsservercore-ltsc2022`, `23-ea-jdk-windowsservercore-ltsc2022`, `23-ea-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-rc-jdk-windowsservercore-ltsc2022`, `23-rc-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-ea-35-jdk-windowsservercore-1809`, `23-ea-35-windowsservercore-1809`, `23-ea-jdk-windowsservercore-1809`, `23-ea-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-rc-jdk-windowsservercore-1809`, `23-rc-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23-ea-35-jdk-nanoserver-1809`, `23-ea-35-nanoserver-1809`, `23-ea-jdk-nanoserver-1809`, `23-ea-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23-rc-jdk-nanoserver-1809`, `23-rc-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-9-jdk`, `24-ea-9`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-10-jdk`, `24-ea-10`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-9-jdk-windowsservercore`, `24-ea-9-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-10-jdk-windowsservercore`, `24-ea-10-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-9-jdk-nanoserver`, `24-ea-9-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-10-jdk-nanoserver`, `24-ea-10-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/944b40b29945baac42fc7eefb513c63120d03745/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-ea-35-jdk`, `23-ea-35`, `23-ea-jdk`, `23-ea`, `23-jdk`, `23`: +- `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: - - [`23-ea-35-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/oraclelinux9/Dockerfile) - - [`23-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux9/Dockerfile) + - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-35-jdk-windowsservercore`, `23-ea-35-windowsservercore`, `23-ea-jdk-windowsservercore`, `23-ea-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23-rc-jdk-windowsservercore`, `23-rc-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23-ea-35-jdk-nanoserver`, `23-ea-35-nanoserver`, `23-ea-jdk-nanoserver`, `23-ea-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23-rc-jdk-nanoserver`, `23-rc-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8d131a7a1ec18ef121b02b568c6268816a349da7/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index 45132b06f706..a7a746b40e84 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,37 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.1-scala2.12-java17-python3-ubuntu`, `3.5.1-java17-python3`, `3.5.1-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`4.0.0-preview1-scala2.13-java17-python3-ubuntu`, `4.0.0-preview1-python3`, `4.0.0-preview1`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-python3-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java17-r-ubuntu`, `3.5.1-java17-r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-r-ubuntu/Dockerfile) +- [`4.0.0-preview1-scala2.13-java17-r-ubuntu`, `4.0.0-preview1-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-r-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java17-ubuntu`, `3.5.1-java17-scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-ubuntu/Dockerfile) +- [`4.0.0-preview1-scala2.13-java17-ubuntu`, `4.0.0-preview1-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`4.0.0-preview1-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java11-python3-ubuntu`, `3.5.1-python3`, `3.5.1`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java17-python3-ubuntu`, `3.5.2-java17-python3`, `3.5.2-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java11-r-ubuntu`, `3.5.1-r`, `r`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java17-r-ubuntu`, `3.5.2-java17-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java11-ubuntu`, `3.5.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java17-ubuntu`, `3.5.2-java17-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4f2d96a415c89cfe0fde89a55e9034d095224c94/3.5.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java17-python3-ubuntu`, `3.5.0-java17-python3`, `3.5.0-java17`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java11-python3-ubuntu`, `3.5.2-python3`, `3.5.2`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java17-r-ubuntu`, `3.5.0-java17-r`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java11-r-ubuntu`, `3.5.2-r`, `r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java17-ubuntu`, `3.5.0-java17-scala`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java11-ubuntu`, `3.5.2-scala`, `scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.0-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f68fe0f7051c10f2bf43a50a7decfce2e97baf0/3.5.0/scala2.12-java17-python3-r-ubuntu/Dockerfile) - -- [`3.5.0-scala2.12-java11-python3-ubuntu`, `3.5.0-python3`, `3.5.0`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-ubuntu/Dockerfile) - -- [`3.5.0-scala2.12-java11-r-ubuntu`, `3.5.0-r`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-r-ubuntu/Dockerfile) - -- [`3.5.0-scala2.12-java11-ubuntu`, `3.5.0-scala`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-ubuntu/Dockerfile) - -- [`3.5.0-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/3.5.0/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) - [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `3.4.1`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) From 2a166c7e0f9c6309df2f789c3d97265bf5e61754 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 Aug 2024 17:09:00 -0700 Subject: [PATCH 1447/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index fe2bac3e2794..6fb8bc098152 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240722`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20240812`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240722-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20240812-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240722`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20240812`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240722-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20240812-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/experimental/Dockerfile) +- [`experimental`, `experimental-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/experimental/Dockerfile) -- [`oldstable`, `oldstable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/rc-buggy/Dockerfile) -- [`sid`, `sid-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/sid/Dockerfile) +- [`sid`, `sid-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/sid/Dockerfile) -- [`sid-slim`, `sid-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/sid/slim/Dockerfile) -- [`stable`, `stable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/Dockerfile) +- [`stable`, `stable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/slim/Dockerfile) -- [`testing`, `testing-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/Dockerfile) +- [`testing`, `testing-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/Dockerfile) +- [`trixie`, `trixie-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240722`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/unstable/Dockerfile) +- [`unstable`, `unstable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240722-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/64b6db21d496b54cf172e681a67a090c6f6318bc/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/unstable/slim/Dockerfile) # Quick reference (cont.) From 275e6bbd610e4d9993bf7aa6b103f7fe95c52913 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 Aug 2024 12:09:02 -0700 Subject: [PATCH 1448/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 16 ++++----- erlang/README.md | 18 +++++----- golang/README.md | 90 +++++++++++++++------------------------------- mongo/README.md | 30 ++++++++-------- rabbitmq/README.md | 8 ++--- spark/README.md | 8 ++--- xwiki/README.md | 6 ++-- 8 files changed, 73 insertions(+), 105 deletions(-) diff --git a/bash/README.md b/bash/README.md index 4d06bef8b45c..22f067ae6c35 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240730`, `devel`, `devel-20240730-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/b9f3fba007d7d27ace88ef8f77346b1b24e8d41f/devel/Dockerfile) +- [`devel-20240809`, `devel`, `devel-20240809-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8946204d8d1668f3d42243a38b6bae0115cad5c2/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 1f57e09eb1d6..cc2e17355f26 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.1.1-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/cli/Dockerfile) +- [`27.1.2-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/cli/Dockerfile) -- [`27.1.1-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.1-dind-alpine3.20`, `27.1.1`, `27.1`, `27`, `latest`, `27.1.1-alpine3.20`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind/Dockerfile) +- [`27.1.2-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.2-dind-alpine3.20`, `27.1.2`, `27.1`, `27`, `latest`, `27.1.2-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind/Dockerfile) -- [`27.1.1-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/bbf61df6eeacb77c1ecbd3b9c6c874c4e8918b84/27/dind-rootless/Dockerfile) +- [`27.1.2-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind-rootless/Dockerfile) -- [`27.1.1-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.1.2-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.1.1-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) +- [`27.1.2-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.1.1-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.1.2-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7447127c9f8d3e7087d71f3b15aced8fd624ea39/27/windows/windowsservercore-1809/Dockerfile) + - [`27.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index f9c85f74156a..a308c1b2ba8a 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.0.0.0`, `27.0.0`, `27.0`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/Dockerfile) +- [`27.0.1.0`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/Dockerfile) -- [`27.0.0.0-slim`, `27.0.0-slim`, `27.0-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/slim/Dockerfile) +- [`27.0.1.0-slim`, `27.0.1-slim`, `27.0-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/slim/Dockerfile) -- [`27.0.0.0-alpine`, `27.0.0-alpine`, `27.0-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/a8b82f1afd392c59a2f661dee663ed6084255a65/27/alpine/Dockerfile) +- [`27.0.1.0-alpine`, `27.0.1-alpine`, `27.0-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/alpine/Dockerfile) -- [`26.2.5.0`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/Dockerfile) +- [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/Dockerfile) -- [`26.2.5.0-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/slim/Dockerfile) +- [`26.2.5.2-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/slim/Dockerfile) -- [`26.2.5.0-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/26/alpine/Dockerfile) +- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/alpine/Dockerfile) -- [`25.3.2.12`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/Dockerfile) +- [`25.3.2.13`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/Dockerfile) -- [`25.3.2.12-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/slim/Dockerfile) +- [`25.3.2.13-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/slim/Dockerfile) -- [`25.3.2.12-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/22dcd723b94db5443c635183e2ea5bdbd5e7b297/25/alpine/Dockerfile) +- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) diff --git a/golang/README.md b/golang/README.md index bce1cfa7ad78..0bdbc79a2981 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,104 +28,72 @@ WARNING: ## Simple Tags -- [`1.23rc2-bookworm`, `1.23-rc-bookworm`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bookworm/Dockerfile) +- [`1.23.0-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bookworm/Dockerfile) -- [`1.23rc2-bullseye`, `1.23-rc-bullseye`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bullseye/Dockerfile) +- [`1.23.0-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bullseye/Dockerfile) -- [`1.23rc2-alpine3.20`, `1.23-rc-alpine3.20`, `1.23rc2-alpine`, `1.23-rc-alpine`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/alpine3.20/Dockerfile) +- [`1.23.0-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.0-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/alpine3.20/Dockerfile) -- [`1.23rc2-alpine3.19`, `1.23-rc-alpine3.19`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/alpine3.19/Dockerfile) +- [`1.23.0-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/alpine3.19/Dockerfile) -- [`1.23rc2-windowsservercore-ltsc2022`, `1.23-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.0-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23rc2-windowsservercore-1809`, `1.23-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.23.0-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23rc2-nanoserver-ltsc2022`, `1.23-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.0-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23rc2-nanoserver-1809`, `1.23-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) +- [`1.23.0-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.6-bookworm`, `1.22-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) +- [`1.22.6-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) -- [`1.22.6-bullseye`, `1.22-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bullseye/Dockerfile) +- [`1.22.6-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bullseye/Dockerfile) -- [`1.22.6-alpine3.20`, `1.22-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.22.6-alpine`, `1.22-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.20/Dockerfile) +- [`1.22.6-alpine3.20`, `1.22-alpine3.20`, `1.22.6-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.20/Dockerfile) -- [`1.22.6-alpine3.19`, `1.22-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.19/Dockerfile) +- [`1.22.6-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.19/Dockerfile) -- [`1.22.6-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.6-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.6-windowsservercore-1809`, `1.22-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.6-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.6-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.6-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.6-nanoserver-1809`, `1.22-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) - -- [`1.21.13-bookworm`, `1.21-bookworm`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bookworm/Dockerfile) - -- [`1.21.13-bullseye`, `1.21-bullseye`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bullseye/Dockerfile) - -- [`1.21.13-alpine3.20`, `1.21-alpine3.20`, `1.21.13-alpine`, `1.21-alpine`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/alpine3.20/Dockerfile) - -- [`1.21.13-alpine3.19`, `1.21-alpine3.19`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/alpine3.19/Dockerfile) - -- [`1.21.13-windowsservercore-ltsc2022`, `1.21-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.21.13-windowsservercore-1809`, `1.21-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) - -- [`1.21.13-nanoserver-ltsc2022`, `1.21-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-ltsc2022/Dockerfile) - -- [`1.21.13-nanoserver-1809`, `1.21-nanoserver-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-1809/Dockerfile) +- [`1.22.6-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.23rc2`, `1.23-rc`: +- `1.23.0`, `1.23`, `1`, `latest`: - - [`1.23rc2-bookworm`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/bookworm/Dockerfile) - - [`1.23rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.23.0-bookworm`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bookworm/Dockerfile) + - [`1.23.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23rc2-windowsservercore`, `1.23-rc-windowsservercore`: +- `1.23.0-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.23.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23rc2-nanoserver`, `1.23-rc-nanoserver`: +- `1.23.0-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/0f7f657aa4011345f663f34c252e2b4630ce7eea/1.23-rc/windows/nanoserver-1809/Dockerfile) + - [`1.23.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.6`, `1.22`, `1`, `latest`: +- `1.22.6`, `1.22`: - [`1.22.6-bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.6-windowsservercore`, `1.22-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.22.6-windowsservercore`, `1.22-windowsservercore`: - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.6-nanoserver`, `1.22-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.22.6-nanoserver`, `1.22-nanoserver`: - [`1.22.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) -- `1.21.13`, `1.21`: - - - [`1.21.13-bookworm`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/bookworm/Dockerfile) - - [`1.21.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) - -- `1.21.13-windowsservercore`, `1.21-windowsservercore`: - - - [`1.21.13-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.21.13-windowsservercore-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/windowsservercore-1809/Dockerfile) - -- `1.21.13-nanoserver`, `1.21-nanoserver`: - - - [`1.21.13-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.21.13-nanoserver-1809`](https://github.com/docker-library/golang/blob/aaed3270d35c8a4c8378d72a380890bafffcbec6/1.21/windows/nanoserver-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/mongo/README.md b/mongo/README.md index c3419f35a8a7..f5ea01fabb5e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc16-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/f9fd3b13f22665e05d51017ff4193d38bcb9c764/8.0-rc/Dockerfile) +- [`8.0.0-rc17-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/Dockerfile) -- [`8.0.0-rc16-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc17-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc16-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc17-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc16-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc17-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc16-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc17-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.13-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) @@ -90,21 +90,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc16`, `8.0-rc`: +- `8.0.0-rc17`, `8.0-rc`: - - [`8.0.0-rc16-noble`](https://github.com/docker-library/mongo/blob/f9fd3b13f22665e05d51017ff4193d38bcb9c764/8.0-rc/Dockerfile) - - [`8.0.0-rc16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc17-noble`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/Dockerfile) + - [`8.0.0-rc17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc16-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc17-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc16-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc17-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e3137ef2ab515a4b7b02487ec72cf3a02d14b667/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.13-rc1`, `7.0-rc`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index d946ff86d97e..bf254bbfdee6 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.3`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.4`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/7f88620e423c04f76b240bf3ab64e321c9d5fd9e/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-beta.3-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-beta.4-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.3-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.4-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/7f88620e423c04f76b240bf3ab64e321c9d5fd9e/4.0-rc/alpine/Dockerfile) -- [`4.0.0-beta.3-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-beta.4-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/ubuntu/Dockerfile) diff --git a/spark/README.md b/spark/README.md index a7a746b40e84..dcdbe4c59325 100644 --- a/spark/README.md +++ b/spark/README.md @@ -48,13 +48,13 @@ WARNING: - [`3.5.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-python3-ubuntu`, `3.4.1-python3`, `3.4.1`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.4.2-scala2.12-java11-python3-ubuntu`, `3.4.2-python3`, `3.4.2`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-r-ubuntu`, `3.4.1-r`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.4.2-scala2.12-java11-r-ubuntu`, `3.4.2-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-ubuntu`, `3.4.1-scala`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-ubuntu/Dockerfile) +- [`3.4.2-scala2.12-java11-ubuntu`, `3.4.2-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-ubuntu/Dockerfile) -- [`3.4.1-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/58d288546e8419d229f14b62b6a653999e0390f1/3.4.1/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.4.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 2318625ec1d3..f265ddc12659 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.1`, `16.4-mysql-tomcat`, `16.4.1-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.2`, `16.4-mysql-tomcat`, `16.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.1-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.1-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/1cfea6577f63263f4b7cacf8de13ebdd98f24ffa/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From 4654f0856e29c86bedaeac6536e7485aa7dae9fa Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Le Duigou Date: Wed, 14 Aug 2024 09:57:52 +0000 Subject: [PATCH 1449/2686] Update to Go 1.23 --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index d0321dfdf226..43cc1a13cb32 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.22 +FROM %%IMAGE%%:1.23 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.22 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.23 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.22 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From 9afe4d6c7fe2efe1dd8887a97db6771689a8f32a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Aug 2024 11:09:02 -0700 Subject: [PATCH 1450/2686] Run update.sh --- aerospike/README.md | 4 ++-- fedora/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index b397e74b765b..01dde13b9a1c 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.4`, `ee-7.1.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5b0b75ffdc67ec24173935876f571cd1ebe47e4f/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.5`, `ee-7.1.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/ea12c2c1fcc26f2f3aa270fba7af8b32a0ca0026/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.4`, `ce-7.1.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5b0b75ffdc67ec24173935876f571cd1ebe47e4f/community/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.5`, `ce-7.1.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/ea12c2c1fcc26f2f3aa270fba7af8b32a0ca0026/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 0f57ed6fc23a..f5dafd9ca0e5 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8e39969bbb6fb9482cede31c19e969c48252939b/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e493147cb7383bda672f4295c09e435d83047efa/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7f9dbbf47c41b95d34c7722927bb93816956cfe1/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/978adc7dc216f09fca95de7174734748710fe1df/x86_64/Dockerfile) -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/68b26415c2ff3605aed2f7c737b74048b23d7fdf/x86_64/Dockerfile) +- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c527fe0bcd2f1d8fbbbe61467ad50546567a655b/x86_64/Dockerfile) # Quick reference (cont.) From 9d9d41e270325e9cb9aba87242329ab046f2f54c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 Aug 2024 17:09:02 -0700 Subject: [PATCH 1451/2686] Run update.sh --- golang/README.md | 10 +++++----- oraclelinux/README.md | 18 +++++++++--------- spark/README.md | 8 ++++---- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/golang/README.md b/golang/README.md index 0bdbc79a2981..5c6f5dd88633 100644 --- a/golang/README.md +++ b/golang/README.md @@ -130,7 +130,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.22 +FROM golang:1.23 WORKDIR /usr/src/app @@ -156,13 +156,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 make ``` ## Cross-compile your app inside the Docker container @@ -170,13 +170,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.22 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.23 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.22 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d51dec654393..7957fd269cb8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b99233acc86d93ff471c861cdc4ccbd5f83f91e9/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index dcdbe4c59325..8d8b02915503 100644 --- a/spark/README.md +++ b/spark/README.md @@ -48,13 +48,13 @@ WARNING: - [`3.5.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) -- [`3.4.2-scala2.12-java11-python3-ubuntu`, `3.4.2-python3`, `3.4.2`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.4.3-scala2.12-java11-python3-ubuntu`, `3.4.3-python3`, `3.4.3`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.4.2-scala2.12-java11-r-ubuntu`, `3.4.2-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.4.3-scala2.12-java11-r-ubuntu`, `3.4.3-r`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.4.2-scala2.12-java11-ubuntu`, `3.4.2-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-ubuntu/Dockerfile) +- [`3.4.3-scala2.12-java11-ubuntu`, `3.4.3-scala`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-ubuntu/Dockerfile) -- [`3.4.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.4.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.4.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) From c59ecd8cd54fa7119dd55a487b8b19248981b09d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Aug 2024 10:08:56 -0700 Subject: [PATCH 1452/2686] Run update.sh --- ibmjava/README.md | 6 ++--- mariadb/README.md | 26 ++++++++++-------- nginx/README.md | 28 +++++++++---------- open-liberty/README.md | 54 ++++++++++++++++++------------------- swipl/README.md | 4 +-- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 6 files changed, 85 insertions(+), 81 deletions(-) diff --git a/ibmjava/README.md b/ibmjava/README.md index 97691cbed543..32eaa852e3ce 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/3fc8fdfa99b7f0a0e50e19919929d101040cbec7/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 9e424e4bd8fb..7bfc58759976 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,27 +26,31 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.5.1-ubi9-rc`, `11.5-ubi9-rc`, `11.5.1-ubi-rc`, `11.5-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/e730514e2771bdca0d7f66f8547ca418e20add8e/11.5-ubi/Dockerfile) +- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.6-ubi/Dockerfile) -- [`11.5.1-noble-rc`, `11.5-noble-rc`, `11.5.1-rc`, `11.5-rc`](https://github.com/MariaDB/mariadb-docker/blob/e730514e2771bdca0d7f66f8547ca418e20add8e/11.5/Dockerfile) +- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.6/Dockerfile) -- [`11.4.3-ubi9`, `11.4-ubi9`, `11-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.4-ubi/Dockerfile) +- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.5-ubi/Dockerfile) -- [`11.4.3-noble`, `11.4-noble`, `11-noble`, `noble`, `lts-noble`, `11.4.3`, `11.4`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.4/Dockerfile) +- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.5/Dockerfile) -- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.2/Dockerfile) +- [`11.4.3-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.4-ubi/Dockerfile) -- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/11.1/Dockerfile) +- [`11.4.3-noble`, `11.4-noble`, `lts-noble`, `11.4.3`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.4/Dockerfile) -- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.11-ubi/Dockerfile) +- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.2/Dockerfile) -- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.11/Dockerfile) +- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.1/Dockerfile) -- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.6-ubi/Dockerfile) +- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.11-ubi/Dockerfile) -- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.6/Dockerfile) +- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.11/Dockerfile) -- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/fb808506356ee526e7e12a86e74423b14ad69f8f/10.5/Dockerfile) +- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.6-ubi/Dockerfile) + +- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.6/Dockerfile) + +- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.5/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index 9a046eff1df9..fa679a2cdcc9 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.0`, `mainline`, `1`, `1.27`, `latest`, `1.27.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/mainline/debian/Dockerfile) +- [`1.27.1`, `mainline`, `1`, `1.27`, `latest`, `1.27.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian/Dockerfile) -- [`1.27.0-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-perl/Dockerfile) +- [`1.27.1-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian-perl/Dockerfile) -- [`1.27.0-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/mainline/debian-otel/Dockerfile) +- [`1.27.1-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.1-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian-otel/Dockerfile) -- [`1.27.0-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.0-alpine3.19`, `mainline-alpine3.19`, `1-alpine3.19`, `1.27-alpine3.19`, `alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine/Dockerfile) +- [`1.27.1-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.1-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine/Dockerfile) -- [`1.27.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.0-alpine3.19-perl`, `mainline-alpine3.19-perl`, `1-alpine3.19-perl`, `1.27-alpine3.19-perl`, `alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-perl/Dockerfile) +- [`1.27.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.1-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-perl/Dockerfile) -- [`1.27.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.0-alpine3.19-slim`, `mainline-alpine3.19-slim`, `1-alpine3.19-slim`, `1.27-alpine3.19-slim`, `alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-slim/Dockerfile) +- [`1.27.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.1-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-slim/Dockerfile) -- [`1.27.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.0-alpine3.19-otel`, `mainline-alpine3.19-otel`, `1-alpine3.19-otel`, `1.27-alpine3.19-otel`, `alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/mainline/alpine-otel/Dockerfile) +- [`1.27.1-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.1-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-otel/Dockerfile) -- [`1.26.1`, `stable`, `1.26`, `1.26.1-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/a6f7d140744f8b15ff4314b8718b3f022efc7f43/stable/debian/Dockerfile) +- [`1.26.2`, `stable`, `1.26`, `1.26.2-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian/Dockerfile) -- [`1.26.1-perl`, `stable-perl`, `1.26-perl`, `1.26.1-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-perl/Dockerfile) +- [`1.26.2-perl`, `stable-perl`, `1.26-perl`, `1.26.2-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian-perl/Dockerfile) -- [`1.26.1-otel`, `stable-otel`, `1.26-otel`, `1.26.1-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/3180cdbec313dc4a9f6dd1109ae66adaf98f11fb/stable/debian-otel/Dockerfile) +- [`1.26.2-otel`, `stable-otel`, `1.26-otel`, `1.26.2-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian-otel/Dockerfile) -- [`1.26.1-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.1-alpine3.19`, `stable-alpine3.19`, `1.26-alpine3.19`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine/Dockerfile) +- [`1.26.2-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.2-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine/Dockerfile) -- [`1.26.1-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.1-alpine3.19-perl`, `stable-alpine3.19-perl`, `1.26-alpine3.19-perl`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-perl/Dockerfile) +- [`1.26.2-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.2-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine-perl/Dockerfile) -- [`1.26.1-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.1-alpine3.19-slim`, `stable-alpine3.19-slim`, `1.26-alpine3.19-slim`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-slim/Dockerfile) +- [`1.26.2-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.2-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/1c99bf1406f95d5fbddb4c9f246e67ad07f79642/stable/alpine-slim/Dockerfile) -- [`1.26.1-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.1-alpine3.19-otel`, `stable-alpine3.19-otel`, `1.26-alpine3.19-otel`](https://github.com/nginxinc/docker-nginx/blob/94a27ac42d45670d941a55334d89e80760f7cc8e/stable/alpine-otel/Dockerfile) +- [`1.26.2-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.2-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine-otel/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 1db7c1ddf619..c06b72a122cf 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/16c6582c0a5ef103599afebd36199c56a0a77c33/releases/24.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 2e227f7400f3..31f04764a0b6 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.8`](https://github.com/SWI-Prolog/docker-swipl/blob/053b5508dfed21e7549947113893517c64494cce/9.3.8/bookworm/Dockerfile) +- [`latest`, `9.3.9`](https://github.com/SWI-Prolog/docker-swipl/blob/4c15bb03b82ab39fb3bdf6579ad66014111faa11/9.3.9/bookworm/Dockerfile) -- [`stable`, `9.2.6`](https://github.com/SWI-Prolog/docker-swipl/blob/053b5508dfed21e7549947113893517c64494cce/9.2.6/bookworm/Dockerfile) +- [`stable`, `9.2.6`](https://github.com/SWI-Prolog/docker-swipl/blob/4c15bb03b82ab39fb3bdf6579ad66014111faa11/9.2.6/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 25666f046b3a..d0084a4c591c 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/aa27db79927d648f30fc6cdb0589034f343c5666/ga/24.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From c365f819b88108f9f98d93d61216e4062dcc35e3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 Aug 2024 11:09:04 -0700 Subject: [PATCH 1453/2686] Run update.sh --- gradle/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 128692c17299..9a4d6d619b91 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.9.0-jdk8`, `8.9-jdk8`, `8-jdk8`, `jdk8`, `8.9.0-jdk8-jammy`, `8.9-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk8/Dockerfile) +- [`8.10.0-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.0-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk8/Dockerfile) -- [`8.9.0-jdk8-focal`, `8.9-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk8-focal/Dockerfile) +- [`8.10.0-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk8-focal/Dockerfile) -- [`8.9.0-jdk11`, `8.9-jdk11`, `8-jdk11`, `jdk11`, `8.9.0-jdk11-jammy`, `8.9-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11/Dockerfile) +- [`8.10.0-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.0-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11/Dockerfile) -- [`8.9.0-jdk11-focal`, `8.9-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11-focal/Dockerfile) +- [`8.10.0-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11-focal/Dockerfile) -- [`8.9.0-jdk11-alpine`, `8.9-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk11-alpine/Dockerfile) +- [`8.10.0-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11-alpine/Dockerfile) -- [`8.9.0-jdk17`, `8.9-jdk17`, `8-jdk17`, `jdk17`, `8.9.0-jdk17-jammy`, `8.9-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17/Dockerfile) +- [`8.10.0-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.0-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17/Dockerfile) -- [`8.9.0-jdk17-focal`, `8.9-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.9.0-jdk-focal`, `8.9-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.9.0-focal`, `8.9-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-focal/Dockerfile) +- [`8.10.0-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.0-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.0-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-focal/Dockerfile) -- [`8.9.0-jdk17-alpine`, `8.9-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.9.0-jdk-alpine`, `8.9-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-alpine/Dockerfile) +- [`8.10.0-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.0-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-alpine/Dockerfile) -- [`8.9.0-jdk17-graal`, `8.9-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.9.0-jdk-graal`, `8.9-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.9.0-graal`, `8.9-graal`, `8-graal`, `graal`, `8.9.0-jdk17-graal-jammy`, `8.9-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.9.0-jdk-graal-jammy`, `8.9-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.9.0-graal-jammy`, `8.9-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk17-graal/Dockerfile) +- [`8.10.0-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.0-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.0-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.0-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.0-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.0-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-graal/Dockerfile) -- [`8.9.0-jdk21`, `8.9-jdk21`, `8-jdk21`, `jdk21`, `8.9.0-jdk21-jammy`, `8.9-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.9.0-jdk`, `8.9-jdk`, `8-jdk`, `jdk`, `8.9.0`, `8.9`, `8`, `8.9.0-jdk-jammy`, `8.9-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.9.0-jammy`, `8.9-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21/Dockerfile) +- [`8.10.0-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.0-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.0-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.0`, `8.10`, `8`, `8.10.0-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.0-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21/Dockerfile) -- [`8.9.0-jdk21-alpine`, `8.9-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.9.0-alpine`, `8.9-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21-alpine/Dockerfile) +- [`8.10.0-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.0-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21-alpine/Dockerfile) -- [`8.9.0-jdk21-graal`, `8.9-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.9.0-jdk21-graal-jammy`, `8.9-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk21-graal/Dockerfile) +- [`8.10.0-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.0-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21-graal/Dockerfile) -- [`8.9.0-jdk22`, `8.9-jdk22`, `8-jdk22`, `jdk22`, `8.9.0-jdk22-jammy`, `8.9-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22/Dockerfile) +- [`8.10.0-jdk22`, `8.10-jdk22`, `8-jdk22`, `jdk22`, `8.10.0-jdk22-jammy`, `8.10-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22/Dockerfile) -- [`8.9.0-jdk22-alpine`, `8.9-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22-alpine/Dockerfile) +- [`8.10.0-jdk22-alpine`, `8.10-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22-alpine/Dockerfile) -- [`8.9.0-jdk22-graal`, `8.9-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk22-graal/Dockerfile) +- [`8.10.0-jdk22-graal`, `8.10-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22-graal/Dockerfile) -- [`8.9.0-jdk-lts-and-current`, `8.9-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.9.0-jdk-lts-and-current-jammy`, `8.9-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.9.0-jdk-21-and-22`, `8.9-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.9.0-jdk-21-and-22-jammy`, `8.9-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current/Dockerfile) +- [`8.10.0-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.0-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.0-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.0-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current/Dockerfile) -- [`8.9.0-jdk-lts-and-current-alpine`, `8.9-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.9.0-jdk-21-and-22-alpine`, `8.9-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current-alpine/Dockerfile) +- [`8.10.0-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.0-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current-alpine/Dockerfile) -- [`8.9.0-jdk-lts-and-current-graal`, `8.9-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.9.0-jdk-lts-and-current-graal-jammy`, `8.9-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.9.0-jdk-21-and-22-graal`, `8.9-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.9.0-jdk-21-and-22-graal-jammy`, `8.9-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/502641f3165bdd0e1381ffb6e77f567d6f6d8893/jdk-lts-and-current-graal/Dockerfile) +- [`8.10.0-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.0-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.0-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.0-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From bfe0dc28baa959d5f94452e610ab14428b6ac547 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Aug 2024 11:08:56 -0700 Subject: [PATCH 1454/2686] Run update.sh --- matomo/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index f6ae05cca877..68c822e62e24 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.0`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/apache/Dockerfile) +- [`5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/apache/Dockerfile) -- [`5.1.0-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm/Dockerfile) +- [`5.1.1-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/fpm/Dockerfile) -- [`5.1.0-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/417f15cd95e76177834c2055977145311c973cd1/fpm-alpine/Dockerfile) +- [`5.1.1-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/matomo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/matomo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/matomo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/matomo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/matomo/), [`i386`](https://hub.docker.com/r/i386/matomo/), [`mips64le`](https://hub.docker.com/r/mips64le/matomo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/matomo/), [`s390x`](https://hub.docker.com/r/s390x/matomo/) + [`amd64`](https://hub.docker.com/r/amd64/matomo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/matomo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/matomo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/matomo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/matomo/), [`i386`](https://hub.docker.com/r/i386/matomo/), [`mips64le`](https://hub.docker.com/r/mips64le/matomo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/matomo/), [`riscv64`](https://hub.docker.com/r/riscv64/matomo/), [`s390x`](https://hub.docker.com/r/s390x/matomo/) - **Published image artifact details**: [repo-info repo's `repos/matomo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/matomo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/matomo)) From 25413b01919ff6bbeee5aae1267421e555b1e0e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Aug 2024 14:09:20 -0700 Subject: [PATCH 1455/2686] Run update.sh --- docker/README.md | 10 +++--- openjdk/README.md | 36 ++++++++++---------- php/README.md | 84 ++++++++++++++++++++++++++++++++++++++-------- rabbitmq/README.md | 4 +-- 4 files changed, 95 insertions(+), 39 deletions(-) diff --git a/docker/README.md b/docker/README.md index cc2e17355f26..25cab68ef191 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.1.2-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/cli/Dockerfile) +- [`27.1.2-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/cli/Dockerfile) - [`27.1.2-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.2-dind-alpine3.20`, `27.1.2`, `27.1`, `27`, `latest`, `27.1.2-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind/Dockerfile) - [`27.1.2-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind-rootless/Dockerfile) -- [`27.1.2-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.1.2-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.1.2-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-1809/Dockerfile) +- [`27.1.2-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.1.2-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/windows/windowsservercore-1809/Dockerfile) + - [`27.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 05f3545c76c7..9c2b733423ed 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-10-jdk-oraclelinux9`, `24-ea-10-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-10-jdk-oracle`, `24-ea-10-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-11-jdk-oraclelinux9`, `24-ea-11-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-11-jdk-oracle`, `24-ea-11-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-10-jdk-oraclelinux8`, `24-ea-10-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-11-jdk-oraclelinux8`, `24-ea-11-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-10-jdk-bookworm`, `24-ea-10-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/bookworm/Dockerfile) +- [`24-ea-11-jdk-bookworm`, `24-ea-11-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/bookworm/Dockerfile) -- [`24-ea-10-jdk-slim-bookworm`, `24-ea-10-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-10-jdk-slim`, `24-ea-10-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-11-jdk-slim-bookworm`, `24-ea-11-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-11-jdk-slim`, `24-ea-11-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-10-jdk-bullseye`, `24-ea-10-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/bullseye/Dockerfile) +- [`24-ea-11-jdk-bullseye`, `24-ea-11-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/bullseye/Dockerfile) -- [`24-ea-10-jdk-slim-bullseye`, `24-ea-10-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-11-jdk-slim-bullseye`, `24-ea-11-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-10-jdk-windowsservercore-ltsc2022`, `24-ea-10-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-11-jdk-windowsservercore-ltsc2022`, `24-ea-11-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-10-jdk-windowsservercore-1809`, `24-ea-10-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-11-jdk-windowsservercore-1809`, `24-ea-11-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-10-jdk-nanoserver-1809`, `24-ea-10-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-11-jdk-nanoserver-1809`, `24-ea-11-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `24-ea-10-jdk`, `24-ea-10`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-11-jdk`, `24-ea-11`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-10-jdk-windowsservercore`, `24-ea-10-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-11-jdk-windowsservercore`, `24-ea-11-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-10-jdk-nanoserver`, `24-ea-10-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-11-jdk-nanoserver`, `24-ea-11-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/63e05f7bcba2416fc4c008b055d5f436ef9ad952/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: diff --git a/php/README.md b/php/README.md index 149d48a051d4..a8ea3f42ad7c 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0alpha4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0alpha4-bookworm`, `8.4-rc-bookworm`, `8.4.0alpha4-cli`, `8.4-rc-cli`, `8.4.0alpha4`, `8.4-rc`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0beta3-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta3-bookworm`, `8.4-rc-bookworm`, `8.4.0beta3-cli`, `8.4-rc-cli`, `8.4.0beta3`, `8.4-rc`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0alpha4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0alpha4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0beta3-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta3-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0alpha4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0alpha4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0beta3-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta3-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0alpha4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0alpha4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0beta3-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta3-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0alpha4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0alpha4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0beta3-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta3-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0alpha4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0beta3-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0alpha4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0beta3-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0alpha4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0beta3-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0alpha4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0alpha4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0alpha4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0alpha4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0beta3-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta3-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta3-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta3-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0alpha4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0alpha4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0beta3-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta3-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0alpha4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0alpha4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0beta3-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta3-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0alpha4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0alpha4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0beta3-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta3-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0alpha4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0beta3-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0alpha4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/b9433900bb5e6d14658ea96afc2270e58a13ebab/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0beta3-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/zts/Dockerfile) + +- [`8.3.11RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.11RC1-bookworm`, `8.3-rc-bookworm`, `8.3.11RC1-cli`, `8.3-rc-cli`, `8.3.11RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.11RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.11RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.11RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.11RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.11RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.11RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.11RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.11RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.11RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.11RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.11RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.11RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.11RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.11RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.11RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.11RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.11RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.11RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.11RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.11RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.11RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.11RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.11RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.10-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.10-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.10-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.10`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.3.10-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.23RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.23RC1-bookworm`, `8.2-rc-bookworm`, `8.2.23RC1-cli`, `8.2-rc-cli`, `8.2.23RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.23RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.23RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.23RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.23RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.23RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.23RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.23RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.23RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.23RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.23RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.23RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.23RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.23RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.23RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.23RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.23RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.23RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.23RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.23RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.23RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.23RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.23RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.23RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.22-cli-bookworm`, `8.2-cli-bookworm`, `8.2.22-bookworm`, `8.2-bookworm`, `8.2.22-cli`, `8.2-cli`, `8.2.22`, `8.2`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/cli/Dockerfile) - [`8.2.22-apache-bookworm`, `8.2-apache-bookworm`, `8.2.22-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/apache/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index bf254bbfdee6..e20766a41af1 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -36,7 +36,7 @@ WARNING: - [`3.13.6-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/alpine/Dockerfile) +- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1859564dc3cf527127118836d293ed12f6138193/3.13/alpine/Dockerfile) - [`3.13.6-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/1859564dc3cf527127118836d293ed12f6138193/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) From 0e7686b66a44bc95fec758ee24dc46dcd9d0625c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Aug 2024 15:08:57 -0700 Subject: [PATCH 1456/2686] Run update.sh --- influxdb/README.md | 32 ++++++++++++++++---------------- ubuntu/README.md | 8 ++++---- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 357d96268e87..9f6664644c44 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.9`, `latest`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.9-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/de7128682e0380c94aaed70c804f643bb85855bb/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index d2ec2ab673fa..2f5b4f571205 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-f351639c&id=f351639c499dcde9b2d9e3aeb2b0344c4a01fc1e) +- [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-9699eddd&id=9699eddd402d702628046e17ab86ccc5ffb51adc) -- [`22.04`, `jammy-20240627.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240627.1-0d60927a&id=0d60927a24b045adcfbdb9a80b7db3bf6bd9fd9b) +- [`22.04`, `jammy-20240808`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240808-4cf8c608&id=4cf8c608d2549bbd10cdce612c814dc60899ebde) -- [`24.04`, `noble-20240605`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240605-baf9888c&id=baf9888c79d71a0ae98d4ef87c838ca3c91f2245) +- [`24.04`, `noble-20240801`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240801-b0b2956a&id=b0b2956a333896413ad26c7ad96520ffe4d0ea89) -- [`24.10`, `oracular-20240617`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240617-43acaa26&id=43acaa26848f20fe7885f00637b5342967c8ae23) +- [`24.10`, `oracular-20240811.1`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240811.1-bee83f33&id=bee83f33ff87f39261ce0ef49970c4313c2772f6) # Quick reference (cont.) From 51e45c770319d2f509259571e0559b51397822fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 Aug 2024 17:09:08 -0700 Subject: [PATCH 1457/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c2abc4c073af..5703738c1e4a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.89.1`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5d4a006ca8d49802981b640dd1c0f69df5dd5c31/5/debian/Dockerfile) +- [`5.89.3`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e9f7189db474e28501fe41e59b13473cf6a60709/5/debian/Dockerfile) -- [`5.89.1-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5d4a006ca8d49802981b640dd1c0f69df5dd5c31/5/alpine/Dockerfile) +- [`5.89.3-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e9f7189db474e28501fe41e59b13473cf6a60709/5/alpine/Dockerfile) # Quick reference (cont.) From ea4c2769ac5ae1a06aeafd580b0b4a785089ad76 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 19 Aug 2024 11:08:58 -0700 Subject: [PATCH 1458/2686] Run update.sh --- archlinux/README.md | 6 ++-- clearlinux/README.md | 2 +- friendica/README.md | 24 ++++++--------- maven/README.md | 70 ++++++++++++++++++++++---------------------- odoo/README.md | 6 ++-- photon/README.md | 2 +- 6 files changed, 52 insertions(+), 58 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index c6679ac697c5..0b7314c03089 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.base) +- [`latest`, `base`, `base-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.base) -- [`base-devel`, `base-devel-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240811.0.253648`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7afc129a63ae475c411471f843c63cb3702a30c1/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index c61a16486a29..28bdb686d24d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2796025d007ea6237915b070547a5fd096eb7703/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4e64ac6abf04dad6c56178225b03c1bb4b667493/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 71ed2289f05e..3dee4b68a3e5 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,29 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023.12-apache`, `2023.12`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/apache/Dockerfile) +- [`2024.03-apache`, `2024.03`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/apache/Dockerfile) -- [`2023.12-fpm`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm/Dockerfile) +- [`2024.03-fpm`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm/Dockerfile) -- [`2023.12-fpm-alpine`](https://github.com/friendica/docker/blob/447b53e733bfbca2f52b52b355b6f791e5d58747/2023.12/fpm-alpine/Dockerfile) +- [`2024.03-fpm-alpine`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm-alpine/Dockerfile) -- [`2024.03-apache`, `apache`, `stable-apache`, `2024.03`, `latest`, `stable`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/apache/Dockerfile) +- [`2024.08-apache`, `apache`, `stable-apache`, `2024.08`, `latest`, `stable`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/apache/Dockerfile) -- [`2024.03-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm/Dockerfile) +- [`2024.08-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm/Dockerfile) -- [`2024.03-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm-alpine/Dockerfile) +- [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) -- [`2024.06-dev-apache`, `dev-apache`, `2024.06-dev`, `dev`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/apache/Dockerfile) +- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/apache/Dockerfile) -- [`2024.06-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm/Dockerfile) +- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/fpm/Dockerfile) -- [`2024.06-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/896354f9ae8b175316d13c3a45206cccbd25da51/2024.06-dev/fpm-alpine/Dockerfile) - -- [`2024.06-rc-apache`, `rc-apache`, `2024.06-rc`, `rc`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/apache/Dockerfile) - -- [`2024.06-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm/Dockerfile) - -- [`2024.06-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/a731c5687c992951d090a39462f1cf5c53d8a488/2024.06-rc/fpm-alpine/Dockerfile) +- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 5cc4aa6101a8..8abd3dca9f03 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,75 +24,75 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.8-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11/Dockerfile) +- [`3.9.9-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11/Dockerfile) -- [`3.9.8-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.8-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.8-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17/Dockerfile) +- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17/Dockerfile) -- [`3.9.8-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.8-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.8-eclipse-temurin-21`, `3.9.8`, `3.9.8-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21/Dockerfile) +- [`3.9.9-eclipse-temurin-21`, `3.9.9`, `3.9.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21/Dockerfile) -- [`3.9.8-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.8-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-21-jammy/Dockerfile) +- [`3.9.9-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.8-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22/Dockerfile) +- [`3.9.9-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22/Dockerfile) -- [`3.9.8-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22-alpine/Dockerfile) -- [`3.9.8-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-22-jammy/Dockerfile) +- [`3.9.9-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22-jammy/Dockerfile) -- [`3.9.8-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8/Dockerfile) +- [`3.9.9-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8/Dockerfile) -- [`3.9.8-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.8-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.8-ibmjava-8`, `3.9.8-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibmjava-8/Dockerfile) +- [`3.9.9-ibmjava-8`, `3.9.9-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibmjava-8/Dockerfile) -- [`3.9.8-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-11-focal/Dockerfile) +- [`3.9.9-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-11-focal/Dockerfile) -- [`3.9.8-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-17-focal/Dockerfile) +- [`3.9.9-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-17-focal/Dockerfile) -- [`3.9.8-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/ibm-semeru-21-jammy/Dockerfile) +- [`3.9.9-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.8-amazoncorretto-11`, `3.9.8-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11/Dockerfile) +- [`3.9.9-amazoncorretto-11`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11/Dockerfile) -- [`3.9.8-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.8-amazoncorretto-11-debian`, `3.9.8-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-11-debian/Dockerfile) +- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11-debian/Dockerfile) -- [`3.9.8-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17/Dockerfile) +- [`3.9.9-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17/Dockerfile) -- [`3.9.8-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.8-amazoncorretto-17-debian`, `3.9.8-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-17-debian/Dockerfile) +- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17-debian/Dockerfile) -- [`3.9.8-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21/Dockerfile) +- [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21/Dockerfile) -- [`3.9.8-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.8-amazoncorretto-21-debian`, `3.9.8-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-21-debian/Dockerfile) +- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21-debian/Dockerfile) -- [`3.9.8-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8/Dockerfile) +- [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8/Dockerfile) -- [`3.9.8-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.8-amazoncorretto-8-debian`, `3.9.8-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/amazoncorretto-8-debian/Dockerfile) +- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8-debian/Dockerfile) -- [`3.9.8-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-11/Dockerfile) +- [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-11/Dockerfile) -- [`3.9.8-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-17/Dockerfile) +- [`3.9.9-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-17/Dockerfile) -- [`3.9.8-sapmachine-21`, `3.9.8-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-21/Dockerfile) +- [`3.9.9-sapmachine-21`, `3.9.9-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-21/Dockerfile) -- [`3.9.8-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/fdcf2d74af5f00bd39fff94b9a118eb9cfdbb3a6/sapmachine-22/Dockerfile) +- [`3.9.9-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-22/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 17d4957009e1..a769ae789a9b 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240812`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/17.0/Dockerfile) +- [`17.0-20240819`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/17.0/Dockerfile) -- [`16.0-20240812`, `16.0`, `16`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/16.0/Dockerfile) +- [`16.0-20240819`, `16.0`, `16`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/16.0/Dockerfile) -- [`15.0-20240812`, `15.0`, `15`](https://github.com/odoo/docker/blob/801d34e4b41dbf16f81650b9e0c6fbbd302d5fb6/15.0/Dockerfile) +- [`15.0-20240819`, `15.0`, `15`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 196443f86563..796800d1344d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240811`, `latest`](https://github.com/vmware/photon-docker-image/blob/addcaa0896dfc5666377dd0b93ab4a7e0ed376ef/docker/Dockerfile) +- [`5.0`, `5.0-20240818`, `latest`](https://github.com/vmware/photon-docker-image/blob/98707d5261f305d1409ca133e5b0969df387867b/docker/Dockerfile) - [`4.0`, `4.0-20240811`](https://github.com/vmware/photon-docker-image/blob/f7956f0db606de9f7ad792069fc8af72ffae5550/docker/Dockerfile) From 24f0910adeba9fa518fcfb4a9fce450980ea25fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 19 Aug 2024 12:09:03 -0700 Subject: [PATCH 1459/2686] Run update.sh --- cassandra/README.md | 2 +- docker/README.md | 15 +++++++++++++++ mongo/README.md | 30 +++++++++++++++--------------- rabbitmq/README.md | 8 ++++---- 4 files changed, 35 insertions(+), 20 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 0fcdaa6ca6fb..bb547b7a528a 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0-rc1`, `5.0`, `5`, `5.0-rc1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/7ebf445be0a2847cfe94cf1cee3f3b9df891f0d1/5.0/Dockerfile) -- [`4.1.5`, `4.1`, `4`, `latest`, `4.1.5-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/7ae558bbbbfa3f07eaaecae0ff84a4537d37c570/4.1/Dockerfile) +- [`4.1.6`, `4.1`, `4`, `latest`, `4.1.6-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/72bda687322eef86992681e21ce54bd2351c2573/4.1/Dockerfile) - [`4.0.13`, `4.0`, `4.0.13-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b51ed0210fc94d22dce73d8f07d1af1a3416d56a/4.0/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 25cab68ef191..595bb93e47b7 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`27.2.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.2.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/cli/Dockerfile) + +- [`27.2.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.2.0-rc.1-dind-alpine3.20`, `27.2.0-rc.1`, `27-rc`, `rc`, `27.2.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/dind/Dockerfile) + +- [`27.2.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/dind-rootless/Dockerfile) + +- [`27.2.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`27.2.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.1.2-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/cli/Dockerfile) - [`27.1.2-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.2-dind-alpine3.20`, `27.1.2`, `27.1`, `27`, `latest`, `27.1.2-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind/Dockerfile) @@ -40,6 +50,11 @@ WARNING: ## Shared Tags +- `27.2.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + + - [`27.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-1809/Dockerfile) + - `27.1.2-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - [`27.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index f5ea01fabb5e..3b7d9fbad0b3 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc17-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/Dockerfile) +- [`8.0.0-rc18-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/Dockerfile) -- [`8.0.0-rc17-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc18-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc17-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc18-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc17-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc18-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc17-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc18-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.13-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) @@ -90,21 +90,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc17`, `8.0-rc`: +- `8.0.0-rc18`, `8.0-rc`: - - [`8.0.0-rc17-noble`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/Dockerfile) - - [`8.0.0-rc17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc18-noble`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/Dockerfile) + - [`8.0.0-rc18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc17-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc18-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc17-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc18-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ac5a350fa73b30c0a34588260224d61509fe9754/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.13-rc1`, `7.0-rc`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e20766a41af1..14ea71b9e7cc 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.4`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/7f88620e423c04f76b240bf3ab64e321c9d5fd9e/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.5`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/9d679df50f50556fbc2f0d973783c8348d4e23ca/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-beta.4-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-beta.5-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.4-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/7f88620e423c04f76b240bf3ab64e321c9d5fd9e/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.5-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/9d679df50f50556fbc2f0d973783c8348d4e23ca/4.0-rc/alpine/Dockerfile) -- [`4.0.0-beta.4-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-beta.5-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/ubuntu/Dockerfile) From 2b0d3f4b41939abcd63b24258e24a6254cbcfc4e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 19 Aug 2024 14:08:59 -0700 Subject: [PATCH 1460/2686] Run update.sh --- eclipse-mosquitto/README.md | 2 +- plone/README.md | 2 +- satosa/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 666b393969ba..32985159bf8a 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -36,7 +36,7 @@ WARNING: [https://github.com/eclipse/mosquitto/issues](https://github.com/eclipse/mosquitto/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/eclipse-mosquitto/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eclipse-mosquitto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-mosquitto/), [`i386`](https://hub.docker.com/r/i386/eclipse-mosquitto/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-mosquitto/), [`s390x`](https://hub.docker.com/r/s390x/eclipse-mosquitto/) + [`amd64`](https://hub.docker.com/r/amd64/eclipse-mosquitto/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eclipse-mosquitto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-mosquitto/), [`i386`](https://hub.docker.com/r/i386/eclipse-mosquitto/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-mosquitto/) - **Published image artifact details**: [repo-info repo's `repos/eclipse-mosquitto/` directory](https://github.com/docker-library/repo-info/blob/master/repos/eclipse-mosquitto) ([history](https://github.com/docker-library/repo-info/commits/master/repos/eclipse-mosquitto)) diff --git a/plone/README.md b/plone/README.md index 1fa37e4daf72..dd7c00c0cdbd 100644 --- a/plone/README.md +++ b/plone/README.md @@ -32,7 +32,7 @@ WARNING: [https://github.com/plone/plone.docker/issues](https://github.com/plone/plone.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/plone/), [`arm64v8`](https://hub.docker.com/r/arm64v8/plone/) + [`amd64`](https://hub.docker.com/r/amd64/plone/) - **Published image artifact details**: [repo-info repo's `repos/plone/` directory](https://github.com/docker-library/repo-info/blob/master/repos/plone) ([history](https://github.com/docker-library/repo-info/commits/master/repos/plone)) diff --git a/satosa/README.md b/satosa/README.md index 277e87c6dd94..984a467541af 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -44,7 +44,7 @@ WARNING: [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) + [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/) - **Published image artifact details**: [repo-info repo's `repos/satosa/` directory](https://github.com/docker-library/repo-info/blob/master/repos/satosa) ([history](https://github.com/docker-library/repo-info/commits/master/repos/satosa)) From 97f98855cee939a876a8aab7ea30416a7fe40fa0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Aug 2024 12:08:57 -0700 Subject: [PATCH 1461/2686] Run update.sh --- api-firewall/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index d14323dbe24f..9f5e499287a3 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.7.4`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0ea1be5ada7c57564afb40d303b32eea3282c778/0.7.4/Dockerfile) +- [`0.8.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/66d6a4190b098f95c1e2b9382ded51a340c815d0/0.8.0/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 7957fd269cb8..69cb3b114bb8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ebd9ccbe2d59c8b0c99767e1a59367e102e726d8/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7-slim-fips/Dockerfile) # Quick reference (cont.) From 297f04f26dc7020353b0966b7ca81baef1396b8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 Aug 2024 17:23:20 -0700 Subject: [PATCH 1462/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bash/README.md b/bash/README.md index 22f067ae6c35..c9c1e69b6a21 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240809`, `devel`, `devel-20240809-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8946204d8d1668f3d42243a38b6bae0115cad5c2/devel/Dockerfile) +- [`devel-20240815`, `devel`, `devel-20240815-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/eb10e085749ee78dcd06c3fb01318ecd85448c62/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5703738c1e4a..d455cc8bc6b4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.89.3`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e9f7189db474e28501fe41e59b13473cf6a60709/5/debian/Dockerfile) +- [`5.89.5`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ca6282eef820248e7b4d51c8688e4ac48a112ee/5/debian/Dockerfile) -- [`5.89.3-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e9f7189db474e28501fe41e59b13473cf6a60709/5/alpine/Dockerfile) +- [`5.89.5-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ca6282eef820248e7b4d51c8688e4ac48a112ee/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 69cb3b114bb8..b2eb4452e987 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/53082608c83ad0df59197d2ac14f1c1403764bf6/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7-slim-fips/Dockerfile) # Quick reference (cont.) From f80da10a27ea507d6e916d33267c3217b5905d8a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Aug 2024 10:19:41 -0700 Subject: [PATCH 1463/2686] Run update.sh --- nextcloud/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index bb655387e0b5..8bfdfc94daa4 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.11-apache`, `27.1-apache`, `27-apache`, `27.1.11`, `27.1`, `27`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/apache/Dockerfile) +- [`28.0.9-apache`, `28.0-apache`, `28-apache`, `28.0.9`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/apache/Dockerfile) -- [`27.1.11-fpm`, `27.1-fpm`, `27-fpm`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/fpm/Dockerfile) +- [`28.0.9-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/fpm/Dockerfile) -- [`27.1.11-fpm-alpine`, `27.1-fpm-alpine`, `27-fpm-alpine`](https://github.com/nextcloud/docker/blob/f02b8b04e3017a4b601d41354f29d5039f3e10c0/27/fpm-alpine/Dockerfile) +- [`28.0.9-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/fpm-alpine/Dockerfile) -- [`28.0.8-apache`, `28.0-apache`, `28-apache`, `28.0.8`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/apache/Dockerfile) +- [`29.0.5-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.5`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/apache/Dockerfile) -- [`28.0.8-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/fpm/Dockerfile) +- [`29.0.5-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/fpm/Dockerfile) -- [`28.0.8-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/28/fpm-alpine/Dockerfile) - -- [`29.0.4-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.4`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/apache/Dockerfile) - -- [`29.0.4-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/fpm/Dockerfile) - -- [`29.0.4-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/258cc4ee2d0c4778f67b7b82066ad22dcdb6633f/29/fpm-alpine/Dockerfile) +- [`29.0.5-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/fpm-alpine/Dockerfile) # Quick reference (cont.) From febac7fe006045315100fe6242a7c487f49c45ab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Aug 2024 12:21:39 -0700 Subject: [PATCH 1464/2686] Run update.sh --- ghost/README.md | 4 ++-- mongo/README.md | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index d455cc8bc6b4..3c6a74c1be21 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.89.5`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ca6282eef820248e7b4d51c8688e4ac48a112ee/5/debian/Dockerfile) +- [`5.89.6`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ad5419396fce318c13714f205bf8e8829c6a9f9/5/debian/Dockerfile) -- [`5.89.5-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ca6282eef820248e7b4d51c8688e4ac48a112ee/5/alpine/Dockerfile) +- [`5.89.6-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ad5419396fce318c13714f205bf8e8829c6a9f9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 3b7d9fbad0b3..9ede5e39bcfb 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -78,6 +78,16 @@ WARNING: - [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.29-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/Dockerfile) + +- [`5.0.29-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`5.0.29-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`5.0.29-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`5.0.29-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-1809/Dockerfile) + - [`5.0.28-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) - [`5.0.28-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -170,6 +180,22 @@ WARNING: - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.29-rc0`, `5.0-rc`: + + - [`5.0.29-rc0-focal`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/Dockerfile) + - [`5.0.29-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.29-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `5.0.29-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + + - [`5.0.29-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.29-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `5.0.29-rc0-nanoserver`, `5.0-rc-nanoserver`: + + - [`5.0.29-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.29-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-1809/Dockerfile) + - `5.0.28`, `5.0`, `5`: - [`5.0.28-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) From 50640026d2e64bcaa9108a10799413756ed85f81 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Aug 2024 13:33:47 -0700 Subject: [PATCH 1465/2686] Run update.sh --- haproxy/README.md | 4 ++-- joomla/README.md | 48 +++++++++++++++++++++++------------------------ node/README.md | 12 ++++++------ openjdk/README.md | 26 ++++++++++++------------- 4 files changed, 45 insertions(+), 45 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index cee1a909c187..aeb33afb88e0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev5`, `3.1-dev`, `3.1-dev5-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/aa204b15e00e1e32e56efd4b92cceded52b41db5/3.1/Dockerfile) +- [`3.1-dev6`, `3.1-dev`, `3.1-dev6-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/54937702396000e9b7ef8494896e749ea96aa6aa/3.1/Dockerfile) -- [`3.1-dev5-alpine`, `3.1-dev-alpine`, `3.1-dev5-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/aa204b15e00e1e32e56efd4b92cceded52b41db5/3.1/alpine/Dockerfile) +- [`3.1-dev6-alpine`, `3.1-dev-alpine`, `3.1-dev6-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/54937702396000e9b7ef8494896e749ea96aa6aa/3.1/alpine/Dockerfile) - [`3.0.3`, `3.0`, `lts`, `latest`, `3.0.3-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index db7ca5c13825..85b9a2d612c8 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-alpha3-php8.1-apache`, `5.2-php8.1-apache`, `5.2.alpha-php8.1-apache`, `5.2.0-alpha-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/apache/Dockerfile) +- [`5.2.0-beta1-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/apache/Dockerfile) -- [`5.2.0-alpha3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.alpha-php8.1-fpm-alpine`, `5.2.0-alpha-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-beta1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-alpha3-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.alpha-php8.1-fpm`, `5.2.0-alpha-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.1/fpm/Dockerfile) +- [`5.2.0-beta1-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/fpm/Dockerfile) -- [`5.2.0-alpha3`, `5.2`, `5.2.alpha`, `5.2.0-alpha`, `5.2.0-alpha3-apache`, `5.2-apache`, `5.2.alpha-apache`, `5.2.0-alpha-apache`, `5.2.0-alpha3-php8.2`, `5.2-php8.2`, `5.2.alpha-php8.2`, `5.2.0-alpha-php8.2`, `5.2.0-alpha3-php8.2-apache`, `5.2-php8.2-apache`, `5.2.alpha-php8.2-apache`, `5.2.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/apache/Dockerfile) +- [`5.2.0-beta1`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta1-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta1-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta1-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/apache/Dockerfile) -- [`5.2.0-alpha3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.alpha-php8.2-fpm-alpine`, `5.2.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-beta1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-alpha3-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.alpha-php8.2-fpm`, `5.2.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.2/fpm/Dockerfile) +- [`5.2.0-beta1-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/fpm/Dockerfile) -- [`5.2.0-alpha3-php8.3-apache`, `5.2-php8.3-apache`, `5.2.alpha-php8.3-apache`, `5.2.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/apache/Dockerfile) +- [`5.2.0-beta1-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/apache/Dockerfile) -- [`5.2.0-alpha3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.alpha-php8.3-fpm-alpine`, `5.2.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-beta1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-alpha3-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.alpha-php8.3-fpm`, `5.2.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/de23e987f57789644dd2c9cd1da823c3784d5925/5.2.alpha/php8.3/fpm/Dockerfile) +- [`5.2.0-beta1-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/fpm/Dockerfile) -- [`5.1.2-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/apache/Dockerfile) +- [`5.1.3-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/apache/Dockerfile) -- [`5.1.2-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.3-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.2-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.1/fpm/Dockerfile) +- [`5.1.3-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/fpm/Dockerfile) -- [`5.1.2`, `5.1`, `5`, `latest`, `5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.2-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/apache/Dockerfile) +- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.3-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.3-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/apache/Dockerfile) -- [`5.1.2-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.3-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.2-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.2/fpm/Dockerfile) +- [`5.1.3-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/fpm/Dockerfile) -- [`5.1.2-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/apache/Dockerfile) +- [`5.1.3-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/apache/Dockerfile) -- [`5.1.2-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.3-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/fpm-alpine/Dockerfile) -- [`5.1.2-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/5.1/php8.3/fpm/Dockerfile) +- [`5.1.3-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/fpm/Dockerfile) -- [`4.4.6`, `4.4`, `4`, `4.4.6-apache`, `4.4-apache`, `4-apache`, `4.4.6-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.6-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/apache/Dockerfile) +- [`4.4.7`, `4.4`, `4`, `4.4.7-apache`, `4.4-apache`, `4-apache`, `4.4.7-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.7-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/apache/Dockerfile) -- [`4.4.6-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.7-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.6-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.1/fpm/Dockerfile) +- [`4.4.7-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/fpm/Dockerfile) -- [`4.4.6-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/apache/Dockerfile) +- [`4.4.7-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/apache/Dockerfile) -- [`4.4.6-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.7-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.6-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e/4.4/php8.2/fpm/Dockerfile) +- [`4.4.7-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 8952fc0988a9..9aa4f886f0e5 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`22-bullseye-slim`, `22.6-bullseye-slim`, `22.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.16-alpine3.19`, `20.16.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.17-alpine3.19`, `20.17.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.16-alpine`, `20.16-alpine3.20`, `20.16.0-alpine`, `20.16.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.17-alpine`, `20.17-alpine3.20`, `20.17.0-alpine`, `20.17.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.16`, `20.16-bookworm`, `20.16.0`, `20.16.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.17`, `20.17-bookworm`, `20.17.0`, `20.17.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.16-bookworm-slim`, `20.16-slim`, `20.16.0-bookworm-slim`, `20.16.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.17-bookworm-slim`, `20.17-slim`, `20.17.0-bookworm-slim`, `20.17.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.16-bullseye`, `20.16.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.17-bullseye`, `20.17.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.16-bullseye-slim`, `20.16.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/766b2dec6f59b6c98bf190e818edb1b0c7e532c5/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.17-bullseye-slim`, `20.17.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bullseye-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 9c2b733423ed..d9ab86f4821a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -60,21 +60,21 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`24-ea-11-jdk-nanoserver-1809`, `24-ea-11-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux9/Dockerfile) +- [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) -- [`23-rc-jdk-oraclelinux8`, `23-rc-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux8/Dockerfile) +- [`23-rc-jdk-oraclelinux8`, `23-rc-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux8/Dockerfile) -- [`23-rc-jdk-bookworm`, `23-rc-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/bookworm/Dockerfile) +- [`23-rc-jdk-bookworm`, `23-rc-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/bookworm/Dockerfile) -- [`23-rc-jdk-slim-bookworm`, `23-rc-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-rc-jdk-slim`, `23-rc-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/slim-bookworm/Dockerfile) +- [`23-rc-jdk-slim-bookworm`, `23-rc-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-rc-jdk-slim`, `23-rc-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/slim-bookworm/Dockerfile) -- [`23-rc-jdk-bullseye`, `23-rc-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/bullseye/Dockerfile) +- [`23-rc-jdk-bullseye`, `23-rc-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/bullseye/Dockerfile) -- [`23-rc-jdk-slim-bullseye`, `23-rc-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/slim-bullseye/Dockerfile) +- [`23-rc-jdk-slim-bullseye`, `23-rc-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/slim-bullseye/Dockerfile) -- [`23-rc-jdk-windowsservercore-ltsc2022`, `23-rc-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23-rc-jdk-windowsservercore-ltsc2022`, `23-rc-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23-rc-jdk-windowsservercore-1809`, `23-rc-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23-rc-jdk-windowsservercore-1809`, `23-rc-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - [`23-rc-jdk-nanoserver-1809`, `23-rc-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/nanoserver-1809/Dockerfile) @@ -97,14 +97,14 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: - - [`23-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/oraclelinux9/Dockerfile) - - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) + - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - `23-rc-jdk-windowsservercore`, `23-rc-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - `23-rc-jdk-nanoserver`, `23-rc-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: From 49c1c9e0ed98278fc86d04aa71bd84b13b52bdb9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 Aug 2024 17:08:58 -0700 Subject: [PATCH 1466/2686] Run update.sh --- mongo/README.md | 86 +++++++++++++++++-------------------------------- 1 file changed, 30 insertions(+), 56 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 9ede5e39bcfb..52d1434be2a6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,15 +38,15 @@ WARNING: - [`8.0.0-rc18-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.13-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) +- [`7.0.14-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/Dockerfile) -- [`7.0.13-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.14-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.13-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.14-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.13-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.14-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.13-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.14-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) @@ -58,25 +58,15 @@ WARNING: - [`7.0.12-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.17-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/Dockerfile) +- [`6.0.17-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) -- [`6.0.17-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.17-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.17-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.17-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.17-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.17-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.17-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`6.0.16-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) - -- [`6.0.16-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.16-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) - -- [`6.0.16-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.16-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.17-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-1809/Dockerfile) - [`5.0.29-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/Dockerfile) @@ -116,21 +106,21 @@ WARNING: - [`8.0.0-rc18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.13-rc1`, `7.0-rc`: +- `7.0.14-rc0`, `7.0-rc`: - - [`7.0.13-rc1-jammy`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/Dockerfile) - - [`7.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.13-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-rc0-jammy`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/Dockerfile) + - [`7.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.13-rc1-windowsservercore`, `7.0-rc-windowsservercore`: +- `7.0.14-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.13-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.13-rc1-nanoserver`, `7.0-rc-nanoserver`: +- `7.0.14-rc0-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.13-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.13-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4fee68cac33992f0c16314e9da6b28bb8235f916/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.14-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.14-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.12`, `7.0`, `7`, `latest`: @@ -148,37 +138,21 @@ WARNING: - [`7.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.17-rc0`, `6.0-rc`: - - - [`6.0.17-rc0-jammy`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/Dockerfile) - - [`6.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.17-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - - [`6.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.17-rc0-nanoserver`, `6.0-rc-nanoserver`: - - - [`6.0.17-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.17-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c1653da4ae0d4fbf380306c4bb9d8fdeb3c33816/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- `6.0.16`, `6.0`, `6`: +- `6.0.17`, `6.0`, `6`: - - [`6.0.16-jammy`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/Dockerfile) - - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.17-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) + - [`6.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.16-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.17-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.16-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.17-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce0e2ca6bd5fa84d4837d7d9f4b2151d377c31fb/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-1809/Dockerfile) - `5.0.29-rc0`, `5.0-rc`: From d33b0c799539e3741a0a83a1bda49bb6a3630b0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Aug 2024 12:08:58 -0700 Subject: [PATCH 1467/2686] Run update.sh --- dart/README.md | 4 +++- neo4j/README.md | 8 ++++---- node/README.md | 12 ++++++------ 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/dart/README.md b/dart/README.md index 8ce066a31e64..afa3ca4a8561 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.0-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.0`, `3.5`, `3`, `stable`, `latest`, `beta-sdk`, `beta`](https://github.com/dart-lang/dart-docker/blob/e597e8fea5215866dd987c3d785db7cb0500258a/stable/bookworm/Dockerfile) +- [`3.5.1-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.1`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/704575434ed8362ba36ff72de93907dc720cf7f7/stable/bookworm/Dockerfile) + +- [`3.6.0-149.3.beta-sdk`, `beta-sdk`, `3.6.0-149.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/704575434ed8362ba36ff72de93907dc720cf7f7/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index adea4ae1a3b1..8b7f20ab87f1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.22.0-community-bullseye`, `5.22-community-bullseye`, `5-community-bullseye`, `5.22.0-community`, `5.22-community`, `5-community`, `5.22.0-bullseye`, `5.22-bullseye`, `5-bullseye`, `5.22.0`, `5.22`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/bullseye/community/Dockerfile) +- [`5.23.0-community-bullseye`, `5.23-community-bullseye`, `5-community-bullseye`, `5.23.0-community`, `5.23-community`, `5-community`, `5.23.0-bullseye`, `5.23-bullseye`, `5-bullseye`, `5.23.0`, `5.23`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/bullseye/community/Dockerfile) -- [`5.22.0-enterprise-bullseye`, `5.22-enterprise-bullseye`, `5-enterprise-bullseye`, `5.22.0-enterprise`, `5.22-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/bullseye/enterprise/Dockerfile) +- [`5.23.0-enterprise-bullseye`, `5.23-enterprise-bullseye`, `5-enterprise-bullseye`, `5.23.0-enterprise`, `5.23-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/bullseye/enterprise/Dockerfile) -- [`5.22.0-community-ubi9`, `5.22-community-ubi9`, `5-community-ubi9`, `5.22.0-ubi9`, `5.22-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/ubi9/community/Dockerfile) +- [`5.23.0-community-ubi9`, `5.23-community-ubi9`, `5-community-ubi9`, `5.23.0-ubi9`, `5.23-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/ubi9/community/Dockerfile) -- [`5.22.0-enterprise-ubi9`, `5.22-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/5.22.0/ubi9/enterprise/Dockerfile) +- [`5.23.0-enterprise-ubi9`, `5.23-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/ubi9/enterprise/Dockerfile) - [`4.4.36`, `4.4.36-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/4.4.36/bullseye/community/Dockerfile) diff --git a/node/README.md b/node/README.md index 9aa4f886f0e5..30dc313e3814 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.6-alpine3.19`, `22.6.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.7-alpine3.19`, `22.7.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.6-alpine`, `22.6-alpine3.20`, `22.6.0-alpine`, `22.6.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.7-alpine`, `22.7-alpine3.20`, `22.7.0-alpine`, `22.7.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.6`, `22.6-bookworm`, `22.6.0`, `22.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.7`, `22.7-bookworm`, `22.7.0`, `22.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.6-bookworm-slim`, `22.6-slim`, `22.6.0-bookworm-slim`, `22.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.7-bookworm-slim`, `22.7-slim`, `22.7.0-bookworm-slim`, `22.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.6-bullseye`, `22.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.7-bullseye`, `22.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.6-bullseye-slim`, `22.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c0cfa23e26d75f1f679fd6626a29a27ec5274db3/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.7-bullseye-slim`, `22.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.17-alpine3.19`, `20.17.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.19/Dockerfile) From 329e07a24cb90f7e4fd4e41397518a7817425096 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 Aug 2024 17:08:59 -0700 Subject: [PATCH 1468/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 04fc855c409d..8d2a8ec293a8 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240805.0`](https://github.com/amazonlinux/container-images/blob/6d74be550141b91913144f2cbf3775f793082a37/Dockerfile) +- [`2023`, `latest`, `2023.5.20240819.0`](https://github.com/amazonlinux/container-images/blob/c29bfadba77a70adf176970bfb1f4d634c644871/Dockerfile) -- [`2`, `2.0.20240719.0`](https://github.com/amazonlinux/container-images/blob/777bd118eac88f5da9cd43baee35bea52604def2/Dockerfile) +- [`2`, `2.0.20240816.0`](https://github.com/amazonlinux/container-images/blob/11e068c308c8aaee8a9484fa2381651f101c8ec9/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index b2eb4452e987..dd1158e228b6 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5217ff6e8bb3152495c63a52c7790b1b88c33e39/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7-slim-fips/Dockerfile) # Quick reference (cont.) From cd3e6cdf0dc733ae7a9c49da8a55237f8d77b842 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Aug 2024 12:09:05 -0700 Subject: [PATCH 1469/2686] Run update.sh --- composer/README.md | 14 +- eclipse-temurin/README.md | 314 +++++++++++++++++++------------------- rakudo-star/README.md | 4 +- 3 files changed, 162 insertions(+), 170 deletions(-) diff --git a/composer/README.md b/composer/README.md index 1c37d112754c..589e6fda5cee 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,19 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.7`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/88c873f3c2afcc399ec92eeec62a30e559a8b8ea/2.7/Dockerfile) +- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/lts/Dockerfile) -- [`2.6.6`, `2.6`](https://github.com/composer/docker/blob/7d5603ee532ef2e27260ebd1090ed888ab9e0458/2.6/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) -- [`2.5.8`, `2.5`](https://github.com/composer/docker/blob/9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1/2.5/Dockerfile) - -- [`2.4.4`, `2.4`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.4/Dockerfile) - -- [`2.3.10`, `2.3`](https://github.com/composer/docker/blob/88e63fbab43e2151b0743a4c6d18a9c59aa9db0c/2.3/Dockerfile) - -- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/e04a63cb8591a14e78974fd8acf4043625d5ba14/2.2/Dockerfile) - -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/9cac6280bc40c7d606f7fd2dfce0f77fefd056a8/1.10/Dockerfile) +- [`2.7.8`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/521648f8db89da71e5475b0c944c6f6b3a72aa1b/latest/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index a1718c23e94d..dfaf22a40818 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,339 +28,339 @@ WARNING: ## Simple Tags -- [`8u422-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/alpine/Dockerfile) +- [`8u422-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/alpine/Dockerfile) -- [`8u422-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/focal/Dockerfile) +- [`8u422-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/focal/Dockerfile) -- [`8u422-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u422-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u422-b05-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/noble/Dockerfile) +- [`8u422-b05-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/noble/Dockerfile) -- [`8u422-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u422-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u422-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u422-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u422-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u422-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u422-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u422-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u422-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u422-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u422-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/alpine/Dockerfile) +- [`8u422-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/alpine/Dockerfile) -- [`8u422-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/focal/Dockerfile) +- [`8u422-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/focal/Dockerfile) -- [`8u422-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/jammy/Dockerfile) +- [`8u422-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/jammy/Dockerfile) -- [`8u422-b05-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/noble/Dockerfile) +- [`8u422-b05-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/noble/Dockerfile) -- [`8u422-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u422-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u422-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u422-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u422-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u422-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u422-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u422-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`8u422-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-1809/Dockerfile) +- [`8u422-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/alpine/Dockerfile) +- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/alpine/Dockerfile) -- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.24_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.24_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.24_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.24_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.24_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.24_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.24_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.24_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/alpine/Dockerfile) +- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/alpine/Dockerfile) -- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.24_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.24_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.24_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.24_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.24_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.24_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.24_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.24_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/alpine/Dockerfile) +- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/alpine/Dockerfile) -- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.12_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.12_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.12_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.12_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.12_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.12_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.12_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.12_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/alpine/Dockerfile) +- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/alpine/Dockerfile) -- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.12_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.12_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.12_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.12_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.12_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.12_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.12_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.12_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/alpine/Dockerfile) +- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/alpine/Dockerfile) -- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.4_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.4_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.4_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.4_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.4_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.4_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.4_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.4_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/alpine/Dockerfile) +- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/alpine/Dockerfile) -- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.4_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.4_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.4_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.4_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.4_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.4_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) -- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/alpine/Dockerfile) +- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/alpine/Dockerfile) -- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/jammy/Dockerfile) -- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/noble/Dockerfile) +- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubi/ubi9-minimal/Dockerfile) -- [`22.0.2_9-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.2_9-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.2_9-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.2_9-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`22.0.2_9-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`22.0.2_9-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22.0.2_9-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`22.0.2_9-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-1809/Dockerfile) -- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/alpine/Dockerfile) +- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/alpine/Dockerfile) -- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/jammy/Dockerfile) +- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/jammy/Dockerfile) -- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/noble/Dockerfile) +- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubi/ubi9-minimal/Dockerfile) +- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubi/ubi9-minimal/Dockerfile) -- [`22.0.2_9-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`22.0.2_9-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.2_9-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`22.0.2_9-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`22.0.2_9-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) +- [`22.0.2_9-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) -- [`22.0.2_9-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-1809/Dockerfile) +- [`22.0.2_9-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags - `8u422-b05-jdk`, `8-jdk`, `8`: - - [`8u422-b05-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/ubuntu/noble/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/noble/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) - `8u422-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) - `8u422-b05-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u422-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u422-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u422-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-1809/Dockerfile) - `8u422-b05-jre`, `8-jre`: - - [`8u422-b05-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/ubuntu/noble/Dockerfile) - - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/noble/Dockerfile) + - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) - `8u422-b05-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) - `8u422-b05-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u422-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u422-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/8/jre/windows/nanoserver-1809/Dockerfile) + - [`8u422-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u422-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-1809/Dockerfile) - `11.0.24_8-jdk`, `11-jdk`, `11`: - - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) - `11.0.24_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) - `11.0.24_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.24_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.24_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.24_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-1809/Dockerfile) - `11.0.24_8-jre`, `11-jre`: - - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) - `11.0.24_8-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) - `11.0.24_8-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.24_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/11/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.24_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.24_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-1809/Dockerfile) - `17.0.12_7-jdk`, `17-jdk`, `17`: - - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) - `17.0.12_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) - `17.0.12_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.12_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.12_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.12_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-1809/Dockerfile) - `17.0.12_7-jre`, `17-jre`: - - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.12_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.12_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.12_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/f7ce125dc28d8c0d065d94829e63094daa018ca3/17/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.12_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.12_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-1809/Dockerfile) - `21.0.4_7-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21.0.4_7-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21.0.4_7-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.4_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.4_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.4_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-1809/Dockerfile) - `21.0.4_7-jre`, `21-jre`: - - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.4_7-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.4_7-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/6e6c1cc0d915b330e3c474a9bf21d92fc4e5f157/21/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) - `22.0.2_9-jdk`, `22-jdk`, `22`: - - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jdk/ubuntu/noble/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) - `22.0.2_9-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) - `22.0.2_9-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: - - [`22.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jdk/windows/nanoserver-1809/Dockerfile) + - [`22.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-1809/Dockerfile) - `22.0.2_9-jre`, `22-jre`: - - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/43fcefc483338727126a5263d7110f5711ad8506/22/jre/ubuntu/noble/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/noble/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) - `22.0.2_9-jre-windowsservercore`, `22-jre-windowsservercore`: - - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) - `22.0.2_9-jre-nanoserver`, `22-jre-nanoserver`: - - [`22.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/48ce959533cd2146eb94d626938b683b5b013cfc/22/jre/windows/nanoserver-1809/Dockerfile) + - [`22.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`22.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) @@ -368,7 +368,7 @@ WARNING: [GitHub](https://github.com/adoptium/containers/issues); The [adoptium support](https://adoptium.net/support) page has more information on quality, roadmap and support levels for Eclipse Temurin builds. Vulnerabilities not related to Eclipse Temurin itself should be be raised to their respective projects (e.g Ubuntu vulnerabilities need to be raised directly to the Ubuntu project). - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/eclipse-temurin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/eclipse-temurin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-temurin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-temurin/), [`s390x`](https://hub.docker.com/r/s390x/eclipse-temurin/), [`windows-amd64`](https://hub.docker.com/r/winamd64/eclipse-temurin/) + [`amd64`](https://hub.docker.com/r/amd64/eclipse-temurin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/eclipse-temurin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-temurin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-temurin/), [`riscv64`](https://hub.docker.com/r/riscv64/eclipse-temurin/), [`s390x`](https://hub.docker.com/r/s390x/eclipse-temurin/), [`windows-amd64`](https://hub.docker.com/r/winamd64/eclipse-temurin/) - **Published image artifact details**: [repo-info repo's `repos/eclipse-temurin/` directory](https://github.com/docker-library/repo-info/blob/master/repos/eclipse-temurin) ([history](https://github.com/docker-library/repo-info/commits/master/repos/eclipse-temurin)) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 39ce6b20dd71..3343125fa942 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.05`, `bookworm`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/bookworm/Dockerfile) +- [`latest`, `2024.07`, `bookworm`](https://github.com/Raku/docker/blob/7d4343583c43355ad0dbfedc5a2ee406efaac534/2024.07/bookworm/Dockerfile) -- [`alpine`, `2024.05-alpine`](https://github.com/Raku/docker/blob/45e8b0ecf019e32d71ab3d6fedef6a8aa09ef472/2024.05/alpine/Dockerfile) +- [`alpine`, `2024.07-alpine`](https://github.com/Raku/docker/blob/7d4343583c43355ad0dbfedc5a2ee406efaac534/2024.07/alpine/Dockerfile) # Quick reference (cont.) From 5f040957f4e0be5b241409b2e588852c0acdfb29 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Aug 2024 14:26:08 -0700 Subject: [PATCH 1470/2686] Run update.sh --- fluentd/README.md | 8 ++++++-- openjdk/README.md | 36 ++++++++++++++++++------------------ php/README.md | 28 ++++++++++++++-------------- 3 files changed, 38 insertions(+), 34 deletions(-) diff --git a/fluentd/README.md b/fluentd/README.md index 219b035c4694..d39d7a3320b0 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,9 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.2-1.1`, `v1.16-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/alpine/Dockerfile) +- [`v1.16.6-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/ddb5019b433339f9eef991ca373445deb6e4d2b1/v1.16/alpine/Dockerfile) -- [`v1.16.2-debian-1.1`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/a4dd65768ec1819574e570716955276c9089326a/v1.16/debian/Dockerfile) +- [`v1.16.6-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/ddb5019b433339f9eef991ca373445deb6e4d2b1/v1.16/debian/Dockerfile) + +- [`v1.17.1-1.0`, `v1.17-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/1055e528ef1acbb073028e0281b60bdaf9a23595/v1.17/alpine/Dockerfile) + +- [`v1.17.1-debian-1.0`, `v1.17-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/1055e528ef1acbb073028e0281b60bdaf9a23595/v1.17/debian/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index d9ab86f4821a..fa586aa05d97 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-11-jdk-oraclelinux9`, `24-ea-11-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-11-jdk-oracle`, `24-ea-11-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-12-jdk-oraclelinux9`, `24-ea-12-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-12-jdk-oracle`, `24-ea-12-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-11-jdk-oraclelinux8`, `24-ea-11-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-12-jdk-oraclelinux8`, `24-ea-12-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-11-jdk-bookworm`, `24-ea-11-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/bookworm/Dockerfile) +- [`24-ea-12-jdk-bookworm`, `24-ea-12-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/bookworm/Dockerfile) -- [`24-ea-11-jdk-slim-bookworm`, `24-ea-11-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-11-jdk-slim`, `24-ea-11-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-12-jdk-slim-bookworm`, `24-ea-12-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-12-jdk-slim`, `24-ea-12-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-11-jdk-bullseye`, `24-ea-11-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/bullseye/Dockerfile) +- [`24-ea-12-jdk-bullseye`, `24-ea-12-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/bullseye/Dockerfile) -- [`24-ea-11-jdk-slim-bullseye`, `24-ea-11-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-12-jdk-slim-bullseye`, `24-ea-12-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-11-jdk-windowsservercore-ltsc2022`, `24-ea-11-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-12-jdk-windowsservercore-ltsc2022`, `24-ea-12-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-11-jdk-windowsservercore-1809`, `24-ea-11-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-12-jdk-windowsservercore-1809`, `24-ea-12-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-11-jdk-nanoserver-1809`, `24-ea-11-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-12-jdk-nanoserver-1809`, `24-ea-12-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `24-ea-11-jdk`, `24-ea-11`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-12-jdk`, `24-ea-12`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-11-jdk-windowsservercore`, `24-ea-11-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-12-jdk-windowsservercore`, `24-ea-12-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-11-jdk-nanoserver`, `24-ea-11-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-12-jdk-nanoserver`, `24-ea-12-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4f22d3c10c2e512947be9f700772d2f9bec397df/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: diff --git a/php/README.md b/php/README.md index a8ea3f42ad7c..ef8aa6e9f0d8 100644 --- a/php/README.md +++ b/php/README.md @@ -52,33 +52,33 @@ WARNING: - [`8.4.0beta3-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/zts/Dockerfile) -- [`8.3.11RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.11RC1-bookworm`, `8.3-rc-bookworm`, `8.3.11RC1-cli`, `8.3-rc-cli`, `8.3.11RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.11RC2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.11RC2-bookworm`, `8.3-rc-bookworm`, `8.3.11RC2-cli`, `8.3-rc-cli`, `8.3.11RC2`, `8.3-rc`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.11RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.11RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.11RC2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.11RC2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.11RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.11RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.11RC2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.11RC2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.11RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.11RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.11RC2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.11RC2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.11RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.11RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.11RC2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.11RC2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.11RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.11RC2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.11RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.11RC2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.11RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.11RC2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.11RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.11RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.11RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.11RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.11RC2-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.11RC2-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.11RC2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.11RC2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/cli/Dockerfile) -- [`8.3.11RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.11RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.11RC2-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.11RC2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/fpm/Dockerfile) -- [`8.3.11RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.11RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.11RC2-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.11RC2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/zts/Dockerfile) -- [`8.3.11RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.11RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.11RC2-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.11RC2-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/cli/Dockerfile) -- [`8.3.11RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.11RC2-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/fpm/Dockerfile) -- [`8.3.11RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/7545e8d1ef0814d81c2ea8275905138782ee36ed/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.11RC2-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.10-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.10-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.10-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.10`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/cli/Dockerfile) From e7f83f0756c08ad759728aaa43e61085a0634247 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Aug 2024 16:20:51 -0700 Subject: [PATCH 1471/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 3c6a74c1be21..241ee6324c8f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.89.6`, `5.89`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ad5419396fce318c13714f205bf8e8829c6a9f9/5/debian/Dockerfile) +- [`5.90.0`, `5.90`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a1cabcf8b65b06d1a6efe804c3f0e7c166c15625/5/debian/Dockerfile) -- [`5.89.6-alpine`, `5.89-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ad5419396fce318c13714f205bf8e8829c6a9f9/5/alpine/Dockerfile) +- [`5.90.0-alpine`, `5.90-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a1cabcf8b65b06d1a6efe804c3f0e7c166c15625/5/alpine/Dockerfile) # Quick reference (cont.) From 7d35df71861e97706d803935da49cc7d84990562 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 Aug 2024 17:11:17 -0700 Subject: [PATCH 1472/2686] Run update.sh --- tomcat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tomcat/README.md b/tomcat/README.md index 9f37a882797b..7b7716617115 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -102,7 +102,7 @@ WARNING: [https://github.com/docker-library/tomcat/issues](https://github.com/docker-library/tomcat/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/tomcat/), [`arm32v7`](https://hub.docker.com/r/arm32v7/tomcat/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomcat/), [`ppc64le`](https://hub.docker.com/r/ppc64le/tomcat/), [`s390x`](https://hub.docker.com/r/s390x/tomcat/) + [`amd64`](https://hub.docker.com/r/amd64/tomcat/), [`arm32v7`](https://hub.docker.com/r/arm32v7/tomcat/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomcat/), [`ppc64le`](https://hub.docker.com/r/ppc64le/tomcat/), [`riscv64`](https://hub.docker.com/r/riscv64/tomcat/), [`s390x`](https://hub.docker.com/r/s390x/tomcat/) - **Published image artifact details**: [repo-info repo's `repos/tomcat/` directory](https://github.com/docker-library/repo-info/blob/master/repos/tomcat) ([history](https://github.com/docker-library/repo-info/commits/master/repos/tomcat)) From 5dd7111a4a7439dc1bb7a27d50a9c51ee8e8987f Mon Sep 17 00:00:00 2001 From: Bjoern Ludwig Date: Sat, 24 Aug 2024 12:10:29 +0200 Subject: [PATCH 1473/2686] Update docs for Caddy image with a fix to its reload feature --- caddy/content.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/caddy/content.md b/caddy/content.md index 7999442e934a..53563e6791fe 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -35,15 +35,19 @@ $ curl http://localhost/ hello world ``` -To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can mount a new one at `/etc/caddy/Caddyfile`: +To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can create one in the subfolder `caddyfile` at `$PWD/caddyfile/Caddyfile` and mount this folder at `/etc/caddy`: ```console $ docker run -d -p 80:80 \ - -v $PWD/Caddyfile:/etc/caddy/Caddyfile \ + -v $PWD/caddyfile:/etc/caddy \ -v caddy_data:/data \ %%IMAGE%% ``` +#### ⚠️ Do not mount the Caddyfile directly at `/etc/caddy/Caddyfile` + +This effectively disables Caddy's graceful reload feature in many cases depending on the way you apply changes to the file as discussed in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). + ### Automatic TLS with the Caddy image The default `Caddyfile` only listens to port `80`, and does not set up automatic TLS. However, if you have a domain name for your site, and its A/AAAA DNS records are properly pointed to this machine's public IP, then you can use this command to simply serve a site over HTTPS: @@ -119,11 +123,9 @@ See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. ### Docker Compose example -If you prefer to use `docker-compose` to run your stack, here's a sample service definition. +If you prefer to use `docker-compose` to run your stack, here's a sample service definition which goes into your `compose.yaml`. ```yaml -version: "3.7" - services: caddy: image: %%IMAGE%%: @@ -135,7 +137,7 @@ services: - "443:443" - "443:443/udp" volumes: - - $PWD/Caddyfile:/etc/caddy/Caddyfile + - $PWD/caddyfile:/etc/caddy - $PWD/site:/srv - caddy_data:/data - caddy_config:/config @@ -147,3 +149,5 @@ volumes: ``` Defining the data volume as [`external`](https://docs.docker.com/compose/compose-file/compose-file-v3/#external) makes sure `docker-compose down` does not delete the volume. You may need to create it manually using `docker volume create [project-name]_caddy_data`. + +Graceful reloads can then be conducted via `docker compose exec --workdir /etc/caddy caddy caddy reload`. From 88bd7d8409082d30e42ee91fdaf4d9bf1107cd4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Aug 2024 13:08:58 -0700 Subject: [PATCH 1474/2686] Run update.sh --- clearlinux/README.md | 2 +- friendica/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 28bdb686d24d..52d54b2aac24 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4e64ac6abf04dad6c56178225b03c1bb4b667493/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fad5d1c7fde5e79b117a07303cca5d8a6c4f8acb/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 3dee4b68a3e5..31a82b06f6af 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) -- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/apache/Dockerfile) +- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/apache/Dockerfile) -- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/fpm/Dockerfile) +- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/fpm/Dockerfile) -- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/f7d6119f1ac8d5a3d944fd5de39c23cba7125a7f/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) From 450aa13c388cd7fd76a047bc66e8428ddea3b138 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Aug 2024 15:09:34 -0700 Subject: [PATCH 1475/2686] Run update.sh --- archlinux/README.md | 6 ++--- cassandra/README.md | 2 +- mongo/README.md | 56 ++++++++++++------------------------------- odoo/README.md | 6 ++--- photon/README.md | 6 ++--- rabbitmq/README.md | 8 +++---- rocket.chat/README.md | 10 ++++---- xwiki/README.md | 6 ++--- 8 files changed, 37 insertions(+), 63 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 0b7314c03089..dfd912bc18e3 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.base) +- [`latest`, `base`, `base-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.base) -- [`base-devel`, `base-devel-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240818.0.255804`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/35a4506c22ecbf3790338472872c8370b63e7400/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/cassandra/README.md b/cassandra/README.md index bb547b7a528a..52a919a88323 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-rc1`, `5.0`, `5`, `5.0-rc1-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/7ebf445be0a2847cfe94cf1cee3f3b9df891f0d1/5.0/Dockerfile) +- [`5.0-rc2`, `5.0`, `5`, `5.0-rc2-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/31cced8ff8e1ba9f7d7600a8d0f41c36fb3dc8a8/5.0/Dockerfile) - [`4.1.6`, `4.1`, `4`, `latest`, `4.1.6-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/72bda687322eef86992681e21ce54bd2351c2573/4.1/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 52d1434be2a6..1554319089eb 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,25 +38,15 @@ WARNING: - [`8.0.0-rc18-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.14-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/Dockerfile) +- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) -- [`7.0.14-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.14-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.14-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.14-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.14-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`7.0.12-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - -- [`7.0.12-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.12-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) - -- [`7.0.12-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.12-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.17-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) @@ -106,37 +96,21 @@ WARNING: - [`8.0.0-rc18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.0-rc18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) -- `7.0.14-rc0`, `7.0-rc`: - - - [`7.0.14-rc0-jammy`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/Dockerfile) - - [`7.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `7.0.14-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `7.0.14-rc0-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.14-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.14-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/565a7272d885d670dcac102cc56450a030fe41ca/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- `7.0.12`, `7.0`, `7`, `latest`: +- `7.0.14`, `7.0`, `7`, `latest`: - - [`7.0.12-jammy`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/Dockerfile) - - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) + - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.12-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: +- `7.0.14-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.12-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.12-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: +- `7.0.14-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: - - [`7.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4cf85e870b1306f91472ba1cb0be14a298ffb333/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.17`, `6.0`, `6`: diff --git a/odoo/README.md b/odoo/README.md index a769ae789a9b..c3a1e99125bd 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240819`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/17.0/Dockerfile) +- [`17.0-20240826`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/17.0/Dockerfile) -- [`16.0-20240819`, `16.0`, `16`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/16.0/Dockerfile) +- [`16.0-20240826`, `16.0`, `16`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/16.0/Dockerfile) -- [`15.0-20240819`, `15.0`, `15`](https://github.com/odoo/docker/blob/0c03225b389719665ea92daa79af4d5bcc4c9794/15.0/Dockerfile) +- [`15.0-20240826`, `15.0`, `15`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/15.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 796800d1344d..00e5310635ca 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240818`, `latest`](https://github.com/vmware/photon-docker-image/blob/98707d5261f305d1409ca133e5b0969df387867b/docker/Dockerfile) +- [`5.0`, `5.0-20240826`, `latest`](https://github.com/vmware/photon-docker-image/blob/1a8dfbe4edd92c853185be71af77ccd894967092/docker/Dockerfile) -- [`4.0`, `4.0-20240811`](https://github.com/vmware/photon-docker-image/blob/f7956f0db606de9f7ad792069fc8af72ffae5550/docker/Dockerfile) +- [`4.0`, `4.0-20240826`](https://github.com/vmware/photon-docker-image/blob/3310ab053bd2e00aacf50fb95ae204f073fbaa87/docker/Dockerfile) -- [`3.0`, `3.0-20240811`](https://github.com/vmware/photon-docker-image/blob/6ec28bc6af5c74f1af22f891355388d885418a5d/docker/Dockerfile) +- [`3.0`, `3.0-20240826`](https://github.com/vmware/photon-docker-image/blob/168f057e18bedd6ca515c357eb9bf376e9391f3a/docker/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 14ea71b9e7cc..b6eeb9851a03 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.0.0-beta.5-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) -- [`3.13.6`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/15c35230e38494fcb064d9a9933735fbce22c1d9/3.13/ubuntu/Dockerfile) -- [`3.13.6-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.7-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/1859564dc3cf527127118836d293ed12f6138193/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/15c35230e38494fcb064d9a9933735fbce22c1d9/3.13/alpine/Dockerfile) -- [`3.13.6-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.12/ubuntu/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 51b358af7918..c192327d5e46 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.9.2`, `6.9`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.9/Dockerfile) +- [`6.9.5`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.9/Dockerfile) -- [`6.8.2`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.8/Dockerfile) +- [`6.8.5`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.8/Dockerfile) -- [`6.7.5`, `6.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.7/Dockerfile) +- [`6.7.7`, `6.7`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.7/Dockerfile) -- [`6.6.10`, `6.6`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.6/Dockerfile) +- [`6.11.1`, `6.11`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.11/Dockerfile) -- [`6.5.8`, `6.5`](https://github.com/RocketChat/Docker.Official.Image/blob/fa46a05612513b0965161db5d037246ed40ae114/6.5/Dockerfile) +- [`6.10.4`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.10/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index f265ddc12659..6130ac913837 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.6`, `16.6.0`, `16-mysql-tomcat`, `16.6-mysql-tomcat`, `16.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/mysql-tomcat/Dockerfile) +- [`16`, `16.7`, `16.7.0`, `16-mysql-tomcat`, `16.7-mysql-tomcat`, `16.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.6-postgres-tomcat`, `16.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.7-postgres-tomcat`, `16.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.6-mariadb-tomcat`, `16.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/afc65b45fe60fe55d109e2b701ac2b1e7eee779b/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.7-mariadb-tomcat`, `16.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) From dcac2322f4db6bbf2cfdc2fc726298aae1355443 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 Aug 2024 16:09:03 -0700 Subject: [PATCH 1476/2686] Run update.sh --- fedora/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index f5dafd9ca0e5..39b7fb88c259 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e493147cb7383bda672f4295c09e435d83047efa/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b37b9b53c0aaf6824df6e79fe9ddaec0375851ce/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/978adc7dc216f09fca95de7174734748710fe1df/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c588370458a42b7cdad03e9ee6cd1ce24ac9aacf/x86_64/Dockerfile) -- [`41`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c527fe0bcd2f1d8fbbbe61467ad50546567a655b/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/21b49b6f45cfb4b1f3a3ab52072e15651ebdc535/x86_64/Dockerfile) + +- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8495862d5897d1571b0453e620b6b1a6c58ecb32/x86_64/Dockerfile) # Quick reference (cont.) From cd10aa78cf62d6ed97a813d4ae934f21d5a33d6d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Aug 2024 11:09:05 -0700 Subject: [PATCH 1477/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index ed3281ea87a6..ec124a9c7eed 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.11`, `3.11.10.1`](https://github.com/arangodb/arangodb-docker/blob/ce25dfe5cb8cc8658b031136b262bd8d2be7e679/alpine/3.11.10.1/Dockerfile) -- [`3.12`, `3.12.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/eb4312a4f2e7974dc798d4e6585281b24b283e06/alpine/3.12.1/Dockerfile) +- [`3.12`, `3.12.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/ba430694881c65dc95aaf47e0250e501ead0f5b5/alpine/3.12.2/Dockerfile) # Quick reference (cont.) From 726a66bdc0f6298cd9bed8ed1aa62da40a22945b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Aug 2024 13:09:05 -0700 Subject: [PATCH 1478/2686] Run update.sh --- julia/README.md | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/julia/README.md b/julia/README.md index a127403f32c9..8152c89a4822 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,17 +28,13 @@ WARNING: ## Simple Tags -- [`1.11.0-rc2-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-rc3-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-rc2-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-rc3-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-rc2-alpine3.20`, `1.11-rc-alpine3.20`, `rc-alpine3.20`, `1.11.0-rc2-alpine`, `1.11-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/alpine3.20/Dockerfile) +- [`1.11.0-rc3-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-rc2-alpine3.19`, `1.11-rc-alpine3.19`, `rc-alpine3.19`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/alpine3.19/Dockerfile) - -- [`1.11.0-rc2-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.11.0-rc2-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-rc3-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) @@ -66,16 +62,16 @@ WARNING: ## Shared Tags -- `1.11.0-rc2`, `1.11-rc`, `rc`: +- `1.11.0-rc3`, `1.11-rc`, `rc`: - - [`1.11.0-rc2-bookworm`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc3-bookworm`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-rc2-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: +- `1.11.0-rc3-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/2a287596074016d7736988340a0d5351cce19a4a/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.4`, `1.10`, `1`, `latest`: @@ -158,14 +154,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -175,6 +163,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. From f32506d824b54edeaf440e0cec0ea3b5b850a9b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Aug 2024 15:09:10 -0700 Subject: [PATCH 1479/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index c9c1e69b6a21..2fa1a485bd54 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240815`, `devel`, `devel-20240815-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/eb10e085749ee78dcd06c3fb01318ecd85448c62/devel/Dockerfile) +- [`devel-20240823`, `devel`, `devel-20240823-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/1e19089749d2f6fa710f09de91e03e001ae4fdcd/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) From c9c750d945faf386f5dcc3be22781aceecec1d8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Aug 2024 17:09:10 -0700 Subject: [PATCH 1480/2686] Run update.sh --- ghost/README.md | 4 ++-- nats/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 241ee6324c8f..148505f7bf2b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.90.0`, `5.90`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a1cabcf8b65b06d1a6efe804c3f0e7c166c15625/5/debian/Dockerfile) +- [`5.90.2`, `5.90`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5e8b6b027fde03cedaf565a478fce452e51aaea1/5/debian/Dockerfile) -- [`5.90.0-alpine`, `5.90-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a1cabcf8b65b06d1a6efe804c3f0e7c166c15625/5/alpine/Dockerfile) +- [`5.90.2-alpine`, `5.90-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5e8b6b027fde03cedaf565a478fce452e51aaea1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 461b692133ac..e00feaed11bc 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`2.10.18-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.18-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/alpine3.20/Dockerfile) +- [`2.10.19-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.19-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/alpine3.20/Dockerfile) -- [`2.10.18-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.18-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/scratch/Dockerfile) +- [`2.10.19-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.19-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/scratch/Dockerfile) -- [`2.10.18-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.19-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.18-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.19-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/scratch/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/nanoserver-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.18`, `2.10`, `2`, `latest`: +- `2.10.19`, `2.10`, `2`, `latest`: - - [`2.10.18-scratch`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/scratch/Dockerfile) - - [`2.10.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.19-scratch`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/scratch/Dockerfile) + - [`2.10.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.18-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.19-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.18-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.19-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.18-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.19-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.18-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dde13357c04762cbaa74e092a86de36075a2ef2e/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 5c5b5fc7f7a0d9f04100cf9624417c65c712789c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Aug 2024 11:09:03 -0700 Subject: [PATCH 1481/2686] Run update.sh --- dart/README.md | 4 ++-- joomla/README.md | 30 +++++++++++++++--------------- orientdb/README.md | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dart/README.md b/dart/README.md index afa3ca4a8561..dd24132e540a 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.1-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.1`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/704575434ed8362ba36ff72de93907dc720cf7f7/stable/bookworm/Dockerfile) +- [`3.5.2-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.2`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5b1137ae9893c30c18a2c06a62b8776d1a004bc5/stable/bookworm/Dockerfile) -- [`3.6.0-149.3.beta-sdk`, `beta-sdk`, `3.6.0-149.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/704575434ed8362ba36ff72de93907dc720cf7f7/beta/bookworm/Dockerfile) +- [`3.6.0-149.3.beta-sdk`, `beta-sdk`, `3.6.0-149.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5b1137ae9893c30c18a2c06a62b8776d1a004bc5/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 85b9a2d612c8..0e11b728b250 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -42,35 +42,35 @@ WARNING: - [`5.2.0-beta1-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/fpm/Dockerfile) -- [`5.1.3-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/apache/Dockerfile) +- [`5.1.4-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/apache/Dockerfile) -- [`5.1.3-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/fpm-alpine/Dockerfile) +- [`5.1.4-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/fpm-alpine/Dockerfile) -- [`5.1.3-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.1/fpm/Dockerfile) +- [`5.1.4-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/fpm/Dockerfile) -- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.3-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.3-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/apache/Dockerfile) +- [`5.1.4`, `5.1`, `5`, `latest`, `5.1.4-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.4-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.4-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/apache/Dockerfile) -- [`5.1.3-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/fpm-alpine/Dockerfile) +- [`5.1.4-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/fpm-alpine/Dockerfile) -- [`5.1.3-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.2/fpm/Dockerfile) +- [`5.1.4-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/fpm/Dockerfile) -- [`5.1.3-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/apache/Dockerfile) +- [`5.1.4-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/apache/Dockerfile) -- [`5.1.3-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/fpm-alpine/Dockerfile) +- [`5.1.4-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/fpm-alpine/Dockerfile) -- [`5.1.3-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/5.1/php8.3/fpm/Dockerfile) +- [`5.1.4-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/fpm/Dockerfile) -- [`4.4.7`, `4.4`, `4`, `4.4.7-apache`, `4.4-apache`, `4-apache`, `4.4.7-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.7-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/apache/Dockerfile) +- [`4.4.8`, `4.4`, `4`, `4.4.8-apache`, `4.4-apache`, `4-apache`, `4.4.8-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.8-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/apache/Dockerfile) -- [`4.4.7-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.8-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.7-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.1/fpm/Dockerfile) +- [`4.4.8-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/fpm/Dockerfile) -- [`4.4.7-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/apache/Dockerfile) +- [`4.4.8-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/apache/Dockerfile) -- [`4.4.7-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.8-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.7-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/cf97c38cdff7a89422685bc1b1699d516f2050df/4.4/php8.2/fpm/Dockerfile) +- [`4.4.8-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 9ce82bcff3a3..f3a52cfaa34e 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.32`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/cab5819e857b7aadc5209e4cc68f52f72d829eab/release/3.2.x/3.2.32/Dockerfile) +- [`3.2.33`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/3e03717dfed592a653bc04a50476cb5461018db3/release/3.2.x/3.2.33/Dockerfile) -- [`3.2.32-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/cab5819e857b7aadc5209e4cc68f52f72d829eab/release/3.2.x/3.2.32-tp3/Dockerfile) +- [`3.2.33-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/3e03717dfed592a653bc04a50476cb5461018db3/release/3.2.x/3.2.33-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From 0809d9e4de45f81a4270f8e162911c608efe85c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Wed, 28 Aug 2024 22:39:24 +0200 Subject: [PATCH 1482/2686] Update caddy/content.md to be potentially less confusing Co-authored-by: Francis Lavoie --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index 53563e6791fe..e3208c7ad0f2 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -35,7 +35,7 @@ $ curl http://localhost/ hello world ``` -To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can create one in the subfolder `caddyfile` at `$PWD/caddyfile/Caddyfile` and mount this folder at `/etc/caddy`: +To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can create one in the subfolder `conf` at `$PWD/conf/Caddyfile` and mount this folder at `/etc/caddy`: ```console $ docker run -d -p 80:80 \ From d860ee48888af5dd6705745d15fa2259f5fe5f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Wed, 28 Aug 2024 22:41:39 +0200 Subject: [PATCH 1483/2686] Update caddy/content.md to be potentially less confusing Co-authored-by: Francis Lavoie --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index e3208c7ad0f2..b7eb657e2af1 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -39,7 +39,7 @@ To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/m ```console $ docker run -d -p 80:80 \ - -v $PWD/caddyfile:/etc/caddy \ + -v $PWD/conf:/etc/caddy \ -v caddy_data:/data \ %%IMAGE%% ``` From a750af6377f2e4b206e62121fa0a2d78b9d616fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Wed, 28 Aug 2024 22:45:18 +0200 Subject: [PATCH 1484/2686] Update caddy/content.md with better wording Co-authored-by: Francis Lavoie --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index b7eb657e2af1..164cad64ff1c 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -123,7 +123,7 @@ See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. ### Docker Compose example -If you prefer to use `docker-compose` to run your stack, here's a sample service definition which goes into your `compose.yaml`. +If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. ```yaml services: From 61797fd33dd90f2b70d53b267b764107eb4f2c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Wed, 28 Aug 2024 22:54:53 +0200 Subject: [PATCH 1485/2686] Update caddy/content.md with short flag for docker compose reload command Co-authored-by: Francis Lavoie --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index 164cad64ff1c..a9b9d6cce913 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -150,4 +150,4 @@ volumes: Defining the data volume as [`external`](https://docs.docker.com/compose/compose-file/compose-file-v3/#external) makes sure `docker-compose down` does not delete the volume. You may need to create it manually using `docker volume create [project-name]_caddy_data`. -Graceful reloads can then be conducted via `docker compose exec --workdir /etc/caddy caddy caddy reload`. +Graceful reloads can then be conducted via `docker compose exec -w /etc/caddy caddy caddy reload`. From c7983398103b21a9cf33aee9a5440461b2ffaf05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Wed, 28 Aug 2024 22:57:16 +0200 Subject: [PATCH 1486/2686] Update caddy/content.md to get rid of trailing whitespace --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index a9b9d6cce913..7708ac2c58a1 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -123,7 +123,7 @@ See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. ### Docker Compose example -If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. +If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. ```yaml services: From 660d3b9e4fbe2f737ae9e8275ce47ab817603027 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Aug 2024 14:08:57 -0700 Subject: [PATCH 1487/2686] Run update.sh --- docker/README.md | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/docker/README.md b/docker/README.md index 595bb93e47b7..1212c0e15f01 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`27.2.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.2.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/cli/Dockerfile) +- [`27.2.0-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/cli/Dockerfile) -- [`27.2.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.2.0-rc.1-dind-alpine3.20`, `27.2.0-rc.1`, `27-rc`, `rc`, `27.2.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/dind/Dockerfile) +- [`27.2.0-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.0-dind-alpine3.20`, `27.2.0`, `27.2`, `27`, `latest`, `27.2.0-alpine3.20`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/dind/Dockerfile) -- [`27.2.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/dind-rootless/Dockerfile) +- [`27.2.0-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/dind-rootless/Dockerfile) -- [`27.2.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.0-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-1809/Dockerfile) - -- [`27.1.2-cli`, `27.1-cli`, `27-cli`, `cli`, `27.1.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/cli/Dockerfile) - -- [`27.1.2-dind`, `27.1-dind`, `27-dind`, `dind`, `27.1.2-dind-alpine3.20`, `27.1.2`, `27.1`, `27`, `latest`, `27.1.2-alpine3.20`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind/Dockerfile) - -- [`27.1.2-dind-rootless`, `27.1-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/d1e3afec3ab45970a78125805ea8c2c9dc52652f/27/dind-rootless/Dockerfile) - -- [`27.1.2-windowsservercore-ltsc2022`, `27.1-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`27.1.2-windowsservercore-1809`, `27.1-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.0-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.2.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - - [`27.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3fbcd5845e640f190468d9e023515e37dca8d94e/27-rc/windows/windowsservercore-1809/Dockerfile) - -- `27.1.2-windowsservercore`, `27.1-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.2.0-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.1.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.1.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a19a07ac80bf856dcbcee2c6c48e594963d2780a/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 808b239b032ab95ee047cf6f00dbf6a7b8b863ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 Aug 2024 17:09:02 -0700 Subject: [PATCH 1488/2686] Run update.sh --- julia/README.md | 26 ++++++++--------- pypy/README.md | 75 +++++++++++++++++-------------------------------- 2 files changed, 37 insertions(+), 64 deletions(-) diff --git a/julia/README.md b/julia/README.md index 8152c89a4822..2a98d044a7c4 100644 --- a/julia/README.md +++ b/julia/README.md @@ -36,17 +36,13 @@ WARNING: - [`1.11.0-rc3-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.10.4-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) +- [`1.10.5-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) -- [`1.10.4-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bullseye/Dockerfile) +- [`1.10.5-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bullseye/Dockerfile) -- [`1.10.4-alpine3.20`, `1.10-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.10.4-alpine`, `1.10-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.20/Dockerfile) +- [`1.10.5-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.4-alpine3.19`, `1.10-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/alpine3.19/Dockerfile) - -- [`1.10.4-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.10.4-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.5-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) - [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) @@ -73,16 +69,16 @@ WARNING: - [`1.11.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.10.4`, `1.10`, `1`, `latest`: +- `1.10.5`, `1.10`, `1`, `latest`: - - [`1.10.4-bookworm`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/bookworm/Dockerfile) - - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.5-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) + - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.4-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.10.5-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e141e0970011e1f022d7c887d00921bf06b4198b/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) - `1.6.7`, `1.6`: diff --git a/pypy/README.md b/pypy/README.md index 4da79a2647f9..38e490854264 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,76 +28,53 @@ WARNING: ## Simple Tags -- [`3.10-7.3.16-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.16-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bookworm/Dockerfile) +- [`3.10-7.3.17-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.17-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bookworm/Dockerfile) -- [`3.10-7.3.16-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.16-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.17-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.17-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.16-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.16-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) +- [`3.10-7.3.17-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.17-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bullseye/Dockerfile) -- [`3.10-7.3.16-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.16-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.16-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.16-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.17-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.17-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.17-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.17-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.16-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.16-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.17-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.17-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.16-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.16-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.17-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.17-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) -- [`3.9-7.3.16-bookworm`, `3.9-7.3-bookworm`, `3.9-7-bookworm`, `3.9-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bookworm/Dockerfile) +- [`2.7-7.3.17-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.17-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bookworm/Dockerfile) -- [`3.9-7.3.16-slim-bookworm`, `3.9-7.3-slim-bookworm`, `3.9-7-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bookworm/Dockerfile) +- [`2.7-7.3.17-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.17-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/slim-bookworm/Dockerfile) -- [`3.9-7.3.16-bullseye`, `3.9-7.3-bullseye`, `3.9-7-bullseye`, `3.9-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) +- [`2.7-7.3.17-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.17-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bullseye/Dockerfile) -- [`3.9-7.3.16-slim`, `3.9-7.3-slim`, `3.9-7-slim`, `3.9-slim`, `3.9-7.3.16-slim-bullseye`, `3.9-7.3-slim-bullseye`, `3.9-7-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/slim-bullseye/Dockerfile) +- [`2.7-7.3.17-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.17-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.17-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.17-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/slim-bullseye/Dockerfile) -- [`3.9-7.3.16-windowsservercore-ltsc2022`, `3.9-7.3-windowsservercore-ltsc2022`, `3.9-7-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.17-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.17-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.9-7.3.16-windowsservercore-1809`, `3.9-7.3-windowsservercore-1809`, `3.9-7-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) - -- [`2.7-7.3.16-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.16-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bookworm/Dockerfile) - -- [`2.7-7.3.16-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.16-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bookworm/Dockerfile) - -- [`2.7-7.3.16-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.16-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) - -- [`2.7-7.3.16-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.16-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.16-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.16-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/slim-bullseye/Dockerfile) - -- [`2.7-7.3.16-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.16-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`2.7-7.3.16-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.16-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.17-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.17-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.10-7.3.16`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.16`, `3-7.3`, `3-7`, `3`, `latest`: - - - [`3.10-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/bullseye/Dockerfile) - - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) - -- `3.10-7.3.16-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.16-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - - [`3.10-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/7fd4974ceb6228a380d1c759bb6bfbb9bb7a6686/3.10/windows/windowsservercore-1809/Dockerfile) - -- `3.9-7.3.16`, `3.9-7.3`, `3.9-7`, `3.9`: +- `3.10-7.3.17`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.17`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.9-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/bullseye/Dockerfile) - - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bullseye/Dockerfile) + - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.9-7.3.16-windowsservercore`, `3.9-7.3-windowsservercore`, `3.9-7-windowsservercore`, `3.9-windowsservercore`: +- `3.10-7.3.17-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.17-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.9-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.9-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/86c243284bdb4df9a673aa3f3c837edeed8449cb/3.9/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.16`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.16`, `2-7.3`, `2-7`, `2`: +- `2.7-7.3.17`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.17`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.16-bullseye`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/bullseye/Dockerfile) - - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bullseye/Dockerfile) + - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.16-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.16-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: +- `2.7-7.3.17-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.17-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.16-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.16-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/da7ff7031b87e70e4d1eb089a5bea20c3cd8ff96/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 86257e92c63c1450c281f965aa150d51318df391 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Aug 2024 13:08:58 -0700 Subject: [PATCH 1489/2686] Run update.sh --- hylang/README.md | 80 ++++++++++++++++++++++++---------------------- rabbitmq/README.md | 8 ++--- 2 files changed, 46 insertions(+), 42 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index eb62b37340a6..f5df1674a86e 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,89 +28,93 @@ WARNING: ## Simple Tags -- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.29.0-python3.12-windowsservercore-ltsc2022`, `0.29-python3.12-windowsservercore-ltsc2022`, `0-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `0.29.0-windowsservercore-ltsc2022`, `0.29-windowsservercore-ltsc2022`, `0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.29.0-python3.12-windowsservercore-1809`, `0.29-python3.12-windowsservercore-1809`, `0-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `0.29.0-windowsservercore-1809`, `0.29-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`0.29.0-python3.11-windowsservercore-ltsc2022`, `0.29-python3.11-windowsservercore-ltsc2022`, `0-python3.11-windowsservercore-ltsc2022`, `python3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-ltsc2022) -- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.29.0-python3.11-windowsservercore-1809`, `0.29-python3.11-windowsservercore-1809`, `0-python3.11-windowsservercore-1809`, `python3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-1809) -- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.29.0-pypy3.9-bookworm`, `0.29-pypy3.9-bookworm`, `0-pypy3.9-bookworm`, `pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) +- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) -- [`0.29.0-pypy3.9-bullseye`, `0.29-pypy3.9-bullseye`, `0-pypy3.9-bullseye`, `pypy3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bullseye) +- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.29.0-pypy3.9-windowsservercore-ltsc2022`, `0.29-pypy3.9-windowsservercore-ltsc2022`, `0-pypy3.9-windowsservercore-ltsc2022`, `pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) +- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.29.0-pypy3.9-windowsservercore-1809`, `0.29-pypy3.9-windowsservercore-1809`, `0-pypy3.9-windowsservercore-1809`, `pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) +- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + +- [`0.29.0-pypy3.10-windowsservercore-ltsc2022`, `0.29-pypy3.10-windowsservercore-ltsc2022`, `0-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `0.29.0-pypy-windowsservercore-ltsc2022`, `0.29-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + +- [`0.29.0-pypy3.10-windowsservercore-1809`, `0.29-pypy3.10-windowsservercore-1809`, `0-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `0.29.0-pypy-windowsservercore-1809`, `0.29-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: - - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`0.29.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: - - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`0.29.0-python3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-ltsc2022) + - [`0.29.0-python3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-1809) - `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: - - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: - - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: - - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: - - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - -- `0.29.0-pypy3.9`, `0.29-pypy3.9`, `0-pypy3.9`, `pypy3.9`: - - - [`0.29.0-pypy3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-bookworm) - - [`0.29.0-pypy3.9-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-ltsc2022) - - [`0.29.0-pypy3.9-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/cc3a452953d734499bb98275a0a71a3f41895112/dockerfiles-generated/Dockerfile.pypy3.9-windowsservercore-1809) + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.29.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b6eeb9851a03..e607ed71c7af 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.5`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/9d679df50f50556fbc2f0d973783c8348d4e23ca/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.6`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/8049e562768aa2f2ff8b3b84e03cd111cd212ba2/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-beta.5-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-beta.6-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.5-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/9d679df50f50556fbc2f0d973783c8348d4e23ca/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.6-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/8049e562768aa2f2ff8b3b84e03cd111cd212ba2/4.0-rc/alpine/Dockerfile) -- [`4.0.0-beta.5-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-beta.6-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/15c35230e38494fcb064d9a9933735fbce22c1d9/3.13/ubuntu/Dockerfile) From 88fbcb9198a3cd4c02a620f4d7dcfdbaf4e2bb0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Aug 2024 14:08:58 -0700 Subject: [PATCH 1490/2686] Run update.sh --- mongo/README.md | 12 ++++++------ openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 1554319089eb..fad9a3fe9035 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -40,9 +40,9 @@ WARNING: - [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) -- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) - [`7.0.14-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) @@ -99,13 +99,13 @@ WARNING: - `7.0.14`, `7.0`, `7`, `latest`: - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) - - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.14-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: - - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.14-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: diff --git a/openjdk/README.md b/openjdk/README.md index fa586aa05d97..62e62dd5cc0d 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-12-jdk-oraclelinux9`, `24-ea-12-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-12-jdk-oracle`, `24-ea-12-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-13-jdk-oraclelinux9`, `24-ea-13-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-13-jdk-oracle`, `24-ea-13-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-12-jdk-oraclelinux8`, `24-ea-12-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-13-jdk-oraclelinux8`, `24-ea-13-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-12-jdk-bookworm`, `24-ea-12-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/bookworm/Dockerfile) +- [`24-ea-13-jdk-bookworm`, `24-ea-13-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/bookworm/Dockerfile) -- [`24-ea-12-jdk-slim-bookworm`, `24-ea-12-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-12-jdk-slim`, `24-ea-12-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-13-jdk-slim-bookworm`, `24-ea-13-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-13-jdk-slim`, `24-ea-13-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-12-jdk-bullseye`, `24-ea-12-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/bullseye/Dockerfile) +- [`24-ea-13-jdk-bullseye`, `24-ea-13-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/bullseye/Dockerfile) -- [`24-ea-12-jdk-slim-bullseye`, `24-ea-12-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-13-jdk-slim-bullseye`, `24-ea-13-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-12-jdk-windowsservercore-ltsc2022`, `24-ea-12-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-13-jdk-windowsservercore-ltsc2022`, `24-ea-13-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-12-jdk-windowsservercore-1809`, `24-ea-12-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-13-jdk-windowsservercore-1809`, `24-ea-13-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-12-jdk-nanoserver-1809`, `24-ea-12-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-13-jdk-nanoserver-1809`, `24-ea-13-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `24-ea-12-jdk`, `24-ea-12`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-13-jdk`, `24-ea-13`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-12-jdk-windowsservercore`, `24-ea-12-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-13-jdk-windowsservercore`, `24-ea-13-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-12-jdk-nanoserver`, `24-ea-12-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-13-jdk-nanoserver`, `24-ea-13-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef60330192dff999f2c31baee403a4833eb9fc0f/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: From 5a843227819eb9932844379500368cfe45a6f7a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 Aug 2024 15:09:05 -0700 Subject: [PATCH 1491/2686] Run update.sh --- nats/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nats/README.md b/nats/README.md index e00feaed11bc..326af444bd82 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,48 +28,48 @@ WARNING: ## Simple Tags -- [`2.10.19-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.19-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/alpine3.20/Dockerfile) +- [`2.10.20-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.20-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/alpine3.20/Dockerfile) -- [`2.10.19-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.19-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/scratch/Dockerfile) +- [`2.10.20-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.20-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/scratch/Dockerfile) -- [`2.10.19-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.20-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.19-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.20-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/alpine3.18/Dockerfile) +- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/alpine3.18/Dockerfile) -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/scratch/Dockerfile) +- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/scratch/Dockerfile) -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/windowsservercore-1809/Dockerfile) +- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/windowsservercore-1809/Dockerfile) -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/nanoserver-1809/Dockerfile) +- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.19`, `2.10`, `2`, `latest`: +- `2.10.20`, `2.10`, `2`, `latest`: - - [`2.10.19-scratch`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/scratch/Dockerfile) - - [`2.10.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.20-scratch`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/scratch/Dockerfile) + - [`2.10.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.19-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.20-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.19-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.20-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.19-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.20-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.19-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) - `2.9.25`, `2.9`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/scratch/Dockerfile) + - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/scratch/Dockerfile) - `2.9.25-windowsservercore`, `2.9-windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/windowsservercore-1809/Dockerfile) - `2.9.25-nanoserver`, `2.9-nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dc7ca92700ca894693d2cc4dc920179b8582e122/2.9.x/nanoserver-1809/Dockerfile) + - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From b3a28bf17d582ba61715c062fd9ada3d005fb2b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Aug 2024 11:09:01 -0700 Subject: [PATCH 1492/2686] Run update.sh --- perl/README.md | 64 +++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/perl/README.md b/perl/README.md index 5d3c52781803..c5b6cc49dde4 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.2`, `5.41`, `devel`, `5.41.2-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main-bookworm/Dockerfile) +- [`5.41.3`, `5.41`, `devel`, `5.41.3-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main-bookworm/Dockerfile) -- [`5.41.2-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main-bullseye/Dockerfile) +- [`5.41.3-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main-bullseye/Dockerfile) -- [`5.41.2-slim`, `5.41-slim`, `devel-slim`, `5.41.2-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim-bookworm/Dockerfile) +- [`5.41.3-slim`, `5.41-slim`, `devel-slim`, `5.41.3-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim-bookworm/Dockerfile) -- [`5.41.2-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim-bullseye/Dockerfile) +- [`5.41.3-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim-bullseye/Dockerfile) -- [`5.41.2-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.2-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main,threaded-bookworm/Dockerfile) +- [`5.41.3-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.3-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main,threaded-bookworm/Dockerfile) -- [`5.41.2-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-main,threaded-bullseye/Dockerfile) +- [`5.41.3-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main,threaded-bullseye/Dockerfile) -- [`5.41.2-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.2-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim,threaded-bookworm/Dockerfile) +- [`5.41.3-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.3-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim,threaded-bookworm/Dockerfile) -- [`5.41.2-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/09d0e7d2adb1ebea9d2dbc3b3175954ffc0197e8/5.041.002-slim,threaded-bullseye/Dockerfile) +- [`5.41.3-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From 0eeb0ec1795c6832d32dbe5dc10f38016e6d4857 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Aug 2024 12:08:54 -0700 Subject: [PATCH 1493/2686] Run update.sh --- php/README.md | 140 +++++++++++++++----------------------------------- 1 file changed, 42 insertions(+), 98 deletions(-) diff --git a/php/README.md b/php/README.md index ef8aa6e9f0d8..585c2853dd5e 100644 --- a/php/README.md +++ b/php/README.md @@ -24,145 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0beta3-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta3-bookworm`, `8.4-rc-bookworm`, `8.4.0beta3-cli`, `8.4-rc-cli`, `8.4.0beta3`, `8.4-rc`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0beta4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta4-bookworm`, `8.4-rc-bookworm`, `8.4.0beta4-cli`, `8.4-rc-cli`, `8.4.0beta4`, `8.4-rc`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0beta3-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta3-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0beta4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0beta3-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta3-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0beta4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0beta3-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta3-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0beta4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0beta3-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta3-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0beta4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0beta3-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0beta4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0beta3-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0beta4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0beta3-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0beta4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0beta3-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta3-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta3-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta3-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0beta4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0beta3-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta3-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0beta4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0beta3-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta3-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0beta4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0beta3-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta3-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0beta4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0beta3-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0beta4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0beta3-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0fa53690830fff255a463f819ba308eaf81c2796/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0beta4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/zts/Dockerfile) -- [`8.3.11RC2-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.11RC2-bookworm`, `8.3-rc-bookworm`, `8.3.11RC2-cli`, `8.3-rc-cli`, `8.3.11RC2`, `8.3-rc`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.11-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.11-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.11-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.11`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/cli/Dockerfile) -- [`8.3.11RC2-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.11RC2-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.11-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.11-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/apache/Dockerfile) -- [`8.3.11RC2-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.11RC2-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.11-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.11-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/fpm/Dockerfile) -- [`8.3.11RC2-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.11RC2-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.11-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.11-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/zts/Dockerfile) -- [`8.3.11RC2-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.11RC2-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.11-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.11-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/cli/Dockerfile) -- [`8.3.11RC2-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.11-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/apache/Dockerfile) -- [`8.3.11RC2-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.11-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/fpm/Dockerfile) -- [`8.3.11RC2-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.11-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/zts/Dockerfile) -- [`8.3.11RC2-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.11RC2-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.11RC2-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.11RC2-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.11-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.11-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.11-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.11-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.11RC2-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.11RC2-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.11-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.11-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.11RC2-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.11RC2-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.11-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.11-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.11RC2-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.11RC2-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.11-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.11-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.11RC2-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.11-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.11RC2-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/a15b1e1448d2f99db63f68dc4ce21da9a82f5aad/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.11-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.10-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.10-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.10-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.10`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/cli/Dockerfile) +- [`8.2.23-cli-bookworm`, `8.2-cli-bookworm`, `8.2.23-bookworm`, `8.2-bookworm`, `8.2.23-cli`, `8.2-cli`, `8.2.23`, `8.2`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/cli/Dockerfile) -- [`8.3.10-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.10-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/apache/Dockerfile) +- [`8.2.23-apache-bookworm`, `8.2-apache-bookworm`, `8.2.23-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/apache/Dockerfile) -- [`8.3.10-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.10-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/fpm/Dockerfile) +- [`8.2.23-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.23-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/fpm/Dockerfile) -- [`8.3.10-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.10-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bookworm/zts/Dockerfile) +- [`8.2.23-zts-bookworm`, `8.2-zts-bookworm`, `8.2.23-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/zts/Dockerfile) -- [`8.3.10-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.10-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/cli/Dockerfile) +- [`8.2.23-cli-bullseye`, `8.2-cli-bullseye`, `8.2.23-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/cli/Dockerfile) -- [`8.3.10-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/apache/Dockerfile) +- [`8.2.23-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/apache/Dockerfile) -- [`8.3.10-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/fpm/Dockerfile) +- [`8.2.23-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/fpm/Dockerfile) -- [`8.3.10-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/bullseye/zts/Dockerfile) +- [`8.2.23-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/zts/Dockerfile) -- [`8.3.10-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.10-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.10-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.10-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/cli/Dockerfile) +- [`8.2.23-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.23-alpine3.20`, `8.2-alpine3.20`, `8.2.23-cli-alpine`, `8.2-cli-alpine`, `8.2.23-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.10-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.10-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/fpm/Dockerfile) +- [`8.2.23-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.23-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.10-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.10-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.20/zts/Dockerfile) +- [`8.2.23-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.23-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/zts/Dockerfile) -- [`8.3.10-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.10-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/cli/Dockerfile) +- [`8.2.23-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.23-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/cli/Dockerfile) -- [`8.3.10-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/fpm/Dockerfile) +- [`8.2.23-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/fpm/Dockerfile) -- [`8.3.10-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/9c81d9730c629b700b88ef22c87839a9d6ab046b/8.3/alpine3.19/zts/Dockerfile) - -- [`8.2.23RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.23RC1-bookworm`, `8.2-rc-bookworm`, `8.2.23RC1-cli`, `8.2-rc-cli`, `8.2.23RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/cli/Dockerfile) - -- [`8.2.23RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.23RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/apache/Dockerfile) - -- [`8.2.23RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.23RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/fpm/Dockerfile) - -- [`8.2.23RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.23RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bookworm/zts/Dockerfile) - -- [`8.2.23RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.23RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/cli/Dockerfile) - -- [`8.2.23RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/apache/Dockerfile) - -- [`8.2.23RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/fpm/Dockerfile) - -- [`8.2.23RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/bullseye/zts/Dockerfile) - -- [`8.2.23RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.23RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.23RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.23RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/cli/Dockerfile) - -- [`8.2.23RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.23RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/fpm/Dockerfile) - -- [`8.2.23RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.23RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.20/zts/Dockerfile) - -- [`8.2.23RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.23RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/cli/Dockerfile) - -- [`8.2.23RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/fpm/Dockerfile) - -- [`8.2.23RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/72fd839a48910f2bcc194ce2d1722c941fb5d2ff/8.2-rc/alpine3.19/zts/Dockerfile) - -- [`8.2.22-cli-bookworm`, `8.2-cli-bookworm`, `8.2.22-bookworm`, `8.2-bookworm`, `8.2.22-cli`, `8.2-cli`, `8.2.22`, `8.2`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/cli/Dockerfile) - -- [`8.2.22-apache-bookworm`, `8.2-apache-bookworm`, `8.2.22-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/apache/Dockerfile) - -- [`8.2.22-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.22-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.22-zts-bookworm`, `8.2-zts-bookworm`, `8.2.22-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bookworm/zts/Dockerfile) - -- [`8.2.22-cli-bullseye`, `8.2-cli-bullseye`, `8.2.22-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/cli/Dockerfile) - -- [`8.2.22-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/apache/Dockerfile) - -- [`8.2.22-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.22-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/bullseye/zts/Dockerfile) - -- [`8.2.22-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.22-alpine3.20`, `8.2-alpine3.20`, `8.2.22-cli-alpine`, `8.2-cli-alpine`, `8.2.22-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.22-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.22-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.22-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.22-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.20/zts/Dockerfile) - -- [`8.2.22-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.22-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/cli/Dockerfile) - -- [`8.2.22-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/fpm/Dockerfile) - -- [`8.2.22-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/d94995abcb26d492a984d01edea2be1157e6303d/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.23-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/zts/Dockerfile) - [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) From b3887672032346896e8aac9be222e16ddca369a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Aug 2024 13:09:02 -0700 Subject: [PATCH 1494/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index fc94e32a4e88..afbac736cc4d 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/uclibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/musl/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/557fc6b60c652465f82bb915e7c55ab46984ceaf/latest-1/glibc/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From f2cdd56dab02e200c7f57e6852a522b4b2de6de4 Mon Sep 17 00:00:00 2001 From: Felipe Augusto <14238257+felipementel@users.noreply.github.com> Date: Fri, 30 Aug 2024 17:54:41 -0300 Subject: [PATCH 1495/2686] docs: update readme to indicate the port binding (#2486) --- sonarqube/content.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index 4d9138ff2d90..1961b53c4db0 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -37,6 +37,16 @@ To run a cluster with the Data Center Edition, please refer to Installing SonarQ ## Configuration +### Port binding + +By default, the server running within the container will listen on port 9000. You can expose the container port 9000 to the host port 9000 with the `-p 9000:9000` argument to `docker run`, like the command below: + +```console +docker run --name sonarqube-custom -p 9000:9000 %%IMAGE%%:10.6-community +``` + +You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the SonarQube web interface. + ### Database By default, the image will use an embedded H2 database that is not suited for production. @@ -66,7 +76,7 @@ For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade th In some environments, it may make more sense to prepare a custom image containing your configuration. A `Dockerfile` to achieve this may be as simple as: ```dockerfile -FROM sonarqube:8.9-community +FROM %%IMAGE%%:10.6-community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/ ``` From 43a91589b88eabe6aef71f0e3ad2c193c0ee616f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Aug 2024 14:08:56 -0700 Subject: [PATCH 1496/2686] Run update.sh --- sonarqube/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 3554c27be44b..2dd5da501f38 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -102,6 +102,16 @@ To run a cluster with the Data Center Edition, please refer to Installing SonarQ ## Configuration +### Port binding + +By default, the server running within the container will listen on port 9000. You can expose the container port 9000 to the host port 9000 with the `-p 9000:9000` argument to `docker run`, like the command below: + +```console +docker run --name sonarqube-custom -p 9000:9000 sonarqube:10.6-community +``` + +You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the SonarQube web interface. + ### Database By default, the image will use an embedded H2 database that is not suited for production. @@ -131,7 +141,7 @@ For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade th In some environments, it may make more sense to prepare a custom image containing your configuration. A `Dockerfile` to achieve this may be as simple as: ```dockerfile -FROM sonarqube:8.9-community +FROM sonarqube:10.6-community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/ ``` From 65f7da67a94f49be8d53c1028723c104eacc98a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 Aug 2024 17:09:01 -0700 Subject: [PATCH 1497/2686] Run update.sh --- couchbase/README.md | 2 +- ghost/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 264b293e48c4..964821fdb42d 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.2`, `enterprise-7.6.2`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/ba43d566538a8e0b6315569b94f0a7cf835c222b/enterprise/couchbase-server/7.6.2/Dockerfile) +- [`7.6.3`, `enterprise-7.6.3`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/553d1baa4aa90fe506e1d7bcdf4daec387a110fe/enterprise/couchbase-server/7.6.3/Dockerfile) - [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 148505f7bf2b..639ee2023c5e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.90.2`, `5.90`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5e8b6b027fde03cedaf565a478fce452e51aaea1/5/debian/Dockerfile) +- [`5.91.0`, `5.91`, `5`, `latest`](https://github.com/docker-library/ghost/blob/74ddbb69bd74cbfb03585a004ed33c366ed51160/5/debian/Dockerfile) -- [`5.90.2-alpine`, `5.90-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5e8b6b027fde03cedaf565a478fce452e51aaea1/5/alpine/Dockerfile) +- [`5.91.0-alpine`, `5.91-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/74ddbb69bd74cbfb03585a004ed33c366ed51160/5/alpine/Dockerfile) # Quick reference (cont.) From b7f4b4b9b25c3dc9cc7eabdfbe14c81854bb1288 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Sep 2024 12:08:55 -0700 Subject: [PATCH 1498/2686] Run update.sh --- crate/README.md | 2 +- emqx/README.md | 4 +++- friendica/README.md | 6 +++--- mariadb/README.md | 26 +++++++++++++------------- xwiki/README.md | 6 +++--- 5 files changed, 23 insertions(+), 21 deletions(-) diff --git a/crate/README.md b/crate/README.md index 52703d8eceed..4ec14bca786b 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.1`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/f6eefe79843a1746efe46779b5cfd32df4f3e6df/Dockerfile) +- [`5.8.2`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/7d88cae1f65dfff807363a35adcb470a978e14c8/Dockerfile) - [`5.7.4`, `5.7`](https://github.com/crate/docker-crate/blob/d8b45726e982beff1fc63aebcd5f4bbc7312dbc4/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index ef8c9b11d4df..b26ab6ee52f4 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -36,7 +36,9 @@ WARNING: - [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) -- [`5.7.2`, `5.7`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) +- [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) + +- [`5.8.0`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/69e9c223e2215fb5d071dec6cc6aa19c106331e7/5.8/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 31a82b06f6af..0ddeeacd1672 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) -- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/apache/Dockerfile) +- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/c6a6c0684a228c7915a92c5ce3a7444f12536ae3/2024.09-dev/apache/Dockerfile) -- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/fpm/Dockerfile) +- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/c6a6c0684a228c7915a92c5ce3a7444f12536ae3/2024.09-dev/fpm/Dockerfile) -- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/69adf85d8791b5b149476ca7e434c17a19192767/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/a007cb41702e73120ce4faf2a5f1c1e9ddc296aa/2024.09-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 7bfc58759976..7ce4643caceb 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,31 +26,31 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.6-ubi/Dockerfile) +- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.6-ubi/Dockerfile) -- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.6/Dockerfile) +- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.6/Dockerfile) -- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.5-ubi/Dockerfile) +- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.5-ubi/Dockerfile) -- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/b34b76eb883ea262db762517947e2cb2776f112b/11.5/Dockerfile) +- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.5/Dockerfile) -- [`11.4.3-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.4-ubi/Dockerfile) +- [`11.4.3-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.4-ubi/Dockerfile) -- [`11.4.3-noble`, `11.4-noble`, `lts-noble`, `11.4.3`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.4/Dockerfile) +- [`11.4.3-noble`, `11.4-noble`, `lts-noble`, `11.4.3`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.4/Dockerfile) -- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.2/Dockerfile) +- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.2/Dockerfile) -- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/11.1/Dockerfile) +- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.1/Dockerfile) -- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.11-ubi/Dockerfile) +- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.11-ubi/Dockerfile) -- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.11/Dockerfile) +- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.11/Dockerfile) -- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.6-ubi/Dockerfile) +- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.6-ubi/Dockerfile) -- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.6/Dockerfile) +- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.6/Dockerfile) -- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/8b9a47d0544826a8fb7c01b4308b400c3f6e529f/10.5/Dockerfile) +- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.5/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 6130ac913837..3ebfc2e911a5 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.7-mariadb-tomcat`, `16.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.11`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.12`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e8e71bdac0660dd1a523c225860722ba05043075/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.2`, `16.4-mysql-tomcat`, `16.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/mysql-tomcat/Dockerfile) From 70ba8cfaf3ed54415a8682c05c3d7313db111049 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Sep 2024 13:09:00 -0700 Subject: [PATCH 1499/2686] Run update.sh --- clearlinux/README.md | 2 +- node/README.md | 12 ++++++------ rakudo-star/README.md | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 52d54b2aac24..9a46f2c89759 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fad5d1c7fde5e79b117a07303cca5d8a6c4f8acb/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d6004a4ca03779b1aca721fd1376e9cfa48a414c/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 30dc313e3814..6feafa4923b2 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.7-alpine3.19`, `22.7.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.8-alpine3.19`, `22.8.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.7-alpine`, `22.7-alpine3.20`, `22.7.0-alpine`, `22.7.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.8-alpine`, `22.8-alpine3.20`, `22.8.0-alpine`, `22.8.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.7`, `22.7-bookworm`, `22.7.0`, `22.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.8`, `22.8-bookworm`, `22.8.0`, `22.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.7-bookworm-slim`, `22.7-slim`, `22.7.0-bookworm-slim`, `22.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.8-bookworm-slim`, `22.8-slim`, `22.8.0-bookworm-slim`, `22.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.7-bullseye`, `22.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.8-bullseye`, `22.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.7-bullseye-slim`, `22.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/5313e6aa0b794521a732c9913151a13384d40c9c/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.8-bullseye-slim`, `22.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.17-alpine3.19`, `20.17.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.19/Dockerfile) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 3343125fa942..f9257dc0cca3 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.07`, `bookworm`](https://github.com/Raku/docker/blob/7d4343583c43355ad0dbfedc5a2ee406efaac534/2024.07/bookworm/Dockerfile) +- [`latest`, `2024.08`, `bookworm`](https://github.com/Raku/docker/blob/fb46bca51e03649ee14c3b1de3ecf8b4bb096e43/2024.08/bookworm/Dockerfile) -- [`alpine`, `2024.07-alpine`](https://github.com/Raku/docker/blob/7d4343583c43355ad0dbfedc5a2ee406efaac534/2024.07/alpine/Dockerfile) +- [`alpine`, `2024.08-alpine`](https://github.com/Raku/docker/blob/fb46bca51e03649ee14c3b1de3ecf8b4bb096e43/2024.08/alpine/Dockerfile) # Quick reference (cont.) From 03cc5a4427fb577f1e52114a21ed7e31905ad319 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Sep 2024 14:09:06 -0700 Subject: [PATCH 1500/2686] Run update.sh --- nextcloud/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 8bfdfc94daa4..dc72d365c716 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,11 +34,11 @@ WARNING: - [`28.0.9-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/fpm-alpine/Dockerfile) -- [`29.0.5-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.5`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/apache/Dockerfile) +- [`29.0.6-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.6`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/apache/Dockerfile) -- [`29.0.5-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/fpm/Dockerfile) +- [`29.0.6-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/fpm/Dockerfile) -- [`29.0.5-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/29/fpm-alpine/Dockerfile) +- [`29.0.6-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/fpm-alpine/Dockerfile) # Quick reference (cont.) From 3df86a454a72a70a85f5ce4a489db9216a2182fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Sep 2024 23:08:56 -0700 Subject: [PATCH 1501/2686] Run update.sh --- python/README.md | 120 +++++++++++++++++++++++------------------------ 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/python/README.md b/python/README.md index 9b0a95a32412..acf446ead14c 100644 --- a/python/README.md +++ b/python/README.md @@ -28,136 +28,136 @@ WARNING: ## Simple Tags -- [`3.13.0rc1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bookworm/Dockerfile) +- [`3.13.0rc1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bookworm/Dockerfile) -- [`3.13.0rc1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0rc1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0rc1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bullseye/Dockerfile) +- [`3.13.0rc1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bullseye/Dockerfile) -- [`3.13.0rc1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0rc1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0rc1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0rc1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0rc1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0rc1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0rc1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0rc1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0rc1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0rc1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.5-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bookworm/Dockerfile) +- [`3.12.5-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bookworm/Dockerfile) -- [`3.12.5-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.5-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/slim-bookworm/Dockerfile) +- [`3.12.5-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.5-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/slim-bookworm/Dockerfile) -- [`3.12.5-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bullseye/Dockerfile) +- [`3.12.5-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bullseye/Dockerfile) -- [`3.12.5-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/slim-bullseye/Dockerfile) +- [`3.12.5-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/slim-bullseye/Dockerfile) -- [`3.12.5-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/alpine3.20/Dockerfile) +- [`3.12.5-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/alpine3.20/Dockerfile) -- [`3.12.5-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/alpine3.19/Dockerfile) +- [`3.12.5-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/alpine3.19/Dockerfile) -- [`3.12.5-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.5-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.5-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.5-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bookworm/Dockerfile) +- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bookworm/Dockerfile) -- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/slim-bookworm/Dockerfile) +- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/slim-bookworm/Dockerfile) -- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bullseye/Dockerfile) +- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bullseye/Dockerfile) -- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/slim-bullseye/Dockerfile) +- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/alpine3.20/Dockerfile) +- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/alpine3.19/Dockerfile) +- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/alpine3.19/Dockerfile) -- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bookworm/Dockerfile) +- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bookworm/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/slim-bookworm/Dockerfile) +- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bullseye/Dockerfile) +- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/slim-bullseye/Dockerfile) +- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/alpine3.20/Dockerfile) +- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/alpine3.20/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/alpine3.19/Dockerfile) +- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/alpine3.19/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bookworm/Dockerfile) +- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bookworm/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/slim-bookworm/Dockerfile) +- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bullseye/Dockerfile) +- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/slim-bullseye/Dockerfile) +- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/alpine3.20/Dockerfile) +- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/alpine3.20/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/alpine3.19/Dockerfile) +- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/alpine3.19/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bookworm/Dockerfile) +- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bookworm/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/slim-bookworm/Dockerfile) +- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bullseye/Dockerfile) +- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/slim-bullseye/Dockerfile) +- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/alpine3.20/Dockerfile) +- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/alpine3.20/Dockerfile) -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/alpine3.19/Dockerfile) +- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/alpine3.19/Dockerfile) ## Shared Tags - `3.13.0rc1`, `3.13-rc`: - - [`3.13.0rc1-bookworm`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/bookworm/Dockerfile) - - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc1-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bookworm/Dockerfile) + - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0rc1-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/16e96e15aa5c7fec8ca41436159d62b22a733daf/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.5`, `3.12`, `3`, `latest`: - - [`3.12.5-bookworm`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/bookworm/Dockerfile) - - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.5-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bookworm/Dockerfile) + - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.5-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/cc2cf19f2c9a440706d17b5937bf104052eef967/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.9`, `3.11`: - - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/bookworm/Dockerfile) - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bookworm/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11.9-windowsservercore`, `3.11-windowsservercore`: - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/290f525cf67ff5a27410408ca3b7972d46b9203f/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10.14`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/1980d7b46875e86518a0fb1fff9da4c39f5261ea/3.10/bookworm/Dockerfile) + - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bookworm/Dockerfile) - `3.9.19`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/352e474bd8665590dc7075ceefe4624aac3228ca/3.9/bookworm/Dockerfile) + - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bookworm/Dockerfile) - `3.8.19`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/b0489af60eafa1bc93807a7e96bbd77bdc363e04/3.8/bookworm/Dockerfile) + - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bookworm/Dockerfile) # Quick reference (cont.) From fa2018a4955b3078a3477620a4f584937b80964e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Sep 2024 10:09:03 -0700 Subject: [PATCH 1502/2686] Run update.sh --- haproxy/README.md | 8 ++++---- oraclelinux/README.md | 18 +++++++++--------- ruby/README.md | 12 ++++++------ 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index aeb33afb88e0..3dfdc5d05a5a 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,13 +28,13 @@ WARNING: - [`3.1-dev6-alpine`, `3.1-dev-alpine`, `3.1-dev6-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/54937702396000e9b7ef8494896e749ea96aa6aa/3.1/alpine/Dockerfile) -- [`3.0.3`, `3.0`, `lts`, `latest`, `3.0.3-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/Dockerfile) +- [`3.0.4`, `3.0`, `lts`, `latest`, `3.0.4-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/217149de5f069af7a540918e71ba6a3d967598c1/3.0/Dockerfile) -- [`3.0.3-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.3-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/bc729b362307822861331c816b73f863332d4b11/3.0/alpine/Dockerfile) +- [`3.0.4-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.4-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/217149de5f069af7a540918e71ba6a3d967598c1/3.0/alpine/Dockerfile) -- [`2.9.9`, `2.9`, `2.9.9-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/Dockerfile) +- [`2.9.10`, `2.9`, `2.9.10-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/9f4709d9c692b7b4ef2999cf689ba947e07e1394/2.9/Dockerfile) -- [`2.9.9-alpine`, `2.9-alpine`, `2.9.9-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/e85e5b3e506be4b05de5062f27cbbd3fde03f923/2.9/alpine/Dockerfile) +- [`2.9.10-alpine`, `2.9-alpine`, `2.9.10-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/9f4709d9c692b7b4ef2999cf689ba947e07e1394/2.9/alpine/Dockerfile) - [`2.8.10`, `2.8`, `2.8.10-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index dd1158e228b6..d1b058b78748 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91acb47147d3ee89e22741bece8f42e9e67180e2/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 08218a591f0c..b853ea01466f 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.4-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.4`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/bookworm/Dockerfile) +- [`3.3.5-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/bookworm/Dockerfile) -- [`3.3.4-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.4-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/slim-bookworm/Dockerfile) +- [`3.3.5-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.5-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/slim-bookworm/Dockerfile) -- [`3.3.4-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/bullseye/Dockerfile) +- [`3.3.5-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/bullseye/Dockerfile) -- [`3.3.4-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/slim-bullseye/Dockerfile) +- [`3.3.5-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/slim-bullseye/Dockerfile) -- [`3.3.4-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.4-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/alpine3.20/Dockerfile) +- [`3.3.5-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.5-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/alpine3.20/Dockerfile) -- [`3.3.4-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/2e432fc966a291fa241b14637557710d33a05b42/3.3/alpine3.19/Dockerfile) +- [`3.3.5-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/alpine3.19/Dockerfile) - [`3.2.5-bookworm`, `3.2-bookworm`, `3.2.5`, `3.2`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/bookworm/Dockerfile) From 5e1e653d736c6dd88f6e3091b77e0265249de3c4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Sep 2024 13:08:59 -0700 Subject: [PATCH 1503/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index 00e5310635ca..8e2fae245cfd 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240826`, `latest`](https://github.com/vmware/photon-docker-image/blob/1a8dfbe4edd92c853185be71af77ccd894967092/docker/Dockerfile) +- [`5.0`, `5.0-20240904`, `latest`](https://github.com/vmware/photon-docker-image/blob/3f2ba1765094b1a58092e06e1006e6ae4e39c64e/docker/Dockerfile) -- [`4.0`, `4.0-20240826`](https://github.com/vmware/photon-docker-image/blob/3310ab053bd2e00aacf50fb95ae204f073fbaa87/docker/Dockerfile) +- [`4.0`, `4.0-20240904`](https://github.com/vmware/photon-docker-image/blob/0c4bb572f1a126e6408eaa21498ac32d1a088640/docker/Dockerfile) -- [`3.0`, `3.0-20240826`](https://github.com/vmware/photon-docker-image/blob/168f057e18bedd6ca515c357eb9bf376e9391f3a/docker/Dockerfile) +- [`3.0`, `3.0-20240904`](https://github.com/vmware/photon-docker-image/blob/9d336b2af07da99f8ef4793ef2c94968440cfd35/docker/Dockerfile) # Quick reference (cont.) From aee8980b1513f5679e170cd33e4601c452261e11 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Sep 2024 14:09:02 -0700 Subject: [PATCH 1504/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- liquibase/README.md | 4 ++-- mongo/README.md | 26 ++++++++++++++++++++++++++ odoo/README.md | 6 +++--- xwiki/README.md | 6 +++--- 6 files changed, 37 insertions(+), 11 deletions(-) diff --git a/bash/README.md b/bash/README.md index 2fa1a485bd54..383915f8c486 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240823`, `devel`, `devel-20240823-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/1e19089749d2f6fa710f09de91e03e001ae4fdcd/devel/Dockerfile) +- [`devel-20240828`, `devel`, `devel-20240828-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/f5761a6332d9d5e1560f5ef83a3acfca94798843/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 639ee2023c5e..1080c01620c2 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.91.0`, `5.91`, `5`, `latest`](https://github.com/docker-library/ghost/blob/74ddbb69bd74cbfb03585a004ed33c366ed51160/5/debian/Dockerfile) +- [`5.93.0`, `5.93`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5236e173d960a865740b39cfb2a2a1ee5cb19375/5/debian/Dockerfile) -- [`5.91.0-alpine`, `5.91-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/74ddbb69bd74cbfb03585a004ed33c366ed51160/5/alpine/Dockerfile) +- [`5.93.0-alpine`, `5.93-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5236e173d960a865740b39cfb2a2a1ee5cb19375/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/liquibase/README.md b/liquibase/README.md index 5d3a85587c28..c3e9f15d9735 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.29`, `4.29.1`, `latest`](https://github.com/liquibase/docker/blob/07e271e1a0d33b7670c5abcaf940e83bc0d17418/Dockerfile) +- [`4.29`, `4.29.2`, `latest`](https://github.com/liquibase/docker/blob/079c4169361e913b9477fc1fd93692974d4f10c5/Dockerfile) -- [`4.29-alpine`, `4.29.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/07e271e1a0d33b7670c5abcaf940e83bc0d17418/Dockerfile.alpine) +- [`4.29-alpine`, `4.29.2-alpine`, `alpine`](https://github.com/liquibase/docker/blob/079c4169361e913b9477fc1fd93692974d4f10c5/Dockerfile.alpine) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index fad9a3fe9035..1689e0eb703c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -48,6 +48,16 @@ WARNING: - [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.18-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/Dockerfile) + +- [`6.0.18-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.18-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`6.0.18-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`6.0.18-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.17-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) - [`6.0.17-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -112,6 +122,22 @@ WARNING: - [`7.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.18-rc0`, `6.0-rc`: + + - [`6.0.18-rc0-jammy`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/Dockerfile) + - [`6.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.18-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.18-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.18-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.18-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-1809/Dockerfile) + - `6.0.17`, `6.0`, `6`: - [`6.0.17-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index c3a1e99125bd..3e35963fe3d7 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240826`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/17.0/Dockerfile) +- [`17.0-20240904`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/17.0/Dockerfile) -- [`16.0-20240826`, `16.0`, `16`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/16.0/Dockerfile) +- [`16.0-20240904`, `16.0`, `16`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/16.0/Dockerfile) -- [`15.0-20240826`, `15.0`, `15`](https://github.com/odoo/docker/blob/b6411dfc5391faaa18a0e12951adcbc3469c2a30/15.0/Dockerfile) +- [`15.0-20240904`, `15.0`, `15`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/15.0/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 3ebfc2e911a5..dd0aef6cc463 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.2`, `16.4-mysql-tomcat`, `16.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.3`, `16.4-mysql-tomcat`, `16.4.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0836ecce56816ac78a09921fadd1d8874725355a/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From 3bc5f5ea303928f54c2b9ed55503e80013cea85a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Sep 2024 15:25:28 -0700 Subject: [PATCH 1505/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index 6fb8bc098152..34cb442f0970 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240812`, `12.6`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20240904`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240812-slim`, `12.6-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20240904-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240812`, `11.10`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20240904`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240812-slim`, `11.10-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20240904-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/experimental/Dockerfile) +- [`experimental`, `experimental-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/experimental/Dockerfile) -- [`oldstable`, `oldstable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/rc-buggy/Dockerfile) -- [`sid`, `sid-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/sid/Dockerfile) +- [`sid`, `sid-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/sid/Dockerfile) -- [`sid-slim`, `sid-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/sid/slim/Dockerfile) -- [`stable`, `stable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/Dockerfile) +- [`stable`, `stable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/slim/Dockerfile) -- [`testing`, `testing-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/Dockerfile) +- [`testing`, `testing-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/Dockerfile) +- [`trixie`, `trixie-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240812`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/unstable/Dockerfile) +- [`unstable`, `unstable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240812-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/39095b9bf8cbb2635be1e2dfed3d152f0b3d72bf/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/unstable/slim/Dockerfile) # Quick reference (cont.) From a592d8f174e2fb10d5e189aefc7369eec97d4f3e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Sep 2024 14:09:01 -0700 Subject: [PATCH 1506/2686] Run update.sh --- composer/README.md | 2 +- elasticsearch/README.md | 2 +- golang/README.md | 72 ++++++++++++++++++++--------------------- kibana/README.md | 2 +- logstash/README.md | 2 +- neo4j/README.md | 4 +-- swipl/README.md | 4 +-- xwiki/README.md | 6 ++-- 8 files changed, 47 insertions(+), 47 deletions(-) diff --git a/composer/README.md b/composer/README.md index 589e6fda5cee..33c7c0caf99f 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) -- [`2.7.8`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/521648f8db89da71e5475b0c944c6f6b3a72aa1b/latest/Dockerfile) +- [`2.7.9`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/58ca5571212e471dce2635e831a4c7afb939f6d4/latest/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 45b067ec5177..988b0cfd172d 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/elasticsearch/Dockerfile) +- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/elasticsearch/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/elasticsearch/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 5c6f5dd88633..89a0b778e678 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`1.23.0-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bookworm/Dockerfile) +- [`1.23.1-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bookworm/Dockerfile) -- [`1.23.0-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bullseye/Dockerfile) +- [`1.23.1-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bullseye/Dockerfile) -- [`1.23.0-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.0-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/alpine3.20/Dockerfile) +- [`1.23.1-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.1-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/alpine3.20/Dockerfile) -- [`1.23.0-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/alpine3.19/Dockerfile) +- [`1.23.1-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/alpine3.19/Dockerfile) -- [`1.23.0-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.1-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.0-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.1-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.0-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.1-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.0-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.1-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.6-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) +- [`1.22.7-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bookworm/Dockerfile) -- [`1.22.6-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bullseye/Dockerfile) +- [`1.22.7-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bullseye/Dockerfile) -- [`1.22.6-alpine3.20`, `1.22-alpine3.20`, `1.22.6-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.20/Dockerfile) +- [`1.22.7-alpine3.20`, `1.22-alpine3.20`, `1.22.7-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/alpine3.20/Dockerfile) -- [`1.22.6-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/alpine3.19/Dockerfile) +- [`1.22.7-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/alpine3.19/Dockerfile) -- [`1.22.6-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.7-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.6-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.7-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.6-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.7-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.6-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.7-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.23.0`, `1.23`, `1`, `latest`: +- `1.23.1`, `1.23`, `1`, `latest`: - - [`1.23.0-bookworm`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/bookworm/Dockerfile) - - [`1.23.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.1-bookworm`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bookworm/Dockerfile) + - [`1.23.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.0-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.1-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.0-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.1-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/b663973a9386bafc16023b41b0d94cc80f80cd7a/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.6`, `1.22`: +- `1.22.7`, `1.22`: - - [`1.22.6-bookworm`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/bookworm/Dockerfile) - - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.7-bookworm`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bookworm/Dockerfile) + - [`1.22.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.6-windowsservercore`, `1.22-windowsservercore`: +- `1.22.7-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.6-nanoserver`, `1.22-nanoserver`: +- `1.22.7-nanoserver`, `1.22-nanoserver`: - - [`1.22.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/3187a722bf31fb8b91df2b8c929fee4af9332460/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index daa51539a976..55648e5a278d 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/kibana/Dockerfile) +- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/kibana/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 911a0e43adf7..5088a7d80aa1 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.0`](https://github.com/elastic/dockerfiles/blob/59cef71220e73a0d09bf5bb9b2322b9198d1bab4/logstash/Dockerfile) +- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/logstash/Dockerfile) - [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/logstash/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 8b7f20ab87f1..fe8637c063ee 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,9 +32,9 @@ WARNING: - [`5.23.0-enterprise-ubi9`, `5.23-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/ubi9/enterprise/Dockerfile) -- [`4.4.36`, `4.4.36-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/4.4.36/bullseye/community/Dockerfile) +- [`4.4.37`, `4.4.37-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/7422ac53238f689a26144d3c1c5aee434a07a325/4.4.37/bullseye/community/Dockerfile) -- [`4.4.36-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/865c130fa68c9fe5ce60d35351d3fafad6da6b4b/4.4.36/bullseye/enterprise/Dockerfile) +- [`4.4.37-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7422ac53238f689a26144d3c1c5aee434a07a325/4.4.37/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 31f04764a0b6..9380b0fad75f 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.9`](https://github.com/SWI-Prolog/docker-swipl/blob/4c15bb03b82ab39fb3bdf6579ad66014111faa11/9.3.9/bookworm/Dockerfile) +- [`latest`, `9.3.9`](https://github.com/SWI-Prolog/docker-swipl/blob/82d45b805d5fcd72c11fa07b3196a59709c8d2ac/9.3.9/bookworm/Dockerfile) -- [`stable`, `9.2.6`](https://github.com/SWI-Prolog/docker-swipl/blob/4c15bb03b82ab39fb3bdf6579ad66014111faa11/9.2.6/bookworm/Dockerfile) +- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/82d45b805d5fcd72c11fa07b3196a59709c8d2ac/9.2.7/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index dd0aef6cc463..7f6de9bde3f9 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.7`, `16.7.0`, `16-mysql-tomcat`, `16.7-mysql-tomcat`, `16.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/mysql-tomcat/Dockerfile) +- [`16`, `16.7`, `16.7.1`, `16-mysql-tomcat`, `16.7-mysql-tomcat`, `16.7.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.7-postgres-tomcat`, `16.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.7-postgres-tomcat`, `16.7.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.7-mariadb-tomcat`, `16.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/56c490f2e78e9ff0d0c506f5aade04acbaa042ff/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.7-mariadb-tomcat`, `16.7.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.12`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mysql-tomcat/Dockerfile) From e1c12fb151d53b24ce16c62ed556ee3b98702fc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Sep 2024 15:09:11 -0700 Subject: [PATCH 1507/2686] Run update.sh --- rust/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rust/README.md b/rust/README.md index 8f2a0b53bc39..23f8dfe91dc0 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.80-bullseye`, `1.80.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bullseye/Dockerfile) +- [`1-bullseye`, `1.81-bullseye`, `1.81.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.80-slim-bullseye`, `1.80.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.81-slim-bullseye`, `1.81.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.80-bookworm`, `1.80.1-bookworm`, `bookworm`, `1`, `1.80`, `1.80.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bookworm/Dockerfile) +- [`1-bookworm`, `1.81-bookworm`, `1.81.0-bookworm`, `bookworm`, `1`, `1.81`, `1.81.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.80-slim-bookworm`, `1.80.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.80-slim`, `1.80.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.81-slim-bookworm`, `1.81.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.81-slim`, `1.81.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.80-alpine3.19`, `1.80.1-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.81-alpine3.19`, `1.81.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.80-alpine3.20`, `1.80.1-alpine3.20`, `alpine3.20`, `1-alpine`, `1.80-alpine`, `1.80.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3b6565cd3b0b7c9cb084f07461cb959f7cf77c16/1.80.1/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.81-alpine3.20`, `1.81.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.81-alpine`, `1.81.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/alpine3.20/Dockerfile) # Quick reference (cont.) From 37600617530e5e5c475b6cad80b367c32d68f79b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Sep 2024 16:09:02 -0700 Subject: [PATCH 1508/2686] Run update.sh --- mongo/README.md | 30 +++++++++++++++--------------- wordpress/README.md | 18 ++++++++++++++++++ 2 files changed, 33 insertions(+), 15 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 1689e0eb703c..ef9f4501bd60 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc18-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/Dockerfile) +- [`8.0.0-rc19-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/Dockerfile) -- [`8.0.0-rc18-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc19-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc18-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc19-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc18-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc19-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc18-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc19-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) @@ -90,21 +90,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc18`, `8.0-rc`: +- `8.0.0-rc19`, `8.0-rc`: - - [`8.0.0-rc18-noble`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/Dockerfile) - - [`8.0.0-rc18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc19-noble`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/Dockerfile) + - [`8.0.0-rc19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc18-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc19-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc18-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc19-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/439d0a9d8bba726a8a494937fe1b3561961e3f6b/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.14`, `7.0`, `7`, `latest`: diff --git a/wordpress/README.md b/wordpress/README.md index 5eef425e8bf1..c61f11539176 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,6 +48,24 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.3/alpine/Dockerfile) +- [`beta-6.6.2-RC1-php8.1-apache`, `beta-6.6.2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6.2-RC1-php8.1`, `beta-6.6.2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/apache/Dockerfile) + +- [`beta-6.6.2-RC1-php8.1-fpm`, `beta-6.6.2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.6.2-RC1-php8.1-fpm-alpine`, `beta-6.6.2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.6.2-RC1-apache`, `beta-6.6.2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6.2-RC1`, `beta-6.6.2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6.2-RC1-php8.2-apache`, `beta-6.6.2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6.2-RC1-php8.2`, `beta-6.6.2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/apache/Dockerfile) + +- [`beta-6.6.2-RC1-fpm`, `beta-6.6.2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6.2-RC1-php8.2-fpm`, `beta-6.6.2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.6.2-RC1-fpm-alpine`, `beta-6.6.2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6.2-RC1-php8.2-fpm-alpine`, `beta-6.6.2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.6.2-RC1-php8.3-apache`, `beta-6.6.2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6.2-RC1-php8.3`, `beta-6.6.2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/apache/Dockerfile) + +- [`beta-6.6.2-RC1-php8.3-fpm`, `beta-6.6.2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.6.2-RC1-php8.3-fpm-alpine`, `beta-6.6.2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From c463b101e30e21bd74e868cac3b016b5288304b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Sep 2024 17:08:58 -0700 Subject: [PATCH 1509/2686] Run update.sh --- cassandra/README.md | 4 +-- drupal/README.md | 60 ++++++++++++++++++++++----------------------- haproxy/README.md | 4 +-- joomla/README.md | 18 +++++++------- 4 files changed, 43 insertions(+), 43 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 52a919a88323..bddb2ba239c4 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-rc2`, `5.0`, `5`, `5.0-rc2-jammy`, `5.0-jammy`, `5-jammy`](https://github.com/docker-library/cassandra/blob/31cced8ff8e1ba9f7d7600a8d0f41c36fb3dc8a8/5.0/Dockerfile) +- [`5.0.0`, `5.0`, `5`, `latest`, `5.0.0-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/cb4f6acadef77048615282871fd1480aee75f193/5.0/Dockerfile) -- [`4.1.6`, `4.1`, `4`, `latest`, `4.1.6-jammy`, `4.1-jammy`, `4-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/72bda687322eef86992681e21ce54bd2351c2573/4.1/Dockerfile) +- [`4.1.6`, `4.1`, `4`, `4.1.6-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/72bda687322eef86992681e21ce54bd2351c2573/4.1/Dockerfile) - [`4.0.13`, `4.0`, `4.0.13-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b51ed0210fc94d22dce73d8f07d1af1a3416d56a/4.0/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 7c75ab5cc67a..c4f4f04df872 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.1-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.1-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.1-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.1-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.1-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.1`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.2-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.2-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.2-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.2-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.2-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.1-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.1-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.1-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.1-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.2-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.2-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.2-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.2-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.1-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.1-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.2-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.2-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.1-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.1-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.2-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.2-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.1-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.1-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.1-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.1-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.2-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.2-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.2-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.2-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.1-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.1-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/5a0e6bd4e6199ead1a46479ba2b94c94d5e3acc5/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.2-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.2-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.2-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.2-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.2-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.3-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.3-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.3-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.2-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.2-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.3-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.3-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.2-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.3-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.2-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.3-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.2-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.2-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.3-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.3-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.2-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.3-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.2-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.2-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.2-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.2-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.2-apache`, `10.3-apache`, `10-apache`, `10.3.2`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.3-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.3-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.3-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.3-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.3-apache`, `10.3-apache`, `10-apache`, `10.3.3`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.2-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.2-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.2-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.2-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.3-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.3-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.3-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.3-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.2-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.2-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.3-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.3-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.2-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.2-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.3-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.3-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.2-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.2-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.2-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.2-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.3-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.3-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.3-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.3-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.2-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.2-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/127ac213294bf7b623cb4cc7507ccd5c60dce082/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.3-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.3-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/f0972908bf3fb3af1f25fd9a991ea10aa8c9bef1/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 3dfdc5d05a5a..92d1c11de1fc 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev6`, `3.1-dev`, `3.1-dev6-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/54937702396000e9b7ef8494896e749ea96aa6aa/3.1/Dockerfile) +- [`3.1-dev7`, `3.1-dev`, `3.1-dev7-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/e15bc9b51aa03402fbdf832e0e041ed75f70bed5/3.1/Dockerfile) -- [`3.1-dev6-alpine`, `3.1-dev-alpine`, `3.1-dev6-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/54937702396000e9b7ef8494896e749ea96aa6aa/3.1/alpine/Dockerfile) +- [`3.1-dev7-alpine`, `3.1-dev-alpine`, `3.1-dev7-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/e15bc9b51aa03402fbdf832e0e041ed75f70bed5/3.1/alpine/Dockerfile) - [`3.0.4`, `3.0`, `lts`, `latest`, `3.0.4-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/217149de5f069af7a540918e71ba6a3d967598c1/3.0/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index 0e11b728b250..9d7fcd018af1 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-beta1-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/apache/Dockerfile) +- [`5.2.0-beta2-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/apache/Dockerfile) -- [`5.2.0-beta1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-beta2-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-beta1-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.1/fpm/Dockerfile) +- [`5.2.0-beta2-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/fpm/Dockerfile) -- [`5.2.0-beta1`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta1-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta1-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta1-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/apache/Dockerfile) +- [`5.2.0-beta2`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta2-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta2-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta2-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/apache/Dockerfile) -- [`5.2.0-beta1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-beta2-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-beta1-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.2/fpm/Dockerfile) +- [`5.2.0-beta2-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/fpm/Dockerfile) -- [`5.2.0-beta1-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/apache/Dockerfile) +- [`5.2.0-beta2-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/apache/Dockerfile) -- [`5.2.0-beta1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-beta2-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-beta1-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/450bc595e4c4b1ea207a178188b41e09c30704c9/5.2.beta/php8.3/fpm/Dockerfile) +- [`5.2.0-beta2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/fpm/Dockerfile) - [`5.1.4-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/apache/Dockerfile) From aa52e4880f1a7d42ad0d13f87f6c6e708922054f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Sep 2024 13:09:13 -0700 Subject: [PATCH 1510/2686] Run update.sh --- clojure/README.md | 142 +++++++++++++++++++++++----------------------- dart/README.md | 4 +- photon/README.md | 6 +- 3 files changed, 76 insertions(+), 76 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index bc77b5a3fae5..9e5cb7aca5b9 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,147 +24,147 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.11.4.1474-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1479-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.11.4.1474-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1479-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.11.4.1474-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1479-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.11.4.1474`, `temurin-8-tools-deps-1.11.4.1474-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1479`, `temurin-8-tools-deps-1.12.0.1479-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.11.4.1474-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1479-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.11.4.1474-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1479-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.11.4.1474-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1479-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.11.4.1474-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1479-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.11.4.1474`, `temurin-11-tools-deps-1.11.4.1474-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1479`, `temurin-11-tools-deps-1.12.0.1479-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.11.4.1474-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1479-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.11.4.1474-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1479-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.11.4.1474-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1479-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.11.4.1474-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1479-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.11.4.1474`, `temurin-17-tools-deps-1.11.4.1474-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1479`, `temurin-17-tools-deps-1.12.0.1479-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.11.4.1474-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1479-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.11.4.1474-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1479-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.11.4.1474`, `temurin-21-tools-deps-1.11.4.1474-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.11.4.1474`, `tools-deps-1.11.4.1474-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1479`, `temurin-21-tools-deps-1.12.0.1479-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1479`, `tools-deps-1.12.0.1479-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.11.4.1474-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1479-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.11.4.1474-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.11.4.1474-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1479-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1479-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.11.4.1474-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1479-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.11.4.1474-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1479-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.11.4.1474-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1479-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-22/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) +- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.11.4.1474-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-22-alpine`, `temurin-22-tools-deps-1.12.0.1479-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.11.4.1474`, `temurin-22-tools-deps-1.11.4.1474-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.12.0.1479`, `temurin-22-tools-deps-1.12.0.1479-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-22/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.11.4.1474-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.11.4.1474-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.12.0.1479-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-22/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.11.4.1474-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/debian-bullseye-slim-22/tools-deps/Dockerfile) +- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-22/tools-deps/Dockerfile) -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.11.4.1474-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-22-jammy`, `temurin-22-tools-deps-1.12.0.1479-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-22-noble`, `temurin-22-tools-deps-1.11.4.1474-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/914461b1285f2f6d06dfc490b6ca77c8e4718343/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) +- [`temurin-22-noble`, `temurin-22-tools-deps-1.12.0.1479-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index dd24132e540a..0f81715d52bf 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.2-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.2`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/5b1137ae9893c30c18a2c06a62b8776d1a004bc5/stable/bookworm/Dockerfile) +- [`3.5.2-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.2`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/aaa12b5ca0fea8cd71ccdc472f75ee4d3ff35ee7/stable/bookworm/Dockerfile) -- [`3.6.0-149.3.beta-sdk`, `beta-sdk`, `3.6.0-149.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/5b1137ae9893c30c18a2c06a62b8776d1a004bc5/beta/bookworm/Dockerfile) +- [`3.6.0-216.1.beta-sdk`, `beta-sdk`, `3.6.0-216.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/aaa12b5ca0fea8cd71ccdc472f75ee4d3ff35ee7/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 8e2fae245cfd..7cdebb290ca4 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240904`, `latest`](https://github.com/vmware/photon-docker-image/blob/3f2ba1765094b1a58092e06e1006e6ae4e39c64e/docker/Dockerfile) +- [`5.0`, `5.0-20240906`, `latest`](https://github.com/vmware/photon-docker-image/blob/ab0021d2ea79c9d904f5efae456b8411c61cdccd/docker/Dockerfile) -- [`4.0`, `4.0-20240904`](https://github.com/vmware/photon-docker-image/blob/0c4bb572f1a126e6408eaa21498ac32d1a088640/docker/Dockerfile) +- [`4.0`, `4.0-20240906`](https://github.com/vmware/photon-docker-image/blob/d3f5856f0b70ea0a6501df3d1bbe03fcab7ef9fb/docker/Dockerfile) -- [`3.0`, `3.0-20240904`](https://github.com/vmware/photon-docker-image/blob/9d336b2af07da99f8ef4793ef2c94968440cfd35/docker/Dockerfile) +- [`3.0`, `3.0-20240906`](https://github.com/vmware/photon-docker-image/blob/163a2707180bff1015173c5003b0da5f592dcb9e/docker/Dockerfile) # Quick reference (cont.) From 332f7ff66b1fc55caa31eb615a0bf8ec1d0260b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Sep 2024 14:08:57 -0700 Subject: [PATCH 1511/2686] Run update.sh --- postgres/README.md | 8 ++++---- rabbitmq/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 862a9fb0c08c..702eae23fe80 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17beta3`, `17beta3-bookworm`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/bookworm/Dockerfile) +- [`17rc1`, `17rc1-bookworm`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/bookworm/Dockerfile) -- [`17beta3-bullseye`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/bullseye/Dockerfile) +- [`17rc1-bullseye`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/bullseye/Dockerfile) -- [`17beta3-alpine3.20`, `17beta3-alpine`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/alpine3.20/Dockerfile) +- [`17rc1-alpine3.20`, `17rc1-alpine`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/alpine3.20/Dockerfile) -- [`17beta3-alpine3.19`](https://github.com/docker-library/postgres/blob/805329e7a64fad212a5d4b07abd11238a9beab75/17/alpine3.19/Dockerfile) +- [`17rc1-alpine3.19`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/alpine3.19/Dockerfile) - [`16.4`, `16`, `latest`, `16.4-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/bookworm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e607ed71c7af..47cc2dc30742 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.6`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/8049e562768aa2f2ff8b3b84e03cd111cd212ba2/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-beta.6`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/c2de1a49b7002562d37bc50d15ea246ff60dafcb/4.0-rc/ubuntu/Dockerfile) - [`4.0.0-beta.6-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.6-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/8049e562768aa2f2ff8b3b84e03cd111cd212ba2/4.0-rc/alpine/Dockerfile) +- [`4.0.0-beta.6-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c2de1a49b7002562d37bc50d15ea246ff60dafcb/4.0-rc/alpine/Dockerfile) - [`4.0.0-beta.6-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/15c35230e38494fcb064d9a9933735fbce22c1d9/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/15c35230e38494fcb064d9a9933735fbce22c1d9/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fc362c970aa152f8c0d596f5a81cfc453a2e5eec/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fd645d88914a864e702b088ecb4bfecf2bb11156/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/1859564dc3cf527127118836d293ed12f6138193/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/fd645d88914a864e702b088ecb4bfecf2bb11156/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) From e7104e61ee060eda882a32f48fbcdc089b145187 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Sep 2024 15:08:58 -0700 Subject: [PATCH 1512/2686] Run update.sh --- alpine/README.md | 8 ++++---- ghost/README.md | 4 ++-- memcached/README.md | 4 ++-- mongo/README.md | 30 +++++++++++++++--------------- openjdk/README.md | 36 ++++++++++++++++++------------------ 5 files changed, 41 insertions(+), 41 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 6e31535d3cd8..492f3608765f 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20240807`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/35654ae14e617434d5ca29771296f6b9485eaa85/x86_64/Dockerfile) -- [`3.20.2`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/3b06e21a03a8564bb1b261da824b9e2cfa6e8bdf/x86_64/Dockerfile) +- [`3.20.3`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7d63673353bd39d92ba42f6effcc199aeebd45ee/x86_64/Dockerfile) -- [`3.19.3`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/e18b92255654f757419d5e7f45e917d4ad787a68/x86_64/Dockerfile) +- [`3.19.4`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0822e580809e816cdd92fdfc2677e71d01cba38c/x86_64/Dockerfile) -- [`3.18.8`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/19842e73b6c42f620a710957101663da79870a37/x86_64/Dockerfile) +- [`3.18.9`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a8be5a35dd72f90cb18dc7d450dca5212f6ad70f/x86_64/Dockerfile) -- [`3.17.9`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/efaaa8fee828ca129b2ca85104dd2f96a35f93dc/x86_64/Dockerfile) +- [`3.17.10`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1d3ddcf4766ef6085fe6005ce3ec8ca4e6b45ddd/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 1080c01620c2..d3109012a27b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.93.0`, `5.93`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5236e173d960a865740b39cfb2a2a1ee5cb19375/5/debian/Dockerfile) +- [`5.94.0`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4f86cc1e82deaf7843b8fe4086c8b3ecc5bdf3ce/5/debian/Dockerfile) -- [`5.93.0-alpine`, `5.93-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5236e173d960a865740b39cfb2a2a1ee5cb19375/5/alpine/Dockerfile) +- [`5.94.0-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4f86cc1e82deaf7843b8fe4086c8b3ecc5bdf3ce/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 744a0f68ca30..75aeffdf97d7 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.29`, `1.6`, `1`, `latest`, `1.6.29-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/debian/Dockerfile) +- [`1.6.30`, `1.6`, `1`, `latest`, `1.6.30-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/fe1178984dc98b5515f3adda0655fdba9cd30bbf/1/debian/Dockerfile) -- [`1.6.29-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.29-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/f01103ba6999e5ae31c3e11f0d5bf9ee757aff44/1/alpine/Dockerfile) +- [`1.6.30-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.30-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/fe1178984dc98b5515f3adda0655fdba9cd30bbf/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index ef9f4501bd60..003128a96b4b 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.0-rc19-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/Dockerfile) +- [`8.0.0-rc20-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/Dockerfile) -- [`8.0.0-rc19-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-rc20-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc19-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-rc20-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc19-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-rc20-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc19-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-rc20-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) @@ -90,21 +90,21 @@ WARNING: ## Shared Tags -- `8.0.0-rc19`, `8.0-rc`: +- `8.0.0-rc20`, `8.0-rc`: - - [`8.0.0-rc19-noble`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/Dockerfile) - - [`8.0.0-rc19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc20-noble`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/Dockerfile) + - [`8.0.0-rc20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc19-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-rc20-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.0-rc19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-rc20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-rc20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc19-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-rc20-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.0-rc19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4d955bc67fc93c754fe1e2e9fd3185c9e4da731a/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-rc20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-rc20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.14`, `7.0`, `7`, `latest`: diff --git a/openjdk/README.md b/openjdk/README.md index 62e62dd5cc0d..edba7dd1e169 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-13-jdk-oraclelinux9`, `24-ea-13-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-13-jdk-oracle`, `24-ea-13-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-14-jdk-oraclelinux9`, `24-ea-14-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-14-jdk-oracle`, `24-ea-14-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-13-jdk-oraclelinux8`, `24-ea-13-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-14-jdk-oraclelinux8`, `24-ea-14-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-13-jdk-bookworm`, `24-ea-13-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/bookworm/Dockerfile) +- [`24-ea-14-jdk-bookworm`, `24-ea-14-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/bookworm/Dockerfile) -- [`24-ea-13-jdk-slim-bookworm`, `24-ea-13-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-13-jdk-slim`, `24-ea-13-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-14-jdk-slim-bookworm`, `24-ea-14-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-14-jdk-slim`, `24-ea-14-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-13-jdk-bullseye`, `24-ea-13-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/bullseye/Dockerfile) +- [`24-ea-14-jdk-bullseye`, `24-ea-14-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/bullseye/Dockerfile) -- [`24-ea-13-jdk-slim-bullseye`, `24-ea-13-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-14-jdk-slim-bullseye`, `24-ea-14-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-13-jdk-windowsservercore-ltsc2022`, `24-ea-13-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-14-jdk-windowsservercore-ltsc2022`, `24-ea-14-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-13-jdk-windowsservercore-1809`, `24-ea-13-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-14-jdk-windowsservercore-1809`, `24-ea-14-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-13-jdk-nanoserver-1809`, `24-ea-13-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-14-jdk-nanoserver-1809`, `24-ea-14-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `24-ea-13-jdk`, `24-ea-13`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-14-jdk`, `24-ea-14`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-13-jdk-windowsservercore`, `24-ea-13-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-14-jdk-windowsservercore`, `24-ea-14-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-13-jdk-nanoserver`, `24-ea-13-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-14-jdk-nanoserver`, `24-ea-14-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f4265cce2ccb18d4725840d9b318e7d253c60562/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: From ea8ede7006e8d2bf2b633d29b71a9055189d2b00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Sep 2024 17:09:05 -0700 Subject: [PATCH 1513/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- buildpack-deps/README.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8d2a8ec293a8..b93fa595f4a0 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240819.0`](https://github.com/amazonlinux/container-images/blob/c29bfadba77a70adf176970bfb1f4d634c644871/Dockerfile) +- [`2023`, `latest`, `2023.5.20240903.0`](https://github.com/amazonlinux/container-images/blob/e3615dc9e73e50ddb9bf7bcf1fd76807878014cf/Dockerfile) -- [`2`, `2.0.20240816.0`](https://github.com/amazonlinux/container-images/blob/11e068c308c8aaee8a9484fa2381651f101c8ec9/Dockerfile) +- [`2`, `2.0.20240903.0`](https://github.com/amazonlinux/container-images/blob/2433b42c5ba17a2c73fa604deece91cd73b40d56/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 2bf6a9fb1da0..c0b30aeea337 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -66,6 +66,12 @@ WARNING: - [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/Dockerfile) +- [`oracular-curl`, `24.10-curl`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/curl/Dockerfile) + +- [`oracular-scm`, `24.10-scm`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/scm/Dockerfile) + +- [`oracular`, `24.10`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 66aa916d6ac3604f38ac7edb0dc2ca95f72b5eab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Sep 2024 11:09:03 -0700 Subject: [PATCH 1514/2686] Run update.sh --- archlinux/README.md | 6 +- clearlinux/README.md | 2 +- jetty/README.md | 206 +++++++++++++++---------------------------- photon/README.md | 6 +- python/README.md | 135 +++++++++++++--------------- 5 files changed, 142 insertions(+), 213 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index dfd912bc18e3..7388f649d741 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.base) +- [`latest`, `base`, `base-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.base) -- [`base-devel`, `base-devel-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240825.0.257728`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a915cdf3e8ae85bb9675c1d018151de0f86de624/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 9a46f2c89759..d79661eafa7c 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d6004a4ca03779b1aca721fd1376e9cfa48a414c/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/03ebfc11b16f17581b4021f47a3fa20498090d9a/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index 73f993506d81..ea1456b142d0 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,211 +24,151 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.55-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.55-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.56-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.56-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.55-jre8`, `9.4-jre8`, `9-jre8`, `9.4.55-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.56-jre8`, `9.4-jre8`, `9-jre8`, `9.4.56-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.55-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.55-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.56-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.56-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.55-jre21`, `9.4-jre21`, `9-jre21`, `9.4.55-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.56-jre21`, `9.4-jre21`, `9-jre21`, `9.4.56-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.55-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.55-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.56-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.56-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.55-jre17`, `9.4-jre17`, `9-jre17`, `9.4.55-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.56-jre17`, `9.4-jre17`, `9-jre17`, `9.4.56-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.55-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.55-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.56-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.56-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.55-jre11`, `9.4-jre11`, `9-jre11`, `9.4.55-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.56-jre11`, `9.4-jre11`, `9-jre11`, `9.4.56-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.55-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.55-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.56-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.56-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.55-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.55-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.56-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.56-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.55`, `9.4`, `9`, `9.4.55-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.55-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.55-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.56`, `9.4`, `9`, `9.4.56-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.56-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.56-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.55-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.55-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.56-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.56-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.55-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.55-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.56-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.56-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.55-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.55-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.56-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.56-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.55-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.55-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.11-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.11-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.12-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.12-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.11-jre21`, `12.0-jre21`, `12-jre21`, `12.0.11-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.12-jre21`, `12.0-jre21`, `12-jre21`, `12.0.12-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.11-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.11-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.12-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.12-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.11-jre17`, `12.0-jre17`, `12-jre17`, `12.0.11-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.12-jre17`, `12.0-jre17`, `12-jre17`, `12.0.12-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.11-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.11-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.12-jdk22-alpine`, `12.0-jdk22-alpine`, `12-jdk22-alpine`, `12.0.12-jdk22-alpine-eclipse-temurin`, `12.0-jdk22-alpine-eclipse-temurin`, `12-jdk22-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk22-alpine/Dockerfile) -- [`12.0.11`, `12.0`, `12`, `12.0.11-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.11-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.11-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.12-jdk22`, `12.0-jdk22`, `12-jdk22`, `12.0.12-jdk22-eclipse-temurin`, `12.0-jdk22-eclipse-temurin`, `12-jdk22-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk22/Dockerfile) -- [`12.0.11-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.11-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.12-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.12-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.11-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.11-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.12`, `12.0`, `12`, `12.0.12-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.12-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.12-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.10-jre21-alpine`, `12.0.10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre21-alpine/Dockerfile) +- [`12.0.12-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.12-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.10-jre21`, `12.0.10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre21/Dockerfile) +- [`12.0.12-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.12-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`12.0.10-jre17-alpine`, `12.0.10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre17-alpine/Dockerfile) +- [`11.0.23-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.23-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`12.0.10-jre17`, `12.0.10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jre17/Dockerfile) +- [`11.0.23-jre21`, `11.0-jre21`, `11-jre21`, `11.0.23-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre21/Dockerfile) -- [`12.0.10-jdk21-alpine`, `12.0.10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk21-alpine/Dockerfile) +- [`11.0.23-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.23-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`12.0.10`, `12.0.10-jdk21`, `12.0.10-eclipse-temurin`, `12.0.10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk21/Dockerfile) +- [`11.0.23-jre17`, `11.0-jre17`, `11-jre17`, `11.0.23-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre17/Dockerfile) -- [`12.0.10-jdk17-alpine`, `12.0.10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk17-alpine/Dockerfile) +- [`11.0.23-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.23-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`12.0.10-jdk17`, `12.0.10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/12.0.10/jdk17/Dockerfile) +- [`11.0.23-jre11`, `11.0-jre11`, `11-jre11`, `11.0.23-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.22-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.22-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.23-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.23-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.22-jre21`, `11.0-jre21`, `11-jre21`, `11.0.22-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.23`, `11.0`, `11`, `11.0.23-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.23-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.23-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.22-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.22-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.23-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.23-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.22-jre17`, `11.0-jre17`, `11-jre17`, `11.0.22-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.23-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.23-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.22-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.22-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.23-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.23-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.22-jre11`, `11.0-jre11`, `11-jre11`, `11.0.22-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.23-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.23-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`11.0.22-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.22-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`10.0.23-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.23-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`11.0.22`, `11.0`, `11`, `11.0.22-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.22-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.22-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`10.0.23-jre21`, `10.0-jre21`, `10-jre21`, `10.0.23-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre21/Dockerfile) -- [`11.0.22-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.22-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`10.0.23-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.23-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`11.0.22-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.22-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`10.0.23-jre17`, `10.0-jre17`, `10-jre17`, `10.0.23-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre17/Dockerfile) -- [`11.0.22-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.22-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`10.0.23-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.23-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`11.0.22-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.22-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`10.0.23-jre11`, `10.0-jre11`, `10-jre11`, `10.0.23-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre11/Dockerfile) -- [`11.0.21-jre21-alpine`, `11.0.21-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre21-alpine/Dockerfile) +- [`10.0.23-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.23-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`11.0.21-jre21`, `11.0.21-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre21/Dockerfile) +- [`10.0.23`, `10.0`, `10`, `10.0.23-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.23-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.23-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`11.0.21-jre17-alpine`, `11.0.21-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre17-alpine/Dockerfile) +- [`10.0.23-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.23-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`11.0.21-jre17`, `11.0.21-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre17/Dockerfile) +- [`10.0.23-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.23-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`11.0.21-jre11-alpine`, `11.0.21-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre11-alpine/Dockerfile) +- [`10.0.23-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.23-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`11.0.21-jre11`, `11.0.21-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jre11/Dockerfile) +- [`10.0.23-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.23-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`11.0.21-jdk21-alpine`, `11.0.21-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk21-alpine/Dockerfile) +- [`9.4.56-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`11.0.21`, `11.0.21-jdk21`, `11.0.21-eclipse-temurin`, `11.0.21-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk21/Dockerfile) +- [`9.4.56-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8/Dockerfile) -- [`11.0.21-jdk17-alpine`, `11.0.21-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk17-alpine/Dockerfile) +- [`9.4.56-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`11.0.21-jdk17`, `11.0.21-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk17/Dockerfile) +- [`9.4.56-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.56-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk21/Dockerfile) -- [`11.0.21-jdk11-alpine`, `11.0.21-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk11-alpine/Dockerfile) +- [`9.4.56-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`11.0.21-jdk11`, `11.0.21-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/11.0.21/jdk11/Dockerfile) +- [`9.4.56-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk17/Dockerfile) -- [`10.0.22-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.22-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`9.4.56-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`10.0.22-jre21`, `10.0-jre21`, `10-jre21`, `10.0.22-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre21/Dockerfile) +- [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11/Dockerfile) -- [`10.0.22-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.22-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`12.0.12-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`10.0.22-jre17`, `10.0-jre17`, `10-jre17`, `10.0.22-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre17/Dockerfile) +- [`12.0.12-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.12-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk21/Dockerfile) -- [`10.0.22-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.22-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`12.0.12-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`10.0.22-jre11`, `10.0-jre11`, `10-jre11`, `10.0.22-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jre11/Dockerfile) +- [`12.0.12-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk17/Dockerfile) -- [`10.0.22-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.22-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`11.0.23-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`10.0.22`, `10.0`, `10`, `10.0.22-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.22-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.22-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`11.0.23-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.23-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk21/Dockerfile) -- [`10.0.22-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.22-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`11.0.23-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`10.0.22-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.22-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`11.0.23-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk17/Dockerfile) -- [`10.0.22-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.22-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`11.0.23-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`10.0.22-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.22-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`11.0.23-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.21-jre21-alpine`, `10.0.21-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre21-alpine/Dockerfile) +- [`10.0.23-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.21-jre21`, `10.0.21-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre21/Dockerfile) +- [`10.0.23-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.23-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.21-jre17-alpine`, `10.0.21-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre17-alpine/Dockerfile) +- [`10.0.23-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.21-jre17`, `10.0.21-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre17/Dockerfile) +- [`10.0.23-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.21-jre11-alpine`, `10.0.21-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre11-alpine/Dockerfile) +- [`10.0.23-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.21-jre11`, `10.0.21-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jre11/Dockerfile) - -- [`10.0.21-jdk21-alpine`, `10.0.21-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk21-alpine/Dockerfile) - -- [`10.0.21`, `10.0.21-jdk21`, `10.0.21-eclipse-temurin`, `10.0.21-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk21/Dockerfile) - -- [`10.0.21-jdk17-alpine`, `10.0.21-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk17-alpine/Dockerfile) - -- [`10.0.21-jdk17`, `10.0.21-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk17/Dockerfile) - -- [`10.0.21-jdk11-alpine`, `10.0.21-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk11-alpine/Dockerfile) - -- [`10.0.21-jdk11`, `10.0.21-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ca69d374a1c300d36d75973007e15ca0fd77f2e2/eclipse-temurin/10.0.21/jdk11/Dockerfile) - -- [`9.4.55-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8-alpine/Dockerfile) - -- [`9.4.55-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk8/Dockerfile) - -- [`9.4.55-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk21-alpine/Dockerfile) - -- [`9.4.55-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.55-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk21/Dockerfile) - -- [`9.4.55-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk17-alpine/Dockerfile) - -- [`9.4.55-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk17/Dockerfile) - -- [`9.4.55-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk11-alpine/Dockerfile) - -- [`9.4.55-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/9.4/jdk11/Dockerfile) - -- [`12.0.11-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk21-alpine/Dockerfile) - -- [`12.0.11-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.11-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk21/Dockerfile) - -- [`12.0.11-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk17-alpine/Dockerfile) - -- [`12.0.11-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/12.0/jdk17/Dockerfile) - -- [`11.0.22-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk21-alpine/Dockerfile) - -- [`11.0.22-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.22-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk21/Dockerfile) - -- [`11.0.22-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk17-alpine/Dockerfile) - -- [`11.0.22-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk17/Dockerfile) - -- [`11.0.22-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk11-alpine/Dockerfile) - -- [`11.0.22-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/11.0/jdk11/Dockerfile) - -- [`10.0.22-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk21-alpine/Dockerfile) - -- [`10.0.22-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.22-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk21/Dockerfile) - -- [`10.0.22-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk17-alpine/Dockerfile) - -- [`10.0.22-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk17/Dockerfile) - -- [`10.0.22-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk11-alpine/Dockerfile) - -- [`10.0.22-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/65b114c0ee20b162c7df650bb1b95a0949bea68f/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.23-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 7cdebb290ca4..20f132856268 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240906`, `latest`](https://github.com/vmware/photon-docker-image/blob/ab0021d2ea79c9d904f5efae456b8411c61cdccd/docker/Dockerfile) +- [`5.0`, `5.0-20240908`, `latest`](https://github.com/vmware/photon-docker-image/blob/9c2704ce4ae6e03473282dbe7554a130502dc794/docker/Dockerfile) -- [`4.0`, `4.0-20240906`](https://github.com/vmware/photon-docker-image/blob/d3f5856f0b70ea0a6501df3d1bbe03fcab7ef9fb/docker/Dockerfile) +- [`4.0`, `4.0-20240908`](https://github.com/vmware/photon-docker-image/blob/40fedabc4799ee18c7e1d914f06354cf75bc424d/docker/Dockerfile) -- [`3.0`, `3.0-20240906`](https://github.com/vmware/photon-docker-image/blob/163a2707180bff1015173c5003b0da5f592dcb9e/docker/Dockerfile) +- [`3.0`, `3.0-20240908`](https://github.com/vmware/photon-docker-image/blob/3a5b14aa402eda660dc1af88dc5f9f0dde4bc379/docker/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index acf446ead14c..def13885318a 100644 --- a/python/README.md +++ b/python/README.md @@ -28,136 +28,125 @@ WARNING: ## Simple Tags -- [`3.13.0rc1-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bookworm/Dockerfile) +- [`3.13.0rc2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bookworm/Dockerfile) -- [`3.13.0rc1-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc1-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0rc2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0rc1-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bullseye/Dockerfile) +- [`3.13.0rc2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bullseye/Dockerfile) -- [`3.13.0rc1-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0rc2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0rc1-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc1-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0rc2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0rc1-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0rc2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0rc1-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0rc2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0rc1-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0rc2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.5-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bookworm/Dockerfile) +- [`3.12.6-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bookworm/Dockerfile) -- [`3.12.5-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.5-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/slim-bookworm/Dockerfile) +- [`3.12.6-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.6-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/slim-bookworm/Dockerfile) -- [`3.12.5-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bullseye/Dockerfile) +- [`3.12.6-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bullseye/Dockerfile) -- [`3.12.5-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/slim-bullseye/Dockerfile) +- [`3.12.6-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/slim-bullseye/Dockerfile) -- [`3.12.5-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.5-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/alpine3.20/Dockerfile) +- [`3.12.6-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/alpine3.20/Dockerfile) -- [`3.12.5-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/alpine3.19/Dockerfile) +- [`3.12.6-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/alpine3.19/Dockerfile) -- [`3.12.5-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.6-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.5-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.6-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.9-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bookworm/Dockerfile) +- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bookworm/Dockerfile) -- [`3.11.9-slim-bookworm`, `3.11-slim-bookworm`, `3.11.9-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/slim-bookworm/Dockerfile) +- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/slim-bookworm/Dockerfile) -- [`3.11.9-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bullseye/Dockerfile) +- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bullseye/Dockerfile) -- [`3.11.9-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/slim-bullseye/Dockerfile) +- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/slim-bullseye/Dockerfile) -- [`3.11.9-alpine3.20`, `3.11-alpine3.20`, `3.11.9-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/alpine3.20/Dockerfile) +- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/alpine3.20/Dockerfile) -- [`3.11.9-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/alpine3.19/Dockerfile) +- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/alpine3.19/Dockerfile) -- [`3.11.9-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bookworm/Dockerfile) -- [`3.11.9-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/slim-bookworm/Dockerfile) -- [`3.10.14-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bookworm/Dockerfile) +- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bullseye/Dockerfile) -- [`3.10.14-slim-bookworm`, `3.10-slim-bookworm`, `3.10.14-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/slim-bookworm/Dockerfile) +- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/slim-bullseye/Dockerfile) -- [`3.10.14-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bullseye/Dockerfile) +- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/alpine3.20/Dockerfile) -- [`3.10.14-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/slim-bullseye/Dockerfile) +- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/alpine3.19/Dockerfile) -- [`3.10.14-alpine3.20`, `3.10-alpine3.20`, `3.10.14-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/alpine3.20/Dockerfile) +- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bookworm/Dockerfile) -- [`3.10.14-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/alpine3.19/Dockerfile) +- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/slim-bookworm/Dockerfile) -- [`3.9.19-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bookworm/Dockerfile) +- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bullseye/Dockerfile) -- [`3.9.19-slim-bookworm`, `3.9-slim-bookworm`, `3.9.19-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/slim-bookworm/Dockerfile) +- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/slim-bullseye/Dockerfile) -- [`3.9.19-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bullseye/Dockerfile) +- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/alpine3.20/Dockerfile) -- [`3.9.19-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/slim-bullseye/Dockerfile) +- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/alpine3.19/Dockerfile) -- [`3.9.19-alpine3.20`, `3.9-alpine3.20`, `3.9.19-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/alpine3.20/Dockerfile) +- [`3.8.20-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bookworm/Dockerfile) -- [`3.9.19-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/alpine3.19/Dockerfile) +- [`3.8.20-slim-bookworm`, `3.8-slim-bookworm`, `3.8.20-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/slim-bookworm/Dockerfile) -- [`3.8.19-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bookworm/Dockerfile) +- [`3.8.20-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bullseye/Dockerfile) -- [`3.8.19-slim-bookworm`, `3.8-slim-bookworm`, `3.8.19-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/slim-bookworm/Dockerfile) +- [`3.8.20-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/slim-bullseye/Dockerfile) -- [`3.8.19-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bullseye/Dockerfile) +- [`3.8.20-alpine3.20`, `3.8-alpine3.20`, `3.8.20-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/alpine3.20/Dockerfile) -- [`3.8.19-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/slim-bullseye/Dockerfile) - -- [`3.8.19-alpine3.20`, `3.8-alpine3.20`, `3.8.19-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/alpine3.20/Dockerfile) - -- [`3.8.19-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/alpine3.19/Dockerfile) +- [`3.8.20-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/alpine3.19/Dockerfile) ## Shared Tags -- `3.13.0rc1`, `3.13-rc`: - - - [`3.13.0rc1-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/bookworm/Dockerfile) - - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) - -- `3.13.0rc1-windowsservercore`, `3.13-rc-windowsservercore`: +- `3.13.0rc2`, `3.13-rc`: - - [`3.13.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc1-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc2-bookworm`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bookworm/Dockerfile) + - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.5`, `3.12`, `3`, `latest`: +- `3.13.0rc2-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.12.5-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/bookworm/Dockerfile) - - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.5-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.12.6`, `3.12`, `3`, `latest`: - - [`3.12.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.5-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.6-bookworm`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bookworm/Dockerfile) + - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.9`, `3.11`: +- `3.12.6-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.11.9-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/bookworm/Dockerfile) - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.9-windowsservercore`, `3.11-windowsservercore`: +- `3.11.10`, `3.11`: - - [`3.11.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bookworm/Dockerfile) -- `3.10.14`, `3.10`: +- `3.10.15`, `3.10`: - - [`3.10.14-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.10/bookworm/Dockerfile) + - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bookworm/Dockerfile) -- `3.9.19`, `3.9`: +- `3.9.20`, `3.9`: - - [`3.9.19-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.9/bookworm/Dockerfile) + - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bookworm/Dockerfile) -- `3.8.19`, `3.8`: +- `3.8.20`, `3.8`: - - [`3.8.19-bookworm`](https://github.com/docker-library/python/blob/811625e080937a4eca2055b8a31e382563e5b1a3/3.8/bookworm/Dockerfile) + - [`3.8.20-bookworm`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bookworm/Dockerfile) # Quick reference (cont.) From 0abbabe401091c7b3b969a587b0f0e5b109a8474 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Sep 2024 12:09:00 -0700 Subject: [PATCH 1515/2686] Run update.sh --- perl/README.md | 64 +++++++++++++++++++++++++------------------------- solr/README.md | 8 +++---- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/perl/README.md b/perl/README.md index c5b6cc49dde4..63defe7554e3 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.3`, `5.41`, `devel`, `5.41.3-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main-bookworm/Dockerfile) +- [`5.41.3`, `5.41`, `devel`, `5.41.3-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main-bookworm/Dockerfile) -- [`5.41.3-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main-bullseye/Dockerfile) +- [`5.41.3-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main-bullseye/Dockerfile) -- [`5.41.3-slim`, `5.41-slim`, `devel-slim`, `5.41.3-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim-bookworm/Dockerfile) +- [`5.41.3-slim`, `5.41-slim`, `devel-slim`, `5.41.3-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim-bookworm/Dockerfile) -- [`5.41.3-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim-bullseye/Dockerfile) +- [`5.41.3-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim-bullseye/Dockerfile) -- [`5.41.3-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.3-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main,threaded-bookworm/Dockerfile) +- [`5.41.3-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.3-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main,threaded-bookworm/Dockerfile) -- [`5.41.3-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-main,threaded-bullseye/Dockerfile) +- [`5.41.3-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main,threaded-bullseye/Dockerfile) -- [`5.41.3-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.3-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim,threaded-bookworm/Dockerfile) +- [`5.41.3-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.3-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim,threaded-bookworm/Dockerfile) -- [`5.41.3-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/d78befa15ec5827f5aa5bbe4e97e7a30e7960daa/5.041.003-slim,threaded-bullseye/Dockerfile) +- [`5.41.3-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 196e5b6a4f44..af3b1a3b5550 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.6.1`, `9.6`, `9`, `latest`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) +- [`9.7.0`, `9.7`, `9`, `latest`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7/Dockerfile) -- [`9.6.1-slim`, `9.6-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) +- [`9.7.0-slim`, `9.7-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7-slim/Dockerfile) -- [`9.5.0`, `9.5`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5/Dockerfile) +- [`9.6.1`, `9.6`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) -- [`9.5.0-slim`, `9.5-slim`](https://github.com/apache/solr-docker/blob/a17dd804fead2a6581f8e4c116451ed268f32126/9.5-slim/Dockerfile) +- [`9.6.1-slim`, `9.6-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) - [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) From a09c4251a06510a373612e2050ddc293a0b062ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Sep 2024 14:08:59 -0700 Subject: [PATCH 1516/2686] Run update.sh --- gradle/README.md | 36 ++++++++++++++++++------------------ oraclelinux/README.md | 18 +++++++++--------- swipl/README.md | 4 ++-- telegraf/README.md | 12 ++++++------ 4 files changed, 35 insertions(+), 35 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 9a4d6d619b91..a1206effd3d4 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.0-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.0-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk8/Dockerfile) +- [`8.10.1-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.1-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk8/Dockerfile) -- [`8.10.0-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk8-focal/Dockerfile) +- [`8.10.1-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk8-focal/Dockerfile) -- [`8.10.0-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.0-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11/Dockerfile) +- [`8.10.1-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.1-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11/Dockerfile) -- [`8.10.0-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11-focal/Dockerfile) +- [`8.10.1-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11-focal/Dockerfile) -- [`8.10.0-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk11-alpine/Dockerfile) +- [`8.10.1-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11-alpine/Dockerfile) -- [`8.10.0-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.0-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17/Dockerfile) +- [`8.10.1-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.1-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17/Dockerfile) -- [`8.10.0-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.0-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.0-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-focal/Dockerfile) +- [`8.10.1-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.1-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.1-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-focal/Dockerfile) -- [`8.10.0-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.0-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-alpine/Dockerfile) +- [`8.10.1-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.1-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-alpine/Dockerfile) -- [`8.10.0-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.0-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.0-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.0-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.0-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.0-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk17-graal/Dockerfile) +- [`8.10.1-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.1-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.1-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.1-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.1-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.1-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-graal/Dockerfile) -- [`8.10.0-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.0-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.0-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.0`, `8.10`, `8`, `8.10.0-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.0-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21/Dockerfile) +- [`8.10.1-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.1-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.1-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.1`, `8.10`, `8`, `8.10.1-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.1-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21/Dockerfile) -- [`8.10.0-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.0-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21-alpine/Dockerfile) +- [`8.10.1-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.1-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21-alpine/Dockerfile) -- [`8.10.0-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.0-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk21-graal/Dockerfile) +- [`8.10.1-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.1-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21-graal/Dockerfile) -- [`8.10.0-jdk22`, `8.10-jdk22`, `8-jdk22`, `jdk22`, `8.10.0-jdk22-jammy`, `8.10-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22/Dockerfile) +- [`8.10.1-jdk22`, `8.10-jdk22`, `8-jdk22`, `jdk22`, `8.10.1-jdk22-jammy`, `8.10-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22/Dockerfile) -- [`8.10.0-jdk22-alpine`, `8.10-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22-alpine/Dockerfile) +- [`8.10.1-jdk22-alpine`, `8.10-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22-alpine/Dockerfile) -- [`8.10.0-jdk22-graal`, `8.10-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk22-graal/Dockerfile) +- [`8.10.1-jdk22-graal`, `8.10-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22-graal/Dockerfile) -- [`8.10.0-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.0-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.0-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.0-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current/Dockerfile) +- [`8.10.1-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.1-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.1-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.1-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current/Dockerfile) -- [`8.10.0-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.0-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current-alpine/Dockerfile) +- [`8.10.1-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.1-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current-alpine/Dockerfile) -- [`8.10.0-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.0-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.0-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.0-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/71c017c9a14e261e3d2ee3b6bed265f2a3af02b7/jdk-lts-and-current-graal/Dockerfile) +- [`8.10.1-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.1-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.1-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.1-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d1b058b78748..1893d974f2da 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b4a86a64f379424f2c8de33264e63ca97649e2a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 9380b0fad75f..c1af0774afe8 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.9`](https://github.com/SWI-Prolog/docker-swipl/blob/82d45b805d5fcd72c11fa07b3196a59709c8d2ac/9.3.9/bookworm/Dockerfile) +- [`latest`, `9.3.11`](https://github.com/SWI-Prolog/docker-swipl/blob/c4ed88e26af240b60a82a3aebe1844f5590b0fef/9.3.11/bookworm/Dockerfile) -- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/82d45b805d5fcd72c11fa07b3196a59709c8d2ac/9.2.7/bookworm/Dockerfile) +- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/c4ed88e26af240b60a82a3aebe1844f5590b0fef/9.2.7/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 71bb74c03d5e..f0ef706353e5 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29`, `1.29.5`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.29/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.30/Dockerfile) -- [`1.29-alpine`, `1.29.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.29/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.30/alpine/Dockerfile) -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.30/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.31/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.30/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.31/alpine/Dockerfile) -- [`1.31`, `1.31.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.31/Dockerfile) +- [`1.32`, `1.32.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.32/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/426ed76c51f465daebb33547e3bb9632b974440f/telegraf/1.31/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.32/alpine/Dockerfile) # Quick reference (cont.) From aa7195d4e24b9103d3475a91eca7041e6f36fa05 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Sep 2024 16:09:01 -0700 Subject: [PATCH 1517/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- memcached/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docker/README.md b/docker/README.md index 1212c0e15f01..b68a017d7607 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.2.0-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/cli/Dockerfile) +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/cli/Dockerfile) -- [`27.2.0-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.0-dind-alpine3.20`, `27.2.0`, `27.2`, `27`, `latest`, `27.2.0-alpine3.20`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/dind/Dockerfile) +- [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) -- [`27.2.0-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/dind-rootless/Dockerfile) +- [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.0-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.0-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.2.0-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3a19522aa3c9bb06216f71f0d7323764e72c80be/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 75aeffdf97d7..de1bc89e634d 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.30`, `1.6`, `1`, `latest`, `1.6.30-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/fe1178984dc98b5515f3adda0655fdba9cd30bbf/1/debian/Dockerfile) +- [`1.6.31`, `1.6`, `1`, `latest`, `1.6.31-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/3598423e1058ace87504520c43095bf87438deaf/1/debian/Dockerfile) -- [`1.6.30-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.30-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/fe1178984dc98b5515f3adda0655fdba9cd30bbf/1/alpine/Dockerfile) +- [`1.6.31-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.31-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/3598423e1058ace87504520c43095bf87438deaf/1/alpine/Dockerfile) # Quick reference (cont.) From 00a6451031075343c5d9bcbb7d20e476d8bc41ce Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Sep 2024 15:09:02 -0700 Subject: [PATCH 1518/2686] Run update.sh --- arangodb/README.md | 2 +- elasticsearch/README.md | 2 +- jetty/README.md | 100 ++++++++++++++++++++-------------------- kibana/README.md | 2 +- logstash/README.md | 2 +- photon/README.md | 2 +- 6 files changed, 55 insertions(+), 55 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index ec124a9c7eed..7c62020711cb 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.10.1`](https://github.com/arangodb/arangodb-docker/blob/ce25dfe5cb8cc8658b031136b262bd8d2be7e679/alpine/3.11.10.1/Dockerfile) +- [`3.11`, `3.11.11`](https://github.com/arangodb/arangodb-docker/blob/4e795a0b744e1639ee537ad3f1e4c89f5577f61d/alpine/3.11.11/Dockerfile) - [`3.12`, `3.12.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/ba430694881c65dc95aaf47e0250e501ead0f5b5/alpine/3.12.2/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 988b0cfd172d..eee88088394a 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/elasticsearch/Dockerfile) -- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/elasticsearch/Dockerfile) +- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index ea1456b142d0..7812d97e3e5d 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,73 +54,73 @@ WARNING: - [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.12-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.12-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.13-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.13-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.12-jre21`, `12.0-jre21`, `12-jre21`, `12.0.12-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.13-jre21`, `12.0-jre21`, `12-jre21`, `12.0.13-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.12-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.12-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.13-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.13-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.12-jre17`, `12.0-jre17`, `12-jre17`, `12.0.12-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.13-jre17`, `12.0-jre17`, `12-jre17`, `12.0.13-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.12-jdk22-alpine`, `12.0-jdk22-alpine`, `12-jdk22-alpine`, `12.0.12-jdk22-alpine-eclipse-temurin`, `12.0-jdk22-alpine-eclipse-temurin`, `12-jdk22-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk22-alpine/Dockerfile) +- [`12.0.13-jdk22-alpine`, `12.0-jdk22-alpine`, `12-jdk22-alpine`, `12.0.13-jdk22-alpine-eclipse-temurin`, `12.0-jdk22-alpine-eclipse-temurin`, `12-jdk22-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk22-alpine/Dockerfile) -- [`12.0.12-jdk22`, `12.0-jdk22`, `12-jdk22`, `12.0.12-jdk22-eclipse-temurin`, `12.0-jdk22-eclipse-temurin`, `12-jdk22-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk22/Dockerfile) +- [`12.0.13-jdk22`, `12.0-jdk22`, `12-jdk22`, `12.0.13-jdk22-eclipse-temurin`, `12.0-jdk22-eclipse-temurin`, `12-jdk22-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk22/Dockerfile) -- [`12.0.12-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.12-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.13-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.13-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.12`, `12.0`, `12`, `12.0.12-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.12-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.12-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.13`, `12.0`, `12`, `12.0.13-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.13-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.13-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.12-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.12-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.13-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.13-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.12-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.12-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.13-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.13-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.23-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.23-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.23-jre21`, `11.0-jre21`, `11-jre21`, `11.0.23-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.24-jre21`, `11.0-jre21`, `11-jre21`, `11.0.24-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.23-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.23-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.24-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.24-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.23-jre17`, `11.0-jre17`, `11-jre17`, `11.0.23-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.24-jre17`, `11.0-jre17`, `11-jre17`, `11.0.24-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.23-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.23-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.24-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.24-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.23-jre11`, `11.0-jre11`, `11-jre11`, `11.0.23-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.24-jre11`, `11.0-jre11`, `11-jre11`, `11.0.24-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.23-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.23-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.24-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.24-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.23`, `11.0`, `11`, `11.0.23-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.23-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.23-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.24`, `11.0`, `11`, `11.0.24-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.24-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.24-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.23-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.23-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.24-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.24-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.23-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.23-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.24-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.24-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.23-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.23-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.24-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.24-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.23-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.23-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.24-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.24-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.23-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.23-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.24-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.24-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.23-jre21`, `10.0-jre21`, `10-jre21`, `10.0.23-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.24-jre21`, `10.0-jre21`, `10-jre21`, `10.0.24-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.23-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.23-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.24-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.24-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.23-jre17`, `10.0-jre17`, `10-jre17`, `10.0.23-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.24-jre17`, `10.0-jre17`, `10-jre17`, `10.0.24-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.23-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.23-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.24-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.24-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.23-jre11`, `10.0-jre11`, `10-jre11`, `10.0.23-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.24-jre11`, `10.0-jre11`, `10-jre11`, `10.0.24-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.23-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.23-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.24-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.24-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.23`, `10.0`, `10`, `10.0.23-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.23-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.23-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.24`, `10.0`, `10`, `10.0.24-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.24-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.24-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.23-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.23-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.24-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.24-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.23-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.23-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.24-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.24-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.23-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.23-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.24-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.24-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.23-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.23-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.24-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.24-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.56-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8-alpine/Dockerfile) @@ -138,37 +138,37 @@ WARNING: - [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.12-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.13-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.12-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.12-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.13-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.13-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.12-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.13-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.12-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.13-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.23-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.23-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.23-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.23-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.24-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.23-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.23-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.24-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.23-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.23-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.24-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.23-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.23-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.23-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.24-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.23-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.23-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.24-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.23-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 55648e5a278d..a7d245c62403 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/kibana/Dockerfile) -- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/kibana/Dockerfile) +- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 5088a7d80aa1..10a7357053b5 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/logstash/Dockerfile) -- [`7.17.23`](https://github.com/elastic/dockerfiles/blob/9ae9896e426721527703fcb2d43f2610afbd88ee/logstash/Dockerfile) +- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/logstash/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 20f132856268..c0cb7867bb73 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240908`, `latest`](https://github.com/vmware/photon-docker-image/blob/9c2704ce4ae6e03473282dbe7554a130502dc794/docker/Dockerfile) +- [`5.0`, `5.0-20240910`, `latest`](https://github.com/vmware/photon-docker-image/blob/2e6b965d5551a14a60bb952b413fa0028100c5cb/docker/Dockerfile) - [`4.0`, `4.0-20240908`](https://github.com/vmware/photon-docker-image/blob/40fedabc4799ee18c7e1d914f06354cf75bc424d/docker/Dockerfile) From 7bf16d645ed387e89357b1b017a36e9c5d9e5610 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Sep 2024 17:09:03 -0700 Subject: [PATCH 1519/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 10 +++++----- tomcat/README.md | 8 ++++---- wordpress/README.md | 36 +++++++++--------------------------- 4 files changed, 19 insertions(+), 37 deletions(-) diff --git a/bash/README.md b/bash/README.md index 383915f8c486..e8d7409b9772 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240828`, `devel`, `devel-20240828-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/f5761a6332d9d5e1560f5ef83a3acfca94798843/devel/Dockerfile) +- [`devel-20240904`, `devel`, `devel-20240904-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/9da05247782e6a33fba8d5353665d4cfa3d54360/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index b68a017d7607..07ddbc6783e9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/cli/Dockerfile) +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/cli/Dockerfile) - [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 7b7716617115..42abc8be17fc 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M24-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M24-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M24-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M24`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.0-M25-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M25-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M25-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M25`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-M24-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M24-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M24-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.0-M25-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M25-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M25-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.0-M24-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M25-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M24-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d9e0dd9720388bdc74509b752483fbe471dd5a21/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M25-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.28-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.28-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.28-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.28`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk21/temurin-noble/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index c61f11539176..21e77ba8ea39 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.1-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.1-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/apache/Dockerfile) +- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/apache/Dockerfile) -- [`6.6.1-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/fpm/Dockerfile) +- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/fpm/Dockerfile) -- [`6.6.1-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.1-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.1`, `6.6`, `6`, `latest`, `6.6.1-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.1-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/apache/Dockerfile) +- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/apache/Dockerfile) -- [`6.6.1-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.1-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/fpm/Dockerfile) +- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/fpm/Dockerfile) -- [`6.6.1-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.1-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.1-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.1-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/apache/Dockerfile) +- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/apache/Dockerfile) -- [`6.6.1-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/fpm/Dockerfile) +- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/fpm/Dockerfile) -- [`6.6.1-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3f1a0cab9f2f938bbc57f5f92ec11eeea4511636/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.1/alpine/Dockerfile) @@ -48,24 +48,6 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.3/alpine/Dockerfile) -- [`beta-6.6.2-RC1-php8.1-apache`, `beta-6.6.2-php8.1-apache`, `beta-6.6-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.6.2-RC1-php8.1`, `beta-6.6.2-php8.1`, `beta-6.6-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/apache/Dockerfile) - -- [`beta-6.6.2-RC1-php8.1-fpm`, `beta-6.6.2-php8.1-fpm`, `beta-6.6-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.6.2-RC1-php8.1-fpm-alpine`, `beta-6.6.2-php8.1-fpm-alpine`, `beta-6.6-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.6.2-RC1-apache`, `beta-6.6.2-apache`, `beta-6.6-apache`, `beta-6-apache`, `beta-apache`, `beta-6.6.2-RC1`, `beta-6.6.2`, `beta-6.6`, `beta-6`, `beta`, `beta-6.6.2-RC1-php8.2-apache`, `beta-6.6.2-php8.2-apache`, `beta-6.6-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.6.2-RC1-php8.2`, `beta-6.6.2-php8.2`, `beta-6.6-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/apache/Dockerfile) - -- [`beta-6.6.2-RC1-fpm`, `beta-6.6.2-fpm`, `beta-6.6-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.6.2-RC1-php8.2-fpm`, `beta-6.6.2-php8.2-fpm`, `beta-6.6-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.6.2-RC1-fpm-alpine`, `beta-6.6.2-fpm-alpine`, `beta-6.6-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.6.2-RC1-php8.2-fpm-alpine`, `beta-6.6.2-php8.2-fpm-alpine`, `beta-6.6-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.6.2-RC1-php8.3-apache`, `beta-6.6.2-php8.3-apache`, `beta-6.6-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.6.2-RC1-php8.3`, `beta-6.6.2-php8.3`, `beta-6.6-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/apache/Dockerfile) - -- [`beta-6.6.2-RC1-php8.3-fpm`, `beta-6.6.2-php8.3-fpm`, `beta-6.6-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.6.2-RC1-php8.3-fpm-alpine`, `beta-6.6.2-php8.3-fpm-alpine`, `beta-6.6-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3266f784485789a1ae1414eaeb0a87a95956a3cc/beta/php8.3/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 976f0396b13382f5dcd50b32b517df92044b10b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Sep 2024 11:09:02 -0700 Subject: [PATCH 1520/2686] Run update.sh --- hylang/README.md | 78 ++++++++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 42 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index f5df1674a86e..466fcd1cae44 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,93 +28,87 @@ WARNING: ## Simple Tags -- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.29.0-python3.12-windowsservercore-ltsc2022`, `0.29-python3.12-windowsservercore-ltsc2022`, `0-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `0.29.0-windowsservercore-ltsc2022`, `0.29-windowsservercore-ltsc2022`, `0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`0.29.0-python3.12-windowsservercore-ltsc2022`, `0.29-python3.12-windowsservercore-ltsc2022`, `0-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `0.29.0-windowsservercore-ltsc2022`, `0.29-windowsservercore-ltsc2022`, `0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`0.29.0-python3.12-windowsservercore-1809`, `0.29-python3.12-windowsservercore-1809`, `0-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `0.29.0-windowsservercore-1809`, `0.29-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`0.29.0-python3.12-windowsservercore-1809`, `0.29-python3.12-windowsservercore-1809`, `0-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `0.29.0-windowsservercore-1809`, `0.29-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.29.0-python3.11-windowsservercore-ltsc2022`, `0.29-python3.11-windowsservercore-ltsc2022`, `0-python3.11-windowsservercore-ltsc2022`, `python3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-ltsc2022) +- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.29.0-python3.11-windowsservercore-1809`, `0.29-python3.11-windowsservercore-1809`, `0-python3.11-windowsservercore-1809`, `python3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-1809) +- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) -- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`0.29.0-pypy3.10-windowsservercore-ltsc2022`, `0.29-pypy3.10-windowsservercore-ltsc2022`, `0-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `0.29.0-pypy-windowsservercore-ltsc2022`, `0.29-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) - -- [`0.29.0-pypy3.10-windowsservercore-ltsc2022`, `0.29-pypy3.10-windowsservercore-ltsc2022`, `0-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `0.29.0-pypy-windowsservercore-ltsc2022`, `0.29-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - -- [`0.29.0-pypy3.10-windowsservercore-1809`, `0.29-pypy3.10-windowsservercore-1809`, `0-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `0.29.0-pypy-windowsservercore-1809`, `0.29-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`0.29.0-pypy3.10-windowsservercore-1809`, `0.29-pypy3.10-windowsservercore-1809`, `0-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `0.29.0-pypy-windowsservercore-1809`, `0.29-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: - - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`0.29.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`0.29.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`0.29.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`0.29.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: - - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-bookworm) - - [`0.29.0-python3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-ltsc2022) - - [`0.29.0-python3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.11-windowsservercore-1809) + - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: - - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: - - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: - - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: - - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`0.29.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`0.29.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/72b605d4755c0e13098e59442882ee8e6a708227/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`0.29.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`0.29.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) From fdb6e61c636cccced520aeae16c513b13aa7875a Mon Sep 17 00:00:00 2001 From: Jason Gerlowski Date: Wed, 11 Sep 2024 11:40:00 -0700 Subject: [PATCH 1521/2686] Update README description for Apache Solr (#2487) * Update README description for Apache Solr Keeps these descriptions up to date with changes the Apache Solr project made recently in their README, documentation, website, etc. Additional context at: - https://solr.apache.org/ - https://issues.apache.org/jira/browse/SOLR-16295 - https://github.com/apache/solr/pull/2692 * Address GH-action failure, rd 1 --- solr/README-short.txt | 2 +- solr/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/solr/README-short.txt b/solr/README-short.txt index 257a196c62fd..816408c133ec 100644 --- a/solr/README-short.txt +++ b/solr/README-short.txt @@ -1 +1 @@ -Apache Solr is the popular, blazing-fast, open source search platform built on Apache Lucene™. +Solr is the blazing-fast, open source, multi-modal search platform built on Apache Lucene. diff --git a/solr/content.md b/solr/content.md index 7f0b07d665f6..3333462df5b4 100644 --- a/solr/content.md +++ b/solr/content.md @@ -1,6 +1,6 @@ # What is Solr? -Apache Solr™ is the popular, blazing fast, open source NoSQL search platform. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest websites. +Solr is the blazing-fast, open source, multi-modal search platform built on Apache Lucene. It powers full-text, vector, analytics, and geospatial search at many of the world's largest organizations. Other major features include Kubernetes integration, streaming, highlighting, faceting, and spellchecking. Learn more on [Apache Solr homepage](http://solr.apache.org/) and in the [Apache Solr Reference Guide](https://solr.apache.org/guide/). From 85b402e252455bbb0d4b26f8d965ba547b338a8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Sep 2024 12:09:05 -0700 Subject: [PATCH 1522/2686] Run update.sh --- rabbitmq/README.md | 8 +++--- solr/README.md | 2 +- storm/README.md | 4 +-- tomcat/README.md | 64 +++++++++++++++++++++++----------------------- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 47cc2dc30742..6ea3101390d5 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-beta.6`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/c2de1a49b7002562d37bc50d15ea246ff60dafcb/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-rc.1`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/319407a1d59ee26cdefb1d7f40af2028bb64e2d6/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-beta.6-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-rc.1-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-beta.6-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c2de1a49b7002562d37bc50d15ea246ff60dafcb/4.0-rc/alpine/Dockerfile) +- [`4.0.0-rc.1-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/319407a1d59ee26cdefb1d7f40af2028bb64e2d6/4.0-rc/alpine/Dockerfile) -- [`4.0.0-beta.6-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-rc.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) diff --git a/solr/README.md b/solr/README.md index af3b1a3b5550..bb381d1e184e 100644 --- a/solr/README.md +++ b/solr/README.md @@ -57,7 +57,7 @@ WARNING: # What is Solr? -Apache Solr™ is the popular, blazing fast, open source NoSQL search platform. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document handling, and geospatial search. Solr is highly scalable, providing fault tolerant distributed search and indexing, and powers the search and navigation features of many of the world's largest websites. +Solr is the blazing-fast, open source, multi-modal search platform built on Apache Lucene. It powers full-text, vector, analytics, and geospatial search at many of the world's largest organizations. Other major features include Kubernetes integration, streaming, highlighting, faceting, and spellchecking. Learn more on [Apache Solr homepage](http://solr.apache.org/) and in the [Apache Solr Reference Guide](https://solr.apache.org/guide/). diff --git a/storm/README.md b/storm/README.md index 52684e5c1f9a..e29f113548c1 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.3`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/adb8344286f15872ecebb2796ad7ee0791f09883/2.6.3/Dockerfile) +- [`2.6.4`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/3d67ed2cbc3d15b210840745292d53c0ece4f63c/2.6.4/Dockerfile) -- [`2.6.3-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/e7117105eb207e0ffad071d429e7c3de8c0864ce/2.6.3-jre17/Dockerfile) +- [`2.6.4-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/3d67ed2cbc3d15b210840745292d53c0ece4f63c/2.6.4-jre17/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 42abc8be17fc..bbff9d63bc17 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -32,69 +32,69 @@ WARNING: - [`11.0.0-M25-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.28-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.28-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.28-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.28`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.29-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.29-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.29-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.29`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.28-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.28-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.28-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.29-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.29-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.29-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.28-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.29-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.28-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.29-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.28-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.28-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.28-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.29-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.29-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.29-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.28-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.28-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.28-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.29-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.29-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.29-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.28-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.29-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.28-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.29-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.28-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.28-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.28-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.29-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.29-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.29-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.28-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.28-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.28-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.29-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.29-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.29-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.28-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.29-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.28-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/09c610865f48e48d4874e1bf9aa88502b102d40d/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.29-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.93-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.93-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.93-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.93`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.94-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.94-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.94-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.94`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.93-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.93-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.93-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.94-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.94-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.94-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.93-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.94-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.93-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.94-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.93-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.93-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.94-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.94-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.93-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.93-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.93-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.94-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.94-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.94-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.93-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.93-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.93-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.94-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.94-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.94-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.93-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.94-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.93-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.94-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.93-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.93-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.94-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.94-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.93-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.93-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.93-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.94-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.94-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.94-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.93-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.93-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.93-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.94-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.94-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.94-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.93-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.94-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.93-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.94-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.93-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.93-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.94-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.94-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.93-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.93-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.93-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.94-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.94-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.94-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.93-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.93-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.93-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.94-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.94-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.94-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.93-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.94-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.93-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.94-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.93-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.93-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2fc48398911ffe8fc8e8031fba82f1fb92d63619/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.94-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.94-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 94d6ef44af5100d03e8c0b46626513319a6d2247 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Thu, 12 Sep 2024 15:01:31 +0300 Subject: [PATCH 1523/2686] Update Redis repository URL to the new location. --- redis/github-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/github-repo b/redis/github-repo index efe72763d478..4d13a7aeccad 100644 --- a/redis/github-repo +++ b/redis/github-repo @@ -1 +1 @@ -https://github.com/docker-library/redis +https://github.com/redis/docker-library-redis From df72321d383a39c018110c8775ef0fbe11553c25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Sep 2024 11:09:04 -0700 Subject: [PATCH 1524/2686] Run update.sh --- crate/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crate/README.md b/crate/README.md index 4ec14bca786b..6603bfb78fa9 100644 --- a/crate/README.md +++ b/crate/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.8.2`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/7d88cae1f65dfff807363a35adcb470a978e14c8/Dockerfile) -- [`5.7.4`, `5.7`](https://github.com/crate/docker-crate/blob/d8b45726e982beff1fc63aebcd5f4bbc7312dbc4/Dockerfile) +- [`5.7.5`, `5.7`](https://github.com/crate/docker-crate/blob/bb8f6698814be923367c60c2b6a31a172af07418/Dockerfile) # Quick reference (cont.) From 54d48ab4658b0f8afa0ee5027d6f4835ef317191 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Sep 2024 12:09:02 -0700 Subject: [PATCH 1525/2686] Run update.sh --- busybox/README.md | 16 ++++++------- drupal/README.md | 60 +++++++++++++++++++++++------------------------ odoo/README.md | 6 ++--- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index afbac736cc4d..4c0ec0d3548f 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/glibc/amd64/index.json) +- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/uclibc/amd64/index.json) +- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/musl/amd64/index.json) +- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/065fabdfa397ac19969e667cb227274b3cad25e7/latest-1/glibc/amd64/index.json) +- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index c4f4f04df872..16648250c928 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.2-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.2-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.2-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.2-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.2-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.4-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.4-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.4-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.4-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.4-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.4`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.2-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.2-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.2-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.2-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.4-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.4-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.4-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.4-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.2-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.2-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.4-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.4-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.2-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.2-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.4-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.4-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.2-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.2-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.2-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.2-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.4-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.4-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.4-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.4-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.2-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.2-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8cafb97ad7fde2aff1f7a3c46716348d6a19a776/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.4-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.4-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.3-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.3-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.3-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.5-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.5-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.5-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.3-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.3-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.5-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.5-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.3-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.5-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.3-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.5-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.3-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.3-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.5-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.5-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.3-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.5-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.3-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.3-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.3-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.3-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.3-apache`, `10.3-apache`, `10-apache`, `10.3.3`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.5-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.5-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.5-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.5-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.5-apache`, `10.3-apache`, `10-apache`, `10.3.5`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.3-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.3-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.3-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.3-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.5-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.5-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.5-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.5-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.3-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.3-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.5-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.5-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.3-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.3-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.5-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.5-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.3-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.3-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.3-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.3-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.5-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.5-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.5-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.5-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.3-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.3-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/0204641d684e7e9e3f3afb5c43635864cd40575d/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.5-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.5-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.7-php8.3-apache`, `10.2-php8.3-apache`, `10.2.7-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.8-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.8-php8.3-apache`, `10.2-php8.3-apache`, `10.2.8-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.7-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.7-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.8-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.8-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.8-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.8-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.7-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.8-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.8-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.8-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.7-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.7-php8.2-apache`, `10.2-php8.2-apache`, `10.2.7-php8.2`, `10.2-php8.2`, `10.2.7-apache-bookworm`, `10.2-apache-bookworm`, `10.2.7-apache`, `10.2-apache`, `10.2.7`, `10.2`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.8-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.8-php8.2-apache`, `10.2-php8.2-apache`, `10.2.8-php8.2`, `10.2-php8.2`, `10.2.8-apache-bookworm`, `10.2-apache-bookworm`, `10.2.8-apache`, `10.2-apache`, `10.2.8`, `10.2`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.7-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.7-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.7-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.7-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.8-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.8-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.8-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.8-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.7-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.7-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.8-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.8-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.7-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.8-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.8-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.7-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.7-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.7-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.8-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.8-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.8-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.8-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.7-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.7-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/043257c2f67cec63c36b454662792619a68ed156/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.8-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.8-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 3e35963fe3d7..378dc3ba0738 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240904`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/17.0/Dockerfile) +- [`17.0-20240912`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/17.0/Dockerfile) -- [`16.0-20240904`, `16.0`, `16`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/16.0/Dockerfile) +- [`16.0-20240912`, `16.0`, `16`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/16.0/Dockerfile) -- [`15.0-20240904`, `15.0`, `15`](https://github.com/odoo/docker/blob/e0227fd3dce1da5abcd698f3fd805324c351d7c1/15.0/Dockerfile) +- [`15.0-20240912`, `15.0`, `15`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/15.0/Dockerfile) # Quick reference (cont.) From 1fdba34293599222ddfc80ef888d6bcb348876f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Sep 2024 13:08:56 -0700 Subject: [PATCH 1526/2686] Run update.sh --- kong/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kong/README.md b/kong/README.md index d505fda71d97..7f77eb6d4b82 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) +- [`3.8.0-ubuntu`, `3.8-ubuntu`, `3.8.0`, `3.8`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/1f5199f7da45c17f4344b811397e89899a160040/ubuntu/Dockerfile) + +- [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) From 8b1bb0f239ec144e9ebaa75c314f84aa2ebf440b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Sep 2024 14:09:03 -0700 Subject: [PATCH 1527/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 76 ++++++++++++------------ python/README.md | 108 +++++++++++++++++----------------- redis/README.md | 4 +- 3 files changed, 94 insertions(+), 94 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index dfe88881a171..38e90b742cf7 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags - `open-8u422-b05-jdk`, `open-8-jdk`: - - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u422-b05-jre`, `open-8-jre`: - - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.24_8-jdk`, `open-11-jdk`: +- `open-11.0.24.1_8-jdk`, `open-11-jdk`: - - [`open-11.0.24_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.24_8-jre`, `open-11-jre`: +- `open-11.0.24.1_8-jre`, `open-11-jre`: - - [`open-11.0.24_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.12_7-jdk`, `open-17-jdk`: +- `open-17.0.12.1_7-jdk`, `open-17-jdk`: - - [`open-17.0.12_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.12_7-jre`, `open-17-jre`: +- `open-17.0.12.1_7-jre`, `open-17-jre`: - - [`open-17.0.12_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.4_7-jdk`, `open-21-jdk`: +- `open-21.0.4.1_7-jdk`, `open-21-jdk`: - - [`open-21.0.4_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.4_7-jre`, `open-21-jre`: +- `open-21.0.4.1_7-jre`, `open-21-jre`: - - [`open-21.0.4_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.2_9-jdk`, `open-22-jdk`: +- `open-22.0.2.1_9-jdk`, `open-22-jdk`: - - [`open-22.0.2_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.2_9-jre`, `open-22-jre`: +- `open-22.0.2.1_9-jre`, `open-22-jre`: - - [`open-22.0.2_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4f97d81bae816510dace7edea6a903854e2224d5/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index def13885318a..8ba04c352b6e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,125 +28,125 @@ WARNING: ## Simple Tags -- [`3.13.0rc2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bookworm/Dockerfile) +- [`3.13.0rc2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bookworm/Dockerfile) -- [`3.13.0rc2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0rc2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0rc2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bullseye/Dockerfile) +- [`3.13.0rc2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bullseye/Dockerfile) -- [`3.13.0rc2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0rc2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0rc2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0rc2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0rc2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0rc2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0rc2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0rc2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0rc2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0rc2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.6-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bookworm/Dockerfile) +- [`3.12.6-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bookworm/Dockerfile) -- [`3.12.6-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.6-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/slim-bookworm/Dockerfile) +- [`3.12.6-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.6-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/slim-bookworm/Dockerfile) -- [`3.12.6-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bullseye/Dockerfile) +- [`3.12.6-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bullseye/Dockerfile) -- [`3.12.6-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/slim-bullseye/Dockerfile) +- [`3.12.6-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/slim-bullseye/Dockerfile) -- [`3.12.6-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/alpine3.20/Dockerfile) +- [`3.12.6-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/alpine3.20/Dockerfile) -- [`3.12.6-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/alpine3.19/Dockerfile) +- [`3.12.6-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/alpine3.19/Dockerfile) -- [`3.12.6-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.6-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.6-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.6-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bookworm/Dockerfile) +- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) -- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/slim-bookworm/Dockerfile) +- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/slim-bookworm/Dockerfile) -- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bullseye/Dockerfile) +- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bullseye/Dockerfile) -- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/slim-bullseye/Dockerfile) +- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/slim-bullseye/Dockerfile) -- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/alpine3.20/Dockerfile) +- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/alpine3.20/Dockerfile) -- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/alpine3.19/Dockerfile) +- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/alpine3.19/Dockerfile) -- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bookworm/Dockerfile) +- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bookworm/Dockerfile) -- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/slim-bookworm/Dockerfile) +- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/slim-bookworm/Dockerfile) -- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bullseye/Dockerfile) +- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bullseye/Dockerfile) -- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/slim-bullseye/Dockerfile) +- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/slim-bullseye/Dockerfile) -- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/alpine3.20/Dockerfile) +- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/alpine3.20/Dockerfile) -- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/alpine3.19/Dockerfile) +- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/alpine3.19/Dockerfile) -- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bookworm/Dockerfile) +- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bookworm/Dockerfile) -- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/slim-bookworm/Dockerfile) +- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/slim-bookworm/Dockerfile) -- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bullseye/Dockerfile) +- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bullseye/Dockerfile) -- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/slim-bullseye/Dockerfile) +- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/slim-bullseye/Dockerfile) -- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/alpine3.20/Dockerfile) +- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/alpine3.20/Dockerfile) -- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/alpine3.19/Dockerfile) +- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/alpine3.19/Dockerfile) -- [`3.8.20-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bookworm/Dockerfile) +- [`3.8.20-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bookworm/Dockerfile) -- [`3.8.20-slim-bookworm`, `3.8-slim-bookworm`, `3.8.20-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/slim-bookworm/Dockerfile) +- [`3.8.20-slim-bookworm`, `3.8-slim-bookworm`, `3.8.20-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/slim-bookworm/Dockerfile) -- [`3.8.20-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bullseye/Dockerfile) +- [`3.8.20-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bullseye/Dockerfile) -- [`3.8.20-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/slim-bullseye/Dockerfile) +- [`3.8.20-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/slim-bullseye/Dockerfile) -- [`3.8.20-alpine3.20`, `3.8-alpine3.20`, `3.8.20-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/alpine3.20/Dockerfile) +- [`3.8.20-alpine3.20`, `3.8-alpine3.20`, `3.8.20-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/alpine3.20/Dockerfile) -- [`3.8.20-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/alpine3.19/Dockerfile) +- [`3.8.20-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/alpine3.19/Dockerfile) ## Shared Tags - `3.13.0rc2`, `3.13-rc`: - - [`3.13.0rc2-bookworm`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/bookworm/Dockerfile) - - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc2-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bookworm/Dockerfile) + - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0rc2-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/551060c0ee78d7a73a8b46c6234954b5760d5c74/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) - `3.12.6`, `3.12`, `3`, `latest`: - - [`3.12.6-bookworm`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/bookworm/Dockerfile) - - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.6-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bookworm/Dockerfile) + - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.6-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/ceb2ec17e8c168a574d0430d394d0e05544693df/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.10`, `3.11`: - - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/8d51c9a3687abd70a9699444a6a0a415514058df/3.11/bookworm/Dockerfile) + - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) - `3.10.15`, `3.10`: - - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/cecac62a2c89fe28e2aca31f4ccbf799292061e0/3.10/bookworm/Dockerfile) + - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bookworm/Dockerfile) - `3.9.20`, `3.9`: - - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/b4ded1bb3966d489d8f98b829beb40c4eff8202d/3.9/bookworm/Dockerfile) + - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bookworm/Dockerfile) - `3.8.20`, `3.8`: - - [`3.8.20-bookworm`](https://github.com/docker-library/python/blob/36e52f14df57eeab9efd1d4716c06810a3b968a5/3.8/bookworm/Dockerfile) + - [`3.8.20-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 628558c17876..d67d0a4e1eba 100644 --- a/redis/README.md +++ b/redis/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [the Docker Community](https://github.com/docker-library/redis) + [the Docker Community](https://github.com/redis/docker-library-redis) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -43,7 +43,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/docker-library/redis/issues](https://github.com/docker-library/redis/issues?q=) + [https://github.com/redis/docker-library-redis/issues](https://github.com/redis/docker-library-redis/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/redis/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redis/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redis/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redis/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redis/), [`i386`](https://hub.docker.com/r/i386/redis/), [`mips64le`](https://hub.docker.com/r/mips64le/redis/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redis/), [`riscv64`](https://hub.docker.com/r/riscv64/redis/), [`s390x`](https://hub.docker.com/r/s390x/redis/) From 85494852a15a73f9819b4b69b711a91fd114ff62 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Sep 2024 15:08:59 -0700 Subject: [PATCH 1528/2686] Run update.sh --- docker/README.md | 10 +++---- open-liberty/README.md | 54 +++++++++++++++---------------------- websphere-liberty/README.md | 48 +++++++++++++-------------------- wordpress/README.md | 24 ++++++++--------- 4 files changed, 56 insertions(+), 80 deletions(-) diff --git a/docker/README.md b/docker/README.md index 07ddbc6783e9..279f95616622 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/cli/Dockerfile) +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/cli/Dockerfile) - [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e1b6906885f24b6985fab4aff59a91d4a793b0a0/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index c06b72a122cf..f828d2583ae5 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) - -- [`24.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk8) - -- [`24.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/62d9f7b2ff1c3b0f36e8c1cb1b0be2d482abed36/releases/24.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index d0084a4c591c..08365e617342 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) - -- [`24.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.ibmjava8) - -- [`24.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/adcc971573b81246f831a38b5e6010cc5ce6158a/ga/24.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 21e77ba8ea39..092d7b238fad 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/apache/Dockerfile) +- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/apache/Dockerfile) -- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/fpm/Dockerfile) +- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/fpm/Dockerfile) -- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/apache/Dockerfile) +- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/apache/Dockerfile) -- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/fpm/Dockerfile) +- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/fpm/Dockerfile) -- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/apache/Dockerfile) +- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/apache/Dockerfile) -- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/fpm/Dockerfile) +- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/fpm/Dockerfile) -- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6771e13cc43efa8c9832820c221621bbcca2a00c/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/fpm-alpine/Dockerfile) -- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.1/alpine/Dockerfile) +- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) -- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.2/alpine/Dockerfile) +- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.2/alpine/Dockerfile) -- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/f7e3d05cc365b12c38cdf7c2cfe5584a018bf9de/cli/php8.3/alpine/Dockerfile) +- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) # Quick reference (cont.) From 5402f7815f300d72ff8a39c0eb9b7d522d44bd0b Mon Sep 17 00:00:00 2001 From: Nicolas Albert Date: Fri, 13 Sep 2024 11:31:29 +0200 Subject: [PATCH 1529/2686] Updated link to download the Convertigo Studio --- convertigo/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertigo/content.md b/convertigo/content.md index 380b29b3310b..9bc6ecd96898 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -3,7 +3,7 @@ Convertigo is an open source fullstack Low Code & No Code platform. The platform is used to build Enterprise Web & Mobile apps in a few days. Convertigo platform is composed of several components: 1. **Convertigo Server**: The back-end server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Web & Mobile Web apps. Runs as a Docker container with the `convertigo` image -2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) +2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Convertigo](https://www.convertigo.com/get-started-page) 3. **Convertigo NoCode Studio**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps. From cfdda73eb47b10a5552ac87ab25e6cf190ff0d1f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Sep 2024 11:10:03 -0700 Subject: [PATCH 1530/2686] Run update.sh --- convertigo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertigo/README.md b/convertigo/README.md index ed77d626839e..52a139f0b5f7 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -50,7 +50,7 @@ WARNING: Convertigo is an open source fullstack Low Code & No Code platform. The platform is used to build Enterprise Web & Mobile apps in a few days. Convertigo platform is composed of several components: 1. **Convertigo Server**: The back-end server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Web & Mobile Web apps. Runs as a Docker container with the `convertigo` image -2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) +2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Convertigo](https://www.convertigo.com/get-started-page) 3. **Convertigo NoCode Studio**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers) Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps. From f9b7978feec0425832c063945805bb21f265e950 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Sep 2024 12:09:02 -0700 Subject: [PATCH 1531/2686] Run update.sh --- docker/README.md | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/docker/README.md b/docker/README.md index 279f95616622..42aef0d88ccf 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,37 @@ WARNING: ## Simple Tags -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/cli/Dockerfile) +- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/cli/Dockerfile) + +- [`27.3.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.1-dind-alpine3.20`, `27.3.0-rc.1`, `27-rc`, `rc`, `27.3.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind/Dockerfile) + +- [`27.3.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind-rootless/Dockerfile) + +- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-1809/Dockerfile) + +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/cli/Dockerfile) - [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags +- `27.3.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + + - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-1809/Dockerfile) + - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/13bed0173be3854bec8687e556323d3874a45882/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From d912be23c45392631f244b77b531a5f405dfd049 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Sep 2024 14:09:06 -0700 Subject: [PATCH 1532/2686] Run update.sh --- liquibase/README.md | 4 +-- php/README.md | 84 +++++++++++++++++++++++++++++++++++++-------- 2 files changed, 72 insertions(+), 16 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index c3e9f15d9735..96f232f8fe4e 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.29`, `4.29.2`, `latest`](https://github.com/liquibase/docker/blob/079c4169361e913b9477fc1fd93692974d4f10c5/Dockerfile) +- [`4.29`, `4.29.2`, `latest`](https://github.com/liquibase/docker/blob/13d063767623e282539b232a3a9ed19f4b3d7bbd/Dockerfile) -- [`4.29-alpine`, `4.29.2-alpine`, `alpine`](https://github.com/liquibase/docker/blob/079c4169361e913b9477fc1fd93692974d4f10c5/Dockerfile.alpine) +- [`4.29-alpine`, `4.29.2-alpine`, `alpine`](https://github.com/liquibase/docker/blob/13d063767623e282539b232a3a9ed19f4b3d7bbd/Dockerfile.alpine) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 585c2853dd5e..43a72ec8077b 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0beta4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta4-bookworm`, `8.4-rc-bookworm`, `8.4.0beta4-cli`, `8.4-rc-cli`, `8.4.0beta4`, `8.4-rc`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0beta5-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta5-bookworm`, `8.4-rc-bookworm`, `8.4.0beta5-cli`, `8.4-rc-cli`, `8.4.0beta5`, `8.4-rc`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0beta4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0beta5-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta5-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0beta4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0beta5-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta5-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0beta4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0beta5-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta5-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0beta4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0beta5-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta5-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0beta4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0beta5-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0beta4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0beta5-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0beta4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0beta5-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0beta4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0beta5-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta5-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta5-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta5-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0beta4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0beta5-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta5-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0beta4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0beta5-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta5-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0beta4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0beta5-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta5-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0beta4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0beta5-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0beta4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/15db9ec30a1af7666d72b1baf320d5ddb4170faf/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0beta5-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/zts/Dockerfile) + +- [`8.3.12RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.12RC1-bookworm`, `8.3-rc-bookworm`, `8.3.12RC1-cli`, `8.3-rc-cli`, `8.3.12RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.12RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.12RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.12RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.12RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.12RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.12RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.12RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.12RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.12RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.12RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.12RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.12RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.12RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.12RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.12RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.12RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.12RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.12RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.12RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.12RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.12RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.12RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.12RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.11-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.11-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.11-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.11`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.3.11-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.24RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.24RC1-bookworm`, `8.2-rc-bookworm`, `8.2.24RC1-cli`, `8.2-rc-cli`, `8.2.24RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.24RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.24RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.24RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.24RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.24RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.24RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.24RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.24RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.24RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.24RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.24RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.24RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.24RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.24RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.24RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.24RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.24RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.24RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.24RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.24RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.24RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.24RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.24RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.23-cli-bookworm`, `8.2-cli-bookworm`, `8.2.23-bookworm`, `8.2-bookworm`, `8.2.23-cli`, `8.2-cli`, `8.2.23`, `8.2`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/cli/Dockerfile) - [`8.2.23-apache-bookworm`, `8.2-apache-bookworm`, `8.2.23-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/apache/Dockerfile) From 114eeefc5c776fefd56e4759ae3e5fc29f5ef9b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Sep 2024 15:09:02 -0700 Subject: [PATCH 1533/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index d3109012a27b..cc4c0183dc75 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.94.0`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4f86cc1e82deaf7843b8fe4086c8b3ecc5bdf3ce/5/debian/Dockerfile) +- [`5.94.1`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/007b84f76189f8eaa0b4ea57b74b281da6f5578e/5/debian/Dockerfile) -- [`5.94.0-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4f86cc1e82deaf7843b8fe4086c8b3ecc5bdf3ce/5/alpine/Dockerfile) +- [`5.94.1-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/007b84f76189f8eaa0b4ea57b74b281da6f5578e/5/alpine/Dockerfile) # Quick reference (cont.) From 8745788e218d67fd932382614eec875d50443826 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Sun, 15 Sep 2024 10:01:38 +0300 Subject: [PATCH 1534/2686] Revisit Redis's Content - Remove the 32 bit variant section which is no longer relevant - Remove the section on Redis-Stack which is no longer relevant. --- redis/content.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/redis/content.md b/redis/content.md index afcbf2fd9003..f5dfd0144b0a 100644 --- a/redis/content.md +++ b/redis/content.md @@ -57,16 +57,3 @@ $ docker run -v /myredis/conf:/usr/local/etc/redis --name myredis %%IMAGE%% redi Where `/myredis/conf/` is a local directory containing your `redis.conf` file. Using this method means that there is no need for you to have a Dockerfile for your redis container. The mapped directory should be writable, as depending on the configuration and mode of operation, Redis may need to create additional configuration files or rewrite existing ones. - -## `32bit` variant - -This variant is *not* a 32bit image (and will not run on 32bit hardware), but includes Redis compiled as a 32bit binary, especially for users who need the decreased memory requirements associated with that. See ["Using 32 bit instances"](http://redis.io/topics/memory-optimization#using-32-bit-instances) in the Redis documentation for more information. - -# Redis Stack and modules - -Modules extend Redis with extra capabilities. Redis Stack already comes with the capabilities (search and query, JSON support, and more) that are developed by Redis (the company). The Docker images are available here: - -- [Redis Stack](https://hub.docker.com/r/redis/redis-stack): Redis plus extra capabilities and Redis Insight (a GUI for Redis) -- [Redis Stack Server](https://hub.docker.com/r/redis/redis-stack-server): Redis plus extra capabilities - -You can find the list of modules for Redis on [redis.io](https://redis.io/community/redis-modules-hub/). From de242c57c9512fadd85030e4ec7b0e4afecda389 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Sun, 15 Sep 2024 10:06:17 +0300 Subject: [PATCH 1535/2686] Update Redis Maintainer to Redis LTD --- redis/maintainer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 120000 => 100644 redis/maintainer.md diff --git a/redis/maintainer.md b/redis/maintainer.md deleted file mode 120000 index e727ff0696ae..000000000000 --- a/redis/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -../.common-templates/maintainer-community.md \ No newline at end of file diff --git a/redis/maintainer.md b/redis/maintainer.md new file mode 100644 index 000000000000..d1e3d7a407c8 --- /dev/null +++ b/redis/maintainer.md @@ -0,0 +1 @@ +[Redis LTD](https://redis.io/) From bd48a921900c8a43ec096e83aa160069a52959b6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Sep 2024 11:09:06 -0700 Subject: [PATCH 1536/2686] Run update.sh --- aerospike/README.md | 4 ++-- api-firewall/README.md | 2 +- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- photon/README.md | 6 +++--- redis/README.md | 15 +-------------- 6 files changed, 11 insertions(+), 24 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 01dde13b9a1c..09fcb27e97eb 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.5`, `ee-7.1.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/ea12c2c1fcc26f2f3aa270fba7af8b32a0ca0026/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.6`, `ee-7.1.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/fae2f091075aa936a43c9f673869cd57fadada56/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.5`, `ce-7.1.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/ea12c2c1fcc26f2f3aa270fba7af8b32a0ca0026/community/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.6`, `ce-7.1.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/fae2f091075aa936a43c9f673869cd57fadada56/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/api-firewall/README.md b/api-firewall/README.md index 9f5e499287a3..86902589bc5e 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/66d6a4190b098f95c1e2b9382ded51a340c815d0/0.8.0/Dockerfile) +- [`0.8.1`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/4af02b9e4413f141078641b690bb114a929f414c/0.8.1/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 7388f649d741..9ed7c5a56521 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.base) +- [`latest`, `base`, `base-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.base) -- [`base-devel`, `base-devel-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240908.0.261281`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fdcc9fde44035155a6f71699f842f77cbe52d526/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index d79661eafa7c..214e16cde523 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/03ebfc11b16f17581b4021f47a3fa20498090d9a/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f14ed67be2146f13eece4f8187ee5401db46e249/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index c0cb7867bb73..79f493e2fbc2 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240910`, `latest`](https://github.com/vmware/photon-docker-image/blob/2e6b965d5551a14a60bb952b413fa0028100c5cb/docker/Dockerfile) +- [`5.0`, `5.0-20240915`, `latest`](https://github.com/vmware/photon-docker-image/blob/35db86c1a4ff081102e45e683cb90bb498010385/docker/Dockerfile) -- [`4.0`, `4.0-20240908`](https://github.com/vmware/photon-docker-image/blob/40fedabc4799ee18c7e1d914f06354cf75bc424d/docker/Dockerfile) +- [`4.0`, `4.0-20240915`](https://github.com/vmware/photon-docker-image/blob/bcdf484bf3a6c43eb041311f3cc8f65d06a1ca02/docker/Dockerfile) -- [`3.0`, `3.0-20240908`](https://github.com/vmware/photon-docker-image/blob/3a5b14aa402eda660dc1af88dc5f9f0dde4bc379/docker/Dockerfile) +- [`3.0`, `3.0-20240915`](https://github.com/vmware/photon-docker-image/blob/cb7a141efeed444b2e4d34ab866afef09152b946/docker/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index d67d0a4e1eba..24ed277a568f 100644 --- a/redis/README.md +++ b/redis/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [the Docker Community](https://github.com/redis/docker-library-redis) + [Redis LTD](https://redis.io/) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -119,19 +119,6 @@ Where `/myredis/conf/` is a local directory containing your `redis.conf` file. U The mapped directory should be writable, as depending on the configuration and mode of operation, Redis may need to create additional configuration files or rewrite existing ones. -## `32bit` variant - -This variant is *not* a 32bit image (and will not run on 32bit hardware), but includes Redis compiled as a 32bit binary, especially for users who need the decreased memory requirements associated with that. See ["Using 32 bit instances"](http://redis.io/topics/memory-optimization#using-32-bit-instances) in the Redis documentation for more information. - -# Redis Stack and modules - -Modules extend Redis with extra capabilities. Redis Stack already comes with the capabilities (search and query, JSON support, and more) that are developed by Redis (the company). The Docker images are available here: - -- [Redis Stack](https://hub.docker.com/r/redis/redis-stack): Redis plus extra capabilities and Redis Insight (a GUI for Redis) -- [Redis Stack Server](https://hub.docker.com/r/redis/redis-stack-server): Redis plus extra capabilities - -You can find the list of modules for Redis on [redis.io](https://redis.io/community/redis-modules-hub/). - # Image Variants The `redis` images come in many flavors, each designed for a specific use case. From 36254b6bd3ff816205fad43c014048fbd7062659 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Sep 2024 12:09:02 -0700 Subject: [PATCH 1537/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- fedora/README.md | 8 ++++---- openjdk/README.md | 36 ++++++++++++++++++------------------ traefik/README.md | 16 ++++++++-------- 4 files changed, 40 insertions(+), 40 deletions(-) diff --git a/docker/README.md b/docker/README.md index 42aef0d88ccf..856217a06395 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/cli/Dockerfile) +- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/cli/Dockerfile) - [`27.3.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.1-dind-alpine3.20`, `27.3.0-rc.1`, `27-rc`, `rc`, `27.3.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind/Dockerfile) - [`27.3.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind-rootless/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/cli/Dockerfile) +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/cli/Dockerfile) - [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/14558402153b8a33a5a8d91c0ccbbb40cc0b313f/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 39b7fb88c259..e326d505d709 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b37b9b53c0aaf6824df6e79fe9ddaec0375851ce/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5b028576513bbea06b4ce927427f9bc3183285ec/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c588370458a42b7cdad03e9ee6cd1ce24ac9aacf/x86_64/Dockerfile) +- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/587b205e429db73124477f89d3d1f77e75ef9550/x86_64/Dockerfile) -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/21b49b6f45cfb4b1f3a3ab52072e15651ebdc535/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/bcf046150f9f7db37cb4df2e877b306cb3610d03/x86_64/Dockerfile) -- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/8495862d5897d1571b0453e620b6b1a6c58ecb32/x86_64/Dockerfile) +- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/78f4c52f0e2202bd61997b823e5b90b347b1dfcd/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index edba7dd1e169..0a836ea269f0 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-14-jdk-oraclelinux9`, `24-ea-14-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-14-jdk-oracle`, `24-ea-14-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-15-jdk-oraclelinux9`, `24-ea-15-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-15-jdk-oracle`, `24-ea-15-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-14-jdk-oraclelinux8`, `24-ea-14-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-15-jdk-oraclelinux8`, `24-ea-15-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-14-jdk-bookworm`, `24-ea-14-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/bookworm/Dockerfile) +- [`24-ea-15-jdk-bookworm`, `24-ea-15-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/bookworm/Dockerfile) -- [`24-ea-14-jdk-slim-bookworm`, `24-ea-14-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-14-jdk-slim`, `24-ea-14-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-15-jdk-slim-bookworm`, `24-ea-15-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-15-jdk-slim`, `24-ea-15-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-14-jdk-bullseye`, `24-ea-14-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/bullseye/Dockerfile) +- [`24-ea-15-jdk-bullseye`, `24-ea-15-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/bullseye/Dockerfile) -- [`24-ea-14-jdk-slim-bullseye`, `24-ea-14-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-15-jdk-slim-bullseye`, `24-ea-15-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-14-jdk-windowsservercore-ltsc2022`, `24-ea-14-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-15-jdk-windowsservercore-ltsc2022`, `24-ea-15-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-14-jdk-windowsservercore-1809`, `24-ea-14-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-15-jdk-windowsservercore-1809`, `24-ea-15-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-14-jdk-nanoserver-1809`, `24-ea-14-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-15-jdk-nanoserver-1809`, `24-ea-15-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) - [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `24-ea-14-jdk`, `24-ea-14`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-15-jdk`, `24-ea-15`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-14-jdk-windowsservercore`, `24-ea-14-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-15-jdk-windowsservercore`, `24-ea-15-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-14-jdk-nanoserver`, `24-ea-14-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-15-jdk-nanoserver`, `24-ea-15-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d35f97c4ecce4225fdbc9524f5addf20121845a2/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) - `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: diff --git a/traefik/README.md b/traefik/README.md index 3fcfefaceeed..3c51343180af 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.2-windowsservercore-ltsc2022`, `3.1.2-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.3-windowsservercore-ltsc2022`, `3.1.3-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.2-windowsservercore-1809`, `3.1.2-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/1809/Dockerfile) +- [`v3.1.3-windowsservercore-1809`, `3.1.3-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/1809/Dockerfile) -- [`v3.1.2-nanoserver-ltsc2022`, `3.1.2-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.3-nanoserver-ltsc2022`, `3.1.3-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.2`, `3.1.2`, `v3.1`, `3.1`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/15f17b50ee5f673098080de655caafa4f3dc77d8/v3.1/alpine/Dockerfile) +- [`v3.1.3`, `3.1.3`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/alpine/Dockerfile) -- [`v2.11.8-windowsservercore-ltsc2022`, `2.11.8-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.9-windowsservercore-ltsc2022`, `2.11.9-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.8-windowsservercore-1809`, `2.11.8-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/1809/Dockerfile) +- [`v2.11.9-windowsservercore-1809`, `2.11.9-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/1809/Dockerfile) -- [`v2.11.8-nanoserver-ltsc2022`, `2.11.8-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.9-nanoserver-ltsc2022`, `2.11.9-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.8`, `2.11.8`, `v2.11`, `2.11`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/52b94a7d0570742c03de558db18cef6ca5267142/v2.11/alpine/Dockerfile) +- [`v2.11.9`, `2.11.9`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/alpine/Dockerfile) # Quick reference (cont.) From b0efa1633777d66df6c00dd677f3493b70e11c4d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Sep 2024 17:09:04 -0700 Subject: [PATCH 1538/2686] Run update.sh --- tomcat/README.md | 8 ++++---- ubuntu/README.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index bbff9d63bc17..079e359620c0 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M25-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M25-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M25-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M25`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.0-M26-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M26-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M26-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M26`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-M25-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M25-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M25-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.0-M26-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M26-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M26-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.0-M25-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-M26-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M25-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9209057a06b467179d1cdb1e2825bcc5304eee9f/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-M26-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jre21/temurin-jammy/Dockerfile) - [`10.1.29-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.29-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.29-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.29`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk21/temurin-noble/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 2f5b4f571205..e0eac1911f54 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,11 +26,11 @@ WARNING: - [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-9699eddd&id=9699eddd402d702628046e17ab86ccc5ffb51adc) -- [`22.04`, `jammy-20240808`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240808-4cf8c608&id=4cf8c608d2549bbd10cdce612c814dc60899ebde) +- [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20240801`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240801-b0b2956a&id=b0b2956a333896413ad26c7ad96520ffe4d0ea89) +- [`24.04`, `noble-20240827.1`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240827.1-4b0dd592&id=4b0dd5927203f4c617e77bf210ab502c4c823310) -- [`24.10`, `oracular-20240811.1`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240811.1-bee83f33&id=bee83f33ff87f39261ce0ef49970c4313c2772f6) +- [`24.10`, `oracular-20240913`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240913-7aa6a93d&id=7aa6a93df48ee04f51c91caf6961298905f9c117) # Quick reference (cont.) From 0c123d5d5059c9f2ec5d9a98ec1574cae012ca44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Sep 2024 10:09:10 -0700 Subject: [PATCH 1539/2686] Run update.sh --- swift/README.md | 50 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 37 insertions(+), 13 deletions(-) diff --git a/swift/README.md b/swift/README.md index 57f0ae25f82d..e06555d57cf9 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,31 +24,55 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`, `jammy`, `latest`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) +- [`6.0.0`, `6.0`, `6.0.0-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/24.04/Dockerfile) -- [`5.10.1-slim`, `5.10-slim`, `5.10.1-jammy-slim`, `5.10-jammy-slim`, `jammy-slim`, `slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/slim/Dockerfile) +- [`6.0.0-slim`, `6.0-slim`, `6.0.0-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/24.04/slim/Dockerfile) -- [`5.10.1-focal-slim`, `5.10-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/slim/Dockerfile) +- [`6.0.0-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/22.04/Dockerfile) -- [`5.10.1-focal`, `5.10-focal`, `focal`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/Dockerfile) +- [`6.0.0-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/22.04/slim/Dockerfile) -- [`5.10.1-mantic`, `5.10-mantic`, `mantic`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/23.10/Dockerfile) +- [`6.0.0-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/20.04/slim/Dockerfile) -- [`5.10.1-noble`, `5.10-noble`, `noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) +- [`6.0.0-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/20.04/Dockerfile) -- [`5.10.1-bookworm`, `5.10-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) +- [`6.0.0-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/debian/12/Dockerfile) -- [`5.10.1-fedora39`, `5.10-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) +- [`6.0.0-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/fedora/39/Dockerfile) -- [`5.10.1-amazonlinux2`, `5.10-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/Dockerfile) +- [`6.0.0-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/amazonlinux/2/Dockerfile) -- [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) +- [`6.0.0-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/amazonlinux/2/slim/Dockerfile) -- [`5.10.1-rhel-ubi9`, `5.10-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/Dockerfile) +- [`6.0.0-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/rhel-ubi/9/Dockerfile) -- [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) +- [`6.0.0-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/rhel-ubi/9/slim/Dockerfile) -- [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/windows/LTSC2022/Dockerfile) +- [`6.0.0-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/windows/LTSC2022/Dockerfile) + +- [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) + +- [`5.10.1-slim`, `5.10-slim`, `5.10.1-jammy-slim`, `5.10-jammy-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/slim/Dockerfile) + +- [`5.10.1-focal-slim`, `5.10-focal-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/slim/Dockerfile) + +- [`5.10.1-focal`, `5.10-focal`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/Dockerfile) + +- [`5.10.1-noble`, `5.10-noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) + +- [`5.10.1-bookworm`, `5.10-bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) + +- [`5.10.1-fedora39`, `5.10-fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) + +- [`5.10.1-amazonlinux2`, `5.10-amazonlinux2`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/Dockerfile) + +- [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) + +- [`5.10.1-rhel-ubi9`, `5.10-rhel-ubi9`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/Dockerfile) + +- [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) + +- [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/windows/LTSC2022/Dockerfile) - [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) From bf2f54361374247c8506269435fafacecb15856b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Sep 2024 11:10:07 -0700 Subject: [PATCH 1540/2686] Run update.sh --- redis/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/redis/README.md b/redis/README.md index 24ed277a568f..0c33201309c5 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.0-M01`, `8.0-M01-bookworm`](https://github.com/redis/docker-library-redis/blob/af8fe134a94d9d3ac4c696a5d8fd0096e7df6794/debian/Dockerfile) + - [`7.4.0`, `7.4`, `7`, `latest`, `7.4.0-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/debian/Dockerfile) - [`7.4.0-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.0-alpine3.20`, `7.4-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/alpine/Dockerfile) From c4b9f04de0ffd1d745119d28b9815e7557d7fbb5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Sep 2024 14:09:08 -0700 Subject: [PATCH 1541/2686] Run update.sh --- varnish/README.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index 9099c01ac82d..47d022cc4095 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,26 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.5.0`, `7.5`, `latest`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/debian/Dockerfile) +- [`fresh`, `7.6.0`, `7`, `7.6`, `latest`](https://github.com/varnish/docker-varnish/blob/5cedd7abfe27cc65523377ec0b2207bb2a705236/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.5.0-alpine`, `7.5-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/0cbc46e59728598b7bb0f537206ce00af6dd9203/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.6.0-alpine`, `7-alpine`, `7.6-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/5cedd7abfe27cc65523377ec0b2207bb2a705236/fresh/alpine/Dockerfile) -- [`old`, `7.4.3`, `7.4`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/debian/Dockerfile) +- [`old`, `7.5.0`, `7.5`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/debian/Dockerfile) -- [`old-alpine`, `7.4.3-alpine`, `7.4-alpine`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/old/alpine/Dockerfile) +- [`old-alpine`, `7.5.0-alpine`, `7.5-alpine`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/alpine/Dockerfile) - [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) -- [`7.4.2`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/fresh/debian/Dockerfile) - -- [`7.4.2-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/fresh/alpine/Dockerfile) - -- [`7.3.1`, `7.3`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/old/debian/Dockerfile) - -- [`7.3.1-alpine`, `7.3-alpine`](https://github.com/varnish/docker-varnish/blob/5644d31e8fa5bc78e764e8604ffa17c47528f5e3/old/alpine/Dockerfile) - -- [`6.0.12`](https://github.com/varnish/docker-varnish/blob/0c295b528f28a98650fb2580eab6d34b30b165c4/stable/debian/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 9c154ae8c27097953c9a35d851fa014f86183ef8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Sep 2024 16:09:04 -0700 Subject: [PATCH 1542/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 20 +++++++-------- rabbitmq/README.md | 8 +++--- tomcat/README.md | 64 +++++++++++++++++++++++----------------------- unit/README.md | 46 ++++++++++++++++++++++----------- 5 files changed, 78 insertions(+), 62 deletions(-) diff --git a/bash/README.md b/bash/README.md index e8d7409b9772..05f305c7e080 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240904`, `devel`, `devel-20240904-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/9da05247782e6a33fba8d5353665d4cfa3d54360/devel/Dockerfile) +- [`devel-20240911`, `devel`, `devel-20240911-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/ca69cb1d9e08ef43b6609d21e873be42d948cead/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 856217a06395..893ed04b5126 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/cli/Dockerfile) +- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/cli/Dockerfile) - [`27.3.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.1-dind-alpine3.20`, `27.3.0-rc.1`, `27-rc`, `rc`, `27.3.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind/Dockerfile) - [`27.3.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind-rootless/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/cli/Dockerfile) +- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/cli/Dockerfile) - [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-1809/Dockerfile) +- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99ff91579f4ce09b5ae78bdbc1de20c4c11ca7a7/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/12866bea2a3c9b95cb39f79e62537123a2ab96bb/27/windows/windowsservercore-1809/Dockerfile) + - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6ea3101390d5..c02de716466a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-rc.1`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/319407a1d59ee26cdefb1d7f40af2028bb64e2d6/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0-rc.2`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/ef9ca15a89c29aca626a1b93536e1204c7959e86/4.0-rc/ubuntu/Dockerfile) -- [`4.0.0-rc.1-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-rc.2-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) -- [`4.0.0-rc.1-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/319407a1d59ee26cdefb1d7f40af2028bb64e2d6/4.0-rc/alpine/Dockerfile) +- [`4.0.0-rc.2-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ef9ca15a89c29aca626a1b93536e1204c7959e86/4.0-rc/alpine/Dockerfile) -- [`4.0.0-rc.1-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-rc.2-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 079e359620c0..3ec36cefbec5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -32,69 +32,69 @@ WARNING: - [`11.0.0-M26-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.29-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.29-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.29-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.29`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.30-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.30-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.30-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.30`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.29-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.29-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.29-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.30-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.30-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.30-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.29-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.30-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.29-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.30-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.29-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.29-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.29-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.30-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.30-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.30-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.29-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.29-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.29-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.30-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.30-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.30-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.29-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.30-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.29-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.30-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.29-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.29-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.29-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.30-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.30-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.30-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.29-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.29-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.29-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.30-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.30-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.30-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.29-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.30-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.29-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7eeacc4767571daab4921707768f9e233d8b643e/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.30-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.94-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.94-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.94-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.94`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.95-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.95-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.95-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.95`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.94-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.94-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.94-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.95-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.95-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.95-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.94-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.95-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.94-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.95-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.94-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.94-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.95-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.95-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.94-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.94-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.94-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.95-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.95-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.95-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.94-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.94-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.94-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.95-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.95-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.95-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.94-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.95-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.94-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.95-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.94-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.94-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.95-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.95-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.94-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.94-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.94-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.95-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.95-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.95-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.94-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.94-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.94-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.95-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.95-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.95-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.94-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.95-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.94-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.95-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.94-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.94-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.95-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.95-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.94-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.94-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.94-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.95-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.95-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.95-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.94-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.94-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.94-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.95-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.95-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.95-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.94-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.95-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.94-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.95-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.94-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.94-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4cb6c16433d917cc64d7029a1708bae86681b8e2/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.95-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.95-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/unit/README.md b/unit/README.md index ecd39bd66175..2c875c39b812 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,35 +24,39 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32.1-go1.22`, `go1.22`, `go1`, `go`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.22) +- [`1.33.0-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.go1.23) -- [`1.32.1-go1.21`, `go1.21`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.go1.21) +- [`1.33.0-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.go1.22) -- [`1.32.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.jsc11) +- [`1.33.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.jsc11) -- [`1.32.1-node21`, `node21`, `node`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node21) +- [`1.33.0-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.node22) -- [`1.32.1-node20`, `node20`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.node20) +- [`1.33.0-node20`, `node20`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.node20) -- [`1.32.1-perl5.38`, `perl5.38`, `perl5`, `perl`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.38) +- [`1.33.0-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.perl5.40) -- [`1.32.1-perl5.36`, `perl5.36`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.perl5.36) +- [`1.33.0-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.perl5.38) -- [`1.32.1-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.3) +- [`1.33.0-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.php8.3) -- [`1.32.1-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.php8.2) +- [`1.33.0-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.php8.2) -- [`1.32.1-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.12) +- [`1.33.0-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.12) -- [`1.32.1-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.python3.11) +- [`1.33.0-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.11) -- [`1.32.1-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.3) +- [`1.33.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.ruby3.3) -- [`1.32.1-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.ruby3.2) +- [`1.33.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.ruby3.2) -- [`1.32.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.wasm) +- [`1.33.0-python3.12-slim`, `python3.12-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.12-slim) -- [`1.32.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/0e79d961bb1ea68674961da1703ffedb1ddf6e43/pkg/docker/Dockerfile.minimal) +- [`1.33.0-python3.11-slim`, `python3.11-slim`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.11-slim) + +- [`1.33.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.wasm) + +- [`1.33.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) @@ -89,6 +93,18 @@ Please see [Unit's website](https://unit.nginx.org/installation/#docker-images) Please check the [Initial Configuration](https://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](https://unit.nginx.org/howto/docker/) can be of help. +# Image Variants + +The `unit` images come in many flavors, each designed for a specific use case. + +## `unit:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +## `unit:-slim` + +This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `unit`. Unless you are working in an environment where *only* the `unit` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. + # License View [license information](https://raw.githubusercontent.com/nginx/unit/master/LICENSE) for the software contained in this image. From cd8fabb9a9e2293874bf16c8fd71f65abd48db13 Mon Sep 17 00:00:00 2001 From: Simran Date: Wed, 18 Sep 2024 01:16:24 +0200 Subject: [PATCH 1543/2686] ArangoDB: How to initialize the server language / license update (#2449) --- arangodb/content.md | 71 +++++++++++++++++++++++++++++---------------- arangodb/license.md | 8 ++++- 2 files changed, 53 insertions(+), 26 deletions(-) diff --git a/arangodb/content.md b/arangodb/content.md index bbe16d56d23c..159a5569c66f 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -18,8 +18,8 @@ ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: #### ArangoDB Documentation -- [Learn ArangoDB](https://www.arangodb.com/learn/) -- [Documentation](https://www.arangodb.com/docs/) +- [Learn ArangoDB](https://arangodb.com/learn/) +- [Documentation](https://docs.arangodb.com/) ## How to use this image @@ -28,26 +28,44 @@ ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: In order to start an ArangoDB instance, run: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance %%IMAGE%% +docker run -d -p 8529:8529 -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name arangodb-instance %%IMAGE%% ``` -Will create and launch the %%IMAGE%% docker instance as background process. The Identifier of the process is printed. By default ArangoDB listen on port 8529 for request and the image includes `EXPOSE 8529`. If you link an application container it is automatically available in the linked container. See the following examples. +Docker chooses the processor architecture for the image that matches your host CPU by default. If this is not the case, for example, because you have the `DOCKER_DEFAULT_PLATFORM` environment variable set to a different architecture, you can pass the `--platform` flag to the `docker run` command to specify the appropriate operating system and architecture for the container. For x86-64, use `linux/amd64`. On ARM, especially Apple silicon with no emulation for the required AVX instruction set extension, use `linux/arm64/v8`: -In order to get the IP arango listens on, run: +```console +docker run -d -p 8529:8529 -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name arangodb-instance --platform linux/arm64/v8 %%IMAGE%% +``` + +This creates and launches the %%IMAGE%% Docker instance as a background process. The Identifier of the process is printed. By default, ArangoDB listens on port `8529` for requests. + +In order to get the IP ArangoDB listens on, run: ```console -unix> docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance +docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance ``` +### Initialize the server language + +When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: + +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. + +- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. + +Note that you cannot set the language using only a startup option on the command-line, like `docker run ... %%IMAGE%% --icu-language sv`. + +If you don't specify a language explicitly, the default is `en_US` up to ArangoDB v3.11 and `en_US_POSIX` from ArangoDB v3.12 onward. + ### Using the instance -In order to use the running instance from an application, link the container: +To use the running instance from an application, link the container: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name my-app --link arangodb-instance:db-link %%IMAGE%% +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name my-app --link arangodb-instance:db-link %%IMAGE%% ``` -This will use the instance with the name `arangodb-instance` and link it into the application container. The application container will contain environment variables +This uses the instance named `arangodb-instance` and links it into the application container. The application container contains environment variables, which can be used to access the database. DB_LINK_PORT_8529_TCP=tcp://172.17.0.17:8529 DB_LINK_PORT_8529_TCP_ADDR=172.17.0.17 @@ -55,14 +73,12 @@ This will use the instance with the name `arangodb-instance` and link it into th DB_LINK_PORT_8529_TCP_PROTO=tcp DB_LINK_NAME=/naughty_ardinghelli/db-link -These can be used to access the database. - ### Exposing the port to the outside world If you want to expose the port to the outside world, run: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d %%IMAGE%% +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d %%IMAGE%% ``` ArangoDB listen on port 8529 for request and the image includes `EXPOSE @@ -93,7 +109,7 @@ Note: this way of specifying logins only applies to single server installations. You can pass arguments to the ArangoDB server by appending them to the end of the Docker command: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 %%IMAGE%% --help +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 %%IMAGE%% --help ``` The entrypoint script starts the `arangod` binary by default and forwards your arguments. @@ -101,13 +117,18 @@ The entrypoint script starts the `arangod` binary by default and forwards your a You may also start other binaries, such as the ArangoShell: ```console -unix> docker run -it %%IMAGE%% arangosh --server.database myDB ... +docker run -it %%IMAGE%% arangosh --server.database myDB ... ``` Note that you need to set up networking for containers if `arangod` runs in one container and you want to access it with `arangosh` running in another container. It is easier to execute it in the same container instead. Use `docker ps` to find out the container ID / name of a running container: ```console -unix> docker ps +docker ps +``` + +It prints something similar to the following: + +```console CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 1234567890ab arangodb "/entrypoint.sh aran…" 2 hours ago Up 2 hours 0.0.0.0:8529->8529/tcp jolly_joker ``` @@ -115,10 +136,10 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS Then use `docker exec` and the ID / name to run something inside of the existing container: ```console -unix> docker exec -it jolly_joker arangosh +docker exec -it jolly_joker arangosh ``` -See more information about [Configuration](https://www.arangodb.com/docs/stable/administration-configuration.html) +For more information, see the ArangoDB documentation about [Configuration](https://docs.arangodb.com/stable/operations/administration/configuration/). ### Limiting resource utilization @@ -149,7 +170,7 @@ ArangoDB supports two different storage engines from version 3.2 to 3.6. You can ArangoDB uses the volume `/var/lib/arangodb3` as database directory to store the collection data and the volume `/var/lib/arangodb3-apps` as apps directory to store any extensions. These directories are marked as docker volumes. -See `docker inspect --format "{{ .Config.Volumes}}" arangodb` for all volumes. +See `docker inspect --format "{{ .Config.Volumes }}" %%IMAGE%%` for all volumes. A good explanation about persistence and docker container can be found here: [Docker In-depth: Volumes](http://container42.com/2014/11/03/docker-indepth-volumes/), [Why Docker Data Containers are Good](https://medium.com/@ramangupta/why-docker-data-containers-are-good-589b3c6c749e) @@ -160,8 +181,8 @@ You can map the container's volumes to a directory on the host, so that the data ```console unix> mkdir /tmp/arangodb unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d \ - -v /tmp/arangodb:/var/lib/arangodb3 \ - %%IMAGE%% + -v /tmp/arangodb:/var/lib/arangodb3 \ + %%IMAGE%% ``` This will use the `/tmp/arangodb` directory of the host as database directory for ArangoDB inside the container. @@ -171,22 +192,22 @@ This will use the `/tmp/arangodb` directory of the host as database directory fo Alternatively you can create a container holding the data. ```console -unix> docker create --name arangodb-persist %%IMAGE%% true +docker create --name arangodb-persist %%IMAGE%% true ``` And use this data container in your ArangoDB container. ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --volumes-from arangodb-persist -p 8529:8529 %%IMAGE%% +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --volumes-from arangodb-persist -p 8529:8529 %%IMAGE%% ``` If want to save a few bytes you can alternatively use [busybox](https://hub.docker.com/_/busybox) or [alpine](https://hub.docker.com/_/alpine) for creating the volume only containers. Please note that you need to provide the used volumes in this case. For example ```console -unix> docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true +docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true ``` -### Using as a base image +### Usage as a base image If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/reference/dockerfile/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. @@ -194,4 +215,4 @@ When deriving the image, you can control the instantiation via putting files int - `*.sh` - files ending with .sh will be run as a bash shellscript. - `*.js` - files will be executed with arangosh. You can specify additional arangosh arguments via the `ARANGOSH_ARGS` environment variable. -- `dumps/` - in this directory you can place subdirectories containing database dumps generated using [arangodump](https://www.arangodb.com/docs/stable/programs-arangodump.html). They can be restored using [arangorestore](https://www.arangodb.com/docs/stable/programs-arangorestore.html). +- `dumps/` - in this directory you can place subdirectories containing database dumps generated using [arangodump](https://docs.arangodb.com/stable/components/tools/arangodump/). They can be restored using [arangorestore](https://docs.arangodb.com/stable/components/tools/arangorestore/). diff --git a/arangodb/license.md b/arangodb/license.md index 50e704672fa9..2909170e6bec 100644 --- a/arangodb/license.md +++ b/arangodb/license.md @@ -1 +1,7 @@ -[ArangoDB itself is licensed under the Apache License](https://github.com/arangodb/arangodb/blob/devel/LICENSE), but it contains [software of third parties under their respective licenses](https://github.com/arangodb/arangodb/blob/devel/LICENSES-OTHER-COMPONENTS.md). +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). The use for commercial purposes is limited to a 100 GB on dataset size in production within a single cluster and a maximum of three clusters. + +The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. + +Up to ArangoDB version 3.11, ArangoDB is licensed under the [Apache 2.0 License](https://github.com/arangodb/arangodb/blob/3.11/LICENSE). + +ArangoDB contains [software of third parties under their respective licenses](https://github.com/arangodb/arangodb/blob/devel/LICENSES-OTHER-COMPONENTS.md). From f66c2d3fd020637920173039503c1f8891369a49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Sep 2024 17:09:10 -0700 Subject: [PATCH 1544/2686] Run update.sh --- arangodb/README.md | 79 +++++++++++++++++++++++++++++++--------------- joomla/README.md | 18 +++++------ node/README.md | 12 +++---- 3 files changed, 68 insertions(+), 41 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 7c62020711cb..039c8355684f 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -67,8 +67,8 @@ ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: #### ArangoDB Documentation -- [Learn ArangoDB](https://www.arangodb.com/learn/) -- [Documentation](https://www.arangodb.com/docs/) +- [Learn ArangoDB](https://arangodb.com/learn/) +- [Documentation](https://docs.arangodb.com/) ## How to use this image @@ -77,26 +77,44 @@ ArangoDB runs everywhere: On-prem, in the cloud, and as a managed cloud service: In order to start an ArangoDB instance, run: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance arangodb +docker run -d -p 8529:8529 -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name arangodb-instance arangodb ``` -Will create and launch the arangodb docker instance as background process. The Identifier of the process is printed. By default ArangoDB listen on port 8529 for request and the image includes `EXPOSE 8529`. If you link an application container it is automatically available in the linked container. See the following examples. +Docker chooses the processor architecture for the image that matches your host CPU by default. If this is not the case, for example, because you have the `DOCKER_DEFAULT_PLATFORM` environment variable set to a different architecture, you can pass the `--platform` flag to the `docker run` command to specify the appropriate operating system and architecture for the container. For x86-64, use `linux/amd64`. On ARM, especially Apple silicon with no emulation for the required AVX instruction set extension, use `linux/arm64/v8`: -In order to get the IP arango listens on, run: +```console +docker run -d -p 8529:8529 -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name arangodb-instance --platform linux/arm64/v8 arangodb +``` + +This creates and launches the arangodb Docker instance as a background process. The Identifier of the process is printed. By default, ArangoDB listens on port `8529` for requests. + +In order to get the IP ArangoDB listens on, run: ```console -unix> docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance +docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance ``` +### Initialize the server language + +When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: + +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. + +- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. + +Note that you cannot set the language using only a startup option on the command-line, like `docker run ... arangodb --icu-language sv`. + +If you don't specify a language explicitly, the default is `en_US` up to ArangoDB v3.11 and `en_US_POSIX` from ArangoDB v3.12 onward. + ### Using the instance -In order to use the running instance from an application, link the container: +To use the running instance from an application, link the container: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name my-app --link arangodb-instance:db-link arangodb +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --name my-app --link arangodb-instance:db-link arangodb ``` -This will use the instance with the name `arangodb-instance` and link it into the application container. The application container will contain environment variables +This uses the instance named `arangodb-instance` and links it into the application container. The application container contains environment variables, which can be used to access the database. DB_LINK_PORT_8529_TCP=tcp://172.17.0.17:8529 DB_LINK_PORT_8529_TCP_ADDR=172.17.0.17 @@ -104,14 +122,12 @@ This will use the instance with the name `arangodb-instance` and link it into th DB_LINK_PORT_8529_TCP_PROTO=tcp DB_LINK_NAME=/naughty_ardinghelli/db-link -These can be used to access the database. - ### Exposing the port to the outside world If you want to expose the port to the outside world, run: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d arangodb +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d arangodb ``` ArangoDB listen on port 8529 for request and the image includes `EXPOSE @@ -142,7 +158,7 @@ Note: this way of specifying logins only applies to single server installations. You can pass arguments to the ArangoDB server by appending them to the end of the Docker command: ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 arangodb --help +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 arangodb --help ``` The entrypoint script starts the `arangod` binary by default and forwards your arguments. @@ -150,13 +166,18 @@ The entrypoint script starts the `arangod` binary by default and forwards your a You may also start other binaries, such as the ArangoShell: ```console -unix> docker run -it arangodb arangosh --server.database myDB ... +docker run -it arangodb arangosh --server.database myDB ... ``` Note that you need to set up networking for containers if `arangod` runs in one container and you want to access it with `arangosh` running in another container. It is easier to execute it in the same container instead. Use `docker ps` to find out the container ID / name of a running container: ```console -unix> docker ps +docker ps +``` + +It prints something similar to the following: + +```console CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 1234567890ab arangodb "/entrypoint.sh aran…" 2 hours ago Up 2 hours 0.0.0.0:8529->8529/tcp jolly_joker ``` @@ -164,10 +185,10 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS Then use `docker exec` and the ID / name to run something inside of the existing container: ```console -unix> docker exec -it jolly_joker arangosh +docker exec -it jolly_joker arangosh ``` -See more information about [Configuration](https://www.arangodb.com/docs/stable/administration-configuration.html) +For more information, see the ArangoDB documentation about [Configuration](https://docs.arangodb.com/stable/operations/administration/configuration/). ### Limiting resource utilization @@ -198,7 +219,7 @@ ArangoDB supports two different storage engines from version 3.2 to 3.6. You can ArangoDB uses the volume `/var/lib/arangodb3` as database directory to store the collection data and the volume `/var/lib/arangodb3-apps` as apps directory to store any extensions. These directories are marked as docker volumes. -See `docker inspect --format "{{ .Config.Volumes}}" arangodb` for all volumes. +See `docker inspect --format "{{ .Config.Volumes }}" arangodb` for all volumes. A good explanation about persistence and docker container can be found here: [Docker In-depth: Volumes](http://container42.com/2014/11/03/docker-indepth-volumes/), [Why Docker Data Containers are Good](https://medium.com/@ramangupta/why-docker-data-containers-are-good-589b3c6c749e) @@ -209,8 +230,8 @@ You can map the container's volumes to a directory on the host, so that the data ```console unix> mkdir /tmp/arangodb unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -p 8529:8529 -d \ - -v /tmp/arangodb:/var/lib/arangodb3 \ - arangodb + -v /tmp/arangodb:/var/lib/arangodb3 \ + arangodb ``` This will use the `/tmp/arangodb` directory of the host as database directory for ArangoDB inside the container. @@ -220,22 +241,22 @@ This will use the `/tmp/arangodb` directory of the host as database directory fo Alternatively you can create a container holding the data. ```console -unix> docker create --name arangodb-persist arangodb true +docker create --name arangodb-persist arangodb true ``` And use this data container in your ArangoDB container. ```console -unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --volumes-from arangodb-persist -p 8529:8529 arangodb +docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --volumes-from arangodb-persist -p 8529:8529 arangodb ``` If want to save a few bytes you can alternatively use [busybox](https://hub.docker.com/_/busybox) or [alpine](https://hub.docker.com/_/alpine) for creating the volume only containers. Please note that you need to provide the used volumes in this case. For example ```console -unix> docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true +docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true ``` -### Using as a base image +### Usage as a base image If you are using the image as a base image please make sure to wrap any CMD in the [exec](https://docs.docker.com/reference/dockerfile/#cmd) form. Otherwise the default entrypoint will not do its bootstrapping work. @@ -243,11 +264,17 @@ When deriving the image, you can control the instantiation via putting files int - `*.sh` - files ending with .sh will be run as a bash shellscript. - `*.js` - files will be executed with arangosh. You can specify additional arangosh arguments via the `ARANGOSH_ARGS` environment variable. -- `dumps/` - in this directory you can place subdirectories containing database dumps generated using [arangodump](https://www.arangodb.com/docs/stable/programs-arangodump.html). They can be restored using [arangorestore](https://www.arangodb.com/docs/stable/programs-arangorestore.html). +- `dumps/` - in this directory you can place subdirectories containing database dumps generated using [arangodump](https://docs.arangodb.com/stable/components/tools/arangodump/). They can be restored using [arangorestore](https://docs.arangodb.com/stable/components/tools/arangorestore/). # License -[ArangoDB itself is licensed under the Apache License](https://github.com/arangodb/arangodb/blob/devel/LICENSE), but it contains [software of third parties under their respective licenses](https://github.com/arangodb/arangodb/blob/devel/LICENSES-OTHER-COMPONENTS.md). +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). The use for commercial purposes is limited to a 100 GB on dataset size in production within a single cluster and a maximum of three clusters. + +The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. + +Up to ArangoDB version 3.11, ArangoDB is licensed under the [Apache 2.0 License](https://github.com/arangodb/arangodb/blob/3.11/LICENSE). + +ArangoDB contains [software of third parties under their respective licenses](https://github.com/arangodb/arangodb/blob/devel/LICENSES-OTHER-COMPONENTS.md). As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). diff --git a/joomla/README.md b/joomla/README.md index 9d7fcd018af1..3aea9f22c888 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-beta2-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/apache/Dockerfile) +- [`5.2.0-beta3-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/apache/Dockerfile) -- [`5.2.0-beta2-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-beta3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-beta2-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.1/fpm/Dockerfile) +- [`5.2.0-beta3-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/fpm/Dockerfile) -- [`5.2.0-beta2`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta2-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta2-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta2-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/apache/Dockerfile) +- [`5.2.0-beta3`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta3-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta3-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta3-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/apache/Dockerfile) -- [`5.2.0-beta2-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-beta3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-beta2-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.2/fpm/Dockerfile) +- [`5.2.0-beta3-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/fpm/Dockerfile) -- [`5.2.0-beta2-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/apache/Dockerfile) +- [`5.2.0-beta3-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/apache/Dockerfile) -- [`5.2.0-beta2-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-beta3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-beta2-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/83dab9beee1efb5374b353de89aae1e97afeae35/5.2.beta/php8.3/fpm/Dockerfile) +- [`5.2.0-beta3-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/fpm/Dockerfile) - [`5.1.4-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/apache/Dockerfile) diff --git a/node/README.md b/node/README.md index 6feafa4923b2..51792a5824ae 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.8-alpine3.19`, `22.8.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.9-alpine3.19`, `22.9.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.8-alpine`, `22.8-alpine3.20`, `22.8.0-alpine`, `22.8.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.9-alpine`, `22.9-alpine3.20`, `22.9.0-alpine`, `22.9.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.8`, `22.8-bookworm`, `22.8.0`, `22.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.9`, `22.9-bookworm`, `22.9.0`, `22.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.8-bookworm-slim`, `22.8-slim`, `22.8.0-bookworm-slim`, `22.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.9-bookworm-slim`, `22.9-slim`, `22.9.0-bookworm-slim`, `22.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.8-bullseye`, `22.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.9-bullseye`, `22.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.8-bullseye-slim`, `22.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/0c0069246367ac5ac0fc6bca141fb04faaca2f4b/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.9-bullseye-slim`, `22.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.17-alpine3.19`, `20.17.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.19/Dockerfile) From e4008bf86379f96433d4a5d10bfaa66c0a63edb2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Sep 2024 11:09:10 -0700 Subject: [PATCH 1545/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- rabbitmq/README.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docker/README.md b/docker/README.md index 893ed04b5126..6bfcd15e3df0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`27.3.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/cli/Dockerfile) +- [`27.3.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/cli/Dockerfile) -- [`27.3.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.1-dind-alpine3.20`, `27.3.0-rc.1`, `27-rc`, `rc`, `27.3.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind/Dockerfile) +- [`27.3.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.2-dind-alpine3.20`, `27.3.0-rc.2`, `27-rc`, `rc`, `27.3.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/dind/Dockerfile) -- [`27.3.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8debc3edb949c6d48307282188d534d95f9ad305/27-rc/dind-rootless/Dockerfile) +- [`27.3.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/dind-rootless/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.3.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-1809/Dockerfile) - [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `27.3.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: +- `27.3.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/99372b0dca1bacabe5af124932b9017526068dad/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c02de716466a..80dae83815ca 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-rc.2`, `4.0-rc`](https://github.com/docker-library/rabbitmq/blob/ef9ca15a89c29aca626a1b93536e1204c7959e86/4.0-rc/ubuntu/Dockerfile) +- [`4.0.0`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/Dockerfile) -- [`4.0.0-rc.2-management`, `4.0-rc-management`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/ubuntu/management/Dockerfile) +- [`4.0.0-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/management/Dockerfile) -- [`4.0.0-rc.2-alpine`, `4.0-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ef9ca15a89c29aca626a1b93536e1204c7959e86/4.0-rc/alpine/Dockerfile) +- [`4.0.0-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/Dockerfile) -- [`4.0.0-rc.2-management-alpine`, `4.0-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/3881658e776314fb145db712981c91c52a3e25b8/4.0-rc/alpine/management/Dockerfile) +- [`4.0.0-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) -- [`3.13.7-management`, `3.13-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/alpine/Dockerfile) -- [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fd645d88914a864e702b088ecb4bfecf2bb11156/3.12/ubuntu/Dockerfile) From 76617d7017a473dc3501d51b89b46637cd661020 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Sep 2024 14:09:14 -0700 Subject: [PATCH 1546/2686] Run update.sh --- eclipse-temurin/README.md | 70 ++++++++++++++------------------------- nextcloud/README.md | 18 ++++++---- 2 files changed, 36 insertions(+), 52 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index dfaf22a40818..dd1a0e285708 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -168,37 +168,25 @@ WARNING: - [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) -- [`22.0.2_9-jdk-alpine`, `22-jdk-alpine`, `22-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/alpine/Dockerfile) +- [`23_37-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/alpine/Dockerfile) -- [`22.0.2_9-jdk-jammy`, `22-jdk-jammy`, `22-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/jammy/Dockerfile) +- [`23_37-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jdk-noble`, `22-jdk-noble`, `22-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/noble/Dockerfile) +- [`23_37-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubi/ubi9-minimal/Dockerfile) -- [`22.0.2_9-jdk-ubi9-minimal`, `22-jdk-ubi9-minimal`, `22-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubi/ubi9-minimal/Dockerfile) +- [`23_37-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.2_9-jdk-windowsservercore-ltsc2022`, `22-jdk-windowsservercore-ltsc2022`, `22-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23_37-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`22.0.2_9-jdk-nanoserver-ltsc2022`, `22-jdk-nanoserver-ltsc2022`, `22-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`23_37-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/alpine/Dockerfile) -- [`22.0.2_9-jdk-windowsservercore-1809`, `22-jdk-windowsservercore-1809`, `22-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23_37-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubuntu/noble/Dockerfile) -- [`22.0.2_9-jdk-nanoserver-1809`, `22-jdk-nanoserver-1809`, `22-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-1809/Dockerfile) +- [`23_37-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubi/ubi9-minimal/Dockerfile) -- [`22.0.2_9-jre-alpine`, `22-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/alpine/Dockerfile) +- [`23_37-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`22.0.2_9-jre-jammy`, `22-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/jammy/Dockerfile) - -- [`22.0.2_9-jre-noble`, `22-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/noble/Dockerfile) - -- [`22.0.2_9-jre-ubi9-minimal`, `22-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubi/ubi9-minimal/Dockerfile) - -- [`22.0.2_9-jre-windowsservercore-ltsc2022`, `22-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`22.0.2_9-jre-nanoserver-ltsc2022`, `22-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - -- [`22.0.2_9-jre-windowsservercore-1809`, `22-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) - -- [`22.0.2_9-jre-nanoserver-1809`, `22-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-1809/Dockerfile) +- [`23_37-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -330,37 +318,27 @@ WARNING: - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) -- `22.0.2_9-jdk`, `22-jdk`, `22`: - - - [`22.0.2_9-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/ubuntu/noble/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) - -- `22.0.2_9-jdk-windowsservercore`, `22-jdk-windowsservercore`, `22-windowsservercore`: - - - [`22.0.2_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/windowsservercore-1809/Dockerfile) - -- `22.0.2_9-jdk-nanoserver`, `22-jdk-nanoserver`, `22-nanoserver`: +- `23_37-jdk`, `23-jdk`, `23`: - - [`22.0.2_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.2_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jdk/windows/nanoserver-1809/Dockerfile) + - [`23_37-jdk-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubuntu/noble/Dockerfile) + - [`23_37-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23_37-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `22.0.2_9-jre`, `22-jre`: +- `23_37-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`22.0.2_9-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/ubuntu/noble/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`23_37-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23_37-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `22.0.2_9-jre-windowsservercore`, `22-jre-windowsservercore`: +- `23_37-jre`, `23-jre`: - - [`22.0.2_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/windowsservercore-1809/Dockerfile) + - [`23_37-jre-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubuntu/noble/Dockerfile) + - [`23_37-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23_37-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) -- `22.0.2_9-jre-nanoserver`, `22-jre-nanoserver`: +- `23_37-jre-windowsservercore`, `23-jre-windowsservercore`: - - [`22.0.2_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`22.0.2_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/22/jre/windows/nanoserver-1809/Dockerfile) + - [`23_37-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23_37-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index dc72d365c716..6bcef8bbef64 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.9-apache`, `28.0-apache`, `28-apache`, `28.0.9`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/apache/Dockerfile) +- [`28.0.10-apache`, `28.0-apache`, `28-apache`, `28.0.10`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/apache/Dockerfile) -- [`28.0.9-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/fpm/Dockerfile) +- [`28.0.10-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/fpm/Dockerfile) -- [`28.0.9-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/3677cdf9ad7b77bd2d490901a300a924b6461f4f/28/fpm-alpine/Dockerfile) +- [`28.0.10-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/fpm-alpine/Dockerfile) -- [`29.0.6-apache`, `29.0-apache`, `29-apache`, `apache`, `stable-apache`, `production-apache`, `29.0.6`, `29.0`, `29`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/apache/Dockerfile) +- [`29.0.7-apache`, `29.0-apache`, `29-apache`, `stable-apache`, `production-apache`, `29.0.7`, `29.0`, `29`, `stable`, `production`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/apache/Dockerfile) -- [`29.0.6-fpm`, `29.0-fpm`, `29-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/fpm/Dockerfile) +- [`29.0.7-fpm`, `29.0-fpm`, `29-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/fpm/Dockerfile) -- [`29.0.6-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/53653c264827342eb7145115bee5138e2cb84443/29/fpm-alpine/Dockerfile) +- [`29.0.7-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/fpm-alpine/Dockerfile) + +- [`30.0.0-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.0`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/apache/Dockerfile) + +- [`30.0.0-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/fpm/Dockerfile) + +- [`30.0.0-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/fpm-alpine/Dockerfile) # Quick reference (cont.) From cc2ac59f46aff850ce1103bad220d8287a27fc94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Sep 2024 17:09:05 -0700 Subject: [PATCH 1547/2686] Run update.sh --- openjdk/README.md | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 0a836ea269f0..cadc67866e79 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -60,24 +60,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`24-ea-15-jdk-nanoserver-1809`, `24-ea-15-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23-rc-jdk-oraclelinux9`, `23-rc-oraclelinux9`, `23-jdk-oraclelinux9`, `23-oraclelinux9`, `23-rc-jdk-oracle`, `23-rc-oracle`, `23-jdk-oracle`, `23-oracle`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) - -- [`23-rc-jdk-oraclelinux8`, `23-rc-oraclelinux8`, `23-jdk-oraclelinux8`, `23-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux8/Dockerfile) - -- [`23-rc-jdk-bookworm`, `23-rc-bookworm`, `23-jdk-bookworm`, `23-bookworm`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/bookworm/Dockerfile) - -- [`23-rc-jdk-slim-bookworm`, `23-rc-slim-bookworm`, `23-jdk-slim-bookworm`, `23-slim-bookworm`, `23-rc-jdk-slim`, `23-rc-slim`, `23-jdk-slim`, `23-slim`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/slim-bookworm/Dockerfile) - -- [`23-rc-jdk-bullseye`, `23-rc-bullseye`, `23-jdk-bullseye`, `23-bullseye`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/bullseye/Dockerfile) - -- [`23-rc-jdk-slim-bullseye`, `23-rc-slim-bullseye`, `23-jdk-slim-bullseye`, `23-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/slim-bullseye/Dockerfile) - -- [`23-rc-jdk-windowsservercore-ltsc2022`, `23-rc-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`23-rc-jdk-windowsservercore-1809`, `23-rc-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - -- [`23-rc-jdk-nanoserver-1809`, `23-rc-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/nanoserver-1809/Dockerfile) - ## Shared Tags - `24-ea-15-jdk`, `24-ea-15`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: @@ -95,21 +77,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`24-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23-rc-jdk`, `23-rc`, `23-jdk`, `23`: - - - [`23-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/oraclelinux9/Dockerfile) - - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - -- `23-rc-jdk-windowsservercore`, `23-rc-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - - [`23-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9561b4fda40bd1525d1c05244474e52778737678/23/jdk/windows/windowsservercore-1809/Dockerfile) - -- `23-rc-jdk-nanoserver`, `23-rc-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - - [`23-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ef6c71c79148fdbac029ee6924626699ca5cd8c1/23/jdk/windows/nanoserver-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From f722396c5632ef9ca49077053ae335592183dd40 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Sep 2024 10:09:07 -0700 Subject: [PATCH 1548/2686] Run update.sh --- redis/README.md | 6 +----- traefik/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/redis/README.md b/redis/README.md index 0c33201309c5..4bf9cafd2958 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M01`, `8.0-M01-bookworm`](https://github.com/redis/docker-library-redis/blob/af8fe134a94d9d3ac4c696a5d8fd0096e7df6794/debian/Dockerfile) +- [`8.0-M01`, `8.0-M01-bookworm`](https://github.com/redis/docker-library-redis/blob/1b88507c82861395a5c1b354baab795c73c051e3/debian/Dockerfile) - [`7.4.0`, `7.4`, `7`, `latest`, `7.4.0-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/debian/Dockerfile) @@ -34,10 +34,6 @@ WARNING: - [`7.2.5-alpine`, `7.2-alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) -- [`7.0.15`, `7.0`, `7.0.15-bookworm`, `7.0-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/debian/Dockerfile) - -- [`7.0.15-alpine`, `7.0-alpine`, `7.0.15-alpine3.20`, `7.0-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.0/alpine/Dockerfile) - - [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) - [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 3c51343180af..a42c7ff3b478 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.3-windowsservercore-ltsc2022`, `3.1.3-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.4-windowsservercore-ltsc2022`, `3.1.4-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.3-windowsservercore-1809`, `3.1.3-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/1809/Dockerfile) +- [`v3.1.4-windowsservercore-1809`, `3.1.4-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/1809/Dockerfile) -- [`v3.1.3-nanoserver-ltsc2022`, `3.1.3-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.4-nanoserver-ltsc2022`, `3.1.4-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.3`, `3.1.3`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/0924e39ed52da16232acdaeb3df49a7298b70f3d/v3.1/alpine/Dockerfile) +- [`v3.1.4`, `3.1.4`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/alpine/Dockerfile) -- [`v2.11.9-windowsservercore-ltsc2022`, `2.11.9-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.10-windowsservercore-ltsc2022`, `2.11.10-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.9-windowsservercore-1809`, `2.11.9-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/1809/Dockerfile) +- [`v2.11.10-windowsservercore-1809`, `2.11.10-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/1809/Dockerfile) -- [`v2.11.9-nanoserver-ltsc2022`, `2.11.9-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.10-nanoserver-ltsc2022`, `2.11.10-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.9`, `2.11.9`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ef3b4ae57d284fbfc4253e735cc6206b490a5fa6/v2.11/alpine/Dockerfile) +- [`v2.11.10`, `2.11.10`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/alpine/Dockerfile) # Quick reference (cont.) From c10ee525486241e3f28cba7b05f8e4d2282d6928 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Sep 2024 11:09:05 -0700 Subject: [PATCH 1549/2686] Run update.sh --- mongo/README.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 003128a96b4b..fbbb19ce0bc6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`8.0.0-rc20-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/Dockerfile) +- [`8.0.0-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/Dockerfile) -- [`8.0.0-rc20-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.0-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-rc20-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.0-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-rc20-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.0-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-rc20-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.0-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`, `jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) +- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) -- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.14-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.14-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.18-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/Dockerfile) @@ -90,34 +90,34 @@ WARNING: ## Shared Tags -- `8.0.0-rc20`, `8.0-rc`: +- `8.0.0`, `8.0`, `8`, `latest`: - - [`8.0.0-rc20-noble`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/Dockerfile) - - [`8.0.0-rc20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-noble`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/Dockerfile) + - [`8.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc20-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.0-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.0-rc20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-rc20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-rc20-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.0-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.0-rc20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-rc20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3915e9edebe40ba57a58faca2a4a55a3cfd37d23/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.14`, `7.0`, `7`, `latest`: +- `7.0.14`, `7.0`, `7`: - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.14-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`, `windowsservercore`: +- `7.0.14-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.14-nanoserver`, `7.0-nanoserver`, `7-nanoserver`, `nanoserver`: +- `7.0.14-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - [`7.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) From 17ccb65be12177e86f22b099305592a3a1b27544 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Sep 2024 12:09:12 -0700 Subject: [PATCH 1550/2686] Run update.sh --- haproxy/README.md | 20 ++++----- ibm-semeru-runtimes/README.md | 76 +++++++++++++++++++++-------------- rabbitmq/README.md | 12 +++--- 3 files changed, 62 insertions(+), 46 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 92d1c11de1fc..e9a53d4a4609 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev7`, `3.1-dev`, `3.1-dev7-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/e15bc9b51aa03402fbdf832e0e041ed75f70bed5/3.1/Dockerfile) +- [`3.1-dev8`, `3.1-dev`, `3.1-dev8-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/33bccb3231f8b94b0781a35bfe38542d8e2792c9/3.1/Dockerfile) -- [`3.1-dev7-alpine`, `3.1-dev-alpine`, `3.1-dev7-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/e15bc9b51aa03402fbdf832e0e041ed75f70bed5/3.1/alpine/Dockerfile) +- [`3.1-dev8-alpine`, `3.1-dev-alpine`, `3.1-dev8-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/33bccb3231f8b94b0781a35bfe38542d8e2792c9/3.1/alpine/Dockerfile) -- [`3.0.4`, `3.0`, `lts`, `latest`, `3.0.4-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/217149de5f069af7a540918e71ba6a3d967598c1/3.0/Dockerfile) +- [`3.0.5`, `3.0`, `lts`, `latest`, `3.0.5-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/Dockerfile) -- [`3.0.4-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.4-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/217149de5f069af7a540918e71ba6a3d967598c1/3.0/alpine/Dockerfile) +- [`3.0.5-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.5-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/alpine/Dockerfile) -- [`2.9.10`, `2.9`, `2.9.10-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/9f4709d9c692b7b4ef2999cf689ba947e07e1394/2.9/Dockerfile) +- [`2.9.11`, `2.9`, `2.9.11-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/89dbd2e4a131058bb919f0c3442c57033147c242/2.9/Dockerfile) -- [`2.9.10-alpine`, `2.9-alpine`, `2.9.10-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/9f4709d9c692b7b4ef2999cf689ba947e07e1394/2.9/alpine/Dockerfile) +- [`2.9.11-alpine`, `2.9-alpine`, `2.9.11-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/89dbd2e4a131058bb919f0c3442c57033147c242/2.9/alpine/Dockerfile) -- [`2.8.10`, `2.8`, `2.8.10-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/Dockerfile) +- [`2.8.11`, `2.8`, `2.8.11-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/5b8b4056b3fb808eb70f9109eb1ca44ae4514247/2.8/Dockerfile) -- [`2.8.10-alpine`, `2.8-alpine`, `2.8.10-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/01b3b0d48c75a815148d46ae86b409507e232e1c/2.8/alpine/Dockerfile) +- [`2.8.11-alpine`, `2.8-alpine`, `2.8.11-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/5b8b4056b3fb808eb70f9109eb1ca44ae4514247/2.8/alpine/Dockerfile) -- [`2.6.18`, `2.6`, `2.6.18-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/Dockerfile) +- [`2.6.19`, `2.6`, `2.6.19-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/104fd7474379429fd5ad8e23c340eede93736010/2.6/Dockerfile) -- [`2.6.18-alpine`, `2.6-alpine`, `2.6.18-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/af88bbc9186ea2ea09fa59dc77ae9437cad687b4/2.6/alpine/Dockerfile) +- [`2.6.19-alpine`, `2.6-alpine`, `2.6.19-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/104fd7474379429fd5ad8e23c340eede93736010/2.6/alpine/Dockerfile) - [`2.4.27`, `2.4`, `2.4.27-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 38e90b742cf7..214e2be37193 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,103 @@ WARNING: ## Simple Tags -- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-23_37-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) + +- [`open-23_37-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-23_37-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/focal/Dockerfile.open.releases.full) + +- [`open-23_37-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags - `open-8u422-b05-jdk`, `open-8-jdk`: - - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u422-b05-jre`, `open-8-jre`: - - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.24.1_8-jdk`, `open-11-jdk`: - - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.24.1_8-jre`, `open-11-jre`: - - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.12.1_7-jdk`, `open-17-jdk`: - - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.12.1_7-jre`, `open-17-jre`: - - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.4.1_7-jdk`, `open-21-jdk`: - - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.4.1_7-jre`, `open-21-jre`: - - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.2.1_9-jdk`, `open-22-jdk`: - - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.2.1_9-jre`, `open-22-jre`: - - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/72028e92c6d8f289986ae96707bb440bb6de0861/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- `open-23_37-jdk`, `open-23-jdk`: + + - [`open-23_37-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- `open-23_37-jre`, `open-23-jre`: + + - [`open-23_37-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 80dae83815ca..72958ebcebdf 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/Dockerfile) +- [`4.0.1`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/efe509f5e9252e6085b1a34c27359ef51953deed/4.0/ubuntu/Dockerfile) -- [`4.0.0-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/management/Dockerfile) +- [`4.0.1-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/management/Dockerfile) -- [`4.0.0-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/Dockerfile) +- [`4.0.1-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/efe509f5e9252e6085b1a34c27359ef51953deed/4.0/alpine/Dockerfile) -- [`4.0.0-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/management/Dockerfile) +- [`4.0.1-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) @@ -40,11 +40,11 @@ WARNING: - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/fd645d88914a864e702b088ecb4bfecf2bb11156/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/fd645d88914a864e702b088ecb4bfecf2bb11156/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) From 9dd1b2b6d44f626cab86ce6e0a6e28b78e052c94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Sep 2024 13:09:04 -0700 Subject: [PATCH 1551/2686] Run update.sh --- convertigo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertigo/README.md b/convertigo/README.md index 52a139f0b5f7..a5f348a0046b 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.0`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/b2b3387e1d01034c010817e14de30f2ce60febdc/docker/default/Dockerfile) +- [`8.3.1`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/fc2b338e7de86f316c01b00027aed7fc42c54322/docker/default/Dockerfile) # Quick reference (cont.) From 1ba989c30575ee465130d47b27907ffc2236b7cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Sep 2024 14:09:02 -0700 Subject: [PATCH 1552/2686] Run update.sh --- docker/README.md | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6bfcd15e3df0..21c9d625e81a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.3.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/cli/Dockerfile) +- [`27.3.0-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/cli/Dockerfile) -- [`27.3.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.3.0-rc.2-dind-alpine3.20`, `27.3.0-rc.2`, `27-rc`, `rc`, `27.3.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/dind/Dockerfile) +- [`27.3.0-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.0-dind-alpine3.20`, `27.3.0`, `27.3`, `27`, `latest`, `27.3.0-alpine3.20`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/dind/Dockerfile) -- [`27.3.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/dind-rootless/Dockerfile) +- [`27.3.0-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/dind-rootless/Dockerfile) -- [`27.3.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.0-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-1809/Dockerfile) - -- [`27.2.1-cli`, `27.2-cli`, `27-cli`, `cli`, `27.2.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/cli/Dockerfile) - -- [`27.2.1-dind`, `27.2-dind`, `27-dind`, `dind`, `27.2.1-dind-alpine3.20`, `27.2.1`, `27.2`, `27`, `latest`, `27.2.1-alpine3.20`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind/Dockerfile) - -- [`27.2.1-dind-rootless`, `27.2-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/cce8715de7ebca184feae9f3c1fa3f0d5d7c5f05/27/dind-rootless/Dockerfile) - -- [`27.2.1-windowsservercore-ltsc2022`, `27.2-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`27.2.1-windowsservercore-1809`, `27.2-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.0-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.3.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - - [`27.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bd530b134ed9c16199a1c7a9d417676c91adc7ee/27-rc/windows/windowsservercore-1809/Dockerfile) - -- `27.2.1-windowsservercore`, `27.2-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.3.0-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c5f51099b9d89dfd55d60d40b1ecba94da8ad364/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 94547ee0f49f807bec0067df50b337886571103c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Sep 2024 10:09:35 -0700 Subject: [PATCH 1553/2686] Run update.sh --- alt/README.md | 6 +++--- crate/README.md | 2 +- sapmachine/README.md | 24 ++++++++++++------------ 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/alt/README.md b/alt/README.md index bc72ff795b79..8aed61d0431d 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/924b51de1708a3c8b0dd76193a414460ff721c35/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/2b0521341f04c191ddc8ae2c61f87c13ce4c4c83/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/fc69e420b7b8c5b62cd3d8b13562f122ecdcc2d7/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/0094deef5ac8e3d66a7f57dcf4377165adf033cb/x86_64/Dockerfile) -- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/342757f6f3ca8c82bb6a4169ceef071ff3a8a879/x86_64/Dockerfile) +- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/be88d3c5797a8e00da1665691317d17b352502bf/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 6603bfb78fa9..2a1b734cdf5d 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.2`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/7d88cae1f65dfff807363a35adcb470a978e14c8/Dockerfile) +- [`5.8.3`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/a10991056f4119146bb0922a1b95b2092c69c503/Dockerfile) - [`5.7.5`, `5.7`](https://github.com/crate/docker-crate/blob/bb8f6698814be923367c60c2b6a31a172af07418/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index b986070bdd4c..d767cf4b6ec3 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `22`, `22-jdk-ubuntu`, `22.0.2`, `22.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `22-ubuntu-noble`, `22-ubuntu-24.04`, `22.0.2-ubuntu-noble`, `22.0.2-ubuntu-24.04`, `22-jdk-ubuntu-noble`, `22-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `22.0.2-jdk-ubuntu-noble`, `22.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `22-jdk-headless-ubuntu`, `22.0.2-jdk-headless-ubuntu`, `22-jdk-headless-ubuntu-noble`, `22-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `22.0.2-jdk-headless-ubuntu-noble`, `22.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `22-jre-ubuntu`, `22.0.2-jre-ubuntu`, `22-jre-ubuntu-noble`, `22-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `22.0.2-jre-ubuntu-noble`, `22.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `23-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `22-jre-headless-ubuntu`, `22.0.2-jre-headless-ubuntu`, `22-jre-headless-ubuntu-noble`, `22-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `22.0.2-jre-headless-ubuntu-noble`, `22.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `22-ubuntu-jammy`, `22-ubuntu-22.04`, `22.0.2-ubuntu-jammy`, `22.0.2-ubuntu-22.04`, `22-jdk-ubuntu-jammy`, `22-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `22.0.2-jdk-ubuntu-jammy`, `22.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) -- [`22-jdk-headless-ubuntu-jammy`, `22-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `22.0.2-jdk-headless-ubuntu-jammy`, `22.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) -- [`22-jre-ubuntu-jammy`, `22-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `22.0.2-jre-ubuntu-jammy`, `22.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jre/Dockerfile) +- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) -- [`22-jre-headless-ubuntu-jammy`, `22-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `22.0.2-jre-headless-ubuntu-jammy`, `22.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/22_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `22-ubuntu-focal`, `22-ubuntu-20.04`, `22.0.2-ubuntu-focal`, `22.0.2-ubuntu-20.04`, `22-jdk-ubuntu-focal`, `22-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `22.0.2-jdk-ubuntu-focal`, `22.0.2-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) -- [`22-jdk-headless-ubuntu-focal`, `22-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `22.0.2-jdk-headless-ubuntu-focal`, `22.0.2-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) -- [`22-jre-ubuntu-focal`, `22-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `22.0.2-jre-ubuntu-focal`, `22.0.2-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jre/Dockerfile) +- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) -- [`22-jre-headless-ubuntu-focal`, `22-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `22.0.2-jre-headless-ubuntu-focal`, `22.0.2-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/32fcb19238cd9f713502f38a2f2b51cd2bffdba5/dockerfiles/22/ubuntu/20_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) - [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.4`, `21.0.4-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.4-ubuntu-noble`, `21.0.4-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.4-jdk-ubuntu-noble`, `21.0.4-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) From 73e9c16d389514bb69cd34a1fbac1ccef3e78878 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Sep 2024 11:09:08 -0700 Subject: [PATCH 1554/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index cadc67866e79..6e52a01fa08f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-15-jdk-oraclelinux9`, `24-ea-15-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-15-jdk-oracle`, `24-ea-15-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-16-jdk-oraclelinux9`, `24-ea-16-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-16-jdk-oracle`, `24-ea-16-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-15-jdk-oraclelinux8`, `24-ea-15-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-16-jdk-oraclelinux8`, `24-ea-16-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-15-jdk-bookworm`, `24-ea-15-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/bookworm/Dockerfile) +- [`24-ea-16-jdk-bookworm`, `24-ea-16-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/bookworm/Dockerfile) -- [`24-ea-15-jdk-slim-bookworm`, `24-ea-15-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-15-jdk-slim`, `24-ea-15-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-16-jdk-slim-bookworm`, `24-ea-16-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-16-jdk-slim`, `24-ea-16-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-15-jdk-bullseye`, `24-ea-15-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/bullseye/Dockerfile) +- [`24-ea-16-jdk-bullseye`, `24-ea-16-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/bullseye/Dockerfile) -- [`24-ea-15-jdk-slim-bullseye`, `24-ea-15-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-16-jdk-slim-bullseye`, `24-ea-16-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-15-jdk-windowsservercore-ltsc2022`, `24-ea-15-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-16-jdk-windowsservercore-ltsc2022`, `24-ea-16-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-15-jdk-windowsservercore-1809`, `24-ea-15-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-16-jdk-windowsservercore-1809`, `24-ea-16-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-15-jdk-nanoserver-1809`, `24-ea-15-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-16-jdk-nanoserver-1809`, `24-ea-16-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-15-jdk`, `24-ea-15`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-16-jdk`, `24-ea-16`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-15-jdk-windowsservercore`, `24-ea-15-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-16-jdk-windowsservercore`, `24-ea-16-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-15-jdk-nanoserver`, `24-ea-15-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-16-jdk-nanoserver`, `24-ea-16-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/cedd4fc621435a892fc347d0a7d6fb9fca063196/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 1893d974f2da..bfa990168abf 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5622119f2db6e7f825f31efccc7753c85b47cb50/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7-slim-fips/Dockerfile) # Quick reference (cont.) From 27a1ea49187be7cf309e95de51dc49f7dfc7df34 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Sep 2024 13:09:10 -0700 Subject: [PATCH 1555/2686] Run update.sh --- docker/README.md | 16 ++++++------ perl/README.md | 64 ++++++++++++++++++++++++------------------------ 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/docker/README.md b/docker/README.md index 21c9d625e81a..f31c4dae3811 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.0-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.0-cli-alpine3.20`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/cli/Dockerfile) -- [`27.3.0-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.0-dind-alpine3.20`, `27.3.0`, `27.3`, `27`, `latest`, `27.3.0-alpine3.20`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/dind/Dockerfile) +- [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) -- [`27.3.0-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/dind-rootless/Dockerfile) +- [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.0-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.0-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.3.0-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/21b87062452c5525f054e46fb9dc998d0601bfb3/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 63defe7554e3..e75704f37c70 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.3`, `5.41`, `devel`, `5.41.3-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main-bookworm/Dockerfile) +- [`5.41.4`, `5.41`, `devel`, `5.41.4-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main-bookworm/Dockerfile) -- [`5.41.3-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main-bullseye/Dockerfile) +- [`5.41.4-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main-bullseye/Dockerfile) -- [`5.41.3-slim`, `5.41-slim`, `devel-slim`, `5.41.3-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim-bookworm/Dockerfile) +- [`5.41.4-slim`, `5.41-slim`, `devel-slim`, `5.41.4-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim-bookworm/Dockerfile) -- [`5.41.3-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim-bullseye/Dockerfile) +- [`5.41.4-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim-bullseye/Dockerfile) -- [`5.41.3-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.3-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main,threaded-bookworm/Dockerfile) +- [`5.41.4-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.4-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main,threaded-bookworm/Dockerfile) -- [`5.41.3-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-main,threaded-bullseye/Dockerfile) +- [`5.41.4-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main,threaded-bullseye/Dockerfile) -- [`5.41.3-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.3-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim,threaded-bookworm/Dockerfile) +- [`5.41.4-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.4-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim,threaded-bookworm/Dockerfile) -- [`5.41.3-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/fa9f0515f305a323bc34204cda600a745e901356/5.041.003-slim,threaded-bullseye/Dockerfile) +- [`5.41.4-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From 0d82a3259cdbfe161b398b456939d3526c8922a1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Sep 2024 16:09:05 -0700 Subject: [PATCH 1556/2686] Run update.sh --- amazoncorretto/README.md | 110 ++++++++++++++++++++++----------------- 1 file changed, 62 insertions(+), 48 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 8b25ef5c5434..606655e22016 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,115 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u422`, `8u422-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u422-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u422`, `8u422-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u422-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u422-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u422-al2023-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u422-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u422-al2023-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u422-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u422-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u422-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u422-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2/Dockerfile) -- [`8-alpine3.17`, `8u422-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17`, `8u422-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u422-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u422-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u422-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u422-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u422-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u422-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u422-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u422-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u422-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u422-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u422-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u422-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u422-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u422-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u422-alpine3.20-jre`, `8-alpine-jre`, `8u422-alpine-jre`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u422-alpine3.20-jre`, `8-alpine-jre`, `8u422-alpine-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.20/Dockerfile) -- [`11`, `11.0.24`, `11.0.24-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.24-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.24`, `11.0.24-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.24-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.24-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.24-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.24-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.24-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.24-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.24-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.24-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.24-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.24-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.24-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2/Dockerfile) -- [`11-alpine3.17`, `11.0.24-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.17`, `11.0.24-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.24-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.24-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.24-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.24-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.24-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.24-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.24-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.24-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.20/Dockerfile) -- [`17`, `17.0.12`, `17.0.12-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.12-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.12`, `17.0.12-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.12-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.12-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.12-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.12-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.12-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.12-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.12-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.12-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.12-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.12-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.12-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.12-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.12-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2/Dockerfile) -- [`17-alpine3.17`, `17.0.12-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.17`, `17.0.12-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.12-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.12-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.12-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.12-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.12-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.12-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.12-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.12-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.20/Dockerfile) -- [`21`, `21.0.4`, `21.0.4-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.4-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.4`, `21.0.4-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.4-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.4-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.4-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.4-al2023-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.4-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.4-al2023-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.4-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/headful/al2023/Dockerfile) -- [`21-alpine3.17`, `21.0.4-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.17`, `21.0.4-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.4-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.4-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.4-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.4-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.4-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.4-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.4-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.4-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.20/Dockerfile) -- [`22-al2023`, `22.0.2-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/al2023/Dockerfile) +- [`22-al2023`, `22.0.2-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/al2023/Dockerfile) -- [`22-al2023-headless`, `22.0.2-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/headless/al2023/Dockerfile) +- [`22-al2023-headless`, `22.0.2-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/headless/al2023/Dockerfile) -- [`22-al2023-headful`, `22.0.2-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/headful/al2023/Dockerfile) +- [`22-al2023-headful`, `22.0.2-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/headful/al2023/Dockerfile) -- [`22-alpine3.17`, `22.0.2-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.17/Dockerfile) +- [`22-alpine3.17`, `22.0.2-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.17/Dockerfile) -- [`22-alpine3.18`, `22.0.2-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.18/Dockerfile) +- [`22-alpine3.18`, `22.0.2-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.18/Dockerfile) -- [`22-alpine3.19`, `22.0.2-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.19/Dockerfile) +- [`22-alpine3.19`, `22.0.2-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.19/Dockerfile) -- [`22-alpine3.20`, `22.0.2-alpine3.20`, `22-alpine3.20-full`, `22-alpine3.20-jdk`, `22-alpine`, `22.0.2-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/cdcc44b8859544a47ce8c64ed0b3cc051a8c58c8/22/jdk/alpine/3.20/Dockerfile) +- [`22-alpine3.20`, `22.0.2-alpine3.20`, `22-alpine3.20-full`, `22-alpine3.20-jdk`, `22-alpine`, `22.0.2-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.20/Dockerfile) + +- [`23-al2023`, `23.0.0-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/al2023/Dockerfile) + +- [`23-al2023-headless`, `23.0.0-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/headless/al2023/Dockerfile) + +- [`23-al2023-headful`, `23.0.0-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/headful/al2023/Dockerfile) + +- [`23-alpine3.17`, `23.0.0-alpine3.17`, `23-alpine3.17-full`, `23-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.17/Dockerfile) + +- [`23-alpine3.18`, `23.0.0-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.18/Dockerfile) + +- [`23-alpine3.19`, `23.0.0-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.19/Dockerfile) + +- [`23-alpine3.20`, `23.0.0-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.0-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.20/Dockerfile) # Quick reference (cont.) From 86f93f5bfbf77723f81e0fee6d87baa56c98989b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Sep 2024 18:09:09 -0700 Subject: [PATCH 1557/2686] Run update.sh --- almalinux/README.md | 8 ++-- amazonlinux/README.md | 4 +- archlinux/README.md | 6 +-- bash/README.md | 2 +- clearlinux/README.md | 2 +- ghost/README.md | 4 +- hylang/README.md | 102 +++++++++++++++++++++++++----------------- rabbitmq/README.md | 16 +++---- 8 files changed, 81 insertions(+), 63 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 4d4ea1bf4959..15b9f352cfd9 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8.10`, `8.10-20240723`](https://github.com/AlmaLinux/container-images/blob/584b31e78a465a342845694393b2347ad4dfb553/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240723`](https://github.com/AlmaLinux/container-images/blob/584b31e78a465a342845694393b2347ad4dfb553/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.4`, `9.4-20240723`](https://github.com/AlmaLinux/container-images/blob/c7a0d7b57007f9b09b3f9e997df54f89d023bf60/default/amd64/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4-20240923`](https://github.com/AlmaLinux/container-images/blob/b9b6acbb658ca05c3d7ee5b7f8f565f5556f600f/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240723`](https://github.com/AlmaLinux/container-images/blob/c7a0d7b57007f9b09b3f9e997df54f89d023bf60/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/b9b6acbb658ca05c3d7ee5b7f8f565f5556f600f/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index b93fa595f4a0..43b9e2117d0a 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240903.0`](https://github.com/amazonlinux/container-images/blob/e3615dc9e73e50ddb9bf7bcf1fd76807878014cf/Dockerfile) +- [`2023`, `latest`, `2023.5.20240916.0`](https://github.com/amazonlinux/container-images/blob/215cb518a78daaff3c2ff87096374e3ff4965cdb/Dockerfile) -- [`2`, `2.0.20240903.0`](https://github.com/amazonlinux/container-images/blob/2433b42c5ba17a2c73fa604deece91cd73b40d56/Dockerfile) +- [`2`, `2.0.20240916.0`](https://github.com/amazonlinux/container-images/blob/a276974e820cdbd9d3d39b1751da73192ea91647/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index 9ed7c5a56521..681287657b65 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.base) +- [`latest`, `base`, `base-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.base) -- [`base-devel`, `base-devel-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240915.0.262934`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/13312789ac2639c9d02e1ef3df34d3cd7753920f/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 05f305c7e080..2e42684a8a13 100644 --- a/bash/README.md +++ b/bash/README.md @@ -28,7 +28,7 @@ WARNING: - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) -- [`5.2.32`, `5.2`, `5`, `latest`, `5.2.32-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/b4a43db2826bfa7fd10beb8352ac4891d3ded65a/5.2/Dockerfile) +- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/acac9dc9fc2a2c62f83d20e463f213cc0c028197/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index 214e16cde523..8ba5f39f692c 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/f14ed67be2146f13eece4f8187ee5401db46e249/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c7cf331012789f817ed8c3f7fbf6f26c9f0b9876/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index cc4c0183dc75..96a3ab7759e5 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.94.1`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/007b84f76189f8eaa0b4ea57b74b281da6f5578e/5/debian/Dockerfile) +- [`5.94.2`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b86225e695d887e1b00c576df562532eba7dbb9d/5/debian/Dockerfile) -- [`5.94.1-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/007b84f76189f8eaa0b4ea57b74b281da6f5578e/5/alpine/Dockerfile) +- [`5.94.2-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b86225e695d887e1b00c576df562532eba7dbb9d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 466fcd1cae44..3b0427755b4e 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,87 +28,105 @@ WARNING: ## Simple Tags -- [`0.29.0-python3.12-bookworm`, `0.29-python3.12-bookworm`, `0-python3.12-bookworm`, `python3.12-bookworm`, `0.29.0-bookworm`, `0.29-bookworm`, `0-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`0.29.0-python3.12-bullseye`, `0.29-python3.12-bullseye`, `0-python3.12-bullseye`, `python3.12-bullseye`, `0.29.0-bullseye`, `0.29-bullseye`, `0-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`0.29.0-python3.12-alpine3.20`, `0.29-python3.12-alpine3.20`, `0-python3.12-alpine3.20`, `python3.12-alpine3.20`, `0.29.0-alpine3.20`, `0.29-alpine3.20`, `0-alpine3.20`, `alpine3.20`, `0.29.0-python3.12-alpine`, `0.29-python3.12-alpine`, `0-python3.12-alpine`, `python3.12-alpine`, `0.29.0-alpine`, `0.29-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`0.29.0-python3.12-alpine3.19`, `0.29-python3.12-alpine3.19`, `0-python3.12-alpine3.19`, `python3.12-alpine3.19`, `0.29.0-alpine3.19`, `0.29-alpine3.19`, `0-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`0.29.0-python3.12-windowsservercore-ltsc2022`, `0.29-python3.12-windowsservercore-ltsc2022`, `0-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `0.29.0-windowsservercore-ltsc2022`, `0.29-windowsservercore-ltsc2022`, `0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`0.29.0-python3.12-windowsservercore-1809`, `0.29-python3.12-windowsservercore-1809`, `0-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `0.29.0-windowsservercore-1809`, `0.29-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`0.29.0-python3.11-bookworm`, `0.29-python3.11-bookworm`, `0-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`0.29.0-python3.11-bullseye`, `0.29-python3.11-bullseye`, `0-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`0.29.0-python3.11-alpine3.20`, `0.29-python3.11-alpine3.20`, `0-python3.11-alpine3.20`, `python3.11-alpine3.20`, `0.29.0-python3.11-alpine`, `0.29-python3.11-alpine`, `0-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`0.29.0-python3.11-alpine3.19`, `0.29-python3.11-alpine3.19`, `0-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`0.29.0-python3.10-bookworm`, `0.29-python3.10-bookworm`, `0-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`0.29.0-python3.10-bullseye`, `0.29-python3.10-bullseye`, `0-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`0.29.0-python3.10-alpine3.20`, `0.29-python3.10-alpine3.20`, `0-python3.10-alpine3.20`, `python3.10-alpine3.20`, `0.29.0-python3.10-alpine`, `0.29-python3.10-alpine`, `0-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`0.29.0-python3.10-alpine3.19`, `0.29-python3.10-alpine3.19`, `0-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`0.29.0-python3.9-bookworm`, `0.29-python3.9-bookworm`, `0-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`0.29.0-python3.9-bullseye`, `0.29-python3.9-bullseye`, `0-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`0.29.0-python3.9-alpine3.20`, `0.29-python3.9-alpine3.20`, `0-python3.9-alpine3.20`, `python3.9-alpine3.20`, `0.29.0-python3.9-alpine`, `0.29-python3.9-alpine`, `0-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`0.29.0-python3.9-alpine3.19`, `0.29-python3.9-alpine3.19`, `0-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`0.29.0-python3.8-bookworm`, `0.29-python3.8-bookworm`, `0-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`1.0.0-python3.8-bookworm`, `1.0-python3.8-bookworm`, `1-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`0.29.0-python3.8-bullseye`, `0.29-python3.8-bullseye`, `0-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`1.0.0-python3.8-bullseye`, `1.0-python3.8-bullseye`, `1-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`0.29.0-python3.8-alpine3.20`, `0.29-python3.8-alpine3.20`, `0-python3.8-alpine3.20`, `python3.8-alpine3.20`, `0.29.0-python3.8-alpine`, `0.29-python3.8-alpine`, `0-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`1.0.0-python3.8-alpine3.20`, `1.0-python3.8-alpine3.20`, `1-python3.8-alpine3.20`, `python3.8-alpine3.20`, `1.0.0-python3.8-alpine`, `1.0-python3.8-alpine`, `1-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) -- [`0.29.0-python3.8-alpine3.19`, `0.29-python3.8-alpine3.19`, `0-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`1.0.0-python3.8-alpine3.19`, `1.0-python3.8-alpine3.19`, `1-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`0.29.0-pypy3.10-bookworm`, `0.29-pypy3.10-bookworm`, `0-pypy3.10-bookworm`, `pypy3.10-bookworm`, `0.29.0-pypy-bookworm`, `0.29-pypy-bookworm`, `0-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-python3.13-rc-bookworm`, `1.0-python3.13-rc-bookworm`, `1-python3.13-rc-bookworm`, `python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) -- [`0.29.0-pypy3.10-bullseye`, `0.29-pypy3.10-bullseye`, `0-pypy3.10-bullseye`, `pypy3.10-bullseye`, `0.29.0-pypy-bullseye`, `0.29-pypy-bullseye`, `0-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-python3.13-rc-bullseye`, `1.0-python3.13-rc-bullseye`, `1-python3.13-rc-bullseye`, `python3.13-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bullseye) -- [`0.29.0-pypy3.10-windowsservercore-ltsc2022`, `0.29-pypy3.10-windowsservercore-ltsc2022`, `0-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `0.29.0-pypy-windowsservercore-ltsc2022`, `0.29-pypy-windowsservercore-ltsc2022`, `0-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-rc-alpine3.20`, `1.0-python3.13-rc-alpine3.20`, `1-python3.13-rc-alpine3.20`, `python3.13-rc-alpine3.20`, `1.0.0-python3.13-rc-alpine`, `1.0-python3.13-rc-alpine`, `1-python3.13-rc-alpine`, `python3.13-rc-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.20) -- [`0.29.0-pypy3.10-windowsservercore-1809`, `0.29-pypy3.10-windowsservercore-1809`, `0-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `0.29.0-pypy-windowsservercore-1809`, `0.29-pypy-windowsservercore-1809`, `0-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-python3.13-rc-alpine3.19`, `1.0-python3.13-rc-alpine3.19`, `1-python3.13-rc-alpine3.19`, `python3.13-rc-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.19) + +- [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`, `1.0-python3.13-rc-windowsservercore-ltsc2022`, `1-python3.13-rc-windowsservercore-ltsc2022`, `python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) + +- [`1.0.0-python3.13-rc-windowsservercore-1809`, `1.0-python3.13-rc-windowsservercore-1809`, `1-python3.13-rc-windowsservercore-1809`, `python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) + +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags -- `0.29.0-python3.12`, `0.29-python3.12`, `0-python3.12`, `python3.12`, `0.29.0`, `0.29`, `0`, `latest`: +- `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`, `1.0.0`, `1.0`, `1`, `latest`: + + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + +- `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`0.29.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`0.29.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`0.29.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- `0.29.0-python3.11`, `0.29-python3.11`, `0-python3.11`, `python3.11`: +- `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`0.29.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- `0.29.0-python3.10`, `0.29-python3.10`, `0-python3.10`, `python3.10`: +- `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`0.29.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- `0.29.0-python3.9`, `0.29-python3.9`, `0-python3.9`, `python3.9`: +- `1.0.0-python3.8`, `1.0-python3.8`, `1-python3.8`, `python3.8`: - - [`0.29.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- `0.29.0-python3.8`, `0.29-python3.8`, `0-python3.8`, `python3.8`: +- `1.0.0-python3.13-rc`, `1.0-python3.13-rc`, `1-python3.13-rc`, `python3.13-rc`: - - [`0.29.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`1.0.0-python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) + - [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) -- `0.29.0-pypy3.10`, `0.29-pypy3.10`, `0-pypy3.10`, `pypy3.10`, `0.29.0-pypy`, `0.29-pypy`, `0-pypy`, `pypy`: +- `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`0.29.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`0.29.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`0.29.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/d6966ea489cddb0e9c2151acbc9170ea03739911/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 72958ebcebdf..1387661cb194 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.1`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/efe509f5e9252e6085b1a34c27359ef51953deed/4.0/ubuntu/Dockerfile) +- [`4.0.2`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/c632cbc38e0b7d70678ba2cf5bbaba798af27339/4.0/ubuntu/Dockerfile) -- [`4.0.1-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/ubuntu/management/Dockerfile) +- [`4.0.2-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.1-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/efe509f5e9252e6085b1a34c27359ef51953deed/4.0/alpine/Dockerfile) +- [`4.0.2-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c632cbc38e0b7d70678ba2cf5bbaba798af27339/4.0/alpine/Dockerfile) -- [`4.0.1-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/266d9cdc38a670282b731e2a0ed0381c49ba9b96/4.0/alpine/management/Dockerfile) +- [`4.0.2-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) -- [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/ubuntu/management/Dockerfile) +- [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) - [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/alpine/Dockerfile) -- [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/6cc0f66ec13b06c153a7527c033cf1ad59a97ef3/3.13/alpine/management/Dockerfile) +- [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) - [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/ubuntu/Dockerfile) -- [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/ubuntu/management/Dockerfile) +- [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/ubuntu/management/Dockerfile) - [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/alpine/Dockerfile) -- [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c30652127ae871535b7ec8ecda8046948a52ab79/3.12/alpine/management/Dockerfile) +- [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/alpine/management/Dockerfile) # Quick reference (cont.) From 99877c6b12eac534e94160fda020b15367d25ffd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Sep 2024 16:09:09 -0700 Subject: [PATCH 1558/2686] Run update.sh --- api-firewall/README.md | 2 +- odoo/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 86902589bc5e..0ed6d295e567 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.1`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/4af02b9e4413f141078641b690bb114a929f414c/0.8.1/Dockerfile) +- [`0.8.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/b90afa9b60e9df6c596a4d6db4ef726ff132d7ee/0.8.2/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 378dc3ba0738..50d62eea1be9 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240912`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/17.0/Dockerfile) +- [`17.0-20240924`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/17.0/Dockerfile) -- [`16.0-20240912`, `16.0`, `16`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/16.0/Dockerfile) +- [`16.0-20240924`, `16.0`, `16`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/16.0/Dockerfile) -- [`15.0-20240912`, `15.0`, `15`](https://github.com/odoo/docker/blob/36079c9de840d5682f32b7163892dfdc8138db2b/15.0/Dockerfile) +- [`15.0-20240924`, `15.0`, `15`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/15.0/Dockerfile) # Quick reference (cont.) From 62389c920fbcba54a1039e28ecda70a5991d769d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Sep 2024 15:09:16 -0700 Subject: [PATCH 1559/2686] Run update.sh --- php/README.md | 168 +++++++++++++++++--------------------------------- 1 file changed, 56 insertions(+), 112 deletions(-) diff --git a/php/README.md b/php/README.md index 43a72ec8077b..e2c5016e5cb4 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0beta5-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0beta5-bookworm`, `8.4-rc-bookworm`, `8.4.0beta5-cli`, `8.4-rc-cli`, `8.4.0beta5`, `8.4-rc`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC1-bookworm`, `8.4-rc-bookworm`, `8.4.0RC1-cli`, `8.4-rc-cli`, `8.4.0RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0beta5-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0beta5-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0beta5-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0beta5-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0beta5-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0beta5-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0beta5-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0beta5-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0beta5-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0beta5-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0beta5-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0beta5-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0beta5-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0beta5-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0beta5-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0beta5-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0beta5-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0beta5-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0beta5-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0beta5-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0beta5-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0RC1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0beta5-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0RC1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0beta5-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/905c1a01a1f233afce5233665b0916249b492b8e/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0RC1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/zts/Dockerfile) -- [`8.3.12RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.12RC1-bookworm`, `8.3-rc-bookworm`, `8.3.12RC1-cli`, `8.3-rc-cli`, `8.3.12RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.12-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.12-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.12-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.12`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/cli/Dockerfile) -- [`8.3.12RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.12RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.12-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.12-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/apache/Dockerfile) -- [`8.3.12RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.12RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.12-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.12-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/fpm/Dockerfile) -- [`8.3.12RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.12RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.12-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.12-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/zts/Dockerfile) -- [`8.3.12RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.12RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.12-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.12-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/cli/Dockerfile) -- [`8.3.12RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.12-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/apache/Dockerfile) -- [`8.3.12RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.12-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/fpm/Dockerfile) -- [`8.3.12RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.12-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/zts/Dockerfile) -- [`8.3.12RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.12RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.12RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.12RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.12-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.12-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.12-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.12-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.12RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.12RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.12-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.12-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.12RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.12RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.12-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.12-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.12RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.12RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.12-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.12-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.12RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.12-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.12RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/c65f39b945ecae45cb48fcc3b3ec8e33954367c3/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.12-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.11-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.11-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.11-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.11`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/cli/Dockerfile) +- [`8.2.24-cli-bookworm`, `8.2-cli-bookworm`, `8.2.24-bookworm`, `8.2-bookworm`, `8.2.24-cli`, `8.2-cli`, `8.2.24`, `8.2`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/cli/Dockerfile) -- [`8.3.11-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.11-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/apache/Dockerfile) +- [`8.2.24-apache-bookworm`, `8.2-apache-bookworm`, `8.2.24-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/apache/Dockerfile) -- [`8.3.11-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.11-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/fpm/Dockerfile) +- [`8.2.24-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.24-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/fpm/Dockerfile) -- [`8.3.11-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.11-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bookworm/zts/Dockerfile) +- [`8.2.24-zts-bookworm`, `8.2-zts-bookworm`, `8.2.24-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/zts/Dockerfile) -- [`8.3.11-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.11-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/cli/Dockerfile) +- [`8.2.24-cli-bullseye`, `8.2-cli-bullseye`, `8.2.24-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/cli/Dockerfile) -- [`8.3.11-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/apache/Dockerfile) +- [`8.2.24-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/apache/Dockerfile) -- [`8.3.11-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/fpm/Dockerfile) +- [`8.2.24-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/fpm/Dockerfile) -- [`8.3.11-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/bullseye/zts/Dockerfile) +- [`8.2.24-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/zts/Dockerfile) -- [`8.3.11-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.11-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.11-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.11-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/cli/Dockerfile) +- [`8.2.24-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.24-alpine3.20`, `8.2-alpine3.20`, `8.2.24-cli-alpine`, `8.2-cli-alpine`, `8.2.24-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.11-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.11-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/fpm/Dockerfile) +- [`8.2.24-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.24-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.11-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.11-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.20/zts/Dockerfile) +- [`8.2.24-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.24-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/zts/Dockerfile) -- [`8.3.11-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.11-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/cli/Dockerfile) +- [`8.2.24-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.24-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/cli/Dockerfile) -- [`8.3.11-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/fpm/Dockerfile) +- [`8.2.24-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/fpm/Dockerfile) -- [`8.3.11-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/12c155ba57dc4ab67e60fa2a702e38a22f210f35/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.24-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.24RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.24RC1-bookworm`, `8.2-rc-bookworm`, `8.2.24RC1-cli`, `8.2-rc-cli`, `8.2.24RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/cli/Dockerfile) +- [`8.1.30-cli-bookworm`, `8.1-cli-bookworm`, `8.1.30-bookworm`, `8.1-bookworm`, `8.1.30-cli`, `8.1-cli`, `8.1.30`, `8.1`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/cli/Dockerfile) -- [`8.2.24RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.24RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/apache/Dockerfile) +- [`8.1.30-apache-bookworm`, `8.1-apache-bookworm`, `8.1.30-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/apache/Dockerfile) -- [`8.2.24RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.24RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.1.30-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.30-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/fpm/Dockerfile) -- [`8.2.24RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.24RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bookworm/zts/Dockerfile) +- [`8.1.30-zts-bookworm`, `8.1-zts-bookworm`, `8.1.30-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/zts/Dockerfile) -- [`8.2.24RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.24RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/cli/Dockerfile) +- [`8.1.30-cli-bullseye`, `8.1-cli-bullseye`, `8.1.30-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/cli/Dockerfile) -- [`8.2.24RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/apache/Dockerfile) +- [`8.1.30-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/apache/Dockerfile) -- [`8.2.24RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.1.30-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/fpm/Dockerfile) -- [`8.2.24RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/bullseye/zts/Dockerfile) +- [`8.1.30-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/zts/Dockerfile) -- [`8.2.24RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.24RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.24RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.24RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/cli/Dockerfile) +- [`8.1.30-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.30-alpine3.20`, `8.1-alpine3.20`, `8.1.30-cli-alpine`, `8.1-cli-alpine`, `8.1.30-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/cli/Dockerfile) -- [`8.2.24RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.24RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/fpm/Dockerfile) +- [`8.1.30-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.30-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/fpm/Dockerfile) -- [`8.2.24RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.24RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.20/zts/Dockerfile) +- [`8.1.30-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.30-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/zts/Dockerfile) -- [`8.2.24RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.24RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.1.30-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.30-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/cli/Dockerfile) -- [`8.2.24RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.1.30-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/fpm/Dockerfile) -- [`8.2.24RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/97f95ebb364610948f8db0815516f7ac302499f6/8.2-rc/alpine3.19/zts/Dockerfile) - -- [`8.2.23-cli-bookworm`, `8.2-cli-bookworm`, `8.2.23-bookworm`, `8.2-bookworm`, `8.2.23-cli`, `8.2-cli`, `8.2.23`, `8.2`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/cli/Dockerfile) - -- [`8.2.23-apache-bookworm`, `8.2-apache-bookworm`, `8.2.23-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/apache/Dockerfile) - -- [`8.2.23-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.23-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.23-zts-bookworm`, `8.2-zts-bookworm`, `8.2.23-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bookworm/zts/Dockerfile) - -- [`8.2.23-cli-bullseye`, `8.2-cli-bullseye`, `8.2.23-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/cli/Dockerfile) - -- [`8.2.23-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/apache/Dockerfile) - -- [`8.2.23-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.23-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/bullseye/zts/Dockerfile) - -- [`8.2.23-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.23-alpine3.20`, `8.2-alpine3.20`, `8.2.23-cli-alpine`, `8.2-cli-alpine`, `8.2.23-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.23-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.23-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.23-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.23-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.20/zts/Dockerfile) - -- [`8.2.23-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.23-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/cli/Dockerfile) - -- [`8.2.23-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/fpm/Dockerfile) - -- [`8.2.23-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/95de622eb3e96f5991e3c345553e4ca0a1e56ed9/8.2/alpine3.19/zts/Dockerfile) - -- [`8.1.29-cli-bookworm`, `8.1-cli-bookworm`, `8.1.29-bookworm`, `8.1-bookworm`, `8.1.29-cli`, `8.1-cli`, `8.1.29`, `8.1`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/cli/Dockerfile) - -- [`8.1.29-apache-bookworm`, `8.1-apache-bookworm`, `8.1.29-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/apache/Dockerfile) - -- [`8.1.29-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.29-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/fpm/Dockerfile) - -- [`8.1.29-zts-bookworm`, `8.1-zts-bookworm`, `8.1.29-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/zts/Dockerfile) - -- [`8.1.29-cli-bullseye`, `8.1-cli-bullseye`, `8.1.29-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/cli/Dockerfile) - -- [`8.1.29-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/apache/Dockerfile) - -- [`8.1.29-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/fpm/Dockerfile) - -- [`8.1.29-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bullseye/zts/Dockerfile) - -- [`8.1.29-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.29-alpine3.20`, `8.1-alpine3.20`, `8.1.29-cli-alpine`, `8.1-cli-alpine`, `8.1.29-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/cli/Dockerfile) - -- [`8.1.29-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.29-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/fpm/Dockerfile) - -- [`8.1.29-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.29-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.20/zts/Dockerfile) - -- [`8.1.29-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.29-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/cli/Dockerfile) - -- [`8.1.29-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/fpm/Dockerfile) - -- [`8.1.29-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.30-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) From 00d76f50f199a9f42ef8b5a6cd19222d2be7993a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Sep 2024 16:09:08 -0700 Subject: [PATCH 1560/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- julia/README.md | 22 ++++++++--------- kibana/README.md | 2 +- logstash/README.md | 2 +- matomo/README.md | 6 ++--- nats/README.md | 42 +++++++++----------------------- oraclelinux/README.md | 18 +++++++------- solr/README.md | 4 +-- swift/README.md | 54 ++++++++++------------------------------- 10 files changed, 53 insertions(+), 101 deletions(-) diff --git a/bash/README.md b/bash/README.md index 2e42684a8a13..edc0438ba176 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240911`, `devel`, `devel-20240911-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/ca69cb1d9e08ef43b6609d21e873be42d948cead/devel/Dockerfile) +- [`devel-20240920`, `devel`, `devel-20240920-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f1d37b52aca817fbb37e73e6034ecebc3b4be17/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index eee88088394a..9499fa810afa 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/elasticsearch/Dockerfile) +- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/elasticsearch/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/elasticsearch/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 2a98d044a7c4..b6b531549aee 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`1.11.0-rc3-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-rc4-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bookworm/Dockerfile) -- [`1.11.0-rc3-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-rc4-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bullseye/Dockerfile) -- [`1.11.0-rc3-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-rc4-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-rc3-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-rc4-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) - [`1.10.5-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) @@ -58,16 +58,16 @@ WARNING: ## Shared Tags -- `1.11.0-rc3`, `1.11-rc`, `rc`: +- `1.11.0-rc4`, `1.11-rc`, `rc`: - - [`1.11.0-rc3-bookworm`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc4-bookworm`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bookworm/Dockerfile) + - [`1.11.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-rc3-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: +- `1.11.0-rc4-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.11.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3171d95ff7ff459684cadc387a57c1c06eae506/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-rc4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) - `1.10.5`, `1.10`, `1`, `latest`: diff --git a/kibana/README.md b/kibana/README.md index a7d245c62403..866a3fee75ba 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/kibana/Dockerfile) +- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/kibana/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 10a7357053b5..7a5902564fe5 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.1`](https://github.com/elastic/dockerfiles/blob/e9516879864a587baada781c31012c0430fcc1bf/logstash/Dockerfile) +- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/logstash/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/logstash/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index 68c822e62e24..4600ea554c16 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.1-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.1`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/apache/Dockerfile) +- [`5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/apache/Dockerfile) -- [`5.1.1-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/fpm/Dockerfile) +- [`5.1.2-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/fpm/Dockerfile) -- [`5.1.1-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/fb768c9de0350879ec7dd644c799664bfa0e171e/fpm-alpine/Dockerfile) +- [`5.1.2-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 326af444bd82..4053ce37d963 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,48 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.20-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.20-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/alpine3.20/Dockerfile) +- [`2.10.21-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.21-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/alpine3.20/Dockerfile) -- [`2.10.20-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.20-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/scratch/Dockerfile) +- [`2.10.21-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.21-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/scratch/Dockerfile) -- [`2.10.20-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.21-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.20-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) - -- [`2.9.25-alpine3.18`, `2.9-alpine3.18`, `2.9.25-alpine`, `2.9-alpine`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/alpine3.18/Dockerfile) - -- [`2.9.25-scratch`, `2.9-scratch`, `2.9.25-linux`, `2.9-linux`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/scratch/Dockerfile) - -- [`2.9.25-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/windowsservercore-1809/Dockerfile) - -- [`2.9.25-nanoserver-1809`, `2.9-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/nanoserver-1809/Dockerfile) +- [`2.10.21-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.20`, `2.10`, `2`, `latest`: - - - [`2.10.20-scratch`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/scratch/Dockerfile) - - [`2.10.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) - -- `2.10.20-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - - [`2.10.20-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/windowsservercore-1809/Dockerfile) - -- `2.10.20-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - - [`2.10.20-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.10.x/nanoserver-1809/Dockerfile) - -- `2.9.25`, `2.9`: +- `2.10.21`, `2.10`, `2`, `latest`: - - [`2.9.25-scratch`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/scratch/Dockerfile) + - [`2.10.21-scratch`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/scratch/Dockerfile) + - [`2.10.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) -- `2.9.25-windowsservercore`, `2.9-windowsservercore`: +- `2.10.21-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/windowsservercore-1809/Dockerfile) + - [`2.10.21-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/windowsservercore-1809/Dockerfile) -- `2.9.25-nanoserver`, `2.9-nanoserver`: +- `2.10.21-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.9.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/2b45efd14c3189d15fd9577a25933596f4b9f51e/2.9.x/nanoserver-1809/Dockerfile) + - [`2.10.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index bfa990168abf..954218f52faf 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6facd30e53cb2967bee862e8427b6bd6a4fba612/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index bb381d1e184e..3fe4756f3391 100644 --- a/solr/README.md +++ b/solr/README.md @@ -32,9 +32,9 @@ WARNING: - [`9.6.1-slim`, `9.6-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) -- [`8.11.3`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11/Dockerfile) +- [`8.11.4`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11/Dockerfile) -- [`8.11.3-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/7156fa15807945939cd2a5525bbb63219da07b1e/8.11-slim/Dockerfile) +- [`8.11.4-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11-slim/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index e06555d57cf9..d0d927f43e94 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0`, `6.0`, `6.0.0-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/24.04/Dockerfile) +- [`6.0.1`, `6.0`, `6.0.1-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/24.04/Dockerfile) -- [`6.0.0-slim`, `6.0-slim`, `6.0.0-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/24.04/slim/Dockerfile) +- [`6.0.1-slim`, `6.0-slim`, `6.0.1-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/24.04/slim/Dockerfile) -- [`6.0.0-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/22.04/Dockerfile) +- [`6.0.1-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/22.04/Dockerfile) -- [`6.0.0-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/22.04/slim/Dockerfile) +- [`6.0.1-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/22.04/slim/Dockerfile) -- [`6.0.0-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/20.04/slim/Dockerfile) +- [`6.0.1-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/20.04/slim/Dockerfile) -- [`6.0.0-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/ubuntu/20.04/Dockerfile) +- [`6.0.1-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/20.04/Dockerfile) -- [`6.0.0-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/debian/12/Dockerfile) +- [`6.0.1-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/debian/12/Dockerfile) -- [`6.0.0-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/fedora/39/Dockerfile) +- [`6.0.1-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/fedora/39/Dockerfile) -- [`6.0.0-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/amazonlinux/2/Dockerfile) +- [`6.0.1-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/amazonlinux/2/Dockerfile) -- [`6.0.0-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/amazonlinux/2/slim/Dockerfile) +- [`6.0.1-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/amazonlinux/2/slim/Dockerfile) -- [`6.0.0-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/rhel-ubi/9/Dockerfile) +- [`6.0.1-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/rhel-ubi/9/Dockerfile) -- [`6.0.0-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/rhel-ubi/9/slim/Dockerfile) +- [`6.0.1-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/rhel-ubi/9/slim/Dockerfile) -- [`6.0.0-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/cd8fc32f82bf1c96173fd7a0b018e94fbcbbe74b/6.0/windows/LTSC2022/Dockerfile) +- [`6.0.1-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/windows/LTSC2022/Dockerfile) - [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) @@ -108,34 +108,6 @@ WARNING: - [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) -- [`5.7.3`, `5.7`, `5.7.3-jammy`, `5.7-jammy`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/Dockerfile) - -- [`5.7.3-slim`, `5.7-slim`, `5.7.3-jammy-slim`, `5.7-jammy-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/22.04/slim/Dockerfile) - -- [`5.7.3-focal-slim`, `5.7-focal-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/slim/Dockerfile) - -- [`5.7.3-focal`, `5.7-focal`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/ubuntu/20.04/Dockerfile) - -- [`5.7.3-amazonlinux2`, `5.7-amazonlinux2`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/Dockerfile) - -- [`5.7.3-amazonlinux2-slim`, `5.7-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f53cb8e9f11507814412fb4e9c6f0fce1f4b7552/5.7/amazonlinux/2/slim/Dockerfile) - -- [`5.6.3-focal-slim`, `5.6-focal-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/slim/Dockerfile) - -- [`5.6.3-focal`, `5.6-focal`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/ubuntu/20.04/Dockerfile) - -- [`5.6.3-amazonlinux2`, `5.6-amazonlinux2`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/Dockerfile) - -- [`5.6.3-amazonlinux2-slim`, `5.6-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1188cc86d15f9e98d90db9f98de3598d5d5f7bb2/5.6/amazonlinux/2/slim/Dockerfile) - -- [`5.5.3-focal-slim`, `5.5-focal-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/slim/Dockerfile) - -- [`5.5.3-focal`, `5.5-focal`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/ubuntu/20.04/Dockerfile) - -- [`5.5.3-amazonlinux2`, `5.5-amazonlinux2`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/Dockerfile) - -- [`5.5.3-amazonlinux2-slim`, `5.5-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/9394b31e064cf0d80eaab08b692a2886c7aea8fe/5.5/amazonlinux/2/slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 1bfcad58e75fea89a86b97f7a7a46830efdc0763 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Sep 2024 17:09:06 -0700 Subject: [PATCH 1561/2686] Run update.sh --- cirros/README.md | 2 +- postgres/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cirros/README.md b/cirros/README.md index 8062a1ecbfc1..d76fa882bfef 100644 --- a/cirros/README.md +++ b/cirros/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.6.2`, `0.6`, `0`, `latest`](https://github.com/tianon/docker-brew-cirros/blob/e8833253f108046f977fbcecd7f02170bd20d357/arches/amd64/Dockerfile) +- [`0.6.3`, `0.6`, `0`, `latest`](https://github.com/tianon/docker-brew-cirros/blob/1821a0ca9eaf82280a2e953df56e88ab50178628/arches/amd64/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 702eae23fe80..fb6f3fbfe67b 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17rc1`, `17rc1-bookworm`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/bookworm/Dockerfile) +- [`17.0`, `17`, `latest`, `17.0-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/bookworm/Dockerfile) -- [`17rc1-bullseye`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/bullseye/Dockerfile) +- [`17.0-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/bullseye/Dockerfile) -- [`17rc1-alpine3.20`, `17rc1-alpine`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/alpine3.20/Dockerfile) +- [`17.0-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.0-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/alpine3.20/Dockerfile) -- [`17rc1-alpine3.19`](https://github.com/docker-library/postgres/blob/eaa1c35769621a6bb1e499073a5812ba478c7688/17/alpine3.19/Dockerfile) +- [`17.0-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/alpine3.19/Dockerfile) -- [`16.4`, `16`, `latest`, `16.4-bookworm`, `16-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/bookworm/Dockerfile) +- [`16.4`, `16`, `16.4-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/c9906f922daaacdfc425b3b918e7644a8722290d/16/bookworm/Dockerfile) -- [`16.4-bullseye`, `16-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/bullseye/Dockerfile) +- [`16.4-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/c9906f922daaacdfc425b3b918e7644a8722290d/16/bullseye/Dockerfile) -- [`16.4-alpine3.20`, `16-alpine3.20`, `alpine3.20`, `16.4-alpine`, `16-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.20/Dockerfile) +- [`16.4-alpine3.20`, `16-alpine3.20`, `16.4-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.20/Dockerfile) -- [`16.4-alpine3.19`, `16-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.19/Dockerfile) +- [`16.4-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.19/Dockerfile) - [`15.8`, `15`, `15.8-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/bookworm/Dockerfile) From 21a7e1f0732953336665eeb98e797f81ababf4ac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Sep 2024 18:09:03 -0700 Subject: [PATCH 1562/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index 34cb442f0970..e577f06e2ce3 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240904`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20240926`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240904-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20240926-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240904`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20240926`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240904-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20240926-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/experimental/Dockerfile) +- [`experimental`, `experimental-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/experimental/Dockerfile) -- [`oldstable`, `oldstable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/rc-buggy/Dockerfile) -- [`sid`, `sid-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/sid/Dockerfile) +- [`sid`, `sid-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/sid/Dockerfile) -- [`sid-slim`, `sid-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/sid/slim/Dockerfile) -- [`stable`, `stable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/Dockerfile) +- [`stable`, `stable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/slim/Dockerfile) -- [`testing`, `testing-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/Dockerfile) +- [`testing`, `testing-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/Dockerfile) +- [`trixie`, `trixie-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240904`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/unstable/Dockerfile) +- [`unstable`, `unstable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240904-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ddce62e05a714e4a4d16a160505e7888f14e8a22/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/unstable/slim/Dockerfile) # Quick reference (cont.) From 18bfc92459e74b6d6498800f04c699f6c76eb2d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Sep 2024 11:09:10 -0700 Subject: [PATCH 1563/2686] Run update.sh --- haskell/README.md | 8 ++--- maven/README.md | 92 ++++++++++++++++++++++++++++------------------- 2 files changed, 59 insertions(+), 41 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index ff0b60d844cc..0e64c955af21 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/65b8848bc9e63d54f12ecf3f31d04621d62d761c/9.10/bullseye/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.10/bullseye/Dockerfile) -- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/65b8848bc9e63d54f12ecf3f31d04621d62d761c/9.10/slim-bullseye/Dockerfile) +- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.10/slim-bullseye/Dockerfile) -- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/45be610ef8bc3e4f844ff2fff1a66e6809d26dbf/9.6/bullseye/Dockerfile) +- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.6/bullseye/Dockerfile) -- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/45be610ef8bc3e4f844ff2fff1a66e6809d26dbf/9.6/slim-bullseye/Dockerfile) +- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 8abd3dca9f03..766abae8f36c 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,75 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.9-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11/Dockerfile) +- [`3.9.9-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11/Dockerfile) -- [`3.9.9-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17/Dockerfile) +- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17/Dockerfile) -- [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-focal/Dockerfile) -- [`3.9.9-eclipse-temurin-21`, `3.9.9`, `3.9.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21/Dockerfile) +- [`3.9.9-eclipse-temurin-21`, `3.9.9`, `3.9.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21/Dockerfile) -- [`3.9.9-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-21-jammy/Dockerfile) +- [`3.9.9-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.9-eclipse-temurin-22`, `3.9-eclipse-temurin-22`, `3-eclipse-temurin-22`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22/Dockerfile) +- [`3.9.9-eclipse-temurin-23`, `3.9-eclipse-temurin-23`, `3-eclipse-temurin-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23/Dockerfile) -- [`3.9.9-eclipse-temurin-22-alpine`, `3.9-eclipse-temurin-22-alpine`, `3-eclipse-temurin-22-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-23-alpine`, `3.9-eclipse-temurin-23-alpine`, `3-eclipse-temurin-23-alpine`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-22-jammy`, `3.9-eclipse-temurin-22-jammy`, `3-eclipse-temurin-22-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-22-jammy/Dockerfile) +- [`3.9.9-eclipse-temurin-23-noble`, `3.9-eclipse-temurin-23-noble`, `3-eclipse-temurin-23-noble`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23-noble/Dockerfile) -- [`3.9.9-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8/Dockerfile) +- [`3.9.9-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8/Dockerfile) -- [`3.9.9-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8-focal/Dockerfile) -- [`3.9.9-ibmjava-8`, `3.9.9-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibmjava-8/Dockerfile) +- [`3.9.9-ibmjava-8`, `3.9.9-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibmjava-8/Dockerfile) -- [`3.9.9-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-11-focal/Dockerfile) +- [`3.9.9-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-11-focal/Dockerfile) -- [`3.9.9-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-17-focal/Dockerfile) +- [`3.9.9-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-17-focal/Dockerfile) -- [`3.9.9-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/ibm-semeru-21-jammy/Dockerfile) +- [`3.9.9-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.9-amazoncorretto-11`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-11`, `3.9-amazoncorretto`, `3-amazoncorretto-11`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11/Dockerfile) +- [`3.9.9-ibm-semeru-23-jammy`, `3.9-ibm-semeru-23-jammy`, `3-ibm-semeru-23-jammy`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/ibm-semeru-23-jammy/Dockerfile) -- [`3.9.9-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11/Dockerfile) -- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-11-debian/Dockerfile) +- [`3.9.9-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17/Dockerfile) +- [`3.9.9-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11-debian/Dockerfile) -- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-17-debian/Dockerfile) +- [`3.9.9-amazoncorretto-17`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17/Dockerfile) -- [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21/Dockerfile) +- [`3.9.9-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-21-debian/Dockerfile) +- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17-debian/Dockerfile) -- [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8/Dockerfile) +- [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21/Dockerfile) -- [`3.9.9-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.9-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/amazoncorretto-8-debian/Dockerfile) +- [`3.9.9-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-11/Dockerfile) +- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21-debian/Dockerfile) -- [`3.9.9-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-17/Dockerfile) +- [`3.9.9-amazoncorretto-23`, `3.9-amazoncorretto-23`, `3-amazoncorretto-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23/Dockerfile) -- [`3.9.9-sapmachine-21`, `3.9.9-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-21/Dockerfile) +- [`3.9.9-amazoncorretto-23-al2023`, `3.9-amazoncorretto-23-al2023`, `3-amazoncorretto-23-al2023`](https://github.com/carlossg/docker-maven/blob/1a9e1b5643b9d895484f8cd841e01262a174f14b/amazoncorretto-23-al2023/Dockerfile) -- [`3.9.9-sapmachine-22`, `3.9-sapmachine-22`, `3-sapmachine-22`](https://github.com/carlossg/docker-maven/blob/49e8a5ef575ba09b1d9096f6292ef480e07124d6/sapmachine-22/Dockerfile) +- [`3.9.9-amazoncorretto-23-alpine`, `3.9-amazoncorretto-23-alpine`, `3-amazoncorretto-23-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-23-alpine/Dockerfile) + +- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23-debian/Dockerfile) + +- [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8/Dockerfile) + +- [`3.9.9-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8-al2023/Dockerfile) + +- [`3.9.9-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-8-alpine/Dockerfile) + +- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8-debian/Dockerfile) + +- [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-11/Dockerfile) + +- [`3.9.9-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-17/Dockerfile) + +- [`3.9.9-sapmachine-21`, `3.9.9-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-21/Dockerfile) + +- [`3.9.9-sapmachine-23`, `3.9-sapmachine-23`, `3-sapmachine-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/sapmachine-23/Dockerfile) # Quick reference (cont.) @@ -100,7 +118,7 @@ WARNING: [https://github.com/carlossg/docker-maven/issues](https://github.com/carlossg/docker-maven/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/maven/), [`arm32v7`](https://hub.docker.com/r/arm32v7/maven/), [`arm64v8`](https://hub.docker.com/r/arm64v8/maven/), [`ppc64le`](https://hub.docker.com/r/ppc64le/maven/), [`s390x`](https://hub.docker.com/r/s390x/maven/) + [`amd64`](https://hub.docker.com/r/amd64/maven/), [`arm32v7`](https://hub.docker.com/r/arm32v7/maven/), [`arm64v8`](https://hub.docker.com/r/arm64v8/maven/), [`ppc64le`](https://hub.docker.com/r/ppc64le/maven/), [`riscv64`](https://hub.docker.com/r/riscv64/maven/), [`s390x`](https://hub.docker.com/r/s390x/maven/) - **Published image artifact details**: [repo-info repo's `repos/maven/` directory](https://github.com/docker-library/repo-info/blob/master/repos/maven) ([history](https://github.com/docker-library/repo-info/commits/master/repos/maven)) @@ -190,7 +208,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `maven:-alpine` From bb2429cba3b5a788647ad3c84d6c183d7e1afdd9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Sep 2024 18:09:11 -0700 Subject: [PATCH 1564/2686] Run update.sh --- cassandra/README.md | 4 ++-- ghost/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index bddb2ba239c4..048eb6258999 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,9 +26,9 @@ WARNING: - [`5.0.0`, `5.0`, `5`, `latest`, `5.0.0-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/cb4f6acadef77048615282871fd1480aee75f193/5.0/Dockerfile) -- [`4.1.6`, `4.1`, `4`, `4.1.6-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/72bda687322eef86992681e21ce54bd2351c2573/4.1/Dockerfile) +- [`4.1.7`, `4.1`, `4`, `4.1.7-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/ad1d8a96d90bd17a5be305628aac3dafa9a11f5c/4.1/Dockerfile) -- [`4.0.13`, `4.0`, `4.0.13-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b51ed0210fc94d22dce73d8f07d1af1a3416d56a/4.0/Dockerfile) +- [`4.0.14`, `4.0`, `4.0.14-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/ef383f1d828a1d167b64d2575277f05654c5d903/4.0/Dockerfile) - [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 96a3ab7759e5..632eba4084e7 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.94.2`, `5.94`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b86225e695d887e1b00c576df562532eba7dbb9d/5/debian/Dockerfile) +- [`5.95.0`, `5.95`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f574787d1c2f2ccbd3336c830c5d6d08126f7aac/5/debian/Dockerfile) -- [`5.94.2-alpine`, `5.94-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b86225e695d887e1b00c576df562532eba7dbb9d/5/alpine/Dockerfile) +- [`5.95.0-alpine`, `5.95-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f574787d1c2f2ccbd3336c830c5d6d08126f7aac/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 6e52a01fa08f..38e4f1947efe 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-16-jdk-oraclelinux9`, `24-ea-16-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-16-jdk-oracle`, `24-ea-16-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-17-jdk-oraclelinux9`, `24-ea-17-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-17-jdk-oracle`, `24-ea-17-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-16-jdk-oraclelinux8`, `24-ea-16-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-17-jdk-oraclelinux8`, `24-ea-17-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-16-jdk-bookworm`, `24-ea-16-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/bookworm/Dockerfile) +- [`24-ea-17-jdk-bookworm`, `24-ea-17-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/bookworm/Dockerfile) -- [`24-ea-16-jdk-slim-bookworm`, `24-ea-16-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-16-jdk-slim`, `24-ea-16-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-17-jdk-slim-bookworm`, `24-ea-17-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-17-jdk-slim`, `24-ea-17-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-16-jdk-bullseye`, `24-ea-16-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/bullseye/Dockerfile) +- [`24-ea-17-jdk-bullseye`, `24-ea-17-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/bullseye/Dockerfile) -- [`24-ea-16-jdk-slim-bullseye`, `24-ea-16-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-17-jdk-slim-bullseye`, `24-ea-17-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-16-jdk-windowsservercore-ltsc2022`, `24-ea-16-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-17-jdk-windowsservercore-ltsc2022`, `24-ea-17-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-16-jdk-windowsservercore-1809`, `24-ea-16-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-17-jdk-windowsservercore-1809`, `24-ea-17-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-16-jdk-nanoserver-1809`, `24-ea-16-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-17-jdk-nanoserver-1809`, `24-ea-17-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-16-jdk`, `24-ea-16`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-17-jdk`, `24-ea-17`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-16-jdk-windowsservercore`, `24-ea-16-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-17-jdk-windowsservercore`, `24-ea-17-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-16-jdk-nanoserver`, `24-ea-16-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-17-jdk-nanoserver`, `24-ea-17-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/31aabd6e46aaed8d09c7d817dab58544f72b1de7/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 7fa9b4865de8607e0d56b09cbe6afb803a2fc784 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Sep 2024 14:23:15 -0700 Subject: [PATCH 1565/2686] Run update.sh --- gradle/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index a1206effd3d4..130efb95318f 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.1-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.1-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk8/Dockerfile) +- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk8/Dockerfile) -- [`8.10.1-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk8-focal/Dockerfile) +- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk8-focal/Dockerfile) -- [`8.10.1-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.1-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11/Dockerfile) +- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11/Dockerfile) -- [`8.10.1-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11-focal/Dockerfile) +- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11-focal/Dockerfile) -- [`8.10.1-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk11-alpine/Dockerfile) +- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11-alpine/Dockerfile) -- [`8.10.1-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.1-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17/Dockerfile) +- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17/Dockerfile) -- [`8.10.1-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.1-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.1-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-focal/Dockerfile) +- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-focal/Dockerfile) -- [`8.10.1-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.1-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-alpine/Dockerfile) +- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-alpine/Dockerfile) -- [`8.10.1-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.1-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.1-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.1-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.1-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.1-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk17-graal/Dockerfile) +- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-graal/Dockerfile) -- [`8.10.1-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.1-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.1-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.1`, `8.10`, `8`, `8.10.1-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.1-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21/Dockerfile) +- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21/Dockerfile) -- [`8.10.1-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.1-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21-alpine/Dockerfile) +- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21-alpine/Dockerfile) -- [`8.10.1-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.1-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk21-graal/Dockerfile) +- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21-graal/Dockerfile) -- [`8.10.1-jdk22`, `8.10-jdk22`, `8-jdk22`, `jdk22`, `8.10.1-jdk22-jammy`, `8.10-jdk22-jammy`, `8-jdk22-jammy`, `jdk22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22/Dockerfile) +- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23/Dockerfile) -- [`8.10.1-jdk22-alpine`, `8.10-jdk22-alpine`, `8-jdk22-alpine`, `jdk22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22-alpine/Dockerfile) +- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23-alpine/Dockerfile) -- [`8.10.1-jdk22-graal`, `8.10-jdk22-graal`, `8-jdk22-graal`, `jdk22-graal`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk22-graal/Dockerfile) +- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23-graal/Dockerfile) -- [`8.10.1-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.1-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.1-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.1-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current/Dockerfile) +- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.2-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current/Dockerfile) -- [`8.10.1-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.1-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current-alpine/Dockerfile) +- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current-alpine/Dockerfile) -- [`8.10.1-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.1-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.1-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.1-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3be854ee06c5672709385c21577febb7d642e06d/jdk-lts-and-current-graal/Dockerfile) +- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.2-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From 74193913432141bc6e50a27aca2ae761537069c7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Sep 2024 15:38:08 -0700 Subject: [PATCH 1566/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 681287657b65..4f0ea79e1065 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.base) +- [`latest`, `base`, `base-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.base) -- [`base-devel`, `base-devel-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240922.0.264758`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/9a0955646d23fb74b5dd3e60a2340fa9a1c80024/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.multilib-devel) # Quick reference (cont.) From ead5d535d53a154745737cfaad25051a5beaff46 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Sep 2024 17:29:14 -0700 Subject: [PATCH 1567/2686] Run update.sh --- clearlinux/README.md | 2 +- groovy/README.md | 14 ++--- mongo/README.md | 128 +++++++++++++++++-------------------------- sonarqube/README.md | 20 +++---- 4 files changed, 69 insertions(+), 95 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 8ba5f39f692c..53a5f8b7af9f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c7cf331012789f817ed8c3f7fbf6f26c9f0b9876/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/36f7744256f01cfa1b0a90fb6999d3f7507af979/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index 99bc6cd04545..bfddd432ca9d 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.22-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.22-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk8/Dockerfile) +- [`4.0.23-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.23-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk8/Dockerfile) -- [`4.0.22-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.22-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11/Dockerfile) +- [`4.0.23-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.23-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk11/Dockerfile) -- [`4.0.22-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk11-alpine/Dockerfile) +- [`4.0.23-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk11-alpine/Dockerfile) -- [`4.0.22-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.22-jdk`, `4.0-jdk`, `4.0.22`, `4.0`, `4`, `jdk`, `latest`, `4.0.22-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.22-jdk-jammy`, `4.0-jdk-jammy`, `4.0.22-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17/Dockerfile) +- [`4.0.23-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.23-jdk`, `4.0-jdk`, `4.0.23`, `4.0`, `4`, `jdk`, `latest`, `4.0.23-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.23-jdk-jammy`, `4.0-jdk-jammy`, `4.0.23-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk17/Dockerfile) -- [`4.0.22-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.22-jdk-alpine`, `4.0-jdk-alpine`, `4.0.22-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk17-alpine/Dockerfile) +- [`4.0.23-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.23-jdk-alpine`, `4.0-jdk-alpine`, `4.0.23-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk17-alpine/Dockerfile) -- [`4.0.22-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.22-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21/Dockerfile) +- [`4.0.23-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.23-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk21/Dockerfile) -- [`4.0.22-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/66d9d804b8533fd9416e70e4fe8402d545d592de/jdk21-alpine/Dockerfile) +- [`4.0.23-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index fbbb19ce0bc6..0e64d7154c44 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`8.0.1-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/Dockerfile) + +- [`8.0.1-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.1-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`8.0.1-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.1-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.0-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/Dockerfile) - [`8.0.0-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -48,47 +58,43 @@ WARNING: - [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.18-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/Dockerfile) - -- [`6.0.18-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.18-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/Dockerfile) -- [`6.0.18-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.18-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.18-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.18-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.18-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.18-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.17-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) +- [`6.0.18-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.17-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.29-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/Dockerfile) -- [`6.0.17-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.29-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.17-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.29-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.17-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.29-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.29-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/Dockerfile) +- [`5.0.29-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.29-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.29-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.29-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.29-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-1809/Dockerfile) +## Shared Tags -- [`5.0.28-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) +- `8.0.1-rc0`, `8.0-rc`: -- [`5.0.28-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.1-rc0-noble`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/Dockerfile) + - [`8.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.28-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) +- `8.0.1-rc0-windowsservercore`, `8.0-rc-windowsservercore`: -- [`5.0.28-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`5.0.28-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-1809/Dockerfile) +- `8.0.1-rc0-nanoserver`, `8.0-rc-nanoserver`: -## Shared Tags + - [`8.0.1-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.1-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-1809/Dockerfile) - `8.0.0`, `8.0`, `8`, `latest`: @@ -122,69 +128,37 @@ WARNING: - [`7.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.18-rc0`, `6.0-rc`: - - - [`6.0.18-rc0-jammy`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/Dockerfile) - - [`6.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.18-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - - [`6.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.18-rc0-nanoserver`, `6.0-rc-nanoserver`: - - - [`6.0.18-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.18-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/24cbeb6dc9a04be2e33e5386f8e5722f1ed40949/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- `6.0.17`, `6.0`, `6`: - - - [`6.0.17-jammy`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/Dockerfile) - - [`6.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) - -- `6.0.17-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - - [`6.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/windowsservercore-1809/Dockerfile) - -- `6.0.17-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - - [`6.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/486e258dd6eed86df77cfab9e81aa8ed2a9f5fa6/6.0/windows/nanoserver-1809/Dockerfile) - -- `5.0.29-rc0`, `5.0-rc`: +- `6.0.18`, `6.0`, `6`: - - [`5.0.29-rc0-focal`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/Dockerfile) - - [`5.0.29-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.29-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.18-jammy`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/Dockerfile) + - [`6.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.29-rc0-windowsservercore`, `5.0-rc-windowsservercore`: +- `6.0.18-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`5.0.29-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.29-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.29-rc0-nanoserver`, `5.0-rc-nanoserver`: +- `6.0.18-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`5.0.29-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.29-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/4705a42c90e0bd32c595aa932388f31d3d472091/5.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.28`, `5.0`, `5`: +- `5.0.29`, `5.0`, `5`: - - [`5.0.28-focal`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/Dockerfile) - - [`5.0.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.29-focal`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/Dockerfile) + - [`5.0.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.28-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: +- `5.0.29-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.28-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.28-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.28-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: +- `5.0.29-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.28-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.28-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e9de6959149a474ccd66ae7691a8c2757200a2eb/5.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.29-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.29-nanoserver-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 2dd5da501f38..1dbb19253e34 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.6-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/community/Dockerfile) +- [`9.9.7-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/community/Dockerfile) -- [`9.9.6-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/developer/Dockerfile) +- [`9.9.7-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/developer/Dockerfile) -- [`9.9.6-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/enterprise/Dockerfile) +- [`9.9.7-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/enterprise/Dockerfile) -- [`9.9.6-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/datacenter/app/Dockerfile) +- [`9.9.7-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/datacenter/app/Dockerfile) -- [`9.9.6-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/9/datacenter/search/Dockerfile) +- [`9.9.7-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/datacenter/search/Dockerfile) -- [`10.6.0-community`, `10.6-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/community/Dockerfile) +- [`10.7.0-community`, `10.7-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/community/Dockerfile) -- [`10.6.0-developer`, `10.6-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/developer/Dockerfile) +- [`10.7.0-developer`, `10.7-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/developer/Dockerfile) -- [`10.6.0-enterprise`, `10.6-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/enterprise/Dockerfile) +- [`10.7.0-enterprise`, `10.7-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/enterprise/Dockerfile) -- [`10.6.0-datacenter-app`, `10.6-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/datacenter/app/Dockerfile) +- [`10.7.0-datacenter-app`, `10.7-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/datacenter/app/Dockerfile) -- [`10.6.0-datacenter-search`, `10.6-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/29b65682b4f8dbb38bd303b35b3ceaa3a39a0e40/10/datacenter/search/Dockerfile) +- [`10.7.0-datacenter-search`, `10.7-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/datacenter/search/Dockerfile) # Quick reference (cont.) From a7f134bf9ce4895155021f010a2b935cc83798fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Oct 2024 12:09:07 -0700 Subject: [PATCH 1568/2686] Run update.sh --- haxe/README.md | 52 ++++++++++++++++++++++----------------------- mediawiki/README.md | 18 ++++++++-------- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index 1be3747d73f4..0db90ed4db99 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`4.3.6-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bookworm/Dockerfile) +- [`4.3.6-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bookworm/Dockerfile) -- [`4.3.6-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bullseye/Dockerfile) +- [`4.3.6-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bullseye/Dockerfile) - [`4.3.6-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.6-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) -- [`4.3.6-alpine3.20`, `4.3-alpine3.20`, `4.3.6-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.20/Dockerfile) +- [`4.3.6-alpine3.20`, `4.3-alpine3.20`, `4.3.6-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.20/Dockerfile) -- [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.19/Dockerfile) +- [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.19/Dockerfile) -- [`4.3.6-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.18/Dockerfile) +- [`4.3.6-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.18/Dockerfile) -- [`4.3.6-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/alpine3.17/Dockerfile) +- [`4.3.6-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.17/Dockerfile) -- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bookworm/Dockerfile) +- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bullseye/Dockerfile) +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bullseye/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) -- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.20/Dockerfile) +- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.20/Dockerfile) -- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.19/Dockerfile) +- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.19/Dockerfile) -- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.18/Dockerfile) +- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.18/Dockerfile) -- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/alpine3.17/Dockerfile) +- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.17/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/bullseye/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) -- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.20/Dockerfile) +- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.20/Dockerfile) -- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.19/Dockerfile) +- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.19/Dockerfile) -- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.18/Dockerfile) +- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.18/Dockerfile) -- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/alpine3.17/Dockerfile) +- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.17/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/bullseye/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) -- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.20/Dockerfile) +- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.20/Dockerfile) -- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.19/Dockerfile) +- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.19/Dockerfile) -- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.18/Dockerfile) +- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.18/Dockerfile) -- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/alpine3.17/Dockerfile) +- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.17/Dockerfile) ## Shared Tags - `4.3.6`, `4.3`, `latest`: - - [`4.3.6-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/bookworm/Dockerfile) + - [`4.3.6-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bookworm/Dockerfile) - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) - [`4.3.6-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) @@ -103,7 +103,7 @@ WARNING: - `4.2.5`, `4.2`: - - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.2/bookworm/Dockerfile) + - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) @@ -114,7 +114,7 @@ WARNING: - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) @@ -125,7 +125,7 @@ WARNING: - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/28b986eccdcf136c1a6f705cab132abf63e88a56/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) diff --git a/mediawiki/README.md b/mediawiki/README.md index e4f8294ca089..2c6b379fc24d 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.42.1`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/apache/Dockerfile) +- [`1.42.3`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/apache/Dockerfile) -- [`1.42.1-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm/Dockerfile) +- [`1.42.3-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/fpm/Dockerfile) -- [`1.42.1-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.42/fpm-alpine/Dockerfile) +- [`1.42.3-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/fpm-alpine/Dockerfile) -- [`1.41.2`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/apache/Dockerfile) +- [`1.41.4`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/apache/Dockerfile) -- [`1.41.2-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm/Dockerfile) +- [`1.41.4-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/fpm/Dockerfile) -- [`1.41.2-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.41/fpm-alpine/Dockerfile) +- [`1.41.4-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/fpm-alpine/Dockerfile) -- [`1.39.8`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/apache/Dockerfile) +- [`1.39.10`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/apache/Dockerfile) -- [`1.39.8-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm/Dockerfile) +- [`1.39.10-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/fpm/Dockerfile) -- [`1.39.8-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/b3b4ecdcb503a180b1f5052b04963a0fb93f6611/1.39/fpm-alpine/Dockerfile) +- [`1.39.10-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From fc3bbf8857e297311e5feaf3452b4b6b12c7e630 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Oct 2024 13:21:48 -0700 Subject: [PATCH 1569/2686] Run update.sh --- elixir/README.md | 18 +++++++++--------- xwiki/README.md | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index a2090e486bcb..fa8f71bb7d5c 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.2`, `1.17`, `latest`, `1.17.2-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/Dockerfile) +- [`1.17.3`, `1.17`, `latest`, `1.17.3-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) -- [`1.17.2-slim`, `1.17-slim`, `slim`, `1.17.2-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/slim/Dockerfile) +- [`1.17.3-slim`, `1.17-slim`, `slim`, `1.17.3-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/slim/Dockerfile) -- [`1.17.2-alpine`, `1.17-alpine`, `alpine`, `1.17.2-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/alpine/Dockerfile) +- [`1.17.3-alpine`, `1.17-alpine`, `alpine`, `1.17.3-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/alpine/Dockerfile) -- [`1.17.2-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25/Dockerfile) +- [`1.17.3-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25/Dockerfile) -- [`1.17.2-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25-alpine/Dockerfile) +- [`1.17.3-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-alpine/Dockerfile) -- [`1.17.2-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-25-slim/Dockerfile) +- [`1.17.3-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-slim/Dockerfile) -- [`1.17.2-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26/Dockerfile) +- [`1.17.3-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26/Dockerfile) -- [`1.17.2-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26-alpine/Dockerfile) +- [`1.17.3-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-alpine/Dockerfile) -- [`1.17.2-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/ec1c3c81a3ab6c098c5d9dd1f240fe7e3a0fc807/1.17/otp-26-slim/Dockerfile) +- [`1.17.3-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-slim/Dockerfile) - [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 7f6de9bde3f9..968ec7f766ad 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.7`, `16.7.1`, `16-mysql-tomcat`, `16.7-mysql-tomcat`, `16.7.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/mysql-tomcat/Dockerfile) +- [`16`, `16.8`, `16.8.0`, `16-mysql-tomcat`, `16.8-mysql-tomcat`, `16.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.7-postgres-tomcat`, `16.7.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.8-postgres-tomcat`, `16.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.7-mariadb-tomcat`, `16.7.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/02889702b131f44d1941f41cd72b202bedebaa39/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.8-mariadb-tomcat`, `16.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.12`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mysql-tomcat/Dockerfile) From 574e33fdaf844e3c7a71d185c529f476280f92e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Oct 2024 15:09:09 -0700 Subject: [PATCH 1570/2686] Run update.sh --- bash/README.md | 2 +- busybox/README.md | 16 ++++---- cassandra/README.md | 2 +- golang/README.md | 72 ++++++++++++++++++------------------ hylang/README.md | 90 ++++++++++++++++++++++----------------------- orientdb/README.md | 4 +- python/README.md | 60 +++++++++++++++--------------- wordpress/README.md | 36 +++++++++++++----- 8 files changed, 150 insertions(+), 132 deletions(-) diff --git a/bash/README.md b/bash/README.md index edc0438ba176..b9efaf0851db 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240920`, `devel`, `devel-20240920-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/8f1d37b52aca817fbb37e73e6034ecebc3b4be17/devel/Dockerfile) +- [`devel-20240927`, `devel`, `devel-20240927-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/bea8b4f361686231e11d5f4e7dd61b83e52391cd/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/busybox/README.md b/busybox/README.md index 4c0ec0d3548f..09e414b445b9 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.36.1-glibc`, `1.36-glibc`, `1-glibc`, `stable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `1-uclibc`, `stable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `1-musl`, `stable-musl`, `musl`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `1`, `stable`, `latest`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/glibc/amd64/index.json) -- [`1.35.0-glibc`, `1.35-glibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/glibc/amd64/index.json) -- [`1.35.0-uclibc`, `1.35-uclibc`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/uclibc/amd64/index.json) -- [`1.35.0-musl`, `1.35-musl`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/musl/amd64/index.json) -- [`1.35.0`, `1.35`](https://github.com/docker-library/busybox/blob/5eb4e443534e093c4d8fe2b6761432430827cc95/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/cassandra/README.md b/cassandra/README.md index 048eb6258999..cc97d943cfcc 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.0`, `5.0`, `5`, `latest`, `5.0.0-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/cb4f6acadef77048615282871fd1480aee75f193/5.0/Dockerfile) +- [`5.0.1`, `5.0`, `5`, `latest`, `5.0.1-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/9c4cfca225a711f4523ef5134cc54c1a62e69eba/5.0/Dockerfile) - [`4.1.7`, `4.1`, `4`, `4.1.7-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/ad1d8a96d90bd17a5be305628aac3dafa9a11f5c/4.1/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 89a0b778e678..b646cd7f9203 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`1.23.1-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bookworm/Dockerfile) +- [`1.23.2-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bookworm/Dockerfile) -- [`1.23.1-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bullseye/Dockerfile) +- [`1.23.2-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bullseye/Dockerfile) -- [`1.23.1-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.1-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/alpine3.20/Dockerfile) +- [`1.23.2-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.2-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/alpine3.20/Dockerfile) -- [`1.23.1-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/alpine3.19/Dockerfile) +- [`1.23.2-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/alpine3.19/Dockerfile) -- [`1.23.1-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.2-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.1-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.2-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.1-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.2-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.1-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.2-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.7-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bookworm/Dockerfile) +- [`1.22.8-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bookworm/Dockerfile) -- [`1.22.7-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bullseye/Dockerfile) +- [`1.22.8-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bullseye/Dockerfile) -- [`1.22.7-alpine3.20`, `1.22-alpine3.20`, `1.22.7-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/alpine3.20/Dockerfile) +- [`1.22.8-alpine3.20`, `1.22-alpine3.20`, `1.22.8-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/alpine3.20/Dockerfile) -- [`1.22.7-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/alpine3.19/Dockerfile) +- [`1.22.8-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/alpine3.19/Dockerfile) -- [`1.22.7-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.8-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.7-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.8-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.7-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.8-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.7-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.8-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.23.1`, `1.23`, `1`, `latest`: +- `1.23.2`, `1.23`, `1`, `latest`: - - [`1.23.1-bookworm`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/bookworm/Dockerfile) - - [`1.23.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.2-bookworm`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bookworm/Dockerfile) + - [`1.23.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.1-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.2-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.1-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.2-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/724988cd7e877c42252631f262420cc7d97abc9e/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.7`, `1.22`: +- `1.22.8`, `1.22`: - - [`1.22.7-bookworm`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/bookworm/Dockerfile) - - [`1.22.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.8-bookworm`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bookworm/Dockerfile) + - [`1.22.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.7-windowsservercore`, `1.22-windowsservercore`: +- `1.22.8-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.7-nanoserver`, `1.22-nanoserver`: +- `1.22.8-nanoserver`, `1.22-nanoserver`: - - [`1.22.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/9e123d9969e8e6bd266c50ab3a44920719902c49/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 3b0427755b4e..483729fedb77 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,105 +28,105 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`1.0.0-python3.8-bookworm`, `1.0-python3.8-bookworm`, `1-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`1.0.0-python3.8-bookworm`, `1.0-python3.8-bookworm`, `1-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bookworm) -- [`1.0.0-python3.8-bullseye`, `1.0-python3.8-bullseye`, `1-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`1.0.0-python3.8-bullseye`, `1.0-python3.8-bullseye`, `1-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bullseye) -- [`1.0.0-python3.8-alpine3.20`, `1.0-python3.8-alpine3.20`, `1-python3.8-alpine3.20`, `python3.8-alpine3.20`, `1.0.0-python3.8-alpine`, `1.0-python3.8-alpine`, `1-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`1.0.0-python3.8-alpine3.20`, `1.0-python3.8-alpine3.20`, `1-python3.8-alpine3.20`, `python3.8-alpine3.20`, `1.0.0-python3.8-alpine`, `1.0-python3.8-alpine`, `1-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) -- [`1.0.0-python3.8-alpine3.19`, `1.0-python3.8-alpine3.19`, `1-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`1.0.0-python3.8-alpine3.19`, `1.0-python3.8-alpine3.19`, `1-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) -- [`1.0.0-python3.13-rc-bookworm`, `1.0-python3.13-rc-bookworm`, `1-python3.13-rc-bookworm`, `python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) +- [`1.0.0-python3.13-rc-bookworm`, `1.0-python3.13-rc-bookworm`, `1-python3.13-rc-bookworm`, `python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) -- [`1.0.0-python3.13-rc-bullseye`, `1.0-python3.13-rc-bullseye`, `1-python3.13-rc-bullseye`, `python3.13-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bullseye) +- [`1.0.0-python3.13-rc-bullseye`, `1.0-python3.13-rc-bullseye`, `1-python3.13-rc-bullseye`, `python3.13-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bullseye) -- [`1.0.0-python3.13-rc-alpine3.20`, `1.0-python3.13-rc-alpine3.20`, `1-python3.13-rc-alpine3.20`, `python3.13-rc-alpine3.20`, `1.0.0-python3.13-rc-alpine`, `1.0-python3.13-rc-alpine`, `1-python3.13-rc-alpine`, `python3.13-rc-alpine`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.20) +- [`1.0.0-python3.13-rc-alpine3.20`, `1.0-python3.13-rc-alpine3.20`, `1-python3.13-rc-alpine3.20`, `python3.13-rc-alpine3.20`, `1.0.0-python3.13-rc-alpine`, `1.0-python3.13-rc-alpine`, `1-python3.13-rc-alpine`, `python3.13-rc-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.20) -- [`1.0.0-python3.13-rc-alpine3.19`, `1.0-python3.13-rc-alpine3.19`, `1-python3.13-rc-alpine3.19`, `python3.13-rc-alpine3.19`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.19) +- [`1.0.0-python3.13-rc-alpine3.19`, `1.0-python3.13-rc-alpine3.19`, `1-python3.13-rc-alpine3.19`, `python3.13-rc-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.19) -- [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`, `1.0-python3.13-rc-windowsservercore-ltsc2022`, `1-python3.13-rc-windowsservercore-ltsc2022`, `python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`, `1.0-python3.13-rc-windowsservercore-ltsc2022`, `1-python3.13-rc-windowsservercore-ltsc2022`, `python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-rc-windowsservercore-1809`, `1.0-python3.13-rc-windowsservercore-1809`, `1-python3.13-rc-windowsservercore-1809`, `python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) +- [`1.0.0-python3.13-rc-windowsservercore-1809`, `1.0-python3.13-rc-windowsservercore-1809`, `1-python3.13-rc-windowsservercore-1809`, `python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-python3.8`, `1.0-python3.8`, `1-python3.8`, `python3.8`: - - [`1.0.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.8-bookworm) + - [`1.0.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bookworm) - `1.0.0-python3.13-rc`, `1.0-python3.13-rc`, `1-python3.13-rc`, `python3.13-rc`: - - [`1.0.0-python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) - - [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) + - [`1.0.0-python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) + - [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/812de70d97ec447d05474cdf2ad053163b791bdd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index f3a52cfaa34e..b4f0c8c0db54 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.33`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/3e03717dfed592a653bc04a50476cb5461018db3/release/3.2.x/3.2.33/Dockerfile) +- [`3.2.34`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7cd0cdeeaae09c4d4e1e18f0d154e4ed063c939b/release/3.2.x/3.2.34/Dockerfile) -- [`3.2.33-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/3e03717dfed592a653bc04a50476cb5461018db3/release/3.2.x/3.2.33-tp3/Dockerfile) +- [`3.2.34-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7cd0cdeeaae09c4d4e1e18f0d154e4ed063c939b/release/3.2.x/3.2.34-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/python/README.md b/python/README.md index 8ba04c352b6e..452ca13d3b83 100644 --- a/python/README.md +++ b/python/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`3.13.0rc2-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bookworm/Dockerfile) +- [`3.13.0rc3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bookworm/Dockerfile) -- [`3.13.0rc2-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc2-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0rc3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/slim-bookworm/Dockerfile) -- [`3.13.0rc2-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bullseye/Dockerfile) +- [`3.13.0rc3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bullseye/Dockerfile) -- [`3.13.0rc2-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0rc3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/slim-bullseye/Dockerfile) -- [`3.13.0rc2-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc2-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0rc3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/alpine3.20/Dockerfile) -- [`3.13.0rc2-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0rc3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/alpine3.19/Dockerfile) -- [`3.13.0rc2-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0rc3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0rc2-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0rc3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.6-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bookworm/Dockerfile) +- [`3.12.7-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) -- [`3.12.6-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.6-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/slim-bookworm/Dockerfile) +- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.7-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bookworm/Dockerfile) -- [`3.12.6-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bullseye/Dockerfile) +- [`3.12.7-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bullseye/Dockerfile) -- [`3.12.6-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/slim-bullseye/Dockerfile) +- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bullseye/Dockerfile) -- [`3.12.6-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.6-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/alpine3.20/Dockerfile) +- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.20/Dockerfile) -- [`3.12.6-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/alpine3.19/Dockerfile) +- [`3.12.7-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.19/Dockerfile) -- [`3.12.6-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.6-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) @@ -110,27 +110,27 @@ WARNING: ## Shared Tags -- `3.13.0rc2`, `3.13-rc`: +- `3.13.0rc3`, `3.13-rc`: - - [`3.13.0rc2-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/bookworm/Dockerfile) - - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc3-bookworm`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bookworm/Dockerfile) + - [`3.13.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0rc2-windowsservercore`, `3.13-rc-windowsservercore`: +- `3.13.0rc3-windowsservercore`, `3.13-rc-windowsservercore`: - - [`3.13.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc2-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) -- `3.12.6`, `3.12`, `3`, `latest`: +- `3.12.7`, `3.12`, `3`, `latest`: - - [`3.12.6-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/bookworm/Dockerfile) - - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.7-bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) + - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.6-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.12.7-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.6-windowsservercore-1809`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.10`, `3.11`: diff --git a/wordpress/README.md b/wordpress/README.md index 092d7b238fad..cdc9a9930bf7 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/apache/Dockerfile) +- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/apache/Dockerfile) -- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/fpm/Dockerfile) +- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/fpm/Dockerfile) -- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/apache/Dockerfile) +- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/apache/Dockerfile) -- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/fpm/Dockerfile) +- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/fpm/Dockerfile) -- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/apache/Dockerfile) +- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/apache/Dockerfile) -- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/fpm/Dockerfile) +- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/fpm/Dockerfile) -- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) @@ -48,6 +48,24 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) +- [`beta-6.7-beta1-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta1-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/apache/Dockerfile) + +- [`beta-6.7-beta1-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.7-beta1-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.7-beta1-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta1`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta1-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta1-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/apache/Dockerfile) + +- [`beta-6.7-beta1-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta1-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.7-beta1-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta1-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.7-beta1-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta1-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/apache/Dockerfile) + +- [`beta-6.7-beta1-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.7-beta1-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From a24d0a450fd5b5c0aaea64d2035a746fa80a0fab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Oct 2024 18:09:13 -0700 Subject: [PATCH 1571/2686] Run update.sh --- ubuntu/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index e0eac1911f54..5b653b7c842b 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240530`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240530-9699eddd&id=9699eddd402d702628046e17ab86ccc5ffb51adc) +- [`20.04`, `focal-20240918`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240918-88c5b09e&id=88c5b09e2751b09cb08e958e3f826bb7322e41bc) - [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20240827.1`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240827.1-4b0dd592&id=4b0dd5927203f4c617e77bf210ab502c4c823310) +- [`24.04`, `noble-20240904.1`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240904.1-dae9d66c&id=dae9d66c89aece3c1df8a177a14c4a359938886c) -- [`24.10`, `oracular-20240913`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240913-7aa6a93d&id=7aa6a93df48ee04f51c91caf6961298905f9c117) +- [`24.10`, `oracular-20240918`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240918-38d6108e&id=38d6108ef2fa73d5939a96737e4f080285b67cbd) # Quick reference (cont.) From d12f91caf5e43d9015cedf837dbdb452fb1de817 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Oct 2024 16:09:04 -0700 Subject: [PATCH 1572/2686] Run update.sh --- joomla/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 3aea9f22c888..7feeff08daa5 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-beta3-php8.1-apache`, `5.2-php8.1-apache`, `5.2.beta-php8.1-apache`, `5.2.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/apache/Dockerfile) +- [`5.2.0-rc1-php8.1-apache`, `5.2-php8.1-apache`, `5.2.rc-php8.1-apache`, `5.2.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/apache/Dockerfile) -- [`5.2.0-beta3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.beta-php8.1-fpm-alpine`, `5.2.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-rc1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.rc-php8.1-fpm-alpine`, `5.2.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-beta3-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.beta-php8.1-fpm`, `5.2.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.1/fpm/Dockerfile) +- [`5.2.0-rc1-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.rc-php8.1-fpm`, `5.2.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/fpm/Dockerfile) -- [`5.2.0-beta3`, `5.2`, `5.2.beta`, `5.2.0-beta`, `5.2.0-beta3-apache`, `5.2-apache`, `5.2.beta-apache`, `5.2.0-beta-apache`, `5.2.0-beta3-php8.2`, `5.2-php8.2`, `5.2.beta-php8.2`, `5.2.0-beta-php8.2`, `5.2.0-beta3-php8.2-apache`, `5.2-php8.2-apache`, `5.2.beta-php8.2-apache`, `5.2.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/apache/Dockerfile) +- [`5.2.0-rc1`, `5.2`, `5.2.rc`, `5.2.0-rc`, `5.2.0-rc1-apache`, `5.2-apache`, `5.2.rc-apache`, `5.2.0-rc-apache`, `5.2.0-rc1-php8.2`, `5.2-php8.2`, `5.2.rc-php8.2`, `5.2.0-rc-php8.2`, `5.2.0-rc1-php8.2-apache`, `5.2-php8.2-apache`, `5.2.rc-php8.2-apache`, `5.2.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/apache/Dockerfile) -- [`5.2.0-beta3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.beta-php8.2-fpm-alpine`, `5.2.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-rc1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.rc-php8.2-fpm-alpine`, `5.2.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-beta3-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.beta-php8.2-fpm`, `5.2.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.2/fpm/Dockerfile) +- [`5.2.0-rc1-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.rc-php8.2-fpm`, `5.2.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/fpm/Dockerfile) -- [`5.2.0-beta3-php8.3-apache`, `5.2-php8.3-apache`, `5.2.beta-php8.3-apache`, `5.2.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/apache/Dockerfile) +- [`5.2.0-rc1-php8.3-apache`, `5.2-php8.3-apache`, `5.2.rc-php8.3-apache`, `5.2.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/apache/Dockerfile) -- [`5.2.0-beta3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.beta-php8.3-fpm-alpine`, `5.2.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-rc1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.rc-php8.3-fpm-alpine`, `5.2.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-beta3-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.beta-php8.3-fpm`, `5.2.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/ad9585a9185c597918f65afcd7b3a68676784f27/5.2.beta/php8.3/fpm/Dockerfile) +- [`5.2.0-rc1-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.rc-php8.3-fpm`, `5.2.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/fpm/Dockerfile) - [`5.1.4-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/apache/Dockerfile) From 5c6c24f708d36f9ac1f340fed014dde16029f3d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Oct 2024 17:09:09 -0700 Subject: [PATCH 1573/2686] Run update.sh --- eclipse-mosquitto/README.md | 8 +++----- erlang/README.md | 6 +++--- nginx/README.md | 14 +++++++------- traefik/README.md | 24 ++++++++++++++++-------- 4 files changed, 29 insertions(+), 23 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 32985159bf8a..d2f2949520a1 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,11 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.18`, `2.0`, `2`, `latest`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0/Dockerfile) +- [`2.0.19`, `2.0.19-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/e96ddfc6e58f7087b9fa57a717d7f56d2c00f9fe/docker/2.0-openssl/Dockerfile) -- [`2.0.18-openssl`, `2.0-openssl`, `2-openssl`, `openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/2.0-openssl/Dockerfile) - -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/f4400fa422eacac8417efbc45dd1284526dce8d4/docker/1.6-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/e96ddfc6e58f7087b9fa57a717d7f56d2c00f9fe/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) @@ -36,7 +34,7 @@ WARNING: [https://github.com/eclipse/mosquitto/issues](https://github.com/eclipse/mosquitto/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/eclipse-mosquitto/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eclipse-mosquitto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-mosquitto/), [`i386`](https://hub.docker.com/r/i386/eclipse-mosquitto/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-mosquitto/) + [`amd64`](https://hub.docker.com/r/amd64/eclipse-mosquitto/), [`arm32v6`](https://hub.docker.com/r/arm32v6/eclipse-mosquitto/), [`arm64v8`](https://hub.docker.com/r/arm64v8/eclipse-mosquitto/), [`i386`](https://hub.docker.com/r/i386/eclipse-mosquitto/), [`ppc64le`](https://hub.docker.com/r/ppc64le/eclipse-mosquitto/), [`s390x`](https://hub.docker.com/r/s390x/eclipse-mosquitto/) - **Published image artifact details**: [repo-info repo's `repos/eclipse-mosquitto/` directory](https://github.com/docker-library/repo-info/blob/master/repos/eclipse-mosquitto) ([history](https://github.com/docker-library/repo-info/commits/master/repos/eclipse-mosquitto)) diff --git a/erlang/README.md b/erlang/README.md index a308c1b2ba8a..7ebc63348489 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.0.1.0`, `27.0.1`, `27.0`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/Dockerfile) +- [`27.1.1.0`, `27.1.1`, `27.1`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/Dockerfile) -- [`27.0.1.0-slim`, `27.0.1-slim`, `27.0-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/slim/Dockerfile) +- [`27.1.1.0-slim`, `27.1.1-slim`, `27.1-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/slim/Dockerfile) -- [`27.0.1.0-alpine`, `27.0.1-alpine`, `27.0-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/27/alpine/Dockerfile) +- [`27.1.1.0-alpine`, `27.1.1-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/alpine/Dockerfile) - [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index fa679a2cdcc9..a267e7abe6d7 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.1`, `mainline`, `1`, `1.27`, `latest`, `1.27.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian/Dockerfile) +- [`1.27.2`, `mainline`, `1`, `1.27`, `latest`, `1.27.2-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian/Dockerfile) -- [`1.27.1-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian-perl/Dockerfile) +- [`1.27.2-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.2-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian-perl/Dockerfile) -- [`1.27.1-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.1-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/mainline/debian-otel/Dockerfile) +- [`1.27.2-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.2-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian-otel/Dockerfile) -- [`1.27.1-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.1-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine/Dockerfile) +- [`1.27.2-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.2-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine/Dockerfile) -- [`1.27.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.1-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-perl/Dockerfile) +- [`1.27.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.2-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-perl/Dockerfile) -- [`1.27.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.1-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-slim/Dockerfile) +- [`1.27.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.2-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-slim/Dockerfile) -- [`1.27.1-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.1-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/mainline/alpine-otel/Dockerfile) +- [`1.27.2-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.2-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-otel/Dockerfile) - [`1.26.2`, `stable`, `1.26`, `1.26.2-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index a42c7ff3b478..7cae20f877bf 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.1.4-windowsservercore-ltsc2022`, `3.1.4-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.0-rc1-windowsservercore-ltsc2022`, `3.2.0-rc1-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.4-windowsservercore-1809`, `3.1.4-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/1809/Dockerfile) +- [`v3.2.0-rc1-windowsservercore-1809`, `3.2.0-rc1-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/1809/Dockerfile) -- [`v3.1.4-nanoserver-ltsc2022`, `3.1.4-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.0-rc1-nanoserver-ltsc2022`, `3.2.0-rc1-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.4`, `3.1.4`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/5070edb25b03cca6802d75d5037576c840f73fdd/v3.1/alpine/Dockerfile) +- [`v3.2.0-rc1`, `3.2.0-rc1`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/alpine/Dockerfile) -- [`v2.11.10-windowsservercore-ltsc2022`, `2.11.10-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.5-windowsservercore-ltsc2022`, `3.1.5-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.10-windowsservercore-1809`, `2.11.10-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/1809/Dockerfile) +- [`v3.1.5-windowsservercore-1809`, `3.1.5-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/1809/Dockerfile) -- [`v2.11.10-nanoserver-ltsc2022`, `2.11.10-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.5-nanoserver-ltsc2022`, `3.1.5-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.10`, `2.11.10`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/b5c6d99645bdb2ef48676f84b0efa6e8f3dd3226/v2.11/alpine/Dockerfile) +- [`v3.1.5`, `3.1.5`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/alpine/Dockerfile) + +- [`v2.11.11-windowsservercore-ltsc2022`, `2.11.11-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/servercore-ltsc2022/Dockerfile) + +- [`v2.11.11-windowsservercore-1809`, `2.11.11-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/1809/Dockerfile) + +- [`v2.11.11-nanoserver-ltsc2022`, `2.11.11-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + +- [`v2.11.11`, `2.11.11`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/alpine/Dockerfile) # Quick reference (cont.) From b7113f7f79f39d327cbd335cd76894bb3ab308ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Oct 2024 09:09:01 -0700 Subject: [PATCH 1574/2686] Run update.sh --- neo4j/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index fe8637c063ee..ec3b5dc96db1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.23.0-community-bullseye`, `5.23-community-bullseye`, `5-community-bullseye`, `5.23.0-community`, `5.23-community`, `5-community`, `5.23.0-bullseye`, `5.23-bullseye`, `5-bullseye`, `5.23.0`, `5.23`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/bullseye/community/Dockerfile) +- [`5.24.1-community-bullseye`, `5.24-community-bullseye`, `5-community-bullseye`, `5.24.1-community`, `5.24-community`, `5-community`, `5.24.1-bullseye`, `5.24-bullseye`, `5-bullseye`, `5.24.1`, `5.24`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/bullseye/community/Dockerfile) -- [`5.23.0-enterprise-bullseye`, `5.23-enterprise-bullseye`, `5-enterprise-bullseye`, `5.23.0-enterprise`, `5.23-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/bullseye/enterprise/Dockerfile) +- [`5.24.1-enterprise-bullseye`, `5.24-enterprise-bullseye`, `5-enterprise-bullseye`, `5.24.1-enterprise`, `5.24-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/bullseye/enterprise/Dockerfile) -- [`5.23.0-community-ubi9`, `5.23-community-ubi9`, `5-community-ubi9`, `5.23.0-ubi9`, `5.23-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/ubi9/community/Dockerfile) +- [`5.24.1-community-ubi9`, `5.24-community-ubi9`, `5-community-ubi9`, `5.24.1-ubi9`, `5.24-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/ubi9/community/Dockerfile) -- [`5.23.0-enterprise-ubi9`, `5.23-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8e55c5a5629327d318a63703f4f4f361c97c6293/5.23.0/ubi9/enterprise/Dockerfile) +- [`5.24.1-enterprise-ubi9`, `5.24-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/ubi9/enterprise/Dockerfile) - [`4.4.37`, `4.4.37-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/7422ac53238f689a26144d3c1c5aee434a07a325/4.4.37/bullseye/community/Dockerfile) From 41c4709879e4ccad562a24f49342b566da98249c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Oct 2024 10:09:08 -0700 Subject: [PATCH 1575/2686] Run update.sh --- aerospike/README.md | 4 ++-- composer/README.md | 2 +- xwiki/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 09fcb27e97eb..1695b829a720 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.6`, `ee-7.1.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/fae2f091075aa936a43c9f673869cd57fadada56/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.1.0.7`, `ee-7.1.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/9b0b542c4e0e0354a32f338ae2c6fbad19af2924/enterprise/ubuntu22.04/Dockerfile) -- [`ce-7.1.0.6`, `ce-7.1.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/fae2f091075aa936a43c9f673869cd57fadada56/community/ubuntu22.04/Dockerfile) +- [`ce-7.1.0.7`, `ce-7.1.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/9b0b542c4e0e0354a32f338ae2c6fbad19af2924/community/ubuntu22.04/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 33c7c0caf99f..1cfb87e6a887 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) -- [`2.7.9`, `2.7`, `2`, `latest`](https://github.com/composer/docker/blob/58ca5571212e471dce2635e831a4c7afb939f6d4/latest/Dockerfile) +- [`2.8.0`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/5d8b80c01c2556151c791b9a4c79e2c4d13ffc94/latest/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 968ec7f766ad..6da990deda0c 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.3`, `16.4-mysql-tomcat`, `16.4.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.4`, `16.4-mysql-tomcat`, `16.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/916e627515a200acaae53a910ea93f046e09a411/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From b8e9e42fa751e9b563c25c3b2a2a23b097acc35b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Oct 2024 12:09:03 -0700 Subject: [PATCH 1576/2686] Run update.sh --- clojure/README.md | 142 ++++++++++++++++++++++------------------------ 1 file changed, 69 insertions(+), 73 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 9e5cb7aca5b9..4478f79e63d6 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,147 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1479-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1479-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1479-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1479-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1479-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1479-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1479`, `temurin-8-tools-deps-1.12.0.1479-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1479`, `temurin-8-tools-deps-1.12.0.1479-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1479-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1479-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1479-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1479-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1479-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1479-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1479-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1479-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1479`, `temurin-11-tools-deps-1.12.0.1479-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1479`, `temurin-11-tools-deps-1.12.0.1479-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1479-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1479-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1479-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1479-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1479-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1479-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1479-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1479-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1479`, `temurin-17-tools-deps-1.12.0.1479-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1479`, `temurin-17-tools-deps-1.12.0.1479-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1479-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1479-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1479-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1479-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1479`, `temurin-21-tools-deps-1.12.0.1479-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1479`, `tools-deps-1.12.0.1479-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1479`, `temurin-21-tools-deps-1.12.0.1479-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1479`, `tools-deps-1.12.0.1479-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1479-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1479-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1479-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1479-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1479-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1479-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1479-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1479-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1479-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1479-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1479-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1479-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-22-lein-2.11.2-alpine`, `temurin-22-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-alpine/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) -- [`temurin-22-lein`, `temurin-22-lein-2.11.2`, `temurin-22-lein-2.11.2-bookworm`, `temurin-22-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-22/lein/Dockerfile) +- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-23/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bookworm-slim`, `temurin-22-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-22/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-23/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye`, `temurin-22-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-22/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-23/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-bullseye-slim`, `temurin-22-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-22/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-23/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-jammy`, `temurin-22-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-jammy/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) -- [`temurin-22-lein-2.11.2-noble`, `temurin-22-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-noble/lein/Dockerfile) +- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1479-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-22-alpine`, `temurin-22-tools-deps-1.12.0.1479-alpine`, `temurin-22-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1479`, `temurin-23-tools-deps-1.12.0.1479-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-23/tools-deps/Dockerfile) -- [`temurin-22-bookworm`, `temurin-22-tools-deps`, `temurin-22-tools-deps-1.12.0.1479`, `temurin-22-tools-deps-1.12.0.1479-bookworm`, `temurin-22-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-22/tools-deps/Dockerfile) +- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-23/tools-deps/Dockerfile) -- [`temurin-22-bookworm-slim`, `temurin-22-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-22-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bookworm-slim-22/tools-deps/Dockerfile) +- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1479-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-23/tools-deps/Dockerfile) -- [`temurin-22-bullseye`, `temurin-22-tools-deps-1.12.0.1479-bullseye`, `temurin-22-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-22/tools-deps/Dockerfile) +- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-23/tools-deps/Dockerfile) -- [`temurin-22-bullseye-slim`, `temurin-22-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-22-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/debian-bullseye-slim-22/tools-deps/Dockerfile) - -- [`temurin-22-jammy`, `temurin-22-tools-deps-1.12.0.1479-jammy`, `temurin-22-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-jammy/tools-deps/Dockerfile) - -- [`temurin-22-noble`, `temurin-22-tools-deps-1.12.0.1479-noble`, `temurin-22-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7eefdac6c4ab8ea47a2120ec758acfda55a7786f/target/eclipse-temurin-22-jdk-noble/tools-deps/Dockerfile) +- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1479-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) From 3c207bb0506acaaba934e8d6e84de6e73966e05d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Oct 2024 12:09:03 -0700 Subject: [PATCH 1577/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 51792a5824ae..238d30881046 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`22-bullseye-slim`, `22.9-bullseye-slim`, `22.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.17-alpine3.19`, `20.17.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.17-alpine`, `20.17-alpine3.20`, `20.17.0-alpine`, `20.17.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.0-alpine`, `20.18.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.17`, `20.17-bookworm`, `20.17.0`, `20.17.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.0`, `20.18.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.17-bookworm-slim`, `20.17-slim`, `20.17.0-bookworm-slim`, `20.17.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.0-bookworm-slim`, `20.18.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.17-bullseye`, `20.17.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.18-bullseye`, `20.18.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.17-bullseye-slim`, `20.17.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/410410f6955bf8d052ef3ec7988cd41a54eab879/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) From bf351dc29f1932a7e0cb754258bca52c2a61415b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Oct 2024 10:09:06 -0700 Subject: [PATCH 1578/2686] Run update.sh --- couchdb/README.md | 6 ++++-- drupal/README.md | 36 ++++++++++++++++++------------------ haproxy/README.md | 4 ++-- jetty/README.md | 28 ++++++++++++++-------------- redis/README.md | 12 ++++++------ 5 files changed, 44 insertions(+), 42 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index de8d8967c1a3..a18101557b46 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,9 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.3.3`, `3.3`, `3`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.3.3/Dockerfile) +- [`latest`, `3.4.1`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.4.1/Dockerfile) -- [`3.2.3`, `3.2`](https://github.com/apache/couchdb-docker/blob/58910ed097489dc588b2a87592406f8faa1bdadf/3.2.3/Dockerfile) +- [`3.4.1-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.4.1-nouveau/Dockerfile) + +- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.3.3/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 16648250c928..41a2bacd1fcd 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.4-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.4-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.4-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.4-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.4-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.4`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.5-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.5-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.5-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.5-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.5-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.5`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.4-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.4-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.4-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.4-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.5-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.5-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.5-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.5-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.4-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.4-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.5-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.5-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.4-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.4-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.5-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.5-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.4-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.4-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.4-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.4-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.5-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.5-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.5-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.5-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.4-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.4-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d6c1c5ae0a0f58e83d4badafb81f8302f8ce4810/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.5-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.5-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.5-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.5-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.5-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.6-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.6-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.6-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.5-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.5-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.6-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.6-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.5-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.6-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.5-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.6-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.5-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.5-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.6-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.6-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.5-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.6-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.5-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.5-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.5-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.5-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.5-apache`, `10.3-apache`, `10-apache`, `10.3.5`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.6-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.6-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.6-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.6-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.6-apache`, `10.3-apache`, `10-apache`, `10.3.6`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.5-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.5-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.5-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.5-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.6-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.6-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.6-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.6-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.5-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.5-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.6-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.6-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.5-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.5-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.6-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.6-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.5-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.5-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.5-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.5-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.6-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.6-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.6-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.6-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.5-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.5-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ab2d5f357fc56ac7019ac4ee27dc1b87b6c1b9ff/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.6-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.6-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.8-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.8-php8.3-apache`, `10.2-php8.3-apache`, `10.2.8-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/apache-bookworm/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index e9a53d4a4609..ae137064ef67 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev8`, `3.1-dev`, `3.1-dev8-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/33bccb3231f8b94b0781a35bfe38542d8e2792c9/3.1/Dockerfile) +- [`3.1-dev9`, `3.1-dev`, `3.1-dev9-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/e93b3588a6cc0f2eb19412e54de7e741b50f734b/3.1/Dockerfile) -- [`3.1-dev8-alpine`, `3.1-dev-alpine`, `3.1-dev8-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/33bccb3231f8b94b0781a35bfe38542d8e2792c9/3.1/alpine/Dockerfile) +- [`3.1-dev9-alpine`, `3.1-dev-alpine`, `3.1-dev9-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/e93b3588a6cc0f2eb19412e54de7e741b50f734b/3.1/alpine/Dockerfile) - [`3.0.5`, `3.0`, `lts`, `latest`, `3.0.5-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/Dockerfile) diff --git a/jetty/README.md b/jetty/README.md index 7812d97e3e5d..f19ae28f35c1 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.13-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.13-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.14-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.14-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.13-jre21`, `12.0-jre21`, `12-jre21`, `12.0.13-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.14-jre21`, `12.0-jre21`, `12-jre21`, `12.0.14-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.13-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.13-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.14-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.14-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.13-jre17`, `12.0-jre17`, `12-jre17`, `12.0.13-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.14-jre17`, `12.0-jre17`, `12-jre17`, `12.0.14-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.13-jdk22-alpine`, `12.0-jdk22-alpine`, `12-jdk22-alpine`, `12.0.13-jdk22-alpine-eclipse-temurin`, `12.0-jdk22-alpine-eclipse-temurin`, `12-jdk22-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk22-alpine/Dockerfile) +- [`12.0.14-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.14-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/9c0344d032b14a8f13681e820fd81e9778140e7f/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.13-jdk22`, `12.0-jdk22`, `12-jdk22`, `12.0.13-jdk22-eclipse-temurin`, `12.0-jdk22-eclipse-temurin`, `12-jdk22-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk22/Dockerfile) +- [`12.0.14-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.14-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/9c0344d032b14a8f13681e820fd81e9778140e7f/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.13-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.13-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.14-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.14-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.13`, `12.0`, `12`, `12.0.13-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.13-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.13-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.14`, `12.0`, `12`, `12.0.14-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.14-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.14-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.13-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.13-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.14-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.14-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.13-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.13-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.14-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.14-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,13 +138,13 @@ WARNING: - [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.13-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.14-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.13-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.13-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.14-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.14-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.13-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.14-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.13-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.14-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 4bf9cafd2958..dc1dec05b285 100644 --- a/redis/README.md +++ b/redis/README.md @@ -26,17 +26,17 @@ WARNING: - [`8.0-M01`, `8.0-M01-bookworm`](https://github.com/redis/docker-library-redis/blob/1b88507c82861395a5c1b354baab795c73c051e3/debian/Dockerfile) -- [`7.4.0`, `7.4`, `7`, `latest`, `7.4.0-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/debian/Dockerfile) +- [`7.4.1`, `7.4`, `7`, `latest`, `7.4.1-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/debian/Dockerfile) -- [`7.4.0-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.0-alpine3.20`, `7.4-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/0ae559ebb19b1cafc36720e8de97839d5d402883/7.4/alpine/Dockerfile) +- [`7.4.1-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.1-alpine3.20`, `7.4-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/alpine/Dockerfile) -- [`7.2.5`, `7.2`, `7.2.5-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/debian/Dockerfile) +- [`7.2.6`, `7.2`, `7.2.6-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.2/debian/Dockerfile) -- [`7.2.5-alpine`, `7.2-alpine`, `7.2.5-alpine3.20`, `7.2-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/7.2/alpine/Dockerfile) +- [`7.2.6-alpine`, `7.2-alpine`, `7.2.6-alpine3.20`, `7.2-alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.2/alpine/Dockerfile) -- [`6.2.14`, `6.2`, `6`, `6.2.14-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/debian/Dockerfile) +- [`6.2.16`, `6.2`, `6`, `6.2.16-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/6.2/debian/Dockerfile) -- [`6.2.14-alpine`, `6.2-alpine`, `6-alpine`, `6.2.14-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/5f08363e6d64b97a0c2e651f4bdcec6e71a32ab4/6.2/alpine/Dockerfile) +- [`6.2.16-alpine`, `6.2-alpine`, `6-alpine`, `6.2.16-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/6.2/alpine/Dockerfile) # Quick reference (cont.) From d7a683dec176e94e7ecc4e84de1cf96fd7c56831 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Oct 2024 13:09:05 -0700 Subject: [PATCH 1579/2686] Run update.sh --- archlinux/README.md | 6 +++--- composer/README.md | 2 +- friendica/README.md | 8 ++++---- lightstreamer/README.md | 30 +++++++++++++++--------------- odoo/README.md | 6 +++--- rust/README.md | 12 ++++++------ 6 files changed, 32 insertions(+), 32 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 4f0ea79e1065..828d2aa08c68 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.base) +- [`latest`, `base`, `base-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.base) -- [`base-devel`, `base-devel-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20240929.0.266368`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/460eea4ccb705612cfd80eadeefd16e0ab524dbc/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 1cfb87e6a887..acef102ecc2b 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) -- [`2.8.0`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/5d8b80c01c2556151c791b9a4c79e2c4d13ffc94/latest/Dockerfile) +- [`2.8.1`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/ab362822933eaf631c13da751f87c986fa1c644a/latest/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 0ddeeacd1672..5423a308a151 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) -- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/c6a6c0684a228c7915a92c5ce3a7444f12536ae3/2024.09-dev/apache/Dockerfile) +- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/apache/Dockerfile) -- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/c6a6c0684a228c7915a92c5ce3a7444f12536ae3/2024.09-dev/fpm/Dockerfile) +- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/fpm/Dockerfile) -- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/a007cb41702e73120ce4faf2a5f1c1e9ddc296aa/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -48,7 +48,7 @@ WARNING: [https://github.com/friendica/docker/issues](https://github.com/friendica/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`mips64le`](https://hub.docker.com/r/mips64le/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`riscv64`](https://hub.docker.com/r/riscv64/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) + [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`riscv64`](https://hub.docker.com/r/riscv64/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) - **Published image artifact details**: [repo-info repo's `repos/friendica/` directory](https://github.com/docker-library/repo-info/blob/master/repos/friendica) ([history](https://github.com/docker-library/repo-info/commits/master/repos/friendica)) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 0db8be37e192..982d32e8a118 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.3`, `6.0`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/6.0/Dockerfile) +- [`6.0.3`, `6.0`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/6.0/Dockerfile) -- [`6.1.0`, `6.1`, `6`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/6.1/Dockerfile) +- [`6.1.0`, `6.1`, `6`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/6.1/Dockerfile) -- [`7.0.3-jdk8-temurin`, `7.0-jdk8-temurin`, `7.0.3-jdk8`, `7.0-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.0/jdk8/Dockerfile) +- [`7.0.3-jdk8-temurin`, `7.0-jdk8-temurin`, `7.0.3-jdk8`, `7.0-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.0/jdk8/Dockerfile) -- [`7.0.3-jdk11-temurin`, `7.0-jdk11-temurin`, `7.0.3-jdk11`, `7.0-jdk11`, `7.0.3`, `7.0`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.0/jdk11/Dockerfile) +- [`7.0.3-jdk11-temurin`, `7.0-jdk11-temurin`, `7.0.3-jdk11`, `7.0-jdk11`, `7.0.3`, `7.0`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.0/jdk11/Dockerfile) -- [`7.1.3-jdk8-temurin`, `7.1-jdk8-temurin`, `7.1.3-jdk8`, `7.1-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.1/jdk8/Dockerfile) +- [`7.1.3-jdk8-temurin`, `7.1-jdk8-temurin`, `7.1.3-jdk8`, `7.1-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.1/jdk8/Dockerfile) -- [`7.1.3-jdk11-temurin`, `7.1-jdk11-temurin`, `7.1.3-jdk11`, `7.1-jdk11`, `7.1.3`, `7.1`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.1/jdk11/Dockerfile) +- [`7.1.3-jdk11-temurin`, `7.1-jdk11-temurin`, `7.1.3-jdk11`, `7.1-jdk11`, `7.1.3`, `7.1`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.1/jdk11/Dockerfile) -- [`7.2.2-jdk8-temurin`, `7.2-jdk8-temurin`, `7.2.2-jdk8`, `7.2-jdk8`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk8/Dockerfile) +- [`7.2.2-jdk8-temurin`, `7.2-jdk8-temurin`, `7.2.2-jdk8`, `7.2-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.2/jdk8/Dockerfile) -- [`7.2.2-jdk11-temurin`, `7.2-jdk11-temurin`, `7.2.2-jdk11`, `7.2-jdk11`, `7.2.2`, `7.2`](https://github.com/Lightstreamer/Docker/blob/84e3f6588620183b48b7eb62a18070b793eff019/7.2/jdk11/Dockerfile) +- [`7.2.2-jdk11-temurin`, `7.2-jdk11-temurin`, `7.2.2-jdk11`, `7.2-jdk11`, `7.2.2`, `7.2`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.2/jdk11/Dockerfile) -- [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk8/Dockerfile) +- [`7.3.3-jdk8-temurin`, `7.3-jdk8-temurin`, `7.3.3-jdk8`, `7.3-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.3/jdk8/Dockerfile) -- [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk11/Dockerfile) +- [`7.3.3-jdk11-temurin`, `7.3-jdk11-temurin`, `7.3.3-jdk11`, `7.3-jdk11`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.3/jdk11/Dockerfile) -- [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/3e0e7b00746f56ef7232b68c5e25afa6d688bd7c/7.3/jdk17/Dockerfile) +- [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.3/jdk17/Dockerfile) -- [`7.4.4-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.4-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk8/Dockerfile) +- [`7.4.5-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.5-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk8/Dockerfile) -- [`7.4.4-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.4-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk11/Dockerfile) +- [`7.4.5-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.5-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk11/Dockerfile) -- [`7.4.4-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.4-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk17/Dockerfile) +- [`7.4.5-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.5-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk17/Dockerfile) -- [`7.4.4-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.4-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.4`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/24200b7179a33ecc040d00cf24e2f6616382ade6/7.4/jdk21/Dockerfile) +- [`7.4.5-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.5-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.5`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk21/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 50d62eea1be9..8c9e3b4d6a7d 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0-20240924`, `17.0`, `17`, `latest`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/17.0/Dockerfile) +- [`18.0-20241007`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/18.0/Dockerfile) -- [`16.0-20240924`, `16.0`, `16`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/16.0/Dockerfile) +- [`17.0-20241007`, `17.0`, `17`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/17.0/Dockerfile) -- [`15.0-20240924`, `15.0`, `15`](https://github.com/odoo/docker/blob/5fb6a842747c296099d9384587cd89640eb7a615/15.0/Dockerfile) +- [`16.0-20241007`, `16.0`, `16`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/16.0/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 23f8dfe91dc0..166338f5555c 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.81-bullseye`, `1.81.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bullseye/Dockerfile) +- [`1-bullseye`, `1.81-bullseye`, `1.81.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.81-slim-bullseye`, `1.81.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.81-slim-bullseye`, `1.81.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.81-bookworm`, `1.81.0-bookworm`, `bookworm`, `1`, `1.81`, `1.81.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bookworm/Dockerfile) +- [`1-bookworm`, `1.81-bookworm`, `1.81.0-bookworm`, `bookworm`, `1`, `1.81`, `1.81.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.81-slim-bookworm`, `1.81.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.81-slim`, `1.81.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.81-slim-bookworm`, `1.81.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.81-slim`, `1.81.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.81-alpine3.19`, `1.81.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.81-alpine3.19`, `1.81.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.81-alpine3.20`, `1.81.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.81-alpine`, `1.81.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a1d3d373229185bf5d1ae5d31db0581e2d351182/1.81.0/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.81-alpine3.20`, `1.81.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.81-alpine`, `1.81.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/alpine3.20/Dockerfile) # Quick reference (cont.) From 677c577f52b21d71382c74ef567fcf32c67a29c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Oct 2024 15:09:04 -0700 Subject: [PATCH 1580/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index f0ef706353e5..7902d2c17a90 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.30/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.30/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/685cad75fb0fff9f0d73d024c0464bb76ad06fce/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.32/alpine/Dockerfile) # Quick reference (cont.) From 95a0e470454e1f3b376ff399cd09b1a647e5bfc6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Oct 2024 16:09:06 -0700 Subject: [PATCH 1581/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 43b9e2117d0a..93175f23a936 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20240916.0`](https://github.com/amazonlinux/container-images/blob/215cb518a78daaff3c2ff87096374e3ff4965cdb/Dockerfile) +- [`2023`, `latest`, `2023.5.20241001.1`](https://github.com/amazonlinux/container-images/blob/5c9fcc247702271c2322b661be0dd73275953750/Dockerfile) -- [`2`, `2.0.20240916.0`](https://github.com/amazonlinux/container-images/blob/a276974e820cdbd9d3d39b1751da73192ea91647/Dockerfile) +- [`2`, `2.0.20241001.0`](https://github.com/amazonlinux/container-images/blob/56c21485422ff336ba13fe3d95d957477b89ee95/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) From fc82b5d5319a16357877281643d2820493d3cf5a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Oct 2024 17:09:04 -0700 Subject: [PATCH 1582/2686] Run update.sh --- ghost/README.md | 4 +-- openjdk/README.md | 36 +++++++++++++------------- python/README.md | 66 ++++++++++++++++++----------------------------- ruby/README.md | 12 ++++----- 4 files changed, 51 insertions(+), 67 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 632eba4084e7..99604d8ade55 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.95.0`, `5.95`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f574787d1c2f2ccbd3336c830c5d6d08126f7aac/5/debian/Dockerfile) +- [`5.96.0`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5573c66d815671c4b6ff873c741e92224982a142/5/debian/Dockerfile) -- [`5.95.0-alpine`, `5.95-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f574787d1c2f2ccbd3336c830c5d6d08126f7aac/5/alpine/Dockerfile) +- [`5.96.0-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5573c66d815671c4b6ff873c741e92224982a142/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 38e4f1947efe..ee0858434307 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-17-jdk-oraclelinux9`, `24-ea-17-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-17-jdk-oracle`, `24-ea-17-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-18-jdk-oraclelinux9`, `24-ea-18-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-18-jdk-oracle`, `24-ea-18-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-17-jdk-oraclelinux8`, `24-ea-17-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-18-jdk-oraclelinux8`, `24-ea-18-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-17-jdk-bookworm`, `24-ea-17-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/bookworm/Dockerfile) +- [`24-ea-18-jdk-bookworm`, `24-ea-18-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/bookworm/Dockerfile) -- [`24-ea-17-jdk-slim-bookworm`, `24-ea-17-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-17-jdk-slim`, `24-ea-17-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-18-jdk-slim-bookworm`, `24-ea-18-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-18-jdk-slim`, `24-ea-18-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-17-jdk-bullseye`, `24-ea-17-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/bullseye/Dockerfile) +- [`24-ea-18-jdk-bullseye`, `24-ea-18-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/bullseye/Dockerfile) -- [`24-ea-17-jdk-slim-bullseye`, `24-ea-17-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-18-jdk-slim-bullseye`, `24-ea-18-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-17-jdk-windowsservercore-ltsc2022`, `24-ea-17-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-18-jdk-windowsservercore-ltsc2022`, `24-ea-18-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-17-jdk-windowsservercore-1809`, `24-ea-17-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-18-jdk-windowsservercore-1809`, `24-ea-18-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-17-jdk-nanoserver-1809`, `24-ea-17-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-18-jdk-nanoserver-1809`, `24-ea-18-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-17-jdk`, `24-ea-17`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-18-jdk`, `24-ea-18`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-17-jdk-windowsservercore`, `24-ea-17-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-18-jdk-windowsservercore`, `24-ea-18-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-17-jdk-nanoserver`, `24-ea-17-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-18-jdk-nanoserver`, `24-ea-18-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e8eda6b7eb749f71463b1360405472e9dbbf6755/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 452ca13d3b83..f712f88bd13c 100644 --- a/python/README.md +++ b/python/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`3.13.0rc3-bookworm`, `3.13-rc-bookworm`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bookworm/Dockerfile) +- [`3.13.0-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bookworm/Dockerfile) -- [`3.13.0rc3-slim-bookworm`, `3.13-rc-slim-bookworm`, `3.13.0rc3-slim`, `3.13-rc-slim`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/slim-bookworm/Dockerfile) +- [`3.13.0-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.0-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/slim-bookworm/Dockerfile) -- [`3.13.0rc3-bullseye`, `3.13-rc-bullseye`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bullseye/Dockerfile) +- [`3.13.0-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bullseye/Dockerfile) -- [`3.13.0rc3-slim-bullseye`, `3.13-rc-slim-bullseye`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/slim-bullseye/Dockerfile) +- [`3.13.0-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/slim-bullseye/Dockerfile) -- [`3.13.0rc3-alpine3.20`, `3.13-rc-alpine3.20`, `3.13.0rc3-alpine`, `3.13-rc-alpine`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/alpine3.20/Dockerfile) +- [`3.13.0-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/alpine3.20/Dockerfile) -- [`3.13.0rc3-alpine3.19`, `3.13-rc-alpine3.19`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/alpine3.19/Dockerfile) +- [`3.13.0-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/alpine3.19/Dockerfile) -- [`3.13.0rc3-windowsservercore-ltsc2022`, `3.13-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0rc3-windowsservercore-1809`, `3.13-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.7-bookworm`, `3.12-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) +- [`3.12.7-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) -- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.12.7-slim`, `3.12-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bookworm/Dockerfile) +- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3.12.7-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bookworm/Dockerfile) -- [`3.12.7-bullseye`, `3.12-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bullseye/Dockerfile) +- [`3.12.7-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bullseye/Dockerfile) -- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bullseye/Dockerfile) +- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bullseye/Dockerfile) -- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.12.7-alpine`, `3.12-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.20/Dockerfile) +- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3.12.7-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.20/Dockerfile) -- [`3.12.7-alpine3.19`, `3.12-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.19/Dockerfile) +- [`3.12.7-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.19/Dockerfile) -- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) @@ -96,38 +96,26 @@ WARNING: - [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/alpine3.19/Dockerfile) -- [`3.8.20-bookworm`, `3.8-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bookworm/Dockerfile) - -- [`3.8.20-slim-bookworm`, `3.8-slim-bookworm`, `3.8.20-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/slim-bookworm/Dockerfile) - -- [`3.8.20-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bullseye/Dockerfile) - -- [`3.8.20-slim-bullseye`, `3.8-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/slim-bullseye/Dockerfile) - -- [`3.8.20-alpine3.20`, `3.8-alpine3.20`, `3.8.20-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/alpine3.20/Dockerfile) - -- [`3.8.20-alpine3.19`, `3.8-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/alpine3.19/Dockerfile) - ## Shared Tags -- `3.13.0rc3`, `3.13-rc`: +- `3.13.0`, `3.13`, `3`, `latest`: - - [`3.13.0rc3-bookworm`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/bookworm/Dockerfile) - - [`3.13.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0-bookworm`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bookworm/Dockerfile) + - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.13.0rc3-windowsservercore`, `3.13-rc-windowsservercore`: +- `3.13.0-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0rc3-windowsservercore-1809`](https://github.com/docker-library/python/blob/24f7d17744c3bceceb3d60e86c81b2e15a8c3104/3.13-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.12.7`, `3.12`, `3`, `latest`: +- `3.12.7`, `3.12`: - [`3.12.7-bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.7-windowsservercore`, `3.12-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.12.7-windowsservercore`, `3.12-windowsservercore`: - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) @@ -144,10 +132,6 @@ WARNING: - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bookworm/Dockerfile) -- `3.8.20`, `3.8`: - - - [`3.8.20-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.8/bookworm/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/ruby/README.md b/ruby/README.md index b853ea01466f..1927874a3795 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-preview1-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/bookworm/Dockerfile) -- [`3.4.0-preview1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/slim-bookworm/Dockerfile) -- [`3.4.0-preview1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/bullseye/Dockerfile) -- [`3.4.0-preview1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview1-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/alpine3.20/Dockerfile) -- [`3.4.0-preview1-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/alpine3.19/Dockerfile) - [`3.3.5-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/bookworm/Dockerfile) From 09d1b41554ac19403a55742b6fdd00fddc55543f Mon Sep 17 00:00:00 2001 From: pvinh-spike <81987648+pvinh-spike@users.noreply.github.com> Date: Mon, 7 Oct 2024 18:18:46 -0700 Subject: [PATCH 1583/2686] Update content.md Starting on Aerospike 7.2.0.1 release, ubuntu 24.04 is used as base image. --- aerospike/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/content.md b/aerospike/content.md index c0de4649dd37..22636b99fe26 100644 --- a/aerospike/content.md +++ b/aerospike/content.md @@ -169,7 +169,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [ubuntu:22.04](https://hub.docker.com/_/ubuntu). +These images are based on [ubuntu:24.04](https://hub.docker.com/_/ubuntu). ### ee-[version] From c5abc3a91f6ed17ba2ec2355718a75a272bce5db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Oct 2024 09:09:11 -0700 Subject: [PATCH 1584/2686] Run update.sh --- aerospike/README.md | 6 +++--- spark/README.md | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 1695b829a720..b83f5f79eb5a 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.1.0.7`, `ee-7.1.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/9b0b542c4e0e0354a32f338ae2c6fbad19af2924/enterprise/ubuntu22.04/Dockerfile) +- [`ee-7.2.0.1`, `ee-7.2.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/5399d18794233ac6f8cdd8bfa6825b53bb4c1935/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.1.0.7`, `ce-7.1.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/9b0b542c4e0e0354a32f338ae2c6fbad19af2924/community/ubuntu22.04/Dockerfile) +- [`ce-7.2.0.1`, `ce-7.2.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/5399d18794233ac6f8cdd8bfa6825b53bb4c1935/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) @@ -218,7 +218,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke ## Image Versions -These images are based on [ubuntu:22.04](https://hub.docker.com/_/ubuntu). +These images are based on [ubuntu:24.04](https://hub.docker.com/_/ubuntu). ### ee-[version] diff --git a/spark/README.md b/spark/README.md index 8d8b02915503..f58ea04e656f 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,13 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-preview1-scala2.13-java17-python3-ubuntu`, `4.0.0-preview1-python3`, `4.0.0-preview1`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-python3-ubuntu/Dockerfile) +- [`4.0.0-preview2-scala2.13-java21-python3-ubuntu`, `4.0.0-preview2-java21-python3`, `4.0.0-preview2-java21`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-python3-ubuntu/Dockerfile) -- [`4.0.0-preview1-scala2.13-java17-r-ubuntu`, `4.0.0-preview1-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-r-ubuntu/Dockerfile) +- [`4.0.0-preview2-scala2.13-java21-r-ubuntu`, `4.0.0-preview2-java21-r`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-r-ubuntu/Dockerfile) -- [`4.0.0-preview1-scala2.13-java17-ubuntu`, `4.0.0-preview1-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-ubuntu/Dockerfile) +- [`4.0.0-preview2-scala2.13-java21-ubuntu`, `4.0.0-preview2-java21-scala`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-ubuntu/Dockerfile) -- [`4.0.0-preview1-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/4.0.0-preview1/scala2.13-java17-python3-r-ubuntu/Dockerfile) +- [`4.0.0-preview2-scala2.13-java21-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-python3-r-ubuntu/Dockerfile) + +- [`4.0.0-preview2-scala2.13-java17-python3-ubuntu`, `4.0.0-preview2-python3`, `4.0.0-preview2`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-ubuntu/Dockerfile) + +- [`4.0.0-preview2-scala2.13-java17-r-ubuntu`, `4.0.0-preview2-r`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-r-ubuntu/Dockerfile) + +- [`4.0.0-preview2-scala2.13-java17-ubuntu`, `4.0.0-preview2-scala`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-ubuntu/Dockerfile) + +- [`4.0.0-preview2-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-r-ubuntu/Dockerfile) - [`3.5.2-scala2.12-java17-python3-ubuntu`, `3.5.2-java17-python3`, `3.5.2-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-python3-ubuntu/Dockerfile) From 1220865d6fe28758231616f46f2f87cac5e3a4f7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Oct 2024 10:09:01 -0700 Subject: [PATCH 1585/2686] Run update.sh --- neo4j/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index ec3b5dc96db1..bc90b8fa0a2f 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,9 +32,9 @@ WARNING: - [`5.24.1-enterprise-ubi9`, `5.24-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/ubi9/enterprise/Dockerfile) -- [`4.4.37`, `4.4.37-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/7422ac53238f689a26144d3c1c5aee434a07a325/4.4.37/bullseye/community/Dockerfile) +- [`4.4.38`, `4.4.38-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/community/Dockerfile) -- [`4.4.37-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7422ac53238f689a26144d3c1c5aee434a07a325/4.4.37/bullseye/enterprise/Dockerfile) +- [`4.4.38-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 7e7b91c0a1abb3c5381dc9548be36fdbe7b0e69e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Oct 2024 16:09:06 -0700 Subject: [PATCH 1586/2686] Run update.sh --- drupal/README.md | 24 ++++----- hylang/README.md | 98 ++++++++++++++++--------------------- open-liberty/README.md | 54 ++++++++++++-------- tomcat/README.md | 40 +++++++-------- websphere-liberty/README.md | 48 +++++++++++------- wordpress/README.md | 18 +++---- 6 files changed, 147 insertions(+), 135 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 41a2bacd1fcd..2bc8c0705cc4 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -60,29 +60,29 @@ WARNING: - [`10.3.6-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.6-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.8-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.8-php8.3-apache`, `10.2-php8.3-apache`, `10.2.8-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.9-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.9-php8.3-apache`, `10.2-php8.3-apache`, `10.2.9-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.8-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.8-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.9-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.9-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.8-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.9-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.8-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.9-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.8-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.8-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.9-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.9-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.8-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.9-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.8-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.8-php8.2-apache`, `10.2-php8.2-apache`, `10.2.8-php8.2`, `10.2-php8.2`, `10.2.8-apache-bookworm`, `10.2-apache-bookworm`, `10.2.8-apache`, `10.2-apache`, `10.2.8`, `10.2`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.9-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.9-php8.2-apache`, `10.2-php8.2-apache`, `10.2.9-php8.2`, `10.2-php8.2`, `10.2.9-apache-bookworm`, `10.2-apache-bookworm`, `10.2.9-apache`, `10.2-apache`, `10.2.9`, `10.2`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.8-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.8-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.8-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.8-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.9-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.9-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.9-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.9-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.8-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.8-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.9-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.9-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.8-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.8-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.9-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.9-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.8-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.8-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.8-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.8-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.9-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.9-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.9-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.9-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.8-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.8-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b52c5a5665a636ee525acd8062c70be779457411/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.9-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.9-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) diff --git a/hylang/README.md b/hylang/README.md index 483729fedb77..51868495ff5a 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,105 +28,93 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`1.0.0-python3.13-alpine3.19`, `1.0-python3.13-alpine3.19`, `1-python3.13-alpine3.19`, `python3.13-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-alpine3.19) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.8-bookworm`, `1.0-python3.8-bookworm`, `1-python3.8-bookworm`, `python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bookworm) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.8-bullseye`, `1.0-python3.8-bullseye`, `1-python3.8-bullseye`, `python3.8-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bullseye) +- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) -- [`1.0.0-python3.8-alpine3.20`, `1.0-python3.8-alpine3.20`, `1-python3.8-alpine3.20`, `python3.8-alpine3.20`, `1.0.0-python3.8-alpine`, `1.0-python3.8-alpine`, `1-python3.8-alpine`, `python3.8-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-alpine3.20) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.8-alpine3.19`, `1.0-python3.8-alpine3.19`, `1-python3.8-alpine3.19`, `python3.8-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-alpine3.19) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.13-rc-bookworm`, `1.0-python3.13-rc-bookworm`, `1-python3.13-rc-bookworm`, `python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-python3.13-rc-bullseye`, `1.0-python3.13-rc-bullseye`, `1-python3.13-rc-bullseye`, `python3.13-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bullseye) +- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) -- [`1.0.0-python3.13-rc-alpine3.20`, `1.0-python3.13-rc-alpine3.20`, `1-python3.13-rc-alpine3.20`, `python3.13-rc-alpine3.20`, `1.0.0-python3.13-rc-alpine`, `1.0-python3.13-rc-alpine`, `1-python3.13-rc-alpine`, `python3.13-rc-alpine`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.20) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-python3.13-rc-alpine3.19`, `1.0-python3.13-rc-alpine3.19`, `1-python3.13-rc-alpine3.19`, `python3.13-rc-alpine3.19`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-alpine3.19) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`, `1.0-python3.13-rc-windowsservercore-ltsc2022`, `1-python3.13-rc-windowsservercore-ltsc2022`, `python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-rc-windowsservercore-1809`, `1.0-python3.13-rc-windowsservercore-1809`, `1-python3.13-rc-windowsservercore-1809`, `python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) - -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +## Shared Tags -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: -## Shared Tags + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`, `1.0.0`, `1.0`, `1`, `latest`: +- `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.9-bookworm) - -- `1.0.0-python3.8`, `1.0-python3.8`, `1-python3.8`, `python3.8`: - - - [`1.0.0-python3.8-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.8-bookworm) - -- `1.0.0-python3.13-rc`, `1.0-python3.13-rc`, `1-python3.13-rc`, `python3.13-rc`: - - - [`1.0.0-python3.13-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-bookworm) - - [`1.0.0-python3.13-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.python3.13-rc-windowsservercore-1809) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/acccd69f30d10a810b607d67426a35477db24adb/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index f828d2583ae5..dd6d4808ed10 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,47 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/a0f97b0c6abd29915d27a65ea542baeba6025517/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`24.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk8) + +- [`24.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 3ec36cefbec5..6b00e0182677 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -56,45 +56,45 @@ WARNING: - [`10.1.30-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.95-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.95-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.95-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.95`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.96-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.96-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.96-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.96`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.95-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.95-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.95-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.96-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.96-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.96-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.95-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.96-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.95-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.96-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.95-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.95-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.96-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.96-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.95-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.95-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.95-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.96-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.96-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.96-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.95-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.95-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.95-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.96-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.96-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.96-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.95-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.96-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.95-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.96-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.95-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.95-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.96-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.96-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.95-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.95-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.95-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.96-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.96-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.96-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.95-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.95-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.95-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.96-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.96-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.96-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.95-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.96-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.95-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.96-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.95-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.95-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.96-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.96-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.95-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.95-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.95-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.96-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.96-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.96-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.95-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.95-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.95-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.96-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.96-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.96-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.95-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.96-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.95-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.96-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.95-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.95-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/04d4b14dda9ba89a2aa9e14574608e3809ea5bd1/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.96-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.96-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 08365e617342..692df4b4924b 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/62efa702fbb4df3476da85da2312471f8f388093/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`24.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) + +- [`24.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.ibmjava8) + +- [`24.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.openjdk11) + +- [`24.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index cdc9a9930bf7..490798827195 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-beta1-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta1-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-beta2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-beta1-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-beta2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-beta1-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-beta2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-beta1-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta1`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta1-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta1-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-beta2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-beta1-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta1-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-beta2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-beta1-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta1-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-beta2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-beta1-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta1-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-beta2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-beta1-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-beta2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-beta1-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bd76dc3a667476fb94b7e6d10cfafb0aba40cc38/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-beta2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From fadbd987e87434dab50faafbb4aa64998490eceb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Oct 2024 17:09:14 -0700 Subject: [PATCH 1587/2686] Run update.sh --- julia/README.md | 67 +++++++++++++------------------------------------ 1 file changed, 18 insertions(+), 49 deletions(-) diff --git a/julia/README.md b/julia/README.md index b6b531549aee..a3b0040a33c6 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,76 +28,53 @@ WARNING: ## Simple Tags -- [`1.11.0-rc4-bookworm`, `1.11-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bookworm/Dockerfile) +- [`1.11.0-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bookworm/Dockerfile) -- [`1.11.0-rc4-bullseye`, `1.11-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bullseye/Dockerfile) +- [`1.11.0-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bullseye/Dockerfile) -- [`1.11.0-rc4-windowsservercore-ltsc2022`, `1.11-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.0-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-rc4-windowsservercore-1809`, `1.11-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.11.0-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) -- [`1.10.5-bookworm`, `1.10-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) +- [`1.10.5-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) -- [`1.10.5-bullseye`, `1.10-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bullseye/Dockerfile) +- [`1.10.5-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bullseye/Dockerfile) -- [`1.10.5-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.5-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.5-windowsservercore-1809`, `1.10-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) - -- [`1.6.7-bookworm`, `1.6-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - -- [`1.6.7-bullseye`, `1.6-bullseye`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bullseye/Dockerfile) - -- [`1.6.7-alpine3.20`, `1.6-alpine3.20`, `1.6.7-alpine`, `1.6-alpine`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.20/Dockerfile) - -- [`1.6.7-alpine3.19`, `1.6-alpine3.19`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/alpine3.19/Dockerfile) - -- [`1.6.7-windowsservercore-ltsc2022`, `1.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.6.7-windowsservercore-1809`, `1.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) +- [`1.10.5-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `1.11.0-rc4`, `1.11-rc`, `rc`: +- `1.11.0`, `1.11`, `1`, `latest`: - - [`1.11.0-rc4-bookworm`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/bookworm/Dockerfile) - - [`1.11.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-bookworm`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bookworm/Dockerfile) + - [`1.11.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-rc4-windowsservercore`, `1.11-rc-windowsservercore`, `rc-windowsservercore`: +- `1.11.0-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.0-rc4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-rc4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/d3d39c6d5ab17c00942e91b49efba692bc162537/1.11-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.10.5`, `1.10`, `1`, `latest`: +- `1.10.5`, `1.10`: - [`1.10.5-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.5-windowsservercore`, `1.10-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.10.5-windowsservercore`, `1.10-windowsservercore`: - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.6.7`, `1.6`: - - - [`1.6.7-bookworm`](https://github.com/docker-library/julia/blob/2ca33e88b0004e59cbf21dbe73106e96f22a2bab/1.6/bookworm/Dockerfile) - - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - -- `1.6.7-windowsservercore`, `1.6-windowsservercore`: - - - [`1.6.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.6.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/e0d0364c90b544d2d6de097e324ff7cc538613e8/1.6/windows/windowsservercore-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: [https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm32v7`](https://hub.docker.com/r/arm32v7/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) + [`amd64`](https://hub.docker.com/r/amd64/julia/), [`arm64v8`](https://hub.docker.com/r/arm64v8/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`ppc64le`](https://hub.docker.com/r/ppc64le/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/) - **Published image artifact details**: [repo-info repo's `repos/julia/` directory](https://github.com/docker-library/repo-info/blob/master/repos/julia) ([history](https://github.com/docker-library/repo-info/commits/master/repos/julia)) @@ -159,14 +136,6 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](http://julialang.org/) for the software contained in this image. From 50d2fa42b109b8cc6f5ae92c3f89693f4faf6cac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Oct 2024 10:09:05 -0700 Subject: [PATCH 1588/2686] Run update.sh --- traefik/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 7cae20f877bf..1051bbd6ecb8 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.2.0-rc1-windowsservercore-ltsc2022`, `3.2.0-rc1-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.0-rc2-windowsservercore-ltsc2022`, `3.2.0-rc2-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.0-rc1-windowsservercore-1809`, `3.2.0-rc1-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/1809/Dockerfile) +- [`v3.2.0-rc2-windowsservercore-1809`, `3.2.0-rc2-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/1809/Dockerfile) -- [`v3.2.0-rc1-nanoserver-ltsc2022`, `3.2.0-rc1-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.0-rc2-nanoserver-ltsc2022`, `3.2.0-rc2-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.0-rc1`, `3.2.0-rc1`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/c28257b2b3a1e19d1565521e77cd55db2691f831/v3.2/alpine/Dockerfile) +- [`v3.2.0-rc2`, `3.2.0-rc2`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/alpine/Dockerfile) -- [`v3.1.5-windowsservercore-ltsc2022`, `3.1.5-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.6-windowsservercore-ltsc2022`, `3.1.6-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.5-windowsservercore-1809`, `3.1.5-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `comte-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/1809/Dockerfile) +- [`v3.1.6-windowsservercore-1809`, `3.1.6-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/1809/Dockerfile) -- [`v3.1.5-nanoserver-ltsc2022`, `3.1.5-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.6-nanoserver-ltsc2022`, `3.1.6-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.5`, `3.1.5`, `v3.1`, `3.1`, `v3`, `3`, `comte`, `latest`](https://github.com/traefik/traefik-library-image/blob/67a97158e005ef8f2bcbb1b3effe4130b40cdb9a/v3.1/alpine/Dockerfile) +- [`v3.1.6`, `3.1.6`, `v3.1`, `3.1`, `comte`, `v3`, `3`, `latest`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/alpine/Dockerfile) -- [`v2.11.11-windowsservercore-ltsc2022`, `2.11.11-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.12-windowsservercore-ltsc2022`, `2.11.12-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.11-windowsservercore-1809`, `2.11.11-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/1809/Dockerfile) +- [`v2.11.12-windowsservercore-1809`, `2.11.12-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/1809/Dockerfile) -- [`v2.11.11-nanoserver-ltsc2022`, `2.11.11-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.12-nanoserver-ltsc2022`, `2.11.12-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.11`, `2.11.11`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/21f91bdf061ed2e36abf6182da7b8d264758df33/v2.11/alpine/Dockerfile) +- [`v2.11.12`, `2.11.12`, `v2.11`, `2.11`, `mimolette`, `v2`, `2`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 1662b9b7513e342a3e43198d90600371a38b5a62 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Oct 2024 16:09:08 -0700 Subject: [PATCH 1589/2686] Run update.sh --- mongo/README.md | 72 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 8 +++--- tomcat/README.md | 32 ++++++++++----------- 3 files changed, 56 insertions(+), 56 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 0e64d7154c44..d3e9e9844cb8 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,27 +28,27 @@ WARNING: ## Simple Tags -- [`8.0.1-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/Dockerfile) +- [`8.0.1-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/Dockerfile) -- [`8.0.1-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.1-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.1-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.1-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.1-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.1-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.1-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.1-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-1809/Dockerfile) -- [`8.0.0-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/Dockerfile) +- [`7.0.15-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/Dockerfile) -- [`8.0.0-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.15-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.0-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.15-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.0-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.15-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.0-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.15-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-1809/Dockerfile) -- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) +- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/7.0/Dockerfile) - [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -58,7 +58,7 @@ WARNING: - [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.18-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/Dockerfile) +- [`6.0.18-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/6.0/Dockerfile) - [`6.0.18-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -68,7 +68,7 @@ WARNING: - [`6.0.18-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.29-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/Dockerfile) +- [`5.0.29-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/5.0/Dockerfile) - [`5.0.29-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -80,41 +80,41 @@ WARNING: ## Shared Tags -- `8.0.1-rc0`, `8.0-rc`: +- `8.0.1`, `8.0`, `8`, `latest`: - - [`8.0.1-rc0-noble`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/Dockerfile) - - [`8.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.1-noble`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/Dockerfile) + - [`8.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.1-rc0-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.1-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.1-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.1-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.1-rc0-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.1-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.1-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.1-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fcf799e9d04c6c6c551e107944c07357ed1e96c5/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-1809/Dockerfile) -- `8.0.0`, `8.0`, `8`, `latest`: +- `7.0.15-rc1`, `7.0-rc`: - - [`8.0.0-noble`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/Dockerfile) - - [`8.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.15-rc1-jammy`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/Dockerfile) + - [`7.0.15-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.15-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `7.0.15-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`8.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.15-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.15-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.0-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `7.0.15-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`8.0.0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/0223203c85f9e026c05e4f34794f2f5dc719f9b3/8.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.15-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.15-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.14`, `7.0`, `7`: - - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/Dockerfile) + - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/7.0/Dockerfile) - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) @@ -130,7 +130,7 @@ WARNING: - `6.0.18`, `6.0`, `6`: - - [`6.0.18-jammy`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/Dockerfile) + - [`6.0.18-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/6.0/Dockerfile) - [`6.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) @@ -146,7 +146,7 @@ WARNING: - `5.0.29`, `5.0`, `5`: - - [`5.0.29-focal`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/Dockerfile) + - [`5.0.29-focal`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/5.0/Dockerfile) - [`5.0.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 1387661cb194..6c0f29f87678 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.2`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/c632cbc38e0b7d70678ba2cf5bbaba798af27339/4.0/ubuntu/Dockerfile) +- [`4.0.2`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/4d384714be0c4e4c528745136c38b7f89620410f/4.0/ubuntu/Dockerfile) - [`4.0.2-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.2-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c632cbc38e0b7d70678ba2cf5bbaba798af27339/4.0/alpine/Dockerfile) +- [`4.0.2-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/4d384714be0c4e4c528745136c38b7f89620410f/4.0/alpine/Dockerfile) - [`4.0.2-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/1ac53e66c002089bc5cab47554edcaa0087d023f/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/bfcb6a804bb3a46c8601d1b65be0675c9ef82eff/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/1ac53e66c002089bc5cab47554edcaa0087d023f/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 6b00e0182677..a82541f0cc99 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-M26-jdk21-temurin-noble`, `11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11.0.0-M26-jdk21-temurin`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11.0.0-M26-jdk21`, `11.0.0-jdk21`, `11.0-jdk21`, `11.0.0-M26`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.0-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-M26-jre21-temurin-noble`, `11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11.0.0-M26-jre21-temurin`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11.0.0-M26-jre21`, `11.0.0-jre21`, `11.0-jre21`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.0-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.0-M26-jdk21-temurin-jammy`, `11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-M26-jre21-temurin-jammy`, `11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bbd7aa6cde56f0d3a16e79a1951920d58756a466/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.30-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `jdk21-temurin-noble`, `10.1.30-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `jdk21-temurin`, `10.1.30-jdk21`, `10.1-jdk21`, `10-jdk21`, `jdk21`, `10.1.30`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.31-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.31-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.31-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.31`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.30-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `jre21-temurin-noble`, `10.1.30-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `jre21-temurin`, `10.1.30-jre21`, `10.1-jre21`, `10-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.31-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.31-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.31-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.30-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.31-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.30-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.31-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.30-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `jdk17-temurin-noble`, `10.1.30-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.30-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.31-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.31-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.31-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.30-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `jre17-temurin-noble`, `10.1.30-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.30-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.31-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.31-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.31-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.30-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.31-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.30-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.31-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.30-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `jdk11-temurin-noble`, `10.1.30-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.30-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.31-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.31-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.31-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.30-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `jre11-temurin-noble`, `10.1.30-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.30-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.31-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.31-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.31-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.30-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.31-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.30-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/447a1a0a28f1efe4a557444bd0255f8ec308bf4a/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.31-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.96-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.96-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.96-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.96`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/temurin-noble/Dockerfile) From bdea808a86dcb75563d2da0c2e9c3107c5eaa921 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Oct 2024 10:09:02 -0700 Subject: [PATCH 1590/2686] Run update.sh --- rakudo-star/README.md | 4 ++-- spark/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index f9257dc0cca3..96af99eec204 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.08`, `bookworm`](https://github.com/Raku/docker/blob/fb46bca51e03649ee14c3b1de3ecf8b4bb096e43/2024.08/bookworm/Dockerfile) +- [`latest`, `2024.09`, `bookworm`](https://github.com/Raku/docker/blob/c2a2720a8b711e4ea8a0f27e89f9d07c7b388a1f/2024.09/bookworm/Dockerfile) -- [`alpine`, `2024.08-alpine`](https://github.com/Raku/docker/blob/fb46bca51e03649ee14c3b1de3ecf8b4bb096e43/2024.08/alpine/Dockerfile) +- [`alpine`, `2024.09-alpine`](https://github.com/Raku/docker/blob/c2a2720a8b711e4ea8a0f27e89f9d07c7b388a1f/2024.09/alpine/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index f58ea04e656f..1f3a40f6a3c5 100644 --- a/spark/README.md +++ b/spark/README.md @@ -40,21 +40,21 @@ WARNING: - [`4.0.0-preview2-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java17-python3-ubuntu`, `3.5.2-java17-python3`, `3.5.2-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java17-python3-ubuntu`, `3.5.3-java17-python3`, `3.5.3-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java17-r-ubuntu`, `3.5.2-java17-r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java17-r-ubuntu`, `3.5.3-java17-r`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java17-ubuntu`, `3.5.2-java17-scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java17-ubuntu`, `3.5.3-java17-scala`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java11-python3-ubuntu`, `3.5.2-python3`, `3.5.2`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java11-python3-ubuntu`, `3.5.3-python3`, `3.5.3`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java11-r-ubuntu`, `3.5.2-r`, `r`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java11-r-ubuntu`, `3.5.3-r`, `r`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java11-ubuntu`, `3.5.2-scala`, `scala`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java11-ubuntu`, `3.5.3-scala`, `scala`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.2-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/b9f1f8e8ebed1959c2be3864a114b52f67519092/3.5.2/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-python3-r-ubuntu/Dockerfile) - [`3.4.3-scala2.12-java11-python3-ubuntu`, `3.4.3-python3`, `3.4.3`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-ubuntu/Dockerfile) From 062ed81e14c9a5bf04c25b9344d36efc108df4f7 Mon Sep 17 00:00:00 2001 From: Laurent Goderre Date: Thu, 10 Oct 2024 11:23:55 -0400 Subject: [PATCH 1591/2686] Make memcached configuration section more generic --- memcached/content.md | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/memcached/content.md b/memcached/content.md index 6f13f6942d9d..ddabc4fc8e0e 100644 --- a/memcached/content.md +++ b/memcached/content.md @@ -12,12 +12,30 @@ Memcached's APIs provide a very large hash table distributed across multiple mac $ docker run --name my-memcache -d %%IMAGE%% ``` -## Setting Memory Usage +### Configuration + +To customize the configuration of the memcached server, first obtain the upstream configuration options from the container: ```console -$ docker run --name my-memcache -d %%IMAGE%% memcached -m 64 +$ docker run --rm %%IMAGE%% -h ``` -This would set the Memcached server to use 64 megabytes for storage. +Using `docker run`: + +```console +$ docker run --name my-memcache -d %%IMAGE%% memcached --memory-limit=64 +``` + +or using Docker Compose: + +```yaml +services: + memcached: + image: %%IMAGE%% + command: + - --conn-limit=1024 + - --memory-limit=64 + - --threads=4 +``` For infomation on configuring your memcached server, see the extensive [wiki](https://github.com/memcached/memcached/wiki). From 5bf761104ebe98fb4355c2a60dcbd880785de3d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Oct 2024 12:09:00 -0700 Subject: [PATCH 1592/2686] Run update.sh --- mediawiki/README.md | 18 +++++++++--------- memcached/README.md | 24 +++++++++++++++++++++--- 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index 2c6b379fc24d..b4f58e1edd80 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.42.3`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/apache/Dockerfile) +- [`1.42.3`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/apache/Dockerfile) -- [`1.42.3-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/fpm/Dockerfile) +- [`1.42.3-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/fpm/Dockerfile) -- [`1.42.3-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.42/fpm-alpine/Dockerfile) +- [`1.42.3-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/fpm-alpine/Dockerfile) -- [`1.41.4`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/apache/Dockerfile) +- [`1.41.4`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/apache/Dockerfile) -- [`1.41.4-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/fpm/Dockerfile) +- [`1.41.4-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/fpm/Dockerfile) -- [`1.41.4-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.41/fpm-alpine/Dockerfile) +- [`1.41.4-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/fpm-alpine/Dockerfile) -- [`1.39.10`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/apache/Dockerfile) +- [`1.39.10`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/apache/Dockerfile) -- [`1.39.10-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/fpm/Dockerfile) +- [`1.39.10-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/fpm/Dockerfile) -- [`1.39.10-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/0b41a035fabebeda3d6b4ccc39e2c5fc3ce1cc19/1.39/fpm-alpine/Dockerfile) +- [`1.39.10-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index de1bc89e634d..59afca9e9fc9 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -61,13 +61,31 @@ Memcached's APIs provide a very large hash table distributed across multiple mac $ docker run --name my-memcache -d memcached ``` -## Setting Memory Usage +### Configuration + +To customize the configuration of the memcached server, first obtain the upstream configuration options from the container: ```console -$ docker run --name my-memcache -d memcached memcached -m 64 +$ docker run --rm memcached -h ``` -This would set the Memcached server to use 64 megabytes for storage. +Using `docker run`: + +```console +$ docker run --name my-memcache -d memcached memcached --memory-limit=64 +``` + +or using Docker Compose: + +```yaml +services: + memcached: + image: memcached + command: + - --conn-limit=1024 + - --memory-limit=64 + - --threads=4 +``` For infomation on configuring your memcached server, see the extensive [wiki](https://github.com/memcached/memcached/wiki). From 9dfb7fd4329d08555440912851e8246f842e0fa3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Oct 2024 15:09:03 -0700 Subject: [PATCH 1593/2686] Run update.sh --- php/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/php/README.md b/php/README.md index e2c5016e5cb4..b81a046ee2c0 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC1-bookworm`, `8.4-rc-bookworm`, `8.4.0RC1-cli`, `8.4-rc-cli`, `8.4.0RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0RC2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC2-bookworm`, `8.4-rc-bookworm`, `8.4.0RC2-cli`, `8.4-rc-cli`, `8.4.0RC2`, `8.4-rc`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0RC2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0RC2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0RC2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0RC2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0RC2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0RC2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0RC2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0RC2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC2-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0RC2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0RC2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0RC1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0RC2-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC2-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0RC1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0RC2-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0RC1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0RC2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/zts/Dockerfile) - [`8.3.12-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.12-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.12-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.12`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/cli/Dockerfile) From cac31f17c2472fae71de9b92a83a06bd02cc357d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Oct 2024 17:09:04 -0700 Subject: [PATCH 1594/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 954218f52faf..4f994bf8e4eb 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/7dc52a5a72593f896ed9f7c27062a4dda8466196/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7-slim-fips/Dockerfile) # Quick reference (cont.) From b9ac3b631e82399477dd12a906f6bf68b3d872b3 Mon Sep 17 00:00:00 2001 From: Romain Bioteau Date: Fri, 5 Apr 2024 16:04:10 +0200 Subject: [PATCH 1595/2686] update Bonita Platform and Update Tool versions --- bonita/content.md | 25 ++++++++++++------------- bonita/stack.yml | 34 ++++++++-------------------------- 2 files changed, 20 insertions(+), 39 deletions(-) diff --git a/bonita/content.md b/bonita/content.md index acc281c83fcc..b80f1b6a4331 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -31,10 +31,10 @@ From Bonita 2022.1 onwards, the Bonita docker image does not include configurati Therefore the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: ```bash -docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:12.6 +docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 ``` -This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/12), which can be further adapted/customized to suit your needs. +This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/16), which can be further adapted/customized to suit your needs. ## %%STACK%% @@ -66,7 +66,7 @@ docker run --name=bonita -h --env-file=env.txt -d -p 8080:8080 %%IMAG ## Start Bonita with custom security credentials ```bash -docker run --name=bonita -h -e "TENANT_LOGIN=tech_user" -e "TENANT_PASSWORD=secret" -e "PLATFORM_LOGIN=pfadmin" -e "PLATFORM_PASSWORD=pfsecret" -d -p 8080:8080 %%IMAGE%% +docker run --name=bonita -h -e "BONITA_RUNTIME_ADMIN_USERNAME=tech_user" -e "BONITA_RUNTIME_ADMIN_PASSWORD=secret" -e "PLATFORM_LOGIN=pfadmin" -e "PLATFORM_PASSWORD=pfsecret" -d -p 8080:8080 %%IMAGE%% ``` Now you can access the Bonita Runtime on localhost:8080/bonita and login using: tech_user / secret @@ -92,11 +92,11 @@ This optional environment variable is used in conjunction with PLATFORM_PASSWORD This environment variable is recommended for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. -### TENANT_LOGIN +### BONITA_RUNTIME_ADMIN_USERNAME -This optional environment variable is used in conjunction with TENANT_PASSWORD to define the username for the tenant administrator. If it is not specified, the default username `install` will be used. +This optional environment variable is used in conjunction with BONITA_RUNTIME_ADMIN_PASSWORD to define the username for the tenant administrator. If it is not specified, the default username `install` will be used. -### TENANT_PASSWORD +### BONITA_RUNTIME_ADMIN_PASSWORD This environment variable is recommended for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. @@ -190,7 +190,7 @@ These variables are used in conjunction to define how Bonita should access the [ The logger can be configured by mounting a volume on folder `/opt/bonita/conf/logs` containing the configuration files. -the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/7.14.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/7.14.0/docker/files/log4j2/log4j2-appenders.xml) +the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/docker/files/log4j2/log4j2-appenders.xml) Any change made to one of this 2 files is automatically hot-reloaded and taken into account immediately. @@ -212,7 +212,7 @@ $ docker run -e HTTP_API=true -e HTTP_API_PASSWORD="My-Cust0m_S3cR3T" --name bo ## Update from an earlier version of Bonita -For updating from a version before 7.10.0, please refer to the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita) +For updating from a version before 7.10.0, please refer to the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/update-with-migration-tool) - Stop the container to perform a database backup @@ -246,17 +246,16 @@ For updating from a version before 7.10.0, please refer to the [documentation](h $ cat /tmp/bonitadb.sql | psql -U newbonitauser -h 172.17.0.26 newbonitadb ``` -- Retrieve the last update tool +- Retrieve the last update tool archive from https://www.bonitasoft.com/downloads ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.2-u0/bonita-update-tool-3.3.0.zip - unzip bonita-update-tool-3.3.0.zip + unzip bonita-update-tool-3.6.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.3.0 + $ cd bonita-update-tool-3.6.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -285,7 +284,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2023.2-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2024.3-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). diff --git a/bonita/stack.yml b/bonita/stack.yml index 97994e559a26..80eab9893445 100644 --- a/bonita/stack.yml +++ b/bonita/stack.yml @@ -1,16 +1,13 @@ -version: '3' - services: db: - image: bonitasoft/bonita-postgres:12.6 + image: bonitasoft/bonita-postgres:16.4 + ports: + - 5432:5432 environment: POSTGRES_PASSWORD: example restart: always - command: - - -c - - max_prepared_transactions=100 bonita: - image: bonita:7.14.0 + image: bonita:2024.3 hostname: custom-hostname.example.com ports: - 8080:8080 @@ -24,26 +21,11 @@ services: - BIZ_DB_NAME=business_data - BIZ_DB_USER=business_data - BIZ_DB_PASS=bpm - - TENANT_LOGIN=tech_user - - TENANT_PASSWORD=secret + - BONITA_RUNTIME_ADMIN_USERNAME=tech_user + - BONITA_RUNTIME_ADMIN_PASSWORD=secret - PLATFORM_LOGIN=pfadmin - PLATFORM_PASSWORD=pfsecret restart: on-failure:2 depends_on: - - db - entrypoint: - - bash - - -c - - | - set -e - echo 'Waiting for PostgreSQL to be available' - maxTries=10 - while [ "$$maxTries" -gt 0 ] && [ $$(echo 'QUIT' | nc -w 1 "$$DB_HOST" 5432; echo "$$?") -gt 0 ]; do - sleep 1 - let maxTries-- - done - if [ "$$maxTries" -le 0 ]; then - echo >&2 'error: unable to contact Postgres after 10 tries' - exit 1 - fi - exec /opt/files/startup.sh /opt/bonita/server/bin/catalina.sh run + db: + condition: service_healthy From 2cee90d0e90a5500c7dce02c06bd615fa21ec085 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Fri, 11 Oct 2024 14:39:30 +0200 Subject: [PATCH 1596/2686] docs: update Ubuntu content.md with "unminimize" instructions --- ubuntu/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ubuntu/content.md b/ubuntu/content.md index b4f498c168ee..c14741323ee4 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -28,6 +28,10 @@ RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* ENV LANG en_US.utf8 ``` +## Unminimize + +Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/oracular-oriole-release-notes/44878#unminimize), the `unminimize` command will no longer be shipped by default on all minimal images. It has now been moved to a dedicated package which can be installed via `apt-get install -y unminimize`. + # How is the rootfs built? The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: From fddd47b1e4583563a0370e6d75127eb6ec4e6954 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Fri, 11 Oct 2024 14:43:26 +0200 Subject: [PATCH 1597/2686] docs: fix typo in Ubuntu content.md --- ubuntu/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index c14741323ee4..3da70cb11f9f 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -30,7 +30,7 @@ ENV LANG en_US.utf8 ## Unminimize -Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/oracular-oriole-release-notes/44878#unminimize), the `unminimize` command will no longer be shipped by default on all minimal images. It has now been moved to a dedicated package which can be installed via `apt-get install -y unminimize`. +Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/oracular-oriole-release-notes/44878#unminimize), the `unminimize` command will no longer be shipped by default on minimal images. It has now been moved to a dedicated package which can be installed via `apt-get install -y unminimize`. # How is the rootfs built? From 8c6d519293b32a5984600e07b668263be581732d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Oct 2024 10:09:11 -0700 Subject: [PATCH 1598/2686] Run update.sh --- nextcloud/README.md | 18 +++++++-------- php/README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++ ubuntu/README.md | 4 ++++ 3 files changed, 69 insertions(+), 9 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 6bcef8bbef64..43d17980e6d2 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.10-apache`, `28.0-apache`, `28-apache`, `28.0.10`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/apache/Dockerfile) +- [`28.0.11-apache`, `28.0-apache`, `28-apache`, `28.0.11`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/apache/Dockerfile) -- [`28.0.10-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/fpm/Dockerfile) +- [`28.0.11-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/fpm/Dockerfile) -- [`28.0.10-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/28/fpm-alpine/Dockerfile) +- [`28.0.11-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/fpm-alpine/Dockerfile) -- [`29.0.7-apache`, `29.0-apache`, `29-apache`, `stable-apache`, `production-apache`, `29.0.7`, `29.0`, `29`, `stable`, `production`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/apache/Dockerfile) +- [`29.0.8-apache`, `29.0-apache`, `29-apache`, `29.0.8`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/apache/Dockerfile) -- [`29.0.7-fpm`, `29.0-fpm`, `29-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/fpm/Dockerfile) +- [`29.0.8-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/fpm/Dockerfile) -- [`29.0.7-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/29/fpm-alpine/Dockerfile) +- [`29.0.8-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/fpm-alpine/Dockerfile) -- [`30.0.0-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.0`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/apache/Dockerfile) +- [`30.0.0-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.0`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/apache/Dockerfile) -- [`30.0.0-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/fpm/Dockerfile) +- [`30.0.0-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/fpm/Dockerfile) -- [`30.0.0-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/30b570f0b553736d63dc63cf487ff1e5e5331474/30/fpm-alpine/Dockerfile) +- [`30.0.0-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index b81a046ee2c0..851ce0309a85 100644 --- a/php/README.md +++ b/php/README.md @@ -52,6 +52,34 @@ WARNING: - [`8.4.0RC2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.3.13RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.13RC1-bookworm`, `8.3-rc-bookworm`, `8.3.13RC1-cli`, `8.3-rc-cli`, `8.3.13RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.13RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.13RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.13RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.13RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.13RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.13RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.13RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.13RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.13RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.13RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.13RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.13RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.13RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.13RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.13RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.13RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.13RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.13RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.13RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.13RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.13RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.13RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.13RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/zts/Dockerfile) + - [`8.3.12-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.12-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.12-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.12`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/cli/Dockerfile) - [`8.3.12-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.12-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/apache/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.3.12-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.25RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.25RC1-bookworm`, `8.2-rc-bookworm`, `8.2.25RC1-cli`, `8.2-rc-cli`, `8.2.25RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.25RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.25RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.25RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.25RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.25RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.25RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.25RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.25RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.25RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.25RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.25RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.25RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.25RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.25RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.25RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.25RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.25RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.25RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.25RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.25RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.25RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.25RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.25RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.24-cli-bookworm`, `8.2-cli-bookworm`, `8.2.24-bookworm`, `8.2-bookworm`, `8.2.24-cli`, `8.2-cli`, `8.2.24`, `8.2`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/cli/Dockerfile) - [`8.2.24-apache-bookworm`, `8.2-apache-bookworm`, `8.2.24-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/apache/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 5b653b7c842b..c84e5f3eaa18 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -81,6 +81,10 @@ RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* ENV LANG en_US.utf8 ``` +## Unminimize + +Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/oracular-oriole-release-notes/44878#unminimize), the `unminimize` command will no longer be shipped by default on minimal images. It has now been moved to a dedicated package which can be installed via `apt-get install -y unminimize`. + # How is the rootfs built? The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: From 63607d747480db66e14701eaeaa75f245d92139f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Oct 2024 11:09:13 -0700 Subject: [PATCH 1599/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index ee0858434307..5f93fb223d0f 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-18-jdk-oraclelinux9`, `24-ea-18-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-18-jdk-oracle`, `24-ea-18-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-19-jdk-oraclelinux9`, `24-ea-19-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-19-jdk-oracle`, `24-ea-19-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-18-jdk-oraclelinux8`, `24-ea-18-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-19-jdk-oraclelinux8`, `24-ea-19-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-18-jdk-bookworm`, `24-ea-18-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/bookworm/Dockerfile) +- [`24-ea-19-jdk-bookworm`, `24-ea-19-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/bookworm/Dockerfile) -- [`24-ea-18-jdk-slim-bookworm`, `24-ea-18-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-18-jdk-slim`, `24-ea-18-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-19-jdk-slim-bookworm`, `24-ea-19-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-19-jdk-slim`, `24-ea-19-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-18-jdk-bullseye`, `24-ea-18-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/bullseye/Dockerfile) +- [`24-ea-19-jdk-bullseye`, `24-ea-19-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/bullseye/Dockerfile) -- [`24-ea-18-jdk-slim-bullseye`, `24-ea-18-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-19-jdk-slim-bullseye`, `24-ea-19-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-18-jdk-windowsservercore-ltsc2022`, `24-ea-18-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-19-jdk-windowsservercore-ltsc2022`, `24-ea-19-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-18-jdk-windowsservercore-1809`, `24-ea-18-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-19-jdk-windowsservercore-1809`, `24-ea-19-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-18-jdk-nanoserver-1809`, `24-ea-18-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-19-jdk-nanoserver-1809`, `24-ea-19-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-18-jdk`, `24-ea-18`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-19-jdk`, `24-ea-19`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-18-jdk-windowsservercore`, `24-ea-18-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-19-jdk-windowsservercore`, `24-ea-19-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-18-jdk-nanoserver`, `24-ea-18-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-19-jdk-nanoserver`, `24-ea-19-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6a15ad904559ef795b2b5156f355d07dac259e8a/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From b2fb7657715b11a899cd47d372ac6a9d886b4617 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Oct 2024 16:09:12 -0700 Subject: [PATCH 1600/2686] Run update.sh --- ghost/README.md | 4 ++-- ubuntu/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 99604d8ade55..0cda2e11d11a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.96.0`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5573c66d815671c4b6ff873c741e92224982a142/5/debian/Dockerfile) +- [`5.96.1`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/875b49aa4d7fde32b6708f43ddd5f1052d5be7d7/5/debian/Dockerfile) -- [`5.96.0-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5573c66d815671c4b6ff873c741e92224982a142/5/alpine/Dockerfile) +- [`5.96.1-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/875b49aa4d7fde32b6708f43ddd5f1052d5be7d7/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index c84e5f3eaa18..f8008332651a 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,9 +28,9 @@ WARNING: - [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20240904.1`, `noble`, `latest`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20240904.1-dae9d66c&id=dae9d66c89aece3c1df8a177a14c4a359938886c) +- [`24.04`, `noble-20241009`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241009-997f6096&id=997f60964742b54aed111e647059906b374d51cc) -- [`24.10`, `oracular-20240918`, `oracular`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20240918-38d6108e&id=38d6108ef2fa73d5939a96737e4f080285b67cbd) +- [`24.10`, `oracular-20241009`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241009-71a6e10d&id=71a6e10d9d17f0baa437a234367e8e16406bd3c2) # Quick reference (cont.) From 87ddec4bd5e448a97ce28ffd347971af0eba6ef5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Oct 2024 10:09:27 -0700 Subject: [PATCH 1601/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- swipl/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 828d2aa08c68..fd4362def4fe 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.base) +- [`latest`, `base`, `base-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.base) -- [`base-devel`, `base-devel-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241006.0.268140`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2541ed2357f2de026af2a2e5c26742a1a579572/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 53a5f8b7af9f..826314326934 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/36f7744256f01cfa1b0a90fb6999d3f7507af979/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/07ecdcda48354fb87bea40971e9f49b6eb9fcfcc/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index c1af0774afe8..49786969a5f0 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.11`](https://github.com/SWI-Prolog/docker-swipl/blob/c4ed88e26af240b60a82a3aebe1844f5590b0fef/9.3.11/bookworm/Dockerfile) +- [`latest`, `9.3.13`](https://github.com/SWI-Prolog/docker-swipl/blob/10c9028b9ae784dcf50efad271084887c470b150/9.3.13/bookworm/Dockerfile) -- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/c4ed88e26af240b60a82a3aebe1844f5590b0fef/9.2.7/bookworm/Dockerfile) +- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/10c9028b9ae784dcf50efad271084887c470b150/9.2.7/bookworm/Dockerfile) # Quick reference (cont.) From 80d6a04d80e2633e0982a93575e0ea83ed7d77ab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Oct 2024 17:09:24 -0700 Subject: [PATCH 1602/2686] Run update.sh --- bash/README.md | 2 +- bonita/README.md | 65 +++++++++++++++++---------------------------- mysql/README.md | 8 +++--- neo4j/README.md | 8 +++--- rabbitmq/README.md | 4 +-- ubuntu/README.md | 4 +-- wordpress/README.md | 36 ++++++++++++------------- 7 files changed, 55 insertions(+), 72 deletions(-) diff --git a/bash/README.md b/bash/README.md index b9efaf0851db..aa2da346ee66 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240927`, `devel`, `devel-20240927-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/bea8b4f361686231e11d5f4e7dd61b83e52391cd/devel/Dockerfile) +- [`devel-20241012`, `devel`, `devel-20241012-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/605dec0095eade51e181fc7e9e5c0ff4bca0f39c/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/bonita/README.md b/bonita/README.md index d2a866c5e905..fe6d48ceeb2d 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -28,7 +28,9 @@ WARNING: - [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`](https://github.com/bonitasoft/bonita-distrib/blob/31dcebbf22ebcce11f8e3a9b9444802136c36c03/docker/Dockerfile) -- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/397824cf4f302c37f3534908728a2b8321a31565/docker/Dockerfile) +- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`](https://github.com/bonitasoft/bonita-distrib/blob/397824cf4f302c37f3534908728a2b8321a31565/docker/Dockerfile) + +- [`2024.3-u0`, `2024.3`, `10.2.0`, `10.2`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/634a6e462dbcc7da8ec7ed47adf419b9a24bf744/docker/Dockerfile) # Quick reference (cont.) @@ -82,29 +84,26 @@ From Bonita 2022.1 onwards, the Bonita docker image does not include configurati Therefore the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: ```bash -docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:12.6 +docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 ``` -This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/12), which can be further adapted/customized to suit your needs. +This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/16), which can be further adapted/customized to suit your needs. ## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) Example `docker-compose.yml` for `bonita`: ```yaml -version: '3' - services: db: - image: bonitasoft/bonita-postgres:12.6 + image: bonitasoft/bonita-postgres:16.4 + ports: + - 5432:5432 environment: POSTGRES_PASSWORD: example restart: always - command: - - -c - - max_prepared_transactions=100 bonita: - image: bonita:7.14.0 + image: bonita:2024.3 hostname: custom-hostname.example.com ports: - 8080:8080 @@ -118,32 +117,17 @@ services: - BIZ_DB_NAME=business_data - BIZ_DB_USER=business_data - BIZ_DB_PASS=bpm - - TENANT_LOGIN=tech_user - - TENANT_PASSWORD=secret + - BONITA_RUNTIME_ADMIN_USERNAME=tech_user + - BONITA_RUNTIME_ADMIN_PASSWORD=secret - PLATFORM_LOGIN=pfadmin - PLATFORM_PASSWORD=pfsecret restart: on-failure:2 depends_on: - - db - entrypoint: - - bash - - -c - - | - set -e - echo 'Waiting for PostgreSQL to be available' - maxTries=10 - while [ "$$maxTries" -gt 0 ] && [ $$(echo 'QUIT' | nc -w 1 "$$DB_HOST" 5432; echo "$$?") -gt 0 ]; do - sleep 1 - let maxTries-- - done - if [ "$$maxTries" -le 0 ]; then - echo >&2 'error: unable to contact Postgres after 10 tries' - exit 1 - fi - exec /opt/files/startup.sh /opt/bonita/server/bin/catalina.sh run + db: + condition: service_healthy ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/d14f7b96a6cdcb815f50ba4244bf799f6127770f/bonita/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/b9ac3b631e82399477dd12a906f6bf68b3d872b3/bonita/stack.yml) Run `docker stack deploy -c stack.yml bonita` (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). @@ -173,7 +157,7 @@ docker run --name=bonita -h --env-file=env.txt -d -p 8080:8080 bonita ## Start Bonita with custom security credentials ```bash -docker run --name=bonita -h -e "TENANT_LOGIN=tech_user" -e "TENANT_PASSWORD=secret" -e "PLATFORM_LOGIN=pfadmin" -e "PLATFORM_PASSWORD=pfsecret" -d -p 8080:8080 bonita +docker run --name=bonita -h -e "BONITA_RUNTIME_ADMIN_USERNAME=tech_user" -e "BONITA_RUNTIME_ADMIN_PASSWORD=secret" -e "PLATFORM_LOGIN=pfadmin" -e "PLATFORM_PASSWORD=pfsecret" -d -p 8080:8080 bonita ``` Now you can access the Bonita Runtime on localhost:8080/bonita and login using: tech_user / secret @@ -199,11 +183,11 @@ This optional environment variable is used in conjunction with PLATFORM_PASSWORD This environment variable is recommended for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. -### TENANT_LOGIN +### BONITA_RUNTIME_ADMIN_USERNAME -This optional environment variable is used in conjunction with TENANT_PASSWORD to define the username for the tenant administrator. If it is not specified, the default username `install` will be used. +This optional environment variable is used in conjunction with BONITA_RUNTIME_ADMIN_PASSWORD to define the username for the tenant administrator. If it is not specified, the default username `install` will be used. -### TENANT_PASSWORD +### BONITA_RUNTIME_ADMIN_PASSWORD This environment variable is recommended for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. @@ -297,7 +281,7 @@ These variables are used in conjunction to define how Bonita should access the [ The logger can be configured by mounting a volume on folder `/opt/bonita/conf/logs` containing the configuration files. -the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/7.14.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/7.14.0/docker/files/log4j2/log4j2-appenders.xml) +the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/docker/files/log4j2/log4j2-appenders.xml) Any change made to one of this 2 files is automatically hot-reloaded and taken into account immediately. @@ -319,7 +303,7 @@ $ docker run -e HTTP_API=true -e HTTP_API_PASSWORD="My-Cust0m_S3cR3T" --name bo ## Update from an earlier version of Bonita -For updating from a version before 7.10.0, please refer to the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita) +For updating from a version before 7.10.0, please refer to the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/update-with-migration-tool) - Stop the container to perform a database backup @@ -353,17 +337,16 @@ For updating from a version before 7.10.0, please refer to the [documentation](h $ cat /tmp/bonitadb.sql | psql -U newbonitauser -h 172.17.0.26 newbonitadb ``` -- Retrieve the last update tool +- Retrieve the last update tool archive from https://www.bonitasoft.com/downloads ```console - wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/2023.2-u0/bonita-update-tool-3.3.0.zip - unzip bonita-update-tool-3.3.0.zip + unzip bonita-update-tool-3.6.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.3.0 + $ cd bonita-update-tool-3.6.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -392,7 +375,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2023.2-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2024.3-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). diff --git a/mysql/README.md b/mysql/README.md index ba03b012affe..a3c079bafd19 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.0.1`, `9.0`, `9`, `innovation`, `latest`, `9.0.1-oraclelinux9`, `9.0-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.0.1-oracle`, `9.0-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/a482468640c602ccd8a7c86a4c7422f18a307326/innovation/Dockerfile.oracle) +- [`9.1.0`, `9.1`, `9`, `innovation`, `latest`, `9.1.0-oraclelinux9`, `9.1-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.1.0-oracle`, `9.1-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/b7333451d7be9f066e43f9612e6bbe3751e548f1/innovation/Dockerfile.oracle) -- [`8.4.2`, `8.4`, `8`, `lts`, `8.4.2-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.2-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/ea8ec8343c4540ac52e8bba94b5a531e298ff700/8.4/Dockerfile.oracle) +- [`8.4.3`, `8.4`, `8`, `lts`, `8.4.3-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.3-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/8a0100a365707fa3e59d5b23defc64b9314c4bc7/8.4/Dockerfile.oracle) -- [`8.0.39`, `8.0`, `8.0.39-oraclelinux9`, `8.0-oraclelinux9`, `8.0.39-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/3e6dfd03b956727c7fb5b30360512a11751a3e9d/8.0/Dockerfile.oracle) +- [`8.0.40`, `8.0`, `8.0.40-oraclelinux9`, `8.0-oraclelinux9`, `8.0.40-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/090eb25ac69bca920fc5320484bc35aac92a8143/8.0/Dockerfile.oracle) -- [`8.0.39-bookworm`, `8.0-bookworm`, `8.0.39-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/3e6dfd03b956727c7fb5b30360512a11751a3e9d/8.0/Dockerfile.debian) +- [`8.0.40-bookworm`, `8.0-bookworm`, `8.0.40-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/090eb25ac69bca920fc5320484bc35aac92a8143/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index bc90b8fa0a2f..c0b55e09abe3 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.24.1-community-bullseye`, `5.24-community-bullseye`, `5-community-bullseye`, `5.24.1-community`, `5.24-community`, `5-community`, `5.24.1-bullseye`, `5.24-bullseye`, `5-bullseye`, `5.24.1`, `5.24`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/bullseye/community/Dockerfile) +- [`5.24.2-community-bullseye`, `5.24-community-bullseye`, `5-community-bullseye`, `5.24.2-community`, `5.24-community`, `5-community`, `5.24.2-bullseye`, `5.24-bullseye`, `5-bullseye`, `5.24.2`, `5.24`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/bullseye/community/Dockerfile) -- [`5.24.1-enterprise-bullseye`, `5.24-enterprise-bullseye`, `5-enterprise-bullseye`, `5.24.1-enterprise`, `5.24-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/bullseye/enterprise/Dockerfile) +- [`5.24.2-enterprise-bullseye`, `5.24-enterprise-bullseye`, `5-enterprise-bullseye`, `5.24.2-enterprise`, `5.24-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/bullseye/enterprise/Dockerfile) -- [`5.24.1-community-ubi9`, `5.24-community-ubi9`, `5-community-ubi9`, `5.24.1-ubi9`, `5.24-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/ubi9/community/Dockerfile) +- [`5.24.2-community-ubi9`, `5.24-community-ubi9`, `5-community-ubi9`, `5.24.2-ubi9`, `5.24-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/ubi9/community/Dockerfile) -- [`5.24.1-enterprise-ubi9`, `5.24-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b38cae5fc959dd046cfa75bc48248f0ec9d2798b/5.24.1/ubi9/enterprise/Dockerfile) +- [`5.24.2-enterprise-ubi9`, `5.24-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/ubi9/enterprise/Dockerfile) - [`4.4.38`, `4.4.38-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/community/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6c0f29f87678..de61781819f0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -40,11 +40,11 @@ WARNING: - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/ubuntu/Dockerfile) +- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/20cfa9c4feae1c23ebcbe6817167f9430639d545/3.12/ubuntu/Dockerfile) - [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/ubuntu/management/Dockerfile) -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/444c58b5b51433019a9422737ee98b05adcf7e06/3.12/alpine/Dockerfile) +- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/20cfa9c4feae1c23ebcbe6817167f9430639d545/3.12/alpine/Dockerfile) - [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/alpine/management/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index f8008332651a..d95229efc5b1 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20240918`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20240918-88c5b09e&id=88c5b09e2751b09cb08e958e3f826bb7322e41bc) +- [`20.04`, `focal-20241011`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20241011-2dc0aae1&id=2dc0aae17c912aa6ae81e4c4bbc7277692d67bae) - [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20241009`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241009-997f6096&id=997f60964742b54aed111e647059906b374d51cc) +- [`24.04`, `noble-20241011`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241011-494cd4d4&id=494cd4d4ce68c2299acaca9d1591e21c45279864) - [`24.10`, `oracular-20241009`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241009-71a6e10d&id=71a6e10d9d17f0baa437a234367e8e16406bd3c2) diff --git a/wordpress/README.md b/wordpress/README.md index 490798827195..4168dd99bfbd 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/apache/Dockerfile) +- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/apache/Dockerfile) -- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/fpm/Dockerfile) +- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/fpm/Dockerfile) -- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/apache/Dockerfile) +- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/apache/Dockerfile) -- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/fpm/Dockerfile) +- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/fpm/Dockerfile) -- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/apache/Dockerfile) +- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/apache/Dockerfile) -- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/fpm/Dockerfile) +- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/fpm/Dockerfile) -- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/d6690c71a24ad7a434d1de15f382c41279932fc3/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-beta2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-beta3-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta3-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-beta2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-beta3-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-beta2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-beta3-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-beta2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-beta3-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta3`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta3-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta3-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-beta2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-beta3-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta3-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-beta2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-beta3-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta3-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-beta2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-beta3-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta3-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-beta2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-beta3-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-beta2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c00b7275ea045343417e28b94bfd9d21ddf73a14/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-beta3-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From ba5ef9eea38dfc7dfbde38a4c02cda7476697bf2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 11:09:24 -0700 Subject: [PATCH 1603/2686] Run update.sh --- aerospike/README.md | 4 +- amazoncorretto/README.md | 110 +++++++++++++++++---------------------- joomla/README.md | 48 ++++++----------- oraclelinux/README.md | 18 +++---- 4 files changed, 74 insertions(+), 106 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index b83f5f79eb5a..4b981498dfbf 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.2.0.1`, `ee-7.2.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/5399d18794233ac6f8cdd8bfa6825b53bb4c1935/enterprise/ubuntu24.04/Dockerfile) +- [`ee-7.2.0.1`, `ee-7.2.0.1_2`](https://github.com/aerospike/aerospike-server.docker/blob/7e404bba91a84e533b7c5fbc91ca68dd5b3cc27e/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.2.0.1`, `ce-7.2.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/5399d18794233ac6f8cdd8bfa6825b53bb4c1935/community/ubuntu24.04/Dockerfile) +- [`ce-7.2.0.1`, `ce-7.2.0.1_2`](https://github.com/aerospike/aerospike-server.docker/blob/7e404bba91a84e533b7c5fbc91ca68dd5b3cc27e/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 606655e22016..1592a7cfbc77 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,115 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u422`, `8u422-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u422-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u432`, `8u432-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u432-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u422-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u422-al2023-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u432-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u432-al2023-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u422-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u432-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u422-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u432-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2/Dockerfile) -- [`8-alpine3.17`, `8u422-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.17`, `8u432-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.17/Dockerfile) -- [`8-alpine3.17-jre`, `8u422-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.17-jre`, `8u432-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.17/Dockerfile) -- [`8-alpine3.18`, `8u422-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u432-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u422-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u432-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u422-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u432-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u422-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u432-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u422-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u422-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u432-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u432-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u422-alpine3.20-jre`, `8-alpine-jre`, `8u422-alpine-jre`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u432-alpine3.20-jre`, `8-alpine-jre`, `8u432-alpine-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.20/Dockerfile) -- [`11`, `11.0.24`, `11.0.24-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.24-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.25`, `11.0.25-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.25-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.24-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.25-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.24-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.25-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.24-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.25-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.24-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.25-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.24-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.25-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2/Dockerfile) -- [`11-alpine3.17`, `11.0.24-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.17`, `11.0.25-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.17/Dockerfile) -- [`11-alpine3.18`, `11.0.24-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.25-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.24-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.25-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.24-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.24-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.25-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.25-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.20/Dockerfile) -- [`17`, `17.0.12`, `17.0.12-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.12-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.13`, `17.0.13-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.13-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.12-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.13-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.12-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.13-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.12-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.13-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.12-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.13-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.12-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.13-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.12-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.13-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2/Dockerfile) -- [`17-alpine3.17`, `17.0.12-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.17/Dockerfile) +- [`17-alpine3.17`, `17.0.13-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.17/Dockerfile) -- [`17-alpine3.18`, `17.0.12-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.13-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.12-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.13-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.12-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.12-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.13-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.13-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.20/Dockerfile) -- [`21`, `21.0.4`, `21.0.4-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.4-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.5`, `21.0.5-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.5-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.4-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.5-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.4-al2023-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.5-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.4-al2023-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.5-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/headful/al2023/Dockerfile) -- [`21-alpine3.17`, `21.0.4-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.17/Dockerfile) +- [`21-alpine3.17`, `21.0.5-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.17/Dockerfile) -- [`21-alpine3.18`, `21.0.4-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.5-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.4-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.5-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.4-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.4-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.5-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.5-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.20/Dockerfile) -- [`22-al2023`, `22.0.2-al2023`, `22-al2023-jdk`, `22`, `22-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/al2023/Dockerfile) +- [`23-al2023`, `23.0.1-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/al2023/Dockerfile) -- [`22-al2023-headless`, `22.0.2-al2023-headless`, `22-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/headless/al2023/Dockerfile) +- [`23-al2023-headless`, `23.0.1-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/headless/al2023/Dockerfile) -- [`22-al2023-headful`, `22.0.2-al2023-headful`, `22-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/headful/al2023/Dockerfile) +- [`23-al2023-headful`, `23.0.1-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/headful/al2023/Dockerfile) -- [`22-alpine3.17`, `22.0.2-alpine3.17`, `22-alpine3.17-full`, `22-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.17/Dockerfile) +- [`23-alpine3.17`, `23.0.1-alpine3.17`, `23-alpine3.17-full`, `23-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.17/Dockerfile) -- [`22-alpine3.18`, `22.0.2-alpine3.18`, `22-alpine3.18-full`, `22-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.18/Dockerfile) +- [`23-alpine3.18`, `23.0.1-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.18/Dockerfile) -- [`22-alpine3.19`, `22.0.2-alpine3.19`, `22-alpine3.19-full`, `22-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.19/Dockerfile) +- [`23-alpine3.19`, `23.0.1-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.19/Dockerfile) -- [`22-alpine3.20`, `22.0.2-alpine3.20`, `22-alpine3.20-full`, `22-alpine3.20-jdk`, `22-alpine`, `22.0.2-alpine`, `22-alpine-full`, `22-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/22/jdk/alpine/3.20/Dockerfile) - -- [`23-al2023`, `23.0.0-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/al2023/Dockerfile) - -- [`23-al2023-headless`, `23.0.0-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/headless/al2023/Dockerfile) - -- [`23-al2023-headful`, `23.0.0-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/headful/al2023/Dockerfile) - -- [`23-alpine3.17`, `23.0.0-alpine3.17`, `23-alpine3.17-full`, `23-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.17/Dockerfile) - -- [`23-alpine3.18`, `23.0.0-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.18/Dockerfile) - -- [`23-alpine3.19`, `23.0.0-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.19/Dockerfile) - -- [`23-alpine3.20`, `23.0.0-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.0-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/7973d342bbc1aeead4e4edc37cd966f5874e5f22/23/jdk/alpine/3.20/Dockerfile) +- [`23-alpine3.20`, `23.0.1-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.1-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.20/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 7feeff08daa5..96916ef3a8f1 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-rc1-php8.1-apache`, `5.2-php8.1-apache`, `5.2.rc-php8.1-apache`, `5.2.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/apache/Dockerfile) +- [`5.2.0-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/apache/Dockerfile) -- [`5.2.0-rc1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5.2.rc-php8.1-fpm-alpine`, `5.2.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/fpm-alpine/Dockerfile) +- [`5.2.0-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-rc1-php8.1-fpm`, `5.2-php8.1-fpm`, `5.2.rc-php8.1-fpm`, `5.2.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.1/fpm/Dockerfile) +- [`5.2.0-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/fpm/Dockerfile) -- [`5.2.0-rc1`, `5.2`, `5.2.rc`, `5.2.0-rc`, `5.2.0-rc1-apache`, `5.2-apache`, `5.2.rc-apache`, `5.2.0-rc-apache`, `5.2.0-rc1-php8.2`, `5.2-php8.2`, `5.2.rc-php8.2`, `5.2.0-rc-php8.2`, `5.2.0-rc1-php8.2-apache`, `5.2-php8.2-apache`, `5.2.rc-php8.2-apache`, `5.2.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/apache/Dockerfile) +- [`5.2.0`, `5.2`, `5`, `latest`, `5.2.0-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.0-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.0-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/apache/Dockerfile) -- [`5.2.0-rc1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5.2.rc-php8.2-fpm-alpine`, `5.2.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/fpm-alpine/Dockerfile) +- [`5.2.0-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-rc1-php8.2-fpm`, `5.2-php8.2-fpm`, `5.2.rc-php8.2-fpm`, `5.2.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.2/fpm/Dockerfile) +- [`5.2.0-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/fpm/Dockerfile) -- [`5.2.0-rc1-php8.3-apache`, `5.2-php8.3-apache`, `5.2.rc-php8.3-apache`, `5.2.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/apache/Dockerfile) +- [`5.2.0-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/apache/Dockerfile) -- [`5.2.0-rc1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5.2.rc-php8.3-fpm-alpine`, `5.2.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/fpm-alpine/Dockerfile) +- [`5.2.0-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-rc1-php8.3-fpm`, `5.2-php8.3-fpm`, `5.2.rc-php8.3-fpm`, `5.2.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/3b393e596eb27e7bf6f144d124bff9a92339726f/5.2.rc/php8.3/fpm/Dockerfile) +- [`5.2.0-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/fpm/Dockerfile) -- [`5.1.4-php8.1-apache`, `5.1-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/apache/Dockerfile) +- [`4.4.9`, `4.4`, `4`, `4.4.9-apache`, `4.4-apache`, `4-apache`, `4.4.9-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.9-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/apache/Dockerfile) -- [`5.1.4-php8.1-fpm-alpine`, `5.1-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/fpm-alpine/Dockerfile) +- [`4.4.9-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/fpm-alpine/Dockerfile) -- [`5.1.4-php8.1-fpm`, `5.1-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.1/fpm/Dockerfile) +- [`4.4.9-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/fpm/Dockerfile) -- [`5.1.4`, `5.1`, `5`, `latest`, `5.1.4-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.4-php8.2`, `5.1-php8.2`, `5-php8.2`, `php8.2`, `5.1.4-php8.2-apache`, `5.1-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/apache/Dockerfile) +- [`4.4.9-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/apache/Dockerfile) -- [`5.1.4-php8.2-fpm-alpine`, `5.1-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/fpm-alpine/Dockerfile) +- [`4.4.9-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/fpm-alpine/Dockerfile) -- [`5.1.4-php8.2-fpm`, `5.1-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.2/fpm/Dockerfile) - -- [`5.1.4-php8.3-apache`, `5.1-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/apache/Dockerfile) - -- [`5.1.4-php8.3-fpm-alpine`, `5.1-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/fpm-alpine/Dockerfile) - -- [`5.1.4-php8.3-fpm`, `5.1-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/5.1/php8.3/fpm/Dockerfile) - -- [`4.4.8`, `4.4`, `4`, `4.4.8-apache`, `4.4-apache`, `4-apache`, `4.4.8-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.8-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/apache/Dockerfile) - -- [`4.4.8-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/fpm-alpine/Dockerfile) - -- [`4.4.8-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.1/fpm/Dockerfile) - -- [`4.4.8-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/apache/Dockerfile) - -- [`4.4.8-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/fpm-alpine/Dockerfile) - -- [`4.4.8-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a3a857bb7d9864dbe7b2092e68ee93e9f2bdc463/4.4/php8.2/fpm/Dockerfile) +- [`4.4.9-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 4f994bf8e4eb..1442ff8a2d57 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ff71c2bef14fafee24b8c7a8c71a3cc266b6d424/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7-slim-fips/Dockerfile) # Quick reference (cont.) From 34ca86995d349809940dd84100a716cfa6677c66 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 12:09:08 -0700 Subject: [PATCH 1604/2686] Run update.sh --- friendica/README.md | 12 +++--- sapmachine/README.md | 96 ++++++++++++++++++++++---------------------- 2 files changed, 54 insertions(+), 54 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index 5423a308a151..bf693b50cea2 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,12 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2024.03-apache`, `2024.03`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/apache/Dockerfile) - -- [`2024.03-fpm`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm/Dockerfile) - -- [`2024.03-fpm-alpine`](https://github.com/friendica/docker/blob/e9e6de1547a2333a126c377907b5ba201846abd2/2024.03/fpm-alpine/Dockerfile) - - [`2024.08-apache`, `apache`, `stable-apache`, `2024.08`, `latest`, `stable`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/apache/Dockerfile) - [`2024.08-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm/Dockerfile) @@ -42,6 +36,12 @@ WARNING: - [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.09-rc-apache`, `rc-apache`, `2024.09-rc`, `rc`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/apache/Dockerfile) + +- [`2024.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/fpm/Dockerfile) + +- [`2024.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/sapmachine/README.md b/sapmachine/README.md index d767cf4b6ec3..77fd376e57bc 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `23.0.1`, `23.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23.0.1-ubuntu-noble`, `23.0.1-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `23.0.1-jdk-ubuntu-noble`, `23.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23.0.1-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `23.0.1-jdk-headless-ubuntu-noble`, `23.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `23-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `23-jre-ubuntu`, `23.0.1-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `23.0.1-jre-ubuntu-noble`, `23.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23.0.1-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `23.0.1-jre-headless-ubuntu-noble`, `23.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23.0.1-ubuntu-jammy`, `23.0.1-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `23.0.1-jdk-ubuntu-jammy`, `23.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `23.0.1-jdk-headless-ubuntu-jammy`, `23.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) +- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `23.0.1-jre-ubuntu-jammy`, `23.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `23.0.1-jre-headless-ubuntu-jammy`, `23.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23.0.1-ubuntu-focal`, `23.0.1-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `23.0.1-jdk-ubuntu-focal`, `23.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `23.0.1-jdk-headless-ubuntu-focal`, `23.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) +- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `23.0.1-jre-ubuntu-focal`, `23.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/0c7d01a1dcc6009590411793978369247968324e/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `23.0.1-jre-headless-ubuntu-focal`, `23.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) -- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.4`, `21.0.4-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.4-ubuntu-noble`, `21.0.4-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.4-jdk-ubuntu-noble`, `21.0.4-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.5`, `21.0.5-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.5-ubuntu-noble`, `21.0.5-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.5-jdk-ubuntu-noble`, `21.0.5-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.4-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.4-jdk-headless-ubuntu-noble`, `21.0.4-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.5-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.5-jdk-headless-ubuntu-noble`, `21.0.5-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.4-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.4-jre-ubuntu-noble`, `21.0.4-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.5-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.5-jre-ubuntu-noble`, `21.0.5-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.4-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.4-jre-headless-ubuntu-noble`, `21.0.4-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.5-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.5-jre-headless-ubuntu-noble`, `21.0.5-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.4-ubuntu-jammy`, `21.0.4-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.4-jdk-ubuntu-jammy`, `21.0.4-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.5-ubuntu-jammy`, `21.0.5-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.5-jdk-ubuntu-jammy`, `21.0.5-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.4-jdk-headless-ubuntu-jammy`, `21.0.4-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.5-jdk-headless-ubuntu-jammy`, `21.0.5-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.4-jre-ubuntu-jammy`, `21.0.4-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.5-jre-ubuntu-jammy`, `21.0.5-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.4-jre-headless-ubuntu-jammy`, `21.0.4-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.5-jre-headless-ubuntu-jammy`, `21.0.5-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.4-ubuntu-focal`, `21.0.4-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.4-jdk-ubuntu-focal`, `21.0.4-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) +- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.5-ubuntu-focal`, `21.0.5-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.5-jdk-ubuntu-focal`, `21.0.5-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.4-jdk-headless-ubuntu-focal`, `21.0.4-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.5-jdk-headless-ubuntu-focal`, `21.0.5-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.4-jre-ubuntu-focal`, `21.0.4-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) +- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.5-jre-ubuntu-focal`, `21.0.5-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.4-jre-headless-ubuntu-focal`, `21.0.4-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d0461ef7008c90ebe0738cf906144ba6e8fec1a/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.5-jre-headless-ubuntu-focal`, `21.0.5-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) -- [`17`, `17-jdk-ubuntu`, `17.0.12`, `17.0.12-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.12-ubuntu-noble`, `17.0.12-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.12-jdk-ubuntu-noble`, `17.0.12-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) +- [`17`, `17-jdk-ubuntu`, `17.0.13`, `17.0.13-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.13-ubuntu-noble`, `17.0.13-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.13-jdk-ubuntu-noble`, `17.0.13-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17.0.12-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.12-jdk-headless-ubuntu-noble`, `17.0.12-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17.0.13-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.13-jdk-headless-ubuntu-noble`, `17.0.13-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu`, `17.0.12-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.12-jre-ubuntu-noble`, `17.0.12-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre-ubuntu`, `17.0.13-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.13-jre-ubuntu-noble`, `17.0.13-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu`, `17.0.12-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.12-jre-headless-ubuntu-noble`, `17.0.12-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu`, `17.0.13-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.13-jre-headless-ubuntu-noble`, `17.0.13-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.12-ubuntu-jammy`, `17.0.12-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.12-jdk-ubuntu-jammy`, `17.0.12-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.13-ubuntu-jammy`, `17.0.13-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.13-jdk-ubuntu-jammy`, `17.0.13-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.12-jdk-headless-ubuntu-jammy`, `17.0.12-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.13-jdk-headless-ubuntu-jammy`, `17.0.13-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.12-jre-ubuntu-jammy`, `17.0.12-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.13-jre-ubuntu-jammy`, `17.0.13-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.12-jre-headless-ubuntu-jammy`, `17.0.12-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.13-jre-headless-ubuntu-jammy`, `17.0.13-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.12-ubuntu-focal`, `17.0.12-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.12-jdk-ubuntu-focal`, `17.0.12-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) +- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.13-ubuntu-focal`, `17.0.13-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.13-jdk-ubuntu-focal`, `17.0.13-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.12-jdk-headless-ubuntu-focal`, `17.0.12-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.13-jdk-headless-ubuntu-focal`, `17.0.13-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.12-jre-ubuntu-focal`, `17.0.12-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.13-jre-ubuntu-focal`, `17.0.13-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.12-jre-headless-ubuntu-focal`, `17.0.12-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/20a3c5dcffb13001c9e56ec2ac159082fc0fc739/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.13-jre-headless-ubuntu-focal`, `17.0.13-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) -- [`11`, `11-jdk-ubuntu`, `11.0.24`, `11.0.24-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.24-ubuntu-noble`, `11.0.24-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.24-jdk-ubuntu-noble`, `11.0.24-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`11`, `11-jdk-ubuntu`, `11.0.25`, `11.0.25-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.25-ubuntu-noble`, `11.0.25-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.25-jdk-ubuntu-noble`, `11.0.25-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11.0.24-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.24-jdk-headless-ubuntu-noble`, `11.0.24-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11.0.25-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.25-jdk-headless-ubuntu-noble`, `11.0.25-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu`, `11.0.24-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.24-jre-ubuntu-noble`, `11.0.24-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre-ubuntu`, `11.0.25-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.25-jre-ubuntu-noble`, `11.0.25-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu`, `11.0.24-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.24-jre-headless-ubuntu-noble`, `11.0.24-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu`, `11.0.25-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.25-jre-headless-ubuntu-noble`, `11.0.25-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.24-ubuntu-jammy`, `11.0.24-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.24-jdk-ubuntu-jammy`, `11.0.24-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.25-ubuntu-jammy`, `11.0.25-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.25-jdk-ubuntu-jammy`, `11.0.25-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.24-jdk-headless-ubuntu-jammy`, `11.0.24-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.25-jdk-headless-ubuntu-jammy`, `11.0.25-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.24-jre-ubuntu-jammy`, `11.0.24-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.25-jre-ubuntu-jammy`, `11.0.25-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.24-jre-headless-ubuntu-jammy`, `11.0.24-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.25-jre-headless-ubuntu-jammy`, `11.0.25-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) -- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.24-ubuntu-focal`, `11.0.24-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.24-jdk-ubuntu-focal`, `11.0.24-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) +- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.25-ubuntu-focal`, `11.0.25-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.25-jdk-ubuntu-focal`, `11.0.25-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.24-jdk-headless-ubuntu-focal`, `11.0.24-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.25-jdk-headless-ubuntu-focal`, `11.0.25-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.24-jre-ubuntu-focal`, `11.0.24-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) +- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.25-jre-ubuntu-focal`, `11.0.25-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.24-jre-headless-ubuntu-focal`, `11.0.24-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/a6c4644846ec3088b17762b2d825b2245bd1ffe4/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.25-jre-headless-ubuntu-focal`, `11.0.25-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) From d5bf87040646372a04b5388e3ec3ec8edf55ccfb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 14:09:20 -0700 Subject: [PATCH 1605/2686] Run update.sh --- gradle/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 130efb95318f..293019a036eb 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk8/Dockerfile) +- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk8/Dockerfile) -- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk8-focal/Dockerfile) +- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk8-focal/Dockerfile) -- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11/Dockerfile) +- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11/Dockerfile) -- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11-focal/Dockerfile) +- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11-focal/Dockerfile) -- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk11-alpine/Dockerfile) +- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11-alpine/Dockerfile) -- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17/Dockerfile) +- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17/Dockerfile) -- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-focal/Dockerfile) +- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-focal/Dockerfile) -- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-alpine/Dockerfile) +- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-alpine/Dockerfile) -- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk17-graal/Dockerfile) +- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-graal/Dockerfile) -- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21/Dockerfile) +- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21/Dockerfile) -- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21-alpine/Dockerfile) +- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21-alpine/Dockerfile) -- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk21-graal/Dockerfile) +- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21-graal/Dockerfile) -- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23/Dockerfile) +- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23/Dockerfile) -- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23-alpine/Dockerfile) +- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23-alpine/Dockerfile) -- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk23-graal/Dockerfile) +- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23-graal/Dockerfile) -- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-22`, `8.10-jdk-21-and-22`, `8-jdk-21-and-22`, `jdk-21-and-22`, `8.10.2-jdk-21-and-22-jammy`, `8.10-jdk-21-and-22-jammy`, `8-jdk-21-and-22-jammy`, `jdk-21-and-22-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current/Dockerfile) +- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-23`, `8.10-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.10.2-jdk-21-and-23-jammy`, `8.10-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current/Dockerfile) -- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-22-alpine`, `8.10-jdk-21-and-22-alpine`, `8-jdk-21-and-22-alpine`, `jdk-21-and-22-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current-alpine/Dockerfile) +- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-23-alpine`, `8.10-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current-alpine/Dockerfile) -- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-22-graal`, `8.10-jdk-21-and-22-graal`, `8-jdk-21-and-22-graal`, `jdk-21-and-22-graal`, `8.10.2-jdk-21-and-22-graal-jammy`, `8.10-jdk-21-and-22-graal-jammy`, `8-jdk-21-and-22-graal-jammy`, `jdk-21-and-22-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbc29c4f1b70066178a708fffdd1c781efaa8f5a/jdk-lts-and-current-graal/Dockerfile) +- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-23-graal`, `8.10-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.10.2-jdk-21-and-23-graal-jammy`, `8.10-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From 2f9b58af47ef7aadd0800c78502f3764bb3a7c52 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 15:09:06 -0700 Subject: [PATCH 1606/2686] Run update.sh --- eclipse-mosquitto/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index d2f2949520a1..e26d65b87848 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.19`, `2.0.19-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/e96ddfc6e58f7087b9fa57a717d7f56d2c00f9fe/docker/2.0-openssl/Dockerfile) +- [`2.0.20`, `2.0.20-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/fb9b1153924ae0e2dfb3bcb4266ee5bb49a5c515/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/e96ddfc6e58f7087b9fa57a717d7f56d2c00f9fe/docker/1.6-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/fb9b1153924ae0e2dfb3bcb4266ee5bb49a5c515/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) From 610cc064ce2d4db928f8d57e7e7c60f8b12fbd86 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 16:09:12 -0700 Subject: [PATCH 1607/2686] Run update.sh --- node/README.md | 24 ++++++++++++++++++------ photon/README.md | 6 +++--- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/node/README.md b/node/README.md index 238d30881046..8e0b9a43c247 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22-alpine3.19`, `22.9-alpine3.19`, `22.9.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.19/Dockerfile) +- [`23-alpine3.19`, `23.0-alpine3.19`, `23.0.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.9-alpine`, `22.9-alpine3.20`, `22.9.0-alpine`, `22.9.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.20/Dockerfile) +- [`23-alpine`, `23-alpine3.20`, `23.0-alpine`, `23.0-alpine3.20`, `23.0.0-alpine`, `23.0.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.9`, `22.9-bookworm`, `22.9.0`, `22.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.0`, `23.0-bookworm`, `23.0.0`, `23.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.9-bookworm-slim`, `22.9-slim`, `22.9.0-bookworm-slim`, `22.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.0-bookworm-slim`, `23.0-slim`, `23.0.0-bookworm-slim`, `23.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.9-bullseye`, `22.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye/Dockerfile) +- [`23-bullseye`, `23.0-bullseye`, `23.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.9-bullseye-slim`, `22.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.0-bullseye-slim`, `23.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bullseye-slim/Dockerfile) + +- [`22-alpine3.19`, `22.9-alpine3.19`, `22.9.0-alpine3.19`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.19/Dockerfile) + +- [`22-alpine`, `22-alpine3.20`, `22.9-alpine`, `22.9-alpine3.20`, `22.9.0-alpine`, `22.9.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.20/Dockerfile) + +- [`22`, `22-bookworm`, `22.9`, `22.9-bookworm`, `22.9.0`, `22.9.0-bookworm`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm/Dockerfile) + +- [`22-bookworm-slim`, `22-slim`, `22.9-bookworm-slim`, `22.9-slim`, `22.9.0-bookworm-slim`, `22.9.0-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm-slim/Dockerfile) + +- [`22-bullseye`, `22.9-bullseye`, `22.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye/Dockerfile) + +- [`22-bullseye-slim`, `22.9-bullseye-slim`, `22.9.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 79f493e2fbc2..61d48015e8ed 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20240915`, `latest`](https://github.com/vmware/photon-docker-image/blob/35db86c1a4ff081102e45e683cb90bb498010385/docker/Dockerfile) +- [`5.0`, `5.0-20241016`, `latest`](https://github.com/vmware/photon-docker-image/blob/2ff2aaada36afcfd366db0adc07b97e9ead586db/docker/Dockerfile) -- [`4.0`, `4.0-20240915`](https://github.com/vmware/photon-docker-image/blob/bcdf484bf3a6c43eb041311f3cc8f65d06a1ca02/docker/Dockerfile) +- [`4.0`, `4.0-20241016`](https://github.com/vmware/photon-docker-image/blob/99dbc33d9f23fa9d4bfe7c5de3a9b3a5137d8ff7/docker/Dockerfile) -- [`3.0`, `3.0-20240915`](https://github.com/vmware/photon-docker-image/blob/cb7a141efeed444b2e4d34ab866afef09152b946/docker/Dockerfile) +- [`3.0`, `3.0-20241016`](https://github.com/vmware/photon-docker-image/blob/666c2ce02c167004c225287e9509d430f37e8918/docker/Dockerfile) # Quick reference (cont.) From cde4457e5f2e4b00cc23de6cc8332e8fb97a1c80 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Oct 2024 17:09:23 -0700 Subject: [PATCH 1608/2686] Run update.sh --- debian/README.md | 48 +++++++++++++++---------------- drupal/README.md | 24 ++++++++-------- ghost/README.md | 4 +-- haproxy/README.md | 4 +-- julia/README.md | 22 +++++++-------- tomee/README.md | 72 +++++++++++++++++++++++------------------------ 6 files changed, 87 insertions(+), 87 deletions(-) diff --git a/debian/README.md b/debian/README.md index e577f06e2ce3..3a32004a9be8 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20240926`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20241016`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20240926-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20241016-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20240926`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20241016`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20240926-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20241016-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/experimental/Dockerfile) +- [`experimental`, `experimental-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/experimental/Dockerfile) -- [`oldstable`, `oldstable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/rc-buggy/Dockerfile) -- [`sid`, `sid-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/sid/Dockerfile) +- [`sid`, `sid-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/sid/Dockerfile) -- [`sid-slim`, `sid-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/sid/slim/Dockerfile) -- [`stable`, `stable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/Dockerfile) +- [`stable`, `stable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/slim/Dockerfile) -- [`testing`, `testing-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/Dockerfile) +- [`testing`, `testing-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/slim/Dockerfile) -- [`trixie`, `trixie-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/Dockerfile) +- [`trixie`, `trixie-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20240926`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/unstable/Dockerfile) +- [`unstable`, `unstable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20240926-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/882a9e1d966bc166c8e2771f509aca6de7c3f706/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/unstable/slim/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 2bc8c0705cc4..2aa4c8f95e2f 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -60,29 +60,29 @@ WARNING: - [`10.3.6-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.6-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.9-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.9-php8.3-apache`, `10.2-php8.3-apache`, `10.2.9-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.10-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.10-php8.3-apache`, `10.2-php8.3-apache`, `10.2.10-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.9-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.9-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.10-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.10-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.9-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.10-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.9-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.10-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.9-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.9-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.10-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.10-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.9-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.10-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.9-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.9-php8.2-apache`, `10.2-php8.2-apache`, `10.2.9-php8.2`, `10.2-php8.2`, `10.2.9-apache-bookworm`, `10.2-apache-bookworm`, `10.2.9-apache`, `10.2-apache`, `10.2.9`, `10.2`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.10-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.10-php8.2-apache`, `10.2-php8.2-apache`, `10.2.10-php8.2`, `10.2-php8.2`, `10.2.10-apache-bookworm`, `10.2-apache-bookworm`, `10.2.10-apache`, `10.2-apache`, `10.2.10`, `10.2`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.9-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.9-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.9-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.9-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.10-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.10-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.10-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.10-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.9-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.9-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.10-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.10-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.9-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.9-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.10-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.10-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.9-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.9-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.9-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.9-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.10-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.10-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.10-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.10-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.9-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.9-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/9f9de5c1eef5cef404d3241724372f2b8500a600/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.10-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.10-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 0cda2e11d11a..595e338706e9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.96.1`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/875b49aa4d7fde32b6708f43ddd5f1052d5be7d7/5/debian/Dockerfile) +- [`5.96.2`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6e57615195e07b27a0bc9d09a5b41721e528b3cc/5/debian/Dockerfile) -- [`5.96.1-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/875b49aa4d7fde32b6708f43ddd5f1052d5be7d7/5/alpine/Dockerfile) +- [`5.96.2-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6e57615195e07b27a0bc9d09a5b41721e528b3cc/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index ae137064ef67..646cc3f3106f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev9`, `3.1-dev`, `3.1-dev9-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/e93b3588a6cc0f2eb19412e54de7e741b50f734b/3.1/Dockerfile) +- [`3.1-dev10`, `3.1-dev`, `3.1-dev10-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/a2995ab1bab48159a97c44e9e301714d105ec3e9/3.1/Dockerfile) -- [`3.1-dev9-alpine`, `3.1-dev-alpine`, `3.1-dev9-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/e93b3588a6cc0f2eb19412e54de7e741b50f734b/3.1/alpine/Dockerfile) +- [`3.1-dev10-alpine`, `3.1-dev-alpine`, `3.1-dev10-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/a2995ab1bab48159a97c44e9e301714d105ec3e9/3.1/alpine/Dockerfile) - [`3.0.5`, `3.0`, `lts`, `latest`, `3.0.5-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/Dockerfile) diff --git a/julia/README.md b/julia/README.md index a3b0040a33c6..8e383b1751f7 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`1.11.0-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bookworm/Dockerfile) +- [`1.11.1-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bookworm/Dockerfile) -- [`1.11.0-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bullseye/Dockerfile) +- [`1.11.1-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bullseye/Dockerfile) -- [`1.11.0-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.1-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.0-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) +- [`1.11.1-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) - [`1.10.5-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) @@ -46,16 +46,16 @@ WARNING: ## Shared Tags -- `1.11.0`, `1.11`, `1`, `latest`: +- `1.11.1`, `1.11`, `1`, `latest`: - - [`1.11.0-bookworm`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/bookworm/Dockerfile) - - [`1.11.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.1-bookworm`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bookworm/Dockerfile) + - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.0-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.1-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.0-windowsservercore-1809`](https://github.com/docker-library/julia/blob/8b90098378055356e9adc7eb610b1f5d70584061/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) - `1.10.5`, `1.10`: diff --git a/tomee/README.md b/tomee/README.md index 2c56c52d9404..c9e45a61b9b8 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,77 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M2-Temurin-ubuntu-microprofile`, `10.0.0-M2-jre17-ubuntu-microprofile`, `10.0.0-M2-ubuntu-microprofile`, `10.0.0-M2-jre17-Temurin-microprofile`, `10.0.0-M2-Temurin-microprofile`, `10.0.0-M2-jre17-microprofile`, `10.0.0-M2-microprofile`, `10.0.0-M2-jre17-Temurin-ubuntu`, `10.0.0-M2-Temurin-ubuntu`, `10.0.0-M2-jre17-ubuntu`, `10.0.0-M2-ubuntu`, `10.0.0-M2-jre17-Temurin`, `10.0.0-M2-Temurin`, `10.0.0-M2-jre17`, `10.0.0-M2`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-ubuntu`, `10.0-jre17-Temurin`, `10.0-Temurin`, `10.0-jre17`, `10.0`, `10-jre17-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre17-microprofile`, `10-microprofile`, `10-jre17-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-ubuntu`, `10-jre17-Temurin`, `10-Temurin`, `10-jre17`, `10`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M3-Temurin-ubuntu-microprofile`, `10.0.0-M3-jre17-ubuntu-microprofile`, `10.0.0-M3-ubuntu-microprofile`, `10.0.0-M3-jre17-Temurin-microprofile`, `10.0.0-M3-Temurin-microprofile`, `10.0.0-M3-jre17-microprofile`, `10.0.0-M3-microprofile`, `10.0.0-M3-jre17-Temurin-ubuntu`, `10.0.0-M3-Temurin-ubuntu`, `10.0.0-M3-jre17-ubuntu`, `10.0.0-M3-ubuntu`, `10.0.0-M3-jre17-Temurin`, `10.0.0-M3-Temurin`, `10.0.0-M3-jre17`, `10.0.0-M3`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-ubuntu`, `10.0-jre17-Temurin`, `10.0-Temurin`, `10.0-jre17`, `10.0`, `10-jre17-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre17-microprofile`, `10-microprofile`, `10-jre17-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-ubuntu`, `10-jre17-Temurin`, `10-Temurin`, `10-jre17`, `10`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-ubuntu-plume`, `10.0.0-M2-Temurin-ubuntu-plume`, `10.0.0-M2-jre17-ubuntu-plume`, `10.0.0-M2-ubuntu-plume`, `10.0.0-M2-jre17-Temurin-plume`, `10.0.0-M2-Temurin-plume`, `10.0.0-M2-jre17-plume`, `10.0.0-M2-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre17-plume`, `10.0-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-Temurin-plume`, `10-jre17-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-ubuntu-plume`, `10.0.0-M3-Temurin-ubuntu-plume`, `10.0.0-M3-jre17-ubuntu-plume`, `10.0.0-M3-ubuntu-plume`, `10.0.0-M3-jre17-Temurin-plume`, `10.0.0-M3-Temurin-plume`, `10.0.0-M3-jre17-plume`, `10.0.0-M3-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre17-plume`, `10.0-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-Temurin-plume`, `10-jre17-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-ubuntu-plus`, `10.0.0-M2-Temurin-ubuntu-plus`, `10.0.0-M2-jre17-ubuntu-plus`, `10.0.0-M2-ubuntu-plus`, `10.0.0-M2-jre17-Temurin-plus`, `10.0.0-M2-Temurin-plus`, `10.0.0-M2-jre17-plus`, `10.0.0-M2-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre17-plus`, `10.0-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-Temurin-plus`, `10-jre17-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-ubuntu-plus`, `10.0.0-M3-Temurin-ubuntu-plus`, `10.0.0-M3-jre17-ubuntu-plus`, `10.0.0-M3-ubuntu-plus`, `10.0.0-M3-jre17-Temurin-plus`, `10.0.0-M3-Temurin-plus`, `10.0.0-M3-jre17-plus`, `10.0.0-M3-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre17-plus`, `10.0-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-Temurin-plus`, `10-jre17-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M2-Temurin-ubuntu-webprofile`, `10.0.0-M2-jre17-ubuntu-webprofile`, `10.0.0-M2-ubuntu-webprofile`, `10.0.0-M2-jre17-Temurin-webprofile`, `10.0.0-M2-Temurin-webprofile`, `10.0.0-M2-jre17-webprofile`, `10.0.0-M2-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre17-webprofile`, `10.0-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre17-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M3-Temurin-ubuntu-webprofile`, `10.0.0-M3-jre17-ubuntu-webprofile`, `10.0.0-M3-ubuntu-webprofile`, `10.0.0-M3-jre17-Temurin-webprofile`, `10.0.0-M3-Temurin-webprofile`, `10.0.0-M3-jre17-webprofile`, `10.0.0-M3-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre17-webprofile`, `10.0-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre17-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-alpine-microprofile`, `10.0.0-M2-Temurin-alpine-microprofile`, `10.0.0-M2-jre17-alpine-microprofile`, `10.0.0-M2-alpine-microprofile`, `10.0.0-M2-jre17-Temurin-alpine`, `10.0.0-M2-Temurin-alpine`, `10.0.0-M2-jre17-alpine`, `10.0.0-M2-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre17-alpine`, `10.0-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-Temurin-alpine`, `10-jre17-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-alpine-microprofile`, `10.0.0-M3-Temurin-alpine-microprofile`, `10.0.0-M3-jre17-alpine-microprofile`, `10.0.0-M3-alpine-microprofile`, `10.0.0-M3-jre17-Temurin-alpine`, `10.0.0-M3-Temurin-alpine`, `10.0.0-M3-jre17-alpine`, `10.0.0-M3-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre17-alpine`, `10.0-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-Temurin-alpine`, `10-jre17-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-alpine-plume`, `10.0.0-M2-Temurin-alpine-plume`, `10.0.0-M2-jre17-alpine-plume`, `10.0.0-M2-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10.0-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-alpine-plume`, `10.0.0-M3-Temurin-alpine-plume`, `10.0.0-M3-jre17-alpine-plume`, `10.0.0-M3-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10.0-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-alpine-plus`, `10.0.0-M2-Temurin-alpine-plus`, `10.0.0-M2-jre17-alpine-plus`, `10.0.0-M2-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10.0-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-alpine-plus`, `10.0.0-M3-Temurin-alpine-plus`, `10.0.0-M3-jre17-alpine-plus`, `10.0.0-M3-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10.0-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.0.0-M2-jre17-Temurin-alpine-webprofile`, `10.0.0-M2-Temurin-alpine-webprofile`, `10.0.0-M2-jre17-alpine-webprofile`, `10.0.0-M2-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-M3-jre17-Temurin-alpine-webprofile`, `10.0.0-M3-Temurin-alpine-webprofile`, `10.0.0-M3-jre17-alpine-webprofile`, `10.0.0-M3-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.0-M2-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M2-Semeru-ubuntu-microprofile`, `10.0.0-M2-jre17-Semeru-microprofile`, `10.0.0-M2-Semeru-microprofile`, `10.0.0-M2-jre17-Semeru-ubuntu`, `10.0.0-M2-Semeru-ubuntu`, `10.0.0-M2-jre17-Semeru`, `10.0.0-M2-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10.0-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre17-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-M3-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M3-Semeru-ubuntu-microprofile`, `10.0.0-M3-jre17-Semeru-microprofile`, `10.0.0-M3-Semeru-microprofile`, `10.0.0-M3-jre17-Semeru-ubuntu`, `10.0.0-M3-Semeru-ubuntu`, `10.0.0-M3-jre17-Semeru`, `10.0.0-M3-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10.0-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre17-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.0-M2-jre17-Semeru-ubuntu-plume`, `10.0.0-M2-Semeru-ubuntu-plume`, `10.0.0-M2-jre17-Semeru-plume`, `10.0.0-M2-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10.0-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-M3-jre17-Semeru-ubuntu-plume`, `10.0.0-M3-Semeru-ubuntu-plume`, `10.0.0-M3-jre17-Semeru-plume`, `10.0.0-M3-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10.0-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.0-M2-jre17-Semeru-ubuntu-plus`, `10.0.0-M2-Semeru-ubuntu-plus`, `10.0.0-M2-jre17-Semeru-plus`, `10.0.0-M2-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10.0-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-M3-jre17-Semeru-ubuntu-plus`, `10.0.0-M3-Semeru-ubuntu-plus`, `10.0.0-M3-jre17-Semeru-plus`, `10.0.0-M3-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10.0-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.0-M2-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M2-Semeru-ubuntu-webprofile`, `10.0.0-M2-jre17-Semeru-webprofile`, `10.0.0-M2-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/bb6acca77154f3e16c924f668c1782a772437fc8/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-M3-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M3-Semeru-ubuntu-webprofile`, `10.0.0-M3-jre17-Semeru-webprofile`, `10.0.0-M3-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 83e76d851d701e2533ae539833a4154f4de2dfac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Oct 2024 14:09:09 -0700 Subject: [PATCH 1609/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- nats/README.md | 22 +++++++++++----------- node/README.md | 12 ++++++------ odoo/README.md | 6 +++--- rust/README.md | 12 ++++++------ swift/README.md | 2 ++ 8 files changed, 31 insertions(+), 29 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 9499fa810afa..ff04f1681032 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/elasticsearch/Dockerfile) +- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/elasticsearch/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 866a3fee75ba..24888cb1303a 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/kibana/Dockerfile) +- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/kibana/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 7a5902564fe5..aead9785afac 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.15.2`](https://github.com/elastic/dockerfiles/blob/bf822e94b86ba01e37896cc57f18ac7c28d7eebd/logstash/Dockerfile) +- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/logstash/Dockerfile) - [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/logstash/Dockerfile) diff --git a/nats/README.md b/nats/README.md index 4053ce37d963..bc1d45bc4c64 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.21-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.21-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/alpine3.20/Dockerfile) +- [`2.10.22-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.22-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/alpine3.20/Dockerfile) -- [`2.10.21-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.21-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/scratch/Dockerfile) +- [`2.10.22-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.22-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/scratch/Dockerfile) -- [`2.10.21-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.22-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.21-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.22-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.21`, `2.10`, `2`, `latest`: +- `2.10.22`, `2.10`, `2`, `latest`: - - [`2.10.21-scratch`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/scratch/Dockerfile) - - [`2.10.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.22-scratch`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/scratch/Dockerfile) + - [`2.10.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.21-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.22-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.21-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.21-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.22-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.21-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/fec36788a2e4e4244df6cfd69b699f51b4b4b62f/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 8e0b9a43c247..f1cd941bb866 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`23-bullseye-slim`, `23.0-bullseye-slim`, `23.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bullseye-slim/Dockerfile) -- [`22-alpine3.19`, `22.9-alpine3.19`, `22.9.0-alpine3.19`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.10-alpine3.19`, `22.10.0-alpine3.19`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.9-alpine`, `22.9-alpine3.20`, `22.9.0-alpine`, `22.9.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.10-alpine`, `22.10-alpine3.20`, `22.10.0-alpine`, `22.10.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.9`, `22.9-bookworm`, `22.9.0`, `22.9.0-bookworm`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.10`, `22.10-bookworm`, `22.10.0`, `22.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.9-bookworm-slim`, `22.9-slim`, `22.9.0-bookworm-slim`, `22.9.0-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.10-bookworm-slim`, `22.10-slim`, `22.10.0-bookworm-slim`, `22.10.0-slim`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.9-bullseye`, `22.9.0-bullseye`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.10-bullseye`, `22.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.9-bullseye-slim`, `22.9.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/58c3b39e5948f82c594395857193cd97d01c690e/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.10-bullseye-slim`, `22.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 8c9e3b4d6a7d..912bd731e100 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241007`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/18.0/Dockerfile) +- [`18.0-20241017`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/18.0/Dockerfile) -- [`17.0-20241007`, `17.0`, `17`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/17.0/Dockerfile) +- [`17.0-20241017`, `17.0`, `17`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/17.0/Dockerfile) -- [`16.0-20241007`, `16.0`, `16`](https://github.com/odoo/docker/blob/282f5a3761223344e610dfe889f737d75039531d/16.0/Dockerfile) +- [`16.0-20241017`, `16.0`, `16`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/16.0/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 166338f5555c..5c90f15bb0e1 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.81-bullseye`, `1.81.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.82-bullseye`, `1.82.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.81-slim-bullseye`, `1.81.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.82-slim-bullseye`, `1.82.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.81-bookworm`, `1.81.0-bookworm`, `bookworm`, `1`, `1.81`, `1.81.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.82-bookworm`, `1.82.0-bookworm`, `bookworm`, `1`, `1.82`, `1.82.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.81-slim-bookworm`, `1.81.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.81-slim`, `1.81.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.82-slim-bookworm`, `1.82.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.82-slim`, `1.82.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.81-alpine3.19`, `1.81.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.82-alpine3.19`, `1.82.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.81-alpine3.20`, `1.81.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.81-alpine`, `1.81.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/63f877a36f8ba9d9b4b35cd49df3327264510886/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.82-alpine3.20`, `1.82.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.82-alpine`, `1.82.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index d0d927f43e94..c120cd9e418f 100644 --- a/swift/README.md +++ b/swift/README.md @@ -60,6 +60,8 @@ WARNING: - [`5.10.1-noble`, `5.10-noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) +- [`5.10.1-noble-slim`, `5.10-noble-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/5.10/ubuntu/24.04/slim/Dockerfile) + - [`5.10.1-bookworm`, `5.10-bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) - [`5.10.1-fedora39`, `5.10-fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) From b5842eb0fd18d592f395605c5161aa2e8decfc4a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Oct 2024 12:09:12 -0700 Subject: [PATCH 1610/2686] Run update.sh --- dart/README.md | 4 ++-- friendica/README.md | 12 ++++++------ nextcloud/README.md | 18 +++++++++--------- silverpeas/README.md | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/dart/README.md b/dart/README.md index 0f81715d52bf..04002b6078fd 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.2-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.2`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/aaa12b5ca0fea8cd71ccdc472f75ee4d3ff35ee7/stable/bookworm/Dockerfile) +- [`3.5.4-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.4`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/da40aaeba0b58bee5fc5c8c9a2ebe340a69d94f8/stable/bookworm/Dockerfile) -- [`3.6.0-216.1.beta-sdk`, `beta-sdk`, `3.6.0-216.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/aaa12b5ca0fea8cd71ccdc472f75ee4d3ff35ee7/beta/bookworm/Dockerfile) +- [`3.6.0-334.3.beta-sdk`, `beta-sdk`, `3.6.0-334.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/da40aaeba0b58bee5fc5c8c9a2ebe340a69d94f8/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index bf693b50cea2..6ca239fe8025 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -30,17 +30,17 @@ WARNING: - [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) -- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/apache/Dockerfile) +- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/apache/Dockerfile) -- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/fpm/Dockerfile) +- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/fpm/Dockerfile) -- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/86849005e22069208e9cf4e21336f524c0642cbf/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/fpm-alpine/Dockerfile) -- [`2024.09-rc-apache`, `rc-apache`, `2024.09-rc`, `rc`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/apache/Dockerfile) +- [`2024.09-rc-apache`, `rc-apache`, `2024.09-rc`, `rc`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/apache/Dockerfile) -- [`2024.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/fpm/Dockerfile) +- [`2024.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/fpm/Dockerfile) -- [`2024.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/b11c97b69b6fa77128a2703571d2faa308f102dc/2024.09-rc/fpm-alpine/Dockerfile) +- [`2024.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 43d17980e6d2..346386fb15b8 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.11-apache`, `28.0-apache`, `28-apache`, `28.0.11`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/apache/Dockerfile) +- [`28.0.11-apache`, `28.0-apache`, `28-apache`, `28.0.11`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/apache/Dockerfile) -- [`28.0.11-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/fpm/Dockerfile) +- [`28.0.11-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/fpm/Dockerfile) -- [`28.0.11-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/28/fpm-alpine/Dockerfile) +- [`28.0.11-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/fpm-alpine/Dockerfile) -- [`29.0.8-apache`, `29.0-apache`, `29-apache`, `29.0.8`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/apache/Dockerfile) +- [`29.0.8-apache`, `29.0-apache`, `29-apache`, `29.0.8`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/apache/Dockerfile) -- [`29.0.8-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/fpm/Dockerfile) +- [`29.0.8-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/fpm/Dockerfile) -- [`29.0.8-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/178f8b65d34f49f649aa729de148c24a4d79db84/29/fpm-alpine/Dockerfile) +- [`29.0.8-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/fpm-alpine/Dockerfile) -- [`30.0.0-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.0`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/apache/Dockerfile) +- [`30.0.1-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.1`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/apache/Dockerfile) -- [`30.0.0-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/fpm/Dockerfile) +- [`30.0.1-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm/Dockerfile) -- [`30.0.0-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/6c1075b88d7184b067ce7c685ed55d136f7f0635/30/fpm-alpine/Dockerfile) +- [`30.0.1-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index 0bd00bfd729d..6ac6ab79d064 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/54368db3f823b6ced026297c058973eabad1e930/Dockerfile) +- [`6.4.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/10abc2b0ea09cceedb65cf58a2cf843992d88a27/Dockerfile) - [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) From a52bcaf648a166d2e8e7388f62121b5eed7fae7b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Oct 2024 17:09:21 -0700 Subject: [PATCH 1611/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 595e338706e9..98542cbc2062 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.96.2`, `5.96`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6e57615195e07b27a0bc9d09a5b41721e528b3cc/5/debian/Dockerfile) +- [`5.97.0`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3c1f01a23077093a77eb0df9933e90c364610c8b/5/debian/Dockerfile) -- [`5.96.2-alpine`, `5.96-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6e57615195e07b27a0bc9d09a5b41721e528b3cc/5/alpine/Dockerfile) +- [`5.97.0-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3c1f01a23077093a77eb0df9933e90c364610c8b/5/alpine/Dockerfile) # Quick reference (cont.) From 852d9d33262530c248f1bb9a8f9f531076472ac0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Oct 2024 18:09:21 -0700 Subject: [PATCH 1612/2686] Run update.sh --- openjdk/README.md | 36 +++++++------- python/README.md | 121 ++++++++++++++++++++++++++++------------------ 2 files changed, 92 insertions(+), 65 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 5f93fb223d0f..b58c9d5724e8 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-19-jdk-oraclelinux9`, `24-ea-19-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-19-jdk-oracle`, `24-ea-19-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-20-jdk-oraclelinux9`, `24-ea-20-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-20-jdk-oracle`, `24-ea-20-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-19-jdk-oraclelinux8`, `24-ea-19-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-20-jdk-oraclelinux8`, `24-ea-20-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-19-jdk-bookworm`, `24-ea-19-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/bookworm/Dockerfile) +- [`24-ea-20-jdk-bookworm`, `24-ea-20-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/bookworm/Dockerfile) -- [`24-ea-19-jdk-slim-bookworm`, `24-ea-19-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-19-jdk-slim`, `24-ea-19-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-20-jdk-slim-bookworm`, `24-ea-20-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-20-jdk-slim`, `24-ea-20-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-19-jdk-bullseye`, `24-ea-19-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/bullseye/Dockerfile) +- [`24-ea-20-jdk-bullseye`, `24-ea-20-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/bullseye/Dockerfile) -- [`24-ea-19-jdk-slim-bullseye`, `24-ea-19-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-20-jdk-slim-bullseye`, `24-ea-20-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-19-jdk-windowsservercore-ltsc2022`, `24-ea-19-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-20-jdk-windowsservercore-ltsc2022`, `24-ea-20-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-19-jdk-windowsservercore-1809`, `24-ea-19-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-20-jdk-windowsservercore-1809`, `24-ea-20-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-19-jdk-nanoserver-1809`, `24-ea-19-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-20-jdk-nanoserver-1809`, `24-ea-20-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-19-jdk`, `24-ea-19`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-20-jdk`, `24-ea-20`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-19-jdk-windowsservercore`, `24-ea-19-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-20-jdk-windowsservercore`, `24-ea-20-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-19-jdk-nanoserver`, `24-ea-19-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-20-jdk-nanoserver`, `24-ea-20-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/f1194fa1060e93ae0eae9aa083b9dade9f89ad51/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index f712f88bd13c..37c3cd4616e3 100644 --- a/python/README.md +++ b/python/README.md @@ -28,109 +28,136 @@ WARNING: ## Simple Tags -- [`3.13.0-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bookworm/Dockerfile) +- [`3.14.0a1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bookworm/Dockerfile) -- [`3.13.0-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.0-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/slim-bookworm/Dockerfile) +- [`3.14.0a1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/slim-bookworm/Dockerfile) -- [`3.13.0-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bullseye/Dockerfile) +- [`3.14.0a1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bullseye/Dockerfile) -- [`3.13.0-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/slim-bullseye/Dockerfile) +- [`3.14.0a1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/slim-bullseye/Dockerfile) -- [`3.13.0-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/alpine3.20/Dockerfile) +- [`3.14.0a1-alpine3.20`, `3.14-rc-alpine3.20`, `3.14.0a1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/alpine3.20/Dockerfile) -- [`3.13.0-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/alpine3.19/Dockerfile) +- [`3.14.0a1-alpine3.19`, `3.14-rc-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/alpine3.19/Dockerfile) -- [`3.13.0-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a1-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.12.7-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) +- [`3.13.0-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bookworm/Dockerfile) -- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3.12.7-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bookworm/Dockerfile) +- [`3.13.0-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.0-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/slim-bookworm/Dockerfile) -- [`3.12.7-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bullseye/Dockerfile) +- [`3.13.0-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bullseye/Dockerfile) -- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/slim-bullseye/Dockerfile) +- [`3.13.0-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/slim-bullseye/Dockerfile) -- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3.12.7-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.20/Dockerfile) +- [`3.13.0-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/alpine3.20/Dockerfile) -- [`3.12.7-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/alpine3.19/Dockerfile) +- [`3.13.0-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/alpine3.19/Dockerfile) -- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.0-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.13.0-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) +- [`3.12.7-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bookworm/Dockerfile) -- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/slim-bookworm/Dockerfile) +- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3.12.7-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/slim-bookworm/Dockerfile) -- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bullseye/Dockerfile) +- [`3.12.7-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bullseye/Dockerfile) -- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/slim-bullseye/Dockerfile) +- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/slim-bullseye/Dockerfile) -- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/alpine3.20/Dockerfile) +- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3.12.7-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/alpine3.20/Dockerfile) -- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/alpine3.19/Dockerfile) +- [`3.12.7-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/alpine3.19/Dockerfile) -- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bookworm/Dockerfile) +- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/slim-bookworm/Dockerfile) +- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bullseye/Dockerfile) +- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bookworm/Dockerfile) -- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/slim-bullseye/Dockerfile) +- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/slim-bookworm/Dockerfile) -- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/alpine3.20/Dockerfile) +- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bullseye/Dockerfile) -- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/alpine3.19/Dockerfile) +- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/slim-bullseye/Dockerfile) -- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bookworm/Dockerfile) +- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/alpine3.20/Dockerfile) -- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/slim-bookworm/Dockerfile) +- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/alpine3.19/Dockerfile) -- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bullseye/Dockerfile) +- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bookworm/Dockerfile) -- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/slim-bullseye/Dockerfile) +- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/slim-bookworm/Dockerfile) -- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/alpine3.20/Dockerfile) +- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bullseye/Dockerfile) -- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/alpine3.19/Dockerfile) +- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/slim-bullseye/Dockerfile) + +- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/alpine3.20/Dockerfile) + +- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/alpine3.19/Dockerfile) + +- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bookworm/Dockerfile) + +- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/slim-bookworm/Dockerfile) + +- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bullseye/Dockerfile) + +- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/slim-bullseye/Dockerfile) + +- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/alpine3.20/Dockerfile) + +- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/alpine3.19/Dockerfile) ## Shared Tags +- `3.14.0a1`, `3.14-rc`: + + - [`3.14.0a1-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) + +- `3.14.0a1-windowsservercore`, `3.14-rc-windowsservercore`: + + - [`3.14.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - `3.13.0`, `3.13`, `3`, `latest`: - - [`3.13.0-bookworm`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/bookworm/Dockerfile) - - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bookworm/Dockerfile) + - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) - `3.13.0-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/7c8595e8e2b1c8bca0b6d9d146675b94c2a37ec7/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) - `3.12.7`, `3.12`: - - [`3.12.7-bookworm`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/bookworm/Dockerfile) - - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.7-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bookworm/Dockerfile) + - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.7-windowsservercore`, `3.12-windowsservercore`: - - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4babb0e3da12a080e249f0d15c61404ac2e5d3b0/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.10`, `3.11`: - - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.11/bookworm/Dockerfile) + - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bookworm/Dockerfile) - `3.10.15`, `3.10`: - - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.10/bookworm/Dockerfile) + - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bookworm/Dockerfile) - `3.9.20`, `3.9`: - - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/9cd324371ef929bfc5036a00d7705a213d8b5020/3.9/bookworm/Dockerfile) + - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bookworm/Dockerfile) # Quick reference (cont.) From c64b526909defb13ef02bdc23a3d9e0862446960 Mon Sep 17 00:00:00 2001 From: Bjoern Ludwig Date: Sat, 19 Oct 2024 18:34:42 +0200 Subject: [PATCH 1613/2686] Update caddy/content.md with one more change completing the intended change from commit d860ee48 --- caddy/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/caddy/content.md b/caddy/content.md index 7708ac2c58a1..c3560e7f301c 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -123,7 +123,7 @@ See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. ### Docker Compose example -If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. +If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. The configuration assumes you put a custom Caddyfile into `$PWD/conf` as described [above](#basic-usage). ```yaml services: @@ -137,7 +137,7 @@ services: - "443:443" - "443:443/udp" volumes: - - $PWD/caddyfile:/etc/caddy + - $PWD/conf:/etc/caddy - $PWD/site:/srv - caddy_data:/data - caddy_config:/config From d0add51124106eb75429bd8cb6f3c0d26a15f025 Mon Sep 17 00:00:00 2001 From: Bjoern Ludwig Date: Sat, 19 Oct 2024 18:38:37 +0200 Subject: [PATCH 1614/2686] Update caddy/content.md with improved wording --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index c3560e7f301c..423526b71820 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -46,7 +46,7 @@ $ docker run -d -p 80:80 \ #### ⚠️ Do not mount the Caddyfile directly at `/etc/caddy/Caddyfile` -This effectively disables Caddy's graceful reload feature in many cases depending on the way you apply changes to the file as discussed in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). +If vim or another editor is used that changes the inode of the edited file, the changes will only be applied within the container when the container is recreated , which is explained in detail in this [Medium article](https://medium.com/@jonsbun/why-need-to-be-careful-when-mounting-single-files-into-a-docker-container-4f929340834). When using such an editor, Caddy's graceful reload functionality might not work as expected, as described in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). ### Automatic TLS with the Caddy image From 6e3e993f3b6980a4aedb5d23edb53999ba191f8d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Oct 2024 10:09:12 -0700 Subject: [PATCH 1615/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- archlinux/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 93175f23a936..4c451c9658a2 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.5.20241001.1`](https://github.com/amazonlinux/container-images/blob/5c9fcc247702271c2322b661be0dd73275953750/Dockerfile) +- [`2023`, `latest`, `2023.6.20241010.0`](https://github.com/amazonlinux/container-images/blob/c83383b00b6d1382f06ca5dca262091847258322/Dockerfile) -- [`2`, `2.0.20241001.0`](https://github.com/amazonlinux/container-images/blob/56c21485422ff336ba13fe3d95d957477b89ee95/Dockerfile) +- [`2`, `2.0.20241014.0`](https://github.com/amazonlinux/container-images/blob/0c5f82c64737f55a558fe44ef6a79b9537c4d143/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index fd4362def4fe..a4c8f46b1a6c 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.base) +- [`latest`, `base`, `base-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.base) -- [`base-devel`, `base-devel-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241013.0.269705`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0c148627cbaec35859691a2a55df21874ad665ef/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.multilib-devel) # Quick reference (cont.) From 7faa27723142528c02506d155782b70ef6735645 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Oct 2024 11:09:49 -0700 Subject: [PATCH 1616/2686] Run update.sh --- cassandra/README.md | 2 +- clearlinux/README.md | 2 +- memcached/README.md | 4 +-- nextcloud/README.md | 6 ++--- perl/README.md | 64 ++++++++++++++++++++++---------------------- storm/README.md | 4 +-- xwiki/README.md | 6 ++--- 7 files changed, 44 insertions(+), 44 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index cc97d943cfcc..7b005ab4767a 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.1`, `5.0`, `5`, `latest`, `5.0.1-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/9c4cfca225a711f4523ef5134cc54c1a62e69eba/5.0/Dockerfile) +- [`5.0.2`, `5.0`, `5`, `latest`, `5.0.2-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/1e3d5732f34ceb9e77870d0be9501515f917cc60/5.0/Dockerfile) - [`4.1.7`, `4.1`, `4`, `4.1.7-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/ad1d8a96d90bd17a5be305628aac3dafa9a11f5c/4.1/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index 826314326934..e1c280d7a133 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/07ecdcda48354fb87bea40971e9f49b6eb9fcfcc/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6a3ac15e2aa632078f357db3880163a225cd9b45/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 59afca9e9fc9..c905ff559834 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.31`, `1.6`, `1`, `latest`, `1.6.31-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/3598423e1058ace87504520c43095bf87438deaf/1/debian/Dockerfile) +- [`1.6.32`, `1.6`, `1`, `latest`, `1.6.32-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/89c8fdb68df3a904503298751ac8862f283328e6/1/debian/Dockerfile) -- [`1.6.31-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.31-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/3598423e1058ace87504520c43095bf87438deaf/1/alpine/Dockerfile) +- [`1.6.32-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.32-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/89c8fdb68df3a904503298751ac8862f283328e6/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 346386fb15b8..397ef0bd5c9d 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -40,11 +40,11 @@ WARNING: - [`29.0.8-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/fpm-alpine/Dockerfile) -- [`30.0.1-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.1`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/apache/Dockerfile) +- [`30.0.1-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.1`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/apache/Dockerfile) -- [`30.0.1-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm/Dockerfile) +- [`30.0.1-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm/Dockerfile) -- [`30.0.1-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm-alpine/Dockerfile) +- [`30.0.1-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index e75704f37c70..c4adb665381e 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.4`, `5.41`, `devel`, `5.41.4-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main-bookworm/Dockerfile) +- [`5.41.5`, `5.41`, `devel`, `5.41.5-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main-bookworm/Dockerfile) -- [`5.41.4-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main-bullseye/Dockerfile) +- [`5.41.5-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main-bullseye/Dockerfile) -- [`5.41.4-slim`, `5.41-slim`, `devel-slim`, `5.41.4-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim-bookworm/Dockerfile) +- [`5.41.5-slim`, `5.41-slim`, `devel-slim`, `5.41.5-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim-bookworm/Dockerfile) -- [`5.41.4-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim-bullseye/Dockerfile) +- [`5.41.5-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim-bullseye/Dockerfile) -- [`5.41.4-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.4-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main,threaded-bookworm/Dockerfile) +- [`5.41.5-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.5-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main,threaded-bookworm/Dockerfile) -- [`5.41.4-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-main,threaded-bullseye/Dockerfile) +- [`5.41.5-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main,threaded-bullseye/Dockerfile) -- [`5.41.4-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.4-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim,threaded-bookworm/Dockerfile) +- [`5.41.5-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.5-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim,threaded-bookworm/Dockerfile) -- [`5.41.4-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f551b853d080de65e436cd1c84b78feedcd378f5/5.041.004-slim,threaded-bullseye/Dockerfile) +- [`5.41.5-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index e29f113548c1..9102d8aaa22e 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.6.4`, `2.6`, `latest`](https://github.com/apache/storm-docker/blob/3d67ed2cbc3d15b210840745292d53c0ece4f63c/2.6.4/Dockerfile) +- [`2.7.0`, `2.7`, `latest`](https://github.com/apache/storm-docker/blob/4980d0d2b0d40c525f88622adf1547a20054adb6/2.7.0/Dockerfile) -- [`2.6.4-jre17`, `2.6-jre17`](https://github.com/apache/storm-docker/blob/3d67ed2cbc3d15b210840745292d53c0ece4f63c/2.6.4-jre17/Dockerfile) +- [`2.7.0-jre17`, `2.7-jre17`](https://github.com/apache/storm-docker/blob/4980d0d2b0d40c525f88622adf1547a20054adb6/2.7.0-jre17/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 6da990deda0c..5f5f4d906264 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.8-mariadb-tomcat`, `16.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.12`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.13`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2d98566aa86c46a2a47ba7a8ef9cc914a04b83a7/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.4`, `16.4-mysql-tomcat`, `16.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/mysql-tomcat/Dockerfile) From c845030607128f150b92833987be25556e4f2140 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Oct 2024 14:09:14 -0700 Subject: [PATCH 1617/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 09e414b445b9..93a5331cdc7b 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/91f9975d4bb91d7c916ef74de77911d961ac9b75/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From ed599b23070b179f126e5ea53e9fb5b5be9074cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Oct 2024 09:09:17 -0700 Subject: [PATCH 1618/2686] Run update.sh --- emqx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README.md b/emqx/README.md index b26ab6ee52f4..2206f2659c1c 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -38,7 +38,7 @@ WARNING: - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.0`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/69e9c223e2215fb5d071dec6cc6aa19c106331e7/5.8/Dockerfile) +- [`5.8.1`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/2b80e3422224db8bcf69ee62e8414b63dca0fec6/5.8/Dockerfile) # Quick reference (cont.) From 2bf3f35668aa317173130ea9ec92a7afd31f42e9 Mon Sep 17 00:00:00 2001 From: Roger Light Date: Mon, 21 Oct 2024 11:44:01 +0100 Subject: [PATCH 1619/2686] eclipse-mosquitto: Update license and improve documentation --- eclipse-mosquitto/content.md | 26 ++++++++++++++++++++++---- eclipse-mosquitto/license.md | 2 +- eclipse-mosquitto/metadata.json | 1 + 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/eclipse-mosquitto/content.md b/eclipse-mosquitto/content.md index 98b62e76b11d..0a6adf717d93 100644 --- a/eclipse-mosquitto/content.md +++ b/eclipse-mosquitto/content.md @@ -1,9 +1,13 @@ # What is Eclipse Mosquitto? -Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol. Main homepages: http://mosquitto.org/ +Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol. Main homepage: http://mosquitto.org/ %%LOGO%% +# Eclipse Mosquitto and Cedalo + +[Cedalo](https://cedalo.com/?utm_source=docker-mosquitto&utm_medium=text&utm_campaign=cedalo-name) provides commercial support, enterprise MQTT products, professional services and training for Eclipse Mosquitto. + # How to use this image ## Directories @@ -14,12 +18,14 @@ Three directories have been created in the image to be used for configuration, p /mosquitto/data /mosquitto/log +It is suggested to mirror this structure for your local configuration. + ## Configuration -When running the image, the default configuration values are used. To use a custom configuration file, mount a **local** configuration file to `/mosquitto/config/mosquitto.conf` +When running the image, the default configuration values are used. To use a custom configuration file, create your mosquitto.conf in `$PWD/mosquitto/config/mosquitto.conf`, then mount the config directory to `/mosquitto/config`. ```console -$ docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/config/mosquitto.conf %%IMAGE%% +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" %%IMAGE%% ``` Configuration can be changed to: @@ -40,7 +46,19 @@ i.e. add the following to `mosquitto.conf`: Run a container using the new image: ```console -$ docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log %%IMAGE%% +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v /mosquitto/data -v /mosquitto/log %%IMAGE%% +``` + +or: + +```console +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v "$PWD/mosquitto/data:/mosquitto/data" -v "$PWD/mosquitto/log:/mosquitto/log" %%IMAGE%% ``` **Note**: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated to expose the ports that have been configured. + +For example, if you use port 1883 and port 8080: + +```console +$ docker run -it -p 1883:1883 -p 8080:8080 -v "$PWD/mosquitto/config:/mosquitto/config" %%IMAGE%% +``` diff --git a/eclipse-mosquitto/license.md b/eclipse-mosquitto/license.md index 87d41d6b9caf..069f3ad5c8de 100644 --- a/eclipse-mosquitto/license.md +++ b/eclipse-mosquitto/license.md @@ -1 +1 @@ -Eclipse Mosquitto is released under the [EPL](https://www.eclipse.org/legal/epl-v10.html)/[EDL](https://eclipse.org/org/documents/edl-v10.php) +Eclipse Mosquitto is released under the [EPL](https://www.eclipse.org/legal/epl-v20.html)/[EDL](https://eclipse.org/org/documents/edl-v10.php) diff --git a/eclipse-mosquitto/metadata.json b/eclipse-mosquitto/metadata.json index 66ae22756c7e..adaed340122a 100644 --- a/eclipse-mosquitto/metadata.json +++ b/eclipse-mosquitto/metadata.json @@ -1,6 +1,7 @@ { "hub": { "categories": [ + "internet-of-things", "message-queues" ] } From 9ca42fb97710aa7dd57d0327d7d5a8950dc6bf81 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Oct 2024 11:10:05 -0700 Subject: [PATCH 1620/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index ff04f1681032..e17002388cb6 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/elasticsearch/Dockerfile) -- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/elasticsearch/Dockerfile) +- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 24888cb1303a..3273758ff791 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/kibana/Dockerfile) -- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/kibana/Dockerfile) +- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index aead9785afac..d37de7fd603c 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/logstash/Dockerfile) -- [`7.17.24`](https://github.com/elastic/dockerfiles/blob/5e07485ccc161d0661f8a04462b6cc6f565e2573/logstash/Dockerfile) +- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/logstash/Dockerfile) # Quick reference (cont.) From df249acd99499d785b2a5444778508db70a0475d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Oct 2024 12:09:11 -0700 Subject: [PATCH 1621/2686] Run update.sh --- bash/README.md | 2 +- eclipse-mosquitto/README.md | 28 +++++++++++++++++++++++----- influxdb/README.md | 32 ++++++++++++++++---------------- 3 files changed, 40 insertions(+), 22 deletions(-) diff --git a/bash/README.md b/bash/README.md index aa2da346ee66..8a4a06aecf08 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241012`, `devel`, `devel-20241012-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/605dec0095eade51e181fc7e9e5c0ff4bca0f39c/devel/Dockerfile) +- [`devel-20241018`, `devel`, `devel-20241018-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/6e21ce56c6df089b8e1d897b52314b2d8316d3a9/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index e26d65b87848..65d4aed9a65f 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -49,10 +49,14 @@ WARNING: # What is Eclipse Mosquitto? -Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol. Main homepages: http://mosquitto.org/ +Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol. Main homepage: http://mosquitto.org/ ![logo](https://raw.githubusercontent.com/docker-library/docs/757578e3a44e5460a8a11d32a81776f8b74231a9/eclipse-mosquitto/logo.png) +# Eclipse Mosquitto and Cedalo + +[Cedalo](https://cedalo.com/?utm_source=docker-mosquitto&utm_medium=text&utm_campaign=cedalo-name) provides commercial support, enterprise MQTT products, professional services and training for Eclipse Mosquitto. + # How to use this image ## Directories @@ -63,12 +67,14 @@ Three directories have been created in the image to be used for configuration, p /mosquitto/data /mosquitto/log +It is suggested to mirror this structure for your local configuration. + ## Configuration -When running the image, the default configuration values are used. To use a custom configuration file, mount a **local** configuration file to `/mosquitto/config/mosquitto.conf` +When running the image, the default configuration values are used. To use a custom configuration file, create your mosquitto.conf in `$PWD/mosquitto/config/mosquitto.conf`, then mount the config directory to `/mosquitto/config`. ```console -$ docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/config/mosquitto.conf eclipse-mosquitto +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" eclipse-mosquitto ``` Configuration can be changed to: @@ -89,14 +95,26 @@ i.e. add the following to `mosquitto.conf`: Run a container using the new image: ```console -$ docker run -it -p 1883:1883 -p 9001:9001 -v mosquitto.conf:/mosquitto/config/mosquitto.conf -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v /mosquitto/data -v /mosquitto/log eclipse-mosquitto +``` + +or: + +```console +$ docker run -it -p 1883:1883 -v "$PWD/mosquitto/config:/mosquitto/config" -v "$PWD/mosquitto/data:/mosquitto/data" -v "$PWD/mosquitto/log:/mosquitto/log" eclipse-mosquitto ``` **Note**: if the mosquitto configuration (mosquitto.conf) was modified to use non-default ports, the docker run command will need to be updated to expose the ports that have been configured. +For example, if you use port 1883 and port 8080: + +```console +$ docker run -it -p 1883:1883 -p 8080:8080 -v "$PWD/mosquitto/config:/mosquitto/config" eclipse-mosquitto +``` + # License -Eclipse Mosquitto is released under the [EPL](https://www.eclipse.org/legal/epl-v10.html)/[EDL](https://eclipse.org/org/documents/edl-v10.php) +Eclipse Mosquitto is released under the [EPL](https://www.eclipse.org/legal/epl-v20.html)/[EDL](https://eclipse.org/org/documents/edl-v10.php) As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). diff --git a/influxdb/README.md b/influxdb/README.md index 9f6664644c44..cd491dfa9aa5 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.8/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/data/Dockerfile) +- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/data/alpine/Dockerfile) +- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/meta/Dockerfile) +- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.6-data`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.7-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.6-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.6-meta`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.7-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.6-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/134d39a090aaf8baa7d8993ee503490a6bb88a15/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From e64b2e2c9c9571c69635af0202bea65da4d8adc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Oct 2024 16:09:10 -0700 Subject: [PATCH 1622/2686] Run update.sh --- couchdb/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index a18101557b46..4bac8ba9df0b 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.4.1`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.4.1/Dockerfile) +- [`latest`, `3.4.2`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.4.2/Dockerfile) -- [`3.4.1-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.4.1-nouveau/Dockerfile) +- [`3.4.2-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.4.2-nouveau/Dockerfile) -- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/e748fc4a483c1a651758df4900258701570d2533/3.3.3/Dockerfile) +- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.3.3/Dockerfile) # Quick reference (cont.) From 1922072ece747d13890e66955007f877fce3daac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Oct 2024 17:09:16 -0700 Subject: [PATCH 1623/2686] Run update.sh --- ghost/README.md | 4 ++-- wordpress/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 98542cbc2062..c68a8db8c44b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.97.0`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/3c1f01a23077093a77eb0df9933e90c364610c8b/5/debian/Dockerfile) +- [`5.97.1`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef1e70db14f835d58935b3ada3dddd7746fb4dfb/5/debian/Dockerfile) -- [`5.97.0-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3c1f01a23077093a77eb0df9933e90c364610c8b/5/alpine/Dockerfile) +- [`5.97.1-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef1e70db14f835d58935b3ada3dddd7746fb4dfb/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4168dd99bfbd..21e1d647e2d8 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-beta3-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-beta3-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-RC1-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC1-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-beta3-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-RC1-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-beta3-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-RC1-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-beta3-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-beta3`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-beta3-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-beta3-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-RC1-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC1`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC1-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC1-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-beta3-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-beta3-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-RC1-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC1-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-beta3-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-beta3-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-RC1-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC1-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-beta3-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-beta3-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-RC1-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC1-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-beta3-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-RC1-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-beta3-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-RC1-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 9aafc716d112f30fcd6037549e189be5246f3c31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Oct 2024 15:21:09 -0700 Subject: [PATCH 1624/2686] Run update.sh --- flink/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flink/README.md b/flink/README.md index 63bb127d6bfd..513b0bcaf179 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`2.0-preview1-scala_2.12-java17`, `2.0-scala_2.12-java17`, `2.0-preview1-java17`, `2.0-java17`](https://github.com/apache/flink-docker/blob/3a8ba480ff327674b0a090c6ce417f0437576e92/2.0/scala_2.12-java17-ubuntu/Dockerfile) + +- [`2.0-preview1-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0-preview1-scala_2.12`, `2.0-scala_2.12`, `2.0-preview1-java11`, `2.0-java11`, `2.0-preview1`, `2.0`](https://github.com/apache/flink-docker/blob/3a8ba480ff327674b0a090c6ce417f0437576e92/2.0/scala_2.12-java11-ubuntu/Dockerfile) + - [`1.20.0-scala_2.12-java8`, `1.20-scala_2.12-java8`, `scala_2.12-java8`, `1.20.0-java8`, `1.20-java8`, `java8`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java8-ubuntu/Dockerfile) - [`1.20.0-scala_2.12-java17`, `1.20-scala_2.12-java17`, `scala_2.12-java17`, `1.20.0-java17`, `1.20-java17`, `java17`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java17-ubuntu/Dockerfile) From e59a1c357cbc51dae64105b75ec932f5ad7493d2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Oct 2024 16:09:06 -0700 Subject: [PATCH 1625/2686] Run update.sh --- swipl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swipl/README.md b/swipl/README.md index 49786969a5f0..decc77445779 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.13`](https://github.com/SWI-Prolog/docker-swipl/blob/10c9028b9ae784dcf50efad271084887c470b150/9.3.13/bookworm/Dockerfile) +- [`latest`, `9.3.13`](https://github.com/SWI-Prolog/docker-swipl/blob/41c7a6d8b4a2911094195160c456bd88c70f821c/9.3.13/bookworm/Dockerfile) -- [`stable`, `9.2.7`](https://github.com/SWI-Prolog/docker-swipl/blob/10c9028b9ae784dcf50efad271084887c470b150/9.2.7/bookworm/Dockerfile) +- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/41c7a6d8b4a2911094195160c456bd88c70f821c/9.2.8/bookworm/Dockerfile) # Quick reference (cont.) From e5ba692497024a24e257fabed38ca09e3085af7a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Oct 2024 17:11:15 -0700 Subject: [PATCH 1626/2686] Run update.sh --- photon/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photon/README.md b/photon/README.md index 61d48015e8ed..82ffc8758be7 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241016`, `latest`](https://github.com/vmware/photon-docker-image/blob/2ff2aaada36afcfd366db0adc07b97e9ead586db/docker/Dockerfile) +- [`5.0`, `5.0-20241023`, `latest`](https://github.com/vmware/photon-docker-image/blob/fd04e387a9bb7a12544fb3f3896cf22a4a8ed71e/docker/Dockerfile) -- [`4.0`, `4.0-20241016`](https://github.com/vmware/photon-docker-image/blob/99dbc33d9f23fa9d4bfe7c5de3a9b3a5137d8ff7/docker/Dockerfile) +- [`4.0`, `4.0-20241023`](https://github.com/vmware/photon-docker-image/blob/ebaecf2875cd733d952cf28a228db7d02e5f46e8/docker/Dockerfile) -- [`3.0`, `3.0-20241016`](https://github.com/vmware/photon-docker-image/blob/666c2ce02c167004c225287e9509d430f37e8918/docker/Dockerfile) +- [`3.0`, `3.0-20241023`](https://github.com/vmware/photon-docker-image/blob/03c99783ea1c9e664fc53fb18e970629a5e9495f/docker/Dockerfile) # Quick reference (cont.) From 3017af0e35ee1f8ee12231072bbb07b1dd5eb214 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Oct 2024 18:09:14 -0700 Subject: [PATCH 1627/2686] Run update.sh --- eclipse-temurin/README.md | 366 ++++++++++++++++++++------------------ 1 file changed, 192 insertions(+), 174 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index dd1a0e285708..412ba5cc2cf5 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,317 +28,335 @@ WARNING: ## Simple Tags -- [`8u422-b05-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/alpine/Dockerfile) +- [`8u432-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/alpine/Dockerfile) -- [`8u422-b05-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/focal/Dockerfile) +- [`8u432-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/focal/Dockerfile) -- [`8u422-b05-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u432-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u422-b05-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/noble/Dockerfile) +- [`8u432-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/noble/Dockerfile) -- [`8u422-b05-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u432-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u422-b05-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u432-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u422-b05-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u432-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u422-b05-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u432-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u422-b05-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u432-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u422-b05-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/alpine/Dockerfile) +- [`8u432-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/alpine/Dockerfile) -- [`8u422-b05-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/focal/Dockerfile) +- [`8u432-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/focal/Dockerfile) -- [`8u422-b05-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/jammy/Dockerfile) +- [`8u432-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/jammy/Dockerfile) -- [`8u422-b05-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/noble/Dockerfile) +- [`8u432-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/noble/Dockerfile) -- [`8u422-b05-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u432-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u422-b05-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u432-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u422-b05-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u432-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u422-b05-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u432-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`8u422-b05-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-1809/Dockerfile) +- [`8u432-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/alpine/Dockerfile) +- [`11.0.25_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/alpine/Dockerfile) -- [`11.0.24_8-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.25_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.25_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.24_8-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.25_9-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.24_8-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.25_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.24_8-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.25_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.24_8-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.25_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.24_8-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.25_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.24_8-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.25_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.24_8-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/alpine/Dockerfile) +- [`11.0.25_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/alpine/Dockerfile) -- [`11.0.24_8-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.25_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.24_8-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.25_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.24_8-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.25_9-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.24_8-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.25_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.24_8-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.25_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.24_8-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.25_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.24_8-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.25_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.24_8-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.25_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/alpine/Dockerfile) +- [`17.0.13_11-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/alpine/Dockerfile) -- [`17.0.12_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.13_11-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.13_11-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.13_11-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.13_11-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.12_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.13_11-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.12_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.13_11-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.12_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.13_11-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.12_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.13_11-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.12_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/alpine/Dockerfile) +- [`17.0.13_11-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/alpine/Dockerfile) -- [`17.0.12_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.13_11-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.12_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.13_11-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.12_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.13_11-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.12_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.13_11-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.12_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.13_11-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.12_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.13_11-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.12_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.13_11-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.12_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.13_11-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/alpine/Dockerfile) +- [`21.0.5_11-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/alpine/Dockerfile) -- [`21.0.4_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.5_11-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.5_11-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.5_11-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.4_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.5_11-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.4_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.5_11-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.4_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.5_11-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.4_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.5_11-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.4_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/alpine/Dockerfile) +- [`21.0.5_11-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/alpine/Dockerfile) -- [`21.0.4_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.5_11-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.4_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.5_11-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.4_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.5_11-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.4_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.5_11-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.4_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.5_11-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.4_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.5_11-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.4_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.5_11-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) -- [`23_37-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/alpine/Dockerfile) +- [`23.0.1_11-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/alpine/Dockerfile) -- [`23_37-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubuntu/noble/Dockerfile) +- [`23.0.1_11-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubuntu/noble/Dockerfile) -- [`23_37-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubi/ubi9-minimal/Dockerfile) +- [`23.0.1_11-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubi/ubi9-minimal/Dockerfile) -- [`23_37-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1_11-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23_37-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23.0.1_11-jdk-nanoserver-ltsc2022`, `23-jdk-nanoserver-ltsc2022`, `23-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`23_37-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/alpine/Dockerfile) +- [`23.0.1_11-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23_37-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubuntu/noble/Dockerfile) +- [`23.0.1_11-jdk-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`23_37-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubi/ubi9-minimal/Dockerfile) +- [`23.0.1_11-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/alpine/Dockerfile) -- [`23_37-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.1_11-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubuntu/noble/Dockerfile) -- [`23_37-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) +- [`23.0.1_11-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubi/ubi9-minimal/Dockerfile) + +- [`23.0.1_11-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`23.0.1_11-jre-nanoserver-ltsc2022`, `23-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-ltsc2022/Dockerfile) + +- [`23.0.1_11-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) + +- [`23.0.1_11-jre-nanoserver-1809`, `23-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8u422-b05-jdk`, `8-jdk`, `8`: +- `8u432-b06-jdk`, `8-jdk`, `8`: + + - [`8u432-b06-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/noble/Dockerfile) + - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) + +- `8u432-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + + - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) + +- `8u432-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u422-b05-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/ubuntu/noble/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u432-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u432-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) -- `8u422-b05-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u432-b06-jre`, `8-jre`: - - [`8u422-b05-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u432-b06-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/noble/Dockerfile) + - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u422-b05-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u432-b06-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u422-b05-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u422-b05-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u422-b05-jre`, `8-jre`: +- `8u432-b06-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u422-b05-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/ubuntu/noble/Dockerfile) - - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u432-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u432-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) -- `8u422-b05-jre-windowsservercore`, `8-jre-windowsservercore`: +- `11.0.25_9-jdk`, `11-jdk`, `11`: - - [`8u422-b05-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u422-b05-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.25_9-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u422-b05-jre-nanoserver`, `8-jre-nanoserver`: +- `11.0.25_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`8u422-b05-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u422-b05-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/8/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.24_8-jdk`, `11-jdk`, `11`: +- `11.0.25_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.24_8-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.25_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.25_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) -- `11.0.24_8-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.25_9-jre`, `11-jre`: - - [`11.0.24_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.25_9-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.24_8-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.25_9-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.24_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.24_8-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.24_8-jre`, `11-jre`: +- `11.0.25_9-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.24_8-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.25_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.25_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.24_8-jre-windowsservercore`, `11-jre-windowsservercore`: +- `17.0.13_11-jdk`, `17-jdk`, `17`: - - [`11.0.24_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.13_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.24_8-jre-nanoserver`, `11-jre-nanoserver`: +- `17.0.13_11-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`11.0.24_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.24_8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/11/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.12_7-jdk`, `17-jdk`, `17`: +- `17.0.13_11-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.12_7-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.13_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.13_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) -- `17.0.12_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.13_11-jre`, `17-jre`: - - [`17.0.12_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.13_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.12_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.13_11-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.12_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.12_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.12_7-jre`, `17-jre`: +- `17.0.13_11-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.12_7-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.13_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.13_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) -- `17.0.12_7-jre-windowsservercore`, `17-jre-windowsservercore`: +- `21.0.5_11-jdk`, `21-jdk`, `21`, `latest`: - - [`17.0.12_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.5_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.12_7-jre-nanoserver`, `17-jre-nanoserver`: +- `21.0.5_11-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`17.0.12_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.12_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/17/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.4_7-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.5_11-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.4_7-jdk-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.5_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.5_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) -- `21.0.4_7-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.5_11-jre`, `21-jre`: - - [`21.0.4_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.5_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.4_7-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.5_11-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.4_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.4_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.4_7-jre`, `21-jre`: +- `21.0.5_11-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.4_7-jre-noble`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.5_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.5_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) -- `21.0.4_7-jre-windowsservercore`, `21-jre-windowsservercore`: +- `23.0.1_11-jdk`, `23-jdk`, `23`: - - [`21.0.4_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.4_7-jre-nanoserver`, `21-jre-nanoserver`: +- `23.0.1_11-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`21.0.4_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.4_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/07677395574f5d3462c3b6fdf5f6c4a0a350b683/21/jre/windows/nanoserver-1809/Dockerfile) + - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23_37-jdk`, `23-jdk`, `23`: +- `23.0.1_11-jdk-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23_37-jdk-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/ubuntu/noble/Dockerfile) - - [`23_37-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23_37-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`23.0.1_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) -- `23_37-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23.0.1_11-jre`, `23-jre`: - - [`23_37-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23_37-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) -- `23_37-jre`, `23-jre`: +- `23.0.1_11-jre-windowsservercore`, `23-jre-windowsservercore`: - - [`23_37-jre-noble`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/ubuntu/noble/Dockerfile) - - [`23_37-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23_37-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) -- `23_37-jre-windowsservercore`, `23-jre-windowsservercore`: +- `23.0.1_11-jre-nanoserver`, `23-jre-nanoserver`: - - [`23_37-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23_37-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/32e1e858b1160ce613b23ee2a7291079d8dd6139/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`23.0.1_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`23.0.1_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From a6d12c02ce4208788ced53df839c757aa6d2a9bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Oct 2024 15:09:16 -0700 Subject: [PATCH 1628/2686] Run update.sh --- geonetwork/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geonetwork/README.md b/geonetwork/README.md index 0ac66f8dc7ec..2a4cc5287ff6 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.12.12-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/postgres/Dockerfile) -- [`4.2.10`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/4305f7ddf869d8023a56d2b71a8270f706cec8aa/4.2.10/Dockerfile) +- [`4.2.11`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/060a5ab4c57d690ec5df1649718874efdc1372af/4.2.11/Dockerfile) -- [`4.4.5`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/9afe0745446f0692445d1c177601b16cc5e2440b/4.4.5/Dockerfile) +- [`4.4.6`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/164b0e4605dd3cbfca5c9be411ebc75ec2aa9267/4.4.6/Dockerfile) # Quick reference (cont.) From a18f3528cfc067e81ae3221a5376e77cfb5f5b89 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Oct 2024 16:09:10 -0700 Subject: [PATCH 1629/2686] Run update.sh --- ghost/README.md | 4 +- php/README.md | 140 +++++++++++++++--------------------------------- 2 files changed, 44 insertions(+), 100 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c68a8db8c44b..7c5046300317 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.97.1`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ef1e70db14f835d58935b3ada3dddd7746fb4dfb/5/debian/Dockerfile) +- [`5.97.3`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f443a37a89bee7e958afbedf0dc65a770eaf9e76/5/debian/Dockerfile) -- [`5.97.1-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ef1e70db14f835d58935b3ada3dddd7746fb4dfb/5/alpine/Dockerfile) +- [`5.97.3-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f443a37a89bee7e958afbedf0dc65a770eaf9e76/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 851ce0309a85..69cf80a95a45 100644 --- a/php/README.md +++ b/php/README.md @@ -24,145 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0RC2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC2-bookworm`, `8.4-rc-bookworm`, `8.4.0RC2-cli`, `8.4-rc-cli`, `8.4.0RC2`, `8.4-rc`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0RC3-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC3-bookworm`, `8.4-rc-bookworm`, `8.4.0RC3-cli`, `8.4-rc-cli`, `8.4.0RC3`, `8.4-rc`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0RC2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0RC3-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC3-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0RC2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0RC3-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC3-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0RC2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0RC3-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC3-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0RC2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0RC3-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC3-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0RC2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0RC3-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0RC2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0RC3-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0RC2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0RC3-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0RC2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC2-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0RC3-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC3-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC3-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC3-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0RC2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0RC3-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC3-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0RC2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0RC3-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC3-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0RC2-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC2-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0RC3-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC3-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0RC2-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0RC3-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0RC2-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/1571bdd69930a49ff10e4b9cf14007293fe335ef/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0RC3-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/zts/Dockerfile) -- [`8.3.13RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.13RC1-bookworm`, `8.3-rc-bookworm`, `8.3.13RC1-cli`, `8.3-rc-cli`, `8.3.13RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.13-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.13-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.13-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.13`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/cli/Dockerfile) -- [`8.3.13RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.13RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.13-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.13-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/apache/Dockerfile) -- [`8.3.13RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.13RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.13-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.13-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/fpm/Dockerfile) -- [`8.3.13RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.13RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.13-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.13-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/zts/Dockerfile) -- [`8.3.13RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.13RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.13-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.13-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/cli/Dockerfile) -- [`8.3.13RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.13-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/apache/Dockerfile) -- [`8.3.13RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.13-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/fpm/Dockerfile) -- [`8.3.13RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.13-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/zts/Dockerfile) -- [`8.3.13RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.13RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.13RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.13RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.13-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.13-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.13-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.13-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.13RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.13RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.13-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.13-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.13RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.13RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.13-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.13-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.13RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.13RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.13-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.13-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.13RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.13-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.13RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/39c19b7c1826d632703b6584bb132cca49b3ad47/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.13-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.12-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.12-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.12-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.12`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/cli/Dockerfile) +- [`8.2.25-cli-bookworm`, `8.2-cli-bookworm`, `8.2.25-bookworm`, `8.2-bookworm`, `8.2.25-cli`, `8.2-cli`, `8.2.25`, `8.2`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/cli/Dockerfile) -- [`8.3.12-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.12-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/apache/Dockerfile) +- [`8.2.25-apache-bookworm`, `8.2-apache-bookworm`, `8.2.25-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/apache/Dockerfile) -- [`8.3.12-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.12-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/fpm/Dockerfile) +- [`8.2.25-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.25-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/fpm/Dockerfile) -- [`8.3.12-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.12-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bookworm/zts/Dockerfile) +- [`8.2.25-zts-bookworm`, `8.2-zts-bookworm`, `8.2.25-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/zts/Dockerfile) -- [`8.3.12-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.12-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/cli/Dockerfile) +- [`8.2.25-cli-bullseye`, `8.2-cli-bullseye`, `8.2.25-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/cli/Dockerfile) -- [`8.3.12-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/apache/Dockerfile) +- [`8.2.25-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/apache/Dockerfile) -- [`8.3.12-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/fpm/Dockerfile) +- [`8.2.25-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/fpm/Dockerfile) -- [`8.3.12-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/bullseye/zts/Dockerfile) +- [`8.2.25-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/zts/Dockerfile) -- [`8.3.12-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.12-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.12-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.12-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/cli/Dockerfile) +- [`8.2.25-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.25-alpine3.20`, `8.2-alpine3.20`, `8.2.25-cli-alpine`, `8.2-cli-alpine`, `8.2.25-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.12-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.12-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/fpm/Dockerfile) +- [`8.2.25-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.25-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.12-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.12-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.20/zts/Dockerfile) +- [`8.2.25-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.25-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/zts/Dockerfile) -- [`8.3.12-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.12-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/cli/Dockerfile) +- [`8.2.25-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.25-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/cli/Dockerfile) -- [`8.3.12-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/fpm/Dockerfile) +- [`8.2.25-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/fpm/Dockerfile) -- [`8.3.12-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/b5738278f548dd946177e33ecd956b50058198e9/8.3/alpine3.19/zts/Dockerfile) - -- [`8.2.25RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.25RC1-bookworm`, `8.2-rc-bookworm`, `8.2.25RC1-cli`, `8.2-rc-cli`, `8.2.25RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/cli/Dockerfile) - -- [`8.2.25RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.25RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/apache/Dockerfile) - -- [`8.2.25RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.25RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/fpm/Dockerfile) - -- [`8.2.25RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.25RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bookworm/zts/Dockerfile) - -- [`8.2.25RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.25RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/cli/Dockerfile) - -- [`8.2.25RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/apache/Dockerfile) - -- [`8.2.25RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/fpm/Dockerfile) - -- [`8.2.25RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/bullseye/zts/Dockerfile) - -- [`8.2.25RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.25RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.25RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.25RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/cli/Dockerfile) - -- [`8.2.25RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.25RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/fpm/Dockerfile) - -- [`8.2.25RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.25RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.20/zts/Dockerfile) - -- [`8.2.25RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.25RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/cli/Dockerfile) - -- [`8.2.25RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/fpm/Dockerfile) - -- [`8.2.25RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/a82d2fd8951502fc76250f73a42b03b968e89cbe/8.2-rc/alpine3.19/zts/Dockerfile) - -- [`8.2.24-cli-bookworm`, `8.2-cli-bookworm`, `8.2.24-bookworm`, `8.2-bookworm`, `8.2.24-cli`, `8.2-cli`, `8.2.24`, `8.2`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/cli/Dockerfile) - -- [`8.2.24-apache-bookworm`, `8.2-apache-bookworm`, `8.2.24-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/apache/Dockerfile) - -- [`8.2.24-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.24-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.24-zts-bookworm`, `8.2-zts-bookworm`, `8.2.24-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bookworm/zts/Dockerfile) - -- [`8.2.24-cli-bullseye`, `8.2-cli-bullseye`, `8.2.24-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/cli/Dockerfile) - -- [`8.2.24-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/apache/Dockerfile) - -- [`8.2.24-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.24-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/bullseye/zts/Dockerfile) - -- [`8.2.24-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.24-alpine3.20`, `8.2-alpine3.20`, `8.2.24-cli-alpine`, `8.2-cli-alpine`, `8.2.24-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.24-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.24-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.24-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.24-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.20/zts/Dockerfile) - -- [`8.2.24-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.24-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/cli/Dockerfile) - -- [`8.2.24-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/fpm/Dockerfile) - -- [`8.2.24-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/af8ac60919a620eea53a785ef31b88d78e5a1513/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.25-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/zts/Dockerfile) - [`8.1.30-cli-bookworm`, `8.1-cli-bookworm`, `8.1.30-bookworm`, `8.1-bookworm`, `8.1.30-cli`, `8.1-cli`, `8.1.30`, `8.1`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/cli/Dockerfile) From ae93268e62ad9938e7f4f169fb20e6b67f63addc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Oct 2024 09:09:15 -0700 Subject: [PATCH 1630/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index f1cd941bb866..5b1092e43bf6 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.19`, `23.0-alpine3.19`, `23.0.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/alpine3.19/Dockerfile) +- [`23-alpine3.19`, `23.1-alpine3.19`, `23.1.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/alpine3.19/Dockerfile) -- [`23-alpine`, `23-alpine3.20`, `23.0-alpine`, `23.0-alpine3.20`, `23.0.0-alpine`, `23.0.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/alpine3.20/Dockerfile) +- [`23-alpine`, `23-alpine3.20`, `23.1-alpine`, `23.1-alpine3.20`, `23.1.0-alpine`, `23.1.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/alpine3.20/Dockerfile) -- [`23`, `23-bookworm`, `23.0`, `23.0-bookworm`, `23.0.0`, `23.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.1`, `23.1-bookworm`, `23.1.0`, `23.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.0-bookworm-slim`, `23.0-slim`, `23.0.0-bookworm-slim`, `23.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.1-bookworm-slim`, `23.1-slim`, `23.1.0-bookworm-slim`, `23.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.0-bullseye`, `23.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.1-bullseye`, `23.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.0-bullseye-slim`, `23.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/1ef28c2d9777d354513929cf85bca4d6fdac0dc3/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.1-bullseye-slim`, `23.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bullseye-slim/Dockerfile) - [`22-alpine3.19`, `22.10-alpine3.19`, `22.10.0-alpine3.19`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/alpine3.19/Dockerfile) From 5560be2c5e7c61a033dcd4e3018c14386d4769e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Oct 2024 11:09:08 -0700 Subject: [PATCH 1631/2686] Run update.sh --- couchbase/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index 964821fdb42d..44966817d1f4 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -28,7 +28,7 @@ WARNING: - [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) -- [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) +- [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/857d7bcc814e241fd36aa4dc326dcab37e1d1e73/enterprise/couchbase-server/7.2.6/Dockerfile) - [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) From 7039ce2e6c65057e777cc882641a6ff35509567e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Oct 2024 14:09:15 -0700 Subject: [PATCH 1632/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 1442ff8a2d57..ee49187b295b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b1d5a1b29292865ed0b5ba26ff6a024935b8d65b/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7-slim-fips/Dockerfile) # Quick reference (cont.) From fbb6317eaa350c2ca9389f7550dc5b4c4ae6aec5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Oct 2024 16:09:05 -0700 Subject: [PATCH 1633/2686] Run update.sh --- almalinux/README.md | 4 ++ mongo/README.md | 146 ++++++++++++++++++-------------------------- openjdk/README.md | 36 +++++------ 3 files changed, 82 insertions(+), 104 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 15b9f352cfd9..99b5e53a238b 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`10-kitten`, `10-kitten-20241024`](https://github.com/AlmaLinux/container-images/blob/a1cecc826bfdd29e027ffdbfb73793cd64afe3f3/default/amd64/Dockerfile) + +- [`10-kitten-minimal`, `10-kitten-minimal-20241024`](https://github.com/AlmaLinux/container-images/blob/a1cecc826bfdd29e027ffdbfb73793cd64afe3f3/minimal/amd64/Dockerfile) + - [`8`, `8.10`, `8.10-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/default/amd64/Dockerfile) - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/minimal/amd64/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index d3e9e9844cb8..6d98debcd6ed 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,137 +28,111 @@ WARNING: ## Simple Tags -- [`8.0.1-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/Dockerfile) +- [`8.0.3-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) -- [`8.0.1-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.3-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.1-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) +- [`8.0.3-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.1-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.3-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.1-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.3-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.15-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/Dockerfile) +- [`7.0.15-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) -- [`7.0.15-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.15-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.15-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.15-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.15-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.15-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.15-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.15-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.14-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/7.0/Dockerfile) +- [`6.0.19-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) -- [`7.0.14-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.19-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.14-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.19-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.14-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.19-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.14-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.19-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.18-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/6.0/Dockerfile) +- [`5.0.30-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) -- [`6.0.18-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.30-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.18-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.30-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.18-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.30-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.18-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-1809/Dockerfile) - -- [`5.0.29-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/5.0/Dockerfile) - -- [`5.0.29-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.29-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.29-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.29-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.30-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8.0.1`, `8.0`, `8`, `latest`: - - - [`8.0.1-noble`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/Dockerfile) - - [`8.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) - -- `8.0.1-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - - [`8.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/windowsservercore-1809/Dockerfile) - -- `8.0.1-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - - [`8.0.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c7174def8b332734803cece2bd9783d9315f40b9/8.0/windows/nanoserver-1809/Dockerfile) - -- `7.0.15-rc1`, `7.0-rc`: +- `8.0.3`, `8.0`, `8`, `latest`: - - [`7.0.15-rc1-jammy`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/Dockerfile) - - [`7.0.15-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.15-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.3-noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) + - [`8.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.15-rc1-windowsservercore`, `7.0-rc-windowsservercore`: +- `8.0.3-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`7.0.15-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.15-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.15-rc1-nanoserver`, `7.0-rc-nanoserver`: +- `8.0.3-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`7.0.15-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.15-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/625c85cf91c4e86a1b5e1f61c6c8148171c32485/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.14`, `7.0`, `7`: +- `7.0.15`, `7.0`, `7`: - - [`7.0.14-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/7.0/Dockerfile) - - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.15-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) + - [`7.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.14-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.15-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.14-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/f026329ba338f77401005d637716572837102972/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.14-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.15-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.14-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c738ec82e4036ccc7269415b221e6bf6313cc77a/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.18`, `6.0`, `6`: +- `6.0.19`, `6.0`, `6`: - - [`6.0.18-jammy`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/6.0/Dockerfile) - - [`6.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.19-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) + - [`6.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.18-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.19-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.18-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.19-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/989832adb12b97e7207b47daa7fddfdbfebdba97/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.29`, `5.0`, `5`: +- `5.0.30`, `5.0`, `5`: - - [`5.0.29-focal`](https://github.com/docker-library/mongo/blob/1e10aea75dac593bf66288efa8effb942ef8110c/5.0/Dockerfile) - - [`5.0.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.30-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) + - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.29-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: +- `5.0.30-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.29-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.29-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.29-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: +- `5.0.30-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.29-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.29-nanoserver-1809`](https://github.com/docker-library/mongo/blob/345b11cf918a0e0180d91e9ab8114992a53b4eba/5.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.30-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.30-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index b58c9d5724e8..190ef4fe6026 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-20-jdk-oraclelinux9`, `24-ea-20-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-20-jdk-oracle`, `24-ea-20-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-21-jdk-oraclelinux9`, `24-ea-21-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-21-jdk-oracle`, `24-ea-21-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-20-jdk-oraclelinux8`, `24-ea-20-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-21-jdk-oraclelinux8`, `24-ea-21-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-20-jdk-bookworm`, `24-ea-20-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/bookworm/Dockerfile) +- [`24-ea-21-jdk-bookworm`, `24-ea-21-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/bookworm/Dockerfile) -- [`24-ea-20-jdk-slim-bookworm`, `24-ea-20-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-20-jdk-slim`, `24-ea-20-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-21-jdk-slim-bookworm`, `24-ea-21-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-21-jdk-slim`, `24-ea-21-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-20-jdk-bullseye`, `24-ea-20-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/bullseye/Dockerfile) +- [`24-ea-21-jdk-bullseye`, `24-ea-21-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/bullseye/Dockerfile) -- [`24-ea-20-jdk-slim-bullseye`, `24-ea-20-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-21-jdk-slim-bullseye`, `24-ea-21-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-20-jdk-windowsservercore-ltsc2022`, `24-ea-20-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-21-jdk-windowsservercore-ltsc2022`, `24-ea-21-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-20-jdk-windowsservercore-1809`, `24-ea-20-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-21-jdk-windowsservercore-1809`, `24-ea-21-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-20-jdk-nanoserver-1809`, `24-ea-20-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-21-jdk-nanoserver-1809`, `24-ea-21-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-20-jdk`, `24-ea-20`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-21-jdk`, `24-ea-21`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-20-jdk-windowsservercore`, `24-ea-20-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-21-jdk-windowsservercore`, `24-ea-21-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-20-jdk-nanoserver`, `24-ea-20-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-21-jdk-nanoserver`, `24-ea-21-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b00a7bfcf54636848fa4473829e631638368346b/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From c874066051d1bd615fb041e4f758dd3fbc4c5b71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Oct 2024 10:09:09 -0700 Subject: [PATCH 1634/2686] Run update.sh --- influxdb/README.md | 34 +++++++++++++--------------------- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index cd491dfa9aa5..15081e607bf6 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.8/Dockerfile) +- [`1.11`, `1.11.7`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.8/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.7-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/alpine/Dockerfile) -- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/data/Dockerfile) -- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/data/alpine/Dockerfile) -- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/meta/Dockerfile) -- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.9/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/data/Dockerfile) +- [`1.11-data`, `1.11.7-data`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/meta/Dockerfile) +- [`1.11-meta`, `1.11.7-meta`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.7-data`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/data/Dockerfile) +- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/2.7/Dockerfile) -- [`1.11-data-alpine`, `1.11.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/data/alpine/Dockerfile) - -- [`1.11-meta`, `1.11.7-meta`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/meta/Dockerfile) - -- [`1.11-meta-alpine`, `1.11.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/1.11/meta/alpine/Dockerfile) - -- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/2.7/Dockerfile) - -- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/652e8809eda9c7fa7f0ef81f26acb246bb935801/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) @@ -62,7 +54,7 @@ WARNING: [https://github.com/influxdata/influxdata-docker/issues](https://github.com/influxdata/influxdata-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/influxdb/), [`arm32v7`](https://hub.docker.com/r/arm32v7/influxdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/influxdb/) + [`amd64`](https://hub.docker.com/r/amd64/influxdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/influxdb/) - **Published image artifact details**: [repo-info repo's `repos/influxdb/` directory](https://github.com/docker-library/repo-info/blob/master/repos/influxdb) ([history](https://github.com/docker-library/repo-info/commits/master/repos/influxdb)) From a83450be4cd4723d83a0be3fee9db24bfb4bab83 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Oct 2024 11:09:14 -0700 Subject: [PATCH 1635/2686] Run update.sh --- api-firewall/README.md | 2 +- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- ghost/README.md | 4 ++-- kapacitor/README.md | 8 ++++---- traefik/README.md | 24 ++++++++++++------------ xwiki/README.md | 6 +++--- zookeeper/README.md | 6 +----- 8 files changed, 27 insertions(+), 31 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 0ed6d295e567..bf135c2bd96c 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/b90afa9b60e9df6c596a4d6db4ef726ff132d7ee/0.8.2/Dockerfile) +- [`0.8.3`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/7ae99319347dfa931810f576a5fe194c85e3b5e7/0.8.3/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index a4c8f46b1a6c..cb2407b732e4 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.base) +- [`latest`, `base`, `base-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.base) -- [`base-devel`, `base-devel-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241020.0.271562`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eddfb50b8d25754b13615e9a5691b216bc27a9d3/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index e1c280d7a133..4051d27d9c3b 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/6a3ac15e2aa632078f357db3880163a225cd9b45/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8ec99859f07474a8394c377f2ba9f54bc057210a/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 7c5046300317..b85896a4709d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.97.3`, `5.97`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f443a37a89bee7e958afbedf0dc65a770eaf9e76/5/debian/Dockerfile) +- [`5.98.0`, `5.98`, `5`, `latest`](https://github.com/docker-library/ghost/blob/46aa6720bcac6fdcd2af55594b8db897d097baeb/5/debian/Dockerfile) -- [`5.97.3-alpine`, `5.97-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f443a37a89bee7e958afbedf0dc65a770eaf9e76/5/alpine/Dockerfile) +- [`5.98.0-alpine`, `5.98-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/46aa6720bcac6fdcd2af55594b8db897d097baeb/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index c32b0321f77e..aae634b5165f 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.6/alpine/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/Dockerfile) +- [`1.7`, `1.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9fb0398866b9fe45455cf771a2d1415b4913fc56/kapacitor/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 1051bbd6ecb8..f77d509f500e 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.2.0-rc2-windowsservercore-ltsc2022`, `3.2.0-rc2-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.0-windowsservercore-ltsc2022`, `3.2.0-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.0-rc2-windowsservercore-1809`, `3.2.0-rc2-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/1809/Dockerfile) +- [`v3.2.0-windowsservercore-1809`, `3.2.0-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/1809/Dockerfile) -- [`v3.2.0-rc2-nanoserver-ltsc2022`, `3.2.0-rc2-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.0-nanoserver-ltsc2022`, `3.2.0-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.0-rc2`, `3.2.0-rc2`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/9e567763da1d52f1916f4698a57a9f42591cd49a/v3.2/alpine/Dockerfile) +- [`v3.2.0`, `3.2.0`, `v3.2`, `3.2`, `munster`, `v3`, `3`, `latest`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/alpine/Dockerfile) -- [`v3.1.6-windowsservercore-ltsc2022`, `3.1.6-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v3.1.7-windowsservercore-ltsc2022`, `3.1.7-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.6-windowsservercore-1809`, `3.1.6-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/1809/Dockerfile) +- [`v3.1.7-windowsservercore-1809`, `3.1.7-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/1809/Dockerfile) -- [`v3.1.6-nanoserver-ltsc2022`, `3.1.6-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.1.7-nanoserver-ltsc2022`, `3.1.7-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.6`, `3.1.6`, `v3.1`, `3.1`, `comte`, `v3`, `3`, `latest`](https://github.com/traefik/traefik-library-image/blob/370363b6c9cb11184c944ad5dcfa98efdd78a86d/v3.1/alpine/Dockerfile) +- [`v3.1.7`, `3.1.7`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/alpine/Dockerfile) -- [`v2.11.12-windowsservercore-ltsc2022`, `2.11.12-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.13-windowsservercore-ltsc2022`, `2.11.13-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.12-windowsservercore-1809`, `2.11.12-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/1809/Dockerfile) +- [`v2.11.13-windowsservercore-1809`, `2.11.13-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/1809/Dockerfile) -- [`v2.11.12-nanoserver-ltsc2022`, `2.11.12-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.13-nanoserver-ltsc2022`, `2.11.13-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.12`, `2.11.12`, `v2.11`, `2.11`, `mimolette`, `v2`, `2`](https://github.com/traefik/traefik-library-image/blob/e9f3c89d32965770fc7c1ae6f6f6fa967ddeb3e9/v2.11/alpine/Dockerfile) +- [`v2.11.13`, `2.11.13`, `v2.11`, `2.11`, `mimolette`, `v2`, `2`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 5f5f4d906264..fd16b78efa46 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.8`, `16.8.0`, `16-mysql-tomcat`, `16.8-mysql-tomcat`, `16.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/mysql-tomcat/Dockerfile) +- [`16`, `16.9`, `16.9.0`, `16-mysql-tomcat`, `16.9-mysql-tomcat`, `16.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.8-postgres-tomcat`, `16.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.9-postgres-tomcat`, `16.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.8-mariadb-tomcat`, `16.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/cb2c231fd90100481fc30aa3db30d7d09107a58e/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.9-mariadb-tomcat`, `16.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.13`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mysql-tomcat/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index d8b6536786a8..3e4e17bcd65f 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -24,13 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2`, `3.7`, `3.7.2-jre-11`, `3.7-jre-11`](https://github.com/31z4/zookeeper-docker/blob/c03e4eea773bb3406fed38bdda15bf0bdfb1b35b/3.7.2-jre11/Dockerfile) - -- [`3.7.2-jre-17`, `3.7-jre-17`](https://github.com/31z4/zookeeper-docker/blob/5076660820c73f3b119cbdd1267c25a1e29cbbf4/3.7.2/Dockerfile) - - [`3.8.4`, `3.8`, `3.8.4-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.8.4/Dockerfile) -- [`3.9.2`, `3.9`, `3.9.2-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.9.2/Dockerfile) +- [`3.9.3`, `3.9`, `3.9.3-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/268d33caa089426f4f173ba0bac9277919f88dc7/3.9.3/Dockerfile) # Quick reference (cont.) From 210e6a97d65235950a8743978cc84bd998664565 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Oct 2024 14:09:04 -0700 Subject: [PATCH 1636/2686] Run update.sh --- swift/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/swift/README.md b/swift/README.md index c120cd9e418f..2a7b5d549044 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.1`, `6.0`, `6.0.1-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/24.04/Dockerfile) +- [`6.0.2`, `6.0`, `6.0.2-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/24.04/Dockerfile) -- [`6.0.1-slim`, `6.0-slim`, `6.0.1-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/24.04/slim/Dockerfile) +- [`6.0.2-slim`, `6.0-slim`, `6.0.2-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/24.04/slim/Dockerfile) -- [`6.0.1-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/22.04/Dockerfile) +- [`6.0.2-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/22.04/Dockerfile) -- [`6.0.1-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/22.04/slim/Dockerfile) +- [`6.0.2-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/22.04/slim/Dockerfile) -- [`6.0.1-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/20.04/slim/Dockerfile) +- [`6.0.2-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/20.04/slim/Dockerfile) -- [`6.0.1-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/ubuntu/20.04/Dockerfile) +- [`6.0.2-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/20.04/Dockerfile) -- [`6.0.1-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/debian/12/Dockerfile) +- [`6.0.2-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/debian/12/Dockerfile) -- [`6.0.1-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/fedora/39/Dockerfile) +- [`6.0.2-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/fedora/39/Dockerfile) -- [`6.0.1-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/amazonlinux/2/Dockerfile) +- [`6.0.2-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/amazonlinux/2/Dockerfile) -- [`6.0.1-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/amazonlinux/2/slim/Dockerfile) +- [`6.0.2-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/amazonlinux/2/slim/Dockerfile) -- [`6.0.1-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/rhel-ubi/9/Dockerfile) +- [`6.0.2-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/rhel-ubi/9/Dockerfile) -- [`6.0.1-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/rhel-ubi/9/slim/Dockerfile) +- [`6.0.2-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/rhel-ubi/9/slim/Dockerfile) -- [`6.0.1-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/6.0/windows/LTSC2022/Dockerfile) +- [`6.0.2-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/windows/LTSC2022/Dockerfile) - [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) From 06dc4fce9036018b898673b9358ca107e4d17ebb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Oct 2024 16:09:09 -0700 Subject: [PATCH 1637/2686] Run update.sh --- rabbitmq/README.md | 16 ++++------------ telegraf/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index de61781819f0..c35b418f2675 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.2`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/4d384714be0c4e4c528745136c38b7f89620410f/4.0/ubuntu/Dockerfile) +- [`4.0.3`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/fbd52bb7e92323a056919bfe6154080f65531bb4/4.0/ubuntu/Dockerfile) -- [`4.0.2-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.3-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.2-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/4d384714be0c4e4c528745136c38b7f89620410f/4.0/alpine/Dockerfile) +- [`4.0.3-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/fbd52bb7e92323a056919bfe6154080f65531bb4/4.0/alpine/Dockerfile) -- [`4.0.2-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.3-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/1ac53e66c002089bc5cab47554edcaa0087d023f/3.13/ubuntu/Dockerfile) @@ -40,14 +40,6 @@ WARNING: - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) -- [`3.12.14`, `3.12`](https://github.com/docker-library/rabbitmq/blob/20cfa9c4feae1c23ebcbe6817167f9430639d545/3.12/ubuntu/Dockerfile) - -- [`3.12.14-management`, `3.12-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/ubuntu/management/Dockerfile) - -- [`3.12.14-alpine`, `3.12-alpine`](https://github.com/docker-library/rabbitmq/blob/20cfa9c4feae1c23ebcbe6817167f9430639d545/3.12/alpine/Dockerfile) - -- [`3.12.14-management-alpine`, `3.12-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.12/alpine/management/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/telegraf/README.md b/telegraf/README.md index 7902d2c17a90..2d83ea574eb3 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.30/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.30/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0c74143ac909104d699abb1e813150de60f9d52f/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.32/alpine/Dockerfile) # Quick reference (cont.) From 2c85ac1da999db57e27ba27acb5bff2cf1f6dd54 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Oct 2024 14:09:21 -0700 Subject: [PATCH 1638/2686] Run update.sh --- orientdb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index b4f0c8c0db54..b7a31c4eac6c 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.34`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/7cd0cdeeaae09c4d4e1e18f0d154e4ed063c939b/release/3.2.x/3.2.34/Dockerfile) +- [`3.2.35`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fddfbf21e31dd169b3cfbe8f682f844d656fd160/release/3.2.x/3.2.35/Dockerfile) -- [`3.2.34-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/7cd0cdeeaae09c4d4e1e18f0d154e4ed063c939b/release/3.2.x/3.2.34-tp3/Dockerfile) +- [`3.2.35-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fddfbf21e31dd169b3cfbe8f682f844d656fd160/release/3.2.x/3.2.35-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From 532d74bfa91689620043f03b603334d01d8de264 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Oct 2024 15:09:10 -0700 Subject: [PATCH 1639/2686] Run update.sh --- julia/README.md | 34 +++++++++++++++++++++++----------- node/README.md | 24 ++++++++++++------------ odoo/README.md | 6 +++--- 3 files changed, 38 insertions(+), 26 deletions(-) diff --git a/julia/README.md b/julia/README.md index 8e383b1751f7..56c5cf4e1e27 100644 --- a/julia/README.md +++ b/julia/README.md @@ -36,13 +36,17 @@ WARNING: - [`1.11.1-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) -- [`1.10.5-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) +- [`1.10.6-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bookworm/Dockerfile) -- [`1.10.5-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bullseye/Dockerfile) +- [`1.10.6-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bullseye/Dockerfile) -- [`1.10.5-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.6-alpine3.20`, `1.10-alpine3.20`, `1.10.6-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/alpine3.20/Dockerfile) -- [`1.10.5-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.6-alpine3.19`, `1.10-alpine3.19`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/alpine3.19/Dockerfile) + +- [`1.10.6-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.10.6-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -57,16 +61,16 @@ WARNING: - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.10.5`, `1.10`: +- `1.10.6`, `1.10`: - - [`1.10.5-bookworm`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/bookworm/Dockerfile) - - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.6-bookworm`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bookworm/Dockerfile) + - [`1.10.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.5-windowsservercore`, `1.10-windowsservercore`: +- `1.10.6-windowsservercore`, `1.10-windowsservercore`: - - [`1.10.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1f13bf4304867b55217ea5e6b5338bf06e284c92/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) @@ -136,6 +140,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/node/README.md b/node/README.md index 5b1092e43bf6..dbc89259e34f 100644 --- a/node/README.md +++ b/node/README.md @@ -36,29 +36,29 @@ WARNING: - [`23-bullseye-slim`, `23.1-bullseye-slim`, `23.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bullseye-slim/Dockerfile) -- [`22-alpine3.19`, `22.10-alpine3.19`, `22.10.0-alpine3.19`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.11-alpine3.19`, `22.11.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.10-alpine`, `22.10-alpine3.20`, `22.10.0-alpine`, `22.10.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.11-alpine`, `22.11-alpine3.20`, `22.11.0-alpine`, `22.11.0-alpine3.20`, `jod-alpine`, `jod-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.10`, `22.10-bookworm`, `22.10.0`, `22.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.11`, `22.11-bookworm`, `22.11.0`, `22.11.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.10-bookworm-slim`, `22.10-slim`, `22.10.0-bookworm-slim`, `22.10.0-slim`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.11-bookworm-slim`, `22.11-slim`, `22.11.0-bookworm-slim`, `22.11.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.10-bullseye`, `22.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.11-bullseye`, `22.11.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.10-bullseye-slim`, `22.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/996a32420666439b409fd8d450ee99ef905ef66c/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.11-bullseye-slim`, `22.11.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.0-alpine`, `20.18.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.0-alpine`, `20.18.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.0`, `20.18.0-bookworm`, `iron`, `iron-bookworm`, `lts`, `lts-bookworm`, `lts-iron`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.0`, `20.18.0-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.0-bookworm-slim`, `20.18.0-slim`, `iron-bookworm-slim`, `iron-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.0-bookworm-slim`, `20.18.0-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.18-bullseye`, `20.18.0-bullseye`, `iron-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.18-bullseye`, `20.18.0-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.0-bullseye-slim`, `iron-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 912bd731e100..016b5d2478b5 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241017`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/18.0/Dockerfile) +- [`18.0-20241029`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/18.0/Dockerfile) -- [`17.0-20241017`, `17.0`, `17`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/17.0/Dockerfile) +- [`17.0-20241029`, `17.0`, `17`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/17.0/Dockerfile) -- [`16.0-20241017`, `16.0`, `16`](https://github.com/odoo/docker/blob/decdaff7f94fd13001ac5dbdba59776b628265eb/16.0/Dockerfile) +- [`16.0-20241029`, `16.0`, `16`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/16.0/Dockerfile) # Quick reference (cont.) From d01d5a96be1a278d390b117bfef39c4bbaaf9d7d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Oct 2024 16:09:11 -0700 Subject: [PATCH 1640/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 10 +++++----- ghost/README.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bash/README.md b/bash/README.md index 8a4a06aecf08..291f7f50ff75 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241018`, `devel`, `devel-20241018-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/6e21ce56c6df089b8e1d897b52314b2d8316d3a9/devel/Dockerfile) +- [`devel-20241028`, `devel`, `devel-20241028-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/d6c4b4c93318f8f01848cf3ee37533cf6a876a48/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index f31c4dae3811..88a3dc8c3ee1 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index b85896a4709d..05d420b95190 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.98.0`, `5.98`, `5`, `latest`](https://github.com/docker-library/ghost/blob/46aa6720bcac6fdcd2af55594b8db897d097baeb/5/debian/Dockerfile) +- [`5.98.1`, `5.98`, `5`, `latest`](https://github.com/docker-library/ghost/blob/98a856fad6e55ca957f0d8dc3bbf03dbef9f2011/5/debian/Dockerfile) -- [`5.98.0-alpine`, `5.98-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/46aa6720bcac6fdcd2af55594b8db897d097baeb/5/alpine/Dockerfile) +- [`5.98.1-alpine`, `5.98-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/98a856fad6e55ca957f0d8dc3bbf03dbef9f2011/5/alpine/Dockerfile) # Quick reference (cont.) From a5a771852b95015a995a31791247eeb20a64a670 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Oct 2024 17:09:23 -0700 Subject: [PATCH 1641/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 21e1d647e2d8..def74c426b1e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-RC1-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC1-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-RC2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-RC1-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-RC2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-RC1-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-RC2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-RC1-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC1`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC1-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC1-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-RC2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-RC1-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC1-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-RC2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-RC1-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC1-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-RC2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-RC1-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC1-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-RC2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-RC1-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-RC2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-RC1-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/69acde323cd1b5a24e1679dfffe6521cb09d96fe/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-RC2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From a29450f876260246a3fee56e40e436ede36265b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Oct 2024 10:09:12 -0700 Subject: [PATCH 1642/2686] Run update.sh --- composer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/README.md b/composer/README.md index acef102ecc2b..2dcb2bba6a7f 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) -- [`2.8.1`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/ab362822933eaf631c13da751f87c986fa1c644a/latest/Dockerfile) +- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/327b1e8184e42fdb25262da9617a8c236eeed82c/latest/Dockerfile) # Quick reference (cont.) From 4fddca28d784540b0411768747a2da6292445601 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Oct 2024 11:09:17 -0700 Subject: [PATCH 1643/2686] Run update.sh --- arangodb/README.md | 2 +- docker/README.md | 10 +++++----- percona/README.md | 16 ++-------------- rakudo-star/README.md | 4 ++-- ruby/README.md | 36 ++++++++++++++++++------------------ xwiki/README.md | 6 +++--- 6 files changed, 31 insertions(+), 43 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 039c8355684f..7c2997908e18 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.11`, `3.11.11`](https://github.com/arangodb/arangodb-docker/blob/4e795a0b744e1639ee537ad3f1e4c89f5577f61d/alpine/3.11.11/Dockerfile) -- [`3.12`, `3.12.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/ba430694881c65dc95aaf47e0250e501ead0f5b5/alpine/3.12.2/Dockerfile) +- [`3.12`, `3.12.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/76adfc275579f9e096d965a4afc429c2a1c25274/alpine/3.12.3/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 88a3dc8c3ee1..436aa1107b9d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2d6a55c8a243dd79115ab0dbc6b40533d536c08b/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index ed3bef070d4b..ff6cf9f7d092 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,19 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.36-28-centos`, `8.0-centos`, `8-centos`, `8.0.36-28`, `8.0`, `8`, `ps-8.0.36-28`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/02252c71b5fcf2d2235f7ec0d81940d4f2c45b64/percona-server-8.0/Dockerfile) - -- [`5.7.44-centos`, `5.7-centos`, `5-centos`, `centos`, `5.7.44`, `5.7`, `5`, `ps-5.7.44`, `ps-5.7`, `ps-5`](https://github.com/percona/percona-docker/blob/b89efa5f100edacc0ef660cef37975acfaf67326/percona-server-5.7/Dockerfile-dockerhub) - -- [`5.6.51-2-centos`, `5.6-centos`, `5.6.51-2`, `5.6`, `ps-5.6.51-2`, `ps-5.6`](https://github.com/percona/percona-docker/blob/4510d49bcce5cfce58a42c198d55399b144add83/percona-server-5.6/Dockerfile-dockerhub) - -- [`psmdb-6.0.6`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-6.0/Dockerfile) - -- [`psmdb-5.0.18`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-5.0/Dockerfile) - -- [`psmdb-4.4.22`, `psmdb-4.4`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.4/Dockerfile) - -- [`psmdb-4.2.24`, `psmdb-4.2`](https://github.com/percona/percona-docker/blob/80ab68b2d84c7c17c8cbc07edb35e35399fd0a54/percona-server-mongodb-4.2/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -46,7 +34,7 @@ WARNING: You will need to create an account if you do not have one. - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/percona/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/percona/` directory](https://github.com/docker-library/repo-info/blob/master/repos/percona) ([history](https://github.com/docker-library/repo-info/commits/master/repos/percona)) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 96af99eec204..037f2890de5b 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.09`, `bookworm`](https://github.com/Raku/docker/blob/c2a2720a8b711e4ea8a0f27e89f9d07c7b388a1f/2024.09/bookworm/Dockerfile) +- [`latest`, `2024.10`, `bookworm`](https://github.com/Raku/docker/blob/70ac3871e782228cca1256118c8a37154a164bae/2024.10/bookworm/Dockerfile) -- [`alpine`, `2024.09-alpine`](https://github.com/Raku/docker/blob/c2a2720a8b711e4ea8a0f27e89f9d07c7b388a1f/2024.09/alpine/Dockerfile) +- [`alpine`, `2024.10-alpine`](https://github.com/Raku/docker/blob/70ac3871e782228cca1256118c8a37154a164bae/2024.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 1927874a3795..d27a2b4ce625 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/bookworm/Dockerfile) -- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/slim-bookworm/Dockerfile) -- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/bullseye/Dockerfile) -- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/alpine3.20/Dockerfile) -- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/4e09dcf80f32040cde8ff4bb226367d45beadcd8/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.5-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/bookworm/Dockerfile) +- [`3.3.5-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/bookworm/Dockerfile) -- [`3.3.5-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.5-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/slim-bookworm/Dockerfile) +- [`3.3.5-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.5-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/slim-bookworm/Dockerfile) -- [`3.3.5-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/bullseye/Dockerfile) +- [`3.3.5-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/bullseye/Dockerfile) -- [`3.3.5-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/slim-bullseye/Dockerfile) +- [`3.3.5-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/slim-bullseye/Dockerfile) -- [`3.3.5-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.5-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/alpine3.20/Dockerfile) +- [`3.3.5-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.5-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/alpine3.20/Dockerfile) -- [`3.3.5-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/04175a1c782da7183d8cd1ebed8c91b3ce0fe50b/3.3/alpine3.19/Dockerfile) +- [`3.3.5-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/alpine3.19/Dockerfile) -- [`3.2.5-bookworm`, `3.2-bookworm`, `3.2.5`, `3.2`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/bookworm/Dockerfile) +- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/bookworm/Dockerfile) -- [`3.2.5-slim-bookworm`, `3.2-slim-bookworm`, `3.2.5-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/slim-bookworm/Dockerfile) +- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/slim-bookworm/Dockerfile) -- [`3.2.5-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/bullseye/Dockerfile) +- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/bullseye/Dockerfile) -- [`3.2.5-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/slim-bullseye/Dockerfile) +- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/slim-bullseye/Dockerfile) -- [`3.2.5-alpine3.20`, `3.2-alpine3.20`, `3.2.5-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/alpine3.20/Dockerfile) -- [`3.2.5-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/6438466b4fd948a31f66b2f2a934c799b598233e/3.2/alpine3.19/Dockerfile) +- [`3.2.6-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/alpine3.19/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index fd16b78efa46..e30a293549e9 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.4`, `16.4-mysql-tomcat`, `16.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.5`, `16.4-mysql-tomcat`, `16.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/0aa7b9e5d1e0756f509038a1d9aa6f7e8c1d9f01/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From c6e64718dc2a8a51f18e5d19aac39c973f8ed1c9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Oct 2024 13:09:04 -0700 Subject: [PATCH 1644/2686] Run update.sh --- redis/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redis/README.md b/redis/README.md index dc1dec05b285..08e100186eb7 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M01`, `8.0-M01-bookworm`](https://github.com/redis/docker-library-redis/blob/1b88507c82861395a5c1b354baab795c73c051e3/debian/Dockerfile) +- [`8.0-M02-alpine`, `8.0-M02-alpine3.20`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/alpine/Dockerfile) + +- [`8.0-M02`, `8.0-M02-bookworm`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/debian/Dockerfile) - [`7.4.1`, `7.4`, `7`, `latest`, `7.4.1-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/debian/Dockerfile) From 17bafd1fcdcb0442e7fc04edc82c6f9ce3ffe6c0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Oct 2024 14:09:06 -0700 Subject: [PATCH 1645/2686] Run update.sh --- crate/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crate/README.md b/crate/README.md index 2a1b734cdf5d..b5aac257c27b 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.8.3`, `5.8`, `latest`](https://github.com/crate/docker-crate/blob/a10991056f4119146bb0922a1b95b2092c69c503/Dockerfile) +- [`5.9.2`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/b544e461e4824bd3fdd2f80c4980ffe83ee4ca71/Dockerfile) -- [`5.7.5`, `5.7`](https://github.com/crate/docker-crate/blob/bb8f6698814be923367c60c2b6a31a172af07418/Dockerfile) +- [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) # Quick reference (cont.) From 0452ccf1edd358d0ade36a59036109e3ea97fc69 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Oct 2024 16:09:04 -0700 Subject: [PATCH 1646/2686] Run update.sh --- fedora/README.md | 8 ++++---- neo4j/README.md | 8 ++++---- spark/README.md | 8 ++++---- swipl/README.md | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index e326d505d709..df742c090cf4 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5b028576513bbea06b4ce927427f9bc3183285ec/x86_64/Dockerfile) +- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2317ae452755c2e2107df65560bce2772b1b45b9/x86_64/Dockerfile) -- [`40`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/587b205e429db73124477f89d3d1f77e75ef9550/x86_64/Dockerfile) +- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/0616ee9355775ebcceed32e1359150d621d25e7b/x86_64/Dockerfile) -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/bcf046150f9f7db37cb4df2e877b306cb3610d03/x86_64/Dockerfile) +- [`41`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5b4598a47ac1b8eed278a0adf90e6da04e7216e3/x86_64/Dockerfile) -- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/78f4c52f0e2202bd61997b823e5b90b347b1dfcd/x86_64/Dockerfile) +- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3474df86c07e56c6e5525e7afc9f34f8ed1dc2aa/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index c0b55e09abe3..fd3cf5b066a0 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.24.2-community-bullseye`, `5.24-community-bullseye`, `5-community-bullseye`, `5.24.2-community`, `5.24-community`, `5-community`, `5.24.2-bullseye`, `5.24-bullseye`, `5-bullseye`, `5.24.2`, `5.24`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/bullseye/community/Dockerfile) +- [`5.25.1-community-bullseye`, `5.25-community-bullseye`, `5-community-bullseye`, `5.25.1-community`, `5.25-community`, `5-community`, `5.25.1-bullseye`, `5.25-bullseye`, `5-bullseye`, `5.25.1`, `5.25`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/bullseye/community/Dockerfile) -- [`5.24.2-enterprise-bullseye`, `5.24-enterprise-bullseye`, `5-enterprise-bullseye`, `5.24.2-enterprise`, `5.24-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/bullseye/enterprise/Dockerfile) +- [`5.25.1-enterprise-bullseye`, `5.25-enterprise-bullseye`, `5-enterprise-bullseye`, `5.25.1-enterprise`, `5.25-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/bullseye/enterprise/Dockerfile) -- [`5.24.2-community-ubi9`, `5.24-community-ubi9`, `5-community-ubi9`, `5.24.2-ubi9`, `5.24-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/ubi9/community/Dockerfile) +- [`5.25.1-community-ubi9`, `5.25-community-ubi9`, `5-community-ubi9`, `5.25.1-ubi9`, `5.25-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/ubi9/community/Dockerfile) -- [`5.24.2-enterprise-ubi9`, `5.24-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/849a03d18f2cdc12f82a874d45f0c8192583cb50/5.24.2/ubi9/enterprise/Dockerfile) +- [`5.25.1-enterprise-ubi9`, `5.25-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/ubi9/enterprise/Dockerfile) - [`4.4.38`, `4.4.38-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/community/Dockerfile) diff --git a/spark/README.md b/spark/README.md index 1f3a40f6a3c5..26ff870e8ab9 100644 --- a/spark/README.md +++ b/spark/README.md @@ -56,13 +56,13 @@ WARNING: - [`3.5.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-python3-r-ubuntu/Dockerfile) -- [`3.4.3-scala2.12-java11-python3-ubuntu`, `3.4.3-python3`, `3.4.3`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.4.4-scala2.12-java11-python3-ubuntu`, `3.4.4-python3`, `3.4.4`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.4.3-scala2.12-java11-r-ubuntu`, `3.4.3-r`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.4.4-scala2.12-java11-r-ubuntu`, `3.4.4-r`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.4.3-scala2.12-java11-ubuntu`, `3.4.3-scala`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-ubuntu/Dockerfile) +- [`3.4.4-scala2.12-java11-ubuntu`, `3.4.4-scala`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-ubuntu/Dockerfile) -- [`3.4.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6f10acb452a360966ec9a971641280b7b4a3619a/3.4.3/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.4.4-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index decc77445779..48c022636fe2 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.13`](https://github.com/SWI-Prolog/docker-swipl/blob/41c7a6d8b4a2911094195160c456bd88c70f821c/9.3.13/bookworm/Dockerfile) +- [`latest`, `9.3.14`](https://github.com/SWI-Prolog/docker-swipl/blob/46c4d9b88ef1286c423af6b1fdc0ad00d00638bb/9.3.14/bookworm/Dockerfile) -- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/41c7a6d8b4a2911094195160c456bd88c70f821c/9.2.8/bookworm/Dockerfile) +- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/46c4d9b88ef1286c423af6b1fdc0ad00d00638bb/9.2.8/bookworm/Dockerfile) # Quick reference (cont.) From 392d473aa5fdae01bc6d3c55680b8aea9bece1ca Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Nov 2024 12:09:12 -0800 Subject: [PATCH 1647/2686] Run update.sh --- r-base/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-base/README.md b/r-base/README.md index 3d417496e519..afd20ef6c562 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.1`, `latest`](https://github.com/rocker-org/rocker/blob/91dd14805998d37ca5617b1853e8c60f5e032f28/r-base/4.4.1/Dockerfile) +- [`4.4.2`, `latest`](https://github.com/rocker-org/rocker/blob/91be49790deb5c8a1c0f2b64ccc5fb3696645a54/r-base/4.4.2/Dockerfile) # Quick reference (cont.) From abe61d8328e7809a5226786fafdf89cc19b1591e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Nov 2024 13:09:16 -0800 Subject: [PATCH 1648/2686] Run update.sh --- aerospike/README.md | 4 +- archlinux/README.md | 6 +-- convertigo/README.md | 2 +- erlang/README.md | 18 ++++----- ibm-semeru-runtimes/README.md | 72 +++++++++++++++++------------------ redmine/README.md | 12 +++--- 6 files changed, 57 insertions(+), 57 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 4b981498dfbf..d6b2a607311d 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.2.0.1`, `ee-7.2.0.1_2`](https://github.com/aerospike/aerospike-server.docker/blob/7e404bba91a84e533b7c5fbc91ca68dd5b3cc27e/enterprise/ubuntu24.04/Dockerfile) +- [`ee-7.2.0.3`, `ee-7.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/169e145b437e88a165b6e2b72e2312b1d2ef9409/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.2.0.1`, `ce-7.2.0.1_2`](https://github.com/aerospike/aerospike-server.docker/blob/7e404bba91a84e533b7c5fbc91ca68dd5b3cc27e/community/ubuntu24.04/Dockerfile) +- [`ce-7.2.0.3`, `ce-7.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/169e145b437e88a165b6e2b72e2312b1d2ef9409/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index cb2407b732e4..4f03b06eb1ef 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.base) +- [`latest`, `base`, `base-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.base) -- [`base-devel`, `base-devel-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241027.0.273886`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/a31e5494d1279a4ba7fc80161ff1c4bf91f196bd/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index a5f348a0046b..edf9e52d28f0 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.1`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/fc2b338e7de86f316c01b00027aed7fc42c54322/docker/default/Dockerfile) +- [`8.3.2`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/229c009b525e364cff964979567f43d372efa9e0/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 7ebc63348489..56baba7bf447 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.1.0`, `27.1.1`, `27.1`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/Dockerfile) +- [`27.1.2.0`, `27.1.2`, `27.1`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/Dockerfile) -- [`27.1.1.0-slim`, `27.1.1-slim`, `27.1-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/slim/Dockerfile) +- [`27.1.2.0-slim`, `27.1.2-slim`, `27.1-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/slim/Dockerfile) -- [`27.1.1.0-alpine`, `27.1.1-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/52b9826787ead21236b3bfc13a1d1c9e5c75f45a/27/alpine/Dockerfile) +- [`27.1.2.0-alpine`, `27.1.2-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/alpine/Dockerfile) -- [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/Dockerfile) +- [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/Dockerfile) -- [`26.2.5.2-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/slim/Dockerfile) +- [`26.2.5.2-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/slim/Dockerfile) -- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/26/alpine/Dockerfile) +- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/alpine/Dockerfile) -- [`25.3.2.13`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/Dockerfile) +- [`25.3.2.13`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/Dockerfile) -- [`25.3.2.13-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/slim/Dockerfile) +- [`25.3.2.13-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/slim/Dockerfile) -- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/6fa6c5811b9935c11d6a68db11032932491fbb7d/25/alpine/Dockerfile) +- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 214e2be37193..37417f76b96f 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,103 +28,103 @@ WARNING: ## Simple Tags -- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23_37-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23_37-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23_37-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23_37-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23_37-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23_37-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23_37-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23_37-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags - `open-8u422-b05-jdk`, `open-8-jdk`: - - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u422-b05-jre`, `open-8-jre`: - - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.24.1_8-jdk`, `open-11-jdk`: - - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.24.1_8-jre`, `open-11-jre`: - - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.12.1_7-jdk`, `open-17-jdk`: - - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.12.1_7-jre`, `open-17-jre`: - - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.4.1_7-jdk`, `open-21-jdk`: - - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.4.1_7-jre`, `open-21-jre`: - - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.2.1_9-jdk`, `open-22-jdk`: - - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-22.0.2.1_9-jre`, `open-22-jre`: - - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-23_37-jdk`, `open-23-jdk`: - - [`open-23_37-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23_37-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-23_37-jre`, `open-23-jre`: - - [`open-23_37-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/1212e4fe213cb5b4c65eb260ccbbc40a7eadfb5d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23_37-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 8dd148e34bc0..3344582961b5 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.3`, `5.1`, `5`, `latest`, `5.1.3-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/bookworm/Dockerfile) +- [`5.1.4`, `5.1`, `5`, `latest`, `5.1.4-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/bookworm/Dockerfile) -- [`5.1.3-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.3-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.20/Dockerfile) +- [`5.1.4-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.4-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.20/Dockerfile) -- [`5.1.3-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.1/alpine3.19/Dockerfile) +- [`5.1.4-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.19/Dockerfile) -- [`5.0.9`, `5.0`, `5.0.9-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/bookworm/Dockerfile) +- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/bookworm/Dockerfile) -- [`5.0.9-alpine3.20`, `5.0-alpine3.20`, `5.0.9-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.20/Dockerfile) +- [`5.0.10-alpine3.20`, `5.0-alpine3.20`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/alpine3.20/Dockerfile) -- [`5.0.9-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/f44d7a06e867841594aaaf45fddf59a77fad5337/5.0/alpine3.19/Dockerfile) +- [`5.0.10-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/alpine3.19/Dockerfile) # Quick reference (cont.) From ccb5f5a7a0b33796d5541e0de367b0719bf7d0a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Nov 2024 14:09:46 -0800 Subject: [PATCH 1649/2686] Run update.sh --- docker/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/README.md b/docker/README.md index 436aa1107b9d..d02e62306386 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/48d1736c15a79fd1c38b28acfd3ee48f4db2b421/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 6329ce534c2bbe73844f294d41ab29c5a614f433 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Nov 2024 15:09:39 -0800 Subject: [PATCH 1650/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- jruby/README.md | 32 ++++++++++++++++---------------- openjdk/README.md | 36 ++++++++++++++++++------------------ rabbitmq/README.md | 8 ++++---- 5 files changed, 42 insertions(+), 42 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 05d420b95190..0d89ec07a3fb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.98.1`, `5.98`, `5`, `latest`](https://github.com/docker-library/ghost/blob/98a856fad6e55ca957f0d8dc3bbf03dbef9f2011/5/debian/Dockerfile) +- [`5.99.0`, `5.99`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dfb81122997d9bff9de891e8622f3da9cbbaf64c/5/debian/Dockerfile) -- [`5.98.1-alpine`, `5.98-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/98a856fad6e55ca957f0d8dc3bbf03dbef9f2011/5/alpine/Dockerfile) +- [`5.99.0-alpine`, `5.99-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dfb81122997d9bff9de891e8622f3da9cbbaf64c/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 646cc3f3106f..d4061500b138 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev10`, `3.1-dev`, `3.1-dev10-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/a2995ab1bab48159a97c44e9e301714d105ec3e9/3.1/Dockerfile) +- [`3.1-dev11`, `3.1-dev`, `3.1-dev11-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/ae8136b1c0383795fc02b2443dfe785a52dd08ef/3.1/Dockerfile) -- [`3.1-dev10-alpine`, `3.1-dev-alpine`, `3.1-dev10-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/a2995ab1bab48159a97c44e9e301714d105ec3e9/3.1/alpine/Dockerfile) +- [`3.1-dev11-alpine`, `3.1-dev-alpine`, `3.1-dev11-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/ae8136b1c0383795fc02b2443dfe785a52dd08ef/3.1/alpine/Dockerfile) - [`3.0.5`, `3.0`, `lts`, `latest`, `3.0.5-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/Dockerfile) diff --git a/jruby/README.md b/jruby/README.md index 3b16761f40ab..22b9d6d98fc1 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.8`, `9.4-jre`, `9.4-jre8`, `9.4.8-jre`, `9.4.8-jre8`, `9.4.8.0`, `9.4.8.0-jre`, `9.4.8.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre8/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.9`, `9.4-jre`, `9.4-jre8`, `9.4.9-jre`, `9.4.9-jre8`, `9.4.9.0`, `9.4.9.0-jre`, `9.4.9.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.8-jdk`, `9.4.8-jdk8`, `9.4.8.0-jdk`, `9.4.8.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.9-jdk`, `9.4.9-jdk8`, `9.4.9.0-jdk`, `9.4.9.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.8-jre11`, `9.4.8.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.9-jre11`, `9.4.9.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.8-jdk11`, `9.4.8.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.9-jdk11`, `9.4.9.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.8-jdk17`, `9.4.8.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.9-jdk17`, `9.4.9.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.8-jre17`, `9.4.8.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.9-jre17`, `9.4.9.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.8-jdk21`, `9.4.8.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.9-jdk21`, `9.4.9.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.8-jre21`, `9.4.8.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.9-jre21`, `9.4.9.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/f325c86e2c2ca0bbe82f64c0aded0719372507fa/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 190ef4fe6026..208c678d15d9 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-21-jdk-oraclelinux9`, `24-ea-21-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-21-jdk-oracle`, `24-ea-21-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-22-jdk-oraclelinux9`, `24-ea-22-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-22-jdk-oracle`, `24-ea-22-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-21-jdk-oraclelinux8`, `24-ea-21-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-22-jdk-oraclelinux8`, `24-ea-22-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-21-jdk-bookworm`, `24-ea-21-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/bookworm/Dockerfile) +- [`24-ea-22-jdk-bookworm`, `24-ea-22-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/bookworm/Dockerfile) -- [`24-ea-21-jdk-slim-bookworm`, `24-ea-21-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-21-jdk-slim`, `24-ea-21-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-22-jdk-slim-bookworm`, `24-ea-22-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-22-jdk-slim`, `24-ea-22-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-21-jdk-bullseye`, `24-ea-21-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/bullseye/Dockerfile) +- [`24-ea-22-jdk-bullseye`, `24-ea-22-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/bullseye/Dockerfile) -- [`24-ea-21-jdk-slim-bullseye`, `24-ea-21-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-22-jdk-slim-bullseye`, `24-ea-22-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-21-jdk-windowsservercore-ltsc2022`, `24-ea-21-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-22-jdk-windowsservercore-ltsc2022`, `24-ea-22-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-21-jdk-windowsservercore-1809`, `24-ea-21-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-22-jdk-windowsservercore-1809`, `24-ea-22-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-21-jdk-nanoserver-1809`, `24-ea-21-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-22-jdk-nanoserver-1809`, `24-ea-22-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-21-jdk`, `24-ea-21`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-22-jdk`, `24-ea-22`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-21-jdk-windowsservercore`, `24-ea-21-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-22-jdk-windowsservercore`, `24-ea-22-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-21-jdk-nanoserver`, `24-ea-21-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-22-jdk-nanoserver`, `24-ea-22-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/77b90933cc6d05671b6591c152d134de699d4bf0/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index c35b418f2675..e9f542f3df0d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.3`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/fbd52bb7e92323a056919bfe6154080f65531bb4/4.0/ubuntu/Dockerfile) +- [`4.0.3`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/471ed1c648396130ba247ce62fb475f666db7d2d/4.0/ubuntu/Dockerfile) - [`4.0.3-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.3-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/fbd52bb7e92323a056919bfe6154080f65531bb4/4.0/alpine/Dockerfile) +- [`4.0.3-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/471ed1c648396130ba247ce62fb475f666db7d2d/4.0/alpine/Dockerfile) - [`4.0.3-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/1ac53e66c002089bc5cab47554edcaa0087d023f/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ff0bdcfd8c2e81bfeec9a7ad0b432b561ee9f04f/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/1ac53e66c002089bc5cab47554edcaa0087d023f/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/ff0bdcfd8c2e81bfeec9a7ad0b432b561ee9f04f/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From bca87d800a918d5380f08fb354fcca1c80207a39 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Nov 2024 11:34:40 -0800 Subject: [PATCH 1651/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 10 +++++----- ruby/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/bash/README.md b/bash/README.md index 291f7f50ff75..35ba27ce6fbd 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241028`, `devel`, `devel-20241028-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/d6c4b4c93318f8f01848cf3ee37533cf6a876a48/devel/Dockerfile) +- [`devel-20241104`, `devel`, `devel-20241104-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/508d3de5a17a4ea29237e92c91c6584c6eee0561/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/docker/README.md b/docker/README.md index d02e62306386..021fbacdc994 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e4f50f81c8421f07f3e4b546c8b5313bd0042ef5/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index d27a2b4ce625..680e9941830d 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/bookworm/Dockerfile) -- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/slim-bookworm/Dockerfile) -- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/bullseye/Dockerfile) -- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/alpine3.20/Dockerfile) -- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/alpine3.19/Dockerfile) -- [`3.3.5-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/bookworm/Dockerfile) +- [`3.3.6-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/bookworm/Dockerfile) -- [`3.3.5-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.5-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/slim-bookworm/Dockerfile) +- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.6-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/slim-bookworm/Dockerfile) -- [`3.3.5-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/bullseye/Dockerfile) +- [`3.3.6-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/bullseye/Dockerfile) -- [`3.3.5-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/slim-bullseye/Dockerfile) +- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/slim-bullseye/Dockerfile) -- [`3.3.5-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.5-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/alpine3.20/Dockerfile) -- [`3.3.5-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/e76791f7c9c3a7de9c6c40561561dc718dc77fbb/3.3/alpine3.19/Dockerfile) +- [`3.3.6-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/alpine3.19/Dockerfile) -- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/bookworm/Dockerfile) +- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/bookworm/Dockerfile) -- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/slim-bookworm/Dockerfile) +- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/slim-bookworm/Dockerfile) -- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/bullseye/Dockerfile) +- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/bullseye/Dockerfile) -- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/slim-bullseye/Dockerfile) +- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/alpine3.20/Dockerfile) -- [`3.2.6-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/3df1b04951937f41a01ae24a6867d833e78345c1/3.2/alpine3.19/Dockerfile) +- [`3.2.6-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/alpine3.19/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) From 3cc7f2650d700f4e58d9e1e9551b810701d0b18f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Nov 2024 12:20:58 -0800 Subject: [PATCH 1652/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index def74c426b1e..c615fc6756e4 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-RC2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-RC3-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC3-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-RC2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-RC3-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-RC2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-RC3-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-RC2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-RC3-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC3`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC3-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC3-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-RC2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-RC3-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC3-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-RC2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-RC3-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC3-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-RC2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-RC3-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC3-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-RC2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-RC3-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-RC2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/19fd2d0cb373d06171cab2c7a4c80a08234af04a/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-RC3-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 0d05129a26cde4aaba01446ccb47e10ec5c7ae0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Nov 2024 11:26:24 -0800 Subject: [PATCH 1653/2686] Run update.sh --- arangodb/README.md | 2 +- caddy/README.md | 41 +++++++++++++++++++++++----- gradle/README.md | 46 ++++++++++++++++++------------- open-liberty/README.md | 54 ++++++++++++++++++------------------- oraclelinux/README.md | 18 ++++++------- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 6 files changed, 124 insertions(+), 85 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 7c2997908e18..986d97ac9e9d 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.11`](https://github.com/arangodb/arangodb-docker/blob/4e795a0b744e1639ee537ad3f1e4c89f5577f61d/alpine/3.11.11/Dockerfile) +- [`3.11`, `3.11.12`](https://github.com/arangodb/arangodb-docker/blob/e10eb7c8bbdfa928b912e182571bfaf29bd55fb4/alpine/3.11.12/Dockerfile) - [`3.12`, `3.12.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/76adfc275579f9e096d965a4afc429c2a1c25274/alpine/3.12.3/Dockerfile) diff --git a/caddy/README.md b/caddy/README.md index 191a8b697d8d..59200d2b83e0 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,20 +28,49 @@ WARNING: ## Simple Tags +- [`2.9.0-beta.3-alpine`, `2.9-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/alpine/Dockerfile) + +- [`2.9.0-beta.3-builder-alpine`, `2.9-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/builder/Dockerfile) + +- [`2.9.0-beta.3-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) + +- [`2.9.0-beta.3-windowsservercore-ltsc2022`, `2.9-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) + +- [`2.9.0-beta.3-builder-windowsservercore-1809`, `2.9-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/1809/Dockerfile) + +- [`2.9.0-beta.3-builder-windowsservercore-ltsc2022`, `2.9-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/ltsc2022/Dockerfile) + - [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) -- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) +- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/builder/Dockerfile) - [`2.8.4-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - [`2.8.4-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) -- [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) +- [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/1809/Dockerfile) -- [`2.8.4-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.8.4-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/ltsc2022/Dockerfile) ## Shared Tags +- `2.9.0-beta.3`, `2.9`: + + - [`2.9.0-beta.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/alpine/Dockerfile) + - [`2.9.0-beta.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) + - [`2.9.0-beta.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) + +- `2.9.0-beta.3-builder`, `2.9-builder`: + + - [`2.9.0-beta.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/builder/Dockerfile) + - [`2.9.0-beta.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/1809/Dockerfile) + - [`2.9.0-beta.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/ltsc2022/Dockerfile) + +- `2.9.0-beta.3-windowsservercore`, `2.9-windowsservercore`: + + - [`2.9.0-beta.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) + - [`2.9.0-beta.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) + - `2.8.4`, `2.8`, `2`, `latest`: - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) @@ -50,9 +79,9 @@ WARNING: - `2.8.4-builder`, `2.8-builder`, `2-builder`, `builder`: - - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/builder/Dockerfile) - - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/1809/Dockerfile) - - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows-builder/ltsc2022/Dockerfile) + - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/builder/Dockerfile) + - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/1809/Dockerfile) + - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/ltsc2022/Dockerfile) - `2.8.4-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: diff --git a/gradle/README.md b/gradle/README.md index 293019a036eb..7ac251a3ba90 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,41 +24,51 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk8/Dockerfile) +- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8/Dockerfile) -- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk8-focal/Dockerfile) +- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8-focal/Dockerfile) -- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11/Dockerfile) +- [`8.10.2-jdk8-corretto`, `8.10-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.10.2-jdk8-corretto-al2023`, `8.10-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8-corretto/Dockerfile) -- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11-focal/Dockerfile) +- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11/Dockerfile) -- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk11-alpine/Dockerfile) +- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-focal/Dockerfile) -- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17/Dockerfile) +- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-alpine/Dockerfile) -- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-focal/Dockerfile) +- [`8.10.2-jdk11-corretto`, `8.10-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.10.2-jdk11-corretto-al2023`, `8.10-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`, `8.10.2-jdk17-corretto`, `8.10-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.10.2-jdk17-corretto-al2023`, `8.10-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-corretto/Dockerfile) -- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-alpine/Dockerfile) +- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17/Dockerfile) -- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk17-graal/Dockerfile) +- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-focal/Dockerfile) -- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21/Dockerfile) +- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-alpine/Dockerfile) -- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21-alpine/Dockerfile) +- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-graal/Dockerfile) -- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk21-graal/Dockerfile) +- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21/Dockerfile) -- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23/Dockerfile) +- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-alpine/Dockerfile) -- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23-alpine/Dockerfile) +- [`8.10.2-jdk21-corretto`, `8.10-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.10.2-jdk21-corretto-al2023`, `8.10-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-corretto/Dockerfile) -- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk23-graal/Dockerfile) +- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-graal/Dockerfile) -- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-23`, `8.10-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.10.2-jdk-21-and-23-jammy`, `8.10-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current/Dockerfile) +- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23/Dockerfile) -- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-23-alpine`, `8.10-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current-alpine/Dockerfile) +- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-alpine/Dockerfile) -- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-23-graal`, `8.10-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.10.2-jdk-21-and-23-graal-jammy`, `8.10-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1d17a9a8ffeac966db523f07dc8fa79dfc30a0f9/jdk-lts-and-current-graal/Dockerfile) +- [`8.10.2-jdk23-corretto`, `8.10-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-corretto/Dockerfile) + +- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-graal/Dockerfile) + +- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-23`, `8.10-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.10.2-jdk-21-and-23-jammy`, `8.10-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current/Dockerfile) + +- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-23-alpine`, `8.10-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-alpine/Dockerfile) + +- [`8.10.2-jdk-lts-and-current-corretto`, `8.10-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.10.2-jdk-lts-and-current-corretto-al2023`, `8.10-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.10.2-jdk-21-and-23-corretto`, `8.10-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.10.2-jdk-21-and-23-corretto-al2023`, `8.10-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-corretto/Dockerfile) + +- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-23-graal`, `8.10-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.10.2-jdk-21-and-23-graal-jammy`, `8.10-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index dd6d4808ed10..8d8d9402ac14 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.11-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.11-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.11-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.11-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.11-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/612f16b1f84fcf18d3cd1e1b6dcbc67d45d0f219/releases/24.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.11-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index ee49187b295b..01111722a368 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/49ff350383c3dfe8143620769b65f3b1934034db/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 692df4b4924b..3fe99ef41350 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.11-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.11-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.11-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.11-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.11-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/d7d20df4c1f261bf8c226aebe72692554ffd9511/ga/24.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.11-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 13c88e1062385aee3c4ab953be483ce5f89c47a7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Nov 2024 19:09:30 -0800 Subject: [PATCH 1654/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index b646cd7f9203..b09303c8a21d 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`1.23.2-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bookworm/Dockerfile) +- [`1.23.3-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bookworm/Dockerfile) -- [`1.23.2-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bullseye/Dockerfile) +- [`1.23.3-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bullseye/Dockerfile) -- [`1.23.2-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.2-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/alpine3.20/Dockerfile) +- [`1.23.3-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.3-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/alpine3.20/Dockerfile) -- [`1.23.2-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/alpine3.19/Dockerfile) +- [`1.23.3-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/alpine3.19/Dockerfile) -- [`1.23.2-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.3-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.2-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.3-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.2-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.3-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.2-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.3-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.8-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bookworm/Dockerfile) +- [`1.22.9-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bookworm/Dockerfile) -- [`1.22.8-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bullseye/Dockerfile) +- [`1.22.9-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bullseye/Dockerfile) -- [`1.22.8-alpine3.20`, `1.22-alpine3.20`, `1.22.8-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/alpine3.20/Dockerfile) +- [`1.22.9-alpine3.20`, `1.22-alpine3.20`, `1.22.9-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/alpine3.20/Dockerfile) -- [`1.22.8-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/alpine3.19/Dockerfile) +- [`1.22.9-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/alpine3.19/Dockerfile) -- [`1.22.8-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.9-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.8-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.9-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.8-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.9-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.8-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.9-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.23.2`, `1.23`, `1`, `latest`: +- `1.23.3`, `1.23`, `1`, `latest`: - - [`1.23.2-bookworm`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/bookworm/Dockerfile) - - [`1.23.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.3-bookworm`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bookworm/Dockerfile) + - [`1.23.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.2-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.3-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.2-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.3-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/89de06f6dd2c4edb29f33bb7270bdcc8000cf58a/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.8`, `1.22`: +- `1.22.9`, `1.22`: - - [`1.22.8-bookworm`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/bookworm/Dockerfile) - - [`1.22.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.9-bookworm`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bookworm/Dockerfile) + - [`1.22.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.8-windowsservercore`, `1.22-windowsservercore`: +- `1.22.9-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.8-nanoserver`, `1.22-nanoserver`: +- `1.22.9-nanoserver`, `1.22-nanoserver`: - - [`1.22.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/d2e9d44c548ba2ad97495e3cd4f1a967d2bdfbb9/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From ed32a0354f75a3a9b57208ca144afd877f4b3aee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Nov 2024 10:09:05 -0800 Subject: [PATCH 1655/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 96f232f8fe4e..c5ad5e86b186 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.29`, `4.29.2`, `latest`](https://github.com/liquibase/docker/blob/13d063767623e282539b232a3a9ed19f4b3d7bbd/Dockerfile) +- [`4.30`, `4.30.0`, `latest`](https://github.com/liquibase/docker/blob/f86be8a84c919e1c3a6c8d9f9917cf3ee1c3f455/Dockerfile) -- [`4.29-alpine`, `4.29.2-alpine`, `alpine`](https://github.com/liquibase/docker/blob/13d063767623e282539b232a3a9ed19f4b3d7bbd/Dockerfile.alpine) +- [`4.30-alpine`, `4.30.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/f86be8a84c919e1c3a6c8d9f9917cf3ee1c3f455/Dockerfile.alpine) # Quick reference (cont.) From 7a14225b18f3b09622a46dc66f480eec7d9a66a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Nov 2024 12:09:20 -0800 Subject: [PATCH 1656/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 4c451c9658a2..fab65e99ee4d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20241010.0`](https://github.com/amazonlinux/container-images/blob/c83383b00b6d1382f06ca5dca262091847258322/Dockerfile) +- [`2023`, `latest`, `2023.6.20241031.0`](https://github.com/amazonlinux/container-images/blob/99e97aa8d28f80ab32b979ad83ff586749ee0ec0/Dockerfile) -- [`2`, `2.0.20241014.0`](https://github.com/amazonlinux/container-images/blob/0c5f82c64737f55a558fe44ef6a79b9537c4d143/Dockerfile) +- [`2`, `2.0.20241031.0`](https://github.com/amazonlinux/container-images/blob/260f46597cc645e0edf4672380737f3b5fc58be2/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) From e3bd617bd5d36b2de5151861801a935ae2f46495 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Nov 2024 13:09:08 -0800 Subject: [PATCH 1657/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 01111722a368..0bc0e7d1c581 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/34ca4ff693d1e72e5570f6696a27575ade9e9c5b/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7-slim-fips/Dockerfile) # Quick reference (cont.) From 582ca3646186be5d1de83a45aa06d210be52acf2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Nov 2024 15:09:28 -0800 Subject: [PATCH 1658/2686] Run update.sh --- drupal/README.md | 36 ++++++++++++++++++------------------ ghost/README.md | 4 ++-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 2aa4c8f95e2f..6a2e78451848 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.5-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.5-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.5-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.5-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.5-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.5`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.6-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.6-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.6-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.6-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.6-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.6`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.5-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.5-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.5-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.5-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.6-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.6-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.6-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.6-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.5-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.5-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.6-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.6-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.5-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.5-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.6-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.6-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.5-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.5-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.5-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.5-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.6-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.6-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.6-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.6-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.5-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.5-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/75ea07abcaee8e8b4a884c958fa2fdaa3f2998c6/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.6-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.6-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.6-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.6-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.6-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.7-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.7-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.7-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.6-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.6-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.7-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.7-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.6-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.7-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.6-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.7-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.6-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.6-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.7-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.7-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.6-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.7-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.6-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.6-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.6-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.6-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.6-apache`, `10.3-apache`, `10-apache`, `10.3.6`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.7-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.7-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.7-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.7-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.7-apache`, `10.3-apache`, `10-apache`, `10.3.7`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.6-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.6-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.6-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.6-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.7-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.7-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.7-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.7-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.6-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.6-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.7-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.7-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.6-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.6-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.7-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.7-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.6-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.6-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.6-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.6-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.7-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.7-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.7-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.7-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.6-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.6-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/50b38cfdfcc19a70ae110af9905969634eb24cc9/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.7-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.7-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.10-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.10-php8.3-apache`, `10.2-php8.3-apache`, `10.2.10-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bookworm/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 0d89ec07a3fb..b1e95b2f406b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.99.0`, `5.99`, `5`, `latest`](https://github.com/docker-library/ghost/blob/dfb81122997d9bff9de891e8622f3da9cbbaf64c/5/debian/Dockerfile) +- [`5.100.0`, `5.100`, `5`, `latest`](https://github.com/docker-library/ghost/blob/438898494b6232a0a70f74095a78502acbc4c604/5/debian/Dockerfile) -- [`5.99.0-alpine`, `5.99-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/dfb81122997d9bff9de891e8622f3da9cbbaf64c/5/alpine/Dockerfile) +- [`5.100.0-alpine`, `5.100-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/438898494b6232a0a70f74095a78502acbc4c604/5/alpine/Dockerfile) # Quick reference (cont.) From 8c29fb91e09be98cb960f573136c5749ea94cb8e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Nov 2024 14:09:20 -0800 Subject: [PATCH 1659/2686] Run update.sh --- joomla/README.md | 18 +++++++++--------- nextcloud/README.md | 18 +++++++++--------- odoo/README.md | 6 +++--- registry/README.md | 4 ++-- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 96916ef3a8f1..3164bbd8a949 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/apache/Dockerfile) +- [`5.2.1-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/apache/Dockerfile) -- [`5.2.0-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.2.1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.0-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.1/fpm/Dockerfile) +- [`5.2.1-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/fpm/Dockerfile) -- [`5.2.0`, `5.2`, `5`, `latest`, `5.2.0-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.0-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.0-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/apache/Dockerfile) +- [`5.2.1`, `5.2`, `5`, `latest`, `5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.1-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/apache/Dockerfile) -- [`5.2.0-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.2.1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.0-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.2/fpm/Dockerfile) +- [`5.2.1-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/fpm/Dockerfile) -- [`5.2.0-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/apache/Dockerfile) +- [`5.2.1-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/apache/Dockerfile) -- [`5.2.0-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.0-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/27f1228cf9b3707e5b1d3308bbc5cdcaccc3fb98/5.2/php8.3/fpm/Dockerfile) +- [`5.2.1-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/fpm/Dockerfile) - [`4.4.9`, `4.4`, `4`, `4.4.9-apache`, `4.4-apache`, `4-apache`, `4.4.9-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.9-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/apache/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 397ef0bd5c9d..9da5d4d152ad 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.11-apache`, `28.0-apache`, `28-apache`, `28.0.11`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/apache/Dockerfile) +- [`28.0.12-apache`, `28.0-apache`, `28-apache`, `28.0.12`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/apache/Dockerfile) -- [`28.0.11-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/fpm/Dockerfile) +- [`28.0.12-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/fpm/Dockerfile) -- [`28.0.11-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/28/fpm-alpine/Dockerfile) +- [`28.0.12-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/fpm-alpine/Dockerfile) -- [`29.0.8-apache`, `29.0-apache`, `29-apache`, `29.0.8`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/apache/Dockerfile) +- [`29.0.9-apache`, `29.0-apache`, `29-apache`, `29.0.9`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/apache/Dockerfile) -- [`29.0.8-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/fpm/Dockerfile) +- [`29.0.9-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/fpm/Dockerfile) -- [`29.0.8-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/29/fpm-alpine/Dockerfile) +- [`29.0.9-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/fpm-alpine/Dockerfile) -- [`30.0.1-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.1`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/apache/Dockerfile) +- [`30.0.2-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.2`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/apache/Dockerfile) -- [`30.0.1-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm/Dockerfile) +- [`30.0.2-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/fpm/Dockerfile) -- [`30.0.1-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/d03da64ac80d534c1b0ec69da3e6ddcc6af282a6/30/fpm-alpine/Dockerfile) +- [`30.0.2-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 016b5d2478b5..390fe4177b09 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241029`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/18.0/Dockerfile) +- [`18.0-20241108`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/18.0/Dockerfile) -- [`17.0-20241029`, `17.0`, `17`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/17.0/Dockerfile) +- [`17.0-20241108`, `17.0`, `17`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/17.0/Dockerfile) -- [`16.0-20241029`, `16.0`, `16`](https://github.com/odoo/docker/blob/acacd14c9ce469c234b6fc2f10ab8dd254b2f706/16.0/Dockerfile) +- [`16.0-20241108`, `16.0`, `16`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/16.0/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index b31e6dfbcaa5..e8e0b71f6d95 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-beta.1`](https://github.com/distribution/distribution-library-image/blob/a943e89c3efe06134cd9a4b439203c5341082cbc/Dockerfile) +- [`3.0.0-rc.1`](https://github.com/distribution/distribution-library-image/blob/be4eca0a5f3af34a026d1e9294d63f3464c06131/Dockerfile) - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) @@ -34,7 +34,7 @@ WARNING: [https://github.com/distribution/distribution-library-image/issues](https://github.com/distribution/distribution-library-image/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/registry/), [`arm32v6`](https://hub.docker.com/r/arm32v6/registry/), [`arm32v7`](https://hub.docker.com/r/arm32v7/registry/), [`arm64v8`](https://hub.docker.com/r/arm64v8/registry/), [`ppc64le`](https://hub.docker.com/r/ppc64le/registry/), [`s390x`](https://hub.docker.com/r/s390x/registry/) + [`amd64`](https://hub.docker.com/r/amd64/registry/), [`arm32v6`](https://hub.docker.com/r/arm32v6/registry/), [`arm32v7`](https://hub.docker.com/r/arm32v7/registry/), [`arm64v8`](https://hub.docker.com/r/arm64v8/registry/), [`ppc64le`](https://hub.docker.com/r/ppc64le/registry/), [`riscv64`](https://hub.docker.com/r/riscv64/registry/), [`s390x`](https://hub.docker.com/r/s390x/registry/) - **Published image artifact details**: [repo-info repo's `repos/registry/` directory](https://github.com/docker-library/repo-info/blob/master/repos/registry) ([history](https://github.com/docker-library/repo-info/commits/master/repos/registry)) From 007e3209490145a9855f4825218a9a08753d425b Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Sat, 9 Nov 2024 00:45:26 +0100 Subject: [PATCH 1660/2686] Initial commitment of documentation for clickhouse official image (#2397) --- clickhouse/README-short.txt | 1 + clickhouse/content.md | 160 ++++++++++++++++++++++++++++++++++++ clickhouse/github-repo | 1 + clickhouse/license.md | 1 + clickhouse/logo.svg | 43 ++++++++++ clickhouse/maintainer.md | 1 + clickhouse/metadata.json | 7 ++ 7 files changed, 214 insertions(+) create mode 100644 clickhouse/README-short.txt create mode 100644 clickhouse/content.md create mode 100644 clickhouse/github-repo create mode 100644 clickhouse/license.md create mode 100644 clickhouse/logo.svg create mode 100644 clickhouse/maintainer.md create mode 100644 clickhouse/metadata.json diff --git a/clickhouse/README-short.txt b/clickhouse/README-short.txt new file mode 100644 index 000000000000..d4728984ee6e --- /dev/null +++ b/clickhouse/README-short.txt @@ -0,0 +1 @@ +ClickHouse is the fastest and most resource efficient OSS database for real-time apps and analytics. diff --git a/clickhouse/content.md b/clickhouse/content.md new file mode 100644 index 000000000000..c2ca45060612 --- /dev/null +++ b/clickhouse/content.md @@ -0,0 +1,160 @@ +# ClickHouse Server Docker Image + +## What is ClickHouse? + +%%LOGO%% + +ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time. + +ClickHouse works 100-1000x faster than traditional database management systems, and processes hundreds of millions to over a billion rows and tens of gigabytes of data per server per second. With a widespread user base around the globe, the technology has received praise for its reliability, ease of use, and fault tolerance. + +For more information and documentation see https://clickhouse.com/. + +### Compatibility + +- The amd64 image requires support for [SSE3 instructions](https://en.wikipedia.org/wiki/SSE3). Virtually all x86 CPUs after 2005 support SSE3. +- The arm64 image requires support for the [ARMv8.2-A architecture](https://en.wikipedia.org/wiki/AArch64#ARMv8.2-A) and additionally the Load-Acquire RCpc register. The register is optional in version ARMv8.2-A and mandatory in [ARMv8.3-A](https://en.wikipedia.org/wiki/AArch64#ARMv8.3-A). Supported in Graviton >=2, Azure and GCP instances. Examples for unsupported devices are Raspberry Pi 4 (ARMv8.0-A) and Jetson AGX Xavier/Orin (ARMv8.2-A). +- Since the Clickhouse 24.11 Ubuntu images started using `ubuntu:22.04` as its base image. It requires docker version >= `20.10.10` containing [patch](https://github.com/moby/moby/commit/977283509f75303bc6612665a04abf76ff1d2468). As a workaround you could use `docker run --security-opt seccomp=unconfined` instead, however that has security implications. + +## How to use this image + +### start server instance + +```bash +docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +``` + +By default, ClickHouse will be accessible only via the Docker network. See the **networking** section below. + +By default, starting above server instance will be run as the `default` user without password. + +### connect to it from a native client + +```bash +docker run -it --rm --link some-clickhouse-server:clickhouse-server --entrypoint clickhouse-client %%IMAGE%% --host clickhouse-server +# OR +docker exec -it some-clickhouse-server clickhouse-client +``` + +More information about the [ClickHouse client](https://clickhouse.com/docs/en/interfaces/cli/). + +### connect to it using curl + +```bash +echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --link some-clickhouse-server:clickhouse-server buildpack-deps:curl curl 'http://clickhouse-server:8123/?query=' -s --data-binary @- +``` + +More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). + +### stopping / removing the container + +```bash +docker stop some-clickhouse-server +docker rm some-clickhouse-server +``` + +### networking + +You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports: + +```bash +docker run -d -p 18123:8123 -p19000:9000 --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @- +``` + +`22.6.3.35` + +Or by allowing the container to use [host ports directly](https://docs.docker.com/network/host/) using `--network=host` (also allows achieving better network performance): + +```bash +docker run -d --network=host --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @- +``` + +`22.6.3.35` + +### Volumes + +Typically you may want to mount the following folders inside your container to achieve persistency: + +- `/var/lib/clickhouse/` - main folder where ClickHouse stores the data +- `/var/log/clickhouse-server/` - logs + +```bash +docker run -d \ + -v "$PWD/ch_data:/var/lib/clickhouse/" \ + -v "$PWD/ch_logs:/var/log/clickhouse-server/" \ + --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +``` + +You may also want to mount: + +- `/etc/clickhouse-server/config.d/*.xml` - files with server configuration adjustments +- `/etc/clickhouse-server/users.d/*.xml` - files with user settings adjustments +- `/docker-entrypoint-initdb.d/` - folder with database initialization scripts (see below). + +### Linux capabilities + +ClickHouse has some advanced functionality, which requires enabling several [Linux capabilities](https://man7.org/linux/man-pages/man7/capabilities.7.html). + +They are optional and can be enabled using the following [docker command-line arguments](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities): + +```bash +docker run -d \ + --cap-add=SYS_NICE --cap-add=NET_ADMIN --cap-add=IPC_LOCK \ + --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +``` + +Read more in [knowledge base](https://clickhouse.com/docs/knowledgebase/configure_cap_ipc_lock_and_cap_sys_nice_in_docker). + +## Configuration + +The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/en/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/en/interfaces/tcp/). + +ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/en/operations/configuration_files/)) + +### Start server instance with custom configuration + +```bash +docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 -v /path/to/your/config.xml:/etc/clickhouse-server/config.xml %%IMAGE%% +``` + +### Start server as custom user + +```bash +# $PWD/data/clickhouse should exist and be owned by current user +docker run --rm --user "${UID}:${GID}" --name some-clickhouse-server --ulimit nofile=262144:262144 -v "$PWD/logs/clickhouse:/var/log/clickhouse-server" -v "$PWD/data/clickhouse:/var/lib/clickhouse" %%IMAGE%% +``` + +When you use the image with local directories mounted, you probably want to specify the user to maintain the proper file ownership. Use the `--user` argument and mount `/var/lib/clickhouse` and `/var/log/clickhouse-server` inside the container. Otherwise, the image will complain and not start. + +### Start server from root (useful in case of enabled user namespace) + +```bash +docker run --rm -e CLICKHOUSE_RUN_AS_ROOT=1 --name clickhouse-server-userns -v "$PWD/logs/clickhouse:/var/log/clickhouse-server" -v "$PWD/data/clickhouse:/var/lib/clickhouse" %%IMAGE%% +``` + +### How to create default database and user on starting + +Sometimes you may want to create a user (user named `default` is used by default) and database on a container start. You can do it using environment variables `CLICKHOUSE_DB`, `CLICKHOUSE_USER`, `CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT` and `CLICKHOUSE_PASSWORD`: + +```bash +docker run --rm -e CLICKHOUSE_DB=my_database -e CLICKHOUSE_USER=username -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=password -p 9000:9000/tcp %%IMAGE%% +``` + +## How to extend this image + +To perform additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d`. After the entrypoint calls `initdb`, it will run any `*.sql` files, run any executable `*.sh` scripts, and source any non-executable `*.sh` scripts found in that directory to do further initialization before starting the service. +Also, you can provide environment variables `CLICKHOUSE_USER` & `CLICKHOUSE_PASSWORD` that will be used for clickhouse-client during initialization. + +For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-db.sh`: + +```bash +#!/bin/bash +set -e + +clickhouse client -n <<-EOSQL + CREATE DATABASE docker; + CREATE TABLE docker.docker (x Int32) ENGINE = Log; +EOSQL +``` diff --git a/clickhouse/github-repo b/clickhouse/github-repo new file mode 100644 index 000000000000..70a009ec9588 --- /dev/null +++ b/clickhouse/github-repo @@ -0,0 +1 @@ +https://github.com/ClickHouse/ClickHouse diff --git a/clickhouse/license.md b/clickhouse/license.md new file mode 100644 index 000000000000..6be024edcdec --- /dev/null +++ b/clickhouse/license.md @@ -0,0 +1 @@ +View [license information](https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE) for the software contained in this image. diff --git a/clickhouse/logo.svg b/clickhouse/logo.svg new file mode 100644 index 000000000000..a50dd81a1645 --- /dev/null +++ b/clickhouse/logo.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/clickhouse/maintainer.md b/clickhouse/maintainer.md new file mode 100644 index 000000000000..26c7db1a2934 --- /dev/null +++ b/clickhouse/maintainer.md @@ -0,0 +1 @@ +[ClickHouse Inc.](%%GITHUB-REPO%%) diff --git a/clickhouse/metadata.json b/clickhouse/metadata.json new file mode 100644 index 000000000000..3d3937b21fb1 --- /dev/null +++ b/clickhouse/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "databases-and-storage" + ] + } +} From 0f8641c2c3ea9c288973c18fe483c9de298b23e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Nov 2024 16:09:14 -0800 Subject: [PATCH 1661/2686] Run update.sh --- clickhouse/README.md | 217 +++++++++++++++++++++++++++++++++++++++++++ docker/README.md | 10 +- 2 files changed, 222 insertions(+), 5 deletions(-) create mode 100644 clickhouse/README.md diff --git a/clickhouse/README.md b/clickhouse/README.md new file mode 100644 index 000000000000..f8a464acc065 --- /dev/null +++ b/clickhouse/README.md @@ -0,0 +1,217 @@ + + +# Quick reference + +- **Maintained by**: + [ClickHouse Inc.](https://github.com/ClickHouse/ClickHouse) + +- **Where to get help**: + [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + +# Supported tags and respective `Dockerfile` links + +- [`latest`, `jammy`, `24`, `24-jammy`, `24.10`, `24.10-jammy`, `24.10.1`, `24.10.1-jammy`, `24.10.1.2812`, `24.10.1.2812-jammy`](https://github.com/ClickHouse/docker-library/blob/8f3278549dd6ac2832287c18c6a35a5f90eb3394/server/24.10.1.2812/Dockerfile.ubuntu) + +# Quick reference (cont.) + +- **Where to file issues**: + [https://github.com/ClickHouse/ClickHouse/issues](https://github.com/ClickHouse/ClickHouse/issues?q=) + +- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) + [`amd64`](https://hub.docker.com/r/amd64/clickhouse/), [`arm64v8`](https://hub.docker.com/r/arm64v8/clickhouse/) + +- **Published image artifact details**: + [repo-info repo's `repos/clickhouse/` directory](https://github.com/docker-library/repo-info/blob/master/repos/clickhouse) ([history](https://github.com/docker-library/repo-info/commits/master/repos/clickhouse)) + (image metadata, transfer size, etc) + +- **Image updates**: + [official-images repo's `library/clickhouse` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fclickhouse) + [official-images repo's `library/clickhouse` file](https://github.com/docker-library/official-images/blob/master/library/clickhouse) ([history](https://github.com/docker-library/official-images/commits/master/library/clickhouse)) + +- **Source of this description**: + [docs repo's `clickhouse/` directory](https://github.com/docker-library/docs/tree/master/clickhouse) ([history](https://github.com/docker-library/docs/commits/master/clickhouse)) + +# ClickHouse Server Docker Image + +## What is ClickHouse? + +![logo](https://raw.githubusercontent.com/docker-library/docs/007e3209490145a9855f4825218a9a08753d425b/clickhouse/logo.svg?sanitize=true) + +ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time. + +ClickHouse works 100-1000x faster than traditional database management systems, and processes hundreds of millions to over a billion rows and tens of gigabytes of data per server per second. With a widespread user base around the globe, the technology has received praise for its reliability, ease of use, and fault tolerance. + +For more information and documentation see https://clickhouse.com/. + +### Compatibility + +- The amd64 image requires support for [SSE3 instructions](https://en.wikipedia.org/wiki/SSE3). Virtually all x86 CPUs after 2005 support SSE3. +- The arm64 image requires support for the [ARMv8.2-A architecture](https://en.wikipedia.org/wiki/AArch64#ARMv8.2-A) and additionally the Load-Acquire RCpc register. The register is optional in version ARMv8.2-A and mandatory in [ARMv8.3-A](https://en.wikipedia.org/wiki/AArch64#ARMv8.3-A). Supported in Graviton >=2, Azure and GCP instances. Examples for unsupported devices are Raspberry Pi 4 (ARMv8.0-A) and Jetson AGX Xavier/Orin (ARMv8.2-A). +- Since the Clickhouse 24.11 Ubuntu images started using `ubuntu:22.04` as its base image. It requires docker version >= `20.10.10` containing [patch](https://github.com/moby/moby/commit/977283509f75303bc6612665a04abf76ff1d2468). As a workaround you could use `docker run --security-opt seccomp=unconfined` instead, however that has security implications. + +## How to use this image + +### start server instance + +```bash +docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +``` + +By default, ClickHouse will be accessible only via the Docker network. See the **networking** section below. + +By default, starting above server instance will be run as the `default` user without password. + +### connect to it from a native client + +```bash +docker run -it --rm --link some-clickhouse-server:clickhouse-server --entrypoint clickhouse-client clickhouse --host clickhouse-server +# OR +docker exec -it some-clickhouse-server clickhouse-client +``` + +More information about the [ClickHouse client](https://clickhouse.com/docs/en/interfaces/cli/). + +### connect to it using curl + +```bash +echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --link some-clickhouse-server:clickhouse-server buildpack-deps:curl curl 'http://clickhouse-server:8123/?query=' -s --data-binary @- +``` + +More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). + +### stopping / removing the container + +```bash +docker stop some-clickhouse-server +docker rm some-clickhouse-server +``` + +### networking + +You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports: + +```bash +docker run -d -p 18123:8123 -p19000:9000 --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @- +``` + +`22.6.3.35` + +Or by allowing the container to use [host ports directly](https://docs.docker.com/network/host/) using `--network=host` (also allows achieving better network performance): + +```bash +docker run -d --network=host --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @- +``` + +`22.6.3.35` + +### Volumes + +Typically you may want to mount the following folders inside your container to achieve persistency: + +- `/var/lib/clickhouse/` - main folder where ClickHouse stores the data +- `/var/log/clickhouse-server/` - logs + +```bash +docker run -d \ + -v "$PWD/ch_data:/var/lib/clickhouse/" \ + -v "$PWD/ch_logs:/var/log/clickhouse-server/" \ + --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +``` + +You may also want to mount: + +- `/etc/clickhouse-server/config.d/*.xml` - files with server configuration adjustments +- `/etc/clickhouse-server/users.d/*.xml` - files with user settings adjustments +- `/docker-entrypoint-initdb.d/` - folder with database initialization scripts (see below). + +### Linux capabilities + +ClickHouse has some advanced functionality, which requires enabling several [Linux capabilities](https://man7.org/linux/man-pages/man7/capabilities.7.html). + +They are optional and can be enabled using the following [docker command-line arguments](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities): + +```bash +docker run -d \ + --cap-add=SYS_NICE --cap-add=NET_ADMIN --cap-add=IPC_LOCK \ + --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +``` + +Read more in [knowledge base](https://clickhouse.com/docs/knowledgebase/configure_cap_ipc_lock_and_cap_sys_nice_in_docker). + +## Configuration + +The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/en/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/en/interfaces/tcp/). + +ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/en/operations/configuration_files/)) + +### Start server instance with custom configuration + +```bash +docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 -v /path/to/your/config.xml:/etc/clickhouse-server/config.xml clickhouse +``` + +### Start server as custom user + +```bash +# $PWD/data/clickhouse should exist and be owned by current user +docker run --rm --user "${UID}:${GID}" --name some-clickhouse-server --ulimit nofile=262144:262144 -v "$PWD/logs/clickhouse:/var/log/clickhouse-server" -v "$PWD/data/clickhouse:/var/lib/clickhouse" clickhouse +``` + +When you use the image with local directories mounted, you probably want to specify the user to maintain the proper file ownership. Use the `--user` argument and mount `/var/lib/clickhouse` and `/var/log/clickhouse-server` inside the container. Otherwise, the image will complain and not start. + +### Start server from root (useful in case of enabled user namespace) + +```bash +docker run --rm -e CLICKHOUSE_RUN_AS_ROOT=1 --name clickhouse-server-userns -v "$PWD/logs/clickhouse:/var/log/clickhouse-server" -v "$PWD/data/clickhouse:/var/lib/clickhouse" clickhouse +``` + +### How to create default database and user on starting + +Sometimes you may want to create a user (user named `default` is used by default) and database on a container start. You can do it using environment variables `CLICKHOUSE_DB`, `CLICKHOUSE_USER`, `CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT` and `CLICKHOUSE_PASSWORD`: + +```bash +docker run --rm -e CLICKHOUSE_DB=my_database -e CLICKHOUSE_USER=username -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=password -p 9000:9000/tcp clickhouse +``` + +## How to extend this image + +To perform additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d`. After the entrypoint calls `initdb`, it will run any `*.sql` files, run any executable `*.sh` scripts, and source any non-executable `*.sh` scripts found in that directory to do further initialization before starting the service. +Also, you can provide environment variables `CLICKHOUSE_USER` & `CLICKHOUSE_PASSWORD` that will be used for clickhouse-client during initialization. + +For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-db.sh`: + +```bash +#!/bin/bash +set -e + +clickhouse client -n <<-EOSQL + CREATE DATABASE docker; + CREATE TABLE docker.docker (x Int32) ENGINE = Log; +EOSQL +``` + +# License + +View [license information](https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE) for the software contained in this image. + +As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). + +Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `clickhouse/` directory](https://github.com/docker-library/repo-info/tree/master/repos/clickhouse). + +As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/docker/README.md b/docker/README.md index 021fbacdc994..f622b969eb14 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bef014490d74e648d3b6a0ff61919022c150a12b/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 34d151bb1e278a8b3d71869beb4201bd36caa2a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Nov 2024 16:20:20 -0800 Subject: [PATCH 1662/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 24 ++++++++++++------------ openjdk/README.md | 36 ++++++++++++++++++------------------ wordpress/README.md | 18 +++++++++--------- 4 files changed, 41 insertions(+), 41 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b1e95b2f406b..a54c268d48a3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.100.0`, `5.100`, `5`, `latest`](https://github.com/docker-library/ghost/blob/438898494b6232a0a70f74095a78502acbc4c604/5/debian/Dockerfile) +- [`5.100.1`, `5.100`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2831be2647f436ed45787e31c8942d170f37ea6e/5/debian/Dockerfile) -- [`5.100.0-alpine`, `5.100-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/438898494b6232a0a70f74095a78502acbc4c604/5/alpine/Dockerfile) +- [`5.100.1-alpine`, `5.100-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2831be2647f436ed45787e31c8942d170f37ea6e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index d4061500b138..3553dc8ea38b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev11`, `3.1-dev`, `3.1-dev11-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/ae8136b1c0383795fc02b2443dfe785a52dd08ef/3.1/Dockerfile) +- [`3.1-dev12`, `3.1-dev`, `3.1-dev12-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b28bb896cedfee705518a8232cfaadda8a35dbed/3.1/Dockerfile) -- [`3.1-dev11-alpine`, `3.1-dev-alpine`, `3.1-dev11-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/ae8136b1c0383795fc02b2443dfe785a52dd08ef/3.1/alpine/Dockerfile) +- [`3.1-dev12-alpine`, `3.1-dev-alpine`, `3.1-dev12-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/b28bb896cedfee705518a8232cfaadda8a35dbed/3.1/alpine/Dockerfile) -- [`3.0.5`, `3.0`, `lts`, `latest`, `3.0.5-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/Dockerfile) +- [`3.0.6`, `3.0`, `lts`, `latest`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) -- [`3.0.5-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.5-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/43e0f19fb557ead37a57f8d5fe8664eb25bffdc8/3.0/alpine/Dockerfile) +- [`3.0.6-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.6-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/alpine/Dockerfile) -- [`2.9.11`, `2.9`, `2.9.11-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/89dbd2e4a131058bb919f0c3442c57033147c242/2.9/Dockerfile) +- [`2.9.12`, `2.9`, `2.9.12-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/4214bc32bf5038120b1cacbb0f5337169b817aa4/2.9/Dockerfile) -- [`2.9.11-alpine`, `2.9-alpine`, `2.9.11-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/89dbd2e4a131058bb919f0c3442c57033147c242/2.9/alpine/Dockerfile) +- [`2.9.12-alpine`, `2.9-alpine`, `2.9.12-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/4214bc32bf5038120b1cacbb0f5337169b817aa4/2.9/alpine/Dockerfile) -- [`2.8.11`, `2.8`, `2.8.11-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/5b8b4056b3fb808eb70f9109eb1ca44ae4514247/2.8/Dockerfile) +- [`2.8.12`, `2.8`, `2.8.12-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/5235fbf1ddb46b8f6d179958494098ac2708e384/2.8/Dockerfile) -- [`2.8.11-alpine`, `2.8-alpine`, `2.8.11-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/5b8b4056b3fb808eb70f9109eb1ca44ae4514247/2.8/alpine/Dockerfile) +- [`2.8.12-alpine`, `2.8-alpine`, `2.8.12-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/5235fbf1ddb46b8f6d179958494098ac2708e384/2.8/alpine/Dockerfile) -- [`2.6.19`, `2.6`, `2.6.19-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/104fd7474379429fd5ad8e23c340eede93736010/2.6/Dockerfile) +- [`2.6.20`, `2.6`, `2.6.20-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/Dockerfile) -- [`2.6.19-alpine`, `2.6-alpine`, `2.6.19-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/104fd7474379429fd5ad8e23c340eede93736010/2.6/alpine/Dockerfile) +- [`2.6.20-alpine`, `2.6-alpine`, `2.6.20-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/alpine/Dockerfile) -- [`2.4.27`, `2.4`, `2.4.27-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/Dockerfile) +- [`2.4.28`, `2.4`, `2.4.28-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/Dockerfile) -- [`2.4.27-alpine`, `2.4-alpine`, `2.4.27-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/c72a79f8fe0a0db91b36645220409c08d11cc0a6/2.4/alpine/Dockerfile) +- [`2.4.28-alpine`, `2.4-alpine`, `2.4.28-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 208c678d15d9..340e00404ec5 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-22-jdk-oraclelinux9`, `24-ea-22-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-22-jdk-oracle`, `24-ea-22-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-23-jdk-oraclelinux9`, `24-ea-23-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-23-jdk-oracle`, `24-ea-23-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-22-jdk-oraclelinux8`, `24-ea-22-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-23-jdk-oraclelinux8`, `24-ea-23-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-22-jdk-bookworm`, `24-ea-22-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/bookworm/Dockerfile) +- [`24-ea-23-jdk-bookworm`, `24-ea-23-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/bookworm/Dockerfile) -- [`24-ea-22-jdk-slim-bookworm`, `24-ea-22-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-22-jdk-slim`, `24-ea-22-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-23-jdk-slim-bookworm`, `24-ea-23-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-23-jdk-slim`, `24-ea-23-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-22-jdk-bullseye`, `24-ea-22-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/bullseye/Dockerfile) +- [`24-ea-23-jdk-bullseye`, `24-ea-23-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/bullseye/Dockerfile) -- [`24-ea-22-jdk-slim-bullseye`, `24-ea-22-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-23-jdk-slim-bullseye`, `24-ea-23-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-22-jdk-windowsservercore-ltsc2022`, `24-ea-22-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-23-jdk-windowsservercore-ltsc2022`, `24-ea-23-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-22-jdk-windowsservercore-1809`, `24-ea-22-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-23-jdk-windowsservercore-1809`, `24-ea-23-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-22-jdk-nanoserver-1809`, `24-ea-22-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-23-jdk-nanoserver-1809`, `24-ea-23-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-22-jdk`, `24-ea-22`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-23-jdk`, `24-ea-23`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-22-jdk-windowsservercore`, `24-ea-22-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-23-jdk-windowsservercore`, `24-ea-23-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-22-jdk-nanoserver`, `24-ea-22-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-23-jdk-nanoserver`, `24-ea-23-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/bcde5e04ccd1da57d389f8774e68cc7a227b1041/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index c615fc6756e4..80877d85f717 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-RC3-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC3-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-RC4-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC4-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-RC3-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-RC4-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-RC3-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-RC4-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-RC3-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC3`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC3-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC3-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-RC4-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC4`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC4-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC4-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-RC3-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC3-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-RC4-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC4-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-RC3-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC3-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-RC4-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC4-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-RC3-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC3-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-RC4-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC4-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-RC3-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-RC4-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-RC3-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae2a81e4a7454ff1a3a616eace68ddb2ca3dd321/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-RC4-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From d81e1b0e19865c513f785ba52d51d60e496874f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Nov 2024 17:10:13 -0800 Subject: [PATCH 1663/2686] Run update.sh --- php/README.md | 84 ++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 70 insertions(+), 14 deletions(-) diff --git a/php/README.md b/php/README.md index 69cf80a95a45..818cc11bf09b 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0RC3-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC3-bookworm`, `8.4-rc-bookworm`, `8.4.0RC3-cli`, `8.4-rc-cli`, `8.4.0RC3`, `8.4-rc`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.0RC4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC4-bookworm`, `8.4-rc-bookworm`, `8.4.0RC4-cli`, `8.4-rc-cli`, `8.4.0RC4`, `8.4-rc`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.0RC3-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC3-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.0RC4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.0RC3-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC3-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.0RC4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.0RC3-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC3-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.0RC4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.0RC3-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC3-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.0RC4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.0RC3-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.0RC4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.0RC3-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.0RC4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.0RC3-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.0RC4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.0RC3-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC3-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC3-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC3-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.0RC4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.0RC3-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC3-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.0RC4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.0RC3-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC3-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.0RC4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/zts/Dockerfile) -- [`8.4.0RC3-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC3-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.0RC4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/cli/Dockerfile) -- [`8.4.0RC3-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.0RC4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/fpm/Dockerfile) -- [`8.4.0RC3-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/6b636b96c06be449514a5033037bf653d8a86967/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.0RC4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/zts/Dockerfile) + +- [`8.3.14RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.14RC1-bookworm`, `8.3-rc-bookworm`, `8.3.14RC1-cli`, `8.3-rc-cli`, `8.3.14RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.14RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.14RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.14RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.14RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.14RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.14RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.14RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.14RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.14RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.14RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.14RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.14RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.14RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.14RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.14RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.14RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.14RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.14RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.14RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.14RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.14RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.14RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.14RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/zts/Dockerfile) - [`8.3.13-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.13-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.13-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.13`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.3.13-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.26RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.26RC1-bookworm`, `8.2-rc-bookworm`, `8.2.26RC1-cli`, `8.2-rc-cli`, `8.2.26RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.26RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.26RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.26RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.26RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.26RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.26RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.26RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.26RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.26RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.26RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.26RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.26RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.26RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.26RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.26RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.26RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.26RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.26RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.26RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.26RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.26RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.26RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.26RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.25-cli-bookworm`, `8.2-cli-bookworm`, `8.2.25-bookworm`, `8.2-bookworm`, `8.2.25-cli`, `8.2-cli`, `8.2.25`, `8.2`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/cli/Dockerfile) - [`8.2.25-apache-bookworm`, `8.2-apache-bookworm`, `8.2.25-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/apache/Dockerfile) From 53f5e6c91f9c1af4db3befe2d4da5c626985133e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Nov 2024 11:09:14 -0800 Subject: [PATCH 1664/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- groovy/README.md | 14 +++++++------- photon/README.md | 4 ++-- varnish/README.md | 6 +++--- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 4f03b06eb1ef..b8d8219cd2a4 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.base) +- [`latest`, `base`, `base-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.base) -- [`base-devel`, `base-devel-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241103.0.276161`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/eed36f58ea5e58e82422000506891281ecc918e0/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 4051d27d9c3b..5098abb97126 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/8ec99859f07474a8394c377f2ba9f54bc057210a/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/80b400d42b54a19ce81b47e91bf97d0b38080d7d/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index bfddd432ca9d..0a849f2cb695 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.23-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.23-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk8/Dockerfile) +- [`4.0.24-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.24-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk8/Dockerfile) -- [`4.0.23-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.23-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk11/Dockerfile) +- [`4.0.24-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.24-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk11/Dockerfile) -- [`4.0.23-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk11-alpine/Dockerfile) +- [`4.0.24-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk11-alpine/Dockerfile) -- [`4.0.23-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.23-jdk`, `4.0-jdk`, `4.0.23`, `4.0`, `4`, `jdk`, `latest`, `4.0.23-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.23-jdk-jammy`, `4.0-jdk-jammy`, `4.0.23-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk17/Dockerfile) +- [`4.0.24-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.24-jdk`, `4.0-jdk`, `4.0.24`, `4.0`, `4`, `jdk`, `latest`, `4.0.24-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.24-jdk-jammy`, `4.0-jdk-jammy`, `4.0.24-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk17/Dockerfile) -- [`4.0.23-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.23-jdk-alpine`, `4.0-jdk-alpine`, `4.0.23-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk17-alpine/Dockerfile) +- [`4.0.24-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.24-jdk-alpine`, `4.0-jdk-alpine`, `4.0.24-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk17-alpine/Dockerfile) -- [`4.0.23-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.23-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk21/Dockerfile) +- [`4.0.24-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.24-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk21/Dockerfile) -- [`4.0.23-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/e4c0eaf748afa89bb55d796b79d12aeedaa107f7/jdk21-alpine/Dockerfile) +- [`4.0.24-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 82ffc8758be7..b1a257aeb589 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241023`, `latest`](https://github.com/vmware/photon-docker-image/blob/fd04e387a9bb7a12544fb3f3896cf22a4a8ed71e/docker/Dockerfile) +- [`5.0`, `5.0-20241110`, `latest`](https://github.com/vmware/photon-docker-image/blob/7899458e6a804499ebc247252a95d1a34e4c4a1d/docker/Dockerfile) -- [`4.0`, `4.0-20241023`](https://github.com/vmware/photon-docker-image/blob/ebaecf2875cd733d952cf28a228db7d02e5f46e8/docker/Dockerfile) +- [`4.0`, `4.0-20241110`](https://github.com/vmware/photon-docker-image/blob/a6f3943e0225a004b11ad2d1bdb9061bacfaa390/docker/Dockerfile) - [`3.0`, `3.0-20241023`](https://github.com/vmware/photon-docker-image/blob/03c99783ea1c9e664fc53fb18e970629a5e9495f/docker/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index 47d022cc4095..cbebb85f9dce 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.6.0`, `7`, `7.6`, `latest`](https://github.com/varnish/docker-varnish/blob/5cedd7abfe27cc65523377ec0b2207bb2a705236/fresh/debian/Dockerfile) +- [`fresh`, `7.6.1`, `7`, `7.6`, `latest`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.6.0-alpine`, `7-alpine`, `7.6-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/5cedd7abfe27cc65523377ec0b2207bb2a705236/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.6.1-alpine`, `7-alpine`, `7.6-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/fresh/alpine/Dockerfile) - [`old`, `7.5.0`, `7.5`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/debian/Dockerfile) - [`old-alpine`, `7.5.0-alpine`, `7.5-alpine`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/alpine/Dockerfile) -- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/185f6f8ec644d59c896861944a1385c09e2abfbe/stable/debian/Dockerfile) +- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/stable/debian/Dockerfile) # Quick reference (cont.) From 1d1f0bafe266fa63c9b07c76a6bd3de653602d6b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Nov 2024 12:09:12 -0800 Subject: [PATCH 1665/2686] Run update.sh --- erlang/README.md | 6 ++-- gradle/README.md | 4 ++- tomcat/README.md | 72 ++++++++++++++++++++++++------------------------ 3 files changed, 42 insertions(+), 40 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 56baba7bf447..5c9d271f88e9 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -28,19 +28,19 @@ WARNING: - [`27.1.2.0-slim`, `27.1.2-slim`, `27.1-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/slim/Dockerfile) -- [`27.1.2.0-alpine`, `27.1.2-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/alpine/Dockerfile) +- [`27.1.2.0-alpine`, `27.1.2-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/27/alpine/Dockerfile) - [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/Dockerfile) - [`26.2.5.2-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/slim/Dockerfile) -- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/alpine/Dockerfile) +- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/26/alpine/Dockerfile) - [`25.3.2.13`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/Dockerfile) - [`25.3.2.13-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/slim/Dockerfile) -- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/alpine/Dockerfile) +- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index 7ac251a3ba90..bbb92dae6abe 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -36,7 +36,7 @@ WARNING: - [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-alpine/Dockerfile) -- [`8.10.2-jdk11-corretto`, `8.10-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.10.2-jdk11-corretto-al2023`, `8.10-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`, `8.10.2-jdk17-corretto`, `8.10-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.10.2-jdk17-corretto-al2023`, `8.10-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-corretto/Dockerfile) +- [`8.10.2-jdk11-corretto`, `8.10-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.10.2-jdk11-corretto-al2023`, `8.10-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-corretto/Dockerfile) - [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17/Dockerfile) @@ -44,6 +44,8 @@ WARNING: - [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-alpine/Dockerfile) +- [`8.10.2-jdk17-corretto`, `8.10-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.10.2-jdk17-corretto-al2023`, `8.10-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-corretto/Dockerfile) + - [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-graal/Dockerfile) - [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index a82541f0cc99..577e291323fb 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,77 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.0-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.0-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.0-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.0`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.1-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.1-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.1-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.1`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.0-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.0-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.0-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.1-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.1-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.1-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.0-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.1-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.0-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5612c4d613f8dfd128d2e57740558b2ffc74215e/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.1-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.31-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.31-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.31-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.31`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.33-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.33-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.33-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.33`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.31-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.31-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.31-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.33-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.33-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.33-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.31-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.33-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.31-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.33-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.31-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.31-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.31-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.33-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.33-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.33-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.31-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.31-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.31-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.33-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.33-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.33-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.31-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.33-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.31-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.33-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.31-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.31-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.31-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.33-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.33-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.33-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.31-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.31-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.31-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.33-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.33-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.33-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.31-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.33-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.31-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7f00bb1e9b5c21a376013a50730d5d651a16761f/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.33-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.96-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.96-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.96-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.96`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.97-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.97-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.97-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.97`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.96-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.96-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.96-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.97-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.97-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.97-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.96-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.97-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.96-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.97-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.96-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.96-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.97-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.97-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.96-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.96-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.96-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.97-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.97-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.97-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.96-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.96-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.96-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.97-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.97-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.97-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.96-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.97-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.96-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.97-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.96-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.96-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.97-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.97-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.96-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.96-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.96-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.97-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.97-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.97-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.96-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.96-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.96-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.97-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.97-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.97-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.96-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.97-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.96-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.97-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.96-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.96-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.97-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.97-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.96-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.96-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.96-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.97-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.97-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.97-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.96-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.96-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.96-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.97-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.97-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.97-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.96-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.97-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.96-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.97-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.96-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.96-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/93276bf35aadb69331a5f913084ac40dea8ca55a/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.97-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.97-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From b3f896becd404a4ad7bf10055a2b4f39f96ff7b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Nov 2024 17:09:14 -0800 Subject: [PATCH 1666/2686] Run update.sh --- clickhouse/README.md | 8 +++++++- debian/README.md | 48 ++++++++++++++++++++++---------------------- 2 files changed, 31 insertions(+), 25 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index f8a464acc065..845c71988f23 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,7 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `24`, `24-jammy`, `24.10`, `24.10-jammy`, `24.10.1`, `24.10.1-jammy`, `24.10.1.2812`, `24.10.1.2812-jammy`](https://github.com/ClickHouse/docker-library/blob/8f3278549dd6ac2832287c18c6a35a5f90eb3394/server/24.10.1.2812/Dockerfile.ubuntu) +- [`latest`, `focal`, `24`, `24-focal`, `24.10`, `24.10-focal`, `24.10.1`, `24.10.1-focal`, `24.10.1.2812`, `24.10.1.2812-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.10.1.2812/Dockerfile.ubuntu) + +- [`24.9`, `24.9-focal`, `24.9.2`, `24.9.2-focal`, `24.9.2.42`, `24.9.2.42-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.9.2.42/Dockerfile.ubuntu) + +- [`lts`, `focal-lts`, `24.8`, `24.8-focal`, `24.8.6`, `24.8.6-focal`, `24.8.6.70`, `24.8.6.70-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.8.6.70/Dockerfile.ubuntu) + +- [`24.3`, `24.3-focal`, `24.3.13`, `24.3.13-focal`, `24.3.13.40`, `24.3.13.40-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.3.13.40/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index 3a32004a9be8..a9748fcc9a32 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20241016`, `12.7`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20241111`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/Dockerfile) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20241016-slim`, `12.7-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20241111-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/slim/Dockerfile) -- [`bullseye`, `bullseye-20241016`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20241111`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/Dockerfile) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20241016-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20241111-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/slim/Dockerfile) -- [`experimental`, `experimental-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/experimental/Dockerfile) +- [`experimental`, `experimental-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/experimental/Dockerfile) -- [`oldstable`, `oldstable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/slim/Dockerfile) -- [`rc-buggy`, `rc-buggy-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/rc-buggy/Dockerfile) -- [`sid`, `sid-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/sid/Dockerfile) +- [`sid`, `sid-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/sid/Dockerfile) -- [`sid-slim`, `sid-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/sid/slim/Dockerfile) -- [`stable`, `stable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/Dockerfile) +- [`stable`, `stable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/Dockerfile) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/slim/Dockerfile) -- [`testing`, `testing-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/Dockerfile) +- [`testing`, `testing-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/Dockerfile) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/slim/Dockerfile) -- [`trixie`, `trixie-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/Dockerfile) +- [`trixie`, `trixie-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/Dockerfile) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/slim/Dockerfile) -- [`unstable`, `unstable-20241016`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/unstable/Dockerfile) +- [`unstable`, `unstable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/unstable/Dockerfile) -- [`unstable-slim`, `unstable-20241016-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/ba01688d8eb18826b9ea238a8f9c98ec92eedc60/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/unstable/slim/Dockerfile) # Quick reference (cont.) From dda63de15d765a8bb7e0051da56e5789a5ba861f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Nov 2024 12:09:12 -0800 Subject: [PATCH 1667/2686] Run update.sh --- bash/README.md | 2 +- drupal/README.md | 36 ++++++++++++++++++------------------ elasticsearch/README.md | 2 ++ kibana/README.md | 2 ++ logstash/README.md | 2 ++ wordpress/README.md | 18 +++++++++--------- 6 files changed, 34 insertions(+), 28 deletions(-) diff --git a/bash/README.md b/bash/README.md index 35ba27ce6fbd..54dcc3613646 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241104`, `devel`, `devel-20241104-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/508d3de5a17a4ea29237e92c91c6584c6eee0561/devel/Dockerfile) +- [`devel-20241108`, `devel`, `devel-20241108-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/c030c5e635e02c22c33e3910a11087dccb8632ea/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/drupal/README.md b/drupal/README.md index 6a2e78451848..e6d67cbba26c 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.6-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.6-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.6-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.6-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.6-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.6`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.7-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.7-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.7-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.7-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.7-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.7`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.6-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.6-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.6-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.6-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.7-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.7-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.7-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.7-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.6-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.6-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.7-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.7-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.6-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.6-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.7-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.7-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.6-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.6-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.6-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.6-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.7-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.7-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.7-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.7-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.6-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.6-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ad36cc2cef7b4c77fa4583163501b698cf4478b0/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.7-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.7-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.7-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.7-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.7-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.8-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.8-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.8-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.7-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.7-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.8-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.8-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.7-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.8-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.7-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.8-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.7-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.7-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.8-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.8-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.7-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.8-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.7-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.7-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.7-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.7-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.7-apache`, `10.3-apache`, `10-apache`, `10.3.7`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.8-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.8-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.8-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.8-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.8-apache`, `10.3-apache`, `10-apache`, `10.3.8`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.7-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.7-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.7-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.7-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.8-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.8-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.8-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.8-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.7-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.7-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.8-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.8-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.7-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.7-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.8-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.8-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.7-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.7-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.7-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.7-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.8-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.8-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.8-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.8-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.7-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.7-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d5ac24c7815e40b9dc957cc288bd0e2b0d00d529/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.8-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.8-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-alpine3.19/Dockerfile) - [`10.2.10-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.10-php8.3-apache`, `10.2-php8.3-apache`, `10.2.10-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bookworm/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index e17002388cb6..74cdcca40ac3 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/elasticsearch/Dockerfile) + - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/elasticsearch/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 3273758ff791..701dc9ca141a 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/kibana/Dockerfile) + - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/kibana/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index d37de7fd603c..940714253178 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,6 +24,8 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/logstash/Dockerfile) + - [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/logstash/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/logstash/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 80877d85f717..1abb2a1cc0be 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-RC4-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC4-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/apache/Dockerfile) +- [`beta-6.7-RC5-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC5-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/apache/Dockerfile) -- [`beta-6.7-RC4-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7-RC5-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7-RC4-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7-RC5-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7-RC4-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC4`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC4-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC4-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/apache/Dockerfile) +- [`beta-6.7-RC5-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC5`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC5-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC5-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/apache/Dockerfile) -- [`beta-6.7-RC4-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC4-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7-RC5-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC5-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7-RC4-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC4-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7-RC5-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC5-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7-RC4-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC4-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/apache/Dockerfile) +- [`beta-6.7-RC5-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC5-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/apache/Dockerfile) -- [`beta-6.7-RC4-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7-RC5-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7-RC4-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e08cdafba9453ce82af7a5f377edeaa1dd9ca613/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7-RC5-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 852c2869c9da0daf947a81d7742107893a4fe70c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Nov 2024 13:09:42 -0800 Subject: [PATCH 1668/2686] Run update.sh --- api-firewall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index bf135c2bd96c..221e9492aee5 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.3`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/7ae99319347dfa931810f576a5fe194c85e3b5e7/0.8.3/Dockerfile) +- [`0.8.4`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/68375d5f34d01ee894aae48bd001863a7fce0faf/0.8.4/Dockerfile) # Quick reference (cont.) From 5c2aecec5d1f203e45d183aadd201bfcf1c3e903 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Nov 2024 17:09:19 -0800 Subject: [PATCH 1669/2686] Run update.sh --- gradle/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index bbb92dae6abe..6e293ce66a38 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.10.2-jdk8`, `8.10-jdk8`, `8-jdk8`, `jdk8`, `8.10.2-jdk8-jammy`, `8.10-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8/Dockerfile) +- [`8.11.0-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.0-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8/Dockerfile) -- [`8.10.2-jdk8-focal`, `8.10-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8-focal/Dockerfile) +- [`8.11.0-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8-focal/Dockerfile) -- [`8.10.2-jdk8-corretto`, `8.10-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.10.2-jdk8-corretto-al2023`, `8.10-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk8-corretto/Dockerfile) +- [`8.11.0-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.0-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8-corretto/Dockerfile) -- [`8.10.2-jdk11`, `8.10-jdk11`, `8-jdk11`, `jdk11`, `8.10.2-jdk11-jammy`, `8.10-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11/Dockerfile) +- [`8.11.0-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.0-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11/Dockerfile) -- [`8.10.2-jdk11-focal`, `8.10-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-focal/Dockerfile) +- [`8.11.0-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-focal/Dockerfile) -- [`8.10.2-jdk11-alpine`, `8.10-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-alpine/Dockerfile) +- [`8.11.0-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-alpine/Dockerfile) -- [`8.10.2-jdk11-corretto`, `8.10-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.10.2-jdk11-corretto-al2023`, `8.10-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk11-corretto/Dockerfile) +- [`8.11.0-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.0-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-corretto/Dockerfile) -- [`8.10.2-jdk17`, `8.10-jdk17`, `8-jdk17`, `jdk17`, `8.10.2-jdk17-jammy`, `8.10-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17/Dockerfile) +- [`8.11.0-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.0-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17/Dockerfile) -- [`8.10.2-jdk17-focal`, `8.10-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.10.2-jdk-focal`, `8.10-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.10.2-focal`, `8.10-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-focal/Dockerfile) +- [`8.11.0-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.0-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.0-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-focal/Dockerfile) -- [`8.10.2-jdk17-alpine`, `8.10-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.10.2-jdk-alpine`, `8.10-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-alpine/Dockerfile) +- [`8.11.0-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.0-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-alpine/Dockerfile) -- [`8.10.2-jdk17-corretto`, `8.10-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.10.2-jdk17-corretto-al2023`, `8.10-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-corretto/Dockerfile) +- [`8.11.0-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.0-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-corretto/Dockerfile) -- [`8.10.2-jdk17-graal`, `8.10-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.10.2-jdk-graal`, `8.10-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.10.2-graal`, `8.10-graal`, `8-graal`, `graal`, `8.10.2-jdk17-graal-jammy`, `8.10-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.10.2-jdk-graal-jammy`, `8.10-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.10.2-graal-jammy`, `8.10-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk17-graal/Dockerfile) +- [`8.11.0-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.0-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.0-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.0-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.0-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.0-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-graal/Dockerfile) -- [`8.10.2-jdk21`, `8.10-jdk21`, `8-jdk21`, `jdk21`, `8.10.2-jdk21-jammy`, `8.10-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.10.2-jdk`, `8.10-jdk`, `8-jdk`, `jdk`, `8.10.2`, `8.10`, `8`, `8.10.2-jdk-jammy`, `8.10-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.10.2-jammy`, `8.10-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21/Dockerfile) +- [`8.11.0-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.0-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.0-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.0`, `8.11`, `8`, `8.11.0-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.0-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21/Dockerfile) -- [`8.10.2-jdk21-alpine`, `8.10-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.10.2-alpine`, `8.10-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-alpine/Dockerfile) +- [`8.11.0-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.0-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-alpine/Dockerfile) -- [`8.10.2-jdk21-corretto`, `8.10-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.10.2-jdk21-corretto-al2023`, `8.10-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-corretto/Dockerfile) +- [`8.11.0-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.0-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-corretto/Dockerfile) -- [`8.10.2-jdk21-graal`, `8.10-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.10.2-jdk21-graal-jammy`, `8.10-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk21-graal/Dockerfile) +- [`8.11.0-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.0-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-graal/Dockerfile) -- [`8.10.2-jdk23`, `8.10-jdk23`, `8-jdk23`, `jdk23`, `8.10.2-jdk23-jammy`, `8.10-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23/Dockerfile) +- [`8.11.0-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.0-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23/Dockerfile) -- [`8.10.2-jdk23-alpine`, `8.10-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-alpine/Dockerfile) +- [`8.11.0-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-alpine/Dockerfile) -- [`8.10.2-jdk23-corretto`, `8.10-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-corretto/Dockerfile) +- [`8.11.0-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-corretto/Dockerfile) -- [`8.10.2-jdk23-graal`, `8.10-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk23-graal/Dockerfile) +- [`8.11.0-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-graal/Dockerfile) -- [`8.10.2-jdk-lts-and-current`, `8.10-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.10.2-jdk-lts-and-current-jammy`, `8.10-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.10.2-jdk-21-and-23`, `8.10-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.10.2-jdk-21-and-23-jammy`, `8.10-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current/Dockerfile) +- [`8.11.0-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.0-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.0-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.0-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current/Dockerfile) -- [`8.10.2-jdk-lts-and-current-alpine`, `8.10-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.10.2-jdk-21-and-23-alpine`, `8.10-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-alpine/Dockerfile) +- [`8.11.0-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.0-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-alpine/Dockerfile) -- [`8.10.2-jdk-lts-and-current-corretto`, `8.10-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.10.2-jdk-lts-and-current-corretto-al2023`, `8.10-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.10.2-jdk-21-and-23-corretto`, `8.10-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.10.2-jdk-21-and-23-corretto-al2023`, `8.10-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-corretto/Dockerfile) +- [`8.11.0-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.0-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.0-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.0-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-corretto/Dockerfile) -- [`8.10.2-jdk-lts-and-current-graal`, `8.10-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.10.2-jdk-lts-and-current-graal-jammy`, `8.10-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.10.2-jdk-21-and-23-graal`, `8.10-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.10.2-jdk-21-and-23-graal-jammy`, `8.10-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d3b56becf2affe337173f9c88805f2ab687027f6/jdk-lts-and-current-graal/Dockerfile) +- [`8.11.0-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.0-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.0-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.0-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From b8a1def4293bebe56cf8393ff3b1890671b1b17a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Nov 2024 11:09:34 -0800 Subject: [PATCH 1670/2686] Run update.sh --- emqx/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 2206f2659c1c..63963ef5339d 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,8 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.6`, `5.1`](https://github.com/emqx/emqx-docker/blob/dfa1507bc031b4f24ffa29f838dbad1868e35d01/5.1/Dockerfile) - - [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) @@ -38,7 +36,7 @@ WARNING: - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.1`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/2b80e3422224db8bcf69ee62e8414b63dca0fec6/5.8/Dockerfile) +- [`5.8.2`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/3867b976864f6707fd3305ea3e5f8e41c0eb0690/5.8/Dockerfile) # Quick reference (cont.) From a4233b74959dbe6304c66878d0dc845786a696e7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Nov 2024 10:09:25 -0800 Subject: [PATCH 1671/2686] Run update.sh --- composer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer/README.md b/composer/README.md index 2dcb2bba6a7f..8a73bfd02f91 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/lts/Dockerfile) +- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/lts/Dockerfile) -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/2c5c50a862f17f2b0bdff0ef623ed5de853ba2a1/legacy/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/legacy/Dockerfile) -- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/327b1e8184e42fdb25262da9617a8c236eeed82c/latest/Dockerfile) +- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/latest/Dockerfile) # Quick reference (cont.) From 1138fd396e1b63516fbb688c99ac993307ec3557 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Nov 2024 11:09:19 -0800 Subject: [PATCH 1672/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index 04002b6078fd..eb89917f176a 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.4-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.4`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/da40aaeba0b58bee5fc5c8c9a2ebe340a69d94f8/stable/bookworm/Dockerfile) +- [`3.5.4-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.4`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/78d6abbd3622fd4643eba38db0530d546b964ee7/stable/bookworm/Dockerfile) -- [`3.6.0-334.3.beta-sdk`, `beta-sdk`, `3.6.0-334.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/da40aaeba0b58bee5fc5c8c9a2ebe340a69d94f8/beta/bookworm/Dockerfile) +- [`3.6.0-334.4.beta-sdk`, `beta-sdk`, `3.6.0-334.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/78d6abbd3622fd4643eba38db0530d546b964ee7/beta/bookworm/Dockerfile) # Quick reference (cont.) From b8c4df0930489d3ea43aabd264568acaeb544022 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Nov 2024 12:09:12 -0800 Subject: [PATCH 1673/2686] Run update.sh --- wordpress/README.md | 36 +++++++++--------------------------- 1 file changed, 9 insertions(+), 27 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 1abb2a1cc0be..f7c0604c462f 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.2-php8.1-apache`, `6.6-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.6.2-php8.1`, `6.6-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/apache/Dockerfile) +- [`6.7.0-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.0-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/apache/Dockerfile) -- [`6.6.2-php8.1-fpm`, `6.6-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/fpm/Dockerfile) +- [`6.7.0-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/fpm/Dockerfile) -- [`6.6.2-php8.1-fpm-alpine`, `6.6-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.7.0-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.6.2-apache`, `6.6-apache`, `6-apache`, `apache`, `6.6.2`, `6.6`, `6`, `latest`, `6.6.2-php8.2-apache`, `6.6-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.6.2-php8.2`, `6.6-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/apache/Dockerfile) +- [`6.7.0-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.0`, `6.7`, `6`, `latest`, `6.7.0-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.0-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/apache/Dockerfile) -- [`6.6.2-fpm`, `6.6-fpm`, `6-fpm`, `fpm`, `6.6.2-php8.2-fpm`, `6.6-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/fpm/Dockerfile) +- [`6.7.0-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.0-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/fpm/Dockerfile) -- [`6.6.2-fpm-alpine`, `6.6-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.6.2-php8.2-fpm-alpine`, `6.6-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.7.0-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.0-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.6.2-php8.3-apache`, `6.6-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.6.2-php8.3`, `6.6-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/apache/Dockerfile) +- [`6.7.0-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.0-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/apache/Dockerfile) -- [`6.6.2-php8.3-fpm`, `6.6-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/fpm/Dockerfile) +- [`6.7.0-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/fpm/Dockerfile) -- [`6.6.2-php8.3-fpm-alpine`, `6.6-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/c85650e7c796145b439acbe966d56f4187588b40/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.7.0-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) @@ -48,24 +48,6 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7-RC5-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7-RC5-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/apache/Dockerfile) - -- [`beta-6.7-RC5-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.7-RC5-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.7-RC5-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7-RC5`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7-RC5-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7-RC5-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/apache/Dockerfile) - -- [`beta-6.7-RC5-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7-RC5-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.7-RC5-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7-RC5-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.7-RC5-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7-RC5-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/apache/Dockerfile) - -- [`beta-6.7-RC5-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.7-RC5-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1634d0ec2e2ca46c69e36b4eae25807cfb8283cd/beta/php8.3/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From f484e8b8a4cec103b973c083ee8756a62e293743 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Nov 2024 13:09:11 -0800 Subject: [PATCH 1674/2686] Run update.sh --- postgres/README.md | 48 +++++++++++++++++++++---------------------- rocket.chat/README.md | 14 ++++++++----- 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index fb6f3fbfe67b..e621dda2803c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.0`, `17`, `latest`, `17.0-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/bookworm/Dockerfile) +- [`17.1`, `17`, `latest`, `17.1-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/bookworm/Dockerfile) -- [`17.0-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/bullseye/Dockerfile) +- [`17.1-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/bullseye/Dockerfile) -- [`17.0-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.0-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/alpine3.20/Dockerfile) +- [`17.1-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.1-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/alpine3.20/Dockerfile) -- [`17.0-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/172544062d1031004b241e917f5f3f9dfebc0df5/17/alpine3.19/Dockerfile) +- [`17.1-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/alpine3.19/Dockerfile) -- [`16.4`, `16`, `16.4-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/c9906f922daaacdfc425b3b918e7644a8722290d/16/bookworm/Dockerfile) +- [`16.5`, `16`, `16.5-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/bookworm/Dockerfile) -- [`16.4-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/c9906f922daaacdfc425b3b918e7644a8722290d/16/bullseye/Dockerfile) +- [`16.5-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/bullseye/Dockerfile) -- [`16.4-alpine3.20`, `16-alpine3.20`, `16.4-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.20/Dockerfile) +- [`16.5-alpine3.20`, `16-alpine3.20`, `16.5-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/alpine3.20/Dockerfile) -- [`16.4-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/3a94d965ecbe08f4b1b255d3ed9ccae671a7a984/16/alpine3.19/Dockerfile) +- [`16.5-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/alpine3.19/Dockerfile) -- [`15.8`, `15`, `15.8-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/bookworm/Dockerfile) +- [`15.9`, `15`, `15.9-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/bookworm/Dockerfile) -- [`15.8-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/bullseye/Dockerfile) +- [`15.9-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/bullseye/Dockerfile) -- [`15.8-alpine3.20`, `15-alpine3.20`, `15.8-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/alpine3.20/Dockerfile) +- [`15.9-alpine3.20`, `15-alpine3.20`, `15.9-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/alpine3.20/Dockerfile) -- [`15.8-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/8cce578a4361ed18a29f53fed24e4554f673a3a4/15/alpine3.19/Dockerfile) +- [`15.9-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/alpine3.19/Dockerfile) -- [`14.13`, `14`, `14.13-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/bookworm/Dockerfile) +- [`14.14`, `14`, `14.14-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/bookworm/Dockerfile) -- [`14.13-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/bullseye/Dockerfile) +- [`14.14-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/bullseye/Dockerfile) -- [`14.13-alpine3.20`, `14-alpine3.20`, `14.13-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/alpine3.20/Dockerfile) +- [`14.14-alpine3.20`, `14-alpine3.20`, `14.14-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/alpine3.20/Dockerfile) -- [`14.13-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/e324d93eba7160270512436fd5e9464f91cfbcb9/14/alpine3.19/Dockerfile) +- [`14.14-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/alpine3.19/Dockerfile) -- [`13.16`, `13`, `13.16-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/bookworm/Dockerfile) +- [`13.17`, `13`, `13.17-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/bookworm/Dockerfile) -- [`13.16-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/bullseye/Dockerfile) +- [`13.17-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/bullseye/Dockerfile) -- [`13.16-alpine3.20`, `13-alpine3.20`, `13.16-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/alpine3.20/Dockerfile) +- [`13.17-alpine3.20`, `13-alpine3.20`, `13.17-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/alpine3.20/Dockerfile) -- [`13.16-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/ce54cce510ed5da4ed9e1e66ddeb6e3300786813/13/alpine3.19/Dockerfile) +- [`13.17-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/alpine3.19/Dockerfile) -- [`12.20`, `12`, `12.20-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/bookworm/Dockerfile) +- [`12.21`, `12`, `12.21-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/bookworm/Dockerfile) -- [`12.20-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/bullseye/Dockerfile) +- [`12.21-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/bullseye/Dockerfile) -- [`12.20-alpine3.20`, `12-alpine3.20`, `12.20-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/alpine3.20/Dockerfile) +- [`12.21-alpine3.20`, `12-alpine3.20`, `12.21-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/alpine3.20/Dockerfile) -- [`12.20-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/62f99df90060f4105ebe9a6bd88611370f52aa16/12/alpine3.19/Dockerfile) +- [`12.21-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c192327d5e46..da52886e0263 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,15 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.9.5`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.9/Dockerfile) +- [`7.0.0`, `7.0`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/7.0/Dockerfile) -- [`6.8.5`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.8/Dockerfile) +- [`6.9.7`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.9/Dockerfile) -- [`6.7.7`, `6.7`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.7/Dockerfile) +- [`6.8.7`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.8/Dockerfile) -- [`6.11.1`, `6.11`, `6`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.11/Dockerfile) +- [`6.13.0`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.13/Dockerfile) -- [`6.10.4`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/9f02df5b6a52c60a039de4b706e653b424471962/6.10/Dockerfile) +- [`6.12.2`, `6.12`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.12/Dockerfile) + +- [`6.11.3`, `6.11`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.11/Dockerfile) + +- [`6.10.7`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.10/Dockerfile) # Quick reference (cont.) From 199079f9867c9fff9901a47360c8a727692fd451 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Nov 2024 17:09:12 -0800 Subject: [PATCH 1675/2686] Run update.sh --- mariadb/README.md | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 7ce4643caceb..30e18fc17817 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,31 +26,29 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.6-ubi/Dockerfile) +- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/12c877197f55de561614a82cd275c1219b9d60ce/11.6-ubi/Dockerfile) -- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.6/Dockerfile) +- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/12c877197f55de561614a82cd275c1219b9d60ce/11.6/Dockerfile) -- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.5-ubi/Dockerfile) +- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/85df6a9f3d781bb94a88d506eca5c3fcc55d8125/11.5-ubi/Dockerfile) -- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/275297af91e85af864e70c70ce2a650ec128db9c/11.5/Dockerfile) +- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/85df6a9f3d781bb94a88d506eca5c3fcc55d8125/11.5/Dockerfile) -- [`11.4.3-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.3-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.4-ubi/Dockerfile) +- [`11.4.4-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.4-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.4-ubi/Dockerfile) -- [`11.4.3-noble`, `11.4-noble`, `lts-noble`, `11.4.3`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.4/Dockerfile) +- [`11.4.4-noble`, `11.4-noble`, `lts-noble`, `11.4.4`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.4/Dockerfile) -- [`11.2.5-jammy`, `11.2-jammy`, `11.2.5`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.2/Dockerfile) +- [`11.2.6-jammy`, `11.2-jammy`, `11.2.6`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.2/Dockerfile) -- [`11.1.6-jammy`, `11.1-jammy`, `11.1.6`, `11.1`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/11.1/Dockerfile) +- [`10.11.10-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.10-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.11-ubi/Dockerfile) -- [`10.11.9-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.9-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.11-ubi/Dockerfile) +- [`10.11.10-jammy`, `10.11-jammy`, `10-jammy`, `10.11.10`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.11/Dockerfile) -- [`10.11.9-jammy`, `10.11-jammy`, `10-jammy`, `10.11.9`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.11/Dockerfile) +- [`10.6.20-ubi9`, `10.6-ubi9`, `10.6.20-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.6-ubi/Dockerfile) -- [`10.6.19-ubi9`, `10.6-ubi9`, `10.6.19-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.6-ubi/Dockerfile) +- [`10.6.20-focal`, `10.6-focal`, `10.6.20`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.6/Dockerfile) -- [`10.6.19-focal`, `10.6-focal`, `10.6.19`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.6/Dockerfile) - -- [`10.5.26-focal`, `10.5-focal`, `10.5.26`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/ee80a97d5cc2fd4f8779dbfedeb8fc8c47941812/10.5/Dockerfile) +- [`10.5.27-focal`, `10.5-focal`, `10.5.27`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.5/Dockerfile) # Quick reference (cont.) From abe599005b38e6d35e8221f822c7116df5f2a435 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Nov 2024 15:09:17 -0800 Subject: [PATCH 1676/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- docker/README.md | 15 +++++++++++++++ ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- openjdk/README.md | 36 ++++++++++++++++++------------------ oraclelinux/README.md | 18 +++++++++--------- 6 files changed, 48 insertions(+), 33 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index fab65e99ee4d..bf04f481acb5 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20241031.0`](https://github.com/amazonlinux/container-images/blob/99e97aa8d28f80ab32b979ad83ff586749ee0ec0/Dockerfile) +- [`2023`, `latest`, `2023.6.20241111.0`](https://github.com/amazonlinux/container-images/blob/f6ec70327ec96260cd657fab433370245a8d0a4d/Dockerfile) -- [`2`, `2.0.20241031.0`](https://github.com/amazonlinux/container-images/blob/260f46597cc645e0edf4672380737f3b5fc58be2/Dockerfile) +- [`2`, `2.0.20241113.1`](https://github.com/amazonlinux/container-images/blob/9345a9ec09cd77260d6000edcaa954d8cc0cd983/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) diff --git a/docker/README.md b/docker/README.md index f622b969eb14..da94c81ea2b4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`27.4.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/cli/Dockerfile) + +- [`27.4.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.1-dind-alpine3.20`, `27.4.0-rc.1`, `27-rc`, `rc`, `27.4.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/dind/Dockerfile) + +- [`27.4.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/dind-rootless/Dockerfile) + +- [`27.4.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`27.4.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) @@ -40,6 +50,11 @@ WARNING: ## Shared Tags +- `27.4.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + + - [`27.4.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-1809/Dockerfile) + - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index a54c268d48a3..865329d0ea5f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.100.1`, `5.100`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2831be2647f436ed45787e31c8942d170f37ea6e/5/debian/Dockerfile) +- [`5.101.1`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c8e4d3bbd0df4bd5a8458eff4e0c3d1cec0f37b7/5/debian/Dockerfile) -- [`5.100.1-alpine`, `5.100-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2831be2647f436ed45787e31c8942d170f37ea6e/5/alpine/Dockerfile) +- [`5.101.1-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c8e4d3bbd0df4bd5a8458eff4e0c3d1cec0f37b7/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 3553dc8ea38b..83f1185ab7ac 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev12`, `3.1-dev`, `3.1-dev12-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b28bb896cedfee705518a8232cfaadda8a35dbed/3.1/Dockerfile) +- [`3.1-dev13`, `3.1-dev`, `3.1-dev13-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/15ad9aaa9e192c0db0a733d67a0bdf24bc70ef09/3.1/Dockerfile) -- [`3.1-dev12-alpine`, `3.1-dev-alpine`, `3.1-dev12-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/b28bb896cedfee705518a8232cfaadda8a35dbed/3.1/alpine/Dockerfile) +- [`3.1-dev13-alpine`, `3.1-dev-alpine`, `3.1-dev13-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/15ad9aaa9e192c0db0a733d67a0bdf24bc70ef09/3.1/alpine/Dockerfile) - [`3.0.6`, `3.0`, `lts`, `latest`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 340e00404ec5..f4769cefe8fe 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-23-jdk-oraclelinux9`, `24-ea-23-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-23-jdk-oracle`, `24-ea-23-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-24-jdk-oraclelinux9`, `24-ea-24-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-24-jdk-oracle`, `24-ea-24-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-23-jdk-oraclelinux8`, `24-ea-23-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-24-jdk-oraclelinux8`, `24-ea-24-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-23-jdk-bookworm`, `24-ea-23-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/bookworm/Dockerfile) +- [`24-ea-24-jdk-bookworm`, `24-ea-24-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/bookworm/Dockerfile) -- [`24-ea-23-jdk-slim-bookworm`, `24-ea-23-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-23-jdk-slim`, `24-ea-23-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-24-jdk-slim-bookworm`, `24-ea-24-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-24-jdk-slim`, `24-ea-24-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-23-jdk-bullseye`, `24-ea-23-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/bullseye/Dockerfile) +- [`24-ea-24-jdk-bullseye`, `24-ea-24-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/bullseye/Dockerfile) -- [`24-ea-23-jdk-slim-bullseye`, `24-ea-23-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-24-jdk-slim-bullseye`, `24-ea-24-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-23-jdk-windowsservercore-ltsc2022`, `24-ea-23-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-24-jdk-windowsservercore-ltsc2022`, `24-ea-24-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-23-jdk-windowsservercore-1809`, `24-ea-23-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-24-jdk-windowsservercore-1809`, `24-ea-24-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-23-jdk-nanoserver-1809`, `24-ea-23-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-24-jdk-nanoserver-1809`, `24-ea-24-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-23-jdk`, `24-ea-23`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-24-jdk`, `24-ea-24`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-23-jdk-windowsservercore`, `24-ea-23-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-24-jdk-windowsservercore`, `24-ea-24-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-23-jdk-nanoserver`, `24-ea-23-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-24-jdk-nanoserver`, `24-ea-24-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/baf8bd9d2a59ca0df0a4b884abe45e6d97dee5aa/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0bc0e7d1c581..508f6b1156a2 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3ff0a2b17a20bcadbe0d6f523f9cce5a1a043a1a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7-slim-fips/Dockerfile) # Quick reference (cont.) From 652f97cd92db7cc9ac13087d7958900388e3465a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Nov 2024 17:09:34 -0800 Subject: [PATCH 1677/2686] Run update.sh --- ubuntu/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index d95229efc5b1..a294b67dcac3 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,10 +28,12 @@ WARNING: - [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20241011`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241011-494cd4d4&id=494cd4d4ce68c2299acaca9d1591e21c45279864) +- [`24.04`, `noble-20241015`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241015-04757657&id=047576572add2bd107e7dd3475c25033a446afe8) - [`24.10`, `oracular-20241009`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241009-71a6e10d&id=71a6e10d9d17f0baa437a234367e8e16406bd3c2) +- [`25.04`, `plucky-20241111`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241111-7922e966&id=7922e9661bac5c40866fcee4838b8b3a87c71222) + # Quick reference (cont.) - **Where to file issues**: From b2b852e9a840c141eeaef3119ca1d03acbe3e95e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Nov 2024 18:09:21 -0800 Subject: [PATCH 1678/2686] Run update.sh --- rabbitmq/README.md | 8 ++++++++ redmine/README.md | 12 +++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e9f542f3df0d..cf91e103a218 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`4.1.0-beta.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/Dockerfile) + +- [`4.1.0-beta.1-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) + +- [`4.1.0-beta.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/Dockerfile) + +- [`4.1.0-beta.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) + - [`4.0.3`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/471ed1c648396130ba247ce62fb475f666db7d2d/4.0/ubuntu/Dockerfile) - [`4.0.3-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 3344582961b5..0c06cd4785a6 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,11 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.4`, `5.1`, `5`, `latest`, `5.1.4-bookworm`, `5.1-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/bookworm/Dockerfile) +- [`6.0.1`, `6.0`, `6`, `latest`, `6.0.1-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/bookworm/Dockerfile) -- [`5.1.4-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `alpine3.20`, `5.1.4-alpine`, `5.1-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.20/Dockerfile) +- [`6.0.1-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`, `6.0.1-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/alpine3.20/Dockerfile) -- [`5.1.4-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.19/Dockerfile) +- [`6.0.1-alpine3.19`, `6.0-alpine3.19`, `6-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/alpine3.19/Dockerfile) + +- [`5.1.4`, `5.1`, `5`, `5.1.4-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/bookworm/Dockerfile) + +- [`5.1.4-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `5.1.4-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.20/Dockerfile) + +- [`5.1.4-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.19/Dockerfile) - [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/bookworm/Dockerfile) From 01e4daff08f4caeb38ff38b80d64c4b5974a1ab7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Nov 2024 07:09:12 -0800 Subject: [PATCH 1679/2686] Run update.sh --- node/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/node/README.md b/node/README.md index dbc89259e34f..edaafa108570 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.19`, `23.1-alpine3.19`, `23.1.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/alpine3.19/Dockerfile) +- [`23-alpine3.19`, `23.2-alpine3.19`, `23.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/alpine3.19/Dockerfile) -- [`23-alpine`, `23-alpine3.20`, `23.1-alpine`, `23.1-alpine3.20`, `23.1.0-alpine`, `23.1.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/alpine3.20/Dockerfile) +- [`23-alpine`, `23-alpine3.20`, `23.2-alpine`, `23.2-alpine3.20`, `23.2.0-alpine`, `23.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/alpine3.20/Dockerfile) -- [`23`, `23-bookworm`, `23.1`, `23.1-bookworm`, `23.1.0`, `23.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.2`, `23.2-bookworm`, `23.2.0`, `23.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.1-bookworm-slim`, `23.1-slim`, `23.1.0-bookworm-slim`, `23.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.2-bookworm-slim`, `23.2-slim`, `23.2.0-bookworm-slim`, `23.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.1-bullseye`, `23.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.2-bullseye`, `23.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.1-bullseye-slim`, `23.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9d04fec54bd5f51abe840d7af0c70787b6b32de6/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.2-bullseye-slim`, `23.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bullseye-slim/Dockerfile) - [`22-alpine3.19`, `22.11-alpine3.19`, `22.11.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.19/Dockerfile) @@ -60,17 +60,17 @@ WARNING: - [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye-slim/Dockerfile) -- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.4-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.19/Dockerfile) +- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.5-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.19/Dockerfile) -- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.4-alpine`, `18.20.4-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/alpine3.20/Dockerfile) +- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.5-alpine`, `18.20.5-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.20/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.4`, `18.20.4-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bookworm/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.5`, `18.20.5-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.4-bookworm-slim`, `18.20.4-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.5-bookworm-slim`, `18.20.5-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.4-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bullseye/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.5-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.4-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/619b871fb3d89dc6d6333914b46bf526e781eec5/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.5-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bullseye-slim/Dockerfile) # Quick reference (cont.) From cc03b5a385ea17d8f62cdd1f642f97394885d0dd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Nov 2024 11:09:38 -0800 Subject: [PATCH 1680/2686] Run update.sh --- archlinux/README.md | 6 +-- clearlinux/README.md | 2 +- clickhouse/README.md | 8 +-- composer/README.md | 2 +- crate/README.md | 2 +- ibm-semeru-runtimes/README.md | 96 +++++++++++++++-------------------- odoo/README.md | 6 +-- photon/README.md | 2 +- 8 files changed, 54 insertions(+), 70 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b8d8219cd2a4..b11662ed8a5b 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.base) +- [`latest`, `base`, `base-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.base) -- [`base-devel`, `base-devel-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241110.0.278197`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cb072c818c5bfc56914ca00cf92991e6ccc657a6/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 5098abb97126..dddcc75d82ee 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/80b400d42b54a19ce81b47e91bf97d0b38080d7d/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c3e797de98e03e415b5958a4e2080aa60ddbc253/Dockerfile) # Quick reference (cont.) diff --git a/clickhouse/README.md b/clickhouse/README.md index 845c71988f23..4a35dbd8b0a0 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `focal`, `24`, `24-focal`, `24.10`, `24.10-focal`, `24.10.1`, `24.10.1-focal`, `24.10.1.2812`, `24.10.1.2812-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.10.1.2812/Dockerfile.ubuntu) +- [`latest`, `focal`, `24`, `24-focal`, `24.10`, `24.10-focal`, `24.10.2`, `24.10.2-focal`, `24.10.2.80`, `24.10.2.80-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.10.2.80/Dockerfile.ubuntu) -- [`24.9`, `24.9-focal`, `24.9.2`, `24.9.2-focal`, `24.9.2.42`, `24.9.2.42-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.9.2.42/Dockerfile.ubuntu) +- [`24.9`, `24.9-focal`, `24.9.3`, `24.9.3-focal`, `24.9.3.128`, `24.9.3.128-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.9.3.128/Dockerfile.ubuntu) -- [`lts`, `focal-lts`, `24.8`, `24.8-focal`, `24.8.6`, `24.8.6-focal`, `24.8.6.70`, `24.8.6.70-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.8.6.70/Dockerfile.ubuntu) +- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.7`, `24.8.7-focal`, `24.8.7.41`, `24.8.7.41-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.8.7.41/Dockerfile.ubuntu) -- [`24.3`, `24.3-focal`, `24.3.13`, `24.3.13-focal`, `24.3.13.40`, `24.3.13.40-focal`](https://github.com/ClickHouse/docker-library/blob/e991ffaf2d96bab935a248d5701c58f637d3040e/server/24.3.13.40/Dockerfile.ubuntu) +- [`24.3`, `24.3-focal`, `24.3.14`, `24.3.14-focal`, `24.3.14.35`, `24.3.14.35-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.3.14.35/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index 8a73bfd02f91..3776d130c94a 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/legacy/Dockerfile) -- [`2.8.2`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/latest/Dockerfile) +- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/23b00dd932ec0497bd587248a44db34953453a73/latest/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index b5aac257c27b..be6f1c054c95 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.2`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/b544e461e4824bd3fdd2f80c4980ffe83ee4ca71/Dockerfile) +- [`5.9.3`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/2b0e73cac52897995f86703232475aaa2b216a01/Dockerfile) - [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 37417f76b96f..5ffcd90bd3f5 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,103 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u422-b05-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u432-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u432-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u432-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u422-b05-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u432-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.24.1_8-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.12.1_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.4.1_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-focal`, `open-22-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jdk-jammy`, `open-22-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-focal`, `open-22-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-22.0.2.1_9-jre-jammy`, `open-22-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-23_37-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-23_37-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-23_37-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-23_37-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u422-b05-jdk`, `open-8-jdk`: - - - [`open-8u422-b05-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- `open-8u422-b05-jre`, `open-8-jre`: - - - [`open-8u422-b05-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- `open-11.0.24.1_8-jdk`, `open-11-jdk`: +- `open-8u432-b06-jdk`, `open-8-jdk`: - - [`open-11.0.24.1_8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u432-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-11.0.24.1_8-jre`, `open-11-jre`: +- `open-8u432-b06-jre`, `open-8-jre`: - - [`open-11.0.24.1_8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u432-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.12.1_7-jdk`, `open-17-jdk`: +- `open-11.0.25_9-jdk`, `open-11-jdk`: - - [`open-17.0.12.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.25_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-17.0.12.1_7-jre`, `open-17-jre`: +- `open-11.0.25_9-jre`, `open-11-jre`: - - [`open-17.0.12.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.25_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.4.1_7-jdk`, `open-21-jdk`: +- `open-17.0.13_11-jdk`, `open-17-jdk`: - - [`open-21.0.4.1_7-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.13_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-21.0.4.1_7-jre`, `open-21-jre`: +- `open-17.0.13_11-jre`, `open-17-jre`: - - [`open-21.0.4.1_7-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.13_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.2.1_9-jdk`, `open-22-jdk`: +- `open-21.0.5_11-jdk`, `open-21-jdk`: - - [`open-22.0.2.1_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.5_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-22.0.2.1_9-jre`, `open-22-jre`: +- `open-21.0.5_11-jre`, `open-21-jre`: - - [`open-22.0.2.1_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/22/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.5_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-23_37-jdk`, `open-23-jdk`: +- `open-23.0.1_11-jdk`, `open-23-jdk`: - - [`open-23_37-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.1_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- `open-23_37-jre`, `open-23-jre`: +- `open-23.0.1_11-jre`, `open-23-jre`: - - [`open-23_37-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/8236ca97febf5f9934e97e2d6a1ecbfaa87fa610/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.1_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 390fe4177b09..b003a8db0b23 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241108`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/18.0/Dockerfile) +- [`18.0-20241118`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/18.0/Dockerfile) -- [`17.0-20241108`, `17.0`, `17`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/17.0/Dockerfile) +- [`17.0-20241118`, `17.0`, `17`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/17.0/Dockerfile) -- [`16.0-20241108`, `16.0`, `16`](https://github.com/odoo/docker/blob/5d79fb3b294227a6264fab1b68917bd344f0c517/16.0/Dockerfile) +- [`16.0-20241118`, `16.0`, `16`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/16.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index b1a257aeb589..d5d1cb1c01ac 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241110`, `latest`](https://github.com/vmware/photon-docker-image/blob/7899458e6a804499ebc247252a95d1a34e4c4a1d/docker/Dockerfile) +- [`5.0`, `5.0-20241117`, `latest`](https://github.com/vmware/photon-docker-image/blob/31f5851cdb2d437d0f0943c4572de0b2fe34de6d/docker/Dockerfile) - [`4.0`, `4.0-20241110`](https://github.com/vmware/photon-docker-image/blob/a6f3943e0225a004b11ad2d1bdb9061bacfaa390/docker/Dockerfile) From 96fcb8587ad9fa9a1ab4587437b2e617c5e35cfa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Nov 2024 12:09:19 -0800 Subject: [PATCH 1681/2686] Run update.sh --- almalinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 99b5e53a238b..19740c4a9f1a 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -32,9 +32,9 @@ WARNING: - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.4`, `9.4-20240923`](https://github.com/AlmaLinux/container-images/blob/b9b6acbb658ca05c3d7ee5b7f8f565f5556f600f/default/amd64/Dockerfile) +- [`latest`, `9`, `9.5`, `9.5-20241118`](https://github.com/AlmaLinux/container-images/blob/77b627bf5868945d5ae46e65af84a2de13a7319a/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.4-minimal`, `9.4-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/b9b6acbb658ca05c3d7ee5b7f8f565f5556f600f/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20241118`](https://github.com/AlmaLinux/container-images/blob/77b627bf5868945d5ae46e65af84a2de13a7319a/minimal/amd64/Dockerfile) # Quick reference (cont.) From e1d5ac932cd43afacdefc27c1b0476394b7a8c85 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Nov 2024 14:09:19 -0800 Subject: [PATCH 1682/2686] Run update.sh --- cassandra/README.md | 2 +- telegraf/README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 7b005ab4767a..c503b7f7e56b 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.7`, `4.1`, `4`, `4.1.7-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/ad1d8a96d90bd17a5be305628aac3dafa9a11f5c/4.1/Dockerfile) -- [`4.0.14`, `4.0`, `4.0.14-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/ef383f1d828a1d167b64d2575277f05654c5d903/4.0/Dockerfile) +- [`4.0.15`, `4.0`, `4.0.15-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/c9c51a794db0a9fd4f1bd54e2f1bf75f98af571d/4.0/Dockerfile) - [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 2d83ea574eb3..4a35dd0a0fdb 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.30/Dockerfile) +- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.30/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.30/alpine/Dockerfile) +- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.30/alpine/Dockerfile) -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/73cce01b40443172e8642a0bd9a694f0648477e9/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.32/alpine/Dockerfile) # Quick reference (cont.) From 53e5d3b04784642d11a64078fafba454c980d516 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Nov 2024 15:09:36 -0800 Subject: [PATCH 1683/2686] Run update.sh --- elasticsearch/README.md | 2 +- ghost/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 74cdcca40ac3..09ac79c2ebf3 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/elasticsearch/Dockerfile) -- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/elasticsearch/Dockerfile) +- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/elasticsearch/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/elasticsearch/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 865329d0ea5f..99cb2da24b32 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.101.1`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c8e4d3bbd0df4bd5a8458eff4e0c3d1cec0f37b7/5/debian/Dockerfile) +- [`5.101.2`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6fae79c8f6b915cac349dd9af37e7df72267036a/5/debian/Dockerfile) -- [`5.101.1-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c8e4d3bbd0df4bd5a8458eff4e0c3d1cec0f37b7/5/alpine/Dockerfile) +- [`5.101.2-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6fae79c8f6b915cac349dd9af37e7df72267036a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 701dc9ca141a..003d42dadd88 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/kibana/Dockerfile) -- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/kibana/Dockerfile) +- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/kibana/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 940714253178..67051d295796 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/logstash/Dockerfile) -- [`8.15.3`](https://github.com/elastic/dockerfiles/blob/5a2646dafd69282b29f600e9b366a4904764523a/logstash/Dockerfile) +- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/logstash/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/logstash/Dockerfile) From 6a5b50ee4fc60406e1ad7b02fed682add7deae58 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Nov 2024 12:09:18 -0800 Subject: [PATCH 1684/2686] Run update.sh --- bash/README.md | 2 +- busybox/README.md | 16 ++++++++-------- xwiki/README.md | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bash/README.md b/bash/README.md index 54dcc3613646..11c6e2e574cc 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241108`, `devel`, `devel-20241108-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/c030c5e635e02c22c33e3910a11087dccb8632ea/devel/Dockerfile) +- [`devel-20241115`, `devel`, `devel-20241115-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/52a6d56194abcb2664e2010688f88411f41803bd/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/busybox/README.md b/busybox/README.md index 93a5331cdc7b..bc8c15411a89 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/a2783b883c18c45a4d91a24327d42048a04068ff/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index e30a293549e9..dd4982b2c8fe 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.9-mariadb-tomcat`, `16.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.13`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.14`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e233f1370b336523c340b2d218d0abb1c95aa128/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.5`, `16.4-mysql-tomcat`, `16.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mysql-tomcat/Dockerfile) From fbfd2f516dd38e36b79e915c57cd35a87a463457 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Nov 2024 16:09:16 -0800 Subject: [PATCH 1685/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- gradle/README.md | 48 +++++++++++++++++++++++----------------------- influxdb/README.md | 24 +++++++++++------------ 3 files changed, 44 insertions(+), 44 deletions(-) diff --git a/docker/README.md b/docker/README.md index da94c81ea2b4..3c57005f94b4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`27.4.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/cli/Dockerfile) +- [`27.4.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/cli/Dockerfile) -- [`27.4.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.1-dind-alpine3.20`, `27.4.0-rc.1`, `27-rc`, `rc`, `27.4.0-rc.1-alpine3.20`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/dind/Dockerfile) +- [`27.4.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.2-dind-alpine3.20`, `27.4.0-rc.2`, `27-rc`, `rc`, `27.4.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/dind/Dockerfile) -- [`27.4.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/dind-rootless/Dockerfile) +- [`27.4.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/dind-rootless/Dockerfile) -- [`27.4.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.4.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-1809/Dockerfile) - [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `27.4.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: +- `27.4.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.4.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad57caf9179715e19c7e5058940f8936807fffe4/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.4.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: diff --git a/gradle/README.md b/gradle/README.md index 6e293ce66a38..2164d357d663 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.0-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.0-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8/Dockerfile) +- [`8.11.0-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.0-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8/Dockerfile) -- [`8.11.0-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8-focal/Dockerfile) +- [`8.11.0-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8-focal/Dockerfile) -- [`8.11.0-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.0-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk8-corretto/Dockerfile) +- [`8.11.0-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.0-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8-corretto/Dockerfile) -- [`8.11.0-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.0-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11/Dockerfile) +- [`8.11.0-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.0-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11/Dockerfile) -- [`8.11.0-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-focal/Dockerfile) +- [`8.11.0-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-focal/Dockerfile) -- [`8.11.0-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-alpine/Dockerfile) +- [`8.11.0-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-alpine/Dockerfile) -- [`8.11.0-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.0-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk11-corretto/Dockerfile) +- [`8.11.0-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.0-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-corretto/Dockerfile) -- [`8.11.0-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.0-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17/Dockerfile) +- [`8.11.0-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.0-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17/Dockerfile) -- [`8.11.0-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.0-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.0-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-focal/Dockerfile) +- [`8.11.0-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.0-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.0-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-focal/Dockerfile) -- [`8.11.0-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.0-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-alpine/Dockerfile) +- [`8.11.0-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.0-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-alpine/Dockerfile) -- [`8.11.0-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.0-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-corretto/Dockerfile) +- [`8.11.0-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.0-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-corretto/Dockerfile) -- [`8.11.0-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.0-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.0-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.0-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.0-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.0-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk17-graal/Dockerfile) +- [`8.11.0-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.0-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.0-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.0-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.0-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.0-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-graal/Dockerfile) -- [`8.11.0-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.0-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.0-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.0`, `8.11`, `8`, `8.11.0-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.0-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21/Dockerfile) +- [`8.11.0-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.0-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.0-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.0`, `8.11`, `8`, `8.11.0-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.0-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21/Dockerfile) -- [`8.11.0-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.0-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-alpine/Dockerfile) +- [`8.11.0-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.0-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-alpine/Dockerfile) -- [`8.11.0-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.0-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-corretto/Dockerfile) +- [`8.11.0-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.0-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-corretto/Dockerfile) -- [`8.11.0-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.0-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk21-graal/Dockerfile) +- [`8.11.0-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.0-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-graal/Dockerfile) -- [`8.11.0-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.0-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23/Dockerfile) +- [`8.11.0-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.0-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23/Dockerfile) -- [`8.11.0-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-alpine/Dockerfile) +- [`8.11.0-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-alpine/Dockerfile) -- [`8.11.0-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-corretto/Dockerfile) +- [`8.11.0-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-corretto/Dockerfile) -- [`8.11.0-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk23-graal/Dockerfile) +- [`8.11.0-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-graal/Dockerfile) -- [`8.11.0-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.0-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.0-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.0-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current/Dockerfile) +- [`8.11.0-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.0-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.0-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.0-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current/Dockerfile) -- [`8.11.0-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.0-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-alpine/Dockerfile) +- [`8.11.0-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.0-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-alpine/Dockerfile) -- [`8.11.0-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.0-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.0-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.0-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-corretto/Dockerfile) +- [`8.11.0-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.0-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.0-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.0-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-corretto/Dockerfile) -- [`8.11.0-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.0-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.0-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.0-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e1ea9198e1be5dbd68d788ddc4c171f40010a46e/jdk-lts-and-current-graal/Dockerfile) +- [`8.11.0-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.0-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.0-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.0-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 15081e607bf6..2cb5e60d485c 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.7`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.7-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.7-data`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.7-meta`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/4911d4bc6865973f4c91636da56239d140bc798d/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) From 6e2a154303bdbc0a565705e1653e3be8fb83b904 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 19 Nov 2024 16:46:13 -0800 Subject: [PATCH 1686/2686] Remove badges from "repo stub readme" contents --- generate-repo-stub-readme.sh | 87 ------------------------------------ 1 file changed, 87 deletions(-) diff --git a/generate-repo-stub-readme.sh b/generate-repo-stub-readme.sh index fb4d6915cdb8..b79ed4bff353 100755 --- a/generate-repo-stub-readme.sh +++ b/generate-repo-stub-readme.sh @@ -24,14 +24,6 @@ if [ -s "$repo/github-repo" ]; then canonicalRepo="$(< "$repo/github-repo")" fi canonicalRepo="$(curl -fsSLI -o /dev/null -w '%{url_effective}\n' "$canonicalRepo")" # follow redirects (http://stackoverflow.com/a/3077316/433558) -githubRepoName="${canonicalRepo#*://github.com/}" - -case "$githubRepoName" in - # Elastic points "github-repo" at their upstream elastic/xyz-docker repos, but we want our README stubs to still point at our integration repos - elastic/*) githubRepoName="docker-library/$repo" ;; - - hylang/hy) githubRepoName='hylang/docker-hylang' ;; -esac maintainer="$(sed -e 's!%%GITHUB-REPO%%!'"$canonicalRepo"'!g' "$repo/maintainer.md")" @@ -61,85 +53,6 @@ The [full image description on Docker Hub]($hubPage) is generated/maintained ove For more information about the full official images change lifecycle, see [the "An image's source changed in Git, now what?" FAQ entry](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what). For outstanding \`$repo\` image PRs, check [PRs with the "library/$repo" label on the official-images repository](https://github.com/docker-library/official-images/labels/library%2F$repo). For the current "source of truth" for [\`$repo\`]($hubPage), see [the \`library/$repo\` file in the official-images repository](https://github.com/docker-library/official-images/blob/master/library/$repo). -EOREADME - -badges=() - -n=$'\n' -t=$'\t' - -branch='master' -toTest=( - # "image badge URL" - # "image badge link/href" - # "badge test URL (to determine whether badge applies)" - - "https://img.shields.io/github/actions/workflow/status/$githubRepoName/ci.yml?branch=$branch&label=GitHub%20CI" - "https://github.com/$githubRepoName/actions?query=workflow%3A%22GitHub+CI%22+branch%3A$branch" - "https://github.com/$githubRepoName/blob/$branch/.github/workflows/ci.yml" - - "https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/update.sh/job/$repo.svg?label=Automated%20update.sh" - "https://doi-janky.infosiftr.net/job/update.sh/job/$repo/" - "https://doi-janky.infosiftr.net/job/update.sh/job/$repo/" -) - -_wget_spider() { - wget -q -o /dev/null -O /dev/null --spider "$@" -} - -set -- "${toTest[@]}" -while [ "$#" -gt 0 ]; do - image="$1"; shift - url="$1"; shift - testUrl="$1"; shift - if _wget_spider "$testUrl"; then - badges+=( "-${t}[![build status badge]($image)]($url)" ) - fi -done - -arches="$(bashbrew cat --format '{{ range .Entries }}{{ join "\n" .Architectures }}{{ "\n" }}{{ end }}' "https://github.com/docker-library/official-images/raw/master/library/$repo" | sort -u)" -if [ -n "$arches" ]; then - archTable= - i=0 - for arch in $arches put-shared; do - if [ "$arch" = 'put-shared' ]; then - jenkinsJob="job/put-shared/job/light/job/$repo" - if ! _wget_spider "https://doi-janky.infosiftr.net/$jenkinsJob/"; then - jenkinsJob='job/put-shared/job/heavy' - fi - else - jenkinsJob="job/multiarch/job/$arch/job/$repo" - fi - jenkinsLink="https://doi-janky.infosiftr.net/$jenkinsJob/" - jenkinsImage="https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/$jenkinsJob.svg?label=$arch" - if _wget_spider "$jenkinsLink"; then - archTable="${archTable:-|} [![$arch build status badge]($jenkinsImage)]($jenkinsLink) |" - (( i = (i + 1) % 4 )) || : # modulo here needs to match the number of colums used below - if [ "$i" = 0 ]; then - archTable+="${n}|" - fi - fi - done - if [ -n "$archTable" ]; then - if [ "${#badges[@]}" -gt 0 ]; then - badges+=( '' ) - fi - badges+=( "| Build | Status | Badges | (per-arch) |${n}|:-:|:-:|:-:|:-:|${n}${archTable%${n}|}" ) - fi -fi - -if [ "${#badges[@]}" -gt 0 ]; then - IFS=$'\n' - cat <<-EOREADME - - --- - - ${badges[*]} - EOREADME - unset IFS -fi - -cat < EOREADME From c39cacf14f5d2a2c26a86eaa1b04445435fb2250 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Nov 2024 11:09:21 -0800 Subject: [PATCH 1687/2686] Run update.sh --- node/README.md | 12 ++++++------ python/README.md | 30 +++++++++++++++--------------- traefik/README.md | 16 ++++------------ 3 files changed, 25 insertions(+), 33 deletions(-) diff --git a/node/README.md b/node/README.md index edaafa108570..c9ec9120dc8d 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.11-bullseye-slim`, `22.11.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.0-alpine3.19`, `iron-alpine3.19`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.19/Dockerfile) +- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.1-alpine3.19`, `iron-alpine3.19`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.19/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.0-alpine`, `20.18.0-alpine3.20`, `iron-alpine`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.1-alpine`, `20.18.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.20/Dockerfile) -- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.0`, `20.18.0-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.1`, `20.18.1-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.0-bookworm-slim`, `20.18.0-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.1-bookworm-slim`, `20.18.1-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.18-bullseye`, `20.18.0-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.18-bullseye`, `20.18.1-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8483b3edd9cc2a38360d88d360e3093d657ac3fe/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.1-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bullseye-slim/Dockerfile) - [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.5-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.19/Dockerfile) diff --git a/python/README.md b/python/README.md index 37c3cd4616e3..5ea878979a10 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0a1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a2-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a2-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a1-alpine3.20`, `3.14-rc-alpine3.20`, `3.14.0a1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a2-alpine3.20`, `3.14-rc-alpine3.20`, `3.14.0a2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a1-alpine3.19`, `3.14-rc-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/alpine3.19/Dockerfile) +- [`3.14.0a2-alpine3.19`, `3.14-rc-alpine3.19`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.19/Dockerfile) -- [`3.14.0a1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a1-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a2-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.0-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bookworm/Dockerfile) @@ -114,16 +114,16 @@ WARNING: ## Shared Tags -- `3.14.0a1`, `3.14-rc`: +- `3.14.0a2`, `3.14-rc`: - - [`3.14.0a1-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a2-bookworm`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a1-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a2-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a1-windowsservercore-1809`](https://github.com/docker-library/python/blob/f599a555df4b1065bfe02163f5ebff04481553e2/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.0`, `3.13`, `3`, `latest`: diff --git a/traefik/README.md b/traefik/README.md index f77d509f500e..8964edbe8ded 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -32,21 +32,13 @@ WARNING: - [`v3.2.0`, `3.2.0`, `v3.2`, `3.2`, `munster`, `v3`, `3`, `latest`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/alpine/Dockerfile) -- [`v3.1.7-windowsservercore-ltsc2022`, `3.1.7-windowsservercore-ltsc2022`, `v3.1-windowsservercore-ltsc2022`, `3.1-windowsservercore-ltsc2022`, `comte-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.14-windowsservercore-ltsc2022`, `2.11.14-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v3.1.7-windowsservercore-1809`, `3.1.7-windowsservercore-1809`, `v3.1-windowsservercore-1809`, `3.1-windowsservercore-1809`, `comte-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/1809/Dockerfile) +- [`v2.11.14-windowsservercore-1809`, `2.11.14-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/1809/Dockerfile) -- [`v3.1.7-nanoserver-ltsc2022`, `3.1.7-nanoserver-ltsc2022`, `v3.1-nanoserver-ltsc2022`, `3.1-nanoserver-ltsc2022`, `comte-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.14-nanoserver-ltsc2022`, `2.11.14-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.1.7`, `3.1.7`, `v3.1`, `3.1`, `comte`](https://github.com/traefik/traefik-library-image/blob/40f669e3bf6b1827863a3ab9c901025e6c25b77c/v3.1/alpine/Dockerfile) - -- [`v2.11.13-windowsservercore-ltsc2022`, `2.11.13-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/servercore-ltsc2022/Dockerfile) - -- [`v2.11.13-windowsservercore-1809`, `2.11.13-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `mimolette-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/1809/Dockerfile) - -- [`v2.11.13-nanoserver-ltsc2022`, `2.11.13-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/windows/nanoserver-ltsc2022/Dockerfile) - -- [`v2.11.13`, `2.11.13`, `v2.11`, `2.11`, `mimolette`, `v2`, `2`](https://github.com/traefik/traefik-library-image/blob/c5d63851ac1dea31b5ab54e6fdbee68ffb1dfd87/v2.11/alpine/Dockerfile) +- [`v2.11.14`, `2.11.14`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 13bac679dfe4c1b37759d53c4d8829d1040464a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Nov 2024 12:09:18 -0800 Subject: [PATCH 1688/2686] Run update.sh --- gradle/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 2164d357d663..bebe66ccbed5 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.0-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.0-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8/Dockerfile) +- [`8.11.1-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.1-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8/Dockerfile) -- [`8.11.0-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8-focal/Dockerfile) +- [`8.11.1-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8-focal/Dockerfile) -- [`8.11.0-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.0-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk8-corretto/Dockerfile) +- [`8.11.1-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.1-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8-corretto/Dockerfile) -- [`8.11.0-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.0-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11/Dockerfile) +- [`8.11.1-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.1-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11/Dockerfile) -- [`8.11.0-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-focal/Dockerfile) +- [`8.11.1-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-focal/Dockerfile) -- [`8.11.0-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-alpine/Dockerfile) +- [`8.11.1-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-alpine/Dockerfile) -- [`8.11.0-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.0-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk11-corretto/Dockerfile) +- [`8.11.1-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.1-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-corretto/Dockerfile) -- [`8.11.0-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.0-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17/Dockerfile) +- [`8.11.1-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.1-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17/Dockerfile) -- [`8.11.0-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.0-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.0-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-focal/Dockerfile) +- [`8.11.1-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.1-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.1-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-focal/Dockerfile) -- [`8.11.0-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.0-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-alpine/Dockerfile) +- [`8.11.1-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.1-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-alpine/Dockerfile) -- [`8.11.0-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.0-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-corretto/Dockerfile) +- [`8.11.1-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.1-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-corretto/Dockerfile) -- [`8.11.0-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.0-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.0-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.0-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.0-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.0-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk17-graal/Dockerfile) +- [`8.11.1-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.1-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.1-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.1-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.1-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.1-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-graal/Dockerfile) -- [`8.11.0-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.0-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.0-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.0`, `8.11`, `8`, `8.11.0-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.0-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21/Dockerfile) +- [`8.11.1-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.1-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.1-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.1`, `8.11`, `8`, `8.11.1-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.1-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21/Dockerfile) -- [`8.11.0-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.0-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-alpine/Dockerfile) +- [`8.11.1-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.1-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-alpine/Dockerfile) -- [`8.11.0-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.0-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-corretto/Dockerfile) +- [`8.11.1-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.1-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-corretto/Dockerfile) -- [`8.11.0-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.0-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk21-graal/Dockerfile) +- [`8.11.1-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.1-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-graal/Dockerfile) -- [`8.11.0-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.0-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23/Dockerfile) +- [`8.11.1-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.1-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23/Dockerfile) -- [`8.11.0-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-alpine/Dockerfile) +- [`8.11.1-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-alpine/Dockerfile) -- [`8.11.0-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-corretto/Dockerfile) +- [`8.11.1-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-corretto/Dockerfile) -- [`8.11.0-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk23-graal/Dockerfile) +- [`8.11.1-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-graal/Dockerfile) -- [`8.11.0-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.0-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.0-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.0-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current/Dockerfile) +- [`8.11.1-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.1-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.1-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.1-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current/Dockerfile) -- [`8.11.0-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.0-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-alpine/Dockerfile) +- [`8.11.1-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.1-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-alpine/Dockerfile) -- [`8.11.0-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.0-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.0-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.0-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-corretto/Dockerfile) +- [`8.11.1-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.1-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.1-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.1-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-corretto/Dockerfile) -- [`8.11.0-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.0-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.0-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.0-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/101961f7dcee5e9f97f060a48e7f66ddf8888c2a/jdk-lts-and-current-graal/Dockerfile) +- [`8.11.1-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.1-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.1-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.1-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) From 137222aaf2ff0415998fd93e94a7d1b153b393de Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Nov 2024 14:09:32 -0800 Subject: [PATCH 1689/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 508f6b1156a2..ddfa89f5173d 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/79c480de394abd553f94225d0af35b58323e1792/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7-slim-fips/Dockerfile) # Quick reference (cont.) From fa376619a7d9212e0f8029ccd9e2a83a58900dc3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Nov 2024 15:09:12 -0800 Subject: [PATCH 1690/2686] Run update.sh --- traefik/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 8964edbe8ded..a25693735771 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.2.0-windowsservercore-ltsc2022`, `3.2.0-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.1-windowsservercore-ltsc2022`, `3.2.1-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.0-windowsservercore-1809`, `3.2.0-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/1809/Dockerfile) +- [`v3.2.1-windowsservercore-1809`, `3.2.1-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/1809/Dockerfile) -- [`v3.2.0-nanoserver-ltsc2022`, `3.2.0-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.1-nanoserver-ltsc2022`, `3.2.1-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.0`, `3.2.0`, `v3.2`, `3.2`, `munster`, `v3`, `3`, `latest`](https://github.com/traefik/traefik-library-image/blob/05f8054703253e2b20c802fc69d24a31ca769a43/v3.2/alpine/Dockerfile) +- [`v3.2.1`, `3.2.1`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/alpine/Dockerfile) - [`v2.11.14-windowsservercore-ltsc2022`, `2.11.14-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/servercore-ltsc2022/Dockerfile) From 77ae189180134bddfa64346492f7f5c8b72205d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Nov 2024 10:09:10 -0800 Subject: [PATCH 1691/2686] Run update.sh --- drupal/README.md | 84 ++++++++++++------------ php/README.md | 168 ++++++++++++++++------------------------------- 2 files changed, 98 insertions(+), 154 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index e6d67cbba26c..351ab1807f4b 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.7-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.7-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.7-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.7-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.7-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.7`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.8-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.8-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.8-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.8-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.8-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.8`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.7-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.7-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.7-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.7-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.8-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.8-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.8-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.8-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.7-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.7-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.8-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.8-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.7-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.7-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.8-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.8-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.7-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.7-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.7-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.7-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.8-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.8-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.8-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.8-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.7-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.7-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7e65333b9dc9c53edbe442e9b1fc2273595a2630/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.8-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.8-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.8-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.8-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.8-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.9-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.9-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.9-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.8-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.8-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.9-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.9-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.8-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.9-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.8-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.9-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.8-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.8-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.9-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.9-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.8-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.9-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.8-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.8-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.8-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.8-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.8-apache`, `10.3-apache`, `10-apache`, `10.3.8`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.9-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.9-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.9-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.9-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.9-apache`, `10.3-apache`, `10-apache`, `10.3.9`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.8-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.8-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.8-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.8-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.9-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.9-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.9-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.9-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.8-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.8-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.9-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.9-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.8-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.8-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.9-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.9-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.8-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.8-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.8-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.8-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.9-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.9-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.9-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.9-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.8-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.8-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/d85974ca3eee4119233cd9cae1c81f990bc1302f/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.9-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.9-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.10-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.10-php8.3-apache`, `10.2-php8.3-apache`, `10.2.10-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.11-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.11-php8.3-apache`, `10.2-php8.3-apache`, `10.2.11-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.10-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.10-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.11-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.11-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.10-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.11-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.10-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.11-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.10-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.10-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.11-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.11-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.10-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.11-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.10-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.10-php8.2-apache`, `10.2-php8.2-apache`, `10.2.10-php8.2`, `10.2-php8.2`, `10.2.10-apache-bookworm`, `10.2-apache-bookworm`, `10.2.10-apache`, `10.2-apache`, `10.2.10`, `10.2`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.11-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.11-php8.2-apache`, `10.2-php8.2-apache`, `10.2.11-php8.2`, `10.2-php8.2`, `10.2.11-apache-bookworm`, `10.2-apache-bookworm`, `10.2.11-apache`, `10.2-apache`, `10.2.11`, `10.2`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.10-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.10-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.10-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.10-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.11-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.11-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.11-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.11-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.10-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.10-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.11-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.11-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.10-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.10-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.11-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.11-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.10-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.10-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.10-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.10-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.11-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.11-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.11-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.11-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.10-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.10-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c33e782cac2fb479c25194262aade6613b9a99bf/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.11-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.11-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.101-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.101-php8.2-apache`, `7-php8.2-apache`, `7.101-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bookworm/Dockerfile) +- [`7.102-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.102-php8.2-apache`, `7-php8.2-apache`, `7.102-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/apache-bookworm/Dockerfile) -- [`7.101-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.101-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.102-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.102-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.101-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/apache-bullseye/Dockerfile) +- [`7.102-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/apache-bullseye/Dockerfile) -- [`7.101-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.102-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.101-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.101-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.20/Dockerfile) +- [`7.102-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.102-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-alpine3.20/Dockerfile) -- [`7.101-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.102-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.101-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.101-php8.1-apache`, `7-php8.1-apache`, `7.101-php8.1`, `7-php8.1`, `7.101-apache-bookworm`, `7-apache-bookworm`, `7.101-apache`, `7-apache`, `7.101`, `7`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bookworm/Dockerfile) +- [`7.102-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.102-php8.1-apache`, `7-php8.1-apache`, `7.102-php8.1`, `7-php8.1`, `7.102-apache-bookworm`, `7-apache-bookworm`, `7.102-apache`, `7-apache`, `7.102`, `7`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/apache-bookworm/Dockerfile) -- [`7.101-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.101-php8.1-fpm`, `7-php8.1-fpm`, `7.101-fpm-bookworm`, `7-fpm-bookworm`, `7.101-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.102-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.102-php8.1-fpm`, `7-php8.1-fpm`, `7.102-fpm-bookworm`, `7-fpm-bookworm`, `7.102-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.101-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.101-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/apache-bullseye/Dockerfile) +- [`7.102-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.102-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/apache-bullseye/Dockerfile) -- [`7.101-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.101-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.102-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.102-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.101-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.101-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.101-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.101-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.20/Dockerfile) +- [`7.102-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.102-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.102-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.102-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-alpine3.20/Dockerfile) -- [`7.101-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.101-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8153f36c33b6aa645bbfc816bae8645cf210abee/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.102-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.102-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 818cc11bf09b..c914441aa1cf 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.0RC4-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.0RC4-bookworm`, `8.4-rc-bookworm`, `8.4.0RC4-cli`, `8.4-rc-cli`, `8.4.0RC4`, `8.4-rc`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.1-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.1-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.1-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.1`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/cli/Dockerfile) -- [`8.4.0RC4-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.0RC4-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.1-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.1-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/apache/Dockerfile) -- [`8.4.0RC4-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.0RC4-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.1-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.1-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/fpm/Dockerfile) -- [`8.4.0RC4-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.0RC4-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.1-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.1-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/zts/Dockerfile) -- [`8.4.0RC4-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.0RC4-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.1-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.1-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/cli/Dockerfile) -- [`8.4.0RC4-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.1-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/apache/Dockerfile) -- [`8.4.0RC4-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.1-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/fpm/Dockerfile) -- [`8.4.0RC4-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.1-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/zts/Dockerfile) -- [`8.4.0RC4-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.0RC4-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.0RC4-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.0RC4-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.1-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.1-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.4.1-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.1-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.0RC4-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.0RC4-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.1-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.4.1-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.0RC4-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.0RC4-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.1-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.4.1-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.0RC4-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.0RC4-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.1-cli-alpine3.19`, `8.4-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.4.1-alpine3.19`, `8.4-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/cli/Dockerfile) -- [`8.4.0RC4-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.1-fpm-alpine3.19`, `8.4-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/fpm/Dockerfile) -- [`8.4.0RC4-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/d8d6073b24bc2e25059c50368e901330a803cea4/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.1-zts-alpine3.19`, `8.4-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/zts/Dockerfile) -- [`8.3.14RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.14RC1-bookworm`, `8.3-rc-bookworm`, `8.3.14RC1-cli`, `8.3-rc-cli`, `8.3.14RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.14-cli-bookworm`, `8.3-cli-bookworm`, `8.3.14-bookworm`, `8.3-bookworm`, `8.3.14-cli`, `8.3-cli`, `8.3.14`, `8.3`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/cli/Dockerfile) -- [`8.3.14RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.14RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.14-apache-bookworm`, `8.3-apache-bookworm`, `8.3.14-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/apache/Dockerfile) -- [`8.3.14RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.14RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.14-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.14-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/fpm/Dockerfile) -- [`8.3.14RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.14RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.14-zts-bookworm`, `8.3-zts-bookworm`, `8.3.14-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/zts/Dockerfile) -- [`8.3.14RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.14RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.14-cli-bullseye`, `8.3-cli-bullseye`, `8.3.14-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/cli/Dockerfile) -- [`8.3.14RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.14-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/apache/Dockerfile) -- [`8.3.14RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.14-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/fpm/Dockerfile) -- [`8.3.14RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.14-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/zts/Dockerfile) -- [`8.3.14RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.14RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.14RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.14RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.14-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.14-alpine3.20`, `8.3-alpine3.20`, `8.3.14-cli-alpine`, `8.3-cli-alpine`, `8.3.14-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.14RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.14RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.14-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8.3.14-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.14RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.14RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.14-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8.3.14-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.14RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.14RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.14-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8.3.14-alpine3.19`, `8.3-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/cli/Dockerfile) -- [`8.3.14RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.14-fpm-alpine3.19`, `8.3-fpm-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/fpm/Dockerfile) -- [`8.3.14RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/e9613af2b5bb0da3cc19c4ea05cdbea802eaab21/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.14-zts-alpine3.19`, `8.3-zts-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/zts/Dockerfile) -- [`8.3.13-cli-bookworm`, `8.3-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.3.13-bookworm`, `8.3-bookworm`, `8-bookworm`, `bookworm`, `8.3.13-cli`, `8.3-cli`, `8-cli`, `cli`, `8.3.13`, `8.3`, `8`, `latest`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/cli/Dockerfile) +- [`8.2.26-cli-bookworm`, `8.2-cli-bookworm`, `8.2.26-bookworm`, `8.2-bookworm`, `8.2.26-cli`, `8.2-cli`, `8.2.26`, `8.2`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/cli/Dockerfile) -- [`8.3.13-apache-bookworm`, `8.3-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.3.13-apache`, `8.3-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/apache/Dockerfile) +- [`8.2.26-apache-bookworm`, `8.2-apache-bookworm`, `8.2.26-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/apache/Dockerfile) -- [`8.3.13-fpm-bookworm`, `8.3-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.3.13-fpm`, `8.3-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/fpm/Dockerfile) +- [`8.2.26-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.26-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/fpm/Dockerfile) -- [`8.3.13-zts-bookworm`, `8.3-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.3.13-zts`, `8.3-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bookworm/zts/Dockerfile) +- [`8.2.26-zts-bookworm`, `8.2-zts-bookworm`, `8.2.26-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/zts/Dockerfile) -- [`8.3.13-cli-bullseye`, `8.3-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.3.13-bullseye`, `8.3-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/cli/Dockerfile) +- [`8.2.26-cli-bullseye`, `8.2-cli-bullseye`, `8.2.26-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/cli/Dockerfile) -- [`8.3.13-apache-bullseye`, `8.3-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/apache/Dockerfile) +- [`8.2.26-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/apache/Dockerfile) -- [`8.3.13-fpm-bullseye`, `8.3-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/fpm/Dockerfile) +- [`8.2.26-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/fpm/Dockerfile) -- [`8.3.13-zts-bullseye`, `8.3-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/bullseye/zts/Dockerfile) +- [`8.2.26-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/zts/Dockerfile) -- [`8.3.13-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.3.13-alpine3.20`, `8.3-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.3.13-cli-alpine`, `8.3-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.3.13-alpine`, `8.3-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/cli/Dockerfile) +- [`8.2.26-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.26-alpine3.20`, `8.2-alpine3.20`, `8.2.26-cli-alpine`, `8.2-cli-alpine`, `8.2.26-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.13-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.3.13-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/fpm/Dockerfile) +- [`8.2.26-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.26-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.13-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.3.13-zts-alpine`, `8.3-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.20/zts/Dockerfile) +- [`8.2.26-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.26-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/zts/Dockerfile) -- [`8.3.13-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.3.13-alpine3.19`, `8.3-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/cli/Dockerfile) +- [`8.2.26-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.26-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/cli/Dockerfile) -- [`8.3.13-fpm-alpine3.19`, `8.3-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/fpm/Dockerfile) +- [`8.2.26-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/fpm/Dockerfile) -- [`8.3.13-zts-alpine3.19`, `8.3-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/910674b44ecb630c9831d3bdf4f82aa2adb6bfe5/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.26-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/zts/Dockerfile) -- [`8.2.26RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.26RC1-bookworm`, `8.2-rc-bookworm`, `8.2.26RC1-cli`, `8.2-rc-cli`, `8.2.26RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/cli/Dockerfile) +- [`8.1.31-cli-bookworm`, `8.1-cli-bookworm`, `8.1.31-bookworm`, `8.1-bookworm`, `8.1.31-cli`, `8.1-cli`, `8.1.31`, `8.1`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/cli/Dockerfile) -- [`8.2.26RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.26RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/apache/Dockerfile) +- [`8.1.31-apache-bookworm`, `8.1-apache-bookworm`, `8.1.31-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/apache/Dockerfile) -- [`8.2.26RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.26RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/fpm/Dockerfile) +- [`8.1.31-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.31-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/fpm/Dockerfile) -- [`8.2.26RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.26RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bookworm/zts/Dockerfile) +- [`8.1.31-zts-bookworm`, `8.1-zts-bookworm`, `8.1.31-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/zts/Dockerfile) -- [`8.2.26RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.26RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/cli/Dockerfile) +- [`8.1.31-cli-bullseye`, `8.1-cli-bullseye`, `8.1.31-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/cli/Dockerfile) -- [`8.2.26RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/apache/Dockerfile) +- [`8.1.31-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/apache/Dockerfile) -- [`8.2.26RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/fpm/Dockerfile) +- [`8.1.31-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/fpm/Dockerfile) -- [`8.2.26RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/bullseye/zts/Dockerfile) +- [`8.1.31-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/zts/Dockerfile) -- [`8.2.26RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.26RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.26RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.26RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/cli/Dockerfile) +- [`8.1.31-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.31-alpine3.20`, `8.1-alpine3.20`, `8.1.31-cli-alpine`, `8.1-cli-alpine`, `8.1.31-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/cli/Dockerfile) -- [`8.2.26RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.26RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/fpm/Dockerfile) +- [`8.1.31-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.31-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/fpm/Dockerfile) -- [`8.2.26RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.26RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.20/zts/Dockerfile) +- [`8.1.31-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.31-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/zts/Dockerfile) -- [`8.2.26RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.26RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.1.31-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.31-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/cli/Dockerfile) -- [`8.2.26RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.1.31-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/fpm/Dockerfile) -- [`8.2.26RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/d287c23a6ee60eb68db797939765f4c00cb99928/8.2-rc/alpine3.19/zts/Dockerfile) - -- [`8.2.25-cli-bookworm`, `8.2-cli-bookworm`, `8.2.25-bookworm`, `8.2-bookworm`, `8.2.25-cli`, `8.2-cli`, `8.2.25`, `8.2`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/cli/Dockerfile) - -- [`8.2.25-apache-bookworm`, `8.2-apache-bookworm`, `8.2.25-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/apache/Dockerfile) - -- [`8.2.25-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.25-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.25-zts-bookworm`, `8.2-zts-bookworm`, `8.2.25-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bookworm/zts/Dockerfile) - -- [`8.2.25-cli-bullseye`, `8.2-cli-bullseye`, `8.2.25-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/cli/Dockerfile) - -- [`8.2.25-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/apache/Dockerfile) - -- [`8.2.25-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.25-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/bullseye/zts/Dockerfile) - -- [`8.2.25-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.25-alpine3.20`, `8.2-alpine3.20`, `8.2.25-cli-alpine`, `8.2-cli-alpine`, `8.2.25-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.25-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.25-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.25-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.25-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.20/zts/Dockerfile) - -- [`8.2.25-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.25-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/cli/Dockerfile) - -- [`8.2.25-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/fpm/Dockerfile) - -- [`8.2.25-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/fb757d2c29dbbb30b09981e47a1761cc859842fc/8.2/alpine3.19/zts/Dockerfile) - -- [`8.1.30-cli-bookworm`, `8.1-cli-bookworm`, `8.1.30-bookworm`, `8.1-bookworm`, `8.1.30-cli`, `8.1-cli`, `8.1.30`, `8.1`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/cli/Dockerfile) - -- [`8.1.30-apache-bookworm`, `8.1-apache-bookworm`, `8.1.30-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/apache/Dockerfile) - -- [`8.1.30-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.30-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/fpm/Dockerfile) - -- [`8.1.30-zts-bookworm`, `8.1-zts-bookworm`, `8.1.30-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bookworm/zts/Dockerfile) - -- [`8.1.30-cli-bullseye`, `8.1-cli-bullseye`, `8.1.30-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/cli/Dockerfile) - -- [`8.1.30-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/apache/Dockerfile) - -- [`8.1.30-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/fpm/Dockerfile) - -- [`8.1.30-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/bullseye/zts/Dockerfile) - -- [`8.1.30-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.30-alpine3.20`, `8.1-alpine3.20`, `8.1.30-cli-alpine`, `8.1-cli-alpine`, `8.1.30-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/cli/Dockerfile) - -- [`8.1.30-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.30-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/fpm/Dockerfile) - -- [`8.1.30-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.30-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.20/zts/Dockerfile) - -- [`8.1.30-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.30-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/cli/Dockerfile) - -- [`8.1.30-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/fpm/Dockerfile) - -- [`8.1.30-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/9a1e55bb514473362d21e8b4de02f1f43c040582/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.31-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/zts/Dockerfile) # Quick reference (cont.) From 9e97af40e1dfc4263c6afc75fc98d533aa63b319 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Nov 2024 11:09:18 -0800 Subject: [PATCH 1692/2686] Run update.sh --- aerospike/README.md | 4 +-- node/README.md | 12 ++++----- perl/README.md | 64 ++++++++++++++++++++++----------------------- 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index d6b2a607311d..868a4ec24d19 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.2.0.3`, `ee-7.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/169e145b437e88a165b6e2b72e2312b1d2ef9409/enterprise/ubuntu24.04/Dockerfile) +- [`ee-7.2.0.4`, `ee-7.2.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/ecbb73c9d4f87474c4e2b64ace09d41a911a4409/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.2.0.3`, `ce-7.2.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/169e145b437e88a165b6e2b72e2312b1d2ef9409/community/ubuntu24.04/Dockerfile) +- [`ce-7.2.0.4`, `ce-7.2.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/ecbb73c9d4f87474c4e2b64ace09d41a911a4409/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index c9ec9120dc8d..a7f4033e044a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.19`, `23.2-alpine3.19`, `23.2.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/alpine3.19/Dockerfile) +- [`23-alpine3.19`, `23.3-alpine3.19`, `23.3.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.19/Dockerfile) -- [`23-alpine`, `23-alpine3.20`, `23.2-alpine`, `23.2-alpine3.20`, `23.2.0-alpine`, `23.2.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/alpine3.20/Dockerfile) +- [`23-alpine`, `23-alpine3.20`, `23.3-alpine`, `23.3-alpine3.20`, `23.3.0-alpine`, `23.3.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.20/Dockerfile) -- [`23`, `23-bookworm`, `23.2`, `23.2-bookworm`, `23.2.0`, `23.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.3`, `23.3-bookworm`, `23.3.0`, `23.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.2-bookworm-slim`, `23.2-slim`, `23.2.0-bookworm-slim`, `23.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.3-bookworm-slim`, `23.3-slim`, `23.3.0-bookworm-slim`, `23.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.2-bullseye`, `23.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.3-bullseye`, `23.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.2-bullseye-slim`, `23.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bd5c1ad707a39db0f333a502d9bc47e1a5e0358d/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.3-bullseye-slim`, `23.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye-slim/Dockerfile) - [`22-alpine3.19`, `22.11-alpine3.19`, `22.11.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.19/Dockerfile) diff --git a/perl/README.md b/perl/README.md index c4adb665381e..50fd230d1f00 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main-bookworm/Dockerfile) +- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main-bullseye/Dockerfile) +- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main-bookworm/Dockerfile) +- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main-bullseye/Dockerfile) +- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.5`, `5.41`, `devel`, `5.41.5-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main-bookworm/Dockerfile) +- [`5.41.6`, `5.41`, `devel`, `5.41.6-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main-bookworm/Dockerfile) -- [`5.41.5-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main-bullseye/Dockerfile) +- [`5.41.6-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main-bullseye/Dockerfile) -- [`5.41.5-slim`, `5.41-slim`, `devel-slim`, `5.41.5-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim-bookworm/Dockerfile) +- [`5.41.6-slim`, `5.41-slim`, `devel-slim`, `5.41.6-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim-bookworm/Dockerfile) -- [`5.41.5-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim-bullseye/Dockerfile) +- [`5.41.6-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim-bullseye/Dockerfile) -- [`5.41.5-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.5-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main,threaded-bookworm/Dockerfile) +- [`5.41.6-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.6-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main,threaded-bookworm/Dockerfile) -- [`5.41.5-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-main,threaded-bullseye/Dockerfile) +- [`5.41.6-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main,threaded-bullseye/Dockerfile) -- [`5.41.5-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.5-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim,threaded-bookworm/Dockerfile) +- [`5.41.6-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.6-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim,threaded-bookworm/Dockerfile) -- [`5.41.5-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/bc908b6f3523d1ce819ae2f26ddaabf11d955a4d/5.041.005-slim,threaded-bullseye/Dockerfile) +- [`5.41.6-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From 1d6fcb0e8eedcb8bc592429da7dd732ddfab32ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Nov 2024 13:09:15 -0800 Subject: [PATCH 1693/2686] Run update.sh --- ghost/README.md | 4 ++-- wordpress/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 99cb2da24b32..f0e97daeb209 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.101.2`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6fae79c8f6b915cac349dd9af37e7df72267036a/5/debian/Dockerfile) +- [`5.101.3`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c0390b479deba850f0b57708aadc3772ed5b3d81/5/debian/Dockerfile) -- [`5.101.2-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6fae79c8f6b915cac349dd9af37e7df72267036a/5/alpine/Dockerfile) +- [`5.101.3-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c0390b479deba850f0b57708aadc3772ed5b3d81/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index f7c0604c462f..70cc25ec292c 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.7.0-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.0-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/apache/Dockerfile) +- [`6.7.1-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.1-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/apache/Dockerfile) -- [`6.7.0-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/fpm/Dockerfile) +- [`6.7.1-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/fpm/Dockerfile) -- [`6.7.0-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.7.1-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.7.0-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.0`, `6.7`, `6`, `latest`, `6.7.0-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.0-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/apache/Dockerfile) +- [`6.7.1-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.1`, `6.7`, `6`, `latest`, `6.7.1-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.1-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/apache/Dockerfile) -- [`6.7.0-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.0-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/fpm/Dockerfile) +- [`6.7.1-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.1-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/fpm/Dockerfile) -- [`6.7.0-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.0-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.7.1-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.1-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.7.0-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.0-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/apache/Dockerfile) +- [`6.7.1-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.1-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/apache/Dockerfile) -- [`6.7.0-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/fpm/Dockerfile) +- [`6.7.1-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/fpm/Dockerfile) -- [`6.7.0-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/805a50001c4457b69c949cbc8b2ff1f7e563e2c6/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.7.1-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) From c29aa510eabbee522f5153c9abd0037fc67f698e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Nov 2024 14:09:16 -0800 Subject: [PATCH 1694/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index ddfa89f5173d..65a12b2ec9b3 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/29e3ee6cba31a2a6be5989672c088b12dffb91a3/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7-slim-fips/Dockerfile) # Quick reference (cont.) From cfe84c257eb78cab73772e797339016e9ab0fd3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ludwig?= Date: Fri, 22 Nov 2024 09:57:13 +0100 Subject: [PATCH 1695/2686] Update caddy/content.md to fix typo Co-authored-by: Francis Lavoie --- caddy/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/content.md b/caddy/content.md index 423526b71820..4f6fc0de651e 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -46,7 +46,7 @@ $ docker run -d -p 80:80 \ #### ⚠️ Do not mount the Caddyfile directly at `/etc/caddy/Caddyfile` -If vim or another editor is used that changes the inode of the edited file, the changes will only be applied within the container when the container is recreated , which is explained in detail in this [Medium article](https://medium.com/@jonsbun/why-need-to-be-careful-when-mounting-single-files-into-a-docker-container-4f929340834). When using such an editor, Caddy's graceful reload functionality might not work as expected, as described in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). +If vim or another editor is used that changes the inode of the edited file, the changes will only be applied within the container when the container is recreated, which is explained in detail in this [Medium article](https://medium.com/@jonsbun/why-need-to-be-careful-when-mounting-single-files-into-a-docker-container-4f929340834). When using such an editor, Caddy's graceful reload functionality might not work as expected, as described in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). ### Automatic TLS with the Caddy image From d6d9b3b88dfe27b1ee775ce3d0b5f0f91ef427a1 Mon Sep 17 00:00:00 2001 From: Bjoern Ludwig Date: Fri, 22 Nov 2024 11:20:53 +0100 Subject: [PATCH 1696/2686] Update caddy/content.md with simplification of persisting data volume --- caddy/content.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/caddy/content.md b/caddy/content.md index 4f6fc0de651e..e38e50c87b7f 100644 --- a/caddy/content.md +++ b/caddy/content.md @@ -144,10 +144,7 @@ services: volumes: caddy_data: - external: true caddy_config: ``` -Defining the data volume as [`external`](https://docs.docker.com/compose/compose-file/compose-file-v3/#external) makes sure `docker-compose down` does not delete the volume. You may need to create it manually using `docker volume create [project-name]_caddy_data`. - Graceful reloads can then be conducted via `docker compose exec -w /etc/caddy caddy caddy reload`. From b7155fe1613928edfd1ac4032f2d986ececa4eff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Nov 2024 12:09:11 -0800 Subject: [PATCH 1697/2686] Run update.sh --- haproxy/README.md | 4 ++-- postgres/README.md | 48 +++++++++++++++++++++++----------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 83f1185ab7ac..3a926c7867bf 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev13`, `3.1-dev`, `3.1-dev13-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/15ad9aaa9e192c0db0a733d67a0bdf24bc70ef09/3.1/Dockerfile) +- [`3.1-dev14`, `3.1-dev`, `3.1-dev14-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/4fc823bc6faadaf9b2912b3323dac9d78367bb71/3.1/Dockerfile) -- [`3.1-dev13-alpine`, `3.1-dev-alpine`, `3.1-dev13-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/15ad9aaa9e192c0db0a733d67a0bdf24bc70ef09/3.1/alpine/Dockerfile) +- [`3.1-dev14-alpine`, `3.1-dev-alpine`, `3.1-dev14-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/4fc823bc6faadaf9b2912b3323dac9d78367bb71/3.1/alpine/Dockerfile) - [`3.0.6`, `3.0`, `lts`, `latest`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index e621dda2803c..be5f3acf50a1 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.1`, `17`, `latest`, `17.1-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/bookworm/Dockerfile) +- [`17.2`, `17`, `latest`, `17.2-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/bookworm/Dockerfile) -- [`17.1-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/bullseye/Dockerfile) +- [`17.2-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/bullseye/Dockerfile) -- [`17.1-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.1-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/alpine3.20/Dockerfile) +- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/alpine3.20/Dockerfile) -- [`17.1-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/b64a17080eaaab2ec717352379ecd20456562fb5/17/alpine3.19/Dockerfile) +- [`17.2-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/alpine3.19/Dockerfile) -- [`16.5`, `16`, `16.5-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/bookworm/Dockerfile) +- [`16.6`, `16`, `16.6-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bookworm/Dockerfile) -- [`16.5-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/bullseye/Dockerfile) +- [`16.6-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bullseye/Dockerfile) -- [`16.5-alpine3.20`, `16-alpine3.20`, `16.5-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/alpine3.20/Dockerfile) +- [`16.6-alpine3.20`, `16-alpine3.20`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/alpine3.20/Dockerfile) -- [`16.5-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/f6c1f5b3765fdb3dce87ac5adc6270e0d5485a76/16/alpine3.19/Dockerfile) +- [`16.6-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/alpine3.19/Dockerfile) -- [`15.9`, `15`, `15.9-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/bookworm/Dockerfile) +- [`15.10`, `15`, `15.10-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bookworm/Dockerfile) -- [`15.9-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/bullseye/Dockerfile) +- [`15.10-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bullseye/Dockerfile) -- [`15.9-alpine3.20`, `15-alpine3.20`, `15.9-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/alpine3.20/Dockerfile) +- [`15.10-alpine3.20`, `15-alpine3.20`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/alpine3.20/Dockerfile) -- [`15.9-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/89e0c9265d95bc82c67d417ca04039ec2d5ccefc/15/alpine3.19/Dockerfile) +- [`15.10-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/alpine3.19/Dockerfile) -- [`14.14`, `14`, `14.14-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/bookworm/Dockerfile) +- [`14.15`, `14`, `14.15-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bookworm/Dockerfile) -- [`14.14-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/bullseye/Dockerfile) +- [`14.15-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bullseye/Dockerfile) -- [`14.14-alpine3.20`, `14-alpine3.20`, `14.14-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/alpine3.20/Dockerfile) +- [`14.15-alpine3.20`, `14-alpine3.20`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/alpine3.20/Dockerfile) -- [`14.14-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/9c7abb997a013a96c2651ee541ddea06f424e1f3/14/alpine3.19/Dockerfile) +- [`14.15-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/alpine3.19/Dockerfile) -- [`13.17`, `13`, `13.17-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/bookworm/Dockerfile) +- [`13.18`, `13`, `13.18-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bookworm/Dockerfile) -- [`13.17-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/bullseye/Dockerfile) +- [`13.18-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bullseye/Dockerfile) -- [`13.17-alpine3.20`, `13-alpine3.20`, `13.17-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/alpine3.20/Dockerfile) +- [`13.18-alpine3.20`, `13-alpine3.20`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/alpine3.20/Dockerfile) -- [`13.17-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/9f3bef00aaeb4453ed9e7336ab1856f7e9424b25/13/alpine3.19/Dockerfile) +- [`13.18-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/alpine3.19/Dockerfile) -- [`12.21`, `12`, `12.21-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/bookworm/Dockerfile) +- [`12.22`, `12`, `12.22-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bookworm/Dockerfile) -- [`12.21-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/bullseye/Dockerfile) +- [`12.22-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bullseye/Dockerfile) -- [`12.21-alpine3.20`, `12-alpine3.20`, `12.21-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/alpine3.20/Dockerfile) +- [`12.22-alpine3.20`, `12-alpine3.20`, `12.22-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/alpine3.20/Dockerfile) -- [`12.21-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/cbe3b78084800aa553239f9726942bb17929ba73/12/alpine3.19/Dockerfile) +- [`12.22-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/alpine3.19/Dockerfile) # Quick reference (cont.) From ef14ba1182c98a7d83514d80a04588c8d029639e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Nov 2024 14:09:19 -0800 Subject: [PATCH 1698/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- mariadb/README.md | 8 ++------ neo4j/README.md | 4 ++-- postfixadmin/README.md | 6 +++--- 6 files changed, 10 insertions(+), 14 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 09ac79c2ebf3..50d3a3343730 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/elasticsearch/Dockerfile) +- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/elasticsearch/Dockerfile) - [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 003d42dadd88..fb118bb4a895 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/kibana/Dockerfile) +- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/kibana/Dockerfile) - [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 67051d295796..1a22c1570d43 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.0`](https://github.com/elastic/dockerfiles/blob/fee99c955058383955d074689a499ffa0ebcf245/logstash/Dockerfile) +- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/logstash/Dockerfile) - [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/logstash/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index 30e18fc17817..0051697c10cd 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,13 +26,9 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.6.1-ubi9-rc`, `11.6-ubi9-rc`, `11.6.1-ubi-rc`, `11.6-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/12c877197f55de561614a82cd275c1219b9d60ce/11.6-ubi/Dockerfile) +- [`11.6.2-ubi9`, `11.6-ubi9`, `11-ubi9`, `11.6.2-ubi`, `11.6-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6-ubi/Dockerfile) -- [`11.6.1-noble-rc`, `11.6-noble-rc`, `11.6.1-rc`, `11.6-rc`](https://github.com/MariaDB/mariadb-docker/blob/12c877197f55de561614a82cd275c1219b9d60ce/11.6/Dockerfile) - -- [`11.5.2-ubi9`, `11.5-ubi9`, `11-ubi9`, `11.5.2-ubi`, `11.5-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/85df6a9f3d781bb94a88d506eca5c3fcc55d8125/11.5-ubi/Dockerfile) - -- [`11.5.2-noble`, `11.5-noble`, `11-noble`, `noble`, `11.5.2`, `11.5`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/85df6a9f3d781bb94a88d506eca5c3fcc55d8125/11.5/Dockerfile) +- [`11.6.2-noble`, `11.6-noble`, `11-noble`, `noble`, `11.6.2`, `11.6`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6/Dockerfile) - [`11.4.4-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.4-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.4-ubi/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index fd3cf5b066a0..ca92662c45b5 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,9 +32,9 @@ WARNING: - [`5.25.1-enterprise-ubi9`, `5.25-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/ubi9/enterprise/Dockerfile) -- [`4.4.38`, `4.4.38-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/community/Dockerfile) +- [`4.4.39`, `4.4.39-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e0b93f39e18ba02d3c37677b70fd869070df0515/4.4.39/bullseye/community/Dockerfile) -- [`4.4.38-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/213118aa64ab9ea85620c25865217a36a6faf7fa/4.4.38/bullseye/enterprise/Dockerfile) +- [`4.4.39-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e0b93f39e18ba02d3c37677b70fd869070df0515/4.4.39/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 9324f49c74b7..551c7b24a963 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.13-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.13`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/apache/Dockerfile) +- [`3.3.14-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.14`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/apache/Dockerfile) -- [`3.3.13-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm/Dockerfile) +- [`3.3.14-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/fpm/Dockerfile) -- [`3.3.13-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/0f5eefc2d1b392706a4f9b0840f04eb2a1103a81/fpm-alpine/Dockerfile) +- [`3.3.14-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/fpm-alpine/Dockerfile) # Quick reference (cont.) From 5278e2bbf80e8f8c706530077d68512e18f2a410 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Nov 2024 16:09:12 -0800 Subject: [PATCH 1699/2686] Run update.sh --- drupal/README.md | 60 ++++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 351ab1807f4b..39a2abb1e415 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.8-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.8-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.8-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.8-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.8-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.8`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.9-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.9-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.9-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.9-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.9-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.9`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.8-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.8-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.8-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.8-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.9-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.9-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.9-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.9-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.8-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.8-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.9-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.9-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.8-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.8-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.9-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.9-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.8-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.8-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.8-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.8-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.8-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.8-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/15e1696395088f7a5ee18a4c5f2de068056eafea/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`11.0.9-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.9-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.9-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.9-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.9-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.10-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.10-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.10-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.9-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.9-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.10-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.10-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.9-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.10-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.9-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.10-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.9-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.9-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.9-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.3.9-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.9-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.9-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.9-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.9-apache`, `10.3-apache`, `10-apache`, `10.3.9`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.10-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.10-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.10-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.10-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.10-apache`, `10.3-apache`, `10-apache`, `10.3.10`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.9-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.9-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.9-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.9-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.10-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.10-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.10-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.10-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.9-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.9-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.10-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.10-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.9-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.9-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.10-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.10-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.9-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.9-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.9-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.9-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.3.9-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.9-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/b68bb462319535579706c897ebb53224d156dc72/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.10-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.19/Dockerfile) -- [`10.2.11-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.11-php8.3-apache`, `10.2-php8.3-apache`, `10.2.11-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/apache-bookworm/Dockerfile) +- [`10.2.12-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.12-php8.3-apache`, `10.2-php8.3-apache`, `10.2.12-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/apache-bookworm/Dockerfile) -- [`10.2.11-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.11-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-bookworm/Dockerfile) +- [`10.2.12-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.12-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-bookworm/Dockerfile) -- [`10.2.11-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/apache-bullseye/Dockerfile) +- [`10.2.12-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/apache-bullseye/Dockerfile) -- [`10.2.11-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-bullseye/Dockerfile) +- [`10.2.12-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.11-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.11-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.12-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.12-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.2.11-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.12-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.19/Dockerfile) -- [`10.2.11-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.11-php8.2-apache`, `10.2-php8.2-apache`, `10.2.11-php8.2`, `10.2-php8.2`, `10.2.11-apache-bookworm`, `10.2-apache-bookworm`, `10.2.11-apache`, `10.2-apache`, `10.2.11`, `10.2`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/apache-bookworm/Dockerfile) +- [`10.2.12-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.12-php8.2-apache`, `10.2-php8.2-apache`, `10.2.12-php8.2`, `10.2-php8.2`, `10.2.12-apache-bookworm`, `10.2-apache-bookworm`, `10.2.12-apache`, `10.2-apache`, `10.2.12`, `10.2`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/apache-bookworm/Dockerfile) -- [`10.2.11-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.11-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.11-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.11-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-bookworm/Dockerfile) +- [`10.2.12-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.12-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.12-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.12-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-bookworm/Dockerfile) -- [`10.2.11-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.11-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/apache-bullseye/Dockerfile) +- [`10.2.12-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.12-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/apache-bullseye/Dockerfile) -- [`10.2.11-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.11-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-bullseye/Dockerfile) +- [`10.2.12-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.12-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.11-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.11-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.11-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.11-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.12-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.12-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.12-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.12-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.20/Dockerfile) -- [`10.2.11-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.11-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/c14234b3603cd8acde5f57cebee09342e06e62be/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.12-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.12-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.19/Dockerfile) - [`7.102-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.102-php8.2-apache`, `7-php8.2-apache`, `7.102-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/apache-bookworm/Dockerfile) From c8da5bb4ba3a9bbb9c5717da555a356a9416ee7b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Nov 2024 17:09:28 -0800 Subject: [PATCH 1700/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index cf91e103a218..f17928c45a33 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.1.0-beta.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.3`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/471ed1c648396130ba247ce62fb475f666db7d2d/4.0/ubuntu/Dockerfile) +- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/46b1718733a32ae79186fe45720c0ce1e9e59194/4.0/ubuntu/Dockerfile) -- [`4.0.3-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.4-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.3-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/471ed1c648396130ba247ce62fb475f666db7d2d/4.0/alpine/Dockerfile) +- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/46b1718733a32ae79186fe45720c0ce1e9e59194/4.0/alpine/Dockerfile) -- [`4.0.3-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.4-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ff0bdcfd8c2e81bfeec9a7ad0b432b561ee9f04f/3.13/ubuntu/Dockerfile) From c2ce7b233cd29aee5da6b34ecc9e137f941f3736 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Nov 2024 12:09:17 -0800 Subject: [PATCH 1701/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- ghost/README.md | 4 ++-- mariadb/README.md | 4 ++++ mongo/README.md | 26 ++++++++++++++++++++++++++ odoo/README.md | 6 +++--- 6 files changed, 39 insertions(+), 9 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b11662ed8a5b..5ba850b93f9f 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.base) +- [`latest`, `base`, `base-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.base) -- [`base-devel`, `base-devel-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241117.0.280007`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7c5e646fe913319019d629627f00cdea5bea3a05/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index dddcc75d82ee..88f2edc153c7 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c3e797de98e03e415b5958a4e2080aa60ddbc253/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/35901b761ba780aed3bf9a3396c414408715f75d/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index f0e97daeb209..047a4224c0bf 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.101.3`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c0390b479deba850f0b57708aadc3772ed5b3d81/5/debian/Dockerfile) +- [`5.101.4`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/49a4e9114a9c0afd8246ce1764729ea0586f4eeb/5/debian/Dockerfile) -- [`5.101.3-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c0390b479deba850f0b57708aadc3772ed5b3d81/5/alpine/Dockerfile) +- [`5.101.4-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/49a4e9114a9c0afd8246ce1764729ea0586f4eeb/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 0051697c10cd..f00975b07beb 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,6 +26,10 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links +- [`11.7.1-ubi9-rc`, `11.7-ubi9-rc`, `11.7.1-ubi-rc`, `11.7-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/a6b360fc45b1a8fcd63b87ab69d4ce43566a7c06/11.7-ubi/Dockerfile) + +- [`11.7.1-noble-rc`, `11.7-noble-rc`, `11.7.1-rc`, `11.7-rc`](https://github.com/MariaDB/mariadb-docker/blob/a6b360fc45b1a8fcd63b87ab69d4ce43566a7c06/11.7/Dockerfile) + - [`11.6.2-ubi9`, `11.6-ubi9`, `11-ubi9`, `11.6.2-ubi`, `11.6-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6-ubi/Dockerfile) - [`11.6.2-noble`, `11.6-noble`, `11-noble`, `noble`, `11.6.2`, `11.6`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 6d98debcd6ed..b143240adfe2 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`8.0.4-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/Dockerfile) + +- [`8.0.4-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.4-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`8.0.4-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.4-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.3-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) - [`8.0.3-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -70,6 +80,22 @@ WARNING: ## Shared Tags +- `8.0.4-rc0`, `8.0-rc`: + + - [`8.0.4-rc0-noble`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/Dockerfile) + - [`8.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.4-rc0-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.4-rc0-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.4-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.4-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-1809/Dockerfile) + - `8.0.3`, `8.0`, `8`, `latest`: - [`8.0.3-noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index b003a8db0b23..7e933c90359b 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241118`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/18.0/Dockerfile) +- [`18.0-20241125`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/18.0/Dockerfile) -- [`17.0-20241118`, `17.0`, `17`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/17.0/Dockerfile) +- [`17.0-20241125`, `17.0`, `17`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/17.0/Dockerfile) -- [`16.0-20241118`, `16.0`, `16`](https://github.com/odoo/docker/blob/593824b6735d46a7be744006e98f8f53d50cc5db/16.0/Dockerfile) +- [`16.0-20241125`, `16.0`, `16`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/16.0/Dockerfile) # Quick reference (cont.) From d8537b96c91575e022024710cf5789f9da5e85a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Nov 2024 15:09:20 -0800 Subject: [PATCH 1702/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index f4769cefe8fe..a7fadc156c93 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-24-jdk-oraclelinux9`, `24-ea-24-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-24-jdk-oracle`, `24-ea-24-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-25-jdk-oraclelinux9`, `24-ea-25-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-25-jdk-oracle`, `24-ea-25-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-24-jdk-oraclelinux8`, `24-ea-24-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-25-jdk-oraclelinux8`, `24-ea-25-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-24-jdk-bookworm`, `24-ea-24-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/bookworm/Dockerfile) +- [`24-ea-25-jdk-bookworm`, `24-ea-25-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/bookworm/Dockerfile) -- [`24-ea-24-jdk-slim-bookworm`, `24-ea-24-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-24-jdk-slim`, `24-ea-24-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-25-jdk-slim-bookworm`, `24-ea-25-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-25-jdk-slim`, `24-ea-25-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-24-jdk-bullseye`, `24-ea-24-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/bullseye/Dockerfile) +- [`24-ea-25-jdk-bullseye`, `24-ea-25-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/bullseye/Dockerfile) -- [`24-ea-24-jdk-slim-bullseye`, `24-ea-24-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-25-jdk-slim-bullseye`, `24-ea-25-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-24-jdk-windowsservercore-ltsc2022`, `24-ea-24-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-25-jdk-windowsservercore-ltsc2022`, `24-ea-25-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-24-jdk-windowsservercore-1809`, `24-ea-24-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-25-jdk-windowsservercore-1809`, `24-ea-25-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-24-jdk-nanoserver-1809`, `24-ea-24-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-25-jdk-nanoserver-1809`, `24-ea-25-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-24-jdk`, `24-ea-24`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-25-jdk`, `24-ea-25`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-24-jdk-windowsservercore`, `24-ea-24-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-25-jdk-windowsservercore`, `24-ea-25-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-24-jdk-nanoserver`, `24-ea-24-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-25-jdk-nanoserver`, `24-ea-25-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/095209fd556aa181d7b95ae162aee68656f59012/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 9163a26c6e40e7e530b4ead844d1d2ad776e89e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Nov 2024 16:09:12 -0800 Subject: [PATCH 1703/2686] Run update.sh --- caddy/README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 59200d2b83e0..b6653737adc3 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -144,15 +144,19 @@ $ curl http://localhost/ hello world ``` -To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can mount a new one at `/etc/caddy/Caddyfile`: +To override the default [`Caddyfile`](https://github.com/caddyserver/dist/blob/master/config/Caddyfile), you can create one in the subfolder `conf` at `$PWD/conf/Caddyfile` and mount this folder at `/etc/caddy`: ```console $ docker run -d -p 80:80 \ - -v $PWD/Caddyfile:/etc/caddy/Caddyfile \ + -v $PWD/conf:/etc/caddy \ -v caddy_data:/data \ caddy ``` +#### ⚠️ Do not mount the Caddyfile directly at `/etc/caddy/Caddyfile` + +If vim or another editor is used that changes the inode of the edited file, the changes will only be applied within the container when the container is recreated, which is explained in detail in this [Medium article](https://medium.com/@jonsbun/why-need-to-be-careful-when-mounting-single-files-into-a-docker-container-4f929340834). When using such an editor, Caddy's graceful reload functionality might not work as expected, as described in [this issue](https://github.com/caddyserver/caddy/issues/5735#issuecomment-1675896585). + ### Automatic TLS with the Caddy image The default `Caddyfile` only listens to port `80`, and does not set up automatic TLS. However, if you have a domain name for your site, and its A/AAAA DNS records are properly pointed to this machine's public IP, then you can use this command to simply serve a site over HTTPS: @@ -228,11 +232,9 @@ See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details. ### Docker Compose example -If you prefer to use `docker-compose` to run your stack, here's a sample service definition. +If you prefer to use `docker compose` to run your stack, here's a sample service definition which goes in a file named `compose.yaml`. The configuration assumes you put a custom Caddyfile into `$PWD/conf` as described [above](#basic-usage). ```yaml -version: "3.7" - services: caddy: image: caddy: @@ -244,18 +246,17 @@ services: - "443:443" - "443:443/udp" volumes: - - $PWD/Caddyfile:/etc/caddy/Caddyfile + - $PWD/conf:/etc/caddy - $PWD/site:/srv - caddy_data:/data - caddy_config:/config volumes: caddy_data: - external: true caddy_config: ``` -Defining the data volume as [`external`](https://docs.docker.com/compose/compose-file/compose-file-v3/#external) makes sure `docker-compose down` does not delete the volume. You may need to create it manually using `docker volume create [project-name]_caddy_data`. +Graceful reloads can then be conducted via `docker compose exec -w /etc/caddy caddy caddy reload`. # Image Variants From 68d4ce701100458c8e5aec0a33482afbb73f6821 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Nov 2024 17:09:16 -0800 Subject: [PATCH 1704/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 65a12b2ec9b3..d4fea9ccc066 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/26aae444213a50facdad312acc0d183085090164/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7-slim-fips/Dockerfile) # Quick reference (cont.) From c543d87182523a3e84c34095bbbb124caf8963f1 Mon Sep 17 00:00:00 2001 From: Michael Zangl Date: Tue, 26 Nov 2024 13:40:36 +0100 Subject: [PATCH 1705/2686] Clarify how to build and run I used this in class. My students were missing the build command, because it is a bit hidden in the text. I suggest making it more obvious that the image needs to be built before running it. --- nginx/content.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/content.md b/nginx/content.md index 47b01a4a218f..f933a5baab84 100644 --- a/nginx/content.md +++ b/nginx/content.md @@ -21,9 +21,10 @@ FROM %%IMAGE%% COPY static-html-directory /usr/share/nginx/html ``` -Place this file in the same directory as your directory of content ("static-html-directory"), run `docker build -t some-content-nginx .`, then start your container: +Place this file in the same directory as your directory of content ("static-html-directory"), then run these commands to build and start your container: ```console +$ docker build -t some-content-nginx . $ docker run --name some-nginx -d some-content-nginx ``` From 6b84e28b001c0a7a043b90b1b14a58c1f30c51ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Nov 2024 10:09:17 -0800 Subject: [PATCH 1706/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- nginx/README.md | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 50d3a3343730..263a8a274770 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/elasticsearch/Dockerfile) -- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/elasticsearch/Dockerfile) +- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/elasticsearch/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index fb118bb4a895..5f6f3e6d7d22 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/kibana/Dockerfile) -- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/kibana/Dockerfile) +- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/kibana/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 1a22c1570d43..12fc98efd9ff 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/logstash/Dockerfile) -- [`8.15.4`](https://github.com/elastic/dockerfiles/blob/2ead1ff2522226005f77bb65ebb2c7a09e18700a/logstash/Dockerfile) +- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/logstash/Dockerfile) - [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/logstash/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index a267e7abe6d7..384941cd5ac4 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -94,9 +94,10 @@ FROM nginx COPY static-html-directory /usr/share/nginx/html ``` -Place this file in the same directory as your directory of content ("static-html-directory"), run `docker build -t some-content-nginx .`, then start your container: +Place this file in the same directory as your directory of content ("static-html-directory"), then run these commands to build and start your container: ```console +$ docker build -t some-content-nginx . $ docker run --name some-nginx -d some-content-nginx ``` From f8ca20d641edaad07c78ddd66881d4d0b37d92af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Nov 2024 11:09:18 -0800 Subject: [PATCH 1707/2686] Run update.sh --- bash/README.md | 2 +- haproxy/README.md | 12 ++++++++---- rabbitmq/README.md | 8 ++++---- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 11c6e2e574cc..a617e2f02178 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241115`, `devel`, `devel-20241115-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/52a6d56194abcb2664e2010688f88411f41803bd/devel/Dockerfile) +- [`devel-20241121`, `devel`, `devel-20241121-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/7025dbffb8c5052bb78ff42ba824fda1deb2b015/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 3a926c7867bf..dd5545894dcc 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,13 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.1-dev14`, `3.1-dev`, `3.1-dev14-bookworm`, `3.1-dev-bookworm`](https://github.com/docker-library/haproxy/blob/4fc823bc6faadaf9b2912b3323dac9d78367bb71/3.1/Dockerfile) +- [`3.2-dev0`, `3.2-dev`, `3.2-dev0-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/056667a3593e0e18d97518709e30b6bd8574f760/3.2/Dockerfile) -- [`3.1-dev14-alpine`, `3.1-dev-alpine`, `3.1-dev14-alpine3.20`, `3.1-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/4fc823bc6faadaf9b2912b3323dac9d78367bb71/3.1/alpine/Dockerfile) +- [`3.2-dev0-alpine`, `3.2-dev-alpine`, `3.2-dev0-alpine3.20`, `3.2-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/056667a3593e0e18d97518709e30b6bd8574f760/3.2/alpine/Dockerfile) -- [`3.0.6`, `3.0`, `lts`, `latest`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) +- [`3.1.0`, `3.1`, `latest`, `3.1.0-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/845b6f45ac1a8e0ee5706a23ef2fbf56516aebc6/3.1/Dockerfile) -- [`3.0.6-alpine`, `3.0-alpine`, `lts-alpine`, `alpine`, `3.0.6-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/alpine/Dockerfile) +- [`3.1.0-alpine`, `3.1-alpine`, `alpine`, `3.1.0-alpine3.20`, `3.1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/845b6f45ac1a8e0ee5706a23ef2fbf56516aebc6/3.1/alpine/Dockerfile) + +- [`3.0.6`, `3.0`, `lts`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) + +- [`3.0.6-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.6-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/alpine/Dockerfile) - [`2.9.12`, `2.9`, `2.9.12-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/4214bc32bf5038120b1cacbb0f5337169b817aa4/2.9/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f17928c45a33..b28510263b7a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/0d7a331c694a5f32ccf94837894d9e4eb529940f/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-beta.1-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-beta.2-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0d7a331c694a5f32ccf94837894d9e4eb529940f/4.1-rc/alpine/Dockerfile) -- [`4.1.0-beta.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-beta.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) - [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/46b1718733a32ae79186fe45720c0ce1e9e59194/4.0/ubuntu/Dockerfile) From 90025c997e1f483495d75533b8db6fbfcf746b38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Nov 2024 12:09:09 -0800 Subject: [PATCH 1708/2686] Run update.sh --- nginx/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 384941cd5ac4..522d4631e6df 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.2`, `mainline`, `1`, `1.27`, `latest`, `1.27.2-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian/Dockerfile) +- [`1.27.3`, `mainline`, `1`, `1.27`, `latest`, `1.27.3-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian/Dockerfile) -- [`1.27.2-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.2-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian-perl/Dockerfile) +- [`1.27.3-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.3-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian-perl/Dockerfile) -- [`1.27.2-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.2-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/debian-otel/Dockerfile) +- [`1.27.3-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.3-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian-otel/Dockerfile) -- [`1.27.2-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.2-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine/Dockerfile) +- [`1.27.3-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.3-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine/Dockerfile) -- [`1.27.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.2-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-perl/Dockerfile) +- [`1.27.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.3-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-perl/Dockerfile) -- [`1.27.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.2-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-slim/Dockerfile) +- [`1.27.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.3-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-slim/Dockerfile) -- [`1.27.2-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.2-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/6a4c0cb4ac7e53bbbe473df71b61a5bf9f95252f/mainline/alpine-otel/Dockerfile) +- [`1.27.3-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.3-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-otel/Dockerfile) - [`1.26.2`, `stable`, `1.26`, `1.26.2-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian/Dockerfile) From 388c9515404a569d8eea75ae9a3c2e6b3b7a3dee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Nov 2024 17:09:22 -0800 Subject: [PATCH 1709/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d4fea9ccc066..0184755d85a5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ed973527055cb65676f3b274410b9ed8b7dd5c15/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7-slim-fips/Dockerfile) # Quick reference (cont.) From 91a46b78977e38a426a6a21155c09b17b1572188 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Nov 2024 10:09:08 -0800 Subject: [PATCH 1710/2686] Run update.sh --- julia/README.md | 34 +++++++++++----------------------- orientdb/README.md | 4 ++-- 2 files changed, 13 insertions(+), 25 deletions(-) diff --git a/julia/README.md b/julia/README.md index 56c5cf4e1e27..73feb17ed8fa 100644 --- a/julia/README.md +++ b/julia/README.md @@ -36,17 +36,13 @@ WARNING: - [`1.11.1-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) -- [`1.10.6-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bookworm/Dockerfile) +- [`1.10.7-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) -- [`1.10.6-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bullseye/Dockerfile) +- [`1.10.7-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bullseye/Dockerfile) -- [`1.10.6-alpine3.20`, `1.10-alpine3.20`, `1.10.6-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/alpine3.20/Dockerfile) +- [`1.10.7-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.6-alpine3.19`, `1.10-alpine3.19`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/alpine3.19/Dockerfile) - -- [`1.10.6-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.10.6-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.7-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -61,16 +57,16 @@ WARNING: - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.10.6`, `1.10`: +- `1.10.7`, `1.10`: - - [`1.10.6-bookworm`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/bookworm/Dockerfile) - - [`1.10.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.7-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) + - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.6-windowsservercore`, `1.10-windowsservercore`: +- `1.10.7-windowsservercore`, `1.10-windowsservercore`: - - [`1.10.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.6-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0a822ab3dcdf067d4c5094f70a8074b58b2a6f91/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) @@ -140,14 +136,6 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/orientdb/README.md b/orientdb/README.md index b7a31c4eac6c..d24d245bd3ac 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.35`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/fddfbf21e31dd169b3cfbe8f682f844d656fd160/release/3.2.x/3.2.35/Dockerfile) +- [`3.2.36`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/e05191a51700a72dc31aca0881a0179b59eb48ce/release/3.2.x/3.2.36/Dockerfile) -- [`3.2.35-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/fddfbf21e31dd169b3cfbe8f682f844d656fd160/release/3.2.x/3.2.35-tp3/Dockerfile) +- [`3.2.36-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/e05191a51700a72dc31aca0881a0179b59eb48ce/release/3.2.x/3.2.36-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From f78ba8d3a318f4f6abdfd1da305d841d63c47783 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Nov 2024 16:09:09 -0800 Subject: [PATCH 1711/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0184755d85a5..300de5e15ecf 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/40f82ce130f453011ef250f56f625dd9e78b276f/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7-slim-fips/Dockerfile) # Quick reference (cont.) From 49412289d1b8857798327e88aed42247e5522430 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Dec 2024 12:09:28 -0800 Subject: [PATCH 1712/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- crate/README.md | 2 +- gazebo/README.md | 4 ++-- rust/README.md | 12 ++++++------ storm/README.md | 4 ++-- swipl/README.md | 4 ++-- xwiki/README.md | 6 +++--- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 5ba850b93f9f..149e9be59074 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.base) +- [`latest`, `base`, `base-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.base) -- [`base-devel`, `base-devel-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241124.0.282387`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/414cda585e2add3b240815c85173ae1bb42fffe1/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 88f2edc153c7..53e64e72de4d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/35901b761ba780aed3bf9a3396c414408715f75d/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/518c3b0f163eb92d2360c799c985db9b8884a00e/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index be6f1c054c95..c27d24ad2f54 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.3`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/2b0e73cac52897995f86703232475aaa2b216a01/Dockerfile) +- [`5.9.4`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/94290e564746e99ef336971276e3bd0a9c62b8c9/Dockerfile) - [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) diff --git a/gazebo/README.md b/gazebo/README.md index 7c6bb700652f..48f1fdd957c4 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) +- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/352585385ffc7d8b4df1fd9a7240313b132631e2/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) -- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/532c4f1af8c9dadb54b0c9769543c67c40c0c84f/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) +- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/352585385ffc7d8b4df1fd9a7240313b132631e2/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 5c90f15bb0e1..293e83a411fa 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.82-bullseye`, `1.82.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.83-bullseye`, `1.83.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.82-slim-bullseye`, `1.82.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.83-slim-bullseye`, `1.83.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.82-bookworm`, `1.82.0-bookworm`, `bookworm`, `1`, `1.82`, `1.82.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.83-bookworm`, `1.83.0-bookworm`, `bookworm`, `1`, `1.83`, `1.83.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.82-slim-bookworm`, `1.82.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.82-slim`, `1.82.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.83-slim-bookworm`, `1.83.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.83-slim`, `1.83.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.82-alpine3.19`, `1.82.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/alpine3.19/Dockerfile) +- [`1-alpine3.19`, `1.83-alpine3.19`, `1.83.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.19/Dockerfile) -- [`1-alpine3.20`, `1.82-alpine3.20`, `1.82.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.82-alpine`, `1.82.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/1700955b94ae8a589562d872da74353028fffcf3/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.83-alpine3.20`, `1.83.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.83-alpine`, `1.83.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index 9102d8aaa22e..a8d315b3c796 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.0`, `2.7`, `latest`](https://github.com/apache/storm-docker/blob/4980d0d2b0d40c525f88622adf1547a20054adb6/2.7.0/Dockerfile) +- [`2.7.1`, `2.7`, `latest`](https://github.com/apache/storm-docker/blob/59ee14a11bd6d890c8ff3ed7a327b8464ab79f3a/2.7.1/Dockerfile) -- [`2.7.0-jre17`, `2.7-jre17`](https://github.com/apache/storm-docker/blob/4980d0d2b0d40c525f88622adf1547a20054adb6/2.7.0-jre17/Dockerfile) +- [`2.7.1-jre17`, `2.7-jre17`](https://github.com/apache/storm-docker/blob/59ee14a11bd6d890c8ff3ed7a327b8464ab79f3a/2.7.1-jre17/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 48c022636fe2..f3f864d3067e 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.14`](https://github.com/SWI-Prolog/docker-swipl/blob/46c4d9b88ef1286c423af6b1fdc0ad00d00638bb/9.3.14/bookworm/Dockerfile) +- [`latest`, `9.3.16`](https://github.com/SWI-Prolog/docker-swipl/blob/3db90e2a6e96829fc6101af3f5f8c12728cf7357/9.3.16/bookworm/Dockerfile) -- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/46c4d9b88ef1286c423af6b1fdc0ad00d00638bb/9.2.8/bookworm/Dockerfile) +- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/3db90e2a6e96829fc6101af3f5f8c12728cf7357/9.2.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index dd4982b2c8fe..9a1ab893c18d 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.9`, `16.9.0`, `16-mysql-tomcat`, `16.9-mysql-tomcat`, `16.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.0`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.9-postgres-tomcat`, `16.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.9-mariadb-tomcat`, `16.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7cc89adf7110f44841de531508b2669a4d5568e5/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.14`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/mysql-tomcat/Dockerfile) From 72c4cf552f6a89914ed4f35adc5ebccd2eb9aabc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Dec 2024 14:09:18 -0800 Subject: [PATCH 1713/2686] Run update.sh --- amazonlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index bf04f481acb5..2153cc42e6eb 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20241111.0`](https://github.com/amazonlinux/container-images/blob/f6ec70327ec96260cd657fab433370245a8d0a4d/Dockerfile) +- [`2023`, `latest`, `2023.6.20241121.0`](https://github.com/amazonlinux/container-images/blob/167d1c4f918992a8fb72b6f20f95b55f974e638c/Dockerfile) - [`2`, `2.0.20241113.1`](https://github.com/amazonlinux/container-images/blob/9345a9ec09cd77260d6000edcaa954d8cc0cd983/Dockerfile) From 2e66bcb7af34d533060f8917e611c8d96b4434d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Dec 2024 15:09:25 -0800 Subject: [PATCH 1714/2686] Run update.sh --- photon/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photon/README.md b/photon/README.md index d5d1cb1c01ac..414cfdcf6e91 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241117`, `latest`](https://github.com/vmware/photon-docker-image/blob/31f5851cdb2d437d0f0943c4572de0b2fe34de6d/docker/Dockerfile) +- [`5.0`, `5.0-20241201`, `latest`](https://github.com/vmware/photon-docker-image/blob/0c7412e45f338f119f6593da2d56fd854b9474f2/docker/Dockerfile) -- [`4.0`, `4.0-20241110`](https://github.com/vmware/photon-docker-image/blob/a6f3943e0225a004b11ad2d1bdb9061bacfaa390/docker/Dockerfile) +- [`4.0`, `4.0-20241201`](https://github.com/vmware/photon-docker-image/blob/ba586ebf86a3f7acbe388d6c5bc2a5b9f972cbb8/docker/Dockerfile) - [`3.0`, `3.0-20241023`](https://github.com/vmware/photon-docker-image/blob/03c99783ea1c9e664fc53fb18e970629a5e9495f/docker/Dockerfile) From 3e7bc1e4f43b6f2bdb0193ddc2c2139195b8edf4 Mon Sep 17 00:00:00 2001 From: Lococo Date: Mon, 2 Dec 2024 18:31:37 -0500 Subject: [PATCH 1715/2686] Improve PGDATA warning about anonymous volumes (#2505) * Improve PGDATA warning about anonymous volumes The people who most need to see this warning will struggle to understand the meaning of the pre-existing language. This updated warning: - Refers to anonymous volumes by their correct name. - Describes where the mystery mount is coming from. - States the required behavior quite plainly, you must mount at the correct location. For additional context see: https://stackoverflow.com/a/76217607 * Frontload persistence warning --- postgres/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/content.md b/postgres/content.md index ee35db720709..a6bf4347489f 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -96,7 +96,7 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** when mounting a volume to `/var/lib/postgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. +> **Important Note:** Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. From 9b44c1c2804eb5d741095a2a1c127562a1c4ba5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Dec 2024 16:09:14 -0800 Subject: [PATCH 1716/2686] Run update.sh --- ghost/README.md | 4 ++-- influxdb/README.md | 24 ++++++++++++------------ postgres/README.md | 2 +- sonarqube/README.md | 20 ++++++++++---------- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 047a4224c0bf..4410f5bd4444 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.101.4`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/49a4e9114a9c0afd8246ce1764729ea0586f4eeb/5/debian/Dockerfile) +- [`5.101.6`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/95aa88b8b1c32dc2d28c4b55b1e54f3391a57d4d/5/debian/Dockerfile) -- [`5.101.4-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/49a4e9114a9c0afd8246ce1764729ea0586f4eeb/5/alpine/Dockerfile) +- [`5.101.6-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/95aa88b8b1c32dc2d28c4b55b1e54f3391a57d4d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 2cb5e60d485c..360964804e54 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.10`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.10-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7228bb390edf58e05357642839b33be637fcaa7b/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index be5f3acf50a1..3b0ed0f09535 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -220,7 +220,7 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** when mounting a volume to `/var/lib/postgresql`, the `/var/lib/postgresql/data` path is a local volume from the container runtime, thus data is not persisted on the mounted volume. +> **Important Note:** Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. diff --git a/sonarqube/README.md b/sonarqube/README.md index 1dbb19253e34..a037c1b603c0 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.7-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/community/Dockerfile) -- [`9.9.7-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/developer/Dockerfile) -- [`9.9.7-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/enterprise/Dockerfile) +- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/enterprise/Dockerfile) -- [`9.9.7-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/datacenter/app/Dockerfile) +- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/datacenter/app/Dockerfile) -- [`9.9.7-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/9/datacenter/search/Dockerfile) +- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/datacenter/search/Dockerfile) -- [`10.7.0-community`, `10.7-community`, `10-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/community/Dockerfile) +- [`10.8.0-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/developer/Dockerfile) -- [`10.7.0-developer`, `10.7-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/developer/Dockerfile) +- [`10.8.0-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/enterprise/Dockerfile) -- [`10.7.0-enterprise`, `10.7-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/enterprise/Dockerfile) +- [`10.8.0-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/datacenter/app/Dockerfile) -- [`10.7.0-datacenter-app`, `10.7-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/datacenter/app/Dockerfile) +- [`10.8.0-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/datacenter/search/Dockerfile) -- [`10.7.0-datacenter-search`, `10.7-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/50701464f6c6e1ec93b0692fc9525f970a2b5d93/10/datacenter/search/Dockerfile) +- [`24.12.0.100206-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/community-build/Dockerfile) # Quick reference (cont.) From 51444dca6503ea5ef69c141d7fc9e6bc459a3a2a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Dec 2024 17:09:06 -0800 Subject: [PATCH 1717/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ nginx/README.md | 2 +- ubuntu/README.md | 6 +++--- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/debian/README.md b/debian/README.md index a9748fcc9a32..358747ab319e 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20241111`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/Dockerfile) +- [`bookworm`, `bookworm-20241202`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20241111-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bookworm/slim/Dockerfile) +- [`bookworm-slim`, `bookworm-20241202-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20241111`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/Dockerfile) +- [`bullseye`, `bullseye-20241202`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20241111-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/bullseye/slim/Dockerfile) +- [`bullseye-slim`, `bullseye-20241202-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/experimental/Dockerfile) +- [`experimental`, `experimental-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/experimental/Dockerfile) -- [`oldstable`, `oldstable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/Dockerfile) +- [`oldstable`, `oldstable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/oldstable/slim/Dockerfile) +- [`oldstable-slim`, `oldstable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/rc-buggy/Dockerfile) -- [`sid`, `sid-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/sid/Dockerfile) +- [`sid`, `sid-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/sid/oci/index.json) -- [`sid-slim`, `sid-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/sid/slim/Dockerfile) +- [`sid-slim`, `sid-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/sid/slim/oci/index.json) -- [`stable`, `stable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/Dockerfile) +- [`stable`, `stable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/stable/slim/Dockerfile) +- [`stable-slim`, `stable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/slim/oci/index.json) -- [`testing`, `testing-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/Dockerfile) +- [`testing`, `testing-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/testing/slim/Dockerfile) +- [`testing-slim`, `testing-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/slim/oci/index.json) -- [`trixie`, `trixie-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/Dockerfile) +- [`trixie`, `trixie-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/trixie/slim/Dockerfile) +- [`trixie-slim`, `trixie-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20241111`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/unstable/Dockerfile) +- [`unstable`, `unstable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20241111-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/aa3cbd18893993192c9d6b1e02150fe4e476412d/unstable/slim/Dockerfile) +- [`unstable-slim`, `unstable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index 522d4631e6df..4102842efde4 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -58,7 +58,7 @@ WARNING: [https://github.com/nginxinc/docker-nginx/issues](https://github.com/nginxinc/docker-nginx/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nginx/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nginx/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nginx/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nginx/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nginx/), [`i386`](https://hub.docker.com/r/i386/nginx/), [`mips64le`](https://hub.docker.com/r/mips64le/nginx/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nginx/), [`s390x`](https://hub.docker.com/r/s390x/nginx/) + [`amd64`](https://hub.docker.com/r/amd64/nginx/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nginx/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nginx/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nginx/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nginx/), [`i386`](https://hub.docker.com/r/i386/nginx/), [`mips64le`](https://hub.docker.com/r/mips64le/nginx/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nginx/), [`riscv64`](https://hub.docker.com/r/riscv64/nginx/), [`s390x`](https://hub.docker.com/r/s390x/nginx/) - **Published image artifact details**: [repo-info repo's `repos/nginx/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nginx) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nginx)) diff --git a/ubuntu/README.md b/ubuntu/README.md index a294b67dcac3..088fb51d156f 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,11 +28,11 @@ WARNING: - [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) -- [`24.04`, `noble-20241015`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241015-04757657&id=047576572add2bd107e7dd3475c25033a446afe8) +- [`24.04`, `noble-20241118.1`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241118.1-4880b758&id=4880b758e58499d09361550207697892199e1097) -- [`24.10`, `oracular-20241009`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241009-71a6e10d&id=71a6e10d9d17f0baa437a234367e8e16406bd3c2) +- [`24.10`, `oracular-20241120`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241120-aea1b7d3&id=aea1b7d330330843a7f7783a788965bc4e89cf6a) -- [`25.04`, `plucky-20241111`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241111-7922e966&id=7922e9661bac5c40866fcee4838b8b3a87c71222) +- [`25.04`, `plucky-20241124`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241124-0033f337&id=0033f337718a9b5769da6cee57bf982cba9764b9) # Quick reference (cont.) From 64419f424174e3343cff707d821de296d8067e3b Mon Sep 17 00:00:00 2001 From: Jayashree Gopi Date: Tue, 3 Dec 2024 12:54:23 +0530 Subject: [PATCH 1718/2686] Update IBM Semeru Tag info in Content page example Signed-off-by: Jayashree Gopi --- ibm-semeru-runtimes/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ibm-semeru-runtimes/content.md b/ibm-semeru-runtimes/content.md index 20cce094a9a3..eca238315cef 100644 --- a/ibm-semeru-runtimes/content.md +++ b/ibm-semeru-runtimes/content.md @@ -11,7 +11,7 @@ The IBM Semeru Runtimes are free production-ready open source binaries built wit To run a pre-built japp.jar file with the latest OpenJDK 11, use the following Dockerfile: ```dockerfile -FROM %%IMAGE%%:11 +FROM %%IMAGE%%:open-11-jdk RUN mkdir /opt/app COPY japp.jar /opt/app CMD ["java", "-jar", "/opt/app/japp.jar"] @@ -32,6 +32,6 @@ If you are using a distribution that we don't provide an image for you can copy # Example FROM ENV JAVA_HOME=/opt/java/openjdk -COPY --from=%%IMAGE%%:11 $JAVA_HOME $JAVA_HOME +COPY --from=%%IMAGE%%:open-11-jdk $JAVA_HOME $JAVA_HOME ENV PATH="${JAVA_HOME}/bin:${PATH}" ``` From 6f2011283c31b4125542115a5f17a8e25830ba8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 07:09:11 -0800 Subject: [PATCH 1719/2686] Run update.sh --- julia/README.md | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/julia/README.md b/julia/README.md index 73feb17ed8fa..7e0fb6080132 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,13 +28,17 @@ WARNING: ## Simple Tags -- [`1.11.1-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bookworm/Dockerfile) +- [`1.11.2-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bookworm/Dockerfile) -- [`1.11.1-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bullseye/Dockerfile) +- [`1.11.2-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bullseye/Dockerfile) -- [`1.11.1-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.2-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.11.2-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.20/Dockerfile) -- [`1.11.1-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) +- [`1.11.2-alpine3.19`, `1.11-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.19/Dockerfile) + +- [`1.11.2-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.11.2-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) - [`1.10.7-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) @@ -46,16 +50,16 @@ WARNING: ## Shared Tags -- `1.11.1`, `1.11`, `1`, `latest`: +- `1.11.2`, `1.11`, `1`, `latest`: - - [`1.11.1-bookworm`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/bookworm/Dockerfile) - - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.2-bookworm`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bookworm/Dockerfile) + - [`1.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.1-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.2-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/420774c810e9455dfc649639f55738c44add32f2/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) - `1.10.7`, `1.10`: @@ -127,6 +131,14 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. From e79257e98cc4deb530a182bf61620a3f3d47a5a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 08:09:17 -0800 Subject: [PATCH 1720/2686] Run update.sh --- openjdk/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index a7fadc156c93..f9ceeba637fa 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,40 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-25-jdk-oraclelinux9`, `24-ea-25-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-25-jdk-oracle`, `24-ea-25-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-26-jdk-oraclelinux9`, `24-ea-26-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-26-jdk-oracle`, `24-ea-26-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-25-jdk-oraclelinux8`, `24-ea-25-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-26-jdk-oraclelinux8`, `24-ea-26-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-25-jdk-bookworm`, `24-ea-25-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/bookworm/Dockerfile) +- [`24-ea-26-jdk-bookworm`, `24-ea-26-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/bookworm/Dockerfile) -- [`24-ea-25-jdk-slim-bookworm`, `24-ea-25-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-25-jdk-slim`, `24-ea-25-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-26-jdk-slim-bookworm`, `24-ea-26-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-26-jdk-slim`, `24-ea-26-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-25-jdk-bullseye`, `24-ea-25-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/bullseye/Dockerfile) +- [`24-ea-26-jdk-bullseye`, `24-ea-26-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/bullseye/Dockerfile) -- [`24-ea-25-jdk-slim-bullseye`, `24-ea-25-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-26-jdk-slim-bullseye`, `24-ea-26-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-25-jdk-windowsservercore-ltsc2022`, `24-ea-25-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-26-jdk-windowsservercore-ltsc2022`, `24-ea-26-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-25-jdk-windowsservercore-1809`, `24-ea-25-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-26-jdk-windowsservercore-1809`, `24-ea-26-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-25-jdk-nanoserver-1809`, `24-ea-25-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-26-jdk-nanoserver-1809`, `24-ea-26-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-25-jdk`, `24-ea-25`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-26-jdk`, `24-ea-26`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-25-jdk-windowsservercore`, `24-ea-25-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-26-jdk-windowsservercore`, `24-ea-26-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-25-jdk-nanoserver`, `24-ea-25-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-26-jdk-nanoserver`, `24-ea-26-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/057fe79f66f8a1785434a481f72b5be65448af9a/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 52055cb4a4c55a9a33e10322e2a9fac873a0a97e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 09:09:28 -0800 Subject: [PATCH 1721/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 5ffcd90bd3f5..ae24daaf0389 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -142,7 +142,7 @@ The IBM Semeru Runtimes are free production-ready open source binaries built wit To run a pre-built japp.jar file with the latest OpenJDK 11, use the following Dockerfile: ```dockerfile -FROM ibm-semeru-runtimes:11 +FROM ibm-semeru-runtimes:open-11-jdk RUN mkdir /opt/app COPY japp.jar /opt/app CMD ["java", "-jar", "/opt/app/japp.jar"] @@ -163,7 +163,7 @@ If you are using a distribution that we don't provide an image for you can copy # Example FROM ENV JAVA_HOME=/opt/java/openjdk -COPY --from=ibm-semeru-runtimes:11 $JAVA_HOME $JAVA_HOME +COPY --from=ibm-semeru-runtimes:open-11-jdk $JAVA_HOME $JAVA_HOME ENV PATH="${JAVA_HOME}/bin:${PATH}" ``` From f0978ba22f0d22d5613befbb64efffa98ca24b45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 11:09:18 -0800 Subject: [PATCH 1722/2686] Run update.sh --- elasticsearch/README.md | 2 +- fluentd/README.md | 4 ++-- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 263a8a274770..51cf3624630f 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/elasticsearch/Dockerfile) -- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/elasticsearch/Dockerfile) +- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/fluentd/README.md b/fluentd/README.md index d39d7a3320b0..6ec71272cfea 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -28,9 +28,9 @@ WARNING: - [`v1.16.6-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/ddb5019b433339f9eef991ca373445deb6e4d2b1/v1.16/debian/Dockerfile) -- [`v1.17.1-1.0`, `v1.17-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/1055e528ef1acbb073028e0281b60bdaf9a23595/v1.17/alpine/Dockerfile) +- [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) -- [`v1.17.1-debian-1.0`, `v1.17-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/1055e528ef1acbb073028e0281b60bdaf9a23595/v1.17/debian/Dockerfile) +- [`v1.18.0-debian-1.0`, `v1.18-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/debian/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 5f6f3e6d7d22..6bf751666180 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/kibana/Dockerfile) -- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/kibana/Dockerfile) +- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 12fc98efd9ff..00a80ab67f7a 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/logstash/Dockerfile) -- [`7.17.25`](https://github.com/elastic/dockerfiles/blob/9a2cb64607abe3574f8f1d0fa8b9680798f0e6d9/logstash/Dockerfile) +- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/logstash/Dockerfile) # Quick reference (cont.) From 4121eea89dfa43c400a6f78a99e84a17c7193f74 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 12:09:16 -0800 Subject: [PATCH 1723/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index a617e2f02178..c2151a5fb7fb 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241121`, `devel`, `devel-20241121-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/7025dbffb8c5052bb78ff42ba824fda1deb2b015/devel/Dockerfile) +- [`devel-20241126`, `devel`, `devel-20241126-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/81712e450fb2dc6ef3683919519b6078492ab653/devel/Dockerfile) - [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) From db8b475bf71afecf3b007b0a1398840458418722 Mon Sep 17 00:00:00 2001 From: Davi Koscianski Vidal Date: Tue, 5 Nov 2024 17:01:29 +0100 Subject: [PATCH 1724/2686] Updates SonarQube Community Build references --- sonarqube/README-short.txt | 2 +- sonarqube/content.md | 30 ++++++++++++++++-------------- sonarqube/license.md | 2 +- sonarqube/logo.png | Bin 5988 -> 9180 bytes 4 files changed, 18 insertions(+), 16 deletions(-) diff --git a/sonarqube/README-short.txt b/sonarqube/README-short.txt index d1147e9c9c88..bf41551a0a53 100644 --- a/sonarqube/README-short.txt +++ b/sonarqube/README-short.txt @@ -1 +1 @@ -SonarQube is an open source platform for continuous inspection of code quality. \ No newline at end of file +Official images for SonarQube, code analysis tool for code quality and security diff --git a/sonarqube/content.md b/sonarqube/content.md index 1961b53c4db0..c5b56e7a946e 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -1,12 +1,14 @@ -# What is SonarQube? +# What is `sonarqube`? -[SonarQube](https://www.sonarqube.org/) is the leading tool for continuously inspecting the Code Quality and Security of your codebases, and guiding development teams during Code Reviews. Covering 27 programming languages, while pairing-up with your existing software pipeline, SonarQube provides clear remediation guidance for developers to understand and fix issues, and for teams overall to deliver better and safer software. With over 225,000 deployments helping small development teams as well as global organizations, SonarQube provides the means for all teams and companies around the world to own and impact their Code Quality and Security. +`sonarqube` Docker repository stores the official Sonar images for SonarQube Server and SonarQube Community Build. -%%LOGO%% +[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -# How to use this image +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is free and open source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. -Here you'll find the Docker images for the Community Edition, Developer Edition, Enterprise Edition, and Data Center Edition of SonarQube. +## How to use this image + +Here you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. ## Docker Host Requirements @@ -21,7 +23,7 @@ ulimit -n 131072 ulimit -u 8192 ``` -## Try Out SonarQube +## Demo To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarqube.org/latest/setup/get-started-2-minutes/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. @@ -31,7 +33,7 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. -To run a cluster with the Data Center Edition, please refer to Installing SonarQube from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. > The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. @@ -42,18 +44,18 @@ To run a cluster with the Data Center Edition, please refer to Installing SonarQ By default, the server running within the container will listen on port 9000. You can expose the container port 9000 to the host port 9000 with the `-p 9000:9000` argument to `docker run`, like the command below: ```console -docker run --name sonarqube-custom -p 9000:9000 %%IMAGE%%:10.6-community +docker run --name sonarqube-custom -p 9000:9000 %%IMAGE%%:community ``` -You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the SonarQube web interface. +You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the web interface. ### Database By default, the image will use an embedded H2 database that is not suited for production. -> **Warning:** Only a single instance of SonarQube can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple SonarQube instances are never running on the same database schema simultaneously. This will cause SonarQube to behave unpredictably and data will be corrupted. There is no safeguard until [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. +> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. -Set up a database by following the "Installing the Database" section of https://docs.sonarqube.org/latest/setup/install-server/. +Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. ### Use volumes @@ -76,7 +78,7 @@ For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade th In some environments, it may make more sense to prepare a custom image containing your configuration. A `Dockerfile` to achieve this may be as simple as: ```dockerfile -FROM %%IMAGE%%:10.6-community +FROM %%IMAGE%%:community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/ ``` @@ -87,9 +89,9 @@ $ docker build --tag=sonarqube-custom . $ docker run -ti sonarqube-custom ``` -### Avoid hard termination of SonarQube +### Avoid hard termination -A SonarQube instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the SonarQube instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: +The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: ```console docker run --stop-timeout 3600 %%IMAGE%% diff --git a/sonarqube/license.md b/sonarqube/license.md index bc16166651ad..542e24334751 100644 --- a/sonarqube/license.md +++ b/sonarqube/license.md @@ -1 +1 @@ -SonarQube Community Edition is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Conditions](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). +SonarQube Community Build is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Server Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Condition](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). diff --git a/sonarqube/logo.png b/sonarqube/logo.png index c17679b539e35eec213d4d79ab92df66e838e115..ef9dd66d53c9e6e0cc5661b6126bb9009c3cfc6e 100644 GIT binary patch literal 9180 zcmeHN^;gtU(e;*JHu>P14LFHn?` ze&>aJn62uuAP4KOz)ViO_{*I-p*gg1*;eduw%`6WMp2pp7vIux?*lugMODq?rw(=Xk zy%K#DO(VKAZIE_&f*hm|ptWoOuC=~ICalX~Vs$9!<*1G=o#z zyBSjGpW!7(Pe#fzuLXaV!?kcSE4P~bmo2oC0Vi9I-^sos&oS3Xk-kO|sxY|Wus$&J z3jJi7QImBU3e-QH=W8Henib(rw~}DAAmO(d!aDSkbPITZ?~)Q_u>ui{q{(^krUo(- zaCp~_O2)V5=8}BSd$wJSuu<^q%^NK^?Y=}*Z?fa38LOKf{!q@8{pep^am&K0l;Me@ z#4a}KLsnLy&-+tMBWFc_-rGmx@o9V3j1F4kO7+LLqMQ zZ9jLG&Y9S%dIwR}ZcIsX;(}|9OUp^_~%ooWzjuiC~+g*VxUqkayNU+kRSbJuSNta*cF zqcBcp(@8q4jR5!!-vK2nc%aM?bUkS)-?NeR8gDFa0^*GQPH_s4o|EX$Ve6l_dvaFbL(VdUH8fX z6H~hLn|>thgO*?0QfwWHhO#?xXa%16HeBw*QeUZ7d}U|xx-N?2TW^}~@W^>_WWC|= z_T%~6tm1W{2E2Pu!S%u*A4#IX1V8H_dUU{(LdZtrh~I>?7C7O%BE9MT-FiZ3RW=h| zxY&r!=sOdGs7oO6-Kp7T3<0BN7kD5)vBz%)`0iPW4W`RlQ*G?*7To+%dtU6^ebb6M zSS7n1@aB$NH!JozP-ns+GZTNE%rY&Y3e_C_7%2Mgq^` ztVrJJ-GPMuk=tLXp%X^lzJd^;deRf;eH|1nEg{)(nhdoIDX6~b)LR8oM)x5$KE!W-l?0;)2Ksr~yEIfbDlH zF=W%hkW;;SVR&%gmkZ_iW&2_s6v74z)6d8GTP1FrkojfH$@;Bb37~$CfyD@X+<~Jx zrIhdd9Zn93Wub3t(2vRT&%kYpYUij@hvXz$-wOvxgn+VD!{+eL{M3PC+CSW5k2dhFfyE0lU z|Gd>JGL9)HZs|(&_>Ptq)|aofz~T$pFI2s)GPT0rqX6@O&F(A#poYK~+SdSE=S&&Z zNwHJe;hEy<(CUfnm)F9^s@(6jMDSDg<(=rE)Voy`ufIOV9tq#ob{XY5U|<2s za)K5Kfc_8b(XD^H-(qUV)1jELrS!$gzsnss=V94<7A0Khsl8;WpbD+53WeV?I8Wcf*T`@}MR70RD}G|JJG&AAmouMQ5gQg?pUn~8GQSk7_iaQ~B1j5^ zbK1P&oYKB5)Gdgd@BQ^jGKq%J%Q9(h^*1Gf(8nd=RUELb{+x|V^b%fL`Mlt`9 zKPywm_uAYKT-;^8lq0K@q4sp-MqdR{7TrZxy4rS2+giXszbMS2rfFv=!Be^1bEg%J z_F>m4-PB;+a9vJ)D)eQt$CLQ=ciCYftwGblM2w>!SoK07Mkl}fCc^#`0j_F+9n}70 z`0kw>-|jAS-9*cv@tuU3A-+GK!t?}ki2wf?10rAfzPm_ame5Sti(qJVYgdvZt|2g) zyNn2ut}Qhob5Ey;3e1?00a?1vJ2S(?k*NhY@MBBO`*Ji0 zH>@<ef;&X;6XbkH^TKL)<~i+|l^`FW(uKQ_UC;MVjdA+}gRuW&VWx0a>cK z(A7a{@gvg@{3u+8*uQXE6W0tWG;!m#PcYL%;WvR&p8)00=j8$l9rvCYAHNoi3dVY7 zc229)zZ~4@-&WT(_;Qr(tesq@+&W{p|J3Lq1{xgC3QtHWE}N)eRzJ*Z_Qg5#g30T7 zf8bKU>XvM;o;*{?jNUj}nV#QGIkHm|Z1$h~lRwk$Eil>4*@4lax@;_%><%oTFzj-~ zaxr6yd%w;^iv_|u4eVwRLnh=lfVGYbh&+ss__=&!b1=ygZ}G&J5EM++6a$T<`-`c) zviuu>WSgG5BG(%r$I-TZ4>ujHWqGgy>aS%AbzsU7)cqNMv7sy1dE(cUG`UAq07cu3 zgQ<~nL~TtOr6!fgoZ1Kf;ZeJf)8P*N@!`3V2{2O$WZ&bWne{T?AhdB}IL!VjiSs1C z@NVXkI+<@LKqwC0=&Ho-sM2N<{t>^Pr}2}L`$1Inv61zq{+OD<;^C+CD_etHFm3YX zde~%Ny*bvRRNl zbAYcXjlE;UFWZ`Ic6{1PEuoV5^=Gh-^Nb|H36Go|g>8R5=#iFCc*82j)}*l* zxx}lj+0Dg%DGd&|#?|V3p#IkqVu3v14I>n^5u7m7D9u*c`EYjs-1f5kL#mu+{(;hDyb4?p>fM=w+bIDO+s5VP* z$Nf>N1tepq?uv!vW@Z?EeSYKLteK65Z*xw4F8c1|53daPIlDxKB6+U=Y%VB!=ebyF z<7_}H5DKUZOL$rI8cPcgcWvyay@q?MW_e-gybD<(!RBF}GB>yRX%P;3hNpf*9oJ`s zOEGikfAe;`KJHjOT*&v}@6t+1)uv2cQcg?yUNl{j>dvwmC>c6*#u5Y-0SLwP0HL{` z8m@+JIEs~PRBUS;v_IzjI<%`CsTtU)JcA7iel!H?Pjdu5FcI!ZwA^R3re_l26dT=) zpHr*1*t-wbJd`-NqmucE3x*tNqCLEl;GDLHiymL$*F&AUgVQ8;tjR5wbdtfshF|Es zd{~A)QcTLVQdHzi%>>N-tx7RP2pxGi12Y6*GBPik6!XBI2z%U)~a9|yGj_Awa` zN*GpF&dd5KcsGWI>d93Rzg)Sn$UApsVRP10r&r#SNfh4%geLa2SN09q@-NlAWi%$` z1?rn+)B|2>-jPk!f7I4~z2s%}xT{nm0Ocx`6*SRT_q0EA=XRQ6>=K(z^|-`}J6~I> zg``d0|NUHp77OaFo3!TIRW)~dI#yirGLJYj+B_T$zI9_c*t}^O;aj$}jNMnM(4eF! zFnpY1y?N&-$?yX2V+Ppn0IQ`{fT_hG)+fy8X7+ukW&oV=>9d{EZ zwQE*^M=kUO51IRYE~@BI?b0+-FTl)Ovn@N}jq9k9osISdm&f@bO{Uo)iQ&am_57@Q zLs4~kHnXB$Fc=&@`VOUtn1`@Vpm$4!n02|XzhXzg=Z*HRzR832{>)*{4u8o~U*^X} zuZvdh;l3*a(_h8Yw-a_1DX0sL+Rb`*1FY)wcDh%%vAZ-(C8O%I`KLp{wJ_N_w(JBB zM1L!+`U?$*!d{ZGbboiJC%<&6cSB=Pv1vm~M*NV!XHuVBfBUivuJt>QLw^0wDF|NS{h(sa?% zxa5`9;0hIf{XkWgpDNV!_n|GPJ|r0a52)wAL5Sr$4!V*gxZ%xwQ{yVNCH>*u{;XIX$gbcYo@S z4-j!r-)=9IJ%C@f)Ln*C-<^O+FMjwd<7tR;7TIl39oANvhN(t`a7iAlbWlzEXDs1l zXiAA%Hy6)goAUB;FO1=(bOf%Q3!w$I6EbJZ%l%%egJ91W)LL6e&P_XZX2EgTD_3Be zd}6AlqduX}mXqJLME?1iof#Wf&y;TqyWp3|M!^E?t5o(SJd~F?>Ikpmf!DD{z|pir zAG_?Si4Nz6(Y|KDT6l_irjohP&N;I=l!SOiNdu+W|6R0T6=Hm}s1lUrkU9OS#e%;| zIN(E)-~wwa(=oRd%stqT8zWh5pnkDsF0ywlgr>eNk%MbiL1|sdj0}XeHl}dQG@%ZBQ(i0V6SKG{tGO?nNR>T)e9UOQ=@ z?j?;kh^yavDkPiCF3W@1bTBW(vLcFV9rn@g&GDJD6I>dsT3mT!wW$omMGQn^x6h_z zdsv@?xMS1&HaRE@GKGBBqBfYyt^8M6{WmitnIML@S9B`W-O9!<2*d6R(7rJ zd@f{N_3Z{GYYi}i%N^$8Mm%D-TzJmx<0{Wej*2Rp)3UhIy7kN_%CQUjCZ{Ov>CvSr z!a|NAM9f7Avgw?EIlk|kXlWd|!o#b_$)7S)uT}WBAnXSwBiDgpcBqK)qT619l>dP8lS~z6;P`f{oDJ(ETF~F zRh`suzU97UYGlcbkP5cTrL4MnJa#69eqLK}>wM}WMgu@(0hb8{O(2Ps!!o*zUuE|l|P~kZ1+HBlA=XJoFc0VruL?f zLN+DWF2{@8cy7wQ|C+2PXFkns62G6CWg`HH>BR<7zLjz&&6I+K#fTHk$9Q=d zWO;NRC(HuAJ5LPf90d?qCG#$aZGD%f6wh2DPSER!G>FCL2+@h z$(0O^pt8h?Vpn}r0BqmJ-v2!!QoQenXaQBqz*|vL8=}js)22&SO3m}1e!WZ@-k^dq zkqFrEf%g%86%h<#hz2Y9HorY}9MJi4(8ia(pQ1 z*>=W8aRDZT1mUUIFv^NPT9d5hFoyb$ z>G};{TcHP1u8xTjmq5_CkL6Z9R4#iac&TM;GXrxYXS z9h)`6_917E&O2yRd8%Q1CTv)_%3kOvAEE0q5a18`f@0Xxi>%x@2C=-%*k+unVLZ(o ziL#-dhUtzF=4(cGyx6rVG>Gf9n{!MT?P>-B>{g%jCKO)k&jCJ4EpSr2RuaCu^%O7a zd}Qj1>O}`A$srlT{X-Ve`p+B`W#-O*1SE4ZzAV}M_{bC6{Vc)rfE=`lADD2N39bl` zYQB z2O^qx3#-N6i=rFHQZHD9nDrHF8O9bYEJz&4pojz(0H@JCX402f`>UE)#_-}yPwAbV z4xy;u2$)_Ij^m4E=8G0%~!qh)GUc<*(o=5r6!busg_1AU3+ z`ICq*bw8~J0Oe$$uhE>iCZ@m0k%8DO02WXp{k%>Y%VM{q?e;9v1$gg$VawbvW1 zM`){5Mh`~0wv=W<6(Z`|(zB=oY&So{PJMiqx~g1SZvuZ95lGE^QgU@+*GskyP~xfM zWPFtdmt7hXd1Q0rE4tB5vyFzeYNc!|FE|DCU?H=)y%|A9_Oj$94?>?SWAmgeW3#!~ z_=mfb>HlgypyRVJLJo$OATWf>USufb&_zH99R&(P0%83jRF2IRjJe8I&94Sz(7RyLcpD!}i zZHynk#kBr3he=f9D&}ldGdoauszBXX)M7nc1WS5u>vr;@MN|O&oETCA?6!USpAA^* z{z3DN1Dy4capU3A7jH}D-+lV-M1pWzb};=+fd_Ypr55P}4RP~vc9Zt59WD>ft)QwV zo<76ZVPRxox)o~QuK6cj#maNZDokYrE<}7XKa}~cXxNOL-Y7EwC6d0u{%zbE;kb`2 zbfHMtsXTKlIKrk%6unWwBHM%1%R@hsl9IXMh8De7iU1RgM6LfTJcg+2W&7YknfH7W zY%cTNf5r?@{4YnhPiHd(ryBzJ-w||kFDci$PQqI)A4MLhayc3d^m01}&mY?|C#%}B zQSqwo(t&YOwA2U_a^Lh)alwD{QoMt%<|&%(k;UY7(^K#Pp86P(K+#bNsG2DxTm_6t zOG{dOASPO}ABuk0@-3uHL=YR`9(JgdHAmy?ag&|wP;;;~AiYGN@ z^R%CQSK|im9$+#=0rg25A=4+`??B&S!hx*NCPFzYBg6^T!TAow2geOJa}E zMn@!qTG&2fyE9hB{G;HNqRSFjB;eCo-Ttf4jY%~^h6mw1@bAcdR-|s3qaL#%1MNb zs_pI2xfMl@!OzMszUBz7QF*axCna-8SgM$nUie%^C!Tn%xj%PcXB`$mLobioAw(8o zH+u6_zPK4skZ6&@VjM{;Tg(au&q36x)Aey9{XbBO5HW34`etmIBC#9WuPuS)co-LQ;}K}53S6#lp@Y~Q7YwEjlA0O4wAVxq#hVlVhPvZ+ z2`#kwER+YnK|>T|w3gbd$+v_)_Bl8CTOYMcPMdV}*8AvSv-fWwX(XR^8;5)~J)03^ zj!+U2enLSL-O@f38((9h@i9;R0`6vVy{y*KZc~x=-W7QXb|ZA+^Jy^c0g%l11u{O; j|JHwn27>SbPc+j@zh4f1@aIMRwS%N6t0q$o{t*0saZyoN literal 5988 zcmV-q7n|sbP)-!ef-QBZMKC7! z-UJ9p;b~QH#41{zD1u4uy$Lf8OeK^dLI@xsx8E1Ov)*2ZeRFSYSPbv{YyIoooU`{n zd-(tTkNd>ufd?LV;K9)fiA0NUQmy~w%5Mk5rCkO+y|9(f0}qa6$O*;27YxUK;*Uhn z85mjqopkE3tUnYR6$r&g2O{MIt}Iw`iq8WNjx`XmKkARfKMaIo6N8cH_1WQ1yHi30 zCa(HcvO3w}@_vCxd@kzL`oq!p{Nakh1D=SUG-&qhmOc+WIF=w7iTyqhj_n8*RVHxV z16)dG2^7XIPgZBlm_$Y(6zv4&_(dQbtq4S7RjBvuz)<`Qp9dZsNib+k2^=lToFv;76-mj#MSzdvAFv|UOSD;zzS5&#n6VG#Mtz;(cCU=$26jnA%~y6kjY z-9XW*wvay8f=Ong{Fi}n{Kf20^v6CAJUC()WHt@vin~Feao7@n$MtXiaO@RaBY|-F z1W1U7u*2UJ48^bV7gk(2AQU|-uVBfEHb#R~_z@UwI3&nlQGXS1FYbMc`eSLQ>i?`{8*p%Krn`+1cT!zi+{k<9r@?aJYenH3)MgFabiY#dSA!{;zSZ4;ED}nFX+r}6)dtECs5TC6+rQQ}YT|w4tG#H?1;@?%SMDtgk;*)*sAs9SHV5 z?(iV?cc4OT%X{JT2BRE*F9YGv42I(m1`Esjut~Qx@fTNIh_WMsD2wY?V1fl`YX}+Q zpz`_AcK%TLD3n_RN%d|{q~fPO4?H*;fSxDXB2>v_SbqfEl`~~InPn4*z63VQ?Tm8_ znw@BA)}<;&DFq4jCdzI{{VxKMilP4evaSbt#)>Q3`$N%3sh&YfO$$a!f9UhTgQE?C zMbV1_k?4~k_BidAoT&|rQjOn5xiGwGlv8zbd%dW>QToW%d4vpc5Hn8v_~c+D9v0&j zGwR+Dx%a?>qXQBx-~l_H9<2cdv7WSDpnAm|<6bJ#*a1cH&hDCdq2*^m8V#i_Llu3V}{4E_x~V54k;jWP>==ef(1abT1D zlByQfG~lx~NfIn9&y_c937+@yqU|0egO**pc5UCOQ>Py7+qeIIR#sLw+&khtJXatn z2x)Q~2>Nwk4I}Jy+v46}c+1+l?Gi|a;do9a*-P(PUO{D++q*^Y8lG1IM>g0j9(dq} z4jnq22)q&ahmIXP765!A%ma`p?0m$DPERf5YS&3yWK4%?xJKXpexI2KYSizztBT zP6JaE0joQA?wr7Nb-Q-$j_Bk*rIEB|stSzqcXLZtgGr*B>AC8UxQkgXw|Hp}x{1L6 zUoqV!yD0htGKQHF!xVWi&jmgYJg_kc)T=@;#y=rR$RNwbAV)kf5Q*5xK&H0mOkF{n zWFvFD7!)+i1q-4VfjK@Q1HrZgDtYy8ErpjiNM zl{Sc;KOQVzng}ATg&D*?4?H;L8AQOqq91u!uu0Y{p!h1|CuSL@v%vfH3F9NdaP+}@ zzG>=v_wL=lg~@8oi2}6aBz_a$IO?8+$#27U;A3w~m!hwk0R3ylwy~h6^F80BKF7%M zv43ob<4z&c(}LEmTc6A}=^;uLgV6kT!&uH?ECT)Ll;(Ic(f$b>2a#>1+GYFp?R%V4 zzE`ha$2(rER1CuLbm`LNO!kfIsJcxC)`KIU1Ms^XFUENm=RH+D_M83Gyd+&4rpm)x zHAXpEb+AdEW7@rwO2T*vyHB{b=hBwV%Uw`R*i)+=9f!zOzlV(F<*4qu#B+A?%-i|5W2|Z6gBSBU7>s zBKyd`>YW*yzwe>`^}ze_JKNS5ZWNk>i#Wf)akw`T*Qap(HRlb_x{DyJ8xx5OWiID9 zP-j4@U7zn%-vUI`JC}3KKD&){j>+(FosIj~0Uu!BaJ`%K!FjT;p?$n$49+ibm|`x^ z0LKDvV_%YN!Yw!l>^JIM$@$V6C*7==ISdAv!$2aW$qFVi(%vv5?O=`=%2dNH8ShIM z(8&w6NUMQWz-_?o!mavyCCY@8alIyO1fDMdu4f&ioo#AoE$|&q3<=S!Pa+m`R63%F{~0HpyRd5lGdQW}_do^0%7Gh=`rD2EZPECraYL{W*`;{) zp2kq6dNJ*Uoq(f(>(ovHIK?e}I7Tuf`uR4A5?Bqa0qzFY;{I1`mvcZuBIDbn7zx&x zr!5?xuMyC$JppBR5jl_A#ZPiE$TAYN=KFcz2KG_)b~ua3* zfOWt{RAWVW?g9=1I18Ju?%n|HqCD*jgu75KY@~gDI|F_K10ubEPh*&&(PTq*l~9wcs2<55^xPCKy|FBNm|JO6|kSF z_Go9{g{xV94VhO2zBySR^=y_Vx?#{#E6&6H5)q=xCr1&$2b55*F&Iul;i$d*e!#22rF4z z8B&G*7w9aCgL}CEnw(las|C)aI5c-ebod$)ltEx7)^Xw8?K{N9fg3wVOWgm7u~@|Y zV%!ZP#)S1fYG3br3~hFGHUR4Qxc5G;CZm4^{0GtLpU@=!_kllh)GhVxW6e!MxJv}~ zx$2nXd&wsdlja-Gc9K}cxZ}AqqMb)n<~0(eG0sK6L7Z!&y^)fH3E_XFu(^6rY8Y)! z;k=s+qIRmq!0RQU@~K(@?_>XP?*-gj%6aBEH2yKbEcfn@XAg6(^u85RA+MpTM2&@g z20pFLQtw6?F@RLU-vKAEAF`ExqvwqR4`smy`AZJHR^j*}s9OEa=kR2eFzFFC%O3;N zSDl<}(mDc$bC3qX)pPLpdxCRr!iD>^fD3`I0;4WMtmivL zY-61XmR`Qu#sKPDjntzp`d#m4NHJ56Ysa0eXPZO-FLHOIWa3UQ6|K%>61}I08-k-^ zaU;-icUy;{9ikvHImR*Hqd9RT#w<#tBv(#;iv z3Uw=(ppHRANQz+$3L4+t`Zc7?$2=Qy#iT`cM}b8COi6}>v3MWJz|0_V$XGj{J1BQT z+&@nBJE6lPNJy5Qd=U+E8OEnlPnWo~Nth~!pt)n)7=(Xox6h{$jNeylVfVS2M0I~| zj#azWLnLw%Ap1o|r;f};((`vMjJcBIG;ELsCW8p~JHN#&pGp-QCvV%;oKq3NZr-Q* zkj&VWijm1ALaLWW`}qa|jyMzyBIaHU3^d{~%8+zeYpASGaFa8LzC`1#p;VwWXhe%? z%}t8sCD|W!Gytv-9TuAVK3ubOJ&HVBg@adfd6tCd;7zX;Bk*9Ld`OvR_`!!{405rI zPIJNcY2ddcasRe*I!I2(-+y;@Phq{J!f+1G{XUd`nG9(m=!dy8Nbjt&5b9>M_h+h0 zEXTe`<(WnaXld^;iegjb6D^5)J;?m@)KSuz?=|%Ai&K*I2yJ`m?*4zxDK5pdwG-FBk81ueHQaeMg>eYtPe-$+kZZH=7A>SwO&Z#oki<1+(q@YAJ<7F4$wBVkI4yjb?hmp)l#GkA&8=cm%$#$Cnq zRdYf#sV3HN!lgpkJR29dC4_#zgKLnYH3@?hTXv$Bl7gFE<%tn8wnK;% z=A}!*AUE(`Vy-zZ30N*00bEX)5=%J7xw8hd* zcbDq8$51Utb8K=nY<46+$1OW_t_@`aR%(3ps+;3$2H=rfeymR4&{{$@EBW_*lgBPz zF{FsiM%X3po@Nk!ChZRkA@88qL4;s^A8iRsy$`v_e4d0srjWVZ?YUGkD?^bv@cU2N z2zDDfy^Trg-3%fFG=uHA8N@OCZ40WP>9t}IGSOe z<84Ye)r7%XsZjNrhjFw|bcEVOz8nl1VKagV2^CF*TJzs76`KivYBXPoQ08DO0Uo zJSOgl=CNuuWwU+61V(O7EMeVB=8E;~`*>W$8)~ zj+tW@gY2eY56a%9U3rL2#iIUicrDW1@m~jCK^3cs4AL`6`68Al z5pWSLyIGtIr__t{DxpJ@+U*Znk8q+{o1_~ z!a>c%Agh|BV##%{{tXv{6a%;G{z9%P@1x%*r$TNj9CP!Xi&q|2C^r3o9TJP@=9hQ; zx0tyCR)Me)TKFE#Bth~OwH-;-(83^tEgrGa&CMWmHPiNx)Tsl$lkN`9 z9hLJ)i7N*C#PROveyKsA4>h*y(njLDQ!$7n!OtkAQrWJIf;;WWHQS$Si1z3*kFw8_ zOxGXI4?!r^{Q=q_boVj_lG+Z@;!(w541xqh0;Y&Fc8KdN3{cAjXIUC^3=kPPJM{(u zexMBAj$CLGmvqssrje{V8&E#au_>C1LFlz&^c84hkUu*fCAm@`0+!>R)r%ztIlrk4 zLVH1~NL&Q7g({O&t)yTOS{dia@XWO`^1|jC1Uidu(`1?2ibmI(P7H@Zlpj{*sL;Tf zsa(B`&q#tf8{F@ld@*J^E5X!h?>%W0hYgr>1?E@`Z&oe8c4GNfR#JN)U#{Fm%HI4f zaF`Bm4J7;m^fElW^4|7~ox&C61VkaBI$tsq8cAhJ9HdB%#*VVTb?(y@T zF2~3e+G(^$Buz4$HrWT#lh*QV-fMOht0;Ck|IGrwBF~eBfr9vVQ&wVBR>^mDjbygE zaT#|iLk(-Cyr8(NTsm!4bEgq=m;_(dGzPJ|d8v16LCaIR7Dent^SO-8AsT0Iiv+1_ zltBa}dSKXT-*Kr*0^cfU!LeD1i)u^Q6 z0;)Uoz$tCy8KtR5WwR{i{3!!96=X^Ux=m`$N+8dFIB1@0+2|0Xa5i^vx1GY66nAhs zPQ+m5d5yKoTE2(&fll<5G2Z1IP!fYo)jWJCsnc6F#{0m%XwTih4N6hEo%7$A9VKt) zV9o0ysdDwM4W?SsWe&BGLm@%@#bsTgVm;*##dh*vAMjH@X$1+%t<1NQ&O27Rae;D~ zCP?&MClQ(wbb9Yf5}b78Noco!FdNMoNyo|rT3@~)GQ$0^xx zxXvKtt4|}9n{^_~kO+0$_zvKmI!xA&&&eb*j&CuJ``)TC$+w=~nReMT_e!Fa$ljaD zez8xQt2YcH+R1*~BJnx_n5|&kv$7?h(ix6R%vhKDekYm5Ifu{rl8n5CoVw6$Zl%FAzM&u;AgDO7_e0RIem2v{+2sRv~DvaIK5DW3( zFnp`289|b!);WDh3CR=;d9s=c-v7Wj2)zFba#Vx7jL$nZi{ml{cJg`Pfd{@!ow=zr z4C6gii5g-K9(eHoU0stG?qOg|UZz>J4QLPfJn+B+Uxw0ECelD|aF%#*Na0@{=F@sy StJNw10000 Date: Tue, 3 Dec 2024 14:09:20 -0800 Subject: [PATCH 1725/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++------------------- open-liberty/README.md | 54 +++++++++++----------------- websphere-liberty/README.md | 48 ++++++++++--------------- 3 files changed, 75 insertions(+), 99 deletions(-) diff --git a/golang/README.md b/golang/README.md index b09303c8a21d..8db1790e35c6 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`1.23.3-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bookworm/Dockerfile) +- [`1.23.4-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) -- [`1.23.3-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bullseye/Dockerfile) +- [`1.23.4-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bullseye/Dockerfile) -- [`1.23.3-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.3-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/alpine3.20/Dockerfile) +- [`1.23.4-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.4-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.20/Dockerfile) -- [`1.23.3-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/alpine3.19/Dockerfile) +- [`1.23.4-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.19/Dockerfile) -- [`1.23.3-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.4-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.3-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.4-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.3-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.4-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.3-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.4-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.9-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bookworm/Dockerfile) +- [`1.22.10-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bookworm/Dockerfile) -- [`1.22.9-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bullseye/Dockerfile) +- [`1.22.10-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bullseye/Dockerfile) -- [`1.22.9-alpine3.20`, `1.22-alpine3.20`, `1.22.9-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/alpine3.20/Dockerfile) +- [`1.22.10-alpine3.20`, `1.22-alpine3.20`, `1.22.10-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.20/Dockerfile) -- [`1.22.9-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/alpine3.19/Dockerfile) +- [`1.22.10-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.19/Dockerfile) -- [`1.22.9-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.10-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.9-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.10-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.9-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.10-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.9-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.10-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.23.3`, `1.23`, `1`, `latest`: +- `1.23.4`, `1.23`, `1`, `latest`: - - [`1.23.3-bookworm`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/bookworm/Dockerfile) - - [`1.23.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.4-bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) + - [`1.23.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.3-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.4-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.3-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.4-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c0463340f0b14c2682af9d8d3bb8457a79f695d/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.9`, `1.22`: +- `1.22.10`, `1.22`: - - [`1.22.9-bookworm`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/bookworm/Dockerfile) - - [`1.22.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.10-bookworm`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bookworm/Dockerfile) + - [`1.22.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.9-windowsservercore`, `1.22-windowsservercore`: +- `1.22.10-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.9-nanoserver`, `1.22-nanoserver`: +- `1.22.10-nanoserver`, `1.22-nanoserver`: - - [`1.22.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/e65b4888376d1b3dccbe45189a5994a681f83db2/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 8d8d9402ac14..c4d99ca50ef3 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.11-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk8) - -- [`24.0.0.11-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.11-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.11-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk8) - -- [`24.0.0.11-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.11-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/daccbcdfb5ec04b04fd7e5474689db143853446a/releases/24.0.0.11/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 3fe99ef41350..37db68e62a3e 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.11-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.ibmjava8) - -- [`24.0.0.11-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.11-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/kernel/Dockerfile.ubuntu.openjdk17) - -- [`24.0.0.11-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.ibmjava8) - -- [`24.0.0.11-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.openjdk11) - -- [`24.0.0.11-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/addfe534b880c6f4e44cda04def685af5e4f0c30/ga/24.0.0.11/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 7dd8075a89fe4797515814f24bc6673c0fd94557 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 15:09:17 -0800 Subject: [PATCH 1726/2686] Run update.sh --- ghost/README.md | 4 ++-- sonarqube/README.md | 32 +++++++++++++++++--------------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4410f5bd4444..801321d09e7e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.101.6`, `5.101`, `5`, `latest`](https://github.com/docker-library/ghost/blob/95aa88b8b1c32dc2d28c4b55b1e54f3391a57d4d/5/debian/Dockerfile) +- [`5.103.0`, `5.103`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7bd3cdc5837bebcae81aac3314513986cc2e2f84/5/debian/Dockerfile) -- [`5.101.6-alpine`, `5.101-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/95aa88b8b1c32dc2d28c4b55b1e54f3391a57d4d/5/alpine/Dockerfile) +- [`5.103.0-alpine`, `5.103-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7bd3cdc5837bebcae81aac3314513986cc2e2f84/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index a037c1b603c0..751dc0e342c0 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -63,15 +63,17 @@ WARNING: - **Source of this description**: [docs repo's `sonarqube/` directory](https://github.com/docker-library/docs/tree/master/sonarqube) ([history](https://github.com/docker-library/docs/commits/master/sonarqube)) -# What is SonarQube? +# What is `sonarqube`? -[SonarQube](https://www.sonarqube.org/) is the leading tool for continuously inspecting the Code Quality and Security of your codebases, and guiding development teams during Code Reviews. Covering 27 programming languages, while pairing-up with your existing software pipeline, SonarQube provides clear remediation guidance for developers to understand and fix issues, and for teams overall to deliver better and safer software. With over 225,000 deployments helping small development teams as well as global organizations, SonarQube provides the means for all teams and companies around the world to own and impact their Code Quality and Security. +`sonarqube` Docker repository stores the official Sonar images for SonarQube Server and SonarQube Community Build. -![logo](https://raw.githubusercontent.com/docker-library/docs/84479f149eb7d748d5dc057665eb96f923e60dc1/sonarqube/logo.png) +[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -# How to use this image +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is free and open source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. -Here you'll find the Docker images for the Community Edition, Developer Edition, Enterprise Edition, and Data Center Edition of SonarQube. +## How to use this image + +Here you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. ## Docker Host Requirements @@ -86,7 +88,7 @@ ulimit -n 131072 ulimit -u 8192 ``` -## Try Out SonarQube +## Demo To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarqube.org/latest/setup/get-started-2-minutes/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. @@ -96,7 +98,7 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. -To run a cluster with the Data Center Edition, please refer to Installing SonarQube from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. > The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. @@ -107,18 +109,18 @@ To run a cluster with the Data Center Edition, please refer to Installing SonarQ By default, the server running within the container will listen on port 9000. You can expose the container port 9000 to the host port 9000 with the `-p 9000:9000` argument to `docker run`, like the command below: ```console -docker run --name sonarqube-custom -p 9000:9000 sonarqube:10.6-community +docker run --name sonarqube-custom -p 9000:9000 sonarqube:community ``` -You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the SonarQube web interface. +You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the web interface. ### Database By default, the image will use an embedded H2 database that is not suited for production. -> **Warning:** Only a single instance of SonarQube can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple SonarQube instances are never running on the same database schema simultaneously. This will cause SonarQube to behave unpredictably and data will be corrupted. There is no safeguard until [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. +> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. -Set up a database by following the "Installing the Database" section of https://docs.sonarqube.org/latest/setup/install-server/. +Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. ### Use volumes @@ -141,7 +143,7 @@ For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade th In some environments, it may make more sense to prepare a custom image containing your configuration. A `Dockerfile` to achieve this may be as simple as: ```dockerfile -FROM sonarqube:10.6-community +FROM sonarqube:community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/ ``` @@ -152,9 +154,9 @@ $ docker build --tag=sonarqube-custom . $ docker run -ti sonarqube-custom ``` -### Avoid hard termination of SonarQube +### Avoid hard termination -A SonarQube instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the SonarQube instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: +The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: ```console docker run --stop-timeout 3600 sonarqube @@ -166,7 +168,7 @@ The administration guide can be found [here](https://redirect.sonarsource.com/do # License -SonarQube Community Edition is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Conditions](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). +SonarQube Community Build is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Server Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Condition](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). From b25ae759cbb51b5a3bbc7aaf82e272bd6d10e948 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 16:09:08 -0800 Subject: [PATCH 1727/2686] Run update.sh --- docker/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docker/README.md b/docker/README.md index 3c57005f94b4..c90a54a4d58e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`27.4.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.2-cli-alpine3.20`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/cli/Dockerfile) +- [`27.4.0-rc.3-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/cli/Dockerfile) -- [`27.4.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.2-dind-alpine3.20`, `27.4.0-rc.2`, `27-rc`, `rc`, `27.4.0-rc.2-alpine3.20`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/dind/Dockerfile) +- [`27.4.0-rc.3-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.3-dind-alpine3.20`, `27.4.0-rc.3`, `27-rc`, `rc`, `27.4.0-rc.3-alpine3.20`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/dind/Dockerfile) -- [`27.4.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/dind-rootless/Dockerfile) +- [`27.4.0-rc.3-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/dind-rootless/Dockerfile) -- [`27.4.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.0-rc.3-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.4.0-rc.3-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/cli/Dockerfile) +- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/cli/Dockerfile) - [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-1809/Dockerfile) +- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.4.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: +- `27.4.0-rc.3-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.4.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8dbed50d0e0d056458139f6e5eaa5629b589a4ef/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.4.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9095b12e6b5eb72689fb2c15f76403ce35ce04f7/27/windows/windowsservercore-1809/Dockerfile) + - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 67f82f7c32bb6b050499aaf334057bc170103573 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Dec 2024 17:09:29 -0800 Subject: [PATCH 1728/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index a7f4033e044a..a115c84da182 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`23-bullseye-slim`, `23.3-bullseye-slim`, `23.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye-slim/Dockerfile) -- [`22-alpine3.19`, `22.11-alpine3.19`, `22.11.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.19/Dockerfile) +- [`22-alpine3.19`, `22.12-alpine3.19`, `22.12.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.19/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.11-alpine`, `22.11-alpine3.20`, `22.11.0-alpine`, `22.11.0-alpine3.20`, `jod-alpine`, `jod-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.20`, `22.12-alpine`, `22.12-alpine3.20`, `22.12.0-alpine`, `22.12.0-alpine3.20`, `jod-alpine`, `jod-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) -- [`22`, `22-bookworm`, `22.11`, `22.11-bookworm`, `22.11.0`, `22.11.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.12`, `22.12-bookworm`, `22.12.0`, `22.12.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.11-bookworm-slim`, `22.11-slim`, `22.11.0-bookworm-slim`, `22.11.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.12-bookworm-slim`, `22.12-slim`, `22.12.0-bookworm-slim`, `22.12.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.11-bullseye`, `22.11.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.12-bullseye`, `22.12.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.11-bullseye-slim`, `22.11.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b0de582b8d4627cc9d65a89bf3af1bfcf67d2bef/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.12-bullseye-slim`, `22.12.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bullseye-slim/Dockerfile) - [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.1-alpine3.19`, `iron-alpine3.19`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.19/Dockerfile) From f181c783c1285802a82e74760a180feb434a025a Mon Sep 17 00:00:00 2001 From: Davi Koscianski Vidal Date: Wed, 4 Dec 2024 20:11:10 +0100 Subject: [PATCH 1729/2686] Fixes some typos --- sonarqube/content.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index c5b56e7a946e..925dc3ef7ba3 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -4,11 +4,11 @@ [SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is free and open source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is the free and open-source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. ## How to use this image -Here you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. +Here, you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. ## Docker Host Requirements @@ -53,7 +53,7 @@ You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your By default, the image will use an embedded H2 database that is not suited for production. -> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. +> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably, and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. @@ -91,7 +91,7 @@ $ docker run -ti sonarqube-custom ### Avoid hard termination -The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: +The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time, which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: ```console docker run --stop-timeout 3600 %%IMAGE%% From f9bb7f89788ef0c360b542b9f8a85639784388b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Dec 2024 12:09:10 -0800 Subject: [PATCH 1730/2686] Run update.sh --- drupal/README.md | 24 +++++------ jetty/README.md | 54 +++++++++++++----------- python/README.md | 108 +++++++++++++++++++++++------------------------ 3 files changed, 96 insertions(+), 90 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 39a2abb1e415..a2496ba2a1bb 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -84,29 +84,29 @@ WARNING: - [`10.2.12-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.12-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.102-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.102-php8.2-apache`, `7-php8.2-apache`, `7.102-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/apache-bookworm/Dockerfile) +- [`7.103-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.103-php8.2-apache`, `7-php8.2-apache`, `7.103-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bookworm/Dockerfile) -- [`7.102-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.102-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-bookworm/Dockerfile) +- [`7.103-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.103-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-bookworm/Dockerfile) -- [`7.102-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/apache-bullseye/Dockerfile) +- [`7.103-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bullseye/Dockerfile) -- [`7.102-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-bullseye/Dockerfile) +- [`7.103-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.102-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.102-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-alpine3.20/Dockerfile) +- [`7.103-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.103-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.20/Dockerfile) -- [`7.102-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.103-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.19/Dockerfile) -- [`7.102-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.102-php8.1-apache`, `7-php8.1-apache`, `7.102-php8.1`, `7-php8.1`, `7.102-apache-bookworm`, `7-apache-bookworm`, `7.102-apache`, `7-apache`, `7.102`, `7`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/apache-bookworm/Dockerfile) +- [`7.103-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.103-php8.1-apache`, `7-php8.1-apache`, `7.103-php8.1`, `7-php8.1`, `7.103-apache-bookworm`, `7-apache-bookworm`, `7.103-apache`, `7-apache`, `7.103`, `7`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/apache-bookworm/Dockerfile) -- [`7.102-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.102-php8.1-fpm`, `7-php8.1-fpm`, `7.102-fpm-bookworm`, `7-fpm-bookworm`, `7.102-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-bookworm/Dockerfile) +- [`7.103-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.103-php8.1-fpm`, `7-php8.1-fpm`, `7.103-fpm-bookworm`, `7-fpm-bookworm`, `7.103-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-bookworm/Dockerfile) -- [`7.102-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.102-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/apache-bullseye/Dockerfile) +- [`7.103-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.103-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/apache-bullseye/Dockerfile) -- [`7.102-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.102-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-bullseye/Dockerfile) +- [`7.103-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.103-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.102-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.102-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.102-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.102-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-alpine3.20/Dockerfile) +- [`7.103-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.103-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.103-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.103-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.20/Dockerfile) -- [`7.102-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.102-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/8f5f86cbc9de0e17c417d1939ce5aac467200145/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.103-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.103-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.19/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index f19ae28f35c1..44d0ddf71e5a 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.14-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.14-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.15-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.15-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.14-jre21`, `12.0-jre21`, `12-jre21`, `12.0.14-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.15-jre21`, `12.0-jre21`, `12-jre21`, `12.0.15-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.14-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.14-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.15-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.15-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.14-jre17`, `12.0-jre17`, `12-jre17`, `12.0.14-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.15-jre17`, `12.0-jre17`, `12-jre17`, `12.0.15-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.14-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.14-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/9c0344d032b14a8f13681e820fd81e9778140e7f/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.15-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.15-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.14-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.14-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/9c0344d032b14a8f13681e820fd81e9778140e7f/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.15-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.15-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.14-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.14-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.15-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.15-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.14`, `12.0`, `12`, `12.0.14-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.14-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.14-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.15`, `12.0`, `12`, `12.0.15-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.15-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.15-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.14-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.14-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.15-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.15-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.14-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.14-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.15-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.15-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -124,51 +124,57 @@ WARNING: - [`9.4.56-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.56-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.56-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk8/Dockerfile) - [`9.4.56-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.56-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.56-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.56-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.56-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk21/Dockerfile) - [`9.4.56-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.56-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.56-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk17/Dockerfile) - [`9.4.56-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11/Dockerfile) +- [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.14-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.15-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk23-al2023/Dockerfile) -- [`12.0.14-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.14-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.15-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.14-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.15-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.14-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f0c6a3e167722283788502f39ee521ffdac911a0/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.15-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.15-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21/Dockerfile) + +- [`12.0.15-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17-alpine/Dockerfile) + +- [`12.0.15-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17-al2023/Dockerfile) + +- [`12.0.15-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk21/Dockerfile) - [`11.0.24-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk17/Dockerfile) - [`11.0.24-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk11/Dockerfile) - [`10.0.24-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk21/Dockerfile) - [`10.0.24-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk17/Dockerfile) - [`10.0.24-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 5ea878979a10..53235b4509de 100644 --- a/python/README.md +++ b/python/README.md @@ -44,73 +44,73 @@ WARNING: - [`3.14.0a2-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.13.0-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bookworm/Dockerfile) +- [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) -- [`3.13.0-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.0-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/slim-bookworm/Dockerfile) +- [`3.13.1-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.1-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/slim-bookworm/Dockerfile) -- [`3.13.0-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bullseye/Dockerfile) +- [`3.13.1-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bullseye/Dockerfile) -- [`3.13.0-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/slim-bullseye/Dockerfile) +- [`3.13.1-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/slim-bullseye/Dockerfile) -- [`3.13.0-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.0-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/alpine3.20/Dockerfile) +- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.20/Dockerfile) -- [`3.13.0-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/alpine3.19/Dockerfile) +- [`3.13.1-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.19/Dockerfile) -- [`3.13.0-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.1-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.0-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) +- [`3.13.1-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.7-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bookworm/Dockerfile) +- [`3.12.8-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bookworm/Dockerfile) -- [`3.12.7-slim-bookworm`, `3.12-slim-bookworm`, `3.12.7-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/slim-bookworm/Dockerfile) +- [`3.12.8-slim-bookworm`, `3.12-slim-bookworm`, `3.12.8-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/slim-bookworm/Dockerfile) -- [`3.12.7-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bullseye/Dockerfile) +- [`3.12.8-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bullseye/Dockerfile) -- [`3.12.7-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/slim-bullseye/Dockerfile) +- [`3.12.8-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/slim-bullseye/Dockerfile) -- [`3.12.7-alpine3.20`, `3.12-alpine3.20`, `3.12.7-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/alpine3.20/Dockerfile) +- [`3.12.8-alpine3.20`, `3.12-alpine3.20`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.20/Dockerfile) -- [`3.12.7-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/alpine3.19/Dockerfile) +- [`3.12.8-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.19/Dockerfile) -- [`3.12.7-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.8-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.7-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.8-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.10-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bookworm/Dockerfile) +- [`3.11.11-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bookworm/Dockerfile) -- [`3.11.10-slim-bookworm`, `3.11-slim-bookworm`, `3.11.10-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/slim-bookworm/Dockerfile) +- [`3.11.11-slim-bookworm`, `3.11-slim-bookworm`, `3.11.11-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/slim-bookworm/Dockerfile) -- [`3.11.10-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bullseye/Dockerfile) +- [`3.11.11-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bullseye/Dockerfile) -- [`3.11.10-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/slim-bullseye/Dockerfile) +- [`3.11.11-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/slim-bullseye/Dockerfile) -- [`3.11.10-alpine3.20`, `3.11-alpine3.20`, `3.11.10-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/alpine3.20/Dockerfile) +- [`3.11.11-alpine3.20`, `3.11-alpine3.20`, `3.11.11-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.20/Dockerfile) -- [`3.11.10-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/alpine3.19/Dockerfile) +- [`3.11.11-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.19/Dockerfile) -- [`3.10.15-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bookworm/Dockerfile) +- [`3.10.16-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bookworm/Dockerfile) -- [`3.10.15-slim-bookworm`, `3.10-slim-bookworm`, `3.10.15-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/slim-bookworm/Dockerfile) +- [`3.10.16-slim-bookworm`, `3.10-slim-bookworm`, `3.10.16-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/slim-bookworm/Dockerfile) -- [`3.10.15-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bullseye/Dockerfile) +- [`3.10.16-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bullseye/Dockerfile) -- [`3.10.15-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/slim-bullseye/Dockerfile) +- [`3.10.16-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/slim-bullseye/Dockerfile) -- [`3.10.15-alpine3.20`, `3.10-alpine3.20`, `3.10.15-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/alpine3.20/Dockerfile) +- [`3.10.16-alpine3.20`, `3.10-alpine3.20`, `3.10.16-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.20/Dockerfile) -- [`3.10.15-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/alpine3.19/Dockerfile) +- [`3.10.16-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.19/Dockerfile) -- [`3.9.20-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bookworm/Dockerfile) +- [`3.9.21-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) -- [`3.9.20-slim-bookworm`, `3.9-slim-bookworm`, `3.9.20-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/slim-bookworm/Dockerfile) +- [`3.9.21-slim-bookworm`, `3.9-slim-bookworm`, `3.9.21-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/slim-bookworm/Dockerfile) -- [`3.9.20-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bullseye/Dockerfile) +- [`3.9.21-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bullseye/Dockerfile) -- [`3.9.20-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/slim-bullseye/Dockerfile) +- [`3.9.21-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/slim-bullseye/Dockerfile) -- [`3.9.20-alpine3.20`, `3.9-alpine3.20`, `3.9.20-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/alpine3.20/Dockerfile) +- [`3.9.21-alpine3.20`, `3.9-alpine3.20`, `3.9.21-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.20/Dockerfile) -- [`3.9.20-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/alpine3.19/Dockerfile) +- [`3.9.21-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.19/Dockerfile) ## Shared Tags @@ -125,39 +125,39 @@ WARNING: - [`3.14.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.0`, `3.13`, `3`, `latest`: +- `3.13.1`, `3.13`, `3`, `latest`: - - [`3.13.0-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.13/bookworm/Dockerfile) - - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.1-bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) + - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.13.0-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.1-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.0-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.12.7`, `3.12`: +- `3.12.8`, `3.12`: - - [`3.12.7-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.12/bookworm/Dockerfile) - - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.8-bookworm`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bookworm/Dockerfile) + - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.7-windowsservercore`, `3.12-windowsservercore`: +- `3.12.8-windowsservercore`, `3.12-windowsservercore`: - - [`3.12.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37a7bfdfa9947e8eaf650150a5df1729e7432599/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.10`, `3.11`: +- `3.11.11`, `3.11`: - - [`3.11.10-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.11/bookworm/Dockerfile) + - [`3.11.11-bookworm`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bookworm/Dockerfile) -- `3.10.15`, `3.10`: +- `3.10.16`, `3.10`: - - [`3.10.15-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.10/bookworm/Dockerfile) + - [`3.10.16-bookworm`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bookworm/Dockerfile) -- `3.9.20`, `3.9`: +- `3.9.21`, `3.9`: - - [`3.9.20-bookworm`](https://github.com/docker-library/python/blob/37a6827e0b7a9ef099cfdec5de305e3d4cea7331/3.9/bookworm/Dockerfile) + - [`3.9.21-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) # Quick reference (cont.) From db2b64aae76c5500478c796b1beaaa98f525b309 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Dec 2024 15:09:08 -0800 Subject: [PATCH 1731/2686] Run update.sh --- sonarqube/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 751dc0e342c0..cdaa26e857da 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -69,11 +69,11 @@ WARNING: [SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is free and open source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is the free and open-source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. ## How to use this image -Here you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. +Here, you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build. ## Docker Host Requirements @@ -118,7 +118,7 @@ You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your By default, the image will use an embedded H2 database that is not suited for production. -> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. +> **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably, and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. @@ -156,7 +156,7 @@ $ docker run -ti sonarqube-custom ### Avoid hard termination -The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: +The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time, which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with `--stop-timeout`. For example: ```console docker run --stop-timeout 3600 sonarqube From 5e3cc6b2ea81bd073af697c80b9f1d12447b86cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Dec 2024 17:09:18 -0800 Subject: [PATCH 1732/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- mongo/README.md | 26 ++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index c90a54a4d58e..f753e795688c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`27.4.0-rc.3-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.3-cli-alpine3.20`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/cli/Dockerfile) +- [`27.4.0-rc.4-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/cli/Dockerfile) -- [`27.4.0-rc.3-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.3-dind-alpine3.20`, `27.4.0-rc.3`, `27-rc`, `rc`, `27.4.0-rc.3-alpine3.20`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/dind/Dockerfile) +- [`27.4.0-rc.4-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.4-dind-alpine3.20`, `27.4.0-rc.4`, `27-rc`, `rc`, `27.4.0-rc.4-alpine3.20`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/dind/Dockerfile) -- [`27.4.0-rc.3-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/dind-rootless/Dockerfile) +- [`27.4.0-rc.4-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/dind-rootless/Dockerfile) -- [`27.4.0-rc.3-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.0-rc.4-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-rc.3-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.4.0-rc.4-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-1809/Dockerfile) - [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `27.4.0-rc.3-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: +- `27.4.0-rc.4-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.4.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4177dedd5eef9ccb8b757d4160320244b172c614/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.4.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: diff --git a/mongo/README.md b/mongo/README.md index b143240adfe2..2b6942b6f8da 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -48,6 +48,16 @@ WARNING: - [`8.0.3-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.16-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/Dockerfile) + +- [`7.0.16-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.16-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`7.0.16-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.16-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.15-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) - [`7.0.15-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -112,6 +122,22 @@ WARNING: - [`8.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) +- `7.0.16-rc1`, `7.0-rc`: + + - [`7.0.16-rc1-jammy`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/Dockerfile) + - [`7.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.16-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.16-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.16-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.16-rc1-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.16-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.16-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.15`, `7.0`, `7`: - [`7.0.15-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) From c9e437978aacb0595267ebfa2f64651ac12ef371 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Dec 2024 09:09:15 -0800 Subject: [PATCH 1733/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 9a1ab893c18d..f5576b8ca0a4 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.14`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.15`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/565c797b072f359d1f6492a032bf088be1fff5cf/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.5`, `16.4-mysql-tomcat`, `16.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mysql-tomcat/Dockerfile) From 31061b27bf76b12d1f4608a56eb230eef29aa731 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Dec 2024 14:09:18 -0800 Subject: [PATCH 1734/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 492f3608765f..881539019083 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,16 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20240807`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/35654ae14e617434d5ca29771296f6b9485eaa85/x86_64/Dockerfile) +- [`20240923`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/446ba06f99cf635657b51b1a5a0e81a9b8073929/x86_64/Dockerfile) -- [`3.20.3`, `3.20`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/7d63673353bd39d92ba42f6effcc199aeebd45ee/x86_64/Dockerfile) +- [`3.21.0`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/0f0aa5a1aae7fbaea0ac3b231dc2f99d40466420/x86_64/Dockerfile) + +- [`3.20.3`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/7d63673353bd39d92ba42f6effcc199aeebd45ee/x86_64/Dockerfile) - [`3.19.4`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0822e580809e816cdd92fdfc2677e71d01cba38c/x86_64/Dockerfile) - [`3.18.9`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a8be5a35dd72f90cb18dc7d450dca5212f6ad70f/x86_64/Dockerfile) -- [`3.17.10`, `3.17`](https://github.com/alpinelinux/docker-alpine/blob/1d3ddcf4766ef6085fe6005ce3ec8ca4e6b45ddd/x86_64/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From a5e63d991adc7118920bbc3bd744ace1c8b74235 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Dec 2024 17:09:19 -0800 Subject: [PATCH 1735/2686] Run update.sh --- memcached/README.md | 4 ++-- nextcloud/README.md | 18 +++++++++--------- oraclelinux/README.md | 18 +++++++++--------- rabbitmq/README.md | 12 ++++++------ rust/README.md | 4 ++-- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/memcached/README.md b/memcached/README.md index c905ff559834..2e15ede9e2bd 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.32`, `1.6`, `1`, `latest`, `1.6.32-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/89c8fdb68df3a904503298751ac8862f283328e6/1/debian/Dockerfile) +- [`1.6.33`, `1.6`, `1`, `latest`, `1.6.33-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d2fb263f47fa4043f4fe5a207c19517585867592/1/debian/Dockerfile) -- [`1.6.32-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.32-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/89c8fdb68df3a904503298751ac8862f283328e6/1/alpine/Dockerfile) +- [`1.6.33-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.33-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/d2fb263f47fa4043f4fe5a207c19517585867592/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 9da5d4d152ad..0d98cfeb4d56 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.12-apache`, `28.0-apache`, `28-apache`, `28.0.12`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/apache/Dockerfile) +- [`28.0.13-apache`, `28.0-apache`, `28-apache`, `28.0.13`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/apache/Dockerfile) -- [`28.0.12-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/fpm/Dockerfile) +- [`28.0.13-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/fpm/Dockerfile) -- [`28.0.12-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/28/fpm-alpine/Dockerfile) +- [`28.0.13-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/fpm-alpine/Dockerfile) -- [`29.0.9-apache`, `29.0-apache`, `29-apache`, `29.0.9`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/apache/Dockerfile) +- [`29.0.10-apache`, `29.0-apache`, `29-apache`, `29.0.10`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/apache/Dockerfile) -- [`29.0.9-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/fpm/Dockerfile) +- [`29.0.10-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/fpm/Dockerfile) -- [`29.0.9-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/29/fpm-alpine/Dockerfile) +- [`29.0.10-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/fpm-alpine/Dockerfile) -- [`30.0.2-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.2`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/apache/Dockerfile) +- [`30.0.3-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.3`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/apache/Dockerfile) -- [`30.0.2-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/fpm/Dockerfile) +- [`30.0.3-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/fpm/Dockerfile) -- [`30.0.2-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f130dc7527e9f405349767596b168c81b45ba24/30/fpm-alpine/Dockerfile) +- [`30.0.3-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 300de5e15ecf..eff20a1118a1 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3758adfdcd3ab4d5b3927b1a6c52a3afa19b4b75/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b28510263b7a..550e328c4849 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/0d7a331c694a5f32ccf94837894d9e4eb529940f/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/5fb7f52a1f2f438c5994210ee06bc92f2437c8e2/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.2-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0d7a331c694a5f32ccf94837894d9e4eb529940f/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/5fb7f52a1f2f438c5994210ee06bc92f2437c8e2/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/46b1718733a32ae79186fe45720c0ce1e9e59194/4.0/ubuntu/Dockerfile) +- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/8a0389fb2c2007af3db29b1f12fe82d239c027ac/4.0/ubuntu/Dockerfile) - [`4.0.4-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/46b1718733a32ae79186fe45720c0ce1e9e59194/4.0/alpine/Dockerfile) +- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8a0389fb2c2007af3db29b1f12fe82d239c027ac/4.0/alpine/Dockerfile) - [`4.0.4-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ff0bdcfd8c2e81bfeec9a7ad0b432b561ee9f04f/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bd3e69e85cedd73b08319fd406ee91a9362d55d1/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/ff0bdcfd8c2e81bfeec9a7ad0b432b561ee9f04f/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/bd3e69e85cedd73b08319fd406ee91a9362d55d1/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/rust/README.md b/rust/README.md index 293e83a411fa..e8a7dc7af862 100644 --- a/rust/README.md +++ b/rust/README.md @@ -32,9 +32,9 @@ WARNING: - [`1-slim-bookworm`, `1.83-slim-bookworm`, `1.83.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.83-slim`, `1.83.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.19`, `1.83-alpine3.19`, `1.83.0-alpine3.19`, `alpine3.19`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.19/Dockerfile) +- [`1-alpine3.20`, `1.83-alpine3.20`, `1.83.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.20/Dockerfile) -- [`1-alpine3.20`, `1.83-alpine3.20`, `1.83.0-alpine3.20`, `alpine3.20`, `1-alpine`, `1.83-alpine`, `1.83.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.20/Dockerfile) +- [`1-alpine3.21`, `1.83-alpine3.21`, `1.83.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.83-alpine`, `1.83.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/85c88f3a3e192ad11f392e829c54ded1178e8447/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From 9cec477ddec494d7f72772cd346b329ace86ee30 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:25:31 +0100 Subject: [PATCH 1736/2686] docs: update deprecated/outdated compose syntax and filenames Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- backdrop/content.md | 6 ++-- bonita/content.md | 2 +- cassandra/content.md | 2 +- convertigo/content.md | 6 ++-- drupal/content.md | 2 +- eggdrop/content.md | 6 ++-- emqx/content.md | 70 +++++++++++++++++++++---------------------- friendica/content.md | 20 +++++-------- geonetwork/content.md | 2 +- ghost/content.md | 4 +-- joomla/content.md | 2 +- matomo/content.md | 4 +-- mediawiki/content.md | 2 +- monica/content.md | 32 +++++++++----------- mysql/content.md | 4 +-- nextcloud/content.md | 50 ++++++++++++++----------------- percona/content.md | 4 +-- phpmyadmin/content.md | 2 +- storm/content.md | 2 +- 19 files changed, 103 insertions(+), 119 deletions(-) diff --git a/backdrop/content.md b/backdrop/content.md index 9de55cd372fb..51dee9d11f7b 100644 --- a/backdrop/content.md +++ b/backdrop/content.md @@ -44,9 +44,9 @@ $ docker run --name some-%%REPO%% \ -d %%REPO%% ``` -## ... via [`docker-compose`](https://github.com/docker/compose) +## ... via [Docker Compose](https://github.com/docker/compose) -Example `docker-compose.yml` for `%%REPO%%`: +Example `compose.yaml` for `%%REPO%%`: ```yaml %%REPO%%: @@ -65,7 +65,7 @@ db: MYSQL_DATABASE: %%REPO%% ``` -Run `docker-compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. ## Adding additional libraries / extensions diff --git a/bonita/content.md b/bonita/content.md index b80f1b6a4331..e074fd7e72e9 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -38,7 +38,7 @@ This image is built from the following [GitHub repository](https://github.com/Bo ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). - Replace `` with the one used in the licence generation command - leave double `$$` untouched diff --git a/cassandra/content.md b/cassandra/content.md index 3335aee685f4..b2988a75012d 100644 --- a/cassandra/content.md +++ b/cassandra/content.md @@ -114,4 +114,4 @@ The `-v /my/own/datadir:/var/lib/cassandra` part of the command mounts the `/my/ ## No connections until Cassandra init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. diff --git a/convertigo/content.md b/convertigo/content.md index 9bc6ecd96898..4e0df74a3371 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -275,13 +275,13 @@ The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way: $ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 %%IMAGE%% ``` -## Pre configurated Docker compose stack +## Pre-configurated Docker Compose file -You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. +You can use [this Docker Compose file](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. ```console $ mkdir c8oMBaaS $ cd c8oMBaaS $ wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml -$ docker-compose up -d +$ docker compose up -d ``` diff --git a/drupal/content.md b/drupal/content.md index f42a91fedcba..271b69e2b31c 100644 --- a/drupal/content.md +++ b/drupal/content.md @@ -100,7 +100,7 @@ $ docker run --name some-%%REPO%% --network some-network -d \ ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` +Run `docker stack deploy -c stack.yml %%REPO%%` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` ## Adding additional libraries / extensions diff --git a/eggdrop/content.md b/eggdrop/content.md index a2fe91a06644..b494a39b8ee5 100644 --- a/eggdrop/content.md +++ b/eggdrop/content.md @@ -104,13 +104,13 @@ to your docker run command line. ## Common Errors -# docker-compose.yml +# compose.yaml -A docker-compose.yml example is hosted at https://github.com/eggheads/eggdrop-docker/blob/master/docker-compose.yml . A common error creating your own docker-compose.yml file from scratch is not adding +A `docker-compose.yml` example is hosted at https://github.com/eggheads/eggdrop-docker/blob/master/docker-compose.yml. A common error creating your own Docker Compose file from scratch is not adding: stdin_open: true -to the docker-compose.yml file. Without it, Eggdrop will give you an "END OF FILE ON TERMINAL" error and not start. +Without it, Eggdrop will give you an "END OF FILE ON TERMINAL" error and not start. ## Troubleshooting / Support diff --git a/emqx/content.md b/emqx/content.md index a2a612bb5b26..7102014ca2ff 100644 --- a/emqx/content.md +++ b/emqx/content.md @@ -62,53 +62,51 @@ If not specified, EMQX determines its node name based on the running environment EMQX supports a variety of clustering methods, see our [documentation](https://docs.emqx.com/en/emqx/latest/deploy/cluster/create-cluster.html) for details. -Let's create a static node list cluster from docker-compose. +Let's create a static node list cluster from Docker Compose. -- Create `docker-compose.yaml`: +- Create `compose.yaml`: ```yaml - version: '3' - - services: - emqx1: - image: %%IMAGE%%:latest - environment: - - "EMQX_NODE__NAME=emqx@node1.emqx.io" - - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" - networks: - emqx-bridge: - aliases: - - node1.emqx.io - - emqx2: - image: %%IMAGE%%:latest - environment: - - "EMQX_NODE__NAME=emqx@node2.emqx.io" - - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" - networks: - emqx-bridge: - aliases: - - node2.emqx.io - - networks: - emqx-bridge: - driver: bridge +services: + emqx1: + image: %%IMAGE%%:latest + environment: + - "EMQX_NODE__NAME=emqx@node1.emqx.io" + - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" + - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" + networks: + emqx-bridge: + aliases: + - node1.emqx.io + + emqx2: + image: %%IMAGE%%:latest + environment: + - "EMQX_NODE__NAME=emqx@node2.emqx.io" + - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" + - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" + networks: + emqx-bridge: + aliases: + - node2.emqx.io + +networks: + emqx-bridge: + driver: bridge ``` -- Start the docker-compose cluster +- Start the Docker Compose services ```bash - docker-compose -p my_emqx up -d +docker compose -p my_emqx up -d ``` - View cluster ```bash - $ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" - Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], - stopped_nodes => []} +$ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" +Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], + stopped_nodes => []} ``` ### Persistence @@ -120,7 +118,7 @@ If you want to persist the EMQX docker container, you need to keep the following Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. To make this work, one needs to set the host part of `EMQX_NODE__NAME` to something static that does not change when you restart or recreate the container. It could be container name, hostname or loopback IP address `127.0.0.1` if you only have one node. -In if you use docker-compose, the configuration would look something like this: +In if you use Docker Compose, the configuration would look something like this: ```YAML volumes: diff --git a/friendica/content.md b/friendica/content.md index 9d2b344560a9..321a87e73af7 100644 --- a/friendica/content.md +++ b/friendica/content.md @@ -28,13 +28,13 @@ Now you can access the Friendica installation wizard at http://localhost:8080/ f ## Using the fpm image -To use the fpm image you need an additional web server that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases you might want use another container or your host as proxy. If you use your host you can address your Friendica container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to you host. +To use the fpm image you need an additional web server that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases you might want use another container or your host as proxy. If you use your host you can address your Friendica container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `compose.yaml` file). In both cases you don't want to map the fpm port to you host. ```console $ docker run -d %%IMAGE%%:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the docker-compose section. +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the Docker Compose section. ## Background tasks @@ -159,8 +159,6 @@ The Friendica image supports auto configuration via environment variables. You c As an alternative to passing sensitive information via environment variables, _FILE may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in /run/secrets/ files. For example: ```yaml -version: '3.2' - services: db: image: mariadb @@ -220,9 +218,9 @@ Currently, this is only supported for `FRIENDICA_ADMIN_MAIL`, `MYSQL_DATABASE`, You have to pull the latest image from the hub (`docker pull %%IMAGE%%`). The stable branch gets checked at every startup and will get updated if no installation was found or a new image is used. -# Running this image with docker-compose +# Running this image with Docker Compose -The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for. +The easiest way to get a fully featured and functional setup is using a `compose.yaml` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for. At first make sure you have chosen the right base image (fpm or apache) and added the features you wanted (see below). In every case you want to add a database container and docker volumes to get easy access to your persistent data. When you want your server reachable from the internet adding HTTPS-encryption is mandatory! See below for more information. @@ -233,8 +231,6 @@ This version will use the apache image and add a mariaDB container. The volumes Make sure to set the variable `MYSQL_PASSWORD` before run this setup. ```yaml -version: '2' - services: db: image: mariadb @@ -268,7 +264,7 @@ volumes: friendica: ``` -Then run `docker-compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. +Then run `docker compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. ## Base version - FPM @@ -281,11 +277,9 @@ As this setup does **not include encryption** it should to be run behind a proxy Prerequisites for this example: - Make sure to set the variable `MYSQL_PASSWORD` and `MYSQL_USER` before you run the setup. -- Create a `nginx.conf` in the same directory as the docker-compose.yml file (take it from [example](https://github.com/friendica/docker/tree/master/.examples/docker-compose/with-traefik-proxy/mariadb-cron-smtp/fpm/web/nginx.conf)) +- Create a `nginx.conf` in the same directory as the `compose.yaml` file (take it from [example](https://github.com/friendica/docker/tree/master/.examples/docker-compose/with-traefik-proxy/mariadb-cron-smtp/fpm/web/nginx.conf)) ```yaml -version: '2' - services: db: image: mariadb @@ -333,7 +327,7 @@ networks: proxy-tier: ``` -Then run `docker-compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. +Then run `docker compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. # Special settings for DEV/RC images diff --git a/geonetwork/content.md b/geonetwork/content.md index 29117ddd0e59..752eccf8c670 100644 --- a/geonetwork/content.md +++ b/geonetwork/content.md @@ -164,7 +164,7 @@ docker run --name some-%%REPO%% -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeon ### %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). +Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). ### Default credentials diff --git a/ghost/content.md b/ghost/content.md index 773054ee90a3..f47d8dcb944d 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -44,7 +44,7 @@ $ docker run -d \ %%IMAGE%%:alpine ``` -Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the `docker-compose` example below). +Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the Docker Compose example below). ### Docker Volume @@ -91,4 +91,4 @@ The following example demonstrates some of the necessary configuration for runni ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). diff --git a/joomla/content.md b/joomla/content.md index e367ebcee16f..807947500643 100644 --- a/joomla/content.md +++ b/joomla/content.md @@ -52,7 +52,7 @@ $ docker run --name some-%%REPO%% --network some-network -e JOOMLA_DB_HOST=10.1. ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). ## Adding additional libraries / extensions diff --git a/matomo/content.md b/matomo/content.md index ee3f85701d0a..4ac9e8db8806 100644 --- a/matomo/content.md +++ b/matomo/content.md @@ -54,9 +54,9 @@ The PHP memory limit can be configured with the following environment variable: - `PHP_MEMORY_LIMIT` -## Docker-compose examples and log import instructions +## Docker Compose examples and log import instructions -A minimal set-up using docker-compose is available in the [.examples folder](%%GITHUB-REPO%%/tree/master/.examples). +A minimal set-up using Docker Compose is available in the [.examples folder](%%GITHUB-REPO%%/tree/master/.examples). If you want to use the import logs script, you can then run the following container as needed, in order to execute the python import logs script: diff --git a/mediawiki/content.md b/mediawiki/content.md index 7efe69a4edef..e5fe6fccfcdb 100644 --- a/mediawiki/content.md +++ b/mediawiki/content.md @@ -48,7 +48,7 @@ $ docker run --rm %%IMAGE%% tar -cC /var/www/html/sites . | tar -xC /path/on/hos ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). ## Adding additional libraries / extensions diff --git a/monica/content.md b/monica/content.md index 8edab36bc330..4dacccf48275 100644 --- a/monica/content.md +++ b/monica/content.md @@ -30,7 +30,7 @@ docker run --name some-%%REPO%% -d -p 9000:9000 %%IMAGE%%:fpm ### Using an external database -You'll need to setup an external database. Monica currently support MySQL/MariaDB database. You can also link a database container, e. g. `--link my-mysql:db`, and then use `db` as the database host on setup. More info is in the docker-compose section. +You'll need to setup an external database. Monica currently support MySQL/MariaDB database. You can also link a database container, e. g. `--link my-mysql:db`, and then use `db` as the database host on setup. More info is in the Docker Compose section. ### Persistent data storage @@ -52,21 +52,21 @@ Like every Laravel application, the `php artisan` command is very usefull for Mo docker exec CONTAINER_ID php artisan COMMAND ``` -or for docker-compose +Or for Docker Compose: ```console -docker-compose exec %%REPO%% php artisan COMMAND +docker compose exec %%REPO%% php artisan COMMAND ``` -where `%%REPO%%` is the name of the service in your `docker-compose.yml` file. +where `%%REPO%%` is the name of the service in your `compose.yaml` file. ## Configuration using environment variables The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup. -## Running the image with docker-compose +## Running the image with Docker Compose -See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples). +See some examples of Docker Compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples). --- @@ -76,11 +76,9 @@ This version will use the apache image and add a mysql container. The volumes ar Make sure to pass in values for `APP_KEY` variable before you run this setup. -1. Create a `docker-compose.yml` file +1. Create a `compose.yaml` file ```yaml - version: "3.9" - services: app: image: monica @@ -120,7 +118,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 3. Run ```console - docker-compose up -d + docker compose up -d ``` Wait until all migrations are done and then access Monica at http://localhost:8080/ from your host system. If this looks ok, add your first user account. @@ -128,7 +126,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 4. Run this command once: ```console - docker-compose exec app php artisan setup:production + docker compose exec app php artisan setup:production ``` ### FPM version @@ -143,13 +141,11 @@ When using FPM image, you will need another container with a webserver to proxy curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/Dockerfile -o web/Dockerfile ``` - The `web` container image should be pre-build before each deploy with: `docker-compose build`. + The `web` container image should be pre-build before each deploy with: `docker compose build`. -2. Create a `docker-compose.yml` file +2. Create a `compose.yaml` file ```yaml - version: "3.9" - services: app: image: monica:fpm @@ -197,7 +193,7 @@ When using FPM image, you will need another container with a webserver to proxy 4. Run ```console - docker-compose up -d + docker compose up -d ``` Wait until all migrations are done and then access Monica at http://localhost:8080/ from your host system. If this looks ok, add your first user account. @@ -205,7 +201,7 @@ When using FPM image, you will need another container with a webserver to proxy 5. Run this command once: ```console - docker-compose exec app php artisan setup:production + docker compose exec app php artisan setup:production ``` ## Make Monica available from the internet @@ -218,4 +214,4 @@ One way to expose your Monica instance is to use a proxy webserver from your hos ### Using a proxy webserver container -See some examples of docker-compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. +See some examples of Docker Compose possibilities in the [example section](%%GITHUB-REPO%%/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. diff --git a/mysql/content.md b/mysql/content.md index 7616b4c75349..64be74d34ee0 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -38,7 +38,7 @@ More information about the MySQL command line client can be found in the [MySQL ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). ## Container shell access and viewing MySQL logs @@ -152,7 +152,7 @@ The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/ ## No connections until MySQL init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. If the application you're trying to connect to MySQL does not handle MySQL downtime or waiting for MySQL to start gracefully, then putting a connect-retry loop before the service starts might be necessary. For an example of such an implementation in the official images, see [WordPress](https://github.com/docker-library/wordpress/blob/1b48b4bccd7adb0f7ea1431c7b470a40e186f3da/docker-entrypoint.sh#L195-L235) or [Bonita](https://github.com/docker-library/docs/blob/9660a0cccb87d8db842f33bc0578d769caaf3ba9/bonita/stack.yml#L28-L44). diff --git a/nextcloud/content.md b/nextcloud/content.md index 3dbd03b47b49..b83b1347253e 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -26,13 +26,13 @@ Now you can access Nextcloud at http://localhost:8080/ from your host system. ## Using the fpm image -To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. +To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `compose.yaml` file). In both cases you don't want to map the fpm port to your host. ```console $ docker run -d %%IMAGE%%:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [docker-compose section](#running-this-image-with-docker-compose). +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [Docker Compose section](#running-this-image-with-docker-compose). ## Using an external database @@ -274,9 +274,9 @@ Check the [Nexcloud documentation](https://docs.nextcloud.com/server/latest/admi Keep in mind that once set, removing these environment variables won't remove these values from the configuration file, due to how Nextcloud merges configuration files together. -# Running this image with docker-compose +# Running this image with Docker Compose -The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples of what you have to look for. +The easiest way to get a fully featured and functional setup is using a `compose.yaml` file. There are too many different possibilities to setup your system, so here are only some examples of what you have to look for. At first, make sure you have chosen the right base image (fpm or apache) and added features you wanted (see below). In every case, you would want to add a database container and docker volumes to get easy access to your persistent data. When you want to have your server reachable from the internet, adding HTTPS-encryption is mandatory! See below for more information. @@ -287,8 +287,6 @@ This version will use the apache image and add a mariaDB container. The volumes Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` variables before you run this setup. ```yaml -version: '2' - volumes: nextcloud: db: @@ -322,7 +320,7 @@ services: - MYSQL_HOST=db ``` -Then run `docker-compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. +Then run `docker compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. ## Base version - FPM @@ -333,8 +331,6 @@ As this setup does **not include encryption**, it should be run behind a proxy. Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` variables before you run this setup. ```yaml -version: '2' - volumes: nextcloud: db: @@ -378,7 +374,7 @@ services: - app ``` -Then run `docker-compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. +Then run `docker compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. # Docker Secrets @@ -460,7 +456,7 @@ In our [examples](https://github.com/nextcloud/docker/tree/master/.examples) sec # First use -When you first access your Nextcloud, the setup wizard will appear and ask you to choose an administrator account username, password and the database connection. For the database use `db` as host and `nextcloud` as table and user name. Also enter the password you chose in your `docker-compose.yml` file. +When you first access your Nextcloud, the setup wizard will appear and ask you to choose an administrator account username, password and the database connection. For the database use `db` as host and `nextcloud` as table and user name. Also enter the password you chose in your `compose.yaml` file. # Update to a newer version @@ -479,11 +475,11 @@ $ docker run -d %%IMAGE%% Beware that you have to run the same command with the options that you used to initially start your Nextcloud. That includes volumes, port mapping. -When using docker-compose your compose file takes care of your configuration, so you just have to run: +When using Docker Compose, your `compose.yaml` file takes care of your configuration, so you just have to run: ```console -$ docker-compose pull -$ docker-compose up -d +$ docker compose pull +$ docker compose up -d ``` # Adding Features @@ -498,7 +494,7 @@ RUN ... The [examples folder](https://github.com/nextcloud/docker/blob/master/.examples) gives a few examples on how to add certain functionalities, like including the cron job, smb-support or imap-authentication. -If you use your own Dockerfile, you need to configure your docker-compose file accordingly. Switch out the `image` option with `build`. You have to specify the path to your Dockerfile. (in the example it's in the same directory next to the docker-compose file) +If you use your own Dockerfile, you need to configure your `compose.yaml` file accordingly. Switch out the `image` option with `build`. You have to specify the path to your Dockerfile. (in the example it's in the same directory next to the `compose.yaml` file) ```yaml app: @@ -531,11 +527,11 @@ docker build -t your-name --pull . docker run -d your-name ``` -or for docker-compose: +Or for Docker Compose: ```console -docker-compose build --pull -docker-compose up -d +docker compose build --pull +docker compose up -d ``` The `--pull` option tells docker to look for new versions of the base image. Then the build instructions inside your `Dockerfile` are run on top of the new image. @@ -544,7 +540,7 @@ The `--pull` option tells docker to look for new versions of the base image. The You're already using Nextcloud and want to switch to docker? Great! Here are some things to look out for: -1. Define your whole Nextcloud infrastructure in a `docker-compose` file and run it with `docker-compose up -d` to get the base installation, volumes and database. Work from there. +1. Define your whole Nextcloud infrastructure in a `compose.yaml` file and run it with `docker compose up -d` to get the base installation, volumes and database. Work from there. 2. Restore your database from a mysqldump (nextcloud\_db\_1 is the name of your db container) @@ -552,16 +548,16 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" - docker-compose exec db rm /dmp + docker compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" + docker compose exec db rm /dmp ``` - To import from a PostgreSQL dump use to following commands ```console docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" - docker-compose exec db rm /dmp + docker compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" + docker compose exec db rm /dmp ``` 3. Edit your config.php @@ -619,11 +615,11 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./data/ nextcloud_app_1:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/data + docker compose exec app chown -R www-data:www-data /var/www/html/data docker cp ./theming/ nextcloud_app_1:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/theming + docker compose exec app chown -R www-data:www-data /var/www/html/theming docker cp ./config/config.php nextcloud_app_1:/var/www/html/config - docker-compose exec app chown -R www-data:www-data /var/www/html/config + docker compose exec app chown -R www-data:www-data /var/www/html/config ``` If you want to preserve the metadata of your files like timestamps, copy the data directly on the host to the named volume using plain `cp` like this: @@ -636,7 +632,7 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./custom_apps/ nextcloud_data:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/custom_apps + docker compose exec app chown -R www-data:www-data /var/www/html/custom_apps ``` # Questions / Issues diff --git a/percona/content.md b/percona/content.md index 9f6a3a7c09b8..03b949564171 100644 --- a/percona/content.md +++ b/percona/content.md @@ -40,7 +40,7 @@ More information about the MySQL command line client can be found in the [MySQL ## %%STACK%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker stack deploy -c stack.yml %%REPO%%` (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). ## Container shell access and viewing MySQL logs @@ -172,7 +172,7 @@ The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/ ## No connections until MySQL init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. If the application you're trying to connect to MySQL does not handle MySQL downtime or waiting for MySQL to start gracefully, then a putting a connect-retry loop before the service starts might be necessary. For an example of such an implementation in the official images, see [WordPress](https://github.com/docker-library/wordpress/blob/1b48b4bccd7adb0f7ea1431c7b470a40e186f3da/docker-entrypoint.sh#L195-L235) or [Bonita](https://github.com/docker-library/docs/blob/9660a0cccb87d8db842f33bc0578d769caaf3ba9/bonita/stack.yml#L28-L44). diff --git a/phpmyadmin/content.md b/phpmyadmin/content.md index 20f8baf6d0ea..cb5abbf2b629 100644 --- a/phpmyadmin/content.md +++ b/phpmyadmin/content.md @@ -62,7 +62,7 @@ You can use arbitrary servers by adding the environment variable `PMA_ARBITRARY= docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 %%IMAGE%% ``` -## Usage with docker-compose and arbitrary server +## Usage with Docker Compose and arbitrary server This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. diff --git a/storm/content.md b/storm/content.md index a18b4a120319..1b8af1af3a72 100644 --- a/storm/content.md +++ b/storm/content.md @@ -54,7 +54,7 @@ $ docker run -it -v $(pwd)/topology.jar:/topology.jar %%IMAGE%% storm jar /topol ## %%STACK%% -Run `docker stack deploy -c stack.yml storm` (or `docker-compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). +Run `docker stack deploy -c stack.yml storm` (or `docker compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). ## Configuration From e3ae9e0549b17bc927cea1314ac4ff2dd955782e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Dec 2024 14:09:20 -0800 Subject: [PATCH 1737/2686] Run update.sh --- emqx/README.md | 12 +----------- golang/README.md | 8 ++++---- ruby/README.md | 16 ++++++++-------- 3 files changed, 13 insertions(+), 23 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 63963ef5339d..caf529386912 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -24,19 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1`, `5.2`](https://github.com/emqx/emqx-docker/blob/eb71b6a3cca1505e14d4b0e6fcd50a43330125bb/5.2/Dockerfile) - -- [`5.3.2`, `5.3`](https://github.com/emqx/emqx-docker/blob/1572ca48b4bc890edfc157b00be271d9a1b878d4/5.3/Dockerfile) - -- [`5.4.1`, `5.4`](https://github.com/emqx/emqx-docker/blob/a180d28d9a6b4ebc752aa2de3a456887f4a416cc/5.4/Dockerfile) - -- [`5.5.1`, `5.5`](https://github.com/emqx/emqx-docker/blob/17a2814880d4852d0611c06c31007ca2a2633199/5.5/Dockerfile) - -- [`5.6.1`, `5.6`](https://github.com/emqx/emqx-docker/blob/e0af46182038ded4d6f45879846ddf765b6b5613/5.6/Dockerfile) - - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.2`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/3867b976864f6707fd3305ea3e5f8e41c0eb0690/5.8/Dockerfile) +- [`5.8.3`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5ac2e927cf2111d81f32e027a09b554719b9558d/5.8/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 8db1790e35c6..77dbba801bb6 100644 --- a/golang/README.md +++ b/golang/README.md @@ -32,9 +32,9 @@ WARNING: - [`1.23.4-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bullseye/Dockerfile) -- [`1.23.4-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.23.4-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.20/Dockerfile) +- [`1.23.4-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.4-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/8e03f834d58f58e01b504a9ddd4e672173720f81/1.23/alpine3.21/Dockerfile) -- [`1.23.4-alpine3.19`, `1.23-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.19/Dockerfile) +- [`1.23.4-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.20/Dockerfile) - [`1.23.4-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) @@ -48,9 +48,9 @@ WARNING: - [`1.22.10-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bullseye/Dockerfile) -- [`1.22.10-alpine3.20`, `1.22-alpine3.20`, `1.22.10-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.20/Dockerfile) +- [`1.22.10-alpine3.21`, `1.22-alpine3.21`, `1.22.10-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/8e03f834d58f58e01b504a9ddd4e672173720f81/1.22/alpine3.21/Dockerfile) -- [`1.22.10-alpine3.19`, `1.22-alpine3.19`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.19/Dockerfile) +- [`1.22.10-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.20/Dockerfile) - [`1.22.10-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 680e9941830d..b99512a08cd7 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -32,9 +32,9 @@ WARNING: - [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-preview2-alpine3.21`, `3.4-rc-alpine3.21`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.4-rc/alpine3.21/Dockerfile) -- [`3.4.0-preview2-alpine3.19`, `3.4-rc-alpine3.19`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/alpine3.19/Dockerfile) +- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.4-rc/alpine3.20/Dockerfile) - [`3.3.6-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/bookworm/Dockerfile) @@ -44,9 +44,9 @@ WARNING: - [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.19`, `3.3-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/alpine3.19/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.3/alpine3.20/Dockerfile) - [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/bookworm/Dockerfile) @@ -56,9 +56,9 @@ WARNING: - [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.2/alpine3.21/Dockerfile) -- [`3.2.6-alpine3.19`, `3.2-alpine3.19`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/alpine3.19/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.2/alpine3.20/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) @@ -68,9 +68,9 @@ WARNING: - [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.19`, `3.1-alpine3.19`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/alpine3.19/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/bbd386f9c78b59db5ba41a01cdbb8decd740c231/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) From 5f83b107ef7bd4f18381b09c2a50b4f3cdcbdcf5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Dec 2024 15:09:12 -0800 Subject: [PATCH 1738/2686] Run update.sh --- backdrop/README.md | 6 ++-- bonita/README.md | 2 +- cassandra/README.md | 2 +- convertigo/README.md | 6 ++-- drupal/README.md | 2 +- eggdrop/README.md | 6 ++-- emqx/README.md | 70 +++++++++++++++++++++----------------------- friendica/README.md | 20 +++++-------- geonetwork/README.md | 2 +- ghost/README.md | 4 +-- joomla/README.md | 2 +- matomo/README.md | 4 +-- mediawiki/README.md | 2 +- monica/README.md | 32 +++++++++----------- mysql/README.md | 4 +-- nextcloud/README.md | 50 +++++++++++++++---------------- percona/README.md | 4 +-- phpmyadmin/README.md | 2 +- storm/README.md | 2 +- 19 files changed, 103 insertions(+), 119 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index 55b859f8e15a..8c598ac48a0b 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -93,9 +93,9 @@ $ docker run --name some-backdrop \ -d backdrop ``` -## ... via [`docker-compose`](https://github.com/docker/compose) +## ... via [Docker Compose](https://github.com/docker/compose) -Example `docker-compose.yml` for `backdrop`: +Example `compose.yaml` for `backdrop`: ```yaml backdrop: @@ -114,7 +114,7 @@ db: MYSQL_DATABASE: backdrop ``` -Run `docker-compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. ## Adding additional libraries / extensions diff --git a/bonita/README.md b/bonita/README.md index fe6d48ceeb2d..a10a460e37f9 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -129,7 +129,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/b9ac3b631e82399477dd12a906f6bf68b3d872b3/bonita/stack.yml) -Run `docker stack deploy -c stack.yml bonita` (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). +Run `docker stack deploy -c stack.yml bonita` (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). - Replace `` with the one used in the licence generation command - leave double `$$` untouched diff --git a/cassandra/README.md b/cassandra/README.md index c503b7f7e56b..a930a9f5af08 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -169,7 +169,7 @@ The `-v /my/own/datadir:/var/lib/cassandra` part of the command mounts the `/my/ ## No connections until Cassandra init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. # License diff --git a/convertigo/README.md b/convertigo/README.md index edf9e52d28f0..1222dd8bad1f 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -322,15 +322,15 @@ The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way: $ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 convertigo ``` -## Pre configurated Docker compose stack +## Pre-configurated Docker Compose file -You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. +You can use [this Docker Compose file](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. ```console $ mkdir c8oMBaaS $ cd c8oMBaaS $ wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml -$ docker-compose up -d +$ docker compose up -d ``` # License diff --git a/drupal/README.md b/drupal/README.md index a2496ba2a1bb..f00cd084c7f8 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -271,7 +271,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/drupal/stack.yml) -Run `docker stack deploy -c stack.yml drupal` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` +Run `docker stack deploy -c stack.yml drupal` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` ## Adding additional libraries / extensions diff --git a/eggdrop/README.md b/eggdrop/README.md index 50136d0ba4eb..1ccb4eab6d87 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -155,13 +155,13 @@ to your docker run command line. ## Common Errors -# docker-compose.yml +# compose.yaml -A docker-compose.yml example is hosted at https://github.com/eggheads/eggdrop-docker/blob/master/docker-compose.yml . A common error creating your own docker-compose.yml file from scratch is not adding +A `docker-compose.yml` example is hosted at https://github.com/eggheads/eggdrop-docker/blob/master/docker-compose.yml. A common error creating your own Docker Compose file from scratch is not adding: stdin_open: true -to the docker-compose.yml file. Without it, Eggdrop will give you an "END OF FILE ON TERMINAL" error and not start. +Without it, Eggdrop will give you an "END OF FILE ON TERMINAL" error and not start. ## Troubleshooting / Support diff --git a/emqx/README.md b/emqx/README.md index caf529386912..f63247a39217 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -111,53 +111,51 @@ If not specified, EMQX determines its node name based on the running environment EMQX supports a variety of clustering methods, see our [documentation](https://docs.emqx.com/en/emqx/latest/deploy/cluster/create-cluster.html) for details. -Let's create a static node list cluster from docker-compose. +Let's create a static node list cluster from Docker Compose. -- Create `docker-compose.yaml`: +- Create `compose.yaml`: ```yaml - version: '3' - - services: - emqx1: - image: emqx:latest - environment: - - "EMQX_NODE__NAME=emqx@node1.emqx.io" - - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" - networks: - emqx-bridge: - aliases: - - node1.emqx.io - - emqx2: - image: emqx:latest - environment: - - "EMQX_NODE__NAME=emqx@node2.emqx.io" - - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" - - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" - networks: - emqx-bridge: - aliases: - - node2.emqx.io - - networks: - emqx-bridge: - driver: bridge +services: + emqx1: + image: emqx:latest + environment: + - "EMQX_NODE__NAME=emqx@node1.emqx.io" + - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" + - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" + networks: + emqx-bridge: + aliases: + - node1.emqx.io + + emqx2: + image: emqx:latest + environment: + - "EMQX_NODE__NAME=emqx@node2.emqx.io" + - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" + - "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io, emqx@node2.emqx.io]" + networks: + emqx-bridge: + aliases: + - node2.emqx.io + +networks: + emqx-bridge: + driver: bridge ``` -- Start the docker-compose cluster +- Start the Docker Compose services ```bash - docker-compose -p my_emqx up -d +docker compose -p my_emqx up -d ``` - View cluster ```bash - $ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" - Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], - stopped_nodes => []} +$ docker exec -it my_emqx_emqx1_1 sh -c "emqx ctl cluster status" +Cluster status: #{running_nodes => ['emqx@node1.emqx.io','emqx@node2.emqx.io'], + stopped_nodes => []} ``` ### Persistence @@ -169,7 +167,7 @@ If you want to persist the EMQX docker container, you need to keep the following Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. To make this work, one needs to set the host part of `EMQX_NODE__NAME` to something static that does not change when you restart or recreate the container. It could be container name, hostname or loopback IP address `127.0.0.1` if you only have one node. -In if you use docker-compose, the configuration would look something like this: +In if you use Docker Compose, the configuration would look something like this: ```YAML volumes: diff --git a/friendica/README.md b/friendica/README.md index 6ca239fe8025..9c3f79fd2ef1 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -91,13 +91,13 @@ Now you can access the Friendica installation wizard at http://localhost:8080/ f ## Using the fpm image -To use the fpm image you need an additional web server that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases you might want use another container or your host as proxy. If you use your host you can address your Friendica container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to you host. +To use the fpm image you need an additional web server that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases you might want use another container or your host as proxy. If you use your host you can address your Friendica container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `compose.yaml` file). In both cases you don't want to map the fpm port to you host. ```console $ docker run -d friendica:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the docker-compose section. +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the Docker Compose section. ## Background tasks @@ -222,8 +222,6 @@ The Friendica image supports auto configuration via environment variables. You c As an alternative to passing sensitive information via environment variables, _FILE may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in /run/secrets/ files. For example: ```yaml -version: '3.2' - services: db: image: mariadb @@ -283,9 +281,9 @@ Currently, this is only supported for `FRIENDICA_ADMIN_MAIL`, `MYSQL_DATABASE`, You have to pull the latest image from the hub (`docker pull friendica`). The stable branch gets checked at every startup and will get updated if no installation was found or a new image is used. -# Running this image with docker-compose +# Running this image with Docker Compose -The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for. +The easiest way to get a fully featured and functional setup is using a `compose.yaml` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for. At first make sure you have chosen the right base image (fpm or apache) and added the features you wanted (see below). In every case you want to add a database container and docker volumes to get easy access to your persistent data. When you want your server reachable from the internet adding HTTPS-encryption is mandatory! See below for more information. @@ -296,8 +294,6 @@ This version will use the apache image and add a mariaDB container. The volumes Make sure to set the variable `MYSQL_PASSWORD` before run this setup. ```yaml -version: '2' - services: db: image: mariadb @@ -331,7 +327,7 @@ volumes: friendica: ``` -Then run `docker-compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. +Then run `docker compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. ## Base version - FPM @@ -344,11 +340,9 @@ As this setup does **not include encryption** it should to be run behind a proxy Prerequisites for this example: - Make sure to set the variable `MYSQL_PASSWORD` and `MYSQL_USER` before you run the setup. -- Create a `nginx.conf` in the same directory as the docker-compose.yml file (take it from [example](https://github.com/friendica/docker/tree/master/.examples/docker-compose/with-traefik-proxy/mariadb-cron-smtp/fpm/web/nginx.conf)) +- Create a `nginx.conf` in the same directory as the `compose.yaml` file (take it from [example](https://github.com/friendica/docker/tree/master/.examples/docker-compose/with-traefik-proxy/mariadb-cron-smtp/fpm/web/nginx.conf)) ```yaml -version: '2' - services: db: image: mariadb @@ -396,7 +390,7 @@ networks: proxy-tier: ``` -Then run `docker-compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. +Then run `docker compose up -d`, now you can access Friendica at http://localhost:8080/ from your system. # Special settings for DEV/RC images diff --git a/geonetwork/README.md b/geonetwork/README.md index 2a4cc5287ff6..79f5c0bdb98b 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -345,7 +345,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/c36fe01925fbb3bd409b060190b7d99be5107af0/geonetwork/stack.yml) -Run `docker stack deploy -c stack.yml geonetwork` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). +Run `docker stack deploy -c stack.yml geonetwork` (or `docker compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). ### Default credentials diff --git a/ghost/README.md b/ghost/README.md index 801321d09e7e..f3d710f0432e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -93,7 +93,7 @@ $ docker run -d \ ghost:alpine ``` -Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the `docker-compose` example below). +Note: `database__connection__filename` is only valid in development mode and is the location for the SQLite database file. If using development mode, it should be set to a writeable path within a persistent folder (bind mount or volume). It is not available in production mode because an external MySQL server is required (see the Docker Compose example below). ### Docker Volume @@ -181,7 +181,7 @@ volumes: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/ghost/stack.yml) -Run `docker stack deploy -c stack.yml ghost` (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). +Run `docker stack deploy -c stack.yml ghost` (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). # Image Variants diff --git a/joomla/README.md b/joomla/README.md index 3164bbd8a949..8626355b2246 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -175,7 +175,7 @@ networks: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/20d0481fba2d7a3d015932887b2257ec96b01f20/joomla/stack.yml) -Run `docker stack deploy -c stack.yml joomla` (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). +Run `docker stack deploy -c stack.yml joomla` (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). ## Adding additional libraries / extensions diff --git a/matomo/README.md b/matomo/README.md index 4600ea554c16..559ef9aaedd8 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -105,9 +105,9 @@ The PHP memory limit can be configured with the following environment variable: - `PHP_MEMORY_LIMIT` -## Docker-compose examples and log import instructions +## Docker Compose examples and log import instructions -A minimal set-up using docker-compose is available in the [.examples folder](https://github.com/matomo-org/docker/tree/master/.examples). +A minimal set-up using Docker Compose is available in the [.examples folder](https://github.com/matomo-org/docker/tree/master/.examples). If you want to use the import logs script, you can then run the following container as needed, in order to execute the python import logs script: diff --git a/mediawiki/README.md b/mediawiki/README.md index b4f58e1edd80..7e3b440c92d2 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -153,7 +153,7 @@ volumes: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8fc63a1c6c985353af894baed5f7f4ae73c056f7/mediawiki/stack.yml) -Run `docker stack deploy -c stack.yml mediawiki` (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). +Run `docker stack deploy -c stack.yml mediawiki` (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). ## Adding additional libraries / extensions diff --git a/monica/README.md b/monica/README.md index 92d0dcc7842b..db01d744428e 100644 --- a/monica/README.md +++ b/monica/README.md @@ -87,7 +87,7 @@ docker run --name some-monica -d -p 9000:9000 monica:fpm ### Using an external database -You'll need to setup an external database. Monica currently support MySQL/MariaDB database. You can also link a database container, e. g. `--link my-mysql:db`, and then use `db` as the database host on setup. More info is in the docker-compose section. +You'll need to setup an external database. Monica currently support MySQL/MariaDB database. You can also link a database container, e. g. `--link my-mysql:db`, and then use `db` as the database host on setup. More info is in the Docker Compose section. ### Persistent data storage @@ -109,21 +109,21 @@ Like every Laravel application, the `php artisan` command is very usefull for Mo docker exec CONTAINER_ID php artisan COMMAND ``` -or for docker-compose +Or for Docker Compose: ```console -docker-compose exec monica php artisan COMMAND +docker compose exec monica php artisan COMMAND ``` -where `monica` is the name of the service in your `docker-compose.yml` file. +where `monica` is the name of the service in your `compose.yaml` file. ## Configuration using environment variables The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup. -## Running the image with docker-compose +## Running the image with Docker Compose -See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples). +See some examples of Docker Compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples). --- @@ -133,11 +133,9 @@ This version will use the apache image and add a mysql container. The volumes ar Make sure to pass in values for `APP_KEY` variable before you run this setup. -1. Create a `docker-compose.yml` file +1. Create a `compose.yaml` file ```yaml - version: "3.9" - services: app: image: monica @@ -177,7 +175,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 3. Run ```console - docker-compose up -d + docker compose up -d ``` Wait until all migrations are done and then access Monica at http://localhost:8080/ from your host system. If this looks ok, add your first user account. @@ -185,7 +183,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup. 4. Run this command once: ```console - docker-compose exec app php artisan setup:production + docker compose exec app php artisan setup:production ``` ### FPM version @@ -200,13 +198,11 @@ When using FPM image, you will need another container with a webserver to proxy curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/Dockerfile -o web/Dockerfile ``` - The `web` container image should be pre-build before each deploy with: `docker-compose build`. + The `web` container image should be pre-build before each deploy with: `docker compose build`. -2. Create a `docker-compose.yml` file +2. Create a `compose.yaml` file ```yaml - version: "3.9" - services: app: image: monica:fpm @@ -254,7 +250,7 @@ When using FPM image, you will need another container with a webserver to proxy 4. Run ```console - docker-compose up -d + docker compose up -d ``` Wait until all migrations are done and then access Monica at http://localhost:8080/ from your host system. If this looks ok, add your first user account. @@ -262,7 +258,7 @@ When using FPM image, you will need another container with a webserver to proxy 5. Run this command once: ```console - docker-compose exec app php artisan setup:production + docker compose exec app php artisan setup:production ``` ## Make Monica available from the internet @@ -275,7 +271,7 @@ One way to expose your Monica instance is to use a proxy webserver from your hos ### Using a proxy webserver container -See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. +See some examples of Docker Compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples) to show how to a proxy webserver with ssl capabilities. # Image Variants diff --git a/mysql/README.md b/mysql/README.md index a3c079bafd19..a11f5828b7de 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -109,7 +109,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/869019c74d53153ad95bf9f6ff285d215c95e3ac/mysql/stack.yml) -Run `docker stack deploy -c stack.yml mysql` (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). +Run `docker stack deploy -c stack.yml mysql` (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). ## Container shell access and viewing MySQL logs @@ -223,7 +223,7 @@ The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/ ## No connections until MySQL init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. If the application you're trying to connect to MySQL does not handle MySQL downtime or waiting for MySQL to start gracefully, then putting a connect-retry loop before the service starts might be necessary. For an example of such an implementation in the official images, see [WordPress](https://github.com/docker-library/wordpress/blob/1b48b4bccd7adb0f7ea1431c7b470a40e186f3da/docker-entrypoint.sh#L195-L235) or [Bonita](https://github.com/docker-library/docs/blob/9660a0cccb87d8db842f33bc0578d769caaf3ba9/bonita/stack.yml#L28-L44). diff --git a/nextcloud/README.md b/nextcloud/README.md index 0d98cfeb4d56..09b410351b40 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -93,13 +93,13 @@ Now you can access Nextcloud at http://localhost:8080/ from your host system. ## Using the fpm image -To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `docker-compose` file). In both cases you don't want to map the fpm port to your host. +To use the fpm image, you need an additional web server, such as [nginx](https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html), that can proxy http-request to the fpm-port of the container. For fpm connection this container exposes port 9000. In most cases, you might want to use another container or your host as proxy. If you use your host you can address your Nextcloud container directly on port 9000. If you use another container, make sure that you add them to the same docker network (via `docker run --network ...` or a `compose.yaml` file). In both cases you don't want to map the fpm port to your host. ```console $ docker run -d nextcloud:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [docker-compose section](#running-this-image-with-docker-compose). +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [Docker Compose section](#running-this-image-with-docker-compose). ## Using an external database @@ -341,9 +341,9 @@ Check the [Nexcloud documentation](https://docs.nextcloud.com/server/latest/admi Keep in mind that once set, removing these environment variables won't remove these values from the configuration file, due to how Nextcloud merges configuration files together. -# Running this image with docker-compose +# Running this image with Docker Compose -The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples of what you have to look for. +The easiest way to get a fully featured and functional setup is using a `compose.yaml` file. There are too many different possibilities to setup your system, so here are only some examples of what you have to look for. At first, make sure you have chosen the right base image (fpm or apache) and added features you wanted (see below). In every case, you would want to add a database container and docker volumes to get easy access to your persistent data. When you want to have your server reachable from the internet, adding HTTPS-encryption is mandatory! See below for more information. @@ -354,8 +354,6 @@ This version will use the apache image and add a mariaDB container. The volumes Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` variables before you run this setup. ```yaml -version: '2' - volumes: nextcloud: db: @@ -389,7 +387,7 @@ services: - MYSQL_HOST=db ``` -Then run `docker-compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. +Then run `docker compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. ## Base version - FPM @@ -400,8 +398,6 @@ As this setup does **not include encryption**, it should be run behind a proxy. Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` variables before you run this setup. ```yaml -version: '2' - volumes: nextcloud: db: @@ -445,7 +441,7 @@ services: - app ``` -Then run `docker-compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. +Then run `docker compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system. # Docker Secrets @@ -527,7 +523,7 @@ In our [examples](https://github.com/nextcloud/docker/tree/master/.examples) sec # First use -When you first access your Nextcloud, the setup wizard will appear and ask you to choose an administrator account username, password and the database connection. For the database use `db` as host and `nextcloud` as table and user name. Also enter the password you chose in your `docker-compose.yml` file. +When you first access your Nextcloud, the setup wizard will appear and ask you to choose an administrator account username, password and the database connection. For the database use `db` as host and `nextcloud` as table and user name. Also enter the password you chose in your `compose.yaml` file. # Update to a newer version @@ -546,11 +542,11 @@ $ docker run -d nextcloud Beware that you have to run the same command with the options that you used to initially start your Nextcloud. That includes volumes, port mapping. -When using docker-compose your compose file takes care of your configuration, so you just have to run: +When using Docker Compose, your `compose.yaml` file takes care of your configuration, so you just have to run: ```console -$ docker-compose pull -$ docker-compose up -d +$ docker compose pull +$ docker compose up -d ``` # Adding Features @@ -565,7 +561,7 @@ RUN ... The [examples folder](https://github.com/nextcloud/docker/blob/master/.examples) gives a few examples on how to add certain functionalities, like including the cron job, smb-support or imap-authentication. -If you use your own Dockerfile, you need to configure your docker-compose file accordingly. Switch out the `image` option with `build`. You have to specify the path to your Dockerfile. (in the example it's in the same directory next to the docker-compose file) +If you use your own Dockerfile, you need to configure your `compose.yaml` file accordingly. Switch out the `image` option with `build`. You have to specify the path to your Dockerfile. (in the example it's in the same directory next to the `compose.yaml` file) ```yaml app: @@ -598,11 +594,11 @@ docker build -t your-name --pull . docker run -d your-name ``` -or for docker-compose: +Or for Docker Compose: ```console -docker-compose build --pull -docker-compose up -d +docker compose build --pull +docker compose up -d ``` The `--pull` option tells docker to look for new versions of the base image. Then the build instructions inside your `Dockerfile` are run on top of the new image. @@ -611,7 +607,7 @@ The `--pull` option tells docker to look for new versions of the base image. The You're already using Nextcloud and want to switch to docker? Great! Here are some things to look out for: -1. Define your whole Nextcloud infrastructure in a `docker-compose` file and run it with `docker-compose up -d` to get the base installation, volumes and database. Work from there. +1. Define your whole Nextcloud infrastructure in a `compose.yaml` file and run it with `docker compose up -d` to get the base installation, volumes and database. Work from there. 2. Restore your database from a mysqldump (nextcloud\_db\_1 is the name of your db container) @@ -619,16 +615,16 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" - docker-compose exec db rm /dmp + docker compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp" + docker compose exec db rm /dmp ``` - To import from a PostgreSQL dump use to following commands ```console docker cp ./database.dmp nextcloud_db_1:/dmp - docker-compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" - docker-compose exec db rm /dmp + docker compose exec db sh -c "psql -U USER --set ON_ERROR_STOP=on nextcloud < /dmp" + docker compose exec db rm /dmp ``` 3. Edit your config.php @@ -686,11 +682,11 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./data/ nextcloud_app_1:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/data + docker compose exec app chown -R www-data:www-data /var/www/html/data docker cp ./theming/ nextcloud_app_1:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/theming + docker compose exec app chown -R www-data:www-data /var/www/html/theming docker cp ./config/config.php nextcloud_app_1:/var/www/html/config - docker-compose exec app chown -R www-data:www-data /var/www/html/config + docker compose exec app chown -R www-data:www-data /var/www/html/config ``` If you want to preserve the metadata of your files like timestamps, copy the data directly on the host to the named volume using plain `cp` like this: @@ -703,7 +699,7 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som ```console docker cp ./custom_apps/ nextcloud_data:/var/www/html/ - docker-compose exec app chown -R www-data:www-data /var/www/html/custom_apps + docker compose exec app chown -R www-data:www-data /var/www/html/custom_apps ``` # Questions / Issues diff --git a/percona/README.md b/percona/README.md index ff6cf9f7d092..7e6c5426eae2 100644 --- a/percona/README.md +++ b/percona/README.md @@ -112,7 +112,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/percona/stack.yml) -Run `docker stack deploy -c stack.yml percona` (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). +Run `docker stack deploy -c stack.yml percona` (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). ## Container shell access and viewing MySQL logs @@ -244,7 +244,7 @@ The `-v /my/own/datadir:/var/lib/mysql` part of the command mounts the `/my/own/ ## No connections until MySQL init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as Docker Compose, which start several containers simultaneously. If the application you're trying to connect to MySQL does not handle MySQL downtime or waiting for MySQL to start gracefully, then a putting a connect-retry loop before the service starts might be necessary. For an example of such an implementation in the official images, see [WordPress](https://github.com/docker-library/wordpress/blob/1b48b4bccd7adb0f7ea1431c7b470a40e186f3da/docker-entrypoint.sh#L195-L235) or [Bonita](https://github.com/docker-library/docs/blob/9660a0cccb87d8db842f33bc0578d769caaf3ba9/bonita/stack.yml#L28-L44). diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 9ae0ae6f75bf..4c929608d34e 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -113,7 +113,7 @@ You can use arbitrary servers by adding the environment variable `PMA_ARBITRARY= docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 phpmyadmin ``` -## Usage with docker-compose and arbitrary server +## Usage with Docker Compose and arbitrary server This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. diff --git a/storm/README.md b/storm/README.md index a8d315b3c796..97d8d5c6ab45 100644 --- a/storm/README.md +++ b/storm/README.md @@ -141,7 +141,7 @@ services: [![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/storm/stack.yml) -Run `docker stack deploy -c stack.yml storm` (or `docker-compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). +Run `docker stack deploy -c stack.yml storm` (or `docker compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). ## Configuration From f0f610e4018dedf74a3046600fd834d941386676 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Dec 2024 10:09:28 -0800 Subject: [PATCH 1739/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index a115c84da182..4b9ad3e4833e 100644 --- a/node/README.md +++ b/node/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.19`, `23.3-alpine3.19`, `23.3.0-alpine3.19`, `alpine3.19`, `current-alpine3.19`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.19/Dockerfile) +- [`23-alpine3.20`, `23.3-alpine3.20`, `23.3.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.20`, `23.3-alpine`, `23.3-alpine3.20`, `23.3.0-alpine`, `23.3.0-alpine3.20`, `alpine`, `alpine3.20`, `current-alpine`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.20/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.3-alpine`, `23.3-alpine3.21`, `23.3.0-alpine`, `23.3.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/23/alpine3.21/Dockerfile) - [`23`, `23-bookworm`, `23.3`, `23.3-bookworm`, `23.3.0`, `23.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bookworm/Dockerfile) @@ -36,9 +36,9 @@ WARNING: - [`23-bullseye-slim`, `23.3-bullseye-slim`, `23.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye-slim/Dockerfile) -- [`22-alpine3.19`, `22.12-alpine3.19`, `22.12.0-alpine3.19`, `jod-alpine3.19`, `lts-alpine3.19`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.19/Dockerfile) +- [`22-alpine3.20`, `22.12-alpine3.20`, `22.12.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.20`, `22.12-alpine`, `22.12-alpine3.20`, `22.12.0-alpine`, `22.12.0-alpine3.20`, `jod-alpine`, `jod-alpine3.20`, `lts-alpine`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.12-alpine`, `22.12-alpine3.21`, `22.12.0-alpine`, `22.12.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/22/alpine3.21/Dockerfile) - [`22`, `22-bookworm`, `22.12`, `22.12-bookworm`, `22.12.0`, `22.12.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bookworm/Dockerfile) @@ -48,9 +48,9 @@ WARNING: - [`22-bullseye-slim`, `22.12-bullseye-slim`, `22.12.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bullseye-slim/Dockerfile) -- [`20-alpine3.19`, `20.18-alpine3.19`, `20.18.1-alpine3.19`, `iron-alpine3.19`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.19/Dockerfile) +- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.20`, `20.18-alpine`, `20.18-alpine3.20`, `20.18.1-alpine`, `20.18.1-alpine3.20`, `iron-alpine`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.20/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.1-alpine`, `20.18.1-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/20/alpine3.21/Dockerfile) - [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.1`, `20.18.1-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bookworm/Dockerfile) @@ -60,9 +60,9 @@ WARNING: - [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.1-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bullseye-slim/Dockerfile) -- [`18-alpine3.19`, `18.20-alpine3.19`, `18.20.5-alpine3.19`, `hydrogen-alpine3.19`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.19/Dockerfile) +- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.5-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.20/Dockerfile) -- [`18-alpine`, `18-alpine3.20`, `18.20-alpine`, `18.20-alpine3.20`, `18.20.5-alpine`, `18.20.5-alpine3.20`, `hydrogen-alpine`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.20/Dockerfile) +- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.5-alpine`, `18.20.5-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/18/alpine3.21/Dockerfile) - [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.5`, `18.20.5-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bookworm/Dockerfile) From 26f3d6ef866fbf1761dd0fcf805b67c8c2f97f05 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Dec 2024 11:09:20 -0800 Subject: [PATCH 1740/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- gazebo/README.md | 4 ++-- ibmjava/README.md | 6 +++--- maven/README.md | 12 ++++++------ neo4j/README.md | 8 ++++---- odoo/README.md | 6 +++--- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 149e9be59074..49722a2b62f8 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.base) +- [`latest`, `base`, `base-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.base) -- [`base-devel`, `base-devel-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241201.0.284684`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/f3f1b66edab3e90ee10cb4d725da7c9623e31e02/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 53e64e72de4d..f0510cbe606c 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/518c3b0f163eb92d2360c799c985db9b8884a00e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/08f41a5297c0b0d27fad6899032357061335bb92/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 48f1fdd957c4..81d832c172f0 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/352585385ffc7d8b4df1fd9a7240313b132631e2/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) +- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/f7bb3258d4814deec1eca7e46cbb8d7f4b054431/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) -- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/352585385ffc7d8b4df1fd9a7240313b132631e2/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) +- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/f7bb3258d4814deec1eca7e46cbb8d7f4b054431/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 32eaa852e3ce..8e80ba1b303c 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/e3aecb4989f22421c559448e0296af56c4c14e41/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 766abae8f36c..e08e385d74cd 100644 --- a/maven/README.md +++ b/maven/README.md @@ -30,7 +30,7 @@ WARNING: - [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17/Dockerfile) +- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/87e4983f3606bd066dfaede1471e977a54df5ca2/eclipse-temurin-17/Dockerfile) - [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-alpine/Dockerfile) @@ -70,7 +70,7 @@ WARNING: - [`3.9.9-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11-debian/Dockerfile) +- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-11-debian/Dockerfile) - [`3.9.9-amazoncorretto-17`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17/Dockerfile) @@ -78,7 +78,7 @@ WARNING: - [`3.9.9-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17-debian/Dockerfile) +- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-17-debian/Dockerfile) - [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21/Dockerfile) @@ -86,7 +86,7 @@ WARNING: - [`3.9.9-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21-debian/Dockerfile) +- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-21-debian/Dockerfile) - [`3.9.9-amazoncorretto-23`, `3.9-amazoncorretto-23`, `3-amazoncorretto-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23/Dockerfile) @@ -94,7 +94,7 @@ WARNING: - [`3.9.9-amazoncorretto-23-alpine`, `3.9-amazoncorretto-23-alpine`, `3-amazoncorretto-23-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-23-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23-debian/Dockerfile) +- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-23-debian/Dockerfile) - [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8/Dockerfile) @@ -102,7 +102,7 @@ WARNING: - [`3.9.9-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8-debian/Dockerfile) +- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-8-debian/Dockerfile) - [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-11/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index ca92662c45b5..9b4dd62a62b1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.25.1-community-bullseye`, `5.25-community-bullseye`, `5-community-bullseye`, `5.25.1-community`, `5.25-community`, `5-community`, `5.25.1-bullseye`, `5.25-bullseye`, `5-bullseye`, `5.25.1`, `5.25`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/bullseye/community/Dockerfile) +- [`5.26.0-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.0-community`, `5.26-community`, `5-community`, `5.26.0-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.0`, `5.26`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/bullseye/community/Dockerfile) -- [`5.25.1-enterprise-bullseye`, `5.25-enterprise-bullseye`, `5-enterprise-bullseye`, `5.25.1-enterprise`, `5.25-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/bullseye/enterprise/Dockerfile) +- [`5.26.0-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.0-enterprise`, `5.26-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/bullseye/enterprise/Dockerfile) -- [`5.25.1-community-ubi9`, `5.25-community-ubi9`, `5-community-ubi9`, `5.25.1-ubi9`, `5.25-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/ubi9/community/Dockerfile) +- [`5.26.0-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.0-ubi9`, `5.26-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/ubi9/community/Dockerfile) -- [`5.25.1-enterprise-ubi9`, `5.25-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c0776401a41452ffbad1160f8b2b474c6c85a2a5/5.25.1/ubi9/enterprise/Dockerfile) +- [`5.26.0-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/ubi9/enterprise/Dockerfile) - [`4.4.39`, `4.4.39-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e0b93f39e18ba02d3c37677b70fd869070df0515/4.4.39/bullseye/community/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 7e933c90359b..86ac2273f3ae 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241125`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/18.0/Dockerfile) +- [`18.0-20241209`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/18.0/Dockerfile) -- [`17.0-20241125`, `17.0`, `17`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/17.0/Dockerfile) +- [`17.0-20241209`, `17.0`, `17`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/17.0/Dockerfile) -- [`16.0-20241125`, `16.0`, `16`](https://github.com/odoo/docker/blob/5c9e504bfbf35c2e086bfb6057d7003d8a2dca1c/16.0/Dockerfile) +- [`16.0-20241209`, `16.0`, `16`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/16.0/Dockerfile) # Quick reference (cont.) From 9fa556dd68f173081cd6213868bf355e22e87332 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Dec 2024 12:09:27 -0800 Subject: [PATCH 1741/2686] Run update.sh --- docker/README.md | 31 +++++------------ memcached/README.md | 2 +- mongo/README.md | 56 ++++++++---------------------- php/README.md | 84 +++++++++++++++++++++++++++++++++++++++++++++ postgres/README.md | 24 ++++++------- python/README.md | 24 ++++++------- 6 files changed, 132 insertions(+), 89 deletions(-) diff --git a/docker/README.md b/docker/README.md index f753e795688c..7555c6805b99 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`27.4.0-rc.4-cli`, `27-rc-cli`, `rc-cli`, `27.4.0-rc.4-cli-alpine3.20`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/cli/Dockerfile) +- [`27.4.0-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/cli/Dockerfile) -- [`27.4.0-rc.4-dind`, `27-rc-dind`, `rc-dind`, `27.4.0-rc.4-dind-alpine3.20`, `27.4.0-rc.4`, `27-rc`, `rc`, `27.4.0-rc.4-alpine3.20`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/dind/Dockerfile) +- [`27.4.0-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.0-dind-alpine3.21`, `27.4.0`, `27.4`, `27`, `latest`, `27.4.0-alpine3.21`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind/Dockerfile) -- [`27.4.0-rc.4-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/dind-rootless/Dockerfile) +- [`27.4.0-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind-rootless/Dockerfile) -- [`27.4.0-rc.4-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.0-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-rc.4-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-1809/Dockerfile) - -- [`27.3.1-cli`, `27.3-cli`, `27-cli`, `cli`, `27.3.1-cli-alpine3.20`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/cli/Dockerfile) - -- [`27.3.1-dind`, `27.3-dind`, `27-dind`, `dind`, `27.3.1-dind-alpine3.20`, `27.3.1`, `27.3`, `27`, `latest`, `27.3.1-alpine3.20`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind/Dockerfile) - -- [`27.3.1-dind-rootless`, `27.3-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/97331ed1dd7c07dd5aa852e01aa5deff5d2aed09/27/dind-rootless/Dockerfile) - -- [`27.3.1-windowsservercore-ltsc2022`, `27.3-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`27.3.1-windowsservercore-1809`, `27.3-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-1809/Dockerfile) +- [`27.4.0-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.4.0-rc.4-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - - [`27.4.0-rc.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-rc.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/98c68d85db7c3aaf52fa9d640c40e462b19b9172/27-rc/windows/windowsservercore-1809/Dockerfile) - -- `27.3.1-windowsservercore`, `27.3-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.4.0-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.3.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/f6a3252fdd888f9e8171611f27593b09be239c0c/27/windows/windowsservercore-1809/Dockerfile) + - [`27.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 2e15ede9e2bd..a1ed39d4257f 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.6.33`, `1.6`, `1`, `latest`, `1.6.33-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d2fb263f47fa4043f4fe5a207c19517585867592/1/debian/Dockerfile) -- [`1.6.33-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.33-alpine3.20`, `1.6-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/memcached/blob/d2fb263f47fa4043f4fe5a207c19517585867592/1/alpine/Dockerfile) +- [`1.6.33-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.33-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/99a2186f3db3de537ea36046164c302d076ac2c4/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 2b6942b6f8da..b802cc91db42 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,25 +28,15 @@ WARNING: ## Simple Tags -- [`8.0.4-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/Dockerfile) +- [`8.0.4-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) -- [`8.0.4-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.4-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.4-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.4-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.4-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.4-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.4-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`8.0.3-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) - -- [`8.0.3-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`8.0.3-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) - -- [`8.0.3-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8.0.3-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.4-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) - [`7.0.16-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/Dockerfile) @@ -90,37 +80,21 @@ WARNING: ## Shared Tags -- `8.0.4-rc0`, `8.0-rc`: - - - [`8.0.4-rc0-noble`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/Dockerfile) - - [`8.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `8.0.4-rc0-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.4-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.4-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `8.0.4-rc0-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.4-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.4-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/25072a0ca59d0cc65dbf948b53b6c438de53d646/8.0-rc/windows/nanoserver-1809/Dockerfile) - -- `8.0.3`, `8.0`, `8`, `latest`: +- `8.0.4`, `8.0`, `8`, `latest`: - - [`8.0.3-noble`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/Dockerfile) - - [`8.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.4-noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) + - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.3-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.4-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.3-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.4-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a0b18e58a944f41c8a02bf97d8a811917f8ca62b/8.0/windows/nanoserver-1809/Dockerfile) + - [`8.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) - `7.0.16-rc1`, `7.0-rc`: diff --git a/php/README.md b/php/README.md index c914441aa1cf..0fac06073c57 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.2RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.2RC1-bookworm`, `8.4-rc-bookworm`, `8.4.2RC1-cli`, `8.4-rc-cli`, `8.4.2RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.2RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.2RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.2RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.2RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.2RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.2RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.2RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.2RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.2RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.2RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.2RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.2RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.2RC1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.2RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.2RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.2RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.2RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.2RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.2RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/zts/Dockerfile) + +- [`8.4.2RC1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.2RC1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/cli/Dockerfile) + +- [`8.4.2RC1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/fpm/Dockerfile) + +- [`8.4.2RC1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/zts/Dockerfile) + - [`8.4.1-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.1-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.1-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.1`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/cli/Dockerfile) - [`8.4.1-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.1-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.1-zts-alpine3.19`, `8.4-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/zts/Dockerfile) +- [`8.3.15RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.15RC1-bookworm`, `8.3-rc-bookworm`, `8.3.15RC1-cli`, `8.3-rc-cli`, `8.3.15RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.15RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.15RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.15RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.15RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.15RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.15RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.15RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.15RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.15RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.15RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.15RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.15RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.15RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.15RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.15RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.15RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.15RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.15RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.15RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/zts/Dockerfile) + +- [`8.3.15RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.15RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/cli/Dockerfile) + +- [`8.3.15RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/fpm/Dockerfile) + +- [`8.3.15RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/zts/Dockerfile) + - [`8.3.14-cli-bookworm`, `8.3-cli-bookworm`, `8.3.14-bookworm`, `8.3-bookworm`, `8.3.14-cli`, `8.3-cli`, `8.3.14`, `8.3`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/cli/Dockerfile) - [`8.3.14-apache-bookworm`, `8.3-apache-bookworm`, `8.3.14-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/apache/Dockerfile) @@ -80,6 +136,34 @@ WARNING: - [`8.3.14-zts-alpine3.19`, `8.3-zts-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/zts/Dockerfile) +- [`8.2.27RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.27RC1-bookworm`, `8.2-rc-bookworm`, `8.2.27RC1-cli`, `8.2-rc-cli`, `8.2.27RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/cli/Dockerfile) + +- [`8.2.27RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.27RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/apache/Dockerfile) + +- [`8.2.27RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.27RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/fpm/Dockerfile) + +- [`8.2.27RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.27RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/zts/Dockerfile) + +- [`8.2.27RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.27RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/cli/Dockerfile) + +- [`8.2.27RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/apache/Dockerfile) + +- [`8.2.27RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/fpm/Dockerfile) + +- [`8.2.27RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/zts/Dockerfile) + +- [`8.2.27RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.27RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.27RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.27RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/cli/Dockerfile) + +- [`8.2.27RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.27RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/fpm/Dockerfile) + +- [`8.2.27RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.27RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/zts/Dockerfile) + +- [`8.2.27RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.27RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/cli/Dockerfile) + +- [`8.2.27RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/fpm/Dockerfile) + +- [`8.2.27RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/zts/Dockerfile) + - [`8.2.26-cli-bookworm`, `8.2-cli-bookworm`, `8.2.26-bookworm`, `8.2-bookworm`, `8.2.26-cli`, `8.2-cli`, `8.2.26`, `8.2`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/cli/Dockerfile) - [`8.2.26-apache-bookworm`, `8.2-apache-bookworm`, `8.2.26-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/apache/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 3b0ed0f09535..632accc9ca7c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -28,49 +28,49 @@ WARNING: - [`17.2-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/bullseye/Dockerfile) -- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/alpine3.20/Dockerfile) +- [`17.2-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/17/alpine3.21/Dockerfile) -- [`17.2-alpine3.19`, `17-alpine3.19`, `alpine3.19`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/alpine3.19/Dockerfile) +- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/17/alpine3.20/Dockerfile) - [`16.6`, `16`, `16.6-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bookworm/Dockerfile) - [`16.6-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bullseye/Dockerfile) -- [`16.6-alpine3.20`, `16-alpine3.20`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/alpine3.20/Dockerfile) +- [`16.6-alpine3.21`, `16-alpine3.21`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/16/alpine3.21/Dockerfile) -- [`16.6-alpine3.19`, `16-alpine3.19`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/alpine3.19/Dockerfile) +- [`16.6-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/16/alpine3.20/Dockerfile) - [`15.10`, `15`, `15.10-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bookworm/Dockerfile) - [`15.10-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bullseye/Dockerfile) -- [`15.10-alpine3.20`, `15-alpine3.20`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/alpine3.20/Dockerfile) +- [`15.10-alpine3.21`, `15-alpine3.21`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/15/alpine3.21/Dockerfile) -- [`15.10-alpine3.19`, `15-alpine3.19`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/alpine3.19/Dockerfile) +- [`15.10-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/15/alpine3.20/Dockerfile) - [`14.15`, `14`, `14.15-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bookworm/Dockerfile) - [`14.15-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bullseye/Dockerfile) -- [`14.15-alpine3.20`, `14-alpine3.20`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/alpine3.20/Dockerfile) +- [`14.15-alpine3.21`, `14-alpine3.21`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/14/alpine3.21/Dockerfile) -- [`14.15-alpine3.19`, `14-alpine3.19`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/alpine3.19/Dockerfile) +- [`14.15-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/14/alpine3.20/Dockerfile) - [`13.18`, `13`, `13.18-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bookworm/Dockerfile) - [`13.18-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bullseye/Dockerfile) -- [`13.18-alpine3.20`, `13-alpine3.20`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/alpine3.20/Dockerfile) +- [`13.18-alpine3.21`, `13-alpine3.21`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/13/alpine3.21/Dockerfile) -- [`13.18-alpine3.19`, `13-alpine3.19`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/alpine3.19/Dockerfile) +- [`13.18-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/13/alpine3.20/Dockerfile) - [`12.22`, `12`, `12.22-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bookworm/Dockerfile) - [`12.22-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bullseye/Dockerfile) -- [`12.22-alpine3.20`, `12-alpine3.20`, `12.22-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/alpine3.20/Dockerfile) +- [`12.22-alpine3.21`, `12-alpine3.21`, `12.22-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/12/alpine3.21/Dockerfile) -- [`12.22-alpine3.19`, `12-alpine3.19`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/alpine3.19/Dockerfile) +- [`12.22-alpine3.20`, `12-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/12/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 53235b4509de..e2f057527071 100644 --- a/python/README.md +++ b/python/README.md @@ -36,9 +36,9 @@ WARNING: - [`3.14.0a2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a2-alpine3.20`, `3.14-rc-alpine3.20`, `3.14.0a2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a2-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a2-alpine3.19`, `3.14-rc-alpine3.19`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.19/Dockerfile) +- [`3.14.0a2-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.20/Dockerfile) - [`3.14.0a2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -52,9 +52,9 @@ WARNING: - [`3.13.1-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/slim-bullseye/Dockerfile) -- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.20/Dockerfile) +- [`3.13.1-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.13/alpine3.21/Dockerfile) -- [`3.13.1-alpine3.19`, `3.13-alpine3.19`, `3-alpine3.19`, `alpine3.19`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.19/Dockerfile) +- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.20/Dockerfile) - [`3.13.1-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) @@ -68,9 +68,9 @@ WARNING: - [`3.12.8-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/slim-bullseye/Dockerfile) -- [`3.12.8-alpine3.20`, `3.12-alpine3.20`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.20/Dockerfile) +- [`3.12.8-alpine3.21`, `3.12-alpine3.21`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.12/alpine3.21/Dockerfile) -- [`3.12.8-alpine3.19`, `3.12-alpine3.19`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.19/Dockerfile) +- [`3.12.8-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.20/Dockerfile) - [`3.12.8-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) @@ -84,9 +84,9 @@ WARNING: - [`3.11.11-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/slim-bullseye/Dockerfile) -- [`3.11.11-alpine3.20`, `3.11-alpine3.20`, `3.11.11-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.20/Dockerfile) +- [`3.11.11-alpine3.21`, `3.11-alpine3.21`, `3.11.11-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.11/alpine3.21/Dockerfile) -- [`3.11.11-alpine3.19`, `3.11-alpine3.19`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.19/Dockerfile) +- [`3.11.11-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.20/Dockerfile) - [`3.10.16-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bookworm/Dockerfile) @@ -96,9 +96,9 @@ WARNING: - [`3.10.16-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/slim-bullseye/Dockerfile) -- [`3.10.16-alpine3.20`, `3.10-alpine3.20`, `3.10.16-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.20/Dockerfile) +- [`3.10.16-alpine3.21`, `3.10-alpine3.21`, `3.10.16-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.10/alpine3.21/Dockerfile) -- [`3.10.16-alpine3.19`, `3.10-alpine3.19`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.19/Dockerfile) +- [`3.10.16-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.20/Dockerfile) - [`3.9.21-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) @@ -108,9 +108,9 @@ WARNING: - [`3.9.21-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/slim-bullseye/Dockerfile) -- [`3.9.21-alpine3.20`, `3.9-alpine3.20`, `3.9.21-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.20/Dockerfile) +- [`3.9.21-alpine3.21`, `3.9-alpine3.21`, `3.9.21-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.9/alpine3.21/Dockerfile) -- [`3.9.21-alpine3.19`, `3.9-alpine3.19`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.19/Dockerfile) +- [`3.9.21-alpine3.20`, `3.9-alpine3.20`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.20/Dockerfile) ## Shared Tags From bcfbdf8304a5414e06cf8444490deeeb07b4acb4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Dec 2024 15:09:50 -0800 Subject: [PATCH 1742/2686] Run update.sh --- openjdk/README.md | 69 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 51 insertions(+), 18 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index f9ceeba637fa..2d0bb4a6d0c8 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,40 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`24-ea-26-jdk-oraclelinux9`, `24-ea-26-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-26-jdk-oracle`, `24-ea-26-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux9/Dockerfile) +- [`25-ea-1-jdk-oraclelinux9`, `25-ea-1-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-1-jdk-oracle`, `25-ea-1-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux9/Dockerfile) -- [`24-ea-26-jdk-oraclelinux8`, `24-ea-26-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux8/Dockerfile) +- [`25-ea-1-jdk-oraclelinux8`, `25-ea-1-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux8/Dockerfile) -- [`24-ea-26-jdk-bookworm`, `24-ea-26-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/bookworm/Dockerfile) +- [`25-ea-1-jdk-bookworm`, `25-ea-1-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/bookworm/Dockerfile) -- [`24-ea-26-jdk-slim-bookworm`, `24-ea-26-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-26-jdk-slim`, `24-ea-26-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/slim-bookworm/Dockerfile) +- [`25-ea-1-jdk-slim-bookworm`, `25-ea-1-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-1-jdk-slim`, `25-ea-1-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/slim-bookworm/Dockerfile) -- [`24-ea-26-jdk-bullseye`, `24-ea-26-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/bullseye/Dockerfile) +- [`25-ea-1-jdk-bullseye`, `25-ea-1-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/bullseye/Dockerfile) -- [`24-ea-26-jdk-slim-bullseye`, `24-ea-26-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/slim-bullseye/Dockerfile) +- [`25-ea-1-jdk-slim-bullseye`, `25-ea-1-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/slim-bullseye/Dockerfile) -- [`24-ea-26-jdk-windowsservercore-ltsc2022`, `24-ea-26-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-1-jdk-windowsservercore-ltsc2022`, `25-ea-1-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-26-jdk-windowsservercore-1809`, `24-ea-26-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-1-jdk-windowsservercore-1809`, `25-ea-1-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-26-jdk-nanoserver-1809`, `24-ea-26-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-1-jdk-nanoserver-1809`, `25-ea-1-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/nanoserver-1809/Dockerfile) + +- [`24-ea-27-jdk-oraclelinux9`, `24-ea-27-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-27-jdk-oracle`, `24-ea-27-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux9/Dockerfile) + +- [`24-ea-27-jdk-oraclelinux8`, `24-ea-27-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux8/Dockerfile) + +- [`24-ea-27-jdk-bookworm`, `24-ea-27-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/bookworm/Dockerfile) + +- [`24-ea-27-jdk-slim-bookworm`, `24-ea-27-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-27-jdk-slim`, `24-ea-27-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/slim-bookworm/Dockerfile) + +- [`24-ea-27-jdk-bullseye`, `24-ea-27-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/bullseye/Dockerfile) + +- [`24-ea-27-jdk-slim-bullseye`, `24-ea-27-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/slim-bullseye/Dockerfile) + +- [`24-ea-27-jdk-windowsservercore-ltsc2022`, `24-ea-27-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`24-ea-27-jdk-windowsservercore-1809`, `24-ea-27-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) + +- [`24-ea-27-jdk-nanoserver-1809`, `24-ea-27-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `24-ea-26-jdk`, `24-ea-26`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `25-ea-1-jdk`, `25-ea-1`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: + + - [`25-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) + +- `25-ea-1-jdk-windowsservercore`, `25-ea-1-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: + + - [`25-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) + +- `25-ea-1-jdk-nanoserver`, `25-ea-1-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: + + - [`25-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/nanoserver-1809/Dockerfile) + +- `24-ea-27-jdk`, `24-ea-27`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-26-jdk-windowsservercore`, `24-ea-26-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-27-jdk-windowsservercore`, `24-ea-27-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-26-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-26-jdk-nanoserver`, `24-ea-26-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-27-jdk-nanoserver`, `24-ea-27-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-26-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a13916db933c33b2dd6ec4bc96ca9da32515df0/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From f0f648150f7e83ce011e9b17b51981843adbc1cf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Dec 2024 17:09:29 -0800 Subject: [PATCH 1743/2686] Run update.sh --- ghost/README.md | 4 +-- telegraf/README.md | 12 ++++---- tomcat/README.md | 72 +++++++++++++++++++++++----------------------- 3 files changed, 44 insertions(+), 44 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f3d710f0432e..1884bbb436ba 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.103.0`, `5.103`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7bd3cdc5837bebcae81aac3314513986cc2e2f84/5/debian/Dockerfile) +- [`5.104.1`, `5.104`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0bbaecaa88686ce472f51b84c5fb73fa67778a90/5/debian/Dockerfile) -- [`5.103.0-alpine`, `5.103-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7bd3cdc5837bebcae81aac3314513986cc2e2f84/5/alpine/Dockerfile) +- [`5.104.1-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/de8d93396b01a900b25d17a2c3bb0ca69ab4eaa1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 4a35dd0a0fdb..ec9cae11d954 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30`, `1.30.3`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.30/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.31/Dockerfile) -- [`1.30-alpine`, `1.30.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.30/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.31/alpine/Dockerfile) -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.31/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.32/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.31/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.32/alpine/Dockerfile) -- [`1.32`, `1.32.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.32/Dockerfile) +- [`1.33`, `1.33.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.33/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/acb46135abf70e0e72739f70aa14e9d2548b4f23/telegraf/1.32/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.33/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 577e291323fb..a375de9effa9 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,77 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.1-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.1-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.1-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.1`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.2-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.2-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.2-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.1-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.1-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.1-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.2-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.2-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.2-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.1-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.2-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.1-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/37acdb35f2684d2c41e3c6ed96cc0403bec02447/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.2-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.33-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.33-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.33-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.33`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.34-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.34-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.34-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.34`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.33-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.33-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.33-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.34-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.34-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.34-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.33-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.34-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.33-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.34-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.33-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.33-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.33-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.34-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.34-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.34-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.33-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.33-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.33-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.34-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.34-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.34-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.33-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.34-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.33-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.34-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.33-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.33-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.33-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.34-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.34-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.34-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.33-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.33-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.33-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.34-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.34-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.34-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.33-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.34-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.33-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/28d562145a9f93569e377fc8204b3f4764be1914/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.34-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.97-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.97-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.97-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.97`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.98-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.98-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.98-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.98`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.97-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.97-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.97-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.98-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.98-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.98-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.97-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.98-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.97-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.98-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.97-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.97-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.98-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.98-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.97-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.97-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.97-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.98-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.98-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.98-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.97-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.97-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.97-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.98-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.98-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.98-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.97-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.98-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.97-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.98-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.97-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.97-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.98-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.98-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.97-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.97-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.97-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.98-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.98-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.98-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.97-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.97-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.97-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.98-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.98-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.98-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.97-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.98-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.97-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.98-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.97-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.97-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.98-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.98-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.97-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.97-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.97-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.98-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.98-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.98-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.97-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.97-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.97-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.98-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.98-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.98-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.97-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.98-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.97-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.98-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.97-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.97-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/bfc105409386ba66e77517231ad25d96337ae855/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.98-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.98-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From c7475bcfbcb6730270aef2fcffa9df2979ff4da7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Dec 2024 10:09:28 -0800 Subject: [PATCH 1744/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index f5576b8ca0a4..6aff9ec78b3e 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.10`, `16.10.0`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.1`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/7976fa78fc21571e035fa24c7a57f03292fb0dae/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.15`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mysql-tomcat/Dockerfile) From b4717648066a45f995a1716a30baf820d5f251a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Dec 2024 11:09:32 -0800 Subject: [PATCH 1745/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 4b9ad3e4833e..1b9ab2e313bb 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.3-alpine3.20`, `23.3.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.4-alpine3.20`, `23.4.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.3-alpine`, `23.3-alpine3.21`, `23.3.0-alpine`, `23.3.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.4-alpine`, `23.4-alpine3.21`, `23.4.0-alpine`, `23.4.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.3`, `23.3-bookworm`, `23.3.0`, `23.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.4`, `23.4-bookworm`, `23.4.0`, `23.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.3-bookworm-slim`, `23.3-slim`, `23.3.0-bookworm-slim`, `23.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.4-bookworm-slim`, `23.4-slim`, `23.4.0-bookworm-slim`, `23.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.3-bullseye`, `23.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.4-bullseye`, `23.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.3-bullseye-slim`, `23.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/afd30081595671f7bee68d6e95d7751126666409/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.4-bullseye-slim`, `23.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.12-alpine3.20`, `22.12.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) From e66c8ad4f10707184a44a6f4b72f0e4a9dfdfa93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Dec 2024 12:09:25 -0800 Subject: [PATCH 1746/2686] Run update.sh --- traefik/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index a25693735771..6d1f17b255eb 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.2.1-windowsservercore-ltsc2022`, `3.2.1-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.2-windowsservercore-ltsc2022`, `3.2.2-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.1-windowsservercore-1809`, `3.2.1-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/1809/Dockerfile) +- [`v3.2.2-windowsservercore-1809`, `3.2.2-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/1809/Dockerfile) -- [`v3.2.1-nanoserver-ltsc2022`, `3.2.1-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.2-nanoserver-ltsc2022`, `3.2.2-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.1`, `3.2.1`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/35c03d017ebb01f69cad7ba6566462886104cc73/v3.2/alpine/Dockerfile) +- [`v3.2.2`, `3.2.2`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/alpine/Dockerfile) -- [`v2.11.14-windowsservercore-ltsc2022`, `2.11.14-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.15-windowsservercore-ltsc2022`, `2.11.15-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.14-windowsservercore-1809`, `2.11.14-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/1809/Dockerfile) +- [`v2.11.15-windowsservercore-1809`, `2.11.15-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/1809/Dockerfile) -- [`v2.11.14-nanoserver-ltsc2022`, `2.11.14-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.15-nanoserver-ltsc2022`, `2.11.15-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.14`, `2.11.14`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/cd86caf9d71a79f0176edfa03c13b485b8fd9a3f/v2.11/alpine/Dockerfile) +- [`v2.11.15`, `2.11.15`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 7337bde0cf1ef01980ace0334819d75aa9563083 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Dec 2024 15:09:20 -0800 Subject: [PATCH 1747/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- photon/README.md | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/nats/README.md b/nats/README.md index bc1d45bc4c64..e40b8c87f3b5 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.22-alpine3.20`, `2.10-alpine3.20`, `2-alpine3.20`, `alpine3.20`, `2.10.22-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/alpine3.20/Dockerfile) +- [`2.10.23-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.23-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/alpine3.21/Dockerfile) -- [`2.10.22-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.22-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/scratch/Dockerfile) +- [`2.10.23-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.23-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/scratch/Dockerfile) -- [`2.10.22-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.23-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.22-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.23-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.22`, `2.10`, `2`, `latest`: +- `2.10.23`, `2.10`, `2`, `latest`: - - [`2.10.22-scratch`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/scratch/Dockerfile) - - [`2.10.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.23-scratch`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/scratch/Dockerfile) + - [`2.10.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.22-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.23-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.22-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.22-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.23-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.22-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/23198a15d5b1df0812e7f61037e1aa8da0fe620f/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 414cfdcf6e91..bacc08366562 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241201`, `latest`](https://github.com/vmware/photon-docker-image/blob/0c7412e45f338f119f6593da2d56fd854b9474f2/docker/Dockerfile) +- [`5.0`, `5.0-20241208`, `latest`](https://github.com/vmware/photon-docker-image/blob/b8f9a0825a1aab5af0ad692748af5174cb47302e/docker/Dockerfile) - [`4.0`, `4.0-20241201`](https://github.com/vmware/photon-docker-image/blob/ba586ebf86a3f7acbe388d6c5bc2a5b9f972cbb8/docker/Dockerfile) -- [`3.0`, `3.0-20241023`](https://github.com/vmware/photon-docker-image/blob/03c99783ea1c9e664fc53fb18e970629a5e9495f/docker/Dockerfile) +- [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) # Quick reference (cont.) From 5f1491395d1e063d3b3bfe955110896c9398b141 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Dec 2024 16:09:25 -0800 Subject: [PATCH 1748/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index bc8c15411a89..949db3444cbe 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/561587125f2933cf8a9226e46df3ee00b3f9c2cf/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From dc38b5487e755306e78548899ad11dfd318be257 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Dec 2024 11:09:36 -0800 Subject: [PATCH 1749/2686] Run update.sh --- hylang/README.md | 80 ++++++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index 51868495ff5a..fd66a1b23f3b 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,93 +28,93 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.19`, `1.0-python3.13-alpine3.19`, `1-python3.13-alpine3.19`, `python3.13-alpine3.19`, `1.0.0-alpine3.19`, `1.0-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-alpine3.19) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-alpine3.19`, `1.0-python3.12-alpine3.19`, `1-python3.12-alpine3.19`, `python3.12-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-alpine3.19) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.11-alpine3.19`, `1.0-python3.11-alpine3.19`, `1-python3.11-alpine3.19`, `python3.11-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-alpine3.19) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.10-alpine3.19`, `1.0-python3.10-alpine3.19`, `1-python3.10-alpine3.19`, `python3.10-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-alpine3.19) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-python3.9-alpine3.19`, `1.0-python3.9-alpine3.19`, `1-python3.9-alpine3.19`, `python3.9-alpine3.19`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-alpine3.19) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0fd7c6620e53d9dfee4ab1984416c63f520ee25c/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) From 82d7bd73a488bcecc87f7a9256d845fa8d1f137a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Dec 2024 12:09:26 -0800 Subject: [PATCH 1750/2686] Run update.sh --- couchbase/README.md | 2 +- dart/README.md | 4 ++-- ghost/README.md | 4 ++-- httpd/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 44966817d1f4..a88679015819 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.3`, `enterprise-7.6.3`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/553d1baa4aa90fe506e1d7bcdf4daec387a110fe/enterprise/couchbase-server/7.6.3/Dockerfile) +- [`7.6.4`, `enterprise-7.6.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/9990e2cfabc94b37607e5666d9ef1eab69a397a6/enterprise/couchbase-server/7.6.4/Dockerfile) - [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) diff --git a/dart/README.md b/dart/README.md index eb89917f176a..b941f1ac2476 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.4-sdk`, `3.5-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.5.4`, `3.5`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/78d6abbd3622fd4643eba38db0530d546b964ee7/stable/bookworm/Dockerfile) +- [`3.6.0-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.0`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d70227938d74fe135561dab1c64442b0ac8a8315/stable/bookworm/Dockerfile) -- [`3.6.0-334.4.beta-sdk`, `beta-sdk`, `3.6.0-334.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/78d6abbd3622fd4643eba38db0530d546b964ee7/beta/bookworm/Dockerfile) +- [`3.7.0-209.1.beta-sdk`, `beta-sdk`, `3.7.0-209.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d70227938d74fe135561dab1c64442b0ac8a8315/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 1884bbb436ba..de0cf0905c94 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.104.1`, `5.104`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0bbaecaa88686ce472f51b84c5fb73fa67778a90/5/debian/Dockerfile) +- [`5.104.2`, `5.104`, `5`, `latest`](https://github.com/docker-library/ghost/blob/980d1147ebcabf88c9279984e7453afb7f2f7f21/5/debian/Dockerfile) -- [`5.104.1-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/de8d93396b01a900b25d17a2c3bb0ca69ab4eaa1/5/alpine/Dockerfile) +- [`5.104.2-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/980d1147ebcabf88c9279984e7453afb7f2f7f21/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/httpd/README.md b/httpd/README.md index a12bbbf03de9..7edb344ef40f 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -26,7 +26,7 @@ WARNING: - [`2.4.62`, `2.4`, `2`, `latest`, `2.4.62-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/3056c115a9f3c2467cc6f67470cfded70c4adc64/2.4/Dockerfile) -- [`2.4.62-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.62-alpine3.20`, `2.4-alpine3.20`, `2-alpine3.20`, `alpine3.20`](https://github.com/docker-library/httpd/blob/3056c115a9f3c2467cc6f67470cfded70c4adc64/2.4/alpine/Dockerfile) +- [`2.4.62-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.62-alpine3.21`, `2.4-alpine3.21`, `2-alpine3.21`, `alpine3.21`](https://github.com/docker-library/httpd/blob/500ef8b71bdf49020ec5bffad2b100936c3f2fab/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index eff20a1118a1..0314a696d349 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/41dfa6f49ef407bf503eb64c5173eafdf821bbee/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7-slim-fips/Dockerfile) # Quick reference (cont.) From 8d0b756531094fa45f55706b64098bdeefc8849a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Dec 2024 13:09:30 -0800 Subject: [PATCH 1751/2686] Run update.sh --- mongo/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/mongo/README.md b/mongo/README.md index b802cc91db42..dd1f25077aba 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -58,6 +58,16 @@ WARNING: - [`7.0.15-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.20-rc2-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/Dockerfile) + +- [`6.0.20-rc2-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.20-rc2-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`6.0.20-rc2-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`6.0.20-rc2-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.19-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) - [`6.0.19-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -128,6 +138,22 @@ WARNING: - [`7.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.20-rc2`, `6.0-rc`: + + - [`6.0.20-rc2-jammy`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/Dockerfile) + - [`6.0.20-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.20-rc2-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.20-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.20-rc2-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.20-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.20-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-1809/Dockerfile) + - `6.0.19`, `6.0`, `6`: - [`6.0.19-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) From 77c9ff6832aa4e736874176b6daa992516b12e4f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Dec 2024 14:09:36 -0800 Subject: [PATCH 1752/2686] Run update.sh --- haproxy/README.md | 8 ++++---- rabbitmq/README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index dd5545894dcc..70c89586d0cf 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev0`, `3.2-dev`, `3.2-dev0-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/056667a3593e0e18d97518709e30b6bd8574f760/3.2/Dockerfile) +- [`3.2-dev1`, `3.2-dev`, `3.2-dev1-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/98981317e3520043f10841a76e8c0f691b29037d/3.2/Dockerfile) -- [`3.2-dev0-alpine`, `3.2-dev-alpine`, `3.2-dev0-alpine3.20`, `3.2-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/056667a3593e0e18d97518709e30b6bd8574f760/3.2/alpine/Dockerfile) +- [`3.2-dev1-alpine`, `3.2-dev-alpine`, `3.2-dev1-alpine3.20`, `3.2-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/98981317e3520043f10841a76e8c0f691b29037d/3.2/alpine/Dockerfile) -- [`3.1.0`, `3.1`, `latest`, `3.1.0-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/845b6f45ac1a8e0ee5706a23ef2fbf56516aebc6/3.1/Dockerfile) +- [`3.1.1`, `3.1`, `latest`, `3.1.1-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/Dockerfile) -- [`3.1.0-alpine`, `3.1-alpine`, `alpine`, `3.1.0-alpine3.20`, `3.1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/845b6f45ac1a8e0ee5706a23ef2fbf56516aebc6/3.1/alpine/Dockerfile) +- [`3.1.1-alpine`, `3.1-alpine`, `alpine`, `3.1.1-alpine3.20`, `3.1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/alpine/Dockerfile) - [`3.0.6`, `3.0`, `lts`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 550e328c4849..26ef80f5047b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/5fb7f52a1f2f438c5994210ee06bc92f2437c8e2/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/99ed8dff13e2b79fc189b76bbbfec8d07947e6b9/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-beta.2-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/5fb7f52a1f2f438c5994210ee06bc92f2437c8e2/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/99ed8dff13e2b79fc189b76bbbfec8d07947e6b9/4.1-rc/alpine/Dockerfile) -- [`4.1.0-beta.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/8a0389fb2c2007af3db29b1f12fe82d239c027ac/4.0/ubuntu/Dockerfile) +- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/efb58cd44392eb62a59b4408dffdf09ff5505015/4.0/ubuntu/Dockerfile) - [`4.0.4-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/8a0389fb2c2007af3db29b1f12fe82d239c027ac/4.0/alpine/Dockerfile) +- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/efb58cd44392eb62a59b4408dffdf09ff5505015/4.0/alpine/Dockerfile) - [`4.0.4-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) From 9bf0fd46af087399ca8be067c3a9311ad00c9c83 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Dec 2024 15:09:43 -0800 Subject: [PATCH 1753/2686] Run update.sh --- php/README.md | 84 +++++++++++++++++++++++++-------------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/php/README.md b/php/README.md index 0fac06073c57..998693ec9769 100644 --- a/php/README.md +++ b/php/README.md @@ -40,17 +40,17 @@ WARNING: - [`8.4.2RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.2RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.2RC1-alpine3.20`, `8.4-rc-alpine3.20`, `8.4.2RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.2RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.2RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.2RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.2RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.2RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/cli/Dockerfile) -- [`8.4.2RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`, `8.4.2RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.2RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.2RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/fpm/Dockerfile) -- [`8.4.2RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`, `8.4.2RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.2RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.2RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/zts/Dockerfile) -- [`8.4.2RC1-cli-alpine3.19`, `8.4-rc-cli-alpine3.19`, `8.4.2RC1-alpine3.19`, `8.4-rc-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/cli/Dockerfile) +- [`8.4.2RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.2RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/cli/Dockerfile) -- [`8.4.2RC1-fpm-alpine3.19`, `8.4-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/fpm/Dockerfile) +- [`8.4.2RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/fpm/Dockerfile) -- [`8.4.2RC1-zts-alpine3.19`, `8.4-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.19/zts/Dockerfile) +- [`8.4.2RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/zts/Dockerfile) - [`8.4.1-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.1-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.1-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.1`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/cli/Dockerfile) @@ -68,17 +68,17 @@ WARNING: - [`8.4.1-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/zts/Dockerfile) -- [`8.4.1-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.1-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`, `8.4.1-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.1-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/cli/Dockerfile) +- [`8.4.1-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.1-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.1-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.1-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.1-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`, `8.4.1-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/fpm/Dockerfile) +- [`8.4.1-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.1-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.1-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`, `8.4.1-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/zts/Dockerfile) +- [`8.4.1-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.1-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.1-cli-alpine3.19`, `8.4-cli-alpine3.19`, `8-cli-alpine3.19`, `cli-alpine3.19`, `8.4.1-alpine3.19`, `8.4-alpine3.19`, `8-alpine3.19`, `alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/cli/Dockerfile) +- [`8.4.1-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.1-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.1-fpm-alpine3.19`, `8.4-fpm-alpine3.19`, `8-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/fpm/Dockerfile) +- [`8.4.1-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.1-zts-alpine3.19`, `8.4-zts-alpine3.19`, `8-zts-alpine3.19`, `zts-alpine3.19`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.19/zts/Dockerfile) +- [`8.4.1-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/zts/Dockerfile) - [`8.3.15RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.15RC1-bookworm`, `8.3-rc-bookworm`, `8.3.15RC1-cli`, `8.3-rc-cli`, `8.3.15RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/cli/Dockerfile) @@ -96,17 +96,17 @@ WARNING: - [`8.3.15RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.15RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.15RC1-alpine3.20`, `8.3-rc-alpine3.20`, `8.3.15RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.15RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.15RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.15RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.15RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.15RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/cli/Dockerfile) -- [`8.3.15RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`, `8.3.15RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.15RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.15RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/fpm/Dockerfile) -- [`8.3.15RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`, `8.3.15RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.3.15RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.15RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/zts/Dockerfile) -- [`8.3.15RC1-cli-alpine3.19`, `8.3-rc-cli-alpine3.19`, `8.3.15RC1-alpine3.19`, `8.3-rc-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/cli/Dockerfile) +- [`8.3.15RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.15RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/cli/Dockerfile) -- [`8.3.15RC1-fpm-alpine3.19`, `8.3-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/fpm/Dockerfile) +- [`8.3.15RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/fpm/Dockerfile) -- [`8.3.15RC1-zts-alpine3.19`, `8.3-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.19/zts/Dockerfile) +- [`8.3.15RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/zts/Dockerfile) - [`8.3.14-cli-bookworm`, `8.3-cli-bookworm`, `8.3.14-bookworm`, `8.3-bookworm`, `8.3.14-cli`, `8.3-cli`, `8.3.14`, `8.3`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/cli/Dockerfile) @@ -124,17 +124,17 @@ WARNING: - [`8.3.14-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/zts/Dockerfile) -- [`8.3.14-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.14-alpine3.20`, `8.3-alpine3.20`, `8.3.14-cli-alpine`, `8.3-cli-alpine`, `8.3.14-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.14-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.14-alpine3.21`, `8.3-alpine3.21`, `8.3.14-cli-alpine`, `8.3-cli-alpine`, `8.3.14-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.14-fpm-alpine3.20`, `8.3-fpm-alpine3.20`, `8.3.14-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.14-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.14-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.14-zts-alpine3.20`, `8.3-zts-alpine3.20`, `8.3.14-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.14-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.14-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/zts/Dockerfile) -- [`8.3.14-cli-alpine3.19`, `8.3-cli-alpine3.19`, `8.3.14-alpine3.19`, `8.3-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/cli/Dockerfile) +- [`8.3.14-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.14-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.14-fpm-alpine3.19`, `8.3-fpm-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/fpm/Dockerfile) +- [`8.3.14-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.14-zts-alpine3.19`, `8.3-zts-alpine3.19`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.19/zts/Dockerfile) +- [`8.3.14-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/zts/Dockerfile) - [`8.2.27RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.27RC1-bookworm`, `8.2-rc-bookworm`, `8.2.27RC1-cli`, `8.2-rc-cli`, `8.2.27RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/cli/Dockerfile) @@ -152,17 +152,17 @@ WARNING: - [`8.2.27RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/zts/Dockerfile) -- [`8.2.27RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.27RC1-alpine3.20`, `8.2-rc-alpine3.20`, `8.2.27RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.27RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/cli/Dockerfile) +- [`8.2.27RC1-cli-alpine3.21`, `8.2-rc-cli-alpine3.21`, `8.2.27RC1-alpine3.21`, `8.2-rc-alpine3.21`, `8.2.27RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.27RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/cli/Dockerfile) -- [`8.2.27RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`, `8.2.27RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/fpm/Dockerfile) +- [`8.2.27RC1-fpm-alpine3.21`, `8.2-rc-fpm-alpine3.21`, `8.2.27RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/fpm/Dockerfile) -- [`8.2.27RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`, `8.2.27RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/zts/Dockerfile) +- [`8.2.27RC1-zts-alpine3.21`, `8.2-rc-zts-alpine3.21`, `8.2.27RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/zts/Dockerfile) -- [`8.2.27RC1-cli-alpine3.19`, `8.2-rc-cli-alpine3.19`, `8.2.27RC1-alpine3.19`, `8.2-rc-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/cli/Dockerfile) +- [`8.2.27RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.27RC1-alpine3.20`, `8.2-rc-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/cli/Dockerfile) -- [`8.2.27RC1-fpm-alpine3.19`, `8.2-rc-fpm-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/fpm/Dockerfile) +- [`8.2.27RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/fpm/Dockerfile) -- [`8.2.27RC1-zts-alpine3.19`, `8.2-rc-zts-alpine3.19`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.19/zts/Dockerfile) +- [`8.2.27RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/zts/Dockerfile) - [`8.2.26-cli-bookworm`, `8.2-cli-bookworm`, `8.2.26-bookworm`, `8.2-bookworm`, `8.2.26-cli`, `8.2-cli`, `8.2.26`, `8.2`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/cli/Dockerfile) @@ -180,17 +180,17 @@ WARNING: - [`8.2.26-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/zts/Dockerfile) -- [`8.2.26-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.26-alpine3.20`, `8.2-alpine3.20`, `8.2.26-cli-alpine`, `8.2-cli-alpine`, `8.2.26-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.26-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.26-alpine3.21`, `8.2-alpine3.21`, `8.2.26-cli-alpine`, `8.2-cli-alpine`, `8.2.26-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/cli/Dockerfile) -- [`8.2.26-fpm-alpine3.20`, `8.2-fpm-alpine3.20`, `8.2.26-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.26-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.26-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/fpm/Dockerfile) -- [`8.2.26-zts-alpine3.20`, `8.2-zts-alpine3.20`, `8.2.26-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.26-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.26-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/zts/Dockerfile) -- [`8.2.26-cli-alpine3.19`, `8.2-cli-alpine3.19`, `8.2.26-alpine3.19`, `8.2-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/cli/Dockerfile) +- [`8.2.26-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.26-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/cli/Dockerfile) -- [`8.2.26-fpm-alpine3.19`, `8.2-fpm-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/fpm/Dockerfile) +- [`8.2.26-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/fpm/Dockerfile) -- [`8.2.26-zts-alpine3.19`, `8.2-zts-alpine3.19`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.19/zts/Dockerfile) +- [`8.2.26-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/zts/Dockerfile) - [`8.1.31-cli-bookworm`, `8.1-cli-bookworm`, `8.1.31-bookworm`, `8.1-bookworm`, `8.1.31-cli`, `8.1-cli`, `8.1.31`, `8.1`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/cli/Dockerfile) @@ -208,17 +208,17 @@ WARNING: - [`8.1.31-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/zts/Dockerfile) -- [`8.1.31-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.31-alpine3.20`, `8.1-alpine3.20`, `8.1.31-cli-alpine`, `8.1-cli-alpine`, `8.1.31-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/cli/Dockerfile) +- [`8.1.31-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.31-alpine3.21`, `8.1-alpine3.21`, `8.1.31-cli-alpine`, `8.1-cli-alpine`, `8.1.31-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/cli/Dockerfile) -- [`8.1.31-fpm-alpine3.20`, `8.1-fpm-alpine3.20`, `8.1.31-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/fpm/Dockerfile) +- [`8.1.31-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.31-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/fpm/Dockerfile) -- [`8.1.31-zts-alpine3.20`, `8.1-zts-alpine3.20`, `8.1.31-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.31-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.31-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/zts/Dockerfile) -- [`8.1.31-cli-alpine3.19`, `8.1-cli-alpine3.19`, `8.1.31-alpine3.19`, `8.1-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/cli/Dockerfile) +- [`8.1.31-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.31-alpine3.20`, `8.1-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/cli/Dockerfile) -- [`8.1.31-fpm-alpine3.19`, `8.1-fpm-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/fpm/Dockerfile) +- [`8.1.31-fpm-alpine3.20`, `8.1-fpm-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/fpm/Dockerfile) -- [`8.1.31-zts-alpine3.19`, `8.1-zts-alpine3.19`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/alpine3.19/zts/Dockerfile) +- [`8.1.31-zts-alpine3.20`, `8.1-zts-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/zts/Dockerfile) # Quick reference (cont.) From ea022e6aaf811f7104de90c91230aa94014c49b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Dec 2024 11:09:22 -0800 Subject: [PATCH 1754/2686] Run update.sh --- composer/README.md | 4 ++-- silverpeas/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer/README.md b/composer/README.md index 3776d130c94a..4a41a02d2896 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.24`, `2.2`, `lts`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/lts/Dockerfile) +- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/622faef5ee0410dfbd024d410b0e15a67edfd458/lts/Dockerfile) - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/legacy/Dockerfile) -- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/23b00dd932ec0497bd587248a44db34953453a73/latest/Dockerfile) +- [`2.8.4`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/43d5c71ec3e05cc9c62afba25655d9f6fa0eb30d/latest/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index 6ac6ab79d064..280bc1d34c47 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.1`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/10abc2b0ea09cceedb65cf58a2cf843992d88a27/Dockerfile) +- [`6.4.2`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c80ded6919cdf9e1d3e50f2dcef80e32b497fbc1/Dockerfile) - [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) From ceda84e5db326505f007b6df0fa8c8e591beb8d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Dec 2024 14:09:31 -0800 Subject: [PATCH 1755/2686] Run update.sh --- ghost/README.md | 2 +- haproxy/README.md | 12 ++++++------ mongo/README.md | 30 ++++++++++++++-------------- nextcloud/README.md | 12 ++++++------ ruby/README.md | 48 ++++++++++++++++++++++----------------------- swift/README.md | 26 ++++++++++++------------ 6 files changed, 65 insertions(+), 65 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index de0cf0905c94..fd855c729ca9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.104.2`, `5.104`, `5`, `latest`](https://github.com/docker-library/ghost/blob/980d1147ebcabf88c9279984e7453afb7f2f7f21/5/debian/Dockerfile) -- [`5.104.2-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/980d1147ebcabf88c9279984e7453afb7f2f7f21/5/alpine/Dockerfile) +- [`5.104.2-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/371ce7bbb480b1e1cf60287325041b4d02b1e30d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 70c89586d0cf..1776e58f880d 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,17 +32,17 @@ WARNING: - [`3.1.1-alpine`, `3.1-alpine`, `alpine`, `3.1.1-alpine3.20`, `3.1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/alpine/Dockerfile) -- [`3.0.6`, `3.0`, `lts`, `3.0.6-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/Dockerfile) +- [`3.0.7`, `3.0`, `lts`, `3.0.7-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/Dockerfile) -- [`3.0.6-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.6-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/7341cb2441f9663fb52866df74ccb427960cc8c9/3.0/alpine/Dockerfile) +- [`3.0.7-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.7-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/alpine/Dockerfile) -- [`2.9.12`, `2.9`, `2.9.12-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/4214bc32bf5038120b1cacbb0f5337169b817aa4/2.9/Dockerfile) +- [`2.9.13`, `2.9`, `2.9.13-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/0c1da312a638ecef78b17c6919ec9780bc1f75e9/2.9/Dockerfile) -- [`2.9.12-alpine`, `2.9-alpine`, `2.9.12-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/4214bc32bf5038120b1cacbb0f5337169b817aa4/2.9/alpine/Dockerfile) +- [`2.9.13-alpine`, `2.9-alpine`, `2.9.13-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/0c1da312a638ecef78b17c6919ec9780bc1f75e9/2.9/alpine/Dockerfile) -- [`2.8.12`, `2.8`, `2.8.12-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/5235fbf1ddb46b8f6d179958494098ac2708e384/2.8/Dockerfile) +- [`2.8.13`, `2.8`, `2.8.13-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/ff4e3ce324778f1c2b65d6d61ddbf00c0b51793b/2.8/Dockerfile) -- [`2.8.12-alpine`, `2.8-alpine`, `2.8.12-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/5235fbf1ddb46b8f6d179958494098ac2708e384/2.8/alpine/Dockerfile) +- [`2.8.13-alpine`, `2.8-alpine`, `2.8.13-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/ff4e3ce324778f1c2b65d6d61ddbf00c0b51793b/2.8/alpine/Dockerfile) - [`2.6.20`, `2.6`, `2.6.20-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index dd1f25077aba..414358cda56d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -58,15 +58,15 @@ WARNING: - [`7.0.15-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.20-rc2-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/Dockerfile) +- [`6.0.20-rc3-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/Dockerfile) -- [`6.0.20-rc2-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.20-rc3-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.20-rc2-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.20-rc3-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.20-rc2-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.20-rc3-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.20-rc2-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.20-rc3-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.19-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) @@ -138,21 +138,21 @@ WARNING: - [`7.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.20-rc2`, `6.0-rc`: +- `6.0.20-rc3`, `6.0-rc`: - - [`6.0.20-rc2-jammy`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/Dockerfile) - - [`6.0.20-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.20-rc3-jammy`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/Dockerfile) + - [`6.0.20-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.20-rc2-windowsservercore`, `6.0-rc-windowsservercore`: +- `6.0.20-rc3-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.20-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.20-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.20-rc2-nanoserver`, `6.0-rc-nanoserver`: +- `6.0.20-rc3-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.20-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.20-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/207da90e2c4682ebc65e3a3154fb8c0f2297b78c/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.20-rc3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.20-rc3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.19`, `6.0`, `6`: diff --git a/nextcloud/README.md b/nextcloud/README.md index 09b410351b40..8a1177f4beac 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,11 +28,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.13-apache`, `28.0-apache`, `28-apache`, `28.0.13`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/apache/Dockerfile) +- [`28.0.14-apache`, `28.0-apache`, `28-apache`, `28.0.14`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/apache/Dockerfile) -- [`28.0.13-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/fpm/Dockerfile) +- [`28.0.14-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/fpm/Dockerfile) -- [`28.0.13-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/28/fpm-alpine/Dockerfile) +- [`28.0.14-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/fpm-alpine/Dockerfile) - [`29.0.10-apache`, `29.0-apache`, `29-apache`, `29.0.10`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/apache/Dockerfile) @@ -40,11 +40,11 @@ WARNING: - [`29.0.10-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/fpm-alpine/Dockerfile) -- [`30.0.3-apache`, `30.0-apache`, `30-apache`, `apache`, `30.0.3`, `30.0`, `30`, `latest`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/apache/Dockerfile) +- [`30.0.4-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.4`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/apache/Dockerfile) -- [`30.0.3-fpm`, `30.0-fpm`, `30-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/fpm/Dockerfile) +- [`30.0.4-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/fpm/Dockerfile) -- [`30.0.3-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/30/fpm-alpine/Dockerfile) +- [`30.0.4-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index b99512a08cd7..ad3ab43207ba 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-preview2-bookworm`, `3.4-rc-bookworm`, `3.4.0-preview2`, `3.4-rc`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/bookworm/Dockerfile) +- [`3.4.0-rc1-bookworm`, `3.4-rc-bookworm`, `3.4.0-rc1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/bookworm/Dockerfile) -- [`3.4.0-preview2-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-preview2-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.0-rc1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-rc1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/slim-bookworm/Dockerfile) -- [`3.4.0-preview2-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/bullseye/Dockerfile) +- [`3.4.0-rc1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/bullseye/Dockerfile) -- [`3.4.0-preview2-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.0-rc1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/slim-bullseye/Dockerfile) -- [`3.4.0-preview2-alpine3.21`, `3.4-rc-alpine3.21`, `3.4.0-preview2-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.4-rc/alpine3.21/Dockerfile) +- [`3.4.0-rc1-alpine3.21`, `3.4-rc-alpine3.21`, `3.4.0-rc1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/alpine3.21/Dockerfile) -- [`3.4.0-preview2-alpine3.20`, `3.4-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.0-rc1-alpine3.20`, `3.4-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/alpine3.20/Dockerfile) -- [`3.3.6-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/bookworm/Dockerfile) +- [`3.3.6-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bookworm/Dockerfile) -- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.6-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/slim-bookworm/Dockerfile) +- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.6-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bookworm/Dockerfile) -- [`3.3.6-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/bullseye/Dockerfile) +- [`3.3.6-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bullseye/Dockerfile) -- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b511945b11599126f923b73533e7b906bb6e95cc/3.3/slim-bullseye/Dockerfile) +- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.3/alpine3.21/Dockerfile) +- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.20/Dockerfile) -- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/bookworm/Dockerfile) +- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/bookworm/Dockerfile) -- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/slim-bookworm/Dockerfile) +- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/slim-bookworm/Dockerfile) -- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/bullseye/Dockerfile) +- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/bullseye/Dockerfile) -- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/f268d3972ab3d0f8c8f6b546be8f0bb613a9dfd9/3.2/slim-bullseye/Dockerfile) +- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.2/alpine3.21/Dockerfile) +- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/alpine3.21/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/275c71d834ca184eff0da9bb02c868b44c573271/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/alpine3.20/Dockerfile) -- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bookworm/Dockerfile) +- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/slim-bookworm/Dockerfile) -- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/bullseye/Dockerfile) +- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/f69cac9888c7909b402a1bc21a87331429318aae/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/c79256398297d00ad8c393ef2a596767954b6042/3.1/alpine3.21/Dockerfile) +- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/bbd386f9c78b59db5ba41a01cdbb8decd740c231/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index 2a7b5d549044..bfde9f1e4b14 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6.0.2-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/24.04/Dockerfile) +- [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) -- [`6.0.2-slim`, `6.0-slim`, `6.0.2-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/24.04/slim/Dockerfile) +- [`6.0.3-slim`, `6.0-slim`, `6.0.3-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/slim/Dockerfile) -- [`6.0.2-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/22.04/Dockerfile) +- [`6.0.3-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/Dockerfile) -- [`6.0.2-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/22.04/slim/Dockerfile) +- [`6.0.3-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/slim/Dockerfile) -- [`6.0.2-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/20.04/slim/Dockerfile) +- [`6.0.3-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/slim/Dockerfile) -- [`6.0.2-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/ubuntu/20.04/Dockerfile) +- [`6.0.3-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/Dockerfile) -- [`6.0.2-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/debian/12/Dockerfile) +- [`6.0.3-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/debian/12/Dockerfile) -- [`6.0.2-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/fedora/39/Dockerfile) +- [`6.0.3-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/fedora/39/Dockerfile) -- [`6.0.2-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/amazonlinux/2/Dockerfile) +- [`6.0.3-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/Dockerfile) -- [`6.0.2-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/amazonlinux/2/slim/Dockerfile) +- [`6.0.3-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/slim/Dockerfile) -- [`6.0.2-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/rhel-ubi/9/Dockerfile) +- [`6.0.3-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/Dockerfile) -- [`6.0.2-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/rhel-ubi/9/slim/Dockerfile) +- [`6.0.3-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/slim/Dockerfile) -- [`6.0.2-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/1d8396adbb8688f8e85397bb3eec7b7dc36f22ac/6.0/windows/LTSC2022/Dockerfile) +- [`6.0.3-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/windows/LTSC2022/Dockerfile) - [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) From b7f63201a63ad6812e06269e10eb331385caa019 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Dec 2024 15:09:54 -0800 Subject: [PATCH 1756/2686] Run update.sh --- matomo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index 559ef9aaedd8..d85ca37eb971 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.2-apache`, `5.1-apache`, `5-apache`, `apache`, `5.1.2`, `5.1`, `5`, `latest`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/apache/Dockerfile) +- [`5.2.0-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.0`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/apache/Dockerfile) -- [`5.1.2-fpm`, `5.1-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/fpm/Dockerfile) +- [`5.2.0-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/fpm/Dockerfile) -- [`5.1.2-fpm-alpine`, `5.1-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/455f3a40831b82d603fd80526135d8cd52109190/fpm-alpine/Dockerfile) +- [`5.2.0-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/fpm-alpine/Dockerfile) # Quick reference (cont.) From cfecf31ab347e2b04dd4f405a9ef24637dd9df10 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Dec 2024 17:09:32 -0800 Subject: [PATCH 1757/2686] Run update.sh --- bash/README.md | 26 +++++++++++++------------- irssi/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/bash/README.md b/bash/README.md index c2151a5fb7fb..ab10fb68873c 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241126`, `devel`, `devel-20241126-alpine3.20`, `devel-alpine3.20`](https://github.com/tianon/docker-bash/blob/81712e450fb2dc6ef3683919519b6078492ab653/devel/Dockerfile) +- [`devel-20241126`, `devel`, `devel-20241126-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/devel/Dockerfile) -- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.20`, `5.3-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/tianon/docker-bash/blob/f487bffdced60fba425283c84317e6492488a252/5.3-rc/Dockerfile) +- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.3-rc/Dockerfile) -- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.20`, `5.2-alpine3.20`, `5-alpine3.20`, `alpine3.20`](https://github.com/tianon/docker-bash/blob/acac9dc9fc2a2c62f83d20e463f213cc0c028197/5.2/Dockerfile) +- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.21`, `5.2-alpine3.21`, `5-alpine3.21`, `alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.20`, `5.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/afbd6361eb8ec05bb0ea5fcfb118a69eb59b539d/5.1/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.21`, `5.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.20`, `5.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/699819eee5befbf7ac7f906e7a30171287de720b/5.0/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.21`, `5.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.20`, `4.4-alpine3.20`, `4-alpine3.20`](https://github.com/tianon/docker-bash/blob/f7d533503f4423a7542fd5479b053a35027025a1/4.4/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.21`, `4.4-alpine3.21`, `4-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.20`, `4.3-alpine3.20`](https://github.com/tianon/docker-bash/blob/0f38d86a4e6b5431d22f2afb2bd7c181221ad7d7/4.3/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.21`, `4.3-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.20`, `4.2-alpine3.20`](https://github.com/tianon/docker-bash/blob/05f9e93fbf2b995ee28a757b3cbcd0ae8d90445c/4.2/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.21`, `4.2-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.20`, `4.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/9e8e378aa52eebb91a1c74b9b4b8db724d4cef95/4.1/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.21`, `4.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.20`, `4.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/94dfac8edcd2f9cab9ad6277d5b621d3b68ed865/4.0/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.21`, `4.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.20`, `3.2-alpine3.20`, `3-alpine3.20`](https://github.com/tianon/docker-bash/blob/bd69755669b80037ca0d1e2181a823860af9737d/3.2/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.21`, `3.2-alpine3.21`, `3-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.20`, `3.1-alpine3.20`](https://github.com/tianon/docker-bash/blob/a83617b0ccad194449d1b3302900d0e3da9208b0/3.1/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.21`, `3.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.20`, `3.0-alpine3.20`](https://github.com/tianon/docker-bash/blob/70ab2885f72c548029c8121364a553c35e7a68bb/3.0/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.21`, `3.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.0/Dockerfile) # Quick reference (cont.) diff --git a/irssi/README.md b/irssi/README.md index 42a8c530fbe5..ce34800c1718 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) -- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.20`, `1.4-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/jessfraz/irssi/blob/ce043e84f00a74532313e8a6203bc8b96194c28a/alpine/Dockerfile) +- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.21`, `1.4-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/jessfraz/irssi/blob/1581d0c09544a0bd8de42ba3d185956be6a9935c/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0314a696d349..875ae2d21044 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1283f86cf42e07ae0b7547f1ec8bdd71ca1467fc/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7-slim-fips/Dockerfile) # Quick reference (cont.) From 9182d8dda8195fee7703b6e0dcc4b4f2c7245e5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Dec 2024 12:09:23 -0800 Subject: [PATCH 1758/2686] Run update.sh --- crate/README.md | 2 +- friendica/README.md | 18 +++++++++--------- haproxy/README.md | 14 +++++++------- julia/README.md | 4 ++-- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/crate/README.md b/crate/README.md index c27d24ad2f54..158fd86ff3f8 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.4`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/94290e564746e99ef336971276e3bd0a9c62b8c9/Dockerfile) +- [`5.9.5`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/2fe2732a90bcb0e2b7a469e01fab7a366505d881/Dockerfile) - [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 9c3f79fd2ef1..68df6578fda1 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,17 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2024.08-apache`, `apache`, `stable-apache`, `2024.08`, `latest`, `stable`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/apache/Dockerfile) +- [`2024.08-apache`, `apache`, `stable-apache`, `2024.08`, `latest`, `stable`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/apache/Dockerfile) -- [`2024.08-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm/Dockerfile) +- [`2024.08-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm/Dockerfile) -- [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/bbb87e370743fee6fd9430ea129cf96750e22990/2024.08/fpm-alpine/Dockerfile) - -- [`2024.09-dev-apache`, `dev-apache`, `2024.09-dev`, `dev`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/apache/Dockerfile) - -- [`2024.09-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/fpm/Dockerfile) - -- [`2024.09-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-dev/fpm-alpine/Dockerfile) +- [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm-alpine/Dockerfile) - [`2024.09-rc-apache`, `rc-apache`, `2024.09-rc`, `rc`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/apache/Dockerfile) @@ -42,6 +36,12 @@ WARNING: - [`2024.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/fpm-alpine/Dockerfile) +- [`2024.12-dev-apache`, `dev-apache`, `2024.12-dev`, `dev`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/apache/Dockerfile) + +- [`2024.12-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/fpm/Dockerfile) + +- [`2024.12-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/haproxy/README.md b/haproxy/README.md index 1776e58f880d..cb49793291e8 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,31 +26,31 @@ WARNING: - [`3.2-dev1`, `3.2-dev`, `3.2-dev1-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/98981317e3520043f10841a76e8c0f691b29037d/3.2/Dockerfile) -- [`3.2-dev1-alpine`, `3.2-dev-alpine`, `3.2-dev1-alpine3.20`, `3.2-dev-alpine3.20`](https://github.com/docker-library/haproxy/blob/98981317e3520043f10841a76e8c0f691b29037d/3.2/alpine/Dockerfile) +- [`3.2-dev1-alpine`, `3.2-dev-alpine`, `3.2-dev1-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.2/alpine/Dockerfile) - [`3.1.1`, `3.1`, `latest`, `3.1.1-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/Dockerfile) -- [`3.1.1-alpine`, `3.1-alpine`, `alpine`, `3.1.1-alpine3.20`, `3.1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/alpine/Dockerfile) +- [`3.1.1-alpine`, `3.1-alpine`, `alpine`, `3.1.1-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.1/alpine/Dockerfile) - [`3.0.7`, `3.0`, `lts`, `3.0.7-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/Dockerfile) -- [`3.0.7-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.7-alpine3.20`, `3.0-alpine3.20`, `lts-alpine3.20`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/alpine/Dockerfile) +- [`3.0.7-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.7-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.0/alpine/Dockerfile) - [`2.9.13`, `2.9`, `2.9.13-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/0c1da312a638ecef78b17c6919ec9780bc1f75e9/2.9/Dockerfile) -- [`2.9.13-alpine`, `2.9-alpine`, `2.9.13-alpine3.20`, `2.9-alpine3.20`](https://github.com/docker-library/haproxy/blob/0c1da312a638ecef78b17c6919ec9780bc1f75e9/2.9/alpine/Dockerfile) +- [`2.9.13-alpine`, `2.9-alpine`, `2.9.13-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.9/alpine/Dockerfile) - [`2.8.13`, `2.8`, `2.8.13-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/ff4e3ce324778f1c2b65d6d61ddbf00c0b51793b/2.8/Dockerfile) -- [`2.8.13-alpine`, `2.8-alpine`, `2.8.13-alpine3.20`, `2.8-alpine3.20`](https://github.com/docker-library/haproxy/blob/ff4e3ce324778f1c2b65d6d61ddbf00c0b51793b/2.8/alpine/Dockerfile) +- [`2.8.13-alpine`, `2.8-alpine`, `2.8.13-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.8/alpine/Dockerfile) - [`2.6.20`, `2.6`, `2.6.20-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/Dockerfile) -- [`2.6.20-alpine`, `2.6-alpine`, `2.6.20-alpine3.20`, `2.6-alpine3.20`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/alpine/Dockerfile) +- [`2.6.20-alpine`, `2.6-alpine`, `2.6.20-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.6/alpine/Dockerfile) - [`2.4.28`, `2.4`, `2.4.28-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/Dockerfile) -- [`2.4.28-alpine`, `2.4-alpine`, `2.4.28-alpine3.20`, `2.4-alpine3.20`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/alpine/Dockerfile) +- [`2.4.28-alpine`, `2.4-alpine`, `2.4.28-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 7e0fb6080132..11f0fb62a73b 100644 --- a/julia/README.md +++ b/julia/README.md @@ -32,9 +32,9 @@ WARNING: - [`1.11.2-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bullseye/Dockerfile) -- [`1.11.2-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`, `1.11.2-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.20/Dockerfile) +- [`1.11.2-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.11.2-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/c763e6dd2005540877917987840d0128b819de91/1.11/alpine3.21/Dockerfile) -- [`1.11.2-alpine3.19`, `1.11-alpine3.19`, `1-alpine3.19`, `alpine3.19`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.19/Dockerfile) +- [`1.11.2-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.20/Dockerfile) - [`1.11.2-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) From 12bdba298a833dd4fb9600333c40c89f8ca06486 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Dec 2024 14:09:24 -0800 Subject: [PATCH 1759/2686] Run update.sh --- arangodb/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 986d97ac9e9d..da86b1a96c06 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.12`](https://github.com/arangodb/arangodb-docker/blob/e10eb7c8bbdfa928b912e182571bfaf29bd55fb4/alpine/3.11.12/Dockerfile) +- [`3.11`, `3.11.12`](https://github.com/arangodb/arangodb-docker/blob/de481d822b675af548d17ec1a448fe7dbee97641/alpine/3.11.12_alpine-3.18/Dockerfile) -- [`3.12`, `3.12.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/76adfc275579f9e096d965a4afc429c2a1c25274/alpine/3.12.3/Dockerfile) +- [`3.12`, `3.12.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/de481d822b675af548d17ec1a448fe7dbee97641/alpine/3.12.3_alpine-3.18/Dockerfile) # Quick reference (cont.) From 04a8ddfcc3a04ded1aa1d1f4a0952b2b5ada0b85 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Dec 2024 15:09:23 -0800 Subject: [PATCH 1760/2686] Run update.sh --- api-firewall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 221e9492aee5..1d67a06a5890 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.4`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/68375d5f34d01ee894aae48bd001863a7fce0faf/0.8.4/Dockerfile) +- [`0.8.5`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0929ac5d2e12037741789bed7a6cf2694887f776/0.8.5/Dockerfile) # Quick reference (cont.) From c7816303bddd4949378a01907e6f68bdea07c38e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Dec 2024 16:09:34 -0800 Subject: [PATCH 1761/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++---------------------- openjdk/README.md | 72 +++++++++++++++--------------- 2 files changed, 78 insertions(+), 90 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 1592a7cfbc77..f17335047ab3 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u432`, `8u432-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u432-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u432`, `8u432-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u432-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u432-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u432-al2023-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u432-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u432-al2023-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u432-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u432-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u432-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u432-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2/Dockerfile) -- [`8-alpine3.17`, `8u432-alpine3.17`, `8-alpine3.17-full`, `8-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.17/Dockerfile) +- [`8-alpine3.18`, `8u432-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.17-jre`, `8u432-alpine3.17-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.17/Dockerfile) +- [`8-alpine3.18-jre`, `8u432-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.18`, `8u432-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u432-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.18-jre`, `8u432-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19-jre`, `8u432-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.19`, `8u432-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.20`, `8u432-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u432-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.19-jre`, `8u432-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.20-jre`, `8u432-alpine3.20-jre`, `8-alpine-jre`, `8u432-alpine-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.20`, `8u432-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u432-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jdk/alpine/3.20/Dockerfile) +- [`11`, `11.0.25`, `11.0.25-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.25-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2-generic/Dockerfile) -- [`8-alpine3.20-jre`, `8u432-alpine3.20-jre`, `8-alpine-jre`, `8u432-alpine-jre`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/8/jre/alpine/3.20/Dockerfile) +- [`11-al2023`, `11.0.25-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2023/Dockerfile) -- [`11`, `11.0.25`, `11.0.25-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.25-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2-generic/Dockerfile) +- [`11-al2023-headless`, `11.0.25-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headless/al2023/Dockerfile) -- [`11-al2023`, `11.0.25-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.25-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headful/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.25-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headless/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.25-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headless/al2/Dockerfile) -- [`11-al2023-headful`, `11.0.25-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headful/al2023/Dockerfile) +- [`11-al2-native-jdk`, `11.0.25-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2/Dockerfile) -- [`11-al2-native-headless`, `11.0.25-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/headless/al2/Dockerfile) +- [`11-alpine3.18`, `11.0.25-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.18/Dockerfile) -- [`11-al2-native-jdk`, `11.0.25-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/al2/Dockerfile) +- [`11-alpine3.19`, `11.0.25-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.17`, `11.0.25-alpine3.17`, `11-alpine3.17-full`, `11-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.17/Dockerfile) +- [`11-alpine3.20`, `11.0.25-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.25-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.18`, `11.0.25-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.18/Dockerfile) +- [`17`, `17.0.13`, `17.0.13-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.13-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2-generic/Dockerfile) -- [`11-alpine3.19`, `11.0.25-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.19/Dockerfile) +- [`17-al2023`, `17.0.13-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2023/Dockerfile) -- [`11-alpine3.20`, `11.0.25-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.25-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/11/jdk/alpine/3.20/Dockerfile) +- [`17-al2023-headless`, `17.0.13-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headless/al2023/Dockerfile) -- [`17`, `17.0.13`, `17.0.13-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.13-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2-generic/Dockerfile) +- [`17-al2023-headful`, `17.0.13-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headful/al2023/Dockerfile) -- [`17-al2023`, `17.0.13-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.13-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headless/al2/Dockerfile) -- [`17-al2023-headless`, `17.0.13-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headless/al2023/Dockerfile) +- [`17-al2-native-headful`, `17.0.13-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headful/al2/Dockerfile) -- [`17-al2023-headful`, `17.0.13-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headful/al2023/Dockerfile) +- [`17-al2-native-jdk`, `17.0.13-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2/Dockerfile) -- [`17-al2-native-headless`, `17.0.13-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headless/al2/Dockerfile) +- [`17-alpine3.18`, `17.0.13-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.18/Dockerfile) -- [`17-al2-native-headful`, `17.0.13-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/headful/al2/Dockerfile) +- [`17-alpine3.19`, `17.0.13-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.19/Dockerfile) -- [`17-al2-native-jdk`, `17.0.13-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/al2/Dockerfile) +- [`17-alpine3.20`, `17.0.13-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.13-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.17`, `17.0.13-alpine3.17`, `17-alpine3.17-full`, `17-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.17/Dockerfile) +- [`21`, `21.0.5`, `21.0.5-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.5-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/al2-generic/Dockerfile) -- [`17-alpine3.18`, `17.0.13-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.18/Dockerfile) +- [`21-al2023`, `21.0.5-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/al2023/Dockerfile) -- [`17-alpine3.19`, `17.0.13-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.19/Dockerfile) +- [`21-al2023-headless`, `21.0.5-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/headless/al2023/Dockerfile) -- [`17-alpine3.20`, `17.0.13-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.13-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/17/jdk/alpine/3.20/Dockerfile) +- [`21-al2023-headful`, `21.0.5-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/headful/al2023/Dockerfile) -- [`21`, `21.0.5`, `21.0.5-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.5-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/al2-generic/Dockerfile) +- [`21-alpine3.18`, `21.0.5-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.18/Dockerfile) -- [`21-al2023`, `21.0.5-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/al2023/Dockerfile) +- [`21-alpine3.19`, `21.0.5-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.19/Dockerfile) -- [`21-al2023-headless`, `21.0.5-al2023-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/headless/al2023/Dockerfile) +- [`21-alpine3.20`, `21.0.5-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.5-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.20/Dockerfile) -- [`21-al2023-headful`, `21.0.5-al2023-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/headful/al2023/Dockerfile) +- [`23-al2023`, `23.0.1-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/al2023/Dockerfile) -- [`21-alpine3.17`, `21.0.5-alpine3.17`, `21-alpine3.17-full`, `21-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.17/Dockerfile) +- [`23-al2023-headless`, `23.0.1-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/headless/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.5-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.18/Dockerfile) +- [`23-al2023-headful`, `23.0.1-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/headful/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.5-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.19/Dockerfile) +- [`23-alpine3.18`, `23.0.1-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.20`, `21.0.5-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.5-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/21/jdk/alpine/3.20/Dockerfile) +- [`23-alpine3.19`, `23.0.1-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.19/Dockerfile) -- [`23-al2023`, `23.0.1-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/al2023/Dockerfile) - -- [`23-al2023-headless`, `23.0.1-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/headless/al2023/Dockerfile) - -- [`23-al2023-headful`, `23.0.1-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/headful/al2023/Dockerfile) - -- [`23-alpine3.17`, `23.0.1-alpine3.17`, `23-alpine3.17-full`, `23-alpine3.17-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.17/Dockerfile) - -- [`23-alpine3.18`, `23.0.1-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.18/Dockerfile) - -- [`23-alpine3.19`, `23.0.1-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.19/Dockerfile) - -- [`23-alpine3.20`, `23.0.1-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.1-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/043a4edae59728f75df4c89a4df2dea770763109/23/jdk/alpine/3.20/Dockerfile) +- [`23-alpine3.20`, `23.0.1-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.1-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.20/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 2d0bb4a6d0c8..d1c0db3ebd20 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-1-jdk-oraclelinux9`, `25-ea-1-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-1-jdk-oracle`, `25-ea-1-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-2-jdk-oraclelinux9`, `25-ea-2-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-2-jdk-oracle`, `25-ea-2-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-1-jdk-oraclelinux8`, `25-ea-1-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-2-jdk-oraclelinux8`, `25-ea-2-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-1-jdk-bookworm`, `25-ea-1-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/bookworm/Dockerfile) +- [`25-ea-2-jdk-bookworm`, `25-ea-2-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/bookworm/Dockerfile) -- [`25-ea-1-jdk-slim-bookworm`, `25-ea-1-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-1-jdk-slim`, `25-ea-1-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-2-jdk-slim-bookworm`, `25-ea-2-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-2-jdk-slim`, `25-ea-2-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-1-jdk-bullseye`, `25-ea-1-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/bullseye/Dockerfile) +- [`25-ea-2-jdk-bullseye`, `25-ea-2-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/bullseye/Dockerfile) -- [`25-ea-1-jdk-slim-bullseye`, `25-ea-1-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-2-jdk-slim-bullseye`, `25-ea-2-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-1-jdk-windowsservercore-ltsc2022`, `25-ea-1-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-2-jdk-windowsservercore-ltsc2022`, `25-ea-2-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-1-jdk-windowsservercore-1809`, `25-ea-1-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-2-jdk-windowsservercore-1809`, `25-ea-2-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-1-jdk-nanoserver-1809`, `25-ea-1-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-2-jdk-nanoserver-1809`, `25-ea-2-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-27-jdk-oraclelinux9`, `24-ea-27-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-27-jdk-oracle`, `24-ea-27-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-28-jdk-oraclelinux9`, `24-ea-28-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-28-jdk-oracle`, `24-ea-28-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-27-jdk-oraclelinux8`, `24-ea-27-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-28-jdk-oraclelinux8`, `24-ea-28-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-27-jdk-bookworm`, `24-ea-27-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/bookworm/Dockerfile) +- [`24-ea-28-jdk-bookworm`, `24-ea-28-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/bookworm/Dockerfile) -- [`24-ea-27-jdk-slim-bookworm`, `24-ea-27-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-27-jdk-slim`, `24-ea-27-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-28-jdk-slim-bookworm`, `24-ea-28-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-28-jdk-slim`, `24-ea-28-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-27-jdk-bullseye`, `24-ea-27-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/bullseye/Dockerfile) +- [`24-ea-28-jdk-bullseye`, `24-ea-28-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/bullseye/Dockerfile) -- [`24-ea-27-jdk-slim-bullseye`, `24-ea-27-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-28-jdk-slim-bullseye`, `24-ea-28-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-27-jdk-windowsservercore-ltsc2022`, `24-ea-27-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-28-jdk-windowsservercore-ltsc2022`, `24-ea-28-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-27-jdk-windowsservercore-1809`, `24-ea-27-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-28-jdk-windowsservercore-1809`, `24-ea-28-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-27-jdk-nanoserver-1809`, `24-ea-27-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-28-jdk-nanoserver-1809`, `24-ea-28-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-1-jdk`, `25-ea-1`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-2-jdk`, `25-ea-2`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-1-jdk-windowsservercore`, `25-ea-1-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-2-jdk-windowsservercore`, `25-ea-2-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-1-jdk-nanoserver`, `25-ea-1-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-2-jdk-nanoserver`, `25-ea-2-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-1-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8b4eb9793be5c98bd49a8046f59e2fc3e187caec/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-27-jdk`, `24-ea-27`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-28-jdk`, `24-ea-28`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-27-jdk-windowsservercore`, `24-ea-27-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-28-jdk-windowsservercore`, `24-ea-28-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-27-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-27-jdk-nanoserver`, `24-ea-27-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-28-jdk-nanoserver`, `24-ea-28-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-27-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/97526fa3a91c5d4b57f9278aa637618d12e006aa/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 60d19eb93b959bb9e38bb1b2d607b6e4d747504f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Dec 2024 17:09:32 -0800 Subject: [PATCH 1762/2686] Run update.sh --- docker/README.md | 10 ++++----- drupal/README.md | 52 +++++++++++++++++++++++++++++++++------------- ghost/README.md | 4 ++-- rabbitmq/README.md | 8 +++---- 4 files changed, 49 insertions(+), 25 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7555c6805b99..af71bbe40ea0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.4.0-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/cli/Dockerfile) +- [`27.4.0-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/cli/Dockerfile) - [`27.4.0-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.0-dind-alpine3.21`, `27.4.0`, `27.4`, `27`, `latest`, `27.4.0-alpine3.21`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind/Dockerfile) - [`27.4.0-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind-rootless/Dockerfile) -- [`27.4.0-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.0-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-1809/Dockerfile) +- [`27.4.0-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.4.0-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/windows/windowsservercore-1809/Dockerfile) + - [`27.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index f00cd084c7f8..4c3f15772887 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,6 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`11.1.0-rc1-php8.3-apache-bookworm`, `11.1-rc-php8.3-apache-bookworm`, `11.1.0-rc1-php8.3-apache`, `11.1-rc-php8.3-apache`, `11.1.0-rc1-php8.3`, `11.1-rc-php8.3`, `11.1.0-rc1-apache-bookworm`, `11.1-rc-apache-bookworm`, `11.1.0-rc1-apache`, `11.1-rc-apache`, `11.1.0-rc1`, `11.1-rc`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/apache-bookworm/Dockerfile) + +- [`11.1.0-rc1-php8.3-fpm-bookworm`, `11.1-rc-php8.3-fpm-bookworm`, `11.1.0-rc1-php8.3-fpm`, `11.1-rc-php8.3-fpm`, `11.1.0-rc1-fpm-bookworm`, `11.1-rc-fpm-bookworm`, `11.1.0-rc1-fpm`, `11.1-rc-fpm`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-bookworm/Dockerfile) + +- [`11.1.0-rc1-php8.3-apache-bullseye`, `11.1-rc-php8.3-apache-bullseye`, `11.1.0-rc1-apache-bullseye`, `11.1-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/apache-bullseye/Dockerfile) + +- [`11.1.0-rc1-php8.3-fpm-bullseye`, `11.1-rc-php8.3-fpm-bullseye`, `11.1.0-rc1-fpm-bullseye`, `11.1-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-bullseye/Dockerfile) + +- [`11.1.0-rc1-php8.3-fpm-alpine3.21`, `11.1-rc-php8.3-fpm-alpine3.21`, `11.1.0-rc1-php8.3-fpm-alpine`, `11.1-rc-php8.3-fpm-alpine`, `11.1.0-rc1-fpm-alpine3.21`, `11.1-rc-fpm-alpine3.21`, `11.1.0-rc1-fpm-alpine`, `11.1-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-alpine3.21/Dockerfile) + +- [`11.1.0-rc1-php8.3-fpm-alpine3.20`, `11.1-rc-php8.3-fpm-alpine3.20`, `11.1.0-rc1-fpm-alpine3.20`, `11.1-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-alpine3.20/Dockerfile) + - [`11.0.9-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.9-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.9-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.9-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.9-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.9`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bookworm/Dockerfile) - [`11.0.9-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.9-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.9-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.9-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bookworm/Dockerfile) @@ -32,9 +44,21 @@ WARNING: - [`11.0.9-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.9-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.9-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/11.0/php8.3/fpm-alpine3.21/Dockerfile) + +- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) + +- [`10.4.0-rc1-php8.3-apache-bookworm`, `10.4-rc-php8.3-apache-bookworm`, `10.4.0-rc1-php8.3-apache`, `10.4-rc-php8.3-apache`, `10.4.0-rc1-php8.3`, `10.4-rc-php8.3`, `10.4.0-rc1-apache-bookworm`, `10.4-rc-apache-bookworm`, `10.4.0-rc1-apache`, `10.4-rc-apache`, `10.4.0-rc1`, `10.4-rc`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/apache-bookworm/Dockerfile) + +- [`10.4.0-rc1-php8.3-fpm-bookworm`, `10.4-rc-php8.3-fpm-bookworm`, `10.4.0-rc1-php8.3-fpm`, `10.4-rc-php8.3-fpm`, `10.4.0-rc1-fpm-bookworm`, `10.4-rc-fpm-bookworm`, `10.4.0-rc1-fpm`, `10.4-rc-fpm`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-bookworm/Dockerfile) + +- [`10.4.0-rc1-php8.3-apache-bullseye`, `10.4-rc-php8.3-apache-bullseye`, `10.4.0-rc1-apache-bullseye`, `10.4-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/apache-bullseye/Dockerfile) + +- [`10.4.0-rc1-php8.3-fpm-bullseye`, `10.4-rc-php8.3-fpm-bullseye`, `10.4.0-rc1-fpm-bullseye`, `10.4-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-bullseye/Dockerfile) + +- [`10.4.0-rc1-php8.3-fpm-alpine3.21`, `10.4-rc-php8.3-fpm-alpine3.21`, `10.4.0-rc1-php8.3-fpm-alpine`, `10.4-rc-php8.3-fpm-alpine`, `10.4.0-rc1-fpm-alpine3.21`, `10.4-rc-fpm-alpine3.21`, `10.4.0-rc1-fpm-alpine`, `10.4-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.19`, `11.0-php8.3-fpm-alpine3.19`, `11-php8.3-fpm-alpine3.19`, `php8.3-fpm-alpine3.19`, `11.0.9-fpm-alpine3.19`, `11.0-fpm-alpine3.19`, `11-fpm-alpine3.19`, `fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.4.0-rc1-php8.3-fpm-alpine3.20`, `10.4-rc-php8.3-fpm-alpine3.20`, `10.4.0-rc1-fpm-alpine3.20`, `10.4-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.10-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.10-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.10-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bookworm/Dockerfile) @@ -44,9 +68,9 @@ WARNING: - [`10.3.10-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.19`, `10.3-php8.3-fpm-alpine3.19`, `10-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.10-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.10-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.10-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.10-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.10-apache`, `10.3-apache`, `10-apache`, `10.3.10`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bookworm/Dockerfile) @@ -56,9 +80,9 @@ WARNING: - [`10.3.10-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.10-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10-php8.2-fpm-alpine3.21`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.19`, `10.3-php8.2-fpm-alpine3.19`, `10-php8.2-fpm-alpine3.19`, `10.3.10-fpm-alpine3.19`, `10.3-fpm-alpine3.19`, `10-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) - [`10.2.12-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.12-php8.3-apache`, `10.2-php8.3-apache`, `10.2.12-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/apache-bookworm/Dockerfile) @@ -68,9 +92,9 @@ WARNING: - [`10.2.12-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-bullseye/Dockerfile) -- [`10.2.12-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`, `10.2.12-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.2.12-php8.3-fpm-alpine3.21`, `10.2-php8.3-fpm-alpine3.21`, `10.2.12-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.2/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.2.12-php8.3-fpm-alpine3.19`, `10.2-php8.3-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.19/Dockerfile) +- [`10.2.12-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.20/Dockerfile) - [`10.2.12-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.12-php8.2-apache`, `10.2-php8.2-apache`, `10.2.12-php8.2`, `10.2-php8.2`, `10.2.12-apache-bookworm`, `10.2-apache-bookworm`, `10.2.12-apache`, `10.2-apache`, `10.2.12`, `10.2`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/apache-bookworm/Dockerfile) @@ -80,9 +104,9 @@ WARNING: - [`10.2.12-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.12-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-bullseye/Dockerfile) -- [`10.2.12-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.12-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.12-fpm-alpine3.20`, `10.2-fpm-alpine3.20`, `10.2.12-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.2.12-php8.2-fpm-alpine3.21`, `10.2-php8.2-fpm-alpine3.21`, `10.2.12-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.12-fpm-alpine3.21`, `10.2-fpm-alpine3.21`, `10.2.12-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.2/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.2.12-php8.2-fpm-alpine3.19`, `10.2-php8.2-fpm-alpine3.19`, `10.2.12-fpm-alpine3.19`, `10.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.19/Dockerfile) +- [`10.2.12-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.12-fpm-alpine3.20`, `10.2-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.20/Dockerfile) - [`7.103-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.103-php8.2-apache`, `7-php8.2-apache`, `7.103-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bookworm/Dockerfile) @@ -92,9 +116,9 @@ WARNING: - [`7.103-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-bullseye/Dockerfile) -- [`7.103-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`, `7.103-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.20/Dockerfile) +- [`7.103-php8.2-fpm-alpine3.21`, `7-php8.2-fpm-alpine3.21`, `7.103-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/7/php8.2/fpm-alpine3.21/Dockerfile) -- [`7.103-php8.2-fpm-alpine3.19`, `7-php8.2-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.19/Dockerfile) +- [`7.103-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.20/Dockerfile) - [`7.103-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.103-php8.1-apache`, `7-php8.1-apache`, `7.103-php8.1`, `7-php8.1`, `7.103-apache-bookworm`, `7-apache-bookworm`, `7.103-apache`, `7-apache`, `7.103`, `7`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/apache-bookworm/Dockerfile) @@ -104,9 +128,9 @@ WARNING: - [`7.103-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.103-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-bullseye/Dockerfile) -- [`7.103-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.103-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.103-fpm-alpine3.20`, `7-fpm-alpine3.20`, `7.103-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.20/Dockerfile) +- [`7.103-php8.1-fpm-alpine3.21`, `7-php8.1-fpm-alpine3.21`, `7.103-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.103-fpm-alpine3.21`, `7-fpm-alpine3.21`, `7.103-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/7/php8.1/fpm-alpine3.21/Dockerfile) -- [`7.103-php8.1-fpm-alpine3.19`, `7-php8.1-fpm-alpine3.19`, `7.103-fpm-alpine3.19`, `7-fpm-alpine3.19`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.19/Dockerfile) +- [`7.103-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.103-fpm-alpine3.20`, `7-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index fd855c729ca9..5cf659feaee4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.104.2`, `5.104`, `5`, `latest`](https://github.com/docker-library/ghost/blob/980d1147ebcabf88c9279984e7453afb7f2f7f21/5/debian/Dockerfile) +- [`5.105.0`, `5.105`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fab52d5c943038af09062b995d8a9822483e933e/5/debian/Dockerfile) -- [`5.104.2-alpine`, `5.104-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/371ce7bbb480b1e1cf60287325041b4d02b1e30d/5/alpine/Dockerfile) +- [`5.105.0-alpine`, `5.105-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fab52d5c943038af09062b995d8a9822483e933e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 26ef80f5047b..438e63245fdd 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/99ed8dff13e2b79fc189b76bbbfec8d07947e6b9/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) @@ -36,15 +36,15 @@ WARNING: - [`4.0.4-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/efb58cd44392eb62a59b4408dffdf09ff5505015/4.0/alpine/Dockerfile) +- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/4.0/alpine/Dockerfile) - [`4.0.4-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/bd3e69e85cedd73b08319fd406ee91a9362d55d1/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/55d4ee381759d78087e5b7acde2aa9deba35a847/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/bd3e69e85cedd73b08319fd406ee91a9362d55d1/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From 8f34c9b3a1ecdeb9eeeeeda71f790d36f114d3b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Dec 2024 09:09:43 -0800 Subject: [PATCH 1763/2686] Run update.sh --- traefik/README.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 6d1f17b255eb..404c00d95cab 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.2.2-windowsservercore-ltsc2022`, `3.2.2-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.0-rc1-windowsservercore-ltsc2022`, `3.3.0-rc1-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.2-windowsservercore-1809`, `3.2.2-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/1809/Dockerfile) +- [`v3.3.0-rc1-windowsservercore-1809`, `3.3.0-rc1-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/1809/Dockerfile) -- [`v3.2.2-nanoserver-ltsc2022`, `3.2.2-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.0-rc1-nanoserver-ltsc2022`, `3.3.0-rc1-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.2`, `3.2.2`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/fbf1dbdec0fa8e260320e0ac604b539eb3b56ec5/v3.2/alpine/Dockerfile) +- [`v3.3.0-rc1`, `3.3.0-rc1`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/alpine/Dockerfile) -- [`v2.11.15-windowsservercore-ltsc2022`, `2.11.15-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.3-windowsservercore-ltsc2022`, `3.2.3-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.15-windowsservercore-1809`, `2.11.15-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/1809/Dockerfile) +- [`v3.2.3-windowsservercore-1809`, `3.2.3-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/1809/Dockerfile) -- [`v2.11.15-nanoserver-ltsc2022`, `2.11.15-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.3-nanoserver-ltsc2022`, `3.2.3-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.15`, `2.11.15`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/64d06fb359586a9e138488d8ce2ee880f9ff3074/v2.11/alpine/Dockerfile) +- [`v3.2.3`, `3.2.3`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/alpine/Dockerfile) + +- [`v2.11.16-windowsservercore-ltsc2022`, `2.11.16-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/servercore-ltsc2022/Dockerfile) + +- [`v2.11.16-windowsservercore-1809`, `2.11.16-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/1809/Dockerfile) + +- [`v2.11.16-nanoserver-ltsc2022`, `2.11.16-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + +- [`v2.11.16`, `2.11.16`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/alpine/Dockerfile) # Quick reference (cont.) From c009a637a49469d72a3e960bf033c153391cd9aa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Dec 2024 10:09:30 -0800 Subject: [PATCH 1764/2686] Run update.sh --- alt/README.md | 8 ++++---- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- joomla/README.md | 30 +++++++++++++++--------------- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/alt/README.md b/alt/README.md index 8aed61d0431d..64244d091a16 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/2b0521341f04c191ddc8ae2c61f87c13ce4c4c83/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/fa2dd8158cb2fae6f6beb1b75ce521a906defdb6/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/0094deef5ac8e3d66a7f57dcf4377165adf033cb/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/22fa2c4589ddd9a413c483e03258a8e337dfe195/x86_64/Dockerfile) -- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/be88d3c5797a8e00da1665691317d17b352502bf/x86_64/Dockerfile) +- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/c2d543714938d5ab0d474f584e0b11b527e08943/x86_64/Dockerfile) # Quick reference (cont.) @@ -38,7 +38,7 @@ WARNING: For create new bug, please use [ALT's bugzilla page](https://bugzilla.altlinux.org/enter_bug.cgi?product=Docker) (choose `Official image` as component and include details about image problems in the description) or [GitHub](https://github.com/alt-cloud/docker-brew-alt/issues). - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/alt/), [`arm64v8`](https://hub.docker.com/r/arm64v8/alt/), [`i386`](https://hub.docker.com/r/i386/alt/) + [`amd64`](https://hub.docker.com/r/amd64/alt/), [`arm64v8`](https://hub.docker.com/r/arm64v8/alt/), [`i386`](https://hub.docker.com/r/i386/alt/), [`riscv64`](https://hub.docker.com/r/riscv64/alt/) - **Published image artifact details**: [repo-info repo's `repos/alt/` directory](https://github.com/docker-library/repo-info/blob/master/repos/alt) ([history](https://github.com/docker-library/repo-info/commits/master/repos/alt)) diff --git a/archlinux/README.md b/archlinux/README.md index 49722a2b62f8..c5f7cfea1653 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.base) +- [`latest`, `base`, `base-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.base) -- [`base-devel`, `base-devel-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241208.0.286830`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/21f7ba1577bff0624cd2295ccbf6068dd23bd6c6/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index f0510cbe606c..27f4a315715c 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/08f41a5297c0b0d27fad6899032357061335bb92/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/e6fdba6b2c6768dc9c6c090010e09c17628e0948/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 8626355b2246..f279ab30e14f 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/apache/Dockerfile) +- [`5.2.1-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/apache/Dockerfile) -- [`5.2.1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.2.1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.1-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.1/fpm/Dockerfile) +- [`5.2.1-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/fpm/Dockerfile) -- [`5.2.1`, `5.2`, `5`, `latest`, `5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.1-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/apache/Dockerfile) +- [`5.2.1`, `5.2`, `5`, `latest`, `5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.1-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/apache/Dockerfile) -- [`5.2.1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.2.1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.1-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.2/fpm/Dockerfile) +- [`5.2.1-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/fpm/Dockerfile) -- [`5.2.1-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/apache/Dockerfile) +- [`5.2.1-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/apache/Dockerfile) -- [`5.2.1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.1-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/28003b6c30f534a1fa39446f8bc95a21869d70d5/5.2/php8.3/fpm/Dockerfile) +- [`5.2.1-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/fpm/Dockerfile) -- [`4.4.9`, `4.4`, `4`, `4.4.9-apache`, `4.4-apache`, `4-apache`, `4.4.9-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.9-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/apache/Dockerfile) +- [`4.4.9`, `4.4`, `4`, `4.4.9-apache`, `4.4-apache`, `4-apache`, `4.4.9-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.9-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/apache/Dockerfile) -- [`4.4.9-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.9-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.9-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.1/fpm/Dockerfile) +- [`4.4.9-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/fpm/Dockerfile) -- [`4.4.9-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/apache/Dockerfile) +- [`4.4.9-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/apache/Dockerfile) -- [`4.4.9-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.9-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.9-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b08c5e9d08ecebc9284790208bfb74b886257f75/4.4/php8.2/fpm/Dockerfile) +- [`4.4.9-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From d178f4c03e617d558c56855c0c95865c8cc0447e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Dec 2024 11:09:34 -0800 Subject: [PATCH 1765/2686] Run update.sh --- elasticsearch/README.md | 6 +++--- kibana/README.md | 6 +++--- logstash/README.md | 6 +++--- nats/README.md | 22 +++++++++++----------- rakudo-star/README.md | 4 ++-- redmine/README.md | 18 +++++++++--------- sonarqube/README.md | 20 ++++++++++---------- xwiki/README.md | 6 +++--- 8 files changed, 44 insertions(+), 44 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 51cf3624630f..2b5042886983 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/elasticsearch/Dockerfile) - -- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/elasticsearch/Dockerfile) +- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/elasticsearch/Dockerfile) - [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/elasticsearch/Dockerfile) +- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/elasticsearch/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/kibana/README.md b/kibana/README.md index 6bf751666180..4b58a4a6d1f2 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/kibana/Dockerfile) - -- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/kibana/Dockerfile) +- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/kibana/Dockerfile) - [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/kibana/Dockerfile) +- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/kibana/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/logstash/README.md b/logstash/README.md index 00a80ab67f7a..842c6ad69eee 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.1`](https://github.com/elastic/dockerfiles/blob/905b04aed7c279576c093de38e3dfa9d11c45d04/logstash/Dockerfile) - -- [`8.15.5`](https://github.com/elastic/dockerfiles/blob/000ec0794972a956614bdb904bafdb92cb84dfbe/logstash/Dockerfile) +- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/logstash/Dockerfile) - [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/logstash/Dockerfile) +- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/logstash/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/nats/README.md b/nats/README.md index e40b8c87f3b5..80d10eddd9af 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.23-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.23-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/alpine3.21/Dockerfile) +- [`2.10.24-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.24-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/alpine3.21/Dockerfile) -- [`2.10.23-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.23-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/scratch/Dockerfile) +- [`2.10.24-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.24-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/scratch/Dockerfile) -- [`2.10.23-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.24-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.23-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.24-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.23`, `2.10`, `2`, `latest`: +- `2.10.24`, `2.10`, `2`, `latest`: - - [`2.10.23-scratch`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/scratch/Dockerfile) - - [`2.10.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.24-scratch`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/scratch/Dockerfile) + - [`2.10.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.23-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.24-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.23-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.23-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.24-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.23-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/72e115b56ee1840779e1c7fb83ba4f6fe3586e05/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 037f2890de5b..550615764341 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.10`, `bookworm`](https://github.com/Raku/docker/blob/70ac3871e782228cca1256118c8a37154a164bae/2024.10/bookworm/Dockerfile) +- [`latest`, `2024.12`, `bookworm`](https://github.com/Raku/docker/blob/5ee0f98efba56a1152775f861662c1774520aef9/2024.12/bookworm/Dockerfile) -- [`alpine`, `2024.10-alpine`](https://github.com/Raku/docker/blob/70ac3871e782228cca1256118c8a37154a164bae/2024.10/alpine/Dockerfile) +- [`alpine`, `2024.12-alpine`](https://github.com/Raku/docker/blob/5ee0f98efba56a1152775f861662c1774520aef9/2024.12/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 0c06cd4785a6..3eb3af3c7045 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.1`, `6.0`, `6`, `latest`, `6.0.1-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/bookworm/Dockerfile) +- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/bookworm/Dockerfile) -- [`6.0.1-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`, `6.0.1-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/alpine3.20/Dockerfile) +- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/alpine3.21/Dockerfile) -- [`6.0.1-alpine3.19`, `6.0-alpine3.19`, `6-alpine3.19`, `alpine3.19`](https://github.com/docker-library/redmine/blob/f18c3977c16a9c404017a5dc924720eedbf34c78/6.0/alpine3.19/Dockerfile) +- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/alpine3.20/Dockerfile) -- [`5.1.4`, `5.1`, `5`, `5.1.4-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/bookworm/Dockerfile) +- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/bookworm/Dockerfile) -- [`5.1.4-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`, `5.1.4-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.20/Dockerfile) +- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/alpine3.21/Dockerfile) -- [`5.1.4-alpine3.19`, `5.1-alpine3.19`, `5-alpine3.19`](https://github.com/docker-library/redmine/blob/47d999427ba69310da16e625ad8908a75a556178/5.1/alpine3.19/Dockerfile) +- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/alpine3.20/Dockerfile) -- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/bookworm/Dockerfile) +- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2f7ad78c65f5ea8724f994ea2a33dafcc4cd32eb/5.0/bookworm/Dockerfile) -- [`5.0.10-alpine3.20`, `5.0-alpine3.20`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/alpine3.20/Dockerfile) +- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/5e9640071612b4b7b4335548dcb110ad1a76ad16/5.0/alpine3.21/Dockerfile) -- [`5.0.10-alpine3.19`, `5.0-alpine3.19`](https://github.com/docker-library/redmine/blob/dd8cf6be1e8a824236e6717cb948695b7740e77c/5.0/alpine3.19/Dockerfile) +- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2f7ad78c65f5ea8724f994ea2a33dafcc4cd32eb/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index cdaa26e857da..cc0f93d243f0 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/developer/Dockerfile) -- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/enterprise/Dockerfile) +- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/enterprise/Dockerfile) -- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/datacenter/app/Dockerfile) +- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/datacenter/app/Dockerfile) -- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/9/datacenter/search/Dockerfile) +- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/datacenter/search/Dockerfile) -- [`10.8.0-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/developer/Dockerfile) +- [`10.8.1-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/developer/Dockerfile) -- [`10.8.0-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/enterprise/Dockerfile) +- [`10.8.1-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/enterprise/Dockerfile) -- [`10.8.0-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/datacenter/app/Dockerfile) +- [`10.8.1-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/datacenter/app/Dockerfile) -- [`10.8.0-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/10/datacenter/search/Dockerfile) +- [`10.8.1-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/datacenter/search/Dockerfile) -- [`24.12.0.100206-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/f4f646eed2d589359ff6e806fb648049ac6ee67c/community-build/Dockerfile) +- [`24.12.0.100206-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/community-build/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 6aff9ec78b3e..84d29f030a21 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.5`, `16.4-mysql-tomcat`, `16.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.6-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/6abf836f3b11e59727fe6be42847a6a97b086f01/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From 0df0475ce5ccee41cd3faeaa68bf386da9718029 Mon Sep 17 00:00:00 2001 From: Ali Ghorbani Date: Wed, 18 Dec 2024 08:39:17 +0000 Subject: [PATCH 1766/2686] fix: remove obsolete docker compose file version --- wordpress/stack.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/wordpress/stack.yml b/wordpress/stack.yml index ac4ca9abd223..3fac6b715464 100644 --- a/wordpress/stack.yml +++ b/wordpress/stack.yml @@ -1,5 +1,3 @@ -version: '3.1' - services: wordpress: From 34b58ce67cf629d53075e1b0720491bf53b9997e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Dec 2024 09:09:23 -0800 Subject: [PATCH 1767/2686] Run update.sh --- wordpress/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index 70cc25ec292c..bc4a3e02f9cd 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -121,8 +121,6 @@ Currently, this is supported for `WORDPRESS_DB_HOST`, `WORDPRESS_DB_USER`, `WORD Example `docker-compose.yml` for `wordpress`: ```yaml -version: '3.1' - services: wordpress: @@ -154,7 +152,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/wordpress/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/0df0475ce5ccee41cd3faeaa68bf386da9718029/wordpress/stack.yml) Run `docker stack deploy -c stack.yml wordpress` (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). From d7148d4f1dabbe43a4709c4be81952e6a99fdfd6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Dec 2024 12:09:23 -0800 Subject: [PATCH 1768/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/python/README.md b/python/README.md index e2f057527071..6f134faad45e 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0a2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a2-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a3-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a2-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a3-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a3-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a2-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a3-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a2-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a3-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a2-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a3-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) @@ -114,16 +114,16 @@ WARNING: ## Shared Tags -- `3.14.0a2`, `3.14-rc`: +- `3.14.0a3`, `3.14-rc`: - - [`3.14.0a2-bookworm`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a3-bookworm`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a2-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a3-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a2-windowsservercore-1809`](https://github.com/docker-library/python/blob/ed43478490eb6c7717ffcf14c70fbd8086e20329/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.1`, `3.13`, `3`, `latest`: From 4b9f1f3985475a523597ff3d979a65843e26eef6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Dec 2024 22:09:27 -0800 Subject: [PATCH 1769/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- registry/README.md | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/README.md b/docker/README.md index af71bbe40ea0..4f49f8f51624 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.4.0-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/cli/Dockerfile) +- [`27.4.1-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/cli/Dockerfile) -- [`27.4.0-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.0-dind-alpine3.21`, `27.4.0`, `27.4`, `27`, `latest`, `27.4.0-alpine3.21`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind/Dockerfile) +- [`27.4.1-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.1-dind-alpine3.21`, `27.4.1`, `27.4`, `27`, `latest`, `27.4.1-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind/Dockerfile) -- [`27.4.0-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1cf4cea6a7e7b7fb5ab094ccec24c13f7c959fc6/27/dind-rootless/Dockerfile) +- [`27.4.1-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind-rootless/Dockerfile) -- [`27.4.0-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.1-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.0-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-1809/Dockerfile) +- [`27.4.1-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.4.0-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.4.1-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7f2fa41d70b70b6b813e1c11c8654956b20da6ca/27/windows/windowsservercore-1809/Dockerfile) + - [`27.4.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/registry/README.md b/registry/README.md index e8e0b71f6d95..639222a63af5 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-rc.1`](https://github.com/distribution/distribution-library-image/blob/be4eca0a5f3af34a026d1e9294d63f3464c06131/Dockerfile) +- [`3.0.0-rc.2`](https://github.com/distribution/distribution-library-image/blob/588e2e5ee607521e48cdc66147a42a2b6decd749/Dockerfile) - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) From 1176eac41a5051239e33d286cfd50d0238f76eae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Dec 2024 12:09:48 -0800 Subject: [PATCH 1770/2686] Run update.sh --- bash/README.md | 4 ++-- golang/README.md | 32 ++++++++++++++++++++++++++++++++ rabbitmq/README.md | 8 ++++---- 3 files changed, 38 insertions(+), 6 deletions(-) diff --git a/bash/README.md b/bash/README.md index ab10fb68873c..941387d3572d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241126`, `devel`, `devel-20241126-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/devel/Dockerfile) +- [`devel-20241213`, `devel`, `devel-20241213-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/be3e1c000bbc0a118e3d28f44e9e2a34fcb504d8/devel/Dockerfile) -- [`5.3-alpha`, `5.3-rc`, `rc`, `5.3-alpha-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.3-rc/Dockerfile) +- [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) - [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.21`, `5.2-alpine3.21`, `5-alpine3.21`, `alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.2/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 77dbba801bb6..4ad0274bca4a 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,6 +28,22 @@ WARNING: ## Simple Tags +- [`1.24rc1-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bookworm/Dockerfile) + +- [`1.24rc1-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bullseye/Dockerfile) + +- [`1.24rc1-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc1-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/alpine3.21/Dockerfile) + +- [`1.24rc1-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/alpine3.20/Dockerfile) + +- [`1.24rc1-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.24rc1-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) + +- [`1.24rc1-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`1.24rc1-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-1809/Dockerfile) + - [`1.23.4-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) - [`1.23.4-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bullseye/Dockerfile) @@ -62,6 +78,22 @@ WARNING: ## Shared Tags +- `1.24rc1`, `1.24-rc`: + + - [`1.24rc1-bookworm`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bookworm/Dockerfile) + - [`1.24rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) + +- `1.24rc1-windowsservercore`, `1.24-rc-windowsservercore`: + + - [`1.24rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) + +- `1.24rc1-nanoserver`, `1.24-rc-nanoserver`: + + - [`1.24rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-1809/Dockerfile) + - `1.23.4`, `1.23`, `1`, `latest`: - [`1.23.4-bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 438e63245fdd..80b412778035 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.4`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/efb58cd44392eb62a59b4408dffdf09ff5505015/4.0/ubuntu/Dockerfile) +- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/16db9e144e0c83d82e82533870054e609dbc8ca4/4.0/ubuntu/Dockerfile) -- [`4.0.4-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.5-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.4-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/4.0/alpine/Dockerfile) +- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/16db9e144e0c83d82e82533870054e609dbc8ca4/4.0/alpine/Dockerfile) -- [`4.0.4-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.5-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/55d4ee381759d78087e5b7acde2aa9deba35a847/3.13/ubuntu/Dockerfile) From 5a72d073e480fdfd16ebc4723f589aab8ad5acbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 19 Dec 2024 13:09:31 -0800 Subject: [PATCH 1771/2686] Run update.sh --- haskell/README.md | 12 ++++--- ibm-semeru-runtimes/README.md | 60 +++++++++++++++++------------------ neo4j/README.md | 4 +-- swipl/README.md | 4 +-- ubuntu/README.md | 2 +- 5 files changed, 43 insertions(+), 39 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 0e64c955af21..f7732c31a8eb 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,13 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.10/bullseye/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/bullseye/Dockerfile) -- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.10/slim-bullseye/Dockerfile) +- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/slim-bullseye/Dockerfile) -- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.6/bullseye/Dockerfile) +- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.8/bullseye/Dockerfile) -- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/cfaf06d32690811d0eeb16123534a312ee9b8859/9.6/slim-bullseye/Dockerfile) +- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.8/slim-bullseye/Dockerfile) + +- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.6/bullseye/Dockerfile) + +- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index ae24daaf0389..95c7c8d28597 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u432-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u432-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u432-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u432-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u432-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u432-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u432-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u432-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.25_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.13_11-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.5_11-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.1_11-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) ## Shared Tags - `open-8u432-b06-jdk`, `open-8-jdk`: - - [`open-8u432-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u432-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-8u432-b06-jre`, `open-8-jre`: - - [`open-8u432-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u432-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.25_9-jdk`, `open-11-jdk`: - - [`open-11.0.25_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.25_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-11.0.25_9-jre`, `open-11-jre`: - - [`open-11.0.25_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.25_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.13_11-jdk`, `open-17-jdk`: - - [`open-17.0.13_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.13_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-17.0.13_11-jre`, `open-17-jre`: - - [`open-17.0.13_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.13_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.5_11-jdk`, `open-21-jdk`: - - [`open-21.0.5_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.5_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-21.0.5_11-jre`, `open-21-jre`: - - [`open-21.0.5_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.5_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - `open-23.0.1_11-jdk`, `open-23-jdk`: - - [`open-23.0.1_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.1_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - `open-23.0.1_11-jre`, `open-23-jre`: - - [`open-23.0.1_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/0d581de9acf0fefbd9f7c5d7844fa0838d49a27d/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.1_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 9b4dd62a62b1..df73df76d408 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,9 +32,9 @@ WARNING: - [`5.26.0-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/ubi9/enterprise/Dockerfile) -- [`4.4.39`, `4.4.39-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/e0b93f39e18ba02d3c37677b70fd869070df0515/4.4.39/bullseye/community/Dockerfile) +- [`4.4.40`, `4.4.40-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/b8c0ca2e8dd585e338d74b191a2e370c0da14d92/4.4.40/bullseye/community/Dockerfile) -- [`4.4.39-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e0b93f39e18ba02d3c37677b70fd869070df0515/4.4.39/bullseye/enterprise/Dockerfile) +- [`4.4.40-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b8c0ca2e8dd585e338d74b191a2e370c0da14d92/4.4.40/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index f3f864d3067e..f8c2a0344c3e 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.16`](https://github.com/SWI-Prolog/docker-swipl/blob/3db90e2a6e96829fc6101af3f5f8c12728cf7357/9.3.16/bookworm/Dockerfile) +- [`latest`, `9.3.17`](https://github.com/SWI-Prolog/docker-swipl/blob/72d80cf34f165a7cc0159c5703a5f69afbf95f8e/9.3.17/bookworm/Dockerfile) -- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/3db90e2a6e96829fc6101af3f5f8c12728cf7357/9.2.8/bookworm/Dockerfile) +- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/72d80cf34f165a7cc0159c5703a5f69afbf95f8e/9.2.8/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 088fb51d156f..7d3bfddd7b11 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -32,7 +32,7 @@ WARNING: - [`24.10`, `oracular-20241120`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241120-aea1b7d3&id=aea1b7d330330843a7f7783a788965bc4e89cf6a) -- [`25.04`, `plucky-20241124`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241124-0033f337&id=0033f337718a9b5769da6cee57bf982cba9764b9) +- [`25.04`, `plucky-20241213`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241213-a232d27b&id=a232d27bc1e7b1173a1c8154366982d1e72b0d9b) # Quick reference (cont.) From 5a5865e3cc9fcd9920a0941e00668f50ad1ee162 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Dec 2024 08:09:34 -0800 Subject: [PATCH 1772/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 1b9ab2e313bb..f0a756f2b192 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.4-alpine3.20`, `23.4.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.5-alpine3.20`, `23.5.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.4-alpine`, `23.4-alpine3.21`, `23.4.0-alpine`, `23.4.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.5-alpine`, `23.5-alpine3.21`, `23.5.0-alpine`, `23.5.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.4`, `23.4-bookworm`, `23.4.0`, `23.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.5`, `23.5-bookworm`, `23.5.0`, `23.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.4-bookworm-slim`, `23.4-slim`, `23.4.0-bookworm-slim`, `23.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.5-bookworm-slim`, `23.5-slim`, `23.5.0-bookworm-slim`, `23.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.4-bullseye`, `23.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.5-bullseye`, `23.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.4-bullseye-slim`, `23.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/69835363827e3336ee652c63a413d1849bd2f401/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.5-bullseye-slim`, `23.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.12-alpine3.20`, `22.12.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) From 063eb28d96b55538e1fb2ed88d7d4b7c6a6477df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Dec 2024 13:09:39 -0800 Subject: [PATCH 1773/2686] Run update.sh --- amazonlinux/README.md | 6 +- api-firewall/README.md | 2 +- drupal/README.md | 84 ++++++++------------- gradle/README.md | 48 ++++++------ odoo/README.md | 6 +- oraclelinux/README.md | 18 ++--- percona/README.md | 10 ++- php/README.md | 168 +++++++++++------------------------------ swipl/README.md | 4 +- traefik/README.md | 8 +- 10 files changed, 126 insertions(+), 228 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 2153cc42e6eb..c670373425e8 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20241121.0`](https://github.com/amazonlinux/container-images/blob/167d1c4f918992a8fb72b6f20f95b55f974e638c/Dockerfile) +- [`2023`, `latest`, `2023.6.20241212.0`](https://github.com/amazonlinux/container-images/blob/57f3185c634b55eafe58bfdec5f5db20c6462032/Dockerfile) -- [`2`, `2.0.20241113.1`](https://github.com/amazonlinux/container-images/blob/9345a9ec09cd77260d6000edcaa954d8cc0cd983/Dockerfile) +- [`2`, `2.0.20241113.1`](https://github.com/amazonlinux/container-images/blob/6e2bb5876f14f080ad1ed81b8b5fc69775f62f36/Dockerfile) -- [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/21ffab08ccd83dc317d0607e94ad0f9a63590a60/Dockerfile) +- [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) # Quick reference (cont.) diff --git a/api-firewall/README.md b/api-firewall/README.md index 1d67a06a5890..fd5fb8a7dd7c 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.5`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/0929ac5d2e12037741789bed7a6cf2694887f776/0.8.5/Dockerfile) +- [`0.8.6`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/a6c6a4ee84c8410772e56c3b0588cde1728168a9/0.8.6/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 4c3f15772887..fbaadd06a9c9 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,89 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.0-rc1-php8.3-apache-bookworm`, `11.1-rc-php8.3-apache-bookworm`, `11.1.0-rc1-php8.3-apache`, `11.1-rc-php8.3-apache`, `11.1.0-rc1-php8.3`, `11.1-rc-php8.3`, `11.1.0-rc1-apache-bookworm`, `11.1-rc-apache-bookworm`, `11.1.0-rc1-apache`, `11.1-rc-apache`, `11.1.0-rc1`, `11.1-rc`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/apache-bookworm/Dockerfile) +- [`11.1.0-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.0-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.0-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.0-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.0-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.0`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.0-rc1-php8.3-fpm-bookworm`, `11.1-rc-php8.3-fpm-bookworm`, `11.1.0-rc1-php8.3-fpm`, `11.1-rc-php8.3-fpm`, `11.1.0-rc1-fpm-bookworm`, `11.1-rc-fpm-bookworm`, `11.1.0-rc1-fpm`, `11.1-rc-fpm`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.0-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.0-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.0-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.0-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.0-rc1-php8.3-apache-bullseye`, `11.1-rc-php8.3-apache-bullseye`, `11.1.0-rc1-apache-bullseye`, `11.1-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/apache-bullseye/Dockerfile) +- [`11.1.0-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.0-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.0-rc1-php8.3-fpm-bullseye`, `11.1-rc-php8.3-fpm-bullseye`, `11.1.0-rc1-fpm-bullseye`, `11.1-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.0-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.0-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.0-rc1-php8.3-fpm-alpine3.21`, `11.1-rc-php8.3-fpm-alpine3.21`, `11.1.0-rc1-php8.3-fpm-alpine`, `11.1-rc-php8.3-fpm-alpine`, `11.1.0-rc1-fpm-alpine3.21`, `11.1-rc-fpm-alpine3.21`, `11.1.0-rc1-fpm-alpine`, `11.1-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.0-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.0-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.0-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.0-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.0-rc1-php8.3-fpm-alpine3.20`, `11.1-rc-php8.3-fpm-alpine3.20`, `11.1.0-rc1-fpm-alpine3.20`, `11.1-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/11.1-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.0-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.0-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.9-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.0.9-php8.3-apache`, `11.0-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.0.9-php8.3`, `11.0-php8.3`, `11-php8.3`, `php8.3`, `11.0.9-apache-bookworm`, `11.0-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.0.9-apache`, `11.0-apache`, `11-apache`, `apache`, `11.0.9`, `11.0`, `11`, `latest`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.9-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.9-php8.3-apache`, `11.0-php8.3-apache`, `11.0.9-php8.3`, `11.0-php8.3`, `11.0.9-apache-bookworm`, `11.0-apache-bookworm`, `11.0.9-apache`, `11.0-apache`, `11.0.9`, `11.0`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.9-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.0.9-php8.3-fpm`, `11.0-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.0.9-fpm-bookworm`, `11.0-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.0.9-fpm`, `11.0-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.9-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.9-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.9-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.9-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.9-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.0.9-apache-bullseye`, `11.0-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.9-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.9-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.9-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.0.9-fpm-bullseye`, `11.0-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.9-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.9-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.0.9-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/11.0/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.0-rc1-php8.3-apache-bookworm`, `10.4-rc-php8.3-apache-bookworm`, `10.4.0-rc1-php8.3-apache`, `10.4-rc-php8.3-apache`, `10.4.0-rc1-php8.3`, `10.4-rc-php8.3`, `10.4.0-rc1-apache-bookworm`, `10.4-rc-apache-bookworm`, `10.4.0-rc1-apache`, `10.4-rc-apache`, `10.4.0-rc1`, `10.4-rc`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/apache-bookworm/Dockerfile) +- [`10.4.0-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.0-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.0-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.0-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.0-apache`, `10.4-apache`, `10-apache`, `10.4.0`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.0-rc1-php8.3-fpm-bookworm`, `10.4-rc-php8.3-fpm-bookworm`, `10.4.0-rc1-php8.3-fpm`, `10.4-rc-php8.3-fpm`, `10.4.0-rc1-fpm-bookworm`, `10.4-rc-fpm-bookworm`, `10.4.0-rc1-fpm`, `10.4-rc-fpm`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.0-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.0-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.0-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.0-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.0-rc1-php8.3-apache-bullseye`, `10.4-rc-php8.3-apache-bullseye`, `10.4.0-rc1-apache-bullseye`, `10.4-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/apache-bullseye/Dockerfile) +- [`10.4.0-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.0-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.0-rc1-php8.3-fpm-bullseye`, `10.4-rc-php8.3-fpm-bullseye`, `10.4.0-rc1-fpm-bullseye`, `10.4-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.0-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.0-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.0-rc1-php8.3-fpm-alpine3.21`, `10.4-rc-php8.3-fpm-alpine3.21`, `10.4.0-rc1-php8.3-fpm-alpine`, `10.4-rc-php8.3-fpm-alpine`, `10.4.0-rc1-fpm-alpine3.21`, `10.4-rc-fpm-alpine3.21`, `10.4.0-rc1-fpm-alpine`, `10.4-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.0-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.0-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.0-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.0-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.0-rc1-php8.3-fpm-alpine3.20`, `10.4-rc-php8.3-fpm-alpine3.20`, `10.4.0-rc1-fpm-alpine3.20`, `10.4-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/561a5f6557e485370c336becc01e9bdb7ef582ac/10.4-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.0-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.0-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.10-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.3.10-php8.3-apache`, `10.3-php8.3-apache`, `10-php8.3-apache`, `10.3.10-php8.3`, `10.3-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.10-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.10-php8.3-apache`, `10.3-php8.3-apache`, `10.3.10-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.10-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.3.10-php8.3-fpm`, `10.3-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.10-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.10-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.10-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.10-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.10-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.10-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.10-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10-php8.2-apache-bookworm`, `10.3.10-php8.2-apache`, `10.3-php8.2-apache`, `10-php8.2-apache`, `10.3.10-php8.2`, `10.3-php8.2`, `10-php8.2`, `10.3.10-apache-bookworm`, `10.3-apache-bookworm`, `10-apache-bookworm`, `10.3.10-apache`, `10.3-apache`, `10-apache`, `10.3.10`, `10.3`, `10`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.10-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.10-php8.2-apache`, `10.3-php8.2-apache`, `10.3.10-php8.2`, `10.3-php8.2`, `10.3.10-apache-bookworm`, `10.3-apache-bookworm`, `10.3.10-apache`, `10.3-apache`, `10.3.10`, `10.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.10-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10-php8.2-fpm-bookworm`, `10.3.10-php8.2-fpm`, `10.3-php8.2-fpm`, `10-php8.2-fpm`, `10.3.10-fpm-bookworm`, `10.3-fpm-bookworm`, `10-fpm-bookworm`, `10.3.10-fpm`, `10.3-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.10-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.10-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.10-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.10-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.10-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10-php8.2-apache-bullseye`, `10.3.10-apache-bullseye`, `10.3-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.10-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.10-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.10-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10-php8.2-fpm-bullseye`, `10.3.10-fpm-bullseye`, `10.3-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.10-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.10-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10-php8.2-fpm-alpine3.21`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.2/fpm-alpine3.21/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10-php8.2-fpm-alpine3.20`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) - -- [`10.2.12-php8.3-apache-bookworm`, `10.2-php8.3-apache-bookworm`, `10.2.12-php8.3-apache`, `10.2-php8.3-apache`, `10.2.12-php8.3`, `10.2-php8.3`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/apache-bookworm/Dockerfile) - -- [`10.2.12-php8.3-fpm-bookworm`, `10.2-php8.3-fpm-bookworm`, `10.2.12-php8.3-fpm`, `10.2-php8.3-fpm`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-bookworm/Dockerfile) - -- [`10.2.12-php8.3-apache-bullseye`, `10.2-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/apache-bullseye/Dockerfile) - -- [`10.2.12-php8.3-fpm-bullseye`, `10.2-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-bullseye/Dockerfile) - -- [`10.2.12-php8.3-fpm-alpine3.21`, `10.2-php8.3-fpm-alpine3.21`, `10.2.12-php8.3-fpm-alpine`, `10.2-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.2/php8.3/fpm-alpine3.21/Dockerfile) - -- [`10.2.12-php8.3-fpm-alpine3.20`, `10.2-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.3/fpm-alpine3.20/Dockerfile) - -- [`10.2.12-php8.2-apache-bookworm`, `10.2-php8.2-apache-bookworm`, `10.2.12-php8.2-apache`, `10.2-php8.2-apache`, `10.2.12-php8.2`, `10.2-php8.2`, `10.2.12-apache-bookworm`, `10.2-apache-bookworm`, `10.2.12-apache`, `10.2-apache`, `10.2.12`, `10.2`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/apache-bookworm/Dockerfile) - -- [`10.2.12-php8.2-fpm-bookworm`, `10.2-php8.2-fpm-bookworm`, `10.2.12-php8.2-fpm`, `10.2-php8.2-fpm`, `10.2.12-fpm-bookworm`, `10.2-fpm-bookworm`, `10.2.12-fpm`, `10.2-fpm`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-bookworm/Dockerfile) - -- [`10.2.12-php8.2-apache-bullseye`, `10.2-php8.2-apache-bullseye`, `10.2.12-apache-bullseye`, `10.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/apache-bullseye/Dockerfile) - -- [`10.2.12-php8.2-fpm-bullseye`, `10.2-php8.2-fpm-bullseye`, `10.2.12-fpm-bullseye`, `10.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-bullseye/Dockerfile) - -- [`10.2.12-php8.2-fpm-alpine3.21`, `10.2-php8.2-fpm-alpine3.21`, `10.2.12-php8.2-fpm-alpine`, `10.2-php8.2-fpm-alpine`, `10.2.12-fpm-alpine3.21`, `10.2-fpm-alpine3.21`, `10.2.12-fpm-alpine`, `10.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.2/php8.2/fpm-alpine3.21/Dockerfile) - -- [`10.2.12-php8.2-fpm-alpine3.20`, `10.2-php8.2-fpm-alpine3.20`, `10.2.12-fpm-alpine3.20`, `10.2-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/7f0454debc2ed9bbc87f711faf726835be932cf0/10.2/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) - [`7.103-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.103-php8.2-apache`, `7-php8.2-apache`, `7.103-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bookworm/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index bebe66ccbed5..a6db86f389e6 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.11.1-jdk8`, `8.11-jdk8`, `8-jdk8`, `jdk8`, `8.11.1-jdk8-jammy`, `8.11-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8/Dockerfile) +- [`8.12.0-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.0-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8/Dockerfile) -- [`8.11.1-jdk8-focal`, `8.11-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8-focal/Dockerfile) +- [`8.12.0-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8-focal/Dockerfile) -- [`8.11.1-jdk8-corretto`, `8.11-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.11.1-jdk8-corretto-al2023`, `8.11-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk8-corretto/Dockerfile) +- [`8.12.0-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.0-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8-corretto/Dockerfile) -- [`8.11.1-jdk11`, `8.11-jdk11`, `8-jdk11`, `jdk11`, `8.11.1-jdk11-jammy`, `8.11-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11/Dockerfile) +- [`8.12.0-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.0-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11/Dockerfile) -- [`8.11.1-jdk11-focal`, `8.11-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-focal/Dockerfile) +- [`8.12.0-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-focal/Dockerfile) -- [`8.11.1-jdk11-alpine`, `8.11-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-alpine/Dockerfile) +- [`8.12.0-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-alpine/Dockerfile) -- [`8.11.1-jdk11-corretto`, `8.11-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.11.1-jdk11-corretto-al2023`, `8.11-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk11-corretto/Dockerfile) +- [`8.12.0-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.0-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-corretto/Dockerfile) -- [`8.11.1-jdk17`, `8.11-jdk17`, `8-jdk17`, `jdk17`, `8.11.1-jdk17-jammy`, `8.11-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17/Dockerfile) +- [`8.12.0-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.0-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17/Dockerfile) -- [`8.11.1-jdk17-focal`, `8.11-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.11.1-jdk-focal`, `8.11-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.11.1-focal`, `8.11-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-focal/Dockerfile) +- [`8.12.0-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.0-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.0-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-focal/Dockerfile) -- [`8.11.1-jdk17-alpine`, `8.11-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.11.1-jdk-alpine`, `8.11-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-alpine/Dockerfile) +- [`8.12.0-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.0-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-alpine/Dockerfile) -- [`8.11.1-jdk17-corretto`, `8.11-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.11.1-jdk17-corretto-al2023`, `8.11-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-corretto/Dockerfile) +- [`8.12.0-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.0-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-corretto/Dockerfile) -- [`8.11.1-jdk17-graal`, `8.11-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.11.1-jdk-graal`, `8.11-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.11.1-graal`, `8.11-graal`, `8-graal`, `graal`, `8.11.1-jdk17-graal-jammy`, `8.11-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.11.1-jdk-graal-jammy`, `8.11-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.11.1-graal-jammy`, `8.11-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk17-graal/Dockerfile) +- [`8.12.0-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.0-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.0-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.0-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.0-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.0-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-graal/Dockerfile) -- [`8.11.1-jdk21`, `8.11-jdk21`, `8-jdk21`, `jdk21`, `8.11.1-jdk21-jammy`, `8.11-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.11.1-jdk`, `8.11-jdk`, `8-jdk`, `jdk`, `8.11.1`, `8.11`, `8`, `8.11.1-jdk-jammy`, `8.11-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.11.1-jammy`, `8.11-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21/Dockerfile) +- [`8.12.0-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.0-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.0-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.0`, `8.12`, `8`, `8.12.0-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.0-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21/Dockerfile) -- [`8.11.1-jdk21-alpine`, `8.11-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.11.1-alpine`, `8.11-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-alpine/Dockerfile) +- [`8.12.0-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.0-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-alpine/Dockerfile) -- [`8.11.1-jdk21-corretto`, `8.11-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.11.1-jdk21-corretto-al2023`, `8.11-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-corretto/Dockerfile) +- [`8.12.0-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.0-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-corretto/Dockerfile) -- [`8.11.1-jdk21-graal`, `8.11-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.11.1-jdk21-graal-jammy`, `8.11-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk21-graal/Dockerfile) +- [`8.12.0-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.0-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-graal/Dockerfile) -- [`8.11.1-jdk23`, `8.11-jdk23`, `8-jdk23`, `jdk23`, `8.11.1-jdk23-jammy`, `8.11-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23/Dockerfile) +- [`8.12.0-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.0-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23/Dockerfile) -- [`8.11.1-jdk23-alpine`, `8.11-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-alpine/Dockerfile) +- [`8.12.0-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-alpine/Dockerfile) -- [`8.11.1-jdk23-corretto`, `8.11-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-corretto/Dockerfile) +- [`8.12.0-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-corretto/Dockerfile) -- [`8.11.1-jdk23-graal`, `8.11-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk23-graal/Dockerfile) +- [`8.12.0-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-graal/Dockerfile) -- [`8.11.1-jdk-lts-and-current`, `8.11-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.11.1-jdk-lts-and-current-jammy`, `8.11-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.11.1-jdk-21-and-23`, `8.11-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.11.1-jdk-21-and-23-jammy`, `8.11-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current/Dockerfile) +- [`8.12.0-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.0-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.0-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.0-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current/Dockerfile) -- [`8.11.1-jdk-lts-and-current-alpine`, `8.11-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.11.1-jdk-21-and-23-alpine`, `8.11-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-alpine/Dockerfile) +- [`8.12.0-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.0-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-alpine/Dockerfile) -- [`8.11.1-jdk-lts-and-current-corretto`, `8.11-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.11.1-jdk-lts-and-current-corretto-al2023`, `8.11-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.11.1-jdk-21-and-23-corretto`, `8.11-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.11.1-jdk-21-and-23-corretto-al2023`, `8.11-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-corretto/Dockerfile) +- [`8.12.0-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.0-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.0-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.0-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-corretto/Dockerfile) -- [`8.11.1-jdk-lts-and-current-graal`, `8.11-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.11.1-jdk-lts-and-current-graal-jammy`, `8.11-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.11.1-jdk-21-and-23-graal`, `8.11-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.11.1-jdk-21-and-23-graal-jammy`, `8.11-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/42b5732bf31f09416c727cd6d3899be90003b85a/jdk-lts-and-current-graal/Dockerfile) +- [`8.12.0-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.0-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.0-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.0-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 86ac2273f3ae..42924be4fd84 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241209`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/18.0/Dockerfile) +- [`18.0-20241220`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/18.0/Dockerfile) -- [`17.0-20241209`, `17.0`, `17`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/17.0/Dockerfile) +- [`17.0-20241220`, `17.0`, `17`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/17.0/Dockerfile) -- [`16.0-20241209`, `16.0`, `16`](https://github.com/odoo/docker/blob/beb0b7ff250178aaafce2b2adffd7f45d881fbaf/16.0/Dockerfile) +- [`16.0-20241220`, `16.0`, `16`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/16.0/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 875ae2d21044..dbc851e219e0 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1eebd14baf7dfda1b15d1c2efe9b3776e4a4b60d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 7e6c5426eae2..a13ce56d12dc 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -**No supported tags** +- [`8.0.39-30-centos`, `8.0-centos`, `8-centos`, `8.0.39-30`, `8.0`, `8`, `ps-8.0.39-30`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-8.0/Dockerfile-dockerhub) + +- [`psmdb-7.0.15`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-7.0/Dockerfile-dockerhub) + +- [`psmdb-6.0.19`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-6.0/Dockerfile-dockerhub) + +- [`psmdb-5.0.29`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-5.0/Dockerfile-dockerhub) # Quick reference (cont.) @@ -34,7 +40,7 @@ WARNING: You will need to create an account if you do not have one. - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** + [`amd64`](https://hub.docker.com/r/amd64/percona/) - **Published image artifact details**: [repo-info repo's `repos/percona/` directory](https://github.com/docker-library/repo-info/blob/master/repos/percona) ([history](https://github.com/docker-library/repo-info/commits/master/repos/percona)) diff --git a/php/README.md b/php/README.md index 998693ec9769..52268e6351ef 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.2RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.2RC1-bookworm`, `8.4-rc-bookworm`, `8.4.2RC1-cli`, `8.4-rc-cli`, `8.4.2RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.2-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.2-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.2-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.2`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/cli/Dockerfile) -- [`8.4.2RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.2RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.2-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.2-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/apache/Dockerfile) -- [`8.4.2RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.2RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.2-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.2-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/fpm/Dockerfile) -- [`8.4.2RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.2RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.2-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.2-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/zts/Dockerfile) -- [`8.4.2RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.2RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.2-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.2-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/cli/Dockerfile) -- [`8.4.2RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.2-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/apache/Dockerfile) -- [`8.4.2RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.2-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/fpm/Dockerfile) -- [`8.4.2RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.2-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/zts/Dockerfile) -- [`8.4.2RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.2RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.2RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.2RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.2-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.2-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.2-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.2-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.2RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.2RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.2-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.2-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.2RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.2RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.2-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.2-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.2RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.2RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.2-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.2-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.2RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.2-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.2RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/0b6d745a64cdbeccc92571f3ae6dfebe0a43b224/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.2-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.1-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.1-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.1-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.1`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/cli/Dockerfile) +- [`8.3.15-cli-bookworm`, `8.3-cli-bookworm`, `8.3.15-bookworm`, `8.3-bookworm`, `8.3.15-cli`, `8.3-cli`, `8.3.15`, `8.3`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/cli/Dockerfile) -- [`8.4.1-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.1-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/apache/Dockerfile) +- [`8.3.15-apache-bookworm`, `8.3-apache-bookworm`, `8.3.15-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/apache/Dockerfile) -- [`8.4.1-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.1-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/fpm/Dockerfile) +- [`8.3.15-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.15-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/fpm/Dockerfile) -- [`8.4.1-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.1-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bookworm/zts/Dockerfile) +- [`8.3.15-zts-bookworm`, `8.3-zts-bookworm`, `8.3.15-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/zts/Dockerfile) -- [`8.4.1-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.1-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/cli/Dockerfile) +- [`8.3.15-cli-bullseye`, `8.3-cli-bullseye`, `8.3.15-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/cli/Dockerfile) -- [`8.4.1-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/apache/Dockerfile) +- [`8.3.15-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/apache/Dockerfile) -- [`8.4.1-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/fpm/Dockerfile) +- [`8.3.15-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/fpm/Dockerfile) -- [`8.4.1-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/bullseye/zts/Dockerfile) +- [`8.3.15-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/zts/Dockerfile) -- [`8.4.1-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.1-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.1-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.1-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.15-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.15-alpine3.21`, `8.3-alpine3.21`, `8.3.15-cli-alpine`, `8.3-cli-alpine`, `8.3.15-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.1-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.1-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.15-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.15-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.1-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.1-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.15-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.15-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/zts/Dockerfile) -- [`8.4.1-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.1-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/cli/Dockerfile) +- [`8.3.15-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.15-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/cli/Dockerfile) -- [`8.4.1-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/fpm/Dockerfile) +- [`8.3.15-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/fpm/Dockerfile) -- [`8.4.1-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/193d0e2a61ace10dcd480480a3d91f3d358d0406/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.15-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.15RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.15RC1-bookworm`, `8.3-rc-bookworm`, `8.3.15RC1-cli`, `8.3-rc-cli`, `8.3.15RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/cli/Dockerfile) +- [`8.2.27-cli-bookworm`, `8.2-cli-bookworm`, `8.2.27-bookworm`, `8.2-bookworm`, `8.2.27-cli`, `8.2-cli`, `8.2.27`, `8.2`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/cli/Dockerfile) -- [`8.3.15RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.15RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/apache/Dockerfile) +- [`8.2.27-apache-bookworm`, `8.2-apache-bookworm`, `8.2.27-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/apache/Dockerfile) -- [`8.3.15RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.15RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.2.27-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.27-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/fpm/Dockerfile) -- [`8.3.15RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.15RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bookworm/zts/Dockerfile) +- [`8.2.27-zts-bookworm`, `8.2-zts-bookworm`, `8.2.27-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/zts/Dockerfile) -- [`8.3.15RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.15RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/cli/Dockerfile) +- [`8.2.27-cli-bullseye`, `8.2-cli-bullseye`, `8.2.27-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/cli/Dockerfile) -- [`8.3.15RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/apache/Dockerfile) +- [`8.2.27-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/apache/Dockerfile) -- [`8.3.15RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.2.27-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/fpm/Dockerfile) -- [`8.3.15RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/bullseye/zts/Dockerfile) +- [`8.2.27-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/zts/Dockerfile) -- [`8.3.15RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.15RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.15RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.15RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.2.27-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.27-alpine3.21`, `8.2-alpine3.21`, `8.2.27-cli-alpine`, `8.2-cli-alpine`, `8.2.27-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/cli/Dockerfile) -- [`8.3.15RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.15RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.2.27-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.27-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/fpm/Dockerfile) -- [`8.3.15RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.15RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.2.27-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.27-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/zts/Dockerfile) -- [`8.3.15RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.15RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.2.27-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.27-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.15RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.2.27-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.15RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/31175c2b6608cbd9075c0ea00b7942d4aff59d72/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.14-cli-bookworm`, `8.3-cli-bookworm`, `8.3.14-bookworm`, `8.3-bookworm`, `8.3.14-cli`, `8.3-cli`, `8.3.14`, `8.3`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/cli/Dockerfile) - -- [`8.3.14-apache-bookworm`, `8.3-apache-bookworm`, `8.3.14-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/apache/Dockerfile) - -- [`8.3.14-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.14-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.14-zts-bookworm`, `8.3-zts-bookworm`, `8.3.14-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bookworm/zts/Dockerfile) - -- [`8.3.14-cli-bullseye`, `8.3-cli-bullseye`, `8.3.14-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/cli/Dockerfile) - -- [`8.3.14-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/apache/Dockerfile) - -- [`8.3.14-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.14-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/bullseye/zts/Dockerfile) - -- [`8.3.14-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.14-alpine3.21`, `8.3-alpine3.21`, `8.3.14-cli-alpine`, `8.3-cli-alpine`, `8.3.14-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.14-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.14-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.14-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.14-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.14-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.14-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.14-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.14-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/e324a7accd4df1646f4a1acd99647fb419a14c66/8.3/alpine3.20/zts/Dockerfile) - -- [`8.2.27RC1-cli-bookworm`, `8.2-rc-cli-bookworm`, `8.2.27RC1-bookworm`, `8.2-rc-bookworm`, `8.2.27RC1-cli`, `8.2-rc-cli`, `8.2.27RC1`, `8.2-rc`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/cli/Dockerfile) - -- [`8.2.27RC1-apache-bookworm`, `8.2-rc-apache-bookworm`, `8.2.27RC1-apache`, `8.2-rc-apache`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/apache/Dockerfile) - -- [`8.2.27RC1-fpm-bookworm`, `8.2-rc-fpm-bookworm`, `8.2.27RC1-fpm`, `8.2-rc-fpm`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/fpm/Dockerfile) - -- [`8.2.27RC1-zts-bookworm`, `8.2-rc-zts-bookworm`, `8.2.27RC1-zts`, `8.2-rc-zts`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bookworm/zts/Dockerfile) - -- [`8.2.27RC1-cli-bullseye`, `8.2-rc-cli-bullseye`, `8.2.27RC1-bullseye`, `8.2-rc-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/cli/Dockerfile) - -- [`8.2.27RC1-apache-bullseye`, `8.2-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/apache/Dockerfile) - -- [`8.2.27RC1-fpm-bullseye`, `8.2-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/fpm/Dockerfile) - -- [`8.2.27RC1-zts-bullseye`, `8.2-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/bullseye/zts/Dockerfile) - -- [`8.2.27RC1-cli-alpine3.21`, `8.2-rc-cli-alpine3.21`, `8.2.27RC1-alpine3.21`, `8.2-rc-alpine3.21`, `8.2.27RC1-cli-alpine`, `8.2-rc-cli-alpine`, `8.2.27RC1-alpine`, `8.2-rc-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/cli/Dockerfile) - -- [`8.2.27RC1-fpm-alpine3.21`, `8.2-rc-fpm-alpine3.21`, `8.2.27RC1-fpm-alpine`, `8.2-rc-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/fpm/Dockerfile) - -- [`8.2.27RC1-zts-alpine3.21`, `8.2-rc-zts-alpine3.21`, `8.2.27RC1-zts-alpine`, `8.2-rc-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2-rc/alpine3.21/zts/Dockerfile) - -- [`8.2.27RC1-cli-alpine3.20`, `8.2-rc-cli-alpine3.20`, `8.2.27RC1-alpine3.20`, `8.2-rc-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/cli/Dockerfile) - -- [`8.2.27RC1-fpm-alpine3.20`, `8.2-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/fpm/Dockerfile) - -- [`8.2.27RC1-zts-alpine3.20`, `8.2-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/c33f511aa7d899f4ecabcb527d3854396ab3d6c0/8.2-rc/alpine3.20/zts/Dockerfile) - -- [`8.2.26-cli-bookworm`, `8.2-cli-bookworm`, `8.2.26-bookworm`, `8.2-bookworm`, `8.2.26-cli`, `8.2-cli`, `8.2.26`, `8.2`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/cli/Dockerfile) - -- [`8.2.26-apache-bookworm`, `8.2-apache-bookworm`, `8.2.26-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/apache/Dockerfile) - -- [`8.2.26-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.26-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.26-zts-bookworm`, `8.2-zts-bookworm`, `8.2.26-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bookworm/zts/Dockerfile) - -- [`8.2.26-cli-bullseye`, `8.2-cli-bullseye`, `8.2.26-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/cli/Dockerfile) - -- [`8.2.26-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/apache/Dockerfile) - -- [`8.2.26-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.26-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/bullseye/zts/Dockerfile) - -- [`8.2.26-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.26-alpine3.21`, `8.2-alpine3.21`, `8.2.26-cli-alpine`, `8.2-cli-alpine`, `8.2.26-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/cli/Dockerfile) - -- [`8.2.26-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.26-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/fpm/Dockerfile) - -- [`8.2.26-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.26-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/aa678aea64417b34fbcaaea23c3293e1fb2f3c8a/8.2/alpine3.21/zts/Dockerfile) - -- [`8.2.26-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.26-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.26-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.26-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/bc48addcd1436fdef4a69e6009794f2ac372e878/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.27-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/zts/Dockerfile) - [`8.1.31-cli-bookworm`, `8.1-cli-bookworm`, `8.1.31-bookworm`, `8.1-bookworm`, `8.1.31-cli`, `8.1-cli`, `8.1.31`, `8.1`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/cli/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index f8c2a0344c3e..1f2da97802b2 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.17`](https://github.com/SWI-Prolog/docker-swipl/blob/72d80cf34f165a7cc0159c5703a5f69afbf95f8e/9.3.17/bookworm/Dockerfile) +- [`latest`, `9.3.17`](https://github.com/SWI-Prolog/docker-swipl/blob/ff6d36b1783bacaedc5d131cdfe38524aa246348/9.3.17/bookworm/Dockerfile) -- [`stable`, `9.2.8`](https://github.com/SWI-Prolog/docker-swipl/blob/72d80cf34f165a7cc0159c5703a5f69afbf95f8e/9.2.8/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/ff6d36b1783bacaedc5d131cdfe38524aa246348/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 404c00d95cab..a0a375f2859c 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.0-rc1-windowsservercore-ltsc2022`, `3.3.0-rc1-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.0-rc2-windowsservercore-ltsc2022`, `3.3.0-rc2-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.0-rc1-windowsservercore-1809`, `3.3.0-rc1-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/1809/Dockerfile) +- [`v3.3.0-rc2-windowsservercore-1809`, `3.3.0-rc2-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/1809/Dockerfile) -- [`v3.3.0-rc1-nanoserver-ltsc2022`, `3.3.0-rc1-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.0-rc2-nanoserver-ltsc2022`, `3.3.0-rc2-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.0-rc1`, `3.3.0-rc1`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/137c5985e4ac8087166fbb08bdd3324addb462de/v3.3/alpine/Dockerfile) +- [`v3.3.0-rc2`, `3.3.0-rc2`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/alpine/Dockerfile) - [`v3.2.3-windowsservercore-ltsc2022`, `3.2.3-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/servercore-ltsc2022/Dockerfile) From 345db4b8359d5adcd70cb563c88c0edcb34adfe8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Dec 2024 14:09:18 -0800 Subject: [PATCH 1774/2686] Run update.sh --- kong/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kong/README.md b/kong/README.md index 7f77eb6d4b82..8801790afd08 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,14 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.0-ubuntu`, `3.8-ubuntu`, `3.8.0`, `3.8`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/1f5199f7da45c17f4344b811397e89899a160040/ubuntu/Dockerfile) +- [`3.9.0-ubuntu`, `3.9-ubuntu`, `3.9.0`, `3.9`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/d46098c09b6198efb71682fe7209bd6467bf3f67/ubuntu/Dockerfile) + +- [`3.8.0-ubuntu`, `3.8-ubuntu`, `3.8.0`, `3.8`](https://github.com/Kong/docker-kong/blob/1f5199f7da45c17f4344b811397e89899a160040/ubuntu/Dockerfile) - [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) - [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) -- [`3.5.0-ubuntu`, `3.5-ubuntu`, `3.5.0`, `3.5`](https://github.com/Kong/docker-kong/blob/8814c97a408d76ed004b05ea96f0d9eadf9b36be/ubuntu/Dockerfile) - - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) - [`2.8.5-alpine`, `2.8-alpine`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/alpine/Dockerfile) From 724b8b236f9315c1d4217c37ff2a3eb2327c6e71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Dec 2024 09:09:26 -0800 Subject: [PATCH 1775/2686] Run update.sh --- mongo/README.md | 82 ++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 414358cda56d..79e430f33cce 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -38,25 +38,15 @@ WARNING: - [`8.0.4-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.16-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/Dockerfile) +- [`7.0.16-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) -- [`7.0.16-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.16-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.16-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.16-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.16-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.16-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.16-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`7.0.15-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) - -- [`7.0.15-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.15-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) - -- [`7.0.15-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.15-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.16-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.20-rc3-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/Dockerfile) @@ -78,6 +68,16 @@ WARNING: - [`6.0.19-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.31-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/Dockerfile) + +- [`5.0.31-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`5.0.31-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`5.0.31-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`5.0.31-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-1809/Dockerfile) + - [`5.0.30-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) - [`5.0.30-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -106,37 +106,21 @@ WARNING: - [`8.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.16-rc1`, `7.0-rc`: - - - [`7.0.16-rc1-jammy`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/Dockerfile) - - [`7.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.16-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.16`, `7.0`, `7`: -- `7.0.16-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + - [`7.0.16-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) + - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) - - [`7.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.16-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- `7.0.16-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: -- `7.0.16-rc1-nanoserver`, `7.0-rc-nanoserver`: + - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) - - [`7.0.16-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.16-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/e8f0640ef8c396d7a72d6fee5bd008b2b8407164/7.0-rc/windows/nanoserver-1809/Dockerfile) +- `7.0.16-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: -- `7.0.15`, `7.0`, `7`: - - - [`7.0.15-jammy`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/Dockerfile) - - [`7.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) - -- `7.0.15-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - - [`7.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.15-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/windowsservercore-1809/Dockerfile) - -- `7.0.15-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - - [`7.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.15-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fb053f7c75e82abda54654868528c343fdf3358e/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.20-rc3`, `6.0-rc`: @@ -170,6 +154,22 @@ WARNING: - [`6.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) +- `5.0.31-rc0`, `5.0-rc`: + + - [`5.0.31-rc0-focal`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/Dockerfile) + - [`5.0.31-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `5.0.31-rc0-windowsservercore`, `5.0-rc-windowsservercore`: + + - [`5.0.31-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `5.0.31-rc0-nanoserver`, `5.0-rc-nanoserver`: + + - [`5.0.31-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.31-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-1809/Dockerfile) + - `5.0.30`, `5.0`, `5`: - [`5.0.30-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) From 4cf584ba8594daa9ced58a96dc56abb2b66f3f0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Dec 2024 13:09:44 -0800 Subject: [PATCH 1776/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- debian/README.md | 48 +++++++++++++++++++++--------------------- docker/README.md | 15 +++++++++++++ matomo/README.md | 6 +++--- mediawiki/README.md | 18 ++++++++-------- memcached/README.md | 4 ++-- photon/README.md | 2 +- postfixadmin/README.md | 6 +++--- rocket.chat/README.md | 14 ++++++------ spark/README.md | 16 +++++++------- 11 files changed, 76 insertions(+), 61 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index c5f7cfea1653..a08aeae97fd7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.base) +- [`latest`, `base`, `base-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.base) -- [`base-devel`, `base-devel-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241215.0.289170`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/729f0d450ee8469d038e2fb5dd8e7d4593e9b616/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 27f4a315715c..d81460f8010d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/e6fdba6b2c6768dc9c6c090010e09c17628e0948/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/66696cc399a15d4af023b6533983110081f2de00/Dockerfile) # Quick reference (cont.) diff --git a/debian/README.md b/debian/README.md index 358747ab319e..65d5c55a2fb1 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20241202`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20241223`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20241202-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20241223-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20241202`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20241223`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20241202-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20241223-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/experimental/Dockerfile) +- [`experimental`, `experimental-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/experimental/Dockerfile) -- [`oldstable`, `oldstable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/rc-buggy/Dockerfile) -- [`sid`, `sid-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/sid/oci/index.json) +- [`sid`, `sid-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/sid/oci/index.json) -- [`sid-slim`, `sid-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/sid/slim/oci/index.json) -- [`stable`, `stable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/oci/index.json) +- [`stable`, `stable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/slim/oci/index.json) -- [`testing`, `testing-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/oci/index.json) +- [`testing`, `testing-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/slim/oci/index.json) -- [`trixie`, `trixie-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/oci/index.json) +- [`trixie`, `trixie-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20241202`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/unstable/oci/index.json) +- [`unstable`, `unstable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20241202-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f5527c9b022448b28981cf274721d9749d8fc5c4/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 4f49f8f51624..3d289f81ea16 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`27.5.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.5.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/cli/Dockerfile) + +- [`27.5.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.5.0-rc.1-dind-alpine3.21`, `27.5.0-rc.1`, `27-rc`, `rc`, `27.5.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/dind/Dockerfile) + +- [`27.5.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/dind-rootless/Dockerfile) + +- [`27.5.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`27.5.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.4.1-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/cli/Dockerfile) - [`27.4.1-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.1-dind-alpine3.21`, `27.4.1`, `27.4`, `27`, `latest`, `27.4.1-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind/Dockerfile) @@ -40,6 +50,11 @@ WARNING: ## Shared Tags +- `27.5.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: + + - [`27.5.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-1809/Dockerfile) + - `27.4.1-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - [`27.4.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index d85ca37eb971..0554a6574351 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.0-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.0`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/apache/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/apache/Dockerfile) -- [`5.2.0-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/fpm/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/fpm/Dockerfile) -- [`5.2.0-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/3e696d5aa7869c243774658282c07307e65723a6/fpm-alpine/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 7e3b440c92d2..0f34051b4744 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.42.3`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/apache/Dockerfile) +- [`1.42.4`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/apache/Dockerfile) -- [`1.42.3-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/fpm/Dockerfile) +- [`1.42.4-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/fpm/Dockerfile) -- [`1.42.3-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.42/fpm-alpine/Dockerfile) +- [`1.42.4-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/fpm-alpine/Dockerfile) -- [`1.41.4`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/apache/Dockerfile) +- [`1.41.5`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/apache/Dockerfile) -- [`1.41.4-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/fpm/Dockerfile) +- [`1.41.5-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/fpm/Dockerfile) -- [`1.41.4-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.41/fpm-alpine/Dockerfile) +- [`1.41.5-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/fpm-alpine/Dockerfile) -- [`1.39.10`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/apache/Dockerfile) +- [`1.39.11`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/apache/Dockerfile) -- [`1.39.10-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/fpm/Dockerfile) +- [`1.39.11-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/fpm/Dockerfile) -- [`1.39.10-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/4708aabf22334d933a45f714e28a78722b36427a/1.39/fpm-alpine/Dockerfile) +- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index a1ed39d4257f..328332b2dbac 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.33`, `1.6`, `1`, `latest`, `1.6.33-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d2fb263f47fa4043f4fe5a207c19517585867592/1/debian/Dockerfile) +- [`1.6.34`, `1.6`, `1`, `latest`, `1.6.34-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/697784edcf62584471e2f50e4f0646aa9db40ae7/1/debian/Dockerfile) -- [`1.6.33-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.33-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/99a2186f3db3de537ea36046164c302d076ac2c4/1/alpine/Dockerfile) +- [`1.6.34-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.34-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/697784edcf62584471e2f50e4f0646aa9db40ae7/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index bacc08366562..7903fbb3f4e6 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241208`, `latest`](https://github.com/vmware/photon-docker-image/blob/b8f9a0825a1aab5af0ad692748af5174cb47302e/docker/Dockerfile) +- [`5.0`, `5.0-20241222`, `latest`](https://github.com/vmware/photon-docker-image/blob/cb090fc938f5eacf965b7fb3ad81ebcc958c5bc3/docker/Dockerfile) - [`4.0`, `4.0-20241201`](https://github.com/vmware/photon-docker-image/blob/ba586ebf86a3f7acbe388d6c5bc2a5b9f972cbb8/docker/Dockerfile) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 551c7b24a963..afeef65691f3 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.14-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.14`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/apache/Dockerfile) +- [`3.3.15-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.15`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/apache/Dockerfile) -- [`3.3.14-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/fpm/Dockerfile) +- [`3.3.15-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/fpm/Dockerfile) -- [`3.3.14-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/fe2c83f82ac40829405890ad53b63a5b81bc2a57/fpm-alpine/Dockerfile) +- [`3.3.15-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index da52886e0263..41927f3d1af4 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.0`, `7.0`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/7.0/Dockerfile) +- [`7.1.0`, `7.1`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/7.1/Dockerfile) -- [`6.9.7`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.9/Dockerfile) +- [`7.0.3`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/356c786113ce8c1f6b2cba6089737a4dc3eed78f/7.0/Dockerfile) -- [`6.8.7`, `6.8`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.8/Dockerfile) +- [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) -- [`6.13.0`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.13/Dockerfile) +- [`6.12.3`, `6.12`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.12/Dockerfile) -- [`6.12.2`, `6.12`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.12/Dockerfile) +- [`6.11.3`, `6.11`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.11/Dockerfile) -- [`6.11.3`, `6.11`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.11/Dockerfile) +- [`6.10.9`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.10/Dockerfile) -- [`6.10.7`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/3a4113f1de4aa921dfe26c53f88b4d1f59fac3f5/6.10/Dockerfile) +- [`6.9.7`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.9/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index 26ff870e8ab9..6339a0c573b1 100644 --- a/spark/README.md +++ b/spark/README.md @@ -40,21 +40,21 @@ WARNING: - [`4.0.0-preview2-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java17-python3-ubuntu`, `3.5.3-java17-python3`, `3.5.3-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java17-python3-ubuntu`, `3.5.4-java17-python3`, `3.5.4-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java17-r-ubuntu`, `3.5.3-java17-r`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java17-r-ubuntu`, `3.5.4-java17-r`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java17-ubuntu`, `3.5.3-java17-scala`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java17-ubuntu`, `3.5.4-java17-scala`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java11-python3-ubuntu`, `3.5.3-python3`, `3.5.3`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java11-python3-ubuntu`, `3.5.4-python3`, `3.5.4`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java11-r-ubuntu`, `3.5.3-r`, `r`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java11-r-ubuntu`, `3.5.4-r`, `r`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java11-ubuntu`, `3.5.3-scala`, `scala`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java11-ubuntu`, `3.5.4-scala`, `scala`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.3-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/cf333e1f7403fa68c7b359cff77b7949ec0990b3/3.5.3/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.4-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-python3-r-ubuntu/Dockerfile) - [`3.4.4-scala2.12-java11-python3-ubuntu`, `3.4.4-python3`, `3.4.4`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-python3-ubuntu/Dockerfile) From 68f47070ecdfd30d6fd91ccc197ab588365fba08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Dec 2024 07:09:29 -0800 Subject: [PATCH 1777/2686] Run update.sh --- ruby/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index ad3ab43207ba..283cdd0a4b76 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.0-rc1-bookworm`, `3.4-rc-bookworm`, `3.4.0-rc1`, `3.4-rc`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/bookworm/Dockerfile) +- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/bookworm/Dockerfile) -- [`3.4.0-rc1-slim-bookworm`, `3.4-rc-slim-bookworm`, `3.4.0-rc1-slim`, `3.4-rc-slim`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/slim-bookworm/Dockerfile) +- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/slim-bookworm/Dockerfile) -- [`3.4.0-rc1-bullseye`, `3.4-rc-bullseye`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/bullseye/Dockerfile) +- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/bullseye/Dockerfile) -- [`3.4.0-rc1-slim-bullseye`, `3.4-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/slim-bullseye/Dockerfile) +- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/slim-bullseye/Dockerfile) -- [`3.4.0-rc1-alpine3.21`, `3.4-rc-alpine3.21`, `3.4.0-rc1-alpine`, `3.4-rc-alpine`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/alpine3.21/Dockerfile) +- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/alpine3.21/Dockerfile) -- [`3.4.0-rc1-alpine3.20`, `3.4-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/34da3c21b6eb8a63f2c72167f3ad46fe31260dc3/3.4-rc/alpine3.20/Dockerfile) +- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/alpine3.20/Dockerfile) -- [`3.3.6-bookworm`, `3.3-bookworm`, `3-bookworm`, `bookworm`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bookworm/Dockerfile) +- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bookworm/Dockerfile) -- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.3.6-slim`, `3.3-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bookworm/Dockerfile) +- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bookworm/Dockerfile) -- [`3.3.6-bullseye`, `3.3-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bullseye/Dockerfile) +- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bullseye/Dockerfile) -- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bullseye/Dockerfile) +- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.3.6-alpine`, `3.3-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.21/Dockerfile) +- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.20/Dockerfile) - [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/bookworm/Dockerfile) From abd248902282245a1cdf9d06d251d01e9fa6aab9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Dec 2024 13:09:31 -0800 Subject: [PATCH 1778/2686] Run update.sh --- elixir/README.md | 36 +++++++++++++++++++++++++++--------- haproxy/README.md | 4 ++-- xwiki/README.md | 12 ++++++------ 3 files changed, 35 insertions(+), 17 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index fa8f71bb7d5c..e7124ecc4ccb 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.17.3`, `1.17`, `latest`, `1.17.3-otp-27`, `1.17-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) +- [`1.18.0`, `1.18`, `latest`, `1.18.0-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/Dockerfile) -- [`1.17.3-slim`, `1.17-slim`, `slim`, `1.17.3-otp-27-slim`, `1.17-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/slim/Dockerfile) +- [`1.18.0-slim`, `1.18-slim`, `slim`, `1.18.0-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/slim/Dockerfile) -- [`1.17.3-alpine`, `1.17-alpine`, `alpine`, `1.17.3-otp-27-alpine`, `1.17-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/alpine/Dockerfile) +- [`1.18.0-alpine`, `1.18-alpine`, `alpine`, `1.18.0-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/alpine/Dockerfile) -- [`1.17.3-otp-25`, `1.17-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25/Dockerfile) +- [`1.18.0-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25/Dockerfile) -- [`1.17.3-otp-25-alpine`, `1.17-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-alpine/Dockerfile) +- [`1.18.0-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25-alpine/Dockerfile) -- [`1.17.3-otp-25-slim`, `1.17-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-slim/Dockerfile) +- [`1.18.0-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25-slim/Dockerfile) -- [`1.17.3-otp-26`, `1.17-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26/Dockerfile) +- [`1.18.0-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26/Dockerfile) -- [`1.17.3-otp-26-alpine`, `1.17-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-alpine/Dockerfile) +- [`1.18.0-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26-alpine/Dockerfile) -- [`1.17.3-otp-26-slim`, `1.17-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-slim/Dockerfile) +- [`1.18.0-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26-slim/Dockerfile) + +- [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) + +- [`1.17.3-slim`, `1.17-slim`, `1.17.3-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/slim/Dockerfile) + +- [`1.17.3-alpine`, `1.17-alpine`, `1.17.3-otp-27-alpine`, `1.17-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/alpine/Dockerfile) + +- [`1.17.3-otp-25`, `1.17-otp-25`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25/Dockerfile) + +- [`1.17.3-otp-25-alpine`, `1.17-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-alpine/Dockerfile) + +- [`1.17.3-otp-25-slim`, `1.17-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-25-slim/Dockerfile) + +- [`1.17.3-otp-26`, `1.17-otp-26`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26/Dockerfile) + +- [`1.17.3-otp-26-alpine`, `1.17-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-alpine/Dockerfile) + +- [`1.17.3-otp-26-slim`, `1.17-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/otp-26-slim/Dockerfile) - [`1.16.3`, `1.16`, `1.16.3-otp-26`, `1.16-otp-26`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.16/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index cb49793291e8..b8bbf70e0546 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev1`, `3.2-dev`, `3.2-dev1-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/98981317e3520043f10841a76e8c0f691b29037d/3.2/Dockerfile) +- [`3.2-dev2`, `3.2-dev`, `3.2-dev2-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/10d18fdff5067448f4b88fbdac42594a005b60a9/3.2/Dockerfile) -- [`3.2-dev1-alpine`, `3.2-dev-alpine`, `3.2-dev1-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.2/alpine/Dockerfile) +- [`3.2-dev2-alpine`, `3.2-dev-alpine`, `3.2-dev2-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/10d18fdff5067448f4b88fbdac42594a005b60a9/3.2/alpine/Dockerfile) - [`3.1.1`, `3.1`, `latest`, `3.1.1-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 84d29f030a21..2c579676f21d 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.10`, `16.10.1`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.2`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.2-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.2-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/430f87c1698844c262d110c61825b2ec98e86bf2/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.2-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.15`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.15-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.15`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.15-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.15-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.15-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.15-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.15-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) From d074edf6ec492b85b6b1b8e9e4eaea82c59fd4a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrique=20Corr=C3=AAa?= <75134774+HeCorr@users.noreply.github.com> Date: Tue, 31 Dec 2024 12:17:25 -0300 Subject: [PATCH 1779/2686] nats: Add JetStream usage examples with and without volume persistence --- nats/content.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nats/content.md b/nats/content.md index b67d8f074f58..20f4fce94327 100644 --- a/nats/content.md +++ b/nats/content.md @@ -27,6 +27,15 @@ # # docker run -p 5555:4444 %%IMAGE%% -p 4444 # +# To enable NATS JetStream, use the -js flag: +# +# docker run -p 4222:4222 %%IMAGE%% -js +# +# And, to persist JetStream data to a volume you can use the -v and -sd flags. +# Keep in mind that -v is a Docker flag, while -js and -sd are NATS Server flags: +# +# docker run -p 4222:4222 -v nats:/data %%IMAGE%% -js -sd /data +# # Check "docker run" for more information. $ docker run -d --name nats-main -p 4222:4222 -p 6222:6222 -p 8222:8222 %%IMAGE%% From 7b4c0b32a497b59109698926193296fef1c5ddbb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Jan 2025 10:09:13 -0800 Subject: [PATCH 1780/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 941387d3572d..f54c56019cc3 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241213`, `devel`, `devel-20241213-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/be3e1c000bbc0a118e3d28f44e9e2a34fcb504d8/devel/Dockerfile) +- [`devel-20241230`, `devel`, `devel-20241230-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/b8135e80fc12454bfece459d17982521e4b4ee95/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) From 158fc79a7a25ac2e92d95e91d434d19efb05bb78 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Jan 2025 11:09:25 -0800 Subject: [PATCH 1781/2686] Run update.sh --- archlinux/README.md | 6 +++--- elixir/README.md | 18 +++++++++--------- friendica/README.md | 18 +++++++++--------- jetty/README.md | 34 +++++++++++++++++----------------- 4 files changed, 38 insertions(+), 38 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index a08aeae97fd7..461a78b3cc87 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.base) +- [`latest`, `base`, `base-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.base) -- [`base-devel`, `base-devel-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241222.0.291122`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/4cacbe0820837f0754e7fedbdf516992008dc3e5/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index e7124ecc4ccb..3d363af9d41c 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.0`, `1.18`, `latest`, `1.18.0-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/Dockerfile) +- [`1.18.1`, `1.18`, `latest`, `1.18.1-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/Dockerfile) -- [`1.18.0-slim`, `1.18-slim`, `slim`, `1.18.0-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/slim/Dockerfile) +- [`1.18.1-slim`, `1.18-slim`, `slim`, `1.18.1-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/slim/Dockerfile) -- [`1.18.0-alpine`, `1.18-alpine`, `alpine`, `1.18.0-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/alpine/Dockerfile) +- [`1.18.1-alpine`, `1.18-alpine`, `alpine`, `1.18.1-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/alpine/Dockerfile) -- [`1.18.0-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25/Dockerfile) +- [`1.18.1-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25/Dockerfile) -- [`1.18.0-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25-alpine/Dockerfile) +- [`1.18.1-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25-alpine/Dockerfile) -- [`1.18.0-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-25-slim/Dockerfile) +- [`1.18.1-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25-slim/Dockerfile) -- [`1.18.0-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26/Dockerfile) +- [`1.18.1-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26/Dockerfile) -- [`1.18.0-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26-alpine/Dockerfile) +- [`1.18.1-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26-alpine/Dockerfile) -- [`1.18.0-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/531465b9ab849e81416564c4bfe114f7b6dec824/1.18/otp-26-slim/Dockerfile) +- [`1.18.1-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26-slim/Dockerfile) - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 68df6578fda1..ce5832ff0b82 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2024.08-apache`, `apache`, `stable-apache`, `2024.08`, `latest`, `stable`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/apache/Dockerfile) +- [`2024.08-apache`, `2024.08`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/apache/Dockerfile) -- [`2024.08-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm/Dockerfile) +- [`2024.08-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm/Dockerfile) -- [`2024.08-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm-alpine/Dockerfile) +- [`2024.08-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm-alpine/Dockerfile) -- [`2024.09-rc-apache`, `rc-apache`, `2024.09-rc`, `rc`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/apache/Dockerfile) +- [`2024.12-apache`, `apache`, `stable-apache`, `2024.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/apache/Dockerfile) -- [`2024.09-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/fpm/Dockerfile) +- [`2024.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm/Dockerfile) -- [`2024.09-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.09-rc/fpm-alpine/Dockerfile) +- [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm-alpine/Dockerfile) -- [`2024.12-dev-apache`, `dev-apache`, `2024.12-dev`, `dev`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/apache/Dockerfile) -- [`2024.12-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/fpm/Dockerfile) -- [`2024.12-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/365f4797cc665d6d70ab536ab19b9567adb9c919/2024.12-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index 44d0ddf71e5a..0634ab643b68 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.15-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.15-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.16-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.16-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.15-jre21`, `12.0-jre21`, `12-jre21`, `12.0.15-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.16-jre21`, `12.0-jre21`, `12-jre21`, `12.0.16-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.15-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.15-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.16-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.16-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.15-jre17`, `12.0-jre17`, `12-jre17`, `12.0.15-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.16-jre17`, `12.0-jre17`, `12-jre17`, `12.0.16-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.15-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.15-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.16-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.16-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.15-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.15-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.16-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.16-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.15-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.15-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.16-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.16-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.15`, `12.0`, `12`, `12.0.15-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.15-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.15-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.16`, `12.0`, `12`, `12.0.16-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.16-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.16-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.15-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.15-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.16-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.16-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.15-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.15-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.16-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.16-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.15-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk23-al2023/Dockerfile) +- [`12.0.16-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk23-al2023/Dockerfile) -- [`12.0.15-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.16-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.15-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.16-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.15-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.15-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.16-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.16-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.15-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.16-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.15-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.16-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.15-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.16-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21-alpine/Dockerfile) From b9f444d1af14eeb85ab6263dd00e926d6301a336 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Jan 2025 07:09:15 -0800 Subject: [PATCH 1782/2686] Run update.sh --- traefik/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index a0a375f2859c..68b7ae742e1d 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.0-rc2-windowsservercore-ltsc2022`, `3.3.0-rc2-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.0-windowsservercore-ltsc2022`, `3.3.0-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.0-rc2-windowsservercore-1809`, `3.3.0-rc2-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/1809/Dockerfile) +- [`v3.3.0-windowsservercore-1809`, `3.3.0-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/1809/Dockerfile) -- [`v3.3.0-rc2-nanoserver-ltsc2022`, `3.3.0-rc2-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.0-nanoserver-ltsc2022`, `3.3.0-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.0-rc2`, `3.3.0-rc2`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/441cc872203d05451071db9ae052eb8aef4610f8/v3.3/alpine/Dockerfile) +- [`v3.3.0`, `3.3.0`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/alpine/Dockerfile) -- [`v3.2.3-windowsservercore-ltsc2022`, `3.2.3-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.4-windowsservercore-ltsc2022`, `3.2.4-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.3-windowsservercore-1809`, `3.2.3-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `munster-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/1809/Dockerfile) +- [`v3.2.4-windowsservercore-1809`, `3.2.4-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/1809/Dockerfile) -- [`v3.2.3-nanoserver-ltsc2022`, `3.2.3-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.4-nanoserver-ltsc2022`, `3.2.4-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.3`, `3.2.3`, `v3.2`, `3.2`, `v3`, `3`, `munster`, `latest`](https://github.com/traefik/traefik-library-image/blob/eafc354da1aa2204b9c8b74b4e29efc12002b063/v3.2/alpine/Dockerfile) +- [`v3.2.4`, `3.2.4`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/alpine/Dockerfile) -- [`v2.11.16-windowsservercore-ltsc2022`, `2.11.16-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.17-windowsservercore-ltsc2022`, `2.11.17-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.16-windowsservercore-1809`, `2.11.16-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/1809/Dockerfile) +- [`v2.11.17-windowsservercore-1809`, `2.11.17-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/1809/Dockerfile) -- [`v2.11.16-nanoserver-ltsc2022`, `2.11.16-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.17-nanoserver-ltsc2022`, `2.11.17-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.16`, `2.11.16`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/82de16d0c92acf02ede81d841a58ce86dc7bbd53/v2.11/alpine/Dockerfile) +- [`v2.11.17`, `2.11.17`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 6a28ac7d0c7005376b62c7f0f8971d8aad59e008 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Jan 2025 09:09:24 -0800 Subject: [PATCH 1783/2686] Run update.sh --- redis/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/redis/README.md b/redis/README.md index 08e100186eb7..9a943e031a17 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M02-alpine`, `8.0-M02-alpine3.20`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/alpine/Dockerfile) +- [`8.0-M02-alpine`, `8.0-M02-alpine3.21`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/alpine/Dockerfile) - [`8.0-M02`, `8.0-M02-bookworm`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/debian/Dockerfile) -- [`7.4.1`, `7.4`, `7`, `latest`, `7.4.1-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/debian/Dockerfile) +- [`7.4.2`, `7.4`, `7`, `latest`, `7.4.2-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/debian/Dockerfile) -- [`7.4.1-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.1-alpine3.20`, `7.4-alpine3.20`, `7-alpine3.20`, `alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/alpine/Dockerfile) +- [`7.4.2-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.2-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/alpine/Dockerfile) -- [`7.2.6`, `7.2`, `7.2.6-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.2/debian/Dockerfile) +- [`7.2.7`, `7.2`, `7.2.7-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.2/debian/Dockerfile) -- [`7.2.6-alpine`, `7.2-alpine`, `7.2.6-alpine3.20`, `7.2-alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.2/alpine/Dockerfile) +- [`7.2.7-alpine`, `7.2-alpine`, `7.2.7-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.2/alpine/Dockerfile) -- [`6.2.16`, `6.2`, `6`, `6.2.16-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/6.2/debian/Dockerfile) +- [`6.2.17`, `6.2`, `6`, `6.2.17-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/6.2/debian/Dockerfile) -- [`6.2.16-alpine`, `6.2-alpine`, `6-alpine`, `6.2.16-alpine3.20`, `6.2-alpine3.20`, `6-alpine3.20`](https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/6.2/alpine/Dockerfile) +- [`6.2.17-alpine`, `6.2-alpine`, `6-alpine`, `6.2.17-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/6.2/alpine/Dockerfile) # Quick reference (cont.) From f042b7ebde42c064a55e269243f2acd49afaa4b6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Jan 2025 12:09:16 -0800 Subject: [PATCH 1784/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index d1c0db3ebd20..7a1707d2dcc7 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-2-jdk-oraclelinux9`, `25-ea-2-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-2-jdk-oracle`, `25-ea-2-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-4-jdk-oraclelinux9`, `25-ea-4-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-4-jdk-oracle`, `25-ea-4-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-2-jdk-oraclelinux8`, `25-ea-2-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-4-jdk-oraclelinux8`, `25-ea-4-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-2-jdk-bookworm`, `25-ea-2-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/bookworm/Dockerfile) +- [`25-ea-4-jdk-bookworm`, `25-ea-4-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/bookworm/Dockerfile) -- [`25-ea-2-jdk-slim-bookworm`, `25-ea-2-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-2-jdk-slim`, `25-ea-2-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-4-jdk-slim-bookworm`, `25-ea-4-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-4-jdk-slim`, `25-ea-4-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-2-jdk-bullseye`, `25-ea-2-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/bullseye/Dockerfile) +- [`25-ea-4-jdk-bullseye`, `25-ea-4-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/bullseye/Dockerfile) -- [`25-ea-2-jdk-slim-bullseye`, `25-ea-2-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-4-jdk-slim-bullseye`, `25-ea-4-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-2-jdk-windowsservercore-ltsc2022`, `25-ea-2-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-4-jdk-windowsservercore-ltsc2022`, `25-ea-4-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-2-jdk-windowsservercore-1809`, `25-ea-2-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-4-jdk-windowsservercore-1809`, `25-ea-4-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-2-jdk-nanoserver-1809`, `25-ea-2-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-4-jdk-nanoserver-1809`, `25-ea-4-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-28-jdk-oraclelinux9`, `24-ea-28-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-28-jdk-oracle`, `24-ea-28-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-30-jdk-oraclelinux9`, `24-ea-30-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-30-jdk-oracle`, `24-ea-30-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-28-jdk-oraclelinux8`, `24-ea-28-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-30-jdk-oraclelinux8`, `24-ea-30-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-28-jdk-bookworm`, `24-ea-28-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/bookworm/Dockerfile) +- [`24-ea-30-jdk-bookworm`, `24-ea-30-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/bookworm/Dockerfile) -- [`24-ea-28-jdk-slim-bookworm`, `24-ea-28-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-28-jdk-slim`, `24-ea-28-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-30-jdk-slim-bookworm`, `24-ea-30-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-30-jdk-slim`, `24-ea-30-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-28-jdk-bullseye`, `24-ea-28-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/bullseye/Dockerfile) +- [`24-ea-30-jdk-bullseye`, `24-ea-30-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/bullseye/Dockerfile) -- [`24-ea-28-jdk-slim-bullseye`, `24-ea-28-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-30-jdk-slim-bullseye`, `24-ea-30-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-28-jdk-windowsservercore-ltsc2022`, `24-ea-28-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-30-jdk-windowsservercore-ltsc2022`, `24-ea-30-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-28-jdk-windowsservercore-1809`, `24-ea-28-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-30-jdk-windowsservercore-1809`, `24-ea-30-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-28-jdk-nanoserver-1809`, `24-ea-28-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-30-jdk-nanoserver-1809`, `24-ea-30-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-2-jdk`, `25-ea-2`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-4-jdk`, `25-ea-4`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-2-jdk-windowsservercore`, `25-ea-2-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-4-jdk-windowsservercore`, `25-ea-4-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-2-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-2-jdk-nanoserver`, `25-ea-2-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-4-jdk-nanoserver`, `25-ea-4-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-2-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0fbf74890b5f9256bb4b9680c3ca5bf65749e7df/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-28-jdk`, `24-ea-28`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-30-jdk`, `24-ea-30`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-28-jdk-windowsservercore`, `24-ea-28-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-30-jdk-windowsservercore`, `24-ea-30-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-28-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-28-jdk-nanoserver`, `24-ea-28-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-30-jdk-nanoserver`, `24-ea-30-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-28-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/1e0ca6e2aa72a0a1bcfd512060e9fe805bf94a24/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From cc6542587567cd511643faa793bcbe92184d570c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Jan 2025 17:09:31 -0800 Subject: [PATCH 1785/2686] Run update.sh --- aerospike/README.md | 4 +-- archlinux/README.md | 6 ++-- php/README.md | 56 +++++++++++++++++++++++++++++++++++ tomee/README.md | 72 +++++++++++++++------------------------------ 4 files changed, 85 insertions(+), 53 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 868a4ec24d19..61ca59668013 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.2.0.4`, `ee-7.2.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/ecbb73c9d4f87474c4e2b64ace09d41a911a4409/enterprise/ubuntu24.04/Dockerfile) +- [`ee-7.2.0.6`, `ee-7.2.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/033b7b6fea20a2f425e59657dd4ee7f90b3d0828/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.2.0.4`, `ce-7.2.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/ecbb73c9d4f87474c4e2b64ace09d41a911a4409/community/ubuntu24.04/Dockerfile) +- [`ce-7.2.0.6`, `ce-7.2.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/033b7b6fea20a2f425e59657dd4ee7f90b3d0828/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 461a78b3cc87..be9d2af748a1 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.base) +- [`latest`, `base`, `base-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.base) -- [`base-devel`, `base-devel-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20241229.0.293060`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fd757a8bfbf96186808c58aa19e413efd787ad42/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 52268e6351ef..a9f848220274 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.3RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.3RC1-bookworm`, `8.4-rc-bookworm`, `8.4.3RC1-cli`, `8.4-rc-cli`, `8.4.3RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.3RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.3RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.3RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.3RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.3RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.3RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.3RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.3RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.3RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.3RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.3RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.3RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.3RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.3RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.3RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.3RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.3RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.3RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.3RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.3RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.3RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.3RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.3RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.2-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.2-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.2-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.2`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/cli/Dockerfile) - [`8.4.2-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.2-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.2-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.16RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.16RC1-bookworm`, `8.3-rc-bookworm`, `8.3.16RC1-cli`, `8.3-rc-cli`, `8.3.16RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.16RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.16RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.16RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.16RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.16RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.16RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.16RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.16RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.16RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.16RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.16RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.16RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.16RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.16RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.16RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.16RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.16RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.16RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.16RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.16RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.16RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.16RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.16RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.15-cli-bookworm`, `8.3-cli-bookworm`, `8.3.15-bookworm`, `8.3-bookworm`, `8.3.15-cli`, `8.3-cli`, `8.3.15`, `8.3`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/cli/Dockerfile) - [`8.3.15-apache-bookworm`, `8.3-apache-bookworm`, `8.3.15-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/apache/Dockerfile) diff --git a/tomee/README.md b/tomee/README.md index c9e45a61b9b8..ff3caba6f3f2 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,77 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.3-jre11-Temurin-ubuntu-microprofile`, `9.1.3-Temurin-ubuntu-microprofile`, `9.1.3-jre11-ubuntu-microprofile`, `9.1.3-ubuntu-microprofile`, `9.1.3-jre11-Temurin-microprofile`, `9.1.3-Temurin-microprofile`, `9.1.3-jre11-microprofile`, `9.1.3-microprofile`, `9.1.3-jre11-Temurin-ubuntu`, `9.1.3-Temurin-ubuntu`, `9.1.3-jre11-ubuntu`, `9.1.3-ubuntu`, `9.1.3-jre11-Temurin`, `9.1.3-Temurin`, `9.1.3-jre11`, `9.1.3`, `9.1-jre11-Temurin-ubuntu-microprofile`, `9.1-Temurin-ubuntu-microprofile`, `9.1-jre11-ubuntu-microprofile`, `9.1-ubuntu-microprofile`, `9.1-jre11-Temurin-microprofile`, `9.1-Temurin-microprofile`, `9.1-jre11-microprofile`, `9.1-microprofile`, `9.1-jre11-Temurin-ubuntu`, `9.1-Temurin-ubuntu`, `9.1-jre11-ubuntu`, `9.1-ubuntu`, `9.1-jre11-Temurin`, `9.1-Temurin`, `9.1-jre11`, `9.1`, `9-jre11-Temurin-ubuntu-microprofile`, `9-Temurin-ubuntu-microprofile`, `9-jre11-ubuntu-microprofile`, `9-ubuntu-microprofile`, `9-jre11-Temurin-microprofile`, `9-Temurin-microprofile`, `9-jre11-microprofile`, `9-microprofile`, `9-jre11-Temurin-ubuntu`, `9-Temurin-ubuntu`, `9-jre11-ubuntu`, `9-ubuntu`, `9-jre11-Temurin`, `9-Temurin`, `9-jre11`, `9`, `jre11-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre11-ubuntu-microprofile`, `ubuntu-microprofile`, `jre11-Temurin-microprofile`, `Temurin-microprofile`, `jre11-microprofile`, `microprofile`, `jre11-Temurin-ubuntu`, `Temurin-ubuntu`, `jre11-ubuntu`, `ubuntu`, `jre11-Temurin`, `Temurin`, `jre11`, `latest`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-jre21-Temurin-ubuntu-microprofile`, `10.0.0-Temurin-ubuntu-microprofile`, `10.0.0-jre21-ubuntu-microprofile`, `10.0.0-ubuntu-microprofile`, `10.0.0-jre21-Temurin-microprofile`, `10.0.0-Temurin-microprofile`, `10.0.0-jre21-microprofile`, `10.0.0-microprofile`, `10.0.0-jre21-Temurin-ubuntu`, `10.0.0-Temurin-ubuntu`, `10.0.0-jre21-ubuntu`, `10.0.0-ubuntu`, `10.0.0-jre21-Temurin`, `10.0.0-Temurin`, `10.0.0-jre21`, `10.0.0`, `10.0-jre21-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre21-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre21-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre21-microprofile`, `10.0-microprofile`, `10.0-jre21-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre21-ubuntu`, `10.0-ubuntu`, `10.0-jre21-Temurin`, `10.0-Temurin`, `10.0-jre21`, `10.0`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plume`, `9.1.3-Temurin-ubuntu-plume`, `9.1.3-jre11-ubuntu-plume`, `9.1.3-ubuntu-plume`, `9.1.3-jre11-Temurin-plume`, `9.1.3-Temurin-plume`, `9.1.3-jre11-plume`, `9.1.3-plume`, `9.1-jre11-Temurin-ubuntu-plume`, `9.1-Temurin-ubuntu-plume`, `9.1-jre11-ubuntu-plume`, `9.1-ubuntu-plume`, `9.1-jre11-Temurin-plume`, `9.1-Temurin-plume`, `9.1-jre11-plume`, `9.1-plume`, `9-jre11-Temurin-ubuntu-plume`, `9-Temurin-ubuntu-plume`, `9-jre11-ubuntu-plume`, `9-ubuntu-plume`, `9-jre11-Temurin-plume`, `9-Temurin-plume`, `9-jre11-plume`, `9-plume`, `jre11-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre11-ubuntu-plume`, `ubuntu-plume`, `jre11-Temurin-plume`, `Temurin-plume`, `jre11-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-jre21-Temurin-ubuntu-plume`, `10.0.0-Temurin-ubuntu-plume`, `10.0.0-jre21-ubuntu-plume`, `10.0.0-ubuntu-plume`, `10.0.0-jre21-Temurin-plume`, `10.0.0-Temurin-plume`, `10.0.0-jre21-plume`, `10.0.0-plume`, `10.0-jre21-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre21-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre21-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre21-plume`, `10.0-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-plus`, `9.1.3-Temurin-ubuntu-plus`, `9.1.3-jre11-ubuntu-plus`, `9.1.3-ubuntu-plus`, `9.1.3-jre11-Temurin-plus`, `9.1.3-Temurin-plus`, `9.1.3-jre11-plus`, `9.1.3-plus`, `9.1-jre11-Temurin-ubuntu-plus`, `9.1-Temurin-ubuntu-plus`, `9.1-jre11-ubuntu-plus`, `9.1-ubuntu-plus`, `9.1-jre11-Temurin-plus`, `9.1-Temurin-plus`, `9.1-jre11-plus`, `9.1-plus`, `9-jre11-Temurin-ubuntu-plus`, `9-Temurin-ubuntu-plus`, `9-jre11-ubuntu-plus`, `9-ubuntu-plus`, `9-jre11-Temurin-plus`, `9-Temurin-plus`, `9-jre11-plus`, `9-plus`, `jre11-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre11-ubuntu-plus`, `ubuntu-plus`, `jre11-Temurin-plus`, `Temurin-plus`, `jre11-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-jre21-Temurin-ubuntu-plus`, `10.0.0-Temurin-ubuntu-plus`, `10.0.0-jre21-ubuntu-plus`, `10.0.0-ubuntu-plus`, `10.0.0-jre21-Temurin-plus`, `10.0.0-Temurin-plus`, `10.0.0-jre21-plus`, `10.0.0-plus`, `10.0-jre21-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre21-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre21-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre21-plus`, `10.0-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-ubuntu-webprofile`, `9.1.3-Temurin-ubuntu-webprofile`, `9.1.3-jre11-ubuntu-webprofile`, `9.1.3-ubuntu-webprofile`, `9.1.3-jre11-Temurin-webprofile`, `9.1.3-Temurin-webprofile`, `9.1.3-jre11-webprofile`, `9.1.3-webprofile`, `9.1-jre11-Temurin-ubuntu-webprofile`, `9.1-Temurin-ubuntu-webprofile`, `9.1-jre11-ubuntu-webprofile`, `9.1-ubuntu-webprofile`, `9.1-jre11-Temurin-webprofile`, `9.1-Temurin-webprofile`, `9.1-jre11-webprofile`, `9.1-webprofile`, `9-jre11-Temurin-ubuntu-webprofile`, `9-Temurin-ubuntu-webprofile`, `9-jre11-ubuntu-webprofile`, `9-ubuntu-webprofile`, `9-jre11-Temurin-webprofile`, `9-Temurin-webprofile`, `9-jre11-webprofile`, `9-webprofile`, `jre11-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre11-ubuntu-webprofile`, `ubuntu-webprofile`, `jre11-Temurin-webprofile`, `Temurin-webprofile`, `jre11-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-jre21-Temurin-ubuntu-webprofile`, `10.0.0-Temurin-ubuntu-webprofile`, `10.0.0-jre21-ubuntu-webprofile`, `10.0.0-ubuntu-webprofile`, `10.0.0-jre21-Temurin-webprofile`, `10.0.0-Temurin-webprofile`, `10.0.0-jre21-webprofile`, `10.0.0-webprofile`, `10.0-jre21-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre21-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre21-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre21-webprofile`, `10.0-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-microprofile`, `9.1.3-Temurin-alpine-microprofile`, `9.1.3-jre11-alpine-microprofile`, `9.1.3-alpine-microprofile`, `9.1.3-jre11-Temurin-alpine`, `9.1.3-Temurin-alpine`, `9.1.3-jre11-alpine`, `9.1.3-alpine`, `9.1-jre11-Temurin-alpine-microprofile`, `9.1-Temurin-alpine-microprofile`, `9.1-jre11-alpine-microprofile`, `9.1-alpine-microprofile`, `9.1-jre11-Temurin-alpine`, `9.1-Temurin-alpine`, `9.1-jre11-alpine`, `9.1-alpine`, `9-jre11-Temurin-alpine-microprofile`, `9-Temurin-alpine-microprofile`, `9-jre11-alpine-microprofile`, `9-alpine-microprofile`, `9-jre11-Temurin-alpine`, `9-Temurin-alpine`, `9-jre11-alpine`, `9-alpine`, `jre11-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre11-alpine-microprofile`, `alpine-microprofile`, `jre11-Temurin-alpine`, `Temurin-alpine`, `jre11-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-jre21-Temurin-alpine-microprofile`, `10.0.0-Temurin-alpine-microprofile`, `10.0.0-jre21-alpine-microprofile`, `10.0.0-alpine-microprofile`, `10.0.0-jre21-Temurin-alpine`, `10.0.0-Temurin-alpine`, `10.0.0-jre21-alpine`, `10.0.0-alpine`, `10.0-jre21-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre21-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre21-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre21-alpine`, `10.0-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plume`, `9.1.3-Temurin-alpine-plume`, `9.1.3-jre11-alpine-plume`, `9.1.3-alpine-plume`, `9.1-jre11-Temurin-alpine-plume`, `9.1-Temurin-alpine-plume`, `9.1-jre11-alpine-plume`, `9.1-alpine-plume`, `9-jre11-Temurin-alpine-plume`, `9-Temurin-alpine-plume`, `9-jre11-alpine-plume`, `9-alpine-plume`, `jre11-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre11-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-jre21-Temurin-alpine-plume`, `10.0.0-Temurin-alpine-plume`, `10.0.0-jre21-alpine-plume`, `10.0.0-alpine-plume`, `10.0-jre21-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre21-alpine-plume`, `10.0-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-plus`, `9.1.3-Temurin-alpine-plus`, `9.1.3-jre11-alpine-plus`, `9.1.3-alpine-plus`, `9.1-jre11-Temurin-alpine-plus`, `9.1-Temurin-alpine-plus`, `9.1-jre11-alpine-plus`, `9.1-alpine-plus`, `9-jre11-Temurin-alpine-plus`, `9-Temurin-alpine-plus`, `9-jre11-alpine-plus`, `9-alpine-plus`, `jre11-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre11-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-jre21-Temurin-alpine-plus`, `10.0.0-Temurin-alpine-plus`, `10.0.0-jre21-alpine-plus`, `10.0.0-alpine-plus`, `10.0-jre21-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre21-alpine-plus`, `10.0-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre11-Temurin-alpine-webprofile`, `9.1.3-Temurin-alpine-webprofile`, `9.1.3-jre11-alpine-webprofile`, `9.1.3-alpine-webprofile`, `9.1-jre11-Temurin-alpine-webprofile`, `9.1-Temurin-alpine-webprofile`, `9.1-jre11-alpine-webprofile`, `9.1-alpine-webprofile`, `9-jre11-Temurin-alpine-webprofile`, `9-Temurin-alpine-webprofile`, `9-jre11-alpine-webprofile`, `9-alpine-webprofile`, `jre11-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre11-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-jre21-Temurin-alpine-webprofile`, `10.0.0-Temurin-alpine-webprofile`, `10.0.0-jre21-alpine-webprofile`, `10.0.0-alpine-webprofile`, `10.0-jre21-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre21-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-microprofile`, `9.1.3-Semeru-ubuntu-microprofile`, `9.1.3-jre11-Semeru-microprofile`, `9.1.3-Semeru-microprofile`, `9.1.3-jre11-Semeru-ubuntu`, `9.1.3-Semeru-ubuntu`, `9.1.3-jre11-Semeru`, `9.1.3-Semeru`, `9.1-jre11-Semeru-ubuntu-microprofile`, `9.1-Semeru-ubuntu-microprofile`, `9.1-jre11-Semeru-microprofile`, `9.1-Semeru-microprofile`, `9.1-jre11-Semeru-ubuntu`, `9.1-Semeru-ubuntu`, `9.1-jre11-Semeru`, `9.1-Semeru`, `9-jre11-Semeru-ubuntu-microprofile`, `9-Semeru-ubuntu-microprofile`, `9-jre11-Semeru-microprofile`, `9-Semeru-microprofile`, `9-jre11-Semeru-ubuntu`, `9-Semeru-ubuntu`, `9-jre11-Semeru`, `9-Semeru`, `jre11-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre11-Semeru-microprofile`, `Semeru-microprofile`, `jre11-Semeru-ubuntu`, `Semeru-ubuntu`, `jre11-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-jre21-Semeru-ubuntu-microprofile`, `10.0.0-Semeru-ubuntu-microprofile`, `10.0.0-jre21-Semeru-microprofile`, `10.0.0-Semeru-microprofile`, `10.0.0-jre21-Semeru-ubuntu`, `10.0.0-Semeru-ubuntu`, `10.0.0-jre21-Semeru`, `10.0.0-Semeru`, `10.0-jre21-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre21-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre21-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre21-Semeru`, `10.0-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plume`, `9.1.3-Semeru-ubuntu-plume`, `9.1.3-jre11-Semeru-plume`, `9.1.3-Semeru-plume`, `9.1-jre11-Semeru-ubuntu-plume`, `9.1-Semeru-ubuntu-plume`, `9.1-jre11-Semeru-plume`, `9.1-Semeru-plume`, `9-jre11-Semeru-ubuntu-plume`, `9-Semeru-ubuntu-plume`, `9-jre11-Semeru-plume`, `9-Semeru-plume`, `jre11-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre11-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-jre21-Semeru-ubuntu-plume`, `10.0.0-Semeru-ubuntu-plume`, `10.0.0-jre21-Semeru-plume`, `10.0.0-Semeru-plume`, `10.0-jre21-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre21-Semeru-plume`, `10.0-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-plus`, `9.1.3-Semeru-ubuntu-plus`, `9.1.3-jre11-Semeru-plus`, `9.1.3-Semeru-plus`, `9.1-jre11-Semeru-ubuntu-plus`, `9.1-Semeru-ubuntu-plus`, `9.1-jre11-Semeru-plus`, `9.1-Semeru-plus`, `9-jre11-Semeru-ubuntu-plus`, `9-Semeru-ubuntu-plus`, `9-jre11-Semeru-plus`, `9-Semeru-plus`, `jre11-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre11-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-jre21-Semeru-ubuntu-plus`, `10.0.0-Semeru-ubuntu-plus`, `10.0.0-jre21-Semeru-plus`, `10.0.0-Semeru-plus`, `10.0-jre21-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre21-Semeru-plus`, `10.0-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre11-Semeru-ubuntu-webprofile`, `9.1.3-Semeru-ubuntu-webprofile`, `9.1.3-jre11-Semeru-webprofile`, `9.1.3-Semeru-webprofile`, `9.1-jre11-Semeru-ubuntu-webprofile`, `9.1-Semeru-ubuntu-webprofile`, `9.1-jre11-Semeru-webprofile`, `9.1-Semeru-webprofile`, `9-jre11-Semeru-ubuntu-webprofile`, `9-Semeru-ubuntu-webprofile`, `9-jre11-Semeru-webprofile`, `9-Semeru-webprofile`, `jre11-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre11-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre11/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-jre21-Semeru-ubuntu-webprofile`, `10.0.0-Semeru-ubuntu-webprofile`, `10.0.0-jre21-Semeru-webprofile`, `10.0.0-Semeru-webprofile`, `10.0-jre21-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre21-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-microprofile`, `9.1.3-jre17-ubuntu-microprofile`, `9.1.3-jre17-Temurin-microprofile`, `9.1.3-jre17-microprofile`, `9.1.3-jre17-Temurin-ubuntu`, `9.1.3-jre17-ubuntu`, `9.1.3-jre17-Temurin`, `9.1.3-jre17`, `9.1-jre17-Temurin-ubuntu-microprofile`, `9.1-jre17-ubuntu-microprofile`, `9.1-jre17-Temurin-microprofile`, `9.1-jre17-microprofile`, `9.1-jre17-Temurin-ubuntu`, `9.1-jre17-ubuntu`, `9.1-jre17-Temurin`, `9.1-jre17`, `9-jre17-Temurin-ubuntu-microprofile`, `9-jre17-ubuntu-microprofile`, `9-jre17-Temurin-microprofile`, `9-jre17-microprofile`, `9-jre17-Temurin-ubuntu`, `9-jre17-ubuntu`, `9-jre17-Temurin`, `9-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.0-jre17-Temurin-ubuntu-microprofile`, `10.0.0-jre17-ubuntu-microprofile`, `10.0.0-jre17-Temurin-microprofile`, `10.0.0-jre17-microprofile`, `10.0.0-jre17-Temurin-ubuntu`, `10.0.0-jre17-ubuntu`, `10.0.0-jre17-Temurin`, `10.0.0-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plume`, `9.1.3-jre17-ubuntu-plume`, `9.1.3-jre17-Temurin-plume`, `9.1.3-jre17-plume`, `9.1-jre17-Temurin-ubuntu-plume`, `9.1-jre17-ubuntu-plume`, `9.1-jre17-Temurin-plume`, `9.1-jre17-plume`, `9-jre17-Temurin-ubuntu-plume`, `9-jre17-ubuntu-plume`, `9-jre17-Temurin-plume`, `9-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.0-jre17-Temurin-ubuntu-plume`, `10.0.0-jre17-ubuntu-plume`, `10.0.0-jre17-Temurin-plume`, `10.0.0-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-plus`, `9.1.3-jre17-ubuntu-plus`, `9.1.3-jre17-Temurin-plus`, `9.1.3-jre17-plus`, `9.1-jre17-Temurin-ubuntu-plus`, `9.1-jre17-ubuntu-plus`, `9.1-jre17-Temurin-plus`, `9.1-jre17-plus`, `9-jre17-Temurin-ubuntu-plus`, `9-jre17-ubuntu-plus`, `9-jre17-Temurin-plus`, `9-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.0-jre17-Temurin-ubuntu-plus`, `10.0.0-jre17-ubuntu-plus`, `10.0.0-jre17-Temurin-plus`, `10.0.0-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-ubuntu-webprofile`, `9.1.3-jre17-ubuntu-webprofile`, `9.1.3-jre17-Temurin-webprofile`, `9.1.3-jre17-webprofile`, `9.1-jre17-Temurin-ubuntu-webprofile`, `9.1-jre17-ubuntu-webprofile`, `9.1-jre17-Temurin-webprofile`, `9.1-jre17-webprofile`, `9-jre17-Temurin-ubuntu-webprofile`, `9-jre17-ubuntu-webprofile`, `9-jre17-Temurin-webprofile`, `9-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.0-jre17-Temurin-ubuntu-webprofile`, `10.0.0-jre17-ubuntu-webprofile`, `10.0.0-jre17-Temurin-webprofile`, `10.0.0-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-microprofile`, `9.1.3-jre17-alpine-microprofile`, `9.1.3-jre17-Temurin-alpine`, `9.1.3-jre17-alpine`, `9.1-jre17-Temurin-alpine-microprofile`, `9.1-jre17-alpine-microprofile`, `9.1-jre17-Temurin-alpine`, `9.1-jre17-alpine`, `9-jre17-Temurin-alpine-microprofile`, `9-jre17-alpine-microprofile`, `9-jre17-Temurin-alpine`, `9-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.0-jre17-Temurin-alpine-microprofile`, `10.0.0-jre17-alpine-microprofile`, `10.0.0-jre17-Temurin-alpine`, `10.0.0-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plume`, `9.1.3-jre17-alpine-plume`, `9.1-jre17-Temurin-alpine-plume`, `9.1-jre17-alpine-plume`, `9-jre17-Temurin-alpine-plume`, `9-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.0.0-jre17-Temurin-alpine-plume`, `10.0.0-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-plus`, `9.1.3-jre17-alpine-plus`, `9.1-jre17-Temurin-alpine-plus`, `9.1-jre17-alpine-plus`, `9-jre17-Temurin-alpine-plus`, `9-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.0.0-jre17-Temurin-alpine-plus`, `10.0.0-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`9.1.3-jre17-Temurin-alpine-webprofile`, `9.1.3-jre17-alpine-webprofile`, `9.1-jre17-Temurin-alpine-webprofile`, `9.1-jre17-alpine-webprofile`, `9-jre17-Temurin-alpine-webprofile`, `9-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.0-jre17-Temurin-alpine-webprofile`, `10.0.0-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-microprofile`, `9.1.3-jre17-Semeru-microprofile`, `9.1.3-jre17-Semeru-ubuntu`, `9.1.3-jre17-Semeru`, `9.1-jre17-Semeru-ubuntu-microprofile`, `9.1-jre17-Semeru-microprofile`, `9.1-jre17-Semeru-ubuntu`, `9.1-jre17-Semeru`, `9-jre17-Semeru-ubuntu-microprofile`, `9-jre17-Semeru-microprofile`, `9-jre17-Semeru-ubuntu`, `9-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.0-jre17-Semeru-ubuntu-microprofile`, `10.0.0-jre17-Semeru-microprofile`, `10.0.0-jre17-Semeru-ubuntu`, `10.0.0-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plume`, `9.1.3-jre17-Semeru-plume`, `9.1-jre17-Semeru-ubuntu-plume`, `9.1-jre17-Semeru-plume`, `9-jre17-Semeru-ubuntu-plume`, `9-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.0-jre17-Semeru-ubuntu-plume`, `10.0.0-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-plus`, `9.1.3-jre17-Semeru-plus`, `9.1-jre17-Semeru-ubuntu-plus`, `9.1-jre17-Semeru-plus`, `9-jre17-Semeru-ubuntu-plus`, `9-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.0-jre17-Semeru-ubuntu-plus`, `10.0.0-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`9.1.3-jre17-Semeru-ubuntu-webprofile`, `9.1.3-jre17-Semeru-webprofile`, `9.1-jre17-Semeru-ubuntu-webprofile`, `9.1-jre17-Semeru-webprofile`, `9-jre17-Semeru-ubuntu-webprofile`, `9-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-9.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-ubuntu-microprofile`, `10.0.0-M3-Temurin-ubuntu-microprofile`, `10.0.0-M3-jre17-ubuntu-microprofile`, `10.0.0-M3-ubuntu-microprofile`, `10.0.0-M3-jre17-Temurin-microprofile`, `10.0.0-M3-Temurin-microprofile`, `10.0.0-M3-jre17-microprofile`, `10.0.0-M3-microprofile`, `10.0.0-M3-jre17-Temurin-ubuntu`, `10.0.0-M3-Temurin-ubuntu`, `10.0.0-M3-jre17-ubuntu`, `10.0.0-M3-ubuntu`, `10.0.0-M3-jre17-Temurin`, `10.0.0-M3-Temurin`, `10.0.0-M3-jre17`, `10.0.0-M3`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-ubuntu`, `10.0-jre17-Temurin`, `10.0-Temurin`, `10.0-jre17`, `10.0`, `10-jre17-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre17-microprofile`, `10-microprofile`, `10-jre17-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-ubuntu`, `10-jre17-Temurin`, `10-Temurin`, `10-jre17`, `10`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-ubuntu-plume`, `10.0.0-M3-Temurin-ubuntu-plume`, `10.0.0-M3-jre17-ubuntu-plume`, `10.0.0-M3-ubuntu-plume`, `10.0.0-M3-jre17-Temurin-plume`, `10.0.0-M3-Temurin-plume`, `10.0.0-M3-jre17-plume`, `10.0.0-M3-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre17-plume`, `10.0-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-Temurin-plume`, `10-jre17-plume`, `10-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-ubuntu-plus`, `10.0.0-M3-Temurin-ubuntu-plus`, `10.0.0-M3-jre17-ubuntu-plus`, `10.0.0-M3-ubuntu-plus`, `10.0.0-M3-jre17-Temurin-plus`, `10.0.0-M3-Temurin-plus`, `10.0.0-M3-jre17-plus`, `10.0.0-M3-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre17-plus`, `10.0-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-Temurin-plus`, `10-jre17-plus`, `10-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-ubuntu-webprofile`, `10.0.0-M3-Temurin-ubuntu-webprofile`, `10.0.0-M3-jre17-ubuntu-webprofile`, `10.0.0-M3-ubuntu-webprofile`, `10.0.0-M3-jre17-Temurin-webprofile`, `10.0.0-M3-Temurin-webprofile`, `10.0.0-M3-jre17-webprofile`, `10.0.0-M3-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre17-webprofile`, `10.0-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre17-webprofile`, `10-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-alpine-microprofile`, `10.0.0-M3-Temurin-alpine-microprofile`, `10.0.0-M3-jre17-alpine-microprofile`, `10.0.0-M3-alpine-microprofile`, `10.0.0-M3-jre17-Temurin-alpine`, `10.0.0-M3-Temurin-alpine`, `10.0.0-M3-jre17-alpine`, `10.0.0-M3-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre17-alpine`, `10.0-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-Temurin-alpine`, `10-jre17-alpine`, `10-alpine`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-alpine-plume`, `10.0.0-M3-Temurin-alpine-plume`, `10.0.0-M3-jre17-alpine-plume`, `10.0.0-M3-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10.0-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `10-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-alpine-plus`, `10.0.0-M3-Temurin-alpine-plus`, `10.0.0-M3-jre17-alpine-plus`, `10.0.0-M3-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10.0-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `10-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) - -- [`10.0.0-M3-jre17-Temurin-alpine-webprofile`, `10.0.0-M3-Temurin-alpine-webprofile`, `10.0.0-M3-jre17-alpine-webprofile`, `10.0.0-M3-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `10-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Semeru-ubuntu-microprofile`, `10.0.0-M3-Semeru-ubuntu-microprofile`, `10.0.0-M3-jre17-Semeru-microprofile`, `10.0.0-M3-Semeru-microprofile`, `10.0.0-M3-jre17-Semeru-ubuntu`, `10.0.0-M3-Semeru-ubuntu`, `10.0.0-M3-jre17-Semeru`, `10.0.0-M3-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10.0-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre17-Semeru`, `10-Semeru`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) - -- [`10.0.0-M3-jre17-Semeru-ubuntu-plume`, `10.0.0-M3-Semeru-ubuntu-plume`, `10.0.0-M3-jre17-Semeru-plume`, `10.0.0-M3-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10.0-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `10-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) - -- [`10.0.0-M3-jre17-Semeru-ubuntu-plus`, `10.0.0-M3-Semeru-ubuntu-plus`, `10.0.0-M3-jre17-Semeru-plus`, `10.0.0-M3-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10.0-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `10-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) - -- [`10.0.0-M3-jre17-Semeru-ubuntu-webprofile`, `10.0.0-M3-Semeru-ubuntu-webprofile`, `10.0.0-M3-jre17-Semeru-webprofile`, `10.0.0-M3-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `10-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/95f3ea3332debf77ad430396edd805e1d4080598/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.0-jre17-Semeru-ubuntu-webprofile`, `10.0.0-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 0f7ec567e884ca2933dcbac0fff10c945749b498 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Jan 2025 18:09:27 -0800 Subject: [PATCH 1786/2686] Run update.sh --- alpine/README.md | 8 +-- clojure/README.md | 138 +++++++++++++++++++++--------------------- eggdrop/README.md | 6 +- odoo/README.md | 6 +- rocket.chat/README.md | 4 +- 5 files changed, 80 insertions(+), 82 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 881539019083..080740a34bc2 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20240923`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/446ba06f99cf635657b51b1a5a0e81a9b8073929/x86_64/Dockerfile) -- [`3.21.0`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/0f0aa5a1aae7fbaea0ac3b231dc2f99d40466420/x86_64/Dockerfile) +- [`3.21.1`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/f44f38b28c582b725bb99ade263130e058be2f6c/x86_64/Dockerfile) -- [`3.20.3`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/7d63673353bd39d92ba42f6effcc199aeebd45ee/x86_64/Dockerfile) +- [`3.20.4`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/570fbc0dbd327c078102c96f6556fa49ed496e98/x86_64/Dockerfile) -- [`3.19.4`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/0822e580809e816cdd92fdfc2677e71d01cba38c/x86_64/Dockerfile) +- [`3.19.5`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/c7e11c73613b8d15300e65f36deaedb5add5bdca/x86_64/Dockerfile) -- [`3.18.9`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a8be5a35dd72f90cb18dc7d450dca5212f6ad70f/x86_64/Dockerfile) +- [`3.18.10`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a92c90ad5a7bb2d180ff4e5603b5d8932665a949/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 4478f79e63d6..bea657b9f4c1 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1479-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1495-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1479-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1495-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1479-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1495-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1479`, `temurin-8-tools-deps-1.12.0.1479-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1495`, `temurin-8-tools-deps-1.12.0.1495-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1479-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1495-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1479-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1495-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1479-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1495-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1479-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1495-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1479`, `temurin-11-tools-deps-1.12.0.1479-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1495`, `temurin-11-tools-deps-1.12.0.1495-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1479-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1495-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1479-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1495-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1479-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1495-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1479-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1495-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1479`, `temurin-17-tools-deps-1.12.0.1479-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1495`, `temurin-17-tools-deps-1.12.0.1495-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1479-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1495-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1479-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1495-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1479`, `temurin-21-tools-deps-1.12.0.1479-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1479`, `tools-deps-1.12.0.1479-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1495`, `temurin-21-tools-deps-1.12.0.1495-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1495`, `tools-deps-1.12.0.1495-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1479-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1495-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1479-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1479-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1495-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1495-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1479-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1495-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1479-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1495-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1479-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1495-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) -- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-23/lein/Dockerfile) +- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) -- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1479-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1495-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1479`, `temurin-23-tools-deps-1.12.0.1479-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1495`, `temurin-23-tools-deps-1.12.0.1495-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-23/tools-deps/Dockerfile) -- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1479-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bookworm-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1479-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1495-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1479-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/debian-bullseye-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-23/tools-deps/Dockerfile) -- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1479-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/550abe228263d1900636f8c050af097f8f886605/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) +- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1495-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/eggdrop/README.md b/eggdrop/README.md index 1ccb4eab6d87..a884865f4114 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/e685e40a5bb54f0f6fd78193cef31429faa29a61/develop/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/2861815d67478e41667b8ed2cf9d3f13a5e755c1/develop/Dockerfile) -- [`1.9`, `1.9.5`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/57fb1652a1880665b12e9f51775f173ecde24285/1.9/Dockerfile) +- [`1.9`, `1.9.5`](https://github.com/eggheads/eggdrop-docker/blob/57fb1652a1880665b12e9f51775f173ecde24285/1.9/Dockerfile) -- [`1.10.0rc1`](https://github.com/eggheads/eggdrop-docker/blob/e685e40a5bb54f0f6fd78193cef31429faa29a61/1.10/Dockerfile) +- [`1.10`, `1.10.0`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/2861815d67478e41667b8ed2cf9d3f13a5e755c1/1.10/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 42924be4fd84..779a3dbdfc07 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20241220`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/18.0/Dockerfile) +- [`18.0-20250106`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/18.0/Dockerfile) -- [`17.0-20241220`, `17.0`, `17`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/17.0/Dockerfile) +- [`17.0-20250106`, `17.0`, `17`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/17.0/Dockerfile) -- [`16.0-20241220`, `16.0`, `16`](https://github.com/odoo/docker/blob/6b739618081fc0ff46032b38f5c126bafcdfe3a4/16.0/Dockerfile) +- [`16.0-20250106`, `16.0`, `16`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/16.0/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 41927f3d1af4..ae4ad9fcf28b 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -26,7 +26,7 @@ WARNING: - [`7.1.0`, `7.1`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/7.1/Dockerfile) -- [`7.0.3`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/356c786113ce8c1f6b2cba6089737a4dc3eed78f/7.0/Dockerfile) +- [`7.0.4`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/d787d62046698f16412c3debcb1cc257f301e47e/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) @@ -36,8 +36,6 @@ WARNING: - [`6.10.9`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.10/Dockerfile) -- [`6.9.7`, `6.9`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.9/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 46fd273f59332b24f625f7432278f80d0272b67e Mon Sep 17 00:00:00 2001 From: Davi Koscianski Vidal Date: Tue, 7 Jan 2025 16:20:43 +0100 Subject: [PATCH 1787/2686] Update SonarQube Community Build description --- sonarqube/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index 925dc3ef7ba3..3fb402bca65b 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -2,9 +2,9 @@ `sonarqube` Docker repository stores the official Sonar images for SonarQube Server and SonarQube Community Build. -[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. +[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar's AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is the free and open-source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is Sonar's self-managed free offering, released on a monthly schedule. It includes the latest core capabilities available in open source, providing essential features such as bug detection, identification of code smells, and basic security issue analysis across 21 programming languages and frameworks. For advanced security analysis, enterprise-grade integrations, and scalability features, the commercial version, SonarQube Server, is available. ## How to use this image From 8e3044cfbf2f4a2cdee7f25b622e0dc86968c4f3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 10:09:33 -0800 Subject: [PATCH 1788/2686] Run update.sh --- emqx/README.md | 2 +- erlang/README.md | 20 ++++++++++---------- swipl/README.md | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index f63247a39217..4b699b0c9f2e 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.3`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5ac2e927cf2111d81f32e027a09b554719b9558d/5.8/Dockerfile) +- [`5.8.4`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/2f016465686acf8d3d8ac5d9470839e213a195b8/5.8/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 5c9d271f88e9..087da8059267 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.1.2.0`, `27.1.2`, `27.1`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/Dockerfile) +- [`27.2.0.0`, `27.2.0`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/27/Dockerfile) -- [`27.1.2.0-slim`, `27.1.2-slim`, `27.1-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/27/slim/Dockerfile) +- [`27.2.0.0-slim`, `27.2.0-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/27/slim/Dockerfile) -- [`27.1.2.0-alpine`, `27.1.2-alpine`, `27.1-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/27/alpine/Dockerfile) +- [`27.2.0.0-alpine`, `27.2.0-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/27/alpine/Dockerfile) -- [`26.2.5.2`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/Dockerfile) +- [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) -- [`26.2.5.2-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/26/slim/Dockerfile) +- [`26.2.5.6-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/slim/Dockerfile) -- [`26.2.5.2-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/26/alpine/Dockerfile) +- [`26.2.5.6-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/26/alpine/Dockerfile) -- [`25.3.2.13`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/Dockerfile) +- [`25.3.2.16`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/25/Dockerfile) -- [`25.3.2.13-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/42839b88d99b77249ae634452f6dc972594805bc/25/slim/Dockerfile) +- [`25.3.2.16-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/25/slim/Dockerfile) -- [`25.3.2.13-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/bf1c3767cb5bd6fec1c6edc75a9fecdcddb42822/25/alpine/Dockerfile) +- [`25.3.2.16-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) - [`24.3.4.17-slim`, `24.3.4-slim`, `24.3-slim`, `24-slim`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/slim/Dockerfile) -- [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/alpine/Dockerfile) +- [`24.3.4.17-alpine`, `24.3.4-alpine`, `24.3-alpine`, `24-alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/24/alpine/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 1f2da97802b2..2865e59f2412 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.17`](https://github.com/SWI-Prolog/docker-swipl/blob/ff6d36b1783bacaedc5d131cdfe38524aa246348/9.3.17/bookworm/Dockerfile) +- [`latest`, `9.3.18`](https://github.com/SWI-Prolog/docker-swipl/blob/8c4558983698e6d6b22f936376e645d20d8eea37/9.3.18/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/ff6d36b1783bacaedc5d131cdfe38524aa246348/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/8c4558983698e6d6b22f936376e645d20d8eea37/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 241d35a1ebb55fb3d962fa8813a9aaf9db9b2cec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 12:09:21 -0800 Subject: [PATCH 1789/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index cc0f93d243f0..a1d3eb7f7df6 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/developer/Dockerfile) -- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/enterprise/Dockerfile) +- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/enterprise/Dockerfile) -- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/datacenter/app/Dockerfile) +- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/datacenter/app/Dockerfile) -- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/9/datacenter/search/Dockerfile) +- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/datacenter/search/Dockerfile) -- [`10.8.1-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/developer/Dockerfile) +- [`10.8.1-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/developer/Dockerfile) -- [`10.8.1-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/enterprise/Dockerfile) +- [`10.8.1-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/enterprise/Dockerfile) -- [`10.8.1-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/datacenter/app/Dockerfile) +- [`10.8.1-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/datacenter/app/Dockerfile) -- [`10.8.1-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/10/datacenter/search/Dockerfile) +- [`10.8.1-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/datacenter/search/Dockerfile) -- [`24.12.0.100206-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/20d2e6e1c839409b08e699a417d9d941803e00c9/community-build/Dockerfile) +- [`25.1.0.102122-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/community-build/Dockerfile) # Quick reference (cont.) From dea71237eb30625e185a617f79678ff2d6c91b80 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 14:09:23 -0800 Subject: [PATCH 1790/2686] Run update.sh --- traefik/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 68b7ae742e1d..4218c865a7c5 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.0-windowsservercore-ltsc2022`, `3.3.0-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.1-windowsservercore-ltsc2022`, `3.3.1-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.0-windowsservercore-1809`, `3.3.0-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/1809/Dockerfile) +- [`v3.3.1-windowsservercore-1809`, `3.3.1-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/1809/Dockerfile) -- [`v3.3.0-nanoserver-ltsc2022`, `3.3.0-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.1-nanoserver-ltsc2022`, `3.3.1-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.0`, `3.3.0`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/532ad41296fde905ee5134c0bbb2cf3e51ab3f75/v3.3/alpine/Dockerfile) +- [`v3.3.1`, `3.3.1`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/alpine/Dockerfile) -- [`v3.2.4-windowsservercore-ltsc2022`, `3.2.4-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/servercore-ltsc2022/Dockerfile) +- [`v3.2.5-windowsservercore-ltsc2022`, `3.2.5-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/servercore-ltsc2022/Dockerfile) -- [`v3.2.4-windowsservercore-1809`, `3.2.4-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/1809/Dockerfile) +- [`v3.2.5-windowsservercore-1809`, `3.2.5-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/1809/Dockerfile) -- [`v3.2.4-nanoserver-ltsc2022`, `3.2.4-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.2.5-nanoserver-ltsc2022`, `3.2.5-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.2.4`, `3.2.4`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/eb79a65ee103a730a0e76b6a1704d9b06b125dc5/v3.2/alpine/Dockerfile) +- [`v3.2.5`, `3.2.5`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/alpine/Dockerfile) -- [`v2.11.17-windowsservercore-ltsc2022`, `2.11.17-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.18-windowsservercore-ltsc2022`, `2.11.18-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.17-windowsservercore-1809`, `2.11.17-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/1809/Dockerfile) +- [`v2.11.18-windowsservercore-1809`, `2.11.18-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/1809/Dockerfile) -- [`v2.11.17-nanoserver-ltsc2022`, `2.11.17-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.18-nanoserver-ltsc2022`, `2.11.18-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.17`, `2.11.17`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/66fb8fd3cbb1df7e9de8183a0fa32b5740508a0e/v2.11/alpine/Dockerfile) +- [`v2.11.18`, `2.11.18`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/alpine/Dockerfile) # Quick reference (cont.) From d9c0e1302b898c865bc7a31b06d89a2bdd0c6df7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 15:09:25 -0800 Subject: [PATCH 1791/2686] Run update.sh --- photon/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photon/README.md b/photon/README.md index 7903fbb3f4e6..7fc50ea8c561 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20241222`, `latest`](https://github.com/vmware/photon-docker-image/blob/cb090fc938f5eacf965b7fb3ad81ebcc958c5bc3/docker/Dockerfile) +- [`5.0`, `5.0-20250105`, `latest`](https://github.com/vmware/photon-docker-image/blob/8cf662232434dbda4abc7a715f6049cb64c0d645/docker/Dockerfile) -- [`4.0`, `4.0-20241201`](https://github.com/vmware/photon-docker-image/blob/ba586ebf86a3f7acbe388d6c5bc2a5b9f972cbb8/docker/Dockerfile) +- [`4.0`, `4.0-20250105`](https://github.com/vmware/photon-docker-image/blob/3a3c4bb23d219cd7048c99870b7d372931c7c784/docker/Dockerfile) - [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) From 77e6bf8c31b69e642f6254b7fd691d5f4a24a928 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 16:09:30 -0800 Subject: [PATCH 1792/2686] Run update.sh --- drupal/README.md | 60 +++++++++++++++++++++++----------------------- nats/README.md | 9 +++++++ rabbitmq/README.md | 6 ++--- 3 files changed, 42 insertions(+), 33 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index fbaadd06a9c9..a68752e0c543 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.0-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.0-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.0-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.0-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.0-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.0`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.1-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.1-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.1-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.1-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.1-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.1`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.0-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.0-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.0-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.0-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.1-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.1-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.1-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.1-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.0-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.0-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.1-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.1-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.0-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.0-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.1-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.1-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.0-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.0-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.0-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.0-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.1-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.1-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.1-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.1-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.0-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.0-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/dfb409af0becc76411b367ff2107209d7a1f3611/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.1-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.1-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.9-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.9-php8.3-apache`, `11.0-php8.3-apache`, `11.0.9-php8.3`, `11.0-php8.3`, `11.0.9-apache-bookworm`, `11.0-apache-bookworm`, `11.0.9-apache`, `11.0-apache`, `11.0.9`, `11.0`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.10-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.10-php8.3-apache`, `11.0-php8.3-apache`, `11.0.10-php8.3`, `11.0-php8.3`, `11.0.10-apache-bookworm`, `11.0-apache-bookworm`, `11.0.10-apache`, `11.0-apache`, `11.0.10`, `11.0`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.9-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.9-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.9-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.9-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.10-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.10-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.10-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.10-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.9-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.9-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.10-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.10-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.9-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.9-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.10-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.10-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.9-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.9-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.9-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.0.10-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.10-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.10-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.10-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.9-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.9-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/03cc0efe94152e5d07f00a1c77d83f2c99ce2dac/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.10-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.10-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.0-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.0-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.0-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.0-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.0-apache`, `10.4-apache`, `10-apache`, `10.4.0`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.1-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.1-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.1-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.1-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.1-apache`, `10.4-apache`, `10-apache`, `10.4.1`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.0-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.0-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.0-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.0-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.1-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.1-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.1-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.1-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.0-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.0-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.1-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.1-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.0-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.0-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.1-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.1-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.0-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.0-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.0-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.0-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.1-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.1-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.1-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.1-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.0-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.0-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/838c143cc9489388388709cade992d935b20e2bf/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.1-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.1-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.10-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.10-php8.3-apache`, `10.3-php8.3-apache`, `10.3.10-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.11-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.11-php8.3-apache`, `10.3-php8.3-apache`, `10.3.11-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.10-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.10-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.11-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.11-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.10-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.11-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.10-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.11-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.10-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.3.11-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.11-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.11-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.10-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.10-php8.2-apache`, `10.3-php8.2-apache`, `10.3.10-php8.2`, `10.3-php8.2`, `10.3.10-apache-bookworm`, `10.3-apache-bookworm`, `10.3.10-apache`, `10.3-apache`, `10.3.10`, `10.3`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.11-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.11-php8.2-apache`, `10.3-php8.2-apache`, `10.3.11-php8.2`, `10.3-php8.2`, `10.3.11-apache-bookworm`, `10.3-apache-bookworm`, `10.3.11-apache`, `10.3-apache`, `10.3.11`, `10.3`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.10-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.10-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.10-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.10-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.11-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.11-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.11-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.11-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.10-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.10-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.11-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.11-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.10-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.10-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.11-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.11-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.10-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.10-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.10-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/10.3/php8.2/fpm-alpine3.21/Dockerfile) +- [`10.3.11-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.11-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.11-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.11-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.10-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.10-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/535f3b38ad110a03bc484475e19c692789d55ef8/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.11-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.11-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-alpine3.20/Dockerfile) - [`7.103-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.103-php8.2-apache`, `7-php8.2-apache`, `7.103-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bookworm/Dockerfile) diff --git a/nats/README.md b/nats/README.md index 80d10eddd9af..f04ea7d153f9 100644 --- a/nats/README.md +++ b/nats/README.md @@ -99,6 +99,15 @@ WARNING: # # docker run -p 5555:4444 nats -p 4444 # +# To enable NATS JetStream, use the -js flag: +# +# docker run -p 4222:4222 nats -js +# +# And, to persist JetStream data to a volume you can use the -v and -sd flags. +# Keep in mind that -v is a Docker flag, while -js and -sd are NATS Server flags: +# +# docker run -p 4222:4222 -v nats:/data nats -js -sd /data +# # Check "docker run" for more information. $ docker run -d --name nats-main -p 4222:4222 -p 6222:6222 -p 8222:8222 nats diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 80b412778035..0a828d0c5d91 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) @@ -36,7 +36,7 @@ WARNING: - [`4.0.5-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/16db9e144e0c83d82e82533870054e609dbc8ca4/4.0/alpine/Dockerfile) +- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/4.0/alpine/Dockerfile) - [`4.0.5-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/0584c9d30e14c060a7fb677c5134f03da0d6a68d/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From c9fcff8fc3f04fbabc236d67e9f7b6a7270f7a31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Jan 2025 17:09:44 -0800 Subject: [PATCH 1793/2686] Run update.sh --- node/README.md | 24 ++++++++++++------------ sonarqube/README.md | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/node/README.md b/node/README.md index f0a756f2b192..0eeaa3803de7 100644 --- a/node/README.md +++ b/node/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.5-alpine3.20`, `23.5.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.6-alpine3.20`, `23.6.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.5-alpine`, `23.5-alpine3.21`, `23.5.0-alpine`, `23.5.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.6-alpine`, `23.6-alpine3.21`, `23.6.0-alpine`, `23.6.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.5`, `23.5-bookworm`, `23.5.0`, `23.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.6`, `23.6-bookworm`, `23.6.0`, `23.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.5-bookworm-slim`, `23.5-slim`, `23.5.0-bookworm-slim`, `23.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.6-bookworm-slim`, `23.6-slim`, `23.6.0-bookworm-slim`, `23.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.5-bullseye`, `23.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.6-bullseye`, `23.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.5-bullseye-slim`, `23.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/74a1f79f7ad352d42d76e4bca800c900bf96a434/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.6-bullseye-slim`, `23.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.12-alpine3.20`, `22.12.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.13-alpine3.20`, `22.13.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.12-alpine`, `22.12-alpine3.21`, `22.12.0-alpine`, `22.12.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.13-alpine`, `22.13-alpine3.21`, `22.13.0-alpine`, `22.13.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.12`, `22.12-bookworm`, `22.12.0`, `22.12.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.13`, `22.13-bookworm`, `22.13.0`, `22.13.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.12-bookworm-slim`, `22.12-slim`, `22.12.0-bookworm-slim`, `22.12.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.13-bookworm-slim`, `22.13-slim`, `22.13.0-bookworm-slim`, `22.13.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.12-bullseye`, `22.12.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.13-bullseye`, `22.13.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.12-bullseye-slim`, `22.12.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/65db94be7f70f68f510a9e065c256b954d8f271c/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.13-bullseye-slim`, `22.13.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bullseye-slim/Dockerfile) - [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.20/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index a1d3eb7f7df6..98e36f83570d 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -67,9 +67,9 @@ WARNING: `sonarqube` Docker repository stores the official Sonar images for SonarQube Server and SonarQube Community Build. -[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar’s AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. +[SonarQube Server](https://www.sonarsource.com/products/sonarqube/) (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar's AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request. -[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is the free and open-source SonarQube offering. It provides core features such as bug detection, code smells, and basic security issue identification across 30+ programming languages and frameworks. However, advanced security analysis, enterprise-level integrations, and scalability options are reserved for SonarQube Server. +[SonarQube Community Build](https://www.sonarsource.com/open-source-editions/sonarqube-community-edition/) (formerly SonarQube Community) is Sonar's self-managed free offering, released on a monthly schedule. It includes the latest core capabilities available in open source, providing essential features such as bug detection, identification of code smells, and basic security issue analysis across 21 programming languages and frameworks. For advanced security analysis, enterprise-grade integrations, and scalability features, the commercial version, SonarQube Server, is available. ## How to use this image From 1e7996b704bd07ad6d86b665d2e60d607ee69c46 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Jan 2025 09:09:31 -0800 Subject: [PATCH 1794/2686] Run update.sh --- alpine/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 080740a34bc2..d58b17f1ba8c 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20240923`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/446ba06f99cf635657b51b1a5a0e81a9b8073929/x86_64/Dockerfile) +- [`20250108`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c1f1de232c970df2285c03050ab3747b8563164f/x86_64/Dockerfile) -- [`3.21.1`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/f44f38b28c582b725bb99ade263130e058be2f6c/x86_64/Dockerfile) +- [`3.21.2`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/28413e472a7192492de374a257c33d2802ba163d/x86_64/Dockerfile) -- [`3.20.4`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/570fbc0dbd327c078102c96f6556fa49ed496e98/x86_64/Dockerfile) +- [`3.20.5`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/e5b6428f2a04eaf7f6f6c51232c0bfb6062c9bfe/x86_64/Dockerfile) -- [`3.19.5`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/c7e11c73613b8d15300e65f36deaedb5add5bdca/x86_64/Dockerfile) +- [`3.19.6`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/da0e46144e764925f67d80a2315c17208236a2ae/x86_64/Dockerfile) -- [`3.18.10`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/a92c90ad5a7bb2d180ff4e5603b5d8932665a949/x86_64/Dockerfile) +- [`3.18.11`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/4283069ff594a823a2923e4d1aa3980d829f0891/x86_64/Dockerfile) # Quick reference (cont.) From 010274344f9079d79a3477b25f37528b9409379d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Jan 2025 15:09:36 -0800 Subject: [PATCH 1795/2686] Run update.sh --- backdrop/README.md | 4 +-- caddy/README.md | 63 ++++++++++++------------------------------- dart/README.md | 4 +-- ghost/README.md | 2 +- joomla/README.md | 30 ++++++++++----------- percona/README.md | 2 +- rocket.chat/README.md | 4 ++- 7 files changed, 41 insertions(+), 68 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index 8c598ac48a0b..c91af6e80052 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.26.1`, `1.26`, `1`, `1.26.1-apache`, `1.26-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/apache/Dockerfile) +- [`1.29.1`, `1.29`, `1`, `1.29.1-apache`, `1.29-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/4f986f41b86617411c52eefc86b59380312f1751/1/apache/Dockerfile) -- [`1.26.1-fpm`, `1.26-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/95902d6610b2474ca88ff8faae40ed30e7d3318a/1/fpm/Dockerfile) +- [`1.29.1-fpm`, `1.29-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/4f986f41b86617411c52eefc86b59380312f1751/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index b6653737adc3..4b06ecd06e36 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,65 +28,36 @@ WARNING: ## Simple Tags -- [`2.9.0-beta.3-alpine`, `2.9-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/alpine/Dockerfile) +- [`2.9.1-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/alpine/Dockerfile) -- [`2.9.0-beta.3-builder-alpine`, `2.9-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/builder/Dockerfile) +- [`2.9.1-builder-alpine`, `2.9-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/builder/Dockerfile) -- [`2.9.0-beta.3-windowsservercore-1809`, `2.9-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) +- [`2.9.1-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) -- [`2.9.0-beta.3-windowsservercore-ltsc2022`, `2.9-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) +- [`2.9.1-windowsservercore-ltsc2022`, `2.9-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) -- [`2.9.0-beta.3-builder-windowsservercore-1809`, `2.9-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/1809/Dockerfile) +- [`2.9.1-builder-windowsservercore-1809`, `2.9-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/1809/Dockerfile) -- [`2.9.0-beta.3-builder-windowsservercore-ltsc2022`, `2.9-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/ltsc2022/Dockerfile) - -- [`2.8.4-alpine`, `2.8-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) - -- [`2.8.4-builder-alpine`, `2.8-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/builder/Dockerfile) - -- [`2.8.4-windowsservercore-1809`, `2.8-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - -- [`2.8.4-windowsservercore-ltsc2022`, `2.8-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) - -- [`2.8.4-builder-windowsservercore-1809`, `2.8-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/1809/Dockerfile) - -- [`2.8.4-builder-windowsservercore-ltsc2022`, `2.8-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/ltsc2022/Dockerfile) +- [`2.9.1-builder-windowsservercore-ltsc2022`, `2.9-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.9.0-beta.3`, `2.9`: - - - [`2.9.0-beta.3-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/alpine/Dockerfile) - - [`2.9.0-beta.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) - - [`2.9.0-beta.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) - -- `2.9.0-beta.3-builder`, `2.9-builder`: - - - [`2.9.0-beta.3-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/builder/Dockerfile) - - [`2.9.0-beta.3-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/1809/Dockerfile) - - [`2.9.0-beta.3-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows-builder/ltsc2022/Dockerfile) - -- `2.9.0-beta.3-windowsservercore`, `2.9-windowsservercore`: - - - [`2.9.0-beta.3-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/1809/Dockerfile) - - [`2.9.0-beta.3-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.9/windows/ltsc2022/Dockerfile) - -- `2.8.4`, `2.8`, `2`, `latest`: +- `2.9.1`, `2.9`, `2`, `latest`: - - [`2.8.4-alpine`](https://github.com/caddyserver/caddy-docker/blob/645721b4b87b6c3a692641213853ce064eb82fe2/2.8/alpine/Dockerfile) - - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) + - [`2.9.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/alpine/Dockerfile) + - [`2.9.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) + - [`2.9.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) -- `2.8.4-builder`, `2.8-builder`, `2-builder`, `builder`: +- `2.9.1-builder`, `2.9-builder`, `2-builder`, `builder`: - - [`2.8.4-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/builder/Dockerfile) - - [`2.8.4-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/1809/Dockerfile) - - [`2.8.4-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/507b6b921c822ccc33e56e40a12d0fcb5be0f61c/2.8/windows-builder/ltsc2022/Dockerfile) + - [`2.9.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/builder/Dockerfile) + - [`2.9.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/1809/Dockerfile) + - [`2.9.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/ltsc2022/Dockerfile) -- `2.8.4-windowsservercore`, `2.8-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.9.1-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.8.4-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/1809/Dockerfile) - - [`2.8.4-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/fb6e8723745c60fe413a311b484704e8ce3fcfd3/2.8/windows/ltsc2022/Dockerfile) + - [`2.9.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) + - [`2.9.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index b941f1ac2476..703e5d348963 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.0-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.0`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d70227938d74fe135561dab1c64442b0ac8a8315/stable/bookworm/Dockerfile) +- [`3.6.1-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.1`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/92d06fb0bb15575381a41298a3b7c0b18d3296aa/stable/bookworm/Dockerfile) -- [`3.7.0-209.1.beta-sdk`, `beta-sdk`, `3.7.0-209.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d70227938d74fe135561dab1c64442b0ac8a8315/beta/bookworm/Dockerfile) +- [`3.7.0-209.1.beta-sdk`, `beta-sdk`, `3.7.0-209.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/92d06fb0bb15575381a41298a3b7c0b18d3296aa/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 5cf659feaee4..681f1b647f94 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.105.0`, `5.105`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fab52d5c943038af09062b995d8a9822483e933e/5/debian/Dockerfile) -- [`5.105.0-alpine`, `5.105-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fab52d5c943038af09062b995d8a9822483e933e/5/alpine/Dockerfile) +- [`5.105.0-alpine`, `5.105-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/53b2329d1c3da840e9f8f8ce08c60c6f586ec8d3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index f279ab30e14f..2f53425e860e 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/apache/Dockerfile) +- [`5.2.3-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/apache/Dockerfile) -- [`5.2.1-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.2.3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.1-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.1/fpm/Dockerfile) +- [`5.2.3-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/fpm/Dockerfile) -- [`5.2.1`, `5.2`, `5`, `latest`, `5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.1-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/apache/Dockerfile) +- [`5.2.3`, `5.2`, `5`, `latest`, `5.2.3-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.3-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.3-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/apache/Dockerfile) -- [`5.2.1-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.2.3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.1-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.2/fpm/Dockerfile) +- [`5.2.3-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/fpm/Dockerfile) -- [`5.2.1-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/apache/Dockerfile) +- [`5.2.3-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/apache/Dockerfile) -- [`5.2.1-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.1-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/5.2/php8.3/fpm/Dockerfile) +- [`5.2.3-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/fpm/Dockerfile) -- [`4.4.9`, `4.4`, `4`, `4.4.9-apache`, `4.4-apache`, `4-apache`, `4.4.9-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.9-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/apache/Dockerfile) +- [`4.4.10`, `4.4`, `4`, `4.4.10-apache`, `4.4-apache`, `4-apache`, `4.4.10-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.10-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/apache/Dockerfile) -- [`4.4.9-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.10-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.9-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.1/fpm/Dockerfile) +- [`4.4.10-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/fpm/Dockerfile) -- [`4.4.9-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/apache/Dockerfile) +- [`4.4.10-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/apache/Dockerfile) -- [`4.4.9-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.10-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.9-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/dff2d34723573063e1da58227fdaf08d74297b48/4.4/php8.2/fpm/Dockerfile) +- [`4.4.10-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index a13ce56d12dc..779daad17047 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.39-30-centos`, `8.0-centos`, `8-centos`, `8.0.39-30`, `8.0`, `8`, `ps-8.0.39-30`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-8.0/Dockerfile-dockerhub) +- [`8.0.40-31-centos`, `8.0-centos`, `8-centos`, `8.0.40-31`, `8.0`, `8`, `ps-8.0.40-31`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/aa29ac7b58f30ad459cbee36d5f1ad0891d5a0f4/percona-server-8.0/Dockerfile-dockerhub) - [`psmdb-7.0.15`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-7.0/Dockerfile-dockerhub) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index ae4ad9fcf28b..f39dbc18ee63 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.1.0`, `7.1`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/7.1/Dockerfile) +- [`7.2.0`, `7.2`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/99862fe664b97bd447a40d9761e43aae9101b569/7.2/Dockerfile) + +- [`7.1.0`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/7.1/Dockerfile) - [`7.0.4`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/d787d62046698f16412c3debcb1cc257f301e47e/7.0/Dockerfile) From ac14dcaecef8ba4ab3884c7185a326f9daae5c0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Jan 2025 14:09:34 -0800 Subject: [PATCH 1796/2686] Run update.sh --- docker/README.md | 26 +++++++-------- drupal/README.md | 26 +-------------- hylang/README.md | 80 ++++++++++++++++++++++----------------------- mediawiki/README.md | 18 +++++----- rust/README.md | 12 +++---- 5 files changed, 69 insertions(+), 93 deletions(-) diff --git a/docker/README.md b/docker/README.md index 3d289f81ea16..a8d5cd5e97e8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`27.5.0-rc.1-cli`, `27-rc-cli`, `rc-cli`, `27.5.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/cli/Dockerfile) +- [`27.5.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.5.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/cli/Dockerfile) -- [`27.5.0-rc.1-dind`, `27-rc-dind`, `rc-dind`, `27.5.0-rc.1-dind-alpine3.21`, `27.5.0-rc.1`, `27-rc`, `rc`, `27.5.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/dind/Dockerfile) +- [`27.5.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.5.0-rc.2-dind-alpine3.21`, `27.5.0-rc.2`, `27-rc`, `rc`, `27.5.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/dind/Dockerfile) -- [`27.5.0-rc.1-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/dind-rootless/Dockerfile) +- [`27.5.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/dind-rootless/Dockerfile) -- [`27.5.0-rc.1-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.0-rc.1-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-1809/Dockerfile) +- [`27.5.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-1809/Dockerfile) -- [`27.4.1-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/cli/Dockerfile) +- [`27.4.1-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/cli/Dockerfile) - [`27.4.1-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.1-dind-alpine3.21`, `27.4.1`, `27.4`, `27`, `latest`, `27.4.1-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind/Dockerfile) - [`27.4.1-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind-rootless/Dockerfile) -- [`27.4.1-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.4.1-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.4.1-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-1809/Dockerfile) +- [`27.4.1-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.5.0-rc.1-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: +- `27.5.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - [`27.5.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/982bc8b4002d8c38372ef646d034ce7ca592f82a/27-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.5.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-1809/Dockerfile) - `27.4.1-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.4.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/windows/windowsservercore-1809/Dockerfile) + - [`27.4.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.4.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index a68752e0c543..2e38a410fef5 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -84,37 +84,13 @@ WARNING: - [`10.3.11-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.11-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-alpine3.20/Dockerfile) -- [`7.103-php8.2-apache-bookworm`, `7-php8.2-apache-bookworm`, `7.103-php8.2-apache`, `7-php8.2-apache`, `7.103-php8.2`, `7-php8.2`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bookworm/Dockerfile) - -- [`7.103-php8.2-fpm-bookworm`, `7-php8.2-fpm-bookworm`, `7.103-php8.2-fpm`, `7-php8.2-fpm`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-bookworm/Dockerfile) - -- [`7.103-php8.2-apache-bullseye`, `7-php8.2-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/apache-bullseye/Dockerfile) - -- [`7.103-php8.2-fpm-bullseye`, `7-php8.2-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-bullseye/Dockerfile) - -- [`7.103-php8.2-fpm-alpine3.21`, `7-php8.2-fpm-alpine3.21`, `7.103-php8.2-fpm-alpine`, `7-php8.2-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/7/php8.2/fpm-alpine3.21/Dockerfile) - -- [`7.103-php8.2-fpm-alpine3.20`, `7-php8.2-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.2/fpm-alpine3.20/Dockerfile) - -- [`7.103-php8.1-apache-bookworm`, `7-php8.1-apache-bookworm`, `7.103-php8.1-apache`, `7-php8.1-apache`, `7.103-php8.1`, `7-php8.1`, `7.103-apache-bookworm`, `7-apache-bookworm`, `7.103-apache`, `7-apache`, `7.103`, `7`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/apache-bookworm/Dockerfile) - -- [`7.103-php8.1-fpm-bookworm`, `7-php8.1-fpm-bookworm`, `7.103-php8.1-fpm`, `7-php8.1-fpm`, `7.103-fpm-bookworm`, `7-fpm-bookworm`, `7.103-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-bookworm/Dockerfile) - -- [`7.103-php8.1-apache-bullseye`, `7-php8.1-apache-bullseye`, `7.103-apache-bullseye`, `7-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/apache-bullseye/Dockerfile) - -- [`7.103-php8.1-fpm-bullseye`, `7-php8.1-fpm-bullseye`, `7.103-fpm-bullseye`, `7-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-bullseye/Dockerfile) - -- [`7.103-php8.1-fpm-alpine3.21`, `7-php8.1-fpm-alpine3.21`, `7.103-php8.1-fpm-alpine`, `7-php8.1-fpm-alpine`, `7.103-fpm-alpine3.21`, `7-fpm-alpine3.21`, `7.103-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/a90d8ccae757671775d2bfdf3668a2c97318ba4c/7/php8.1/fpm-alpine3.21/Dockerfile) - -- [`7.103-php8.1-fpm-alpine3.20`, `7-php8.1-fpm-alpine3.20`, `7.103-fpm-alpine3.20`, `7-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8246b1c6e241574c166301044fdec9a6e24356/7/php8.1/fpm-alpine3.20/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: [https://github.com/docker-library/drupal/issues](https://github.com/docker-library/drupal/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/drupal/), [`arm32v5`](https://hub.docker.com/r/arm32v5/drupal/), [`arm32v6`](https://hub.docker.com/r/arm32v6/drupal/), [`arm32v7`](https://hub.docker.com/r/arm32v7/drupal/), [`arm64v8`](https://hub.docker.com/r/arm64v8/drupal/), [`i386`](https://hub.docker.com/r/i386/drupal/), [`mips64le`](https://hub.docker.com/r/mips64le/drupal/), [`ppc64le`](https://hub.docker.com/r/ppc64le/drupal/), [`riscv64`](https://hub.docker.com/r/riscv64/drupal/), [`s390x`](https://hub.docker.com/r/s390x/drupal/) + [`amd64`](https://hub.docker.com/r/amd64/drupal/), [`arm32v6`](https://hub.docker.com/r/arm32v6/drupal/), [`arm32v7`](https://hub.docker.com/r/arm32v7/drupal/), [`arm64v8`](https://hub.docker.com/r/arm64v8/drupal/), [`i386`](https://hub.docker.com/r/i386/drupal/), [`ppc64le`](https://hub.docker.com/r/ppc64le/drupal/), [`riscv64`](https://hub.docker.com/r/riscv64/drupal/), [`s390x`](https://hub.docker.com/r/s390x/drupal/) - **Published image artifact details**: [repo-info repo's `repos/drupal/` directory](https://github.com/docker-library/repo-info/blob/master/repos/drupal) ([history](https://github.com/docker-library/repo-info/commits/master/repos/drupal)) diff --git a/hylang/README.md b/hylang/README.md index fd66a1b23f3b..f58814b556e7 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,93 +28,93 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8b2310e66ab1c3dacf6c5d6115598e64bcec934a/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 0f34051b4744..f944f917eda6 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.42.4`, `1.42`, `stable`, `latest`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/apache/Dockerfile) +- [`1.43.0`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/apache/Dockerfile) -- [`1.42.4-fpm`, `1.42-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/fpm/Dockerfile) +- [`1.43.0-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/fpm/Dockerfile) -- [`1.42.4-fpm-alpine`, `1.42-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.42/fpm-alpine/Dockerfile) +- [`1.43.0-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/fpm-alpine/Dockerfile) -- [`1.41.5`, `1.41`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/apache/Dockerfile) +- [`1.42.4`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/apache/Dockerfile) -- [`1.41.5-fpm`, `1.41-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/fpm/Dockerfile) +- [`1.42.4-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/fpm/Dockerfile) -- [`1.41.5-fpm-alpine`, `1.41-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.41/fpm-alpine/Dockerfile) +- [`1.42.4-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/fpm-alpine/Dockerfile) -- [`1.39.11`, `1.39`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/apache/Dockerfile) +- [`1.39.11`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/apache/Dockerfile) -- [`1.39.11-fpm`, `1.39-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/fpm/Dockerfile) +- [`1.39.11-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/fpm/Dockerfile) -- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/597ec9bc8565eefd398bc6831130fff2443b6c8a/1.39/fpm-alpine/Dockerfile) +- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index e8a7dc7af862..ce860d715fb6 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.83-bullseye`, `1.83.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.84-bullseye`, `1.84.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.83-slim-bullseye`, `1.83.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.84-slim-bullseye`, `1.84.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.83-bookworm`, `1.83.0-bookworm`, `bookworm`, `1`, `1.83`, `1.83.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.84-bookworm`, `1.84.0-bookworm`, `bookworm`, `1`, `1.84`, `1.84.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.83-slim-bookworm`, `1.83.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.83-slim`, `1.83.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.84-slim-bookworm`, `1.84.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.84-slim`, `1.84.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.83-alpine3.20`, `1.83.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/700c4f146427808cfb1e07a646e4afabbe99da4f/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.84-alpine3.20`, `1.84.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.83-alpine3.21`, `1.83.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.83-alpine`, `1.83.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/85c88f3a3e192ad11f392e829c54ded1178e8447/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.84-alpine3.21`, `1.84.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.84-alpine`, `1.84.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From 139a3ea8fababfe0583c14da6a14aab23e7c20da Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 10 Jan 2025 12:36:57 -0800 Subject: [PATCH 1797/2686] Remove more Redmine passenger variant leftovers --- redmine/content.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/redmine/content.md b/redmine/content.md index 14d79fe89b25..e8fd7b623b72 100644 --- a/redmine/content.md +++ b/redmine/content.md @@ -46,10 +46,6 @@ Running Redmine with a database server is the recommended way. Run `docker stack deploy -c stack.yml %%REPO%%` (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). -## Alternative Web Server - -The other tags in this repository, like those with `passenger`, use the same environment and `--links` as the default tags that use Puma (`rails server`) but instead give you the option of a different web and application server. `passenger` uses [Phusion Passenger](https://www.phusionpassenger.com/). [`tini`](https://github.com/krallin/tini) is used for reaping [zombies](https://en.wikipedia.org/wiki/Zombie_process). - ## Accessing the Application Currently, the default user and password from upstream is admin/admin ([logging into the application](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-10-Logging-into-the-application)). @@ -122,19 +118,7 @@ This variable is required when using Docker Swarm replicas to maintain session c ## Running as an arbitrary user -For running Redmine without Phusion Passenger you can simply use the [`--user`](https://docs.docker.com/engine/reference/run/#user) flag to `docker run` and give it a `username:group` or `UID:GID`, the user doesn't need to exist in the container - -For running the `redmine:passenger` variant as an arbitrary user you will however need the user to exist in `/etc/passwd`. Here are a few examples for doing that: - -1. Create the user on your host and mount `/etc/passwd:/etc/passwd:ro` - -2. Create a Dockerfile `FROM redmine:passenger` and include something like [`RUN groupadd -r group && useradd --no-log-init -r -g group user`](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user) - - ```dockerfile - FROM redmine:passenger - RUN groupadd -r group && useradd --no-log-init -r -g group user - USER user - ``` +You can use the [`--user`](https://docs.docker.com/engine/reference/run/#user) flag to `docker run` and give it a `username:group` or `UID:GID`, the user doesn't need to exist in the container. ## Docker Secrets From fed0f2e1f6fba53d56ebe2f0a3012887c34d8396 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Jan 2025 15:09:23 -0800 Subject: [PATCH 1798/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index ec9cae11d954..dd026165deec 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e4a3901d1cba3731c08139d601a8db230004558a/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.33/alpine/Dockerfile) # Quick reference (cont.) From f53ef5a3a18c68b728915cdb42b59fcb9db9606e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Jan 2025 17:09:39 -0800 Subject: [PATCH 1799/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- haproxy/README.md | 8 ++++---- unit/README.md | 34 +++++++++++++++++----------------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index c670373425e8..b5610294a013 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20241212.0`](https://github.com/amazonlinux/container-images/blob/57f3185c634b55eafe58bfdec5f5db20c6462032/Dockerfile) +- [`2023`, `latest`, `2023.6.20250107.0`](https://github.com/amazonlinux/container-images/blob/6ac65e605ca087694ceb4b735be7f6b348974948/Dockerfile) -- [`2`, `2.0.20241113.1`](https://github.com/amazonlinux/container-images/blob/6e2bb5876f14f080ad1ed81b8b5fc69775f62f36/Dockerfile) +- [`2`, `2.0.20250108.0`](https://github.com/amazonlinux/container-images/blob/24a281808a55e7605aa49718d4f4769dcce08607/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index b8bbf70e0546..8f5e06f20455 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev2`, `3.2-dev`, `3.2-dev2-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/10d18fdff5067448f4b88fbdac42594a005b60a9/3.2/Dockerfile) +- [`3.2-dev3`, `3.2-dev`, `3.2-dev3-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7a65a5613e64528b0e9e11ca090419ed61f03966/3.2/Dockerfile) -- [`3.2-dev2-alpine`, `3.2-dev-alpine`, `3.2-dev2-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/10d18fdff5067448f4b88fbdac42594a005b60a9/3.2/alpine/Dockerfile) +- [`3.2-dev3-alpine`, `3.2-dev-alpine`, `3.2-dev3-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7a65a5613e64528b0e9e11ca090419ed61f03966/3.2/alpine/Dockerfile) -- [`3.1.1`, `3.1`, `latest`, `3.1.1-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/dc5f5ce22146dc39f7597ab9f857f0408622c8d8/3.1/Dockerfile) +- [`3.1.2`, `3.1`, `latest`, `3.1.2-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/116ca50708ff505ac73b7c8dcc6d7689151946bb/3.1/Dockerfile) -- [`3.1.1-alpine`, `3.1-alpine`, `alpine`, `3.1.1-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.1/alpine/Dockerfile) +- [`3.1.2-alpine`, `3.1-alpine`, `alpine`, `3.1.2-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/116ca50708ff505ac73b7c8dcc6d7689151946bb/3.1/alpine/Dockerfile) - [`3.0.7`, `3.0`, `lts`, `3.0.7-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/Dockerfile) diff --git a/unit/README.md b/unit/README.md index 2c875c39b812..927d1e37b927 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,39 +24,39 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33.0-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.go1.23) +- [`1.34.0-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.go1.23) -- [`1.33.0-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.go1.22) +- [`1.34.0-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.go1.22) -- [`1.33.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.jsc11) +- [`1.34.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.jsc11) -- [`1.33.0-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.node22) +- [`1.34.0-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.node22) -- [`1.33.0-node20`, `node20`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.node20) +- [`1.34.0-node20`, `node20`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.node20) -- [`1.33.0-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.perl5.40) +- [`1.34.0-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.perl5.40) -- [`1.33.0-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.perl5.38) +- [`1.34.0-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.perl5.38) -- [`1.33.0-php8.3`, `php8.3`, `php8`, `php`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.php8.3) +- [`1.34.0-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.php8.4) -- [`1.33.0-php8.2`, `php8.2`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.php8.2) +- [`1.34.0-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.php8.3) -- [`1.33.0-python3.12`, `python3.12`, `python3`, `python`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.12) +- [`1.34.0-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.13) -- [`1.33.0-python3.11`, `python3.11`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.11) +- [`1.34.0-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.12) -- [`1.33.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.ruby3.3) +- [`1.34.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.ruby3.3) -- [`1.33.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.ruby3.2) +- [`1.34.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.ruby3.2) -- [`1.33.0-python3.12-slim`, `python3.12-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.12-slim) +- [`1.34.0-python3.13-slim`, `python3.13-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.13-slim) -- [`1.33.0-python3.11-slim`, `python3.11-slim`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.python3.11-slim) +- [`1.34.0-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.12-slim) -- [`1.33.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.wasm) +- [`1.34.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.wasm) -- [`1.33.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/624debcf17ea7faab01fa841bd4dcd9f308cf306/pkg/docker/Dockerfile.minimal) +- [`1.34.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From 9756760efada96f5b1de3a3d190447321cca0a14 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Jan 2025 18:09:37 -0800 Subject: [PATCH 1800/2686] Run update.sh --- openjdk/README.md | 72 +++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 7a1707d2dcc7..630fde99af32 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,73 +42,73 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-4-jdk-oraclelinux9`, `25-ea-4-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-4-jdk-oracle`, `25-ea-4-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-5-jdk-oraclelinux9`, `25-ea-5-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-5-jdk-oracle`, `25-ea-5-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-4-jdk-oraclelinux8`, `25-ea-4-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-5-jdk-oraclelinux8`, `25-ea-5-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-4-jdk-bookworm`, `25-ea-4-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/bookworm/Dockerfile) +- [`25-ea-5-jdk-bookworm`, `25-ea-5-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/bookworm/Dockerfile) -- [`25-ea-4-jdk-slim-bookworm`, `25-ea-4-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-4-jdk-slim`, `25-ea-4-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-5-jdk-slim-bookworm`, `25-ea-5-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-5-jdk-slim`, `25-ea-5-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-4-jdk-bullseye`, `25-ea-4-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/bullseye/Dockerfile) +- [`25-ea-5-jdk-bullseye`, `25-ea-5-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/bullseye/Dockerfile) -- [`25-ea-4-jdk-slim-bullseye`, `25-ea-4-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-5-jdk-slim-bullseye`, `25-ea-5-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-4-jdk-windowsservercore-ltsc2022`, `25-ea-4-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-5-jdk-windowsservercore-ltsc2022`, `25-ea-5-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-4-jdk-windowsservercore-1809`, `25-ea-4-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-5-jdk-windowsservercore-1809`, `25-ea-5-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-4-jdk-nanoserver-1809`, `25-ea-4-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-5-jdk-nanoserver-1809`, `25-ea-5-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-30-jdk-oraclelinux9`, `24-ea-30-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-30-jdk-oracle`, `24-ea-30-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-31-jdk-oraclelinux9`, `24-ea-31-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-31-jdk-oracle`, `24-ea-31-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-30-jdk-oraclelinux8`, `24-ea-30-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-31-jdk-oraclelinux8`, `24-ea-31-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-30-jdk-bookworm`, `24-ea-30-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/bookworm/Dockerfile) +- [`24-ea-31-jdk-bookworm`, `24-ea-31-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/bookworm/Dockerfile) -- [`24-ea-30-jdk-slim-bookworm`, `24-ea-30-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-30-jdk-slim`, `24-ea-30-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-31-jdk-slim-bookworm`, `24-ea-31-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-31-jdk-slim`, `24-ea-31-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-30-jdk-bullseye`, `24-ea-30-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/bullseye/Dockerfile) +- [`24-ea-31-jdk-bullseye`, `24-ea-31-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/bullseye/Dockerfile) -- [`24-ea-30-jdk-slim-bullseye`, `24-ea-30-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-31-jdk-slim-bullseye`, `24-ea-31-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-30-jdk-windowsservercore-ltsc2022`, `24-ea-30-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-31-jdk-windowsservercore-ltsc2022`, `24-ea-31-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-30-jdk-windowsservercore-1809`, `24-ea-30-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-31-jdk-windowsservercore-1809`, `24-ea-31-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-30-jdk-nanoserver-1809`, `24-ea-30-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-31-jdk-nanoserver-1809`, `24-ea-31-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-4-jdk`, `25-ea-4`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-5-jdk`, `25-ea-5`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-4-jdk-windowsservercore`, `25-ea-4-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-5-jdk-windowsservercore`, `25-ea-5-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-4-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-4-jdk-nanoserver`, `25-ea-4-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-5-jdk-nanoserver`, `25-ea-5-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-4-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/893050fa2d8d96354997b215a113eb9fec432a49/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-30-jdk`, `24-ea-30`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-31-jdk`, `24-ea-31`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-30-jdk-windowsservercore`, `24-ea-30-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-31-jdk-windowsservercore`, `24-ea-31-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-30-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-30-jdk-nanoserver`, `24-ea-30-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-31-jdk-nanoserver`, `24-ea-31-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-30-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/061d7b325f84de3223a1aa6d06f1a343e72c0c5f/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From cb8a6f0442bd6b00c34bf3b20a814a21e277e21c Mon Sep 17 00:00:00 2001 From: mmatur Date: Mon, 13 Jan 2025 09:42:51 +0100 Subject: [PATCH 1801/2686] Update traefik readme --- traefik/content.md | 106 +++++++++++++++++++++++---------------------- 1 file changed, 55 insertions(+), 51 deletions(-) diff --git a/traefik/content.md b/traefik/content.md index e51dfd914812..5e7b25dae0c6 100644 --- a/traefik/content.md +++ b/traefik/content.md @@ -1,14 +1,14 @@ %%LOGO%% -[Traefik](https://traefik.io) is a modern HTTP reverse proxy and load balancer that makes deploying microservices easy. +[Traefik](https://traefik.io) is a modern HTTP reverse proxy and ingress controller that makes deploying microservices easy. -Traefik integrates with your existing infrastructure components ([Docker](https://www.docker.com/), [Swarm mode](https://docs.docker.com/engine/swarm/), [Kubernetes](https://kubernetes.io), [Marathon](https://mesosphere.github.io/marathon/), [Consul](https://www.consul.io/), [Etcd](https://coreos.com/etcd/), [Rancher](https://rancher.com), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically. +Traefik integrates with your existing infrastructure components ([Kubernetes](https://kubernetes.io), [Docker](https://www.docker.com/), [Swarm](https://docs.docker.com/engine/swarm/), [Consul](https://www.consul.io/), [Nomad](https://www.nomadproject.io/), [etcd](https://coreos.com/etcd/), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically. Pointing Traefik at your orchestrator should be the *only* configuration step you need. -# Traefik v2 - Example usage +## Traefik v3 - Example usage -Enable `docker` provider and web UI: +Enable `docker` provider and dashboard UI: ```yml ## traefik.yml @@ -23,108 +23,112 @@ api: insecure: true ``` -Start Traefik: +Start Traefik v3: -```bash +```sh docker run -d -p 8080:8080 -p 80:80 \ --v $PWD/traefik.yml:/etc/traefik/traefik.yml \ --v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v2.5 + -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ + -v /var/run/docker.sock:/var/run/docker.sock \ + traefik:v3 ``` -Start a backend server, named `test`: +Start a backend server using the `traefik/whoami` image: -```bash +```sh docker run -d --name test traefik/whoami ``` -And finally, you can access to your `whoami` server throught Traefik, on the domain name `test.docker.localhost`: +Access the whoami service through Traefik via the defined rule `test.docker.localhost`: ```console -# $ curl --header 'Host:test.docker.localhost' 'http://localhost:80/' $ curl test.docker.localhost -Hostname: 390a880bdfab +Hostname: 0693100b16de IP: 127.0.0.1 -IP: 172.17.0.3 +IP: ::1 +IP: 192.168.215.4 +RemoteAddr: 192.168.215.3:57618 GET / HTTP/1.1 Host: test.docker.localhost -User-Agent: curl/7.65.3 +User-Agent: curl/8.7.1 Accept: */* Accept-Encoding: gzip -X-Forwarded-For: 172.17.0.1 +X-Forwarded-For: 192.168.215.1 X-Forwarded-Host: test.docker.localhost X-Forwarded-Port: 80 X-Forwarded-Proto: http -X-Forwarded-Server: 7e073cb54211 -X-Real-Ip: 172.17.0.1 +X-Forwarded-Server: 8a37fd4f35fb +X-Real-Ip: 192.168.215.1 ``` -The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the routers, services, and middlewares. +Access the Traefik Dashboard: -![Web UI](https://raw.githubusercontent.com/traefik/traefik/v2.5/docs/content/assets/img/webui-dashboard.png) +Open your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard. This will provide an overview of routers, services, and middlewares. -# Traefik v1 - Example usage +![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v3.2/docs/content/assets/img/webui-dashboard.png) -Grab a [sample configuration file](https://raw.githubusercontent.com/traefik/traefik/v1.7/traefik.sample.toml) and rename it to `traefik.toml`. Enable `docker` provider and web UI: +## Traefik v2 - Example usage -```toml -## traefik.toml +Enable `docker` provider and dashboard UI: -# API and dashboard configuration -[api] +```yml +## traefik.yml # Docker configuration backend -[docker] - domain = "docker.localhost" +providers: + docker: + defaultRule: "Host(`{{ trimPrefix `/` .Name }}.docker.localhost`)" + +# API and dashboard configuration +api: + insecure: true ``` -Start Traefik: +Start Traefik v2: -```bash +```sh docker run -d -p 8080:8080 -p 80:80 \ --v $PWD/traefik.toml:/etc/traefik/traefik.toml \ +-v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v1.7 +traefik:v2.11 ``` -Start a backend server, named `test`: +Start a backend server using the `traefik/whoami` image: -```bash +```sh docker run -d --name test traefik/whoami ``` -And finally, you can access to your `whoami` server throught Traefik, on the domain name `{containerName}.{configuredDomain}` (`test.docker.localhost`): +Access the whoami service through Traefik via the defined rule `test.docker.localhost`: ```console -# $ curl --header 'Host:test.docker.localhost' 'http://localhost:80/' -$ curl 'http://test.docker.localhost' -Hostname: 117c5530934d +$ curl test.docker.localhost +Hostname: 390a880bdfab IP: 127.0.0.1 -IP: ::1 IP: 172.17.0.3 -IP: fe80::42:acff:fe11:3 GET / HTTP/1.1 Host: test.docker.localhost -User-Agent: curl/7.35.0 +User-Agent: curl/7.65.3 Accept: */* Accept-Encoding: gzip X-Forwarded-For: 172.17.0.1 -X-Forwarded-Host: 172.17.0.3:80 +X-Forwarded-Host: test.docker.localhost +X-Forwarded-Port: 80 X-Forwarded-Proto: http -X-Forwarded-Server: f2e05c433120 +X-Forwarded-Server: 7e073cb54211 +X-Real-Ip: 172.17.0.1 ``` -The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the frontends/backends and also a health dashboard. +Access the Traefik Dashboard: + +Open your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard. This will provide an overview of routers, services, and middlewares. -![Web UI Providers](https://raw.githubusercontent.com/traefik/traefik/v1.7/docs/img/web.frontend.png) +![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v2.0/docs/content/assets/img/webui-dashboard.png) -# Documentation +## Documentation You can find the complete documentation: -- for [v2.x](https://doc.traefik.io/traefik/) -- for [v1.7](https://doc.traefik.io/traefik/v1.7) +- for [v3.x](https://doc.traefik.io/traefik/) +- for [v2.11](https://doc.traefik.io/traefik/v2.11) A community support is available at [https://community.traefik.io](https://community.traefik.io) - -A collection of contributions around Traefik can be found at [https://awesome.traefik.io](https://awesome.traefik.io). From 528bc73da30dbe024ba9c862dfdb1dd7b8d86a2a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Jan 2025 11:09:31 -0800 Subject: [PATCH 1802/2686] Run update.sh --- archlinux/README.md | 6 +++--- backdrop/README.md | 4 ++-- phpmyadmin/README.md | 8 ++++---- unit/README.md | 34 +++++++++++++++++----------------- 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index be9d2af748a1..2b69be171247 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.base) +- [`latest`, `base`, `base-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.base) -- [`base-devel`, `base-devel-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250105.0.295102`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ec9445b440a3e75d347ded5ba3620ea009af85d/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/backdrop/README.md b/backdrop/README.md index c91af6e80052..322fe705665c 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.1`, `1.29`, `1`, `1.29.1-apache`, `1.29-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/4f986f41b86617411c52eefc86b59380312f1751/1/apache/Dockerfile) +- [`1.29.3`, `1.29`, `1`, `1.29.3-apache`, `1.29-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/65dad6f2ee2a86b28b14d9dbf1578c62018cd681/1/apache/Dockerfile) -- [`1.29.1-fpm`, `1.29-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/4f986f41b86617411c52eefc86b59380312f1751/1/fpm/Dockerfile) +- [`1.29.3-fpm`, `1.29-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/65dad6f2ee2a86b28b14d9dbf1578c62018cd681/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 4c929608d34e..f3270ee3aaa4 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/apache/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/da4b8f273a0a81078185076683ed92a382814ef3/fpm/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/8674356a6d0f67eb89d0200647832fc3853781fd/fpm-alpine/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/phpmyadmin/docker/issues](https://github.com/phpmyadmin/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/phpmyadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/phpmyadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/phpmyadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/phpmyadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/phpmyadmin/), [`i386`](https://hub.docker.com/r/i386/phpmyadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/phpmyadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/phpmyadmin/), [`s390x`](https://hub.docker.com/r/s390x/phpmyadmin/) + [`amd64`](https://hub.docker.com/r/amd64/phpmyadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/phpmyadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/phpmyadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/phpmyadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/phpmyadmin/), [`i386`](https://hub.docker.com/r/i386/phpmyadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/phpmyadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/phpmyadmin/), [`riscv64`](https://hub.docker.com/r/riscv64/phpmyadmin/), [`s390x`](https://hub.docker.com/r/s390x/phpmyadmin/) - **Published image artifact details**: [repo-info repo's `repos/phpmyadmin/` directory](https://github.com/docker-library/repo-info/blob/master/repos/phpmyadmin) ([history](https://github.com/docker-library/repo-info/commits/master/repos/phpmyadmin)) diff --git a/unit/README.md b/unit/README.md index 927d1e37b927..875bdee1c228 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,39 +24,39 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34.0-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.go1.23) +- [`1.34.1-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.go1.23) -- [`1.34.0-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.go1.22) +- [`1.34.1-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.go1.22) -- [`1.34.0-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.jsc11) +- [`1.34.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.jsc11) -- [`1.34.0-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.node22) +- [`1.34.1-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.node22) -- [`1.34.0-node20`, `node20`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.node20) +- [`1.34.1-node20`, `node20`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.node20) -- [`1.34.0-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.perl5.40) +- [`1.34.1-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.perl5.40) -- [`1.34.0-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.perl5.38) +- [`1.34.1-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.perl5.38) -- [`1.34.0-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.php8.4) +- [`1.34.1-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.php8.4) -- [`1.34.0-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.php8.3) +- [`1.34.1-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.php8.3) -- [`1.34.0-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.13) +- [`1.34.1-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.13) -- [`1.34.0-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.12) +- [`1.34.1-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.12) -- [`1.34.0-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.ruby3.3) +- [`1.34.1-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.ruby3.3) -- [`1.34.0-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.ruby3.2) +- [`1.34.1-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.ruby3.2) -- [`1.34.0-python3.13-slim`, `python3.13-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.13-slim) +- [`1.34.1-python3.13-slim`, `python3.13-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.13-slim) -- [`1.34.0-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.python3.12-slim) +- [`1.34.1-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.12-slim) -- [`1.34.0-wasm`, `wasm`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.wasm) +- [`1.34.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.wasm) -- [`1.34.0-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/d8acad350a52a20918c46c09cb0a0f5479400923/pkg/docker/Dockerfile.minimal) +- [`1.34.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From c515e746f7173c1efe2c9dc47d8f69296190ac1b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 13 Jan 2025 12:36:47 -0800 Subject: [PATCH 1803/2686] Update traefik image references to use `%%IMAGE%%` templating (not sure how we missed these previously) --- traefik/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/traefik/content.md b/traefik/content.md index 5e7b25dae0c6..bc6c593c8dd5 100644 --- a/traefik/content.md +++ b/traefik/content.md @@ -29,7 +29,7 @@ Start Traefik v3: docker run -d -p 8080:8080 -p 80:80 \ -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ - traefik:v3 + %%IMAGE%%:v3 ``` Start a backend server using the `traefik/whoami` image: @@ -89,7 +89,7 @@ Start Traefik v2: docker run -d -p 8080:8080 -p 80:80 \ -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v2.11 +%%IMAGE%%:v2.11 ``` Start a backend server using the `traefik/whoami` image: From d67525ecd4e97cdcfe37b3f4274163e535e1c9d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Jan 2025 13:09:22 -0800 Subject: [PATCH 1804/2686] Run update.sh --- busybox/README.md | 16 +++---- ghost/README.md | 4 +- traefik/README.md | 106 ++++++++++++++++++++++++---------------------- 3 files changed, 65 insertions(+), 61 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 949db3444cbe..033c0ff220dd 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/907e0f82e65afd01dae07774db9c70fb73c78eb2/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 681f1b647f94..f7eb072cfe15 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.105.0`, `5.105`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fab52d5c943038af09062b995d8a9822483e933e/5/debian/Dockerfile) +- [`5.106.1`, `5.106`, `5`, `latest`](https://github.com/docker-library/ghost/blob/29520866c9804614cae9b6b7bbcdd8d0ec81523e/5/debian/Dockerfile) -- [`5.105.0-alpine`, `5.105-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/53b2329d1c3da840e9f8f8ce08c60c6f586ec8d3/5/alpine/Dockerfile) +- [`5.106.1-alpine`, `5.106-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/29520866c9804614cae9b6b7bbcdd8d0ec81523e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 4218c865a7c5..fb7c2315671f 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -69,15 +69,15 @@ WARNING: ![logo](https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png) -[Traefik](https://traefik.io) is a modern HTTP reverse proxy and load balancer that makes deploying microservices easy. +[Traefik](https://traefik.io) is a modern HTTP reverse proxy and ingress controller that makes deploying microservices easy. -Traefik integrates with your existing infrastructure components ([Docker](https://www.docker.com/), [Swarm mode](https://docs.docker.com/engine/swarm/), [Kubernetes](https://kubernetes.io), [Marathon](https://mesosphere.github.io/marathon/), [Consul](https://www.consul.io/), [Etcd](https://coreos.com/etcd/), [Rancher](https://rancher.com), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically. +Traefik integrates with your existing infrastructure components ([Kubernetes](https://kubernetes.io), [Docker](https://www.docker.com/), [Swarm](https://docs.docker.com/engine/swarm/), [Consul](https://www.consul.io/), [Nomad](https://www.nomadproject.io/), [etcd](https://coreos.com/etcd/), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically. Pointing Traefik at your orchestrator should be the *only* configuration step you need. -# Traefik v2 - Example usage +## Traefik v3 - Example usage -Enable `docker` provider and web UI: +Enable `docker` provider and dashboard UI: ```yml ## traefik.yml @@ -92,112 +92,116 @@ api: insecure: true ``` -Start Traefik: +Start Traefik v3: -```bash +```sh docker run -d -p 8080:8080 -p 80:80 \ --v $PWD/traefik.yml:/etc/traefik/traefik.yml \ --v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v2.5 + -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ + -v /var/run/docker.sock:/var/run/docker.sock \ + traefik:v3 ``` -Start a backend server, named `test`: +Start a backend server using the `traefik/whoami` image: -```bash +```sh docker run -d --name test traefik/whoami ``` -And finally, you can access to your `whoami` server throught Traefik, on the domain name `test.docker.localhost`: +Access the whoami service through Traefik via the defined rule `test.docker.localhost`: ```console -# $ curl --header 'Host:test.docker.localhost' 'http://localhost:80/' $ curl test.docker.localhost -Hostname: 390a880bdfab +Hostname: 0693100b16de IP: 127.0.0.1 -IP: 172.17.0.3 +IP: ::1 +IP: 192.168.215.4 +RemoteAddr: 192.168.215.3:57618 GET / HTTP/1.1 Host: test.docker.localhost -User-Agent: curl/7.65.3 +User-Agent: curl/8.7.1 Accept: */* Accept-Encoding: gzip -X-Forwarded-For: 172.17.0.1 +X-Forwarded-For: 192.168.215.1 X-Forwarded-Host: test.docker.localhost X-Forwarded-Port: 80 X-Forwarded-Proto: http -X-Forwarded-Server: 7e073cb54211 -X-Real-Ip: 172.17.0.1 +X-Forwarded-Server: 8a37fd4f35fb +X-Real-Ip: 192.168.215.1 ``` -The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the routers, services, and middlewares. +Access the Traefik Dashboard: -![Web UI](https://raw.githubusercontent.com/traefik/traefik/v2.5/docs/content/assets/img/webui-dashboard.png) +Open your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard. This will provide an overview of routers, services, and middlewares. -# Traefik v1 - Example usage +![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v3.2/docs/content/assets/img/webui-dashboard.png) -Grab a [sample configuration file](https://raw.githubusercontent.com/traefik/traefik/v1.7/traefik.sample.toml) and rename it to `traefik.toml`. Enable `docker` provider and web UI: +## Traefik v2 - Example usage -```toml -## traefik.toml +Enable `docker` provider and dashboard UI: -# API and dashboard configuration -[api] +```yml +## traefik.yml # Docker configuration backend -[docker] - domain = "docker.localhost" +providers: + docker: + defaultRule: "Host(`{{ trimPrefix `/` .Name }}.docker.localhost`)" + +# API and dashboard configuration +api: + insecure: true ``` -Start Traefik: +Start Traefik v2: -```bash +```sh docker run -d -p 8080:8080 -p 80:80 \ --v $PWD/traefik.toml:/etc/traefik/traefik.toml \ +-v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v1.7 +traefik:v2.11 ``` -Start a backend server, named `test`: +Start a backend server using the `traefik/whoami` image: -```bash +```sh docker run -d --name test traefik/whoami ``` -And finally, you can access to your `whoami` server throught Traefik, on the domain name `{containerName}.{configuredDomain}` (`test.docker.localhost`): +Access the whoami service through Traefik via the defined rule `test.docker.localhost`: ```console -# $ curl --header 'Host:test.docker.localhost' 'http://localhost:80/' -$ curl 'http://test.docker.localhost' -Hostname: 117c5530934d +$ curl test.docker.localhost +Hostname: 390a880bdfab IP: 127.0.0.1 -IP: ::1 IP: 172.17.0.3 -IP: fe80::42:acff:fe11:3 GET / HTTP/1.1 Host: test.docker.localhost -User-Agent: curl/7.35.0 +User-Agent: curl/7.65.3 Accept: */* Accept-Encoding: gzip X-Forwarded-For: 172.17.0.1 -X-Forwarded-Host: 172.17.0.3:80 +X-Forwarded-Host: test.docker.localhost +X-Forwarded-Port: 80 X-Forwarded-Proto: http -X-Forwarded-Server: f2e05c433120 +X-Forwarded-Server: 7e073cb54211 +X-Real-Ip: 172.17.0.1 ``` -The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the frontends/backends and also a health dashboard. +Access the Traefik Dashboard: + +Open your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard. This will provide an overview of routers, services, and middlewares. -![Web UI Providers](https://raw.githubusercontent.com/traefik/traefik/v1.7/docs/img/web.frontend.png) +![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v2.0/docs/content/assets/img/webui-dashboard.png) -# Documentation +## Documentation You can find the complete documentation: -- for [v2.x](https://doc.traefik.io/traefik/) -- for [v1.7](https://doc.traefik.io/traefik/v1.7) +- for [v3.x](https://doc.traefik.io/traefik/) +- for [v2.11](https://doc.traefik.io/traefik/v2.11) A community support is available at [https://community.traefik.io](https://community.traefik.io) -A collection of contributions around Traefik can be found at [https://awesome.traefik.io](https://awesome.traefik.io). - # Image Variants The `traefik` images come in many flavors, each designed for a specific use case. From 0e10475e6291bd886c9db8af4f8de9ae0a6ac346 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Jan 2025 17:09:39 -0800 Subject: [PATCH 1805/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++--------------- docker/README.md | 31 +++++-------------- ruby/README.md | 44 +++++++++++++------------- tomcat/README.md | 80 ++++++++++++++++++++++++++---------------------- 4 files changed, 98 insertions(+), 105 deletions(-) diff --git a/debian/README.md b/debian/README.md index 65d5c55a2fb1..f24fb2e92fe1 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20241223`, `12.8`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250113`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20241223-slim`, `12.8-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250113-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20241223`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250113`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20241223-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250113-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/experimental/Dockerfile) +- [`experimental`, `experimental-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/experimental/Dockerfile) -- [`oldstable`, `oldstable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/rc-buggy/Dockerfile) -- [`sid`, `sid-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/sid/oci/index.json) +- [`sid`, `sid-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/sid/oci/index.json) -- [`sid-slim`, `sid-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/sid/slim/oci/index.json) -- [`stable`, `stable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/oci/index.json) +- [`stable`, `stable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/slim/oci/index.json) -- [`testing`, `testing-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/oci/index.json) +- [`testing`, `testing-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/slim/oci/index.json) -- [`trixie`, `trixie-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/oci/index.json) +- [`trixie`, `trixie-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20241223`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/unstable/oci/index.json) +- [`unstable`, `unstable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20241223-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/e3f216064528d0ad005524fbafbddfd3115be946/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index a8d5cd5e97e8..a68f4679bc5c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`27.5.0-rc.2-cli`, `27-rc-cli`, `rc-cli`, `27.5.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/cli/Dockerfile) +- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/cli/Dockerfile) -- [`27.5.0-rc.2-dind`, `27-rc-dind`, `rc-dind`, `27.5.0-rc.2-dind-alpine3.21`, `27.5.0-rc.2`, `27-rc`, `rc`, `27.5.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/dind/Dockerfile) +- [`27.5.0-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.0-dind-alpine3.21`, `27.5.0`, `27.5`, `27`, `latest`, `27.5.0-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind/Dockerfile) -- [`27.5.0-rc.2-dind-rootless`, `27-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/dind-rootless/Dockerfile) +- [`27.5.0-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind-rootless/Dockerfile) -- [`27.5.0-rc.2-windowsservercore-ltsc2022`, `27-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.0-rc.2-windowsservercore-1809`, `27-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-1809/Dockerfile) - -- [`27.4.1-cli`, `27.4-cli`, `27-cli`, `cli`, `27.4.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/cli/Dockerfile) - -- [`27.4.1-dind`, `27.4-dind`, `27-dind`, `dind`, `27.4.1-dind-alpine3.21`, `27.4.1`, `27.4`, `27`, `latest`, `27.4.1-alpine3.21`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind/Dockerfile) - -- [`27.4.1-dind-rootless`, `27.4-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1188b8d14e45467307857b8fa3196f07b3826f50/27/dind-rootless/Dockerfile) - -- [`27.4.1-windowsservercore-ltsc2022`, `27.4-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`27.4.1-windowsservercore-1809`, `27.4-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.5.0-rc.2-windowsservercore`, `27-rc-windowsservercore`, `rc-windowsservercore`: - - - [`27.5.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/eb3c938f4f09b2b1173d99b4d9f6a1b34167e6a7/27-rc/windows/windowsservercore-1809/Dockerfile) - -- `27.4.1-windowsservercore`, `27.4-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.5.0-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.4.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.4.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dc4d40d7c5c6c823da63644efa433ee358d0e6f5/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 283cdd0a4b76..b8fd86882b5b 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/bookworm/Dockerfile) +- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.4/bookworm/Dockerfile) -- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/slim-bookworm/Dockerfile) +- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/slim-bookworm/Dockerfile) -- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/bullseye/Dockerfile) +- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.4/bullseye/Dockerfile) -- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/slim-bullseye/Dockerfile) +- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/slim-bullseye/Dockerfile) -- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/alpine3.21/Dockerfile) +- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/alpine3.21/Dockerfile) -- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/3caadc6cd9931b347181c517968c2ad414c49760/3.4/alpine3.20/Dockerfile) +- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/alpine3.20/Dockerfile) -- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bookworm/Dockerfile) +- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.3/bookworm/Dockerfile) -- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bookworm/Dockerfile) +- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/slim-bookworm/Dockerfile) -- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/bullseye/Dockerfile) +- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.3/bullseye/Dockerfile) -- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/slim-bullseye/Dockerfile) +- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.21/Dockerfile) +- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/alpine3.20/Dockerfile) -- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/bookworm/Dockerfile) +- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.2/bookworm/Dockerfile) -- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/slim-bookworm/Dockerfile) +- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/slim-bookworm/Dockerfile) -- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/bullseye/Dockerfile) +- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.2/bullseye/Dockerfile) -- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/slim-bullseye/Dockerfile) +- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/alpine3.21/Dockerfile) +- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/alpine3.21/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/alpine3.20/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/slim-bookworm/Dockerfile) - [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/alpine3.21/Dockerfile) +- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index a375de9effa9..413cb1514812 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,77 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.2-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.2-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.2-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.2-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.2-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.2-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.2-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.2-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.2-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.2-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.2-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.2-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.2-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.2-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.2-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5ce1ce35636f6156807e296e0a09e6686892c8d3/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.2-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jre21/temurin-jammy/Dockerfile) -- [`10.1.34-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.34-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.34-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.34`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk21/temurin-noble/Dockerfile) +- [`11.0.2-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.2-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.2-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jdk17/temurin-noble/Dockerfile) -- [`10.1.34-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.34-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.34-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre21/temurin-noble/Dockerfile) +- [`11.0.2-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.2-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.2-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jre17/temurin-noble/Dockerfile) -- [`10.1.34-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk21/temurin-jammy/Dockerfile) +- [`11.0.2-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jdk17/temurin-jammy/Dockerfile) -- [`10.1.34-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre21/temurin-jammy/Dockerfile) +- [`11.0.2-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.34-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.34-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.34-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.34-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.34-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.34-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.34`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.34-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.34-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.34-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.34-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.34-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.34-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.34-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.34-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.34-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.34-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.34-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.34-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.34-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.34-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.34-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.34-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.34-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.34-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.34-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.34-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.34-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.34-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.34-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.34-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.34-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/6e18efa87b91c6478ea52666322b06e472647044/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.34-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre17/temurin-jammy/Dockerfile) -- [`9.0.98-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.98-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.98-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.98`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/temurin-noble/Dockerfile) +- [`10.1.34-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.34-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.34-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk11/temurin-noble/Dockerfile) -- [`9.0.98-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.98-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.98-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre21/temurin-noble/Dockerfile) +- [`10.1.34-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.34-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.34-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre11/temurin-noble/Dockerfile) -- [`9.0.98-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/temurin-jammy/Dockerfile) +- [`10.1.34-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk11/temurin-jammy/Dockerfile) -- [`9.0.98-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre21/temurin-jammy/Dockerfile) +- [`10.1.34-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.98-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.98-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.98-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.98-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.98-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.98`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.98-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.98-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.98-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.98-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.98-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.98-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.98-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.98-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.98-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.98-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.98-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.98-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.98-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.98-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.98-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.98-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.98-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.98-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.98-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.98-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.98-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.98-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.98-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.98-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.98-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.98-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.98-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.98-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.98-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.98-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.98-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.98-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.98-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.98-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.98-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.98-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.98-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.98-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.98-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.98-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.98-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.98-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.98-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.98-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.98-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.98-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.98-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.98-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.98-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.98-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.98-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.98-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.98-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.98-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.98-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.98-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.98-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/3473b76f4f050aff1529e0a585894b2140adc5a7/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.98-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.98-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.98-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/temurin-noble/Dockerfile) + +- [`9.0.98-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.98-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.98-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre8/temurin-noble/Dockerfile) + +- [`9.0.98-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/temurin-jammy/Dockerfile) + +- [`9.0.98-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre8/temurin-jammy/Dockerfile) + +- [`9.0.98-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.98-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 85774cc6e67fa6b3b59c87f9b885643c73d68892 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Jan 2025 11:09:39 -0800 Subject: [PATCH 1806/2686] Run update.sh --- crate/README.md | 2 +- traefik/README.md | 16 ++++------------ 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/crate/README.md b/crate/README.md index 158fd86ff3f8..55495374b810 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.5`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/2fe2732a90bcb0e2b7a469e01fab7a366505d881/Dockerfile) +- [`5.9.6`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/729dcc677cb5733e8af87ed397771ed51345ad17/Dockerfile) - [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index fb7c2315671f..a6532ba6a364 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.1-windowsservercore-ltsc2022`, `3.3.1-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.2-windowsservercore-ltsc2022`, `3.3.2-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.1-windowsservercore-1809`, `3.3.1-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/1809/Dockerfile) +- [`v3.3.2-windowsservercore-1809`, `3.3.2-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/1809/Dockerfile) -- [`v3.3.1-nanoserver-ltsc2022`, `3.3.1-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.2-nanoserver-ltsc2022`, `3.3.2-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.1`, `3.3.1`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/79eb99e8c991e149bfa5fd468bbbf2b0e1f2b16a/v3.3/alpine/Dockerfile) - -- [`v3.2.5-windowsservercore-ltsc2022`, `3.2.5-windowsservercore-ltsc2022`, `v3.2-windowsservercore-ltsc2022`, `3.2-windowsservercore-ltsc2022`, `munster-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/servercore-ltsc2022/Dockerfile) - -- [`v3.2.5-windowsservercore-1809`, `3.2.5-windowsservercore-1809`, `v3.2-windowsservercore-1809`, `3.2-windowsservercore-1809`, `munster-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/1809/Dockerfile) - -- [`v3.2.5-nanoserver-ltsc2022`, `3.2.5-nanoserver-ltsc2022`, `v3.2-nanoserver-ltsc2022`, `3.2-nanoserver-ltsc2022`, `munster-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/windows/nanoserver-ltsc2022/Dockerfile) - -- [`v3.2.5`, `3.2.5`, `v3.2`, `3.2`, `munster`](https://github.com/traefik/traefik-library-image/blob/176e60176eab4506006057b716d5499aabc082bd/v3.2/alpine/Dockerfile) +- [`v3.3.2`, `3.3.2`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/alpine/Dockerfile) - [`v2.11.18-windowsservercore-ltsc2022`, `2.11.18-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/servercore-ltsc2022/Dockerfile) From 17e22f7f83a43e2d25926c0aca3d378d9bb91f33 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Jan 2025 12:09:24 -0800 Subject: [PATCH 1807/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- redmine/README.md | 18 +++++++++--------- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bash/README.md b/bash/README.md index f54c56019cc3..3d3bcba67134 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20241230`, `devel`, `devel-20241230-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/b8135e80fc12454bfece459d17982521e4b4ee95/devel/Dockerfile) +- [`devel-20250109`, `devel`, `devel-20250109-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/cf93d1eb3fc3cead6f0d63b091a41ea1ddf3afb2/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 2b5042886983..7e4c8bbc5f2d 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/elasticsearch/Dockerfile) -- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/elasticsearch/Dockerfile) +- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/elasticsearch/Dockerfile) - [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 4b58a4a6d1f2..781c6d048e31 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/kibana/Dockerfile) -- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/kibana/Dockerfile) +- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/kibana/Dockerfile) - [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index 842c6ad69eee..9de4bb307f79 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/logstash/Dockerfile) -- [`7.17.26`](https://github.com/elastic/dockerfiles/blob/833d5513f5561c34542daa1a5f739b7513bf9944/logstash/Dockerfile) +- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/logstash/Dockerfile) - [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/logstash/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 3eb3af3c7045..d2102f84d2eb 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/bookworm/Dockerfile) +- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/bookworm/Dockerfile) -- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/alpine3.21/Dockerfile) +- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/alpine3.21/Dockerfile) -- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/ba44016bde2905bed5774c98326e5beba2e506de/6.0/alpine3.20/Dockerfile) +- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/alpine3.20/Dockerfile) -- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/bookworm/Dockerfile) +- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/bookworm/Dockerfile) -- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/alpine3.21/Dockerfile) +- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/alpine3.21/Dockerfile) -- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/83b96af0032249a7d869785b5da2d86cafe10e8c/5.1/alpine3.20/Dockerfile) +- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/alpine3.20/Dockerfile) -- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2f7ad78c65f5ea8724f994ea2a33dafcc4cd32eb/5.0/bookworm/Dockerfile) +- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/bookworm/Dockerfile) -- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/5e9640071612b4b7b4335548dcb110ad1a76ad16/5.0/alpine3.21/Dockerfile) +- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/alpine3.21/Dockerfile) -- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2f7ad78c65f5ea8724f994ea2a33dafcc4cd32eb/5.0/alpine3.20/Dockerfile) +- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) From ea329df8359b00a3244b9c1c715b335b9b84623c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Jan 2025 16:09:39 -0800 Subject: [PATCH 1808/2686] Run update.sh --- orientdb/README.md | 4 ++-- phpmyadmin/README.md | 6 +++--- python/README.md | 30 +++++++++++++-------------- redmine/README.md | 18 +---------------- ruby/README.md | 48 ++++++++++++++++++++++---------------------- 5 files changed, 45 insertions(+), 61 deletions(-) diff --git a/orientdb/README.md b/orientdb/README.md index d24d245bd3ac..22fa328f94e7 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.36`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/e05191a51700a72dc31aca0881a0179b59eb48ce/release/3.2.x/3.2.36/Dockerfile) +- [`3.2.37`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/dbce6d15ca8ac3c400953eed9bb4833b3886bd87/release/3.2.x/3.2.37/Dockerfile) -- [`3.2.36-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/e05191a51700a72dc31aca0881a0179b59eb48ce/release/3.2.x/3.2.36-tp3/Dockerfile) +- [`3.2.37-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/dbce6d15ca8ac3c400953eed9bb4833b3886bd87/release/3.2.x/3.2.37-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index f3270ee3aaa4..2787e5f639df 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/apache/Dockerfile) +- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/fpm/Dockerfile) +- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/ec0d6a5c3ae5d8df6e5f7d08570c91518cfc302e/fpm-alpine/Dockerfile) +- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 6f134faad45e..86e919f24722 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0a3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a3-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a3-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a3-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a3-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a3-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a4-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a3-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a4-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) @@ -114,16 +114,16 @@ WARNING: ## Shared Tags -- `3.14.0a3`, `3.14-rc`: +- `3.14.0a4`, `3.14-rc`: - - [`3.14.0a3-bookworm`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a3-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a4-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a3-windowsservercore-1809`](https://github.com/docker-library/python/blob/a29b7ef1c04d43e0f80ea6d7c06fdfe30ffac0fc/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.1`, `3.13`, `3`, `latest`: diff --git a/redmine/README.md b/redmine/README.md index d2102f84d2eb..d0edbd0b4a56 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -136,10 +136,6 @@ services: Run `docker stack deploy -c stack.yml redmine` (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). -## Alternative Web Server - -The other tags in this repository, like those with `passenger`, use the same environment and `--links` as the default tags that use Puma (`rails server`) but instead give you the option of a different web and application server. `passenger` uses [Phusion Passenger](https://www.phusionpassenger.com/). [`tini`](https://github.com/krallin/tini) is used for reaping [zombies](https://en.wikipedia.org/wiki/Zombie_process). - ## Accessing the Application Currently, the default user and password from upstream is admin/admin ([logging into the application](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-10-Logging-into-the-application)). @@ -212,19 +208,7 @@ This variable is required when using Docker Swarm replicas to maintain session c ## Running as an arbitrary user -For running Redmine without Phusion Passenger you can simply use the [`--user`](https://docs.docker.com/engine/reference/run/#user) flag to `docker run` and give it a `username:group` or `UID:GID`, the user doesn't need to exist in the container - -For running the `redmine:passenger` variant as an arbitrary user you will however need the user to exist in `/etc/passwd`. Here are a few examples for doing that: - -1. Create the user on your host and mount `/etc/passwd:/etc/passwd:ro` - -2. Create a Dockerfile `FROM redmine:passenger` and include something like [`RUN groupadd -r group && useradd --no-log-init -r -g group user`](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user) - - ```dockerfile - FROM redmine:passenger - RUN groupadd -r group && useradd --no-log-init -r -g group user - USER user - ``` +You can use the [`--user`](https://docs.docker.com/engine/reference/run/#user) flag to `docker run` and give it a `username:group` or `UID:GID`, the user doesn't need to exist in the container. ## Docker Secrets diff --git a/ruby/README.md b/ruby/README.md index b8fd86882b5b..5948950c5a88 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.4/bookworm/Dockerfile) +- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/bookworm/Dockerfile) -- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/slim-bookworm/Dockerfile) +- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/slim-bookworm/Dockerfile) -- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.4/bullseye/Dockerfile) +- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/bullseye/Dockerfile) -- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/slim-bullseye/Dockerfile) +- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/slim-bullseye/Dockerfile) -- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/alpine3.21/Dockerfile) +- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/alpine3.21/Dockerfile) -- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.4/alpine3.20/Dockerfile) +- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/alpine3.20/Dockerfile) -- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.3/bookworm/Dockerfile) +- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/bookworm/Dockerfile) -- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/slim-bookworm/Dockerfile) +- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/slim-bookworm/Dockerfile) -- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.3/bullseye/Dockerfile) +- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/bullseye/Dockerfile) -- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/slim-bullseye/Dockerfile) +- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/alpine3.21/Dockerfile) +- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.3/alpine3.20/Dockerfile) +- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/alpine3.20/Dockerfile) -- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.2/bookworm/Dockerfile) +- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/bookworm/Dockerfile) -- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/slim-bookworm/Dockerfile) +- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/slim-bookworm/Dockerfile) -- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/d86ed5ea3aead8dc6c3d30bf7bc8d0344cc65466/3.2/bullseye/Dockerfile) +- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/bullseye/Dockerfile) -- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/slim-bullseye/Dockerfile) +- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/alpine3.21/Dockerfile) +- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/alpine3.21/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/9b6a2e2c9155e3cd23adc263e35cbb5940aad91a/3.2/alpine3.20/Dockerfile) +- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/alpine3.20/Dockerfile) -- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bookworm/Dockerfile) +- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/slim-bookworm/Dockerfile) -- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/780654067ddce418269e6710c13b75de288c3c0d/3.1/bullseye/Dockerfile) +- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/alpine3.21/Dockerfile) +- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/7f078b1b01338e19130eb8b01cb7f35153ba6b04/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) From 74e7c9958108e04bb9a8818d80462d71f0124e1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Jan 2025 17:09:35 -0800 Subject: [PATCH 1809/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index b5610294a013..0998e9159478 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250107.0`](https://github.com/amazonlinux/container-images/blob/6ac65e605ca087694ceb4b735be7f6b348974948/Dockerfile) +- [`2023`, `latest`, `2023.6.20250114.0`](https://github.com/amazonlinux/container-images/blob/77426fa0c680111c20324c283e8b8e71135b4be7/Dockerfile) -- [`2`, `2.0.20250108.0`](https://github.com/amazonlinux/container-images/blob/24a281808a55e7605aa49718d4f4769dcce08607/Dockerfile) +- [`2`, `2.0.20250113.0`](https://github.com/amazonlinux/container-images/blob/b84556ba433d65237ffe8fb05954817fb106d75c/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From 9d471120ba8acaeb12c3f1ce84b90f0ec13e0f46 Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Wed, 15 Jan 2025 13:13:26 +0100 Subject: [PATCH 1810/2686] Add versions description --- clickhouse/content.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clickhouse/content.md b/clickhouse/content.md index c2ca45060612..0792b47df441 100644 --- a/clickhouse/content.md +++ b/clickhouse/content.md @@ -10,6 +10,12 @@ ClickHouse works 100-1000x faster than traditional database management systems, For more information and documentation see https://clickhouse.com/. +## Versions + +- The `latest` tag points to the latest release of the latest stable branch. +- Branch tags like `22.2` point to the latest release of the corresponding branch. +- Full version tags like `22.2.3` and `22.2.3.5` point to the corresponding release. + ### Compatibility - The amd64 image requires support for [SSE3 instructions](https://en.wikipedia.org/wiki/SSE3). Virtually all x86 CPUs after 2005 support SSE3. From b4adb04dfb6954deb3ce25950d317679b30b2dfe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Jan 2025 10:09:36 -0800 Subject: [PATCH 1811/2686] Run update.sh --- redmine/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/redmine/README.md b/redmine/README.md index d0edbd0b4a56..c54666c8e0ea 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/bookworm/Dockerfile) +- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/bookworm/Dockerfile) -- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/alpine3.21/Dockerfile) +- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/alpine3.21/Dockerfile) -- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/6.0/alpine3.20/Dockerfile) +- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/alpine3.20/Dockerfile) -- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/bookworm/Dockerfile) +- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/bookworm/Dockerfile) -- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/alpine3.21/Dockerfile) +- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/alpine3.21/Dockerfile) -- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.1/alpine3.20/Dockerfile) +- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/alpine3.20/Dockerfile) -- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/bookworm/Dockerfile) +- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/bookworm/Dockerfile) -- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/alpine3.21/Dockerfile) +- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/alpine3.21/Dockerfile) -- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/bd201100bc2bafda763ea6638e0695fd4bde1f97/5.0/alpine3.20/Dockerfile) +- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) From ef0ad3797dc8f444d71da210c5b19fbf9abc0eee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Jan 2025 12:09:26 -0800 Subject: [PATCH 1812/2686] Run update.sh --- jetty/README.md | 152 ++++++++++++++++++++++++------------------------ odoo/README.md | 6 +- 2 files changed, 79 insertions(+), 79 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 0634ab643b68..67da9916b7d7 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,157 +24,157 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.56-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.56-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.57-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.57-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.56-jre8`, `9.4-jre8`, `9-jre8`, `9.4.56-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.57-jre8`, `9.4-jre8`, `9-jre8`, `9.4.57-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.56-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.56-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.57-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.57-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.56-jre21`, `9.4-jre21`, `9-jre21`, `9.4.56-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.57-jre21`, `9.4-jre21`, `9-jre21`, `9.4.57-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.56-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.56-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.57-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.57-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.56-jre17`, `9.4-jre17`, `9-jre17`, `9.4.56-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.57-jre17`, `9.4-jre17`, `9-jre17`, `9.4.57-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.56-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.56-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.57-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.57-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.56-jre11`, `9.4-jre11`, `9-jre11`, `9.4.56-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.57-jre11`, `9.4-jre11`, `9-jre11`, `9.4.57-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.56-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.56-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.56-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.56-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.57-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.57-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.56`, `9.4`, `9`, `9.4.56-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.56-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.56-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.57`, `9.4`, `9`, `9.4.57-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.57-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.57-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.56-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.56-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.57-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.57-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.56-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.56-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.56-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.56-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.57-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.57-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.56-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.56-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.16-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.16-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.16-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.16-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.16-jre21`, `12.0-jre21`, `12-jre21`, `12.0.16-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.16-jre21`, `12.0-jre21`, `12-jre21`, `12.0.16-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.16-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.16-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.16-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.16-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.16-jre17`, `12.0-jre17`, `12-jre17`, `12.0.16-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.16-jre17`, `12.0-jre17`, `12-jre17`, `12.0.16-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.16-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.16-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.16-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.16-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.16-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.16-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.16-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.16-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.16-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.16-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.16-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.16-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.16`, `12.0`, `12`, `12.0.16-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.16-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.16-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.16`, `12.0`, `12`, `12.0.16-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.16-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.16-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.16-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.16-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.16-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.16-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.16-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.16-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.16-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.16-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.24-jre21`, `11.0-jre21`, `11-jre21`, `11.0.24-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.24-jre21`, `11.0-jre21`, `11-jre21`, `11.0.24-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.24-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.24-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.24-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.24-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.24-jre17`, `11.0-jre17`, `11-jre17`, `11.0.24-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.24-jre17`, `11.0-jre17`, `11-jre17`, `11.0.24-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.24-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.24-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.24-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.24-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.24-jre11`, `11.0-jre11`, `11-jre11`, `11.0.24-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.24-jre11`, `11.0-jre11`, `11-jre11`, `11.0.24-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.24-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.24-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.24-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.24-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.24`, `11.0`, `11`, `11.0.24-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.24-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.24-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.24`, `11.0`, `11`, `11.0.24-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.24-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.24-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.24-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.24-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.24-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.24-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.24-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.24-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.24-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.24-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.24-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.24-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.24-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.24-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.24-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.24-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.24-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.24-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.24-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.24-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.24-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.24-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.24-jre21`, `10.0-jre21`, `10-jre21`, `10.0.24-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.24-jre21`, `10.0-jre21`, `10-jre21`, `10.0.24-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.24-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.24-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.24-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.24-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.24-jre17`, `10.0-jre17`, `10-jre17`, `10.0.24-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.24-jre17`, `10.0-jre17`, `10-jre17`, `10.0.24-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.24-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.24-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.24-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.24-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.24-jre11`, `10.0-jre11`, `10-jre11`, `10.0.24-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.24-jre11`, `10.0-jre11`, `10-jre11`, `10.0.24-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.24-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.24-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.24-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.24-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.24`, `10.0`, `10`, `10.0.24-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.24-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.24-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.24`, `10.0`, `10`, `10.0.24-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.24-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.24-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.24-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.24-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.24-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.24-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.24-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.24-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.24-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.24-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.24-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.24-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.24-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.24-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.24-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.24-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.24-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.24-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.56-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.56-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.57-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.56-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.57-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.56-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.56-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.57-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.57-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.56-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.57-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.56-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.57-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.56-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/c0f30f8462d083ddc44b6af8ae967315421b6451/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.57-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.56-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/9.4/jdk11/Dockerfile) +- [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.16-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk23-al2023/Dockerfile) +- [`12.0.16-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk23-al2023/Dockerfile) -- [`12.0.16-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.16-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.16-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.16-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.16-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.16-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.16-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.16-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.16-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.16-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.16-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.16-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.16-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3ef91639e3893107c3cbfb1dc1c4a7b2a9786a27/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.16-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.24-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.24-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.24-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.24-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.24-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.24-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.24-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.24-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.24-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/f705916fcf8ad79097235a944b67d461d2fa3e43/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.24-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/09303c6a1c73276d5cd286dbd5f04a1a752ecf62/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 779a3dbdfc07..3fc2096c90cf 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250106`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/18.0/Dockerfile) +- [`18.0-20250115`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/18.0/Dockerfile) -- [`17.0-20250106`, `17.0`, `17`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/17.0/Dockerfile) +- [`17.0-20250115`, `17.0`, `17`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/17.0/Dockerfile) -- [`16.0-20250106`, `16.0`, `16`](https://github.com/odoo/docker/blob/cb992de79edab3b98702fb33fa6ccfc04aa00861/16.0/Dockerfile) +- [`16.0-20250115`, `16.0`, `16`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/16.0/Dockerfile) # Quick reference (cont.) From 3898fe8e2083afc78cdf8ab3696dae6e8be35e20 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Jan 2025 13:09:32 -0800 Subject: [PATCH 1813/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- clickhouse/README.md | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 0998e9159478..365cdedc33eb 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250114.0`](https://github.com/amazonlinux/container-images/blob/77426fa0c680111c20324c283e8b8e71135b4be7/Dockerfile) +- [`2023`, `latest`, `2023.6.20250107.0`](https://github.com/amazonlinux/container-images/blob/74a0e4d258d1a5efeadc82395d228357a68d38a8/Dockerfile) -- [`2`, `2.0.20250113.0`](https://github.com/amazonlinux/container-images/blob/b84556ba433d65237ffe8fb05954817fb106d75c/Dockerfile) +- [`2`, `2.0.20250108.0`](https://github.com/amazonlinux/container-images/blob/41d7f68f76f06dfc10f91f2fb1a66c0b409bb24a/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/clickhouse/README.md b/clickhouse/README.md index 4a35dbd8b0a0..b01de3c54331 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `focal`, `24`, `24-focal`, `24.10`, `24.10-focal`, `24.10.2`, `24.10.2-focal`, `24.10.2.80`, `24.10.2.80-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.10.2.80/Dockerfile.ubuntu) +- [`latest`, `jammy`, `24.12`, `24.12-jammy`, `24.12.3`, `24.12.3-jammy`, `24.12.3.47`, `24.12.3.47-jammy`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.12.3.47/Dockerfile.ubuntu) -- [`24.9`, `24.9-focal`, `24.9.3`, `24.9.3-focal`, `24.9.3.128`, `24.9.3.128-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.9.3.128/Dockerfile.ubuntu) +- [`24.11`, `24.11-jammy`, `24.11.3`, `24.11.3-jammy`, `24.11.3.66`, `24.11.3.66-jammy`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.11.3.66/Dockerfile.ubuntu) -- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.7`, `24.8.7-focal`, `24.8.7.41`, `24.8.7.41-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.8.7.41/Dockerfile.ubuntu) +- [`24.10`, `24.10-focal`, `24.10.4`, `24.10.4-focal`, `24.10.4.191`, `24.10.4.191-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.10.4.191/Dockerfile.ubuntu) -- [`24.3`, `24.3-focal`, `24.3.14`, `24.3.14-focal`, `24.3.14.35`, `24.3.14.35-focal`](https://github.com/ClickHouse/docker-library/blob/5e5cd0415e8ba326f35f5066ab1b3b7314df153d/server/24.3.14.35/Dockerfile.ubuntu) +- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.12`, `24.8.12-focal`, `24.8.12.28`, `24.8.12.28-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.8.12.28/Dockerfile.ubuntu) + +- [`24.3`, `24.3-focal`, `24.3.15`, `24.3.15-focal`, `24.3.15.72`, `24.3.15.72-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.3.15.72/Dockerfile.ubuntu) # Quick reference (cont.) From 26c7cd77e0faf9c5cd32a81837668cda60ba9bdd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Jan 2025 14:09:44 -0800 Subject: [PATCH 1814/2686] Run update.sh --- clickhouse/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clickhouse/README.md b/clickhouse/README.md index b01de3c54331..5573c43c2d41 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -65,6 +65,12 @@ ClickHouse works 100-1000x faster than traditional database management systems, For more information and documentation see https://clickhouse.com/. +## Versions + +- The `latest` tag points to the latest release of the latest stable branch. +- Branch tags like `22.2` point to the latest release of the corresponding branch. +- Full version tags like `22.2.3` and `22.2.3.5` point to the corresponding release. + ### Compatibility - The amd64 image requires support for [SSE3 instructions](https://en.wikipedia.org/wiki/SSE3). Virtually all x86 CPUs after 2005 support SSE3. From 4f80c2bad0f4aaec1ba382353cd92f271c13f217 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Jan 2025 09:09:22 -0800 Subject: [PATCH 1815/2686] Run update.sh --- mongo/README.md | 86 +++++++++++++++++-------------------------------- 1 file changed, 30 insertions(+), 56 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 79e430f33cce..7997d7aca0c4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -48,35 +48,25 @@ WARNING: - [`7.0.16-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.20-rc3-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/Dockerfile) +- [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) -- [`6.0.20-rc3-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.20-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.20-rc3-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.20-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.20-rc3-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.20-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.20-rc3-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.20-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.19-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) +- [`5.0.31-rc1-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) -- [`6.0.19-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.31-rc1-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.19-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) +- [`5.0.31-rc1-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.19-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.31-rc1-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.19-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) - -- [`5.0.31-rc0-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/Dockerfile) - -- [`5.0.31-rc0-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.31-rc0-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.31-rc0-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.31-rc0-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-1809/Dockerfile) +- [`5.0.31-rc1-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-1809/Dockerfile) - [`5.0.30-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) @@ -122,53 +112,37 @@ WARNING: - [`7.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.20-rc3`, `6.0-rc`: - - - [`6.0.20-rc3-jammy`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/Dockerfile) - - [`6.0.20-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.20-rc3-windowsservercore`, `6.0-rc-windowsservercore`: - - - [`6.0.20-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-rc3-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.20-rc3-nanoserver`, `6.0-rc-nanoserver`: - - - [`6.0.20-rc3-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.20-rc3-nanoserver-1809`](https://github.com/docker-library/mongo/blob/b709726695914275c03b7dd9d61f8d895b44a3a3/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- `6.0.19`, `6.0`, `6`: +- `6.0.20`, `6.0`, `6`: - - [`6.0.19-jammy`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/Dockerfile) - - [`6.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.20-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) + - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.19-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.20-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.19-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.20-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dc976ba793b6e6c9702a961abb5edbd2d0489625/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.31-rc0`, `5.0-rc`: +- `5.0.31-rc1`, `5.0-rc`: - - [`5.0.31-rc0-focal`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/Dockerfile) - - [`5.0.31-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`5.0.31-rc1-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) + - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.31-rc0-windowsservercore`, `5.0-rc-windowsservercore`: +- `5.0.31-rc1-windowsservercore`, `5.0-rc-windowsservercore`: - - [`5.0.31-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/47aa1164218dc68ae0386d06f8ec3d472ac4042a/5.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) -- `5.0.31-rc0-nanoserver`, `5.0-rc-nanoserver`: +- `5.0.31-rc1-nanoserver`, `5.0-rc-nanoserver`: - - [`5.0.31-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.31-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/f0712548bae21e89d12f559005b9ee576869ce00/5.0-rc/windows/nanoserver-1809/Dockerfile) + - [`5.0.31-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.31-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-1809/Dockerfile) - `5.0.30`, `5.0`, `5`: From 9154b40d2603d9776b07f7b0d2a70806d1fbebea Mon Sep 17 00:00:00 2001 From: William Desportes Date: Thu, 16 Jan 2025 18:27:22 +0100 Subject: [PATCH 1816/2686] Update phpMyAdmin with new ENVs and settings (#2527) * Update phpMyAdmin with new ENVs and settings * Also add in developer-tools * Use MariaDB 10.11 LTS --- phpmyadmin/content.md | 61 ++++++++++++++++++++++++++++++++++++++-- phpmyadmin/metadata.json | 3 +- phpmyadmin/stack.yml | 2 +- 3 files changed, 62 insertions(+), 4 deletions(-) diff --git a/phpmyadmin/content.md b/phpmyadmin/content.md index cb5abbf2b629..b3b15f25acbb 100644 --- a/phpmyadmin/content.md +++ b/phpmyadmin/content.md @@ -8,7 +8,7 @@ Run phpMyAdmin with Alpine, Apache and PHP FPM. # How to use this image -All of the following examples will bring you phpMyAdmin on `http://localhost:8080` where you can enjoy your happy MySQL administration. +All of the following examples will bring you phpMyAdmin on `http://localhost:8080` where you can enjoy your happy MySQL and MariaDB administration. ## Credentials @@ -62,7 +62,7 @@ You can use arbitrary servers by adding the environment variable `PMA_ARBITRARY= docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 %%IMAGE%% ``` -## Usage with Docker Compose and arbitrary server +## Usage with `docker compose` and an arbitrary server This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. @@ -97,10 +97,40 @@ See the following links for config file information: - https://docs.phpmyadmin.net/en/latest/config.html#config - https://docs.phpmyadmin.net/en/latest/setup.html +## Adding custom configuration in `/etc/phpmyadmin/conf.d` + +you can also consider storing your custom configuration files in the folder `/etc/phpmyadmin/conf.d`, which is very suitable for managing multiple phpMyAdmin configuration files for different hosts,Then you can create `server-1.php`, `server-2.php`, or any file name you want, and store them in the conf.d directory mounted on the host. + +On the `docker run` line like this: + +```sh +docker run --name phpmyadmin -d --link mysql_db_server:db -p 8080:80 -v /some/local/directory/conf.d:/etc/phpmyadmin/conf.d:ro %%IMAGE%% +``` + ## Usage behind a reverse proxy Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.example.net/`) where the reverse proxy makes phpMyAdmin available. +## Sessions persistence + +In order to keep your sessions active between container updates you will need to mount the `/sessions` folder. + +```sh +-v /some/local/directory/sessions:/sessions:rw +``` + +## Connect to the database over SSL + +Set the variable `PMA_SSL` to `1` to enable SSL usage from phpMyAdmin to the MySQL server. The default value is `0`. The variable `PMA_SSLS` can be used as a comma seperated sequence of `0` and `1` where multiple hosts are mentioned. Values order must follow the `PMA_HOSTS` and will be computed accordingly. + +```sh +docker run --name phpmyadmin -d -e PMA_HOSTS=sslhost -e PMA_SSL=1 -p 8080:80 %%IMAGE%% +``` + +```sh +docker run --name phpmyadmin -d -e PMA_HOSTS='sslhost,nosslhost' -e PMA_SSLS='1,0' -p 8080:80 %%IMAGE%% +``` + ## Environment variables summary - `PMA_ARBITRARY` - when set to 1 connection to the arbitrary server will be allowed @@ -110,6 +140,19 @@ Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.ex - `PMA_HOSTS` - define comma separated list of address/host names of the MySQL servers - `PMA_VERBOSES` - define comma separated list of verbose names of the MySQL servers - `PMA_PORTS` - define comma separated list of ports of the MySQL servers +- `PMA_SOCKET` - define socket file for the MySQL connection +- `PMA_SOCKETS` - define comma separated list of socket files for the MySQL connections +- `PMA_SSL_DIR` - define the path used for SSL files generated from environement variables, default value is `/etc/phpmyadmin/ssl` +- `PMA_SSL` - when set to 1, defines SSL usage for the MySQL connection +- `PMA_SSLS` - comma separated list of `0` and `1` defining SSL usage for the corresponding MySQL connections +- `PMA_SSL_VERIFY` - when set to 1, enables SSL certificate verification for the MySQL connection. +- `PMA_SSL_VERIFIES` - comma-separated list of `0` and `1` to enable or disable SSL certificate verification for multiple MySQL connections. +- `PMA_SSL_CA` - in the context of mutual TLS security, allows setting your CA certificate file as a string inside the default `config.inc.php`. +- `PMA_SSL_CAS` - in the context of mutual TLS security, allows setting multiple CA certificate files as a comma-separated list of strings inside the default `config.inc.php`. +- `PMA_SSL_CERT` - in the context of mutual TLS security, allows setting your certificate file as a string inside the default `config.inc.php`. +- `PMA_SSL_CERTS` - in the context of mutual TLS security, allows setting multiple certificate files as a comma-separated list of strings inside the default `config.inc.php`. +- `PMA_SSL_KEY` - in the context of mutual TLS security, allows setting your private key file as a string inside the default `config.inc.php`. +- `PMA_SSL_KEYS` - in the context of mutual TLS security, allows setting multiple private key files as a comma-separated list of strings inside the default `config.inc.php`. - `PMA_USER` and `PMA_PASSWORD` - define username and password to use only with the `config` authentication method - `PMA_ABSOLUTE_URI` - the full URL to phpMyAdmin. Sometimes needed when used in a reverse-proxy configuration. Don't set this unless needed. See [documentation](https://docs.phpmyadmin.net/en/latest/config.html#cfg_PmaAbsoluteUri). - `PMA_CONFIG_BASE64` - if set, this option will override the default `config.inc.php` with the base64 decoded contents of the variable @@ -126,6 +169,7 @@ Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.ex - `MAX_EXECUTION_TIME` - if set, will override the maximum execution time in seconds (default 600) for phpMyAdmin ([$cfg['ExecTimeLimit']](https://docs.phpmyadmin.net/en/latest/config.html#cfg_ExecTimeLimit)) and PHP [max_execution_time](https://www.php.net/manual/en/info.configuration.php#ini.max-execution-time) (format as `[0-9+]`) - `MEMORY_LIMIT` - if set, will override the memory limit (default 512M) for phpMyAdmin ([$cfg['MemoryLimit']](https://docs.phpmyadmin.net/en/latest/config.html#cfg_MemoryLimit)) and PHP [memory_limit](https://www.php.net/manual/en/ini.core.php#ini.memory-limit) (format as `[0-9+](K,M,G)` where K is for Kilobytes, M for Megabytes, G for Gigabytes and 1K = 1024 bytes) - `UPLOAD_LIMIT` - if set, this option will override the default value for apache and php-fpm (format as `[0-9+](K,M,G)` default value is 2048K, this will change `upload_max_filesize` and `post_max_size` values) +- `TZ` - if defined, this option will change the default PHP `date.timezone` from `UTC`. See [documentation](https://www.php.net/manual/en/timezones.php) for supported values. - `HIDE_PHP_VERSION` - if defined, this option will hide the PHP version (`expose_php = Off`). Set to any value (such as `HIDE_PHP_VERSION=true`). - `APACHE_PORT` - if defined, this option will change the default Apache port from `80` in case you want it to run on a different port like an unprivileged port. Set to any port value (such as `APACHE_PORT=8090`) @@ -135,6 +179,19 @@ For usage with Docker secrets, appending `_FILE` to the `PMA_PASSWORD` environme docker run --name phpmyadmin -d -e PMA_PASSWORD_FILE=/run/secrets/db_password.txt -p 8080:80 %%IMAGE%% ``` +#### Variables that can store the file contents using `_BASE64` + +- `PMA_SSL_CA` +- `PMA_SSL_CAS` +- `PMA_SSL_KEY` +- `PMA_SSL_KEYS` +- `PMA_SSL_CERT` +- `PMA_SSL_CERTS` + +Also includes: `PMA_CONFIG_BASE64` or `PMA_USER_CONFIG_BASE64`. + +For example, the variable would be named `PMA_SSL_CA_BASE64` and the value is the base64 encoded contents of the file. + #### Variables that can be read from a file using `_FILE` - `MYSQL_ROOT_PASSWORD` diff --git a/phpmyadmin/metadata.json b/phpmyadmin/metadata.json index 3d3937b21fb1..68932ac9ba2d 100644 --- a/phpmyadmin/metadata.json +++ b/phpmyadmin/metadata.json @@ -1,7 +1,8 @@ { "hub": { "categories": [ - "databases-and-storage" + "databases-and-storage", + "developer-tools" ] } } diff --git a/phpmyadmin/stack.yml b/phpmyadmin/stack.yml index 4912da59794e..b3110239483d 100644 --- a/phpmyadmin/stack.yml +++ b/phpmyadmin/stack.yml @@ -2,7 +2,7 @@ version: '3.1' services: db: - image: mariadb:10.6 + image: mariadb:10.11 restart: always environment: MYSQL_ROOT_PASSWORD: notSecureChangeMe From be8ca9fb3188dfb05f2bc3fc18f2683e6bd3642c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Jan 2025 10:09:29 -0800 Subject: [PATCH 1817/2686] Run update.sh --- backdrop/README.md | 4 +-- phpmyadmin/README.md | 65 +++++++++++++++++++++++++++++++++++++++++--- xwiki/README.md | 6 ++-- 3 files changed, 66 insertions(+), 9 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index 322fe705665c..cd83bcc290a8 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.3`, `1.29`, `1`, `1.29.3-apache`, `1.29-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/65dad6f2ee2a86b28b14d9dbf1578c62018cd681/1/apache/Dockerfile) +- [`1.30.0`, `1.30`, `1`, `1.30.0-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/eec73e9b23f76ffc609be7cdaf27afeccdd91732/1/apache/Dockerfile) -- [`1.29.3-fpm`, `1.29-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/65dad6f2ee2a86b28b14d9dbf1578c62018cd681/1/fpm/Dockerfile) +- [`1.30.0-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/eec73e9b23f76ffc609be7cdaf27afeccdd91732/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 2787e5f639df..dd85577182c2 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -59,7 +59,7 @@ Run phpMyAdmin with Alpine, Apache and PHP FPM. # How to use this image -All of the following examples will bring you phpMyAdmin on `http://localhost:8080` where you can enjoy your happy MySQL administration. +All of the following examples will bring you phpMyAdmin on `http://localhost:8080` where you can enjoy your happy MySQL and MariaDB administration. ## Credentials @@ -113,7 +113,7 @@ You can use arbitrary servers by adding the environment variable `PMA_ARBITRARY= docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 phpmyadmin ``` -## Usage with Docker Compose and arbitrary server +## Usage with `docker compose` and an arbitrary server This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. @@ -126,7 +126,7 @@ version: '3.1' services: db: - image: mariadb:10.6 + image: mariadb:10.11 restart: always environment: MYSQL_ROOT_PASSWORD: notSecureChangeMe @@ -140,7 +140,7 @@ services: - PMA_ARBITRARY=1 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/6372937f8f1ff823d2aaa102762be5bb5cd87f40/phpmyadmin/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9154b40d2603d9776b07f7b0d2a70806d1fbebea/phpmyadmin/stack.yml) ## Adding Custom Configuration @@ -171,10 +171,40 @@ See the following links for config file information: - https://docs.phpmyadmin.net/en/latest/config.html#config - https://docs.phpmyadmin.net/en/latest/setup.html +## Adding custom configuration in `/etc/phpmyadmin/conf.d` + +you can also consider storing your custom configuration files in the folder `/etc/phpmyadmin/conf.d`, which is very suitable for managing multiple phpMyAdmin configuration files for different hosts,Then you can create `server-1.php`, `server-2.php`, or any file name you want, and store them in the conf.d directory mounted on the host. + +On the `docker run` line like this: + +```sh +docker run --name phpmyadmin -d --link mysql_db_server:db -p 8080:80 -v /some/local/directory/conf.d:/etc/phpmyadmin/conf.d:ro phpmyadmin +``` + ## Usage behind a reverse proxy Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.example.net/`) where the reverse proxy makes phpMyAdmin available. +## Sessions persistence + +In order to keep your sessions active between container updates you will need to mount the `/sessions` folder. + +```sh +-v /some/local/directory/sessions:/sessions:rw +``` + +## Connect to the database over SSL + +Set the variable `PMA_SSL` to `1` to enable SSL usage from phpMyAdmin to the MySQL server. The default value is `0`. The variable `PMA_SSLS` can be used as a comma seperated sequence of `0` and `1` where multiple hosts are mentioned. Values order must follow the `PMA_HOSTS` and will be computed accordingly. + +```sh +docker run --name phpmyadmin -d -e PMA_HOSTS=sslhost -e PMA_SSL=1 -p 8080:80 phpmyadmin +``` + +```sh +docker run --name phpmyadmin -d -e PMA_HOSTS='sslhost,nosslhost' -e PMA_SSLS='1,0' -p 8080:80 phpmyadmin +``` + ## Environment variables summary - `PMA_ARBITRARY` - when set to 1 connection to the arbitrary server will be allowed @@ -184,6 +214,19 @@ Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.ex - `PMA_HOSTS` - define comma separated list of address/host names of the MySQL servers - `PMA_VERBOSES` - define comma separated list of verbose names of the MySQL servers - `PMA_PORTS` - define comma separated list of ports of the MySQL servers +- `PMA_SOCKET` - define socket file for the MySQL connection +- `PMA_SOCKETS` - define comma separated list of socket files for the MySQL connections +- `PMA_SSL_DIR` - define the path used for SSL files generated from environement variables, default value is `/etc/phpmyadmin/ssl` +- `PMA_SSL` - when set to 1, defines SSL usage for the MySQL connection +- `PMA_SSLS` - comma separated list of `0` and `1` defining SSL usage for the corresponding MySQL connections +- `PMA_SSL_VERIFY` - when set to 1, enables SSL certificate verification for the MySQL connection. +- `PMA_SSL_VERIFIES` - comma-separated list of `0` and `1` to enable or disable SSL certificate verification for multiple MySQL connections. +- `PMA_SSL_CA` - in the context of mutual TLS security, allows setting your CA certificate file as a string inside the default `config.inc.php`. +- `PMA_SSL_CAS` - in the context of mutual TLS security, allows setting multiple CA certificate files as a comma-separated list of strings inside the default `config.inc.php`. +- `PMA_SSL_CERT` - in the context of mutual TLS security, allows setting your certificate file as a string inside the default `config.inc.php`. +- `PMA_SSL_CERTS` - in the context of mutual TLS security, allows setting multiple certificate files as a comma-separated list of strings inside the default `config.inc.php`. +- `PMA_SSL_KEY` - in the context of mutual TLS security, allows setting your private key file as a string inside the default `config.inc.php`. +- `PMA_SSL_KEYS` - in the context of mutual TLS security, allows setting multiple private key files as a comma-separated list of strings inside the default `config.inc.php`. - `PMA_USER` and `PMA_PASSWORD` - define username and password to use only with the `config` authentication method - `PMA_ABSOLUTE_URI` - the full URL to phpMyAdmin. Sometimes needed when used in a reverse-proxy configuration. Don't set this unless needed. See [documentation](https://docs.phpmyadmin.net/en/latest/config.html#cfg_PmaAbsoluteUri). - `PMA_CONFIG_BASE64` - if set, this option will override the default `config.inc.php` with the base64 decoded contents of the variable @@ -200,6 +243,7 @@ Set the variable `PMA_ABSOLUTE_URI` to the fully-qualified path (`https://pma.ex - `MAX_EXECUTION_TIME` - if set, will override the maximum execution time in seconds (default 600) for phpMyAdmin ([$cfg['ExecTimeLimit']](https://docs.phpmyadmin.net/en/latest/config.html#cfg_ExecTimeLimit)) and PHP [max_execution_time](https://www.php.net/manual/en/info.configuration.php#ini.max-execution-time) (format as `[0-9+]`) - `MEMORY_LIMIT` - if set, will override the memory limit (default 512M) for phpMyAdmin ([$cfg['MemoryLimit']](https://docs.phpmyadmin.net/en/latest/config.html#cfg_MemoryLimit)) and PHP [memory_limit](https://www.php.net/manual/en/ini.core.php#ini.memory-limit) (format as `[0-9+](K,M,G)` where K is for Kilobytes, M for Megabytes, G for Gigabytes and 1K = 1024 bytes) - `UPLOAD_LIMIT` - if set, this option will override the default value for apache and php-fpm (format as `[0-9+](K,M,G)` default value is 2048K, this will change `upload_max_filesize` and `post_max_size` values) +- `TZ` - if defined, this option will change the default PHP `date.timezone` from `UTC`. See [documentation](https://www.php.net/manual/en/timezones.php) for supported values. - `HIDE_PHP_VERSION` - if defined, this option will hide the PHP version (`expose_php = Off`). Set to any value (such as `HIDE_PHP_VERSION=true`). - `APACHE_PORT` - if defined, this option will change the default Apache port from `80` in case you want it to run on a different port like an unprivileged port. Set to any port value (such as `APACHE_PORT=8090`) @@ -209,6 +253,19 @@ For usage with Docker secrets, appending `_FILE` to the `PMA_PASSWORD` environme docker run --name phpmyadmin -d -e PMA_PASSWORD_FILE=/run/secrets/db_password.txt -p 8080:80 phpmyadmin ``` +#### Variables that can store the file contents using `_BASE64` + +- `PMA_SSL_CA` +- `PMA_SSL_CAS` +- `PMA_SSL_KEY` +- `PMA_SSL_KEYS` +- `PMA_SSL_CERT` +- `PMA_SSL_CERTS` + +Also includes: `PMA_CONFIG_BASE64` or `PMA_USER_CONFIG_BASE64`. + +For example, the variable would be named `PMA_SSL_CA_BASE64` and the value is the base64 encoded contents of the file. + #### Variables that can be read from a file using `_FILE` - `MYSQL_ROOT_PASSWORD` diff --git a/xwiki/README.md b/xwiki/README.md index 2c579676f21d..cb4e3fc0fe2e 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.2-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.15`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.15-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mysql-tomcat/Dockerfile) +- [`15`, `15.10`, `15.10.16`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.16-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.15-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/postgres-tomcat/Dockerfile) +- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.16-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.15-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c66e808ef276252268d4da9854438ca0357a485b/15/mariadb-tomcat/Dockerfile) +- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.16-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) From b6f18091b65e9f1e7108da489dcee1a4938a2923 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Jan 2025 14:09:29 -0800 Subject: [PATCH 1818/2686] Run update.sh --- golang/README.md | 108 +++++++++++++++++++++++------------------------ 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/golang/README.md b/golang/README.md index 4ad0274bca4a..4398ceac9edf 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,103 +28,103 @@ WARNING: ## Simple Tags -- [`1.24rc1-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bookworm/Dockerfile) +- [`1.24rc2-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bookworm/Dockerfile) -- [`1.24rc1-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bullseye/Dockerfile) +- [`1.24rc2-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bullseye/Dockerfile) -- [`1.24rc1-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc1-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/alpine3.21/Dockerfile) +- [`1.24rc2-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc2-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/alpine3.21/Dockerfile) -- [`1.24rc1-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/alpine3.20/Dockerfile) +- [`1.24rc2-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/alpine3.20/Dockerfile) -- [`1.24rc1-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24rc2-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24rc1-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.24rc2-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.24rc1-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24rc2-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24rc1-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-1809/Dockerfile) +- [`1.24rc2-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) -- [`1.23.4-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) +- [`1.23.5-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bookworm/Dockerfile) -- [`1.23.4-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bullseye/Dockerfile) +- [`1.23.5-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bullseye/Dockerfile) -- [`1.23.4-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.4-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/8e03f834d58f58e01b504a9ddd4e672173720f81/1.23/alpine3.21/Dockerfile) +- [`1.23.5-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.5-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/alpine3.21/Dockerfile) -- [`1.23.4-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/alpine3.20/Dockerfile) +- [`1.23.5-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/alpine3.20/Dockerfile) -- [`1.23.4-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.5-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.4-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.5-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.4-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.5-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.4-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.5-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.10-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bookworm/Dockerfile) +- [`1.22.11-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bookworm/Dockerfile) -- [`1.22.10-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bullseye/Dockerfile) +- [`1.22.11-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bullseye/Dockerfile) -- [`1.22.10-alpine3.21`, `1.22-alpine3.21`, `1.22.10-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/8e03f834d58f58e01b504a9ddd4e672173720f81/1.22/alpine3.21/Dockerfile) +- [`1.22.11-alpine3.21`, `1.22-alpine3.21`, `1.22.11-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/alpine3.21/Dockerfile) -- [`1.22.10-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/alpine3.20/Dockerfile) +- [`1.22.11-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/alpine3.20/Dockerfile) -- [`1.22.10-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.11-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.10-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.11-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.10-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.11-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.10-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.11-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.24rc1`, `1.24-rc`: +- `1.24rc2`, `1.24-rc`: - - [`1.24rc1-bookworm`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/bookworm/Dockerfile) - - [`1.24rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24rc2-bookworm`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bookworm/Dockerfile) + - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- `1.24rc1-windowsservercore`, `1.24-rc-windowsservercore`: +- `1.24rc2-windowsservercore`, `1.24-rc-windowsservercore`: - - [`1.24rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- `1.24rc1-nanoserver`, `1.24-rc-nanoserver`: +- `1.24rc2-nanoserver`, `1.24-rc-nanoserver`: - - [`1.24rc1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24rc1-nanoserver-1809`](https://github.com/docker-library/golang/blob/4c8553a8cef426a0492f462eb51666e24a86007a/1.24-rc/windows/nanoserver-1809/Dockerfile) + - [`1.24rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) -- `1.23.4`, `1.23`, `1`, `latest`: +- `1.23.5`, `1.23`, `1`, `latest`: - - [`1.23.4-bookworm`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/bookworm/Dockerfile) - - [`1.23.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.5-bookworm`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bookworm/Dockerfile) + - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.4-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.5-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.4-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.4-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.5-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.4-nanoserver-1809`](https://github.com/docker-library/golang/blob/7db81882d183714657225ba6081ce0e9a0db9b75/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.10`, `1.22`: +- `1.22.11`, `1.22`: - - [`1.22.10-bookworm`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/bookworm/Dockerfile) - - [`1.22.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.11-bookworm`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bookworm/Dockerfile) + - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.10-windowsservercore`, `1.22-windowsservercore`: +- `1.22.11-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.10-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.10-nanoserver`, `1.22-nanoserver`: +- `1.22.11-nanoserver`, `1.22-nanoserver`: - - [`1.22.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.10-nanoserver-1809`](https://github.com/docker-library/golang/blob/d4dc5390de500bed26f0728a3458580e65f5b6c4/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 06cf199c0367119c3509b6a06cca9b70d46a2474 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Jan 2025 16:09:33 -0800 Subject: [PATCH 1819/2686] Run update.sh --- docker/README.md | 10 +++++----- liquibase/README.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/README.md b/docker/README.md index a68f4679bc5c..aeb934767a73 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/cli/Dockerfile) +- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/cli/Dockerfile) - [`27.5.0-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.0-dind-alpine3.21`, `27.5.0`, `27.5`, `27`, `latest`, `27.5.0-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind/Dockerfile) - [`27.5.0-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind-rootless/Dockerfile) -- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.5.0-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/liquibase/README.md b/liquibase/README.md index c5ad5e86b186..4ef6d6a1ebab 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.30`, `4.30.0`, `latest`](https://github.com/liquibase/docker/blob/f86be8a84c919e1c3a6c8d9f9917cf3ee1c3f455/Dockerfile) +- [`4.31`, `4.31.0`, `latest`](https://github.com/liquibase/docker/blob/ff5441b137e517f983ab09869f3b1a956f0c839a/Dockerfile) -- [`4.30-alpine`, `4.30.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/f86be8a84c919e1c3a6c8d9f9917cf3ee1c3f455/Dockerfile.alpine) +- [`4.31-alpine`, `4.31.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/ff5441b137e517f983ab09869f3b1a956f0c839a/Dockerfile.alpine) # Quick reference (cont.) From ffbaa369d36c5db1b83449f776a5111fb9f50345 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Jan 2025 17:09:30 -0800 Subject: [PATCH 1820/2686] Run update.sh --- php/README.md | 56 +++++++++++++-------------------------------------- 1 file changed, 14 insertions(+), 42 deletions(-) diff --git a/php/README.md b/php/README.md index a9f848220274..64baa91ce30a 100644 --- a/php/README.md +++ b/php/README.md @@ -80,61 +80,33 @@ WARNING: - [`8.4.2-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/zts/Dockerfile) -- [`8.3.16RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.16RC1-bookworm`, `8.3-rc-bookworm`, `8.3.16RC1-cli`, `8.3-rc-cli`, `8.3.16RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.16-cli-bookworm`, `8.3-cli-bookworm`, `8.3.16-bookworm`, `8.3-bookworm`, `8.3.16-cli`, `8.3-cli`, `8.3.16`, `8.3`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/cli/Dockerfile) -- [`8.3.16RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.16RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.16-apache-bookworm`, `8.3-apache-bookworm`, `8.3.16-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/apache/Dockerfile) -- [`8.3.16RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.16RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.16-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.16-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/fpm/Dockerfile) -- [`8.3.16RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.16RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.16-zts-bookworm`, `8.3-zts-bookworm`, `8.3.16-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/zts/Dockerfile) -- [`8.3.16RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.16RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.16-cli-bullseye`, `8.3-cli-bullseye`, `8.3.16-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/cli/Dockerfile) -- [`8.3.16RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.16-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/apache/Dockerfile) -- [`8.3.16RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.16-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/fpm/Dockerfile) -- [`8.3.16RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.16-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/zts/Dockerfile) -- [`8.3.16RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.16RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.16RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.16RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.3.16-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.16-alpine3.21`, `8.3-alpine3.21`, `8.3.16-cli-alpine`, `8.3-cli-alpine`, `8.3.16-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.16RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.16RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.3.16-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.16-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.16RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.16RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.3.16-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.16-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/zts/Dockerfile) -- [`8.3.16RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.16RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.16-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.16-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.16RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.16-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.16RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/f1d6524a68be3ab942fa0922666f38752a8c0fbe/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.15-cli-bookworm`, `8.3-cli-bookworm`, `8.3.15-bookworm`, `8.3-bookworm`, `8.3.15-cli`, `8.3-cli`, `8.3.15`, `8.3`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/cli/Dockerfile) - -- [`8.3.15-apache-bookworm`, `8.3-apache-bookworm`, `8.3.15-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/apache/Dockerfile) - -- [`8.3.15-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.15-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.15-zts-bookworm`, `8.3-zts-bookworm`, `8.3.15-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bookworm/zts/Dockerfile) - -- [`8.3.15-cli-bullseye`, `8.3-cli-bullseye`, `8.3.15-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/cli/Dockerfile) - -- [`8.3.15-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/apache/Dockerfile) - -- [`8.3.15-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.15-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/bullseye/zts/Dockerfile) - -- [`8.3.15-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.15-alpine3.21`, `8.3-alpine3.21`, `8.3.15-cli-alpine`, `8.3-cli-alpine`, `8.3.15-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.15-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.15-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.15-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.15-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.15-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.15-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.15-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.15-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/0ac0413de15ea852ec00e1f4765c6b0ce0666ee3/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.16-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/zts/Dockerfile) - [`8.2.27-cli-bookworm`, `8.2-cli-bookworm`, `8.2.27-bookworm`, `8.2-bookworm`, `8.2.27-cli`, `8.2-cli`, `8.2.27`, `8.2`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/cli/Dockerfile) From 26d07a20847e9c9ee1fa755d80779ad3a8d35b2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Jan 2025 07:09:27 -0800 Subject: [PATCH 1821/2686] Run update.sh --- ruby/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index 5948950c5a88..3f2a12fcb726 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/alpine3.20/Dockerfile) -- [`3.3.6-bookworm`, `3.3-bookworm`, `3.3.6`, `3.3`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/bookworm/Dockerfile) +- [`3.3.7-bookworm`, `3.3-bookworm`, `3.3.7`, `3.3`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/bookworm/Dockerfile) -- [`3.3.6-slim-bookworm`, `3.3-slim-bookworm`, `3.3.6-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/slim-bookworm/Dockerfile) +- [`3.3.7-slim-bookworm`, `3.3-slim-bookworm`, `3.3.7-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/slim-bookworm/Dockerfile) -- [`3.3.6-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/bullseye/Dockerfile) +- [`3.3.7-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/bullseye/Dockerfile) -- [`3.3.6-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/slim-bullseye/Dockerfile) +- [`3.3.7-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/slim-bullseye/Dockerfile) -- [`3.3.6-alpine3.21`, `3.3-alpine3.21`, `3.3.6-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/alpine3.21/Dockerfile) +- [`3.3.7-alpine3.21`, `3.3-alpine3.21`, `3.3.7-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/alpine3.21/Dockerfile) -- [`3.3.6-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.3/alpine3.20/Dockerfile) +- [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/alpine3.20/Dockerfile) - [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/bookworm/Dockerfile) From 3b0702b69f82a4cf0f4e96382f9256c1693d77f5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Jan 2025 09:09:33 -0800 Subject: [PATCH 1822/2686] Run update.sh --- nextcloud/README.md | 18 +++++++-------- php/README.md | 56 ++++++++++++--------------------------------- 2 files changed, 23 insertions(+), 51 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 8a1177f4beac..a1e4ce6311b3 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.14-apache`, `28.0-apache`, `28-apache`, `28.0.14`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/apache/Dockerfile) +- [`28.0.14-apache`, `28.0-apache`, `28-apache`, `28.0.14`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/apache/Dockerfile) -- [`28.0.14-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/fpm/Dockerfile) +- [`28.0.14-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/fpm/Dockerfile) -- [`28.0.14-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/28/fpm-alpine/Dockerfile) +- [`28.0.14-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/fpm-alpine/Dockerfile) -- [`29.0.10-apache`, `29.0-apache`, `29-apache`, `29.0.10`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/apache/Dockerfile) +- [`29.0.11-apache`, `29.0-apache`, `29-apache`, `29.0.11`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/apache/Dockerfile) -- [`29.0.10-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/fpm/Dockerfile) +- [`29.0.11-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/fpm/Dockerfile) -- [`29.0.10-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/99ddd0978372e6dc17e4d923b33e543aae7eee35/29/fpm-alpine/Dockerfile) +- [`29.0.11-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/fpm-alpine/Dockerfile) -- [`30.0.4-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.4`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/apache/Dockerfile) +- [`30.0.5-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.5`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/apache/Dockerfile) -- [`30.0.4-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/fpm/Dockerfile) +- [`30.0.5-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/fpm/Dockerfile) -- [`30.0.4-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f4138903323bfb04326373804ea3dbbd4ffe94e4/30/fpm-alpine/Dockerfile) +- [`30.0.5-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 64baa91ce30a..814848f1d327 100644 --- a/php/README.md +++ b/php/README.md @@ -24,61 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.3RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.3RC1-bookworm`, `8.4-rc-bookworm`, `8.4.3RC1-cli`, `8.4-rc-cli`, `8.4.3RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.3-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.3-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.3-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.3`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/cli/Dockerfile) -- [`8.4.3RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.3RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.3-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.3-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/apache/Dockerfile) -- [`8.4.3RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.3RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.3-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.3-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/fpm/Dockerfile) -- [`8.4.3RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.3RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.3-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.3-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/zts/Dockerfile) -- [`8.4.3RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.3RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.3-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.3-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/cli/Dockerfile) -- [`8.4.3RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.3-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/apache/Dockerfile) -- [`8.4.3RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.3-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/fpm/Dockerfile) -- [`8.4.3RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.3-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/zts/Dockerfile) -- [`8.4.3RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.3RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.3RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.3RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.3-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.3-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.3-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.3-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.3RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.3RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.3-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.3-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.3RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.3RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.3-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.3-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.3RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.3RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.3-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.3-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.3RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.3-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.3RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/75a0c3c716c3d4f64800ccf098142ecd751197f8/8.4-rc/alpine3.20/zts/Dockerfile) - -- [`8.4.2-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.2-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.2-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.2`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/cli/Dockerfile) - -- [`8.4.2-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.2-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/apache/Dockerfile) - -- [`8.4.2-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.2-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/fpm/Dockerfile) - -- [`8.4.2-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.2-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bookworm/zts/Dockerfile) - -- [`8.4.2-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.2-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/cli/Dockerfile) - -- [`8.4.2-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/apache/Dockerfile) - -- [`8.4.2-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/fpm/Dockerfile) - -- [`8.4.2-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/bullseye/zts/Dockerfile) - -- [`8.4.2-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.2-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.2-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.2-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/cli/Dockerfile) - -- [`8.4.2-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.2-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/fpm/Dockerfile) - -- [`8.4.2-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.2-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.21/zts/Dockerfile) - -- [`8.4.2-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.2-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/cli/Dockerfile) - -- [`8.4.2-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/fpm/Dockerfile) - -- [`8.4.2-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/02b23e01f116224fb7a6969cc13a7cf91d1e6617/8.4/alpine3.20/zts/Dockerfile) +- [`8.4.3-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/zts/Dockerfile) - [`8.3.16-cli-bookworm`, `8.3-cli-bookworm`, `8.3.16-bookworm`, `8.3-bookworm`, `8.3.16-cli`, `8.3-cli`, `8.3.16`, `8.3`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/cli/Dockerfile) From 96b0f40bacd4dde1c609b9a9014dbe055d37372b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Jan 2025 10:09:15 -0800 Subject: [PATCH 1823/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f7eb072cfe15..2d17ea108df7 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.106.1`, `5.106`, `5`, `latest`](https://github.com/docker-library/ghost/blob/29520866c9804614cae9b6b7bbcdd8d0ec81523e/5/debian/Dockerfile) +- [`5.107.0`, `5.107`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a4a553476e3ea77ff1b9b143f0c29a163c12932f/5/debian/Dockerfile) -- [`5.106.1-alpine`, `5.106-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/29520866c9804614cae9b6b7bbcdd8d0ec81523e/5/alpine/Dockerfile) +- [`5.107.0-alpine`, `5.107-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a4a553476e3ea77ff1b9b143f0c29a163c12932f/5/alpine/Dockerfile) # Quick reference (cont.) From 94f6aaa9f3024c5f1c136e09eb06e6b10d2d3300 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Jan 2025 16:09:22 -0800 Subject: [PATCH 1824/2686] Run update.sh --- rocket.chat/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index f39dbc18ee63..fec38ecf5cde 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.0`, `7.2`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/99862fe664b97bd447a40d9761e43aae9101b569/7.2/Dockerfile) +- [`7.2.1`, `7.2`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.2/Dockerfile) -- [`7.1.0`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/7.1/Dockerfile) +- [`7.1.1`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.1/Dockerfile) -- [`7.0.4`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/d787d62046698f16412c3debcb1cc257f301e47e/7.0/Dockerfile) +- [`7.0.5`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) From a4fa96c19333737b9de722ed92068227f4d77628 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 10:09:17 -0800 Subject: [PATCH 1825/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 2b69be171247..6136888159c4 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.base) +- [`latest`, `base`, `base-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.base) -- [`base-devel`, `base-devel-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250112.0.297543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78c58d6f2c8da9516147d784817e91c557d24d33/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.multilib-devel) # Quick reference (cont.) From aeb2b018e4361ed8173fd031e851ae69d10c04e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 11:09:27 -0800 Subject: [PATCH 1826/2686] Run update.sh --- clearlinux/README.md | 2 +- elasticsearch/README.md | 4 ++-- gradle/README.md | 48 ++++++++++++++++++++--------------------- jruby/README.md | 32 +++++++++++++-------------- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- neo4j/README.md | 8 +++---- photon/README.md | 2 +- redis/README.md | 4 ++-- sonarqube/README.md | 20 ++++++++--------- spiped/README.md | 2 +- 11 files changed, 65 insertions(+), 65 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index d81460f8010d..128beccc45ce 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/66696cc399a15d4af023b6533983110081f2de00/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/758add1a2635a92a2ea4a9fd0d1ffdf5c9dad258/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 7e4c8bbc5f2d..9e3266e51e08 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/elasticsearch/Dockerfile) +- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/elasticsearch/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/elasticsearch/Dockerfile) -- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/elasticsearch/Dockerfile) +- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index a6db86f389e6..55830419ea0a 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.0-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.0-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8/Dockerfile) +- [`8.12.0-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.0-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8/Dockerfile) -- [`8.12.0-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8-focal/Dockerfile) +- [`8.12.0-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8-focal/Dockerfile) -- [`8.12.0-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.0-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk8-corretto/Dockerfile) +- [`8.12.0-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.0-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8-corretto/Dockerfile) -- [`8.12.0-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.0-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11/Dockerfile) +- [`8.12.0-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.0-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11/Dockerfile) -- [`8.12.0-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-focal/Dockerfile) +- [`8.12.0-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-focal/Dockerfile) -- [`8.12.0-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-alpine/Dockerfile) +- [`8.12.0-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-alpine/Dockerfile) -- [`8.12.0-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.0-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk11-corretto/Dockerfile) +- [`8.12.0-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.0-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-corretto/Dockerfile) -- [`8.12.0-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.0-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17/Dockerfile) +- [`8.12.0-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.0-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17/Dockerfile) -- [`8.12.0-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.0-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.0-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-focal/Dockerfile) +- [`8.12.0-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.0-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.0-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-focal/Dockerfile) -- [`8.12.0-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.0-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-alpine/Dockerfile) +- [`8.12.0-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.0-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-alpine/Dockerfile) -- [`8.12.0-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.0-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-corretto/Dockerfile) +- [`8.12.0-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.0-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-corretto/Dockerfile) -- [`8.12.0-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.0-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.0-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.0-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.0-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.0-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk17-graal/Dockerfile) +- [`8.12.0-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.0-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.0-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.0-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.0-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.0-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-graal/Dockerfile) -- [`8.12.0-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.0-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.0-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.0`, `8.12`, `8`, `8.12.0-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.0-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21/Dockerfile) +- [`8.12.0-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.0-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.0-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.0`, `8.12`, `8`, `8.12.0-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.0-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21/Dockerfile) -- [`8.12.0-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.0-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-alpine/Dockerfile) +- [`8.12.0-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.0-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-alpine/Dockerfile) -- [`8.12.0-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.0-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-corretto/Dockerfile) +- [`8.12.0-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.0-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-corretto/Dockerfile) -- [`8.12.0-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.0-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk21-graal/Dockerfile) +- [`8.12.0-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.0-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-graal/Dockerfile) -- [`8.12.0-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.0-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23/Dockerfile) +- [`8.12.0-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.0-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23/Dockerfile) -- [`8.12.0-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-alpine/Dockerfile) +- [`8.12.0-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-alpine/Dockerfile) -- [`8.12.0-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-corretto/Dockerfile) +- [`8.12.0-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-corretto/Dockerfile) -- [`8.12.0-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk23-graal/Dockerfile) +- [`8.12.0-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-graal/Dockerfile) -- [`8.12.0-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.0-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.0-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.0-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current/Dockerfile) +- [`8.12.0-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.0-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.0-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.0-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current/Dockerfile) -- [`8.12.0-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.0-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-alpine/Dockerfile) +- [`8.12.0-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.0-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-alpine/Dockerfile) -- [`8.12.0-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.0-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.0-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.0-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-corretto/Dockerfile) +- [`8.12.0-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.0-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.0-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.0-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-corretto/Dockerfile) -- [`8.12.0-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.0-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.0-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.0-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/85f69576482f57c9f9ef203a16059f4fafc0f33f/jdk-lts-and-current-graal/Dockerfile) +- [`8.12.0-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.0-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.0-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.0-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/jruby/README.md b/jruby/README.md index 22b9d6d98fc1..44249c051456 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.9`, `9.4-jre`, `9.4-jre8`, `9.4.9-jre`, `9.4.9-jre8`, `9.4.9.0`, `9.4.9.0-jre`, `9.4.9.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre8/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.10`, `9.4-jre`, `9.4-jre8`, `9.4.10-jre`, `9.4.10-jre8`, `9.4.10.0`, `9.4.10.0-jre`, `9.4.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.9-jdk`, `9.4.9-jdk8`, `9.4.9.0-jdk`, `9.4.9.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.10-jdk`, `9.4.10-jdk8`, `9.4.10.0-jdk`, `9.4.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.9-jre11`, `9.4.9.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.10-jre11`, `9.4.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.9-jdk11`, `9.4.9.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.10-jdk11`, `9.4.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.9-jdk17`, `9.4.9.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.10-jdk17`, `9.4.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.9-jre17`, `9.4.9.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.10-jre17`, `9.4.10.0-jre17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.9-jdk21`, `9.4.9.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.10-jdk21`, `9.4.10.0-jdk21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.9-jre21`, `9.4.9.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.10-jre21`, `9.4.10.0-jre21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc5da990167f44ed080694854b61d030a0c1e8cf/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 781c6d048e31..3b54acc66c78 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/kibana/Dockerfile) +- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/kibana/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/kibana/Dockerfile) -- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/kibana/Dockerfile) +- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 9de4bb307f79..05e8750a248d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.2`](https://github.com/elastic/dockerfiles/blob/cc6ff63bb905d1eb329d52a6769ddadbb87d1dc8/logstash/Dockerfile) +- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/logstash/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/logstash/Dockerfile) -- [`8.17.0`](https://github.com/elastic/dockerfiles/blob/81f3141716232ed68978121cee93fb360487b0a3/logstash/Dockerfile) +- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/logstash/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index df73df76d408..35239dd85da5 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.26.0-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.0-community`, `5.26-community`, `5-community`, `5.26.0-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.0`, `5.26`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/bullseye/community/Dockerfile) +- [`5.26.1-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.1-community`, `5.26-community`, `5-community`, `5.26.1-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.1`, `5.26`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/bullseye/community/Dockerfile) -- [`5.26.0-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.0-enterprise`, `5.26-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/bullseye/enterprise/Dockerfile) +- [`5.26.1-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.1-enterprise`, `5.26-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/bullseye/enterprise/Dockerfile) -- [`5.26.0-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.0-ubi9`, `5.26-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/ubi9/community/Dockerfile) +- [`5.26.1-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.1-ubi9`, `5.26-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/ubi9/community/Dockerfile) -- [`5.26.0-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f82529102b6fcdd531cd088947f374ac7467958a/5.26.0/ubi9/enterprise/Dockerfile) +- [`5.26.1-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/ubi9/enterprise/Dockerfile) - [`4.4.40`, `4.4.40-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/b8c0ca2e8dd585e338d74b191a2e370c0da14d92/4.4.40/bullseye/community/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 7fc50ea8c561..fee70704def9 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20250105`, `latest`](https://github.com/vmware/photon-docker-image/blob/8cf662232434dbda4abc7a715f6049cb64c0d645/docker/Dockerfile) -- [`4.0`, `4.0-20250105`](https://github.com/vmware/photon-docker-image/blob/3a3c4bb23d219cd7048c99870b7d372931c7c784/docker/Dockerfile) +- [`4.0`, `4.0-20250119`](https://github.com/vmware/photon-docker-image/blob/a33460d315cb79df67b055c2d20c58b0ce12a989/docker/Dockerfile) - [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 9a943e031a17..bd906c9afbfe 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M02-alpine`, `8.0-M02-alpine3.21`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/alpine/Dockerfile) +- [`8.0-M03-alpine`, `8.0-M03-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7109557d2a7612b292a6ff2712eba560dc5e70bc/alpine/Dockerfile) -- [`8.0-M02`, `8.0-M02-bookworm`](https://github.com/redis/docker-library-redis/blob/f1e991818a8124502b5a4e8e6c7f4ae23d0c7bb4/debian/Dockerfile) +- [`8.0-M03`, `8.0-M03-bookworm`](https://github.com/redis/docker-library-redis/blob/7109557d2a7612b292a6ff2712eba560dc5e70bc/debian/Dockerfile) - [`7.4.2`, `7.4`, `7`, `latest`, `7.4.2-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/debian/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 98e36f83570d..647d1b108b09 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/developer/Dockerfile) -- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/enterprise/Dockerfile) +- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/enterprise/Dockerfile) -- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/datacenter/app/Dockerfile) +- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/app/Dockerfile) -- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/9/datacenter/search/Dockerfile) +- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/search/Dockerfile) -- [`10.8.1-developer`, `10.8-developer`, `10-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/developer/Dockerfile) +- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/developer/Dockerfile) -- [`10.8.1-enterprise`, `10.8-enterprise`, `10-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/enterprise/Dockerfile) +- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/enterprise/Dockerfile) -- [`10.8.1-datacenter-app`, `10.8-datacenter-app`, `10-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/datacenter/app/Dockerfile) +- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/app/Dockerfile) -- [`10.8.1-datacenter-search`, `10.8-datacenter-search`, `10-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/10/datacenter/search/Dockerfile) +- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/search/Dockerfile) -- [`25.1.0.102122-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/2194a60cf0dbf5de11789389fddafb8002bd7d8a/community-build/Dockerfile) +- [`25.1.0.102122-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/community-build/Dockerfile) # Quick reference (cont.) diff --git a/spiped/README.md b/spiped/README.md index 2e971abf258e..a47aecabf74d 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) -- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2197b4c98a1ec5cf9f2203e660951aedbccc5d0d/1.6/alpine/Dockerfile) +- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/646ceea9c33a13927a6702bf413650b6e66cea39/1.6/alpine/Dockerfile) # Quick reference (cont.) From d68e6611195c44e079e849bff5a4c0a53379fec1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 12:09:16 -0800 Subject: [PATCH 1827/2686] Run update.sh --- docker/README.md | 10 +++++----- ghost/README.md | 4 ++-- golang/README.md | 21 +++++++++++++++++++++ 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/docker/README.md b/docker/README.md index aeb934767a73..6bed0fa8a8e4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/cli/Dockerfile) +- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/cli/Dockerfile) - [`27.5.0-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.0-dind-alpine3.21`, `27.5.0`, `27.5`, `27`, `latest`, `27.5.0-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind/Dockerfile) - [`27.5.0-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind-rootless/Dockerfile) -- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.5.0-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/188ce9e3ab5fe4aff074273041d4532fa870723d/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 2d17ea108df7..8edffbc81357 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.107.0`, `5.107`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a4a553476e3ea77ff1b9b143f0c29a163c12932f/5/debian/Dockerfile) +- [`5.107.2`, `5.107`, `5`, `latest`](https://github.com/docker-library/ghost/blob/981db336b107c8a85fbbfd3620dc4f27a3140cc9/5/debian/Dockerfile) -- [`5.107.0-alpine`, `5.107-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a4a553476e3ea77ff1b9b143f0c29a163c12932f/5/alpine/Dockerfile) +- [`5.107.2-alpine`, `5.107-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/981db336b107c8a85fbbfd3620dc4f27a3140cc9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 4398ceac9edf..013a2e25e9d5 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,10 +36,14 @@ WARNING: - [`1.24rc2-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/alpine3.20/Dockerfile) +- [`1.24rc2-windowsservercore-ltsc2025`, `1.24-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24rc2-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.24rc2-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.24rc2-nanoserver-ltsc2025`, `1.24-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24rc2-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.24rc2-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) @@ -52,10 +56,14 @@ WARNING: - [`1.23.5-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/alpine3.20/Dockerfile) +- [`1.23.5-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.5-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23.5-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.5-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.5-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.5-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) @@ -68,10 +76,14 @@ WARNING: - [`1.22.11-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/alpine3.20/Dockerfile) +- [`1.22.11-windowsservercore-ltsc2025`, `1.22-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.22.11-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.11-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.11-nanoserver-ltsc2025`, `1.22-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.22.11-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.11-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) @@ -81,48 +93,57 @@ WARNING: - `1.24rc2`, `1.24-rc`: - [`1.24rc2-bookworm`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bookworm/Dockerfile) + - [`1.24rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) - `1.24rc2-windowsservercore`, `1.24-rc-windowsservercore`: + - [`1.24rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) - `1.24rc2-nanoserver`, `1.24-rc-nanoserver`: + - [`1.24rc2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.24rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) - `1.23.5`, `1.23`, `1`, `latest`: - [`1.23.5-bookworm`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bookworm/Dockerfile) + - [`1.23.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.5-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + - [`1.23.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.5-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: + - [`1.23.5-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) - `1.22.11`, `1.22`: - [`1.22.11-bookworm`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bookworm/Dockerfile) + - [`1.22.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) - `1.22.11-windowsservercore`, `1.22-windowsservercore`: + - [`1.22.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) - `1.22.11-nanoserver`, `1.22-nanoserver`: + - [`1.22.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/nanoserver-ltsc2025/Dockerfile) - [`1.22.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) - [`1.22.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) From 9043e993c05505798a1fcba0fa966dcf2817da45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 14:09:21 -0800 Subject: [PATCH 1828/2686] Run update.sh --- phpmyadmin/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index dd85577182c2..89bb4c4e3962 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/apache/Dockerfile) +- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/fpm/Dockerfile) +- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/04de4ca2ba06220049eac53b15793fb9b481994a/fpm-alpine/Dockerfile) +- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/fpm-alpine/Dockerfile) # Quick reference (cont.) From cbe4b7755c7fcfc4aa5130eb5f9c69827ec44e62 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 15:09:26 -0800 Subject: [PATCH 1829/2686] Run update.sh --- composer/README.md | 6 +++--- solr/README.md | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/composer/README.md b/composer/README.md index 4a41a02d2896..e329ae5a5951 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/622faef5ee0410dfbd024d410b0e15a67edfd458/lts/Dockerfile) +- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/lts/Dockerfile) -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/eb723bde35d03aea01fc23ceef52ee837edc2b5f/legacy/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/legacy/Dockerfile) -- [`2.8.4`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/43d5c71ec3e05cc9c62afba25655d9f6fa0eb30d/latest/Dockerfile) +- [`2.8.5`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/96b3c5ba320daed850119bdb7834ab17e3f7093d/latest/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index 3fe4756f3391..87f409c5bd7c 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.7.0`, `9.7`, `9`, `latest`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7/Dockerfile) +- [`9.8.0`, `9.8`, `9`, `latest`](https://github.com/apache/solr-docker/blob/cd80b30b59886a4b71de8583e9990b8a31073e99/9.8/Dockerfile) -- [`9.7.0-slim`, `9.7-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7-slim/Dockerfile) +- [`9.8.0-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/cd80b30b59886a4b71de8583e9990b8a31073e99/9.8-slim/Dockerfile) -- [`9.6.1`, `9.6`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6/Dockerfile) +- [`9.7.0`, `9.7`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7/Dockerfile) -- [`9.6.1-slim`, `9.6-slim`](https://github.com/apache/solr-docker/blob/9cd850b72309de05169544395c83a85b329d6b86/9.6-slim/Dockerfile) +- [`9.7.0-slim`, `9.7-slim`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7-slim/Dockerfile) - [`8.11.4`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11/Dockerfile) From c125332d2e5eb2990e13cb372764e14a40c61747 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 16:09:16 -0800 Subject: [PATCH 1830/2686] Run update.sh --- mysql/README.md | 8 ++++---- openjdk/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index a11f5828b7de..ade3810b378f 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.0`, `9.1`, `9`, `innovation`, `latest`, `9.1.0-oraclelinux9`, `9.1-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.1.0-oracle`, `9.1-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/b7333451d7be9f066e43f9612e6bbe3751e548f1/innovation/Dockerfile.oracle) +- [`9.2.0`, `9.2`, `9`, `innovation`, `latest`, `9.2.0-oraclelinux9`, `9.2-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.2.0-oracle`, `9.2-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/2615551146c34430e70aa42db0fce7bab7be6654/innovation/Dockerfile.oracle) -- [`8.4.3`, `8.4`, `8`, `lts`, `8.4.3-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.3-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/8a0100a365707fa3e59d5b23defc64b9314c4bc7/8.4/Dockerfile.oracle) +- [`8.4.4`, `8.4`, `8`, `lts`, `8.4.4-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.4-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/42386a0efb57a032d707e822086feea263088ad9/8.4/Dockerfile.oracle) -- [`8.0.40`, `8.0`, `8.0.40-oraclelinux9`, `8.0-oraclelinux9`, `8.0.40-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/090eb25ac69bca920fc5320484bc35aac92a8143/8.0/Dockerfile.oracle) +- [`8.0.41`, `8.0`, `8.0.41-oraclelinux9`, `8.0-oraclelinux9`, `8.0.41-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/6978e12b0d46abf24015045bd22a0cf11b19c150/8.0/Dockerfile.oracle) -- [`8.0.40-bookworm`, `8.0-bookworm`, `8.0.40-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/090eb25ac69bca920fc5320484bc35aac92a8143/8.0/Dockerfile.debian) +- [`8.0.41-bookworm`, `8.0-bookworm`, `8.0.41-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/6978e12b0d46abf24015045bd22a0cf11b19c150/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 630fde99af32..83992435eeb9 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,23 +42,23 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-5-jdk-oraclelinux9`, `25-ea-5-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-5-jdk-oracle`, `25-ea-5-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-6-jdk-oraclelinux9`, `25-ea-6-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-6-jdk-oracle`, `25-ea-6-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-5-jdk-oraclelinux8`, `25-ea-5-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-6-jdk-oraclelinux8`, `25-ea-6-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-5-jdk-bookworm`, `25-ea-5-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/bookworm/Dockerfile) +- [`25-ea-6-jdk-bookworm`, `25-ea-6-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/bookworm/Dockerfile) -- [`25-ea-5-jdk-slim-bookworm`, `25-ea-5-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-5-jdk-slim`, `25-ea-5-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-6-jdk-slim-bookworm`, `25-ea-6-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-6-jdk-slim`, `25-ea-6-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-5-jdk-bullseye`, `25-ea-5-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/bullseye/Dockerfile) +- [`25-ea-6-jdk-bullseye`, `25-ea-6-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/bullseye/Dockerfile) -- [`25-ea-5-jdk-slim-bullseye`, `25-ea-5-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-6-jdk-slim-bullseye`, `25-ea-6-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-5-jdk-windowsservercore-ltsc2022`, `25-ea-5-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-6-jdk-windowsservercore-ltsc2022`, `25-ea-6-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-5-jdk-windowsservercore-1809`, `25-ea-5-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-6-jdk-windowsservercore-1809`, `25-ea-6-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-5-jdk-nanoserver-1809`, `25-ea-5-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-6-jdk-nanoserver-1809`, `25-ea-6-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-ea-31-jdk-oraclelinux9`, `24-ea-31-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-31-jdk-oracle`, `24-ea-31-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) @@ -80,20 +80,20 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-5-jdk`, `25-ea-5`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-6-jdk`, `25-ea-6`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-5-jdk-windowsservercore`, `25-ea-5-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-6-jdk-windowsservercore`, `25-ea-6-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-5-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-5-jdk-nanoserver`, `25-ea-5-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-6-jdk-nanoserver`, `25-ea-6-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-5-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/7090d5afa0016605bfbd86e88bb30b96c3ac0f44/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-ea-31-jdk`, `24-ea-31`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: From e2ec9d5e2eac3a4e951855deb8906d87b0d32f33 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 17:09:37 -0800 Subject: [PATCH 1831/2686] Run update.sh --- bash/README.md | 2 +- hello-world/README.md | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/bash/README.md b/bash/README.md index 3d3bcba67134..5c2927030033 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250109`, `devel`, `devel-20250109-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/cf93d1eb3fc3cead6f0d63b091a41ea1ddf3afb2/devel/Dockerfile) +- [`devel-20250117`, `devel`, `devel-20250117-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/908898685c361ccbf932353cf9aa9a763b3ee3a4/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/hello-world/README.md b/hello-world/README.md index 2a43e84868e9..a1eaa900843f 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -28,7 +28,9 @@ WARNING: ## Simple Tags -- [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) +- [`linux`](https://github.com/docker-library/hello-world/blob/a71acd2dfb8c21c8e42a8f926ce37c1ffbf8eae7/amd64/hello-world/Dockerfile) + +- [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) @@ -38,12 +40,14 @@ WARNING: - `latest`: - - [`linux`](https://github.com/docker-library/hello-world/blob/3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee/amd64/hello-world/Dockerfile) + - [`linux`](https://github.com/docker-library/hello-world/blob/a71acd2dfb8c21c8e42a8f926ce37c1ffbf8eae7/amd64/hello-world/Dockerfile) + - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) - `nanoserver`: + - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) From 0a8fa2082866196171347b0f5d002e7dcbe1ad5d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Jan 2025 22:09:24 -0800 Subject: [PATCH 1832/2686] Run update.sh --- hello-world/README.md | 2 +- hello-world/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hello-world/README.md b/hello-world/README.md index a1eaa900843f..3a550cab9f14 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -99,7 +99,7 @@ For more examples and ideas, visit: $ docker images hello-world REPOSITORY TAG IMAGE ID SIZE -hello-world latest d2c94e258dcb 13.26kB +hello-world latest 74cc54e27dc4 10.07kB ``` ![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/hello-world/logo.png) diff --git a/hello-world/content.md b/hello-world/content.md index 6fb8f3e68767..242556a522b1 100644 --- a/hello-world/content.md +++ b/hello-world/content.md @@ -27,7 +27,7 @@ For more examples and ideas, visit: $ docker images %%IMAGE%% REPOSITORY TAG IMAGE ID SIZE -hello-world latest d2c94e258dcb 13.26kB +hello-world latest 74cc54e27dc4 10.07kB ``` %%LOGO%% From 4dac071c7684c258f99ae82ea7f8dd6dd7c65c8d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Jan 2025 07:09:22 -0800 Subject: [PATCH 1833/2686] Run update.sh --- node/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index 0eeaa3803de7..323a7cbe57fa 100644 --- a/node/README.md +++ b/node/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.6-alpine3.20`, `23.6.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.6-alpine3.20`, `23.6.1-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.6-alpine`, `23.6-alpine3.21`, `23.6.0-alpine`, `23.6.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.6-alpine`, `23.6-alpine3.21`, `23.6.1-alpine`, `23.6.1-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.6`, `23.6-bookworm`, `23.6.0`, `23.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.6`, `23.6-bookworm`, `23.6.1`, `23.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.6-bookworm-slim`, `23.6-slim`, `23.6.0-bookworm-slim`, `23.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.6-bookworm-slim`, `23.6-slim`, `23.6.1-bookworm-slim`, `23.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.6-bullseye`, `23.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.6-bullseye`, `23.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.6-bullseye-slim`, `23.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.6-bullseye-slim`, `23.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.13-alpine3.20`, `22.13.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.13-alpine3.20`, `22.13.1-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.13-alpine`, `22.13-alpine3.21`, `22.13.0-alpine`, `22.13.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.13-alpine`, `22.13-alpine3.21`, `22.13.1-alpine`, `22.13.1-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.13`, `22.13-bookworm`, `22.13.0`, `22.13.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.13`, `22.13-bookworm`, `22.13.1`, `22.13.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.13-bookworm-slim`, `22.13-slim`, `22.13.0-bookworm-slim`, `22.13.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.13-bookworm-slim`, `22.13-slim`, `22.13.1-bookworm-slim`, `22.13.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.13-bullseye`, `22.13.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.13-bullseye`, `22.13.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.13-bullseye-slim`, `22.13.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/056ab875500526e5088b49131c258575bf7c35c0/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.13-bullseye-slim`, `22.13.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/alpine3.20/Dockerfile) +- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.2-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.1-alpine`, `20.18.1-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.2-alpine`, `20.18.2-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/alpine3.21/Dockerfile) -- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.1`, `20.18.1-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.2`, `20.18.2-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.1-bookworm-slim`, `20.18.1-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.2-bookworm-slim`, `20.18.2-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.18-bullseye`, `20.18.1-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.18-bullseye`, `20.18.2-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.1-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/4b3806368e98354d59c4787b46ec72603be13162/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.2-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bullseye-slim/Dockerfile) -- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.5-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/alpine3.20/Dockerfile) +- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.6-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/a2d83853f45a2de0ec832474b45e552f8cfeb6c4/18/alpine3.20/Dockerfile) -- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.5-alpine`, `18.20.5-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/12a54cd19fc05ecaf5a9aecc9e5280a37057835f/18/alpine3.21/Dockerfile) +- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.6-alpine`, `18.20.6-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/a2d83853f45a2de0ec832474b45e552f8cfeb6c4/18/alpine3.21/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.5`, `18.20.5-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bookworm/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.6`, `18.20.6-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.5-bookworm-slim`, `18.20.5-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.6-bookworm-slim`, `18.20.6-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.5-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bullseye/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.6-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.5-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e3a1285ed07039b9f6552ccec49a469a052fd0c6/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.6-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bullseye-slim/Dockerfile) # Quick reference (cont.) From 7840faa0f5e0fbc7fdef4e88504a4efbecc58156 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Jan 2025 10:09:30 -0800 Subject: [PATCH 1834/2686] Run update.sh --- eclipse-temurin/README.md | 198 +++++++++++++++++++++++++++----------- 1 file changed, 144 insertions(+), 54 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 412ba5cc2cf5..26358d98c0c6 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,15 +28,21 @@ WARNING: ## Simple Tags -- [`8u432-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/alpine/Dockerfile) +- [`8u432-b06-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/alpine/3.20/Dockerfile) -- [`8u432-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/focal/Dockerfile) +- [`8u432-b06-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u432-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/alpine/3.21/Dockerfile) -- [`8u432-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u432-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/focal/Dockerfile) -- [`8u432-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/noble/Dockerfile) +- [`8u432-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u432-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u432-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/noble/Dockerfile) + +- [`8u432-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubi/ubi9-minimal/Dockerfile) + +- [`8u432-b06-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8u432-b06-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`8u432-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -46,15 +52,21 @@ WARNING: - [`8u432-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u432-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/alpine/Dockerfile) +- [`8u432-b06-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/alpine/3.20/Dockerfile) + +- [`8u432-b06-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u432-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/alpine/3.21/Dockerfile) -- [`8u432-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/focal/Dockerfile) +- [`8u432-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/focal/Dockerfile) -- [`8u432-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/jammy/Dockerfile) +- [`8u432-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/jammy/Dockerfile) -- [`8u432-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/noble/Dockerfile) +- [`8u432-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/noble/Dockerfile) -- [`8u432-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u432-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubi/ubi9-minimal/Dockerfile) + +- [`8u432-b06-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8u432-b06-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`8u432-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -64,15 +76,21 @@ WARNING: - [`8u432-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.25_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/alpine/Dockerfile) +- [`11.0.25_9-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/alpine/3.20/Dockerfile) + +- [`11.0.25_9-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.25_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/alpine/3.21/Dockerfile) + +- [`11.0.25_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.25_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.25_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.25_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.25_9-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.25_9-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.25_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.25_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.25_9-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`11.0.25_9-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`11.0.25_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -82,15 +100,21 @@ WARNING: - [`11.0.25_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.25_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/alpine/Dockerfile) +- [`11.0.25_9-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/alpine/3.20/Dockerfile) + +- [`11.0.25_9-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.25_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/alpine/3.21/Dockerfile) + +- [`11.0.25_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/focal/Dockerfile) + +- [`11.0.25_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.25_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.25_9-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.25_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.25_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.25_9-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.25_9-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.25_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.25_9-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`11.0.25_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -100,15 +124,21 @@ WARNING: - [`11.0.25_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.13_11-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/alpine/Dockerfile) +- [`17.0.13_11-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/alpine/3.20/Dockerfile) + +- [`17.0.13_11-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.13_11-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/alpine/3.21/Dockerfile) + +- [`17.0.13_11-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/focal/Dockerfile) + +- [`17.0.13_11-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.13_11-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.13_11-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.13_11-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.13_11-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.13_11-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.13_11-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.13_11-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.13_11-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`17.0.13_11-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -118,15 +148,21 @@ WARNING: - [`17.0.13_11-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.13_11-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/alpine/Dockerfile) +- [`17.0.13_11-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/alpine/3.20/Dockerfile) -- [`17.0.13_11-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.13_11-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.13_11-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/alpine/3.21/Dockerfile) -- [`17.0.13_11-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.13_11-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.13_11-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.13_11-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.13_11-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.13_11-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/noble/Dockerfile) + +- [`17.0.13_11-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubi/ubi9-minimal/Dockerfile) + +- [`17.0.13_11-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`17.0.13_11-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`17.0.13_11-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -136,13 +172,19 @@ WARNING: - [`17.0.13_11-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.5_11-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/alpine/Dockerfile) +- [`21.0.5_11-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/alpine/3.20/Dockerfile) + +- [`21.0.5_11-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.5_11-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/alpine/3.21/Dockerfile) -- [`21.0.5_11-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.5_11-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.5_11-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.5_11-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.5_11-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.5_11-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubi/ubi9-minimal/Dockerfile) + +- [`21.0.5_11-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`21.0.5_11-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`21.0.5_11-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -152,13 +194,19 @@ WARNING: - [`21.0.5_11-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.5_11-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/alpine/Dockerfile) +- [`21.0.5_11-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/alpine/3.20/Dockerfile) + +- [`21.0.5_11-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.5_11-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/alpine/3.21/Dockerfile) + +- [`21.0.5_11-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.5_11-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.5_11-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.5_11-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.5_11-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.5_11-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.5_11-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`21.0.5_11-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`21.0.5_11-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -168,11 +216,17 @@ WARNING: - [`21.0.5_11-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) -- [`23.0.1_11-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/alpine/Dockerfile) +- [`23.0.1_11-jdk-alpine-3.20`, `23-jdk-alpine-3.20`, `23-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/alpine/3.20/Dockerfile) + +- [`23.0.1_11-jdk-alpine-3.21`, `23-jdk-alpine-3.21`, `23-alpine-3.21`, `23.0.1_11-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/alpine/3.21/Dockerfile) + +- [`23.0.1_11-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubuntu/noble/Dockerfile) + +- [`23.0.1_11-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubi/ubi9-minimal/Dockerfile) -- [`23.0.1_11-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubuntu/noble/Dockerfile) +- [`23.0.1_11-jdk-windowsservercore-ltsc2025`, `23-jdk-windowsservercore-ltsc2025`, `23-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.1_11-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubi/ubi9-minimal/Dockerfile) +- [`23.0.1_11-jdk-nanoserver-ltsc2025`, `23-jdk-nanoserver-ltsc2025`, `23-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`23.0.1_11-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) @@ -182,11 +236,17 @@ WARNING: - [`23.0.1_11-jdk-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`23.0.1_11-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/alpine/Dockerfile) +- [`23.0.1_11-jre-alpine-3.20`, `23-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/alpine/3.20/Dockerfile) + +- [`23.0.1_11-jre-alpine-3.21`, `23-jre-alpine-3.21`, `23.0.1_11-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/alpine/3.21/Dockerfile) + +- [`23.0.1_11-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubuntu/noble/Dockerfile) + +- [`23.0.1_11-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubi/ubi9-minimal/Dockerfile) -- [`23.0.1_11-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubuntu/noble/Dockerfile) +- [`23.0.1_11-jre-windowsservercore-ltsc2025`, `23-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.1_11-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubi/ubi9-minimal/Dockerfile) +- [`23.0.1_11-jre-nanoserver-ltsc2025`, `23-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`23.0.1_11-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) @@ -200,161 +260,191 @@ WARNING: - `8u432-b06-jdk`, `8-jdk`, `8`: - - [`8u432-b06-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/ubuntu/noble/Dockerfile) + - [`8u432-b06-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/noble/Dockerfile) + - [`8u432-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) - `8u432-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: + - [`8u432-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) - `8u432-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: + - [`8u432-b06-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`8u432-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`8u432-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) - `8u432-b06-jre`, `8-jre`: - - [`8u432-b06-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/ubuntu/noble/Dockerfile) + - [`8u432-b06-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/noble/Dockerfile) + - [`8u432-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) - `8u432-b06-jre-windowsservercore`, `8-jre-windowsservercore`: + - [`8u432-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) - `8u432-b06-jre-nanoserver`, `8-jre-nanoserver`: + - [`8u432-b06-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`8u432-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`8u432-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) - `11.0.25_9-jdk`, `11-jdk`, `11`: - - [`11.0.25_9-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) - `11.0.25_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: + - [`11.0.25_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) - `11.0.25_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: + - [`11.0.25_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`11.0.25_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.25_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) - `11.0.25_9-jre`, `11-jre`: - - [`11.0.25_9-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.25_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) - `11.0.25_9-jre-windowsservercore`, `11-jre-windowsservercore`: + - [`11.0.25_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) - `11.0.25_9-jre-nanoserver`, `11-jre-nanoserver`: + - [`11.0.25_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`11.0.25_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.25_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) - `17.0.13_11-jdk`, `17-jdk`, `17`: - - [`17.0.13_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) - `17.0.13_11-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: + - [`17.0.13_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) - `17.0.13_11-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: + - [`17.0.13_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`17.0.13_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.13_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) - `17.0.13_11-jre`, `17-jre`: - - [`17.0.13_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.13_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.13_11-jre-windowsservercore`, `17-jre-windowsservercore`: + - [`17.0.13_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) - `17.0.13_11-jre-nanoserver`, `17-jre-nanoserver`: + - [`17.0.13_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`17.0.13_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`17.0.13_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) - `21.0.5_11-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.5_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21.0.5_11-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: + - [`21.0.5_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) - `21.0.5_11-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: + - [`21.0.5_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`21.0.5_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.5_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) - `21.0.5_11-jre`, `21-jre`: - - [`21.0.5_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.5_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.5_11-jre-windowsservercore`, `21-jre-windowsservercore`: + - [`21.0.5_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) - `21.0.5_11-jre-nanoserver`, `21-jre-nanoserver`: + - [`21.0.5_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`21.0.5_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.5_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) - `23.0.1_11-jdk`, `23-jdk`, `23`: - - [`23.0.1_11-jdk-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) - `23.0.1_11-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: + - [`23.0.1_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) - `23.0.1_11-jdk-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: + - [`23.0.1_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`23.0.1_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`23.0.1_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) - `23.0.1_11-jre`, `23-jre`: - - [`23.0.1_11-jre-noble`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubuntu/noble/Dockerfile) + - [`23.0.1_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) - `23.0.1_11-jre-windowsservercore`, `23-jre-windowsservercore`: + - [`23.0.1_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) - `23.0.1_11-jre-nanoserver`, `23-jre-nanoserver`: + - [`23.0.1_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`23.0.1_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`23.0.1_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-1809/Dockerfile) From 17e47079c25cb23518d62d57d2c7605a108e8c5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Jan 2025 11:09:30 -0800 Subject: [PATCH 1835/2686] Run update.sh --- docker/README.md | 19 ++++++++------ perl/README.md | 64 ++++++++++++++++++++++++------------------------ 2 files changed, 43 insertions(+), 40 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6bed0fa8a8e4..eb0eec38655d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,25 @@ WARNING: ## Simple Tags -- [`27.5.0-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/cli/Dockerfile) +- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/cli/Dockerfile) -- [`27.5.0-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.0-dind-alpine3.21`, `27.5.0`, `27.5`, `27`, `latest`, `27.5.0-alpine3.21`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind/Dockerfile) +- [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind/Dockerfile) -- [`27.5.0-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/49e7a0aa907a6033c2482efbf8e25bb97588b184/27/dind-rootless/Dockerfile) +- [`27.5.1-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind-rootless/Dockerfile) -- [`27.5.0-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2025/Dockerfile) -- [`27.5.0-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `27.5.0-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/4c7a6d18d9aea3620ee177b855e762f6407fd551/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2025/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 50fd230d1f00..690e39d60e1c 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.0`, `5.40`, `5`, `latest`, `stable`, `5.40.0-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main-bookworm/Dockerfile) +- [`5.40.1`, `5.40`, `5`, `latest`, `stable`, `5.40.1-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main-bookworm/Dockerfile) -- [`5.40.0-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main-bullseye/Dockerfile) +- [`5.40.1-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main-bullseye/Dockerfile) -- [`5.40.0-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.0-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim-bookworm/Dockerfile) +- [`5.40.1-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.1-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim-bookworm/Dockerfile) -- [`5.40.0-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim-bullseye/Dockerfile) +- [`5.40.1-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim-bullseye/Dockerfile) -- [`5.40.0-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.0-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main,threaded-bookworm/Dockerfile) +- [`5.40.1-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.1-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main,threaded-bookworm/Dockerfile) -- [`5.40.0-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-main,threaded-bullseye/Dockerfile) +- [`5.40.1-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main,threaded-bullseye/Dockerfile) -- [`5.40.0-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.0-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim,threaded-bookworm/Dockerfile) +- [`5.40.1-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.1-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim,threaded-bookworm/Dockerfile) -- [`5.40.0-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.040.000-slim,threaded-bullseye/Dockerfile) +- [`5.40.1-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim,threaded-bullseye/Dockerfile) -- [`5.38.2`, `5.38`, `5.38.2-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main-bookworm/Dockerfile) +- [`5.38.3`, `5.38`, `5.38.3-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main-bookworm/Dockerfile) -- [`5.38.2-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main-bullseye/Dockerfile) +- [`5.38.3-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main-bullseye/Dockerfile) -- [`5.38.2-slim`, `5.38-slim`, `5.38.2-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim-bookworm/Dockerfile) +- [`5.38.3-slim`, `5.38-slim`, `5.38.3-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim-bookworm/Dockerfile) -- [`5.38.2-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim-bullseye/Dockerfile) +- [`5.38.3-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim-bullseye/Dockerfile) -- [`5.38.2-threaded`, `5.38-threaded`, `5.38.2-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main,threaded-bookworm/Dockerfile) +- [`5.38.3-threaded`, `5.38-threaded`, `5.38.3-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main,threaded-bookworm/Dockerfile) -- [`5.38.2-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-main,threaded-bullseye/Dockerfile) +- [`5.38.3-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main,threaded-bullseye/Dockerfile) -- [`5.38.2-slim-threaded`, `5.38-slim-threaded`, `5.38.2-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim,threaded-bookworm/Dockerfile) +- [`5.38.3-slim-threaded`, `5.38-slim-threaded`, `5.38.3-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim,threaded-bookworm/Dockerfile) -- [`5.38.2-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.038.002-slim,threaded-bullseye/Dockerfile) +- [`5.38.3-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.6`, `5.41`, `devel`, `5.41.6-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main-bookworm/Dockerfile) +- [`5.41.8`, `5.41`, `devel`, `5.41.8-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main-bookworm/Dockerfile) -- [`5.41.6-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main-bullseye/Dockerfile) +- [`5.41.8-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main-bullseye/Dockerfile) -- [`5.41.6-slim`, `5.41-slim`, `devel-slim`, `5.41.6-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim-bookworm/Dockerfile) +- [`5.41.8-slim`, `5.41-slim`, `devel-slim`, `5.41.8-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim-bookworm/Dockerfile) -- [`5.41.6-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim-bullseye/Dockerfile) +- [`5.41.8-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim-bullseye/Dockerfile) -- [`5.41.6-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.6-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main,threaded-bookworm/Dockerfile) +- [`5.41.8-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.8-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main,threaded-bookworm/Dockerfile) -- [`5.41.6-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-main,threaded-bullseye/Dockerfile) +- [`5.41.8-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main,threaded-bullseye/Dockerfile) -- [`5.41.6-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.6-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim,threaded-bookworm/Dockerfile) +- [`5.41.8-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.8-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim,threaded-bookworm/Dockerfile) -- [`5.41.6-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/f7986100584896df1aba3a3e1461186f0df03796/5.041.006-slim,threaded-bullseye/Dockerfile) +- [`5.41.8-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From b3f818245e9158858fa08a105495e481d547bd5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Jan 2025 12:09:30 -0800 Subject: [PATCH 1836/2686] Run update.sh --- julia/README.md | 40 ++++++++++++++++++---------------------- mongo/README.md | 20 ++++++++++++++++++++ mysql/README.md | 2 +- openjdk/README.md | 20 ++++++++++++++++++++ pypy/README.md | 8 ++++++++ python/README.md | 12 ++++++++++++ 6 files changed, 79 insertions(+), 23 deletions(-) diff --git a/julia/README.md b/julia/README.md index 11f0fb62a73b..9debfa70dc64 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,47 +28,51 @@ WARNING: ## Simple Tags -- [`1.11.2-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bookworm/Dockerfile) +- [`1.11.3-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bookworm/Dockerfile) -- [`1.11.2-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bullseye/Dockerfile) +- [`1.11.3-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bullseye/Dockerfile) -- [`1.11.2-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.11.2-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/c763e6dd2005540877917987840d0128b819de91/1.11/alpine3.21/Dockerfile) +- [`1.11.3-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.11.2-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/alpine3.20/Dockerfile) +- [`1.11.3-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.2-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.11.2-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) +- [`1.11.3-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) - [`1.10.7-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) - [`1.10.7-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bullseye/Dockerfile) +- [`1.10.7-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.7-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.7-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `1.11.2`, `1.11`, `1`, `latest`: +- `1.11.3`, `1.11`, `1`, `latest`: - - [`1.11.2-bookworm`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/bookworm/Dockerfile) - - [`1.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.3-bookworm`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bookworm/Dockerfile) + - [`1.11.3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.2-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.3-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/4f01bdd0f40fb73588ec2fb1425939f0b942eaaf/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) - `1.10.7`, `1.10`: - [`1.10.7-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) + - [`1.10.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) - `1.10.7-windowsservercore`, `1.10-windowsservercore`: + - [`1.10.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) @@ -131,14 +135,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. diff --git a/mongo/README.md b/mongo/README.md index 7997d7aca0c4..256cfb359120 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -30,6 +30,8 @@ WARNING: - [`8.0.4-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) +- [`8.0.4-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.4-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.4-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) @@ -40,6 +42,8 @@ WARNING: - [`7.0.16-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) +- [`7.0.16-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.16-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.16-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) @@ -50,6 +54,8 @@ WARNING: - [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) +- [`6.0.20-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.20-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.20-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) @@ -60,6 +66,8 @@ WARNING: - [`5.0.31-rc1-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) +- [`5.0.31-rc1-windowsservercore-ltsc2025`, `5.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.31-rc1-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.31-rc1-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -70,6 +78,8 @@ WARNING: - [`5.0.30-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) +- [`5.0.30-windowsservercore-ltsc2025`, `5.0-windowsservercore-ltsc2025`, `5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.30-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.30-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) @@ -83,11 +93,13 @@ WARNING: - `8.0.4`, `8.0`, `8`, `latest`: - [`8.0.4-noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) + - [`8.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) - `8.0.4-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: + - [`8.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) @@ -99,11 +111,13 @@ WARNING: - `7.0.16`, `7.0`, `7`: - [`7.0.16-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) + - [`7.0.16-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.16-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: + - [`7.0.16-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) @@ -115,11 +129,13 @@ WARNING: - `6.0.20`, `6.0`, `6`: - [`6.0.20-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) + - [`6.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.20-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: + - [`6.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) @@ -131,11 +147,13 @@ WARNING: - `5.0.31-rc1`, `5.0-rc`: - [`5.0.31-rc1-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) + - [`5.0.31-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) - `5.0.31-rc1-windowsservercore`, `5.0-rc-windowsservercore`: + - [`5.0.31-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -147,11 +165,13 @@ WARNING: - `5.0.30`, `5.0`, `5`: - [`5.0.30-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) + - [`5.0.30-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) - `5.0.30-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: + - [`5.0.30-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index ade3810b378f..5a78954b61ad 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.0`, `9.2`, `9`, `innovation`, `latest`, `9.2.0-oraclelinux9`, `9.2-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.2.0-oracle`, `9.2-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/2615551146c34430e70aa42db0fce7bab7be6654/innovation/Dockerfile.oracle) +- [`9.2.0`, `9.2`, `9`, `innovation`, `latest`, `9.2.0-oraclelinux9`, `9.2-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.2.0-oracle`, `9.2-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/df3a5c483a5e8c3c4d1eae61678fa5372c403bf0/innovation/Dockerfile.oracle) - [`8.4.4`, `8.4`, `8`, `lts`, `8.4.4-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.4-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/42386a0efb57a032d707e822086feea263088ad9/8.4/Dockerfile.oracle) diff --git a/openjdk/README.md b/openjdk/README.md index 83992435eeb9..dace425559b5 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -54,10 +54,16 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-6-jdk-slim-bullseye`, `25-ea-6-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-6-jdk-windowsservercore-ltsc2025`, `25-ea-6-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-ltsc2022`, `25-ea-6-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`25-ea-6-jdk-windowsservercore-1809`, `25-ea-6-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-6-jdk-nanoserver-ltsc2025`, `25-ea-6-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + +- [`25-ea-6-jdk-nanoserver-ltsc2022`, `25-ea-6-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-6-jdk-nanoserver-1809`, `25-ea-6-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-ea-31-jdk-oraclelinux9`, `24-ea-31-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-31-jdk-oracle`, `24-ea-31-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) @@ -72,10 +78,16 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`24-ea-31-jdk-slim-bullseye`, `24-ea-31-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-31-jdk-windowsservercore-ltsc2025`, `24-ea-31-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-ltsc2022`, `24-ea-31-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`24-ea-31-jdk-windowsservercore-1809`, `24-ea-31-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-31-jdk-nanoserver-ltsc2025`, `24-ea-31-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + +- [`24-ea-31-jdk-nanoserver-ltsc2022`, `24-ea-31-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-ea-31-jdk-nanoserver-1809`, `24-ea-31-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -83,31 +95,39 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - `25-ea-6-jdk`, `25-ea-6`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - [`25-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) - `25-ea-6-jdk-windowsservercore`, `25-ea-6-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: + - [`25-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) - `25-ea-6-jdk-nanoserver`, `25-ea-6-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: + - [`25-ea-6-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-6-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-ea-31-jdk`, `24-ea-31`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - [`24-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) - `24-ea-31-jdk-windowsservercore`, `24-ea-31-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: + - [`24-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) - `24-ea-31-jdk-nanoserver`, `24-ea-31-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: + - [`24-ea-31-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-ea-31-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`24-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 38e490854264..f3ee43a2435c 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -36,6 +36,8 @@ WARNING: - [`3.10-7.3.17-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.17-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.17-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.17-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.17-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.17-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.17-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.17-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.17-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.17-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) @@ -48,6 +50,8 @@ WARNING: - [`2.7-7.3.17-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.17-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.17-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.17-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.17-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.17-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.17-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.17-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.17-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.17-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) @@ -57,22 +61,26 @@ WARNING: - `3.10-7.3.17`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.17`, `3-7.3`, `3-7`, `3`, `latest`: - [`3.10-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bullseye/Dockerfile) + - [`3.10-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.17-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.17-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.10-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.17`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.17`, `2-7.3`, `2-7`, `2`: - [`2.7-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bullseye/Dockerfile) + - [`2.7-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.17-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.17-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: + - [`2.7-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) diff --git a/python/README.md b/python/README.md index 86e919f24722..416d74d21d2f 100644 --- a/python/README.md +++ b/python/README.md @@ -40,6 +40,8 @@ WARNING: - [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a4-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) @@ -56,6 +58,8 @@ WARNING: - [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.20/Dockerfile) +- [`3.13.1-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.1-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.1-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) @@ -72,6 +76,8 @@ WARNING: - [`3.12.8-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.20/Dockerfile) +- [`3.12.8-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.12.8-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.8-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) @@ -117,33 +123,39 @@ WARNING: - `3.14.0a4`, `3.14-rc`: - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.14.0a4-windowsservercore`, `3.14-rc-windowsservercore`: + - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.1`, `3.13`, `3`, `latest`: - [`3.13.1-bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) + - [`3.13.1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) - `3.13.1-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: + - [`3.13.1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) - `3.12.8`, `3.12`: - [`3.12.8-bookworm`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bookworm/Dockerfile) + - [`3.12.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.8-windowsservercore`, `3.12-windowsservercore`: + - [`3.12.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) From 8cb9bdb81b118b2540eff268f17ef0ab10299b9d Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Wed, 22 Jan 2025 14:06:06 -0800 Subject: [PATCH 1837/2686] Update `REDMINE_SECRET_KEY_BASE` usage/description --- redmine/content.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/redmine/content.md b/redmine/content.md index e8fd7b623b72..d00b5ede395c 100644 --- a/redmine/content.md +++ b/redmine/content.md @@ -112,9 +112,11 @@ This variable allows you to control if `rake redmine:plugins:migrate` is run on `redmine:plugins:migrate` will not run if you start your image with something other than the default `CMD`, like `bash`. See the current `docker-entrypoint.sh` in your image for details. -### `REDMINE_SECRET_KEY_BASE` +### `SECRET_KEY_BASE` -This variable is required when using Docker Swarm replicas to maintain session connections when being loadbalanced between containers. It will create an initial `config/secrets.yml` and set the `secret_key_base` value, which is "used by Rails to encode cookies storing session data thus preventing their tampering. Generating a new secret token invalidates all existing sessions after restart" ([session store](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-5-Session-store-secret-generation)). If you do not set this variable or provide a `secrets.yml` one will be generated using `rake generate_secret_token`. +This is a general Rails environment variable. This variable is useful when using loadbalanced replicas to maintain session connections. It is "used by Rails to encode cookies storing session data thus preventing their tampering. Generating a new secret token invalidates all existing sessions after restart" ([session store](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-5-Session-store-secret-generation)). If you do not set this variable, then the `secret_key_base` value will be generated using `rake generate_secret_token`. + +For backwards compatibility, the deprecated, Docker-specific `REDMINE_SECRET_KEY_BASE` variable will automatically fill the `SECRET_KEY_BASE` environment variable. Users should migrate their deployments to use the `SECRET_KEY_BASE` variable directly. ## Running as an arbitrary user From 6c62a9e3dfaff0c2719129282b77d8880788ef21 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Jan 2025 17:09:22 -0800 Subject: [PATCH 1838/2686] Run update.sh --- docker/README.md | 14 ++++---- hylang/README.md | 89 ++++++++++++++++++++++++++--------------------- redmine/README.md | 18 +++++----- 3 files changed, 65 insertions(+), 56 deletions(-) diff --git a/docker/README.md b/docker/README.md index eb0eec38655d..cd0a4676e81b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/cli/Dockerfile) +- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/cli/Dockerfile) - [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind/Dockerfile) - [`27.5.1-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind-rootless/Dockerfile) -- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2025/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2025/Dockerfile) -- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2025/Dockerfile) - - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2025/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index f58814b556e7..38f072b32e5b 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,93 +28,102 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + +- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/9e230dfec618cc0bea3d6c282a1a1b1ad23a7566/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index c54666c8e0ea..5faa7ea456eb 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/bookworm/Dockerfile) +- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/bookworm/Dockerfile) -- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/alpine3.21/Dockerfile) +- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/alpine3.21/Dockerfile) -- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/6.0/alpine3.20/Dockerfile) +- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/alpine3.20/Dockerfile) -- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/bookworm/Dockerfile) +- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/bookworm/Dockerfile) -- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/alpine3.21/Dockerfile) +- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/alpine3.21/Dockerfile) -- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.1/alpine3.20/Dockerfile) +- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/alpine3.20/Dockerfile) -- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/bookworm/Dockerfile) +- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/bookworm/Dockerfile) -- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/alpine3.21/Dockerfile) +- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/alpine3.21/Dockerfile) -- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2ac79199f72a9628d9cb9ee1dafac2dd2856487c/5.0/alpine3.20/Dockerfile) +- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) From 59444e7a9f09b543d08b9454401d350fd7dc5733 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Jan 2025 10:10:15 -0800 Subject: [PATCH 1839/2686] Run update.sh --- aerospike/README.md | 4 +- amazoncorretto/README.md | 84 ++++++++++++++++++++-------------------- odoo/README.md | 6 +-- redmine/README.md | 6 ++- 4 files changed, 51 insertions(+), 49 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 61ca59668013..9171f4a36446 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-7.2.0.6`, `ee-7.2.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/033b7b6fea20a2f425e59657dd4ee7f90b3d0828/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.1`, `ee-8.0.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/7cabac1129aeadbbf3c13eafa4207f822bc4e2f1/enterprise/ubuntu24.04/Dockerfile) -- [`ce-7.2.0.6`, `ce-7.2.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/033b7b6fea20a2f425e59657dd4ee7f90b3d0828/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.1`, `ce-8.0.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/7cabac1129aeadbbf3c13eafa4207f822bc4e2f1/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index f17335047ab3..645f6eaae7f4 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u432`, `8u432-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u432-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u432-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u432-al2023-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u432-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u432-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u432-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u432-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u432-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u432-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u432-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u432-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u432-alpine3.20-jre`, `8-alpine-jre`, `8u432-alpine-jre`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.20/Dockerfile) -- [`11`, `11.0.25`, `11.0.25-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.25-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.25-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.25-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.25-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.25-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.25-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2/Dockerfile) -- [`11-alpine3.18`, `11.0.25-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.25-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.25-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.25-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.20/Dockerfile) -- [`17`, `17.0.13`, `17.0.13-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.13-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.13-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.13-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.13-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.13-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.13-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.13-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2/Dockerfile) -- [`17-alpine3.18`, `17.0.13-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.13-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.13-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.13-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.20/Dockerfile) -- [`21`, `21.0.5`, `21.0.5-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.5-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.5-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.5-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.5-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/headful/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.5-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.5-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.5-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.5-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.20/Dockerfile) -- [`23-al2023`, `23.0.1-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/al2023/Dockerfile) +- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/al2023/Dockerfile) -- [`23-al2023-headless`, `23.0.1-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/headless/al2023/Dockerfile) +- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/headless/al2023/Dockerfile) -- [`23-al2023-headful`, `23.0.1-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/headful/al2023/Dockerfile) +- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/headful/al2023/Dockerfile) -- [`23-alpine3.18`, `23.0.1-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.18/Dockerfile) +- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.18/Dockerfile) -- [`23-alpine3.19`, `23.0.1-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.19/Dockerfile) +- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.19/Dockerfile) -- [`23-alpine3.20`, `23.0.1-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.1-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a2a619f2ff274d58df109c775ae79acc7b8605a2/23/jdk/alpine/3.20/Dockerfile) +- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.20/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 3fc2096c90cf..60344dea5987 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250115`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/18.0/Dockerfile) +- [`18.0-20250123`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/18.0/Dockerfile) -- [`17.0-20250115`, `17.0`, `17`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/17.0/Dockerfile) +- [`17.0-20250123`, `17.0`, `17`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/17.0/Dockerfile) -- [`16.0-20250115`, `16.0`, `16`](https://github.com/odoo/docker/blob/a1b72bf09764b88ae69f1ffd51f5ebc283741aa0/16.0/Dockerfile) +- [`16.0-20250123`, `16.0`, `16`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/16.0/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 5faa7ea456eb..9a62cb98f94c 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -202,9 +202,11 @@ This variable allows you to control if `rake redmine:plugins:migrate` is run on `redmine:plugins:migrate` will not run if you start your image with something other than the default `CMD`, like `bash`. See the current `docker-entrypoint.sh` in your image for details. -### `REDMINE_SECRET_KEY_BASE` +### `SECRET_KEY_BASE` -This variable is required when using Docker Swarm replicas to maintain session connections when being loadbalanced between containers. It will create an initial `config/secrets.yml` and set the `secret_key_base` value, which is "used by Rails to encode cookies storing session data thus preventing their tampering. Generating a new secret token invalidates all existing sessions after restart" ([session store](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-5-Session-store-secret-generation)). If you do not set this variable or provide a `secrets.yml` one will be generated using `rake generate_secret_token`. +This is a general Rails environment variable. This variable is useful when using loadbalanced replicas to maintain session connections. It is "used by Rails to encode cookies storing session data thus preventing their tampering. Generating a new secret token invalidates all existing sessions after restart" ([session store](https://www.redmine.org/projects/redmine/wiki/RedmineInstall#Step-5-Session-store-secret-generation)). If you do not set this variable, then the `secret_key_base` value will be generated using `rake generate_secret_token`. + +For backwards compatibility, the deprecated, Docker-specific `REDMINE_SECRET_KEY_BASE` variable will automatically fill the `SECRET_KEY_BASE` environment variable. Users should migrate their deployments to use the `SECRET_KEY_BASE` variable directly. ## Running as an arbitrary user From 6190f0ddbedb7c1ed7a6f7a7deca9d9d14a1b5a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Jan 2025 12:09:20 -0800 Subject: [PATCH 1840/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nats/README.md b/nats/README.md index f04ea7d153f9..a97d2fa526f7 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.24-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.24-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/alpine3.21/Dockerfile) +- [`2.10.25-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.25-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/alpine3.21/Dockerfile) -- [`2.10.24-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.24-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/scratch/Dockerfile) +- [`2.10.25-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.25-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/scratch/Dockerfile) -- [`2.10.24-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.25-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.24-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.25-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.24`, `2.10`, `2`, `latest`: +- `2.10.25`, `2.10`, `2`, `latest`: - - [`2.10.24-scratch`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/scratch/Dockerfile) - - [`2.10.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.25-scratch`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/scratch/Dockerfile) + - [`2.10.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.24-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.25-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.24-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.24-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.25-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.24-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/c5135d645d12ee07bceea9c27d2dde79d784feb9/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 7a8cd03371c2c2d98cf0e1cd4d630a053fd678e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Jan 2025 14:09:20 -0800 Subject: [PATCH 1841/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- julia/README.md | 40 ++++++++++++++++++++++------------ openjdk/README.md | 50 +++++++++++++++++++++---------------------- 3 files changed, 53 insertions(+), 41 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 365cdedc33eb..8211955d9dc4 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250107.0`](https://github.com/amazonlinux/container-images/blob/74a0e4d258d1a5efeadc82395d228357a68d38a8/Dockerfile) +- [`2023`, `latest`, `2023.6.20250115.0`](https://github.com/amazonlinux/container-images/blob/0fcfdb19e02852797bdacf8eba0017b9578fd7ad/Dockerfile) -- [`2`, `2.0.20250108.0`](https://github.com/amazonlinux/container-images/blob/41d7f68f76f06dfc10f91f2fb1a66c0b409bb24a/Dockerfile) +- [`2`, `2.0.20250116.0`](https://github.com/amazonlinux/container-images/blob/a45d17fb340df67793447c58b118cea0a2343267/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 9debfa70dc64..138efe9d470e 100644 --- a/julia/README.md +++ b/julia/README.md @@ -38,15 +38,19 @@ WARNING: - [`1.11.3-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) -- [`1.10.7-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) +- [`1.10.8-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bookworm/Dockerfile) -- [`1.10.7-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bullseye/Dockerfile) +- [`1.10.8-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bullseye/Dockerfile) -- [`1.10.7-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.10.8-alpine3.21`, `1.10-alpine3.21`, `1.10.8-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/alpine3.21/Dockerfile) -- [`1.10.7-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.8-alpine3.20`, `1.10-alpine3.20`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/alpine3.20/Dockerfile) -- [`1.10.7-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.8-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`1.10.8-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.10.8-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags @@ -63,18 +67,18 @@ WARNING: - [`1.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.10.7`, `1.10`: +- `1.10.8`, `1.10`: - - [`1.10.7-bookworm`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/bookworm/Dockerfile) - - [`1.10.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.8-bookworm`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bookworm/Dockerfile) + - [`1.10.8-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.8-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.8-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.7-windowsservercore`, `1.10-windowsservercore`: +- `1.10.8-windowsservercore`, `1.10-windowsservercore`: - - [`1.10.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/cd2ed5528e361cc8c49316645554bd5963c82cf6/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.7-windowsservercore-1809`](https://github.com/docker-library/julia/blob/20763c0a7c195e9a57eb7903ff60e8b6a811e4fe/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.8-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.8-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.8-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) @@ -144,6 +148,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/openjdk/README.md b/openjdk/README.md index dace425559b5..17b6f4c10a1e 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -66,29 +66,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-6-jdk-nanoserver-1809`, `25-ea-6-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-31-jdk-oraclelinux9`, `24-ea-31-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-31-jdk-oracle`, `24-ea-31-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-32-jdk-oraclelinux9`, `24-ea-32-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-32-jdk-oracle`, `24-ea-32-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-31-jdk-oraclelinux8`, `24-ea-31-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-32-jdk-oraclelinux8`, `24-ea-32-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-31-jdk-bookworm`, `24-ea-31-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/bookworm/Dockerfile) +- [`24-ea-32-jdk-bookworm`, `24-ea-32-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/bookworm/Dockerfile) -- [`24-ea-31-jdk-slim-bookworm`, `24-ea-31-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-31-jdk-slim`, `24-ea-31-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-32-jdk-slim-bookworm`, `24-ea-32-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-32-jdk-slim`, `24-ea-32-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-31-jdk-bullseye`, `24-ea-31-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/bullseye/Dockerfile) +- [`24-ea-32-jdk-bullseye`, `24-ea-32-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/bullseye/Dockerfile) -- [`24-ea-31-jdk-slim-bullseye`, `24-ea-31-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-32-jdk-slim-bullseye`, `24-ea-32-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-31-jdk-windowsservercore-ltsc2025`, `24-ea-31-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24-ea-32-jdk-windowsservercore-ltsc2025`, `24-ea-32-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24-ea-31-jdk-windowsservercore-ltsc2022`, `24-ea-31-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-32-jdk-windowsservercore-ltsc2022`, `24-ea-32-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-31-jdk-windowsservercore-1809`, `24-ea-31-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-32-jdk-windowsservercore-1809`, `24-ea-32-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-31-jdk-nanoserver-ltsc2025`, `24-ea-31-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24-ea-32-jdk-nanoserver-ltsc2025`, `24-ea-32-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24-ea-31-jdk-nanoserver-ltsc2022`, `24-ea-31-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24-ea-32-jdk-nanoserver-ltsc2022`, `24-ea-32-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24-ea-31-jdk-nanoserver-1809`, `24-ea-31-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-32-jdk-nanoserver-1809`, `24-ea-32-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -111,24 +111,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-6-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-31-jdk`, `24-ea-31`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-32-jdk`, `24-ea-32`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-32-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-31-jdk-windowsservercore`, `24-ea-31-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-32-jdk-windowsservercore`, `24-ea-32-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-31-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-31-jdk-nanoserver`, `24-ea-31-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-32-jdk-nanoserver`, `24-ea-32-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-31-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-ea-31-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-ea-31-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/9c0cbed17ab6b22457c51976e3c13b0dadec7dc2/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-32-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-ea-32-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 3d0761a0e892113517d69d29506540ae5e81cdba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Jan 2025 17:09:18 -0800 Subject: [PATCH 1842/2686] Run update.sh --- httpd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpd/README.md b/httpd/README.md index 7edb344ef40f..56836a5bf3cb 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.62`, `2.4`, `2`, `latest`, `2.4.62-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/3056c115a9f3c2467cc6f67470cfded70c4adc64/2.4/Dockerfile) +- [`2.4.63`, `2.4`, `2`, `latest`, `2.4.63-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/329f85a9ad75526de865749a41b273ead99fb69b/2.4/Dockerfile) -- [`2.4.62-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.62-alpine3.21`, `2.4-alpine3.21`, `2-alpine3.21`, `alpine3.21`](https://github.com/docker-library/httpd/blob/500ef8b71bdf49020ec5bffad2b100936c3f2fab/2.4/alpine/Dockerfile) +- [`2.4.63-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.63-alpine3.21`, `2.4-alpine3.21`, `2-alpine3.21`, `alpine3.21`](https://github.com/docker-library/httpd/blob/329f85a9ad75526de865749a41b273ead99fb69b/2.4/alpine/Dockerfile) # Quick reference (cont.) From b47192d256178e76634be0e432b2c98ab71f5802 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Jan 2025 10:09:23 -0800 Subject: [PATCH 1843/2686] Run update.sh --- phpmyadmin/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 89bb4c4e3962..2a59b4db7e70 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/apache/Dockerfile) +- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/188a0e35423fb615db47e6a0a8209fe7288eb2ed/apache/Dockerfile) -- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/fpm/Dockerfile) +- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/188a0e35423fb615db47e6a0a8209fe7288eb2ed/fpm/Dockerfile) - [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/fpm-alpine/Dockerfile) From eb6adb8e3ff46d4def52be57358ef5c2fd52c12f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Jan 2025 11:09:31 -0800 Subject: [PATCH 1844/2686] Run update.sh --- haproxy/README.md | 4 ++-- influxdb/README.md | 24 ++++++++++++------------ python/README.md | 42 +++++++++++++++++++++--------------------- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 8f5e06f20455..eb7de794c706 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev3`, `3.2-dev`, `3.2-dev3-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7a65a5613e64528b0e9e11ca090419ed61f03966/3.2/Dockerfile) +- [`3.2-dev4`, `3.2-dev`, `3.2-dev4-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7befb826ce64d07796378978a0bf12b3aabec301/3.2/Dockerfile) -- [`3.2-dev3-alpine`, `3.2-dev-alpine`, `3.2-dev3-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7a65a5613e64528b0e9e11ca090419ed61f03966/3.2/alpine/Dockerfile) +- [`3.2-dev4-alpine`, `3.2-dev-alpine`, `3.2-dev4-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7befb826ce64d07796378978a0bf12b3aabec301/3.2/alpine/Dockerfile) - [`3.1.2`, `3.1`, `latest`, `3.1.2-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/116ca50708ff505ac73b7c8dcc6d7689151946bb/3.1/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 360964804e54..831188fe7f8a 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.7-data`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.7-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.7-meta`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.7-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/e15ac5b4cdfdc6effe2da373fd8963d04c1cd583/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/2.7/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 416d74d21d2f..d4744f231915 100644 --- a/python/README.md +++ b/python/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/alpine3.20/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -46,17 +46,17 @@ WARNING: - [`3.14.0a4-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) +- [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bookworm/Dockerfile) -- [`3.13.1-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.1-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/slim-bookworm/Dockerfile) +- [`3.13.1-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.1-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/slim-bookworm/Dockerfile) -- [`3.13.1-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bullseye/Dockerfile) +- [`3.13.1-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bullseye/Dockerfile) -- [`3.13.1-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/slim-bullseye/Dockerfile) +- [`3.13.1-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/slim-bullseye/Dockerfile) -- [`3.13.1-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.13/alpine3.21/Dockerfile) +- [`3.13.1-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/alpine3.21/Dockerfile) -- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/alpine3.20/Dockerfile) +- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/alpine3.20/Dockerfile) - [`3.13.1-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) @@ -64,17 +64,17 @@ WARNING: - [`3.13.1-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.8-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bookworm/Dockerfile) +- [`3.12.8-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bookworm/Dockerfile) -- [`3.12.8-slim-bookworm`, `3.12-slim-bookworm`, `3.12.8-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/slim-bookworm/Dockerfile) +- [`3.12.8-slim-bookworm`, `3.12-slim-bookworm`, `3.12.8-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/slim-bookworm/Dockerfile) -- [`3.12.8-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bullseye/Dockerfile) +- [`3.12.8-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bullseye/Dockerfile) -- [`3.12.8-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/slim-bullseye/Dockerfile) +- [`3.12.8-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/slim-bullseye/Dockerfile) -- [`3.12.8-alpine3.21`, `3.12-alpine3.21`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.12/alpine3.21/Dockerfile) +- [`3.12.8-alpine3.21`, `3.12-alpine3.21`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/alpine3.21/Dockerfile) -- [`3.12.8-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/alpine3.20/Dockerfile) +- [`3.12.8-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/alpine3.20/Dockerfile) - [`3.12.8-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) @@ -122,7 +122,7 @@ WARNING: - `3.14.0a4`, `3.14-rc`: - - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bookworm/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) @@ -135,7 +135,7 @@ WARNING: - `3.13.1`, `3.13`, `3`, `latest`: - - [`3.13.1-bookworm`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/bookworm/Dockerfile) + - [`3.13.1-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bookworm/Dockerfile) - [`3.13.1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) @@ -148,7 +148,7 @@ WARNING: - `3.12.8`, `3.12`: - - [`3.12.8-bookworm`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/bookworm/Dockerfile) + - [`3.12.8-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bookworm/Dockerfile) - [`3.12.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) From 632e9107691b19e9e2ae86a0b1b86b8f2c25a344 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Jan 2025 14:09:24 -0800 Subject: [PATCH 1845/2686] Run update.sh --- couchbase/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index a88679015819..b4c34d34b553 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.4`, `enterprise-7.6.4`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/9990e2cfabc94b37607e5666d9ef1eab69a397a6/enterprise/couchbase-server/7.6.4/Dockerfile) +- [`7.6.5`, `enterprise-7.6.5`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) - [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) From 32a6f89782724903abbd270d8199e1ff0293ddd7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Jan 2025 15:09:24 -0800 Subject: [PATCH 1846/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++++------------------ matomo/README.md | 6 +-- 2 files changed, 57 insertions(+), 45 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 645f6eaae7f4..c60757a4ad4b 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,89 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.20/Dockerfile) -- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2-generic/Dockerfile) +- [`8-alpine3.21`, `8u442-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.21/Dockerfile) -- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2023/Dockerfile) +- [`8-alpine3.21-jre`, `8u442-alpine3.21-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.21/Dockerfile) -- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headless/al2023/Dockerfile) +- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2-generic/Dockerfile) -- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headful/al2023/Dockerfile) +- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/headless/al2/Dockerfile) +- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headless/al2023/Dockerfile) -- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/al2/Dockerfile) +- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headful/al2023/Dockerfile) -- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.18/Dockerfile) +- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headless/al2/Dockerfile) -- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.19/Dockerfile) +- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2/Dockerfile) -- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.18/Dockerfile) -- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2-generic/Dockerfile) +- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.19/Dockerfile) -- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2023/Dockerfile) +- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.20/Dockerfile) -- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headless/al2023/Dockerfile) +- [`11-alpine3.21`, `11.0.26-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.21/Dockerfile) -- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headful/al2023/Dockerfile) +- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2-generic/Dockerfile) -- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headless/al2/Dockerfile) +- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2023/Dockerfile) -- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/headful/al2/Dockerfile) +- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headless/al2023/Dockerfile) -- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/al2/Dockerfile) +- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headful/al2023/Dockerfile) -- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.18/Dockerfile) +- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headless/al2/Dockerfile) -- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.19/Dockerfile) +- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headful/al2/Dockerfile) -- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/17/jdk/alpine/3.20/Dockerfile) +- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2/Dockerfile) -- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/al2-generic/Dockerfile) +- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.18/Dockerfile) -- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/al2023/Dockerfile) +- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.19/Dockerfile) -- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/headless/al2023/Dockerfile) +- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.20/Dockerfile) -- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/headful/al2023/Dockerfile) +- [`17-alpine3.21`, `17.0.14-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.21/Dockerfile) -- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/al2-generic/Dockerfile) -- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.19/Dockerfile) +- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/al2023/Dockerfile) -- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/21/jdk/alpine/3.20/Dockerfile) +- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/headless/al2023/Dockerfile) -- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/headful/al2023/Dockerfile) -- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/headless/al2023/Dockerfile) +- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.18/Dockerfile) -- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/headful/al2023/Dockerfile) +- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.19/Dockerfile) -- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.20/Dockerfile) -- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.21`, `21.0.6-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.21/Dockerfile) -- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/a89b6d623fc76020d390f55f2e95922ec852f3dd/23/jdk/alpine/3.20/Dockerfile) +- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/al2023/Dockerfile) + +- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/headless/al2023/Dockerfile) + +- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/headful/al2023/Dockerfile) + +- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.18/Dockerfile) + +- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.19/Dockerfile) + +- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.20/Dockerfile) + +- [`23-alpine3.21`, `23.0.2-alpine3.21`, `23-alpine3.21-full`, `23-alpine3.21-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 0554a6574351..e0fa546bf2d3 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.1`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/apache/Dockerfile) +- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/apache/Dockerfile) -- [`5.2.1-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/fpm/Dockerfile) +- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/fpm/Dockerfile) -- [`5.2.1-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/b9ae2e0b9147993c98de27c30778fe42c1fe2356/fpm-alpine/Dockerfile) +- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/fpm-alpine/Dockerfile) # Quick reference (cont.) From 2229d6e2a76aba34f33354e6738723b696bc83bd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Jan 2025 09:58:47 -0800 Subject: [PATCH 1847/2686] Run update.sh --- maven/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/maven/README.md b/maven/README.md index e08e385d74cd..803733715179 100644 --- a/maven/README.md +++ b/maven/README.md @@ -70,7 +70,7 @@ WARNING: - [`3.9.9-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-11-debian/Dockerfile) +- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-11-debian/Dockerfile) - [`3.9.9-amazoncorretto-17`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17/Dockerfile) @@ -78,7 +78,7 @@ WARNING: - [`3.9.9-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-17-debian/Dockerfile) +- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-17-debian/Dockerfile) - [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21/Dockerfile) @@ -86,7 +86,7 @@ WARNING: - [`3.9.9-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-21-debian/Dockerfile) +- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-21-debian/Dockerfile) - [`3.9.9-amazoncorretto-23`, `3.9-amazoncorretto-23`, `3-amazoncorretto-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23/Dockerfile) @@ -94,7 +94,7 @@ WARNING: - [`3.9.9-amazoncorretto-23-alpine`, `3.9-amazoncorretto-23-alpine`, `3-amazoncorretto-23-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-23-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-23-debian/Dockerfile) +- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-23-debian/Dockerfile) - [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8/Dockerfile) @@ -102,7 +102,7 @@ WARNING: - [`3.9.9-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e92e0e0e39d6783a474819f885b5b8414d84ad17/amazoncorretto-8-debian/Dockerfile) +- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-8-debian/Dockerfile) - [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-11/Dockerfile) From 44e80079b11ef2c55f7db559b31b301163bab4f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Jan 2025 16:09:43 -0800 Subject: [PATCH 1848/2686] Run update.sh --- archlinux/README.md | 6 +-- clearlinux/README.md | 2 +- crate/README.md | 2 +- erlang/README.md | 6 +-- sapmachine/README.md | 126 ++++++++++++++++++++++++++----------------- 5 files changed, 86 insertions(+), 56 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 6136888159c4..3a4f8410d159 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.base) +- [`latest`, `base`, `base-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.base) -- [`base-devel`, `base-devel-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250119.0.299327`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d5901839bb8e07ad1325ab5f23ed5e4562a5a958/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 128beccc45ce..74cc571ad556 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/758add1a2635a92a2ea4a9fd0d1ffdf5c9dad258/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/48c457640c743fbe9222d6f7e0cb275467071c94/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 55495374b810..87284e844747 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.6`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/729dcc677cb5733e8af87ed397771ed51345ad17/Dockerfile) +- [`5.9.8`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/0e755ec49d2567bbf2f9940503e220ef371dbf95/Dockerfile) - [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 087da8059267..bf3525eb9e1f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.2.0.0`, `27.2.0`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/27/Dockerfile) +- [`27.2.1.0`, `27.2.1`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/Dockerfile) -- [`27.2.0.0-slim`, `27.2.0-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/27/slim/Dockerfile) +- [`27.2.1.0-slim`, `27.2.1-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/slim/Dockerfile) -- [`27.2.0.0-alpine`, `27.2.0-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/27/alpine/Dockerfile) +- [`27.2.1.0-alpine`, `27.2.1-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 77fd376e57bc..8fdd38149dbf 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,101 +24,113 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `23.0.1`, `23.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23.0.1-ubuntu-noble`, `23.0.1-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `23.0.1-jdk-ubuntu-noble`, `23.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `23.0.2`, `23.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23.0.2-ubuntu-noble`, `23.0.2-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `23.0.2-jdk-ubuntu-noble`, `23.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23.0.1-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `23.0.1-jdk-headless-ubuntu-noble`, `23.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23.0.2-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `23.0.2-jdk-headless-ubuntu-noble`, `23.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `23-jre-ubuntu`, `23.0.1-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `23.0.1-jre-ubuntu-noble`, `23.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `23-jre-ubuntu`, `23.0.2-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `23.0.2-jre-ubuntu-noble`, `23.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23.0.1-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `23.0.1-jre-headless-ubuntu-noble`, `23.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23.0.2-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `23.0.2-jre-headless-ubuntu-noble`, `23.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23.0.1-ubuntu-jammy`, `23.0.1-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `23.0.1-jdk-ubuntu-jammy`, `23.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23.0.2-ubuntu-jammy`, `23.0.2-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `23.0.2-jdk-ubuntu-jammy`, `23.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `23.0.1-jdk-headless-ubuntu-jammy`, `23.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `23.0.2-jdk-headless-ubuntu-jammy`, `23.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `23.0.1-jre-ubuntu-jammy`, `23.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) +- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `23.0.2-jre-ubuntu-jammy`, `23.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `23.0.1-jre-headless-ubuntu-jammy`, `23.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `23.0.2-jre-headless-ubuntu-jammy`, `23.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23.0.1-ubuntu-focal`, `23.0.1-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `23.0.1-jdk-ubuntu-focal`, `23.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23.0.2-ubuntu-focal`, `23.0.2-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `23.0.2-jdk-ubuntu-focal`, `23.0.2-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `23.0.1-jdk-headless-ubuntu-focal`, `23.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) +- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `23.0.2-jdk-headless-ubuntu-focal`, `23.0.2-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `23.0.1-jre-ubuntu-focal`, `23.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) +- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `23.0.2-jre-ubuntu-focal`, `23.0.2-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `23.0.1-jre-headless-ubuntu-focal`, `23.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fb314957163ab9a7061648b0de748eab60bdb29e/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) +- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `23.0.2-jre-headless-ubuntu-focal`, `23.0.2-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) -- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.5`, `21.0.5-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.5-ubuntu-noble`, `21.0.5-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.5-jdk-ubuntu-noble`, `21.0.5-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`jdk-alpine`, `23-jdk-alpine`, `23.0.2-jdk-alpine`, `alpine-3.21`, `23-alpine-3.21`, `23.0.2-alpine-3.21`, `23-jdk-alpine-3.21`, `jdk-alpine-3.21`, `23.0.2-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/alpine/3_21/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.5-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.5-jdk-headless-ubuntu-noble`, `21.0.5-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jre-alpine`, `23-jre-alpine`, `23.0.2-jre-alpine`, `23-jre-alpine-3.21`, `jre-alpine-3.21`, `23.0.2-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/alpine/3_21/jre/Dockerfile) -- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.5-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.5-jre-ubuntu-noble`, `21.0.5-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.6`, `21.0.6-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.6-ubuntu-noble`, `21.0.6-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.6-jdk-ubuntu-noble`, `21.0.6-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.5-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.5-jre-headless-ubuntu-noble`, `21.0.5-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.6-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.6-jdk-headless-ubuntu-noble`, `21.0.6-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.5-ubuntu-jammy`, `21.0.5-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.5-jdk-ubuntu-jammy`, `21.0.5-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.6-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.6-jre-ubuntu-noble`, `21.0.6-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.5-jdk-headless-ubuntu-jammy`, `21.0.5-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.6-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.6-jre-headless-ubuntu-noble`, `21.0.6-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.5-jre-ubuntu-jammy`, `21.0.5-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.6-ubuntu-jammy`, `21.0.6-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.6-jdk-ubuntu-jammy`, `21.0.6-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.5-jre-headless-ubuntu-jammy`, `21.0.5-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.6-jdk-headless-ubuntu-jammy`, `21.0.6-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.5-ubuntu-focal`, `21.0.5-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.5-jdk-ubuntu-focal`, `21.0.5-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.6-jre-ubuntu-jammy`, `21.0.6-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.5-jdk-headless-ubuntu-focal`, `21.0.5-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.6-jre-headless-ubuntu-jammy`, `21.0.6-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.5-jre-ubuntu-focal`, `21.0.5-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) +- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.6-ubuntu-focal`, `21.0.6-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.6-jdk-ubuntu-focal`, `21.0.6-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) -- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.5-jre-headless-ubuntu-focal`, `21.0.5-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f6332a68a6d854ff953f36794b0103497b644e11/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.6-jdk-headless-ubuntu-focal`, `21.0.6-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) -- [`17`, `17-jdk-ubuntu`, `17.0.13`, `17.0.13-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.13-ubuntu-noble`, `17.0.13-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.13-jdk-ubuntu-noble`, `17.0.13-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) +- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.6-jre-ubuntu-focal`, `21.0.6-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17.0.13-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.13-jdk-headless-ubuntu-noble`, `17.0.13-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.6-jre-headless-ubuntu-focal`, `21.0.6-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) -- [`17-jre-ubuntu`, `17.0.13-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.13-jre-ubuntu-noble`, `17.0.13-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`21-jdk-alpine`, `lts-jdk-alpine`, `21.0.6-jdk-alpine`, `21-alpine-3.21`, `lts-alpine-3.21`, `21.0.6-alpine-3.21`, `21-jdk-alpine-3.21`, `lts-jdk-alpine-3.21`, `21.0.6-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`17-jre-headless-ubuntu`, `17.0.13-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.13-jre-headless-ubuntu-noble`, `17.0.13-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-alpine`, `lts-jre-alpine`, `21.0.6-jre-alpine`, `21-jre-alpine-3.21`, `lts-jre-alpine-3.21`, `21.0.6-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/alpine/3_21/jre/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.13-ubuntu-jammy`, `17.0.13-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.13-jdk-ubuntu-jammy`, `17.0.13-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17`, `17-jdk-ubuntu`, `17.0.14`, `17.0.14-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.14-ubuntu-noble`, `17.0.14-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.14-jdk-ubuntu-noble`, `17.0.14-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.13-jdk-headless-ubuntu-jammy`, `17.0.13-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17.0.14-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.14-jdk-headless-ubuntu-noble`, `17.0.14-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.13-jre-ubuntu-jammy`, `17.0.13-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu`, `17.0.14-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.14-jre-ubuntu-noble`, `17.0.14-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.13-jre-headless-ubuntu-jammy`, `17.0.13-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu`, `17.0.14-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.14-jre-headless-ubuntu-noble`, `17.0.14-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.13-ubuntu-focal`, `17.0.13-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.13-jdk-ubuntu-focal`, `17.0.13-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.14-ubuntu-jammy`, `17.0.14-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.14-jdk-ubuntu-jammy`, `17.0.14-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.13-jdk-headless-ubuntu-focal`, `17.0.13-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.14-jdk-headless-ubuntu-jammy`, `17.0.14-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.13-jre-ubuntu-focal`, `17.0.13-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.14-jre-ubuntu-jammy`, `17.0.14-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.13-jre-headless-ubuntu-focal`, `17.0.13-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fd88009fc782ba7b919680ba995d749db2f5e364/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.14-jre-headless-ubuntu-jammy`, `17.0.14-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`11`, `11-jdk-ubuntu`, `11.0.25`, `11.0.25-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.25-ubuntu-noble`, `11.0.25-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.25-jdk-ubuntu-noble`, `11.0.25-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.14-ubuntu-focal`, `17.0.14-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.14-jdk-ubuntu-focal`, `17.0.14-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11.0.25-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.25-jdk-headless-ubuntu-noble`, `11.0.25-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.14-jdk-headless-ubuntu-focal`, `17.0.14-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu`, `11.0.25-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.25-jre-ubuntu-noble`, `11.0.25-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.14-jre-ubuntu-focal`, `17.0.14-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu`, `11.0.25-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.25-jre-headless-ubuntu-noble`, `11.0.25-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.14-jre-headless-ubuntu-focal`, `17.0.14-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.25-ubuntu-jammy`, `11.0.25-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.25-jdk-ubuntu-jammy`, `11.0.25-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`17-jdk-alpine`, `17.0.14-jdk-alpine`, `17-alpine-3.21`, `17.0.14-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.14-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.25-jdk-headless-ubuntu-jammy`, `11.0.25-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jre-alpine`, `17.0.14-jre-alpine`, `17-jre-alpine-3.21`, `17.0.14-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/alpine/3_21/jre/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.25-jre-ubuntu-jammy`, `11.0.25-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11`, `11-jdk-ubuntu`, `11.0.26`, `11.0.26-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.26-ubuntu-noble`, `11.0.26-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.26-jdk-ubuntu-noble`, `11.0.26-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.25-jre-headless-ubuntu-jammy`, `11.0.25-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11.0.26-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.26-jdk-headless-ubuntu-noble`, `11.0.26-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.25-ubuntu-focal`, `11.0.25-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.25-jdk-ubuntu-focal`, `11.0.25-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) +- [`11-jre-ubuntu`, `11.0.26-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.26-jre-ubuntu-noble`, `11.0.26-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.25-jdk-headless-ubuntu-focal`, `11.0.25-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11-jre-headless-ubuntu`, `11.0.26-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.26-jre-headless-ubuntu-noble`, `11.0.26-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.25-jre-ubuntu-focal`, `11.0.25-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.26-ubuntu-jammy`, `11.0.26-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.26-jdk-ubuntu-jammy`, `11.0.26-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.25-jre-headless-ubuntu-focal`, `11.0.25-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/74f392cfc725505f1c49bff08a4e37c9bdb9b8c0/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.26-jdk-headless-ubuntu-jammy`, `11.0.26-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) + +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.26-jre-ubuntu-jammy`, `11.0.26-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) + +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.26-jre-headless-ubuntu-jammy`, `11.0.26-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) + +- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.26-ubuntu-focal`, `11.0.26-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.26-jdk-ubuntu-focal`, `11.0.26-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) + +- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.26-jdk-headless-ubuntu-focal`, `11.0.26-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) + +- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.26-jre-ubuntu-focal`, `11.0.26-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) + +- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.26-jre-headless-ubuntu-focal`, `11.0.26-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) @@ -176,6 +188,24 @@ docker build -t myapp . docker run -it --rm myapp ``` +# Image Variants + +The `sapmachine` images come in many flavors, each designed for a specific use case. + +## `sapmachine:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. + +## `sapmachine:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License The Dockerfiles and associated scripts are licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html). From 87fdeeb399f56698956707df56ddff3aa7f56204 Mon Sep 17 00:00:00 2001 From: Tully Foote Date: Mon, 27 Jan 2025 16:27:47 -0800 Subject: [PATCH 1849/2686] Update index.ros.org links (#2533) --- ros/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ros/content.md b/ros/content.md index 57dd042fc79e..e341c258164c 100644 --- a/ros/content.md +++ b/ros/content.md @@ -205,7 +205,7 @@ $ docker-compose rm ### ROS 1 Bridge -To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge/github-ros2-ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. +To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. ```dockerfile FROM %%IMAGE%%:noetic @@ -250,12 +250,12 @@ services: [Q&A](https://answers.ros.org/questions/): Ask questions. Get answers [Forums](https://discourse.ros.org/): Hear the latest discussions [Blog](http://www.ros.org/news/): Stay up-to-date -[Packages](https://index.ros.org/packages/): Discover indexed packages +[Packages](https://index.ros.org/?search_packages=true): Discover indexed packages [OSRF](https://www.osrfoundation.org/): Open Source Robotics Foundation ## ROS 2 -[Index](https://index.ros.org/doc/ros2/): ROS 2 Documentation +[Index](https://docs.ros.org): ROS 2 Documentation [Design](https://design.ros2.org/): ROS 2 Design Articles ## ROS 1 From 5dc17925773c20d418c8d3cebfdd75953b418916 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Jan 2025 17:09:31 -0800 Subject: [PATCH 1850/2686] Run update.sh --- bash/README.md | 16 +++++++-------- gradle/README.md | 48 ++++++++++++++++++++++----------------------- liquibase/README.md | 4 ++-- ros/README.md | 6 +++--- spiped/README.md | 4 ++-- 5 files changed, 39 insertions(+), 39 deletions(-) diff --git a/bash/README.md b/bash/README.md index 5c2927030033..a7595f18c26a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -34,21 +34,21 @@ WARNING: - [`5.0.18`, `5.0`, `5.0.18-alpine3.21`, `5.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.21`, `4.4-alpine3.21`, `4-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.4/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.21`, `4.4-alpine3.21`, `4-alpine3.21`](https://github.com/tianon/docker-bash/blob/9d45ba25a4e765a55bac62098e4f0360dc3c79b3/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.21`, `4.3-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.3/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.21`, `4.3-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.21`, `4.2-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.2/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.21`, `4.2-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.21`, `4.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.1/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.21`, `4.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.21`, `4.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/4.0/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.21`, `4.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.21`, `3.2-alpine3.21`, `3-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.2/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.21`, `3.2-alpine3.21`, `3-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.21`, `3.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.1/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.21`, `3.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.21`, `3.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/3.0/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.21`, `3.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.0/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 55830419ea0a..0c7bc549827d 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.0-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.0-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8/Dockerfile) +- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8/Dockerfile) -- [`8.12.0-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8-focal/Dockerfile) +- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8-focal/Dockerfile) -- [`8.12.0-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.0-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk8-corretto/Dockerfile) +- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8-corretto/Dockerfile) -- [`8.12.0-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.0-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11/Dockerfile) +- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11/Dockerfile) -- [`8.12.0-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-focal/Dockerfile) +- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-focal/Dockerfile) -- [`8.12.0-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-alpine/Dockerfile) +- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-alpine/Dockerfile) -- [`8.12.0-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.0-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk11-corretto/Dockerfile) +- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-corretto/Dockerfile) -- [`8.12.0-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.0-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17/Dockerfile) +- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17/Dockerfile) -- [`8.12.0-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.0-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.0-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-focal/Dockerfile) +- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-focal/Dockerfile) -- [`8.12.0-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.0-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-alpine/Dockerfile) +- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-alpine/Dockerfile) -- [`8.12.0-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.0-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-corretto/Dockerfile) +- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-corretto/Dockerfile) -- [`8.12.0-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.0-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.0-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.0-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.0-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.0-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk17-graal/Dockerfile) +- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-graal/Dockerfile) -- [`8.12.0-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.0-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.0-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.0`, `8.12`, `8`, `8.12.0-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.0-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21/Dockerfile) +- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21/Dockerfile) -- [`8.12.0-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.0-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-alpine/Dockerfile) +- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-alpine/Dockerfile) -- [`8.12.0-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.0-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-corretto/Dockerfile) +- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-corretto/Dockerfile) -- [`8.12.0-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.0-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk21-graal/Dockerfile) +- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-graal/Dockerfile) -- [`8.12.0-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.0-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23/Dockerfile) +- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23/Dockerfile) -- [`8.12.0-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-alpine/Dockerfile) +- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-alpine/Dockerfile) -- [`8.12.0-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-corretto/Dockerfile) +- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-corretto/Dockerfile) -- [`8.12.0-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk23-graal/Dockerfile) +- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-graal/Dockerfile) -- [`8.12.0-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.0-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.0-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.0-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current/Dockerfile) +- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current/Dockerfile) -- [`8.12.0-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.0-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-alpine/Dockerfile) +- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-alpine/Dockerfile) -- [`8.12.0-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.0-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.0-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.0-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-corretto/Dockerfile) +- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-corretto/Dockerfile) -- [`8.12.0-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.0-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.0-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.0-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/24b58bb37bb35d1ca6cebbe1b6e086b9e27bfb74/jdk-lts-and-current-graal/Dockerfile) +- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) diff --git a/liquibase/README.md b/liquibase/README.md index 4ef6d6a1ebab..ae4e9d1e6ca1 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.31`, `4.31.0`, `latest`](https://github.com/liquibase/docker/blob/ff5441b137e517f983ab09869f3b1a956f0c839a/Dockerfile) +- [`4.31`, `4.31.0`, `latest`](https://github.com/liquibase/docker/blob/e348326855672a5d20d1789cfdab1ac8b2a6afa2/Dockerfile) -- [`4.31-alpine`, `4.31.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/ff5441b137e517f983ab09869f3b1a956f0c839a/Dockerfile.alpine) +- [`4.31-alpine`, `4.31.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/e348326855672a5d20d1789cfdab1ac8b2a6afa2/Dockerfile.alpine) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index eec0119375ad..bcc09e182d50 100644 --- a/ros/README.md +++ b/ros/README.md @@ -282,7 +282,7 @@ $ docker-compose rm ### ROS 1 Bridge -To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge/github-ros2-ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. +To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. ```dockerfile FROM ros:noetic @@ -327,12 +327,12 @@ services: [Q&A](https://answers.ros.org/questions/): Ask questions. Get answers [Forums](https://discourse.ros.org/): Hear the latest discussions [Blog](http://www.ros.org/news/): Stay up-to-date -[Packages](https://index.ros.org/packages/): Discover indexed packages +[Packages](https://index.ros.org/?search_packages=true): Discover indexed packages [OSRF](https://www.osrfoundation.org/): Open Source Robotics Foundation ## ROS 2 -[Index](https://index.ros.org/doc/ros2/): ROS 2 Documentation +[Index](https://docs.ros.org): ROS 2 Documentation [Design](https://design.ros2.org/): ROS 2 Design Articles ## ROS 1 diff --git a/spiped/README.md b/spiped/README.md index a47aecabf74d..153a4a42a139 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.2`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/734961b7d2f6977c52a4136def06bf2f92d905d4/1.6/Dockerfile) +- [`1.6.3`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/917d35aa378a013b033fb1eaf34acdef342fa7b6/1.6/Dockerfile) -- [`1.6.2-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/646ceea9c33a13927a6702bf413650b6e66cea39/1.6/alpine/Dockerfile) +- [`1.6.3-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/917d35aa378a013b033fb1eaf34acdef342fa7b6/1.6/alpine/Dockerfile) # Quick reference (cont.) From 0148c2fe81c388cadbffa27b6301c03a2c67e6f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Jan 2025 10:09:28 -0800 Subject: [PATCH 1851/2686] Run update.sh --- storm/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/storm/README.md b/storm/README.md index 97d8d5c6ab45..bc7c3b56f4ff 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.7.1`, `2.7`, `latest`](https://github.com/apache/storm-docker/blob/59ee14a11bd6d890c8ff3ed7a327b8464ab79f3a/2.7.1/Dockerfile) - -- [`2.7.1-jre17`, `2.7-jre17`](https://github.com/apache/storm-docker/blob/59ee14a11bd6d890c8ff3ed7a327b8464ab79f3a/2.7.1-jre17/Dockerfile) +- [`2.8.0`, `2.8`, `latest`, `2.8.0-jre17`, `2.8-jre17`](https://github.com/apache/storm-docker/blob/fefacef2f400d8f437675b11e08bc6098a91c188/2.8.0/Dockerfile) # Quick reference (cont.) From c68864ee695b2c68d9cdfeec665696b3bff2032a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Jan 2025 11:09:48 -0800 Subject: [PATCH 1852/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index cb4e3fc0fe2e..19cb2d4c9698 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.10`, `16.10.2`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.2-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.3`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.3-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.2-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.3-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.2-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/beed20b75ae4c952be757cec1502151d2d2a7939/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.3-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mariadb-tomcat/Dockerfile) - [`15`, `15.10`, `15.10.16`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.16-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/mysql-tomcat/Dockerfile) From 3b9e9a9e3a3070ded49865958e1a586760e80a6a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Jan 2025 15:09:32 -0800 Subject: [PATCH 1853/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 +- groovy/README.md | 14 +++---- openjdk/README.md | 100 ++++++++++++++++++++++----------------------- rabbitmq/README.md | 12 +++--- 5 files changed, 66 insertions(+), 66 deletions(-) diff --git a/bash/README.md b/bash/README.md index a7595f18c26a..bcfff51dbed4 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250117`, `devel`, `devel-20250117-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/908898685c361ccbf932353cf9aa9a763b3ee3a4/devel/Dockerfile) +- [`devel-20250124`, `devel`, `devel-20250124-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/eea20aa3ca0430bafcfeb9d6fd28d2c6d3e55f04/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 8edffbc81357..bcf15429048a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.107.2`, `5.107`, `5`, `latest`](https://github.com/docker-library/ghost/blob/981db336b107c8a85fbbfd3620dc4f27a3140cc9/5/debian/Dockerfile) +- [`5.108.1`, `5.108`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7dffa59d6f724f7d43fc8539feeeb60aaba97926/5/debian/Dockerfile) -- [`5.107.2-alpine`, `5.107-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/981db336b107c8a85fbbfd3620dc4f27a3140cc9/5/alpine/Dockerfile) +- [`5.108.1-alpine`, `5.108-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7dffa59d6f724f7d43fc8539feeeb60aaba97926/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/groovy/README.md b/groovy/README.md index 0a849f2cb695..e520b232bde9 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.24-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.24-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk8/Dockerfile) +- [`4.0.25-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.25-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk8/Dockerfile) -- [`4.0.24-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.24-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk11/Dockerfile) +- [`4.0.25-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.25-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk11/Dockerfile) -- [`4.0.24-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk11-alpine/Dockerfile) +- [`4.0.25-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk11-alpine/Dockerfile) -- [`4.0.24-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.24-jdk`, `4.0-jdk`, `4.0.24`, `4.0`, `4`, `jdk`, `latest`, `4.0.24-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.24-jdk-jammy`, `4.0-jdk-jammy`, `4.0.24-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk17/Dockerfile) +- [`4.0.25-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.25-jdk`, `4.0-jdk`, `4.0.25`, `4.0`, `4`, `jdk`, `latest`, `4.0.25-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.25-jdk-jammy`, `4.0-jdk-jammy`, `4.0.25-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk17/Dockerfile) -- [`4.0.24-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.24-jdk-alpine`, `4.0-jdk-alpine`, `4.0.24-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk17-alpine/Dockerfile) +- [`4.0.25-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.25-jdk-alpine`, `4.0-jdk-alpine`, `4.0.25-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk17-alpine/Dockerfile) -- [`4.0.24-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.24-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk21/Dockerfile) +- [`4.0.25-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.25-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk21/Dockerfile) -- [`4.0.24-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/1929700588fb34f0a2de30ca5a9553773df77ea3/jdk21-alpine/Dockerfile) +- [`4.0.25-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 17b6f4c10a1e..89965cd3b9b3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,93 +42,93 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-6-jdk-oraclelinux9`, `25-ea-6-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-6-jdk-oracle`, `25-ea-6-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-7-jdk-oraclelinux9`, `25-ea-7-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-7-jdk-oracle`, `25-ea-7-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-6-jdk-oraclelinux8`, `25-ea-6-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-7-jdk-oraclelinux8`, `25-ea-7-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-6-jdk-bookworm`, `25-ea-6-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/bookworm/Dockerfile) +- [`25-ea-7-jdk-bookworm`, `25-ea-7-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/bookworm/Dockerfile) -- [`25-ea-6-jdk-slim-bookworm`, `25-ea-6-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-6-jdk-slim`, `25-ea-6-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-7-jdk-slim-bookworm`, `25-ea-7-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-7-jdk-slim`, `25-ea-7-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-6-jdk-bullseye`, `25-ea-6-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/bullseye/Dockerfile) +- [`25-ea-7-jdk-bullseye`, `25-ea-7-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/bullseye/Dockerfile) -- [`25-ea-6-jdk-slim-bullseye`, `25-ea-6-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-7-jdk-slim-bullseye`, `25-ea-7-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-6-jdk-windowsservercore-ltsc2025`, `25-ea-6-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-7-jdk-windowsservercore-ltsc2025`, `25-ea-7-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-6-jdk-windowsservercore-ltsc2022`, `25-ea-6-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-7-jdk-windowsservercore-ltsc2022`, `25-ea-7-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-6-jdk-windowsservercore-1809`, `25-ea-6-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-7-jdk-windowsservercore-1809`, `25-ea-7-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-6-jdk-nanoserver-ltsc2025`, `25-ea-6-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-7-jdk-nanoserver-ltsc2025`, `25-ea-7-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-6-jdk-nanoserver-ltsc2022`, `25-ea-6-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-7-jdk-nanoserver-ltsc2022`, `25-ea-7-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-6-jdk-nanoserver-1809`, `25-ea-6-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-7-jdk-nanoserver-1809`, `25-ea-7-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-32-jdk-oraclelinux9`, `24-ea-32-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-32-jdk-oracle`, `24-ea-32-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-33-jdk-oraclelinux9`, `24-ea-33-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-33-jdk-oracle`, `24-ea-33-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-32-jdk-oraclelinux8`, `24-ea-32-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-33-jdk-oraclelinux8`, `24-ea-33-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-32-jdk-bookworm`, `24-ea-32-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/bookworm/Dockerfile) +- [`24-ea-33-jdk-bookworm`, `24-ea-33-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/bookworm/Dockerfile) -- [`24-ea-32-jdk-slim-bookworm`, `24-ea-32-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-32-jdk-slim`, `24-ea-32-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-33-jdk-slim-bookworm`, `24-ea-33-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-33-jdk-slim`, `24-ea-33-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-32-jdk-bullseye`, `24-ea-32-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/bullseye/Dockerfile) +- [`24-ea-33-jdk-bullseye`, `24-ea-33-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/bullseye/Dockerfile) -- [`24-ea-32-jdk-slim-bullseye`, `24-ea-32-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-33-jdk-slim-bullseye`, `24-ea-33-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-32-jdk-windowsservercore-ltsc2025`, `24-ea-32-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24-ea-33-jdk-windowsservercore-ltsc2025`, `24-ea-33-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24-ea-32-jdk-windowsservercore-ltsc2022`, `24-ea-32-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-33-jdk-windowsservercore-ltsc2022`, `24-ea-33-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-32-jdk-windowsservercore-1809`, `24-ea-32-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-33-jdk-windowsservercore-1809`, `24-ea-33-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-32-jdk-nanoserver-ltsc2025`, `24-ea-32-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24-ea-33-jdk-nanoserver-ltsc2025`, `24-ea-33-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24-ea-32-jdk-nanoserver-ltsc2022`, `24-ea-32-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24-ea-33-jdk-nanoserver-ltsc2022`, `24-ea-33-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24-ea-32-jdk-nanoserver-1809`, `24-ea-32-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-33-jdk-nanoserver-1809`, `24-ea-33-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-6-jdk`, `25-ea-6`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-7-jdk`, `25-ea-7`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-6-jdk-windowsservercore`, `25-ea-6-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-7-jdk-windowsservercore`, `25-ea-7-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/865aad9bc52991b6e92179eb06e6e49a50004f16/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-6-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-6-jdk-nanoserver`, `25-ea-6-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-7-jdk-nanoserver`, `25-ea-7-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-6-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-6-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/534646f0941d909897d91eddc7f8c7c7cc53a652/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-6-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6795b600616b3c7f6ef9ea2934605d05f1bba516/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-7-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-7-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-32-jdk`, `24-ea-32`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-33-jdk`, `24-ea-33`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-32-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-32-jdk-windowsservercore`, `24-ea-32-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-33-jdk-windowsservercore`, `24-ea-33-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-32-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-32-jdk-nanoserver`, `24-ea-32-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-33-jdk-nanoserver`, `24-ea-33-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-32-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-ea-32-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-ea-32-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/380a19a45b33ed24643eedd5a4d2c1a2661603a7/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-33-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-ea-33-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 0a828d0c5d91..d560795a4eb2 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/99ed8dff13e2b79fc189b76bbbfec8d07947e6b9/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/16db9e144e0c83d82e82533870054e609dbc8ca4/4.0/ubuntu/Dockerfile) +- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.0/ubuntu/Dockerfile) - [`4.0.5-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/4.0/alpine/Dockerfile) +- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.0/alpine/Dockerfile) - [`4.0.5-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/55d4ee381759d78087e5b7acde2aa9deba35a847/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/942e3c7fc594b4820a56118251a54fc97224dbe5/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From f9e18e3d0c67f5be4fb260dab03353a6ec4b3650 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Jan 2025 16:09:23 -0800 Subject: [PATCH 1854/2686] Run update.sh --- open-liberty/README.md | 54 ++++++++++++++++++++++--------------- websphere-liberty/README.md | 48 ++++++++++++++++++++------------- 2 files changed, 63 insertions(+), 39 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index c4d99ca50ef3..effd0c6ff28c 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,47 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d9cd18803d0ac0e4a4ead2b6b750f6550e1eda14/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 37db68e62a3e..0a69b64b5ef9 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/5a4666b9370e5977b5b93a613e2ed893d4996f19/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 0ad339267c42908d69e9836fa407aff4d5d583e4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Jan 2025 17:09:40 -0800 Subject: [PATCH 1855/2686] Run update.sh --- mongo/README.md | 66 ++++++++++++++----------------------------------- 1 file changed, 18 insertions(+), 48 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 256cfb359120..6ae9569b3c16 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -64,29 +64,17 @@ WARNING: - [`6.0.20-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.31-rc1-focal`, `5.0-rc-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) +- [`5.0.31-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/Dockerfile) -- [`5.0.31-rc1-windowsservercore-ltsc2025`, `5.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`5.0.31-windowsservercore-ltsc2025`, `5.0-windowsservercore-ltsc2025`, `5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`5.0.31-rc1-windowsservercore-ltsc2022`, `5.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`5.0.31-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`5.0.31-rc1-windowsservercore-1809`, `5.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`5.0.31-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) -- [`5.0.31-rc1-nanoserver-ltsc2022`, `5.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`5.0.31-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`5.0.31-rc1-nanoserver-1809`, `5.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`5.0.30-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) - -- [`5.0.30-windowsservercore-ltsc2025`, `5.0-windowsservercore-ltsc2025`, `5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`5.0.30-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.30-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.30-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.30-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-1809/Dockerfile) +- [`5.0.31-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -144,41 +132,23 @@ WARNING: - [`6.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.31-rc1`, `5.0-rc`: - - - [`5.0.31-rc1-focal`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/Dockerfile) - - [`5.0.31-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `5.0.31-rc1-windowsservercore`, `5.0-rc-windowsservercore`: - - - [`5.0.31-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.31-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `5.0.31-rc1-nanoserver`, `5.0-rc-nanoserver`: - - - [`5.0.31-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.31-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/dbe4b11fc98c9d88bfa6cd7b7d669c6c9a09c89d/5.0-rc/windows/nanoserver-1809/Dockerfile) - -- `5.0.30`, `5.0`, `5`: +- `5.0.31`, `5.0`, `5`: - - [`5.0.30-focal`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/Dockerfile) - - [`5.0.30-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.31-focal`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/Dockerfile) + - [`5.0.31-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.31-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.30-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: +- `5.0.31-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - [`5.0.30-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.30-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.30-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/windowsservercore-1809/Dockerfile) + - [`5.0.31-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.31-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.31-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) -- `5.0.30-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: +- `5.0.31-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - [`5.0.30-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.30-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65909c24a2d4c3380b7a6512fd83dbc9ce00244f/5.0/windows/nanoserver-1809/Dockerfile) + - [`5.0.31-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`5.0.31-nanoserver-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 44f576d434e5c29ea11ed91f3affe93cb41ce160 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Jan 2025 09:09:31 -0800 Subject: [PATCH 1856/2686] Run update.sh --- traefik/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index a6532ba6a364..34455a0d92df 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -32,13 +32,13 @@ WARNING: - [`v3.3.2`, `3.3.2`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/alpine/Dockerfile) -- [`v2.11.18-windowsservercore-ltsc2022`, `2.11.18-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.19-windowsservercore-ltsc2022`, `2.11.19-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.18-windowsservercore-1809`, `2.11.18-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/1809/Dockerfile) +- [`v2.11.19-windowsservercore-1809`, `2.11.19-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/1809/Dockerfile) -- [`v2.11.18-nanoserver-ltsc2022`, `2.11.18-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.19-nanoserver-ltsc2022`, `2.11.19-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.18`, `2.11.18`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/1ac92d6e82c89ec76c6fd3a4e2230e75c5246ec4/v2.11/alpine/Dockerfile) +- [`v2.11.19`, `2.11.19`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 2c03f15e3845005ed2dbd63c0e59e15cf263e1a7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Jan 2025 12:09:30 -0800 Subject: [PATCH 1857/2686] Run update.sh --- clojure/README.md | 138 +++++++++++++++++++++++----------------------- jruby/README.md | 32 +++++------ xwiki/README.md | 12 ++-- 3 files changed, 91 insertions(+), 91 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index bea657b9f4c1..8e7d04243ada 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1495-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1501-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1495-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1501-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1495-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1501-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1495`, `temurin-8-tools-deps-1.12.0.1495-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1501`, `temurin-8-tools-deps-1.12.0.1501-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1495-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1501-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1495-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1501-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1495-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1501-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1495-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1501-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1495`, `temurin-11-tools-deps-1.12.0.1495-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1501`, `temurin-11-tools-deps-1.12.0.1501-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1495-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1501-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1495-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1501-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1495-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1501-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1495-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1501-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1495`, `temurin-17-tools-deps-1.12.0.1495-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1501`, `temurin-17-tools-deps-1.12.0.1501-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1495-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1501-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1495-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1501-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1495`, `temurin-21-tools-deps-1.12.0.1495-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1495`, `tools-deps-1.12.0.1495-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1501`, `temurin-21-tools-deps-1.12.0.1501-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1501`, `tools-deps-1.12.0.1501-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1495-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1501-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1495-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1495-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1501-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1501-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1495-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1501-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1495-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1501-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1495-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1501-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) -- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-23/lein/Dockerfile) +- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) -- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1495-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1501-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1495`, `temurin-23-tools-deps-1.12.0.1495-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1501`, `temurin-23-tools-deps-1.12.0.1501-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-23/tools-deps/Dockerfile) -- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1495-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bookworm-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1495-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1501-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1495-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/debian-bullseye-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-23/tools-deps/Dockerfile) -- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1495-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/7dfc8d5f733f01667dfb75bb983fe914739f7457/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) +- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1501-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index 44249c051456..f3b0af4bb4e1 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.10`, `9.4-jre`, `9.4-jre8`, `9.4.10-jre`, `9.4.10-jre8`, `9.4.10.0`, `9.4.10.0-jre`, `9.4.10.0-jre8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre8/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.11`, `9.4-jre`, `9.4-jre8`, `9.4.11-jre`, `9.4.11-jre8`, `9.4.11.0`, `9.4.11.0-jre`, `9.4.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.10-jdk`, `9.4.10-jdk8`, `9.4.10.0-jdk`, `9.4.10.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.11-jdk`, `9.4.11-jdk8`, `9.4.11.0-jdk`, `9.4.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.10-jre11`, `9.4.10.0-jre11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.11-jre11`, `9.4.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.10-jdk11`, `9.4.10.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.11-jdk11`, `9.4.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.10-jdk17`, `9.4.10.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.11-jdk17`, `9.4.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.10-jre17`, `9.4.10.0-jre17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.11-jre17`, `9.4.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.10-jdk21`, `9.4.10.0-jdk21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.11-jdk21`, `9.4.11.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.10-jre21`, `9.4.10.0-jre21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.11-jre21`, `9.4.11.0-jre21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/e60ec1ef87c43b13f67ccf20c1dd92610cfdb6a6/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 19cb2d4c9698..4d7fb72e7523 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`16`, `16.10`, `16.10.3`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.3-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mysql-tomcat/Dockerfile) +- [`17`, `17.0`, `17.0.0`, `17-mysql-tomcat`, `17.0-mysql-tomcat`, `17.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.3-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.0-postgres-tomcat`, `17.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.3-mariadb-tomcat`, `mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.0-mariadb-tomcat`, `17.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/mariadb-tomcat/Dockerfile) -- [`15`, `15.10`, `15.10.16`, `15-mysql-tomcat`, `15.10-mysql-tomcat`, `15.10.16-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.3`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.3-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mysql-tomcat/Dockerfile) -- [`15-postgres-tomcat`, `15.10-postgres-tomcat`, `15.10.16-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.3-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/postgres-tomcat/Dockerfile) -- [`15-mariadb-tomcat`, `15.10-mariadb-tomcat`, `15.10.16-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/fab7d75641c1be35a39ce4895178946a16a14f9b/15/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.3-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) From 85a42b9b8cdad31e30234d5cf0014927c332fcf4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Jan 2025 15:09:26 -0800 Subject: [PATCH 1858/2686] Run update.sh --- haproxy/README.md | 20 ++++++++++---------- redmine/README.md | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index eb7de794c706..dc0a4d05d1cf 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,25 +28,25 @@ WARNING: - [`3.2-dev4-alpine`, `3.2-dev-alpine`, `3.2-dev4-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7befb826ce64d07796378978a0bf12b3aabec301/3.2/alpine/Dockerfile) -- [`3.1.2`, `3.1`, `latest`, `3.1.2-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/116ca50708ff505ac73b7c8dcc6d7689151946bb/3.1/Dockerfile) +- [`3.1.3`, `3.1`, `latest`, `3.1.3-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/9172eda0839755b609790ff159545e1f7d66d9b1/3.1/Dockerfile) -- [`3.1.2-alpine`, `3.1-alpine`, `alpine`, `3.1.2-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/116ca50708ff505ac73b7c8dcc6d7689151946bb/3.1/alpine/Dockerfile) +- [`3.1.3-alpine`, `3.1-alpine`, `alpine`, `3.1.3-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/9172eda0839755b609790ff159545e1f7d66d9b1/3.1/alpine/Dockerfile) -- [`3.0.7`, `3.0`, `lts`, `3.0.7-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/f0dc84e9e09aa9aa758e6f9340ee0ab3b440930d/3.0/Dockerfile) +- [`3.0.8`, `3.0`, `lts`, `3.0.8-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/262506addcf26d79cf3983d5556b835d5818ee63/3.0/Dockerfile) -- [`3.0.7-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.7-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/3.0/alpine/Dockerfile) +- [`3.0.8-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.8-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/262506addcf26d79cf3983d5556b835d5818ee63/3.0/alpine/Dockerfile) -- [`2.9.13`, `2.9`, `2.9.13-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/0c1da312a638ecef78b17c6919ec9780bc1f75e9/2.9/Dockerfile) +- [`2.9.14`, `2.9`, `2.9.14-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/812c8779de1250bb2e3e2c7da0a4b543ccc49edb/2.9/Dockerfile) -- [`2.9.13-alpine`, `2.9-alpine`, `2.9.13-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.9/alpine/Dockerfile) +- [`2.9.14-alpine`, `2.9-alpine`, `2.9.14-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/812c8779de1250bb2e3e2c7da0a4b543ccc49edb/2.9/alpine/Dockerfile) -- [`2.8.13`, `2.8`, `2.8.13-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/ff4e3ce324778f1c2b65d6d61ddbf00c0b51793b/2.8/Dockerfile) +- [`2.8.14`, `2.8`, `2.8.14-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/Dockerfile) -- [`2.8.13-alpine`, `2.8-alpine`, `2.8.13-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.8/alpine/Dockerfile) +- [`2.8.14-alpine`, `2.8-alpine`, `2.8.14-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/alpine/Dockerfile) -- [`2.6.20`, `2.6`, `2.6.20-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/a0cdd805ad2cccf3400fb99dd18d0f49579d1cf4/2.6/Dockerfile) +- [`2.6.21`, `2.6`, `2.6.21-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/1d0ad8c9e8dd1b976f8cc81b263f18bcfc1d9be2/2.6/Dockerfile) -- [`2.6.20-alpine`, `2.6-alpine`, `2.6.20-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.6/alpine/Dockerfile) +- [`2.6.21-alpine`, `2.6-alpine`, `2.6.21-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/1d0ad8c9e8dd1b976f8cc81b263f18bcfc1d9be2/2.6/alpine/Dockerfile) - [`2.4.28`, `2.4`, `2.4.28-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 9a62cb98f94c..f19782e3c029 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6`, `latest`, `6.0.2-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/bookworm/Dockerfile) +- [`6.0.3`, `6.0`, `6`, `latest`, `6.0.3-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/bookworm/Dockerfile) -- [`6.0.2-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/alpine3.21/Dockerfile) +- [`6.0.3-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/alpine3.21/Dockerfile) -- [`6.0.2-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/6.0/alpine3.20/Dockerfile) +- [`6.0.3-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/alpine3.20/Dockerfile) -- [`5.1.5`, `5.1`, `5`, `5.1.5-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/bookworm/Dockerfile) +- [`5.1.6`, `5.1`, `5`, `5.1.6-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/bookworm/Dockerfile) -- [`5.1.5-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.5-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/alpine3.21/Dockerfile) +- [`5.1.6-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.6-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/alpine3.21/Dockerfile) -- [`5.1.5-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.1/alpine3.20/Dockerfile) +- [`5.1.6-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/alpine3.20/Dockerfile) - [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/bookworm/Dockerfile) From 903a1070ca109afa10bfd7db515ca702aa27cc26 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Jan 2025 15:09:44 -0800 Subject: [PATCH 1859/2686] Run update.sh --- arangodb/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index da86b1a96c06..e436ed2d1fb8 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.11`, `3.11.12`](https://github.com/arangodb/arangodb-docker/blob/de481d822b675af548d17ec1a448fe7dbee97641/alpine/3.11.12_alpine-3.18/Dockerfile) -- [`3.12`, `3.12.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/de481d822b675af548d17ec1a448fe7dbee97641/alpine/3.12.3_alpine-3.18/Dockerfile) +- [`3.12`, `3.12.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/1c6635050356d0645ed247ee69f3736007a54e27/alpine/3.12.4/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index dbc851e219e0..420bd1ac3373 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9fe8ed8899da004b76331cea812f7caae9c3a957/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7-slim-fips/Dockerfile) # Quick reference (cont.) From 29f24b2c3d5707a450768f125634ae9342c004af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Jan 2025 16:09:31 -0800 Subject: [PATCH 1860/2686] Run update.sh --- ghost/README.md | 4 ++-- redmine/README.md | 6 +++--- rust/README.md | 12 ++++++------ 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index bcf15429048a..c6db30d4c0e0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.108.1`, `5.108`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7dffa59d6f724f7d43fc8539feeeb60aaba97926/5/debian/Dockerfile) +- [`5.108.2`, `5.108`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5adaa687a01a8c50cdb36f6965e366852d3fa88e/5/debian/Dockerfile) -- [`5.108.1-alpine`, `5.108-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7dffa59d6f724f7d43fc8539feeeb60aaba97926/5/alpine/Dockerfile) +- [`5.108.2-alpine`, `5.108-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5adaa687a01a8c50cdb36f6965e366852d3fa88e/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index f19782e3c029..b0ed8ddb76f7 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -36,11 +36,11 @@ WARNING: - [`5.1.6-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/alpine3.20/Dockerfile) -- [`5.0.10`, `5.0`, `5.0.10-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/bookworm/Dockerfile) +- [`5.0.11`, `5.0`, `5.0.11-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/bookworm/Dockerfile) -- [`5.0.10-alpine3.21`, `5.0-alpine3.21`, `5.0.10-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/alpine3.21/Dockerfile) +- [`5.0.11-alpine3.21`, `5.0-alpine3.21`, `5.0.11-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/alpine3.21/Dockerfile) -- [`5.0.10-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/b160f7adabeb4216193103061c576210c8ca6674/5.0/alpine3.20/Dockerfile) +- [`5.0.11-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index ce860d715fb6..e84f715e9a7c 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.84-bullseye`, `1.84.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.84-bullseye`, `1.84.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.84-slim-bullseye`, `1.84.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.84-slim-bullseye`, `1.84.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.84-bookworm`, `1.84.0-bookworm`, `bookworm`, `1`, `1.84`, `1.84.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.84-bookworm`, `1.84.1-bookworm`, `bookworm`, `1`, `1.84`, `1.84.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.84-slim-bookworm`, `1.84.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.84-slim`, `1.84.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.84-slim-bookworm`, `1.84.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.84-slim`, `1.84.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.84-alpine3.20`, `1.84.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.84-alpine3.20`, `1.84.1-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.84-alpine3.21`, `1.84.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.84-alpine`, `1.84.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/a6488232546c088ca9153d7a4154a3e5964ec576/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.84-alpine3.21`, `1.84.1-alpine3.21`, `alpine3.21`, `1-alpine`, `1.84-alpine`, `1.84.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From 7df2baabaddf8c6d99d19056ae5264080777caa1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Jan 2025 17:09:41 -0800 Subject: [PATCH 1861/2686] Run update.sh --- eclipse-temurin/README.md | 488 +++++++++++++++++++------------------- 1 file changed, 244 insertions(+), 244 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 26358d98c0c6..914be836cab2 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,425 +28,425 @@ WARNING: ## Simple Tags -- [`8u432-b06-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/alpine/3.20/Dockerfile) +- [`8u442-b06-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/alpine/3.20/Dockerfile) -- [`8u432-b06-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u432-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/alpine/3.21/Dockerfile) +- [`8u442-b06-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u442-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/alpine/3.21/Dockerfile) -- [`8u432-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/focal/Dockerfile) +- [`8u442-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/focal/Dockerfile) -- [`8u432-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u442-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u432-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/noble/Dockerfile) +- [`8u442-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/noble/Dockerfile) -- [`8u432-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u442-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u432-b06-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u442-b06-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u432-b06-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u442-b06-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u432-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u442-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u432-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u442-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u432-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u442-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) -- [`8u432-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u442-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-1809/Dockerfile) -- [`8u432-b06-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/alpine/3.20/Dockerfile) +- [`8u442-b06-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/alpine/3.20/Dockerfile) -- [`8u432-b06-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u432-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/alpine/3.21/Dockerfile) +- [`8u442-b06-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u442-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/alpine/3.21/Dockerfile) -- [`8u432-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/focal/Dockerfile) +- [`8u442-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/focal/Dockerfile) -- [`8u432-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/jammy/Dockerfile) +- [`8u442-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/jammy/Dockerfile) -- [`8u432-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/noble/Dockerfile) +- [`8u442-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/noble/Dockerfile) -- [`8u432-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u442-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u432-b06-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u442-b06-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u432-b06-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u442-b06-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u432-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u442-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u432-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u442-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u432-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) +- [`8u442-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) -- [`8u432-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) +- [`8u442-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.25_9-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/alpine/3.20/Dockerfile) +- [`11.0.26_4-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/alpine/3.20/Dockerfile) -- [`11.0.25_9-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.25_9-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/alpine/3.21/Dockerfile) +- [`11.0.26_4-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.26_4-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/alpine/3.21/Dockerfile) -- [`11.0.25_9-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.26_4-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.25_9-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.26_4-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.25_9-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.26_4-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.25_9-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.26_4-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.25_9-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.26_4-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.25_9-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.26_4-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.25_9-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.26_4-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.25_9-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.26_4-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.25_9-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.26_4-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) -- [`11.0.25_9-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.26_4-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-1809/Dockerfile) -- [`11.0.25_9-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/alpine/3.20/Dockerfile) +- [`11.0.26_4-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/alpine/3.20/Dockerfile) -- [`11.0.25_9-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.25_9-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/alpine/3.21/Dockerfile) +- [`11.0.26_4-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.26_4-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/alpine/3.21/Dockerfile) -- [`11.0.25_9-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.26_4-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.25_9-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.26_4-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.25_9-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.26_4-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.25_9-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.26_4-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.25_9-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.26_4-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.25_9-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.26_4-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.25_9-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.26_4-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.25_9-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.26_4-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.25_9-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`11.0.26_4-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) -- [`11.0.25_9-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) +- [`11.0.26_4-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-1809/Dockerfile) -- [`17.0.13_11-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/alpine/3.20/Dockerfile) +- [`17.0.14_7-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/alpine/3.20/Dockerfile) -- [`17.0.13_11-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.13_11-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/alpine/3.21/Dockerfile) +- [`17.0.14_7-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.14_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/alpine/3.21/Dockerfile) -- [`17.0.13_11-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.14_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/focal/Dockerfile) -- [`17.0.13_11-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.14_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.13_11-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.14_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.13_11-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.14_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.13_11-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.14_7-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.13_11-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.14_7-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.13_11-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.14_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.13_11-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.14_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.13_11-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.14_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) -- [`17.0.13_11-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.14_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-1809/Dockerfile) -- [`17.0.13_11-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/alpine/3.20/Dockerfile) +- [`17.0.14_7-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/alpine/3.20/Dockerfile) -- [`17.0.13_11-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.13_11-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/alpine/3.21/Dockerfile) +- [`17.0.14_7-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.14_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/alpine/3.21/Dockerfile) -- [`17.0.13_11-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.14_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.13_11-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.14_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.13_11-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.14_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.13_11-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.14_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.13_11-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.14_7-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.13_11-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.14_7-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.13_11-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.14_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.13_11-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.14_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.13_11-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.14_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) -- [`17.0.13_11-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.14_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-1809/Dockerfile) -- [`21.0.5_11-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/alpine/3.20/Dockerfile) +- [`21.0.6_7-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/alpine/3.20/Dockerfile) -- [`21.0.5_11-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.5_11-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/alpine/3.21/Dockerfile) +- [`21.0.6_7-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.6_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/alpine/3.21/Dockerfile) -- [`21.0.5_11-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.6_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.5_11-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.6_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.5_11-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.6_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.5_11-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.6_7-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.5_11-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.6_7-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.5_11-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.6_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.5_11-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.6_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.5_11-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.6_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) -- [`21.0.5_11-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`21.0.6_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-1809/Dockerfile) -- [`21.0.5_11-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/alpine/3.20/Dockerfile) +- [`21.0.6_7-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/alpine/3.20/Dockerfile) -- [`21.0.5_11-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.5_11-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/alpine/3.21/Dockerfile) +- [`21.0.6_7-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.6_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/alpine/3.21/Dockerfile) -- [`21.0.5_11-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.6_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.5_11-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.6_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.5_11-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.6_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.5_11-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.6_7-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.5_11-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.6_7-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.5_11-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.6_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.5_11-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.6_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.5_11-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.6_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) -- [`21.0.5_11-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.6_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) -- [`23.0.1_11-jdk-alpine-3.20`, `23-jdk-alpine-3.20`, `23-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/alpine/3.20/Dockerfile) +- [`23.0.2_7-jdk-alpine-3.20`, `23-jdk-alpine-3.20`, `23-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/alpine/3.20/Dockerfile) -- [`23.0.1_11-jdk-alpine-3.21`, `23-jdk-alpine-3.21`, `23-alpine-3.21`, `23.0.1_11-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/alpine/3.21/Dockerfile) +- [`23.0.2_7-jdk-alpine-3.21`, `23-jdk-alpine-3.21`, `23-alpine-3.21`, `23.0.2_7-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/alpine/3.21/Dockerfile) -- [`23.0.1_11-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubuntu/noble/Dockerfile) +- [`23.0.2_7-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubuntu/noble/Dockerfile) -- [`23.0.1_11-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubi/ubi9-minimal/Dockerfile) +- [`23.0.2_7-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubi/ubi9-minimal/Dockerfile) -- [`23.0.1_11-jdk-windowsservercore-ltsc2025`, `23-jdk-windowsservercore-ltsc2025`, `23-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`23.0.2_7-jdk-windowsservercore-ltsc2025`, `23-jdk-windowsservercore-ltsc2025`, `23-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.1_11-jdk-nanoserver-ltsc2025`, `23-jdk-nanoserver-ltsc2025`, `23-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`23.0.2_7-jdk-nanoserver-ltsc2025`, `23-jdk-nanoserver-ltsc2025`, `23-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`23.0.1_11-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.2_7-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1_11-jdk-nanoserver-ltsc2022`, `23-jdk-nanoserver-ltsc2022`, `23-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`23.0.2_7-jdk-nanoserver-ltsc2022`, `23-jdk-nanoserver-ltsc2022`, `23-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`23.0.1_11-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`23.0.2_7-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23.0.1_11-jdk-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`23.0.2_7-jdk-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-1809/Dockerfile) -- [`23.0.1_11-jre-alpine-3.20`, `23-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/alpine/3.20/Dockerfile) +- [`23.0.2_7-jre-alpine-3.20`, `23-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/alpine/3.20/Dockerfile) -- [`23.0.1_11-jre-alpine-3.21`, `23-jre-alpine-3.21`, `23.0.1_11-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/alpine/3.21/Dockerfile) +- [`23.0.2_7-jre-alpine-3.21`, `23-jre-alpine-3.21`, `23.0.2_7-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/alpine/3.21/Dockerfile) -- [`23.0.1_11-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubuntu/noble/Dockerfile) +- [`23.0.2_7-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubuntu/noble/Dockerfile) -- [`23.0.1_11-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubi/ubi9-minimal/Dockerfile) +- [`23.0.2_7-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubi/ubi9-minimal/Dockerfile) -- [`23.0.1_11-jre-windowsservercore-ltsc2025`, `23-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`23.0.2_7-jre-windowsservercore-ltsc2025`, `23-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.1_11-jre-nanoserver-ltsc2025`, `23-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`23.0.2_7-jre-nanoserver-ltsc2025`, `23-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`23.0.1_11-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`23.0.2_7-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.1_11-jre-nanoserver-ltsc2022`, `23-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`23.0.2_7-jre-nanoserver-ltsc2022`, `23-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`23.0.1_11-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) +- [`23.0.2_7-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) -- [`23.0.1_11-jre-nanoserver-1809`, `23-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-1809/Dockerfile) +- [`23.0.2_7-jre-nanoserver-1809`, `23-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8u432-b06-jdk`, `8-jdk`, `8`: +- `8u442-b06-jdk`, `8-jdk`, `8`: - - [`8u432-b06-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/ubuntu/noble/Dockerfile) - - [`8u432-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u442-b06-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/noble/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u432-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u442-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u432-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u432-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u432-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u442-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) -- `8u432-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u442-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u432-b06-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u432-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u432-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u442-b06-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u442-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u442-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-1809/Dockerfile) -- `8u432-b06-jre`, `8-jre`: +- `8u442-b06-jre`, `8-jre`: - - [`8u432-b06-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/ubuntu/noble/Dockerfile) - - [`8u432-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u442-b06-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/noble/Dockerfile) + - [`8u442-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u442-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u442-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u432-b06-jre-windowsservercore`, `8-jre-windowsservercore`: +- `8u442-b06-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u432-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u432-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u432-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u442-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u442-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u442-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) -- `8u432-b06-jre-nanoserver`, `8-jre-nanoserver`: +- `8u442-b06-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u432-b06-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u432-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u432-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/8/jre/windows/nanoserver-1809/Dockerfile) + - [`8u442-b06-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u442-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u442-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.25_9-jdk`, `11-jdk`, `11`: +- `11.0.26_4-jdk`, `11-jdk`, `11`: - - [`11.0.25_9-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.25_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.26_4-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.25_9-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.26_4-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.25_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.25_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.25_9-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.26_4-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) -- `11.0.25_9-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.26_4-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.25_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.25_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.25_9-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.26_4-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.26_4-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.26_4-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-1809/Dockerfile) -- `11.0.25_9-jre`, `11-jre`: +- `11.0.26_4-jre`, `11-jre`: - - [`11.0.25_9-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.25_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.26_4-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.25_9-jre-windowsservercore`, `11-jre-windowsservercore`: +- `11.0.26_4-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.25_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.25_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.25_9-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.26_4-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) -- `11.0.25_9-jre-nanoserver`, `11-jre-nanoserver`: +- `11.0.26_4-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.25_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.25_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.25_9-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/11/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.26_4-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.26_4-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.26_4-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-1809/Dockerfile) -- `17.0.13_11-jdk`, `17-jdk`, `17`: +- `17.0.14_7-jdk`, `17-jdk`, `17`: - - [`17.0.13_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.13_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.14_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.13_11-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.14_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.13_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.13_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.13_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.14_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) -- `17.0.13_11-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.14_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.13_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.13_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.13_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.14_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.14_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.14_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-1809/Dockerfile) -- `17.0.13_11-jre`, `17-jre`: +- `17.0.14_7-jre`, `17-jre`: - - [`17.0.13_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.13_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.14_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.13_11-jre-windowsservercore`, `17-jre-windowsservercore`: +- `17.0.14_7-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.13_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.13_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.13_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.14_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) -- `17.0.13_11-jre-nanoserver`, `17-jre-nanoserver`: +- `17.0.14_7-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.13_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.13_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.13_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/17/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.14_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.14_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.14_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-1809/Dockerfile) -- `21.0.5_11-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.6_7-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.5_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.5_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.6_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.5_11-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.6_7-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.5_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.5_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.5_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.6_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) -- `21.0.5_11-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.6_7-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.5_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.5_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.5_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.6_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.6_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.6_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-1809/Dockerfile) -- `21.0.5_11-jre`, `21-jre`: +- `21.0.6_7-jre`, `21-jre`: - - [`21.0.5_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.5_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.6_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.5_11-jre-windowsservercore`, `21-jre-windowsservercore`: +- `21.0.6_7-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.5_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.5_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.5_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.6_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) -- `21.0.5_11-jre-nanoserver`, `21-jre-nanoserver`: +- `21.0.6_7-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.5_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.5_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.5_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/21/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.6_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.6_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.6_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) -- `23.0.1_11-jdk`, `23-jdk`, `23`: +- `23.0.2_7-jdk`, `23-jdk`, `23`: - - [`23.0.1_11-jdk-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/ubuntu/noble/Dockerfile) - - [`23.0.1_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23.0.2_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubuntu/noble/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23.0.1_11-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `23.0.2_7-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: - - [`23.0.1_11-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.1_11-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1_11-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) -- `23.0.1_11-jdk-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `23.0.2_7-jdk-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: - - [`23.0.1_11-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`23.0.1_11-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`23.0.1_11-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`23.0.2_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`23.0.2_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`23.0.2_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-1809/Dockerfile) -- `23.0.1_11-jre`, `23-jre`: +- `23.0.2_7-jre`, `23-jre`: - - [`23.0.1_11-jre-noble`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/ubuntu/noble/Dockerfile) - - [`23.0.1_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`23.0.2_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubuntu/noble/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) -- `23.0.1_11-jre-windowsservercore`, `23-jre-windowsservercore`: +- `23.0.2_7-jre-windowsservercore`, `23-jre-windowsservercore`: - - [`23.0.1_11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.1_11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.1_11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`23.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) -- `23.0.1_11-jre-nanoserver`, `23-jre-nanoserver`: +- `23.0.2_7-jre-nanoserver`, `23-jre-nanoserver`: - - [`23.0.1_11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/a48d4a514dd752611cea7d0b6a3e9da4282550f8/23/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`23.0.1_11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`23.0.1_11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/d7a5038edcd8ab08b0babaeae09d0c097453a023/23/jre/windows/nanoserver-1809/Dockerfile) + - [`23.0.2_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`23.0.2_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`23.0.2_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From b90ee51ca67d46670aa3a1dfea4e9bbc89be330b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Jan 2025 09:09:40 -0800 Subject: [PATCH 1862/2686] Run update.sh --- traefik/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 34455a0d92df..d32d493221e7 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.2-windowsservercore-ltsc2022`, `3.3.2-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.3-windowsservercore-ltsc2022`, `3.3.3-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.2-windowsservercore-1809`, `3.3.2-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/1809/Dockerfile) +- [`v3.3.3-windowsservercore-1809`, `3.3.3-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/1809/Dockerfile) -- [`v3.3.2-nanoserver-ltsc2022`, `3.3.2-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.3-nanoserver-ltsc2022`, `3.3.3-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.2`, `3.3.2`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/4fc0980f9d74f7c3be2ef4bf2513cb39b3d2226b/v3.3/alpine/Dockerfile) +- [`v3.3.3`, `3.3.3`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/alpine/Dockerfile) -- [`v2.11.19-windowsservercore-ltsc2022`, `2.11.19-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.20-windowsservercore-ltsc2022`, `2.11.20-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.19-windowsservercore-1809`, `2.11.19-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/1809/Dockerfile) +- [`v2.11.20-windowsservercore-1809`, `2.11.20-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/1809/Dockerfile) -- [`v2.11.19-nanoserver-ltsc2022`, `2.11.19-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.20-nanoserver-ltsc2022`, `2.11.20-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.19`, `2.11.19`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/718a74efcab7df2fbe6fbe7ceac1bbf21c4d3f46/v2.11/alpine/Dockerfile) +- [`v2.11.20`, `2.11.20`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/alpine/Dockerfile) # Quick reference (cont.) From bfe7df46bd636eb4ae84832bf15299e0b6c67ddf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Jan 2025 10:09:28 -0800 Subject: [PATCH 1863/2686] Run update.sh --- node/README.md | 12 ++++++------ odoo/README.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/node/README.md b/node/README.md index 323a7cbe57fa..371ff89f8888 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.6-alpine3.20`, `23.6.1-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.7-alpine3.20`, `23.7.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.6-alpine`, `23.6-alpine3.21`, `23.6.1-alpine`, `23.6.1-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.7-alpine`, `23.7-alpine3.21`, `23.7.0-alpine`, `23.7.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.6`, `23.6-bookworm`, `23.6.1`, `23.6.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.7`, `23.7-bookworm`, `23.7.0`, `23.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.6-bookworm-slim`, `23.6-slim`, `23.6.1-bookworm-slim`, `23.6.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.7-bookworm-slim`, `23.7-slim`, `23.7.0-bookworm-slim`, `23.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.6-bullseye`, `23.6.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.7-bullseye`, `23.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.6-bullseye-slim`, `23.6.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.7-bullseye-slim`, `23.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.13-alpine3.20`, `22.13.1-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/alpine3.20/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 60344dea5987..5fe6781fb15d 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250123`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/18.0/Dockerfile) +- [`18.0-20250131`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/18.0/Dockerfile) -- [`17.0-20250123`, `17.0`, `17`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/17.0/Dockerfile) +- [`17.0-20250131`, `17.0`, `17`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/17.0/Dockerfile) -- [`16.0-20250123`, `16.0`, `16`](https://github.com/odoo/docker/blob/e664ad3f77c19eda081040e36ed16f84d505af8d/16.0/Dockerfile) +- [`16.0-20250131`, `16.0`, `16`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/16.0/Dockerfile) # Quick reference (cont.) From c05383162834e2bc35256b94a17ca4f9034c6a7a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Jan 2025 14:09:35 -0800 Subject: [PATCH 1864/2686] Run update.sh --- ghost/README.md | 4 +- openjdk/README.md | 100 +++++++++++++++++++++++----------------------- 2 files changed, 52 insertions(+), 52 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c6db30d4c0e0..d67a4eeaf58c 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.108.2`, `5.108`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5adaa687a01a8c50cdb36f6965e366852d3fa88e/5/debian/Dockerfile) +- [`5.109.0`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b5847f84e5b9610d5500b943551f4c008c63b8fa/5/debian/Dockerfile) -- [`5.108.2-alpine`, `5.108-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5adaa687a01a8c50cdb36f6965e366852d3fa88e/5/alpine/Dockerfile) +- [`5.109.0-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b5847f84e5b9610d5500b943551f4c008c63b8fa/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 89965cd3b9b3..d6f876a124d1 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,93 +42,93 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-7-jdk-oraclelinux9`, `25-ea-7-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-7-jdk-oracle`, `25-ea-7-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-8-jdk-oraclelinux9`, `25-ea-8-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-8-jdk-oracle`, `25-ea-8-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-7-jdk-oraclelinux8`, `25-ea-7-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-8-jdk-oraclelinux8`, `25-ea-8-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-7-jdk-bookworm`, `25-ea-7-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/bookworm/Dockerfile) +- [`25-ea-8-jdk-bookworm`, `25-ea-8-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/bookworm/Dockerfile) -- [`25-ea-7-jdk-slim-bookworm`, `25-ea-7-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-7-jdk-slim`, `25-ea-7-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-8-jdk-slim-bookworm`, `25-ea-8-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-8-jdk-slim`, `25-ea-8-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-7-jdk-bullseye`, `25-ea-7-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/bullseye/Dockerfile) +- [`25-ea-8-jdk-bullseye`, `25-ea-8-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/bullseye/Dockerfile) -- [`25-ea-7-jdk-slim-bullseye`, `25-ea-7-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-8-jdk-slim-bullseye`, `25-ea-8-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-7-jdk-windowsservercore-ltsc2025`, `25-ea-7-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-8-jdk-windowsservercore-ltsc2025`, `25-ea-8-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-7-jdk-windowsservercore-ltsc2022`, `25-ea-7-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-8-jdk-windowsservercore-ltsc2022`, `25-ea-8-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-7-jdk-windowsservercore-1809`, `25-ea-7-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-8-jdk-windowsservercore-1809`, `25-ea-8-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-7-jdk-nanoserver-ltsc2025`, `25-ea-7-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-8-jdk-nanoserver-ltsc2025`, `25-ea-8-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-7-jdk-nanoserver-ltsc2022`, `25-ea-7-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-8-jdk-nanoserver-ltsc2022`, `25-ea-8-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-7-jdk-nanoserver-1809`, `25-ea-7-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-8-jdk-nanoserver-1809`, `25-ea-8-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-33-jdk-oraclelinux9`, `24-ea-33-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-33-jdk-oracle`, `24-ea-33-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-34-jdk-oraclelinux9`, `24-ea-34-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-34-jdk-oracle`, `24-ea-34-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-33-jdk-oraclelinux8`, `24-ea-33-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-34-jdk-oraclelinux8`, `24-ea-34-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-33-jdk-bookworm`, `24-ea-33-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/bookworm/Dockerfile) +- [`24-ea-34-jdk-bookworm`, `24-ea-34-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/bookworm/Dockerfile) -- [`24-ea-33-jdk-slim-bookworm`, `24-ea-33-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-33-jdk-slim`, `24-ea-33-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-34-jdk-slim-bookworm`, `24-ea-34-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-34-jdk-slim`, `24-ea-34-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-33-jdk-bullseye`, `24-ea-33-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/bullseye/Dockerfile) +- [`24-ea-34-jdk-bullseye`, `24-ea-34-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/bullseye/Dockerfile) -- [`24-ea-33-jdk-slim-bullseye`, `24-ea-33-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-34-jdk-slim-bullseye`, `24-ea-34-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-33-jdk-windowsservercore-ltsc2025`, `24-ea-33-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24-ea-34-jdk-windowsservercore-ltsc2025`, `24-ea-34-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24-ea-33-jdk-windowsservercore-ltsc2022`, `24-ea-33-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-34-jdk-windowsservercore-ltsc2022`, `24-ea-34-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-33-jdk-windowsservercore-1809`, `24-ea-33-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-34-jdk-windowsservercore-1809`, `24-ea-34-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-33-jdk-nanoserver-ltsc2025`, `24-ea-33-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24-ea-34-jdk-nanoserver-ltsc2025`, `24-ea-34-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24-ea-33-jdk-nanoserver-ltsc2022`, `24-ea-33-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24-ea-34-jdk-nanoserver-ltsc2022`, `24-ea-34-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24-ea-33-jdk-nanoserver-1809`, `24-ea-33-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-34-jdk-nanoserver-1809`, `24-ea-34-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-7-jdk`, `25-ea-7`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-8-jdk`, `25-ea-8`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-7-jdk-windowsservercore`, `25-ea-7-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-8-jdk-windowsservercore`, `25-ea-8-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-7-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-7-jdk-nanoserver`, `25-ea-7-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-8-jdk-nanoserver`, `25-ea-8-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-7-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-7-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-7-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/5bcbbafa1bd19282eb84c76d5120be545705299e/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-8-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-8-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-33-jdk`, `24-ea-33`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-34-jdk`, `24-ea-34`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-33-jdk-windowsservercore`, `24-ea-33-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-34-jdk-windowsservercore`, `24-ea-34-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-33-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-33-jdk-nanoserver`, `24-ea-33-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-34-jdk-nanoserver`, `24-ea-34-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-33-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-ea-33-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-ea-33-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b2e19027c8e633d581e48d2b3074f1330a4d8da6/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-34-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-ea-34-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 42ace21ba1e8f009740ea3b973a525c3c07378fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Jan 2025 15:09:32 -0800 Subject: [PATCH 1865/2686] Run update.sh --- php/README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/php/README.md b/php/README.md index 814848f1d327..61a0e29a0c19 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.4RC2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.4RC2-bookworm`, `8.4-rc-bookworm`, `8.4.4RC2-cli`, `8.4-rc-cli`, `8.4.4RC2`, `8.4-rc`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.4RC2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.4RC2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.4RC2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.4RC2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.4RC2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.4RC2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.4RC2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.4RC2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.4RC2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.4RC2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.4RC2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.4RC2-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.4RC2-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.4RC2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.4RC2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.4RC2-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.4RC2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.4RC2-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.4RC2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.4RC2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.4RC2-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.4RC2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.4RC2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.3-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.3-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.3-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.3`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/cli/Dockerfile) - [`8.4.3-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.3-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.3-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.17RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.17RC1-bookworm`, `8.3-rc-bookworm`, `8.3.17RC1-cli`, `8.3-rc-cli`, `8.3.17RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.17RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.17RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.17RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.17RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.17RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.17RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.17RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.17RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.17RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.17RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.17RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.17RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.17RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.17RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.17RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.17RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.17RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.17RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.17RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.17RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.17RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.17RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.17RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.16-cli-bookworm`, `8.3-cli-bookworm`, `8.3.16-bookworm`, `8.3-bookworm`, `8.3.16-cli`, `8.3-cli`, `8.3.16`, `8.3`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/cli/Dockerfile) - [`8.3.16-apache-bookworm`, `8.3-apache-bookworm`, `8.3.16-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/apache/Dockerfile) From 43a164c45547ceae7519c82c0e3b1b7768903b2d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Jan 2025 16:09:33 -0800 Subject: [PATCH 1866/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- redmine/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8211955d9dc4..c7141b4a221a 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250115.0`](https://github.com/amazonlinux/container-images/blob/0fcfdb19e02852797bdacf8eba0017b9578fd7ad/Dockerfile) +- [`2023`, `latest`, `2023.6.20250128.0`](https://github.com/amazonlinux/container-images/blob/62364e1af381cdd199a0d7ad735f8baf1fb9e09b/Dockerfile) -- [`2`, `2.0.20250116.0`](https://github.com/amazonlinux/container-images/blob/a45d17fb340df67793447c58b118cea0a2343267/Dockerfile) +- [`2`, `2.0.20250123.4`](https://github.com/amazonlinux/container-images/blob/78695135792b5f19183bad50d0c90f627ab9850a/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index b0ed8ddb76f7..60450c61903c 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.3`, `6.0`, `6`, `latest`, `6.0.3-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/bookworm/Dockerfile) +- [`6.0.3`, `6.0`, `6`, `latest`, `6.0.3-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/bookworm/Dockerfile) -- [`6.0.3-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/alpine3.21/Dockerfile) +- [`6.0.3-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/alpine3.21/Dockerfile) -- [`6.0.3-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/dc8a25281adc4144806d6b9c5cd08b510a2670f2/6.0/alpine3.20/Dockerfile) +- [`6.0.3-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/alpine3.20/Dockerfile) -- [`5.1.6`, `5.1`, `5`, `5.1.6-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/bookworm/Dockerfile) +- [`5.1.6`, `5.1`, `5`, `5.1.6-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/bookworm/Dockerfile) -- [`5.1.6-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.6-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/alpine3.21/Dockerfile) +- [`5.1.6-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.6-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/alpine3.21/Dockerfile) -- [`5.1.6-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/5aa82a370b601954fa70e9964d7622ba5e3aaa05/5.1/alpine3.20/Dockerfile) +- [`5.1.6-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/alpine3.20/Dockerfile) -- [`5.0.11`, `5.0`, `5.0.11-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/bookworm/Dockerfile) +- [`5.0.11`, `5.0`, `5.0.11-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/bookworm/Dockerfile) -- [`5.0.11-alpine3.21`, `5.0-alpine3.21`, `5.0.11-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/alpine3.21/Dockerfile) +- [`5.0.11-alpine3.21`, `5.0-alpine3.21`, `5.0.11-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/alpine3.21/Dockerfile) -- [`5.0.11-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/2838b9bf9fe11a16ed9bf82b673d77fffcdd9d4d/5.0/alpine3.20/Dockerfile) +- [`5.0.11-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) From d881634f41bf9d58d6a4f4c54cf3173227faabe5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 11:09:34 -0800 Subject: [PATCH 1867/2686] Run update.sh --- archlinux/README.md | 6 +++--- friendica/README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 3a4f8410d159..91c52bd593e5 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.base) +- [`latest`, `base`, `base-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.base) -- [`base-devel`, `base-devel-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250126.0.301347`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/53a1cbb009553e27923ef7da69b4d2400c35c6f4/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index ce5832ff0b82..3487f5796c92 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm-alpine/Dockerfile) -- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/apache/Dockerfile) -- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/fpm/Dockerfile) -- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) From a0926f79f38e2f96cb32405350bf3f7dd13209fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 12:09:28 -0800 Subject: [PATCH 1868/2686] Run update.sh --- clearlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 74cc571ad556..5ac04728700f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/48c457640c743fbe9222d6f7e0cb275467071c94/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/161ae2584d299d4347d1bc46b2b3d90771b7bf5e/Dockerfile) # Quick reference (cont.) From 9122d2150c4ace5de61f11e818d1a77704210cab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 13:09:32 -0800 Subject: [PATCH 1869/2686] Run update.sh --- eggdrop/README.md | 2 +- photon/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eggdrop/README.md b/eggdrop/README.md index a884865f4114..8e633d6d041b 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/2861815d67478e41667b8ed2cf9d3f13a5e755c1/develop/Dockerfile) +- [`develop`](https://github.com/eggheads/eggdrop-docker/blob/037d27fee1499a17a1062efcba0213801d82c405/develop/Dockerfile) - [`1.9`, `1.9.5`](https://github.com/eggheads/eggdrop-docker/blob/57fb1652a1880665b12e9f51775f173ecde24285/1.9/Dockerfile) diff --git a/photon/README.md b/photon/README.md index fee70704def9..9e8d6b216c4c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250105`, `latest`](https://github.com/vmware/photon-docker-image/blob/8cf662232434dbda4abc7a715f6049cb64c0d645/docker/Dockerfile) +- [`5.0`, `5.0-20250202`, `latest`](https://github.com/vmware/photon-docker-image/blob/0364283b37a01ab50815028e6d92103557b65c3d/docker/Dockerfile) -- [`4.0`, `4.0-20250119`](https://github.com/vmware/photon-docker-image/blob/a33460d315cb79df67b055c2d20c58b0ce12a989/docker/Dockerfile) +- [`4.0`, `4.0-20250202`](https://github.com/vmware/photon-docker-image/blob/deef6f2d26a7662ebc30a03d16f39fff61b28fc1/docker/Dockerfile) - [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) From bdc59820f4bc7fb57b2b0efc99b69f89c7c7f8b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 14:09:33 -0800 Subject: [PATCH 1870/2686] Run update.sh --- crate/README.md | 6 ++++-- fluentd/README.md | 4 ++-- rocket.chat/README.md | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/crate/README.md b/crate/README.md index 87284e844747..70c37f4a649c 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,9 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.8`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/0e755ec49d2567bbf2f9940503e220ef371dbf95/Dockerfile) +- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/4311253b84f943e5662ad014ce264d0ffe3b96da/Dockerfile) -- [`5.8.5`, `5.8`](https://github.com/crate/docker-crate/blob/eac1c46449490fe64b229268262d9797c3701abd/Dockerfile) +- [`5.8.6`, `5.8`](https://github.com/crate/docker-crate/blob/b55d16afc32597fca2ee19a1b3e8803a98c1c946/Dockerfile) + +- [`5.7.6`, `5.7`](https://github.com/crate/docker-crate/blob/93c9f0651b3513b57aa0dca19c0a084af25c3ab4/Dockerfile) # Quick reference (cont.) diff --git a/fluentd/README.md b/fluentd/README.md index 6ec71272cfea..dc73338c2806 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.6-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/ddb5019b433339f9eef991ca373445deb6e4d2b1/v1.16/alpine/Dockerfile) +- [`v1.16.7-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/295ba669ac33fc7c997cd2643351cef31c2845b7/v1.16/alpine/Dockerfile) -- [`v1.16.6-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/ddb5019b433339f9eef991ca373445deb6e4d2b1/v1.16/debian/Dockerfile) +- [`v1.16.7-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/295ba669ac33fc7c997cd2643351cef31c2845b7/v1.16/debian/Dockerfile) - [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index fec38ecf5cde..c4a5ac49f02f 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.2.1`, `7.2`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.2/Dockerfile) +- [`7.3.0`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/84fd23fa7bcb08bdd8275e790289d58b764043a4/7.3/Dockerfile) + +- [`7.2.1`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.2/Dockerfile) - [`7.1.1`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.1/Dockerfile) @@ -36,8 +38,6 @@ WARNING: - [`6.11.3`, `6.11`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.11/Dockerfile) -- [`6.10.9`, `6.10`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.10/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 8f52b345890d4f818014a7c079104f424b8a242e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 15:09:55 -0800 Subject: [PATCH 1871/2686] Run update.sh --- docker/README.md | 2 +- memcached/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/README.md b/docker/README.md index cd0a4676e81b..13412b0c0f2c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -30,7 +30,7 @@ WARNING: - [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/cli/Dockerfile) -- [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind/Dockerfile) +- [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/fbb79dd2512681b42f6f0a3a82543c29640b85ce/27/dind/Dockerfile) - [`27.5.1-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind-rootless/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 328332b2dbac..29c0c4f8647e 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.34`, `1.6`, `1`, `latest`, `1.6.34-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/697784edcf62584471e2f50e4f0646aa9db40ae7/1/debian/Dockerfile) +- [`1.6.35`, `1.6`, `1`, `latest`, `1.6.35-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/076d63673c988e02ffa3ae4b143961f95ea8295a/1/debian/Dockerfile) -- [`1.6.34-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.34-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/697784edcf62584471e2f50e4f0646aa9db40ae7/1/alpine/Dockerfile) +- [`1.6.35-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.35-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/076d63673c988e02ffa3ae4b143961f95ea8295a/1/alpine/Dockerfile) # Quick reference (cont.) From 8b93b5815d2e5f20afecb74d2167b417193a9d97 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Feb 2025 17:09:46 -0800 Subject: [PATCH 1872/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ ubuntu/README.md | 4 ++-- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/debian/README.md b/debian/README.md index f24fb2e92fe1..7d2f5afdd092 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250113`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250203`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250113-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250203-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250113`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250203`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250113-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250203-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/experimental/Dockerfile) +- [`experimental`, `experimental-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/rc-buggy/Dockerfile) -- [`sid`, `sid-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/sid/oci/index.json) +- [`sid`, `sid-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/sid/oci/index.json) -- [`sid-slim`, `sid-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/sid/slim/oci/index.json) -- [`stable`, `stable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/oci/index.json) +- [`stable`, `stable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/slim/oci/index.json) -- [`testing`, `testing-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/oci/index.json) +- [`testing`, `testing-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/oci/index.json) +- [`trixie`, `trixie-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250113`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/unstable/oci/index.json) +- [`unstable`, `unstable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250113-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/cdcd78f9d7c549833f878eff31111a2e2da7ba4d/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 7d3bfddd7b11..bcebd02a0cef 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,9 +26,9 @@ WARNING: - [`20.04`, `focal-20241011`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20241011-2dc0aae1&id=2dc0aae17c912aa6ae81e4c4bbc7277692d67bae) -- [`22.04`, `jammy-20240911.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20240911.1-b88de29a&id=b88de29aeed396f56b7eee0dd87e7249e7a8642f) +- [`22.04`, `jammy-20250126`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250126-b0d70ec8&id=b0d70ec8ea0e2d97d7311e85d6d42e054bb80350) -- [`24.04`, `noble-20241118.1`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20241118.1-4880b758&id=4880b758e58499d09361550207697892199e1097) +- [`24.04`, `noble-20250127`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250127-9fabb4ba&id=9fabb4bad5138435b01857e2fe9363e2dc5f6a79) - [`24.10`, `oracular-20241120`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241120-aea1b7d3&id=aea1b7d330330843a7f7783a788965bc4e89cf6a) From 4265dd5e872a5c89f3d1075e77fe4f3430ff1020 Mon Sep 17 00:00:00 2001 From: Zisuu Date: Tue, 4 Feb 2025 13:41:19 +0100 Subject: [PATCH 1873/2686] fix(content.md): typo on version name the example below shows Java version 21, not version 11 --- eclipse-temurin/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclipse-temurin/content.md b/eclipse-temurin/content.md index c9497a782b79..e1c7e5fb9acc 100644 --- a/eclipse-temurin/content.md +++ b/eclipse-temurin/content.md @@ -54,7 +54,7 @@ ENV PATH="${JAVA_HOME}/bin:${PATH}" ### Creating a JRE using jlink -On OpenJDK 11+, a JRE can be generated using `jlink`, see the following Dockerfile: +On OpenJDK 21+, a JRE can be generated using `jlink`, see the following Dockerfile: ```dockerfile # Example of custom Java runtime using jlink in a multi-stage container build From 705df51f76100c753b8b6bb61e7494de2e4a6e56 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Feb 2025 11:09:44 -0800 Subject: [PATCH 1874/2686] Run update.sh --- almalinux/README.md | 4 +- cassandra/README.md | 10 ++--- dart/README.md | 4 +- eclipse-temurin/README.md | 2 +- ghost/README.md | 4 +- golang/README.md | 92 +++++++++++++++++++-------------------- mediawiki/README.md | 18 ++++---- neo4j/README.md | 4 +- 8 files changed, 69 insertions(+), 69 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 19740c4a9f1a..551831309fe5 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20241024`](https://github.com/AlmaLinux/container-images/blob/a1cecc826bfdd29e027ffdbfb73793cd64afe3f3/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250204`](https://github.com/AlmaLinux/container-images/blob/0dd34b412e662a392275d79dc2f0fb635e74ff7a/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20241024`](https://github.com/AlmaLinux/container-images/blob/a1cecc826bfdd29e027ffdbfb73793cd64afe3f3/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250204`](https://github.com/AlmaLinux/container-images/blob/0dd34b412e662a392275d79dc2f0fb635e74ff7a/minimal/amd64/Dockerfile) - [`8`, `8.10`, `8.10-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/default/amd64/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index a930a9f5af08..dc527b6d736b 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.2`, `5.0`, `5`, `latest`, `5.0.2-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/1e3d5732f34ceb9e77870d0be9501515f917cc60/5.0/Dockerfile) +- [`5.0.3`, `5.0`, `5`, `latest`, `5.0.3-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/105daf8445a12fc96ef48a1314566e0f61f473b2/5.0/Dockerfile) -- [`4.1.7`, `4.1`, `4`, `4.1.7-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/ad1d8a96d90bd17a5be305628aac3dafa9a11f5c/4.1/Dockerfile) +- [`4.1.8`, `4.1`, `4`, `4.1.8-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/f49e80e172f29e2cad0a9acd054806d9709a4205/4.1/Dockerfile) -- [`4.0.15`, `4.0`, `4.0.15-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/c9c51a794db0a9fd4f1bd54e2f1bf75f98af571d/4.0/Dockerfile) +- [`4.0.16`, `4.0`, `4.0.16-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/c4de505e25eb89ec5a0578dd693430bf3602b2e1/4.0/Dockerfile) -- [`3.11.17`, `3.11`, `3`, `3.11.17-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/abab4c99e553fca077336ca097dd84107f2d3034/3.11/Dockerfile) +- [`3.11.18`, `3.11`, `3`, `3.11.18-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/34424ed79ebd85603a14bda2a69d36a377bebbfc/3.11/Dockerfile) -- [`3.0.30`, `3.0`, `3.0.30-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/2324f94cb4e9686859e3f487f725908bfbefc9d2/3.0/Dockerfile) +- [`3.0.31`, `3.0`, `3.0.31-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/e367aabb74d1249800e5cf94284183078d0a3a2c/3.0/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 703e5d348963..ad4a5bbe70bc 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.1-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.1`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/92d06fb0bb15575381a41298a3b7c0b18d3296aa/stable/bookworm/Dockerfile) +- [`3.6.2-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.2`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3725e6a5c64c4caae3a40607fabee7eca5d95339/stable/bookworm/Dockerfile) -- [`3.7.0-209.1.beta-sdk`, `beta-sdk`, `3.7.0-209.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/92d06fb0bb15575381a41298a3b7c0b18d3296aa/beta/bookworm/Dockerfile) +- [`3.7.0-323.2.beta-sdk`, `beta-sdk`, `3.7.0-323.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3725e6a5c64c4caae3a40607fabee7eca5d95339/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 914be836cab2..79e8ea435570 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -523,7 +523,7 @@ ENV PATH="${JAVA_HOME}/bin:${PATH}" ### Creating a JRE using jlink -On OpenJDK 11+, a JRE can be generated using `jlink`, see the following Dockerfile: +On OpenJDK 21+, a JRE can be generated using `jlink`, see the following Dockerfile: ```dockerfile # Example of custom Java runtime using jlink in a multi-stage container build diff --git a/ghost/README.md b/ghost/README.md index d67a4eeaf58c..94f06712c8b1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.0`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b5847f84e5b9610d5500b943551f4c008c63b8fa/5/debian/Dockerfile) +- [`5.109.1`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ebd89e7e38cad66654a4812ee5b1238cecedb2bd/5/debian/Dockerfile) -- [`5.109.0-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b5847f84e5b9610d5500b943551f4c008c63b8fa/5/alpine/Dockerfile) +- [`5.109.1-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ebd89e7e38cad66654a4812ee5b1238cecedb2bd/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 013a2e25e9d5..bdb5ebad8851 100644 --- a/golang/README.md +++ b/golang/README.md @@ -48,45 +48,45 @@ WARNING: - [`1.24rc2-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) -- [`1.23.5-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bookworm/Dockerfile) +- [`1.23.6-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) -- [`1.23.5-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bullseye/Dockerfile) +- [`1.23.6-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bullseye/Dockerfile) -- [`1.23.5-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.5-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/alpine3.21/Dockerfile) +- [`1.23.6-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.6-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.21/Dockerfile) -- [`1.23.5-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/alpine3.20/Dockerfile) +- [`1.23.6-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.20/Dockerfile) -- [`1.23.5-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.6-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.5-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.6-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.5-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.6-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.5-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.6-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.5-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.6-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.5-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- [`1.22.11-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bookworm/Dockerfile) +- [`1.22.12-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bookworm/Dockerfile) -- [`1.22.11-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bullseye/Dockerfile) +- [`1.22.12-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bullseye/Dockerfile) -- [`1.22.11-alpine3.21`, `1.22-alpine3.21`, `1.22.11-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/alpine3.21/Dockerfile) +- [`1.22.12-alpine3.21`, `1.22-alpine3.21`, `1.22.12-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/alpine3.21/Dockerfile) -- [`1.22.11-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/alpine3.20/Dockerfile) +- [`1.22.12-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/alpine3.20/Dockerfile) -- [`1.22.11-windowsservercore-ltsc2025`, `1.22-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.22.12-windowsservercore-ltsc2025`, `1.22-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.22.11-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.22.12-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.22.11-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) +- [`1.22.12-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) -- [`1.22.11-nanoserver-ltsc2025`, `1.22-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.22.12-nanoserver-ltsc2025`, `1.22-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.22.11-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.22.12-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.22.11-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.22.12-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -109,43 +109,43 @@ WARNING: - [`1.24rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`1.24rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) -- `1.23.5`, `1.23`, `1`, `latest`: +- `1.23.6`, `1.23`, `1`, `latest`: - - [`1.23.5-bookworm`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/bookworm/Dockerfile) - - [`1.23.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.6-bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) + - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.5-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.6-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.23.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.5-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.5-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.6-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.23.5-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.5-nanoserver-1809`](https://github.com/docker-library/golang/blob/6f9f0098aee5d294d1f41c399ac0ecedca8e6d2d/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.11`, `1.22`: +- `1.22.12`, `1.22`: - - [`1.22.11-bookworm`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/bookworm/Dockerfile) - - [`1.22.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.12-bookworm`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bookworm/Dockerfile) + - [`1.22.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.22.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.11-windowsservercore`, `1.22-windowsservercore`: +- `1.22.12-windowsservercore`, `1.22-windowsservercore`: - - [`1.22.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.22.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.11-windowsservercore-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/windowsservercore-1809/Dockerfile) + - [`1.22.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.22.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.22.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) -- `1.22.11-nanoserver`, `1.22-nanoserver`: +- `1.22.12-nanoserver`, `1.22-nanoserver`: - - [`1.22.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.22/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.22.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.11-nanoserver-1809`](https://github.com/docker-library/golang/blob/d322affc12bc09fd651175905df8dec59bbb4b6d/1.22/windows/nanoserver-1809/Dockerfile) + - [`1.22.12-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.22.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.22.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index f944f917eda6..07211886ef9a 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.43.0`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/apache/Dockerfile) +- [`1.43.0`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/apache/Dockerfile) -- [`1.43.0-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/fpm/Dockerfile) +- [`1.43.0-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/fpm/Dockerfile) -- [`1.43.0-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.43/fpm-alpine/Dockerfile) +- [`1.43.0-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/fpm-alpine/Dockerfile) -- [`1.42.4`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/apache/Dockerfile) +- [`1.42.5`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/apache/Dockerfile) -- [`1.42.4-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/fpm/Dockerfile) +- [`1.42.5-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/fpm/Dockerfile) -- [`1.42.4-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.42/fpm-alpine/Dockerfile) +- [`1.42.5-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/fpm-alpine/Dockerfile) -- [`1.39.11`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/apache/Dockerfile) +- [`1.39.11`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/apache/Dockerfile) -- [`1.39.11-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/fpm/Dockerfile) +- [`1.39.11-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/fpm/Dockerfile) -- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/1be3b2bf0efd0f09e4cf2e706b2ecd92f3680fab/1.39/fpm-alpine/Dockerfile) +- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 35239dd85da5..be6e803b3753 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,9 +32,9 @@ WARNING: - [`5.26.1-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/ubi9/enterprise/Dockerfile) -- [`4.4.40`, `4.4.40-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/b8c0ca2e8dd585e338d74b191a2e370c0da14d92/4.4.40/bullseye/community/Dockerfile) +- [`4.4.41`, `4.4.41-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/community/Dockerfile) -- [`4.4.40-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b8c0ca2e8dd585e338d74b191a2e370c0da14d92/4.4.40/bullseye/enterprise/Dockerfile) +- [`4.4.41-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From 852a2efcb0d7b7422679323d737aa8dd100804c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Feb 2025 12:09:52 -0800 Subject: [PATCH 1875/2686] Run update.sh --- bash/README.md | 2 +- postgres/README.md | 48 +++++++++++++++++++--------------------------- ruby/README.md | 12 ++++++------ 3 files changed, 27 insertions(+), 35 deletions(-) diff --git a/bash/README.md b/bash/README.md index bcfff51dbed4..29e8a392f313 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250124`, `devel`, `devel-20250124-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/eea20aa3ca0430bafcfeb9d6fd28d2c6d3e55f04/devel/Dockerfile) +- [`devel-20250128`, `devel`, `devel-20250128-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/6655433b6724981d0f8cf07a27aa0df7830d8f45/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 632accc9ca7c..ea380e8ca967 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.2`, `17`, `latest`, `17.2-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/bookworm/Dockerfile) +- [`17.2`, `17`, `latest`, `17.2-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/bookworm/Dockerfile) -- [`17.2-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/0b87a9bbd23f56b1e9e863ecda5cc9e66416c4e0/17/bullseye/Dockerfile) +- [`17.2-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/bullseye/Dockerfile) -- [`17.2-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/17/alpine3.21/Dockerfile) +- [`17.2-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/alpine3.21/Dockerfile) -- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/17/alpine3.20/Dockerfile) +- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/alpine3.20/Dockerfile) -- [`16.6`, `16`, `16.6-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bookworm/Dockerfile) +- [`16.6`, `16`, `16.6-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/bookworm/Dockerfile) -- [`16.6-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/960ebdf14ef92d328588e77af2a879c63e577e96/16/bullseye/Dockerfile) +- [`16.6-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/bullseye/Dockerfile) -- [`16.6-alpine3.21`, `16-alpine3.21`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/16/alpine3.21/Dockerfile) +- [`16.6-alpine3.21`, `16-alpine3.21`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/alpine3.21/Dockerfile) -- [`16.6-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/16/alpine3.20/Dockerfile) +- [`16.6-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/alpine3.20/Dockerfile) -- [`15.10`, `15`, `15.10-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bookworm/Dockerfile) +- [`15.10`, `15`, `15.10-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/bookworm/Dockerfile) -- [`15.10-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/50b4cdb50e3599013f2fce9cd8860600f53c696c/15/bullseye/Dockerfile) +- [`15.10-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/bullseye/Dockerfile) -- [`15.10-alpine3.21`, `15-alpine3.21`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/15/alpine3.21/Dockerfile) +- [`15.10-alpine3.21`, `15-alpine3.21`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/alpine3.21/Dockerfile) -- [`15.10-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/15/alpine3.20/Dockerfile) +- [`15.10-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/alpine3.20/Dockerfile) -- [`14.15`, `14`, `14.15-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bookworm/Dockerfile) +- [`14.15`, `14`, `14.15-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/bookworm/Dockerfile) -- [`14.15-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/c44484583320c81b35824ec0ce16864690d68bc3/14/bullseye/Dockerfile) +- [`14.15-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/bullseye/Dockerfile) -- [`14.15-alpine3.21`, `14-alpine3.21`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/14/alpine3.21/Dockerfile) +- [`14.15-alpine3.21`, `14-alpine3.21`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/alpine3.21/Dockerfile) -- [`14.15-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/14/alpine3.20/Dockerfile) +- [`14.15-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/alpine3.20/Dockerfile) -- [`13.18`, `13`, `13.18-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bookworm/Dockerfile) +- [`13.18`, `13`, `13.18-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/bookworm/Dockerfile) -- [`13.18-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/9fadd0e250ba0c150dafec9e3c8728de3c8e318f/13/bullseye/Dockerfile) +- [`13.18-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/bullseye/Dockerfile) -- [`13.18-alpine3.21`, `13-alpine3.21`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/13/alpine3.21/Dockerfile) +- [`13.18-alpine3.21`, `13-alpine3.21`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/alpine3.21/Dockerfile) -- [`13.18-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/13/alpine3.20/Dockerfile) - -- [`12.22`, `12`, `12.22-bookworm`, `12-bookworm`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bookworm/Dockerfile) - -- [`12.22-bullseye`, `12-bullseye`](https://github.com/docker-library/postgres/blob/5f590b8df7f12270d1d5227758744ca3b0bdef74/12/bullseye/Dockerfile) - -- [`12.22-alpine3.21`, `12-alpine3.21`, `12.22-alpine`, `12-alpine`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/12/alpine3.21/Dockerfile) - -- [`12.22-alpine3.20`, `12-alpine3.20`](https://github.com/docker-library/postgres/blob/17818f21dca10ccf02711476e138c219bd31b456/12/alpine3.20/Dockerfile) +- [`13.18-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 3f2a12fcb726..f101cd1625fc 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -48,17 +48,17 @@ WARNING: - [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/alpine3.20/Dockerfile) -- [`3.2.6-bookworm`, `3.2-bookworm`, `3.2.6`, `3.2`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/bookworm/Dockerfile) +- [`3.2.7-bookworm`, `3.2-bookworm`, `3.2.7`, `3.2`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/bookworm/Dockerfile) -- [`3.2.6-slim-bookworm`, `3.2-slim-bookworm`, `3.2.6-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/slim-bookworm/Dockerfile) +- [`3.2.7-slim-bookworm`, `3.2-slim-bookworm`, `3.2.7-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/slim-bookworm/Dockerfile) -- [`3.2.6-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/bullseye/Dockerfile) +- [`3.2.7-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/bullseye/Dockerfile) -- [`3.2.6-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/slim-bullseye/Dockerfile) +- [`3.2.7-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/slim-bullseye/Dockerfile) -- [`3.2.6-alpine3.21`, `3.2-alpine3.21`, `3.2.6-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/alpine3.21/Dockerfile) +- [`3.2.7-alpine3.21`, `3.2-alpine3.21`, `3.2.7-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/alpine3.21/Dockerfile) -- [`3.2.6-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.2/alpine3.20/Dockerfile) +- [`3.2.7-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/alpine3.20/Dockerfile) - [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/bookworm/Dockerfile) From 5bf80ebb766a56ea3286d5c3f46e91dd60969699 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Feb 2025 15:09:31 -0800 Subject: [PATCH 1876/2686] Run update.sh --- ghost/README.md | 4 ++-- openjdk/README.md | 50 ++++++++++++++++++++++----------------------- wordpress/README.md | 18 ++++++++++++++++ 3 files changed, 45 insertions(+), 27 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 94f06712c8b1..3e7775c3a02d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.1`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ebd89e7e38cad66654a4812ee5b1238cecedb2bd/5/debian/Dockerfile) +- [`5.109.2`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9a874a571878e1812ce1d4140a6aaed4a11545ba/5/debian/Dockerfile) -- [`5.109.1-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ebd89e7e38cad66654a4812ee5b1238cecedb2bd/5/alpine/Dockerfile) +- [`5.109.2-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9a874a571878e1812ce1d4140a6aaed4a11545ba/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index d6f876a124d1..1cf28291ea88 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -66,29 +66,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-8-jdk-nanoserver-1809`, `25-ea-8-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-34-jdk-oraclelinux9`, `24-ea-34-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-34-jdk-oracle`, `24-ea-34-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux9/Dockerfile) +- [`24-ea-35-jdk-oraclelinux9`, `24-ea-35-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-35-jdk-oracle`, `24-ea-35-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-34-jdk-oraclelinux8`, `24-ea-34-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux8/Dockerfile) +- [`24-ea-35-jdk-oraclelinux8`, `24-ea-35-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-34-jdk-bookworm`, `24-ea-34-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/bookworm/Dockerfile) +- [`24-ea-35-jdk-bookworm`, `24-ea-35-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/bookworm/Dockerfile) -- [`24-ea-34-jdk-slim-bookworm`, `24-ea-34-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-34-jdk-slim`, `24-ea-34-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/slim-bookworm/Dockerfile) +- [`24-ea-35-jdk-slim-bookworm`, `24-ea-35-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-35-jdk-slim`, `24-ea-35-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-34-jdk-bullseye`, `24-ea-34-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/bullseye/Dockerfile) +- [`24-ea-35-jdk-bullseye`, `24-ea-35-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/bullseye/Dockerfile) -- [`24-ea-34-jdk-slim-bullseye`, `24-ea-34-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/slim-bullseye/Dockerfile) +- [`24-ea-35-jdk-slim-bullseye`, `24-ea-35-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-34-jdk-windowsservercore-ltsc2025`, `24-ea-34-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24-ea-35-jdk-windowsservercore-ltsc2025`, `24-ea-35-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24-ea-34-jdk-windowsservercore-ltsc2022`, `24-ea-34-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-ea-35-jdk-windowsservercore-ltsc2022`, `24-ea-35-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-34-jdk-windowsservercore-1809`, `24-ea-34-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-ea-35-jdk-windowsservercore-1809`, `24-ea-35-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-34-jdk-nanoserver-ltsc2025`, `24-ea-34-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24-ea-35-jdk-nanoserver-ltsc2025`, `24-ea-35-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24-ea-34-jdk-nanoserver-ltsc2022`, `24-ea-34-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24-ea-35-jdk-nanoserver-ltsc2022`, `24-ea-35-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24-ea-34-jdk-nanoserver-1809`, `24-ea-34-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-ea-35-jdk-nanoserver-1809`, `24-ea-35-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -111,24 +111,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-8-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-34-jdk`, `24-ea-34`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-ea-35-jdk`, `24-ea-35`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: - - [`24-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-35-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux9/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-34-jdk-windowsservercore`, `24-ea-34-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-ea-35-jdk-windowsservercore`, `24-ea-35-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-34-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-34-jdk-nanoserver`, `24-ea-34-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-ea-35-jdk-nanoserver`, `24-ea-35-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-34-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-ea-34-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-ea-34-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d9738934e9021107b3bd4e4977767d7829bc3147/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-ea-35-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-ea-35-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index bc4a3e02f9cd..01a1544fa8e3 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,6 +48,24 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) +- [`beta-6.7.2-RC1-php8.1-apache`, `beta-6.7.2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7.2-RC1-php8.1`, `beta-6.7.2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/apache/Dockerfile) + +- [`beta-6.7.2-RC1-php8.1-fpm`, `beta-6.7.2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.7.2-RC1-php8.1-fpm-alpine`, `beta-6.7.2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.7.2-RC1-apache`, `beta-6.7.2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7.2-RC1`, `beta-6.7.2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7.2-RC1-php8.2-apache`, `beta-6.7.2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7.2-RC1-php8.2`, `beta-6.7.2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/apache/Dockerfile) + +- [`beta-6.7.2-RC1-fpm`, `beta-6.7.2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7.2-RC1-php8.2-fpm`, `beta-6.7.2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.7.2-RC1-fpm-alpine`, `beta-6.7.2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7.2-RC1-php8.2-fpm-alpine`, `beta-6.7.2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.7.2-RC1-php8.3-apache`, `beta-6.7.2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7.2-RC1-php8.3`, `beta-6.7.2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/apache/Dockerfile) + +- [`beta-6.7.2-RC1-php8.3-fpm`, `beta-6.7.2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.7.2-RC1-php8.3-fpm-alpine`, `beta-6.7.2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 22627cd0b58e583b9c68b8111a1ad572563df58b Mon Sep 17 00:00:00 2001 From: robot-clickhouse Date: Wed, 5 Feb 2025 14:51:01 +0000 Subject: [PATCH 1877/2686] Update clickhouse according the the latest tags --- clickhouse/content.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/clickhouse/content.md b/clickhouse/content.md index 0792b47df441..0f822381530c 100644 --- a/clickhouse/content.md +++ b/clickhouse/content.md @@ -37,7 +37,7 @@ By default, starting above server instance will be run as the `default` user wit ### connect to it from a native client ```bash -docker run -it --rm --link some-clickhouse-server:clickhouse-server --entrypoint clickhouse-client %%IMAGE%% --host clickhouse-server +docker run -it --rm --network=container:some-clickhouse-server --entrypoint clickhouse-client %%IMAGE%% # OR docker exec -it some-clickhouse-server clickhouse-client ``` @@ -47,7 +47,7 @@ More information about the [ClickHouse client](https://clickhouse.com/docs/en/in ### connect to it using curl ```bash -echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --link some-clickhouse-server:clickhouse-server buildpack-deps:curl curl 'http://clickhouse-server:8123/?query=' -s --data-binary @- +echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --network=container:some-clickhouse-server buildpack-deps:curl curl 'http://localhost:8123/?query=' -s --data-binary @- ``` More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). @@ -61,11 +61,13 @@ docker rm some-clickhouse-server ### networking +> ⚠️ Note: the predefined user `default` does not have the network access unless the password is set, see "How to create default database and user on starting" and "Managing `default` user" below + You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports: ```bash -docker run -d -p 18123:8123 -p19000:9000 --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% -echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @- +docker run -d -p 18123:8123 -p19000:9000 -e CLICKHOUSE_PASSWORD=changeme --name some-clickhouse-server --ulimit nofile=262144:262144 %%IMAGE%% +echo 'SELECT version()' | curl 'http://localhost:18123/?password=changeme' --data-binary @- ``` `22.6.3.35` @@ -79,6 +81,8 @@ echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @- `22.6.3.35` +> ⚠️ Note: the user `default` in the example above is available only for the localhost requests + ### Volumes Typically you may want to mount the following folders inside your container to achieve persistency: @@ -148,6 +152,16 @@ Sometimes you may want to create a user (user named `default` is used by default docker run --rm -e CLICKHOUSE_DB=my_database -e CLICKHOUSE_USER=username -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=password -p 9000:9000/tcp %%IMAGE%% ``` +#### Managing `default` user + +The user `default` has disabled network access by default in the case none of `CLICKHOUSE_USER`, `CLICKHOUSE_PASSWORD`, or `CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT` are set. + +There's a way to make `default` user insecurely available by setting environment variable `CLICKHOUSE_SKIP_USER_SETUP` to 1: + +```bash +docker run --rm -e CLICKHOUSE_SKIP_USER_SETUP=1 -p 9000:9000/tcp %%IMAGE%% +``` + ## How to extend this image To perform additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d`. After the entrypoint calls `initdb`, it will run any `*.sql` files, run any executable `*.sh` scripts, and source any non-executable `*.sh` scripts found in that directory to do further initialization before starting the service. From 71f95f004a4381db2858e8efdca79b6769c51979 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Feb 2025 11:09:47 -0800 Subject: [PATCH 1878/2686] Run update.sh --- neo4j/README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index be6e803b3753..864960003702 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.26.1-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.1-community`, `5.26-community`, `5-community`, `5.26.1-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.1`, `5.26`, `5`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/bullseye/community/Dockerfile) +- [`2025.01.0-community-bullseye`, `2025.01-community-bullseye`, `2025-community-bullseye`, `2025.01.0-community`, `2025.01-community`, `2025-community`, `2025.01.0-bullseye`, `2025.01-bullseye`, `2025-bullseye`, `2025.01.0`, `2025.01`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/bullseye/community/Dockerfile) -- [`5.26.1-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.1-enterprise`, `5.26-enterprise`, `5-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/bullseye/enterprise/Dockerfile) +- [`2025.01.0-enterprise-bullseye`, `2025.01-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.01.0-enterprise`, `2025.01-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/bullseye/enterprise/Dockerfile) -- [`5.26.1-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.1-ubi9`, `5.26-ubi9`, `5-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/ubi9/community/Dockerfile) +- [`2025.01.0-community-ubi9`, `2025.01-community-ubi9`, `2025-community-ubi9`, `2025.01.0-ubi9`, `2025.01-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/ubi9/community/Dockerfile) -- [`5.26.1-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/15a7d481053aba3bb3b03a00f5d29bf2832f4c11/5.26.1/ubi9/enterprise/Dockerfile) +- [`2025.01.0-enterprise-ubi9`, `2025.01-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/ubi9/enterprise/Dockerfile) + +- [`5.26.2-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.2-community`, `5.26-community`, `5-community`, `5.26.2-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.2`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/bullseye/community/Dockerfile) + +- [`5.26.2-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.2-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/bullseye/enterprise/Dockerfile) + +- [`5.26.2-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.2-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/ubi9/community/Dockerfile) + +- [`5.26.2-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/ubi9/enterprise/Dockerfile) - [`4.4.41`, `4.4.41-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/community/Dockerfile) From 3588da372768c5ca100bfdc25194abc4ff39bfe4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Feb 2025 12:09:34 -0800 Subject: [PATCH 1879/2686] Run update.sh --- crate/README.md | 2 +- friendica/README.md | 6 +++--- memcached/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/crate/README.md b/crate/README.md index 70c37f4a649c..3cb2e7f90108 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/4311253b84f943e5662ad014ce264d0ffe3b96da/Dockerfile) +- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/c83963c3aefaf30e0a17a3162e8692b723d48781/Dockerfile) - [`5.8.6`, `5.8`](https://github.com/crate/docker-crate/blob/b55d16afc32597fca2ee19a1b3e8803a98c1c946/Dockerfile) diff --git a/friendica/README.md b/friendica/README.md index 3487f5796c92..b71f061664f9 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm-alpine/Dockerfile) -- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/apache/Dockerfile) -- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/fpm/Dockerfile) -- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/926690d3371ca15ca916cc6d4e0b29b2264cfe31/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 29c0c4f8647e..3a6b31644c3a 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.35`, `1.6`, `1`, `latest`, `1.6.35-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/076d63673c988e02ffa3ae4b143961f95ea8295a/1/debian/Dockerfile) +- [`1.6.36`, `1.6`, `1`, `latest`, `1.6.36-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/e032009cac12ac69e00d95b3996d30e661a0fbe7/1/debian/Dockerfile) -- [`1.6.35-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.35-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/076d63673c988e02ffa3ae4b143961f95ea8295a/1/alpine/Dockerfile) +- [`1.6.36-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.36-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/e032009cac12ac69e00d95b3996d30e661a0fbe7/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 420bd1ac3373..38c213b5c18b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/0acc836395dcf9dfe31d21688bf6d5f8e883d39a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7-slim-fips/Dockerfile) # Quick reference (cont.) From 004f18af001880c4b23ebbc0eba7fed014e01e59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Feb 2025 15:09:30 -0800 Subject: [PATCH 1880/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 9171f4a36446..2df1b1c2a14e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.1`, `ee-8.0.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/7cabac1129aeadbbf3c13eafa4207f822bc4e2f1/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.2`, `ee-8.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/c240b8aebb50e966a17dc27d8a88335992d70e3f/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.1`, `ce-8.0.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/7cabac1129aeadbbf3c13eafa4207f822bc4e2f1/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.2`, `ce-8.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/c240b8aebb50e966a17dc27d8a88335992d70e3f/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) From 1a8d57867ad2ace0671750b475f0f58bdf4c4bd5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Feb 2025 16:09:36 -0800 Subject: [PATCH 1881/2686] Run update.sh --- mariadb/README.md | 16 +++++++--------- nginx/README.md | 28 ++++++++++++++-------------- 2 files changed, 21 insertions(+), 23 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index f00975b07beb..15f1af2fb565 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -34,21 +34,19 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] - [`11.6.2-noble`, `11.6-noble`, `11-noble`, `noble`, `11.6.2`, `11.6`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6/Dockerfile) -- [`11.4.4-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.4-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.4-ubi/Dockerfile) +- [`11.4.5-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.5-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/11.4-ubi/Dockerfile) -- [`11.4.4-noble`, `11.4-noble`, `lts-noble`, `11.4.4`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.4/Dockerfile) +- [`11.4.5-noble`, `11.4-noble`, `lts-noble`, `11.4.5`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/11.4/Dockerfile) -- [`11.2.6-jammy`, `11.2-jammy`, `11.2.6`, `11.2`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/11.2/Dockerfile) +- [`10.11.11-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.11-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.11-ubi/Dockerfile) -- [`10.11.10-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.10-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.11-ubi/Dockerfile) +- [`10.11.11-jammy`, `10.11-jammy`, `10-jammy`, `10.11.11`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.11/Dockerfile) -- [`10.11.10-jammy`, `10.11-jammy`, `10-jammy`, `10.11.10`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.11/Dockerfile) +- [`10.6.21-ubi9`, `10.6-ubi9`, `10.6.21-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.6-ubi/Dockerfile) -- [`10.6.20-ubi9`, `10.6-ubi9`, `10.6.20-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.6-ubi/Dockerfile) +- [`10.6.21-focal`, `10.6-focal`, `10.6.21`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.6/Dockerfile) -- [`10.6.20-focal`, `10.6-focal`, `10.6.20`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.6/Dockerfile) - -- [`10.5.27-focal`, `10.5-focal`, `10.5.27`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/64252135052f269ed2bb57134ad73537e93b7ab6/10.5/Dockerfile) +- [`10.5.28-focal`, `10.5-focal`, `10.5.28`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.5/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index 4102842efde4..0947e0a6145c 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.3`, `mainline`, `1`, `1.27`, `latest`, `1.27.3-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian/Dockerfile) +- [`1.27.4`, `mainline`, `1`, `1.27`, `latest`, `1.27.4-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian/Dockerfile) -- [`1.27.3-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.3-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian-perl/Dockerfile) +- [`1.27.4-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.4-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian-perl/Dockerfile) -- [`1.27.3-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.3-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/debian-otel/Dockerfile) +- [`1.27.4-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.4-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian-otel/Dockerfile) -- [`1.27.3-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.3-alpine3.20`, `mainline-alpine3.20`, `1-alpine3.20`, `1.27-alpine3.20`, `alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine/Dockerfile) +- [`1.27.4-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.4-alpine3.21`, `mainline-alpine3.21`, `1-alpine3.21`, `1.27-alpine3.21`, `alpine3.21`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine/Dockerfile) -- [`1.27.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.3-alpine3.20-perl`, `mainline-alpine3.20-perl`, `1-alpine3.20-perl`, `1.27-alpine3.20-perl`, `alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-perl/Dockerfile) +- [`1.27.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.4-alpine3.21-perl`, `mainline-alpine3.21-perl`, `1-alpine3.21-perl`, `1.27-alpine3.21-perl`, `alpine3.21-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-perl/Dockerfile) -- [`1.27.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.3-alpine3.20-slim`, `mainline-alpine3.20-slim`, `1-alpine3.20-slim`, `1.27-alpine3.20-slim`, `alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-slim/Dockerfile) +- [`1.27.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.4-alpine3.21-slim`, `mainline-alpine3.21-slim`, `1-alpine3.21-slim`, `1.27-alpine3.21-slim`, `alpine3.21-slim`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-slim/Dockerfile) -- [`1.27.3-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.3-alpine3.20-otel`, `mainline-alpine3.20-otel`, `1-alpine3.20-otel`, `1.27-alpine3.20-otel`, `alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/d21b4f2d90a1abb712a610678872e804267f4815/mainline/alpine-otel/Dockerfile) +- [`1.27.4-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.4-alpine3.21-otel`, `mainline-alpine3.21-otel`, `1-alpine3.21-otel`, `1.27-alpine3.21-otel`, `alpine3.21-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-otel/Dockerfile) -- [`1.26.2`, `stable`, `1.26`, `1.26.2-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian/Dockerfile) +- [`1.26.3`, `stable`, `1.26`, `1.26.3-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian/Dockerfile) -- [`1.26.2-perl`, `stable-perl`, `1.26-perl`, `1.26.2-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian-perl/Dockerfile) +- [`1.26.3-perl`, `stable-perl`, `1.26-perl`, `1.26.3-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-perl/Dockerfile) -- [`1.26.2-otel`, `stable-otel`, `1.26-otel`, `1.26.2-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/e78cf70ce7b73a0c9ea734c9cf8aaaa283c1cc5a/stable/debian-otel/Dockerfile) +- [`1.26.3-otel`, `stable-otel`, `1.26-otel`, `1.26.3-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-otel/Dockerfile) -- [`1.26.2-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.2-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine/Dockerfile) +- [`1.26.3-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.3-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine/Dockerfile) -- [`1.26.2-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.2-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine-perl/Dockerfile) +- [`1.26.3-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.3-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-perl/Dockerfile) -- [`1.26.2-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.2-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/1c99bf1406f95d5fbddb4c9f246e67ad07f79642/stable/alpine-slim/Dockerfile) +- [`1.26.3-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.3-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-slim/Dockerfile) -- [`1.26.2-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.2-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/239684923b2c652b0767540d180de7f7e84bd9fa/stable/alpine-otel/Dockerfile) +- [`1.26.3-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.3-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-otel/Dockerfile) # Quick reference (cont.) From ad90df8ad7725fb54a7d263792cfdfe8a2f1481f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Feb 2025 14:09:30 -0800 Subject: [PATCH 1882/2686] Run update.sh --- clickhouse/README.md | 22 +++++++++--- python/README.md | 86 ++++++++++++++++++++++---------------------- 2 files changed, 61 insertions(+), 47 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 5573c43c2d41..61eced522d01 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -92,7 +92,7 @@ By default, starting above server instance will be run as the `default` user wit ### connect to it from a native client ```bash -docker run -it --rm --link some-clickhouse-server:clickhouse-server --entrypoint clickhouse-client clickhouse --host clickhouse-server +docker run -it --rm --network=container:some-clickhouse-server --entrypoint clickhouse-client clickhouse # OR docker exec -it some-clickhouse-server clickhouse-client ``` @@ -102,7 +102,7 @@ More information about the [ClickHouse client](https://clickhouse.com/docs/en/in ### connect to it using curl ```bash -echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --link some-clickhouse-server:clickhouse-server buildpack-deps:curl curl 'http://clickhouse-server:8123/?query=' -s --data-binary @- +echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --network=container:some-clickhouse-server buildpack-deps:curl curl 'http://localhost:8123/?query=' -s --data-binary @- ``` More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). @@ -116,11 +116,13 @@ docker rm some-clickhouse-server ### networking +> ⚠️ Note: the predefined user `default` does not have the network access unless the password is set, see "How to create default database and user on starting" and "Managing `default` user" below + You can expose your ClickHouse running in docker by [mapping a particular port](https://docs.docker.com/config/containers/container-networking/) from inside the container using host ports: ```bash -docker run -d -p 18123:8123 -p19000:9000 --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse -echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @- +docker run -d -p 18123:8123 -p19000:9000 -e CLICKHOUSE_PASSWORD=changeme --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse +echo 'SELECT version()' | curl 'http://localhost:18123/?password=changeme' --data-binary @- ``` `22.6.3.35` @@ -134,6 +136,8 @@ echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @- `22.6.3.35` +> ⚠️ Note: the user `default` in the example above is available only for the localhost requests + ### Volumes Typically you may want to mount the following folders inside your container to achieve persistency: @@ -203,6 +207,16 @@ Sometimes you may want to create a user (user named `default` is used by default docker run --rm -e CLICKHOUSE_DB=my_database -e CLICKHOUSE_USER=username -e CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1 -e CLICKHOUSE_PASSWORD=password -p 9000:9000/tcp clickhouse ``` +#### Managing `default` user + +The user `default` has disabled network access by default in the case none of `CLICKHOUSE_USER`, `CLICKHOUSE_PASSWORD`, or `CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT` are set. + +There's a way to make `default` user insecurely available by setting environment variable `CLICKHOUSE_SKIP_USER_SETUP` to 1: + +```bash +docker run --rm -e CLICKHOUSE_SKIP_USER_SETUP=1 -p 9000:9000/tcp clickhouse +``` + ## How to extend this image To perform additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d`. After the entrypoint calls `initdb`, it will run any `*.sql` files, run any executable `*.sh` scripts, and source any non-executable `*.sh` scripts found in that directory to do further initialization before starting the service. diff --git a/python/README.md b/python/README.md index d4744f231915..2c1c2570d263 100644 --- a/python/README.md +++ b/python/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/alpine3.20/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -46,41 +46,41 @@ WARNING: - [`3.14.0a4-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.13.1-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bookworm/Dockerfile) +- [`3.13.2-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) -- [`3.13.1-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.1-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/slim-bookworm/Dockerfile) +- [`3.13.2-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.2-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/slim-bookworm/Dockerfile) -- [`3.13.1-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bullseye/Dockerfile) +- [`3.13.2-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bullseye/Dockerfile) -- [`3.13.1-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/slim-bullseye/Dockerfile) +- [`3.13.2-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/slim-bullseye/Dockerfile) -- [`3.13.1-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.1-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/alpine3.21/Dockerfile) +- [`3.13.2-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.2-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/alpine3.21/Dockerfile) -- [`3.13.1-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/alpine3.20/Dockerfile) +- [`3.13.2-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/alpine3.20/Dockerfile) -- [`3.13.1-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.2-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.1-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.2-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.1-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) +- [`3.13.2-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.8-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bookworm/Dockerfile) +- [`3.12.9-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bookworm/Dockerfile) -- [`3.12.8-slim-bookworm`, `3.12-slim-bookworm`, `3.12.8-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/slim-bookworm/Dockerfile) +- [`3.12.9-slim-bookworm`, `3.12-slim-bookworm`, `3.12.9-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/slim-bookworm/Dockerfile) -- [`3.12.8-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bullseye/Dockerfile) +- [`3.12.9-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bullseye/Dockerfile) -- [`3.12.8-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/slim-bullseye/Dockerfile) +- [`3.12.9-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/slim-bullseye/Dockerfile) -- [`3.12.8-alpine3.21`, `3.12-alpine3.21`, `3.12.8-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/alpine3.21/Dockerfile) +- [`3.12.9-alpine3.21`, `3.12-alpine3.21`, `3.12.9-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/alpine3.21/Dockerfile) -- [`3.12.8-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/alpine3.20/Dockerfile) +- [`3.12.9-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/alpine3.20/Dockerfile) -- [`3.12.8-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.12.9-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.12.8-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.9-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.8-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.9-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) - [`3.11.11-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bookworm/Dockerfile) @@ -122,7 +122,7 @@ WARNING: - `3.14.0a4`, `3.14-rc`: - - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bookworm/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) @@ -133,31 +133,31 @@ WARNING: - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.1`, `3.13`, `3`, `latest`: +- `3.13.2`, `3.13`, `3`, `latest`: - - [`3.13.1-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.13/bookworm/Dockerfile) - - [`3.13.1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.2-bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) + - [`3.13.2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.13.1-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.2-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.1-windowsservercore-1809`](https://github.com/docker-library/python/blob/da7ef3c71d3ecd87a43018a372b3e3590d88dd98/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.12.8`, `3.12`: +- `3.12.9`, `3.12`: - - [`3.12.8-bookworm`](https://github.com/docker-library/python/blob/5b0aaddf4f4e887cad27aee3ca99a0c698693c5a/3.12/bookworm/Dockerfile) - - [`3.12.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.9-bookworm`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bookworm/Dockerfile) + - [`3.12.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.12.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.8-windowsservercore`, `3.12-windowsservercore`: +- `3.12.9-windowsservercore`, `3.12-windowsservercore`: - - [`3.12.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/23c83c5a82646e123df33d056f7dfbe1d78cfc8b/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.12.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.11`, `3.11`: From f8de63934b862e2bac4ca04961940398eafa33d5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Feb 2025 15:10:02 -0800 Subject: [PATCH 1883/2686] Run update.sh --- golang/README.md | 46 +++++++++++++++++++++++----------------------- mongo/README.md | 6 ++++++ 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/golang/README.md b/golang/README.md index bdb5ebad8851..4f72aa02abc9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`1.24rc2-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bookworm/Dockerfile) +- [`1.24rc3-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bookworm/Dockerfile) -- [`1.24rc2-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bullseye/Dockerfile) +- [`1.24rc3-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bullseye/Dockerfile) -- [`1.24rc2-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc2-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/alpine3.21/Dockerfile) +- [`1.24rc3-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc3-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/alpine3.21/Dockerfile) -- [`1.24rc2-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/alpine3.20/Dockerfile) +- [`1.24rc3-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/alpine3.20/Dockerfile) -- [`1.24rc2-windowsservercore-ltsc2025`, `1.24-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24rc3-windowsservercore-ltsc2025`, `1.24-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24rc2-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24rc3-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24rc2-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.24rc3-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.24rc2-nanoserver-ltsc2025`, `1.24-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24rc3-nanoserver-ltsc2025`, `1.24-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24rc2-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24rc3-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24rc2-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) +- [`1.24rc3-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-1809/Dockerfile) - [`1.23.6-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) @@ -90,24 +90,24 @@ WARNING: ## Shared Tags -- `1.24rc2`, `1.24-rc`: +- `1.24rc3`, `1.24-rc`: - - [`1.24rc2-bookworm`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/bookworm/Dockerfile) - - [`1.24rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24rc3-bookworm`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bookworm/Dockerfile) + - [`1.24rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- `1.24rc2-windowsservercore`, `1.24-rc-windowsservercore`: +- `1.24rc3-windowsservercore`, `1.24-rc-windowsservercore`: - - [`1.24rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) -- `1.24rc2-nanoserver`, `1.24-rc-nanoserver`: +- `1.24rc3-nanoserver`, `1.24-rc-nanoserver`: - - [`1.24rc2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/2bbd50d64246d302d782d13599d9a8b3bf616116/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24rc2-nanoserver-1809`](https://github.com/docker-library/golang/blob/6923cf49962c9bee69b0e3b363bcc314db012e90/1.24-rc/windows/nanoserver-1809/Dockerfile) + - [`1.24rc3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-1809/Dockerfile) - `1.23.6`, `1.23`, `1`, `latest`: diff --git a/mongo/README.md b/mongo/README.md index 6ae9569b3c16..18b42fdbe425 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,8 @@ WARNING: ## Simple Tags +- [`8.0.5-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/fe2a707f3b58ac1a210100ef6f316fdcd9ccd98b/8.0-rc/Dockerfile) + - [`8.0.4-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) - [`8.0.4-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -78,6 +80,10 @@ WARNING: ## Shared Tags +- `8.0.5-rc1`, `8.0-rc`: + + - [`8.0.5-rc1-noble`](https://github.com/docker-library/mongo/blob/fe2a707f3b58ac1a210100ef6f316fdcd9ccd98b/8.0-rc/Dockerfile) + - `8.0.4`, `8.0`, `8`, `latest`: - [`8.0.4-noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) From fad89edbeb4f30df0b62a51d275fa1237347cbaa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Feb 2025 16:09:44 -0800 Subject: [PATCH 1884/2686] Run update.sh --- dart/README.md | 4 +-- drupal/README.md | 60 +++++++++++++++++++++---------------------- pypy/README.md | 64 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 8 +++--- 4 files changed, 68 insertions(+), 68 deletions(-) diff --git a/dart/README.md b/dart/README.md index ad4a5bbe70bc..caec11fb6731 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.2-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.2`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3725e6a5c64c4caae3a40607fabee7eca5d95339/stable/bookworm/Dockerfile) +- [`3.6.2-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.2`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d836ed2638db8f473f51658cdf415ed0f67d42d9/stable/bookworm/Dockerfile) -- [`3.7.0-323.2.beta-sdk`, `beta-sdk`, `3.7.0-323.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3725e6a5c64c4caae3a40607fabee7eca5d95339/beta/bookworm/Dockerfile) +- [`3.7.0-323.3.beta-sdk`, `beta-sdk`, `3.7.0-323.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d836ed2638db8f473f51658cdf415ed0f67d42d9/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 2e38a410fef5..ac5c836659e2 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.1-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.1-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.1-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.1-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.1-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.1`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.2-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.2-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.2-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.2-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.2-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.2`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.1-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.1-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.1-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.1-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.2-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.2-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.2-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.2-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.1-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.1-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.2-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.2-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.1-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.1-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.2-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.2-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.1-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.1-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.1-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.1-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.2-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.2-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.2-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.2-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.1-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.1-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/e7202cc9967a41cf4e14aeacd32433ddd01b8b01/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.2-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.2-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.10-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.10-php8.3-apache`, `11.0-php8.3-apache`, `11.0.10-php8.3`, `11.0-php8.3`, `11.0.10-apache-bookworm`, `11.0-apache-bookworm`, `11.0.10-apache`, `11.0-apache`, `11.0.10`, `11.0`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.11-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.11-php8.3-apache`, `11.0-php8.3-apache`, `11.0.11-php8.3`, `11.0-php8.3`, `11.0.11-apache-bookworm`, `11.0-apache-bookworm`, `11.0.11-apache`, `11.0-apache`, `11.0.11`, `11.0`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.10-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.10-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.10-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.10-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.11-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.11-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.11-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.11-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.10-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.10-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.11-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.11-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.10-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.10-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.11-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.11-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.10-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.10-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.10-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.10-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.0.11-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.11-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.11-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.11-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.10-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.10-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/d85e838b761384be2fb11bb18779a7ebd520e693/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.11-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.11-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.1-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.1-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.1-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.1-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.1-apache`, `10.4-apache`, `10-apache`, `10.4.1`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.2-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.2-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.2-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.2-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.2-apache`, `10.4-apache`, `10-apache`, `10.4.2`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.1-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.1-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.1-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.1-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.2-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.2-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.2-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.2-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.1-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.1-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.2-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.2-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.1-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.1-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.2-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.2-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.1-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.1-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.1-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.1-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.2-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.2-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.2-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.2-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.1-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.1-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/28ee3b65ecf3db775ec33bcc5b54a43902d662e0/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.2-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.2-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.11-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.11-php8.3-apache`, `10.3-php8.3-apache`, `10.3.11-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.12-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.12-php8.3-apache`, `10.3-php8.3-apache`, `10.3.12-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.11-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.11-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.12-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.12-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.11-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.12-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.11-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.12-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.11-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.11-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.3.12-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.12-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.11-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.12-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.11-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.11-php8.2-apache`, `10.3-php8.2-apache`, `10.3.11-php8.2`, `10.3-php8.2`, `10.3.11-apache-bookworm`, `10.3-apache-bookworm`, `10.3.11-apache`, `10.3-apache`, `10.3.11`, `10.3`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.12-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.12-php8.2-apache`, `10.3-php8.2-apache`, `10.3.12-php8.2`, `10.3-php8.2`, `10.3.12-apache-bookworm`, `10.3-apache-bookworm`, `10.3.12-apache`, `10.3-apache`, `10.3.12`, `10.3`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.11-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.11-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.11-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.11-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.12-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.12-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.12-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.12-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.11-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.11-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.12-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.12-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.11-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.11-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.12-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.12-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.11-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.11-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.11-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.11-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-alpine3.21/Dockerfile) +- [`10.3.12-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.12-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.12-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.12-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.11-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.11-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0248576732a79f174053d7c3850ef3ff7426e977/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.12-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.12-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index f3ee43a2435c..6d5ee314303c 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,61 +28,61 @@ WARNING: ## Simple Tags -- [`3.10-7.3.17-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.17-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bookworm/Dockerfile) +- [`3.10-7.3.18-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.18-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) -- [`3.10-7.3.17-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.17-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.18-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.18-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.17-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.17-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bullseye/Dockerfile) +- [`3.10-7.3.18-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.18-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) -- [`3.10-7.3.17-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.17-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.17-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.17-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.18-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.18-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.18-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.18-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.17-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.17-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.10-7.3.18-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.18-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.10-7.3.17-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.17-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.18-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.18-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.17-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.17-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.18-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.18-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.17-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.17-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bookworm/Dockerfile) +- [`2.7-7.3.18-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.18-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bookworm/Dockerfile) -- [`2.7-7.3.17-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.17-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.18-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.18-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.17-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.17-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bullseye/Dockerfile) +- [`2.7-7.3.18-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.18-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bullseye/Dockerfile) -- [`2.7-7.3.17-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.17-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.17-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.17-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.18-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.18-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.18-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.18-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.17-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.17-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) +- [`2.7-7.3.18-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.18-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) -- [`2.7-7.3.17-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.17-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.18-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.18-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.17-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.17-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.18-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.18-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.10-7.3.17`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.17`, `3-7.3`, `3-7`, `3`, `latest`: +- `3.10-7.3.18`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.18`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/bullseye/Dockerfile) - - [`3.10-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.18-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) + - [`3.10-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.17-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.17-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.10-7.3.18-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.18-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/122ac4d9f832a77e6ee2261984ba5c6a7c5cbe75/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.17`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.17`, `2-7.3`, `2-7`, `2`: +- `2.7-7.3.18`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.18`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.17-bullseye`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/bullseye/Dockerfile) - - [`2.7-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.18-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bullseye/Dockerfile) + - [`2.7-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.17-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.17-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: +- `2.7-7.3.18-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.18-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.17-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ac7cebfe74c5bbee2f1212edda14aa4162184cd9/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.17-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.17-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/b28e10b0636684622326bf8e7b731eb96e3615d2/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index d560795a4eb2..9ff140eb5c6d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/50712c727b66a322dc7f399c7d7e6a2e71f1a991/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/50712c727b66a322dc7f399c7d7e6a2e71f1a991/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.0/ubuntu/Dockerfile) +- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/4a68131a960e8a352eac238bfd4a9d869bc0562d/4.0/ubuntu/Dockerfile) - [`4.0.5-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/4.0/alpine/Dockerfile) +- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/4a68131a960e8a352eac238bfd4a9d869bc0562d/4.0/alpine/Dockerfile) - [`4.0.5-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) From efb340051b9ef28a48c40f7595eb6493cba81598 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Feb 2025 17:09:33 -0800 Subject: [PATCH 1885/2686] Run update.sh --- sonarqube/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 647d1b108b09..b8b17cccac58 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/community/Dockerfile) +- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/developer/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/developer/Dockerfile) +- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/enterprise/Dockerfile) -- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/enterprise/Dockerfile) +- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/app/Dockerfile) -- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/app/Dockerfile) +- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/search/Dockerfile) -- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/search/Dockerfile) +- [`25.2.0.102705-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/339bb786d43dfba8bfdda1045e45225142d313bb/community-build/Dockerfile) -- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/developer/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/community/Dockerfile) -- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/enterprise/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/developer/Dockerfile) -- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/app/Dockerfile) +- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/enterprise/Dockerfile) -- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/search/Dockerfile) +- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/app/Dockerfile) -- [`25.1.0.102122-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/community-build/Dockerfile) +- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/search/Dockerfile) # Quick reference (cont.) From 5ea491d281086588a127ee559eb6b2bdbd1568b4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Feb 2025 22:09:45 -0800 Subject: [PATCH 1886/2686] Run update.sh --- gradle/README.md | 58 +++++++++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 25 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 0c7bc549827d..129999e3c8c6 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,53 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8/Dockerfile) +- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-jammy/Dockerfile) -- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8-focal/Dockerfile) +- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-focal/Dockerfile) -- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk8-corretto/Dockerfile) +- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-corretto/Dockerfile) -- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11/Dockerfile) +- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-jammy/Dockerfile) -- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-focal/Dockerfile) +- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-focal/Dockerfile) -- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-alpine/Dockerfile) +- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-alpine/Dockerfile) -- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk11-corretto/Dockerfile) +- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-corretto/Dockerfile) -- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17/Dockerfile) +- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-noble`, `8.12-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-noble/Dockerfile) -- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-focal/Dockerfile) +- [`8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-jammy/Dockerfile) -- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-alpine/Dockerfile) +- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-focal/Dockerfile) -- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-corretto/Dockerfile) +- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-alpine/Dockerfile) -- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk17-graal/Dockerfile) +- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-corretto/Dockerfile) -- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21/Dockerfile) +- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk17-graal-noble`, `8.12-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`, `8.12.1-jdk-graal-noble`, `8.12-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.12.1-graal-noble`, `8.12-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-noble-graal/Dockerfile) -- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-alpine/Dockerfile) +- [`8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-jammy-graal/Dockerfile) -- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-corretto/Dockerfile) +- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-noble`, `8.12-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-noble`, `8.12-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.12.1-noble`, `8.12-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-noble/Dockerfile) -- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk21-graal/Dockerfile) +- [`8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-jammy/Dockerfile) -- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-jammy`, `8.12-jdk23-jammy`, `8-jdk23-jammy`, `jdk23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23/Dockerfile) +- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-alpine/Dockerfile) -- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-alpine/Dockerfile) +- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-corretto/Dockerfile) -- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-corretto/Dockerfile) +- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk21-graal-noble`, `8.12-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-noble-graal/Dockerfile) -- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk23-graal/Dockerfile) +- [`8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-jammy-graal/Dockerfile) -- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-jammy`, `8.12-jdk-lts-and-current-jammy`, `8-jdk-lts-and-current-jammy`, `jdk-lts-and-current-jammy`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-jammy`, `8.12-jdk-21-and-23-jammy`, `8-jdk-21-and-23-jammy`, `jdk-21-and-23-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current/Dockerfile) +- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-noble`, `8.12-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-noble/Dockerfile) -- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-alpine/Dockerfile) +- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-alpine/Dockerfile) -- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-corretto/Dockerfile) +- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-corretto/Dockerfile) -- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-jammy`, `8.12-jdk-lts-and-current-graal-jammy`, `8-jdk-lts-and-current-graal-jammy`, `jdk-lts-and-current-graal-jammy`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-jammy`, `8.12-jdk-21-and-23-graal-jammy`, `8-jdk-21-and-23-graal-jammy`, `jdk-21-and-23-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/92b67221f9fb6299230368dd887f09a04022ccca/jdk-lts-and-current-graal/Dockerfile) +- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.12.1-jdk23-graal-noble`, `8.12-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-noble-graal/Dockerfile) + +- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-noble`, `8.12-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-noble`, `8.12-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current/Dockerfile) + +- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-alpine/Dockerfile) + +- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-corretto/Dockerfile) + +- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-noble`, `8.12-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-noble`, `8.12-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) @@ -153,7 +161,7 @@ The `gradle` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal or jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `gradle:-alpine` From 7859af24841558c2e1f24040fc18943ebce1a573 Mon Sep 17 00:00:00 2001 From: Patrik Lundin Date: Fri, 7 Feb 2025 09:18:48 +0100 Subject: [PATCH 1887/2686] Remove unnecessary "go mod verify" Fixes #2538 --- golang/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golang/content.md b/golang/content.md index 43cc1a13cb32..071fd54bebfb 100644 --- a/golang/content.md +++ b/golang/content.md @@ -21,7 +21,7 @@ WORKDIR /usr/src/app # pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change COPY go.mod go.sum ./ -RUN go mod download && go mod verify +RUN go mod download COPY . . RUN go build -v -o /usr/local/bin/app ./... From d06cd9af6e5ee646fc3b36cbe002b770ae4c79ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Feb 2025 10:09:39 -0800 Subject: [PATCH 1888/2686] Run update.sh --- golang/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golang/README.md b/golang/README.md index 4f72aa02abc9..0f453e3f10ec 100644 --- a/golang/README.md +++ b/golang/README.md @@ -189,7 +189,7 @@ WORKDIR /usr/src/app # pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change COPY go.mod go.sum ./ -RUN go mod download && go mod verify +RUN go mod download COPY . . RUN go build -v -o /usr/local/bin/app ./... From 19e7b6782484c1f343f273f915697ccc65ff5799 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Feb 2025 11:09:40 -0800 Subject: [PATCH 1889/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- archlinux/README.md | 6 +++--- docker/README.md | 18 ++++++++++++++++++ elixir/README.md | 18 +++++++++--------- odoo/README.md | 6 +++--- oraclelinux/README.md | 18 +++++++++--------- rocket.chat/README.md | 8 ++++---- swipl/README.md | 4 ++-- 8 files changed, 50 insertions(+), 32 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index c7141b4a221a..7038857b1838 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250128.0`](https://github.com/amazonlinux/container-images/blob/62364e1af381cdd199a0d7ad735f8baf1fb9e09b/Dockerfile) +- [`2023`, `latest`, `2023.6.20250203.1`](https://github.com/amazonlinux/container-images/blob/dcd3593bb82fac820a4dc25d028d8e46c2424bcb/Dockerfile) -- [`2`, `2.0.20250123.4`](https://github.com/amazonlinux/container-images/blob/78695135792b5f19183bad50d0c90f627ab9850a/Dockerfile) +- [`2`, `2.0.20250201.0`](https://github.com/amazonlinux/container-images/blob/35791b0faed7f8ba07b37a377e9bab1bcfa496f3/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index 91c52bd593e5..b2cbe391fd61 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.base) +- [`latest`, `base`, `base-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.base) -- [`base-devel`, `base-devel-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250202.0.304438`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1c60ab49ecfaf70098e0316eb270a778563fbea9/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 13412b0c0f2c..b9dc328ced31 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,18 @@ WARNING: ## Simple Tags +- [`28.0.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/cli/Dockerfile) + +- [`28.0.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.1-dind-alpine3.21`, `28.0.0-rc.1`, `28-rc`, `rc`, `28.0.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind/Dockerfile) + +- [`28.0.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind-rootless/Dockerfile) + +- [`28.0.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.0.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`28.0.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/cli/Dockerfile) - [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/fbb79dd2512681b42f6f0a3a82543c29640b85ce/27/dind/Dockerfile) @@ -42,6 +54,12 @@ WARNING: ## Shared Tags +- `28.0.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-1809/Dockerfile) + - `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2025/Dockerfile) diff --git a/elixir/README.md b/elixir/README.md index 3d363af9d41c..46e40a22c9fd 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.1`, `1.18`, `latest`, `1.18.1-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/Dockerfile) +- [`1.18.2`, `1.18`, `latest`, `1.18.2-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/Dockerfile) -- [`1.18.1-slim`, `1.18-slim`, `slim`, `1.18.1-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/slim/Dockerfile) +- [`1.18.2-slim`, `1.18-slim`, `slim`, `1.18.2-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/slim/Dockerfile) -- [`1.18.1-alpine`, `1.18-alpine`, `alpine`, `1.18.1-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/alpine/Dockerfile) +- [`1.18.2-alpine`, `1.18-alpine`, `alpine`, `1.18.2-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/alpine/Dockerfile) -- [`1.18.1-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25/Dockerfile) +- [`1.18.2-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25/Dockerfile) -- [`1.18.1-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25-alpine/Dockerfile) +- [`1.18.2-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25-alpine/Dockerfile) -- [`1.18.1-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-25-slim/Dockerfile) +- [`1.18.2-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25-slim/Dockerfile) -- [`1.18.1-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26/Dockerfile) +- [`1.18.2-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26/Dockerfile) -- [`1.18.1-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26-alpine/Dockerfile) +- [`1.18.2-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26-alpine/Dockerfile) -- [`1.18.1-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/62ca4fe3f6106e8a2a325de00b667bef6505475c/1.18/otp-26-slim/Dockerfile) +- [`1.18.2-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26-slim/Dockerfile) - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 5fe6781fb15d..4f3c090d1c4f 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250131`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/18.0/Dockerfile) +- [`18.0-20250207`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/18.0/Dockerfile) -- [`17.0-20250131`, `17.0`, `17`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/17.0/Dockerfile) +- [`17.0-20250207`, `17.0`, `17`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/17.0/Dockerfile) -- [`16.0-20250131`, `16.0`, `16`](https://github.com/odoo/docker/blob/ece292231c5c56d64a9c78c42308d526caaf4888/16.0/Dockerfile) +- [`16.0-20250207`, `16.0`, `16`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/16.0/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 38c213b5c18b..7e764ae4c549 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/87cb4c6c3b8c13d075a1ab26fd682c2bf8603a36/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c4a5ac49f02f..3179f345da6a 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.3.0`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/84fd23fa7bcb08bdd8275e790289d58b764043a4/7.3/Dockerfile) +- [`7.3.1`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.3/Dockerfile) -- [`7.2.1`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.2/Dockerfile) +- [`7.2.2`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.2/Dockerfile) -- [`7.1.1`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.1/Dockerfile) +- [`7.1.2`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.1/Dockerfile) -- [`7.0.5`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/f8019f94dfe743710de864045180bcf4ca357fa8/7.0/Dockerfile) +- [`7.0.6`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 2865e59f2412..0f6e266d2750 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.18`](https://github.com/SWI-Prolog/docker-swipl/blob/8c4558983698e6d6b22f936376e645d20d8eea37/9.3.18/bookworm/Dockerfile) +- [`latest`, `9.3.20`](https://github.com/SWI-Prolog/docker-swipl/blob/48963cac95fb1e03fa6280d30da302b887d42280/9.3.20/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/8c4558983698e6d6b22f936376e645d20d8eea37/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/48963cac95fb1e03fa6280d30da302b887d42280/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From ea873b6d6cb458aec410af7f237f2553cc4568f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Feb 2025 15:10:02 -0800 Subject: [PATCH 1890/2686] Run update.sh --- clearlinux/README.md | 2 +- crate/README.md | 2 +- node/README.md | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 5ac04728700f..b0a2cf481491 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/161ae2584d299d4347d1bc46b2b3d90771b7bf5e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/92cf62bded14557c002e816e07e36df2e45b216e/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 3cb2e7f90108..9a72e5e53946 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/c83963c3aefaf30e0a17a3162e8692b723d48781/Dockerfile) +- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/5972d59d5a2521ad29ae2f3edd9edad2697e36be/Dockerfile) - [`5.8.6`, `5.8`](https://github.com/crate/docker-crate/blob/b55d16afc32597fca2ee19a1b3e8803a98c1c946/Dockerfile) diff --git a/node/README.md b/node/README.md index 371ff89f8888..5d0841545d0f 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.13-bullseye-slim`, `22.13.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.2-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/alpine3.20/Dockerfile) +- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.3-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.2-alpine`, `20.18.2-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.3-alpine`, `20.18.3-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/alpine3.21/Dockerfile) -- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.2`, `20.18.2-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.3`, `20.18.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.2-bookworm-slim`, `20.18.2-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.3-bookworm-slim`, `20.18.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.18-bullseye`, `20.18.2-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.18-bullseye`, `20.18.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.2-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bullseye-slim/Dockerfile) - [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.6-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/a2d83853f45a2de0ec832474b45e552f8cfeb6c4/18/alpine3.20/Dockerfile) From 4af7cce8d4fd227200632f681570fb5312db55f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Feb 2025 16:09:54 -0800 Subject: [PATCH 1891/2686] Run update.sh --- cassandra/README.md | 6 +-- ghost/README.md | 4 +- haproxy/README.md | 4 +- openjdk/README.md | 100 ++++++++++++++++++++++---------------------- rabbitmq/README.md | 8 ++-- telegraf/README.md | 12 +++--- tomcat/README.md | 80 +++++++++++++++++------------------ wordpress/README.md | 18 ++++---- 8 files changed, 116 insertions(+), 116 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index dc527b6d736b..3732e06b3d85 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -28,11 +28,11 @@ WARNING: - [`4.1.8`, `4.1`, `4`, `4.1.8-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/f49e80e172f29e2cad0a9acd054806d9709a4205/4.1/Dockerfile) -- [`4.0.16`, `4.0`, `4.0.16-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/c4de505e25eb89ec5a0578dd693430bf3602b2e1/4.0/Dockerfile) +- [`4.0.17`, `4.0`, `4.0.17-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/8b58b84f373e48382e49d59acd0b544b33b2c034/4.0/Dockerfile) -- [`3.11.18`, `3.11`, `3`, `3.11.18-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/34424ed79ebd85603a14bda2a69d36a377bebbfc/3.11/Dockerfile) +- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/011007d5b4f1b8e73835366ebb0a85ee89c29436/3.11/Dockerfile) -- [`3.0.31`, `3.0`, `3.0.31-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/e367aabb74d1249800e5cf94284183078d0a3a2c/3.0/Dockerfile) +- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/d47ed59f99316e94a333126a10db20a440d4642d/3.0/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 3e7775c3a02d..9f62621c847b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.2`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9a874a571878e1812ce1d4140a6aaed4a11545ba/5/debian/Dockerfile) +- [`5.109.3`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8b71f528b7510d32e35d258c29b77a1b9d658333/5/debian/Dockerfile) -- [`5.109.2-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9a874a571878e1812ce1d4140a6aaed4a11545ba/5/alpine/Dockerfile) +- [`5.109.3-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8b71f528b7510d32e35d258c29b77a1b9d658333/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index dc0a4d05d1cf..ce7a389fa17a 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev4`, `3.2-dev`, `3.2-dev4-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7befb826ce64d07796378978a0bf12b3aabec301/3.2/Dockerfile) +- [`3.2-dev5`, `3.2-dev`, `3.2-dev5-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/d604c89bc8794e2444c76f3421d5adde679651f9/3.2/Dockerfile) -- [`3.2-dev4-alpine`, `3.2-dev-alpine`, `3.2-dev4-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7befb826ce64d07796378978a0bf12b3aabec301/3.2/alpine/Dockerfile) +- [`3.2-dev5-alpine`, `3.2-dev-alpine`, `3.2-dev5-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/d604c89bc8794e2444c76f3421d5adde679651f9/3.2/alpine/Dockerfile) - [`3.1.3`, `3.1`, `latest`, `3.1.3-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/9172eda0839755b609790ff159545e1f7d66d9b1/3.1/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 1cf28291ea88..3ff138eb9526 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,93 +42,93 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-8-jdk-oraclelinux9`, `25-ea-8-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-8-jdk-oracle`, `25-ea-8-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-9-jdk-oraclelinux9`, `25-ea-9-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-9-jdk-oracle`, `25-ea-9-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-8-jdk-oraclelinux8`, `25-ea-8-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-9-jdk-oraclelinux8`, `25-ea-9-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-8-jdk-bookworm`, `25-ea-8-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/bookworm/Dockerfile) +- [`25-ea-9-jdk-bookworm`, `25-ea-9-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/bookworm/Dockerfile) -- [`25-ea-8-jdk-slim-bookworm`, `25-ea-8-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-8-jdk-slim`, `25-ea-8-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-9-jdk-slim-bookworm`, `25-ea-9-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-9-jdk-slim`, `25-ea-9-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-8-jdk-bullseye`, `25-ea-8-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/bullseye/Dockerfile) +- [`25-ea-9-jdk-bullseye`, `25-ea-9-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/bullseye/Dockerfile) -- [`25-ea-8-jdk-slim-bullseye`, `25-ea-8-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-9-jdk-slim-bullseye`, `25-ea-9-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-8-jdk-windowsservercore-ltsc2025`, `25-ea-8-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-9-jdk-windowsservercore-ltsc2025`, `25-ea-9-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-8-jdk-windowsservercore-ltsc2022`, `25-ea-8-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-9-jdk-windowsservercore-ltsc2022`, `25-ea-9-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-8-jdk-windowsservercore-1809`, `25-ea-8-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-9-jdk-windowsservercore-1809`, `25-ea-9-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-8-jdk-nanoserver-ltsc2025`, `25-ea-8-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-9-jdk-nanoserver-ltsc2025`, `25-ea-9-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-8-jdk-nanoserver-ltsc2022`, `25-ea-8-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-9-jdk-nanoserver-ltsc2022`, `25-ea-9-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-8-jdk-nanoserver-1809`, `25-ea-8-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-9-jdk-nanoserver-1809`, `25-ea-9-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-ea-35-jdk-oraclelinux9`, `24-ea-35-oraclelinux9`, `24-ea-jdk-oraclelinux9`, `24-ea-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-ea-35-jdk-oracle`, `24-ea-35-oracle`, `24-ea-jdk-oracle`, `24-ea-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux9/Dockerfile) +- [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) -- [`24-ea-35-jdk-oraclelinux8`, `24-ea-35-oraclelinux8`, `24-ea-jdk-oraclelinux8`, `24-ea-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux8/Dockerfile) +- [`24-rc-jdk-oraclelinux8`, `24-rc-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux8/Dockerfile) -- [`24-ea-35-jdk-bookworm`, `24-ea-35-bookworm`, `24-ea-jdk-bookworm`, `24-ea-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/bookworm/Dockerfile) +- [`24-rc-jdk-bookworm`, `24-rc-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/bookworm/Dockerfile) -- [`24-ea-35-jdk-slim-bookworm`, `24-ea-35-slim-bookworm`, `24-ea-jdk-slim-bookworm`, `24-ea-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-ea-35-jdk-slim`, `24-ea-35-slim`, `24-ea-jdk-slim`, `24-ea-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/slim-bookworm/Dockerfile) +- [`24-rc-jdk-slim-bookworm`, `24-rc-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-rc-jdk-slim`, `24-rc-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/slim-bookworm/Dockerfile) -- [`24-ea-35-jdk-bullseye`, `24-ea-35-bullseye`, `24-ea-jdk-bullseye`, `24-ea-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/bullseye/Dockerfile) +- [`24-rc-jdk-bullseye`, `24-rc-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/bullseye/Dockerfile) -- [`24-ea-35-jdk-slim-bullseye`, `24-ea-35-slim-bullseye`, `24-ea-jdk-slim-bullseye`, `24-ea-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/slim-bullseye/Dockerfile) +- [`24-rc-jdk-slim-bullseye`, `24-rc-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/slim-bullseye/Dockerfile) -- [`24-ea-35-jdk-windowsservercore-ltsc2025`, `24-ea-35-windowsservercore-ltsc2025`, `24-ea-jdk-windowsservercore-ltsc2025`, `24-ea-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24-rc-jdk-windowsservercore-ltsc2025`, `24-rc-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24-ea-35-jdk-windowsservercore-ltsc2022`, `24-ea-35-windowsservercore-ltsc2022`, `24-ea-jdk-windowsservercore-ltsc2022`, `24-ea-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24-rc-jdk-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24-ea-35-jdk-windowsservercore-1809`, `24-ea-35-windowsservercore-1809`, `24-ea-jdk-windowsservercore-1809`, `24-ea-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24-rc-jdk-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`24-ea-35-jdk-nanoserver-ltsc2025`, `24-ea-35-nanoserver-ltsc2025`, `24-ea-jdk-nanoserver-ltsc2025`, `24-ea-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24-rc-jdk-nanoserver-ltsc2025`, `24-rc-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24-ea-35-jdk-nanoserver-ltsc2022`, `24-ea-35-nanoserver-ltsc2022`, `24-ea-jdk-nanoserver-ltsc2022`, `24-ea-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24-rc-jdk-nanoserver-ltsc2022`, `24-rc-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24-ea-35-jdk-nanoserver-1809`, `24-ea-35-nanoserver-1809`, `24-ea-jdk-nanoserver-1809`, `24-ea-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-1809/Dockerfile) +- [`24-rc-jdk-nanoserver-1809`, `24-rc-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-8-jdk`, `25-ea-8`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-9-jdk`, `25-ea-9`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-8-jdk-windowsservercore`, `25-ea-8-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-9-jdk-windowsservercore`, `25-ea-9-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-8-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-8-jdk-nanoserver`, `25-ea-8-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-9-jdk-nanoserver`, `25-ea-9-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-8-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-8-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-8-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/a9b9f214251aa186d7eebe52903d1dc842a41680/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-9-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-9-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-ea-35-jdk`, `24-ea-35`, `24-ea-jdk`, `24-ea`, `24-jdk`, `24`: +- `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: - - [`24-ea-35-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/oraclelinux9/Dockerfile) - - [`24-ea-35-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) + - [`24-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-35-jdk-windowsservercore`, `24-ea-35-windowsservercore`, `24-ea-jdk-windowsservercore`, `24-ea-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24-rc-jdk-windowsservercore`, `24-rc-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24-ea-35-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-ea-35-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-ea-35-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `24-ea-35-jdk-nanoserver`, `24-ea-35-nanoserver`, `24-ea-jdk-nanoserver`, `24-ea-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24-rc-jdk-nanoserver`, `24-rc-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24-ea-35-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-ea-35-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-ea-35-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ecf054b190c1d04e2ee4607b150b79cc0a0dd458/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24-rc-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24-rc-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9ff140eb5c6d..494dbac73b4c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.3`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/50712c727b66a322dc7f399c7d7e6a2e71f1a991/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/d0eb7432aad185f078fac1f4ea90c31f45f7b725/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-beta.3-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-beta.4-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.3-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/50712c727b66a322dc7f399c7d7e6a2e71f1a991/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d0eb7432aad185f078fac1f4ea90c31f45f7b725/4.1-rc/alpine/Dockerfile) -- [`4.1.0-beta.3-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-beta.4-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) - [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/4a68131a960e8a352eac238bfd4a9d869bc0562d/4.0/ubuntu/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index dd026165deec..f89a1c98c575 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b41fa97f3a1668c20c8e890e3c6af21f7359b64d/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.33/alpine/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 413cb1514812..d7f0bc1a3f5a 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,85 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.2-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.2-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.2-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.2`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.3-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.3-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.3-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.3`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.2-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.2-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.2-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.3-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.3-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.3-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.2-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.3-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.2-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.3-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.2-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.2-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.2-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.3-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.3-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.3-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.2-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.2-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.2-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.3-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.3-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.3-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.2-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.3-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.2-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b5d947eda39355b9e53cde8f997392a24cfaed79/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.3-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.34-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.34-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.34-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.34`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.35-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.35-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.35-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.35`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.34-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.34-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.34-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.35-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.35-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.35-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.34-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.35-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.34-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.35-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.34-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.34-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.34-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.35-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.35-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.35-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.34-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.34-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.34-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.35-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.35-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.35-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.34-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.35-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.34-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.35-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.34-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.34-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.34-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.35-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.35-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.35-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.34-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.34-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.34-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.35-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.35-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.35-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.34-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.35-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.34-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.35-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.98-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.98-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.98-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.98`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.99-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.99-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.99-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.99`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.98-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.98-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.98-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.99-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.99-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.99-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.98-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.99-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.98-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.99-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.98-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.98-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.99-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.99-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.98-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.98-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.98-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.99-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.99-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.99-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.98-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.98-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.98-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.99-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.99-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.99-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.98-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.99-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.98-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.99-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.98-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.98-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.99-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.99-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.98-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.98-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.98-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.99-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.99-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.99-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.98-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.98-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.98-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.99-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.99-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.99-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.98-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.99-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.98-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.99-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.98-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.98-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.99-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.99-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.98-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.98-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.98-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.99-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.99-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.99-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.98-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.98-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.98-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.99-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.99-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.99-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.98-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.99-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.98-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.99-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.98-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.98-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/f92b3525db29825c365efaf76ae21b8133ad75b4/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.99-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.99-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 01a1544fa8e3..edf9516c5b50 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7.2-RC1-php8.1-apache`, `beta-6.7.2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7.2-RC1-php8.1`, `beta-6.7.2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/apache/Dockerfile) +- [`beta-6.7.2-RC2-php8.1-apache`, `beta-6.7.2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7.2-RC2-php8.1`, `beta-6.7.2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/apache/Dockerfile) -- [`beta-6.7.2-RC1-php8.1-fpm`, `beta-6.7.2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/fpm/Dockerfile) +- [`beta-6.7.2-RC2-php8.1-fpm`, `beta-6.7.2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.7.2-RC1-php8.1-fpm-alpine`, `beta-6.7.2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.7.2-RC2-php8.1-fpm-alpine`, `beta-6.7.2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.7.2-RC1-apache`, `beta-6.7.2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7.2-RC1`, `beta-6.7.2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7.2-RC1-php8.2-apache`, `beta-6.7.2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7.2-RC1-php8.2`, `beta-6.7.2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/apache/Dockerfile) +- [`beta-6.7.2-RC2-apache`, `beta-6.7.2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7.2-RC2`, `beta-6.7.2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7.2-RC2-php8.2-apache`, `beta-6.7.2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7.2-RC2-php8.2`, `beta-6.7.2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/apache/Dockerfile) -- [`beta-6.7.2-RC1-fpm`, `beta-6.7.2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7.2-RC1-php8.2-fpm`, `beta-6.7.2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/fpm/Dockerfile) +- [`beta-6.7.2-RC2-fpm`, `beta-6.7.2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7.2-RC2-php8.2-fpm`, `beta-6.7.2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.7.2-RC1-fpm-alpine`, `beta-6.7.2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7.2-RC1-php8.2-fpm-alpine`, `beta-6.7.2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.7.2-RC2-fpm-alpine`, `beta-6.7.2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7.2-RC2-php8.2-fpm-alpine`, `beta-6.7.2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.7.2-RC1-php8.3-apache`, `beta-6.7.2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7.2-RC1-php8.3`, `beta-6.7.2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/apache/Dockerfile) +- [`beta-6.7.2-RC2-php8.3-apache`, `beta-6.7.2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7.2-RC2-php8.3`, `beta-6.7.2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/apache/Dockerfile) -- [`beta-6.7.2-RC1-php8.3-fpm`, `beta-6.7.2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/fpm/Dockerfile) +- [`beta-6.7.2-RC2-php8.3-fpm`, `beta-6.7.2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/fpm/Dockerfile) -- [`beta-6.7.2-RC1-php8.3-fpm-alpine`, `beta-6.7.2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/39c8a6fdd5f22c3c37437b147c36d33df3ccffa6/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.7.2-RC2-php8.3-fpm-alpine`, `beta-6.7.2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7236afb4d77af342e1842ab12354993b0794960d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Feb 2025 11:09:51 -0800 Subject: [PATCH 1892/2686] Run update.sh --- bash/README.md | 2 +- elasticsearch/README.md | 4 ++-- ghost/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 29e8a392f313..49425a51ab6c 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250128`, `devel`, `devel-20250128-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/6655433b6724981d0f8cf07a27aa0df7830d8f45/devel/Dockerfile) +- [`devel-20250210`, `devel`, `devel-20250210-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/6df7584d75e3b73e0cb94a1e17ff3a58a8133089/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 9e3266e51e08..8ef833dcd9ea 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/elasticsearch/Dockerfile) +- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/elasticsearch/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/elasticsearch/Dockerfile) -- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/elasticsearch/Dockerfile) +- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9f62621c847b..4aba485ae04f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.3`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8b71f528b7510d32e35d258c29b77a1b9d658333/5/debian/Dockerfile) +- [`5.109.4`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1d106a96893d0ec6151cfc58730ed25de219a3db/5/debian/Dockerfile) -- [`5.109.3-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8b71f528b7510d32e35d258c29b77a1b9d658333/5/alpine/Dockerfile) +- [`5.109.4-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1d106a96893d0ec6151cfc58730ed25de219a3db/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 3b54acc66c78..f741288ef33f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/kibana/Dockerfile) +- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/kibana/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/kibana/Dockerfile) -- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/kibana/Dockerfile) +- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 05e8750a248d..d05f1c1cf527 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.3`](https://github.com/elastic/dockerfiles/blob/7c6b177a661ea2268ddff1b14e7e488896315ae7/logstash/Dockerfile) +- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/logstash/Dockerfile) - [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/logstash/Dockerfile) -- [`8.17.1`](https://github.com/elastic/dockerfiles/blob/f505af6b7b081b1bcae6eb3037c998427ddc025f/logstash/Dockerfile) +- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/logstash/Dockerfile) # Quick reference (cont.) From 2bd86c9b9c894e90630ad53c6d2bec5ed84e819b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Feb 2025 14:09:48 -0800 Subject: [PATCH 1893/2686] Run update.sh --- jruby/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index f3b0af4bb4e1..01ee3e59f47d 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.11`, `9.4-jre`, `9.4-jre8`, `9.4.11-jre`, `9.4.11-jre8`, `9.4.11.0`, `9.4.11.0-jre`, `9.4.11.0-jre8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre8/Dockerfile) +- [`latest`, `9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.0`, `9.4.12.0-jre`, `9.4.12.0-jre8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.11-jdk`, `9.4.11-jdk8`, `9.4.11.0-jdk`, `9.4.11.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.0-jdk`, `9.4.12.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.11-jre11`, `9.4.11.0-jre11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.0-jre11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.11-jdk11`, `9.4.11.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.11-jdk17`, `9.4.11.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.11-jre17`, `9.4.11.0-jre17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.0-jre17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.11-jdk21`, `9.4.11.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.11-jre21`, `9.4.11.0-jre21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.0-jre21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fa9edca76eba367e52dd124335809f9f85cf0430/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre21/Dockerfile) # Quick reference (cont.) From ea82b190e4ee4e6783e86a14b6e28567f53cf78a Mon Sep 17 00:00:00 2001 From: "Michael C. Coberly" Date: Tue, 11 Feb 2025 14:34:52 -0800 Subject: [PATCH 1894/2686] Update github-repo to correct repository location --- aerospike/github-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerospike/github-repo b/aerospike/github-repo index bfe29fcaf8f4..91cf2ac3e131 100644 --- a/aerospike/github-repo +++ b/aerospike/github-repo @@ -1 +1 @@ -https://github.com/aerospike/aerospike-server-enterprise.docker +https://github.com/aerospike/aerospike-server.docker From 5ef8cd6750c5732d32bf5fc611cb08eaa89e50ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Feb 2025 15:09:34 -0800 Subject: [PATCH 1895/2686] Run update.sh --- aerospike/README.md | 4 ++-- registry/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 2df1b1c2a14e..70a20b08dcc9 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [Aerospike, Inc.](https://github.com/aerospike/aerospike-server-enterprise.docker) + [Aerospike, Inc.](https://github.com/aerospike/aerospike-server.docker) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -31,7 +31,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [the Aerospike Forums](https://discuss.aerospike.com) or [GitHub](https://github.com/aerospike/aerospike-server-enterprise.docker/issues) + [the Aerospike Forums](https://discuss.aerospike.com) or [GitHub](https://github.com/aerospike/aerospike-server.docker/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/aerospike/), [`arm64v8`](https://hub.docker.com/r/arm64v8/aerospike/) diff --git a/registry/README.md b/registry/README.md index 639222a63af5..eaef1ab606b7 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-rc.2`](https://github.com/distribution/distribution-library-image/blob/588e2e5ee607521e48cdc66147a42a2b6decd749/Dockerfile) +- [`3.0.0-rc.3`](https://github.com/distribution/distribution-library-image/blob/db464de56afaf09f0d702f30f422a3e19e953a53/Dockerfile) - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) From 4e7dcfcfd07c66c49fbc5a2839036be1a558f551 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Feb 2025 09:09:36 -0800 Subject: [PATCH 1896/2686] Run update.sh --- drupal/README.md | 24 ++++++++++ golang/README.md | 111 ++++++++++++++------------------------------ rabbitmq/README.md | 16 +++---- wordpress/README.md | 36 ++++---------- 4 files changed, 77 insertions(+), 110 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index ac5c836659e2..d3b58a2b686b 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,6 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`11.1.2-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.2-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.2-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/apache-bookworm/Dockerfile) + +- [`11.1.2-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.2-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-bookworm/Dockerfile) + +- [`11.1.2-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/apache-bullseye/Dockerfile) + +- [`11.1.2-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-bullseye/Dockerfile) + +- [`11.1.2-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.2-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-alpine3.21/Dockerfile) + +- [`11.1.2-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-alpine3.20/Dockerfile) + - [`11.1.2-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.2-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.2-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.2-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.2-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.2`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/apache-bookworm/Dockerfile) - [`11.1.2-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.2-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.2-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.2-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-bookworm/Dockerfile) @@ -48,6 +60,18 @@ WARNING: - [`11.0.11-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.11-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.2-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.2-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.2-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/apache-bookworm/Dockerfile) + +- [`10.4.2-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.2-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-bookworm/Dockerfile) + +- [`10.4.2-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/apache-bullseye/Dockerfile) + +- [`10.4.2-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-bullseye/Dockerfile) + +- [`10.4.2-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.2-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-alpine3.21/Dockerfile) + +- [`10.4.2-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-alpine3.20/Dockerfile) + - [`10.4.2-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.2-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.2-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.2-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.2-apache`, `10.4-apache`, `10-apache`, `10.4.2`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/apache-bookworm/Dockerfile) - [`10.4.2-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.2-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.2-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.2-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-bookworm/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 0f453e3f10ec..c5cf9b343792 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,125 +28,86 @@ WARNING: ## Simple Tags -- [`1.24rc3-bookworm`, `1.24-rc-bookworm`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bookworm/Dockerfile) +- [`1.24.0-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bookworm/Dockerfile) -- [`1.24rc3-bullseye`, `1.24-rc-bullseye`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bullseye/Dockerfile) +- [`1.24.0-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bullseye/Dockerfile) -- [`1.24rc3-alpine3.21`, `1.24-rc-alpine3.21`, `1.24rc3-alpine`, `1.24-rc-alpine`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/alpine3.21/Dockerfile) +- [`1.24.0-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.0-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/alpine3.21/Dockerfile) -- [`1.24rc3-alpine3.20`, `1.24-rc-alpine3.20`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/alpine3.20/Dockerfile) +- [`1.24.0-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/alpine3.20/Dockerfile) -- [`1.24rc3-windowsservercore-ltsc2025`, `1.24-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.0-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24rc3-windowsservercore-ltsc2022`, `1.24-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.0-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24rc3-windowsservercore-1809`, `1.24-rc-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.24.0-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) -- [`1.24rc3-nanoserver-ltsc2025`, `1.24-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.0-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24rc3-nanoserver-ltsc2022`, `1.24-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.0-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24rc3-nanoserver-1809`, `1.24-rc-nanoserver-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-1809/Dockerfile) +- [`1.24.0-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-1809/Dockerfile) -- [`1.23.6-bookworm`, `1.23-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) +- [`1.23.6-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) -- [`1.23.6-bullseye`, `1.23-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bullseye/Dockerfile) +- [`1.23.6-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bullseye/Dockerfile) -- [`1.23.6-alpine3.21`, `1.23-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.23.6-alpine`, `1.23-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.21/Dockerfile) +- [`1.23.6-alpine3.21`, `1.23-alpine3.21`, `1.23.6-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.21/Dockerfile) -- [`1.23.6-alpine3.20`, `1.23-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.20/Dockerfile) +- [`1.23.6-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.20/Dockerfile) -- [`1.23.6-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.6-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.6-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.6-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.6-windowsservercore-1809`, `1.23-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.6-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.6-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.6-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.6-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.6-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) - -- [`1.22.12-bookworm`, `1.22-bookworm`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bookworm/Dockerfile) - -- [`1.22.12-bullseye`, `1.22-bullseye`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bullseye/Dockerfile) - -- [`1.22.12-alpine3.21`, `1.22-alpine3.21`, `1.22.12-alpine`, `1.22-alpine`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/alpine3.21/Dockerfile) - -- [`1.22.12-alpine3.20`, `1.22-alpine3.20`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/alpine3.20/Dockerfile) - -- [`1.22.12-windowsservercore-ltsc2025`, `1.22-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`1.22.12-windowsservercore-ltsc2022`, `1.22-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.22.12-windowsservercore-1809`, `1.22-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) - -- [`1.22.12-nanoserver-ltsc2025`, `1.22-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2025/Dockerfile) - -- [`1.22.12-nanoserver-ltsc2022`, `1.22-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2022/Dockerfile) - -- [`1.22.12-nanoserver-1809`, `1.22-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-1809/Dockerfile) +- [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `1.24rc3`, `1.24-rc`: +- `1.24.0`, `1.24`, `1`, `latest`: - - [`1.24rc3-bookworm`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/bookworm/Dockerfile) - - [`1.24rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24.0-bookworm`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bookworm/Dockerfile) + - [`1.24.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24rc3-windowsservercore`, `1.24-rc-windowsservercore`: +- `1.24.0-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24rc3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.24.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24rc3-nanoserver`, `1.24-rc-nanoserver`: +- `1.24.0-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24rc3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24rc3-nanoserver-1809`](https://github.com/docker-library/golang/blob/92805c5efacbd31643efec2585e53c1eea3a7fdf/1.24-rc/windows/nanoserver-1809/Dockerfile) + - [`1.24.0-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-1809/Dockerfile) -- `1.23.6`, `1.23`, `1`, `latest`: +- `1.23.6`, `1.23`: - [`1.23.6-bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.6-windowsservercore`, `1.23-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.23.6-windowsservercore`, `1.23-windowsservercore`: - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.6-nanoserver`, `1.23-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.23.6-nanoserver`, `1.23-nanoserver`: - [`1.23.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- `1.22.12`, `1.22`: - - - [`1.22.12-bookworm`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/bookworm/Dockerfile) - - [`1.22.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.22.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) - -- `1.22.12-windowsservercore`, `1.22-windowsservercore`: - - - [`1.22.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.22.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.22.12-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/windowsservercore-1809/Dockerfile) - -- `1.22.12-nanoserver`, `1.22-nanoserver`: - - - [`1.22.12-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.22.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.22.12-nanoserver-1809`](https://github.com/docker-library/golang/blob/9a51d2eb6fa7d5804857586aff248405f19b1e34/1.22/windows/nanoserver-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 494dbac73b4c..9037a40b0181 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/d0eb7432aad185f078fac1f4ea90c31f45f7b725/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/0698c475d60876b794e9fcee5a5f91fb41e18b8f/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.4-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d0eb7432aad185f078fac1f4ea90c31f45f7b725/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0698c475d60876b794e9fcee5a5f91fb41e18b8f/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.4-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.5`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/4a68131a960e8a352eac238bfd4a9d869bc0562d/4.0/ubuntu/Dockerfile) +- [`4.0.6`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/5095943110df494043917098f99c17ea10591485/4.0/ubuntu/Dockerfile) -- [`4.0.5-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.6-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.5-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/4a68131a960e8a352eac238bfd4a9d869bc0562d/4.0/alpine/Dockerfile) +- [`4.0.6-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5095943110df494043917098f99c17ea10591485/4.0/alpine/Dockerfile) -- [`4.0.5-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.6-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/32ff17343cd6b6756094d43120babb089b55d13c/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/a6e24f2c3c34229c7ab622c81ba93ae02f244f36/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/32ff17343cd6b6756094d43120babb089b55d13c/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index edf9516c5b50..d18fb8677b44 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.7.1-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.1-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/apache/Dockerfile) +- [`6.7.2-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.2-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/apache/Dockerfile) -- [`6.7.1-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/fpm/Dockerfile) +- [`6.7.2-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/fpm/Dockerfile) -- [`6.7.1-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.7.2-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.7.1-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.1`, `6.7`, `6`, `latest`, `6.7.1-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.1-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/apache/Dockerfile) +- [`6.7.2-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.2`, `6.7`, `6`, `latest`, `6.7.2-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.2-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/apache/Dockerfile) -- [`6.7.1-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.1-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/fpm/Dockerfile) +- [`6.7.2-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.2-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/fpm/Dockerfile) -- [`6.7.1-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.1-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.7.2-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.2-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.7.1-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.1-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/apache/Dockerfile) +- [`6.7.2-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.2-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/apache/Dockerfile) -- [`6.7.1-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/fpm/Dockerfile) +- [`6.7.2-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/fpm/Dockerfile) -- [`6.7.1-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0015d465b4115ade0e0f98b3df8b5c17ec4a98e4/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.7.2-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) @@ -48,24 +48,6 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.7.2-RC2-php8.1-apache`, `beta-6.7.2-php8.1-apache`, `beta-6.7-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.7.2-RC2-php8.1`, `beta-6.7.2-php8.1`, `beta-6.7-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/apache/Dockerfile) - -- [`beta-6.7.2-RC2-php8.1-fpm`, `beta-6.7.2-php8.1-fpm`, `beta-6.7-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.7.2-RC2-php8.1-fpm-alpine`, `beta-6.7.2-php8.1-fpm-alpine`, `beta-6.7-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.7.2-RC2-apache`, `beta-6.7.2-apache`, `beta-6.7-apache`, `beta-6-apache`, `beta-apache`, `beta-6.7.2-RC2`, `beta-6.7.2`, `beta-6.7`, `beta-6`, `beta`, `beta-6.7.2-RC2-php8.2-apache`, `beta-6.7.2-php8.2-apache`, `beta-6.7-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.7.2-RC2-php8.2`, `beta-6.7.2-php8.2`, `beta-6.7-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/apache/Dockerfile) - -- [`beta-6.7.2-RC2-fpm`, `beta-6.7.2-fpm`, `beta-6.7-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.7.2-RC2-php8.2-fpm`, `beta-6.7.2-php8.2-fpm`, `beta-6.7-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.7.2-RC2-fpm-alpine`, `beta-6.7.2-fpm-alpine`, `beta-6.7-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.7.2-RC2-php8.2-fpm-alpine`, `beta-6.7.2-php8.2-fpm-alpine`, `beta-6.7-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.7.2-RC2-php8.3-apache`, `beta-6.7.2-php8.3-apache`, `beta-6.7-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.7.2-RC2-php8.3`, `beta-6.7.2-php8.3`, `beta-6.7-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/apache/Dockerfile) - -- [`beta-6.7.2-RC2-php8.3-fpm`, `beta-6.7.2-php8.3-fpm`, `beta-6.7-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.7.2-RC2-php8.3-fpm-alpine`, `beta-6.7.2-php8.3-fpm-alpine`, `beta-6.7-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b86de3fe7c99001e32ac2e7048a8adf4f85db5a/beta/php8.3/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 5b8b58937c6095657dc94d69900994e65e09e2c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Feb 2025 10:10:22 -0800 Subject: [PATCH 1897/2686] Run update.sh --- buildpack-deps/README.md | 6 ++++++ dart/README.md | 4 ++-- pypy/README.md | 16 ++++++++++++++++ python/README.md | 36 ++++++++++++++++++------------------ 4 files changed, 42 insertions(+), 20 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index c0b30aeea337..8497e09e76f6 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -72,6 +72,12 @@ WARNING: - [`oracular`, `24.10`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/Dockerfile) +- [`plucky-curl`, `25.04-curl`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/curl/Dockerfile) + +- [`plucky-scm`, `25.04-scm`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/scm/Dockerfile) + +- [`plucky`, `25.04`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/dart/README.md b/dart/README.md index caec11fb6731..c2170cfe2a2a 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.6.2-sdk`, `3.6-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.6.2`, `3.6`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d836ed2638db8f473f51658cdf415ed0f67d42d9/stable/bookworm/Dockerfile) +- [`3.7.0-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.0`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d114946ad0c5fa6feb95d0d3133d5acd66d322a7/stable/bookworm/Dockerfile) -- [`3.7.0-323.3.beta-sdk`, `beta-sdk`, `3.7.0-323.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d836ed2638db8f473f51658cdf415ed0f67d42d9/beta/bookworm/Dockerfile) +- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d114946ad0c5fa6feb95d0d3133d5acd66d322a7/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 6d5ee314303c..78063b6a8590 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`3.11-7.3.18-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/bookworm/Dockerfile) + +- [`3.11-7.3.18-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/slim-bookworm/Dockerfile) + +- [`3.11-7.3.18-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`3.11-7.3.18-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`3.11-7.3.18-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.18-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.18-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) - [`3.10-7.3.18-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.18-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bookworm/Dockerfile) @@ -58,6 +68,12 @@ WARNING: ## Shared Tags +- `3.11-7.3.18`, `3.11-7.3`, `3.11-7`, `3.11`, `3.11-7.3.18-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: + + - [`3.11-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) + - `3.10-7.3.18`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.18`, `3-7.3`, `3-7`, `3`, `latest`: - [`3.10-7.3.18-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) diff --git a/python/README.md b/python/README.md index 2c1c2570d263..21b68cbf3eef 100644 --- a/python/README.md +++ b/python/README.md @@ -28,23 +28,23 @@ WARNING: ## Simple Tags -- [`3.14.0a4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a5-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a5-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a5-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a5-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a5-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a4-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a5-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a5-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a4-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a5-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0a5-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0a4-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a5-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a4-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a5-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.2-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) @@ -120,18 +120,18 @@ WARNING: ## Shared Tags -- `3.14.0a4`, `3.14-rc`: +- `3.14.0a5`, `3.14-rc`: - - [`3.14.0a4-bookworm`](https://github.com/docker-library/python/blob/3186ee4081313711105e1e30a163248db67d5618/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a5-bookworm`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a4-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a5-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3a0299db7160774f6927c944acc9485730b13015/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a4-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bb5f4bc94265f7e9a0d116e1974e2926476baf0/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.2`, `3.13`, `3`, `latest`: From 4e710fd36fd215cf453d079ad851346ebcfb608c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Feb 2025 14:09:58 -0800 Subject: [PATCH 1898/2686] Run update.sh --- mageia/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index e0233e538582..846f8bd2710a 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/92acc83ab9be0351a7fa5a29d50e7bfe3372a0e1/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a10bfc339af146998ead45d720186eea25f5c990/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/92acc83ab9be0351a7fa5a29d50e7bfe3372a0e1/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) From 03afe31150eb341f555994dc26d1325197ec81ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Feb 2025 15:09:35 -0800 Subject: [PATCH 1899/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- python/README.md | 14 +++++++------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docker/README.md b/docker/README.md index b9dc328ced31..ad472d17160e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`28.0.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/cli/Dockerfile) +- [`28.0.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/cli/Dockerfile) - [`28.0.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.1-dind-alpine3.21`, `28.0.0-rc.1`, `28-rc`, `rc`, `28.0.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind/Dockerfile) - [`28.0.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind-rootless/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.0.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-1809/Dockerfile) -- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/cli/Dockerfile) +- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/cli/Dockerfile) - [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/fbb79dd2512681b42f6f0a3a82543c29640b85ce/27/dind/Dockerfile) - [`27.5.1-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind-rootless/Dockerfile) -- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2025/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2025/Dockerfile) -- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2022/Dockerfile) +- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2022/Dockerfile) -- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-1809/Dockerfile) +- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-1809/Dockerfile) - `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: - - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2025/Dockerfile) - - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9af9a06de75a33816897ae7285fcb5104c5d9f83/27/windows/windowsservercore-1809/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2025/Dockerfile) + - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2022/Dockerfile) + - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 21b68cbf3eef..3adfc2d36f4f 100644 --- a/python/README.md +++ b/python/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`3.14.0a5-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a5-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a5-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a5-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a5-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a5-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a5-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a5-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a5-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a5-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a5-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a5-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a5-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a5-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a5-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a5-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/alpine3.20/Dockerfile) - [`3.14.0a5-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -122,7 +122,7 @@ WARNING: - `3.14.0a5`, `3.14-rc`: - - [`3.14.0a5-bookworm`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a5-bookworm`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bookworm/Dockerfile) - [`3.14.0a5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) From 634412afbb5ae23f54257b806f17a84906c22128 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Feb 2025 16:09:37 -0800 Subject: [PATCH 1900/2686] Run update.sh --- pypy/README.md | 23 +++++++++++++++-------- rabbitmq/README.md | 4 ++-- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/pypy/README.md b/pypy/README.md index 78063b6a8590..cf3d21d5d553 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -30,7 +30,7 @@ WARNING: - [`3.11-7.3.18-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/bookworm/Dockerfile) -- [`3.11-7.3.18-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/slim-bookworm/Dockerfile) +- [`3.11-7.3.18-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.18-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/slim-bookworm/Dockerfile) - [`3.11-7.3.18-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) @@ -40,11 +40,11 @@ WARNING: - [`3.10-7.3.18-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.18-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) -- [`3.10-7.3.18-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.18-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.18-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.18-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.18-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.18-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bookworm/Dockerfile) - [`3.10-7.3.18-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.18-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) -- [`3.10-7.3.18-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.18-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.18-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.18-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.18-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.18-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bullseye/Dockerfile) - [`3.10-7.3.18-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.18-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) @@ -54,11 +54,11 @@ WARNING: - [`2.7-7.3.18-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.18-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bookworm/Dockerfile) -- [`2.7-7.3.18-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.18-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.18-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.18-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.18-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.18-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bookworm/Dockerfile) - [`2.7-7.3.18-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.18-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bullseye/Dockerfile) -- [`2.7-7.3.18-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.18-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.18-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.18-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.18-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.18-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bullseye/Dockerfile) - [`2.7-7.3.18-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.18-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) @@ -68,7 +68,14 @@ WARNING: ## Shared Tags -- `3.11-7.3.18`, `3.11-7.3`, `3.11-7`, `3.11`, `3.11-7.3.18-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: +- `3.11-7.3.18`, `3.11-7.3`, `3.11-7`, `3.11`: + + - [`3.11-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/bookworm/Dockerfile) + - [`3.11-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) + +- `3.11-7.3.18-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: - [`3.11-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.11-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) @@ -76,7 +83,7 @@ WARNING: - `3.10-7.3.18`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.18`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.18-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) + - [`3.10-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) - [`3.10-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.10-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.10-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) @@ -89,7 +96,7 @@ WARNING: - `2.7-7.3.18`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.18`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.18-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bullseye/Dockerfile) + - [`2.7-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bookworm/Dockerfile) - [`2.7-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - [`2.7-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9037a40b0181..152bfe3c061b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -40,11 +40,11 @@ WARNING: - [`4.0.6-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/32ff17343cd6b6756094d43120babb089b55d13c/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/7c0cf4faec0434cebe92606f05241a104c79b4b6/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/32ff17343cd6b6756094d43120babb089b55d13c/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/7c0cf4faec0434cebe92606f05241a104c79b4b6/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From dde71c0d437a4b5dfc09f86228beb489ec7874a8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Feb 2025 07:09:38 -0800 Subject: [PATCH 1901/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 5d0841545d0f..dbe5d3a40f46 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`23-bullseye-slim`, `23.7-bullseye-slim`, `23.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.13-alpine3.20`, `22.13.1-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.13-alpine`, `22.13-alpine3.21`, `22.13.1-alpine`, `22.13.1-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.14-alpine`, `22.14-alpine3.21`, `22.14.0-alpine`, `22.14.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.13`, `22.13-bookworm`, `22.13.1`, `22.13.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.14`, `22.14-bookworm`, `22.14.0`, `22.14.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.13-bookworm-slim`, `22.13-slim`, `22.13.1-bookworm-slim`, `22.13.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.14-bookworm-slim`, `22.14-slim`, `22.14.0-bookworm-slim`, `22.14.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.13-bullseye`, `22.13.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.14-bullseye`, `22.14.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.13-bullseye-slim`, `22.13.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.14-bullseye-slim`, `22.14.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye-slim/Dockerfile) - [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.3-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/alpine3.20/Dockerfile) From ebaf519ce428511233007b8ddc564f31322a6826 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Feb 2025 13:09:33 -0800 Subject: [PATCH 1902/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4aba485ae04f..b8e11ada52e9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.4`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1d106a96893d0ec6151cfc58730ed25de219a3db/5/debian/Dockerfile) +- [`5.109.5`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/997c9f4e3ff2fa46c08f60bc6b16f544bd42cd7a/5/debian/Dockerfile) -- [`5.109.4-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1d106a96893d0ec6151cfc58730ed25de219a3db/5/alpine/Dockerfile) +- [`5.109.5-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/997c9f4e3ff2fa46c08f60bc6b16f544bd42cd7a/5/alpine/Dockerfile) # Quick reference (cont.) From c0ed096429c2ec930188968b421238163936b27c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Feb 2025 14:10:44 -0800 Subject: [PATCH 1903/2686] Run update.sh --- node/README.md | 12 ++++++------ postgres/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/node/README.md b/node/README.md index dbe5d3a40f46..77a7b09a7373 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.7-alpine3.20`, `23.7.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.8-alpine3.20`, `23.8.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.7-alpine`, `23.7-alpine3.21`, `23.7.0-alpine`, `23.7.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.8-alpine`, `23.8-alpine3.21`, `23.8.0-alpine`, `23.8.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.7`, `23.7-bookworm`, `23.7.0`, `23.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.8`, `23.8-bookworm`, `23.8.0`, `23.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.7-bookworm-slim`, `23.7-slim`, `23.7.0-bookworm-slim`, `23.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.8-bookworm-slim`, `23.8-slim`, `23.8.0-bookworm-slim`, `23.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.7-bullseye`, `23.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.8-bullseye`, `23.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.7-bullseye-slim`, `23.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a3e68b35ee4441d2c11761e0cdd76d313be88caa/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.8-bullseye-slim`, `23.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index ea380e8ca967..c095f8599f93 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.2`, `17`, `latest`, `17.2-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/bookworm/Dockerfile) +- [`17.3`, `17`, `latest`, `17.3-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/bookworm/Dockerfile) -- [`17.2-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/bullseye/Dockerfile) +- [`17.3-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/bullseye/Dockerfile) -- [`17.2-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.2-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/alpine3.21/Dockerfile) +- [`17.3-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.3-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/alpine3.21/Dockerfile) -- [`17.2-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/17/alpine3.20/Dockerfile) +- [`17.3-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/alpine3.20/Dockerfile) -- [`16.6`, `16`, `16.6-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/bookworm/Dockerfile) +- [`16.7`, `16`, `16.7-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/bookworm/Dockerfile) -- [`16.6-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/bullseye/Dockerfile) +- [`16.7-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/bullseye/Dockerfile) -- [`16.6-alpine3.21`, `16-alpine3.21`, `16.6-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/alpine3.21/Dockerfile) +- [`16.7-alpine3.21`, `16-alpine3.21`, `16.7-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/alpine3.21/Dockerfile) -- [`16.6-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/16/alpine3.20/Dockerfile) +- [`16.7-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/alpine3.20/Dockerfile) -- [`15.10`, `15`, `15.10-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/bookworm/Dockerfile) +- [`15.11`, `15`, `15.11-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/bookworm/Dockerfile) -- [`15.10-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/bullseye/Dockerfile) +- [`15.11-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/bullseye/Dockerfile) -- [`15.10-alpine3.21`, `15-alpine3.21`, `15.10-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/alpine3.21/Dockerfile) +- [`15.11-alpine3.21`, `15-alpine3.21`, `15.11-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/alpine3.21/Dockerfile) -- [`15.10-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/15/alpine3.20/Dockerfile) +- [`15.11-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/alpine3.20/Dockerfile) -- [`14.15`, `14`, `14.15-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/bookworm/Dockerfile) +- [`14.16`, `14`, `14.16-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/bookworm/Dockerfile) -- [`14.15-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/bullseye/Dockerfile) +- [`14.16-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/bullseye/Dockerfile) -- [`14.15-alpine3.21`, `14-alpine3.21`, `14.15-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/alpine3.21/Dockerfile) +- [`14.16-alpine3.21`, `14-alpine3.21`, `14.16-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/alpine3.21/Dockerfile) -- [`14.15-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/14/alpine3.20/Dockerfile) +- [`14.16-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/alpine3.20/Dockerfile) -- [`13.18`, `13`, `13.18-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/bookworm/Dockerfile) +- [`13.19`, `13`, `13.19-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/bookworm/Dockerfile) -- [`13.18-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/bullseye/Dockerfile) +- [`13.19-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/bullseye/Dockerfile) -- [`13.18-alpine3.21`, `13-alpine3.21`, `13.18-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/alpine3.21/Dockerfile) +- [`13.19-alpine3.21`, `13-alpine3.21`, `13.19-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/alpine3.21/Dockerfile) -- [`13.18-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/042d8d043fed77e0e09b6fcda0991bca9e8664e3/13/alpine3.20/Dockerfile) +- [`13.19-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/alpine3.20/Dockerfile) # Quick reference (cont.) From a8f4877c91f87c15b4fc01b684b003056e9a200b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Feb 2025 15:10:47 -0800 Subject: [PATCH 1904/2686] Run update.sh --- nextcloud/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index a1e4ce6311b3..13c2eb33d52a 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.14-apache`, `28.0-apache`, `28-apache`, `28.0.14`, `28.0`, `28`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/apache/Dockerfile) +- [`29.0.12-apache`, `29.0-apache`, `29-apache`, `29.0.12`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/apache/Dockerfile) -- [`28.0.14-fpm`, `28.0-fpm`, `28-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/fpm/Dockerfile) +- [`29.0.12-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/fpm/Dockerfile) -- [`28.0.14-fpm-alpine`, `28.0-fpm-alpine`, `28-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/28/fpm-alpine/Dockerfile) +- [`29.0.12-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/fpm-alpine/Dockerfile) -- [`29.0.11-apache`, `29.0-apache`, `29-apache`, `29.0.11`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/apache/Dockerfile) +- [`30.0.6-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.6`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/apache/Dockerfile) -- [`29.0.11-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/fpm/Dockerfile) +- [`30.0.6-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/fpm/Dockerfile) -- [`29.0.11-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/29/fpm-alpine/Dockerfile) - -- [`30.0.5-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.5`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/apache/Dockerfile) - -- [`30.0.5-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/fpm/Dockerfile) - -- [`30.0.5-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/a43854ae5c7c6eeb327d1fc82d020d7ea21bbb33/30/fpm-alpine/Dockerfile) +- [`30.0.6-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7bb5362f0cc17f41901ce16a972d78651c3573c9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Feb 2025 17:09:37 -0800 Subject: [PATCH 1905/2686] Run update.sh --- oraclelinux/README.md | 18 +++---- php/README.md | 112 +++++++++++------------------------------- 2 files changed, 37 insertions(+), 93 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 7e764ae4c549..73d3f891b067 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/8d25279f509bc37b1b79ec83e4dbe812bdc76831/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 61a0e29a0c19..7cf89226fee2 100644 --- a/php/README.md +++ b/php/README.md @@ -24,117 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.4RC2-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.4RC2-bookworm`, `8.4-rc-bookworm`, `8.4.4RC2-cli`, `8.4-rc-cli`, `8.4.4RC2`, `8.4-rc`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.4-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.4-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.4-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.4`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/cli/Dockerfile) -- [`8.4.4RC2-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.4RC2-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.4-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.4-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/apache/Dockerfile) -- [`8.4.4RC2-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.4RC2-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.4-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.4-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/fpm/Dockerfile) -- [`8.4.4RC2-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.4RC2-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.4-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.4-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/zts/Dockerfile) -- [`8.4.4RC2-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.4RC2-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.4-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.4-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/cli/Dockerfile) -- [`8.4.4RC2-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.4-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/apache/Dockerfile) -- [`8.4.4RC2-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.4-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/fpm/Dockerfile) -- [`8.4.4RC2-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.4-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/zts/Dockerfile) -- [`8.4.4RC2-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.4RC2-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.4RC2-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.4RC2-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.4-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.4-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.4-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.4-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.4RC2-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.4RC2-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.4-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.4-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.4RC2-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.4RC2-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.4-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.4-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.4RC2-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.4RC2-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.4-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.4-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.4RC2-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.4-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.4RC2-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/c3b8cd6b2f30e12902cee1353f35d4c7ef161830/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.4-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.3-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.3-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.3-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.3`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/cli/Dockerfile) +- [`8.3.17-cli-bookworm`, `8.3-cli-bookworm`, `8.3.17-bookworm`, `8.3-bookworm`, `8.3.17-cli`, `8.3-cli`, `8.3.17`, `8.3`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/cli/Dockerfile) -- [`8.4.3-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.3-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/apache/Dockerfile) +- [`8.3.17-apache-bookworm`, `8.3-apache-bookworm`, `8.3.17-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/apache/Dockerfile) -- [`8.4.3-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.3-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/fpm/Dockerfile) +- [`8.3.17-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.17-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/fpm/Dockerfile) -- [`8.4.3-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.3-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bookworm/zts/Dockerfile) +- [`8.3.17-zts-bookworm`, `8.3-zts-bookworm`, `8.3.17-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/zts/Dockerfile) -- [`8.4.3-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.3-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/cli/Dockerfile) +- [`8.3.17-cli-bullseye`, `8.3-cli-bullseye`, `8.3.17-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/cli/Dockerfile) -- [`8.4.3-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/apache/Dockerfile) +- [`8.3.17-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/apache/Dockerfile) -- [`8.4.3-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/fpm/Dockerfile) +- [`8.3.17-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/fpm/Dockerfile) -- [`8.4.3-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/bullseye/zts/Dockerfile) +- [`8.3.17-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/zts/Dockerfile) -- [`8.4.3-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.3-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.3-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.3-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.17-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.17-alpine3.21`, `8.3-alpine3.21`, `8.3.17-cli-alpine`, `8.3-cli-alpine`, `8.3.17-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.3-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.3-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.17-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.17-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.3-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.3-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.17-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.17-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/zts/Dockerfile) -- [`8.4.3-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.3-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/cli/Dockerfile) +- [`8.3.17-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.17-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/cli/Dockerfile) -- [`8.4.3-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/fpm/Dockerfile) +- [`8.3.17-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/fpm/Dockerfile) -- [`8.4.3-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/d9293b8297781e4e5d81a580df61acc71649eec3/8.4/alpine3.20/zts/Dockerfile) - -- [`8.3.17RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.17RC1-bookworm`, `8.3-rc-bookworm`, `8.3.17RC1-cli`, `8.3-rc-cli`, `8.3.17RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/cli/Dockerfile) - -- [`8.3.17RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.17RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/apache/Dockerfile) - -- [`8.3.17RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.17RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/fpm/Dockerfile) - -- [`8.3.17RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.17RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bookworm/zts/Dockerfile) - -- [`8.3.17RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.17RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/cli/Dockerfile) - -- [`8.3.17RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/apache/Dockerfile) - -- [`8.3.17RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/fpm/Dockerfile) - -- [`8.3.17RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/bullseye/zts/Dockerfile) - -- [`8.3.17RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.17RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.17RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.17RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/cli/Dockerfile) - -- [`8.3.17RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.17RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/fpm/Dockerfile) - -- [`8.3.17RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.17RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.17RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.17RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/cli/Dockerfile) - -- [`8.3.17RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/fpm/Dockerfile) - -- [`8.3.17RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/4664d78ddb3522a43b27919449f1c8601544e5b8/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.16-cli-bookworm`, `8.3-cli-bookworm`, `8.3.16-bookworm`, `8.3-bookworm`, `8.3.16-cli`, `8.3-cli`, `8.3.16`, `8.3`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/cli/Dockerfile) - -- [`8.3.16-apache-bookworm`, `8.3-apache-bookworm`, `8.3.16-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/apache/Dockerfile) - -- [`8.3.16-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.16-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.16-zts-bookworm`, `8.3-zts-bookworm`, `8.3.16-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bookworm/zts/Dockerfile) - -- [`8.3.16-cli-bullseye`, `8.3-cli-bullseye`, `8.3.16-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/cli/Dockerfile) - -- [`8.3.16-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/apache/Dockerfile) - -- [`8.3.16-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.16-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/bullseye/zts/Dockerfile) - -- [`8.3.16-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.16-alpine3.21`, `8.3-alpine3.21`, `8.3.16-cli-alpine`, `8.3-cli-alpine`, `8.3.16-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.16-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.16-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.16-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.16-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.16-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.16-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.16-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.16-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/cb522cdc4da1143b550aac8aaaf9306fa24a1f8a/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.17-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/zts/Dockerfile) - [`8.2.27-cli-bookworm`, `8.2-cli-bookworm`, `8.2.27-bookworm`, `8.2-bookworm`, `8.2.27-cli`, `8.2-cli`, `8.2.27`, `8.2`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/cli/Dockerfile) From f6e7600c29c43f03d32ca4f0a956ae5ca854c6dd Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Le Duigou Date: Fri, 14 Feb 2025 15:23:08 +0000 Subject: [PATCH 1906/2686] Update to Go 1.24 --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index 071fd54bebfb..7797caf5a0f7 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.23 +FROM %%IMAGE%%:1.24 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.23 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.24 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.23 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From 2391b6cd19dc77741dbf9107dc10d0eb984d7544 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 10:09:34 -0800 Subject: [PATCH 1907/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index d58b17f1ba8c..1b44125cf19b 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20250108`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c1f1de232c970df2285c03050ab3747b8563164f/x86_64/Dockerfile) -- [`3.21.2`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/28413e472a7192492de374a257c33d2802ba163d/x86_64/Dockerfile) +- [`3.21.3`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/17fe3d1e2d2cbf54d745139eab749c252e35b883/x86_64/Dockerfile) -- [`3.20.5`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/e5b6428f2a04eaf7f6f6c51232c0bfb6062c9bfe/x86_64/Dockerfile) +- [`3.20.6`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/a0db1d60e576114995a27356e6dda8145293d6f8/x86_64/Dockerfile) -- [`3.19.6`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/da0e46144e764925f67d80a2315c17208236a2ae/x86_64/Dockerfile) +- [`3.19.7`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7cfdb838c6f47bb3845c25f1674a9c3a44d8bafb/x86_64/Dockerfile) -- [`3.18.11`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/4283069ff594a823a2923e4d1aa3980d829f0891/x86_64/Dockerfile) +- [`3.18.12`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/f92f1c2b3b7025f08b05dc11b70534568a973903/x86_64/Dockerfile) # Quick reference (cont.) From ab21d1a97fd350bf15f1884b13c67e454fac1e22 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 12:09:31 -0800 Subject: [PATCH 1908/2686] Run update.sh --- arangodb/README.md | 2 +- mariadb/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index e436ed2d1fb8..20816d96c360 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.12`](https://github.com/arangodb/arangodb-docker/blob/de481d822b675af548d17ec1a448fe7dbee97641/alpine/3.11.12_alpine-3.18/Dockerfile) +- [`3.11`, `3.11.13`](https://github.com/arangodb/arangodb-docker/blob/52a0ac78f9cbae17665743bfc1e5b7c75329d268/alpine/3.11.13/Dockerfile) - [`3.12`, `3.12.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/1c6635050356d0645ed247ee69f3736007a54e27/alpine/3.12.4/Dockerfile) diff --git a/mariadb/README.md b/mariadb/README.md index 15f1af2fb565..788042ccb40a 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,13 +26,13 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.7.1-ubi9-rc`, `11.7-ubi9-rc`, `11.7.1-ubi-rc`, `11.7-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/a6b360fc45b1a8fcd63b87ab69d4ce43566a7c06/11.7-ubi/Dockerfile) +- [`11.8.1-ubi9-rc`, `11.8-ubi9-rc`, `11.8.1-ubi-rc`, `11.8-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/2d5103917774c4c53ec6bf3c6fdfc7b210e85690/11.8-ubi/Dockerfile) -- [`11.7.1-noble-rc`, `11.7-noble-rc`, `11.7.1-rc`, `11.7-rc`](https://github.com/MariaDB/mariadb-docker/blob/a6b360fc45b1a8fcd63b87ab69d4ce43566a7c06/11.7/Dockerfile) +- [`11.8.1-noble-rc`, `11.8-noble-rc`, `11.8.1-rc`, `11.8-rc`](https://github.com/MariaDB/mariadb-docker/blob/2d5103917774c4c53ec6bf3c6fdfc7b210e85690/11.8/Dockerfile) -- [`11.6.2-ubi9`, `11.6-ubi9`, `11-ubi9`, `11.6.2-ubi`, `11.6-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6-ubi/Dockerfile) +- [`11.7.2-ubi9`, `11.7-ubi9`, `11-ubi9`, `11.7.2-ubi`, `11.7-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/853447019725b35685d5ec3c007096a266399bea/11.7-ubi/Dockerfile) -- [`11.6.2-noble`, `11.6-noble`, `11-noble`, `noble`, `11.6.2`, `11.6`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/292b81d08eaab23d8bd501171e570ea0636b0b82/11.6/Dockerfile) +- [`11.7.2-noble`, `11.7-noble`, `11-noble`, `noble`, `11.7.2`, `11.7`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/853447019725b35685d5ec3c007096a266399bea/11.7/Dockerfile) - [`11.4.5-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.5-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/11.4-ubi/Dockerfile) From f5355217ff3c8417b95cde2f6c5edc97bd2a198a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 13:09:45 -0800 Subject: [PATCH 1909/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 100 ++++++++++++++++++++-------------- 1 file changed, 60 insertions(+), 40 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 95c7c8d28597..fcad4113343a 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,107 @@ WARNING: ## Simple Tags -- [`open-8u432-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u432-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u432-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u432-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.25_9-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.13_11-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.5_11-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.1_11-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-21.0.6_7-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-21.0.6_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/focal/Dockerfile.open.releases.full) + +- [`open-21.0.6_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-21.0.6_7-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jdk-noble`, `open-23-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/focal/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-23.0.2_7-jre-noble`, `open-23-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u432-b06-jdk`, `open-8-jdk`: +- `open-8u442-b06-jdk`, `open-8-jdk`: - - [`open-8u432-b06-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u442-b06-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-8u432-b06-jre`, `open-8-jre`: +- `open-8u442-b06-jre`, `open-8-jre`: - - [`open-8u432-b06-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-8u442-b06-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.25_9-jdk`, `open-11-jdk`: +- `open-11.0.26_4-jdk`, `open-11-jdk`: - - [`open-11.0.25_9-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.26_4-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.25_9-jre`, `open-11-jre`: +- `open-11.0.26_4-jre`, `open-11-jre`: - - [`open-11.0.25_9-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-11.0.26_4-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.13_11-jdk`, `open-17-jdk`: +- `open-17.0.14_7-jdk`, `open-17-jdk`: - - [`open-17.0.13_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.14_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.13_11-jre`, `open-17-jre`: +- `open-17.0.14_7-jre`, `open-17-jre`: - - [`open-17.0.13_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-17.0.14_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.5_11-jdk`, `open-21-jdk`: +- `open-21.0.6_7-jdk`, `open-21-jdk`: - - [`open-21.0.5_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.6_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.5_11-jre`, `open-21-jre`: +- `open-21.0.6_7-jre`, `open-21-jre`: - - [`open-21.0.5_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-21.0.6_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-23.0.1_11-jdk`, `open-23-jdk`: +- `open-23.0.2_7-jdk`, `open-23-jdk`: - - [`open-23.0.1_11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.2_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-23.0.1_11-jre`, `open-23-jre`: +- `open-23.0.2_7-jre`, `open-23-jre`: - - [`open-23.0.1_11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b13bc45629a8e3892f61159b4fb8737c20df85d2/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) + - [`open-23.0.2_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) From b7662075c34311f394b66b9dc149919d08070c2c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 15:09:32 -0800 Subject: [PATCH 1910/2686] Run update.sh --- ghost/README.md | 4 ++-- golang/README.md | 10 ++++----- openjdk/README.md | 50 +++++++++++++++++++++---------------------- oraclelinux/README.md | 18 ++++++++-------- 4 files changed, 41 insertions(+), 41 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b8e11ada52e9..891a195bb107 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.5`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/997c9f4e3ff2fa46c08f60bc6b16f544bd42cd7a/5/debian/Dockerfile) +- [`5.109.6`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6232bd91c2cbb7721466a8f1e8f0c797a0c29df0/5/debian/Dockerfile) -- [`5.109.5-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/997c9f4e3ff2fa46c08f60bc6b16f544bd42cd7a/5/alpine/Dockerfile) +- [`5.109.6-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6232bd91c2cbb7721466a8f1e8f0c797a0c29df0/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index c5cf9b343792..e3c0467d5685 100644 --- a/golang/README.md +++ b/golang/README.md @@ -144,7 +144,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.23 +FROM golang:1.24 WORKDIR /usr/src/app @@ -170,13 +170,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 make ``` ## Cross-compile your app inside the Docker container @@ -184,13 +184,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.23 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.24 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.23 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH diff --git a/openjdk/README.md b/openjdk/README.md index 3ff138eb9526..34d02a41b4e7 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,29 +42,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-9-jdk-oraclelinux9`, `25-ea-9-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-9-jdk-oracle`, `25-ea-9-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-10-jdk-oraclelinux9`, `25-ea-10-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-10-jdk-oracle`, `25-ea-10-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-9-jdk-oraclelinux8`, `25-ea-9-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-10-jdk-oraclelinux8`, `25-ea-10-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-9-jdk-bookworm`, `25-ea-9-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/bookworm/Dockerfile) +- [`25-ea-10-jdk-bookworm`, `25-ea-10-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/bookworm/Dockerfile) -- [`25-ea-9-jdk-slim-bookworm`, `25-ea-9-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-9-jdk-slim`, `25-ea-9-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-10-jdk-slim-bookworm`, `25-ea-10-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-10-jdk-slim`, `25-ea-10-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-9-jdk-bullseye`, `25-ea-9-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/bullseye/Dockerfile) +- [`25-ea-10-jdk-bullseye`, `25-ea-10-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/bullseye/Dockerfile) -- [`25-ea-9-jdk-slim-bullseye`, `25-ea-9-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-10-jdk-slim-bullseye`, `25-ea-10-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-9-jdk-windowsservercore-ltsc2025`, `25-ea-9-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-10-jdk-windowsservercore-ltsc2025`, `25-ea-10-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-9-jdk-windowsservercore-ltsc2022`, `25-ea-9-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-10-jdk-windowsservercore-ltsc2022`, `25-ea-10-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-9-jdk-windowsservercore-1809`, `25-ea-9-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-10-jdk-windowsservercore-1809`, `25-ea-10-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-9-jdk-nanoserver-ltsc2025`, `25-ea-9-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-10-jdk-nanoserver-ltsc2025`, `25-ea-10-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-9-jdk-nanoserver-ltsc2022`, `25-ea-9-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-10-jdk-nanoserver-ltsc2022`, `25-ea-10-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-9-jdk-nanoserver-1809`, `25-ea-9-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-10-jdk-nanoserver-1809`, `25-ea-10-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) @@ -92,24 +92,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-9-jdk`, `25-ea-9`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-10-jdk`, `25-ea-10`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-9-jdk-windowsservercore`, `25-ea-9-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-10-jdk-windowsservercore`, `25-ea-10-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-9-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-9-jdk-nanoserver`, `25-ea-9-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-10-jdk-nanoserver`, `25-ea-10-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-9-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-9-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-9-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e79fff4246e36766d3f90ad8466cdeb81f57e065/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-10-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-10-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 73d3f891b067..eb93dbd74dc6 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d06ec01e156897788f9daafc217112cff5ff140f/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7-slim-fips/Dockerfile) # Quick reference (cont.) From f2388171cec35f51f013cd2b83955635c0e22ed1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 16:09:34 -0800 Subject: [PATCH 1911/2686] Run update.sh --- mongo/README.md | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 18b42fdbe425..6d650f44d0b5 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.5-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/fe2a707f3b58ac1a210100ef6f316fdcd9ccd98b/8.0-rc/Dockerfile) +- [`8.0.5-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/5958f5e55353034428ab1cae0ecdbe285c90f258/8.0-rc/Dockerfile) - [`8.0.4-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) @@ -42,6 +42,18 @@ WARNING: - [`8.0.4-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.17-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/Dockerfile) + +- [`7.0.17-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.17-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.17-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`7.0.17-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.17-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.16-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) - [`7.0.16-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -80,9 +92,9 @@ WARNING: ## Shared Tags -- `8.0.5-rc1`, `8.0-rc`: +- `8.0.5-rc2`, `8.0-rc`: - - [`8.0.5-rc1-noble`](https://github.com/docker-library/mongo/blob/fe2a707f3b58ac1a210100ef6f316fdcd9ccd98b/8.0-rc/Dockerfile) + - [`8.0.5-rc2-noble`](https://github.com/docker-library/mongo/blob/5958f5e55353034428ab1cae0ecdbe285c90f258/8.0-rc/Dockerfile) - `8.0.4`, `8.0`, `8`, `latest`: @@ -102,6 +114,24 @@ WARNING: - [`8.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) +- `7.0.17-rc0`, `7.0-rc`: + + - [`7.0.17-rc0-jammy`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/Dockerfile) + - [`7.0.17-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.17-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.17-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.17-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.17-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.17-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.16`, `7.0`, `7`: - [`7.0.16-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) From d2f258d37122b8ce1021b3f254244738a8f6c8bd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Feb 2025 18:09:44 -0800 Subject: [PATCH 1912/2686] Run update.sh --- golang/README.md | 12 ++++++++++++ ruby/README.md | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 36 insertions(+), 24 deletions(-) diff --git a/golang/README.md b/golang/README.md index e3c0467d5685..bb178cbc5ac9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,6 +68,14 @@ WARNING: - [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) +- [`tip-20250209-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bookworm/Dockerfile) + +- [`tip-20250209-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bullseye/Dockerfile) + +- [`tip-20250209-alpine3.21`, `tip-alpine3.21`, `tip-20250209-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/alpine3.21/Dockerfile) + +- [`tip-20250209-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/alpine3.20/Dockerfile) + ## Shared Tags - `1.24.0`, `1.24`, `1`, `latest`: @@ -108,6 +116,10 @@ WARNING: - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) +- `tip-20250209`, `tip`: + + - [`tip-20250209-bookworm`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bookworm/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/ruby/README.md b/ruby/README.md index f101cd1625fc..de5a8e9e48a8 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.1-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.1`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/bookworm/Dockerfile) +- [`3.4.2-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.2`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/bookworm/Dockerfile) -- [`3.4.1-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.1-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/slim-bookworm/Dockerfile) +- [`3.4.2-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.2-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/slim-bookworm/Dockerfile) -- [`3.4.1-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/bullseye/Dockerfile) +- [`3.4.2-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/bullseye/Dockerfile) -- [`3.4.1-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/slim-bullseye/Dockerfile) +- [`3.4.2-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/slim-bullseye/Dockerfile) -- [`3.4.1-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.1-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/alpine3.21/Dockerfile) +- [`3.4.2-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.2-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/alpine3.21/Dockerfile) -- [`3.4.1-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.4/alpine3.20/Dockerfile) +- [`3.4.2-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/alpine3.20/Dockerfile) -- [`3.3.7-bookworm`, `3.3-bookworm`, `3.3.7`, `3.3`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/bookworm/Dockerfile) +- [`3.3.7-bookworm`, `3.3-bookworm`, `3.3.7`, `3.3`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/bookworm/Dockerfile) -- [`3.3.7-slim-bookworm`, `3.3-slim-bookworm`, `3.3.7-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/slim-bookworm/Dockerfile) +- [`3.3.7-slim-bookworm`, `3.3-slim-bookworm`, `3.3.7-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/slim-bookworm/Dockerfile) -- [`3.3.7-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/bullseye/Dockerfile) +- [`3.3.7-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/bullseye/Dockerfile) -- [`3.3.7-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/slim-bullseye/Dockerfile) +- [`3.3.7-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/slim-bullseye/Dockerfile) -- [`3.3.7-alpine3.21`, `3.3-alpine3.21`, `3.3.7-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/alpine3.21/Dockerfile) +- [`3.3.7-alpine3.21`, `3.3-alpine3.21`, `3.3.7-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/alpine3.21/Dockerfile) -- [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/59bb4e05d063fe3fbf2ec0fc96d226a8e7c4f41d/3.3/alpine3.20/Dockerfile) +- [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/alpine3.20/Dockerfile) -- [`3.2.7-bookworm`, `3.2-bookworm`, `3.2.7`, `3.2`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/bookworm/Dockerfile) +- [`3.2.7-bookworm`, `3.2-bookworm`, `3.2.7`, `3.2`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/bookworm/Dockerfile) -- [`3.2.7-slim-bookworm`, `3.2-slim-bookworm`, `3.2.7-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/slim-bookworm/Dockerfile) +- [`3.2.7-slim-bookworm`, `3.2-slim-bookworm`, `3.2.7-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/slim-bookworm/Dockerfile) -- [`3.2.7-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/bullseye/Dockerfile) +- [`3.2.7-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/bullseye/Dockerfile) -- [`3.2.7-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/slim-bullseye/Dockerfile) +- [`3.2.7-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/slim-bullseye/Dockerfile) -- [`3.2.7-alpine3.21`, `3.2-alpine3.21`, `3.2.7-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/alpine3.21/Dockerfile) +- [`3.2.7-alpine3.21`, `3.2-alpine3.21`, `3.2.7-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/alpine3.21/Dockerfile) -- [`3.2.7-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/3a813c18eea9fa2060e02d238e39382b15618995/3.2/alpine3.20/Dockerfile) +- [`3.2.7-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/alpine3.20/Dockerfile) -- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/bookworm/Dockerfile) +- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/slim-bookworm/Dockerfile) +- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/slim-bookworm/Dockerfile) -- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/bullseye/Dockerfile) +- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/slim-bullseye/Dockerfile) +- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/alpine3.21/Dockerfile) +- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/1ea0c595e6a6e477a66142b8ed40c82c2af3a28a/3.1/alpine3.20/Dockerfile) +- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) From 1944c180122aacd74637a15cfa50e434be718493 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 11:10:06 -0800 Subject: [PATCH 1913/2686] Run update.sh --- aerospike/README.md | 4 ++-- flink/README.md | 18 ++++++------------ 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 70a20b08dcc9..d6d00b8d5464 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.2`, `ee-8.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/c240b8aebb50e966a17dc27d8a88335992d70e3f/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.3`, `ee-8.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8db673742f3422282812f2fcb03eeea71199d276/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.2`, `ce-8.0.0.2_1`](https://github.com/aerospike/aerospike-server.docker/blob/c240b8aebb50e966a17dc27d8a88335992d70e3f/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.3`, `ce-8.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8db673742f3422282812f2fcb03eeea71199d276/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 513b0bcaf179..07cf5105d4a0 100644 --- a/flink/README.md +++ b/flink/README.md @@ -28,23 +28,17 @@ WARNING: - [`2.0-preview1-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0-preview1-scala_2.12`, `2.0-scala_2.12`, `2.0-preview1-java11`, `2.0-java11`, `2.0-preview1`, `2.0`](https://github.com/apache/flink-docker/blob/3a8ba480ff327674b0a090c6ce417f0437576e92/2.0/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.20.0-scala_2.12-java8`, `1.20-scala_2.12-java8`, `scala_2.12-java8`, `1.20.0-java8`, `1.20-java8`, `java8`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.20.1-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.1-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.20.0-scala_2.12-java17`, `1.20-scala_2.12-java17`, `scala_2.12-java17`, `1.20.0-java17`, `1.20-java17`, `java17`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.1-scala_2.12-java17`, `1.20-scala_2.12-java17`, `scala_2.12-java17`, `1.20-java17`, `1.20.1-java17`, `java17`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.20.0-scala_2.12-java11`, `1.20-scala_2.12-java11`, `scala_2.12-java11`, `1.20.0-scala_2.12`, `1.20-scala_2.12`, `scala_2.12`, `1.20.0-java11`, `1.20-java11`, `java11`, `1.20.0`, `1.20`, `latest`](https://github.com/apache/flink-docker/blob/9d335b16e579d3207b769118990a602b8584b63d/1.20/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.1-scala_2.12-java11`, `1.20-scala_2.12-java11`, `scala_2.12-java11`, `1.20.1-scala_2.12`, `1.20-scala_2.12`, `scala_2.12`, `1.20.1-java11`, `1.20-java11`, `java11`, `1.20.1`, `1.20`, `latest`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.19.1-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.1-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.19.2-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.2-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.19.1-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.1-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.19.2-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.2-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.19.1-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.1-scala_2.12`, `1.19-scala_2.12`, `1.19.1-java11`, `1.19-java11`, `1.19.1`, `1.19`](https://github.com/apache/flink-docker/blob/f77b347d0a534da0482e692d80f559f47041829e/1.19/scala_2.12-java11-ubuntu/Dockerfile) - -- [`1.18.1-scala_2.12-java8`, `1.18-scala_2.12-java8`, `1.18.1-java8`, `1.18-java8`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java8-ubuntu/Dockerfile) - -- [`1.18.1-scala_2.12-java17`, `1.18-scala_2.12-java17`, `1.18.1-java17`, `1.18-java17`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java17-ubuntu/Dockerfile) - -- [`1.18.1-scala_2.12-java11`, `1.18-scala_2.12-java11`, `1.18.1-scala_2.12`, `1.18-scala_2.12`, `1.18.1-java11`, `1.18-java11`, `1.18.1`, `1.18`](https://github.com/apache/flink-docker/blob/883600747505c128d97e9d25c9326f0c6f1d31e4/1.18/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.19.2-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.2-scala_2.12`, `1.19-scala_2.12`, `1.19.2-java11`, `1.19-java11`, `1.19.2`, `1.19`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) From 466dd7ab6abe56a752fb298a35a510d8733de3ba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 12:09:41 -0800 Subject: [PATCH 1914/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- erlang/README.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index b2cbe391fd61..f409673548cf 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.base) +- [`latest`, `base`, `base-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.base) -- [`base-devel`, `base-devel-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250209.0.306557`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ad193674d2b4d7a95655223e70e1824079af2420/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index b0a2cf481491..305c62027d3a 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/92cf62bded14557c002e816e07e36df2e45b216e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2ced3612962c5897a919b672084673f378c8a372/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index bf3525eb9e1f..4883719c0426 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.2.1.0`, `27.2.1`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/Dockerfile) +- [`27.2.2.0`, `27.2.2`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/Dockerfile) -- [`27.2.1.0-slim`, `27.2.1-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/slim/Dockerfile) +- [`27.2.2.0-slim`, `27.2.2-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/slim/Dockerfile) -- [`27.2.1.0-alpine`, `27.2.1-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/838581dc4f97bfd511e255b29edc5fe2f8b243dd/27/alpine/Dockerfile) +- [`27.2.2.0-alpine`, `27.2.2-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) From 9f3b307f24002ff874877540d6bc56035285d774 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 13:09:40 -0800 Subject: [PATCH 1915/2686] Run update.sh --- crate/README.md | 4 +++- ibmjava/README.md | 6 +++--- liquibase/README.md | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/crate/README.md b/crate/README.md index 9a72e5e53946..9a2c42a89908 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.9.9`, `5.9`, `latest`](https://github.com/crate/docker-crate/blob/5972d59d5a2521ad29ae2f3edd9edad2697e36be/Dockerfile) +- [`5.10.1`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/a67533302803d0ae05db2e45130f61763f3b4ba4/Dockerfile) + +- [`5.9.10`, `5.9`](https://github.com/crate/docker-crate/blob/dfde86f302893f16d6bdfb029ca3895444b9d6e8/Dockerfile) - [`5.8.6`, `5.8`](https://github.com/crate/docker-crate/blob/b55d16afc32597fca2ee19a1b3e8803a98c1c946/Dockerfile) diff --git a/ibmjava/README.md b/ibmjava/README.md index 8e80ba1b303c..9824b0f8f74e 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/34f1e3d40f161054d7f38147cf9b51d697b54135/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/liquibase/README.md b/liquibase/README.md index ae4e9d1e6ca1..e7b9b072ad8f 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.31`, `4.31.0`, `latest`](https://github.com/liquibase/docker/blob/e348326855672a5d20d1789cfdab1ac8b2a6afa2/Dockerfile) +- [`4.31`, `4.31.1`, `latest`](https://github.com/liquibase/docker/blob/721daba2f67968383d82ce61e2f6891f444685ee/Dockerfile) -- [`4.31-alpine`, `4.31.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/e348326855672a5d20d1789cfdab1ac8b2a6afa2/Dockerfile.alpine) +- [`4.31-alpine`, `4.31.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/721daba2f67968383d82ce61e2f6891f444685ee/Dockerfile.alpine) # Quick reference (cont.) From 8a183a78a9f2033f8f9c892460ff5f6d3a3636ca Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 14:09:39 -0800 Subject: [PATCH 1916/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 4f3c090d1c4f..8b511f2600d4 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250207`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/18.0/Dockerfile) +- [`18.0-20250218`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/18.0/Dockerfile) -- [`17.0-20250207`, `17.0`, `17`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/17.0/Dockerfile) +- [`17.0-20250218`, `17.0`, `17`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/17.0/Dockerfile) -- [`16.0-20250207`, `16.0`, `16`](https://github.com/odoo/docker/blob/e70672aff8195df28d62be95d3b890bd4d531d35/16.0/Dockerfile) +- [`16.0-20250218`, `16.0`, `16`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/16.0/Dockerfile) # Quick reference (cont.) From 65f299756a5f85b37c486841b10dfd48bd4f28b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 15:09:29 -0800 Subject: [PATCH 1917/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- mongo/README.md | 36 ++++++++++++++++++------------------ 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/docker/README.md b/docker/README.md index ad472d17160e..09728ed8cb5a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`28.0.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/cli/Dockerfile) +- [`28.0.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/cli/Dockerfile) -- [`28.0.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.1-dind-alpine3.21`, `28.0.0-rc.1`, `28-rc`, `rc`, `28.0.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind/Dockerfile) +- [`28.0.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.2-dind-alpine3.21`, `28.0.0-rc.2`, `28-rc`, `rc`, `28.0.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/dind/Dockerfile) -- [`28.0.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/b329937b7efdb0ef4a6724a461529e36770aecb6/28-rc/dind-rootless/Dockerfile) +- [`28.0.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/dind-rootless/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.0.0-rc.2-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-1809/Dockerfile) - [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/cli/Dockerfile) @@ -54,11 +54,11 @@ WARNING: ## Shared Tags -- `28.0.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: +- `28.0.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5fa4d1b38c5db7ece062ca1353ef43f390f3653/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.0.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-1809/Dockerfile) - `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: diff --git a/mongo/README.md b/mongo/README.md index 6d650f44d0b5..c24835e1f6d6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -42,17 +42,17 @@ WARNING: - [`8.0.4-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.17-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/Dockerfile) +- [`7.0.17-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/Dockerfile) -- [`7.0.17-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.17-rc1-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.17-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.17-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.17-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.17-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`7.0.17-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.17-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.17-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-1809/Dockerfile) +- [`7.0.17-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-1809/Dockerfile) - [`7.0.16-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) @@ -114,23 +114,23 @@ WARNING: - [`8.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.17-rc0`, `7.0-rc`: +- `7.0.17-rc1`, `7.0-rc`: - - [`7.0.17-rc0-jammy`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/Dockerfile) - - [`7.0.17-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.17-rc1-jammy`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/Dockerfile) + - [`7.0.17-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.17-rc0-windowsservercore`, `7.0-rc-windowsservercore`: +- `7.0.17-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - [`7.0.17-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`7.0.17-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) -- `7.0.17-rc0-nanoserver`, `7.0-rc-nanoserver`: +- `7.0.17-rc1-nanoserver`, `7.0-rc-nanoserver`: - - [`7.0.17-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.17-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8e1134460c0b94afa5595207b2b7be03d2916e69/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.17-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.17-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.16`, `7.0`, `7`: From a4c950ec6f3f02e58024e556ed956bb535a475e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Feb 2025 16:09:33 -0800 Subject: [PATCH 1918/2686] Run update.sh --- bash/README.md | 2 +- golang/README.md | 12 +++---- postgres/README.md | 4 +-- tomcat/README.md | 80 +++++++++++++++++++++++----------------------- 4 files changed, 49 insertions(+), 49 deletions(-) diff --git a/bash/README.md b/bash/README.md index 49425a51ab6c..f9d4e0487d03 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250210`, `devel`, `devel-20250210-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/6df7584d75e3b73e0cb94a1e17ff3a58a8133089/devel/Dockerfile) +- [`devel-20250212`, `devel`, `devel-20250212-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/c9606637c1eb62f6a6226536446393e9f2606e83/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/golang/README.md b/golang/README.md index bb178cbc5ac9..51ccc3b70baf 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250209-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bookworm/Dockerfile) +- [`tip-20250216-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bookworm/Dockerfile) -- [`tip-20250209-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bullseye/Dockerfile) +- [`tip-20250216-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bullseye/Dockerfile) -- [`tip-20250209-alpine3.21`, `tip-alpine3.21`, `tip-20250209-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/alpine3.21/Dockerfile) +- [`tip-20250216-alpine3.21`, `tip-alpine3.21`, `tip-20250216-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/alpine3.21/Dockerfile) -- [`tip-20250209-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/alpine3.20/Dockerfile) +- [`tip-20250216-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250209`, `tip`: +- `tip-20250216`, `tip`: - - [`tip-20250209-bookworm`](https://github.com/docker-library/golang/blob/5a29b9e587f019aa33410a8fefb67af33e15b63c/tip/bookworm/Dockerfile) + - [`tip-20250216-bookworm`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index c095f8599f93..33e9418e6bcc 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.3`, `17`, `latest`, `17.3-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/bookworm/Dockerfile) +- [`17.3`, `17`, `latest`, `17.3-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a537d6002b1a4bb92eb88e1e894332a76b1d2e6b/17/bookworm/Dockerfile) -- [`17.3-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/bullseye/Dockerfile) +- [`17.3-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a537d6002b1a4bb92eb88e1e894332a76b1d2e6b/17/bullseye/Dockerfile) - [`17.3-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.3-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/alpine3.21/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index d7f0bc1a3f5a..d4560cce4d4d 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,85 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.3-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.3-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.3-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.3`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.4-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.4-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.4-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.4`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.3-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.3-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.3-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.4-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.4-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.4-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.3-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.4-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.3-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.4-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.3-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.3-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.3-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.4-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.4-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.4-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.3-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.3-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.3-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.4-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.4-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.4-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.3-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.4-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.3-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/cc03050af0350e881c086e923a3fa6bcb95c8ef0/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.4-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.35-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.35-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.35-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.35`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.36-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.36-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.36-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.36`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.35-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.35-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.35-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.36-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.36-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.36-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.35-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.36-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.35-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.36-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.35-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.35-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.35-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.36-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.36-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.36-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.35-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.35-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.35-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.36-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.36-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.36-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.35-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.36-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.35-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.36-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.35-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.35-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.35-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.36-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.36-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.36-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.35-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.35-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.35-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.36-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.36-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.36-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.35-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.36-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.35-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/83e6ff29874877b7c1bebfab88aa1a76908e3b4f/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.36-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.99-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.99-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.99-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.99`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.100-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.100-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.100-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.100`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.99-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.99-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.99-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.100-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.100-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.100-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.99-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.100-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.99-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.100-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.99-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.99-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.100-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.100-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.99-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.99-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.99-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.100-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.100-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.100-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.99-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.99-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.99-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.100-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.100-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.100-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.99-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.100-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.99-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.100-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.99-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.99-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.100-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.100-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.99-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.99-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.99-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.100-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.100-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.100-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.99-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.99-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.99-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.100-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.100-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.100-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.99-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.100-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.99-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.100-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.99-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.99-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.100-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.100-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.99-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.99-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.99-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.100-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.100-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.100-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.99-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.99-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.99-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.100-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.100-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.100-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.99-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.100-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.99-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.100-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.99-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.99-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d2eeea9fa27a2f7ce816a9b8aa83d84c5f55fef9/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.100-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.100-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 1ca1eb8dede05ff8b3c9d59839f1c74c0330163d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Feb 2025 11:09:47 -0800 Subject: [PATCH 1919/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docker/README.md b/docker/README.md index 09728ed8cb5a..9471baa98da9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`28.0.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/cli/Dockerfile) +- [`28.0.0-rc.3-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.3-cli-alpine3.21`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/cli/Dockerfile) -- [`28.0.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.2-dind-alpine3.21`, `28.0.0-rc.2`, `28-rc`, `rc`, `28.0.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/dind/Dockerfile) +- [`28.0.0-rc.3-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.3-dind-alpine3.21`, `28.0.0-rc.3`, `28-rc`, `rc`, `28.0.0-rc.3-alpine3.21`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/dind/Dockerfile) -- [`28.0.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/dind-rootless/Dockerfile) +- [`28.0.0-rc.3-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/dind-rootless/Dockerfile) -- [`28.0.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.0-rc.3-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.0-rc.3-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-rc.2-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.0.0-rc.3-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-1809/Dockerfile) - [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/cli/Dockerfile) @@ -54,11 +54,11 @@ WARNING: ## Shared Tags -- `28.0.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: +- `28.0.0-rc.3-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.0.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a835d8fa0def2d94f1a7509cc2ff07bdf57faf4e/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.0.0-rc.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-1809/Dockerfile) - `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: From a0d98229ed56a1c5ebd0e4c84bb2ab4c5623b67a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Feb 2025 12:09:32 -0800 Subject: [PATCH 1920/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 4883719c0426..555101280347 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.2.2.0`, `27.2.2`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/Dockerfile) +- [`27.2.3.0`, `27.2.3`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/Dockerfile) -- [`27.2.2.0-slim`, `27.2.2-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/slim/Dockerfile) +- [`27.2.3.0-slim`, `27.2.3-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/slim/Dockerfile) -- [`27.2.2.0-alpine`, `27.2.2-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/8c4029538dacea1928ba753a54122696467c51e7/27/alpine/Dockerfile) +- [`27.2.3.0-alpine`, `27.2.3-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) From 59305cdd34130fbbee0c37342461c942334bd75b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Feb 2025 13:09:35 -0800 Subject: [PATCH 1921/2686] Run update.sh --- gradle/README.md | 176 +++++++++++++++++++++++++++++++++++------------ 1 file changed, 131 insertions(+), 45 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 129999e3c8c6..958f19dd7846 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,93 +24,179 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-jammy/Dockerfile) +- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-noble`, `8.12-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-noble`, `8.12-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.12.1-noble`, `8.12-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-noble/Dockerfile) -- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-focal/Dockerfile) +- [`8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-jammy/Dockerfile) -- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk8-corretto/Dockerfile) +- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-alpine/Dockerfile) -- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-jammy/Dockerfile) +- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-corretto/Dockerfile) -- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-focal/Dockerfile) +- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk21-graal-noble`, `8.12-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.12.1-jdk-graal-noble`, `8.12-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.12.1-graal-noble`, `8.12-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-noble-graal/Dockerfile) -- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-alpine/Dockerfile) +- [`8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-jammy-graal/Dockerfile) -- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk11-corretto/Dockerfile) +- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-noble`, `8.12-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-noble/Dockerfile) -- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-noble`, `8.12-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-noble/Dockerfile) +- [`8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-jammy/Dockerfile) -- [`8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-jammy/Dockerfile) +- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-focal/Dockerfile) -- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-focal/Dockerfile) +- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-alpine/Dockerfile) -- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-alpine/Dockerfile) +- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-corretto/Dockerfile) -- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-corretto/Dockerfile) +- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk17-graal-noble`, `8.12-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-noble-graal/Dockerfile) -- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk17-graal-noble`, `8.12-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`, `8.12.1-jdk-graal-noble`, `8.12-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.12.1-graal-noble`, `8.12-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-noble-graal/Dockerfile) +- [`8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-jammy-graal/Dockerfile) -- [`8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk17-jammy-graal/Dockerfile) +- [`8.12.1-jdk17-graal-focal`, `8.12-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.12.1-jdk-graal-focal`, `8.12-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.12.1-graal-focal`, `8.12-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-focal-graal/Dockerfile) -- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-noble`, `8.12-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-noble`, `8.12-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.12.1-noble`, `8.12-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-noble/Dockerfile) +- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-jammy/Dockerfile) -- [`8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-jammy/Dockerfile) +- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-focal/Dockerfile) -- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-alpine/Dockerfile) +- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-alpine/Dockerfile) -- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-corretto/Dockerfile) +- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-corretto/Dockerfile) -- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk21-graal-noble`, `8.12-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-noble-graal/Dockerfile) +- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-jammy/Dockerfile) -- [`8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk21-jammy-graal/Dockerfile) +- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-focal/Dockerfile) -- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-noble`, `8.12-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-noble/Dockerfile) +- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-corretto/Dockerfile) -- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-alpine/Dockerfile) +- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-noble`, `8.12-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-noble/Dockerfile) -- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-corretto/Dockerfile) +- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-alpine/Dockerfile) -- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.12.1-jdk23-graal-noble`, `8.12-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk23-noble-graal/Dockerfile) +- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.12.1-jdk23-corretto-al2023`, `8.12-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-corretto/Dockerfile) -- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-noble`, `8.12-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-noble`, `8.12-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current/Dockerfile) +- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.12.1-jdk23-graal-noble`, `8.12-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-noble-graal/Dockerfile) -- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-alpine/Dockerfile) +- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-noble`, `8.12-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-noble`, `8.12-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current/Dockerfile) -- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-corretto/Dockerfile) +- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-alpine/Dockerfile) -- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-noble`, `8.12-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-noble`, `8.12-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ddb1b6322e9dc6367c1c0e962c070010967214b2/jdk-lts-and-current-graal/Dockerfile) +- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-corretto/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8/Dockerfile) +- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-noble`, `8.12-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-noble`, `8.12-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk8-focal/Dockerfile) +- [`7.6.4-jdk21`, `7.6-jdk21`, `7-jdk21`, `7.6.4-jdk21-noble`, `7.6-jdk21-noble`, `7-jdk21-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-noble/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11/Dockerfile) +- [`7.6.4-jdk21-jammy`, `7.6-jdk21-jammy`, `7-jdk21-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-jammy/Dockerfile) -- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-focal/Dockerfile) +- [`7.6.4-jdk21-alpine`, `7.6-jdk21-alpine`, `7-jdk21-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-alpine/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk11-alpine/Dockerfile) +- [`7.6.4-jdk21-corretto`, `7.6-jdk21-corretto`, `7-jdk21-corretto`, `7.6.4-jdk21-corretto-al2023`, `7.6-jdk21-corretto-al2023`, `7-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-corretto/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17/Dockerfile) +- [`7.6.4-jdk21-graal`, `7.6-jdk21-graal`, `7-jdk21-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk21-graal-noble`, `7.6-jdk21-graal-noble`, `7-jdk21-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-noble-graal/Dockerfile) -- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-focal/Dockerfile) +- [`7.6.4-jdk21-graal-jammy`, `7.6-jdk21-graal-jammy`, `7-jdk21-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-jammy-graal/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/59c9fb1b24acf80a7da05dc2461c0f1b2b211527/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-noble/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8/Dockerfile) +- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-jammy/Dockerfile) -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk8-focal/Dockerfile) +- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-focal/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-alpine/Dockerfile) -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-focal/Dockerfile) +- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-corretto/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk11-alpine/Dockerfile) +- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-noble-graal/Dockerfile) -- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17/Dockerfile) +- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-jammy-graal/Dockerfile) -- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-focal/Dockerfile) +- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-focal-graal/Dockerfile) -- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/5860d04d193e0a97c41d63a00f6eed1df67be293/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-jammy/Dockerfile) + +- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-focal/Dockerfile) + +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-alpine/Dockerfile) + +- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-corretto/Dockerfile) + +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-jammy/Dockerfile) + +- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-focal/Dockerfile) + +- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-corretto/Dockerfile) + +- [`7.6.4-jdk23`, `7.6-jdk23`, `7-jdk23`, `7.6.4-jdk23-noble`, `7.6-jdk23-noble`, `7-jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-noble/Dockerfile) + +- [`7.6.4-jdk23-alpine`, `7.6-jdk23-alpine`, `7-jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-alpine/Dockerfile) + +- [`7.6.4-jdk23-corretto`, `7.6-jdk23-corretto`, `7-jdk23-corretto`, `7.6.4-jdk23-corretto-al2023`, `7.6-jdk23-corretto-al2023`, `7-jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-corretto/Dockerfile) + +- [`7.6.4-jdk23-graal`, `7.6-jdk23-graal`, `7-jdk23-graal`, `7.6.4-jdk23-graal-noble`, `7.6-jdk23-graal-noble`, `7-jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-noble-graal/Dockerfile) + +- [`7.6.4-jdk-lts-and-current`, `7.6-jdk-lts-and-current`, `7-jdk-lts-and-current`, `7.6.4-jdk-lts-and-current-noble`, `7.6-jdk-lts-and-current-noble`, `7-jdk-lts-and-current-noble`, `7.6.4-jdk-21-and-23`, `7.6-jdk-21-and-23`, `7-jdk-21-and-23`, `7.6.4-jdk-21-and-23-noble`, `7.6-jdk-21-and-23-noble`, `7-jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current/Dockerfile) + +- [`7.6.4-jdk-lts-and-current-alpine`, `7.6-jdk-lts-and-current-alpine`, `7-jdk-lts-and-current-alpine`, `7.6.4-jdk-21-and-23-alpine`, `7.6-jdk-21-and-23-alpine`, `7-jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-alpine/Dockerfile) + +- [`7.6.4-jdk-lts-and-current-corretto`, `7.6-jdk-lts-and-current-corretto`, `7-jdk-lts-and-current-corretto`, `7.6.4-jdk-lts-and-current-corretto-al2023`, `7.6-jdk-lts-and-current-corretto-al2023`, `7-jdk-lts-and-current-corretto-al2023`, `7.6.4-jdk-21-and-23-corretto`, `7.6-jdk-21-and-23-corretto`, `7-jdk-21-and-23-corretto`, `7.6.4-jdk-21-and-23-corretto-al2023`, `7.6-jdk-21-and-23-corretto-al2023`, `7-jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-corretto/Dockerfile) + +- [`7.6.4-jdk-lts-and-current-graal`, `7.6-jdk-lts-and-current-graal`, `7-jdk-lts-and-current-graal`, `7.6.4-jdk-lts-and-current-graal-noble`, `7.6-jdk-lts-and-current-graal-noble`, `7-jdk-lts-and-current-graal-noble`, `7.6.4-jdk-21-and-23-graal`, `7.6-jdk-21-and-23-graal`, `7-jdk-21-and-23-graal`, `7.6.4-jdk-21-and-23-graal-noble`, `7.6-jdk-21-and-23-graal-noble`, `7-jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-graal/Dockerfile) + +- [`6.9.4-jdk21`, `6.9-jdk21`, `6-jdk21`, `6.9.4-jdk21-noble`, `6.9-jdk21-noble`, `6-jdk21-noble`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-noble`, `6.9-jdk-noble`, `6-jdk-noble`, `6.9.4-noble`, `6.9-noble`, `6-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-noble/Dockerfile) + +- [`6.9.4-jdk21-jammy`, `6.9-jdk21-jammy`, `6-jdk21-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-jammy/Dockerfile) + +- [`6.9.4-jdk21-alpine`, `6.9-jdk21-alpine`, `6-jdk21-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-alpine/Dockerfile) + +- [`6.9.4-jdk21-corretto`, `6.9-jdk21-corretto`, `6-jdk21-corretto`, `6.9.4-jdk21-corretto-al2023`, `6.9-jdk21-corretto-al2023`, `6-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-corretto/Dockerfile) + +- [`6.9.4-jdk21-graal`, `6.9-jdk21-graal`, `6-jdk21-graal`, `6.9.4-jdk-graal`, `6.9-jdk-graal`, `6-jdk-graal`, `6.9.4-graal`, `6.9-graal`, `6-graal`, `6.9.4-jdk21-graal-noble`, `6.9-jdk21-graal-noble`, `6-jdk21-graal-noble`, `6.9.4-jdk-graal-noble`, `6.9-jdk-graal-noble`, `6-jdk-graal-noble`, `6.9.4-graal-noble`, `6.9-graal-noble`, `6-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-noble-graal/Dockerfile) + +- [`6.9.4-jdk21-graal-jammy`, `6.9-jdk21-graal-jammy`, `6-jdk21-graal-jammy`, `6.9.4-jdk-graal-jammy`, `6.9-jdk-graal-jammy`, `6-jdk-graal-jammy`, `6.9.4-graal-jammy`, `6.9-graal-jammy`, `6-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-jammy-graal/Dockerfile) + +- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk17-noble`, `6.9-jdk17-noble`, `6-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-noble/Dockerfile) + +- [`6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-jammy/Dockerfile) + +- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-focal/Dockerfile) + +- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-alpine/Dockerfile) + +- [`6.9.4-jdk17-corretto`, `6.9-jdk17-corretto`, `6-jdk17-corretto`, `6.9.4-jdk17-corretto-al2023`, `6.9-jdk17-corretto-al2023`, `6-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-corretto/Dockerfile) + +- [`6.9.4-jdk17-graal`, `6.9-jdk17-graal`, `6-jdk17-graal`, `6.9.4-jdk17-graal-noble`, `6.9-jdk17-graal-noble`, `6-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-noble-graal/Dockerfile) + +- [`6.9.4-jdk17-graal-jammy`, `6.9-jdk17-graal-jammy`, `6-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-jammy-graal/Dockerfile) + +- [`6.9.4-jdk17-graal-focal`, `6.9-jdk17-graal-focal`, `6-jdk17-graal-focal`, `6.9.4-jdk-graal-focal`, `6.9-jdk-graal-focal`, `6-jdk-graal-focal`, `6.9.4-graal-focal`, `6.9-graal-focal`, `6-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-focal-graal/Dockerfile) + +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-jammy/Dockerfile) + +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-focal/Dockerfile) + +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-alpine/Dockerfile) + +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-corretto/Dockerfile) + +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-jammy/Dockerfile) + +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-focal/Dockerfile) + +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-corretto/Dockerfile) + +- [`6.9.4-jdk23`, `6.9-jdk23`, `6-jdk23`, `6.9.4-jdk23-noble`, `6.9-jdk23-noble`, `6-jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-noble/Dockerfile) + +- [`6.9.4-jdk23-alpine`, `6.9-jdk23-alpine`, `6-jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-alpine/Dockerfile) + +- [`6.9.4-jdk23-corretto`, `6.9-jdk23-corretto`, `6-jdk23-corretto`, `6.9.4-jdk23-corretto-al2023`, `6.9-jdk23-corretto-al2023`, `6-jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-corretto/Dockerfile) + +- [`6.9.4-jdk23-graal`, `6.9-jdk23-graal`, `6-jdk23-graal`, `6.9.4-jdk23-graal-noble`, `6.9-jdk23-graal-noble`, `6-jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-noble-graal/Dockerfile) + +- [`6.9.4-jdk-lts-and-current`, `6.9-jdk-lts-and-current`, `6-jdk-lts-and-current`, `6.9.4-jdk-lts-and-current-noble`, `6.9-jdk-lts-and-current-noble`, `6-jdk-lts-and-current-noble`, `6.9.4-jdk-21-and-23`, `6.9-jdk-21-and-23`, `6-jdk-21-and-23`, `6.9.4-jdk-21-and-23-noble`, `6.9-jdk-21-and-23-noble`, `6-jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current/Dockerfile) + +- [`6.9.4-jdk-lts-and-current-alpine`, `6.9-jdk-lts-and-current-alpine`, `6-jdk-lts-and-current-alpine`, `6.9.4-jdk-21-and-23-alpine`, `6.9-jdk-21-and-23-alpine`, `6-jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-alpine/Dockerfile) + +- [`6.9.4-jdk-lts-and-current-corretto`, `6.9-jdk-lts-and-current-corretto`, `6-jdk-lts-and-current-corretto`, `6.9.4-jdk-lts-and-current-corretto-al2023`, `6.9-jdk-lts-and-current-corretto-al2023`, `6-jdk-lts-and-current-corretto-al2023`, `6.9.4-jdk-21-and-23-corretto`, `6.9-jdk-21-and-23-corretto`, `6-jdk-21-and-23-corretto`, `6.9.4-jdk-21-and-23-corretto-al2023`, `6.9-jdk-21-and-23-corretto-al2023`, `6-jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-corretto/Dockerfile) + +- [`6.9.4-jdk-lts-and-current-graal`, `6.9-jdk-lts-and-current-graal`, `6-jdk-lts-and-current-graal`, `6.9.4-jdk-lts-and-current-graal-noble`, `6.9-jdk-lts-and-current-graal-noble`, `6-jdk-lts-and-current-graal-noble`, `6.9.4-jdk-21-and-23-graal`, `6.9-jdk-21-and-23-graal`, `6-jdk-21-and-23-graal`, `6.9.4-jdk-21-and-23-graal-noble`, `6.9-jdk-21-and-23-graal-noble`, `6-jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-graal/Dockerfile) # Quick reference (cont.) @@ -118,7 +204,7 @@ WARNING: [https://github.com/keeganwitt/docker-gradle/issues](https://github.com/keeganwitt/docker-gradle/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/gradle/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gradle/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gradle/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gradle/), [`s390x`](https://hub.docker.com/r/s390x/gradle/) + [`amd64`](https://hub.docker.com/r/amd64/gradle/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gradle/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gradle/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gradle/), [`riscv64`](https://hub.docker.com/r/riscv64/gradle/), [`s390x`](https://hub.docker.com/r/s390x/gradle/) - **Published image artifact details**: [repo-info repo's `repos/gradle/` directory](https://github.com/docker-library/repo-info/blob/master/repos/gradle) ([history](https://github.com/docker-library/repo-info/commits/master/repos/gradle)) From 5b560689ae616107d8ef67223e09da3fad3fd31f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Feb 2025 18:09:51 -0800 Subject: [PATCH 1922/2686] Run update.sh --- clojure/README.md | 138 +++++++++++++++++++++--------------------- joomla/README.md | 48 ++++++++++----- oraclelinux/README.md | 18 +++--- 3 files changed, 111 insertions(+), 93 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 8e7d04243ada..ee18b5b57057 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1501-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1517-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1501-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1517-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1501-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1517-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1501`, `temurin-8-tools-deps-1.12.0.1501-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1517`, `temurin-8-tools-deps-1.12.0.1517-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1501-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1517-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1501-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1517-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1501-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1517-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1501-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1517-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1501`, `temurin-11-tools-deps-1.12.0.1501-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1517`, `temurin-11-tools-deps-1.12.0.1517-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1501-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1517-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1501-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1517-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1501-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1517-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1501-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1517-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1501`, `temurin-17-tools-deps-1.12.0.1501-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1517`, `temurin-17-tools-deps-1.12.0.1517-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1501-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1517-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1501-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1517-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1501`, `temurin-21-tools-deps-1.12.0.1501-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1501`, `tools-deps-1.12.0.1501-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1517`, `temurin-21-tools-deps-1.12.0.1517-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1517`, `tools-deps-1.12.0.1517-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1501-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1517-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1501-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1501-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1517-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1517-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1501-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1517-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1501-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1517-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1501-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1517-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) -- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-23/lein/Dockerfile) +- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) -- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1501-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1517-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1501`, `temurin-23-tools-deps-1.12.0.1501-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1517`, `temurin-23-tools-deps-1.12.0.1517-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-23/tools-deps/Dockerfile) -- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1501-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bookworm-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1501-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1517-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1501-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/debian-bullseye-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-23/tools-deps/Dockerfile) -- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1501-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/318a8d7072128dc030e48162613f18596bf44e35/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) +- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1517-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 2f53425e860e..3abd3f72ee28 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,35 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.3-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/apache/Dockerfile) +- [`5.3.0-beta1-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/apache/Dockerfile) -- [`5.2.3-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.3.0-beta1-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.2.3-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.1/fpm/Dockerfile) +- [`5.3.0-beta1-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/fpm/Dockerfile) -- [`5.2.3`, `5.2`, `5`, `latest`, `5.2.3-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.3-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.3-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/apache/Dockerfile) +- [`5.3.0-beta1`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta1-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta1-php8.2`, `5.3-php8.2`, `5.3.beta-php8.2`, `5.3.0-beta-php8.2`, `5.3.0-beta1-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/apache/Dockerfile) -- [`5.2.3-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.3.0-beta1-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.2.3-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.2/fpm/Dockerfile) +- [`5.3.0-beta1-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/fpm/Dockerfile) -- [`5.2.3-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/apache/Dockerfile) +- [`5.3.0-beta1-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/apache/Dockerfile) -- [`5.2.3-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.3.0-beta1-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.2.3-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/5.2/php8.3/fpm/Dockerfile) +- [`5.3.0-beta1-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/fpm/Dockerfile) -- [`4.4.10`, `4.4`, `4`, `4.4.10-apache`, `4.4-apache`, `4-apache`, `4.4.10-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.10-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/apache/Dockerfile) +- [`5.2.4-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/apache/Dockerfile) -- [`4.4.10-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/fpm-alpine/Dockerfile) +- [`5.2.4-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/fpm-alpine/Dockerfile) -- [`4.4.10-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.1/fpm/Dockerfile) +- [`5.2.4-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/fpm/Dockerfile) -- [`4.4.10-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/apache/Dockerfile) +- [`5.2.4`, `5.2`, `5`, `latest`, `5.2.4-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.4-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.4-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/apache/Dockerfile) -- [`4.4.10-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/fpm-alpine/Dockerfile) +- [`5.2.4-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm-alpine/Dockerfile) -- [`4.4.10-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/0e9e7dcd1de51ee10c72c37a32c209101f454692/4.4/php8.2/fpm/Dockerfile) +- [`5.2.4-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm/Dockerfile) + +- [`5.2.4-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/apache/Dockerfile) + +- [`5.2.4-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/fpm-alpine/Dockerfile) + +- [`5.2.4-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/fpm/Dockerfile) + +- [`4.4.11`, `4.4`, `4`, `4.4.11-apache`, `4.4-apache`, `4-apache`, `4.4.11-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.11-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/apache/Dockerfile) + +- [`4.4.11-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm-alpine/Dockerfile) + +- [`4.4.11-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm/Dockerfile) + +- [`4.4.11-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/apache/Dockerfile) + +- [`4.4.11-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/fpm-alpine/Dockerfile) + +- [`4.4.11-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index eb93dbd74dc6..c5c843e2f838 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ee8499092893bbb6a7b939d42b10b135744e0a8c/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7-slim-fips/Dockerfile) # Quick reference (cont.) From cb7bfdc5f1c15529dc992b1948822c37b709058e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Feb 2025 07:09:33 -0800 Subject: [PATCH 1923/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 77a7b09a7373..44102ced0bff 100644 --- a/node/README.md +++ b/node/README.md @@ -60,17 +60,17 @@ WARNING: - [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bullseye-slim/Dockerfile) -- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.6-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/a2d83853f45a2de0ec832474b45e552f8cfeb6c4/18/alpine3.20/Dockerfile) +- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.7-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/alpine3.20/Dockerfile) -- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.6-alpine`, `18.20.6-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/a2d83853f45a2de0ec832474b45e552f8cfeb6c4/18/alpine3.21/Dockerfile) +- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.7-alpine`, `18.20.7-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/alpine3.21/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.6`, `18.20.6-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bookworm/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.7`, `18.20.7-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.6-bookworm-slim`, `18.20.6-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.7-bookworm-slim`, `18.20.7-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.6-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bullseye/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.7-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.6-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a35f40787c5c4744ad52af7ba0f55034a7fa3481/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.7-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bullseye-slim/Dockerfile) # Quick reference (cont.) From 6976e91cf41999848f3892a253cce4a69f2e0d36 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 20 Feb 2025 15:19:50 +0100 Subject: [PATCH 1924/2686] Remove deprecation notice --- adminer/README-short.txt | 2 +- adminer/deprecated.md | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 adminer/deprecated.md diff --git a/adminer/README-short.txt b/adminer/README-short.txt index 0a69ca82298b..b908ecebb256 100644 --- a/adminer/README-short.txt +++ b/adminer/README-short.txt @@ -1 +1 @@ -DEPRECATED; Database management in a single PHP file. +Database management in a single PHP file. diff --git a/adminer/deprecated.md b/adminer/deprecated.md deleted file mode 100644 index 9633e92f8054..000000000000 --- a/adminer/deprecated.md +++ /dev/null @@ -1,5 +0,0 @@ -Adminer is [no longer maintained (upstream)](https://www.youtube.com/watch?v=OrOtiu_nfHE&lc=Ugy8pAL8wgAL3_iKkzZ4AaABAg.9pj_kQ2rkuw9pp813OyHha): - -> I've stopped working on it but maybe I'll return to it some day. - -See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-adminer/issues/147). Users are strongly encouraged to seek alternatives. From 6d1e16b66b078131df8fb25411566ee55c046fd2 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 20 Feb 2025 15:20:24 +0100 Subject: [PATCH 1925/2686] Update license link --- adminer/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/license.md b/adminer/license.md index 120e86ad3c0c..010ac01fa2f0 100644 --- a/adminer/license.md +++ b/adminer/license.md @@ -1 +1 @@ -View [license information](https://github.com/vrana/adminer/blob/master/readme.txt) for the software contained in this image. +View [license information](https://github.com/vrana/adminer/blob/master/LICENSE) for the software contained in this image. From 173819bb5e85278f74914432496d31e180ba2d8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Feb 2025 15:10:04 -0800 Subject: [PATCH 1926/2686] Run update.sh --- docker/README.md | 38 ++++++++++---------------------------- lightstreamer/README.md | 8 ++++---- orientdb/README.md | 4 ++-- rust/README.md | 12 ++++++------ xwiki/README.md | 6 +++--- 5 files changed, 25 insertions(+), 43 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9471baa98da9..eabb3b7f5345 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.0-rc.3-cli`, `28-rc-cli`, `rc-cli`, `28.0.0-rc.3-cli-alpine3.21`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/cli/Dockerfile) +- [`28.0.0-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/cli/Dockerfile) -- [`28.0.0-rc.3-dind`, `28-rc-dind`, `rc-dind`, `28.0.0-rc.3-dind-alpine3.21`, `28.0.0-rc.3`, `28-rc`, `rc`, `28.0.0-rc.3-alpine3.21`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/dind/Dockerfile) +- [`28.0.0-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.0-dind-alpine3.21`, `28.0.0`, `28.0`, `28`, `latest`, `28.0.0-alpine3.21`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind/Dockerfile) -- [`28.0.0-rc.3-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/dind-rootless/Dockerfile) +- [`28.0.0-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind-rootless/Dockerfile) -- [`28.0.0-rc.3-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.0-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-rc.3-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.0-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-rc.3-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-1809/Dockerfile) - -- [`27.5.1-cli`, `27.5-cli`, `27-cli`, `cli`, `27.5.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/cli/Dockerfile) - -- [`27.5.1-dind`, `27.5-dind`, `27-dind`, `dind`, `27.5.1-dind-alpine3.21`, `27.5.1`, `27.5`, `27`, `latest`, `27.5.1-alpine3.21`](https://github.com/docker-library/docker/blob/fbb79dd2512681b42f6f0a3a82543c29640b85ce/27/dind/Dockerfile) - -- [`27.5.1-dind-rootless`, `27.5-dind-rootless`, `27-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/03ecb33955c16b34b7d52c7563f05c736f159875/27/dind-rootless/Dockerfile) - -- [`27.5.1-windowsservercore-ltsc2025`, `27.5-windowsservercore-ltsc2025`, `27-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`27.5.1-windowsservercore-ltsc2022`, `27.5-windowsservercore-ltsc2022`, `27-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`27.5.1-windowsservercore-1809`, `27.5-windowsservercore-1809`, `27-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-1809/Dockerfile) +- [`28.0.0-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.0.0-rc.3-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.0.0-rc.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-rc.3-windowsservercore-1809`](https://github.com/docker-library/docker/blob/16fe5c4f78ae9c1249533992f01a37284c4e9f0d/28-rc/windows/windowsservercore-1809/Dockerfile) - -- `27.5.1-windowsservercore`, `27.5-windowsservercore`, `27-windowsservercore`, `windowsservercore`: +- `28.0.0-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`27.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2025/Dockerfile) - - [`27.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-ltsc2022/Dockerfile) - - [`27.5.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/2738fa1f226f9ca12b0202bd2267da2f0817c6ae/27/windows/windowsservercore-1809/Dockerfile) + - [`28.0.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 982d32e8a118..4bb0b04b8e33 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -46,13 +46,13 @@ WARNING: - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.3/jdk17/Dockerfile) -- [`7.4.5-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.5-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk8/Dockerfile) +- [`7.4.6-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.6-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk8/Dockerfile) -- [`7.4.5-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.5-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk11/Dockerfile) +- [`7.4.6-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.6-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk11/Dockerfile) -- [`7.4.5-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.5-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk17/Dockerfile) +- [`7.4.6-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.6-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk17/Dockerfile) -- [`7.4.5-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.5-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.5`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.4/jdk21/Dockerfile) +- [`7.4.6-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.6-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.6`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk21/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 22fa328f94e7..d75d3e8bc39f 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.37`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/dbce6d15ca8ac3c400953eed9bb4833b3886bd87/release/3.2.x/3.2.37/Dockerfile) +- [`3.2.38`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/93cc44e52b4538b72e15537cb709ae0808ac16fa/release/3.2.x/3.2.38/Dockerfile) -- [`3.2.37-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/dbce6d15ca8ac3c400953eed9bb4833b3886bd87/release/3.2.x/3.2.37-tp3/Dockerfile) +- [`3.2.38-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/93cc44e52b4538b72e15537cb709ae0808ac16fa/release/3.2.x/3.2.38-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/rust/README.md b/rust/README.md index e84f715e9a7c..5881b25fe25a 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.84-bullseye`, `1.84.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.84-slim-bullseye`, `1.84.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.84-bookworm`, `1.84.1-bookworm`, `bookworm`, `1`, `1.84`, `1.84.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.84-slim-bookworm`, `1.84.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.84-slim`, `1.84.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.84-alpine3.20`, `1.84.1-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.84-alpine3.21`, `1.84.1-alpine3.21`, `alpine3.21`, `1-alpine`, `1.84-alpine`, `1.84.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/da786eca125b17916ae42faae8631fa4a1d992d4/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 4d7fb72e7523..a83cdbbf26e8 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.0-mariadb-tomcat`, `17.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.3`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.3-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.4`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.4-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.3-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.4-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.3-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/41942e37e12947c9f0b20f132c77353977fe17e1/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.4-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) From 2c2c3c2b51c9ca01c389d81254782f4fa49a3d05 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Feb 2025 16:09:47 -0800 Subject: [PATCH 1927/2686] Run update.sh --- adminer/README.md | 10 +--------- clickhouse/README.md | 10 +++++----- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 15b9ebbe4e91..7fcfcef86d4a 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -14,14 +14,6 @@ WARNING: --> -# **DEPRECATION NOTICE** - -Adminer is [no longer maintained (upstream)](https://www.youtube.com/watch?v=OrOtiu_nfHE&lc=Ugy8pAL8wgAL3_iKkzZ4AaABAg.9pj_kQ2rkuw9pp813OyHha): - -> I've stopped working on it but maybe I'll return to it some day. - -See also [TimWolla/docker-adminer#147](https://github.com/TimWolla/docker-adminer/issues/147). Users are strongly encouraged to seek alternatives. - # Quick reference - **Maintained by**: @@ -184,7 +176,7 @@ To add support for the other drivers you will need to install the following PHP # License -View [license information](https://github.com/vrana/adminer/blob/master/readme.txt) for the software contained in this image. +View [license information](https://github.com/vrana/adminer/blob/master/LICENSE) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). diff --git a/clickhouse/README.md b/clickhouse/README.md index 61eced522d01..994594eb10cd 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `24.12`, `24.12-jammy`, `24.12.3`, `24.12.3-jammy`, `24.12.3.47`, `24.12.3.47-jammy`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.12.3.47/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.1`, `25.1-jammy`, `25.1.5`, `25.1.5-jammy`, `25.1.5.31`, `25.1.5.31-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/25.1.5.31/Dockerfile.ubuntu) -- [`24.11`, `24.11-jammy`, `24.11.3`, `24.11.3-jammy`, `24.11.3.66`, `24.11.3.66-jammy`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.11.3.66/Dockerfile.ubuntu) +- [`24.12`, `24.12-jammy`, `24.12.5`, `24.12.5-jammy`, `24.12.5.81`, `24.12.5.81-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.12.5.81/Dockerfile.ubuntu) -- [`24.10`, `24.10-focal`, `24.10.4`, `24.10.4-focal`, `24.10.4.191`, `24.10.4.191-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.10.4.191/Dockerfile.ubuntu) +- [`24.11`, `24.11-jammy`, `24.11.5`, `24.11.5-jammy`, `24.11.5.49`, `24.11.5.49-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.11.5.49/Dockerfile.ubuntu) -- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.12`, `24.8.12-focal`, `24.8.12.28`, `24.8.12.28-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.8.12.28/Dockerfile.ubuntu) +- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.8.14.39/Dockerfile.ubuntu) -- [`24.3`, `24.3-focal`, `24.3.15`, `24.3.15-focal`, `24.3.15.72`, `24.3.15.72-focal`](https://github.com/ClickHouse/docker-library/blob/25d5c4edc570e79103921d61916e8ddbc2a3b82f/server/24.3.15.72/Dockerfile.ubuntu) +- [`24.3`, `24.3-focal`, `24.3.18`, `24.3.18-focal`, `24.3.18.7`, `24.3.18.7-focal`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.3.18.7/Dockerfile.ubuntu) # Quick reference (cont.) From d74950a6d3ba23dbc3a777eee942b5c184bb82eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 09:09:49 -0800 Subject: [PATCH 1928/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 033c0ff220dd..8922261c0938 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/93dbd152445b31a50a24ab810f766006da22a6e1/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From d3ecf690b07f3d0f350983913f80b8585d04c351 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 10:09:39 -0800 Subject: [PATCH 1929/2686] Run update.sh --- haproxy/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index ce7a389fa17a..991886fa0fbe 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev5`, `3.2-dev`, `3.2-dev5-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/d604c89bc8794e2444c76f3421d5adde679651f9/3.2/Dockerfile) +- [`3.2-dev6`, `3.2-dev`, `3.2-dev6-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/52fe35d0664a4d6ea63e1be22508dfca73a481c4/3.2/Dockerfile) -- [`3.2-dev5-alpine`, `3.2-dev-alpine`, `3.2-dev5-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/d604c89bc8794e2444c76f3421d5adde679651f9/3.2/alpine/Dockerfile) +- [`3.2-dev6-alpine`, `3.2-dev-alpine`, `3.2-dev6-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/52fe35d0664a4d6ea63e1be22508dfca73a481c4/3.2/alpine/Dockerfile) -- [`3.1.3`, `3.1`, `latest`, `3.1.3-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/9172eda0839755b609790ff159545e1f7d66d9b1/3.1/Dockerfile) +- [`3.1.5`, `3.1`, `latest`, `3.1.5-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e1dd4e1ca3d371d604a530397ad090cb0b0d8bda/3.1/Dockerfile) -- [`3.1.3-alpine`, `3.1-alpine`, `alpine`, `3.1.3-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/9172eda0839755b609790ff159545e1f7d66d9b1/3.1/alpine/Dockerfile) +- [`3.1.5-alpine`, `3.1-alpine`, `alpine`, `3.1.5-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/e1dd4e1ca3d371d604a530397ad090cb0b0d8bda/3.1/alpine/Dockerfile) - [`3.0.8`, `3.0`, `lts`, `3.0.8-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/262506addcf26d79cf3983d5556b835d5818ee63/3.0/Dockerfile) From 745f2ca3c85beb9225f15dfc3a10dba462257a5a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 11:09:58 -0800 Subject: [PATCH 1930/2686] Run update.sh --- drupal/README.md | 84 ++++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index d3b58a2b686b..6886c89079a4 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.2-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.2-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.2-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.3-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.3-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.3-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.2-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.2-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.3-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.3-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.2-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.3-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.2-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.3-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.2-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.2-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.3-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.3-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.2-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.3-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.2-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.2-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.2-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.2-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.2-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.2`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.3-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.3-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.3-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.3-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.3-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.3`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.2-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.2-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.2-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.2-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.3-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.3-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.3-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.3-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.2-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.2-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.3-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.3-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.2-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.2-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.3-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.3-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.2-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.2-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.2-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.2-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.3-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.3-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.3-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.3-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.2-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.2-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0237ba4f7e9c29de75a54be4c6c075f2ac34a9f1/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.3-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.3-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.11-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.11-php8.3-apache`, `11.0-php8.3-apache`, `11.0.11-php8.3`, `11.0-php8.3`, `11.0.11-apache-bookworm`, `11.0-apache-bookworm`, `11.0.11-apache`, `11.0-apache`, `11.0.11`, `11.0`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.12-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.12-php8.3-apache`, `11.0-php8.3-apache`, `11.0.12-php8.3`, `11.0-php8.3`, `11.0.12-apache-bookworm`, `11.0-apache-bookworm`, `11.0.12-apache`, `11.0-apache`, `11.0.12`, `11.0`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.11-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.11-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.11-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.11-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.12-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.12-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.12-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.12-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.11-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.11-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.12-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.12-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.11-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.11-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.12-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.12-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.11-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.11-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.11-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.11-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.0.12-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.12-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.12-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.12-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.11-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.11-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ca7eee3e54f57d86a39d816597ccb093bd99a3c2/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.12-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.12-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.2-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.2-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.2-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.3-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.3-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.3-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.2-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.2-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.3-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.3-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.2-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.3-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.2-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.3-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.2-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.2-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.3-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.3-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.2-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/0c4efc59906d304fadc7209f7b2a61bcae5f690b/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.3-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.2-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.2-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.2-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.2-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.2-apache`, `10.4-apache`, `10-apache`, `10.4.2`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.3-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.3-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.3-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.3-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.3-apache`, `10.4-apache`, `10-apache`, `10.4.3`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.2-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.2-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.2-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.2-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.3-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.3-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.3-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.3-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.2-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.2-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.3-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.3-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.2-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.2-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.3-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.3-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.2-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.2-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.2-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.2-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.3-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.3-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.3-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.3-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.2-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.2-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/2804d0041029b1356f209ad15b53dc89e9cc04f6/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.3-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.3-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.12-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.12-php8.3-apache`, `10.3-php8.3-apache`, `10.3.12-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.13-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.13-php8.3-apache`, `10.3-php8.3-apache`, `10.3.13-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.12-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.12-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.13-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.13-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.12-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.13-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.12-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.13-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.12-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.12-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.3.13-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.13-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.12-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.13-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.12-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.12-php8.2-apache`, `10.3-php8.2-apache`, `10.3.12-php8.2`, `10.3-php8.2`, `10.3.12-apache-bookworm`, `10.3-apache-bookworm`, `10.3.12-apache`, `10.3-apache`, `10.3.12`, `10.3`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.13-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.13-php8.2-apache`, `10.3-php8.2-apache`, `10.3.13-php8.2`, `10.3-php8.2`, `10.3.13-apache-bookworm`, `10.3-apache-bookworm`, `10.3.13-apache`, `10.3-apache`, `10.3.13`, `10.3`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.12-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.12-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.12-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.12-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.13-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.13-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.13-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.13-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.12-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.12-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.13-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.13-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.12-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.12-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.13-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.13-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.12-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.12-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.12-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.12-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-alpine3.21/Dockerfile) +- [`10.3.13-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.13-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.13-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.13-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.12-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.12-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/ce8832fea0b5719a72c79afbc7c199a016714f99/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.13-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.13-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-alpine3.20/Dockerfile) # Quick reference (cont.) From cfc7b7fa594b04cad22d9a6743de7b67750c0d7e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 12:10:10 -0800 Subject: [PATCH 1931/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- rocket.chat/README.md | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c5c843e2f838..2cc0e31d4d48 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/72b2851d567ba4901b626810a3178cc4f646072a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 3179f345da6a..100da3941504 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.3.1`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.3/Dockerfile) +- [`7.3.2`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.3/Dockerfile) -- [`7.2.2`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.2/Dockerfile) +- [`7.2.3`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.2/Dockerfile) -- [`7.1.2`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.1/Dockerfile) +- [`7.1.3`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.1/Dockerfile) -- [`7.0.6`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/fb402decd269f2ba5252475c7e6a329a8f12b732/7.0/Dockerfile) +- [`7.0.7`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) From 809859d1af63878d3fb5d0b2adebe05181c506ad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 14:10:01 -0800 Subject: [PATCH 1932/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index d6d00b8d5464..76ff8053bd99 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.3`, `ee-8.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8db673742f3422282812f2fcb03eeea71199d276/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.4`, `ee-8.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/794c00f072d45f175e6643f6afe0b12950eaaec6/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.3`, `ce-8.0.0.3_1`](https://github.com/aerospike/aerospike-server.docker/blob/8db673742f3422282812f2fcb03eeea71199d276/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.4`, `ce-8.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/794c00f072d45f175e6643f6afe0b12950eaaec6/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) From 36147669185a0461e725e7cddc595287557a3bd1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Feb 2025 17:09:42 -0800 Subject: [PATCH 1933/2686] Run update.sh --- docker/README.md | 14 ++++++------- ghost/README.md | 4 ++-- memcached/README.md | 4 ++-- openjdk/README.md | 50 ++++++++++++++++++++++----------------------- postgres/README.md | 40 ++++++++++++++++++------------------ 5 files changed, 56 insertions(+), 56 deletions(-) diff --git a/docker/README.md b/docker/README.md index eabb3b7f5345..5c66ff39e922 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.0-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/cli/Dockerfile) +- [`28.0.0-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/cli/Dockerfile) - [`28.0.0-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.0-dind-alpine3.21`, `28.0.0`, `28.0`, `28`, `latest`, `28.0.0-alpine3.21`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind/Dockerfile) - [`28.0.0-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind-rootless/Dockerfile) -- [`28.0.0-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.0-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.0-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.0-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.0-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 891a195bb107..845693c6faf6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.109.6`, `5.109`, `5`, `latest`](https://github.com/docker-library/ghost/blob/6232bd91c2cbb7721466a8f1e8f0c797a0c29df0/5/debian/Dockerfile) +- [`5.110.0`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fa4922859bd9655374b3c08463b5de941204754b/5/debian/Dockerfile) -- [`5.109.6-alpine`, `5.109-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6232bd91c2cbb7721466a8f1e8f0c797a0c29df0/5/alpine/Dockerfile) +- [`5.110.0-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fa4922859bd9655374b3c08463b5de941204754b/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 3a6b31644c3a..401b4faba2c2 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.36`, `1.6`, `1`, `latest`, `1.6.36-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/e032009cac12ac69e00d95b3996d30e661a0fbe7/1/debian/Dockerfile) +- [`1.6.37`, `1.6`, `1`, `latest`, `1.6.37-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/333611d910c73ff4d66fb8d5b95e602452db1aca/1/debian/Dockerfile) -- [`1.6.36-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.36-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/e032009cac12ac69e00d95b3996d30e661a0fbe7/1/alpine/Dockerfile) +- [`1.6.37-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.37-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/333611d910c73ff4d66fb8d5b95e602452db1aca/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 34d02a41b4e7..f30a100d3433 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,29 +42,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-10-jdk-oraclelinux9`, `25-ea-10-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-10-jdk-oracle`, `25-ea-10-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-11-jdk-oraclelinux9`, `25-ea-11-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-11-jdk-oracle`, `25-ea-11-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-10-jdk-oraclelinux8`, `25-ea-10-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-11-jdk-oraclelinux8`, `25-ea-11-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-10-jdk-bookworm`, `25-ea-10-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/bookworm/Dockerfile) +- [`25-ea-11-jdk-bookworm`, `25-ea-11-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/bookworm/Dockerfile) -- [`25-ea-10-jdk-slim-bookworm`, `25-ea-10-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-10-jdk-slim`, `25-ea-10-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-11-jdk-slim-bookworm`, `25-ea-11-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-11-jdk-slim`, `25-ea-11-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-10-jdk-bullseye`, `25-ea-10-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/bullseye/Dockerfile) +- [`25-ea-11-jdk-bullseye`, `25-ea-11-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/bullseye/Dockerfile) -- [`25-ea-10-jdk-slim-bullseye`, `25-ea-10-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-11-jdk-slim-bullseye`, `25-ea-11-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-10-jdk-windowsservercore-ltsc2025`, `25-ea-10-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-11-jdk-windowsservercore-ltsc2025`, `25-ea-11-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-10-jdk-windowsservercore-ltsc2022`, `25-ea-10-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-11-jdk-windowsservercore-ltsc2022`, `25-ea-11-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-10-jdk-windowsservercore-1809`, `25-ea-10-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-11-jdk-windowsservercore-1809`, `25-ea-11-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-10-jdk-nanoserver-ltsc2025`, `25-ea-10-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-11-jdk-nanoserver-ltsc2025`, `25-ea-11-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-10-jdk-nanoserver-ltsc2022`, `25-ea-10-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-11-jdk-nanoserver-ltsc2022`, `25-ea-11-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-10-jdk-nanoserver-1809`, `25-ea-10-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-11-jdk-nanoserver-1809`, `25-ea-11-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) @@ -92,24 +92,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-10-jdk`, `25-ea-10`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-11-jdk`, `25-ea-11`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-10-jdk-windowsservercore`, `25-ea-10-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-11-jdk-windowsservercore`, `25-ea-11-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-10-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-10-jdk-nanoserver`, `25-ea-10-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-11-jdk-nanoserver`, `25-ea-11-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-10-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-10-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-10-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/41275c1fdfb84266fbbb60581078beeaca6626fa/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-11-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-11-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: diff --git a/postgres/README.md b/postgres/README.md index 33e9418e6bcc..5e9263a6f883 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.3`, `17`, `latest`, `17.3-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a537d6002b1a4bb92eb88e1e894332a76b1d2e6b/17/bookworm/Dockerfile) +- [`17.4`, `17`, `latest`, `17.4-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/bookworm/Dockerfile) -- [`17.3-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/a537d6002b1a4bb92eb88e1e894332a76b1d2e6b/17/bullseye/Dockerfile) +- [`17.4-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/bullseye/Dockerfile) -- [`17.3-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.3-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/alpine3.21/Dockerfile) +- [`17.4-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.4-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/alpine3.21/Dockerfile) -- [`17.3-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/22dad776d9f858f5fb1940ac165be76aa8521e49/17/alpine3.20/Dockerfile) +- [`17.4-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/alpine3.20/Dockerfile) -- [`16.7`, `16`, `16.7-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/bookworm/Dockerfile) +- [`16.8`, `16`, `16.8-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/bookworm/Dockerfile) -- [`16.7-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/bullseye/Dockerfile) +- [`16.8-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/bullseye/Dockerfile) -- [`16.7-alpine3.21`, `16-alpine3.21`, `16.7-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/alpine3.21/Dockerfile) +- [`16.8-alpine3.21`, `16-alpine3.21`, `16.8-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/alpine3.21/Dockerfile) -- [`16.7-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/c17c1aad6bc4a8cc9d0a1791d8facaa84171c05b/16/alpine3.20/Dockerfile) +- [`16.8-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/alpine3.20/Dockerfile) -- [`15.11`, `15`, `15.11-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/bookworm/Dockerfile) +- [`15.12`, `15`, `15.12-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/bookworm/Dockerfile) -- [`15.11-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/bullseye/Dockerfile) +- [`15.12-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/bullseye/Dockerfile) -- [`15.11-alpine3.21`, `15-alpine3.21`, `15.11-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/alpine3.21/Dockerfile) +- [`15.12-alpine3.21`, `15-alpine3.21`, `15.12-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/alpine3.21/Dockerfile) -- [`15.11-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/607fdbdadc175f112ebcf94a42272ca57e3b8ab2/15/alpine3.20/Dockerfile) +- [`15.12-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/alpine3.20/Dockerfile) -- [`14.16`, `14`, `14.16-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/bookworm/Dockerfile) +- [`14.17`, `14`, `14.17-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/bookworm/Dockerfile) -- [`14.16-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/bullseye/Dockerfile) +- [`14.17-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/bullseye/Dockerfile) -- [`14.16-alpine3.21`, `14-alpine3.21`, `14.16-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/alpine3.21/Dockerfile) +- [`14.17-alpine3.21`, `14-alpine3.21`, `14.17-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/alpine3.21/Dockerfile) -- [`14.16-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/4bc3d04127905a457a92d7eb42e7e677389b8135/14/alpine3.20/Dockerfile) +- [`14.17-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/alpine3.20/Dockerfile) -- [`13.19`, `13`, `13.19-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/bookworm/Dockerfile) +- [`13.20`, `13`, `13.20-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/bookworm/Dockerfile) -- [`13.19-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/bullseye/Dockerfile) +- [`13.20-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/bullseye/Dockerfile) -- [`13.19-alpine3.21`, `13-alpine3.21`, `13.19-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/alpine3.21/Dockerfile) +- [`13.20-alpine3.21`, `13-alpine3.21`, `13.20-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/alpine3.21/Dockerfile) -- [`13.19-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/7da49aaa6a5d1496288b8a54c40ac2860e2ac85b/13/alpine3.20/Dockerfile) +- [`13.20-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/alpine3.20/Dockerfile) # Quick reference (cont.) From 3374d4a256e00c033e2c8daecf78c5b607f39fea Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 11:09:32 -0800 Subject: [PATCH 1934/2686] Run update.sh --- api-firewall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index fd5fb8a7dd7c..573f12cff3a1 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.6`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/a6c6a4ee84c8410772e56c3b0588cde1728168a9/0.8.6/Dockerfile) +- [`0.8.7`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/ec634f6011bf283d76b90e7c126db63653fb2162/0.8.7/Dockerfile) # Quick reference (cont.) From 3e30f27a31b25d95ae73752ce436eee96a478425 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 12:09:34 -0800 Subject: [PATCH 1935/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- erlang/README.md | 6 +++--- photon/README.md | 4 ++-- traefik/README.md | 8 ++++---- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index f409673548cf..2a0db710e562 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.base) +- [`latest`, `base`, `base-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.base) -- [`base-devel`, `base-devel-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250216.0.309127`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c5e57588679339f02c5ff1a26902301c20c62898/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 305c62027d3a..3cdfd3eceb50 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2ced3612962c5897a919b672084673f378c8a372/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5db3d1be623758c58775e7407a5b3de1785aa333/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 555101280347..91b98b5f0861 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.2.3.0`, `27.2.3`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/Dockerfile) +- [`27.2.4.0`, `27.2.4`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/Dockerfile) -- [`27.2.3.0-slim`, `27.2.3-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/slim/Dockerfile) +- [`27.2.4.0-slim`, `27.2.4-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/slim/Dockerfile) -- [`27.2.3.0-alpine`, `27.2.3-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/3deecf12856b6c6431dc835f7abf4b3fa2c94468/27/alpine/Dockerfile) +- [`27.2.4.0-alpine`, `27.2.4-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 9e8d6b216c4c..322dde3820a8 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250202`, `latest`](https://github.com/vmware/photon-docker-image/blob/0364283b37a01ab50815028e6d92103557b65c3d/docker/Dockerfile) +- [`5.0`, `5.0-20250223`, `latest`](https://github.com/vmware/photon-docker-image/blob/3605670fdebd644ae53b7414011057825618cd9d/docker/Dockerfile) -- [`4.0`, `4.0-20250202`](https://github.com/vmware/photon-docker-image/blob/deef6f2d26a7662ebc30a03d16f39fff61b28fc1/docker/Dockerfile) +- [`4.0`, `4.0-20250223`](https://github.com/vmware/photon-docker-image/blob/2e9995ccd704e9c52b25c6eb6cd4f03a32b1ea3e/docker/Dockerfile) - [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index d32d493221e7..1dc3ad89a996 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -32,13 +32,13 @@ WARNING: - [`v3.3.3`, `3.3.3`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/alpine/Dockerfile) -- [`v2.11.20-windowsservercore-ltsc2022`, `2.11.20-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.21-windowsservercore-ltsc2022`, `2.11.21-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.20-windowsservercore-1809`, `2.11.20-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/1809/Dockerfile) +- [`v2.11.21-windowsservercore-1809`, `2.11.21-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/1809/Dockerfile) -- [`v2.11.20-nanoserver-ltsc2022`, `2.11.20-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.21-nanoserver-ltsc2022`, `2.11.21-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.20`, `2.11.20`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/17858f20fe51ffa4e0e42b77137d868a82268e58/v2.11/alpine/Dockerfile) +- [`v2.11.21`, `2.11.21`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/alpine/Dockerfile) # Quick reference (cont.) From fbb61ec0329be6f1e45bb49a2289099d749fc25c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 13:09:31 -0800 Subject: [PATCH 1936/2686] Run update.sh --- mongo/README.md | 74 +++++++++++++------------------------------------ 1 file changed, 19 insertions(+), 55 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index c24835e1f6d6..a41bd03db68d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,19 +28,17 @@ WARNING: ## Simple Tags -- [`8.0.5-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/5958f5e55353034428ab1cae0ecdbe285c90f258/8.0-rc/Dockerfile) +- [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) -- [`8.0.4-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) +- [`8.0.5-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.4-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.5-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.4-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.5-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.4-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) +- [`8.0.5-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.4-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8.0.4-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.5-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) - [`7.0.17-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/Dockerfile) @@ -78,41 +76,25 @@ WARNING: - [`6.0.20-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- [`5.0.31-focal`, `5.0-focal`, `5-focal`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/Dockerfile) - -- [`5.0.31-windowsservercore-ltsc2025`, `5.0-windowsservercore-ltsc2025`, `5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`5.0.31-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`, `5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`5.0.31-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) - -- [`5.0.31-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`5.0.31-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-1809/Dockerfile) - ## Shared Tags -- `8.0.5-rc2`, `8.0-rc`: - - - [`8.0.5-rc2-noble`](https://github.com/docker-library/mongo/blob/5958f5e55353034428ab1cae0ecdbe285c90f258/8.0-rc/Dockerfile) +- `8.0.5`, `8.0`, `8`, `latest`: -- `8.0.4`, `8.0`, `8`, `latest`: + - [`8.0.5-noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) + - [`8.0.5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) - - [`8.0.4-noble`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/Dockerfile) - - [`8.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) +- `8.0.5-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: -- `8.0.4-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: + - [`8.0.5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) - - [`8.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/windowsservercore-1809/Dockerfile) +- `8.0.5-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: -- `8.0.4-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - - [`8.0.4-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.4-nanoserver-1809`](https://github.com/docker-library/mongo/blob/3eed4008b42e739dc9ed4234d3da682462ffdc9c/8.0/windows/nanoserver-1809/Dockerfile) + - [`8.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) - `7.0.17-rc1`, `7.0-rc`: @@ -168,24 +150,6 @@ WARNING: - [`6.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) -- `5.0.31`, `5.0`, `5`: - - - [`5.0.31-focal`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/Dockerfile) - - [`5.0.31-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.31-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) - -- `5.0.31-windowsservercore`, `5.0-windowsservercore`, `5-windowsservercore`: - - - [`5.0.31-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`5.0.31-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`5.0.31-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/windowsservercore-1809/Dockerfile) - -- `5.0.31-nanoserver`, `5.0-nanoserver`, `5-nanoserver`: - - - [`5.0.31-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`5.0.31-nanoserver-1809`](https://github.com/docker-library/mongo/blob/df259e20c2b06ad20465701ba44f091ad7376734/5.0/windows/nanoserver-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: @@ -436,7 +400,7 @@ The `mongo` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `mongo:-windowsservercore` From 0bbe6e7f4a3a1b1682a0c8e3b3273148bdfe16a1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 14:09:29 -0800 Subject: [PATCH 1937/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 845693c6faf6..a4f56a5ddc0d 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.110.0`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/fa4922859bd9655374b3c08463b5de941204754b/5/debian/Dockerfile) +- [`5.110.1`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b9c1cb3433ea2139aeaf700f39e8d3022072ad0b/5/debian/Dockerfile) -- [`5.110.0-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fa4922859bd9655374b3c08463b5de941204754b/5/alpine/Dockerfile) +- [`5.110.1-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b9c1cb3433ea2139aeaf700f39e8d3022072ad0b/5/alpine/Dockerfile) # Quick reference (cont.) From 64aee72d5b263df65bf7adfb4627039350e84902 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 16:09:41 -0800 Subject: [PATCH 1938/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 8922261c0938..dac4279fb87f 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/07389fddb83df4179472e65a462e69a4941ddb2c/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/glibc/amd64/index.json) # Quick reference (cont.) From 8ac1c9a9981e5163a997a0eafc480c3be19ed671 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Feb 2025 17:09:31 -0800 Subject: [PATCH 1939/2686] Run update.sh --- debian/README.md | 48 +++++++++++++++++------------------ mongo/README.md | 66 +++++++++++++----------------------------------- 2 files changed, 42 insertions(+), 72 deletions(-) diff --git a/debian/README.md b/debian/README.md index 7d2f5afdd092..8fc3eaffa3f2 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250203`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250224`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250203-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250224-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250203`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250224`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250203-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250224-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/experimental/Dockerfile) +- [`experimental`, `experimental-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/rc-buggy/Dockerfile) -- [`sid`, `sid-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/sid/oci/index.json) +- [`sid`, `sid-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/sid/oci/index.json) -- [`sid-slim`, `sid-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/sid/slim/oci/index.json) -- [`stable`, `stable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/oci/index.json) +- [`stable`, `stable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/slim/oci/index.json) -- [`testing`, `testing-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/oci/index.json) +- [`testing`, `testing-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/oci/index.json) +- [`trixie`, `trixie-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250203`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/unstable/oci/index.json) +- [`unstable`, `unstable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250203-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/32138bf51ca52d8a4a8dcf24953d464fbedbf4bb/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index a41bd03db68d..880b5f2659fc 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -40,29 +40,17 @@ WARNING: - [`8.0.5-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.17-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/Dockerfile) +- [`7.0.17-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) -- [`7.0.17-rc1-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.17-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.17-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.17-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.17-rc1-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`7.0.17-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.17-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.17-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.17-rc1-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`7.0.16-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) - -- [`7.0.16-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.16-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.16-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) - -- [`7.0.16-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.16-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.17-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) @@ -96,41 +84,23 @@ WARNING: - [`8.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.17-rc1`, `7.0-rc`: - - - [`7.0.17-rc1-jammy`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/Dockerfile) - - [`7.0.17-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `7.0.17-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.17-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `7.0.17-rc1-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.17-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.17-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6943c17830590e5a1ffe2cfbb247a1868d50bd2c/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- `7.0.16`, `7.0`, `7`: +- `7.0.17`, `7.0`, `7`: - - [`7.0.16-jammy`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/Dockerfile) - - [`7.0.16-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.17-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) + - [`7.0.17-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.16-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.17-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.16-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.16-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.17-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.16-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.17-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.16-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.16-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72916ee710ba8eef042048bdabda8302a0912a81/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.20`, `6.0`, `6`: From 8a722b547781da2a3a595ae23cba5b87a6a0eb36 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Feb 2025 10:09:35 -0800 Subject: [PATCH 1940/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- neo4j/README.md | 8 ++++---- traefik/README.md | 8 ++++---- xwiki/README.md | 6 +++--- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 8ef833dcd9ea..c5783365326c 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/elasticsearch/Dockerfile) -- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/elasticsearch/Dockerfile) +- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) - [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index f741288ef33f..bb32c96787eb 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/kibana/Dockerfile) -- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/kibana/Dockerfile) +- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) - [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index d05f1c1cf527..a05f9e4e0d44 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,7 +26,7 @@ WARNING: - [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/logstash/Dockerfile) -- [`7.17.27`](https://github.com/elastic/dockerfiles/blob/a39d490136e8095519b2e4b148ee5e2e8d046fc9/logstash/Dockerfile) +- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) - [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/logstash/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 864960003702..204795dfb819 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.01.0-enterprise-ubi9`, `2025.01-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/ubi9/enterprise/Dockerfile) -- [`5.26.2-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.2-community`, `5.26-community`, `5-community`, `5.26.2-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.2`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/bullseye/community/Dockerfile) +- [`5.26.3-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.3-community`, `5.26-community`, `5-community`, `5.26.3-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.3`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/bullseye/community/Dockerfile) -- [`5.26.2-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.2-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/bullseye/enterprise/Dockerfile) +- [`5.26.3-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.3-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/bullseye/enterprise/Dockerfile) -- [`5.26.2-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.2-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/ubi9/community/Dockerfile) +- [`5.26.3-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.3-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/ubi9/community/Dockerfile) -- [`5.26.2-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/4ac089632533943670a02953537803e8504bf9f8/5.26.2/ubi9/enterprise/Dockerfile) +- [`5.26.3-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/ubi9/enterprise/Dockerfile) - [`4.4.41`, `4.4.41-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/community/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 1dc3ad89a996..1526965b09d3 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.3-windowsservercore-ltsc2022`, `3.3.3-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.4-windowsservercore-ltsc2022`, `3.3.4-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.3-windowsservercore-1809`, `3.3.3-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/1809/Dockerfile) +- [`v3.3.4-windowsservercore-1809`, `3.3.4-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/1809/Dockerfile) -- [`v3.3.3-nanoserver-ltsc2022`, `3.3.3-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.4-nanoserver-ltsc2022`, `3.3.4-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.3`, `3.3.3`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/039d2d724b144fcba54ba572f3d4aa34ce286a6f/v3.3/alpine/Dockerfile) +- [`v3.3.4`, `3.3.4`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/alpine/Dockerfile) - [`v2.11.21-windowsservercore-ltsc2022`, `2.11.21-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/servercore-ltsc2022/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index a83cdbbf26e8..bf9c887173f6 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.0`, `17.0.0`, `17-mysql-tomcat`, `17.0-mysql-tomcat`, `17.0.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/mysql-tomcat/Dockerfile) +- [`17`, `17.1`, `17.1.0`, `17-mysql-tomcat`, `17.1-mysql-tomcat`, `17.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.0-postgres-tomcat`, `17.0.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.1-postgres-tomcat`, `17.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.0-mariadb-tomcat`, `17.0.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/381926879a24fb09d3b7611b883c78eb4576d3a2/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.1-mariadb-tomcat`, `17.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.4`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.4-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/mysql-tomcat/Dockerfile) From aaf4aad3145f4c3ee03dc1bb150e402624ee92a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Feb 2025 11:09:43 -0800 Subject: [PATCH 1941/2686] Run update.sh --- adminer/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 7fcfcef86d4a..dbe905293bb1 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -**No supported tags** +- [`4.17.1`, `4`, `latest`, `4.17.1-standalone`, `4-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) + +- [`4.17.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/fastcgi/Dockerfile) # Quick reference (cont.) @@ -32,7 +34,7 @@ WARNING: [https://github.com/TimWolla/docker-adminer/issues](https://github.com/TimWolla/docker-adminer/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** + [`amd64`](https://hub.docker.com/r/amd64/adminer/), [`arm32v6`](https://hub.docker.com/r/arm32v6/adminer/), [`arm32v7`](https://hub.docker.com/r/arm32v7/adminer/), [`arm64v8`](https://hub.docker.com/r/arm64v8/adminer/), [`i386`](https://hub.docker.com/r/i386/adminer/), [`ppc64le`](https://hub.docker.com/r/ppc64le/adminer/), [`riscv64`](https://hub.docker.com/r/riscv64/adminer/), [`s390x`](https://hub.docker.com/r/s390x/adminer/) - **Published image artifact details**: [repo-info repo's `repos/adminer/` directory](https://github.com/docker-library/repo-info/blob/master/repos/adminer) ([history](https://github.com/docker-library/repo-info/commits/master/repos/adminer)) From 7692e8dfc6342693ae4df3f03b409e66f85f560c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Feb 2025 13:09:44 -0800 Subject: [PATCH 1942/2686] Run update.sh --- nats/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nats/README.md b/nats/README.md index a97d2fa526f7..08da5dd05622 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,28 @@ WARNING: ## Simple Tags -- [`2.10.25-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.25-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/alpine3.21/Dockerfile) +- [`2.10.26-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.26-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/alpine3.21/Dockerfile) -- [`2.10.25-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.25-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/scratch/Dockerfile) +- [`2.10.26-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.26-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/scratch/Dockerfile) -- [`2.10.25-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.26-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.25-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.26-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.25`, `2.10`, `2`, `latest`: +- `2.10.26`, `2.10`, `2`, `latest`: - - [`2.10.25-scratch`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/scratch/Dockerfile) - - [`2.10.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.26-scratch`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/scratch/Dockerfile) + - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.25-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.26-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.25-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.26-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.25-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.26-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.10.25-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/cbb9ecd4be891b33b32cc62f1dd3881be0dc8e05/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From f851ac6d9bdeb9d70cb2309f82b6083669d36ef0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Feb 2025 15:09:34 -0800 Subject: [PATCH 1943/2686] Run update.sh --- aerospike/README.md | 4 ++-- bash/README.md | 2 +- golang/README.md | 12 ++++++------ telegraf/README.md | 12 ++++++------ 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 76ff8053bd99..c0725da72f5e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.4`, `ee-8.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/794c00f072d45f175e6643f6afe0b12950eaaec6/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.5`, `ee-8.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/a38d5331fe9c74c5cfd5b723505eaee056652084/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.4`, `ce-8.0.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/794c00f072d45f175e6643f6afe0b12950eaaec6/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.5`, `ce-8.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/a38d5331fe9c74c5cfd5b723505eaee056652084/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index f9d4e0487d03..68765f4f7501 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250212`, `devel`, `devel-20250212-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/c9606637c1eb62f6a6226536446393e9f2606e83/devel/Dockerfile) +- [`devel-20250224`, `devel`, `devel-20250224-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d5275aed4df135662b43d33e15c825b93e81ec09/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 51ccc3b70baf..0597cc3b0c68 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250216-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bookworm/Dockerfile) +- [`tip-20250223-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bookworm/Dockerfile) -- [`tip-20250216-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bullseye/Dockerfile) +- [`tip-20250223-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bullseye/Dockerfile) -- [`tip-20250216-alpine3.21`, `tip-alpine3.21`, `tip-20250216-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/alpine3.21/Dockerfile) +- [`tip-20250223-alpine3.21`, `tip-alpine3.21`, `tip-20250223-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/alpine3.21/Dockerfile) -- [`tip-20250216-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/alpine3.20/Dockerfile) +- [`tip-20250223-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250216`, `tip`: +- `tip-20250223`, `tip`: - - [`tip-20250216-bookworm`](https://github.com/docker-library/golang/blob/f6c81f9d0a9b91c3276b865cd87cc83cd717fae7/tip/bookworm/Dockerfile) + - [`tip-20250223-bookworm`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index f89a1c98c575..33d6af6f59d0 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.31/Dockerfile) +- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.31/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.31/alpine/Dockerfile) +- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.31/alpine/Dockerfile) -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/87928523bc786acb832213dc99733807ee1765c8/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.33/alpine/Dockerfile) # Quick reference (cont.) From 6b78b6bf5d0f37d0752871463a784c8f243a3b70 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Feb 2025 17:09:44 -0800 Subject: [PATCH 1944/2686] Run update.sh --- nextcloud/README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 13c2eb33d52a..7b8d955c814a 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`29.0.12-apache`, `29.0-apache`, `29-apache`, `29.0.12`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/apache/Dockerfile) +- [`29.0.12-apache`, `29.0-apache`, `29-apache`, `29.0.12`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/apache/Dockerfile) -- [`29.0.12-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/fpm/Dockerfile) +- [`29.0.12-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/fpm/Dockerfile) -- [`29.0.12-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/29/fpm-alpine/Dockerfile) +- [`29.0.12-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/fpm-alpine/Dockerfile) -- [`30.0.6-apache`, `30.0-apache`, `30-apache`, `apache`, `stable-apache`, `production-apache`, `30.0.6`, `30.0`, `30`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/apache/Dockerfile) +- [`30.0.6-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.6`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/apache/Dockerfile) -- [`30.0.6-fpm`, `30.0-fpm`, `30-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/fpm/Dockerfile) +- [`30.0.6-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/fpm/Dockerfile) -- [`30.0.6-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4f691770aee32e738f9c3d2639538f644b0c5728/30/fpm-alpine/Dockerfile) +- [`30.0.6-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/fpm-alpine/Dockerfile) + +- [`31.0.0-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.0`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/apache/Dockerfile) + +- [`31.0.0-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/fpm/Dockerfile) + +- [`31.0.0-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From 33cc78f9ccf9fb278aeb00c7f37be843da84975e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Feb 2025 12:09:44 -0800 Subject: [PATCH 1945/2686] Run update.sh --- emqx/README.md | 2 +- node/README.md | 12 ++++----- open-liberty/README.md | 54 ++++++++++++++++++------------------- percona/README.md | 2 +- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 5 files changed, 59 insertions(+), 59 deletions(-) diff --git a/emqx/README.md b/emqx/README.md index 4b699b0c9f2e..966de337fc93 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.4`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/2f016465686acf8d3d8ac5d9470839e213a195b8/5.8/Dockerfile) +- [`5.8.5`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5194bd9de936dddb2b09f20ebbe76161854bab19/5.8/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 44102ced0bff..29a258e84c33 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.8-alpine3.20`, `23.8.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.9-alpine3.20`, `23.9.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.8-alpine`, `23.8-alpine3.21`, `23.8.0-alpine`, `23.8.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.9-alpine`, `23.9-alpine3.21`, `23.9.0-alpine`, `23.9.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.8`, `23.8-bookworm`, `23.8.0`, `23.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.9`, `23.9-bookworm`, `23.9.0`, `23.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.8-bookworm-slim`, `23.8-slim`, `23.8.0-bookworm-slim`, `23.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.9-bookworm-slim`, `23.9-slim`, `23.9.0-bookworm-slim`, `23.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.8-bullseye`, `23.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.9-bullseye`, `23.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.8-bullseye-slim`, `23.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a3bf3e770e23c5c9e0d314f39be62d9148d9d7d3/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.9-bullseye-slim`, `23.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index effd0c6ff28c..e02dce274506 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.1-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.1-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.1-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.1-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.1-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.1-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/d6171e9b0da573d8302d62f45ccd7c1f807188fa/releases/25.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 779daad17047..934ccc006d2d 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.40-31-centos`, `8.0-centos`, `8-centos`, `8.0.40-31`, `8.0`, `8`, `ps-8.0.40-31`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/aa29ac7b58f30ad459cbee36d5f1ad0891d5a0f4/percona-server-8.0/Dockerfile-dockerhub) +- [`8.0.41-32-centos`, `8.0-centos`, `8-centos`, `8.0.41-32`, `8.0`, `8`, `ps-8.0.41-32`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/73ddc25d7165fa77bda3e92191ec2fc5536c500a/percona-server-8.0/Dockerfile-dockerhub) - [`psmdb-7.0.15`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-7.0/Dockerfile-dockerhub) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 0a69b64b5ef9..286ded5d5706 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.1-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.1-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.1-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.1-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.1-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.1-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c6a2add70aeb65c16fd07310060fa0c4f6be01c6/ga/25.0.0.1/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 1e7de00dd4fb2edf174089a3f04bb91e8df1d60f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Feb 2025 13:09:29 -0800 Subject: [PATCH 1946/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index c2170cfe2a2a..71b67012c44c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.0-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.0`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/d114946ad0c5fa6feb95d0d3133d5acd66d322a7/stable/bookworm/Dockerfile) +- [`3.7.1-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.1`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/dd2e9b5f11fbfa06a8e10cecf93feacfaa958108/stable/bookworm/Dockerfile) -- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/d114946ad0c5fa6feb95d0d3133d5acd66d322a7/beta/bookworm/Dockerfile) +- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/dd2e9b5f11fbfa06a8e10cecf93feacfaa958108/beta/bookworm/Dockerfile) # Quick reference (cont.) From 7195708176f5f4264ed33078ddec668a05bde38b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 26 Feb 2025 14:17:23 -0800 Subject: [PATCH 1947/2686] Move rootless notes to a variant stub Also, add an explicit note about how to switch the UID/GID and drop the note about 19.03 (long since EOL). --- docker/content.md | 21 +-------------------- docker/variant-rootless.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 20 deletions(-) create mode 100644 docker/variant-rootless.md diff --git a/docker/content.md b/docker/content.md index d1c73c2f5f69..c8ac355a8afe 100644 --- a/docker/content.md +++ b/docker/content.md @@ -32,7 +32,7 @@ Inside the directory specified by `DOCKER_TLS_CERTDIR`, the entrypoint scripts w In order to make use of this functionality from a "client" container, at least the `client` subdirectory of the `$DOCKER_TLS_CERTDIR` directory needs to be shared (as illustrated in the following examples). -To disable this image behavior, simply override the container command or entrypoint to run `dockerd` directly (`... docker:dind dockerd ...` or `... --entrypoint dockerd docker:dind ...`). +To disable this image behavior, simply override the container command or entrypoint to run `dockerd` directly (`... %%IMAGE%%:dind dockerd ...` or `... --entrypoint dockerd %%IMAGE%%:dind ...`). ## Start a daemon instance @@ -205,25 +205,6 @@ $ docker run --privileged --name some-docker -d \ Some of these will not be supported based on the settings on the host's `dockerd`, such as `--ulimit nofile=-1`, giving errors that look like `error setting rlimit type 7: operation not permitted`, and some may inherit sane values from the host `dockerd` instance or may not apply for your usage of Docker-in-Docker (for example, you likely want to set `--oom-score-adj` to a value that's higher than `dockerd` on the host so that your Docker-in-Docker instance is killed before the host Docker instance is). -## Rootless - -For more information about using the experimental "rootless" image variants, see [docker-library/docker#174](https://github.com/docker-library/docker/pull/174). - -**Note:** just like the regular `dind` images, `--privileged` is required for Docker-in-Docker to function properly ([docker-library/docker#151](https://github.com/docker-library/docker/issues/151#issuecomment-483185972) & [docker-library/docker#281](https://github.com/docker-library/docker/issues/281#issuecomment-744766015)). For `19.03.x` rootless images, an argument of `--experimental` is required for `dockerd` ([docker/docker#40759](https://github.com/docker/docker/pull/40759)). - -Basic example usage: - -```console -$ docker run -d --name some-docker --privileged docker:dind-rootless -$ docker logs --tail=3 some-docker # to verify the daemon has finished generating TLS certificates and is listening successfully -time="xxx" level=info msg="Daemon has completed initialization" -time="xxx" level=info msg="API listen on /run/user/1000/docker.sock" -time="xxx" level=info msg="API listen on [::]:2376" -$ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint.sh" which auto-sets "DOCKER_HOST" appropriately -/ $ docker info --format '{{ json .SecurityOptions }}' -["name=seccomp,profile=default","name=rootless"] -``` - ## Where to Store Data Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including: diff --git a/docker/variant-rootless.md b/docker/variant-rootless.md new file mode 100644 index 000000000000..8d8f20fb46b4 --- /dev/null +++ b/docker/variant-rootless.md @@ -0,0 +1,30 @@ +## `%%IMAGE%%:-rootless` + +For more information about using the experimental "rootless" image variants, see [docker-library/docker#174](https://github.com/docker-library/docker/pull/174). + +**Note:** just like the regular `dind` images, `--privileged` is required for Docker-in-Docker to function properly ([docker-library/docker#151](https://github.com/docker-library/docker/issues/151#issuecomment-483185972) & [docker-library/docker#281](https://github.com/docker-library/docker/issues/281#issuecomment-744766015)), which is a security issue that needs to be treated appropriately. + +Basic example usage: + +```console +$ docker run -d --name some-docker --privileged %%IMAGE%%:dind-rootless +$ docker logs --tail=3 some-docker # to verify the daemon has finished generating TLS certificates and is listening successfully +time="xxx" level=info msg="Daemon has completed initialization" +time="xxx" level=info msg="API listen on /run/user/1000/docker.sock" +time="xxx" level=info msg="API listen on [::]:2376" +$ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint.sh" which auto-sets "DOCKER_HOST" appropriately +/ $ docker info --format '{{ json .SecurityOptions }}' +["name=seccomp,profile=default","name=rootless"] +``` + +To run with a different UID/GID than the one baked into the image, modify `/etc/passwd`, `/etc/group`, and filesystem permissions (especially for the `rootless` user's home directory) as appropriate; for example: + +```dockerfile +FROM %%IMAGE%%:dind-rootless +USER root +RUN set -eux; \ + sed -i -e 's/^rootless:1000:1000:/rootless:1234:5678:/' /etc/passwd; \ + sed -i -e 's/^rootless:1000:/:5678:/' /etc/group; \ + chown -R rootless ~rootless +USER rootless +``` From b69d91212e96908907e53e1dcce2e75d1dc3b915 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Feb 2025 15:09:39 -0800 Subject: [PATCH 1948/2686] Run update.sh --- docker/README.md | 20 +++++----- pypy/README.md | 92 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 16 ++++---- 3 files changed, 64 insertions(+), 64 deletions(-) diff --git a/docker/README.md b/docker/README.md index 5c66ff39e922..31885ea6e115 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.0-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/cli/Dockerfile) +- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/cli/Dockerfile) -- [`28.0.0-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.0-dind-alpine3.21`, `28.0.0`, `28.0`, `28`, `latest`, `28.0.0-alpine3.21`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind/Dockerfile) +- [`28.0.1-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.1-dind-alpine3.21`, `28.0.1`, `28.0`, `28`, `latest`, `28.0.1-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind/Dockerfile) -- [`28.0.0-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/35c016d0c0f0be4dc523bc1108d7fa2681db8306/28/dind-rootless/Dockerfile) +- [`28.0.1-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind-rootless/Dockerfile) -- [`28.0.0-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.0-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.0-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.0.0-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.0.1-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/c9e1447b8f26065eb1dccb70ab88e62ee6c2085d/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index cf3d21d5d553..5be875bdcbbc 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,84 +28,84 @@ WARNING: ## Simple Tags -- [`3.11-7.3.18-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/bookworm/Dockerfile) +- [`3.11-7.3.19-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/bookworm/Dockerfile) -- [`3.11-7.3.18-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.18-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/slim-bookworm/Dockerfile) +- [`3.11-7.3.19-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.19-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/slim-bookworm/Dockerfile) -- [`3.11-7.3.18-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.11-7.3.19-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.11-7.3.18-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11-7.3.19-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11-7.3.18-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11-7.3.19-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10-7.3.18-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.18-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) +- [`3.10-7.3.19-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.19-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bookworm/Dockerfile) -- [`3.10-7.3.18-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.18-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.18-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.18-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.19-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.19-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.19-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.19-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.18-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.18-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bullseye/Dockerfile) +- [`3.10-7.3.19-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.19-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bullseye/Dockerfile) -- [`3.10-7.3.18-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.18-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.19-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.19-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.18-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.18-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.10-7.3.19-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.19-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.10-7.3.18-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.18-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.19-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.19-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.18-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.18-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.19-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.19-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.18-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.18-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bookworm/Dockerfile) +- [`2.7-7.3.19-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.19-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bookworm/Dockerfile) -- [`2.7-7.3.18-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.18-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.18-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.18-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.19-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.19-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.19-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.19-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.18-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.18-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bullseye/Dockerfile) +- [`2.7-7.3.19-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.19-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bullseye/Dockerfile) -- [`2.7-7.3.18-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.18-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.19-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.19-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.18-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.18-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) +- [`2.7-7.3.19-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.19-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) -- [`2.7-7.3.18-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.18-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.19-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.19-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.18-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.18-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.19-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.19-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `3.11-7.3.18`, `3.11-7.3`, `3.11-7`, `3.11`: +- `3.11-7.3.19`, `3.11-7.3`, `3.11-7`, `3.11`: - - [`3.11-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/bookworm/Dockerfile) - - [`3.11-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/bookworm/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.11-7.3.18-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: +- `3.11-7.3.19-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: - - [`3.11-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/a1c6fd6d9e1cf36ca056c9d8326019d4c1b39e9a/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.18`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.18`, `3-7.3`, `3-7`, `3`, `latest`: +- `3.10-7.3.19`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.19`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/bookworm/Dockerfile) - - [`3.10-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bookworm/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) -- `3.10-7.3.18-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.18-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.10-7.3.19-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.19-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/fd7662f2fa3596801320489e5880752d7537c65d/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.18`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.18`, `2-7.3`, `2-7`, `2`: +- `2.7-7.3.19`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.19`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.18-bookworm`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/bookworm/Dockerfile) - - [`2.7-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bookworm/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) -- `2.7-7.3.18-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.18-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: +- `2.7-7.3.19-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.19-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.18-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.18-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.18-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/2251547621d1c4b704aeb2135ca8a8b0a188c02b/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 152bfe3c061b..a7dff04ca204 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/0698c475d60876b794e9fcee5a5f91fb41e18b8f/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/535e10c8b28e4dd55fe40849a4be65dbc92822e7/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.4-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0698c475d60876b794e9fcee5a5f91fb41e18b8f/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/535e10c8b28e4dd55fe40849a4be65dbc92822e7/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.4-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.6`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/5095943110df494043917098f99c17ea10591485/4.0/ubuntu/Dockerfile) +- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/96a3b27b6e0be0a66dbcd189168ff2369c7a47f3/4.0/ubuntu/Dockerfile) -- [`4.0.6-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.7-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.6-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5095943110df494043917098f99c17ea10591485/4.0/alpine/Dockerfile) +- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/96a3b27b6e0be0a66dbcd189168ff2369c7a47f3/4.0/alpine/Dockerfile) -- [`4.0.6-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.7-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/7c0cf4faec0434cebe92606f05241a104c79b4b6/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/0493ba78b10522172b98215343cc50dbebc87374/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/7c0cf4faec0434cebe92606f05241a104c79b4b6/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/0493ba78b10522172b98215343cc50dbebc87374/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From 83c085f1295326a66281108e441366d4b6465a11 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Feb 2025 16:09:35 -0800 Subject: [PATCH 1949/2686] Run update.sh --- docker/README.md | 50 ++++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/docker/README.md b/docker/README.md index 31885ea6e115..c4dab9ae1912 100644 --- a/docker/README.md +++ b/docker/README.md @@ -274,25 +274,6 @@ $ docker run --privileged --name some-docker -d \ Some of these will not be supported based on the settings on the host's `dockerd`, such as `--ulimit nofile=-1`, giving errors that look like `error setting rlimit type 7: operation not permitted`, and some may inherit sane values from the host `dockerd` instance or may not apply for your usage of Docker-in-Docker (for example, you likely want to set `--oom-score-adj` to a value that's higher than `dockerd` on the host so that your Docker-in-Docker instance is killed before the host Docker instance is). -## Rootless - -For more information about using the experimental "rootless" image variants, see [docker-library/docker#174](https://github.com/docker-library/docker/pull/174). - -**Note:** just like the regular `dind` images, `--privileged` is required for Docker-in-Docker to function properly ([docker-library/docker#151](https://github.com/docker-library/docker/issues/151#issuecomment-483185972) & [docker-library/docker#281](https://github.com/docker-library/docker/issues/281#issuecomment-744766015)). For `19.03.x` rootless images, an argument of `--experimental` is required for `dockerd` ([docker/docker#40759](https://github.com/docker/docker/pull/40759)). - -Basic example usage: - -```console -$ docker run -d --name some-docker --privileged docker:dind-rootless -$ docker logs --tail=3 some-docker # to verify the daemon has finished generating TLS certificates and is listening successfully -time="xxx" level=info msg="Daemon has completed initialization" -time="xxx" level=info msg="API listen on /run/user/1000/docker.sock" -time="xxx" level=info msg="API listen on [::]:2376" -$ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint.sh" which auto-sets "DOCKER_HOST" appropriately -/ $ docker info --format '{{ json .SecurityOptions }}' -["name=seccomp,profile=default","name=rootless"] -``` - ## Where to Store Data Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `docker` images to familiarize themselves with the options available, including: @@ -319,6 +300,37 @@ The `docker` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +## `docker:-rootless` + +For more information about using the experimental "rootless" image variants, see [docker-library/docker#174](https://github.com/docker-library/docker/pull/174). + +**Note:** just like the regular `dind` images, `--privileged` is required for Docker-in-Docker to function properly ([docker-library/docker#151](https://github.com/docker-library/docker/issues/151#issuecomment-483185972) & [docker-library/docker#281](https://github.com/docker-library/docker/issues/281#issuecomment-744766015)), which is a security issue that needs to be treated appropriately. + +Basic example usage: + +```console +$ docker run -d --name some-docker --privileged docker:dind-rootless +$ docker logs --tail=3 some-docker # to verify the daemon has finished generating TLS certificates and is listening successfully +time="xxx" level=info msg="Daemon has completed initialization" +time="xxx" level=info msg="API listen on /run/user/1000/docker.sock" +time="xxx" level=info msg="API listen on [::]:2376" +$ docker exec -it some-docker docker-entrypoint.sh sh # using "docker-entrypoint.sh" which auto-sets "DOCKER_HOST" appropriately +/ $ docker info --format '{{ json .SecurityOptions }}' +["name=seccomp,profile=default","name=rootless"] +``` + +To run with a different UID/GID than the one baked into the image, modify `/etc/passwd`, `/etc/group`, and filesystem permissions (especially for the `rootless` user's home directory) as appropriate; for example: + +```dockerfile +FROM docker:dind-rootless +USER root +RUN set -eux; \ + sed -i -e 's/^rootless:1000:1000:/rootless:1234:5678:/' /etc/passwd; \ + sed -i -e 's/^rootless:1000:/:5678:/' /etc/group; \ + chown -R rootless ~rootless +USER rootless +``` + ## `docker:-windowsservercore` Unfortunately, Windows does not support nested containers, so this image variant only contains the client (intended for use against an existing Docker engine, ala `-v //./pipe/docker_engine://./pipe/docker_engine`). From 6dde1cc0563c7c3d9114a12a55496ddf89d45e8a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Feb 2025 10:09:30 -0800 Subject: [PATCH 1950/2686] Run update.sh --- api-firewall/README.md | 2 +- haskell/README.md | 2 +- hylang/README.md | 107 +++++++++++++++++++++++------------------ rocket.chat/README.md | 6 +-- 4 files changed, 66 insertions(+), 51 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 573f12cff3a1..2a641d7a732a 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.7`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/ec634f6011bf283d76b90e7c126db63653fb2162/0.8.7/Dockerfile) +- [`0.8.8`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/9d436f593619de8d85f9da72330d37bdb5a052c6/0.8.8/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index f7732c31a8eb..ae09d2c186c1 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/bullseye/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/bullseye/Dockerfile) - [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/slim-bullseye/Dockerfile) diff --git a/hylang/README.md b/hylang/README.md index 38f072b32e5b..986950d32732 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,102 +28,117 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-pypy3.11-bookworm`, `1.0-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-pypy3.11-windowsservercore-ltsc2025`, `1.0-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) +- [`1.0.0-pypy3.11-windowsservercore-ltsc2022`, `1.0-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.11-windowsservercore-1809`, `1.0-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + +- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bookworm) + +- `1.0.0-pypy3.11`, `1.0-pypy3.11`, `1-pypy3.11`, `pypy3.11`: + + - [`1.0.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.0.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.0.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/6672ad2ce79b2cb434a9f087a7af6df664de9ecd/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 100da3941504..4c2188f4a572 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -26,11 +26,11 @@ WARNING: - [`7.3.2`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.3/Dockerfile) -- [`7.2.3`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.2/Dockerfile) +- [`7.2.4`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.2/Dockerfile) -- [`7.1.3`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.1/Dockerfile) +- [`7.1.4`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.1/Dockerfile) -- [`7.0.7`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.0/Dockerfile) +- [`7.0.8`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) From 3b28222e38a8f7b003c0a5843ff5fadae8ed2a10 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Feb 2025 12:10:55 -0800 Subject: [PATCH 1951/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 7038857b1838..45251b210f1d 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250203.1`](https://github.com/amazonlinux/container-images/blob/dcd3593bb82fac820a4dc25d028d8e46c2424bcb/Dockerfile) +- [`2023`, `latest`, `2023.6.20250218.2`](https://github.com/amazonlinux/container-images/blob/271d0bf7ec6d134694d67722f3bda9af6cbcccd4/Dockerfile) -- [`2`, `2.0.20250201.0`](https://github.com/amazonlinux/container-images/blob/35791b0faed7f8ba07b37a377e9bab1bcfa496f3/Dockerfile) +- [`2`, `2.0.20250220.0`](https://github.com/amazonlinux/container-images/blob/2d1136398a8951e414a869392af0636d7f326822/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From f25c34d5a8032d57793d209b7124842bfbbf8a25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Feb 2025 17:09:35 -0800 Subject: [PATCH 1952/2686] Run update.sh --- php/README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/php/README.md b/php/README.md index 7cf89226fee2..6b2d13312c72 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.5RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.5RC1-bookworm`, `8.4-rc-bookworm`, `8.4.5RC1-cli`, `8.4-rc-cli`, `8.4.5RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.5RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.5RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.5RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.5RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.5RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.5RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.5RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.5RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.5RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.5RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.5RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.5RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.5RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.5RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.5RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.5RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.5RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.5RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.5RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.5RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.5RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.5RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.5RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.4-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.4-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.4-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.4`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/cli/Dockerfile) - [`8.4.4-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.4-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.4-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.18RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.18RC1-bookworm`, `8.3-rc-bookworm`, `8.3.18RC1-cli`, `8.3-rc-cli`, `8.3.18RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.18RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.18RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.18RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.18RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.18RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.18RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.18RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.18RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.18RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.18RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.18RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.18RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.18RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.18RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.18RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.18RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.18RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.18RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.18RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.18RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.18RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.18RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.18RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.17-cli-bookworm`, `8.3-cli-bookworm`, `8.3.17-bookworm`, `8.3-bookworm`, `8.3.17-cli`, `8.3-cli`, `8.3.17`, `8.3`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/cli/Dockerfile) - [`8.3.17-apache-bookworm`, `8.3-apache-bookworm`, `8.3.17-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/apache/Dockerfile) From b0db21ddc19edf09e752617ae8302f080e03a076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Fri, 28 Feb 2025 11:45:56 +0100 Subject: [PATCH 1953/2686] Fix YOURLS documentation link in README content Closes #2545 --- yourls/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yourls/content.md b/yourls/content.md index 404ab6d96da2..8a0b18ab1e00 100644 --- a/yourls/content.md +++ b/yourls/content.md @@ -42,7 +42,7 @@ Then, access it via `http://localhost:8080/admin/` or `http://:8080/adm ## Environment Variables When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command line. -The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/#Config). +The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/docs/guide/essentials/configuration). A few notable/important examples for using this Docker image include the following. ### `YOURLS_SITE` From 6ab31c2054b1dfc3cc65723a669a124245b7a0d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Feb 2025 11:09:36 -0800 Subject: [PATCH 1954/2686] Run update.sh --- ghost/README.md | 4 ++-- neo4j/README.md | 8 ++++---- yourls/README.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a4f56a5ddc0d..5cc4868771fe 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.110.1`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/b9c1cb3433ea2139aeaf700f39e8d3022072ad0b/5/debian/Dockerfile) +- [`5.110.2`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/60d4f236150826b7b8c2f28765d6abebadc2da6c/5/debian/Dockerfile) -- [`5.110.1-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/b9c1cb3433ea2139aeaf700f39e8d3022072ad0b/5/alpine/Dockerfile) +- [`5.110.2-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/60d4f236150826b7b8c2f28765d6abebadc2da6c/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 204795dfb819..90fa24317526 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.01.0-community-bullseye`, `2025.01-community-bullseye`, `2025-community-bullseye`, `2025.01.0-community`, `2025.01-community`, `2025-community`, `2025.01.0-bullseye`, `2025.01-bullseye`, `2025-bullseye`, `2025.01.0`, `2025.01`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/bullseye/community/Dockerfile) +- [`2025.02.0-community-bullseye`, `2025.02-community-bullseye`, `2025-community-bullseye`, `2025.02.0-community`, `2025.02-community`, `2025-community`, `2025.02.0-bullseye`, `2025.02-bullseye`, `2025-bullseye`, `2025.02.0`, `2025.02`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/bullseye/community/Dockerfile) -- [`2025.01.0-enterprise-bullseye`, `2025.01-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.01.0-enterprise`, `2025.01-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/bullseye/enterprise/Dockerfile) +- [`2025.02.0-enterprise-bullseye`, `2025.02-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.02.0-enterprise`, `2025.02-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/bullseye/enterprise/Dockerfile) -- [`2025.01.0-community-ubi9`, `2025.01-community-ubi9`, `2025-community-ubi9`, `2025.01.0-ubi9`, `2025.01-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/ubi9/community/Dockerfile) +- [`2025.02.0-community-ubi9`, `2025.02-community-ubi9`, `2025-community-ubi9`, `2025.02.0-ubi9`, `2025.02-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/ubi9/community/Dockerfile) -- [`2025.01.0-enterprise-ubi9`, `2025.01-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/87bc06f60e80315e92d65af32b60af222c83ad52/2025.01.0/ubi9/enterprise/Dockerfile) +- [`2025.02.0-enterprise-ubi9`, `2025.02-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/ubi9/enterprise/Dockerfile) - [`5.26.3-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.3-community`, `5.26-community`, `5-community`, `5.26.3-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.3`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/bullseye/community/Dockerfile) diff --git a/yourls/README.md b/yourls/README.md index d66ba904b40a..f4da689e1d7a 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -93,7 +93,7 @@ Then, access it via `http://localhost:8080/admin/` or `http://:8080/adm ## Environment Variables When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command line. -The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/#Config). +The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/docs/guide/essentials/configuration). A few notable/important examples for using this Docker image include the following. ### `YOURLS_SITE` From 5b55e57387800f84997d0c2684f24c1bf36ec6eb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Feb 2025 14:09:41 -0800 Subject: [PATCH 1955/2686] Run update.sh --- r-base/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-base/README.md b/r-base/README.md index afd20ef6c562..033cab96a6b9 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.2`, `latest`](https://github.com/rocker-org/rocker/blob/91be49790deb5c8a1c0f2b64ccc5fb3696645a54/r-base/4.4.2/Dockerfile) +- [`4.4.3`, `latest`](https://github.com/rocker-org/rocker/blob/6fcc5d8dad96fa24438df79cb46451c5534c04ae/r-base/4.4.3/Dockerfile) # Quick reference (cont.) From 5157cb8292ae9cdeb8e813812aebaf62edc7ef9b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Feb 2025 16:09:37 -0800 Subject: [PATCH 1956/2686] Run update.sh --- neurodebian/README.md | 8 -------- postgres/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 20 insertions(+), 28 deletions(-) diff --git a/neurodebian/README.md b/neurodebian/README.md index 429b54fc254e..bbcb920ed66b 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -44,14 +44,6 @@ WARNING: - [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm-non-free/Dockerfile) -- [`trixie`, `nd130`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie/Dockerfile) - -- [`trixie-non-free`, `nd130-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/trixie-non-free/Dockerfile) - -- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid/Dockerfile) - -- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/sid-non-free/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/postgres/README.md b/postgres/README.md index 5e9263a6f883..0dbd76cdd08d 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.4`, `17`, `latest`, `17.4-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/bookworm/Dockerfile) +- [`17.4`, `17`, `latest`, `17.4-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/bookworm/Dockerfile) -- [`17.4-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/bullseye/Dockerfile) +- [`17.4-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/bullseye/Dockerfile) -- [`17.4-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.4-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/alpine3.21/Dockerfile) +- [`17.4-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.4-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/alpine3.21/Dockerfile) -- [`17.4-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/729d22b104ede82d7b2d8681bb85f2f44c33eb60/17/alpine3.20/Dockerfile) +- [`17.4-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/alpine3.20/Dockerfile) -- [`16.8`, `16`, `16.8-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/bookworm/Dockerfile) +- [`16.8`, `16`, `16.8-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/bookworm/Dockerfile) -- [`16.8-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/bullseye/Dockerfile) +- [`16.8-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/bullseye/Dockerfile) -- [`16.8-alpine3.21`, `16-alpine3.21`, `16.8-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/alpine3.21/Dockerfile) +- [`16.8-alpine3.21`, `16-alpine3.21`, `16.8-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/alpine3.21/Dockerfile) -- [`16.8-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/ce5da348e75d283cdd90963f97bd61c374d41ee5/16/alpine3.20/Dockerfile) +- [`16.8-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/alpine3.20/Dockerfile) -- [`15.12`, `15`, `15.12-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/bookworm/Dockerfile) +- [`15.12`, `15`, `15.12-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/bookworm/Dockerfile) -- [`15.12-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/bullseye/Dockerfile) +- [`15.12-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/bullseye/Dockerfile) -- [`15.12-alpine3.21`, `15-alpine3.21`, `15.12-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/alpine3.21/Dockerfile) +- [`15.12-alpine3.21`, `15-alpine3.21`, `15.12-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/alpine3.21/Dockerfile) -- [`15.12-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/807e218040cfae401cb0ed2e866a1efe9d6cc48d/15/alpine3.20/Dockerfile) +- [`15.12-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/alpine3.20/Dockerfile) -- [`14.17`, `14`, `14.17-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/bookworm/Dockerfile) +- [`14.17`, `14`, `14.17-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/bookworm/Dockerfile) -- [`14.17-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/bullseye/Dockerfile) +- [`14.17-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/bullseye/Dockerfile) -- [`14.17-alpine3.21`, `14-alpine3.21`, `14.17-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/alpine3.21/Dockerfile) +- [`14.17-alpine3.21`, `14-alpine3.21`, `14.17-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/alpine3.21/Dockerfile) -- [`14.17-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/dabb1fcefb4637c8b6e1655c520bc10e67a735cb/14/alpine3.20/Dockerfile) +- [`14.17-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/alpine3.20/Dockerfile) -- [`13.20`, `13`, `13.20-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/bookworm/Dockerfile) +- [`13.20`, `13`, `13.20-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/bookworm/Dockerfile) -- [`13.20-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/bullseye/Dockerfile) +- [`13.20-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/bullseye/Dockerfile) -- [`13.20-alpine3.21`, `13-alpine3.21`, `13.20-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/alpine3.21/Dockerfile) +- [`13.20-alpine3.21`, `13-alpine3.21`, `13.20-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/alpine3.21/Dockerfile) -- [`13.20-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/2f7aa214309aca0d90a41e57f0807f53ebf77d55/13/alpine3.20/Dockerfile) +- [`13.20-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/alpine3.20/Dockerfile) # Quick reference (cont.) From ed7631da6848c645dbb0a5799a53cd83b85a0855 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Sat, 1 Mar 2025 00:13:27 -0800 Subject: [PATCH 1957/2686] Add a blurb about Debian being explicitly and intentionally minimal Also, add more notes and a few links to help explain what "minimal" means in this context (and who decides it). --- debian/content.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/content.md b/debian/content.md index 014b13a84315..cc3cebdf6eac 100644 --- a/debian/content.md +++ b/debian/content.md @@ -8,6 +8,8 @@ Debian is an operating system which is composed primarily of free and open-sourc # About this image +The images in this repository are intended to be as minimal as possible (because of the immutable/layered nature of containers, it's much easier to add than it is to remove). More specifically, they're built from [the "minbase" variant](https://manpages.debian.org/stable/debootstrap/debootstrap.8.en.html#variant=minbase_buildd_fakechroot), which only installs "required" packages, and thus creates the smallest possible footprint that is still "Debian" (as defined/managed by [the Release and FTP teams](https://www.debian.org/intro/organization#distribution) within the project). + The `%%IMAGE%%:latest` tag will always point the latest stable release. Stable releases are also tagged with their version (ie, `%%IMAGE%%:11` is an alias for `%%IMAGE%%:bullseye`, `%%IMAGE%%:10` is an alias for `%%IMAGE%%:buster`, etc). The rolling tags (`%%IMAGE%%:stable`, `%%IMAGE%%:testing`, etc) use the rolling suite names in their `/etc/apt/sources.list` file (ie, `deb http://deb.debian.org/debian testing main`). From 4dfe495a7ade3e83f255a006fa2da279da699f5a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Mar 2025 11:12:47 -0800 Subject: [PATCH 1958/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 2a0db710e562..f91860a6820c 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.base) +- [`latest`, `base`, `base-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.base) -- [`base-devel`, `base-devel-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250223.0.312761`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/95b9dc8ea7fafbd4dc823c665b2f676c1e1240c9/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 3cdfd3eceb50..823d50a7ab59 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/5db3d1be623758c58775e7407a5b3de1785aa333/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/368aae638245e4a7854d427e36bd2e7f7cc3b7d3/Dockerfile) # Quick reference (cont.) From c0ac5c099e0c10f263523626b58c956a133ec09a Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 3 Mar 2025 12:53:55 -0800 Subject: [PATCH 1959/2686] Fix typos in dind-rootless sed expressions --- docker/variant-rootless.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/variant-rootless.md b/docker/variant-rootless.md index 8d8f20fb46b4..8aedf7864809 100644 --- a/docker/variant-rootless.md +++ b/docker/variant-rootless.md @@ -23,8 +23,8 @@ To run with a different UID/GID than the one baked into the image, modify `/etc/ FROM %%IMAGE%%:dind-rootless USER root RUN set -eux; \ - sed -i -e 's/^rootless:1000:1000:/rootless:1234:5678:/' /etc/passwd; \ - sed -i -e 's/^rootless:1000:/:5678:/' /etc/group; \ + sed -i -e 's/^rootless:x:1000:1000:/rootless:x:1234:5678:/' /etc/passwd; \ + sed -i -e 's/^rootless:x:1000:/rootless:x:5678:/' /etc/group; \ chown -R rootless ~rootless USER rootless ``` From 0a5b79a4e09307a63d92be32884aab029b848e4b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Mar 2025 13:11:07 -0800 Subject: [PATCH 1960/2686] Run update.sh --- composer/README.md | 2 +- crate/README.md | 6 +++--- rust/README.md | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/composer/README.md b/composer/README.md index e329ae5a5951..9317dd4b7a9b 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/legacy/Dockerfile) -- [`2.8.5`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/96b3c5ba320daed850119bdb7834ab17e3f7093d/latest/Dockerfile) +- [`2.8.6`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/7687464486389e94d55a2bb128a4be36bb5958b4/latest/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 9a2c42a89908..77ec55d59268 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.1`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/a67533302803d0ae05db2e45130f61763f3b4ba4/Dockerfile) +- [`5.10.2`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/7838c0d4716fb0368e9280705f2b808e3ab2288b/Dockerfile) -- [`5.9.10`, `5.9`](https://github.com/crate/docker-crate/blob/dfde86f302893f16d6bdfb029ca3895444b9d6e8/Dockerfile) +- [`5.9.11`, `5.9`](https://github.com/crate/docker-crate/blob/f4ad4959f78765d2d7f0929acd49c2bdf449e8a1/Dockerfile) -- [`5.8.6`, `5.8`](https://github.com/crate/docker-crate/blob/b55d16afc32597fca2ee19a1b3e8803a98c1c946/Dockerfile) +- [`5.8.7`, `5.8`](https://github.com/crate/docker-crate/blob/1e8b7379346e188f5de637d9681d450d9435cb0a/Dockerfile) - [`5.7.6`, `5.7`](https://github.com/crate/docker-crate/blob/93c9f0651b3513b57aa0dca19c0a084af25c3ab4/Dockerfile) diff --git a/rust/README.md b/rust/README.md index 5881b25fe25a..1f614d1ec031 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/ba7100abbc606d3aa8a2966463212aae023e1663/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From f40af03cdb63b42d558c991999b7b505450a49e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Mar 2025 14:11:26 -0800 Subject: [PATCH 1961/2686] Run update.sh --- docker/README.md | 4 ++-- unit/README.md | 34 +++++++++++++++++----------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docker/README.md b/docker/README.md index c4dab9ae1912..3f6861636ecd 100644 --- a/docker/README.md +++ b/docker/README.md @@ -325,8 +325,8 @@ To run with a different UID/GID than the one baked into the image, modify `/etc/ FROM docker:dind-rootless USER root RUN set -eux; \ - sed -i -e 's/^rootless:1000:1000:/rootless:1234:5678:/' /etc/passwd; \ - sed -i -e 's/^rootless:1000:/:5678:/' /etc/group; \ + sed -i -e 's/^rootless:x:1000:1000:/rootless:x:1234:5678:/' /etc/passwd; \ + sed -i -e 's/^rootless:x:1000:/rootless:x:5678:/' /etc/group; \ chown -R rootless ~rootless USER rootless ``` diff --git a/unit/README.md b/unit/README.md index 875bdee1c228..b407c4f38273 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,39 +24,39 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34.1-go1.23`, `go1.23`, `go1`, `go`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.go1.23) +- [`1.34.2-go1.24`, `go1.24`, `go1`, `go`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.go1.24) -- [`1.34.1-go1.22`, `go1.22`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.go1.22) +- [`1.34.2-go1.23`, `go1.23`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.go1.23) -- [`1.34.1-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.jsc11) +- [`1.34.2-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.jsc11) -- [`1.34.1-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.node22) +- [`1.34.2-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.node22) -- [`1.34.1-node20`, `node20`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.node20) +- [`1.34.2-node20`, `node20`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.node20) -- [`1.34.1-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.perl5.40) +- [`1.34.2-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.perl5.40) -- [`1.34.1-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.perl5.38) +- [`1.34.2-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.perl5.38) -- [`1.34.1-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.php8.4) +- [`1.34.2-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.php8.4) -- [`1.34.1-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.php8.3) +- [`1.34.2-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.php8.3) -- [`1.34.1-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.13) +- [`1.34.2-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.13) -- [`1.34.1-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.12) +- [`1.34.2-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.12) -- [`1.34.1-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.ruby3.3) +- [`1.34.2-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.ruby3.3) -- [`1.34.1-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.ruby3.2) +- [`1.34.2-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.ruby3.2) -- [`1.34.1-python3.13-slim`, `python3.13-slim`, `python3-slim`, `python-slim`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.13-slim) +- [`1.34.2-python3.13-slim`, `python-slim`, `python3-slim`, `python3.13-slim`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.13-slim) -- [`1.34.1-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.python3.12-slim) +- [`1.34.2-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.12-slim) -- [`1.34.1-wasm`, `wasm`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.wasm) +- [`1.34.2-wasm`, `wasm`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.wasm) -- [`1.34.1-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/bdc4d30548c6964f6fedffb27c4e41176a67de05/pkg/docker/Dockerfile.minimal) +- [`1.34.2-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.minimal) # Quick reference (cont.) From 41e7393943cc083cc1d5c2c24ace915439b2c872 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Mar 2025 17:09:34 -0800 Subject: [PATCH 1962/2686] Run update.sh --- docker/README.md | 14 +++++++------- ghost/README.md | 4 ++-- golang/README.md | 12 ++++++------ neurodebian/README.md | 20 ++++++++++---------- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docker/README.md b/docker/README.md index 3f6861636ecd..c8a58a00feca 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/cli/Dockerfile) +- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/cli/Dockerfile) - [`28.0.1-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.1-dind-alpine3.21`, `28.0.1`, `28.0`, `28`, `latest`, `28.0.1-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind/Dockerfile) - [`28.0.1-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind-rootless/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.1-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 5cc4868771fe..2f6f845cb9e3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.110.2`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/60d4f236150826b7b8c2f28765d6abebadc2da6c/5/debian/Dockerfile) +- [`5.110.3`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d5223453f6cf8da977beb06a44cadc1b24ee631b/5/debian/Dockerfile) -- [`5.110.2-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/60d4f236150826b7b8c2f28765d6abebadc2da6c/5/alpine/Dockerfile) +- [`5.110.3-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d5223453f6cf8da977beb06a44cadc1b24ee631b/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 0597cc3b0c68..486c0272569b 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250223-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bookworm/Dockerfile) +- [`tip-20250301-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bookworm/Dockerfile) -- [`tip-20250223-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bullseye/Dockerfile) +- [`tip-20250301-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bullseye/Dockerfile) -- [`tip-20250223-alpine3.21`, `tip-alpine3.21`, `tip-20250223-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/alpine3.21/Dockerfile) +- [`tip-20250301-alpine3.21`, `tip-alpine3.21`, `tip-20250301-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/alpine3.21/Dockerfile) -- [`tip-20250223-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/alpine3.20/Dockerfile) +- [`tip-20250301-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250223`, `tip`: +- `tip-20250301`, `tip`: - - [`tip-20250223-bookworm`](https://github.com/docker-library/golang/blob/612f1224d2fd6ae92959b5fd96adc40c3f3a1bc6/tip/bookworm/Dockerfile) + - [`tip-20250301-bookworm`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/neurodebian/README.md b/neurodebian/README.md index bbcb920ed66b..2d02e9397485 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal/Dockerfile) +- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/focal/Dockerfile) -- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/focal-non-free/Dockerfile) +- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/focal-non-free/Dockerfile) -- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy/Dockerfile) +- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy/Dockerfile) -- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/jammy-non-free/Dockerfile) +- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy-non-free/Dockerfile) -- [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble/Dockerfile) +- [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/noble/Dockerfile) -- [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/noble-non-free/Dockerfile) +- [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/noble-non-free/Dockerfile) -- [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye/Dockerfile) +- [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye/Dockerfile) -- [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bullseye-non-free/Dockerfile) +- [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye-non-free/Dockerfile) -- [`bookworm`, `nd120`, `latest`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm/Dockerfile) +- [`bookworm`, `nd120`, `latest`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bookworm/Dockerfile) -- [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/a0af1d460705d7efc9d6de9483f1ce4aa48ad152/dockerfiles/bookworm-non-free/Dockerfile) +- [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bookworm-non-free/Dockerfile) # Quick reference (cont.) From 525a279011e05443606709abf20a455af13f635e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Mar 2025 11:12:46 -0800 Subject: [PATCH 1963/2686] Run update.sh --- debian/README.md | 2 ++ sonarqube/README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/README.md b/debian/README.md index 8fc3eaffa3f2..6307758ed8e2 100644 --- a/debian/README.md +++ b/debian/README.md @@ -101,6 +101,8 @@ Debian is an operating system which is composed primarily of free and open-sourc # About this image +The images in this repository are intended to be as minimal as possible (because of the immutable/layered nature of containers, it's much easier to add than it is to remove). More specifically, they're built from [the "minbase" variant](https://manpages.debian.org/stable/debootstrap/debootstrap.8.en.html#variant=minbase_buildd_fakechroot), which only installs "required" packages, and thus creates the smallest possible footprint that is still "Debian" (as defined/managed by [the Release and FTP teams](https://www.debian.org/intro/organization#distribution) within the project). + The `debian:latest` tag will always point the latest stable release. Stable releases are also tagged with their version (ie, `debian:11` is an alias for `debian:bullseye`, `debian:10` is an alias for `debian:buster`, etc). The rolling tags (`debian:stable`, `debian:testing`, etc) use the rolling suite names in their `/etc/apt/sources.list` file (ie, `deb http://deb.debian.org/debian testing main`). diff --git a/sonarqube/README.md b/sonarqube/README.md index b8b17cccac58..28edd1dc5ee7 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -32,7 +32,7 @@ WARNING: - [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/search/Dockerfile) -- [`25.2.0.102705-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/339bb786d43dfba8bfdda1045e45225142d313bb/community-build/Dockerfile) +- [`25.3.0.104237-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/65d32aee3047ae2d7bff433d278b5e1622134a37/community-build/Dockerfile) - [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/community/Dockerfile) From 4f49c5dae3bd41d5200960fb24c49c6f77223bd4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Mar 2025 14:10:39 -0800 Subject: [PATCH 1964/2686] Run update.sh --- elasticsearch/README.md | 4 +- golang/README.md | 92 ++++++++++++++++++++--------------------- kibana/README.md | 4 +- logstash/README.md | 4 +- openjdk/README.md | 50 +++++++++++----------- 5 files changed, 77 insertions(+), 77 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index c5783365326c..a862fb0122e3 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/elasticsearch/Dockerfile) +- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/elasticsearch/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/elasticsearch/Dockerfile) +- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 486c0272569b..185a28e969e9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.24.0-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bookworm/Dockerfile) +- [`1.24.1-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bookworm/Dockerfile) -- [`1.24.0-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bullseye/Dockerfile) +- [`1.24.1-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bullseye/Dockerfile) -- [`1.24.0-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.0-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/alpine3.21/Dockerfile) +- [`1.24.1-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.1-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/alpine3.21/Dockerfile) -- [`1.24.0-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/alpine3.20/Dockerfile) +- [`1.24.1-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/alpine3.20/Dockerfile) -- [`1.24.0-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.1-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.0-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.1-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.0-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) +- [`1.24.1-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) -- [`1.24.0-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.1-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.0-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.1-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.0-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-1809/Dockerfile) +- [`1.24.1-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-1809/Dockerfile) -- [`1.23.6-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) +- [`1.23.7-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bookworm/Dockerfile) -- [`1.23.6-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bullseye/Dockerfile) +- [`1.23.7-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bullseye/Dockerfile) -- [`1.23.6-alpine3.21`, `1.23-alpine3.21`, `1.23.6-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.21/Dockerfile) +- [`1.23.7-alpine3.21`, `1.23-alpine3.21`, `1.23.7-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/alpine3.21/Dockerfile) -- [`1.23.6-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/alpine3.20/Dockerfile) +- [`1.23.7-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/alpine3.20/Dockerfile) -- [`1.23.6-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.7-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.6-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.7-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.6-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.7-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.6-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.7-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.6-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.7-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.6-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) - [`tip-20250301-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bookworm/Dockerfile) @@ -78,43 +78,43 @@ WARNING: ## Shared Tags -- `1.24.0`, `1.24`, `1`, `latest`: +- `1.24.1`, `1.24`, `1`, `latest`: - - [`1.24.0-bookworm`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/bookworm/Dockerfile) - - [`1.24.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.1-bookworm`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bookworm/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.0-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.1-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.0-windowsservercore-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.0-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.1-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.0-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24.0-nanoserver-1809`](https://github.com/docker-library/golang/blob/04edff02d63505fdac6f0c8b1857b25529713441/1.24/windows/nanoserver-1809/Dockerfile) + - [`1.24.1-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-1809/Dockerfile) -- `1.23.6`, `1.23`: +- `1.23.7`, `1.23`: - - [`1.23.6-bookworm`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/bookworm/Dockerfile) - - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.7-bookworm`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bookworm/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.6-windowsservercore`, `1.23-windowsservercore`: +- `1.23.7-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.6-windowsservercore-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.6-nanoserver`, `1.23-nanoserver`: +- `1.23.7-nanoserver`, `1.23-nanoserver`: - - [`1.23.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.6-nanoserver-1809`](https://github.com/docker-library/golang/blob/63766bb47bd5e6718d7d75fbd821a36704d219f8/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) - `tip-20250301`, `tip`: diff --git a/kibana/README.md b/kibana/README.md index bb32c96787eb..6d850ce4d602 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/kibana/Dockerfile) +- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/kibana/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/kibana/Dockerfile) +- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index a05f9e4e0d44..0f8f1ff5f3e0 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.4`](https://github.com/elastic/dockerfiles/blob/02f6f08d48291a4cc48b03e3f14ac64ecab9fe5c/logstash/Dockerfile) +- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/logstash/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) -- [`8.17.2`](https://github.com/elastic/dockerfiles/blob/1f8deb29470634b84cd411a659d174575659d344/logstash/Dockerfile) +- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/logstash/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index f30a100d3433..0ab74b0693dd 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,29 +42,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-11-jdk-oraclelinux9`, `25-ea-11-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-11-jdk-oracle`, `25-ea-11-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-12-jdk-oraclelinux9`, `25-ea-12-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-12-jdk-oracle`, `25-ea-12-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-11-jdk-oraclelinux8`, `25-ea-11-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-12-jdk-oraclelinux8`, `25-ea-12-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-11-jdk-bookworm`, `25-ea-11-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/bookworm/Dockerfile) +- [`25-ea-12-jdk-bookworm`, `25-ea-12-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/bookworm/Dockerfile) -- [`25-ea-11-jdk-slim-bookworm`, `25-ea-11-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-11-jdk-slim`, `25-ea-11-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-12-jdk-slim-bookworm`, `25-ea-12-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-12-jdk-slim`, `25-ea-12-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-11-jdk-bullseye`, `25-ea-11-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/bullseye/Dockerfile) +- [`25-ea-12-jdk-bullseye`, `25-ea-12-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/bullseye/Dockerfile) -- [`25-ea-11-jdk-slim-bullseye`, `25-ea-11-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-12-jdk-slim-bullseye`, `25-ea-12-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-11-jdk-windowsservercore-ltsc2025`, `25-ea-11-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-12-jdk-windowsservercore-ltsc2025`, `25-ea-12-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-11-jdk-windowsservercore-ltsc2022`, `25-ea-11-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-12-jdk-windowsservercore-ltsc2022`, `25-ea-12-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-11-jdk-windowsservercore-1809`, `25-ea-11-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-12-jdk-windowsservercore-1809`, `25-ea-12-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-11-jdk-nanoserver-ltsc2025`, `25-ea-11-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-12-jdk-nanoserver-ltsc2025`, `25-ea-12-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-11-jdk-nanoserver-ltsc2022`, `25-ea-11-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-12-jdk-nanoserver-ltsc2022`, `25-ea-12-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-11-jdk-nanoserver-1809`, `25-ea-11-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-12-jdk-nanoserver-1809`, `25-ea-12-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) @@ -92,24 +92,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-11-jdk`, `25-ea-11`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-12-jdk`, `25-ea-12`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-11-jdk-windowsservercore`, `25-ea-11-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-12-jdk-windowsservercore`, `25-ea-12-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-11-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-11-jdk-nanoserver`, `25-ea-11-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-12-jdk-nanoserver`, `25-ea-12-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-11-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-11-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-11-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/34aba6cea5d13194d2e77f72ba6a022d0b99b384/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-12-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-12-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: From a45f92df418ac9944021e1a36cc8d4dbe20d8697 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Mar 2025 12:09:34 -0800 Subject: [PATCH 1965/2686] Run update.sh --- friendica/README.md | 8 ++++---- ghost/README.md | 4 ++-- photon/README.md | 2 +- rabbitmq/README.md | 8 ++++---- rust/README.md | 12 ++++++------ 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index b71f061664f9..09f1bee370d0 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm-alpine/Dockerfile) -- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/apache/Dockerfile) -- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/fpm/Dockerfile) -- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/9fd34d469b8832fa3be60297a29f1eed91ff6f8d/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -48,7 +48,7 @@ WARNING: [https://github.com/friendica/docker/issues](https://github.com/friendica/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`riscv64`](https://hub.docker.com/r/riscv64/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) + [`amd64`](https://hub.docker.com/r/amd64/friendica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/friendica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/friendica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/friendica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/friendica/), [`i386`](https://hub.docker.com/r/i386/friendica/), [`mips64le`](https://hub.docker.com/r/mips64le/friendica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/friendica/), [`riscv64`](https://hub.docker.com/r/riscv64/friendica/), [`s390x`](https://hub.docker.com/r/s390x/friendica/) - **Published image artifact details**: [repo-info repo's `repos/friendica/` directory](https://github.com/docker-library/repo-info/blob/master/repos/friendica) ([history](https://github.com/docker-library/repo-info/commits/master/repos/friendica)) diff --git a/ghost/README.md b/ghost/README.md index 2f6f845cb9e3..5eb5afff7c90 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.110.3`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d5223453f6cf8da977beb06a44cadc1b24ee631b/5/debian/Dockerfile) +- [`5.110.4`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f9364fda1bd635ac94c3c5a0291a96ae171e6116/5/debian/Dockerfile) -- [`5.110.3-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d5223453f6cf8da977beb06a44cadc1b24ee631b/5/alpine/Dockerfile) +- [`5.110.4-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f9364fda1bd635ac94c3c5a0291a96ae171e6116/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 322dde3820a8..a99ef5a8bcef 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250223`, `latest`](https://github.com/vmware/photon-docker-image/blob/3605670fdebd644ae53b7414011057825618cd9d/docker/Dockerfile) +- [`5.0`, `5.0-20250302`, `latest`](https://github.com/vmware/photon-docker-image/blob/4806ac4ff2a0f1ba3bee1eea8544a0965f807531/docker/Dockerfile) - [`4.0`, `4.0-20250223`](https://github.com/vmware/photon-docker-image/blob/2e9995ccd704e9c52b25c6eb6cd4f03a32b1ea3e/docker/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index a7dff04ca204..3f9cd8598b79 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/535e10c8b28e4dd55fe40849a4be65dbc92822e7/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/2fe4d518b2d892b6a39f10603e576cfdf815228c/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.4-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/535e10c8b28e4dd55fe40849a4be65dbc92822e7/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2fe4d518b2d892b6a39f10603e576cfdf815228c/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.4-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/96a3b27b6e0be0a66dbcd189168ff2369c7a47f3/4.0/ubuntu/Dockerfile) +- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/292565a5bed3673c8c8885e275cbc13d382151f0/4.0/ubuntu/Dockerfile) - [`4.0.7-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/96a3b27b6e0be0a66dbcd189168ff2369c7a47f3/4.0/alpine/Dockerfile) +- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/292565a5bed3673c8c8885e275cbc13d382151f0/4.0/alpine/Dockerfile) - [`4.0.7-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) diff --git a/rust/README.md b/rust/README.md index 1f614d1ec031..1e27889a60e5 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/760aa127cc3da4d27851b67a08fed9e64df3e315/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From 102779e025ad868e68ca31b3858dbc6912e3f552 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Mar 2025 15:09:50 -0800 Subject: [PATCH 1966/2686] Run update.sh --- gradle/README.md | 174 ++++++++++++++------------------------------ wordpress/README.md | 18 +++++ 2 files changed, 74 insertions(+), 118 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 958f19dd7846..884b7dc5a0d5 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,179 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.12.1-jdk21`, `8.12-jdk21`, `8-jdk21`, `jdk21`, `8.12.1-jdk21-noble`, `8.12-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.12.1-jdk`, `8.12-jdk`, `8-jdk`, `jdk`, `8.12.1`, `8.12`, `8`, `8.12.1-jdk-noble`, `8.12-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.12.1-noble`, `8.12-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-noble/Dockerfile) +- [`8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13`, `8`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble/Dockerfile) -- [`8.12.1-jdk21-jammy`, `8.12-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.12.1-jdk-jammy`, `8.12-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.12.1-jammy`, `8.12-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-jammy/Dockerfile) +- [`8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy/Dockerfile) -- [`8.12.1-jdk21-alpine`, `8.12-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.12.1-jdk-alpine`, `8.12-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.12.1-alpine`, `8.12-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-alpine/Dockerfile) +- [`8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-alpine/Dockerfile) -- [`8.12.1-jdk21-corretto`, `8.12-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.12.1-jdk21-corretto-al2023`, `8.12-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-corretto/Dockerfile) +- [`8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-corretto/Dockerfile) -- [`8.12.1-jdk21-graal`, `8.12-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.12.1-jdk-graal`, `8.12-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.12.1-graal`, `8.12-graal`, `8-graal`, `graal`, `8.12.1-jdk21-graal-noble`, `8.12-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.12.1-jdk-graal-noble`, `8.12-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.12.1-graal-noble`, `8.12-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-noble-graal/Dockerfile) +- [`8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-ubi9/Dockerfile) -- [`8.12.1-jdk21-graal-jammy`, `8.12-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.12.1-jdk-graal-jammy`, `8.12-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.12.1-graal-jammy`, `8.12-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk21-jammy-graal/Dockerfile) +- [`8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble-graal/Dockerfile) -- [`8.12.1-jdk17`, `8.12-jdk17`, `8-jdk17`, `jdk17`, `8.12.1-jdk17-noble`, `8.12-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-noble/Dockerfile) +- [`8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy-graal/Dockerfile) -- [`8.12.1-jdk17-jammy`, `8.12-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-jammy/Dockerfile) +- [`8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble/Dockerfile) -- [`8.12.1-jdk17-focal`, `8.12-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.12.1-jdk-focal`, `8.12-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.12.1-focal`, `8.12-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-focal/Dockerfile) +- [`8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy/Dockerfile) -- [`8.12.1-jdk17-alpine`, `8.12-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-alpine/Dockerfile) +- [`8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal/Dockerfile) -- [`8.12.1-jdk17-corretto`, `8.12-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.12.1-jdk17-corretto-al2023`, `8.12-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-corretto/Dockerfile) +- [`8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-alpine/Dockerfile) -- [`8.12.1-jdk17-graal`, `8.12-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.12.1-jdk17-graal-noble`, `8.12-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-noble-graal/Dockerfile) +- [`8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-corretto/Dockerfile) -- [`8.12.1-jdk17-graal-jammy`, `8.12-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-jammy-graal/Dockerfile) +- [`8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-ubi9/Dockerfile) -- [`8.12.1-jdk17-graal-focal`, `8.12-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.12.1-jdk-graal-focal`, `8.12-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.12.1-graal-focal`, `8.12-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk17-focal-graal/Dockerfile) +- [`8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble-graal/Dockerfile) -- [`8.12.1-jdk11`, `8.12-jdk11`, `8-jdk11`, `jdk11`, `8.12.1-jdk11-jammy`, `8.12-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-jammy/Dockerfile) +- [`8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy-graal/Dockerfile) -- [`8.12.1-jdk11-focal`, `8.12-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-focal/Dockerfile) +- [`8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal-graal/Dockerfile) -- [`8.12.1-jdk11-alpine`, `8.12-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-alpine/Dockerfile) +- [`8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-jammy/Dockerfile) -- [`8.12.1-jdk11-corretto`, `8.12-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.12.1-jdk11-corretto-al2023`, `8.12-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk11-corretto/Dockerfile) +- [`8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-focal/Dockerfile) -- [`8.12.1-jdk8`, `8.12-jdk8`, `8-jdk8`, `jdk8`, `8.12.1-jdk8-jammy`, `8.12-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-jammy/Dockerfile) +- [`8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-alpine/Dockerfile) -- [`8.12.1-jdk8-focal`, `8.12-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-focal/Dockerfile) +- [`8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-corretto/Dockerfile) -- [`8.12.1-jdk8-corretto`, `8.12-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.12.1-jdk8-corretto-al2023`, `8.12-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk8-corretto/Dockerfile) +- [`8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-ubi9/Dockerfile) -- [`8.12.1-jdk23`, `8.12-jdk23`, `8-jdk23`, `jdk23`, `8.12.1-jdk23-noble`, `8.12-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-noble/Dockerfile) +- [`8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-jammy/Dockerfile) -- [`8.12.1-jdk23-alpine`, `8.12-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-alpine/Dockerfile) +- [`8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-focal/Dockerfile) -- [`8.12.1-jdk23-corretto`, `8.12-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.12.1-jdk23-corretto-al2023`, `8.12-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-corretto/Dockerfile) +- [`8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-corretto/Dockerfile) -- [`8.12.1-jdk23-graal`, `8.12-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.12.1-jdk23-graal-noble`, `8.12-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk23-noble-graal/Dockerfile) +- [`8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-ubi9/Dockerfile) -- [`8.12.1-jdk-lts-and-current`, `8.12-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.12.1-jdk-lts-and-current-noble`, `8.12-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.12.1-jdk-21-and-23`, `8.12-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.12.1-jdk-21-and-23-noble`, `8.12-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current/Dockerfile) +- [`8.13-jdk23`, `8-jdk23`, `jdk23`, `8.13-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble/Dockerfile) -- [`8.12.1-jdk-lts-and-current-alpine`, `8.12-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.12.1-jdk-21-and-23-alpine`, `8.12-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-alpine/Dockerfile) +- [`8.13-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-alpine/Dockerfile) -- [`8.12.1-jdk-lts-and-current-corretto`, `8.12-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.12.1-jdk-lts-and-current-corretto-al2023`, `8.12-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.12.1-jdk-21-and-23-corretto`, `8.12-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.12.1-jdk-21-and-23-corretto-al2023`, `8.12-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-corretto/Dockerfile) +- [`8.13-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.13-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-corretto/Dockerfile) -- [`8.12.1-jdk-lts-and-current-graal`, `8.12-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.12.1-jdk-lts-and-current-graal-noble`, `8.12-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.12.1-jdk-21-and-23-graal`, `8.12-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.12.1-jdk-21-and-23-graal-noble`, `8.12-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/40b84264cea73e19cb7e916446e1bf025f0f89d2/jdk-lts-and-current-graal/Dockerfile) +- [`8.13-jdk23-ubi`, `8-jdk23-ubi`, `jdk23-ubi`, `8.13-jdk23-ubi-minimal`, `8-jdk23-ubi-minimal`, `jdk23-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-ubi9/Dockerfile) -- [`7.6.4-jdk21`, `7.6-jdk21`, `7-jdk21`, `7.6.4-jdk21-noble`, `7.6-jdk21-noble`, `7-jdk21-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-noble/Dockerfile) +- [`8.13-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.13-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble-graal/Dockerfile) -- [`7.6.4-jdk21-jammy`, `7.6-jdk21-jammy`, `7-jdk21-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-jammy/Dockerfile) +- [`8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.13-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current/Dockerfile) -- [`7.6.4-jdk21-alpine`, `7.6-jdk21-alpine`, `7-jdk21-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-alpine/Dockerfile) +- [`8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-alpine/Dockerfile) -- [`7.6.4-jdk21-corretto`, `7.6-jdk21-corretto`, `7-jdk21-corretto`, `7.6.4-jdk21-corretto-al2023`, `7.6-jdk21-corretto-al2023`, `7-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-corretto/Dockerfile) +- [`8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.13-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-corretto/Dockerfile) -- [`7.6.4-jdk21-graal`, `7.6-jdk21-graal`, `7-jdk21-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk21-graal-noble`, `7.6-jdk21-graal-noble`, `7-jdk21-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-noble-graal/Dockerfile) +- [`8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.13-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.4-jdk21-graal-jammy`, `7.6-jdk21-graal-jammy`, `7-jdk21-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk21-jammy-graal/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-noble/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-noble/Dockerfile) +- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-jammy/Dockerfile) -- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-jammy/Dockerfile) +- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-focal/Dockerfile) -- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-focal/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-alpine/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-corretto/Dockerfile) -- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-corretto/Dockerfile) +- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-noble-graal/Dockerfile) -- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-noble-graal/Dockerfile) +- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-jammy-graal/Dockerfile) -- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-jammy-graal/Dockerfile) +- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-focal-graal/Dockerfile) -- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk17-focal-graal/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-jammy/Dockerfile) +- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-focal/Dockerfile) -- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-focal/Dockerfile) +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-alpine/Dockerfile) +- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk11-corretto/Dockerfile) +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-jammy/Dockerfile) +- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-focal/Dockerfile) -- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-focal/Dockerfile) +- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-corretto/Dockerfile) -- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk23`, `7.6-jdk23`, `7-jdk23`, `7.6.4-jdk23-noble`, `7.6-jdk23-noble`, `7-jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-noble/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-focal/Dockerfile) -- [`7.6.4-jdk23-alpine`, `7.6-jdk23-alpine`, `7-jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-alpine/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk23-corretto`, `7.6-jdk23-corretto`, `7-jdk23-corretto`, `7.6.4-jdk23-corretto-al2023`, `7.6-jdk23-corretto-al2023`, `7-jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-corretto/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk23-graal`, `7.6-jdk23-graal`, `7-jdk23-graal`, `7.6.4-jdk23-graal-noble`, `7.6-jdk23-graal-noble`, `7-jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk23-noble-graal/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk-lts-and-current`, `7.6-jdk-lts-and-current`, `7-jdk-lts-and-current`, `7.6.4-jdk-lts-and-current-noble`, `7.6-jdk-lts-and-current-noble`, `7-jdk-lts-and-current-noble`, `7.6.4-jdk-21-and-23`, `7.6-jdk-21-and-23`, `7-jdk-21-and-23`, `7.6.4-jdk-21-and-23-noble`, `7.6-jdk-21-and-23-noble`, `7-jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-focal/Dockerfile) -- [`7.6.4-jdk-lts-and-current-alpine`, `7.6-jdk-lts-and-current-alpine`, `7-jdk-lts-and-current-alpine`, `7.6.4-jdk-21-and-23-alpine`, `7.6-jdk-21-and-23-alpine`, `7-jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-alpine/Dockerfile) - -- [`7.6.4-jdk-lts-and-current-corretto`, `7.6-jdk-lts-and-current-corretto`, `7-jdk-lts-and-current-corretto`, `7.6.4-jdk-lts-and-current-corretto-al2023`, `7.6-jdk-lts-and-current-corretto-al2023`, `7-jdk-lts-and-current-corretto-al2023`, `7.6.4-jdk-21-and-23-corretto`, `7.6-jdk-21-and-23-corretto`, `7-jdk-21-and-23-corretto`, `7.6.4-jdk-21-and-23-corretto-al2023`, `7.6-jdk-21-and-23-corretto-al2023`, `7-jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-corretto/Dockerfile) - -- [`7.6.4-jdk-lts-and-current-graal`, `7.6-jdk-lts-and-current-graal`, `7-jdk-lts-and-current-graal`, `7.6.4-jdk-lts-and-current-graal-noble`, `7.6-jdk-lts-and-current-graal-noble`, `7-jdk-lts-and-current-graal-noble`, `7.6.4-jdk-21-and-23-graal`, `7.6-jdk-21-and-23-graal`, `7-jdk-21-and-23-graal`, `7.6.4-jdk-21-and-23-graal-noble`, `7.6-jdk-21-and-23-graal-noble`, `7-jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/3284c4511c2d2a1ddddcd60d3516bedcee392ae4/jdk-lts-and-current-graal/Dockerfile) - -- [`6.9.4-jdk21`, `6.9-jdk21`, `6-jdk21`, `6.9.4-jdk21-noble`, `6.9-jdk21-noble`, `6-jdk21-noble`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-noble`, `6.9-jdk-noble`, `6-jdk-noble`, `6.9.4-noble`, `6.9-noble`, `6-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-noble/Dockerfile) - -- [`6.9.4-jdk21-jammy`, `6.9-jdk21-jammy`, `6-jdk21-jammy`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-jammy/Dockerfile) - -- [`6.9.4-jdk21-alpine`, `6.9-jdk21-alpine`, `6-jdk21-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-alpine/Dockerfile) - -- [`6.9.4-jdk21-corretto`, `6.9-jdk21-corretto`, `6-jdk21-corretto`, `6.9.4-jdk21-corretto-al2023`, `6.9-jdk21-corretto-al2023`, `6-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-corretto/Dockerfile) - -- [`6.9.4-jdk21-graal`, `6.9-jdk21-graal`, `6-jdk21-graal`, `6.9.4-jdk-graal`, `6.9-jdk-graal`, `6-jdk-graal`, `6.9.4-graal`, `6.9-graal`, `6-graal`, `6.9.4-jdk21-graal-noble`, `6.9-jdk21-graal-noble`, `6-jdk21-graal-noble`, `6.9.4-jdk-graal-noble`, `6.9-jdk-graal-noble`, `6-jdk-graal-noble`, `6.9.4-graal-noble`, `6.9-graal-noble`, `6-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-noble-graal/Dockerfile) - -- [`6.9.4-jdk21-graal-jammy`, `6.9-jdk21-graal-jammy`, `6-jdk21-graal-jammy`, `6.9.4-jdk-graal-jammy`, `6.9-jdk-graal-jammy`, `6-jdk-graal-jammy`, `6.9.4-graal-jammy`, `6.9-graal-jammy`, `6-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk21-jammy-graal/Dockerfile) - -- [`6.9.4-jdk17`, `6.9-jdk17`, `6-jdk17`, `6.9.4-jdk17-noble`, `6.9-jdk17-noble`, `6-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-noble/Dockerfile) - -- [`6.9.4-jdk17-jammy`, `6.9-jdk17-jammy`, `6-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-jammy/Dockerfile) - -- [`6.9.4-jdk17-focal`, `6.9-jdk17-focal`, `6-jdk17-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-focal/Dockerfile) - -- [`6.9.4-jdk17-alpine`, `6.9-jdk17-alpine`, `6-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-alpine/Dockerfile) - -- [`6.9.4-jdk17-corretto`, `6.9-jdk17-corretto`, `6-jdk17-corretto`, `6.9.4-jdk17-corretto-al2023`, `6.9-jdk17-corretto-al2023`, `6-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-corretto/Dockerfile) - -- [`6.9.4-jdk17-graal`, `6.9-jdk17-graal`, `6-jdk17-graal`, `6.9.4-jdk17-graal-noble`, `6.9-jdk17-graal-noble`, `6-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-noble-graal/Dockerfile) - -- [`6.9.4-jdk17-graal-jammy`, `6.9-jdk17-graal-jammy`, `6-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-jammy-graal/Dockerfile) - -- [`6.9.4-jdk17-graal-focal`, `6.9-jdk17-graal-focal`, `6-jdk17-graal-focal`, `6.9.4-jdk-graal-focal`, `6.9-jdk-graal-focal`, `6-jdk-graal-focal`, `6.9.4-graal-focal`, `6.9-graal-focal`, `6-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk17-focal-graal/Dockerfile) - -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-jammy/Dockerfile) - -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-focal/Dockerfile) - -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-alpine/Dockerfile) - -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk11-corretto/Dockerfile) - -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-jammy/Dockerfile) - -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-focal/Dockerfile) - -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk8-corretto/Dockerfile) - -- [`6.9.4-jdk23`, `6.9-jdk23`, `6-jdk23`, `6.9.4-jdk23-noble`, `6.9-jdk23-noble`, `6-jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-noble/Dockerfile) - -- [`6.9.4-jdk23-alpine`, `6.9-jdk23-alpine`, `6-jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-alpine/Dockerfile) - -- [`6.9.4-jdk23-corretto`, `6.9-jdk23-corretto`, `6-jdk23-corretto`, `6.9.4-jdk23-corretto-al2023`, `6.9-jdk23-corretto-al2023`, `6-jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-corretto/Dockerfile) - -- [`6.9.4-jdk23-graal`, `6.9-jdk23-graal`, `6-jdk23-graal`, `6.9.4-jdk23-graal-noble`, `6.9-jdk23-graal-noble`, `6-jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk23-noble-graal/Dockerfile) - -- [`6.9.4-jdk-lts-and-current`, `6.9-jdk-lts-and-current`, `6-jdk-lts-and-current`, `6.9.4-jdk-lts-and-current-noble`, `6.9-jdk-lts-and-current-noble`, `6-jdk-lts-and-current-noble`, `6.9.4-jdk-21-and-23`, `6.9-jdk-21-and-23`, `6-jdk-21-and-23`, `6.9.4-jdk-21-and-23-noble`, `6.9-jdk-21-and-23-noble`, `6-jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current/Dockerfile) - -- [`6.9.4-jdk-lts-and-current-alpine`, `6.9-jdk-lts-and-current-alpine`, `6-jdk-lts-and-current-alpine`, `6.9.4-jdk-21-and-23-alpine`, `6.9-jdk-21-and-23-alpine`, `6-jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-alpine/Dockerfile) - -- [`6.9.4-jdk-lts-and-current-corretto`, `6.9-jdk-lts-and-current-corretto`, `6-jdk-lts-and-current-corretto`, `6.9.4-jdk-lts-and-current-corretto-al2023`, `6.9-jdk-lts-and-current-corretto-al2023`, `6-jdk-lts-and-current-corretto-al2023`, `6.9.4-jdk-21-and-23-corretto`, `6.9-jdk-21-and-23-corretto`, `6-jdk-21-and-23-corretto`, `6.9.4-jdk-21-and-23-corretto-al2023`, `6.9-jdk-21-and-23-corretto-al2023`, `6-jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-corretto/Dockerfile) - -- [`6.9.4-jdk-lts-and-current-graal`, `6.9-jdk-lts-and-current-graal`, `6-jdk-lts-and-current-graal`, `6.9.4-jdk-lts-and-current-graal-noble`, `6.9-jdk-lts-and-current-graal-noble`, `6-jdk-lts-and-current-graal-noble`, `6.9.4-jdk-21-and-23-graal`, `6.9-jdk-21-and-23-graal`, `6-jdk-21-and-23-graal`, `6.9.4-jdk-21-and-23-graal-noble`, `6.9-jdk-21-and-23-graal-noble`, `6-jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a069c546f72cadd230b815ebfae82dc450768f90/jdk-lts-and-current-graal/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-corretto/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index d18fb8677b44..bb411614e012 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,6 +48,24 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) +- [`beta-6.8-beta1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/apache/Dockerfile) + +- [`beta-6.8-beta1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.8-beta1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.8-beta1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/apache/Dockerfile) + +- [`beta-6.8-beta1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.8-beta1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.8-beta1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/apache/Dockerfile) + +- [`beta-6.8-beta1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.8-beta1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From a48dd4acb563c921b45750f1eeabfe25648e0939 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Mar 2025 10:09:59 -0800 Subject: [PATCH 1967/2686] Run update.sh --- eclipse-mosquitto/README.md | 4 ++-- spark/README.md | 24 ++++++++---------------- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 65d4aed9a65f..f01c0e70fc9f 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.20`, `2.0.20-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/fb9b1153924ae0e2dfb3bcb4266ee5bb49a5c515/docker/2.0-openssl/Dockerfile) +- [`2.0.21`, `2.0.21-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/44fe135864ee751aa7dacf9923f3d7478339d700/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/fb9b1153924ae0e2dfb3bcb4266ee5bb49a5c515/docker/1.6-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/44fe135864ee751aa7dacf9923f3d7478339d700/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/spark/README.md b/spark/README.md index 6339a0c573b1..9feb777d1362 100644 --- a/spark/README.md +++ b/spark/README.md @@ -40,29 +40,21 @@ WARNING: - [`4.0.0-preview2-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java17-python3-ubuntu`, `3.5.4-java17-python3`, `3.5.4-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java17-python3-ubuntu`, `3.5.5-java17-python3`, `3.5.5-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java17-r-ubuntu`, `3.5.4-java17-r`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java17-r-ubuntu`, `3.5.5-java17-r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java17-ubuntu`, `3.5.4-java17-scala`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java17-ubuntu`, `3.5.5-java17-scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java11-python3-ubuntu`, `3.5.4-python3`, `3.5.4`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-python3-ubuntu`, `3.5.5-python3`, `3.5.5`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java11-r-ubuntu`, `3.5.4-r`, `r`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-r-ubuntu`, `3.5.5-r`, `r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java11-ubuntu`, `3.5.4-scala`, `scala`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-ubuntu`, `3.5.5-scala`, `scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.4-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/6b917ced4279dd7b3a33a81a08db37b3f27e037b/3.5.4/scala2.12-java11-python3-r-ubuntu/Dockerfile) - -- [`3.4.4-scala2.12-java11-python3-ubuntu`, `3.4.4-python3`, `3.4.4`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-python3-ubuntu/Dockerfile) - -- [`3.4.4-scala2.12-java11-r-ubuntu`, `3.4.4-r`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-r-ubuntu/Dockerfile) - -- [`3.4.4-scala2.12-java11-ubuntu`, `3.4.4-scala`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-ubuntu/Dockerfile) - -- [`3.4.4-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/18c599ec44230c48fc982eb52d6cdf069883a57d/3.4.4/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) From 2f4931c729391852ec7ca92a29394afb77ce41d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Mar 2025 11:09:51 -0800 Subject: [PATCH 1968/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++------------------- mongo/README.md | 30 +++++++++++++++++++++++ rocket.chat/README.md | 12 +++++----- tomcat/README.md | 56 +++++++++++++++++++++---------------------- 4 files changed, 88 insertions(+), 58 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 6886c89079a4..d7ab99c750a4 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.3-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.3-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.3-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.4-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.4-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.4-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.3-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.3-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.4-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.4-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.3-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.4-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.3-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.4-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.3-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.3-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.4-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.4-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.3-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.4-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.3-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.3-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.3-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.3-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.3-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.3`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.4-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.4-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.4-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.4-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.4-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.4`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.3-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.3-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.3-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.3-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.4-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.4-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.4-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.4-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.3-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.3-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.4-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.4-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.3-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.3-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.4-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.4-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.3-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.3-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.3-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.3-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.4-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.4-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.4-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.4-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.3-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.3-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fa472e699233b12cb42b03158e4bbd3667f75449/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.4-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.4-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-alpine3.20/Dockerfile) - [`11.0.12-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.12-php8.3-apache`, `11.0-php8.3-apache`, `11.0.12-php8.3`, `11.0-php8.3`, `11.0.12-apache-bookworm`, `11.0-apache-bookworm`, `11.0.12-apache`, `11.0-apache`, `11.0.12`, `11.0`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/apache-bookworm/Dockerfile) @@ -60,29 +60,29 @@ WARNING: - [`11.0.12-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.12-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.3-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.3-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.3-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.4-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.4-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.4-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.3-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.3-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.4-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.4-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.3-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.4-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.3-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.4-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.3-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.3-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.4-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.4-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.3-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.4-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.3-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.3-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.3-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.3-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.3-apache`, `10.4-apache`, `10-apache`, `10.4.3`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.4-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.4-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.4-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.4-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.4-apache`, `10.4-apache`, `10-apache`, `10.4.4`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.3-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.3-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.3-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.3-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.4-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.4-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.4-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.4-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.3-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.3-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.4-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.4-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.3-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.3-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.4-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.4-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.3-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.3-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.3-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.3-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.4-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.4-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.4-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.4-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.3-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.3-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/3952b81b9ab810fa75874dedc34ee7c9a769a974/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.4-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.4-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.13-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.13-php8.3-apache`, `10.3-php8.3-apache`, `10.3.13-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/apache-bookworm/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index 880b5f2659fc..0d57fc8d24b1 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -52,6 +52,18 @@ WARNING: - [`7.0.17-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.21-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/Dockerfile) + +- [`6.0.21-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`6.0.21-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.21-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`6.0.21-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`6.0.21-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) - [`6.0.20-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -102,6 +114,24 @@ WARNING: - [`7.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.21-rc0`, `6.0-rc`: + + - [`6.0.21-rc0-jammy`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/Dockerfile) + - [`6.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.21-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.21-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-1809/Dockerfile) + - `6.0.20`, `6.0`, `6`: - [`6.0.20-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 4c2188f4a572..b3eca4112320 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.3.2`, `7.3`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/1489f2e44025051687d2a07f9bfe130152db3d04/7.3/Dockerfile) +- [`7.4.0`, `7.4`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.4/Dockerfile) -- [`7.2.4`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.2/Dockerfile) +- [`7.3.3`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.3/Dockerfile) -- [`7.1.4`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.1/Dockerfile) +- [`7.2.5`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.2/Dockerfile) -- [`7.0.8`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/1c59a9034a409020c590cb9dd12e142e48e5335a/7.0/Dockerfile) +- [`7.1.5`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.1/Dockerfile) + +- [`7.0.9`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.0/Dockerfile) - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) - [`6.12.3`, `6.12`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.12/Dockerfile) -- [`6.11.3`, `6.11`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.11/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/tomcat/README.md b/tomcat/README.md index d4560cce4d4d..379ab2943bb3 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.4-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.4-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.4-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.4`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.5-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.5-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.5-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.5`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.4-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.4-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.4-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.5-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.5-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.5-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.4-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.5-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.4-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.5-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.4-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.4-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.4-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.5-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.5-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.5-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.4-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.4-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.4-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.5-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.5-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.5-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.4-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.5-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.4-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a139e5c2ddb7b84ff23607d7791f99a504504824/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.5-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.36-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.36-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.36-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.36`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk21/temurin-noble/Dockerfile) @@ -64,45 +64,45 @@ WARNING: - [`10.1.36-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.100-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.100-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.100-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.100`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.102-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.102-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.102-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.102`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.100-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.100-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.100-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.102-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.102-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.102-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.100-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.102-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.100-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.102-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.100-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.100-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.102-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.102-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.100-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.100-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.100-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.102-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.102-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.102-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.100-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.100-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.100-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.102-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.102-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.102-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.100-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.102-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.100-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.102-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.100-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.100-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.102-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.102-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.100-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.100-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.100-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.102-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.102-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.102-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.100-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.100-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.100-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.102-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.102-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.102-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.100-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.102-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.100-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.102-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.100-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.100-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.102-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.102-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.100-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.100-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.100-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.102-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.102-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.102-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.100-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.100-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.100-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.102-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.102-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.102-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.100-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.102-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.100-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.102-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.100-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.100-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/0c6260a01a0cd3f9e831248d0d54e3d583434706/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.102-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.102-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From acf925c962eabeb4bdec06d1df0a8c61528aa60b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Mar 2025 13:09:34 -0800 Subject: [PATCH 1969/2686] Run update.sh --- rakudo-star/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 550615764341..bb8df56fd495 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2024.12`, `bookworm`](https://github.com/Raku/docker/blob/5ee0f98efba56a1152775f861662c1774520aef9/2024.12/bookworm/Dockerfile) +- [`latest`, `2025.02`, `bookworm`](https://github.com/rakudo/docker/blob/02696336f52874a3440ae2fa8f2cbf2a7c6176dd/2025.02/bookworm/Dockerfile) -- [`alpine`, `2024.12-alpine`](https://github.com/Raku/docker/blob/5ee0f98efba56a1152775f861662c1774520aef9/2024.12/alpine/Dockerfile) +- [`alpine`, `2025.02-alpine`](https://github.com/rakudo/docker/blob/02696336f52874a3440ae2fa8f2cbf2a7c6176dd/2025.02/alpine/Dockerfile) # Quick reference (cont.) From a2e9e869201a2e4e541f4ad45594e6db95c55a44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Mar 2025 11:10:27 -0800 Subject: [PATCH 1970/2686] Run update.sh --- almalinux/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 551831309fe5..a1f39568bb10 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -28,13 +28,13 @@ WARNING: - [`10-kitten-minimal`, `10-kitten-minimal-20250204`](https://github.com/AlmaLinux/container-images/blob/0dd34b412e662a392275d79dc2f0fb635e74ff7a/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250307`](https://github.com/AlmaLinux/container-images/blob/861f8cac54e81214b50b6f5d9bb6c6c8f3878651/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20240923`](https://github.com/AlmaLinux/container-images/blob/9220c28666f44af82172cba59a3ddc30fbae1cb7/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250307`](https://github.com/AlmaLinux/container-images/blob/861f8cac54e81214b50b6f5d9bb6c6c8f3878651/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.5`, `9.5-20241118`](https://github.com/AlmaLinux/container-images/blob/77b627bf5868945d5ae46e65af84a2de13a7319a/default/amd64/Dockerfile) +- [`latest`, `9`, `9.5`, `9.5-20250307`](https://github.com/AlmaLinux/container-images/blob/42e0ab782d07aaf454c82face64cece898f109c8/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20241118`](https://github.com/AlmaLinux/container-images/blob/77b627bf5868945d5ae46e65af84a2de13a7319a/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250307`](https://github.com/AlmaLinux/container-images/blob/42e0ab782d07aaf454c82face64cece898f109c8/minimal/amd64/Dockerfile) # Quick reference (cont.) From da2dec38fec1223b012d351e9c506a878c6a0aa3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Mar 2025 12:10:39 -0800 Subject: [PATCH 1971/2686] Run update.sh --- backdrop/README.md | 4 ++-- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index cd83bcc290a8..c500bb9030aa 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30.0`, `1.30`, `1`, `1.30.0-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/eec73e9b23f76ffc609be7cdaf27afeccdd91732/1/apache/Dockerfile) +- [`1.30.1`, `1.30`, `1`, `1.30.1-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/0f037348948190b7ce4f2e1afe67514818c5a9fc/1/apache/Dockerfile) -- [`1.30.0-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/eec73e9b23f76ffc609be7cdaf27afeccdd91732/1/fpm/Dockerfile) +- [`1.30.1-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/0f037348948190b7ce4f2e1afe67514818c5a9fc/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 5eb5afff7c90..9ab970126495 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.110.4`, `5.110`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f9364fda1bd635ac94c3c5a0291a96ae171e6116/5/debian/Dockerfile) +- [`5.111.0`, `5.111`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9efcb268017b9b9da3cebf801b84721229f7ecff/5/debian/Dockerfile) -- [`5.110.4-alpine`, `5.110-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f9364fda1bd635ac94c3c5a0291a96ae171e6116/5/alpine/Dockerfile) +- [`5.111.0-alpine`, `5.111-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9efcb268017b9b9da3cebf801b84721229f7ecff/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 991886fa0fbe..cccf0def1883 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev6`, `3.2-dev`, `3.2-dev6-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/52fe35d0664a4d6ea63e1be22508dfca73a481c4/3.2/Dockerfile) +- [`3.2-dev7`, `3.2-dev`, `3.2-dev7-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b47b21a6996b0a8ca4421bbfeb7ec789a8858f26/3.2/Dockerfile) -- [`3.2-dev6-alpine`, `3.2-dev-alpine`, `3.2-dev6-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/52fe35d0664a4d6ea63e1be22508dfca73a481c4/3.2/alpine/Dockerfile) +- [`3.2-dev7-alpine`, `3.2-dev-alpine`, `3.2-dev7-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/b47b21a6996b0a8ca4421bbfeb7ec789a8858f26/3.2/alpine/Dockerfile) - [`3.1.5`, `3.1`, `latest`, `3.1.5-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e1dd4e1ca3d371d604a530397ad090cb0b0d8bda/3.1/Dockerfile) From c1e08699ac5d3e8a0145272f2b5a53745df3f5fd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 7 Mar 2025 14:09:50 -0800 Subject: [PATCH 1972/2686] Run update.sh --- jetty/README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 67da9916b7d7..cef8aded6d02 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.16-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.16-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.17-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.17-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.16-jre21`, `12.0-jre21`, `12-jre21`, `12.0.16-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.17-jre21`, `12.0-jre21`, `12-jre21`, `12.0.17-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.16-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.16-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.17-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.17-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.16-jre17`, `12.0-jre17`, `12-jre17`, `12.0.16-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.17-jre17`, `12.0-jre17`, `12-jre17`, `12.0.17-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.16-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.16-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.17-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.17-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.16-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.16-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.17-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.17-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.16-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.16-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.17-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.17-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.16`, `12.0`, `12`, `12.0.16-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.16-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.16-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.17`, `12.0`, `12`, `12.0.17-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.17-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.17-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.16-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.16-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.17-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.17-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.16-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.16-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.17-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.17-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.16-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk23-al2023/Dockerfile) +- [`12.0.17-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk23-al2023/Dockerfile) -- [`12.0.16-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.17-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.16-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.17-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.16-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.16-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.17-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.17-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.16-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.17-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.16-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.17-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.16-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.17-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk21-alpine/Dockerfile) From 9504d7acbee28fcc66e5102ecf4ed9152f4c2cdf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Mar 2025 11:09:53 -0700 Subject: [PATCH 1973/2686] Run update.sh --- clearlinux/README.md | 2 +- clojure/README.md | 138 +++++++++++++++++++++---------------------- 2 files changed, 70 insertions(+), 70 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 823d50a7ab59..61f8a916b4d0 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/368aae638245e4a7854d427e36bd2e7f7cc3b7d3/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/602a8f0055b6fa2df3d8a8f3c65fff18bbf7c6b8/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index ee18b5b57057..42e558cc04d6 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1517-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1517-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1517-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1517`, `temurin-8-tools-deps-1.12.0.1517-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1517-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1517-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1517-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1517-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1517`, `temurin-11-tools-deps-1.12.0.1517-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1517-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1517-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1517-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1517-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1517`, `temurin-17-tools-deps-1.12.0.1517-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1517-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1517-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1517`, `temurin-21-tools-deps-1.12.0.1517-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1517`, `tools-deps-1.12.0.1517-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1517-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1517-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1517-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1517-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1517-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1517-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) -- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-23/lein/Dockerfile) +- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-23/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-23/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) +- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) -- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1517-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1530-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1517`, `temurin-23-tools-deps-1.12.0.1517-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1530`, `temurin-23-tools-deps-1.12.0.1530-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-23/tools-deps/Dockerfile) -- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1517-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bookworm-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1517-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1530-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-23/tools-deps/Dockerfile) -- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1517-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/debian-bullseye-slim-23/tools-deps/Dockerfile) +- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-23/tools-deps/Dockerfile) -- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1517-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/5807e8962eebfe4536215951a54e3c74d3b17511/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) +- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1530-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) From 92438e0e5a0c7519ded2c3b2c1c42cc6fdd2f29e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Mar 2025 12:11:07 -0700 Subject: [PATCH 1974/2686] Run update.sh --- joomla/README.md | 30 +++++++++++++++--------------- ros/README.md | 14 +++++++------- sonarqube/README.md | 18 +++++++++--------- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 3abd3f72ee28..c41613c0a82d 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-beta1-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/apache/Dockerfile) +- [`5.3.0-beta2-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/apache/Dockerfile) -- [`5.3.0-beta1-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.3.0-beta2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.3.0-beta1-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.1/fpm/Dockerfile) +- [`5.3.0-beta2-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/fpm/Dockerfile) -- [`5.3.0-beta1`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta1-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta1-php8.2`, `5.3-php8.2`, `5.3.beta-php8.2`, `5.3.0-beta-php8.2`, `5.3.0-beta1-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/apache/Dockerfile) +- [`5.3.0-beta2-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/apache/Dockerfile) -- [`5.3.0-beta1-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.3.0-beta2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.3.0-beta1-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.2/fpm/Dockerfile) +- [`5.3.0-beta2-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/fpm/Dockerfile) -- [`5.3.0-beta1-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/apache/Dockerfile) +- [`5.3.0-beta2`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta2-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta2-php8.3`, `5.3-php8.3`, `5.3.beta-php8.3`, `5.3.0-beta-php8.3`, `5.3.0-beta2-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/apache/Dockerfile) -- [`5.3.0-beta1-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.3.0-beta2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-beta1-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e4ab2c679f88fa7ff6fdad6a1cc4b17ea2b3ceb2/5.3.beta/php8.3/fpm/Dockerfile) +- [`5.3.0-beta2-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/fpm/Dockerfile) - [`5.2.4-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/apache/Dockerfile) @@ -48,25 +48,25 @@ WARNING: - [`5.2.4-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/fpm/Dockerfile) -- [`5.2.4`, `5.2`, `5`, `latest`, `5.2.4-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.4-php8.2`, `5.2-php8.2`, `5-php8.2`, `php8.2`, `5.2.4-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/apache/Dockerfile) +- [`5.2.4-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/apache/Dockerfile) - [`5.2.4-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm-alpine/Dockerfile) - [`5.2.4-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm/Dockerfile) -- [`5.2.4-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/apache/Dockerfile) +- [`5.2.4`, `5.2`, `5`, `latest`, `5.2.4-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.4-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.4-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/apache/Dockerfile) -- [`5.2.4-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.4-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.4-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.3/fpm/Dockerfile) +- [`5.2.4-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/fpm/Dockerfile) -- [`4.4.11`, `4.4`, `4`, `4.4.11-apache`, `4.4-apache`, `4-apache`, `4.4.11-php8.1`, `4.4-php8.1`, `4-php8.1`, `4.4.11-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/apache/Dockerfile) +- [`4.4.11-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/apache/Dockerfile) - [`4.4.11-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm-alpine/Dockerfile) - [`4.4.11-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm/Dockerfile) -- [`4.4.11-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/apache/Dockerfile) +- [`4.4.11`, `4.4`, `4`, `4.4.11-apache`, `4.4-apache`, `4-apache`, `4.4.11-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.11-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/apache/Dockerfile) - [`4.4.11-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/fpm-alpine/Dockerfile) diff --git a/ros/README.md b/ros/README.md index bcc09e182d50..c5c303d84649 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/noetic/ubuntu/focal/ros-core/Dockerfile) +- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) @@ -32,29 +32,29 @@ WARNING: - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/humble/ubuntu/jammy/ros-core/Dockerfile) +- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/iron/ubuntu/jammy/ros-core/Dockerfile) +- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/2ad854492209b8dbab303578a5baedab4d5ab41d/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) -- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/74e321bc1837c29f223a6d54895aa3c8eb184119/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) +- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-core/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-core/Dockerfile) -- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/ros-base/Dockerfile) +- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-base/Dockerfile) -- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/7f98ddd88d872299c45b60c8bcd70d4eb6665222/ros/rolling/ubuntu/noble/perception/Dockerfile) +- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/perception/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 28edd1dc5ee7..2ebdfd935396 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/developer/Dockerfile) +- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/developer/Dockerfile) -- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/enterprise/Dockerfile) +- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/enterprise/Dockerfile) -- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/app/Dockerfile) +- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/datacenter/app/Dockerfile) -- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/2025.1/datacenter/search/Dockerfile) +- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/datacenter/search/Dockerfile) - [`25.3.0.104237-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/65d32aee3047ae2d7bff433d278b5e1622134a37/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/developer/Dockerfile) -- [`9.9.8-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/enterprise/Dockerfile) -- [`9.9.8-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/datacenter/app/Dockerfile) -- [`9.9.8-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/1edbd4a3f756a8b6eba3f039be62fd9c4862e9b9/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/datacenter/search/Dockerfile) # Quick reference (cont.) From bf0ef978d6e574f4ca164296c1ea860a0bd7b780 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Mar 2025 14:09:43 -0700 Subject: [PATCH 1975/2686] Run update.sh --- adminer/README.md | 8 ++++++-- golang/README.md | 12 ++++++------ openjdk/README.md | 50 +++++++++++++++++++++++------------------------ photon/README.md | 4 ++-- tomcat/README.md | 24 +++++++++++------------ 5 files changed, 51 insertions(+), 47 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index dbe905293bb1..785ddfe4b28c 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.17.1`, `4`, `latest`, `4.17.1-standalone`, `4-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) +- [`5.0.2`, `5`, `latest`, `5.0.2-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/dbe23162c8b9eb35f49a5d2fe3295d981e43d605/5/Dockerfile) -- [`4.17.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/fastcgi/Dockerfile) +- [`5.0.2-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/dbe23162c8b9eb35f49a5d2fe3295d981e43d605/5/fastcgi/Dockerfile) + +- [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) + +- [`4.17.1-fastcgi`, `4-fastcgi`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/fastcgi/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 185a28e969e9..ff83a497ff27 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250301-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bookworm/Dockerfile) +- [`tip-20250307-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bookworm/Dockerfile) -- [`tip-20250301-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bullseye/Dockerfile) +- [`tip-20250307-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bullseye/Dockerfile) -- [`tip-20250301-alpine3.21`, `tip-alpine3.21`, `tip-20250301-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/alpine3.21/Dockerfile) +- [`tip-20250307-alpine3.21`, `tip-alpine3.21`, `tip-20250307-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/alpine3.21/Dockerfile) -- [`tip-20250301-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/alpine3.20/Dockerfile) +- [`tip-20250307-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250301`, `tip`: +- `tip-20250307`, `tip`: - - [`tip-20250301-bookworm`](https://github.com/docker-library/golang/blob/198ea08f63aa97dd8a872396718c4618636ecb6b/tip/bookworm/Dockerfile) + - [`tip-20250307-bookworm`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 0ab74b0693dd..0a14ce9cb7fe 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,29 +42,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-12-jdk-oraclelinux9`, `25-ea-12-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-12-jdk-oracle`, `25-ea-12-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-13-jdk-oraclelinux9`, `25-ea-13-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-13-jdk-oracle`, `25-ea-13-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-12-jdk-oraclelinux8`, `25-ea-12-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-13-jdk-oraclelinux8`, `25-ea-13-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-12-jdk-bookworm`, `25-ea-12-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/bookworm/Dockerfile) +- [`25-ea-13-jdk-bookworm`, `25-ea-13-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/bookworm/Dockerfile) -- [`25-ea-12-jdk-slim-bookworm`, `25-ea-12-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-12-jdk-slim`, `25-ea-12-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-13-jdk-slim-bookworm`, `25-ea-13-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-13-jdk-slim`, `25-ea-13-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-12-jdk-bullseye`, `25-ea-12-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/bullseye/Dockerfile) +- [`25-ea-13-jdk-bullseye`, `25-ea-13-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/bullseye/Dockerfile) -- [`25-ea-12-jdk-slim-bullseye`, `25-ea-12-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-13-jdk-slim-bullseye`, `25-ea-13-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-12-jdk-windowsservercore-ltsc2025`, `25-ea-12-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-13-jdk-windowsservercore-ltsc2025`, `25-ea-13-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-12-jdk-windowsservercore-ltsc2022`, `25-ea-12-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-13-jdk-windowsservercore-ltsc2022`, `25-ea-13-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-12-jdk-windowsservercore-1809`, `25-ea-12-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-13-jdk-windowsservercore-1809`, `25-ea-13-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-12-jdk-nanoserver-ltsc2025`, `25-ea-12-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-13-jdk-nanoserver-ltsc2025`, `25-ea-13-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-12-jdk-nanoserver-ltsc2022`, `25-ea-12-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-13-jdk-nanoserver-ltsc2022`, `25-ea-13-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-12-jdk-nanoserver-1809`, `25-ea-12-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-13-jdk-nanoserver-1809`, `25-ea-13-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) @@ -92,24 +92,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-12-jdk`, `25-ea-12`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-13-jdk`, `25-ea-13`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-12-jdk-windowsservercore`, `25-ea-12-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-13-jdk-windowsservercore`, `25-ea-13-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-12-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-12-jdk-nanoserver`, `25-ea-12-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-13-jdk-nanoserver`, `25-ea-13-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-12-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-12-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-12-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/dadd9f3f38efb763e64bb7ed65a5c4ace33ad350/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-13-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-13-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: diff --git a/photon/README.md b/photon/README.md index a99ef5a8bcef..900f08e71b1b 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250302`, `latest`](https://github.com/vmware/photon-docker-image/blob/4806ac4ff2a0f1ba3bee1eea8544a0965f807531/docker/Dockerfile) +- [`5.0`, `5.0-20250309`, `latest`](https://github.com/vmware/photon-docker-image/blob/5af216767c0ec9e4ccba0c3721431c49e32f442e/docker/Dockerfile) -- [`4.0`, `4.0-20250223`](https://github.com/vmware/photon-docker-image/blob/2e9995ccd704e9c52b25c6eb6cd4f03a32b1ea3e/docker/Dockerfile) +- [`4.0`, `4.0-20250309`](https://github.com/vmware/photon-docker-image/blob/fb8974a7e05a681d8b31b3df850bd5203a1d3581/docker/Dockerfile) - [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 379ab2943bb3..9e53e35a842d 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,29 +40,29 @@ WARNING: - [`11.0.5-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.36-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.36-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.36-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.36`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.39-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.39-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.39-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.39`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.36-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.36-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.36-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.39-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.39-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.39-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.36-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.39-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.36-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.39-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.36-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.36-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.36-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.39-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.39-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.39-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.36-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.36-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.36-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.39-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.39-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.39-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.36-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.39-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.36-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.39-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.36-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.36-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.36-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.39-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.39-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.39-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.36-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.36-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.36-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.39-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.39-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.39-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.36-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.39-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.36-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/5c832f2c11d72142ee7a5b9fd393c9f93ae2f182/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.39-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.102-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.102-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.102-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.102`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-noble/Dockerfile) From 0858f613b25b3cbd5c2aae14106142d9d52d0764 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Mar 2025 16:11:00 -0700 Subject: [PATCH 1976/2686] Run update.sh --- gradle/README.md | 68 +++++++++++++++++++++++----------------------- telegraf/README.md | 12 ++++---- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 884b7dc5a0d5..b6503282ab0d 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,73 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13`, `8`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble/Dockerfile) +- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble/Dockerfile) -- [`8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy/Dockerfile) +- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy/Dockerfile) -- [`8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-alpine/Dockerfile) +- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-alpine/Dockerfile) -- [`8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-corretto/Dockerfile) +- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-corretto/Dockerfile) -- [`8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-ubi9/Dockerfile) +- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-ubi9/Dockerfile) -- [`8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble-graal/Dockerfile) +- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble-graal/Dockerfile) -- [`8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy-graal/Dockerfile) +- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy-graal/Dockerfile) -- [`8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble/Dockerfile) +- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble/Dockerfile) -- [`8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy/Dockerfile) +- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy/Dockerfile) -- [`8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal/Dockerfile) +- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal/Dockerfile) -- [`8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-alpine/Dockerfile) +- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-alpine/Dockerfile) -- [`8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-corretto/Dockerfile) +- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-corretto/Dockerfile) -- [`8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-ubi9/Dockerfile) +- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-ubi9/Dockerfile) -- [`8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble-graal/Dockerfile) +- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble-graal/Dockerfile) -- [`8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy-graal/Dockerfile) +- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy-graal/Dockerfile) -- [`8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal-graal/Dockerfile) +- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal-graal/Dockerfile) -- [`8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-jammy/Dockerfile) +- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-jammy/Dockerfile) -- [`8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-focal/Dockerfile) +- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-focal/Dockerfile) -- [`8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-alpine/Dockerfile) +- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-alpine/Dockerfile) -- [`8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-corretto/Dockerfile) +- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-corretto/Dockerfile) -- [`8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-ubi9/Dockerfile) +- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-ubi9/Dockerfile) -- [`8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-jammy/Dockerfile) +- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-jammy/Dockerfile) -- [`8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-focal/Dockerfile) +- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-focal/Dockerfile) -- [`8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-corretto/Dockerfile) +- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-corretto/Dockerfile) -- [`8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-ubi9/Dockerfile) +- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-ubi9/Dockerfile) -- [`8.13-jdk23`, `8-jdk23`, `jdk23`, `8.13-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble/Dockerfile) +- [`8.13.0-jdk23`, `8.13-jdk23`, `8-jdk23`, `jdk23`, `8.13.0-jdk23-noble`, `8.13-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble/Dockerfile) -- [`8.13-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-alpine/Dockerfile) +- [`8.13.0-jdk23-alpine`, `8.13-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-alpine/Dockerfile) -- [`8.13-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.13-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-corretto/Dockerfile) +- [`8.13.0-jdk23-corretto`, `8.13-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.13.0-jdk23-corretto-al2023`, `8.13-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-corretto/Dockerfile) -- [`8.13-jdk23-ubi`, `8-jdk23-ubi`, `jdk23-ubi`, `8.13-jdk23-ubi-minimal`, `8-jdk23-ubi-minimal`, `jdk23-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-ubi9/Dockerfile) +- [`8.13.0-jdk23-ubi`, `8.13-jdk23-ubi`, `8-jdk23-ubi`, `jdk23-ubi`, `8.13.0-jdk23-ubi-minimal`, `8.13-jdk23-ubi-minimal`, `8-jdk23-ubi-minimal`, `jdk23-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-ubi9/Dockerfile) -- [`8.13-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.13-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble-graal/Dockerfile) +- [`8.13.0-jdk23-graal`, `8.13-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.13.0-jdk23-graal-noble`, `8.13-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble-graal/Dockerfile) -- [`8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.13-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current/Dockerfile) +- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-23`, `8.13-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.13.0-jdk-21-and-23-noble`, `8.13-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current/Dockerfile) -- [`8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-alpine/Dockerfile) +- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-23-alpine`, `8.13-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-alpine/Dockerfile) -- [`8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.13-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-corretto/Dockerfile) +- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-23-corretto`, `8.13-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.13.0-jdk-21-and-23-corretto-al2023`, `8.13-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-corretto/Dockerfile) -- [`8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.13-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-graal/Dockerfile) +- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-23-graal`, `8.13-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.13.0-jdk-21-and-23-graal-noble`, `8.13-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-noble/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 33d6af6f59d0..cc430a6ad58e 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31`, `1.31.3`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.31/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.32/Dockerfile) -- [`1.31-alpine`, `1.31.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.31/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.32/alpine/Dockerfile) -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.32/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.33/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.32/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.33/alpine/Dockerfile) -- [`1.33`, `1.33.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.33/Dockerfile) +- [`1.34`, `1.34.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.34/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/fb1e8929fc3387b7868fdbac5923438e132d1ee4/telegraf/1.33/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.34/alpine/Dockerfile) # Quick reference (cont.) From 5e495ef0e9ba638626b67c498992d985c21705df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Mar 2025 10:10:17 -0700 Subject: [PATCH 1977/2686] Run update.sh --- erlang/README.md | 6 +++--- neo4j/README.md | 8 ++++---- odoo/README.md | 6 +++--- redmine/README.md | 18 +++++++++--------- xwiki/README.md | 12 ++++++------ 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 91b98b5f0861..1b57f2dab8aa 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`27.2.4.0`, `27.2.4`, `27.2`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/Dockerfile) +- [`27.3.0.0`, `27.3.0`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/Dockerfile) -- [`27.2.4.0-slim`, `27.2.4-slim`, `27.2-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/slim/Dockerfile) +- [`27.3.0.0-slim`, `27.3.0-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/slim/Dockerfile) -- [`27.2.4.0-alpine`, `27.2.4-alpine`, `27.2-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/f69c1f56d1e91654d5d318542da9ac1a8ff7c0c1/27/alpine/Dockerfile) +- [`27.3.0.0-alpine`, `27.3.0-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 90fa24317526..a60c64cbeee1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.02.0-enterprise-ubi9`, `2025.02-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/ubi9/enterprise/Dockerfile) -- [`5.26.3-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.3-community`, `5.26-community`, `5-community`, `5.26.3-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.3`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/bullseye/community/Dockerfile) +- [`5.26.4-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.4-community`, `5.26-community`, `5-community`, `5.26.4-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.4`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/bullseye/community/Dockerfile) -- [`5.26.3-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.3-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/bullseye/enterprise/Dockerfile) +- [`5.26.4-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.4-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/bullseye/enterprise/Dockerfile) -- [`5.26.3-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.3-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/ubi9/community/Dockerfile) +- [`5.26.4-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.4-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/ubi9/community/Dockerfile) -- [`5.26.3-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c3a02b8df287e489dbf8099fc231b57ddff82582/5.26.3/ubi9/enterprise/Dockerfile) +- [`5.26.4-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/ubi9/enterprise/Dockerfile) - [`4.4.41`, `4.4.41-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/community/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 8b511f2600d4..5bc153ac62ab 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250218`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/18.0/Dockerfile) +- [`18.0-20250311`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/18.0/Dockerfile) -- [`17.0-20250218`, `17.0`, `17`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/17.0/Dockerfile) +- [`17.0-20250311`, `17.0`, `17`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/17.0/Dockerfile) -- [`16.0-20250218`, `16.0`, `16`](https://github.com/odoo/docker/blob/061cbb890fb7750146483717c32d9f533856468e/16.0/Dockerfile) +- [`16.0-20250311`, `16.0`, `16`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/16.0/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 60450c61903c..0b4c959634b1 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.3`, `6.0`, `6`, `latest`, `6.0.3-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/bookworm/Dockerfile) +- [`6.0.4`, `6.0`, `6`, `latest`, `6.0.4-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/bookworm/Dockerfile) -- [`6.0.3-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/alpine3.21/Dockerfile) +- [`6.0.4-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.4-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/alpine3.21/Dockerfile) -- [`6.0.3-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/6.0/alpine3.20/Dockerfile) +- [`6.0.4-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/alpine3.20/Dockerfile) -- [`5.1.6`, `5.1`, `5`, `5.1.6-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/bookworm/Dockerfile) +- [`5.1.7`, `5.1`, `5`, `5.1.7-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/bookworm/Dockerfile) -- [`5.1.6-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.6-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/alpine3.21/Dockerfile) +- [`5.1.7-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.7-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/alpine3.21/Dockerfile) -- [`5.1.6-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.1/alpine3.20/Dockerfile) +- [`5.1.7-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/alpine3.20/Dockerfile) -- [`5.0.11`, `5.0`, `5.0.11-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/bookworm/Dockerfile) +- [`5.0.12`, `5.0`, `5.0.12-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/bookworm/Dockerfile) -- [`5.0.11-alpine3.21`, `5.0-alpine3.21`, `5.0.11-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/alpine3.21/Dockerfile) +- [`5.0.12-alpine3.21`, `5.0-alpine3.21`, `5.0.12-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/alpine3.21/Dockerfile) -- [`5.0.11-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/efe32ca0f173e6a0b02b1c89c4fc178f7109f228/5.0/alpine3.20/Dockerfile) +- [`5.0.12-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index bf9c887173f6..2a6905674559 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,17 +30,17 @@ WARNING: - [`17-mariadb-tomcat`, `17.1-mariadb-tomcat`, `17.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.4`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.4-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.5`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.4-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.4-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a668c18d7c49f33ebf188da04e7e2a1473960550/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.6`, `16.4-mysql-tomcat`, `16.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.7`, `16.4-mysql-tomcat`, `16.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.6-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/5057e7a60d9f378812ed95095c7f7217a465af01/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mariadb-tomcat/Dockerfile) - [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) From 81ac6a0e857a3fa07ea39162ba3dfb5c54b93a12 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Mar 2025 11:09:37 -0700 Subject: [PATCH 1978/2686] Run update.sh --- julia/README.md | 60 ++++++++++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/julia/README.md b/julia/README.md index 138efe9d470e..7e4605cd3349 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,57 +28,57 @@ WARNING: ## Simple Tags -- [`1.11.3-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bookworm/Dockerfile) +- [`1.11.4-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) -- [`1.11.3-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bullseye/Dockerfile) +- [`1.11.4-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bullseye/Dockerfile) -- [`1.11.3-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.11.4-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.11.3-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.4-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.3-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) +- [`1.11.4-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) -- [`1.10.8-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bookworm/Dockerfile) +- [`1.10.9-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) -- [`1.10.8-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bullseye/Dockerfile) +- [`1.10.9-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bullseye/Dockerfile) -- [`1.10.8-alpine3.21`, `1.10-alpine3.21`, `1.10.8-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/alpine3.21/Dockerfile) +- [`1.10.9-alpine3.21`, `1.10-alpine3.21`, `1.10.9-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.21/Dockerfile) -- [`1.10.8-alpine3.20`, `1.10-alpine3.20`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/alpine3.20/Dockerfile) +- [`1.10.9-alpine3.20`, `1.10-alpine3.20`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.20/Dockerfile) -- [`1.10.8-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.10.9-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.10.8-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.9-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.8-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) +- [`1.10.9-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `1.11.3`, `1.11`, `1`, `latest`: +- `1.11.4`, `1.11`, `1`, `latest`: - - [`1.11.3-bookworm`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/bookworm/Dockerfile) - - [`1.11.3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.4-bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) + - [`1.11.4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.3-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.4-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/01eb09062a73c9d6f19a791065f1965a8a44208c/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.10.8`, `1.10`: +- `1.10.9`, `1.10`: - - [`1.10.8-bookworm`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/bookworm/Dockerfile) - - [`1.10.8-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.8-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.8-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.9-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) + - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.9-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) -- `1.10.8-windowsservercore`, `1.10-windowsservercore`: +- `1.10.9-windowsservercore`, `1.10-windowsservercore`: - - [`1.10.8-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.8-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.8-windowsservercore-1809`](https://github.com/docker-library/julia/blob/0df7ecd4d078a59c152feeeecabece2e6e782603/1.10/windows/windowsservercore-1809/Dockerfile) + - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.9-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 56de4edb0aa7e08cdf6c164b19e155b9031aee09 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Mar 2025 14:11:59 -0700 Subject: [PATCH 1979/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 68765f4f7501..0e2457eb3a14 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250224`, `devel`, `devel-20250224-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d5275aed4df135662b43d33e15c825b93e81ec09/devel/Dockerfile) +- [`devel-20250307`, `devel`, `devel-20250307-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d8b39f6410700f850a53912de89621f514642836/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) From 2b15be2a83161d63f2e87159bb0cf173aa889d00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Mar 2025 15:09:53 -0700 Subject: [PATCH 1980/2686] Run update.sh --- wordpress/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wordpress/README.md b/wordpress/README.md index bb411614e012..6f87d044208e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,23 +48,23 @@ WARNING: - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) -- [`beta-6.8-beta1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-beta2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-beta1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-beta2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-beta1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-beta2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-beta1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-beta2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-beta1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-beta2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-beta1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-beta2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-beta1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-beta2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-beta1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-beta2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-beta1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6086483e26c435c027002609830dd922d7ebcdae/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-beta2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/fpm-alpine/Dockerfile) # Quick reference (cont.) From 5559474354cec312da565890eec32bfca529f154 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 11 Mar 2025 17:10:55 -0700 Subject: [PATCH 1981/2686] Run update.sh --- solr/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solr/README.md b/solr/README.md index 87f409c5bd7c..ab2d496e4958 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.0`, `9.8`, `9`, `latest`](https://github.com/apache/solr-docker/blob/cd80b30b59886a4b71de8583e9990b8a31073e99/9.8/Dockerfile) +- [`9.8.1`, `9.8`, `9`, `latest`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8/Dockerfile) -- [`9.8.0-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/cd80b30b59886a4b71de8583e9990b8a31073e99/9.8-slim/Dockerfile) +- [`9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8-slim/Dockerfile) - [`9.7.0`, `9.7`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7/Dockerfile) From 3b744270a68ae64b73be6da3f4d2f483e8115a21 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Mar 2025 10:09:47 -0700 Subject: [PATCH 1982/2686] Run update.sh --- rocket.chat/README.md | 4 ++-- swipl/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index b3eca4112320..059870679cd7 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.4.0`, `7.4`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.4/Dockerfile) +- [`7.4.1`, `7.4`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.4/Dockerfile) -- [`7.3.3`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.3/Dockerfile) +- [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.3/Dockerfile) - [`7.2.5`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.2/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index 0f6e266d2750..400af0e964ec 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.20`](https://github.com/SWI-Prolog/docker-swipl/blob/48963cac95fb1e03fa6280d30da302b887d42280/9.3.20/bookworm/Dockerfile) +- [`latest`, `9.3.21`](https://github.com/SWI-Prolog/docker-swipl/blob/dbf90dada050f242dbdde22bb5f82ffb79dda87e/9.3.21/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/48963cac95fb1e03fa6280d30da302b887d42280/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/dbf90dada050f242dbdde22bb5f82ffb79dda87e/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 9fb06b8d90b75151a68dec210cf3ef19d591de8f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Mar 2025 11:10:09 -0700 Subject: [PATCH 1983/2686] Run update.sh --- dart/README.md | 4 +-- mongo/README.md | 66 ++++++++++++++++++++++++++++++++------------- sonarqube/README.md | 18 ++++++------- 3 files changed, 59 insertions(+), 29 deletions(-) diff --git a/dart/README.md b/dart/README.md index 71b67012c44c..8c7be6d426dc 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.1-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.1`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/dd2e9b5f11fbfa06a8e10cecf93feacfaa958108/stable/bookworm/Dockerfile) +- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/82a44847f72ed8edf457d301e02b51a31b6f1646/stable/bookworm/Dockerfile) -- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/dd2e9b5f11fbfa06a8e10cecf93feacfaa958108/beta/bookworm/Dockerfile) +- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/82a44847f72ed8edf457d301e02b51a31b6f1646/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 0d57fc8d24b1..dd48ecd60f0b 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,18 @@ WARNING: ## Simple Tags +- [`8.0.6-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/Dockerfile) + +- [`8.0.6-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.6-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.6-rc1-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`8.0.6-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.6-rc1-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) - [`8.0.5-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,17 +64,17 @@ WARNING: - [`7.0.17-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.21-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/Dockerfile) +- [`6.0.21-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/Dockerfile) -- [`6.0.21-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.21-rc1-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`6.0.21-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.21-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.21-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.21-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`6.0.21-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.21-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.21-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-1809/Dockerfile) +- [`6.0.21-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-1809/Dockerfile) - [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) @@ -78,6 +90,24 @@ WARNING: ## Shared Tags +- `8.0.6-rc1`, `8.0-rc`: + + - [`8.0.6-rc1-noble`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/Dockerfile) + - [`8.0.6-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.6-rc1-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.6-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.6-rc1-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.6-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.6-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-1809/Dockerfile) + - `8.0.5`, `8.0`, `8`, `latest`: - [`8.0.5-noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) @@ -114,23 +144,23 @@ WARNING: - [`7.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.21-rc0`, `6.0-rc`: +- `6.0.21-rc1`, `6.0-rc`: - - [`6.0.21-rc0-jammy`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/Dockerfile) - - [`6.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.21-rc1-jammy`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/Dockerfile) + - [`6.0.21-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.21-rc0-windowsservercore`, `6.0-rc-windowsservercore`: +- `6.0.21-rc1-windowsservercore`, `6.0-rc-windowsservercore`: - - [`6.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`6.0.21-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) -- `6.0.21-rc0-nanoserver`, `6.0-rc-nanoserver`: +- `6.0.21-rc1-nanoserver`, `6.0-rc-nanoserver`: - - [`6.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/33fc9935798bca0cdbf73944fd9a3d739019f3f0/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.21-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.21-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.20`, `6.0`, `6`: diff --git a/sonarqube/README.md b/sonarqube/README.md index 2ebdfd935396..17d30acc250b 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.1.0-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/developer/Dockerfile) +- [`2025.1.1-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/developer/Dockerfile) -- [`2025.1.0-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/enterprise/Dockerfile) +- [`2025.1.1-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/enterprise/Dockerfile) -- [`2025.1.0-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/datacenter/app/Dockerfile) +- [`2025.1.1-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/datacenter/app/Dockerfile) -- [`2025.1.0-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/2025.1/datacenter/search/Dockerfile) +- [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/datacenter/search/Dockerfile) - [`25.3.0.104237-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/65d32aee3047ae2d7bff433d278b5e1622134a37/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/78bbf65e11423654acac1daa81776e0eaebd2f7c/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/datacenter/search/Dockerfile) # Quick reference (cont.) From f7217a8d021b7f160d2989071390f43020bc25da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Mar 2025 16:10:24 -0700 Subject: [PATCH 1984/2686] Run update.sh --- adminer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 785ddfe4b28c..366434fe205d 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.2`, `5`, `latest`, `5.0.2-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/dbe23162c8b9eb35f49a5d2fe3295d981e43d605/5/Dockerfile) +- [`5.0.4`, `5`, `latest`, `5.0.4-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/3718dc23ab74b2df7c6bf4560b32a6f5a8aada25/5/Dockerfile) -- [`5.0.2-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/dbe23162c8b9eb35f49a5d2fe3295d981e43d605/5/fastcgi/Dockerfile) +- [`5.0.4-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/3718dc23ab74b2df7c6bf4560b32a6f5a8aada25/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) From 7ad82791e2632ebea9ff37cf164f3550d8cb1478 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 12 Mar 2025 17:09:41 -0700 Subject: [PATCH 1985/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 9ab970126495..efb336bf451a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.111.0`, `5.111`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9efcb268017b9b9da3cebf801b84721229f7ecff/5/debian/Dockerfile) +- [`5.112.0`, `5.112`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7a77e301e36ffe146fae8e2d3da9bf8e58b1c11c/5/debian/Dockerfile) -- [`5.111.0-alpine`, `5.111-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9efcb268017b9b9da3cebf801b84721229f7ecff/5/alpine/Dockerfile) +- [`5.112.0-alpine`, `5.112-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7a77e301e36ffe146fae8e2d3da9bf8e58b1c11c/5/alpine/Dockerfile) # Quick reference (cont.) From d4460b86f03ec204dd77a7a1897509caed2c4431 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Mar 2025 10:11:04 -0700 Subject: [PATCH 1986/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 29a258e84c33..944ef762ad9f 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.14-bullseye-slim`, `22.14.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.18-alpine3.20`, `20.18.3-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/alpine3.20/Dockerfile) +- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.0-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.18-alpine`, `20.18-alpine3.21`, `20.18.3-alpine`, `20.18.3-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.0-alpine`, `20.19.0-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/alpine3.21/Dockerfile) -- [`20`, `20-bookworm`, `20.18`, `20.18-bookworm`, `20.18.3`, `20.18.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.0`, `20.19.0-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.18-bookworm-slim`, `20.18-slim`, `20.18.3-bookworm-slim`, `20.18.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.0-bookworm-slim`, `20.19.0-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.18-bullseye`, `20.18.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.0-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.18-bullseye-slim`, `20.18.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/6e130ce34626be3646f566d40cd78357b1a0a73f/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bullseye-slim/Dockerfile) - [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.7-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/alpine3.20/Dockerfile) From 3b79af7ab5289dcde181adcedb6cdd9120dc1b90 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Mar 2025 11:11:24 -0700 Subject: [PATCH 1987/2686] Run update.sh --- golang/README.md | 36 ++++++++++++++++++------------------ oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/golang/README.md b/golang/README.md index ff83a497ff27..b0a9fca643d9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -36,11 +36,11 @@ WARNING: - [`1.24.1-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/alpine3.20/Dockerfile) -- [`1.24.1-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.1-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.1-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.1-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.1-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) +- [`1.24.1-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) - [`1.24.1-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2025/Dockerfile) @@ -56,11 +56,11 @@ WARNING: - [`1.23.7-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/alpine3.20/Dockerfile) -- [`1.23.7-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.7-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.7-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.7-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.7-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.7-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) - [`1.23.7-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2025/Dockerfile) @@ -81,15 +81,15 @@ WARNING: - `1.24.1`, `1.24`, `1`, `latest`: - [`1.24.1-bookworm`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bookworm/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) - `1.24.1-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) - `1.24.1-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: @@ -100,15 +100,15 @@ WARNING: - `1.23.7`, `1.23`: - [`1.23.7-bookworm`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bookworm/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.7-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.7-nanoserver`, `1.23-nanoserver`: diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2cc0e31d4d48..f6c2b6571475 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/770aa8a4f57123f03a2ddcf0e8e0816bf57ff448/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7-slim-fips/Dockerfile) # Quick reference (cont.) From 8b100f8815d0dac2e68de675441105a1e20ef315 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Mar 2025 14:09:46 -0700 Subject: [PATCH 1988/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index f6c2b6571475..2a7ca9dbf88a 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/3449248c48ca5d20ce4746756a70fd598925dec9/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7-slim-fips/Dockerfile) # Quick reference (cont.) From fd927f65508efcdb9a94c26c7dbf61fcfd0a5015 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Mar 2025 16:10:13 -0700 Subject: [PATCH 1989/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- convertigo/README.md | 2 +- mongo/README.md | 36 ++++++++++++++++++------------------ 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 45251b210f1d..9748d889ad69 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250218.2`](https://github.com/amazonlinux/container-images/blob/271d0bf7ec6d134694d67722f3bda9af6cbcccd4/Dockerfile) +- [`2023`, `latest`, `2023.6.20250303.0`](https://github.com/amazonlinux/container-images/blob/a640c23ce266704e41d5f29a1b7f29cfac3b911e/Dockerfile) -- [`2`, `2.0.20250220.0`](https://github.com/amazonlinux/container-images/blob/2d1136398a8951e414a869392af0636d7f326822/Dockerfile) +- [`2`, `2.0.20250305.0`](https://github.com/amazonlinux/container-images/blob/0c6f6095fa377f3e5f8c5e0e3a586eefa3e6a471/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/convertigo/README.md b/convertigo/README.md index 1222dd8bad1f..e736efcb00b5 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.2`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/229c009b525e364cff964979567f43d372efa9e0/docker/default/Dockerfile) +- [`8.3.3`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/129a6df804d60436a1c702798967f0673a4b11c0/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index dd48ecd60f0b..6e6ac034193c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`8.0.6-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/Dockerfile) +- [`8.0.6-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/Dockerfile) -- [`8.0.6-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.6-rc2-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.6-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.6-rc2-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.6-rc1-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.6-rc2-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- [`8.0.6-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.6-rc2-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.6-rc1-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.6-rc2-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-1809/Dockerfile) - [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) @@ -90,23 +90,23 @@ WARNING: ## Shared Tags -- `8.0.6-rc1`, `8.0-rc`: +- `8.0.6-rc2`, `8.0-rc`: - - [`8.0.6-rc1-noble`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/Dockerfile) - - [`8.0.6-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.6-rc2-noble`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/Dockerfile) + - [`8.0.6-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.6-rc1-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.6-rc2-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.6-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.6-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) -- `8.0.6-rc1-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.6-rc2-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.6-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.6-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7edee7d440fa6860beb5e0a48233dc769c38bfe1/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.6-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.6-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-1809/Dockerfile) - `8.0.5`, `8.0`, `8`, `latest`: From cb1dc7baf163e010a7a67ded5c1708fc2a6bad95 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 13 Mar 2025 17:09:38 -0700 Subject: [PATCH 1990/2686] Run update.sh --- php/README.md | 168 +++++++++++++++----------------------------- wordpress/README.md | 14 ++++ 2 files changed, 70 insertions(+), 112 deletions(-) diff --git a/php/README.md b/php/README.md index 6b2d13312c72..007b26a91e0d 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.5RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.5RC1-bookworm`, `8.4-rc-bookworm`, `8.4.5RC1-cli`, `8.4-rc-cli`, `8.4.5RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.5-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.5-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.5-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.5`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/cli/Dockerfile) -- [`8.4.5RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.5RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.5-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.5-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/apache/Dockerfile) -- [`8.4.5RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.5RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.5-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.5-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/fpm/Dockerfile) -- [`8.4.5RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.5RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.5-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.5-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/zts/Dockerfile) -- [`8.4.5RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.5RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.5-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.5-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/cli/Dockerfile) -- [`8.4.5RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.5-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/apache/Dockerfile) -- [`8.4.5RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.5-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/fpm/Dockerfile) -- [`8.4.5RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.5-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/zts/Dockerfile) -- [`8.4.5RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.5RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.5RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.5RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.5-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.5-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.5-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.5-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.5RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.5RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.5-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.5-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.5RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.5RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.5-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.5-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.5RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.5RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.5-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.5-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.5RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.5-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.5RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/537612073e11afc8fcf0400f9f4b517c4df8ed24/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.5-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.4-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.4-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.4-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.4`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/cli/Dockerfile) +- [`8.3.19-cli-bookworm`, `8.3-cli-bookworm`, `8.3.19-bookworm`, `8.3-bookworm`, `8.3.19-cli`, `8.3-cli`, `8.3.19`, `8.3`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/cli/Dockerfile) -- [`8.4.4-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.4-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/apache/Dockerfile) +- [`8.3.19-apache-bookworm`, `8.3-apache-bookworm`, `8.3.19-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/apache/Dockerfile) -- [`8.4.4-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.4-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/fpm/Dockerfile) +- [`8.3.19-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.19-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/fpm/Dockerfile) -- [`8.4.4-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.4-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bookworm/zts/Dockerfile) +- [`8.3.19-zts-bookworm`, `8.3-zts-bookworm`, `8.3.19-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/zts/Dockerfile) -- [`8.4.4-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.4-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/cli/Dockerfile) +- [`8.3.19-cli-bullseye`, `8.3-cli-bullseye`, `8.3.19-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/cli/Dockerfile) -- [`8.4.4-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/apache/Dockerfile) +- [`8.3.19-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/apache/Dockerfile) -- [`8.4.4-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/fpm/Dockerfile) +- [`8.3.19-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/fpm/Dockerfile) -- [`8.4.4-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/bullseye/zts/Dockerfile) +- [`8.3.19-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/zts/Dockerfile) -- [`8.4.4-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.4-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.4-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.4-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.19-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.19-alpine3.21`, `8.3-alpine3.21`, `8.3.19-cli-alpine`, `8.3-cli-alpine`, `8.3.19-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.4-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.4-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.19-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.19-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.4-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.4-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.19-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.19-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/zts/Dockerfile) -- [`8.4.4-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.4-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/cli/Dockerfile) +- [`8.3.19-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.19-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/cli/Dockerfile) -- [`8.4.4-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/fpm/Dockerfile) +- [`8.3.19-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/fpm/Dockerfile) -- [`8.4.4-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/bf4834b575da91a56db7bd76e3b28362a2869272/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.19-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/zts/Dockerfile) -- [`8.3.18RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.18RC1-bookworm`, `8.3-rc-bookworm`, `8.3.18RC1-cli`, `8.3-rc-cli`, `8.3.18RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/cli/Dockerfile) +- [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) -- [`8.3.18RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.18RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/apache/Dockerfile) +- [`8.2.28-apache-bookworm`, `8.2-apache-bookworm`, `8.2.28-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/apache/Dockerfile) -- [`8.3.18RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.18RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.2.28-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.28-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/fpm/Dockerfile) -- [`8.3.18RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.18RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bookworm/zts/Dockerfile) +- [`8.2.28-zts-bookworm`, `8.2-zts-bookworm`, `8.2.28-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/zts/Dockerfile) -- [`8.3.18RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.18RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/cli/Dockerfile) +- [`8.2.28-cli-bullseye`, `8.2-cli-bullseye`, `8.2.28-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/cli/Dockerfile) -- [`8.3.18RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/apache/Dockerfile) +- [`8.2.28-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/apache/Dockerfile) -- [`8.3.18RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.2.28-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/fpm/Dockerfile) -- [`8.3.18RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/bullseye/zts/Dockerfile) +- [`8.2.28-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/zts/Dockerfile) -- [`8.3.18RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.18RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.18RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.18RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/cli/Dockerfile) -- [`8.3.18RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.18RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/fpm/Dockerfile) -- [`8.3.18RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.18RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/zts/Dockerfile) -- [`8.3.18RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.18RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.2.28-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.28-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/cli/Dockerfile) -- [`8.3.18RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/fpm/Dockerfile) -- [`8.3.18RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/443253c663e584f53894e500f0dea705567029a6/8.3-rc/alpine3.20/zts/Dockerfile) +- [`8.2.28-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/zts/Dockerfile) -- [`8.3.17-cli-bookworm`, `8.3-cli-bookworm`, `8.3.17-bookworm`, `8.3-bookworm`, `8.3.17-cli`, `8.3-cli`, `8.3.17`, `8.3`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/cli/Dockerfile) +- [`8.1.32-cli-bookworm`, `8.1-cli-bookworm`, `8.1.32-bookworm`, `8.1-bookworm`, `8.1.32-cli`, `8.1-cli`, `8.1.32`, `8.1`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/cli/Dockerfile) -- [`8.3.17-apache-bookworm`, `8.3-apache-bookworm`, `8.3.17-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/apache/Dockerfile) +- [`8.1.32-apache-bookworm`, `8.1-apache-bookworm`, `8.1.32-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/apache/Dockerfile) -- [`8.3.17-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.17-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/fpm/Dockerfile) +- [`8.1.32-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.32-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/fpm/Dockerfile) -- [`8.3.17-zts-bookworm`, `8.3-zts-bookworm`, `8.3.17-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bookworm/zts/Dockerfile) +- [`8.1.32-zts-bookworm`, `8.1-zts-bookworm`, `8.1.32-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/zts/Dockerfile) -- [`8.3.17-cli-bullseye`, `8.3-cli-bullseye`, `8.3.17-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/cli/Dockerfile) +- [`8.1.32-cli-bullseye`, `8.1-cli-bullseye`, `8.1.32-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/cli/Dockerfile) -- [`8.3.17-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/apache/Dockerfile) +- [`8.1.32-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/apache/Dockerfile) -- [`8.3.17-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/fpm/Dockerfile) +- [`8.1.32-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/fpm/Dockerfile) -- [`8.3.17-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/bullseye/zts/Dockerfile) +- [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/zts/Dockerfile) -- [`8.3.17-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.17-alpine3.21`, `8.3-alpine3.21`, `8.3.17-cli-alpine`, `8.3-cli-alpine`, `8.3.17-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/cli/Dockerfile) +- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) -- [`8.3.17-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.17-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) -- [`8.3.17-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.17-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.21/zts/Dockerfile) +- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) -- [`8.3.17-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.17-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/cli/Dockerfile) +- [`8.1.32-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.32-alpine3.20`, `8.1-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/cli/Dockerfile) -- [`8.3.17-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.20`, `8.1-fpm-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/fpm/Dockerfile) -- [`8.3.17-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/fdf67a8a82ff5eed8ef18bbd3a94ae40c8e23da3/8.3/alpine3.20/zts/Dockerfile) - -- [`8.2.27-cli-bookworm`, `8.2-cli-bookworm`, `8.2.27-bookworm`, `8.2-bookworm`, `8.2.27-cli`, `8.2-cli`, `8.2.27`, `8.2`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/cli/Dockerfile) - -- [`8.2.27-apache-bookworm`, `8.2-apache-bookworm`, `8.2.27-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/apache/Dockerfile) - -- [`8.2.27-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.27-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.27-zts-bookworm`, `8.2-zts-bookworm`, `8.2.27-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bookworm/zts/Dockerfile) - -- [`8.2.27-cli-bullseye`, `8.2-cli-bullseye`, `8.2.27-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/cli/Dockerfile) - -- [`8.2.27-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/apache/Dockerfile) - -- [`8.2.27-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.27-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/bullseye/zts/Dockerfile) - -- [`8.2.27-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.27-alpine3.21`, `8.2-alpine3.21`, `8.2.27-cli-alpine`, `8.2-cli-alpine`, `8.2.27-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/cli/Dockerfile) - -- [`8.2.27-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.27-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/fpm/Dockerfile) - -- [`8.2.27-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.27-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.21/zts/Dockerfile) - -- [`8.2.27-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.27-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/cli/Dockerfile) - -- [`8.2.27-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/fpm/Dockerfile) - -- [`8.2.27-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/a0db8fca15683f740de741a43a08db0a65e89fde/8.2/alpine3.20/zts/Dockerfile) - -- [`8.1.31-cli-bookworm`, `8.1-cli-bookworm`, `8.1.31-bookworm`, `8.1-bookworm`, `8.1.31-cli`, `8.1-cli`, `8.1.31`, `8.1`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/cli/Dockerfile) - -- [`8.1.31-apache-bookworm`, `8.1-apache-bookworm`, `8.1.31-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/apache/Dockerfile) - -- [`8.1.31-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.31-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/fpm/Dockerfile) - -- [`8.1.31-zts-bookworm`, `8.1-zts-bookworm`, `8.1.31-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bookworm/zts/Dockerfile) - -- [`8.1.31-cli-bullseye`, `8.1-cli-bullseye`, `8.1.31-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/cli/Dockerfile) - -- [`8.1.31-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/apache/Dockerfile) - -- [`8.1.31-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/fpm/Dockerfile) - -- [`8.1.31-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/fe4d130db0611370ec9b6679aaff042a019bb9b5/8.1/bullseye/zts/Dockerfile) - -- [`8.1.31-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.31-alpine3.21`, `8.1-alpine3.21`, `8.1.31-cli-alpine`, `8.1-cli-alpine`, `8.1.31-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/cli/Dockerfile) - -- [`8.1.31-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.31-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/fpm/Dockerfile) - -- [`8.1.31-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.31-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.21/zts/Dockerfile) - -- [`8.1.31-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.31-alpine3.20`, `8.1-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/cli/Dockerfile) - -- [`8.1.31-fpm-alpine3.20`, `8.1-fpm-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/fpm/Dockerfile) - -- [`8.1.31-zts-alpine3.20`, `8.1-zts-alpine3.20`](https://github.com/docker-library/php/blob/45cfafc333513e71d34191c7ffc8608e1428a96f/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.32-zts-alpine3.20`, `8.1-zts-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/zts/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 6f87d044208e..5bfa620a228e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -42,12 +42,20 @@ WARNING: - [`6.7.2-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.7.2-php8.4-apache`, `6.7-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.7.2-php8.4`, `6.7-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/apache/Dockerfile) + +- [`6.7.2-php8.4-fpm`, `6.7-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/fpm/Dockerfile) + +- [`6.7.2-php8.4-fpm-alpine`, `6.7-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/fpm-alpine/Dockerfile) + - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) - [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.2/alpine/Dockerfile) - [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) +- [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) + - [`beta-6.8-beta2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/apache/Dockerfile) - [`beta-6.8-beta2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/fpm/Dockerfile) @@ -66,6 +74,12 @@ WARNING: - [`beta-6.8-beta2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-beta2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-beta2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/apache/Dockerfile) + +- [`beta-6.8-beta2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/fpm/Dockerfile) + +- [`beta-6.8-beta2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 8b3870bf8e353c5a166e1b8fbc3c8127b9ece9ac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Mar 2025 08:10:20 -0700 Subject: [PATCH 1991/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 944ef762ad9f..54f6d080bf14 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.9-alpine3.20`, `23.9.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.10-alpine3.20`, `23.10.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.9-alpine`, `23.9-alpine3.21`, `23.9.0-alpine`, `23.9.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.10-alpine`, `23.10-alpine3.21`, `23.10.0-alpine`, `23.10.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.9`, `23.9-bookworm`, `23.9.0`, `23.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.10`, `23.10-bookworm`, `23.10.0`, `23.10.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.9-bookworm-slim`, `23.9-slim`, `23.9.0-bookworm-slim`, `23.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.10-bookworm-slim`, `23.10-slim`, `23.10.0-bookworm-slim`, `23.10.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.9-bullseye`, `23.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.10-bullseye`, `23.10.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.9-bullseye-slim`, `23.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f35bdf80efb8a272a9ee75fb48e2c22652e28689/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.10-bullseye-slim`, `23.10.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) From 808728b26f0bb95b4d54b582f87616cfc3a43bfe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Mar 2025 12:09:33 -0700 Subject: [PATCH 1992/2686] Run update.sh --- matomo/README.md | 6 +++--- nextcloud/README.md | 18 +++++++++--------- oraclelinux/README.md | 18 +++++++++--------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index e0fa546bf2d3..ee50ff8ba145 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/apache/Dockerfile) +- [`5.3.0-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.0`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/apache/Dockerfile) -- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/fpm/Dockerfile) +- [`5.3.0-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/fpm/Dockerfile) -- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/5b86004ed817298de0ef29a19beece1eb891b4ec/fpm-alpine/Dockerfile) +- [`5.3.0-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 7b8d955c814a..6ff05d436e06 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`29.0.12-apache`, `29.0-apache`, `29-apache`, `29.0.12`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/apache/Dockerfile) +- [`29.0.13-apache`, `29.0-apache`, `29-apache`, `29.0.13`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/apache/Dockerfile) -- [`29.0.12-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/fpm/Dockerfile) +- [`29.0.13-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/fpm/Dockerfile) -- [`29.0.12-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/29/fpm-alpine/Dockerfile) +- [`29.0.13-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/fpm-alpine/Dockerfile) -- [`30.0.6-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.6`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/apache/Dockerfile) +- [`30.0.7-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.7`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/apache/Dockerfile) -- [`30.0.6-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/fpm/Dockerfile) +- [`30.0.7-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/fpm/Dockerfile) -- [`30.0.6-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/30/fpm-alpine/Dockerfile) +- [`30.0.7-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/fpm-alpine/Dockerfile) -- [`31.0.0-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.0`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/apache/Dockerfile) +- [`31.0.1-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.1`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/apache/Dockerfile) -- [`31.0.0-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/fpm/Dockerfile) +- [`31.0.1-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/fpm/Dockerfile) -- [`31.0.0-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/af005991484e03918488bb6cdb75750598a121f5/31/fpm-alpine/Dockerfile) +- [`31.0.1-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2a7ca9dbf88a..8fae850098ec 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/12e7ee4251101399fadfa03eaa6a68583d8397ec/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7-slim-fips/Dockerfile) # Quick reference (cont.) From 44b9a7c3d0f9fa08c40fdc128062ba1d81e1008b Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Wed, 13 Nov 2024 08:53:54 +0100 Subject: [PATCH 1993/2686] docs: Update MySQL random root password generator --- mysql/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/content.md b/mysql/content.md index 7616b4c75349..042358be19a1 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -106,7 +106,7 @@ This is an optional variable. Set to a non-empty value, like `yes`, to allow the ### `MYSQL_RANDOM_ROOT_PASSWORD` -This is an optional variable. Set to a non-empty value, like `yes`, to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). +This is an optional variable. Set to a non-empty value, like `yes`, to generate a random initial password for the root user (using `openssl`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). ### `MYSQL_ONETIME_PASSWORD` From 72a5024a9fb896f1e52c61bbb169c1d49e408708 Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Wed, 13 Nov 2024 08:53:54 +0100 Subject: [PATCH 1994/2686] docs: Update Percona random root password generator --- percona/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/percona/content.md b/percona/content.md index 9f6a3a7c09b8..8baba7aa1911 100644 --- a/percona/content.md +++ b/percona/content.md @@ -110,7 +110,7 @@ This is an optional variable. Set to `yes` to allow the container to be started ### `MYSQL_RANDOM_ROOT_PASSWORD` -This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). +This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwmake`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). ### `MYSQL_ONETIME_PASSWORD` From 275f37142d1c73db8615102d7e9a939867d189fc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Mar 2025 14:12:40 -0700 Subject: [PATCH 1995/2686] Run update.sh --- docker/README.md | 14 +++++++------- mysql/README.md | 2 +- percona/README.md | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/README.md b/docker/README.md index c8a58a00feca..ada9a02739fe 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/cli/Dockerfile) +- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/cli/Dockerfile) - [`28.0.1-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.1-dind-alpine3.21`, `28.0.1`, `28.0`, `28`, `latest`, `28.0.1-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind/Dockerfile) - [`28.0.1-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind-rootless/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.1-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/57fabd8ee01043647f02012ede62b354efdaf12f/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 5a78954b61ad..b4b3fcd66f4a 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -177,7 +177,7 @@ This is an optional variable. Set to a non-empty value, like `yes`, to allow the ### `MYSQL_RANDOM_ROOT_PASSWORD` -This is an optional variable. Set to a non-empty value, like `yes`, to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). +This is an optional variable. Set to a non-empty value, like `yes`, to generate a random initial password for the root user (using `openssl`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). ### `MYSQL_ONETIME_PASSWORD` diff --git a/percona/README.md b/percona/README.md index 934ccc006d2d..b50c1a353c08 100644 --- a/percona/README.md +++ b/percona/README.md @@ -188,7 +188,7 @@ This is an optional variable. Set to `yes` to allow the container to be started ### `MYSQL_RANDOM_ROOT_PASSWORD` -This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). +This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwmake`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). ### `MYSQL_ONETIME_PASSWORD` From f6dc37d2a88cc80d0e8bd42796f5054b03437e96 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Mar 2025 16:09:44 -0700 Subject: [PATCH 1996/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index efb336bf451a..aaf645d81ff0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.112.0`, `5.112`, `5`, `latest`](https://github.com/docker-library/ghost/blob/7a77e301e36ffe146fae8e2d3da9bf8e58b1c11c/5/debian/Dockerfile) +- [`5.113.0`, `5.113`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c105170390ce3c47d232d46b255b9472a0185600/5/debian/Dockerfile) -- [`5.112.0-alpine`, `5.112-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/7a77e301e36ffe146fae8e2d3da9bf8e58b1c11c/5/alpine/Dockerfile) +- [`5.113.0-alpine`, `5.113-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c105170390ce3c47d232d46b255b9472a0185600/5/alpine/Dockerfile) # Quick reference (cont.) From bf1305168308bf03ed1141904465ed31c9561530 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 14 Mar 2025 17:11:00 -0700 Subject: [PATCH 1997/2686] Run update.sh --- mongo/README.md | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 6e6ac034193c..e63292828582 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.6-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/Dockerfile) +- [`8.0.6-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0-rc/Dockerfile) - [`8.0.6-rc2-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -40,7 +40,7 @@ WARNING: - [`8.0.6-rc2-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-1809/Dockerfile) -- [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) +- [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0/Dockerfile) - [`8.0.5-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,6 +52,18 @@ WARNING: - [`8.0.5-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.18-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/Dockerfile) + +- [`7.0.18-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.18-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.18-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`7.0.18-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.18-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.17-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) - [`7.0.17-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -92,7 +104,7 @@ WARNING: - `8.0.6-rc2`, `8.0-rc`: - - [`8.0.6-rc2-noble`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/Dockerfile) + - [`8.0.6-rc2-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0-rc/Dockerfile) - [`8.0.6-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.6-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.6-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) @@ -110,7 +122,7 @@ WARNING: - `8.0.5`, `8.0`, `8`, `latest`: - - [`8.0.5-noble`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/Dockerfile) + - [`8.0.5-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0/Dockerfile) - [`8.0.5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - [`8.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) @@ -126,6 +138,24 @@ WARNING: - [`8.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) +- `7.0.18-rc0`, `7.0-rc`: + + - [`7.0.18-rc0-jammy`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/Dockerfile) + - [`7.0.18-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.18-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.18-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.18-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.18-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.18-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.17`, `7.0`, `7`: - [`7.0.17-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) From 4930241152b6d8b200ccb1860a64fbf0df2a059f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Mar 2025 11:09:56 -0700 Subject: [PATCH 1998/2686] Run update.sh --- adminer/README.md | 4 ++-- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- elixir/README.md | 18 +++++++++--------- python/README.md | 36 ++++++++++++++++++------------------ 5 files changed, 33 insertions(+), 33 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 366434fe205d..e93d7f65dcac 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.4`, `5`, `latest`, `5.0.4-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/3718dc23ab74b2df7c6bf4560b32a6f5a8aada25/5/Dockerfile) +- [`5.0.5`, `5`, `latest`, `5.0.5-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/852aea7b9f6d7284f86762bf075c8cfdf6f68d3b/5/Dockerfile) -- [`5.0.4-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/3718dc23ab74b2df7c6bf4560b32a6f5a8aada25/5/fastcgi/Dockerfile) +- [`5.0.5-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/852aea7b9f6d7284f86762bf075c8cfdf6f68d3b/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index f91860a6820c..282ddaf8dd65 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.base) +- [`latest`, `base`, `base-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.base) -- [`base-devel`, `base-devel-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250302.0.316047`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c9cc0b9ff6483a5226ebebff096f5f17d57df0fc/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 61f8a916b4d0..87b04c6609a2 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/602a8f0055b6fa2df3d8a8f3c65fff18bbf7c6b8/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d81d8d81f2a6a1cefaa81b3c5d24c3b56c686999/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index 46e40a22c9fd..a5e8690cb42c 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.2`, `1.18`, `latest`, `1.18.2-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/Dockerfile) +- [`1.18.3`, `1.18`, `latest`, `1.18.3-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/Dockerfile) -- [`1.18.2-slim`, `1.18-slim`, `slim`, `1.18.2-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/slim/Dockerfile) +- [`1.18.3-slim`, `1.18-slim`, `slim`, `1.18.3-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/slim/Dockerfile) -- [`1.18.2-alpine`, `1.18-alpine`, `alpine`, `1.18.2-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/alpine/Dockerfile) +- [`1.18.3-alpine`, `1.18-alpine`, `alpine`, `1.18.3-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/alpine/Dockerfile) -- [`1.18.2-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25/Dockerfile) +- [`1.18.3-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25/Dockerfile) -- [`1.18.2-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25-alpine/Dockerfile) +- [`1.18.3-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25-alpine/Dockerfile) -- [`1.18.2-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-25-slim/Dockerfile) +- [`1.18.3-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25-slim/Dockerfile) -- [`1.18.2-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26/Dockerfile) +- [`1.18.3-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26/Dockerfile) -- [`1.18.2-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26-alpine/Dockerfile) +- [`1.18.3-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26-alpine/Dockerfile) -- [`1.18.2-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/80190909c8deaff98562edb841e6dbd845d51876/1.18/otp-26-slim/Dockerfile) +- [`1.18.3-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26-slim/Dockerfile) - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) diff --git a/python/README.md b/python/README.md index 3adfc2d36f4f..3ad1713b34b8 100644 --- a/python/README.md +++ b/python/README.md @@ -28,23 +28,23 @@ WARNING: ## Simple Tags -- [`3.14.0a5-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a6-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a5-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a5-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a6-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a6-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a5-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a6-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a5-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a6-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a5-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a5-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a6-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a6-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a5-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a6-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a5-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0a6-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0a5-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a6-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a5-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a6-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.2-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) @@ -120,18 +120,18 @@ WARNING: ## Shared Tags -- `3.14.0a5`, `3.14-rc`: +- `3.14.0a6`, `3.14-rc`: - - [`3.14.0a5-bookworm`](https://github.com/docker-library/python/blob/4ce3b2aefd280671a82d7fe0b0f4b249f6af4198/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a6-bookworm`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a5-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a6-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a5-windowsservercore-1809`](https://github.com/docker-library/python/blob/5d789378a78ab4f432ba8393eab1205d666e5205/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.2`, `3.13`, `3`, `latest`: From 4f1993a9d65bb67f4ec38379e9ca0e1f2375b89c Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 17 Mar 2025 13:57:28 -0700 Subject: [PATCH 1999/2686] Add a `golang:tip` variant section This describes the "tip" variant, but most notably provides a rough estimate for how often it's updated. --- golang/variant-tip.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 golang/variant-tip.md diff --git a/golang/variant-tip.md b/golang/variant-tip.md new file mode 100644 index 000000000000..7a06aa72b1ce --- /dev/null +++ b/golang/variant-tip.md @@ -0,0 +1,5 @@ +## `%%IMAGE%%:-tip` + +The term "tip" in the Go community is used to refer to the latest development branch ([a leftover convention from previously using `hg` for version control](https://github.com/golang/build/blob/6383021611af0e07cbf0a60222e066662557c796/cmd/coordinator/internal/legacydash/build.go#L313-L314)). + +These tags contains builds of Go's latest development branch, and they are updated on a ~weekly cadence. From daec7c609daf9e5544e9e2feab35806d62790c54 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Mar 2025 14:10:09 -0700 Subject: [PATCH 2000/2686] Run update.sh --- adminer/README.md | 4 ++-- golang/README.md | 12 ++++++------ openjdk/README.md | 50 +++++++++++++++++++++++------------------------ photon/README.md | 2 +- 4 files changed, 34 insertions(+), 34 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index e93d7f65dcac..ef7b9b4256ed 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5`, `latest`, `5.0.5-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/852aea7b9f6d7284f86762bf075c8cfdf6f68d3b/5/Dockerfile) +- [`5.0.6`, `5`, `latest`, `5.0.6-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/ebb91920fab5b1e081b99b9945326d088e3c1e48/5/Dockerfile) -- [`5.0.5-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/852aea7b9f6d7284f86762bf075c8cfdf6f68d3b/5/fastcgi/Dockerfile) +- [`5.0.6-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/ebb91920fab5b1e081b99b9945326d088e3c1e48/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/golang/README.md b/golang/README.md index b0a9fca643d9..7e95d0dc1dd0 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250307-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bookworm/Dockerfile) +- [`tip-20250316-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bookworm/Dockerfile) -- [`tip-20250307-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bullseye/Dockerfile) +- [`tip-20250316-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bullseye/Dockerfile) -- [`tip-20250307-alpine3.21`, `tip-alpine3.21`, `tip-20250307-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/alpine3.21/Dockerfile) +- [`tip-20250316-alpine3.21`, `tip-alpine3.21`, `tip-20250316-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/alpine3.21/Dockerfile) -- [`tip-20250307-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/alpine3.20/Dockerfile) +- [`tip-20250316-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250307`, `tip`: +- `tip-20250316`, `tip`: - - [`tip-20250307-bookworm`](https://github.com/docker-library/golang/blob/423df72c7ebb1fda6237d147803b003f697cbe8a/tip/bookworm/Dockerfile) + - [`tip-20250316-bookworm`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 0a14ce9cb7fe..0a3360d7dbc9 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,29 +42,29 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-13-jdk-oraclelinux9`, `25-ea-13-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-13-jdk-oracle`, `25-ea-13-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-14-jdk-oraclelinux9`, `25-ea-14-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-14-jdk-oracle`, `25-ea-14-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-13-jdk-oraclelinux8`, `25-ea-13-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-14-jdk-oraclelinux8`, `25-ea-14-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-13-jdk-bookworm`, `25-ea-13-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/bookworm/Dockerfile) +- [`25-ea-14-jdk-bookworm`, `25-ea-14-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/bookworm/Dockerfile) -- [`25-ea-13-jdk-slim-bookworm`, `25-ea-13-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-13-jdk-slim`, `25-ea-13-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-14-jdk-slim-bookworm`, `25-ea-14-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-14-jdk-slim`, `25-ea-14-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-13-jdk-bullseye`, `25-ea-13-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/bullseye/Dockerfile) +- [`25-ea-14-jdk-bullseye`, `25-ea-14-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/bullseye/Dockerfile) -- [`25-ea-13-jdk-slim-bullseye`, `25-ea-13-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-14-jdk-slim-bullseye`, `25-ea-14-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-13-jdk-windowsservercore-ltsc2025`, `25-ea-13-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-14-jdk-windowsservercore-ltsc2025`, `25-ea-14-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-13-jdk-windowsservercore-ltsc2022`, `25-ea-13-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-14-jdk-windowsservercore-ltsc2022`, `25-ea-14-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-13-jdk-windowsservercore-1809`, `25-ea-13-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-14-jdk-windowsservercore-1809`, `25-ea-14-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-13-jdk-nanoserver-ltsc2025`, `25-ea-13-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-14-jdk-nanoserver-ltsc2025`, `25-ea-14-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-13-jdk-nanoserver-ltsc2022`, `25-ea-13-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-14-jdk-nanoserver-ltsc2022`, `25-ea-14-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-13-jdk-nanoserver-1809`, `25-ea-13-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-14-jdk-nanoserver-1809`, `25-ea-14-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) - [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) @@ -92,24 +92,24 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `25-ea-13-jdk`, `25-ea-13`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-14-jdk`, `25-ea-14`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-13-jdk-windowsservercore`, `25-ea-13-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-14-jdk-windowsservercore`, `25-ea-14-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-13-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-13-jdk-nanoserver`, `25-ea-13-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-14-jdk-nanoserver`, `25-ea-14-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-13-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-13-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-13-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d3591771285d34cfba469cb8a95340fae170f920/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-14-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-14-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) - `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: diff --git a/photon/README.md b/photon/README.md index 900f08e71b1b..3b2c6d8a7078 100644 --- a/photon/README.md +++ b/photon/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.0`, `4.0-20250309`](https://github.com/vmware/photon-docker-image/blob/fb8974a7e05a681d8b31b3df850bd5203a1d3581/docker/Dockerfile) -- [`3.0`, `3.0-20241209`](https://github.com/vmware/photon-docker-image/blob/8ae627dc9c6e074b0bc9b14dff7b97c2946e6a66/docker/Dockerfile) +- [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) # Quick reference (cont.) From fbf9160965ea2a248c53f20ff2141066f028b9d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 17 Mar 2025 15:10:23 -0700 Subject: [PATCH 2001/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index 6307758ed8e2..e9f3a1a46702 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250224`, `12.9`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250317`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250224-slim`, `12.9-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250317-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250224`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250317`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250224-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250317-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/experimental/Dockerfile) +- [`experimental`, `experimental-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/rc-buggy/Dockerfile) -- [`sid`, `sid-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/sid/oci/index.json) +- [`sid`, `sid-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/sid/oci/index.json) -- [`sid-slim`, `sid-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/sid/slim/oci/index.json) -- [`stable`, `stable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/oci/index.json) +- [`stable`, `stable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/slim/oci/index.json) -- [`testing`, `testing-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/oci/index.json) +- [`testing`, `testing-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/oci/index.json) +- [`trixie`, `trixie-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250224`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/unstable/oci/index.json) +- [`unstable`, `unstable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250224-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c75e1cbd17082ba26de19b4a979aab7e7b4dccd9/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/unstable/slim/oci/index.json) # Quick reference (cont.) From c3d3d20a80099c582e3021d32002a22ddfb0cdd8 Mon Sep 17 00:00:00 2001 From: robot-clickhouse Date: Tue, 18 Mar 2025 11:21:31 +0000 Subject: [PATCH 2002/2686] Update clickhouse according the the latest tags --- clickhouse/content.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/content.md b/clickhouse/content.md index 0f822381530c..10fb767c0dbb 100644 --- a/clickhouse/content.md +++ b/clickhouse/content.md @@ -42,7 +42,7 @@ docker run -it --rm --network=container:some-clickhouse-server --entrypoint clic docker exec -it some-clickhouse-server clickhouse-client ``` -More information about the [ClickHouse client](https://clickhouse.com/docs/en/interfaces/cli/). +More information about the [ClickHouse client](https://clickhouse.com/docs/interfaces/cli/). ### connect to it using curl @@ -50,7 +50,7 @@ More information about the [ClickHouse client](https://clickhouse.com/docs/en/in echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --network=container:some-clickhouse-server buildpack-deps:curl curl 'http://localhost:8123/?query=' -s --data-binary @- ``` -More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). +More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/interfaces/http/). ### stopping / removing the container @@ -119,9 +119,9 @@ Read more in [knowledge base](https://clickhouse.com/docs/knowledgebase/configur ## Configuration -The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/en/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/en/interfaces/tcp/). +The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/interfaces/tcp/). -ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/en/operations/configuration_files/)) +ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/operations/configuration_files/)) ### Start server instance with custom configuration From 67430a81f55f652ea0734b678c08b97027bd4b80 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Mar 2025 11:10:00 -0700 Subject: [PATCH 2003/2686] Run update.sh --- clickhouse/README.md | 18 ++++++------ couchdb/README.md | 6 ++-- docker/README.md | 14 +++++----- mongo/README.md | 66 ++++++++++++-------------------------------- 4 files changed, 37 insertions(+), 67 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 994594eb10cd..bac4b3baae3a 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.1`, `25.1-jammy`, `25.1.5`, `25.1.5-jammy`, `25.1.5.31`, `25.1.5.31-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/25.1.5.31/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/25.2.2.39/Dockerfile.ubuntu) -- [`24.12`, `24.12-jammy`, `24.12.5`, `24.12.5-jammy`, `24.12.5.81`, `24.12.5.81-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.12.5.81/Dockerfile.ubuntu) +- [`25.1`, `25.1-jammy`, `25.1.8`, `25.1.8-jammy`, `25.1.8.25`, `25.1.8.25-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/25.1.8.25/Dockerfile.ubuntu) -- [`24.11`, `24.11-jammy`, `24.11.5`, `24.11.5-jammy`, `24.11.5.49`, `24.11.5.49-jammy`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.11.5.49/Dockerfile.ubuntu) +- [`24.12`, `24.12-jammy`, `24.12.6`, `24.12.6-jammy`, `24.12.6.70`, `24.12.6.70-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.12.6.70/Dockerfile.ubuntu) -- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.8.14.39/Dockerfile.ubuntu) +- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.8.14.39/Dockerfile.ubuntu) -- [`24.3`, `24.3-focal`, `24.3.18`, `24.3.18-focal`, `24.3.18.7`, `24.3.18.7-focal`](https://github.com/ClickHouse/docker-library/blob/0dda4ee3a166176d28fda59b9bfedef80ebc3023/server/24.3.18.7/Dockerfile.ubuntu) +- [`24.3`, `24.3-focal`, `24.3.18`, `24.3.18-focal`, `24.3.18.7`, `24.3.18.7-focal`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.3.18.7/Dockerfile.ubuntu) # Quick reference (cont.) @@ -97,7 +97,7 @@ docker run -it --rm --network=container:some-clickhouse-server --entrypoint clic docker exec -it some-clickhouse-server clickhouse-client ``` -More information about the [ClickHouse client](https://clickhouse.com/docs/en/interfaces/cli/). +More information about the [ClickHouse client](https://clickhouse.com/docs/interfaces/cli/). ### connect to it using curl @@ -105,7 +105,7 @@ More information about the [ClickHouse client](https://clickhouse.com/docs/en/in echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --network=container:some-clickhouse-server buildpack-deps:curl curl 'http://localhost:8123/?query=' -s --data-binary @- ``` -More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/en/interfaces/http/). +More information about the [ClickHouse HTTP Interface](https://clickhouse.com/docs/interfaces/http/). ### stopping / removing the container @@ -174,9 +174,9 @@ Read more in [knowledge base](https://clickhouse.com/docs/knowledgebase/configur ## Configuration -The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/en/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/en/interfaces/tcp/). +The container exposes port 8123 for the [HTTP interface](https://clickhouse.com/docs/interfaces/http_interface/) and port 9000 for the [native client](https://clickhouse.com/docs/interfaces/tcp/). -ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/en/operations/configuration_files/)) +ClickHouse configuration is represented with a file "config.xml" ([documentation](https://clickhouse.com/docs/operations/configuration_files/)) ### Start server instance with custom configuration diff --git a/couchdb/README.md b/couchdb/README.md index 4bac8ba9df0b..09bf957d421d 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.4.2`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.4.2/Dockerfile) +- [`latest`, `3.4.3`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.4.3/Dockerfile) -- [`3.4.2-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.4.2-nouveau/Dockerfile) +- [`3.4.3-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.4.3-nouveau/Dockerfile) -- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/734c61f2a9421637ff58be225665477be52dd4b7/3.3.3/Dockerfile) +- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.3.3/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index ada9a02739fe..b4ae389b3c66 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/cli/Dockerfile) +- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/cli/Dockerfile) - [`28.0.1-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.1-dind-alpine3.21`, `28.0.1`, `28.0`, `28`, `latest`, `28.0.1-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind/Dockerfile) - [`28.0.1-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind-rootless/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.1-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/dfcf538ee027612d88728252b9e9442738dae726/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index e63292828582..2656e07de80f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -76,29 +76,17 @@ WARNING: - [`7.0.17-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.21-rc1-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/Dockerfile) +- [`6.0.21-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/Dockerfile) -- [`6.0.21-rc1-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.21-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`6.0.21-rc1-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.21-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.21-rc1-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`6.0.21-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.21-rc1-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.21-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.21-rc1-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`6.0.20-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) - -- [`6.0.20-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.20-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.20-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) - -- [`6.0.20-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.20-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.21-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -174,41 +162,23 @@ WARNING: - [`7.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.21-rc1`, `6.0-rc`: - - - [`6.0.21-rc1-jammy`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/Dockerfile) - - [`6.0.21-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.21-rc1-windowsservercore`, `6.0-rc-windowsservercore`: - - - [`6.0.21-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-rc1-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `6.0.21-rc1-nanoserver`, `6.0-rc-nanoserver`: - - - [`6.0.21-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.21-rc1-nanoserver-1809`](https://github.com/docker-library/mongo/blob/037c96d679e4204af830577a93608d0a02e3c3b1/6.0-rc/windows/nanoserver-1809/Dockerfile) - -- `6.0.20`, `6.0`, `6`: +- `6.0.21`, `6.0`, `6`: - - [`6.0.20-jammy`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/Dockerfile) - - [`6.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.21-jammy`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/Dockerfile) + - [`6.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.20-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.21-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/55d140f1274a7d2dbe499797b0c6a4f4fb718cea/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.20-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.21-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/396a030cd1168154d8e71863bfb6c9aef803dc17/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 93547c3b4452496345236dd474d26fdee2c2c8e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Mar 2025 14:30:08 -0700 Subject: [PATCH 2004/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- rust/README.md | 12 ++++++------ wordpress/README.md | 24 ++++++++++++------------ 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index dac4279fb87f..b25f421744ab 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/b769899394ab55428f74fb5a44a6d1ee1824d43d/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 1e27889a60e5..2fb559a26f35 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.85-bullseye`, `1.85.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.85-bullseye`, `1.85.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.85-bookworm`, `1.85.0-bookworm`, `bookworm`, `1`, `1.85`, `1.85.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.85-bookworm`, `1.85.1-bookworm`, `bookworm`, `1`, `1.85`, `1.85.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.1-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/bb6d64ec66907afbcd2c4a6c4efabcfbc947ac91/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.1-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 5bfa620a228e..1578e494f7d3 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-beta2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-beta3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-beta2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-beta3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-beta2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-beta3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-beta2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-beta3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-beta2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-beta3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-beta2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-beta3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-beta2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-beta3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-beta2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-beta3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-beta2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/980d05f3e7497deb18965eac8f2a523fbef2e4c8/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-beta3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-beta2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-beta2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-beta3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-beta3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-beta2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-beta3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-beta2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-beta3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From bb623069b1f6d72c975b764bd9cac8a05a6e6d60 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Mar 2025 17:35:03 -0700 Subject: [PATCH 2005/2686] Run update.sh --- golang/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/golang/README.md b/golang/README.md index 7e95d0dc1dd0..a485bc0d746e 100644 --- a/golang/README.md +++ b/golang/README.md @@ -244,6 +244,12 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +## `golang:-tip` + +The term "tip" in the Go community is used to refer to the latest development branch ([a leftover convention from previously using `hg` for version control](https://github.com/golang/build/blob/6383021611af0e07cbf0a60222e066662557c796/cmd/coordinator/internal/legacydash/build.go#L313-L314)). + +These tags contains builds of Go's latest development branch, and they are updated on a ~weekly cadence. + # License View [license information](http://golang.org/LICENSE) for the software contained in this image. From 86b55adc94f85e3cc62b00ea4c8a6a517e2f8541 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Mar 2025 11:15:46 -0700 Subject: [PATCH 2006/2686] Run update.sh --- flink/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/flink/README.md b/flink/README.md index 07cf5105d4a0..069908451477 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,15 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0-preview1-scala_2.12-java17`, `2.0-scala_2.12-java17`, `2.0-preview1-java17`, `2.0-java17`](https://github.com/apache/flink-docker/blob/3a8ba480ff327674b0a090c6ce417f0437576e92/2.0/scala_2.12-java17-ubuntu/Dockerfile) +- [`2.0.0-scala_2.12-java21`, `2.0-scala_2.12-java21`, `scala_2.12-java21`, `2.0.0-java21`, `2.0-java21`, `java21`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java21-ubuntu/Dockerfile) -- [`2.0-preview1-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0-preview1-scala_2.12`, `2.0-scala_2.12`, `2.0-preview1-java11`, `2.0-java11`, `2.0-preview1`, `2.0`](https://github.com/apache/flink-docker/blob/3a8ba480ff327674b0a090c6ce417f0437576e92/2.0/scala_2.12-java11-ubuntu/Dockerfile) +- [`2.0.0-scala_2.12-java17`, `2.0-scala_2.12-java17`, `scala_2.12-java17`, `2.0.0-scala_2.12`, `2.0-scala_2.12`, `scala_2.12`, `2.0.0-java17`, `2.0-java17`, `java17`, `2.0.0`, `2.0`, `latest`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java17-ubuntu/Dockerfile) + +- [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`, `java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) - [`1.20.1-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.1-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.20.1-scala_2.12-java17`, `1.20-scala_2.12-java17`, `scala_2.12-java17`, `1.20-java17`, `1.20.1-java17`, `java17`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.1-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.1-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.20.1-scala_2.12-java11`, `1.20-scala_2.12-java11`, `scala_2.12-java11`, `1.20.1-scala_2.12`, `1.20-scala_2.12`, `scala_2.12`, `1.20.1-java11`, `1.20-java11`, `java11`, `1.20.1`, `1.20`, `latest`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.1-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.1-scala_2.12`, `1.20-scala_2.12`, `1.20.1-java11`, `1.20-java11`, `1.20.1`, `1.20`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java11-ubuntu/Dockerfile) - [`1.19.2-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.2-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java8-ubuntu/Dockerfile) From cfa2819838e828457e623e8364ddc45a91c6617f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Mar 2025 14:09:51 -0700 Subject: [PATCH 2007/2686] Run update.sh --- nats/README.md | 43 ++++++++++++++++++++++++++++++++----------- sapmachine/README.md | 28 ++++++++++++++-------------- 2 files changed, 46 insertions(+), 25 deletions(-) diff --git a/nats/README.md b/nats/README.md index 08da5dd05622..c3428aa1c25f 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,28 +28,49 @@ WARNING: ## Simple Tags -- [`2.10.26-alpine3.21`, `2.10-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.10.26-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/alpine3.21/Dockerfile) +- [`2.11.0-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.0-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/alpine3.21/Dockerfile) -- [`2.10.26-scratch`, `2.10-scratch`, `2-scratch`, `scratch`, `2.10.26-linux`, `2.10-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/scratch/Dockerfile) +- [`2.11.0-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.0-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/scratch/Dockerfile) -- [`2.10.26-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.11.0-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.10.26-nanoserver-1809`, `2.10-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) +- [`2.11.0-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) + +- [`2.10.26-alpine3.21`, `2.10-alpine3.21`, `2.10.26-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/alpine3.21/Dockerfile) + +- [`2.10.26-scratch`, `2.10-scratch`, `2.10.26-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/scratch/Dockerfile) + +- [`2.10.26-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/windowsservercore-1809/Dockerfile) + +- [`2.10.26-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.10.26`, `2.10`, `2`, `latest`: +- `2.11.0`, `2.11`, `2`, `latest`: + + - [`2.11.0-scratch`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/scratch/Dockerfile) + - [`2.11.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) + +- `2.11.0-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + + - [`2.11.0-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/windowsservercore-1809/Dockerfile) + +- `2.11.0-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: + + - [`2.11.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) + +- `2.10.26`, `2.10`: - - [`2.10.26-scratch`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/scratch/Dockerfile) - - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.26-scratch`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/scratch/Dockerfile) + - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.26-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.26-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.26-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.26-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.26-nanoserver`, `2.10-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.10.26-nanoserver`, `2.10-nanoserver`: - - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/e8faa714bb4554753d04b014d27ed91e488d9fd1/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 8fdd38149dbf..511028f05ad1 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `23`, `23-jdk-ubuntu`, `23.0.2`, `23.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `23-ubuntu-noble`, `23-ubuntu-24.04`, `23.0.2-ubuntu-noble`, `23.0.2-ubuntu-24.04`, `23-jdk-ubuntu-noble`, `23-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `23.0.2-jdk-ubuntu-noble`, `23.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `24`, `24-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `23-jdk-headless-ubuntu`, `23.0.2-jdk-headless-ubuntu`, `23-jdk-headless-ubuntu-noble`, `23-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `23.0.2-jdk-headless-ubuntu-noble`, `23.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `24-jdk-headless-ubuntu`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `23-jre-ubuntu`, `23.0.2-jre-ubuntu`, `23-jre-ubuntu-noble`, `23-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `23.0.2-jre-ubuntu-noble`, `23.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `24-jre-ubuntu`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `23-jre-headless-ubuntu`, `23.0.2-jre-headless-ubuntu`, `23-jre-headless-ubuntu-noble`, `23-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `23.0.2-jre-headless-ubuntu-noble`, `23.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `24-jre-headless-ubuntu`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `23-ubuntu-jammy`, `23-ubuntu-22.04`, `23.0.2-ubuntu-jammy`, `23.0.2-ubuntu-22.04`, `23-jdk-ubuntu-jammy`, `23-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `23.0.2-jdk-ubuntu-jammy`, `23.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-jammy`, `23-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `23.0.2-jdk-headless-ubuntu-jammy`, `23.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile) +- [`24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-jammy`, `23-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `23.0.2-jre-ubuntu-jammy`, `23.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jre/Dockerfile) +- [`24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-jammy`, `23-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `23.0.2-jre-headless-ubuntu-jammy`, `23.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile) +- [`24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `23-ubuntu-focal`, `23-ubuntu-20.04`, `23.0.2-ubuntu-focal`, `23.0.2-ubuntu-20.04`, `23-jdk-ubuntu-focal`, `23-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `23.0.2-jdk-ubuntu-focal`, `23.0.2-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `24-ubuntu-focal`, `24-ubuntu-20.04`, `24-jdk-ubuntu-focal`, `24-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jdk/Dockerfile) -- [`23-jdk-headless-ubuntu-focal`, `23-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `23.0.2-jdk-headless-ubuntu-focal`, `23.0.2-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile) +- [`24-jdk-headless-ubuntu-focal`, `24-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jdk-headless/Dockerfile) -- [`23-jre-ubuntu-focal`, `23-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `23.0.2-jre-ubuntu-focal`, `23.0.2-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jre/Dockerfile) +- [`24-jre-ubuntu-focal`, `24-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jre/Dockerfile) -- [`23-jre-headless-ubuntu-focal`, `23-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `23.0.2-jre-headless-ubuntu-focal`, `23.0.2-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile) +- [`24-jre-headless-ubuntu-focal`, `24-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jre-headless/Dockerfile) -- [`jdk-alpine`, `23-jdk-alpine`, `23.0.2-jdk-alpine`, `alpine-3.21`, `23-alpine-3.21`, `23.0.2-alpine-3.21`, `23-jdk-alpine-3.21`, `jdk-alpine-3.21`, `23.0.2-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/alpine/3_21/jdk/Dockerfile) +- [`jdk-alpine`, `24-jdk-alpine`, `alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/alpine/3_21/jdk/Dockerfile) -- [`jre-alpine`, `23-jre-alpine`, `23.0.2-jre-alpine`, `23-jre-alpine-3.21`, `jre-alpine-3.21`, `23.0.2-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c522b3cc1152e5b666dc5b5731f98afd91b22804/dockerfiles/23/alpine/3_21/jre/Dockerfile) +- [`jre-alpine`, `24-jre-alpine`, `24-jre-alpine-3.21`, `jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/alpine/3_21/jre/Dockerfile) - [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.6`, `21.0.6-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.6-ubuntu-noble`, `21.0.6-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.6-jdk-ubuntu-noble`, `21.0.6-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) From 805a4b204fcaa529993010a9067916a03a97d676 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Mar 2025 15:10:28 -0700 Subject: [PATCH 2008/2686] Run update.sh --- redis/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redis/README.md b/redis/README.md index bd906c9afbfe..8df603956399 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M03-alpine`, `8.0-M03-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7109557d2a7612b292a6ff2712eba560dc5e70bc/alpine/Dockerfile) +- [`8.0-M04-alpine`, `8.0-M04-alpine3.21`](https://github.com/redis/docker-library-redis/blob/1d61ffb74b806f51c3691e296d827c3baacc5056/alpine/Dockerfile) -- [`8.0-M03`, `8.0-M03-bookworm`](https://github.com/redis/docker-library-redis/blob/7109557d2a7612b292a6ff2712eba560dc5e70bc/debian/Dockerfile) +- [`8.0-M04`, `8.0-M04-bookworm`](https://github.com/redis/docker-library-redis/blob/1d61ffb74b806f51c3691e296d827c3baacc5056/debian/Dockerfile) - [`7.4.2`, `7.4`, `7`, `latest`, `7.4.2-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/debian/Dockerfile) From 596bf65efe5a1e7fab2968168835c4c9f00d98a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Mar 2025 16:09:43 -0700 Subject: [PATCH 2009/2686] Run update.sh --- erlang/README.md | 6 +++ ghost/README.md | 4 +- hylang/README.md | 108 +++++++++++++++++++++++----------------------- jetty/README.md | 106 ++++++++++++++++++++++----------------------- openjdk/README.md | 43 ------------------ 5 files changed, 115 insertions(+), 152 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 1b57f2dab8aa..e2036dc9dd8f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,6 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`28.0.0.0-rc2`, `28.0.0`, `28.0`, `28`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/Dockerfile) + +- [`28.0.0.0-rc2-slim`, `28.0.0-slim`, `28.0-slim`, `28-slim`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/slim/Dockerfile) + +- [`28.0.0.0-rc2-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/alpine/Dockerfile) + - [`27.3.0.0`, `27.3.0`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/Dockerfile) - [`27.3.0.0-slim`, `27.3.0-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/slim/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index aaf645d81ff0..2ddcdf2ba8bb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.113.0`, `5.113`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c105170390ce3c47d232d46b255b9472a0185600/5/debian/Dockerfile) +- [`5.113.1`, `5.113`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d2fe84d5a6a6363733a8f55a4df746c4e26af4bc/5/debian/Dockerfile) -- [`5.113.0-alpine`, `5.113-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c105170390ce3c47d232d46b255b9472a0185600/5/alpine/Dockerfile) +- [`5.113.1-alpine`, `5.113-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d2fe84d5a6a6363733a8f55a4df746c4e26af4bc/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 986950d32732..39f573489bcb 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,117 +28,117 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.11-bookworm`, `1.0-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.0.0-pypy3.11-bookworm`, `1.0-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.0.0-pypy3.11-windowsservercore-ltsc2025`, `1.0-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.0.0-pypy3.11-windowsservercore-ltsc2025`, `1.0-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.0.0-pypy3.11-windowsservercore-ltsc2022`, `1.0-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.11-windowsservercore-ltsc2022`, `1.0-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.11-windowsservercore-1809`, `1.0-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) +- [`1.0.0-pypy3.11-windowsservercore-1809`, `1.0-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags - `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) - `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) - `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.0.0-pypy3.11`, `1.0-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - [`1.0.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.0.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.0.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) + - [`1.0.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.0.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.0.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) - `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/8458707110807b2d16e60bf127c9746509fbadc5/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index cef8aded6d02..bfb2675a0d41 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,73 +54,73 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.17-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.17-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.18-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.18-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.17-jre21`, `12.0-jre21`, `12-jre21`, `12.0.17-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.18-jre21`, `12.0-jre21`, `12-jre21`, `12.0.18-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.17-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.17-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.18-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.18-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.17-jre17`, `12.0-jre17`, `12-jre17`, `12.0.17-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.18-jre17`, `12.0-jre17`, `12-jre17`, `12.0.18-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.17-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.17-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.18-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.18-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) -- [`12.0.17-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.17-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.18-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.18-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk23/Dockerfile) -- [`12.0.17-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.17-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.18-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.18-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.17`, `12.0`, `12`, `12.0.17-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.17-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.17-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.18`, `12.0`, `12`, `12.0.18-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.18-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.18-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.17-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.17-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.18-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.18-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.17-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.17-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.18-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.18-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.24-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.24-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.24-jre21`, `11.0-jre21`, `11-jre21`, `11.0.24-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.25-jre21`, `11.0-jre21`, `11-jre21`, `11.0.25-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.24-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.24-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.25-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.25-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.24-jre17`, `11.0-jre17`, `11-jre17`, `11.0.24-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.25-jre17`, `11.0-jre17`, `11-jre17`, `11.0.25-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.24-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.24-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.25-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.25-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.24-jre11`, `11.0-jre11`, `11-jre11`, `11.0.24-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.25-jre11`, `11.0-jre11`, `11-jre11`, `11.0.25-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.24-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.24-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.25-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.25-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.24`, `11.0`, `11`, `11.0.24-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.24-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.24-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.25`, `11.0`, `11`, `11.0.25-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.25-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.25-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.24-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.24-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.25-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.25-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.24-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.24-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.24-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.24-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.25-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.25-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.24-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.24-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.24-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.24-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.25-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.25-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.24-jre21`, `10.0-jre21`, `10-jre21`, `10.0.24-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.25-jre21`, `10.0-jre21`, `10-jre21`, `10.0.25-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.24-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.24-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.25-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.25-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.24-jre17`, `10.0-jre17`, `10-jre17`, `10.0.24-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.25-jre17`, `10.0-jre17`, `10-jre17`, `10.0.25-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.24-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.24-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.25-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.25-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.24-jre11`, `10.0-jre11`, `10-jre11`, `10.0.24-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.25-jre11`, `10.0-jre11`, `10-jre11`, `10.0.25-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.24-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.24-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.25-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.25-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.24`, `10.0`, `10`, `10.0.24-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.24-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.24-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.25`, `10.0`, `10`, `10.0.25-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.25-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.25-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.24-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.24-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.25-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.25-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.24-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.24-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.24-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.24-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.25-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.25-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.24-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.24-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8-alpine/Dockerfile) @@ -138,43 +138,43 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.17-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk23-al2023/Dockerfile) +- [`12.0.18-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk23-al2023/Dockerfile) -- [`12.0.17-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.18-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.17-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.18-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.17-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.17-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.18-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.18-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.17-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.18-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.17-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.18-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.17-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/ed93188032bcd7241fac00f7496cfc8d5c0bbfa7/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.18-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.24-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.24-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.24-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.25-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.25-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.24-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.25-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.24-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.25-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.24-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.25-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.24-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.25-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.24-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.25-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.24-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.24-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.25-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.25-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.24-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.25-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.24-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.25-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.24-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.25-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.24-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.25-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 0a3360d7dbc9..cbf572dcbace 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -66,30 +66,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-14-jdk-nanoserver-1809`, `25-ea-14-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) -- [`24-rc-jdk-oraclelinux9`, `24-rc-oraclelinux9`, `24-jdk-oraclelinux9`, `24-oraclelinux9`, `24-rc-jdk-oracle`, `24-rc-oracle`, `24-jdk-oracle`, `24-oracle`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) - -- [`24-rc-jdk-oraclelinux8`, `24-rc-oraclelinux8`, `24-jdk-oraclelinux8`, `24-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux8/Dockerfile) - -- [`24-rc-jdk-bookworm`, `24-rc-bookworm`, `24-jdk-bookworm`, `24-bookworm`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/bookworm/Dockerfile) - -- [`24-rc-jdk-slim-bookworm`, `24-rc-slim-bookworm`, `24-jdk-slim-bookworm`, `24-slim-bookworm`, `24-rc-jdk-slim`, `24-rc-slim`, `24-jdk-slim`, `24-slim`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/slim-bookworm/Dockerfile) - -- [`24-rc-jdk-bullseye`, `24-rc-bullseye`, `24-jdk-bullseye`, `24-bullseye`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/bullseye/Dockerfile) - -- [`24-rc-jdk-slim-bullseye`, `24-rc-slim-bullseye`, `24-jdk-slim-bullseye`, `24-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/slim-bullseye/Dockerfile) - -- [`24-rc-jdk-windowsservercore-ltsc2025`, `24-rc-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`24-rc-jdk-windowsservercore-ltsc2022`, `24-rc-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`24-rc-jdk-windowsservercore-1809`, `24-rc-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) - -- [`24-rc-jdk-nanoserver-ltsc2025`, `24-rc-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - -- [`24-rc-jdk-nanoserver-ltsc2022`, `24-rc-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - -- [`24-rc-jdk-nanoserver-1809`, `24-rc-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-1809/Dockerfile) - ## Shared Tags - `25-ea-14-jdk`, `25-ea-14`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: @@ -111,25 +87,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-14-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) -- `24-rc-jdk`, `24-rc`, `24-jdk`, `24`: - - - [`24-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/oraclelinux9/Dockerfile) - - [`24-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) - -- `24-rc-jdk-windowsservercore`, `24-rc-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - - [`24-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24-rc-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/windowsservercore-1809/Dockerfile) - -- `24-rc-jdk-nanoserver`, `24-rc-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - - [`24-rc-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24-rc-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24-rc-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/4b990c22c8b369a103bce738d6838fe3e289a140/24/jdk/windows/nanoserver-1809/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 8a29fca44d1c83ead2cbaaa80f7a601ef1def76d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 19 Mar 2025 17:09:58 -0700 Subject: [PATCH 2010/2686] Run update.sh --- drupal/README.md | 84 ++++++++++++++++++++++----------------------- matomo/README.md | 6 ++-- nextcloud/README.md | 18 +++++----- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index d7ab99c750a4..316f8a9bba16 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.4-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.4-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.4-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.5-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.5-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.5-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.4-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.4-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.5-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.5-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.4-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.5-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.4-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.5-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.4-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.4-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.5-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.5-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.4-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.5-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.4-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.4-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.4-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.4-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.4-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.4`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.5-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.5-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.5-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.5-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.5-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.5`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.4-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.4-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.4-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.4-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.5-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.5-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.5-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.5-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.4-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.4-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.5-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.5-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.4-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.4-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.5-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.5-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.4-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.4-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.4-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.4-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.5-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.5-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.5-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.5-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.4-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.4-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bf96cbff9a1f08dfd60aaa180efe8de5c0190860/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.5-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.5-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.0.12-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.12-php8.3-apache`, `11.0-php8.3-apache`, `11.0.12-php8.3`, `11.0-php8.3`, `11.0.12-apache-bookworm`, `11.0-apache-bookworm`, `11.0.12-apache`, `11.0-apache`, `11.0.12`, `11.0`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/apache-bookworm/Dockerfile) +- [`11.0.13-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.13-php8.3-apache`, `11.0-php8.3-apache`, `11.0.13-php8.3`, `11.0-php8.3`, `11.0.13-apache-bookworm`, `11.0-apache-bookworm`, `11.0.13-apache`, `11.0-apache`, `11.0.13`, `11.0`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bookworm/Dockerfile) -- [`11.0.12-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.12-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.12-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.12-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`11.0.13-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.13-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.13-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.13-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-bookworm/Dockerfile) -- [`11.0.12-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.12-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/apache-bullseye/Dockerfile) +- [`11.0.13-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.13-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bullseye/Dockerfile) -- [`11.0.12-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.12-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`11.0.13-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.13-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-bullseye/Dockerfile) -- [`11.0.12-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.12-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.12-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.12-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.0.13-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.13-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.13-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.13-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.12-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.12-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/01dc97531ff3e7c5bd9ee5fa6c3cd7be23fc67d3/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.0.13-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.13-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.4-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.4-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.4-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.5-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.5-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.5-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.4-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.4-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.5-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.5-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.4-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.5-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.4-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.5-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.4-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.4-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.5-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.5-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.4-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.5-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.4-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.4-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.4-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.4-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.4-apache`, `10.4-apache`, `10-apache`, `10.4.4`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.5-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.5-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.5-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.5-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.5-apache`, `10.4-apache`, `10-apache`, `10.4.5`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.4-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.4-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.4-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.4-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.5-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.5-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.5-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.5-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.4-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.4-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.5-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.5-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.4-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.4-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.5-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.5-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.4-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.4-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.4-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.4-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.5-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.5-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.5-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.5-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.4-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.4-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/08ac0909f1819c450d5bc39d0cbdec774b158734/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.5-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.5-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.13-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.13-php8.3-apache`, `10.3-php8.3-apache`, `10.3.13-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/apache-bookworm/Dockerfile) +- [`10.3.14-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.14-php8.3-apache`, `10.3-php8.3-apache`, `10.3.14-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bookworm/Dockerfile) -- [`10.3.13-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.13-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-bookworm/Dockerfile) +- [`10.3.14-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.14-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-bookworm/Dockerfile) -- [`10.3.13-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/apache-bullseye/Dockerfile) +- [`10.3.14-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bullseye/Dockerfile) -- [`10.3.13-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-bullseye/Dockerfile) +- [`10.3.14-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-bullseye/Dockerfile) -- [`10.3.13-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.13-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.3.14-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.14-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.3.13-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.3.14-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.3.13-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.13-php8.2-apache`, `10.3-php8.2-apache`, `10.3.13-php8.2`, `10.3-php8.2`, `10.3.13-apache-bookworm`, `10.3-apache-bookworm`, `10.3.13-apache`, `10.3-apache`, `10.3.13`, `10.3`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/apache-bookworm/Dockerfile) +- [`10.3.14-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.14-php8.2-apache`, `10.3-php8.2-apache`, `10.3.14-php8.2`, `10.3-php8.2`, `10.3.14-apache-bookworm`, `10.3-apache-bookworm`, `10.3.14-apache`, `10.3-apache`, `10.3.14`, `10.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/apache-bookworm/Dockerfile) -- [`10.3.13-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.13-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.13-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.13-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-bookworm/Dockerfile) +- [`10.3.14-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.14-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.14-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.14-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-bookworm/Dockerfile) -- [`10.3.13-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.13-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/apache-bullseye/Dockerfile) +- [`10.3.14-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.14-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/apache-bullseye/Dockerfile) -- [`10.3.13-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.13-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-bullseye/Dockerfile) +- [`10.3.14-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.14-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-bullseye/Dockerfile) -- [`10.3.13-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.13-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.13-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.13-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-alpine3.21/Dockerfile) +- [`10.3.14-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.14-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.14-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.14-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-alpine3.21/Dockerfile) -- [`10.3.13-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.13-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/61563b6beaef01f83b4999115bf294aa00a986d6/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.3.14-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.14-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-alpine3.20/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index ee50ff8ba145..2ebfc24d5a3f 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.0`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/apache/Dockerfile) +- [`5.3.1-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.1`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/apache/Dockerfile) -- [`5.3.0-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/fpm/Dockerfile) +- [`5.3.1-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/fpm/Dockerfile) -- [`5.3.0-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1cb0729126fc43d64e96f8633d8d7dc923e4045a/fpm-alpine/Dockerfile) +- [`5.3.1-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 6ff05d436e06..91467c0287d0 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`29.0.13-apache`, `29.0-apache`, `29-apache`, `29.0.13`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/apache/Dockerfile) +- [`29.0.14-apache`, `29.0-apache`, `29-apache`, `29.0.14`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/apache/Dockerfile) -- [`29.0.13-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/fpm/Dockerfile) +- [`29.0.14-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/fpm/Dockerfile) -- [`29.0.13-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/29/fpm-alpine/Dockerfile) +- [`29.0.14-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/fpm-alpine/Dockerfile) -- [`30.0.7-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.7`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/apache/Dockerfile) +- [`30.0.8-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.8`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/apache/Dockerfile) -- [`30.0.7-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/fpm/Dockerfile) +- [`30.0.8-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/fpm/Dockerfile) -- [`30.0.7-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/30/fpm-alpine/Dockerfile) +- [`30.0.8-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/fpm-alpine/Dockerfile) -- [`31.0.1-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.1`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/apache/Dockerfile) +- [`31.0.2-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.2`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/apache/Dockerfile) -- [`31.0.1-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/fpm/Dockerfile) +- [`31.0.2-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/fpm/Dockerfile) -- [`31.0.1-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/df3b447621f9c2e40cee20962f40725b043936c7/31/fpm-alpine/Dockerfile) +- [`31.0.2-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From 9106872743b27e41b7597246da23e6cf243082c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Mar 2025 11:09:52 -0700 Subject: [PATCH 2011/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- haproxy/README.md | 8 ++++---- memcached/README.md | 4 ++-- neo4j/README.md | 4 ++-- odoo/README.md | 6 +++--- rabbitmq/README.md | 8 ++++---- 6 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docker/README.md b/docker/README.md index b4ae389b3c66..b82ac061beaf 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.1-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/cli/Dockerfile) +- [`28.0.2-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/cli/Dockerfile) -- [`28.0.1-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.1-dind-alpine3.21`, `28.0.1`, `28.0`, `28`, `latest`, `28.0.1-alpine3.21`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind/Dockerfile) +- [`28.0.2-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.2-dind-alpine3.21`, `28.0.2`, `28.0`, `28`, `latest`, `28.0.2-alpine3.21`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/dind/Dockerfile) -- [`28.0.1-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/225f48929539dd54feb60403ea069b490a18e19d/28/dind-rootless/Dockerfile) +- [`28.0.2-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/dind-rootless/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.2-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.1-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.2-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.1-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.2-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.0.1-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.0.2-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e5a2089a25b32ec91546fbfd008cc19593f802c2/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index cccf0def1883..dcfe2da81cb6 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,13 +28,13 @@ WARNING: - [`3.2-dev7-alpine`, `3.2-dev-alpine`, `3.2-dev7-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/b47b21a6996b0a8ca4421bbfeb7ec789a8858f26/3.2/alpine/Dockerfile) -- [`3.1.5`, `3.1`, `latest`, `3.1.5-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/e1dd4e1ca3d371d604a530397ad090cb0b0d8bda/3.1/Dockerfile) +- [`3.1.6`, `3.1`, `latest`, `3.1.6-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/Dockerfile) -- [`3.1.5-alpine`, `3.1-alpine`, `alpine`, `3.1.5-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/e1dd4e1ca3d371d604a530397ad090cb0b0d8bda/3.1/alpine/Dockerfile) +- [`3.1.6-alpine`, `3.1-alpine`, `alpine`, `3.1.6-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/alpine/Dockerfile) -- [`3.0.8`, `3.0`, `lts`, `3.0.8-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/262506addcf26d79cf3983d5556b835d5818ee63/3.0/Dockerfile) +- [`3.0.9`, `3.0`, `lts`, `3.0.9-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/Dockerfile) -- [`3.0.8-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.8-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/262506addcf26d79cf3983d5556b835d5818ee63/3.0/alpine/Dockerfile) +- [`3.0.9-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.9-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/alpine/Dockerfile) - [`2.9.14`, `2.9`, `2.9.14-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/812c8779de1250bb2e3e2c7da0a4b543ccc49edb/2.9/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 401b4faba2c2..366920d8b6e4 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.37`, `1.6`, `1`, `latest`, `1.6.37-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/333611d910c73ff4d66fb8d5b95e602452db1aca/1/debian/Dockerfile) +- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/e64542c6a83529d202147b8c7bbb8765e436ead8/1/debian/Dockerfile) -- [`1.6.37-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.37-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/333611d910c73ff4d66fb8d5b95e602452db1aca/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/e64542c6a83529d202147b8c7bbb8765e436ead8/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index a60c64cbeee1..244e504bbef6 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -40,9 +40,9 @@ WARNING: - [`5.26.4-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/ubi9/enterprise/Dockerfile) -- [`4.4.41`, `4.4.41-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/community/Dockerfile) +- [`4.4.42`, `4.4.42-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/community/Dockerfile) -- [`4.4.41-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/51cfafd9a2e4f6960983b2dabdca820454ca84bd/4.4.41/bullseye/enterprise/Dockerfile) +- [`4.4.42-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 5bc153ac62ab..f86b7db76fd2 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250311`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/18.0/Dockerfile) +- [`18.0-20250320`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/18.0/Dockerfile) -- [`17.0-20250311`, `17.0`, `17`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/17.0/Dockerfile) +- [`17.0-20250320`, `17.0`, `17`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/17.0/Dockerfile) -- [`16.0-20250311`, `16.0`, `16`](https://github.com/odoo/docker/blob/768a1e5da82712f358b0a39b693a252f5cb43ce1/16.0/Dockerfile) +- [`16.0-20250320`, `16.0`, `16`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/16.0/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 3f9cd8598b79..6b890a44827f 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.4`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/2fe4d518b2d892b6a39f10603e576cfdf815228c/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/e71a6615d15bb2c4f91c437398ecbcb8f7d0d371/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-beta.4-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-beta.5-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.4-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2fe4d518b2d892b6a39f10603e576cfdf815228c/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e71a6615d15bb2c4f91c437398ecbcb8f7d0d371/4.1-rc/alpine/Dockerfile) -- [`4.1.0-beta.4-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-beta.5-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) - [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/292565a5bed3673c8c8885e275cbc13d382151f0/4.0/ubuntu/Dockerfile) From eadd12f5addbbb0edea9df13a5d365b3b08701ee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 20 Mar 2025 14:09:40 -0700 Subject: [PATCH 2012/2686] Run update.sh --- varnish/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index cbebb85f9dce..18ab89879ba3 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.6.1`, `7`, `7.6`, `latest`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/fresh/debian/Dockerfile) +- [`fresh`, `7.7.0`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.6.1-alpine`, `7-alpine`, `7.6-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.7.0-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/fresh/alpine/Dockerfile) -- [`old`, `7.5.0`, `7.5`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/debian/Dockerfile) +- [`old`, `7.6.1`, `7.6`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/old/debian/Dockerfile) -- [`old-alpine`, `7.5.0-alpine`, `7.5-alpine`](https://github.com/varnish/docker-varnish/blob/b0128734bee4e7e3e987b74fe54e48257ea24a27/old/alpine/Dockerfile) +- [`old-alpine`, `7.6.1-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/old/alpine/Dockerfile) -- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/1dab93d8d1ea339f8ff527c62c748be2c50962c8/stable/debian/Dockerfile) +- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/2195c6673d226d168014f6b7b65ab2c633246689/stable/debian/Dockerfile) # Quick reference (cont.) From 07c46faa53d8c5b2b4575dd85796b19eb069856b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Mar 2025 10:09:46 -0700 Subject: [PATCH 2013/2686] Run update.sh --- backdrop/README.md | 4 ++-- crate/README.md | 4 ++-- dart/README.md | 4 ++-- joomla/README.md | 48 +++++++++++++++++++++++----------------------- 4 files changed, 30 insertions(+), 30 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index c500bb9030aa..b5a238bdea9c 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30.1`, `1.30`, `1`, `1.30.1-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/0f037348948190b7ce4f2e1afe67514818c5a9fc/1/apache/Dockerfile) +- [`1.30.2`, `1.30`, `1`, `1.30.2-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/8af6f112829878eaef3c55f239aa9e6b35cbf2a7/1/apache/Dockerfile) -- [`1.30.1-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/0f037348948190b7ce4f2e1afe67514818c5a9fc/1/fpm/Dockerfile) +- [`1.30.2-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/8af6f112829878eaef3c55f239aa9e6b35cbf2a7/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 77ec55d59268..27f6f1000fad 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.2`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/7838c0d4716fb0368e9280705f2b808e3ab2288b/Dockerfile) +- [`5.10.3`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/1dbe963d8752d183fe3773c5caf22a5718f17560/Dockerfile) -- [`5.9.11`, `5.9`](https://github.com/crate/docker-crate/blob/f4ad4959f78765d2d7f0929acd49c2bdf449e8a1/Dockerfile) +- [`5.9.11`, `5.9`](https://github.com/crate/docker-crate/blob/42c7218d834e5c8d2a5db3406aef0d1e7efa2092/Dockerfile) - [`5.8.7`, `5.8`](https://github.com/crate/docker-crate/blob/1e8b7379346e188f5de637d9681d450d9435cb0a/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 8c7be6d426dc..a301eaf68cf2 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/82a44847f72ed8edf457d301e02b51a31b6f1646/stable/bookworm/Dockerfile) +- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/fb0246d1d736b5c2d66181251d06fb08847722ed/stable/bookworm/Dockerfile) -- [`3.8.0-70.1.beta-sdk`, `beta-sdk`, `3.8.0-70.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/82a44847f72ed8edf457d301e02b51a31b6f1646/beta/bookworm/Dockerfile) +- [`3.8.0-171.1.beta-sdk`, `beta-sdk`, `3.8.0-171.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/fb0246d1d736b5c2d66181251d06fb08847722ed/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index c41613c0a82d..8cc94da9aa3c 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-beta2-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/apache/Dockerfile) +- [`5.3.0-beta3-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/apache/Dockerfile) -- [`5.3.0-beta2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.3.0-beta3-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/fpm-alpine/Dockerfile) -- [`5.3.0-beta2-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.1/fpm/Dockerfile) +- [`5.3.0-beta3-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/fpm/Dockerfile) -- [`5.3.0-beta2-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/apache/Dockerfile) +- [`5.3.0-beta3-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/apache/Dockerfile) -- [`5.3.0-beta2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.3.0-beta3-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.3.0-beta2-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.2/fpm/Dockerfile) +- [`5.3.0-beta3-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/fpm/Dockerfile) -- [`5.3.0-beta2`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta2-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta2-php8.3`, `5.3-php8.3`, `5.3.beta-php8.3`, `5.3.0-beta-php8.3`, `5.3.0-beta2-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/apache/Dockerfile) +- [`5.3.0-beta3`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta3-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta3-php8.3`, `5.3-php8.3`, `5.3.beta-php8.3`, `5.3.0-beta-php8.3`, `5.3.0-beta3-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/apache/Dockerfile) -- [`5.3.0-beta2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.3.0-beta3-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-beta2-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.3.beta/php8.3/fpm/Dockerfile) +- [`5.3.0-beta3-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/fpm/Dockerfile) -- [`5.2.4-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/apache/Dockerfile) +- [`5.2.5-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/apache/Dockerfile) -- [`5.2.4-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.2.5-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.4-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.1/fpm/Dockerfile) +- [`5.2.5-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/fpm/Dockerfile) -- [`5.2.4-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/apache/Dockerfile) +- [`5.2.5-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/apache/Dockerfile) -- [`5.2.4-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.2.5-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.4-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/5.2/php8.2/fpm/Dockerfile) +- [`5.2.5-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/fpm/Dockerfile) -- [`5.2.4`, `5.2`, `5`, `latest`, `5.2.4-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.4-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.4-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/apache/Dockerfile) +- [`5.2.5`, `5.2`, `5`, `latest`, `5.2.5-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.5-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.5-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/apache/Dockerfile) -- [`5.2.4-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.5-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.4-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/8ad67eeeebf64ed3e4ff726dae2086c2d9156571/5.2/php8.3/fpm/Dockerfile) +- [`5.2.5-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/fpm/Dockerfile) -- [`4.4.11-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/apache/Dockerfile) +- [`4.4.12-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/apache/Dockerfile) -- [`4.4.11-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.12-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.11-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.1/fpm/Dockerfile) +- [`4.4.12-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/fpm/Dockerfile) -- [`4.4.11`, `4.4`, `4`, `4.4.11-apache`, `4.4-apache`, `4-apache`, `4.4.11-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.11-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/apache/Dockerfile) +- [`4.4.12`, `4.4`, `4`, `4.4.12-apache`, `4.4-apache`, `4-apache`, `4.4.12-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.12-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/apache/Dockerfile) -- [`4.4.11-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.12-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.11-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b61f85639c6c474e41314f43d8b1217f1c1bc30b/4.4/php8.2/fpm/Dockerfile) +- [`4.4.12-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) From 1fbcc6d9dd7daa9669e14cc0b6f12b6022b87a97 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Mar 2025 11:09:40 -0700 Subject: [PATCH 2014/2686] Run update.sh --- openjdk/README.md | 50 +++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index cbf572dcbace..08d6cb690a4c 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-14-jdk-oraclelinux9`, `25-ea-14-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-14-jdk-oracle`, `25-ea-14-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-15-jdk-oraclelinux9`, `25-ea-15-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-15-jdk-oracle`, `25-ea-15-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-14-jdk-oraclelinux8`, `25-ea-14-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-15-jdk-oraclelinux8`, `25-ea-15-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-14-jdk-bookworm`, `25-ea-14-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/bookworm/Dockerfile) +- [`25-ea-15-jdk-bookworm`, `25-ea-15-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/bookworm/Dockerfile) -- [`25-ea-14-jdk-slim-bookworm`, `25-ea-14-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-14-jdk-slim`, `25-ea-14-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-15-jdk-slim-bookworm`, `25-ea-15-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-15-jdk-slim`, `25-ea-15-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-14-jdk-bullseye`, `25-ea-14-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/bullseye/Dockerfile) +- [`25-ea-15-jdk-bullseye`, `25-ea-15-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/bullseye/Dockerfile) -- [`25-ea-14-jdk-slim-bullseye`, `25-ea-14-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-15-jdk-slim-bullseye`, `25-ea-15-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-14-jdk-windowsservercore-ltsc2025`, `25-ea-14-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-15-jdk-windowsservercore-ltsc2025`, `25-ea-15-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-14-jdk-windowsservercore-ltsc2022`, `25-ea-14-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-15-jdk-windowsservercore-ltsc2022`, `25-ea-15-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-14-jdk-windowsservercore-1809`, `25-ea-14-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-15-jdk-windowsservercore-1809`, `25-ea-15-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-14-jdk-nanoserver-ltsc2025`, `25-ea-14-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-15-jdk-nanoserver-ltsc2025`, `25-ea-15-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-14-jdk-nanoserver-ltsc2022`, `25-ea-14-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-15-jdk-nanoserver-ltsc2022`, `25-ea-15-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-14-jdk-nanoserver-1809`, `25-ea-14-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-15-jdk-nanoserver-1809`, `25-ea-15-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-14-jdk`, `25-ea-14`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-15-jdk`, `25-ea-15`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-14-jdk-windowsservercore`, `25-ea-14-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-15-jdk-windowsservercore`, `25-ea-15-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-14-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-14-jdk-nanoserver`, `25-ea-14-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-15-jdk-nanoserver`, `25-ea-15-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-14-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-14-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-14-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8725dac4ccd04a79ac39513845d20fa73b4a81eb/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-15-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-15-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 12b0308578cc6e47ade6210bab2014f4864c9bb7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 21 Mar 2025 12:09:37 -0700 Subject: [PATCH 2015/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index dcfe2da81cb6..68faec7e1444 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -36,9 +36,9 @@ WARNING: - [`3.0.9-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.9-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/alpine/Dockerfile) -- [`2.9.14`, `2.9`, `2.9.14-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/812c8779de1250bb2e3e2c7da0a4b543ccc49edb/2.9/Dockerfile) +- [`2.9.15`, `2.9`, `2.9.15-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/c9cb10f61c58ea4e748a22e9485d31584c25fb47/2.9/Dockerfile) -- [`2.9.14-alpine`, `2.9-alpine`, `2.9.14-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/812c8779de1250bb2e3e2c7da0a4b543ccc49edb/2.9/alpine/Dockerfile) +- [`2.9.15-alpine`, `2.9-alpine`, `2.9.15-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/c9cb10f61c58ea4e748a22e9485d31584c25fb47/2.9/alpine/Dockerfile) - [`2.8.14`, `2.8`, `2.8.14-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/Dockerfile) From 1e472f8bf5aed589b7c80ab4dc9d75eef566aaa0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Mar 2025 10:09:46 -0700 Subject: [PATCH 2016/2686] Run update.sh --- amazoncorretto/README.md | 110 +++++++++++++++++++--------------- archlinux/README.md | 6 +- clearlinux/README.md | 2 +- crate/README.md | 4 +- ibm-semeru-runtimes/README.md | 80 ++++++++++++------------- photon/README.md | 2 +- 6 files changed, 110 insertions(+), 94 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index c60757a4ad4b..d43962fa4470 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,115 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u442-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u442-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u442-alpine3.21-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u442-alpine3.21-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.21/Dockerfile) -- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2/Dockerfile) -- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.26-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.26-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.21/Dockerfile) -- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2/Dockerfile) -- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.14-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.14-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.21/Dockerfile) -- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/headful/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.6-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.6-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.21/Dockerfile) -- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/al2023/Dockerfile) +- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/al2023/Dockerfile) -- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/headless/al2023/Dockerfile) +- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/headless/al2023/Dockerfile) -- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/headful/al2023/Dockerfile) +- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/headful/al2023/Dockerfile) -- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.18/Dockerfile) +- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.18/Dockerfile) -- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.19/Dockerfile) +- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.19/Dockerfile) -- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.20/Dockerfile) +- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.20/Dockerfile) -- [`23-alpine3.21`, `23.0.2-alpine3.21`, `23-alpine3.21-full`, `23-alpine3.21-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/89bc34902ac1a084562a2c6e7b02190eff3613bb/23/jdk/alpine/3.21/Dockerfile) +- [`23-alpine3.21`, `23.0.2-alpine3.21`, `23-alpine3.21-full`, `23-alpine3.21-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.21/Dockerfile) + +- [`24-al2023`, `24.0.0-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/al2023/Dockerfile) + +- [`24-al2023-headless`, `24.0.0-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/headless/al2023/Dockerfile) + +- [`24-al2023-headful`, `24.0.0-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/headful/al2023/Dockerfile) + +- [`24-alpine3.18`, `24.0.0-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.18/Dockerfile) + +- [`24-alpine3.19`, `24.0.0-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.19/Dockerfile) + +- [`24-alpine3.20`, `24.0.0-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.20/Dockerfile) + +- [`24-alpine3.21`, `24.0.0-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.0-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 282ddaf8dd65..46b6ce29e6dc 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.base) +- [`latest`, `base`, `base-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.base) -- [`base-devel`, `base-devel-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250316.0.322463`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/05095eca9c393bd221c86c3810f2b47180f3388f/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 87b04c6609a2..595233c36215 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/d81d8d81f2a6a1cefaa81b3c5d24c3b56c686999/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dca75611de9532455b01e015fa8e1bae4b2d2d4b/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 27f6f1000fad..1a2367f1d18b 100644 --- a/crate/README.md +++ b/crate/README.md @@ -26,7 +26,9 @@ WARNING: - [`5.10.3`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/1dbe963d8752d183fe3773c5caf22a5718f17560/Dockerfile) -- [`5.9.11`, `5.9`](https://github.com/crate/docker-crate/blob/42c7218d834e5c8d2a5db3406aef0d1e7efa2092/Dockerfile) +- [`5.9.12`, `5.9`](https://github.com/crate/docker-crate/blob/42c7218d834e5c8d2a5db3406aef0d1e7efa2092/Dockerfile) + +- [`5.9.11`](https://github.com/crate/docker-crate/blob/f4ad4959f78765d2d7f0929acd49c2bdf449e8a1/Dockerfile) - [`5.8.7`, `5.8`](https://github.com/crate/docker-crate/blob/1e8b7379346e188f5de637d9681d450d9435cb0a/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index fcad4113343a..38965d7d7a0b 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,107 +28,107 @@ WARNING: ## Simple Tags -- [`open-8u442-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u442-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u442-b06-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u442-b06-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u442-b06-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.26_4-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.14_7-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.6_7-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jdk-noble`, `open-23-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jdk-noble`, `open-23-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-23.0.2_7-jre-noble`, `open-23-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-23.0.2_7-jre-noble`, `open-23-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags - `open-8u442-b06-jdk`, `open-8-jdk`: - - [`open-8u442-b06-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u442-b06-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-8u442-b06-jre`, `open-8-jre`: - - [`open-8u442-b06-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u442-b06-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.26_4-jdk`, `open-11-jdk`: - - [`open-11.0.26_4-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.26_4-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.26_4-jre`, `open-11-jre`: - - [`open-11.0.26_4-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.26_4-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.14_7-jdk`, `open-17-jdk`: - - [`open-17.0.14_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.14_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.14_7-jre`, `open-17-jre`: - - [`open-17.0.14_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.14_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.6_7-jdk`, `open-21-jdk`: - - [`open-21.0.6_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.6_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.6_7-jre`, `open-21-jre`: - - [`open-21.0.6_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.6_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-23.0.2_7-jdk`, `open-23-jdk`: - - [`open-23.0.2_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-23.0.2_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-23.0.2_7-jre`, `open-23-jre`: - - [`open-23.0.2_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a278ee463c7dcda550133dccd661058a152df006/23/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-23.0.2_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 3b2c6d8a7078..21f00f2ce14c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250309`, `latest`](https://github.com/vmware/photon-docker-image/blob/5af216767c0ec9e4ccba0c3721431c49e32f442e/docker/Dockerfile) +- [`5.0`, `5.0-20250323`, `latest`](https://github.com/vmware/photon-docker-image/blob/6ab5307cb25efdcb5190f1fcda0b14d47bbce86f/docker/Dockerfile) - [`4.0`, `4.0-20250309`](https://github.com/vmware/photon-docker-image/blob/fb8974a7e05a681d8b31b3df850bd5203a1d3581/docker/Dockerfile) From 790749c80ee4741f678a18c6ab3b1c6b97a46fa1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Mar 2025 13:09:37 -0700 Subject: [PATCH 2017/2686] Run update.sh --- chronograf/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index d2682cbd01d3..328f10a00de7 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.9/alpine/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/Dockerfile) +- [`1.10`, `1.10.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0854be83296d30acd6e2b75f106f026cb051cbda/chronograf/1.10/alpine/Dockerfile) +- [`1.10-alpine`, `1.10.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) From 4d9c0ffa517690a96f2aebb5281f89bcca85ba9c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Mar 2025 15:10:14 -0700 Subject: [PATCH 2018/2686] Run update.sh --- ghost/README.md | 4 +- golang/README.md | 12 ++--- haproxy/README.md | 8 +-- mageia/README.md | 4 +- mongo/README.md | 132 +++++++++++++--------------------------------- 5 files changed, 48 insertions(+), 112 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 2ddcdf2ba8bb..eb459551bc67 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.113.1`, `5.113`, `5`, `latest`](https://github.com/docker-library/ghost/blob/d2fe84d5a6a6363733a8f55a4df746c4e26af4bc/5/debian/Dockerfile) +- [`5.114.1`, `5.114`, `5`, `latest`](https://github.com/docker-library/ghost/blob/da50c4852923aff7d62a8e32dd92c41170d45971/5/debian/Dockerfile) -- [`5.113.1-alpine`, `5.113-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d2fe84d5a6a6363733a8f55a4df746c4e26af4bc/5/alpine/Dockerfile) +- [`5.114.1-alpine`, `5.114-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/da50c4852923aff7d62a8e32dd92c41170d45971/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index a485bc0d746e..de672f3417ed 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250316-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bookworm/Dockerfile) +- [`tip-20250322-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bookworm/Dockerfile) -- [`tip-20250316-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bullseye/Dockerfile) +- [`tip-20250322-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bullseye/Dockerfile) -- [`tip-20250316-alpine3.21`, `tip-alpine3.21`, `tip-20250316-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/alpine3.21/Dockerfile) +- [`tip-20250322-alpine3.21`, `tip-alpine3.21`, `tip-20250322-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/alpine3.21/Dockerfile) -- [`tip-20250316-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/alpine3.20/Dockerfile) +- [`tip-20250322-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250316`, `tip`: +- `tip-20250322`, `tip`: - - [`tip-20250316-bookworm`](https://github.com/docker-library/golang/blob/e3a0b6ad927ecdbf7ec797df64eb3b0f98c2c123/tip/bookworm/Dockerfile) + - [`tip-20250322-bookworm`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 68faec7e1444..c68685ce2938 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev7`, `3.2-dev`, `3.2-dev7-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b47b21a6996b0a8ca4421bbfeb7ec789a8858f26/3.2/Dockerfile) +- [`3.2-dev8`, `3.2-dev`, `3.2-dev8-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/a3a9a360d63ff6f9e50e7dc3aeb7184911ef580d/3.2/Dockerfile) -- [`3.2-dev7-alpine`, `3.2-dev-alpine`, `3.2-dev7-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/b47b21a6996b0a8ca4421bbfeb7ec789a8858f26/3.2/alpine/Dockerfile) +- [`3.2-dev8-alpine`, `3.2-dev-alpine`, `3.2-dev8-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/a3a9a360d63ff6f9e50e7dc3aeb7184911ef580d/3.2/alpine/Dockerfile) - [`3.1.6`, `3.1`, `latest`, `3.1.6-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/Dockerfile) @@ -36,10 +36,6 @@ WARNING: - [`3.0.9-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.9-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/alpine/Dockerfile) -- [`2.9.15`, `2.9`, `2.9.15-bookworm`, `2.9-bookworm`](https://github.com/docker-library/haproxy/blob/c9cb10f61c58ea4e748a22e9485d31584c25fb47/2.9/Dockerfile) - -- [`2.9.15-alpine`, `2.9-alpine`, `2.9.15-alpine3.21`, `2.9-alpine3.21`](https://github.com/docker-library/haproxy/blob/c9cb10f61c58ea4e748a22e9485d31584c25fb47/2.9/alpine/Dockerfile) - - [`2.8.14`, `2.8`, `2.8.14-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/Dockerfile) - [`2.8.14-alpine`, `2.8-alpine`, `2.8.14-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/alpine/Dockerfile) diff --git a/mageia/README.md b/mageia/README.md index 846f8bd2710a..1ed4433e127b 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/92acc83ab9be0351a7fa5a29d50e7bfe3372a0e1/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a33ee87c937363a457b13a30e584e66c0e0a396f/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/92acc83ab9be0351a7fa5a29d50e7bfe3372a0e1/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a33ee87c937363a457b13a30e584e66c0e0a396f/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 2656e07de80f..662daf635fa6 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,53 +28,29 @@ WARNING: ## Simple Tags -- [`8.0.6-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0-rc/Dockerfile) +- [`8.0.6-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/Dockerfile) -- [`8.0.6-rc2-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.6-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.6-rc2-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.6-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.6-rc2-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) +- [`8.0.6-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.6-rc2-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.6-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.6-rc2-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-1809/Dockerfile) +- [`8.0.6-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-1809/Dockerfile) -- [`8.0.5-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0/Dockerfile) +- [`7.0.18-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/Dockerfile) -- [`8.0.5-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.18-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.5-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.18-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.5-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.18-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.5-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.18-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.5-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) - -- [`7.0.18-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/Dockerfile) - -- [`7.0.18-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.18-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.18-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) - -- [`7.0.18-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.18-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-1809/Dockerfile) - -- [`7.0.17-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) - -- [`7.0.17-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.17-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.17-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) - -- [`7.0.17-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.17-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.18-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-1809/Dockerfile) - [`6.0.21-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/Dockerfile) @@ -90,77 +66,41 @@ WARNING: ## Shared Tags -- `8.0.6-rc2`, `8.0-rc`: - - - [`8.0.6-rc2-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0-rc/Dockerfile) - - [`8.0.6-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `8.0.6-rc2-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.6-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/windowsservercore-1809/Dockerfile) - -- `8.0.6-rc2-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.6-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.6-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/d3e7063d9df36fdee313e79cb0b4d214d6d35858/8.0-rc/windows/nanoserver-1809/Dockerfile) - -- `8.0.5`, `8.0`, `8`, `latest`: - - - [`8.0.5-noble`](https://github.com/docker-library/mongo/blob/7bf22284b34d88f3b4d6a6b5ad6d50297111f691/8.0/Dockerfile) - - [`8.0.5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) - -- `8.0.5-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - - [`8.0.5-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.5-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/160bb867729c82388d00a2ec94e8e1c0c133066c/8.0/windows/windowsservercore-1809/Dockerfile) - -- `8.0.5-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - - [`8.0.5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ce024078e646db3615a59c1950888d82b9733cc4/8.0/windows/nanoserver-1809/Dockerfile) - -- `7.0.18-rc0`, `7.0-rc`: +- `8.0.6`, `8.0`, `8`, `latest`: - - [`7.0.18-rc0-jammy`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/Dockerfile) - - [`7.0.18-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.6-noble`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/Dockerfile) + - [`8.0.6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.18-rc0-windowsservercore`, `7.0-rc-windowsservercore`: +- `8.0.6-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`7.0.18-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.18-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.18-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/windowsservercore-1809/Dockerfile) + - [`8.0.6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.18-rc0-nanoserver`, `7.0-rc-nanoserver`: +- `8.0.6-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`7.0.18-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.18-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/72f37f03821caf90a986ded9defd7b32f4ae6731/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.17`, `7.0`, `7`: +- `7.0.18`, `7.0`, `7`: - - [`7.0.17-jammy`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/Dockerfile) - - [`7.0.17-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.18-jammy`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/Dockerfile) + - [`7.0.18-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.17-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.18-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.17-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.17-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.17-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.18-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.17-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.18-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.17-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.17-nanoserver-1809`](https://github.com/docker-library/mongo/blob/c00961411ef4c1b6a58d9ed346435b7e7f9abdb6/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.21`, `6.0`, `6`: From 5c6bc90d45d6df83ce187fd602b284f94144e9e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 24 Mar 2025 16:09:52 -0700 Subject: [PATCH 2019/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index cc430a6ad58e..1e15ba507b08 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f56037d7528ff47457e0d465f6daf30ace73dc3f/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.34/alpine/Dockerfile) # Quick reference (cont.) From 92b0d2dc5ef4a1ea03cd18ac28a422b434e7961c Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 24 Mar 2025 16:34:12 -0700 Subject: [PATCH 2020/2686] Update shebang from /bin/bash to /usr/bin/env bash --- markdownfmt.sh | 2 +- push.sh | 2 +- update.sh | 2 +- ymlfmt.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/markdownfmt.sh b/markdownfmt.sh index 43eb694c2fb8..68ad67f9a33c 100755 --- a/markdownfmt.sh +++ b/markdownfmt.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e exec docker run -i --rm -v "$PWD":/scratch -w /scratch -u "$(id -u):$(id -g)" tianon/markdownfmt markdownfmt "$@" diff --git a/push.sh b/push.sh index a1e43e346ef6..92ac00f6f6df 100755 --- a/push.sh +++ b/push.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e cd "$(dirname "$(readlink -f "$BASH_SOURCE")")" diff --git a/update.sh b/update.sh index 0b73bf051ba3..60ff3ad30ae0 100755 --- a/update.sh +++ b/update.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -Eeuo pipefail cd "$(dirname "$(readlink -f "$BASH_SOURCE")")" diff --git a/ymlfmt.sh b/ymlfmt.sh index a83bbeb4c2d9..8ab8b937ba1a 100755 --- a/ymlfmt.sh +++ b/ymlfmt.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e exec docker run -i --rm -v "$PWD":/scratch -w /scratch -u "$(id -u):$(id -g)" tianon/ymlfmt ymlfmt "$@" From 3644186fa1ba105000c81ba8fbc0fd1a080cbc97 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 25 Mar 2025 16:43:58 +0100 Subject: [PATCH 2021/2686] ArangoDB: Clarify license terms --- arangodb/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/license.md b/arangodb/license.md index 2909170e6bec..0bd79adbca15 100644 --- a/arangodb/license.md +++ b/arangodb/license.md @@ -1,4 +1,4 @@ -The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). The use for commercial purposes is limited to a 100 GB on dataset size in production within a single cluster and a maximum of three clusters. +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. From 152110b311039cd403d86f842255920961193a0d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Mar 2025 10:09:34 -0700 Subject: [PATCH 2022/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index 20816d96c360..a14ce24295df 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -268,7 +268,7 @@ When deriving the image, you can control the instantiation via putting files int # License -The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). The use for commercial purposes is limited to a 100 GB on dataset size in production within a single cluster and a maximum of three clusters. +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. From 7570b007b5d8b965a0a026312fca54c3a71469a9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Mar 2025 12:09:50 -0700 Subject: [PATCH 2023/2686] Run update.sh --- couchbase/README.md | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index b4c34d34b553..8746db3a1f9b 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,21 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.5`, `enterprise-7.6.5`, `enterprise`, `latest`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) +- [`7.6.5`, `enterprise`, `enterprise-7.6.5`, `latest`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) -- [`community-7.6.2`, `community`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) +- [`7.6.4`, `enterprise-7.6.4`](https://github.com/couchbase/docker/blob/9990e2cfabc94b37607e5666d9ef1eab69a397a6/enterprise/couchbase-server/7.6.4/Dockerfile) + +- [`7.6.3`, `enterprise-7.6.3`](https://github.com/couchbase/docker/blob/553d1baa4aa90fe506e1d7bcdf4daec387a110fe/enterprise/couchbase-server/7.6.3/Dockerfile) + +- [`7.6.2`, `enterprise-7.6.2`](https://github.com/couchbase/docker/blob/ba43d566538a8e0b6315569b94f0a7cf835c222b/enterprise/couchbase-server/7.6.2/Dockerfile) + +- [`community`, `community-7.6.2`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) + +- [`7.6.1`, `enterprise-7.6.1`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) + +- [`community-7.6.1`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) + +- [`7.6.0`, `enterprise-7.6.0`](https://github.com/couchbase/docker/blob/203e62f36ce055be75955e073d0000249bf2c040/enterprise/couchbase-server/7.6.0/Dockerfile) + +- [`community-7.6.0`](https://github.com/couchbase/docker/blob/7148bc241bcdcf8961c34f8adf76ebfb2860ed83/community/couchbase-server/7.6.0/Dockerfile) - [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/857d7bcc814e241fd36aa4dc326dcab37e1d1e73/enterprise/couchbase-server/7.2.6/Dockerfile) -- [`community-7.2.4`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.2.4/Dockerfile) +- [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) + +- [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/24bae6aab6520dc97c362b56150db9658d041873/enterprise/couchbase-server/7.2.4/Dockerfile) + +- [`community-7.2.4`](https://github.com/couchbase/docker/blob/9fc1cf481a8fe8e78d7539cee3a25cdbaa7b5e1e/community/couchbase-server/7.2.4/Dockerfile) + +- [`7.2.3`, `enterprise-7.2.3`](https://github.com/couchbase/docker/blob/3a446520433f63e3d270f01063b14cb6b6ade12a/enterprise/couchbase-server/7.2.3/Dockerfile) -- [`7.1.6`, `enterprise-7.1.6`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.1.6/Dockerfile) +- [`7.2.2`, `enterprise-7.2.2`](https://github.com/couchbase/docker/blob/00de0b8de802ff6909be789b1f86a65d934a38f8/enterprise/couchbase-server/7.2.2/Dockerfile) -- [`community-7.1.1`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.1.1/Dockerfile) +- [`community-7.2.2`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/community/couchbase-server/7.2.2/Dockerfile) -- [`7.0.5`, `enterprise-7.0.5`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/enterprise/couchbase-server/7.0.5/Dockerfile) +- [`7.2.0`, `enterprise-7.2.0`](https://github.com/couchbase/docker/blob/1985fb8f6774c71cb0f00e37a62c0741fad59ece/enterprise/couchbase-server/7.2.0/Dockerfile) -- [`community-7.0.2`](https://github.com/couchbase/docker/blob/8205e18d139813ac3f72f6dfef9ee9ffbc382e0f/community/couchbase-server/7.0.2/Dockerfile) +- [`community-7.2.0`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/community/couchbase-server/7.2.0/Dockerfile) # Quick reference (cont.) From 44409916b7441b045ef742b4fc9bf98faf01b638 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Mar 2025 13:09:55 -0700 Subject: [PATCH 2024/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- logstash/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index a862fb0122e3..91ef09f0f4be 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/elasticsearch/Dockerfile) +- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/elasticsearch/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/elasticsearch/Dockerfile) +- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 0f8f1ff5f3e0..69f43c41ea2c 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/logstash/Dockerfile) +- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/logstash/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) -- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/logstash/Dockerfile) +- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/logstash/Dockerfile) # Quick reference (cont.) From d6c0b2621712af2c6a61e77f07bc11cab303f574 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Mar 2025 14:09:42 -0700 Subject: [PATCH 2025/2686] Run update.sh --- bash/README.md | 2 +- emqx/README.md | 2 +- kibana/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bash/README.md b/bash/README.md index 0e2457eb3a14..33be95f6c0bc 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250307`, `devel`, `devel-20250307-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d8b39f6410700f850a53912de89621f514642836/devel/Dockerfile) +- [`devel-20250324`, `devel`, `devel-20250324-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/2e00749eb94aa5c4709d5831708c0aefc60d8dd2/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index 966de337fc93..7073d1c8a314 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.5`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/5194bd9de936dddb2b09f20ebbe76161854bab19/5.8/Dockerfile) +- [`5.8.6`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/7324fb36f81404915f97472652e2572f1dda5066/5.8/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 6d850ce4d602..6aa8eddcaa82 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.5`](https://github.com/elastic/dockerfiles/blob/adf3eb349fa9ecd204b431b3d1550ed5b6cbee7d/kibana/Dockerfile) +- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/kibana/Dockerfile) - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.3`](https://github.com/elastic/dockerfiles/blob/204cb29c8473f0353e1e1b9181e9be03ef94be72/kibana/Dockerfile) +- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/kibana/Dockerfile) # Quick reference (cont.) From 31f9c050cd390d6b604179bd3647aa771901c84f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 25 Mar 2025 15:09:34 -0700 Subject: [PATCH 2026/2686] Run update.sh --- docker/README.md | 20 +++---- eclipse-temurin/README.md | 108 +++++++++++++++++++------------------- sonarqube/README.md | 26 +++++---- 3 files changed, 81 insertions(+), 73 deletions(-) diff --git a/docker/README.md b/docker/README.md index b82ac061beaf..660e9dfa9b3f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.2-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/cli/Dockerfile) +- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/cli/Dockerfile) -- [`28.0.2-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.2-dind-alpine3.21`, `28.0.2`, `28.0`, `28`, `latest`, `28.0.2-alpine3.21`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/dind/Dockerfile) +- [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind/Dockerfile) -- [`28.0.2-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/dind-rootless/Dockerfile) +- [`28.0.4-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind-rootless/Dockerfile) -- [`28.0.2-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.2-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.2-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.0.2-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.0.4-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/b8a0cd47873fbc6f6f3a58eee18ebeb79f7376e0/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 79e8ea435570..d0bb414a0230 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -38,7 +38,7 @@ WARNING: - [`8u442-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/noble/Dockerfile) -- [`8u442-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u442-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/8/jdk/ubi/ubi9-minimal/Dockerfile) - [`8u442-b06-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -62,7 +62,7 @@ WARNING: - [`8u442-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/noble/Dockerfile) -- [`8u442-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u442-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/8/jre/ubi/ubi9-minimal/Dockerfile) - [`8u442-b06-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) @@ -86,7 +86,7 @@ WARNING: - [`11.0.26_4-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.26_4-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.26_4-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/11/jdk/ubi/ubi9-minimal/Dockerfile) - [`11.0.26_4-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -110,7 +110,7 @@ WARNING: - [`11.0.26_4-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.26_4-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.26_4-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/11/jre/ubi/ubi9-minimal/Dockerfile) - [`11.0.26_4-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) @@ -134,7 +134,7 @@ WARNING: - [`17.0.14_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.14_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.14_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/17/jdk/ubi/ubi9-minimal/Dockerfile) - [`17.0.14_7-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -158,7 +158,7 @@ WARNING: - [`17.0.14_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.14_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.14_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/17/jre/ubi/ubi9-minimal/Dockerfile) - [`17.0.14_7-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) @@ -180,7 +180,7 @@ WARNING: - [`21.0.6_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.6_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.6_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/21/jdk/ubi/ubi9-minimal/Dockerfile) - [`21.0.6_7-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -202,7 +202,7 @@ WARNING: - [`21.0.6_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.6_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.6_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/21/jre/ubi/ubi9-minimal/Dockerfile) - [`21.0.6_7-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) @@ -216,45 +216,45 @@ WARNING: - [`21.0.6_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) -- [`23.0.2_7-jdk-alpine-3.20`, `23-jdk-alpine-3.20`, `23-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/alpine/3.20/Dockerfile) +- [`24_36-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/alpine/3.20/Dockerfile) -- [`23.0.2_7-jdk-alpine-3.21`, `23-jdk-alpine-3.21`, `23-alpine-3.21`, `23.0.2_7-jdk-alpine`, `23-jdk-alpine`, `23-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/alpine/3.21/Dockerfile) +- [`24_36-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`, `24_36-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/alpine/3.21/Dockerfile) -- [`23.0.2_7-jdk-noble`, `23-jdk-noble`, `23-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubuntu/noble/Dockerfile) +- [`24_36-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubuntu/noble/Dockerfile) -- [`23.0.2_7-jdk-ubi9-minimal`, `23-jdk-ubi9-minimal`, `23-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubi/ubi9-minimal/Dockerfile) +- [`24_36-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubi/ubi9-minimal/Dockerfile) -- [`23.0.2_7-jdk-windowsservercore-ltsc2025`, `23-jdk-windowsservercore-ltsc2025`, `23-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24_36-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.2_7-jdk-nanoserver-ltsc2025`, `23-jdk-nanoserver-ltsc2025`, `23-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`24_36-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`23.0.2_7-jdk-windowsservercore-ltsc2022`, `23-jdk-windowsservercore-ltsc2022`, `23-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24_36-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.2_7-jdk-nanoserver-ltsc2022`, `23-jdk-nanoserver-ltsc2022`, `23-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`24_36-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`23.0.2_7-jdk-windowsservercore-1809`, `23-jdk-windowsservercore-1809`, `23-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) +- [`24_36-jdk-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) -- [`23.0.2_7-jdk-nanoserver-1809`, `23-jdk-nanoserver-1809`, `23-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-1809/Dockerfile) +- [`24_36-jdk-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-1809/Dockerfile) -- [`23.0.2_7-jre-alpine-3.20`, `23-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/alpine/3.20/Dockerfile) +- [`24_36-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/alpine/3.20/Dockerfile) -- [`23.0.2_7-jre-alpine-3.21`, `23-jre-alpine-3.21`, `23.0.2_7-jre-alpine`, `23-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/alpine/3.21/Dockerfile) +- [`24_36-jre-alpine-3.21`, `24-jre-alpine-3.21`, `24_36-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/alpine/3.21/Dockerfile) -- [`23.0.2_7-jre-noble`, `23-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubuntu/noble/Dockerfile) +- [`24_36-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubuntu/noble/Dockerfile) -- [`23.0.2_7-jre-ubi9-minimal`, `23-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubi/ubi9-minimal/Dockerfile) +- [`24_36-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubi/ubi9-minimal/Dockerfile) -- [`23.0.2_7-jre-windowsservercore-ltsc2025`, `23-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24_36-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`23.0.2_7-jre-nanoserver-ltsc2025`, `23-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`24_36-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`23.0.2_7-jre-windowsservercore-ltsc2022`, `23-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24_36-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`23.0.2_7-jre-nanoserver-ltsc2022`, `23-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`24_36-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`23.0.2_7-jre-windowsservercore-1809`, `23-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) +- [`24_36-jre-windowsservercore-1809`, `24-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) -- [`23.0.2_7-jre-nanoserver-1809`, `23-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-1809/Dockerfile) +- [`24_36-jre-nanoserver-1809`, `24-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -410,43 +410,43 @@ WARNING: - [`21.0.6_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`21.0.6_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) -- `23.0.2_7-jdk`, `23-jdk`, `23`: +- `24_36-jdk`, `24-jdk`, `24`: - - [`23.0.2_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/ubuntu/noble/Dockerfile) - - [`23.0.2_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24_36-jdk-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubuntu/noble/Dockerfile) + - [`24_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `23.0.2_7-jdk-windowsservercore`, `23-jdk-windowsservercore`, `23-windowsservercore`: +- `24_36-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`23.0.2_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.2_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.2_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) -- `23.0.2_7-jdk-nanoserver`, `23-jdk-nanoserver`, `23-nanoserver`: +- `24_36-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`23.0.2_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`23.0.2_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`23.0.2_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jdk/windows/nanoserver-1809/Dockerfile) + - [`24_36-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-1809/Dockerfile) -- `23.0.2_7-jre`, `23-jre`: +- `24_36-jre`, `24-jre`: - - [`23.0.2_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/ubuntu/noble/Dockerfile) - - [`23.0.2_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`24_36-jre-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubuntu/noble/Dockerfile) + - [`24_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) -- `23.0.2_7-jre-windowsservercore`, `23-jre-windowsservercore`: +- `24_36-jre-windowsservercore`, `24-jre-windowsservercore`: - - [`23.0.2_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`23.0.2_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`23.0.2_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/windowsservercore-1809/Dockerfile) + - [`24_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) -- `23.0.2_7-jre-nanoserver`, `23-jre-nanoserver`: +- `24_36-jre-nanoserver`, `24-jre-nanoserver`: - - [`23.0.2_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`23.0.2_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`23.0.2_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/23/jre/windows/nanoserver-1809/Dockerfile) + - [`24_36-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`24_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`24_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 17d30acc250b..d8e48083d843 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,25 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.1.1-developer`, `2025.1-developer`, `2025-lta-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/developer/Dockerfile) +- [`2025.2.0-developer`, `2025.2-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/developer/Dockerfile) -- [`2025.1.1-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/enterprise/Dockerfile) +- [`2025.2.0-enterprise`, `2025.2-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/enterprise/Dockerfile) -- [`2025.1.1-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/datacenter/app/Dockerfile) +- [`2025.2.0-datacenter-app`, `2025.2-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/datacenter/app/Dockerfile) -- [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/2025.1/datacenter/search/Dockerfile) +- [`2025.2.0-datacenter-search`, `2025.2-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/datacenter/search/Dockerfile) + +- [`2025.1.1-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/developer/Dockerfile) + +- [`2025.1.1-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/enterprise/Dockerfile) + +- [`2025.1.1-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/app/Dockerfile) + +- [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/search/Dockerfile) - [`25.3.0.104237-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/65d32aee3047ae2d7bff433d278b5e1622134a37/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/500fa5278eef556c2404f51191e3d4b1b93ddbce/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/datacenter/search/Dockerfile) # Quick reference (cont.) From 3a5586c5e1a7e6dbfc46aec56f4b6a15ea1be36b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Mar 2025 10:09:40 -0700 Subject: [PATCH 2027/2686] Run update.sh --- registry/README.md | 2 +- ruby/README.md | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/registry/README.md b/registry/README.md index eaef1ab606b7..bb13947aef80 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-rc.3`](https://github.com/distribution/distribution-library-image/blob/db464de56afaf09f0d702f30f422a3e19e953a53/Dockerfile) +- [`3.0.0-rc.4`](https://github.com/distribution/distribution-library-image/blob/89160e7182642ca47e43f5a3cd2388ccf5663551/Dockerfile) - [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index de5a8e9e48a8..b155d84c3f2f 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -48,29 +48,29 @@ WARNING: - [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/alpine3.20/Dockerfile) -- [`3.2.7-bookworm`, `3.2-bookworm`, `3.2.7`, `3.2`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/bookworm/Dockerfile) +- [`3.2.8-bookworm`, `3.2-bookworm`, `3.2.8`, `3.2`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bookworm/Dockerfile) -- [`3.2.7-slim-bookworm`, `3.2-slim-bookworm`, `3.2.7-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/slim-bookworm/Dockerfile) +- [`3.2.8-slim-bookworm`, `3.2-slim-bookworm`, `3.2.8-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/slim-bookworm/Dockerfile) -- [`3.2.7-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/bullseye/Dockerfile) +- [`3.2.8-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bullseye/Dockerfile) -- [`3.2.7-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/slim-bullseye/Dockerfile) +- [`3.2.8-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/slim-bullseye/Dockerfile) -- [`3.2.7-alpine3.21`, `3.2-alpine3.21`, `3.2.7-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/alpine3.21/Dockerfile) +- [`3.2.8-alpine3.21`, `3.2-alpine3.21`, `3.2.8-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.21/Dockerfile) -- [`3.2.7-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.2/alpine3.20/Dockerfile) +- [`3.2.8-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.20/Dockerfile) -- [`3.1.6-bookworm`, `3.1-bookworm`, `3.1.6`, `3.1`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/bookworm/Dockerfile) +- [`3.1.7-bookworm`, `3.1-bookworm`, `3.1.7`, `3.1`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/bookworm/Dockerfile) -- [`3.1.6-slim-bookworm`, `3.1-slim-bookworm`, `3.1.6-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/slim-bookworm/Dockerfile) +- [`3.1.7-slim-bookworm`, `3.1-slim-bookworm`, `3.1.7-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/slim-bookworm/Dockerfile) -- [`3.1.6-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/bullseye/Dockerfile) +- [`3.1.7-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/bullseye/Dockerfile) -- [`3.1.6-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/slim-bullseye/Dockerfile) +- [`3.1.7-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/slim-bullseye/Dockerfile) -- [`3.1.6-alpine3.21`, `3.1-alpine3.21`, `3.1.6-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/alpine3.21/Dockerfile) +- [`3.1.7-alpine3.21`, `3.1-alpine3.21`, `3.1.7-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/alpine3.21/Dockerfile) -- [`3.1.6-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.1/alpine3.20/Dockerfile) +- [`3.1.7-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/alpine3.20/Dockerfile) # Quick reference (cont.) From af2c9a19a5f032bfeea653ae85d841e26e5bc61c Mon Sep 17 00:00:00 2001 From: Albert Lombarte Date: Wed, 17 Nov 2021 15:53:49 +0100 Subject: [PATCH 2028/2686] Add krakend official image Signed-off-by: Albert Lombarte Signed-off-by: Daniel Ortiz --- krakend/README-short.txt | 1 + krakend/content.md | 154 +++++++++++++++++++++++++++++++++++++++ krakend/get-help.md | 1 + krakend/github-repo | 1 + krakend/license.md | 1 + krakend/logo-120.png | Bin 0 -> 32495 bytes krakend/logo.png | Bin 0 -> 8771 bytes krakend/maintainer.md | 1 + krakend/metadata.json | 7 ++ 9 files changed, 166 insertions(+) create mode 100644 krakend/README-short.txt create mode 100644 krakend/content.md create mode 100644 krakend/get-help.md create mode 100644 krakend/github-repo create mode 100644 krakend/license.md create mode 100644 krakend/logo-120.png create mode 100644 krakend/logo.png create mode 100644 krakend/maintainer.md create mode 100644 krakend/metadata.json diff --git a/krakend/README-short.txt b/krakend/README-short.txt new file mode 100644 index 000000000000..f0d3871d3d32 --- /dev/null +++ b/krakend/README-short.txt @@ -0,0 +1 @@ +KrakenD is a stateless, high-performance, enterprise-ready, open source API gateway written in Go. \ No newline at end of file diff --git a/krakend/content.md b/krakend/content.md new file mode 100644 index 000000000000..0dedadd7c26d --- /dev/null +++ b/krakend/content.md @@ -0,0 +1,154 @@ +%%LOGO%% + +# What is KrakenD? + +[KrakenD](https://www.krakend.io/) is a stateless, high-performance, enterprise-ready, open-source API gateway written in Go. Its engine (formerly known as *KrakenD Framework*) is now a **Linux Foundation Project** codenamed [Lura Project](https://luraproject.org/). Lura is the only enterprise-grade API Gateway hosted in a neutral, open forum. + +KrakenD is lightweight and straightforward, as it only requires writing the configuration file. No Go knowledge is required. It offers connectivity to internal and external services, data transformation and filtering, and aggregation of multiple data sources (APIs, gRPC, queues and pub/sub, lambda, etc.) simultaneously or in cascade. It protects access to your API, throughputs its usage, and integrates with many third-parties. + +All features are designed to offer extraordinary performance and infinite scalability. + +## How to use this image + +KrakenD only needs a single configuration file to create an API Gateway, although you can have a complex setup reflecting your organization structure. The configuration file(s) can live anywhere in the container, but the default location (the workdir) is `/etc/krakend`. + +To use the image, `COPY` your `krakend.json` file inside the container or mount it using a volume. The configuration is checked only once during the startup and never used again. Don't have a config file yet? Generate it with the [KrakenD Designer UI](https://designer.krakend.io). + +⚠️ **NOTICE**: KrakenD does not use live reload when your configuration changes. Restart the container. + +### Quick start + +You can start an empty gateway with a health check with the following commands: + +```bash +docker run -d -p 8080:8080 -v "$PWD:/etc/krakend/" %%IMAGE%% + +curl http://localhost:8080/__health +{"agents":{},"now":"2024-05-23 14:35:55.552591448 +0000 UTC m=+26.856583003","status":"ok"} +``` + +### More Examples + +The following are several examples of running KrakenD. By default, the command `run` is executed, but you can pass other commands and flags at the end of the run command. + +The configuration files are taken from the current directory (`$PWD`). Therefore, all examples expect to find at least the file `krakend.json`. + +#### Run with the debug enabled (flag `-d`): + +This flag is **SAFE to use in production**. It's meant to enable KrakenD as a fake backend itself by enabling a [`/__debug` endpoint](https://www.krakend.io/docs/endpoints/debug-endpoint/) + +```bash +docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json +``` + +#### Checking the syntax of your configuration file + +See the [check command](https://www.krakend.io/docs/commands/check/) + +```bash +docker run -it -v $PWD:/etc/krakend/ %%IMAGE%% check --config krakend.json +``` + +#### Show the help: + +```bash +docker run --rm -it %%IMAGE%% help +``` + +### Building your custom KrakenD image + +Most production deployments will not want to rely on mounting a volume for the container but to use their image based on `%%IMAGE%%`: + +Your `Dockerfile` could look like this: + +```Dockerfile +FROM %%IMAGE%%: +# NOTE: Avoid using :latest image on production. Stick to a major version instead. + +COPY krakend.json ./ + +# Check and test that the file is valid +RUN krakend check -t --lint-no-network -c krakend.json +``` + +If you want to manage your KrakenD configuration using multiple files and folders, reusing templates, and distributing the configuration amongst your teams, you can use the [flexible configuration (FC)](https://www.krakend.io/docs/configuration/flexible-config/). The following `Dockerfile` combines FC, the `krakend check` command, and a 2-step build. + +```Dockerfile +FROM %%IMAGE%%: as builder + +COPY krakend.tmpl . +COPY config . + +# Save temporary output file to /tmp to avoid permission errors +RUN FC_ENABLE=1 \ + FC_OUT=/tmp/krakend.json \ + FC_PARTIALS="/etc/krakend/partials" \ + FC_SETTINGS="/etc/krakend/settings" \ + FC_TEMPLATES="/etc/krakend/templates" \ + krakend check -d -t -c krakend.tmpl + +# Copy the output file only and discard any other files +FROM %%IMAGE%%: +COPY --from=builder /tmp/krakend.json . +``` + +Then build with `docker build -t my_krakend .` + +The configuration above assumes you have a folder structure like the following: + + . + ├── config + │ ├── partials + │ ├── settings + │ │ └── env.json + │ └── templates + │ └── some.tmpl + ├── Dockerfile + └── krakend.tmpl + +### Docker Compose example + +Finally, a simple `docker-compose` file to start KrakenD with your API would be: + +```yaml +version: "3" +services: + krakend: + image: %%IMAGE%%: + ports: + - "8080:8080" + volumes: + - ./:/etc/krakend +``` + +And another one that uses the flexible configuration and a custom template filename (`my_krakend.tmpl`) on each start: + +```yaml +version: "3" +services: + krakend: + image: %%IMAGE%%: + ports: + - "8080:8080" + volumes: + - ./:/etc/krakend + environment: + - FC_ENABLE=1 + - FC_OUT=/tmp/krakend.json + - FC_PARTIALS="/etc/krakend/config/partials" + - FC_SETTINGS="/etc/krakend/config/settings/prod" + - FC_TEMPLATES="/etc/krakend/config/templates" + command: + command: ["krakend", "run", "-c", "krakend.tmpl", "-d"] +``` + +### Container permissions and commands + +All `krakend` commands are executed as `krakend` user (uid=1000), and the rest of the commands (e.g., `sh`) are executed as root. + +You can directly use sub-commands of `krakend` like `run`, `help`, `version`, `check`, `check-plugin`, or `test-plugin` as the entrypoint will add the `krakend` command automatically. For example, the following lines are equivalent: + +```bash +docker run --rm -it %%IMAGE%% help +docker run --rm -it %%IMAGE%% krakend help +``` diff --git a/krakend/get-help.md b/krakend/get-help.md new file mode 100644 index 000000000000..56c5731ed60e --- /dev/null +++ b/krakend/get-help.md @@ -0,0 +1 @@ +[documentation](https://www.krakend.io/docs/overview/introduction/), [community support](https://groups.google.com/a/krakend.io/g/community), [open an issue](https://github.com/krakend/krakend-ce/issues), [other support channels](https://www.krakend.io/support/) diff --git a/krakend/github-repo b/krakend/github-repo new file mode 100644 index 000000000000..e48225a5287f --- /dev/null +++ b/krakend/github-repo @@ -0,0 +1 @@ +https://github.com/krakend/krakend-ce diff --git a/krakend/license.md b/krakend/license.md new file mode 100644 index 000000000000..62249b167719 --- /dev/null +++ b/krakend/license.md @@ -0,0 +1 @@ +View [license information](https://github.com/krakend/krakend-ce/blob/master/LICENSE) for the software contained in this image. diff --git a/krakend/logo-120.png b/krakend/logo-120.png new file mode 100644 index 0000000000000000000000000000000000000000..1f19d4ffede0b77f82d7c73e9f4d51d287fe260b GIT binary patch literal 32495 zcmV(qK<~eaP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+O54?lI1qGZTZhu+$Intp3T9FX4QjgevN@0k}}W9 zd+L^1rBYJJBiuI$EX+0Mdg0pt_y6@>|LcGKuTa~4Uon-MTh2HCi!HXN^NV`_{@2bw z!yV5*&;QC_zZd@f>(}4E@$jXWf4_geq5t{wov){VzTxkmGyeVSSN-!lPyO?Q{`|&Y zKk)UFAAYg^^&$EC^ZR;;e|}KgzhC55%fCMAcz*w$fBxWkls|vBb^hevKg9pO{`Cv7 zuu3cOLGSbIH@x@xXZ=0F>)+w+{Qdi9;m-xW*7==u@vry&>s?upe|x>Z{(ay7xnc>fP_j=B#_(gTH2I z;bB+4E5xuu4`0~l-!n`eF+TfYPoC$QY?NQC>`{B>>pn&Q3g1)S_O7?GZ}Zs~dluj4 z?`H|;bKCj687iN=0)O-g{4lrrfBV<n=Vnf>)&g|b3NKMkKxYwPyQ4e z623qCmd*nI_1B;6zyHO4FjaOion@}PV86%jM~oEyv90&)^UI%0{QGw*!d2FvAHWjv z*@=hY2*hyb@TQQ%U7n|ez&chosPp8{8=t`rgp{7eLq73+^K+G_K7KaeQ^NVPPkQp> zm%%1BBE9)7>`i++n-ycieoCy^P)~1)DW#lBs#j{M=Qqcka?T|Sa=pAImQ->nrIuED zeQT_#=2~j4t@ie`7Ys}-x6*2Bt@r2Zd{F0Sb^d(kE8`jOh$D?W%BZ7_J~5veXPSAI zS!bJlJ?mY-#LBCzy4vbHTpOg=ai^Vk*>$(wKWy!Lzxbsuf90!R`}*Iz_GefB+h6}5 zb}jtbwdd@Vf3Ez!Ykc)8<*y$Rgp=f+v13mR?09hpFzClUyK9K?ap&B#yFCKg!$T(b z=32oWV+-RBPx`{&d-u=I{U7bymFoY|zCHhMJ9oKt|9|Y<#n%1zeftl)w)AuJ?AY%V zx~BKb>EqAzr(XPh-~8i$^Y2m17b-g!M&>+3ek7>Z!kVnem%9km+t=n5$K7*iEJkZ1 z)eu_ZY}LJ=F(>Q%h0dysl*d>5*W-%04E8Rs8J~5h8owukp4Z!+$cL?2e6`TNct2yM z`Q#Mb#ISk0RGLrH!YpZo5xYw~#=A=4qiRi9_P5@#7hpW*$8$cbjt(Zy-tN3xD9@Ys zUZV!qIG3JE7`)0%ga5U0w+snb@3*g+%HygRKKgEN2C8}G*z>(Lm;I()-e>aMi5KIA)iuAT_nbq*G@ghDhdd9eal|LQCnKZ@TQ zoQkiOw||=@s2{7ACT}w`M|CIOf3`3hzJhhk>z(C2M$I4Pt**%d;p6!wcKyZWug2FN zz62__INqD{0YpuX(9T%EvvPYzuj8$p?J@R;eZ;FATV;9IZoEYKe2M)$fJNsIq|V`3 z*rB`1&t03dKUssxF1}dKoy*}TusNr5Vwl%>=f*73S1|g$zA9GnsUVzj1#tQ;GxXwE6 zkHeMb{k8G*R#}KT%YfB)4l!^ro;shD7PyH8ad^L)*H;6W9WgzQ@5F%Tmb7XBV-Y*h5BM`#B#yBs++{0!e+7i8 zOPj<^72VHx{Ot-09r(3f*&R@>UW1dvuHq7hjt*!0vcfnX7*)i3uaO$&eDeZ*gW5nF zZm!@~K3qG92_gf;`HDalM?UOFZ!o^M0$U%Pn1eD4R+c$btY2)UXT-W zWAzIj^VN>-usB8d_|N^F90N!?j~Lqo;5pyyIVKAZtde7hcu~+gb7CGmT-&knZ8%6w z6}ve~a_>BP{%%cmBrNqF5n7)Pw@WM0b<~r-wti$ClAaH53m|1j8lL#;i%++ z`(Hgny*R}$?wehEH&mz9FNyMe=%;7mO#GL8V}$-#tD-W;=;BZLOS!h>T9NC(ab-VDH5<7KPx&lis!Fc1DQ`oP~Ow{7?1vNJ>y4_j}(K}QSsgbRJU zJ~*iMeBt;#KI?eBRq-L;#xL^V{P(Oo7dRwZKejXg?j@B_;i6L12^ZQM;PtRw&3 zhQ47vpzY70amq0Ir`&i-TsCL-(7AM62|w~aE|as#`GWIdrQZ#^0`dJi{F|?~Qpb-3 z_JWh)z+KoCN96h1`3>kgFjWVeED!K8p}ZXSmyLMg%N1^VXRK(59-J~(3*Wt=H5>%? z14ao-0DQ+yPma^Vs7Dqjp%Ji1HVU!>k!g#a>~-F8O6Ud-^-ZkN|NP)MewfTNIZcvz z;HD>B5S-@4k>J*`UHH*p`+;?+C)^);k5~9`SukDJ*4@hrg~oCF+WI*59J+?74xSyC zIXU215frP&i?_Y8UVa)ZX5&A~iHO~yD;y_nCj0!KJsNhiGAMo4| z362#C4HK^z4=)SfguZsbr|u`m&4w-{6xI*6b@|VSksrvf|(c7#9ZIzQd34#=PQP5J-qTj?a62o)ugno9iLs69LrPdGZ^a8B1JbVewQT zQ{!zDteYQ&Co-Vt(MJcYer?R;9pevK$YAR@q%+^akjmi-oJoY&%)nAC;b93eiVfWf zuJ?nDr4JIZkx{_T9?;Cs=-C2dIz})T&o?HXf&&M8#UHhd8_LiclmzgA;jlHp;{9Hz z3-Q`bc+tS+=Cfi4)eF)Gk8yX;YJGo>n^j%$c<^q-@t=Q>tL~2-sL(FF39po-6u9*u z%fo4pCrqeM0XY#)`Nqwp=R7hr=7ASulQ{T8*fVk$H{DeOEl+%-7^l9%%YN(m@UPf! zQ}}RB;pd<`R1lYvQRTxB)hmpEjRS9oPJ!R!oOr*FBgE-sr%_P?AE*uLKxf{F|KhK- zC4!UXhs$$vF6{Q$g+yDS{>bOl=y)E;*v66RlV_EI@FN?NC88qA14ka<9wPFAMO_h$ z9)S}HrAG37plqGk4BNOlVn}l&1D=O7iH-0}OqZi6NI@ARYi8*5eJ+gzyGv*DaY&dy z=eEIH5`;?Sim4|A2Ol5z&1wa3B>=ZsGeu0|U+)+de#lUqFjDMZ=-ysIeqdr&-zMcd z_VMhLlYy!U{TZ5skooenbdFDlJzb-ZG{Ca9TfV=W4cMjgwLO27u(*G{@=G`iYX-Qp z4;&bdFh}20!FKe1b!9e0^+rkWqMvzi@i`z(`123w$E#x6g*Ahe0PY~?LK1va+6w}N zv_j43H8^_2%=k875y0ljwK9&bN*~3QMydJZna0g>4F4-_;< zxWa~#e9y;1;TqVLifUg~-&S7ZFC6=X2Z>-!WxqsG(AjVRZ**m3C-kJtA@$dg{SC*? zo<0}@%6Aq+hUhBa|IM5%h$8#Y5fm&-$#<`{Uhjk19vLlH8^I97fF;8%fhLS-X<+f4 zKo2Ve$7PGzM(F!b2cv4RsPEc{E>@&s!$Sp^UMvssgy4iS{JRY1fS`o#0Zm1BAcG3a zkl3xeEeQMOr{22PyUxLO-3bd3#}mFu{r(zkfo?&!J261}d#!2yK7%XszJq~3loYH6oNOxTQeIXt>N?0>!0mSb8fNUJg z0ST#*mk2&DUiM2yP)lciaU4Vs53y}dsUkQX0dy-1*xb2Rm!Uj2d zhYO`7IpNF4OMZOf;V!dXRX1Ou^{^6Hd*__8>=k%U>}O8t{({cnHX;ifGU!|RC+qi| zu+kdK^KkJDP|puCgB8yq%jU^H%t^^J= zXf#$(+o4>T96u4rMF&i@a0lBaUJeHbsezL3wx^*Cq&J|0qpG;>Yx8{IWgIaZ-`kv$ z$ch;_K*R9dpfk45Lyqt@P7+^3e@Pn~ATslUv#*)27uo>Fio<9rt_us;Fn^RPrexR+ zZdNu<1B@z_9|DfyJ~3gQ@*5R43=N(5{u^{eE(#}ze|#uxv_JWNaBk0LOKVt|i@pnT zR@g7o1Q?xR&{wt98>;z=n%`)6e%K-!o6k!TXFg{v1rw-1#2xGL-Fe(oCf>l7HabKR zxNV43UH~@2Nyf%gc;%h??oU07MQoYM!&&3sAV1E8_Z^=Bu^gYwA$ZUz{G)zzUDfRj zp6v*n)i^;%kTUag8X6&dZo~OMaPa(rUshG{O{!0z7srM=VkxnX;9=`HwMStI52?^d z9IN3uBaTMhS@tdE;#6mVpur_q#>7(^;88Z5%I0J_HJ%%)z7#YaSJ`iV_+}|NuGsuG zUYNj+$8gZA`g%E%&>JB3`WnKl8M@HsSWiWxG%8u@s!I)Q1b~l zek*>1t_;f$H)|L>0+VCMgcMBX9gp}84+$2WzJh%x;KzA zD>m4a))!!9e7VoR5~6b6QF>DzW~d53v%tVO3ZL8y;A_y&vi|1I7ir<$KLmLU~Zd!8qyo;AySPd>UKHM~r&$8#innQpiahh`E+Iz@Iwk zJWTjFvV1(WJDcogKae(`ng(6aVF*d?x~>O1L#zk2T>@v(NQ*(bi8aMN2`M$5qcUtO8h(% zt?=OVaQF(}39!AYFLXd*8DLuyG29!Q9BY2?sbCZ*wAoOv<>Jcww#37yt_Bgto$i zvA7&jz13vUSPcqtvxML#|HuFC!k)t>@imbHfO`$^3fHaIL%%g>C(^Uda7W$&K4)B< z#aKAHitY0>$nIuP4YBY}#JqZIXZ{7}x>#GjS)$FtKJUaG@?We!e8XeSekoH}sQ4)|KOE^O#5(z^lIwcyI`=L<%%Z;>GMYFw9( zLB{YRSAp#yPYwaC@3XZ(>D~@hzg>76Fr8+Ls|;}htMMr zARS%T_`)4mfjt-z>`_Aju)bf&Ke4Cp1y1N7IZ!y3J1Xvm5qY3yu^$P;*z6Jl3hJ0S zGm;5B-Hy1S#}D;Dj(vfX5yg)q!dq#SE%58X(^t;42M#Z%?+lng_$NR#|4V@A`cAZ5 z`NmNJVaiEaEhAZ;_75Xt1z=eKa^a*wSYamSIYW=em+D>{IJ=JA7GGw4kf^*3{&2$h zq2-oBu&#v{$w?{jAa>S`(0K43k)svh{T=+C`{EHm6nG8C-{)t^__|^(SJXRa^F&5L zsAOtoq3Q;U3I;rSU(OSXBEm*c)+f<{@ICPt_{Dw&pMmW`an=10<;A0bHd(^nZuCt? z$w)%kEIf~XZCCRd740M+Vqf-2P_d}rHmRK|5;*gtPL@Zq@f!F-%xtnA~w40>_ zLIcn^#|?*Xa>lrmz?Ka_qcFn}FqPFbrj!uOXxg4W)qOIDy83%ZJ@SeO+_@w<9CAee z<_tdo2)Y<)+4H&qcRmf)X5c>D7tGd#GIaP}yd%I=*gBvJA^@jhnLh@80s!B|Yq7g4zYj7I zM~e}$h$%Frc(0u0$J8NM21eX)4d^ipE~vm^CD1A$9m8%|w*QS&20C;V$Y%6#0ctWB zXciO~5rGVN{x;tI?qqTbS}6tKAvmLWyz4dM6Y^m5`DZmXDh~*(B z&8nu8L_0|ZtnOw36UTpBHTLWs^9S7nUGaAxAe34(!wL$FWw->0)Yf2X*hQB?;7aPS`aF8r%(u*f3*V8Fci@26EDj zUDCTa{QIQePqce}xW%G#252!um`@gbi~>QDo@|Z@?7>p@C6&9STsR;OF;8UZXFk(9 z1^y%y=9RXOkN$;c8chjV1O{?9Qf8^)Z?tbY!{A%?$)UmrBz7 zHXDeZhRd8(v{?8eBrahoazeHweyCFM(RD2xB{~9lTPHpqq1bl={*hf~YX6BS!{REM zi558z(b;yo8U)qv2>PtgX=kn?^31kT%d z+BRT`cUoO;hDZbV@B*;(^5AjU)G1@FS5UXWf_Q8++Qa7nkElt6Mw02f;4c1BMb-2UPiY9M+gwLgg`4easm#0LjgZ5mAA99&wRvzJt!EAu%3hv zgi~R0apsD_`eqmcCN|PRL0$}*$-8#Dd#Qwy6Q0TaYW09 z`!{5b<}CZ9c8nmTKfyl(FoA9Qz=ZV_NODMvGp-sO1Z4AxGqTbWo5z?E zh{2MY9ceYF9@ydvL9K8yK6KzXAT^Mdt4%p;0%NoJTaH_?-T*L8m~@1>U^dVUju$Tt z0_%EjS7GMF>A`u-jd(LK4(k#Gkx;#Ieo++3;QBNHhkte5VFyMcBV_bp!M_hemw~%& zg%OtWzL&|CW{wqAKNNXzSG^htHe2OfvRnfs!IQJL1KLn5xx6LCEE|fSmjxg$ojeL5 zG?dVnlS#&Qs*(o;{{>Z%4MSMzYFi6_<^%14aMXTyhB4Z-J~$*i4vY)HgjGj)(DFd@ zSo#@`sy6p-0q4o~!N*;^Su7*!ZYangNME9~@$QOv{pFw+Bm&KjxfElmZ+vRfLr$1I{Dbz%${^!;+vUu=w}9_MtPg znQlhJWXxhgHxsZ?V33>^4l0t(r$fQ_{3TH#;8t9De&%dYV2(%%LM`-QeK0iO943Gc z5;3rb&&NtbBPmoOpEv9ZUWii9jxcr{I`L4mQ~;v*4n?hx}Tk!!xiI z5Qy`Yn{#7K(~KML`HfF6&xMwUE0~oZ8}U_n8_x$;WsYh;7V-4z;&IYmOMqj90-;5W z2peWwCuDL##?fZ@0yYJEaf$e5gv@ueezvFrLKF7EPfN&t;!1aJDMm87U2u@0yxA!5 zz)x|GBzbW8fU)71@D$cG-G|H7QHMVqi4Hd2=9&PR50{%?p6CQ+8+yt*B(R(#%5Mo^ z;2$(}c79Af)t!JYI0h!5|B!DFIFT%4Y1Um`$Sr&);tss}ni(8`Zvq@xakYF1q~awe z_MAXAB{`4`#`C|7*GNW5v7ifs!dy59I5LdB%Lrbm6iCpp61Xl#h>t8N3*%!rD)>Q# z6x?{P`kn$JeDhU-vw5qlkIX}2^34JnP_$CmD6(Za$L-@R6!M0j?rhADgWnKuFZ%LtqaqPF=IQAQ?iQ1_tyGgxC- z81i0&&PL}O=6p({)^Q}?I`roHc(46OGNh9m`bmb+OnplMfC3Sq;Zr->ENMNaQ*C8!%$6(T{JY60b0^FhE=yBPW-Av1abwst{%-i$exmn;~^)f%U zS(^U6W=v1v2iAjkI=>zVTE1~blsIw+)iTw9U@ll=u^ncMd-_0U4i#J$RWtxm!&TY% zzPJmb!mLrxIb1nFux1)oKfLS%f2Q0)msr`t8&xbiIVF3$?u>u7&J$7t9))F)E_G@4y-bgzA2a+L%gpT8$_AQv{k-^YjtWk| zV*7#}#S??!MZfRVP4Rtjqi8v>%z2->YKRre5^Kiku7=IBUN;A}S$v060U>cCAPuG+ zSu5)jSR5?rSW|ed673oSre&-hGpZ=P6RC*o4}^MZHRHNpj?A<&&#I|rYz@cM^vFWk zeBpHk)mTh`@q^9fU~row|49PE07ge==#-r-7Py695y& z{1_u*)9($3s7Uf+==nnEsFc6P17#boHsHs3HKXydZo#k;i>S9*2ZJbf|(d7~qSL2a~i?f7>nlfn4=O;WY_CCkOZx?i2}TP`~qTIAYN16tV6fL~bnkZE@nZBI+&|(k+@+fFl(oC(h~s1&Za= zPx1BW4np4VXyG{ipP!O}iW3vhz=rvjb>V#f6r7pI^+^3&!5O>5Gh6BZ!X%8|e2^gi zAiHceglq5l=829GgGl)YT3>g)`6Yblu`=JdlD@H+tFqwU6a)T~WrknRDf@{jvTMy_ zzAd#F5J1Db-zg+YHM;*D4sX=wtP2za4_b^};rmlEFn++NUDZNW#PMe^n(x&AyjaM_ zZoh~9;YC+B0i1!2XYrt?6h(cSy8*lh_RSMD6r6#{ec*yagGWNNnCk~`EBw#OD=Xzi z6}Tqn;{jqh%=tkMf?SzXmad1*hFeAR%AcJ87$1%heR;Yd%ss6HpPQ(fgad#dJ&;n3 zv)RCh=MjTuS%X9F#308aUg{L)H z9EBixgMBBgNi8!%Vl9M!%TJ=?J_=GXNd7FegV9e3ge8iK?h6RH%_d=(LPGG9L`7 z5ZKHoL+Nirk_KkXUwSu;Q>-`Fjyo?OR)xR!7776xMi?b?8TgrqK`5( zM(Ja&!Sei8Ol{7Ro)e&n2DD6)3+15pf+^msS&WF4!8WkZH(I4!P8Bhv(sKTBy~`Lz zz~{FyaHT2z^I-G(C(C@os~0BQtNeMWPp9Wh4K+j#-B2o&Kl1)+_?k$~)|%3-@7%>@ci0##<(+`cuDRReTgchcQ=_8oCevf-$mxi=W5_^Py<`&#ICw zW}+E6)E8vcYLfz~MIrManT4XJ~0O^I*tRxF9ZZ;`%0+>ZVwVr;n_$f&WG6n*$gfvPHW3e$^~OcovH?%9Fs%aw17AlUuRkDXf}U8U6u(@?(hTu^UE=!4HYKi57da{w5KC z<1)++oB(e<{4EEJHv&26>f11EUGYyJgMp$q+NSeC*cZChhKQ^W*kWF7(`+S+jz?e{ zt+jve+LRa*Bu?F&?urxMw0R32IC0ikivWK(MNHcov+vZrBv38i{%GE$S~MWC@`rhF z2*eH5fXx9q*1L^#Rnzle2iS80u>43xuE|l{cYPO|Q!tx$Bv&)!%AsbxAP3=@7`@e= zcfatb&0t2KW`97~cvup0qUc1}D%yjkxo&FP3<*fe-sqn?!J8 zF&M7da5J{qaxqWI*gXAOuQ4~{{on8*$FH*npeysaAgC6Xh2u!ThUavy;KF6VcI?TM z1iYp?#8Oyg>*MXfz#}Lu&BN`>l4zD_(4Q=g)#m>*IhFmcj%&J~U>$$nTXFmbq+~xOw5! z01467I>RL79y_y94YFsSrg=lY1kd28Vle9hjb{JT@fS~v$Ehf&w)fThOV9U>e3(?ICVbg|&j2v!8YvdR-T0ptc&*8>0g zmq;op&C68eYpj$%GNDHP8-Z4F1p{NKggYGc^g6|z}{=X9ss z$Sr+`X@v4vG0R50ELXGx$Jes-^iwZotfM8=q=vSJfe>TvhZyiY#p+6>4j@v##nYMbh7(~FoL=0K zT}>8T$CKqdy(xGA<9-5k;%nm7ZKE2mVcUU-!$Hn)Hi^e=5$c6{t@sX$7rQx5cs?X) z_|b4oQDM2|P?c_sc_`x^(fYj+Rjaq-7Cv5$<$(swBUYd#>PsW15hr8v{>&|S9)r2| zHGKfo2`rhj_1Gnja)a}n&I3Ck%&BcjJb&`UVV}>ckO0!Z{?|0FSuEpj#f~zdyqscW zywa#OT>51U-dJ$}yl&`Q&ChPx6jtIO_k?|-@E0m+rn{{Z%5x-$wfdK@C|yw{6TTb1Bw&Tp)FE)QUAc?}gdmAYkb%t)VIw-g+U9 z$$JW3dB|a;grj-m5@)~bDT7veAahP(I7blQpRMRvhG`&g@nKy>M&ziE4uNPW#}01@ z2*i1t0iUOG@AP@`cmRyG8JDq5X%j~uZnwJyFgpB)Q*f$ITH=%&k2uYO^-YVPSgPiS zgThxLr0~m^Z3y;E=YFdG06YupF-zgpt`~jIH&3j_?l2o=0is9y$T+vf!<(y*4hu`-4s1B{JLz)d3GQNGQr*K;yt$cCJQ5LKqa63}44X^9xo2}`nwNqrVkWJC%nR(+Gx@8}~!2x)(@~gPHws|yJ z2!;fS;J3c>``Jv|Q8=c?LfqB@LRbJqSc4JevQFWzJr9iy#W zRvbApK$_C|NvWLx)n`0wY=hD0o^4)vASsZdrzhMx?}_-v#^9Ko?CnGXn5JYmc5~zT zHE3kg%upgahX2CjVO6oLXcpq+&Tb>%fcl$H(hBo#=e3kYch?)TmU!Wi;kV6$xAQdI zQMcJ(4()44jh@f6(yu*#y??dmm(!kao7%thPD_lILo|e3D`f|$bq%`*jMuTP@Z24p z_F>202V_4sr$+0@@w*&f%lgkF08fT=`9vhN4IbfYH$NW|whx)YP%91$sekehTQ!8| z37nwD%kV78qWjl?6CSuV`|yf}aUFP3q_T-Og7J`b%-;O!uNEA?TaGI-z%%z-+X3ySf`0accXc>oS2Ii4fC{F4Ns1X?HmH&E`Asbcz#;}YXSX* zPbt=xT5?lyUTpG<4z>3YO7+6iOi0dT4BG(_8N=cPybm0oKU;q};{0BxZ)vH>&*X?- zk*!e+EH-bz#-51rLK;T1JPJI|Hz<6YUFAR{^S6aA*ZnAD@olNr_oOs7WTg$M9rF9{ z3P>w_P1x~n@pbqDr;@c$G*qX9T!+M1#}!W>yv2{kg!+GLU5A~S?l7(&fdE@Ilc}1} z5sD#PlGoI3fNO&9cR2n3?+GSb+8(XMHt>rw>B~Hlg`d?D7WujyVeo=GUFI}CWawe;D)Yu!yukCi@lvWvR4Ced*>=vFY#uvh3M%6HympwUWdP2%O@tYfSPsJo!;nD!MmL2x;brjA zH~eZ!u<-%t-U}429d!weaAHyW(BAL0(PH+RVhINPKlus=0d%ta3k$(cc}L#I3Q$Y` z?ri64!wxT~4ro6(StsUT6-;da&SR6i84kRKtg2dyD(+jod3yM;s?(N^*YsIMy^d>osP3)!p-^~B=c*EOTIPCP2<~hK48T(Ytji`e>={-vY z8Y0+yP&;D^g0-$C`TcfE>l+kW*a7JB@#i=UpAn%Os3_OEy9>aU&)dc<9QUt+?_?lv zBYGe1AbU0xh75;60?hGkrTre(B0kiQ*$fK1q@TC^ayjfb0REsx_kU~!Hj z;E_$0y(aK%K+hDQH_6Cy`F655c_TTSR!XfgEOUM;rOQZeTVJw#amQy=EpZ0W$r_-Mf-D{C= z`Ya#7iCCmzG>`fCdviw&$p@IZXvzkn~0Lv)0m+!_eX^fC7QK8LqG z@?W!Hc?FA6U{RO+>=OisLyfGdhc-*Am5hTC}*a*rF{+A-E-!0sK`qP^qbQ8*_?JHz*~46 z9!b}Se;7LKVA+rZ;yQ<7oVJJSbw#0q6Vg}i-$*A*TA{@j;(WvUJK)}$m}*gibsyWp zJF9+exNsnmw5E+8;eZ<94sPQDw;ZM&Yq*E!1>=kkg{e-O(4D4wgikhsRjp=!;n`6% z9T_(bA@(@^l84#m9Q*_B-~|=4?c0E`HT}?0-0nhJnr`d?Rkbf?opI{hA)8Lm5zFTr zQC=2V%2Id^gG!&B@QZ`~;FoRBLXUNpgmX0AwPGQ|pNvql^sQKoziYs~!9sA}8Y{~U zaWX;(wX>`sHM&Jp`Ld!R!Tj2ItSZ&3{!*+)n%ke5Is7iWxlA%>zsdH4lysWQ z0#q}_mmwAdyito5SFH+tvZEw;g4+=Z~R@*W&<`};A+XJ6a4ke#{!Hrc(ZRCt;I)t zzu-j2FmRc;FyNrtwKzT8n7OB7?)Ne{5rrhI6Q|B%Ihe}Om{tGHHg9{oal7@*ym{HS z9u%a7(aXGi-#+5Y3SHE@InM*O;8(-|bE>#O}Joq4DEUj`VM@dLG_ z;%XgR740)*pQnZUmijqq2PS%^OX+vb{M@GriQhcwQeMVkQ&#Z+lI95u*omKp*5PV+ zP&*m3v2FwPV*lqn1XP;sG2LjJW#8GXB}e3iFBuGgfL`~C^=5+ciM-5 z-OW#49Wu%qat;#O1&*Y1mbQ0m(O7-FIEO3$=E1xh@>f~tJfqWf>>b5P6p72_2sB;lL(;@1Wv&MOt92bqu)Ra}0k4>zVLjos$4?Odu(ZkD9 zt0$c92dBu`ycvQKBBdxeY$d^|OynTL>haJlC?VwgupBmxa0@UwF=N z*{&VP4%fSWS)gid;wh9VkJ$>z18xBtj_WH1s$ErH?SxqDjCo->DCQ00%{HAI=Jc0w z%`oIo)xu4@TZozO7{4G5|3H*sm)8l>I2R`GUy#PZIPgm)l%<}1nNIjsN2fo{aJ+T- zYy8;AARvCl+LWV$gzUh@9f=%_r-o(AX}4|z zn$sXFj^d2iQg6ea3%L9G^^9#NSNtiJ_&D3vN&t$}lEqs=ZcN1qQ2n1;323ABf!XN& zDXFzz2yxt;X7JeKm8{XWZuF!oaxtCm)Gi?ZsEBPieK;4(ys~3!ZrelI$5QWgDR(9R zSYNRA%z;@}`(dF=v*W*w2RLNo)Ez=j;fkKn(_=b8;Imd22I_psd8!bW!DHOTs{5A^ z->iq#67@F*Ywvlg@lCB)8{^9vpNcx#m!H8RzLrZ2{xGJ^o|$cZ!EH|Y2o7+AGj0={ z&e*)I@|513g3VRsMG3~{q&(G?h6?j_Uci|)#%@(hbshVc?CcG{DjG*=B-kjveniVO zDw1UIgSthYw>fXyg1coXo(!lcFky$jgUBKd{Y*yK62&tcSdBW)uo$Ol!bV=_J(rX6 ztInT;&sqzQ!^#%9IDHN;VR;y24l}mFJ+MP~37!Sj1*eJ~gEW~AYBftaM|=R=-&j@XBZWgY_3jB}C4_uaVd%!A7F}*@n`>;rYXQ05b!*u9Gf> zlbPP{qWWel=6oO#1&R(AoWJ7tHH)>ew$3aQ$9&ojkKWI31;iqhw;+uRii>r!X3t@V zSL3_Y(I+}k4u3+?7vBJ3VG|n^uQ^y0s4)sNm@|DzDx~;RVY<;!ftnz#QrcVCtW)U_}W&%ZP>k?E9@g`0z+Wu z-13>uAhm{5;Ax@9_boF(eL3O4;swWpSzHl7$Y4Av#WN$;vBWk_pTdbVJpitdtesAYecQ6*cut2eKWBt2n6%)|(^y|!^?omw z?@zC?j=bA)7oCFOm=p+@^CqnS2Rf|Nf~;;^=B;1&WHB`+&rNsm?Xa){nVs;aucI6w z@6F&ZV(M47dBbpT1M<^4m18d+s%je=@>>>EBw9}Zh)~UJaPfkYb*5g49L4hGZSDLv zP!^5FTTA_R<7LIf2qK~bV&xKn!BHcf$+AoN7+AF`G54 zGsZ|P7RPO`UA%4W$!0n@0Rdp2Zz4)@tI;T4MWWH44b_#Jo!3f1xhribGkjY z5ql?-TdfZf8V=KY6=6@bqDsGPAJZ8$QXN1XoDYfqwj2Q4Ne0DUYge&M=o$}=n6`FY zjs4-7(x31rl5blP3dD~a-20p}+8^Uo^~@g*IjB6HQoxe}a(pq5d>Xjc=~IuVfeTfj z0Qxm>=@1-Uz*?LliBs!uWXMW?XT0J&&TKQ2T<>RQu48q>5`$43{bSfIX}IvDt65-T zkhb{b$pkIDZyN@Y^4nSA`EqKqmhNasQx*4l>iui|G^BOa9~Hh$hMq4XfPXXKFajJG zxcH9pXAsqc@y0)csBY)MlrxCRF6&FRAiO{9opV#+2ieL|`^I?e3hS8hbR#+E&&S88 zEgo#F*qJjlz|90dDtNi>C}#!#n`H;E5-XleA1%vUo>P{(T^>vi#~VNbDdcnDh*W0Tlj{7$us~U2@PQTLM7ZI@hr-L{h z(Rdn&%_?D={)gNds7-o6!$W)g+8)5Fc|m8)3v$>~=zIxm@77RBX)J`dN$+(*u!UNk z8}^)$f!_I$Zbt^f=Xokesd)c@!HYND%`s{ij#b|l-8)Rl8wlXH5E#_PXW!v)er)=s z?<7GZu5ry@0xvjNR9uZ|LVEBNPISdxC`qD+r6#z~cz)Wp;__3r%23{ivj`U^=zKVI zIq<({4i(^njhZhG6c+Ru^G80c92`<1oWZuMDMcyUzWkPg1PP7OHIV-rZF)`nM zX6!jLN&=}BYr`1pGuLGy@Ul?kJ)tp>$SE;=`v$S>P|8j#u$X#$4gdufr}JtcEJjm! z5Bw~Pbzx?*#FQ=Xoc|`93MJYp?kM#- zPALJHj8THL&BR?W_RhmJXULajbGU)QKRrq55c_dzqm4wY`!@&jK^Y$Y|5yg@g%b-( zZwAsrCn$>_^ULQXt>@UZK_JWX>sPO6f!;Qa-w->?T84;%;K#81VBi$KJxT%{rP(bl4ksVu8>^NIE?sZZjIqLv0T46sBCK zz6(bi|K!n%(=M!5d*wd3!ooLLnQHa3Z7a67R<}0FP;>$o`SPJPllQV8A$AeTB4|BmZRA=J=pX^Q3E(S3R^2xH#J{ z_broacHBADW$hWevv+55f?L1LkvnC~f%;bT%l>TM8x9l-u-n$liAy>&$g1vb$JNYc zsT$|Wi3cdE!J+M-i`NjSRlrSL3O?ht$P3d&khDL!hws$~ds~I${W#{`aS0a6AQm|y ze|VQIDkrY+<6Xi0HB7;rq(Qj$^EDDr9{!l5spszPC$iRg#Rnuqm+>-q7bG;?OgaX^ zu8t;)oa_p6PPSZfV8{0NuvN=&SxXj}L7to_@MV*sOty!}3*wHjT!fns96K)qM`@osklqfsy z-%(A`3df=FLl1U)6|5&_osI&qTfw_{EYC(e8N&V~eU2dXhM;q00NcpxzNSE)3xrA~ z6(dy6tHZNT3sGMbx?SbNtGDn~-ly_Zi~WY#na;l)NYqVPIG{OQr_KPQoSe@yq0<#a z27X3=KdX|fu`OuBDOLvsu~|dRo^Pk_%bZz)>jNOp2$2{13Bxk%o^k4myY87eJ=2D; zlHNO4jOTQ4x4W4Tc^0Rljd59_X2p|L#7Y0TL$eHo?{lil)c(sDddANaQWOgiue6VryQSA+U( zTO*2-e*-8vz2L&`8XTH6_-D?5Bk&x6=qRM&ol5L_KzlgP%(KeTv&&uGijI^!)lY4`gZ9&U~S-##G0@%g-h=Qlmv66D|XaD!X3I2AWw z2k0I%Y^N_T@UYH@oC(<2^NB!w zn7o(y?C3Y)R#`OU8n0^5_Y`+LC+X!h%yIG#k5&Q$7z>2|Jk+;^vNJ>1;GULUn5W>W z%5v7{#Y?avukC>1Vlaf~tTz3#nGqz2ZCs%F{jG{codyOQra(V-VNC}$wfBnduaSe~ z4IED4Iy1YB7Fji)#e@DjY%TTqo?-gg)`}P60!#Ws*Y9$*KZBLMiKU(S4q0dJgiAd~ z`YbZ#=m65Su-+*H=P7j~5Utmxb3(oG=7Y$*0K+%G*xf z$yy0p_*hZAPqA4yBw20DCSV{_6P^~%#OKrLn@+cXa6HUu$4_R9oUUvk`Km_Yc*=9a z+nJ<;6hYz}TGF9D%PY?6g9%$b-JSeUKJQF8djPw7?UH>=sM-zs{ay2WrT4F*-*9Sv zZ=1lepC48x1qMMS;g^VW4r}{kO(_C&Ya(5v*s~MIm=9rH9Q;!S6>Yh zo?a!8Bso*nw0hvlp5Tmp&fjH+aIzXbLS(Ss+X=pQHzo%S;5?kn{iJ^G34*#!>7zjd zIjj2Ct-~}f&W`b*Vvo<0&pg=jEA>#HZv{iM3H~+x&ry$KyxdqG=TM0?RGw z!|WWagc>@df$x)Nc+NEo4g^va;2YN6ExH%{yqO0hiWc`6Nx2?V%+3L@gLs`T%=TI| zvaMWz=yJBlDJgbVK=o!7uh+1g$c9&Ie}8u#SisQZUxlGB^!r?X#leN)dO_T0NX%<+ zB1ck` zpPcMbgO7`&$46v#{x<0cLG}WKWZux0I4lpVu9?Mp^aBtBb_3jX#v6{+xI#7?aamA) zYVy~w1RGpyZRNL^?3xq{TB8IIXkGS~zIs9Y?n7z1GEh{aERJNmY(_JMEE|MNM|A zffZg5=u*L|n=)Kl+S8eV|2Ppj+X3qMJytz!3DR24K9m*zLS`JapTs@upYMR z;SHT9IU-bw#l0PI_I}RU3>=Fd#cy6>J7u4DM?v1UuGimSK+`wai*;&_zr(+(7hCj_ zwPlFc3hnId%w|xU?=!BP>|HmB>s5ctmUDbW5Jse*(=JfkC-2ip|DkKs`j^JL`cLDX zjhL6iY%&Hp95WTnzp#5K%(nPCu<-Psy0pj%NSwz05l+kIVbhUTZ@BtbY4Nr~CIWM} z9rfER{yxO>m5&>9dC%P};{>JSxtqmFoxd5pyWy>nSa^{L|vo9DgUI&$F>69UP{6IR&UldhJGV)Tuo_w|uw-r)F6QY6H!8hI+0RcSfh_ z;-3|3RPu4nN?-oOX11!^W)IZIMCvazbq7A3> zhH0p#y|Jy=x1H;5@WQ_t?^q^0xa#{~AkULmvWM1s*J5=HcI3F+%EP8VP-jj? z{2aqS3}U15qZzHYBigJ@6X981D7jTo$#N{ylwMHRk<%t!iW6Sp*V773JNY?GE&uK! zIhTocXHNc^*MIBGhi$FP$>e7qD<)&G`*9~zaO!Z3Xa12K*4lRa!_NdGX$P+1b@X3! zV7JxhmPfjH@jIiVU*jbnEUP&2wC}cz|Mpf8D^0v!1XKlMo!5GT*#2jV-t&OB_F9S} z3x3^X?KlZ^-+olbkSVaIi;uTP{&ax}#8nV!z?nNs2R~ww$-?*Mi|wL-n?5 zV&#@IO)pzW=iVUxGbMXRyi@lKUp`aF?czP9QlK$36CE9N`#Hf1xw3y*jGX4ywj6^`-ek_LKBn1@!Xw+u#985F3(id2mIq`vEHyO zOwH@koety3V#k-Y-$e@Er|>^tSW`HNaVe{KIo|O~y+rSS`J62YPeX=fYdyXBBP!d? z8SwhWxoiDY=*Qw1y%YZQBV0#_mIMBgmD5r)i~8WE%kALz0&G($0|Q5!-H!VIm8Sfs zVgJ`Z)Bf#M*(}(0fUDDYy}IXjqAETf^SoI#j-UNVwwe5P(eO4faoNnWonyPa_4k2t z8o{uoaNCa+LjP;@X>L|c{B@LJ-y+F!EQh@XSN1+pOPRhtkmAnetWHyB0UX=%j(DFk zq6ENo4A&{C-SN^GIr7%D`Lv4nD)&+LMn}z=$sZ(O!@)h{*CDLloY9Ne9*$ykh*UcL zHr)XaJSc{9U+}~HR|yE(Ui2!@DH&)6c9@_8m99d;RRH_DbyN6*%94HI~f*frzgL7~RU_6rI0! z2A_^I+sr2rAcms`POaPL1XV0No+}Ktfp9zqMC-E}(GFDXMAhgxx_Lrh=;eLD8mgj! zPiK>R60MNnfX~~J{|5PIumA;L;B`RRj$$u_bB=p)7^!!6SyFpOOL>(U`0CAIfA_(m z*?yCyTDktNAo;6+yUsYae*f+i zuECgfUC)27LGjk@ae6bXLn(L1)&J6Izgm>bnzvsq$|*%T88xR_oIIO>(tm#Z@1`T6 z?w0`z^REmT>v`Jp9o&O+cQ)oEX3^s9HRynZ77mhgC+e6*(Q0c|WkMa6iuORy%n~OgxztdxT-x4k}q^M)3XJ z@}p?l0`rwfSUm==->2sch^Y>g)X|LlcWEwbl`N6O?p!goSn@u$EB!iVe&rJ&lvRjU zwti;dIPbG_5?(Y3zdt#S_b)joH4o(#I(!aDFk$z_<898UdtG>Z@ zCprXlO-srwlmUos!yQbJEit356NDct-A#0xQ)#CoX*VySwXzkcows#CF>Gbn z7(Yr8XIrdZ#_BE3zF&JZ`J;TM93Ia-uN#?^yd3<2y1rf|$tmq#qMi-Kf6eY%Xrump zJh*Fz5n0u+oy8d*&H?OXW7(f&jb1c2UvH`GPKiJ4UpSs$^+GsPehv^VUQoI04B&Ur z(Dov^O4Vr1xsL^eUnQo)jzKDD1f1J}2xp>Osxdg<{|&4C75-}R@9@|8w`9}=7t5$h za`>6IOB>{YuVI1JQZ_dDakNCzq|PXNn@Mi#WrI@NXw5`{v7?5VLXx9A$a!PT4naR- zLMsm3u&kxsa6qRiqs>5F#}kxO-hp0s?s40u0#N?&GRv+~a#R4k35SL`+p+RECEFSC z{rwM98#A_hl|PY0zSb&U2O-S&Z?7=lmL*eZFu18>JyaI5=*e@@8 zIdi;fsjNQ8;e5@0-tdKW7tS#h+T;A#=(6qT+rL>NGW7wwQ-@suMY4zXeWY`*O}pDX zs9)R3oYoh+BY(X*-k}eFZjR^mY%|UA&&~0dSI7TpF|=^m3978R10tNDY5MeYK*XbP z9q@f)&)cpd0}TVT+@>!B?g*Y2s?Nn*$$?@1YTR(4w{Wc=rw(pE4Lrjg(=H(qIj~5EO!An)nG&Kij zdjYVwn?NSL930fvx_&LPX*nO}UsBoYemJz>FO7Y!Soj}rIkX%F)I5{@R(4PfI>Tm! zw#GD>2_EI|kC2}K2x+X%+3j}|n&0H@uiHMs608k<;4`M%yd~Xo$;*&nV@pnFxJ}%a zPD)HT|E}qv z1Y>Wu1XX)NcxeuTH&)xpc>n(AoM;xT6vP&0iW%L*Hn8NaBu?A7N^>qj-+{g8V8j^4 zm5u-|_LLg4!PVE}?v4Fy z!pafj_Ff?;(VP+R{u1PL=0ED_)FD3Q6yclNKNCN_S;CgZS~z`Q4y%{{p~!hQ_>t4~ zkXp&n<>1Hz8b}_I$-I~aZ~L@%|E3nUbEA~gjzuLj@_T0Whqqqa!f107DXep4%SfsO zJNX?@WVy~~qXG)U&IM;lI9sz>I`KZ;z&lNJl^zFFu|lFHdu^vu_w3mlC5KR zVwJV~!?53o7hlb&5M++6VILn1lHWZ3pT-DiY#;Ti#4NcD)gA?%h0|A@f8@=Z1CI8bE4SKf z&(?h=xWNiuYrR&mbEQh{4)dDNpap8lg<^wPJQ8Hs=-3o?HPO$ZCQRK=2xDt z9ieZ3@AssLoWpvashDQ{&4TvcigWXtb@}1fMEB>Bit;bcbY(cA<)U8ZQqCmW?G0RG zJ16RNm?@r%y|caBG+gg>==Jhq+A}K~Cl~P|UdPz1;G1YtiBD&lKPQjAf2r#6{iUjZ z1z5L_ctmyjY4V?6JF5SDDLC$^vdIo%e$2z)&P99RG+o^g&bK=p(;z+;zz+1^k8amL zpEv&7=f%H2?|hsL=U+Z9okkA_JHe&i3t{9F+9T_w5NGJ}(I5^Fx<@y~>}3cR)ZX5) z9yQTY?sF;V?@m$UZ8k4kyk#ZzYd2B#X3{*)^`wp)x~;^v+Z4YATP>&X_IB*S8BPVU zHXyfHBPWuhc2N0P_vft_bvu#J%h?MI+d=?G=a@(}P-a8znM*m(y)ikRp=!@%+7oYwxIz#v|Q9M>p9X zY@7g0I9VVt;s%W^Q#cdxtPqp!@{+04%keYWwzXitb$(7nYmML4Df6`zw>k#QIxH_v zb>K(Qm>2JeN9UWXFB@U> zX`X!+F6FAeOb(ugsQ*a-Z)ZsTohSLXe;Y-DMBUf_0~BExAeZ=@C;$KfglR)VP)S2W zAaHVTW@&6?004NLeUUv#!%!53Pt%H`6%jj#IAo|!7DPoHwF*V35Nd^19ZX*O2TdB1 z6c<1NmzidT#sN*Y z%~T>TX0oed=PP>9PZdH?W|lE0NlEywuX_aeei!3e{`dY|y=u;4KtLp(Wrk@JZxBy! z+6L!+;s`6sD)Bk-m`M#1KXP61_>FVHWr1f#%yep=I6^EI+E{60Rx~x@DdMQA>69;I zJXSexan{OJ*6fqNFr3p@mbp$fj06_31PLM(R8c}1He$5vq*zGNdECc8ecQmrbxTwBfXf|V@X3%(*_DD+LOu_?pV2pEfq`3~d(E3$^BkuSK$>Qiya5gl zfzbkGulu~at9@?&-f7P72jBm4Y)v!*lmGw#24YJ`L;(K){{a7>y{D4^000SaNLh0L z02dJe02dJf$|mza00007bV*G`2jvS93k4&_ZA+{G03ZNKL_t(|+U=crd{ou>|KI1% zBqU+GcL=)(E-2vo)oR@p_g!q=ORY)xMf_sGwr4yKSw-jk;HHtt)~E zDzYUxmn9^bWbXO>aZVt)Id?J>CIS2F^LphqFSvK^y>p&(pYuGQ=kq*AD5dxzi#T!# zn+++!Z&D=+wgiR)Lx90RKfnWe17$$G#aA1ET3{tm1uO*?0bc`i9r(89oBAf6UxiXz z{cy+Uho)e0Mh#v}lqmQSusg5|umf7TP62OK2Yd#62)qNl9uv%|t`9Qmfj<9JaKR+~ zDTB`$EY<{SYv4%WP@~wg4e&HefmeWk0MD%m)Use|;(rS6h!l;hp@$>322KG^07h(N zkJtpf0Xzac?q^h$`cvY63eNg4;x)XAZA%rL2#g1I1H=!&5;g#T1tym|;^prryXt=m zZl&1yxD{SM;9THLpuB^ZT5X)9`M|fp5@0#70;o4mRR9zLB|uNW1^NO5fuX?W=Ci1S z&+sX5n}COEQeMOV-wMtw!~12?0N@g%*wQ@Tnzw$W{5%|{uZ$^tPQYu^ z&hYAw-mMWtQ72lLag03cRu-p&a^OJV2=nLVc!_U--^T?HEuZ2A|Md#)KVFKo;#A-U zU_cIE`5u@7JmS}9-d7Knvq5F$W%Rk|qM|@6dn_;}#|io_Fwy^}{%tjL;D4Wj#YxL? zd&WlqlYxEOIb8uS0(U#`Y<0?O+9*SiF-!6K7WY>0bKvY8JpBNeEZ{ec!02{n_9MVmenx${F~*a*%C-|%u&5z82)M>LXxV=ABmtLprW4j_3KpkS z;dYN5WY*8VSx$WwxX{n2_qsx{LVQg3ahp&q=&p1)v?;I&8n;dWJwjHdIlPjLd>!1X{Z;59PqSXmzk>`Dn}gjJ?^m5oq%b;c3CFO1iwj5E#$gfPz5KFvWJ2v zfrFxg4B#xkA(+t_8JQoQx00{cWVQv)0Z#5BrDl^4fro(y{Ur@cyaC<1DIFf3OLXSz z$}&e>y{JHNXTcQgC1nDgW%+T$DIWpH$;o0Kj$2qWbiy*+-bK5hP2u5eeE4+}@HB8o z4@bPdI#5Rf)3bmjcNPiGUseEMq#z15%6-wSZ8mvCz_^-}x2B+qJ$y0l;F2N0AJG}7 zd=tv9)2r{PZlq|-4eD8mu~oRGu>_Db zp8ensUMd3|G3PFCX1{KotY9I&#I5K%)|f~e{C2AUUHuI8T;Vb%;;1FK1G=4HP_cN# zeeV)*SsS6uDs^n(HC_KYiF39oQSb}n z>33vsd|+3Z^5%A`g1w~N9-U;jrN}Puo7C+E4b;V_xD|tr1s;u1?qXo9zb5l?RFZ#_ zGksATs1won@D>rbssrv5aAi%(TiID}weednLMJ7<=lS*j2-rQJXe2KMCz7&E!F$-# zVt4vY>fAzSN4%um9e6oneR>BNBU9euc969c`t8X@zB1-;PQKx`_pRTkjxmUv%;W17Zjp2BpI@S|3U*`SP&CsqEZ+bpRj0g6q2pY$ z=Gs^vGX;#vW~zRlg4Kaa0w;Cg_5*<#{q!?*ny6_BWXgL4*dCo#%T*?y^@!|OFcWPs z=1x5#0sl1_cWQR5d78*G8ll`y^#NfE$4ebG*$XexOcnj}+0ag2ido zxJAyb=yX?DuJWtXSE?ub7h1VP4U`vlMTw7@6iZg03Z*H082c7O$CfZf5=(hmi5Zk)lzsR|~CA(2g z?}NPa!?z=ThZQ{HtQF0JU1TxM71b%PvDF<9`kwydrSOu{^^$VaL{j!1 zFkT9==XW_P*o}#ufuC9qP4}DBKXO@8x*gpcV5H3h{o#6#!r@V=%Ff21 zPg2I+k=^eE{s!b)hA4~@Kk$6n6-HU|5n zi@m~fm*1p5So^dmEyqjBo!w!jQ`3s?%!4gd;5R6~aYuEZ>?P&)Vr*5r2pMo0ZL>l? z@T*+CbhDWDvK)$>Y4wUGvjnu6bJL1Nd{|+#M^#Da%_OkSXtN-~e=0 zMmG7KS23hl-U=Q#UJBq^%b{fgu52FcL{fHld&Z|4H0TW4V#J#m@B0I{GX z-nbYZ5f|Qg)-GOEuA`RLAJvvak#ATxK`C~8dwJAk%;-$k30WQ`Fjk?q9V>dD+daO2 z_#~O~K0uS~vjH1@6kH_4j`=CLUU8uDFvD{7eW!RUj3eVIT~2vM4l~#R&QkDvA}M>c z4gTK%7-xB=8Uc4*J3jZ<;^Cir03TZpO)O8!HXJc=;&PP6i^J>wDxpbsw#m2`aB;*V ze1fJd4K8zp>uBd~1aNtT*^L3yhginN|GxeW6Y6E-hM(tE%<7f1f-k*Ke^?HE?ZA{1 zMr+m}@Mm=WPCl}?f(Q1vU{%Q6jdIWg^01_?KGa*C&kc^-7l3Cihkl%aKP8f~Oo+?1 za>v!+_KKf?4pGALlFX=dn+frYYS5sMZTxO_U?-XKrpuJKWYJ_-Rj0g0neyiNm2dq4 z7zMm;LsS)9D8wzTJy%n65bC~2M<&J2!U>g)gro5@A`QZu}E>qrD`7Uk-qMQS4W?N=VxUvdeOdd5!_m?SemSueQK-UI` z<@O=nVi)}9u3qio3f-0d{tlr-OB~oV?7RYqW0vCfE54s-GUFl#HVc2(X=^Iyf=+F< zaZrSbD-FtId&8U1fc`*ZmNr4tX>8o0-|lp7E2s4c%QI7r^|`3(X`6OFsi& zPRyd*C;W6UE6PY%{%@XuOWIQ|fB|Vvw~WhxAR_Uvp6QR!Z|R2-mmM5vz$Uwi_A1JI zqYJRZa%aswej1=ju@kx{Mw>U>e{-eO+bk5Hfs1E?!1llLd#Hcgtag@_G zJ~plms29R2Mu+GWj6q?G}a9}Vek3% z!g}vduw_~NH^7zXqV~!kqVA$?f=|rt{Q@tVTX;GFe{20V+eP)**eHfs%>anWw6?@d%}6i>`6WG8-lCQ z1!1!ymJ85HlXGGkTVIw1A1t+a+l@kZ6UbM-wz&_Sc4YL#P&ZR7n2aVm+AQ)Z7EC}( zPe%+vSF?xZPa&eZia=+qvOK*u6o?WV>hy6ge=G^OL`o!D4T*hJzgv$Q=qNLR7$FzgiEuG>iFDcJ7pllUHiMT-GT&d_^p)EqejU0bx7BdFF)ZJuo?(v#Jd zOEQ*qDl9w7CN}~A}0L{x&H1?Zujc9IbY5IejPe=s5qnMHua~(It44e_J*B@6~bb6 z%o=bFn!*}hD ze4eX<2X$YI*o76mrxz0?K)usW{Pmh_Qr7D8GDkcDJQFoZjZ+n++!+RbTWb_@dQ-(; zNF-&6my{K=7T3LpE@=C`d282)UQ-4f2HXdH?^gWsFJ4maHS%nGBF9e$i_pbmVcA*1 zn_g1xH1?Xd{^0Eay zPIXwe0p5Lf;p*qSq&&w<%A>rb{E3&8S2QU8Ve_Wq`e^ujg+w`=n zIBuC%aG<@|ux&^SZ35fFRU7;!b-sD{JB)kY(BjRUgZB1D`HjJEY(RR1Lp3mwl&)J6 zdjR-5(S-Hzb^eaV!+(Kp{Ib1q21gm(`EXzYa3|Wl<` z0vc)+wdtvEqSO(Q--}>S{u}6zJsZ?2oI%;8$x_@t#rpyep_425$SmMz*|^=gh?kUuY0Fm02&C+!%wI)s-)0lsay`oejaTHjCh>nh*{c^n0FII=ZxO(|U%|mQ z$X-ep<4q(B&Bw?Wz_mq!hYM20ufxO|OSrjRvx4tM7b3R`V`R#^vWpbFIl5#d7x@^t zsD~q7{I)aN_NG51arV$srBjWU5?w#E5I9h#ym@N}dh{Z^Ez3%j_Q>}&5NyJ%(~Av= zF|$bU_Ob%@trS09hMOq*H*MQz94q+Qa@^9`vu15-DW}PlH@zzqyu}2cnkH3c@dH{7 zJ#eK1H%F}F1r;IQz^xcH6isS4AmX&|fc>n5gkUvdWHoG73>gJ4t{@B;75F8YK`7Ax zoaY$mZE(cHcZqzZ@#|OGS!eh3E5EqDE0hbM)Sk$cx3EZXFz{RK>Bdcf=S|0f5aiPX zHD@U5p94`Z4C++nX3^K+c)z$1X=QD|o!7!|io*M$DKMLxFsIIh0JFOZzFKnEVny+& zs7pMLg^_?p(#FV?x17}ObhRv-;sxTQ<=4AC;~yIYD{Qhi2c9$tR)<>>n$1Sa%+4|8 z#;h-l!FScGn=yqqm%R&_B?m{^})n^duf=KhhvNnv^Q-lDHo%wC2sc{ zgSkHv32Ocw^KsLB=1aPZ@IbKp8AwtxW?Rph0 z!A=S|JACej5T$mnKyE~-nqAfmy}yI>hXI5oxHGd#s{LgSf9E@ z&W(xaQWf9wf4v+9)-vaMWrYv*Y(9P&5N(!=D_r^(*!UFU*3;K5Jj-g%B+5%6mT|4byM&9k>nx{@db zH$?gH@5}?&EjrMcjgB^Oa)4{9n$+)F=8uJ*$+rCFbz7gcf{jASPxZ%72Tx$oul*EVng?Tkj4$!e|ALTL}D(Rs}~~q%kVMJmf|>7~M=Xs=+}Ox^3Tm24R|) zlM_ij?Z>IgJ;ZA&^V15Ou^ z@Td9P`zso^K=-r0FG5FGm===FVl&%;<3uFZdpK>^&=vXi{9B5BI54rDQbd%vJa$i2)OZXw7$6 zkx`pRyuB4NO>4*bSo3c7wdEXTAUy4(DrHI5_JmN#B_z4a?8Hikfgpvy0`t&vx>P zvy$db>^sSFXnWTY&2O$P?dLm(Y}zBhUeegAW~8?x23R0X1x&@sy`NXFn0Uj09%TFR z^X~QLVXu)Az!bMf{AZ?Me8W0i&kq9K?<$=5FIR1g=WS$#w_m!cqG@! zo3>sW)y|B0E1MmpHaKQ@t)wl-YJMUvmgO@b-%P#%bgs9}64lDvjKiiSvHQ{61B4|G zOn2krd{fG~;SereS9LIU{@JnO!0*FOWt-J7M><)C>;(t5^yXrRFYB5Y`LGNP`&~8@ zFux(ctd~+ZG>1}QX~XjW=+0g^I=^b8lE#4B++rt{t!qGMN+KzX-O|`?XpWezvf+?^ zo0qm!ylq|C@w`dxcYiQ@DTYJSRcO4w%?r}(ygBO4O)xQ6ScY3J)&>F{Qtaf_n?i^w zVDDX38xf8)3Y~;_C*qP73f}RO^8ZYifX;tw#j|)xIa29*=JT_hIxwwTbq2K6T<`M0 zCvwNE_tRFJ%R*^Pfk*(TuezR?`fe|CbsjbZ4LW_ymY*j|(MS>eV{se)Y!MPxd zbGF)$`(BSYWjo*Ck0+D6M_U`H z(byUN@3iBA`$DgEPez;)H*eEd?n&-dUQ+filoKX?QH__B3AbYKZwC$g1lRD$M{~OJVnupG_ z)(J=}O?EFeVa%3huzzg+a@p`>8BhV#SeB8wjf$$>bj zbj|s^PBE&!1vlF8k3J-NbLZ7&JzZu7XqSi}yg9ZzK&HG`IyjS?n~9D>7lR#5*U5{( zrG7*3ZgX*bA}M<-9SXH9N^2012(wtksnxjMoc+-(j9mHDPXps*%ByLik0HiE4O`Vs zWXfCA@<0D&x!~5NqIIuEc~8w!bi$!7;vssViR334XtRHoHR}SuKJ&`@jIx^E2buCd z8(tPa23=uzf0k!kUrD2RS-bWxat@Ly@7+-6gF1_E5VHXs>VdUZXr!?$3$j>=mw-du zm^ikja*Z5pTQYmc#3E?XC+qhqxa%D`kG3Tu6J*M3gSC1|xv%kPJJRMo16<%|)ScP( zR1#yB(x+c>ETia&u9T3yVM9*OABS%1Te==fZ9s3P^(63^ zUwKQFQrATJ8AVFt`X!-I!>vhqSs4qPPwR17LWE&GcgW`aOned!hf=W2cr5(ncY!NMVHaEm)sA4sRAy}XO|Q) zu7(~$P%MZkog{bA9ocKsip(0N$aHXbG($*O9EwS61(esMy!t{b*h|WjEKcug0sWiT z{CEfne1P2PR>_PixN=QsYioJ+57`*3b?92X!9vWz zt>|Z~Q~I#f5j%a~8MQ#`){-gc!mp0V*T8Ps`df8{cu9GT@pN0tyLF0P>hq}5%<*1> zjbj#$rN_vW_e{&TVBPFiTZ7()CM-MF1!}L(8W=Y&e%6k171?WWHv^^({iVO5_YL0O z7PmG`U0T=|LcEO`uds5fgx>5DtAYXir44UIVAGfFa$dpx1QJPEhJAOH=FsgBp-F(< z(M8<1L@4{Pl^J!^hSIEoBW*1nKT>K$Vc*`0t-4{)E9_2hUs6 zbWouOM(I8uHqhjcC63r%ro88CQr;TVbNO?>a>>QUnX{!AFWgWp50lZcb&7qb&?BZa zw{4)s%1u#f99b1?WU2`n!g5zL#kGL5-p0~=xma+?V#}JZ)JWvLD__IT?b_QEz;(Hp zE&<_`-x^V11(%QaW7v0neZg;1U)Vg+HsV)aEYW-Sgk>uQ*B0t6=^GagU_&gf%eu9B zd?=2F_`bLNo?W}#JnQioYdQ3)%&3BHYoAg449)InWASXQE367uYAWb7m8~4|JU1>5 zzx2NKf7nKaOIwD2gRmz)T1icHx(Pc0U`SUh*jNqQzO;`Oa`*E@Qg#EbvK)H1Z;|t2 zR4i!~zb>-~sEqi|gZI6e>0Q(S00{s|L_t(1wdSk2lb3?kL*<}J-8N??0sPHNN_V{mM}zZW zW%dkm=!Iock~X42m(ncVp``<`@0#|o{HDHOK*~d(%7N&5sIa_QBCH#bWLGeNzp7~o zdUp|!ki9CgIbGpg=MS|*?Y3MMa~x3xm}-j+1snh_cziuZyW%(s+oo9*=C&4 zTP@3(0xnsc#b3#)VD(5}gx>RDQN$^GDfnwgJ?q*#-vfIq{7c-5#MV*Y>ywmm;9lCo zg3Dqea?^^!zr8);hoO@qVR^(~(ey>Z?h_NoVBaS9F~2c*J?rGiWiP-8P`jnPCgA9r zl;?K3EUzwPZ>+k8Pm<_ic1CFtUD-P^Y zh*nQR%*Uw3<$whvW!3xSK;!!Cdq++yc)vrgtDGUY8n^Qrs} zj>i@LipEY?ZXzkW1)8#BQ|?OOltT6Kax1(&uy;FH1DuwNa`RH~5kH19M^w@_9Tt`t za8&@Wc}Y1+oR}La-miRpHk!rxSsvrC1~~K5(cabS(auFEy`=1;^fG1ZJGDZ*^~x(_2zv0{UzXL7T~M zSNXDWzIwd#lxs}o&Sta(ZK zBQy~$SJY@RaJ2)K;T8|}LH&qC#isE3}S!)&muOb$W)u#Mj$-Q+lg- zTk5nCIQ+R^c`xp^RR{F6KAz{m@lw<)9>AU|%T+!=HyC-Uo8Zf(bJr*}YjBq-)ieQh zmG1a{Chc$b@ilOQ|LV$j)tsS)P;QyhNr}TEtiLeT?)qL8xOfGeM&i>|&l>-bUutGYX)ZbhJ!QhM|i z5HlV@nLwl!rAhLV*K@)&E3r!limNF(GaK%8kbxGoR~|A6^RFAmHBh=>^?t zz;&U(vA{H<+ZkRub{p@8JI^n`{R)ZxB$BdNY1(a6U&&SIv{xCLY&VFFQ|1GA2&j~m zb83~^t&rn$J(?h3o8%ebT)#GRk9xSgFiTRQ;l1+lGL})?O!np^51Jpj1Dfh`RF1$& zXG$G|6SpsVOtqsu(zp|_O%2$)@`_^!|;CC&2C3vkY(ax^*{v`v;%-vW+r z-h=4}qu>^%X%ISy->)5q>2}~IzjCous_n)dV(W#J?A?nvP^5QO>xHJubZ?<>%x5jS zjB}-cl}%8$CQvjLFx<)(SGzGW61a}Gb-Q5;GD*NCQPq||2nEC1%E3#}m~OVMWTkP! z?(*l?`Rb*O)d!12_C}z8=UB2gSXly`;b+uyg{0MPFa^WfUK%^1={D`5MJv&i-Mjrj z%~xIU=58n%=fz1@v6sl0Tkb53U1+a!~gdj|N0h*N*ju zQ1IHDi`lppTke4FAeWE9sz>A1v(Svr_lA|m>OQ#hLzLR50M9j-p=b7GMMjmQapHZ@ z*`*!Hodr{mruJUvSH4`O)K53e7;i`ght}sGp;M2!tYcwmGU3n1=q4@m(alu87qCp| zdZ!@d!V16%v=`po?0guy(_M47n_(UJIjhixd$;u zlT`+&nN}otrI339|5q!xrNqY7&`a+ZF~*qheQ19h_Rf^0Xm;h(0%pqkU`@UoQvOfD zS-=F(5oHSYL?dH+8^@<-C*F1mx=Q~w;3Wq>uBpp3nd-}pf6RVJ3bw7;iI^w~bkclB zbV7eiG`)2YnuwpvmN33~Gruzq+Fawby&o4WsY(YywvKxLQ*c-QprH$3-<}LEjfr}t zoIp{e^d^uc=1o_|*{VhF47Sn{WHv301@BjF)=Y)mSoHvp;t0000< KMNUMnLSTZ3M>z=q literal 0 HcmV?d00001 diff --git a/krakend/logo.png b/krakend/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..7a4be7f5ce1baa34aa17376ddceb3b2f59e8f634 GIT binary patch literal 8771 zcmYLv1ys{<_x=b`8l*#-u>sOu(hbtxFj~611f`LjQc6pANvMn%4N?+PBcwy5_aDCR z@BQ!G^EuD%eeQGbv+aA%cRPElrKyCELyZFf0Pt0m<#hl6GzbbSJ;6YoJIbY~69b^7 zuBV{xqFuvO{H1Pmlf=4^`Vk ze7h4A_+N?G@h`E{4YAWTk^SjE=6~9c|EV1jJ6;kyUJ*Or5 zcH(~=01}DswEa*2VHtqg0jiPM`3_wQ32-~4fb5c*?VybOBR^Osgd7sPAW?im$N`E^ zXm^a_0|5F&5R{9Dp~S980KYvzIs(98Mf$MM5h1G?A}X#tO(gGQ5pPyG$ODqA<&!%WKG2Sz(FbC0gVZPrVlM3 z8`SwPOo@Qz|G^K_Q7gIJqon??YKGbYl_&U57ubf7&Eo$`rl@@$OaaYE!DfUk4W9Z<_Wlu(=hQ+t@gigIC!hZ@0ZLIgBL<%vP2|85U>RB zngDo?0sI#LUXu^tU*I^e13X6`yDS5IXR*Au0A9lYudzpNi~p+QI8LbQIKcB?<3l?N zj|030P$z-w87hzGxJ5VlAs=;d0DN>bbphy@m}qF|7>~euLAk91GR$_ZrTm5E zx8&I)vNf#kq_QUU&3bf+g!n0miOESX)ipKBs-Sux?a$H1VbLz+TPCAdUl5#|9!EVVKw&pyoV%*!?r`a*N zw)^{7UX6u^73g}eaq7c8K!LC7Nrn8IO7kr%?dRwOOq9N^*B`WEYi9O3hE~;f33^CO zP#=h-iDMV(midiL4=aBi_X6iSN$EHJjFTn?*bwp|>>U&vo7ji>-bMDijfusYi^Q>C zYD+oyDjif;xCh2urm50l8x27zFDv~kd4BFVmVShu!3M9+wqLTjGTYsTQ|?fwjP382 zhPS;BrMSG2pmXLPejKwjjMEJp9`rl|i9R_!z@AcYS@{xB;S=cQx;X;nXORTIXoQl=)IsYsa6eTWVCRg*PWE$GC!fe>eae8n16*d3l@Kj)$Ey`|VgS^QD55 z<9bS`Qn@Xpf?>~`Rn|PG=Igl)=Fj+lR_I=okk~TJAOnQY+JH69DafbxPk(l-)v(A^ z1JT~bqxpxHto7T#S}=*@qb#D|{b2oM{>6Dxi*+Nb&s2AkQt)j(@shAfc8$qr<>gLC z%bS(ZUq^R0lKfC8Cp|+@Yk{l?zr&VY_gU_?#5R;a??-{5vBU2a9o|wJT}V0I6_!?F zJsC7e_owrU_=G5o?_0aWTNQ^Xs>U*(0|5|jopn*y%Ds@|?G0I1+6N(Fk(}p9eRvbC zsS>0(8+YotX;!|Qj-I_=0k*PujD(qX85M^~171nO3^bv?u#j^6M=I1R_GcSDSXv+= z45(Y+0H3~)HoSE0y?CaX9n5yNfy{kw8sYE9>o-0Yi)4pD@whABRKP0DvJGqW&!NjQ zIUL`Y{P~+Zwb>D8ue^L*1oSmzD`;!?vUh`%O*7Iu9l3^eaWXUm!@v;^6yP)UUBPkb zpZa#q4(`#@8|PBIkob2Je&;Qr1<@z%dHDln>e>PdYbSet644(FKP9~8jH;Oyw0DP8 z0Ncy@JaAzz~rO~I}_?G_Zck@-`m7}ggjRp4X-S}tua`#q)yXuAN#`6DZA2f7IeObDZY zOOiH{1-rltzUd_DJ6l8uJR)hx49c7;9D7E{(8J5!Wryh{7VT>KtB!x)2dG6}U0%cl zJ4KsJD}BQI(_SH}%Ki=C#xvjqtq)Kq%ZJah-gDr6iomlp`9sUc&3#cUad#3^P4C2Y zo;qav_}kd#CNSI^4X~59*VNd{quYyKgEBUFDuSE8YApxjsMc$^n>A%rv&eOK1WCa? z^eO`hA$|QCLFOhYoTClzSph*VXYi!Tv?*+a?Er?g0}}*C#6xzXG`%ch+975g+E~a! znw%@%6Bs&t!^0d`h_FC;S4CnV8cZtBum z5j@Jh+njP3n6oqvzim|8u0gNgN@-jdzPc3fZ+&6eeX@GZQEh2vs`S~!c75fM6Kh~@ z@SuQv@p$!YiIPfo*&H6a!hmePJA5SH%s|_T9b7R>0L90fDz}h9i_lY_+q&TD`=K!N z9y^r`Pl!EM>XABK@$7CXprlJ+ft85Av*%`dbu{r)&BhxYV~mHp&%S?c$J=^|R5YEYo_#>J_Hf zpTYPyE7huohR!~|+O^vJoU^yZJEgOSimlYY3c1js@jrDU}#lo$3qnsZ}}87{mugyI@%>bbMV5PFxl z$JUZ$pU)vtg4vaEa@6=dKtkT%rKEa@tv`=T?IE+zcM2-uO2kJ9imlIhCZQXt-$4q( zNnV^+(!3VqdglQ1#Mkd7rc%%A!KNpIBm^W}n?2)eAtdB9WAn?jWrf+I*ozMMbhD!| zdoR(l&D9xbz2b)4v}ODUcX6sQ6nqt-`^J;2jHV0WbisR0M(yv75LQboZQg;)>Q-b7 z#Narl#qY0Lk0XcI-Wm`Dp^wbfoeT}LChgL~&*6cE#4}ARtTrCmZUNZ==93vWPI}zy z9{CNz@!OwL;KzC|s=X+clCy@?CSQcxU3hN*W%8pb^k>Fpu_h?BN~q27#2#%lLCGM6 z^yv++8GN6uRl^xjxfvS@Vjvs{h!+ zVQ9UUr`*Z5G+7~Wkj?P6NPW}dWFpN-{Ksq%rXCYw-leQWpcDZ))|AVJ3S#qpwN4b! zBSV+O?>BypYcV()KoHtgIs>x*n*tTOKuoFuX)SQ1O(IU%M;QinN???=dMOO^+7X5s zpSx337NSz#W8C`2#)uhj3HOsEi)QpoW#C)j} z1VkYmHHWXxjx(YzYON!cp}($$)YOY_*~fUK@>K`b!sPj4DqL*iGM=m)hN!mY4V$Di`-CP(!LPNr%R;|rY3({=}V1cmby*_GOL(%^)kUmPAF zX+2wjS!G}+#!JAW)YZ`$f;ng%+guvZGdzONDa!a`cd&!y?-@T2K_q!JIC zj*zK`(z(h?@0b$tpuO4h?h{;%P6-zm|EhV~x?q^NVt2l@u^x~7Pslt_;q^h8m8L8d zi=4(ML`Uug3HXcYtXplP|c+vkI_P)?_mEq7OfUfyE5bb{xU2il@sPz9fYluu7kC5A&eW^vc@+; zx(-gjc?87*N{{s0!-Nm!xbsACWei>R^3bVnWU$LI;k;5q+a9^=jOnTbVNuGo7b;x5 z-&Qsj@dyR`zTk^}wH3)VZSy;_Y<&D^gmG4bwMgAoMqjZn$M^k;Yv>@4Q?YYBt$=hk z8Q_!;N{TF+(KoDAIaY-0R0!y^V;p1fEm!PfkxEGh&Cf1KSKu}1Q592`8yv(5ytM>o zj3=bZ;k(zTikH$}w9~r05IH+ARFc+q3_1h8nHL~V!!$A+xAdOa?IKj6MYPu4bu2T- z@_evDW8-i(XIxv!{m$!c$H8h6FhR8fXjFzSu7{Bnj@aYO%PQKf?Ti94WB5MQPs}QS zXqcfRv?G?KBMyDw0WZc>cA!ealbv->)&;>E;xwyGu-AEb;XX#74*cf! z_Rr&mZmy3LyokE=_DgL6@4l%wL(@6W+vJtsEHBZjLFECKJm_|1cf|lG)1kR~xmk>Y z1XTSARlR-i$7M(;C4yE7@0= z2KBE={OFG^p6#cC2jgj$(AJMRbqF4tSdy&+afKGXf7|+_QJB8qg|jlTb7}0i)tK6t z@oU1RQ-%xnBU@FO<)fB8A&W@nZ_l?%a=-zJYR$i-oBLfAQ=c=P4^r0{+VLPMEd2Y0 zMKJL7bc>0WfLN(I(EL~3&Zl=q=*hv}&cs_hU*ib;ggCz~eHF)R4aHA3 z<}|PnK6%A3va#6tEDMB4tu*+e;#17=W`<=*vVV^de#P*e2Opf~(QYRk&&#W3UR`c- zF73{~5Wn5XKct~dI~gB8v0OOxc+~#Hi~roXD6v2Bo|0b&ItzxZHN2jT^XZ6=z|7OS zxO8VA=YV|@yV=U8Y2N0pn)km-57uB96X?@jiOdy&ue(0qtcCGDd1qC=RIM{s8intcTh3bezYs}i*4YN^`m)1J~-pDYZrN7llfuR^HVUHHOSL`Eg;&on^q3zS39CHaR0k5tQN1r;re9ru}VL!Gu1A?^PZOpTw zQ<#5bYd~Dh&_X7&5R^4@$rvqEpDXR7_1$eZa4C;XN}Yx6-sU8nB&tq7+vFs);J~bF zVq*5c-xNb=O{jndGz)74WTto_DM)c68-L>!G5Mzj)^1x$VeNTn{R&H7Y#9n^p)`!d zjCrq!ld*r&nB5y;i+`yZuFv@X>ah*D;O`46gi|~OJ1o$*`BcHGLsgItB48fxP&p&% zsIE0rKk2EuegaNV+%2`?z+O>4;QLah!fl?}MmD7IwZUa9# zm7BJN5-)g2BrBKiglZdg?-NQ%UfCvRVZnI8Mw%4k?;~^djYJ#x(c>+V?WQMhEFQ_3 zo>T7=h<$jLSW-!X9+`KfwO}Cp?u1*Iv;-ZuF-tIcz^FNXbS>LDNA>31IZ2h4JzaY% zc>DRh*r$EB#l-TF`3c#E-%OUR<81ct(@|FgL0+u9`Z-D5Ohw_XRQxa|p zPm;_zfdq1^)Tu!PcY>BO-vA`l+F!$BXyW_Qo&%psn!1z{0q1h95W=a`);Bh7QwCIM zSYz{hRuTV0kgBF}Q`xn_7&D zBZ1tH2-buqv1S!Z?O2QWrQ5PCsb8TPVLX1>lvqIM&53bMp|Tad>oY9^;%&#IGI2{$yjqK&y*C!BW`~j)=Hz zp{I6vsJDW4l1|Q^=-p)neFfEy(bxseOGVLIUAUK!cW!EW`g*zIBE^nDx`m|6;>aYk z#(NknRn6N=mDfqDxxak&_p}nhP*|ZJf?dFAdcs_-(56zwi2+G>OOzg4{+7NhUEA%V z_R46#&EiIeAH&|vbc@Pq+Szw|*v-z}f`cdft0+CPgF%Xld>fsk2iUbV=I#{6jx{oIV- zRfkp0DXVnFs}*hu6wm4WDOpx#MeFmIM2x|1 z8{P#BOCx0)dvmC$^DkX}CRUx*WgV4M0>$6`?(kLD2(Dy_ns;RY1vT$psW}7ZWF|pu zNWmRkUyH+ZF=So(lGxRJp6^kWbw~(N7q>l=!*~2}whTG^PU$rZ>0@Mf%Z9;31lcxa zz6Fm5q3~#Z2lj`V5mofX9!=3QKsq~Vh+lhd-mjsUHrrN3acWrakI867^@9F)ra2}0 zl|SJ5wgHt{YRucp9}}2TDmT-b3v|HPw|EOAY14m}xc5bx&&REpv8j}vNc2$Iuo!ORuz0uN#7GN4u9-DpC2cr#ovidTr`(A;BNgnKnLUz}VlNXL|~Q zxjL%`m9(e+P+N@RKc37gK=aJDBNsZDU=hIa9C zQlg=wO`rf8YdxSqgiB^$|E0t=>otP6F|i%pE-!y11wu5lhYUN_EpABTeH+gTs^<9} zHx}|cJT`~AlkxS2O2XPqpQ{EpwJcQ8{k1)3u?jdG3nz88DRqK%tLw}=r?b#i3RD_U zvj$}466@*5P%Gq=;%ZpSnz#LO!41F>`U2MEj{Z{#$Wc)o!z!$pJv?{MIR1N6Ky_yk zQP@uMIC+o@Ofg5k+w^iELIpM+cAsE5mK2nV9j`6P3NZM<7f0H!MEL0PqlqYi*Aw3| zss-N!g_QP|L3S*Hv@&VEvJ9Do_On9%+vgyfH5;tD=*^(c;zZi2H^~h(!^8zAT_Qj% zD1AXg#PrNjP1`r?lyD6aP9!bjbVQ*m*n|4LL0Z|A!Ca=&+|WTB?Wg#<^X#7Mq1rUL zvxzvT3>HIf4rwW4RZ`P*QzsWK?^b0_XQc#KaR%d8E(%5l#epnMaO3?9^H|o)sOfqP zmmCisYzTJC5n0fPTv>4RF`mH_=(76VA6#LnfJ(nnO~VKcI|2S`v(_LlIA)`E$y;T~ z&n5$WEl>=44Or z`$lSG!Z=5~$h9BbX_`ARPiSG%95Q^h=hw--qb^Hj5VDT*R?7A{2#37NnTVq6>f0YP zo3X>=Q@WL~9j<(Vexhg5=DUYUDwwmcaNF4(6QncTB-xt zPvi3#xVYCLa^5^0Eg<>LFiP{jW`ZrYvZadO>Y350B5##pF)waUD0(izJGq1JxYEPI ztxtXk6tQ!asFc~{|3*`JuF|)ZuKFt-J!zl?a^W@i<~U>|yUs_J%APMiu*gh;HoI_| z=81&5=9O~-b67?upmQEp{A`Hgyfz9GDFp9;uul&&ZI*lStP}R!!H$sf5z|Y*mwf&V zens@FPp?tJpMt~6RU95`da_qcA}*A0@*^7BgrbmB8X~jUkQ|kca?wb&x`l8L?@$qJ zh*8}DSv(blHG;}$%|9UO87D)v`y$5sYhi5*gEC!EoTfq=-dme&xBIIU)Cb4X9zzFP zL*1a7!8m?@jrU1OuePtnsN3M9vXC}S!z;St048|d>ho{`%(hrV5{LQ84eiC%bBRQ> zr#Ql{ZXG*>tVMV@E=7Bdw@V-wtcw7%H7yZqSlM*XJ?RK(PuLaqIzm2^gu=WmxKO{i zK7n&0Qm20Oc>Bfu1zXRZ3m81edjO074C{1ANKGhK0Ogg8R+2u}1Y=2LS5V_jm}^PV z9mgy$G2OJnf=F2g_9U&D{O6Zle_{GP@BWanR7|QyC9u{ojW~||l2&rY_?V>4?(5=( zeT!E>Swhh*!2)6neh-4s2w_IA)O~m*xtYjv&iXVYjBypGO>#4YYE+<*tN+Omm z#vGBz`3eXFN9XkBRAc$k0=)YVv@n2FBaQD>|Debn_-GAbFqJ(z8 z*Fpr(eL1Str{*pI!5=I5tH}7ckz|r@-MJL_HGVo6wyXSuO%X+kq-U%o=uvo zKLX~Q?j}{dBm1LE*Z;7g!~1uU$Zg7?-{}#-m8b`K*-OuG;yf{Y_LHt32fy}j?yX$* zz7BF|2w|_R5dhgj&!j*&N`sbF%2({=Ii~6@9%Mtcx*SDEF2c(l^?R2qSy@>e1Hx|B z{%_pxv^PJ<6EOWM249%btgz6u>vp-LN!w1fK(VipeuvZ@uNVLr$F=E)`+SWhb>jq; zBTGE|{QR}cmST@fU16d(v!Pu4vCv7coQ-Ui0_~Bh6Q@=RVG7;j`Vd!;o$91GrL@{QYz9<~+NyAv@h8-w~X%CU)E(lVvz zymHE0jL1u!El2~_I^W-D+$>%Qqu1Hd+tQqUGNNI&5fSR!^7lUN-C1od$jf^nj>NmC zqj~m>!||fYE9~v?=wyma`K+el1zBbK_?Ecn%h5*d*N8icil;2TDg*3Ia05-vi7>`_ zrB+`xlkC~*$?L`E2en!A;%5eWG3Ndnn7**wZwlYp6SZBF(by7fUX-*m6hT8T#W&;9C zKcvWae+k0{d~B)1x+r6pqT*`xYf1P05piBrT~Ge9hXtVWwUvp9X)MD@fw-b?T>-#I zs6MOK{Sgr9=J2F1dr0Ef`pi3m&g07*%BL^!a`dx8C05e}4|kk;0n3_idlLo$-VtVp zPxJC)Aa0V_!-5~sIiZuJF|w`R834w#Avh}+n^NAfc}P7=FMa{qc#UoSvQ g(H{BQmd%I1PItmS55KME;SV4x3YzjYvQ|<556}{rYybcN literal 0 HcmV?d00001 diff --git a/krakend/maintainer.md b/krakend/maintainer.md new file mode 100644 index 000000000000..2fcab789f470 --- /dev/null +++ b/krakend/maintainer.md @@ -0,0 +1 @@ +[the KrakenD Maintainers](%%GITHUB-REPO%%) diff --git a/krakend/metadata.json b/krakend/metadata.json new file mode 100644 index 000000000000..538442b9d959 --- /dev/null +++ b/krakend/metadata.json @@ -0,0 +1,7 @@ +{ + "hub": { + "categories": [ + "api-management" + ] + } +} From fd6bde552d75c88224f866e1c293295c1c86c46b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 26 Mar 2025 16:16:53 -0700 Subject: [PATCH 2029/2686] Run update.sh --- krakend/README.md | 211 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 krakend/README.md diff --git a/krakend/README.md b/krakend/README.md new file mode 100644 index 000000000000..a8dcfbae5f2d --- /dev/null +++ b/krakend/README.md @@ -0,0 +1,211 @@ + + +# Quick reference + +- **Maintained by**: + [the KrakenD Maintainers](https://github.com/krakend/krakend-ce) + +- **Where to get help**: + [documentation](https://www.krakend.io/docs/overview/introduction/), [community support](https://groups.google.com/a/krakend.io/g/community), [open an issue](https://github.com/krakend/krakend-ce/issues), [other support channels](https://www.krakend.io/support/) + +# Supported tags and respective `Dockerfile` links + +- [`2.9.3`, `2.9`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/bac1c35e5818831f0669176ab140e34705185b55/2.9.3/Dockerfile) + +# Quick reference (cont.) + +- **Where to file issues**: + [https://github.com/krakend/krakend-ce/issues](https://github.com/krakend/krakend-ce/issues?q=) + +- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) + [`amd64`](https://hub.docker.com/r/amd64/krakend/), [`arm64v8`](https://hub.docker.com/r/arm64v8/krakend/) + +- **Published image artifact details**: + [repo-info repo's `repos/krakend/` directory](https://github.com/docker-library/repo-info/blob/master/repos/krakend) ([history](https://github.com/docker-library/repo-info/commits/master/repos/krakend)) + (image metadata, transfer size, etc) + +- **Image updates**: + [official-images repo's `library/krakend` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fkrakend) + [official-images repo's `library/krakend` file](https://github.com/docker-library/official-images/blob/master/library/krakend) ([history](https://github.com/docker-library/official-images/commits/master/library/krakend)) + +- **Source of this description**: + [docs repo's `krakend/` directory](https://github.com/docker-library/docs/tree/master/krakend) ([history](https://github.com/docker-library/docs/commits/master/krakend)) + +![logo](https://raw.githubusercontent.com/docker-library/docs/af2c9a19a5f032bfeea653ae85d841e26e5bc61c/krakend/logo.png) + +# What is KrakenD? + +[KrakenD](https://www.krakend.io/) is a stateless, high-performance, enterprise-ready, open-source API gateway written in Go. Its engine (formerly known as *KrakenD Framework*) is now a **Linux Foundation Project** codenamed [Lura Project](https://luraproject.org/). Lura is the only enterprise-grade API Gateway hosted in a neutral, open forum. + +KrakenD is lightweight and straightforward, as it only requires writing the configuration file. No Go knowledge is required. It offers connectivity to internal and external services, data transformation and filtering, and aggregation of multiple data sources (APIs, gRPC, queues and pub/sub, lambda, etc.) simultaneously or in cascade. It protects access to your API, throughputs its usage, and integrates with many third-parties. + +All features are designed to offer extraordinary performance and infinite scalability. + +## How to use this image + +KrakenD only needs a single configuration file to create an API Gateway, although you can have a complex setup reflecting your organization structure. The configuration file(s) can live anywhere in the container, but the default location (the workdir) is `/etc/krakend`. + +To use the image, `COPY` your `krakend.json` file inside the container or mount it using a volume. The configuration is checked only once during the startup and never used again. Don't have a config file yet? Generate it with the [KrakenD Designer UI](https://designer.krakend.io). + +⚠️ **NOTICE**: KrakenD does not use live reload when your configuration changes. Restart the container. + +### Quick start + +You can start an empty gateway with a health check with the following commands: + +```bash +docker run -d -p 8080:8080 -v "$PWD:/etc/krakend/" krakend + +curl http://localhost:8080/__health +{"agents":{},"now":"2024-05-23 14:35:55.552591448 +0000 UTC m=+26.856583003","status":"ok"} +``` + +### More Examples + +The following are several examples of running KrakenD. By default, the command `run` is executed, but you can pass other commands and flags at the end of the run command. + +The configuration files are taken from the current directory (`$PWD`). Therefore, all examples expect to find at least the file `krakend.json`. + +#### Run with the debug enabled (flag `-d`): + +This flag is **SAFE to use in production**. It's meant to enable KrakenD as a fake backend itself by enabling a [`/__debug` endpoint](https://www.krakend.io/docs/endpoints/debug-endpoint/) + +```bash +docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" krakend run -d -c /etc/krakend/krakend.json +``` + +#### Checking the syntax of your configuration file + +See the [check command](https://www.krakend.io/docs/commands/check/) + +```bash +docker run -it -v $PWD:/etc/krakend/ krakend check --config krakend.json +``` + +#### Show the help: + +```bash +docker run --rm -it krakend help +``` + +### Building your custom KrakenD image + +Most production deployments will not want to rely on mounting a volume for the container but to use their image based on `krakend`: + +Your `Dockerfile` could look like this: + +```Dockerfile +FROM krakend: +# NOTE: Avoid using :latest image on production. Stick to a major version instead. + +COPY krakend.json ./ + +# Check and test that the file is valid +RUN krakend check -t --lint-no-network -c krakend.json +``` + +If you want to manage your KrakenD configuration using multiple files and folders, reusing templates, and distributing the configuration amongst your teams, you can use the [flexible configuration (FC)](https://www.krakend.io/docs/configuration/flexible-config/). The following `Dockerfile` combines FC, the `krakend check` command, and a 2-step build. + +```Dockerfile +FROM krakend: as builder + +COPY krakend.tmpl . +COPY config . + +# Save temporary output file to /tmp to avoid permission errors +RUN FC_ENABLE=1 \ + FC_OUT=/tmp/krakend.json \ + FC_PARTIALS="/etc/krakend/partials" \ + FC_SETTINGS="/etc/krakend/settings" \ + FC_TEMPLATES="/etc/krakend/templates" \ + krakend check -d -t -c krakend.tmpl + +# Copy the output file only and discard any other files +FROM krakend: +COPY --from=builder /tmp/krakend.json . +``` + +Then build with `docker build -t my_krakend .` + +The configuration above assumes you have a folder structure like the following: + + . + ├── config + │ ├── partials + │ ├── settings + │ │ └── env.json + │ └── templates + │ └── some.tmpl + ├── Dockerfile + └── krakend.tmpl + +### Docker Compose example + +Finally, a simple `docker-compose` file to start KrakenD with your API would be: + +```yaml +version: "3" +services: + krakend: + image: krakend: + ports: + - "8080:8080" + volumes: + - ./:/etc/krakend +``` + +And another one that uses the flexible configuration and a custom template filename (`my_krakend.tmpl`) on each start: + +```yaml +version: "3" +services: + krakend: + image: krakend: + ports: + - "8080:8080" + volumes: + - ./:/etc/krakend + environment: + - FC_ENABLE=1 + - FC_OUT=/tmp/krakend.json + - FC_PARTIALS="/etc/krakend/config/partials" + - FC_SETTINGS="/etc/krakend/config/settings/prod" + - FC_TEMPLATES="/etc/krakend/config/templates" + command: + command: ["krakend", "run", "-c", "krakend.tmpl", "-d"] +``` + +### Container permissions and commands + +All `krakend` commands are executed as `krakend` user (uid=1000), and the rest of the commands (e.g., `sh`) are executed as root. + +You can directly use sub-commands of `krakend` like `run`, `help`, `version`, `check`, `check-plugin`, or `test-plugin` as the entrypoint will add the `krakend` command automatically. For example, the following lines are equivalent: + +```bash +docker run --rm -it krakend help +docker run --rm -it krakend krakend help +``` + +# License + +View [license information](https://github.com/krakend/krakend-ce/blob/master/LICENSE) for the software contained in this image. + +As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). + +Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `krakend/` directory](https://github.com/docker-library/repo-info/tree/master/repos/krakend). + +As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. From 939fc2b95219f744303c9ddea67f2cc353e255c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 08:09:38 -0700 Subject: [PATCH 2030/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 54f6d080bf14..3553086608f3 100644 --- a/node/README.md +++ b/node/README.md @@ -60,17 +60,17 @@ WARNING: - [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bullseye-slim/Dockerfile) -- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.7-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/alpine3.20/Dockerfile) +- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.8-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.20/Dockerfile) -- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.7-alpine`, `18.20.7-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/alpine3.21/Dockerfile) +- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.8-alpine`, `18.20.8-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.21/Dockerfile) -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.7`, `18.20.7-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bookworm/Dockerfile) +- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.8`, `18.20.8-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bookworm/Dockerfile) -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.7-bookworm-slim`, `18.20.7-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bookworm-slim/Dockerfile) +- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.8-bookworm-slim`, `18.20.8-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bookworm-slim/Dockerfile) -- [`18-bullseye`, `18.20-bullseye`, `18.20.7-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bullseye/Dockerfile) +- [`18-bullseye`, `18.20-bullseye`, `18.20.8-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bullseye/Dockerfile) -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.7-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8a3f5368104b97735752f4f00c9599b7758a924d/18/bullseye-slim/Dockerfile) +- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.8-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bullseye-slim/Dockerfile) # Quick reference (cont.) From ba3e59261ef1215083692ff67c1ebead729a6a04 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 11:09:39 -0700 Subject: [PATCH 2031/2686] Run update.sh --- clojure/README.md | 138 +++++++++++++++++++++++----------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 42e558cc04d6..09a4216bf090 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-23-lein-2.11.2-alpine`, `temurin-23-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-23-lein`, `temurin-23-lein-2.11.2`, `temurin-23-lein-2.11.2-bookworm`, `temurin-23-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-23/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bookworm-slim`, `temurin-23-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-23/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye`, `temurin-23-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-23/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-bullseye-slim`, `temurin-23-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-23/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-23-lein-2.11.2-noble`, `temurin-23-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-23-alpine`, `temurin-23-tools-deps-1.12.0.1530-alpine`, `temurin-23-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-23-bookworm`, `temurin-23-tools-deps`, `temurin-23-tools-deps-1.12.0.1530`, `temurin-23-tools-deps-1.12.0.1530-bookworm`, `temurin-23-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-23/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-23-bookworm-slim`, `temurin-23-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-23-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bookworm-slim-23/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-23-bullseye`, `temurin-23-tools-deps-1.12.0.1530-bullseye`, `temurin-23-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-23/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-23-bullseye-slim`, `temurin-23-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-23-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/debian-bullseye-slim-23/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-23-noble`, `temurin-23-tools-deps-1.12.0.1530-noble`, `temurin-23-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d04b4119e6b0de20a3f6dcb2e936a59fd5d5a0a6/target/eclipse-temurin-23-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) From 6fea2761a3802b41fb22483eb0ba31fee6108c93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 12:09:41 -0700 Subject: [PATCH 2032/2686] Run update.sh --- dart/README.md | 4 ++-- fedora/README.md | 8 ++++---- ghost/README.md | 4 ++-- maven/README.md | 20 +++++++------------- neo4j/README.md | 8 ++++---- redmine/README.md | 6 ------ ruby/README.md | 12 ------------ wordpress/README.md | 24 ++++++++++++------------ xwiki/README.md | 6 ------ 9 files changed, 31 insertions(+), 61 deletions(-) diff --git a/dart/README.md b/dart/README.md index a301eaf68cf2..25f34600986c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/fb0246d1d736b5c2d66181251d06fb08847722ed/stable/bookworm/Dockerfile) +- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6bb6958ed35f37d55d6066bfee4d33f6874e0d9e/stable/bookworm/Dockerfile) -- [`3.8.0-171.1.beta-sdk`, `beta-sdk`, `3.8.0-171.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/fb0246d1d736b5c2d66181251d06fb08847722ed/beta/bookworm/Dockerfile) +- [`3.8.0-171.2.beta-sdk`, `beta-sdk`, `3.8.0-171.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6bb6958ed35f37d55d6066bfee4d33f6874e0d9e/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index df742c090cf4..e2c75be2dd7c 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`39`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2317ae452755c2e2107df65560bce2772b1b45b9/x86_64/Dockerfile) +- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f5bdda47877c6a4cbbdef5233fdcfb31e0a96040/x86_64/Dockerfile) -- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/0616ee9355775ebcceed32e1359150d621d25e7b/x86_64/Dockerfile) +- [`41`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/90f7c295f180a3cd860c0171efe092ee5e5e6ecc/x86_64/Dockerfile) -- [`41`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5b4598a47ac1b8eed278a0adf90e6da04e7216e3/x86_64/Dockerfile) +- [`42`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b3a0bf2d1b264da889847943ee2c1b31c60cca2e/x86_64/Dockerfile) -- [`42`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/3474df86c07e56c6e5525e7afc9f34f8ed1dc2aa/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/4bdf9fbe0c2f6f786dbdc5e0785fd2b634d99067/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index eb459551bc67..1a3ccdbf5a01 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.114.1`, `5.114`, `5`, `latest`](https://github.com/docker-library/ghost/blob/da50c4852923aff7d62a8e32dd92c41170d45971/5/debian/Dockerfile) +- [`5.115.0`, `5.115`, `5`, `latest`](https://github.com/docker-library/ghost/blob/928a4242f54a6b6ee2bd8c9a9f1c1eccbc107564/5/debian/Dockerfile) -- [`5.114.1-alpine`, `5.114-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/da50c4852923aff7d62a8e32dd92c41170d45971/5/alpine/Dockerfile) +- [`5.115.0-alpine`, `5.115-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/928a4242f54a6b6ee2bd8c9a9f1c1eccbc107564/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 803733715179..b7ea5ac10f1e 100644 --- a/maven/README.md +++ b/maven/README.md @@ -30,7 +30,7 @@ WARNING: - [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-focal/Dockerfile) -- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/87e4983f3606bd066dfaede1471e977a54df5ca2/eclipse-temurin-17/Dockerfile) +- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-17/Dockerfile) - [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-alpine/Dockerfile) @@ -42,11 +42,11 @@ WARNING: - [`3.9.9-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-jammy/Dockerfile) -- [`3.9.9-eclipse-temurin-23`, `3.9-eclipse-temurin-23`, `3-eclipse-temurin-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23/Dockerfile) +- [`3.9.9-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24/Dockerfile) -- [`3.9.9-eclipse-temurin-23-alpine`, `3.9-eclipse-temurin-23-alpine`, `3-eclipse-temurin-23-alpine`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23-alpine/Dockerfile) +- [`3.9.9-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-23-noble`, `3.9-eclipse-temurin-23-noble`, `3-eclipse-temurin-23-noble`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/eclipse-temurin-23-noble/Dockerfile) +- [`3.9.9-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24-noble/Dockerfile) - [`3.9.9-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8/Dockerfile) @@ -62,8 +62,6 @@ WARNING: - [`3.9.9-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-21-jammy/Dockerfile) -- [`3.9.9-ibm-semeru-23-jammy`, `3.9-ibm-semeru-23-jammy`, `3-ibm-semeru-23-jammy`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/ibm-semeru-23-jammy/Dockerfile) - - [`3.9.9-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11/Dockerfile) - [`3.9.9-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11-al2023/Dockerfile) @@ -88,13 +86,9 @@ WARNING: - [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-21-debian/Dockerfile) -- [`3.9.9-amazoncorretto-23`, `3.9-amazoncorretto-23`, `3-amazoncorretto-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/amazoncorretto-23/Dockerfile) - -- [`3.9.9-amazoncorretto-23-al2023`, `3.9-amazoncorretto-23-al2023`, `3-amazoncorretto-23-al2023`](https://github.com/carlossg/docker-maven/blob/1a9e1b5643b9d895484f8cd841e01262a174f14b/amazoncorretto-23-al2023/Dockerfile) - -- [`3.9.9-amazoncorretto-23-alpine`, `3.9-amazoncorretto-23-alpine`, `3-amazoncorretto-23-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-23-alpine/Dockerfile) +- [`3.9.9-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/amazoncorretto-24/Dockerfile) -- [`3.9.9-amazoncorretto-23-debian`, `3.9.9-amazoncorretto-23-debian-bookworm`, `3.9-amazoncorretto-23-debian`, `3.9-amazoncorretto-23-debian-bookworm`, `3-amazoncorretto-23-debian`, `3-amazoncorretto-23-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-23-debian/Dockerfile) +- [`3.9.9-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/amazoncorretto-24-alpine/Dockerfile) - [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8/Dockerfile) @@ -110,7 +104,7 @@ WARNING: - [`3.9.9-sapmachine-21`, `3.9.9-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-21/Dockerfile) -- [`3.9.9-sapmachine-23`, `3.9-sapmachine-23`, `3-sapmachine-23`](https://github.com/carlossg/docker-maven/blob/c4359a51cb0fe7bc7e552f3e039a0e77947bbffc/sapmachine-23/Dockerfile) +- [`3.9.9-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/sapmachine-24/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 244e504bbef6..76960b81bf4a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.02.0-community-bullseye`, `2025.02-community-bullseye`, `2025-community-bullseye`, `2025.02.0-community`, `2025.02-community`, `2025-community`, `2025.02.0-bullseye`, `2025.02-bullseye`, `2025-bullseye`, `2025.02.0`, `2025.02`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/bullseye/community/Dockerfile) +- [`2025.03.0-community-bullseye`, `2025.03-community-bullseye`, `2025-community-bullseye`, `2025.03.0-community`, `2025.03-community`, `2025-community`, `2025.03.0-bullseye`, `2025.03-bullseye`, `2025-bullseye`, `2025.03.0`, `2025.03`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/bullseye/community/Dockerfile) -- [`2025.02.0-enterprise-bullseye`, `2025.02-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.02.0-enterprise`, `2025.02-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/bullseye/enterprise/Dockerfile) +- [`2025.03.0-enterprise-bullseye`, `2025.03-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.03.0-enterprise`, `2025.03-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/bullseye/enterprise/Dockerfile) -- [`2025.02.0-community-ubi9`, `2025.02-community-ubi9`, `2025-community-ubi9`, `2025.02.0-ubi9`, `2025.02-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/ubi9/community/Dockerfile) +- [`2025.03.0-community-ubi9`, `2025.03-community-ubi9`, `2025-community-ubi9`, `2025.03.0-ubi9`, `2025.03-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/ubi9/community/Dockerfile) -- [`2025.02.0-enterprise-ubi9`, `2025.02-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7e90062e9965c3d4cf6e878cee72f112bef21490/2025.02.0/ubi9/enterprise/Dockerfile) +- [`2025.03.0-enterprise-ubi9`, `2025.03-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/ubi9/enterprise/Dockerfile) - [`5.26.4-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.4-community`, `5.26-community`, `5-community`, `5.26.4-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.4`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/bullseye/community/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 0b4c959634b1..e71a563d47a4 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -36,12 +36,6 @@ WARNING: - [`5.1.7-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/alpine3.20/Dockerfile) -- [`5.0.12`, `5.0`, `5.0.12-bookworm`, `5.0-bookworm`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/bookworm/Dockerfile) - -- [`5.0.12-alpine3.21`, `5.0-alpine3.21`, `5.0.12-alpine`, `5.0-alpine`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/alpine3.21/Dockerfile) - -- [`5.0.12-alpine3.20`, `5.0-alpine3.20`](https://github.com/docker-library/redmine/blob/16b54a8b32b60af14af5917888e8abff62fffe2a/5.0/alpine3.20/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/ruby/README.md b/ruby/README.md index b155d84c3f2f..6b78b5dd9a91 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -60,18 +60,6 @@ WARNING: - [`3.2.8-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.20/Dockerfile) -- [`3.1.7-bookworm`, `3.1-bookworm`, `3.1.7`, `3.1`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/bookworm/Dockerfile) - -- [`3.1.7-slim-bookworm`, `3.1-slim-bookworm`, `3.1.7-slim`, `3.1-slim`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/slim-bookworm/Dockerfile) - -- [`3.1.7-bullseye`, `3.1-bullseye`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/bullseye/Dockerfile) - -- [`3.1.7-slim-bullseye`, `3.1-slim-bullseye`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/slim-bullseye/Dockerfile) - -- [`3.1.7-alpine3.21`, `3.1-alpine3.21`, `3.1.7-alpine`, `3.1-alpine`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/alpine3.21/Dockerfile) - -- [`3.1.7-alpine3.20`, `3.1-alpine3.20`](https://github.com/docker-library/ruby/blob/5331b92f3bb60480a551b28b325e5c312d5ee794/3.1/alpine3.20/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/wordpress/README.md b/wordpress/README.md index 1578e494f7d3..856d6efb8c1e 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-beta3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-beta3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-RC1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-beta3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-RC1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-beta3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-RC1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-beta3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-beta3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-beta3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-beta3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-RC1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-beta3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-beta3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-RC1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-beta3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-beta3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-RC1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-beta3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-beta3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-RC1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-beta3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-RC1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-beta3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-RC1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-beta3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-beta3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-RC1-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC1-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-beta3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-RC1-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-beta3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1245775665b1caed023cede1b030a599daa8b0ed/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-RC1-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 2a6905674559..940a3e2ec4f7 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -42,12 +42,6 @@ WARNING: - [`16.4-mariadb-tomcat`, `16.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mariadb-tomcat/Dockerfile) -- [`14`, `14.10`, `14.10.21`, `14-mysql-tomcat`, `14.10-mysql-tomcat`, `14.10.21-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mysql-tomcat/Dockerfile) - -- [`14-postgres-tomcat`, `14.10-postgres-tomcat`, `14.10.21-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/postgres-tomcat/Dockerfile) - -- [`14-mariadb-tomcat`, `14.10-mariadb-tomcat`, `14.10.21-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/ffbda2123e322160254f342751bce9b978412e5f/14/mariadb-tomcat/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 9c84286f2714da8b95d5891fbf5c2a5aec990d1c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 14:09:37 -0700 Subject: [PATCH 2033/2686] Run update.sh --- adminer/README.md | 4 ++-- memcached/README.md | 4 ++-- openjdk/README.md | 50 ++++++++++++++++++++++----------------------- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index ef7b9b4256ed..24c3746e0f15 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.6`, `5`, `latest`, `5.0.6-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/ebb91920fab5b1e081b99b9945326d088e3c1e48/5/Dockerfile) +- [`5.1.0`, `5`, `latest`, `5.1.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/681be82fc7d6186825f481cb155e57ea9a1bbd28/5/Dockerfile) -- [`5.0.6-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/ebb91920fab5b1e081b99b9945326d088e3c1e48/5/fastcgi/Dockerfile) +- [`5.1.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/681be82fc7d6186825f481cb155e57ea9a1bbd28/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 366920d8b6e4..20c64598e49b 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/e64542c6a83529d202147b8c7bbb8765e436ead8/1/debian/Dockerfile) +- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f79bca57610640a076edae61f01312a15df77a54/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/e64542c6a83529d202147b8c7bbb8765e436ead8/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/f79bca57610640a076edae61f01312a15df77a54/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 08d6cb690a4c..c610443ca722 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-15-jdk-oraclelinux9`, `25-ea-15-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-15-jdk-oracle`, `25-ea-15-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-16-jdk-oraclelinux9`, `25-ea-16-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-16-jdk-oracle`, `25-ea-16-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-15-jdk-oraclelinux8`, `25-ea-15-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-16-jdk-oraclelinux8`, `25-ea-16-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-15-jdk-bookworm`, `25-ea-15-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/bookworm/Dockerfile) +- [`25-ea-16-jdk-bookworm`, `25-ea-16-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/bookworm/Dockerfile) -- [`25-ea-15-jdk-slim-bookworm`, `25-ea-15-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-15-jdk-slim`, `25-ea-15-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-16-jdk-slim-bookworm`, `25-ea-16-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-16-jdk-slim`, `25-ea-16-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-15-jdk-bullseye`, `25-ea-15-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/bullseye/Dockerfile) +- [`25-ea-16-jdk-bullseye`, `25-ea-16-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/bullseye/Dockerfile) -- [`25-ea-15-jdk-slim-bullseye`, `25-ea-15-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-16-jdk-slim-bullseye`, `25-ea-16-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-15-jdk-windowsservercore-ltsc2025`, `25-ea-15-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-16-jdk-windowsservercore-ltsc2025`, `25-ea-16-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-15-jdk-windowsservercore-ltsc2022`, `25-ea-15-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-16-jdk-windowsservercore-ltsc2022`, `25-ea-16-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-15-jdk-windowsservercore-1809`, `25-ea-15-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-16-jdk-windowsservercore-1809`, `25-ea-16-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-15-jdk-nanoserver-ltsc2025`, `25-ea-15-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-16-jdk-nanoserver-ltsc2025`, `25-ea-16-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-15-jdk-nanoserver-ltsc2022`, `25-ea-15-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-16-jdk-nanoserver-ltsc2022`, `25-ea-16-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-15-jdk-nanoserver-1809`, `25-ea-15-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-16-jdk-nanoserver-1809`, `25-ea-16-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-15-jdk`, `25-ea-15`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-16-jdk`, `25-ea-16`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-15-jdk-windowsservercore`, `25-ea-15-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-16-jdk-windowsservercore`, `25-ea-16-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-15-jdk-nanoserver`, `25-ea-15-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-16-jdk-nanoserver`, `25-ea-16-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-15-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-15-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/673d66e1e1985f238438aaf2c5b21e952474f36c/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-16-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-16-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From d6417ec5b05a7a80b42b2b1b686f00d4a4270f69 Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 16 Dec 2024 11:22:54 +0100 Subject: [PATCH 2034/2686] odoo: fix yaml indent for environments keyword --- odoo/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/content.md b/odoo/content.md index aecb5a61b3a4..8e45e2c3f519 100644 --- a/odoo/content.md +++ b/odoo/content.md @@ -132,9 +132,9 @@ services: ports: - "8069:8069" environment: - - HOST=mydb - - USER=odoo - - PASSWORD=myodoo + - HOST=mydb + - USER=odoo + - PASSWORD=myodoo mydb: image: postgres:15 environment: From 75635326b05031dfb4e406bb3bf0e0869be75655 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 16:09:54 -0700 Subject: [PATCH 2035/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index f86b7db76fd2..022f168b4664 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -183,9 +183,9 @@ services: ports: - "8069:8069" environment: - - HOST=mydb - - USER=odoo - - PASSWORD=myodoo + - HOST=mydb + - USER=odoo + - PASSWORD=myodoo mydb: image: postgres:15 environment: From 62c578cde5e66d53d3cbb00e473e09262b38f948 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 27 Mar 2025 17:09:47 -0700 Subject: [PATCH 2036/2686] Run update.sh --- amazonlinux/README.md | 4 +-- memcached/README.md | 6 ++--- open-liberty/README.md | 54 +++++++++++++++---------------------- websphere-liberty/README.md | 48 +++++++++++++-------------------- 4 files changed, 44 insertions(+), 68 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 9748d889ad69..067f56463f1c 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250303.0`](https://github.com/amazonlinux/container-images/blob/a640c23ce266704e41d5f29a1b7f29cfac3b911e/Dockerfile) +- [`2023`, `latest`, `2023.6.20250317.2`](https://github.com/amazonlinux/container-images/blob/fa7985f4004bb611837e2c10a7f20a7b622cf125/Dockerfile) -- [`2`, `2.0.20250305.0`](https://github.com/amazonlinux/container-images/blob/0c6f6095fa377f3e5f8c5e0e3a586eefa3e6a471/Dockerfile) +- [`2`, `2.0.20250321.0`](https://github.com/amazonlinux/container-images/blob/9d29ba6acd48a0eb4aa0613c43e40a8de728830c/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 20c64598e49b..c4274de94983 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f79bca57610640a076edae61f01312a15df77a54/1/debian/Dockerfile) +- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/836b883895e581d28aebdfb2aadc59c4233d0fd9/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/f79bca57610640a076edae61f01312a15df77a54/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/836b883895e581d28aebdfb2aadc59c4233d0fd9/1/alpine/Dockerfile) # Quick reference (cont.) @@ -34,7 +34,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) diff --git a/open-liberty/README.md b/open-liberty/README.md index e02dce274506..9d5ff383efd2 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.2-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk8) - -- [`25.0.0.2-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.2-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/kernel-slim/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.2-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk8) - -- [`25.0.0.2-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.2-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/f09518c0a25aa2a7440059191b02d7e75ba5658f/releases/25.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 286ded5d5706..4a5e302de5f0 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.2-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.ibmjava8) - -- [`25.0.0.2-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.2-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/kernel/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.2-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.ibmjava8) - -- [`25.0.0.2-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.2-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/87f2efcbed62e64542eb2a8555108a423ef5701d/ga/25.0.0.2/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From ea37b72462e2e90e6539ace2d77e05dba05dd2ea Mon Sep 17 00:00:00 2001 From: Adam Brousseau Date: Fri, 28 Mar 2025 10:14:55 -0400 Subject: [PATCH 2037/2686] Add Semeru Runtimes icon svg Signed-off-by: Adam Brousseau --- ibm-semeru-runtimes/logo.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 ibm-semeru-runtimes/logo.svg diff --git a/ibm-semeru-runtimes/logo.svg b/ibm-semeru-runtimes/logo.svg new file mode 100644 index 000000000000..79b7f2be10c0 --- /dev/null +++ b/ibm-semeru-runtimes/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file From 838107b07ea35251297bdfe3176be60d626a7919 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Mar 2025 14:09:48 -0700 Subject: [PATCH 2038/2686] Run update.sh --- clickhouse/README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index bac4b3baae3a..428592135b73 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,15 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/25.2.2.39/Dockerfile.ubuntu) +- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.2`, `25.3.2-jammy`, `25.3.2.39`, `25.3.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.3.2.39/Dockerfile.ubuntu) -- [`25.1`, `25.1-jammy`, `25.1.8`, `25.1.8-jammy`, `25.1.8.25`, `25.1.8.25-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/25.1.8.25/Dockerfile.ubuntu) +- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.2.2.39/Dockerfile.ubuntu) -- [`24.12`, `24.12-jammy`, `24.12.6`, `24.12.6-jammy`, `24.12.6.70`, `24.12.6.70-jammy`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.12.6.70/Dockerfile.ubuntu) +- [`25.1`, `25.1-jammy`, `25.1.8`, `25.1.8-jammy`, `25.1.8.25`, `25.1.8.25-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.1.8.25/Dockerfile.ubuntu) -- [`lts`, `lts-focal`, `24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.8.14.39/Dockerfile.ubuntu) - -- [`24.3`, `24.3-focal`, `24.3.18`, `24.3.18-focal`, `24.3.18.7`, `24.3.18.7-focal`](https://github.com/ClickHouse/docker-library/blob/3bcf01164f68ee4add1bf97aedf405c2956c88d3/server/24.3.18.7/Dockerfile.ubuntu) +- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/24.8.14.39/Dockerfile.ubuntu) # Quick reference (cont.) From b405ef16ee1266f6adf5edbf3cc0fdcc17837950 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 28 Mar 2025 15:09:42 -0700 Subject: [PATCH 2039/2686] Run update.sh --- api-firewall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 2a641d7a732a..ade856504511 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.8`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/9d436f593619de8d85f9da72330d37bdb5a052c6/0.8.8/Dockerfile) +- [`0.8.9`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/447d3785ef7a5aeae008abd74a3b387e2908cf3c/0.8.9/Dockerfile) # Quick reference (cont.) From 9130159c9e384e484bf7e48311f5c35d2e63e7d7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Mar 2025 10:09:37 -0700 Subject: [PATCH 2040/2686] Run update.sh --- archlinux/README.md | 6 +-- clearlinux/README.md | 2 +- gradle/README.md | 112 ++++++++++++++++++------------------------- 3 files changed, 51 insertions(+), 69 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 46b6ce29e6dc..dc25f5e5c84d 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.base) +- [`latest`, `base`, `base-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.base) -- [`base-devel`, `base-devel-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250323.0.325468`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fa8bc2a4257c5acb9cfb831bec8a6683eb15a3d5/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 595233c36215..e737e1148546 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/dca75611de9532455b01e015fa8e1bae4b2d2d4b/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fa4af2d9ebce5e7f5947194c975e5598de0bcdea/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index b6503282ab0d..17f451fe7589 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,117 +24,99 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble/Dockerfile) +- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-noble/Dockerfile) -- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy/Dockerfile) +- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-jammy/Dockerfile) -- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-alpine/Dockerfile) +- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-alpine/Dockerfile) -- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-corretto/Dockerfile) +- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-corretto/Dockerfile) -- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-ubi9/Dockerfile) +- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-ubi9/Dockerfile) -- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-noble-graal/Dockerfile) +- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-noble-graal/Dockerfile) -- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk21-jammy-graal/Dockerfile) +- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-jammy-graal/Dockerfile) -- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble/Dockerfile) +- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-noble/Dockerfile) -- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy/Dockerfile) +- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-jammy/Dockerfile) -- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal/Dockerfile) +- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-focal/Dockerfile) -- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-alpine/Dockerfile) +- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-alpine/Dockerfile) -- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-corretto/Dockerfile) +- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-corretto/Dockerfile) -- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-ubi9/Dockerfile) +- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-ubi9/Dockerfile) -- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-noble-graal/Dockerfile) +- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-noble-graal/Dockerfile) -- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-jammy-graal/Dockerfile) +- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-jammy-graal/Dockerfile) -- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk17-focal-graal/Dockerfile) +- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-focal-graal/Dockerfile) -- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-jammy/Dockerfile) +- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-jammy/Dockerfile) -- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-focal/Dockerfile) +- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-focal/Dockerfile) -- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-alpine/Dockerfile) +- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-alpine/Dockerfile) -- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-corretto/Dockerfile) +- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-corretto/Dockerfile) -- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk11-ubi9/Dockerfile) +- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-ubi9/Dockerfile) -- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-jammy/Dockerfile) +- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-jammy/Dockerfile) -- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-focal/Dockerfile) +- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-focal/Dockerfile) -- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-corretto/Dockerfile) +- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-corretto/Dockerfile) -- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk8-ubi9/Dockerfile) +- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-ubi9/Dockerfile) -- [`8.13.0-jdk23`, `8.13-jdk23`, `8-jdk23`, `jdk23`, `8.13.0-jdk23-noble`, `8.13-jdk23-noble`, `8-jdk23-noble`, `jdk23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) -- [`8.13.0-jdk23-alpine`, `8.13-jdk23-alpine`, `8-jdk23-alpine`, `jdk23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-alpine/Dockerfile) +- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-jammy/Dockerfile) -- [`8.13.0-jdk23-corretto`, `8.13-jdk23-corretto`, `8-jdk23-corretto`, `jdk23-corretto`, `8.13.0-jdk23-corretto-al2023`, `8.13-jdk23-corretto-al2023`, `8-jdk23-corretto-al2023`, `jdk23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-corretto/Dockerfile) +- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-focal/Dockerfile) -- [`8.13.0-jdk23-ubi`, `8.13-jdk23-ubi`, `8-jdk23-ubi`, `jdk23-ubi`, `8.13.0-jdk23-ubi-minimal`, `8.13-jdk23-ubi-minimal`, `8-jdk23-ubi-minimal`, `jdk23-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-ubi9/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-alpine/Dockerfile) -- [`8.13.0-jdk23-graal`, `8.13-jdk23-graal`, `8-jdk23-graal`, `jdk23-graal`, `8.13.0-jdk23-graal-noble`, `8.13-jdk23-graal-noble`, `8-jdk23-graal-noble`, `jdk23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk23-noble-graal/Dockerfile) +- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-corretto/Dockerfile) -- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-23`, `8.13-jdk-21-and-23`, `8-jdk-21-and-23`, `jdk-21-and-23`, `8.13.0-jdk-21-and-23-noble`, `8.13-jdk-21-and-23-noble`, `8-jdk-21-and-23-noble`, `jdk-21-and-23-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current/Dockerfile) +- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble-graal/Dockerfile) -- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-23-alpine`, `8.13-jdk-21-and-23-alpine`, `8-jdk-21-and-23-alpine`, `jdk-21-and-23-alpine`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-alpine/Dockerfile) +- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-jammy-graal/Dockerfile) -- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-23-corretto`, `8.13-jdk-21-and-23-corretto`, `8-jdk-21-and-23-corretto`, `jdk-21-and-23-corretto`, `8.13.0-jdk-21-and-23-corretto-al2023`, `8.13-jdk-21-and-23-corretto-al2023`, `8-jdk-21-and-23-corretto-al2023`, `jdk-21-and-23-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-corretto/Dockerfile) +- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-focal-graal/Dockerfile) -- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-23-graal`, `8.13-jdk-21-and-23-graal`, `8-jdk-21-and-23-graal`, `jdk-21-and-23-graal`, `8.13.0-jdk-21-and-23-graal-noble`, `8.13-jdk-21-and-23-graal-noble`, `8-jdk-21-and-23-graal-noble`, `jdk-21-and-23-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/774ac009567d0640091b8856705ad6a78b4468ae/jdk-lts-and-current-graal/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-noble/Dockerfile) +- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-focal/Dockerfile) -- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-jammy/Dockerfile) +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-focal/Dockerfile) +- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-corretto/Dockerfile) +- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-focal/Dockerfile) -- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-noble-graal/Dockerfile) +- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-corretto/Dockerfile) -- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-jammy-graal/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk17-focal-graal/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-focal/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-focal/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-focal/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-jammy/Dockerfile) - -- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-focal/Dockerfile) - -- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/961aa3cbce29dce959cb85c3f13f96e1550369ab/jdk8-corretto/Dockerfile) - -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-jammy/Dockerfile) - -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-focal/Dockerfile) - -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-alpine/Dockerfile) - -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk11-corretto/Dockerfile) - -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-jammy/Dockerfile) - -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-focal/Dockerfile) - -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/13a2179b95050890467b8f75a18e8981bd6795b6/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-corretto/Dockerfile) # Quick reference (cont.) From 5925858f053a5c060a8178ef850d2f8642af9b15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Mar 2025 11:09:49 -0700 Subject: [PATCH 2041/2686] Run update.sh --- alt/README.md | 6 ++--- ghost/README.md | 4 ++-- golang/README.md | 12 +++++----- photon/README.md | 4 ++-- php/README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++ rabbitmq/README.md | 12 +++++----- traefik/README.md | 24 +++++++++++++------- xwiki/README.md | 6 ++--- 8 files changed, 94 insertions(+), 30 deletions(-) diff --git a/alt/README.md b/alt/README.md index 64244d091a16..9ef377cc7f2e 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/fa2dd8158cb2fae6f6beb1b75ce521a906defdb6/x86_64/Dockerfile) +- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/141eb568487cf0a98374d173e8641a00e234459a/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/22fa2c4589ddd9a413c483e03258a8e337dfe195/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/37a06effa12c3a7fae2ed60d6ae73da507ea1817/x86_64/Dockerfile) -- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/c2d543714938d5ab0d474f584e0b11b527e08943/x86_64/Dockerfile) +- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/73a73fc0c51684d2c1eee3b6640a6577a4bea19e/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 1a3ccdbf5a01..ce49fc98bb50 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.115.0`, `5.115`, `5`, `latest`](https://github.com/docker-library/ghost/blob/928a4242f54a6b6ee2bd8c9a9f1c1eccbc107564/5/debian/Dockerfile) +- [`5.115.1`, `5.115`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c48ae00698d31330519820d2b4a32acc390744f0/5/debian/Dockerfile) -- [`5.115.0-alpine`, `5.115-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/928a4242f54a6b6ee2bd8c9a9f1c1eccbc107564/5/alpine/Dockerfile) +- [`5.115.1-alpine`, `5.115-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c48ae00698d31330519820d2b4a32acc390744f0/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index de672f3417ed..07248cb3fd37 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250322-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bookworm/Dockerfile) +- [`tip-20250329-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bookworm/Dockerfile) -- [`tip-20250322-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bullseye/Dockerfile) +- [`tip-20250329-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bullseye/Dockerfile) -- [`tip-20250322-alpine3.21`, `tip-alpine3.21`, `tip-20250322-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/alpine3.21/Dockerfile) +- [`tip-20250329-alpine3.21`, `tip-alpine3.21`, `tip-20250329-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/alpine3.21/Dockerfile) -- [`tip-20250322-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/alpine3.20/Dockerfile) +- [`tip-20250329-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250322`, `tip`: +- `tip-20250329`, `tip`: - - [`tip-20250322-bookworm`](https://github.com/docker-library/golang/blob/2bc5d098a0bbf63c05780aff5b44a57a94ee9135/tip/bookworm/Dockerfile) + - [`tip-20250329-bookworm`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 21f00f2ce14c..5da741b0aee0 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250323`, `latest`](https://github.com/vmware/photon-docker-image/blob/6ab5307cb25efdcb5190f1fcda0b14d47bbce86f/docker/Dockerfile) +- [`5.0`, `5.0-20250330`, `latest`](https://github.com/vmware/photon-docker-image/blob/b3a723cc8f73f119f7b16f4ae74b8fecd873041b/docker/Dockerfile) -- [`4.0`, `4.0-20250309`](https://github.com/vmware/photon-docker-image/blob/fb8974a7e05a681d8b31b3df850bd5203a1d3581/docker/Dockerfile) +- [`4.0`, `4.0-20250330`](https://github.com/vmware/photon-docker-image/blob/3fed3bcfda4b61e843efb9d71201c17997450839/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/php/README.md b/php/README.md index 007b26a91e0d..780d28d41c82 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.6RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.6RC1-bookworm`, `8.4-rc-bookworm`, `8.4.6RC1-cli`, `8.4-rc-cli`, `8.4.6RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.6RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.6RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.6RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.6RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.6RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.6RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.6RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.6RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.6RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.6RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.6RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.6RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.6RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.6RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.6RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.6RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.6RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.6RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.6RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.6RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.6RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.6RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.6RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.5-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.5-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.5-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.5`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/cli/Dockerfile) - [`8.4.5-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.5-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.5-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.20RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.20RC1-bookworm`, `8.3-rc-bookworm`, `8.3.20RC1-cli`, `8.3-rc-cli`, `8.3.20RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.20RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.20RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.20RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.20RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.20RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.20RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.20RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.20RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.20RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.20RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.20RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.20RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.20RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.20RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.20RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.20RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.20RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.20RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.20RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.20RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.20RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.20RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.20RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.19-cli-bookworm`, `8.3-cli-bookworm`, `8.3.19-bookworm`, `8.3-bookworm`, `8.3.19-cli`, `8.3-cli`, `8.3.19`, `8.3`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/cli/Dockerfile) - [`8.3.19-apache-bookworm`, `8.3-apache-bookworm`, `8.3.19-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/apache/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6b890a44827f..f9e8131f80f3 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/e71a6615d15bb2c4f91c437398ecbcb8f7d0d371/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/984ba672207fd9fe228aba07a3a38a8f0a29beca/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.5-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e71a6615d15bb2c4f91c437398ecbcb8f7d0d371/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/984ba672207fd9fe228aba07a3a38a8f0a29beca/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.5-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/292565a5bed3673c8c8885e275cbc13d382151f0/4.0/ubuntu/Dockerfile) +- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/aa9c780ec9844f7dfc622b3cfd54d642d50af8f1/4.0/ubuntu/Dockerfile) - [`4.0.7-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/292565a5bed3673c8c8885e275cbc13d382151f0/4.0/alpine/Dockerfile) +- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/aa9c780ec9844f7dfc622b3cfd54d642d50af8f1/4.0/alpine/Dockerfile) - [`4.0.7-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/0493ba78b10522172b98215343cc50dbebc87374/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ccb71776b16c0d07cb502988b421ec41c3bef932/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/0493ba78b10522172b98215343cc50dbebc87374/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/ccb71776b16c0d07cb502988b421ec41c3bef932/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 1526965b09d3..37d7f5a14855 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.3.4-windowsservercore-ltsc2022`, `3.3.4-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.0-rc1-windowsservercore-ltsc2022`, `3.4.0-rc1-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.4-windowsservercore-1809`, `3.3.4-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/1809/Dockerfile) +- [`v3.4.0-rc1-windowsservercore-1809`, `3.4.0-rc1-windowsservercore-1809`, `chaource-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/1809/Dockerfile) -- [`v3.3.4-nanoserver-ltsc2022`, `3.3.4-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.0-rc1-nanoserver-ltsc2022`, `3.4.0-rc1-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.4`, `3.3.4`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/dbb14d16f565c6b98affe491254d95cee5fc92e9/v3.3/alpine/Dockerfile) +- [`v3.4.0-rc1`, `3.4.0-rc1`, `chaource`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/alpine/Dockerfile) -- [`v2.11.21-windowsservercore-ltsc2022`, `2.11.21-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.5-windowsservercore-ltsc2022`, `3.3.5-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.21-windowsservercore-1809`, `2.11.21-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/1809/Dockerfile) +- [`v3.3.5-windowsservercore-1809`, `3.3.5-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/1809/Dockerfile) -- [`v2.11.21-nanoserver-ltsc2022`, `2.11.21-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.5-nanoserver-ltsc2022`, `3.3.5-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.21`, `2.11.21`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/747eab3667642ee3da6ac90ee18883d01d52ada8/v2.11/alpine/Dockerfile) +- [`v3.3.5`, `3.3.5`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/alpine/Dockerfile) + +- [`v2.11.22-windowsservercore-ltsc2022`, `2.11.22-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/servercore-ltsc2022/Dockerfile) + +- [`v2.11.22-windowsservercore-1809`, `2.11.22-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/1809/Dockerfile) + +- [`v2.11.22-nanoserver-ltsc2022`, `2.11.22-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + +- [`v2.11.22`, `2.11.22`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 940a3e2ec4f7..c088543db0dd 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.1`, `17.1.0`, `17-mysql-tomcat`, `17.1-mysql-tomcat`, `17.1.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/mysql-tomcat/Dockerfile) +- [`17`, `17.2`, `17.2.0`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.1-postgres-tomcat`, `17.1.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.1-mariadb-tomcat`, `17.1.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/a05f6588e431b904ccb6daecf728556b71165f6e/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.5`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mysql-tomcat/Dockerfile) From 6b6e0ae73555b692a534200ae696d13bc36936fc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Mar 2025 12:09:38 -0700 Subject: [PATCH 2042/2686] Run update.sh --- nats/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/nats/README.md b/nats/README.md index c3428aa1c25f..9e8bf1a61643 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.0-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.0-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/alpine3.21/Dockerfile) +- [`2.11.1-binary-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.1-binary-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/alpine3.21/Dockerfile) -- [`2.11.0-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.0-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/scratch/Dockerfile) +- [`2.11.1-binary-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.1-binary-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/scratch/Dockerfile) -- [`2.11.0-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.1-binary-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.11.0-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.1-binary-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) -- [`2.10.26-alpine3.21`, `2.10-alpine3.21`, `2.10.26-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/alpine3.21/Dockerfile) +- [`2.10.27-binary-alpine3.21`, `2.10-alpine3.21`, `2.10.27-binary-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/alpine3.21/Dockerfile) -- [`2.10.26-scratch`, `2.10-scratch`, `2.10.26-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/scratch/Dockerfile) +- [`2.10.27-binary-scratch`, `2.10-scratch`, `2.10.27-binary-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/scratch/Dockerfile) -- [`2.10.26-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.27-binary-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.26-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.27-binary-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.11.0`, `2.11`, `2`, `latest`: +- `2.11.1-binary`, `2.11`, `2`, `latest`: - - [`2.11.0-scratch`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/scratch/Dockerfile) - - [`2.11.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.1-binary-scratch`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/scratch/Dockerfile) + - [`2.11.1-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) -- `2.11.0-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.1-binary-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.0-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.1-binary-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/windowsservercore-1809/Dockerfile) -- `2.11.0-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.1-binary-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.1-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) -- `2.10.26`, `2.10`: +- `2.10.27-binary`, `2.10`: - - [`2.10.26-scratch`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/scratch/Dockerfile) - - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.27-binary-scratch`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/scratch/Dockerfile) + - [`2.10.27-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.26-windowsservercore`, `2.10-windowsservercore`: +- `2.10.27-binary-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.26-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.27-binary-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.26-nanoserver`, `2.10-nanoserver`: +- `2.10.27-binary-nanoserver`, `2.10-nanoserver`: - - [`2.10.26-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/9717156edb0b996edabe7a6523fcb858abb693f8/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.27-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 2ad5fbee1ea5bbef4a0954144174d24c90bf9d77 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 31 Mar 2025 18:09:43 -0700 Subject: [PATCH 2043/2686] Run update.sh --- couchbase/README.md | 2 ++ oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 8746db3a1f9b..0b9080f2e4a8 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -42,6 +42,8 @@ WARNING: - [`community-7.6.0`](https://github.com/couchbase/docker/blob/7148bc241bcdcf8961c34f8adf76ebfb2860ed83/community/couchbase-server/7.6.0/Dockerfile) +- [`7.2.7`, `enterprise-7.2.7`](https://github.com/couchbase/docker/blob/ae9a971db27050a4da598137fce7bd3d63396c24/enterprise/couchbase-server/7.2.7/Dockerfile) + - [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/857d7bcc814e241fd36aa4dc326dcab37e1d1e73/enterprise/couchbase-server/7.2.6/Dockerfile) - [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 8fae850098ec..0d58a6e48cfd 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/247cdabb356b1fef9106fa2b3ff33ed5501f5a3d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7-slim-fips/Dockerfile) # Quick reference (cont.) From 41d8fe411f4479999cf441e8d1e7d3f2daa669b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 1 Apr 2025 15:30:20 +0200 Subject: [PATCH 2044/2686] Update php/variant-fpm.md Fixes docker-library/docs#2558 --- php/variant-fpm.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/php/variant-fpm.md b/php/variant-fpm.md index 06ba66065500..6a68377ec393 100644 --- a/php/variant-fpm.md +++ b/php/variant-fpm.md @@ -1,14 +1,14 @@ ## `%%IMAGE%%:-fpm` -This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See [the PHP-FPM website](https://php-fpm.org/) for more information about PHP-FPM. +This variant contains [PHP’s FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [PHP-FPM.org](https://php-fpm.org/) -- [simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) -- [very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) +- [FPM’s Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) +- [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) - [Apache httpd Wiki example](https://wiki.apache.org/httpd/PHPFPMWordpress) From 7b88d6d2d42e5141a920197db8a016bbce098ad8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Apr 2025 10:10:01 -0700 Subject: [PATCH 2045/2686] Run update.sh --- golang/README.md | 92 ++++++++++++++++++++++++------------------------ swift/README.md | 66 ++++++++++++++++++---------------- 2 files changed, 81 insertions(+), 77 deletions(-) diff --git a/golang/README.md b/golang/README.md index 07248cb3fd37..63c01d98557f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.24.1-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bookworm/Dockerfile) +- [`1.24.2-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bookworm/Dockerfile) -- [`1.24.1-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bullseye/Dockerfile) +- [`1.24.2-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bullseye/Dockerfile) -- [`1.24.1-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.1-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/alpine3.21/Dockerfile) +- [`1.24.2-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.2-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/alpine3.21/Dockerfile) -- [`1.24.1-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/alpine3.20/Dockerfile) +- [`1.24.2-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/alpine3.20/Dockerfile) -- [`1.24.1-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.2-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.1-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.2-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.1-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) +- [`1.24.2-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) -- [`1.24.1-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.2-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.1-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.2-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.1-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-1809/Dockerfile) +- [`1.24.2-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-1809/Dockerfile) -- [`1.23.7-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bookworm/Dockerfile) +- [`1.23.8-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bookworm/Dockerfile) -- [`1.23.7-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bullseye/Dockerfile) +- [`1.23.8-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bullseye/Dockerfile) -- [`1.23.7-alpine3.21`, `1.23-alpine3.21`, `1.23.7-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/alpine3.21/Dockerfile) +- [`1.23.8-alpine3.21`, `1.23-alpine3.21`, `1.23.8-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/alpine3.21/Dockerfile) -- [`1.23.7-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/alpine3.20/Dockerfile) +- [`1.23.8-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/alpine3.20/Dockerfile) -- [`1.23.7-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.8-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.7-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.8-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.7-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.8-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.7-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.8-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.7-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.8-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.7-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) - [`tip-20250329-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bookworm/Dockerfile) @@ -78,43 +78,43 @@ WARNING: ## Shared Tags -- `1.24.1`, `1.24`, `1`, `latest`: +- `1.24.2`, `1.24`, `1`, `latest`: - - [`1.24.1-bookworm`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/bookworm/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.2-bookworm`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bookworm/Dockerfile) + - [`1.24.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.1-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.2-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.1-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.1-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.2-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.1-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24.1-nanoserver-1809`](https://github.com/docker-library/golang/blob/7ba64590f6cd1268b3604329ac28e5fd7400ca79/1.24/windows/nanoserver-1809/Dockerfile) + - [`1.24.2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-1809/Dockerfile) -- `1.23.7`, `1.23`: +- `1.23.8`, `1.23`: - - [`1.23.7-bookworm`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/bookworm/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.8-bookworm`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bookworm/Dockerfile) + - [`1.23.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.7-windowsservercore`, `1.23-windowsservercore`: +- `1.23.8-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.7-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0f7ef098851cca2bad10b356ebbcecc7b83f6f56/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.7-nanoserver`, `1.23-nanoserver`: +- `1.23.8-nanoserver`, `1.23-nanoserver`: - - [`1.23.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.7-nanoserver-1809`](https://github.com/docker-library/golang/blob/01dc540d7fbab91ada1a5ec0ae6a215ab734de31/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.8-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) - `tip-20250329`, `tip`: diff --git a/swift/README.md b/swift/README.md index bfde9f1e4b14..b775e58386cf 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,31 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) +- [`6.1.0`, `6.1`, `6.1.0-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/24.04/Dockerfile) -- [`6.0.3-slim`, `6.0-slim`, `6.0.3-noble-slim`, `6.0-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/slim/Dockerfile) +- [`6.1.0-slim`, `6.1-slim`, `6.1.0-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/24.04/slim/Dockerfile) -- [`6.0.3-jammy`, `6.0-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/Dockerfile) +- [`6.1.0-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/22.04/Dockerfile) -- [`6.0.3-jammy-slim`, `6.0-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/slim/Dockerfile) +- [`6.1.0-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/22.04/slim/Dockerfile) -- [`6.0.3-focal-slim`, `6.0-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/slim/Dockerfile) +- [`6.1.0-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/20.04/slim/Dockerfile) -- [`6.0.3-focal`, `6.0-focal`, `focal`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/Dockerfile) +- [`6.1.0-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/20.04/Dockerfile) -- [`6.0.3-bookworm`, `6.0-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/debian/12/Dockerfile) +- [`6.1.0-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/debian/12/Dockerfile) -- [`6.0.3-fedora39`, `6.0-fedora39`, `fedora39`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/fedora/39/Dockerfile) +- [`6.1.0-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/amazonlinux/2/Dockerfile) -- [`6.0.3-amazonlinux2`, `6.0-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/Dockerfile) +- [`6.1.0-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/amazonlinux/2/slim/Dockerfile) -- [`6.0.3-amazonlinux2-slim`, `6.0-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/slim/Dockerfile) +- [`6.1.0-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/rhel-ubi/9/Dockerfile) -- [`6.0.3-rhel-ubi9`, `6.0-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/Dockerfile) +- [`6.1.0-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/rhel-ubi/9/slim/Dockerfile) -- [`6.0.3-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/slim/Dockerfile) +- [`6.1.0-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/windows/LTSC2022/Dockerfile) -- [`6.0.3-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/windows/LTSC2022/Dockerfile) +- [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) + +- [`6.0.3-slim`, `6.0-slim`, `6.0.3-noble-slim`, `6.0-noble-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/slim/Dockerfile) + +- [`6.0.3-jammy`, `6.0-jammy`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/Dockerfile) + +- [`6.0.3-jammy-slim`, `6.0-jammy-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/slim/Dockerfile) + +- [`6.0.3-focal-slim`, `6.0-focal-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/slim/Dockerfile) + +- [`6.0.3-focal`, `6.0-focal`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/Dockerfile) + +- [`6.0.3-bookworm`, `6.0-bookworm`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/debian/12/Dockerfile) + +- [`6.0.3-amazonlinux2`, `6.0-amazonlinux2`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/Dockerfile) + +- [`6.0.3-amazonlinux2-slim`, `6.0-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/slim/Dockerfile) + +- [`6.0.3-rhel-ubi9`, `6.0-rhel-ubi9`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/Dockerfile) + +- [`6.0.3-rhel-ubi9-slim`, `6.0-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/rhel-ubi/9/slim/Dockerfile) + +- [`6.0.3-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/windows/LTSC2022/Dockerfile) - [`5.10.1`, `5.10`, `5.10.1-jammy`, `5.10-jammy`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/Dockerfile) @@ -64,8 +86,6 @@ WARNING: - [`5.10.1-bookworm`, `5.10-bookworm`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/debian/12/Dockerfile) -- [`5.10.1-fedora39`, `5.10-fedora39`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/fedora/39/Dockerfile) - - [`5.10.1-amazonlinux2`, `5.10-amazonlinux2`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/Dockerfile) - [`5.10.1-amazonlinux2-slim`, `5.10-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/amazonlinux/2/slim/Dockerfile) @@ -94,22 +114,6 @@ WARNING: - [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) -- [`5.8.1`, `5.8`, `5.8.1-jammy`, `5.8-jammy`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/Dockerfile) - -- [`5.8.1-slim`, `5.8-slim`, `5.8.1-jammy-slim`, `5.8-jammy-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/22.04/slim/Dockerfile) - -- [`5.8.1-focal-slim`, `5.8-focal-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/slim/Dockerfile) - -- [`5.8.1-focal`, `5.8-focal`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/ubuntu/20.04/Dockerfile) - -- [`5.8.1-amazonlinux2`, `5.8-amazonlinux2`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/Dockerfile) - -- [`5.8.1-amazonlinux2-slim`, `5.8-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/amazonlinux/2/slim/Dockerfile) - -- [`5.8.1-rhel-ubi9`, `5.8-rhel-ubi9`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/Dockerfile) - -- [`5.8.1-rhel-ubi9-slim`, `5.8-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/0190ac8d812bfcfab0ee39d600116ab5e3243f48/5.8/rhel-ubi/9/slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From b0442065bd320a0425dbe6f851e45cdf46dce540 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Apr 2025 11:09:46 -0700 Subject: [PATCH 2046/2686] Run update.sh --- bash/README.md | 2 +- node/README.md | 12 ++++++------ odoo/README.md | 6 +++--- oraclelinux/README.md | 18 +++++++++--------- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/bash/README.md b/bash/README.md index 33be95f6c0bc..61a34031a1be 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250324`, `devel`, `devel-20250324-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/2e00749eb94aa5c4709d5831708c0aefc60d8dd2/devel/Dockerfile) +- [`devel-20250331`, `devel`, `devel-20250331-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d0de34dfee2b0ef58f9984f4f9f8ec4d0ca68f8b/devel/Dockerfile) - [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) diff --git a/node/README.md b/node/README.md index 3553086608f3..1a744a52a7e2 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.10-alpine3.20`, `23.10.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.10-alpine`, `23.10-alpine3.21`, `23.10.0-alpine`, `23.10.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.0-alpine`, `23.11.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.10`, `23.10-bookworm`, `23.10.0`, `23.10.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.0`, `23.11.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.10-bookworm-slim`, `23.10-slim`, `23.10.0-bookworm-slim`, `23.10.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.0-bookworm-slim`, `23.11.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.10-bullseye`, `23.10.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.11-bullseye`, `23.11.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.10-bullseye-slim`, `23.10.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b788efbf945fcfdfbaa961ad1f081b89adb0c56f/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 022f168b4664..716f064bb2b5 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250320`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/18.0/Dockerfile) +- [`18.0-20250401`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/18.0/Dockerfile) -- [`17.0-20250320`, `17.0`, `17`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/17.0/Dockerfile) +- [`17.0-20250401`, `17.0`, `17`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/17.0/Dockerfile) -- [`16.0-20250320`, `16.0`, `16`](https://github.com/odoo/docker/blob/7f951108da3d376c59a8fe25523f044060870534/16.0/Dockerfile) +- [`16.0-20250401`, `16.0`, `16`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/16.0/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0d58a6e48cfd..a2a9f85c51b2 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6d70713ac71dc3b33cf58769c134e376354d278d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7-slim-fips/Dockerfile) # Quick reference (cont.) From e9851c7e4944cc5f3eb79363fa44950d43a7bb49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 1 Apr 2025 22:20:42 +0200 Subject: [PATCH 2047/2686] Use ASCII apostrophe Co-authored-by: Tianon Gravi --- php/variant-fpm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/variant-fpm.md b/php/variant-fpm.md index 6a68377ec393..5ea228701ea5 100644 --- a/php/variant-fpm.md +++ b/php/variant-fpm.md @@ -1,12 +1,12 @@ ## `%%IMAGE%%:-fpm` -This variant contains [PHP’s FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. +This variant contains [PHP's FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [FPM’s Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [FPM's Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) - [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) - [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) From b1b94a5765a38d052ee157957b6a3174d97c42a1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Apr 2025 16:09:42 -0700 Subject: [PATCH 2048/2686] Run update.sh --- haxe/README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index 0db90ed4db99..d9caeaa8fbbe 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -42,8 +42,6 @@ WARNING: - [`4.3.6-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.18/Dockerfile) -- [`4.3.6-alpine3.17`, `4.3-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.17/Dockerfile) - - [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bullseye/Dockerfile) @@ -58,9 +56,7 @@ WARNING: - [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.18/Dockerfile) -- [`4.2.5-alpine3.17`, `4.2-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.17/Dockerfile) - -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/bullseye/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) @@ -72,9 +68,7 @@ WARNING: - [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.18/Dockerfile) -- [`4.1.5-alpine3.17`, `4.1-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.17/Dockerfile) - -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/bullseye/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) @@ -86,8 +80,6 @@ WARNING: - [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.18/Dockerfile) -- [`4.0.5-alpine3.17`, `4.0-alpine3.17`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.17/Dockerfile) - ## Shared Tags - `4.3.6`, `4.3`, `latest`: @@ -114,7 +106,7 @@ WARNING: - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) @@ -125,7 +117,7 @@ WARNING: - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) From 4113f2c8f77308c24c200a3ee5e72233f5a75716 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Apr 2025 17:10:07 -0700 Subject: [PATCH 2049/2686] Run update.sh --- amazonlinux/README.md | 2 +- memcached/README.md | 4 ++-- rabbitmq/README.md | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 067f56463f1c..f16222f63765 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.6.20250317.2`](https://github.com/amazonlinux/container-images/blob/fa7985f4004bb611837e2c10a7f20a7b622cf125/Dockerfile) +- [`2023`, `latest`, `2023.7.20250331.0`](https://github.com/amazonlinux/container-images/blob/9b3e1c1b1599e607f934d7564bbf93e007fcfcb6/Dockerfile) - [`2`, `2.0.20250321.0`](https://github.com/amazonlinux/container-images/blob/9d29ba6acd48a0eb4aa0613c43e40a8de728830c/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index c4274de94983..36f82bb3edca 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/836b883895e581d28aebdfb2aadc59c4233d0fd9/1/debian/Dockerfile) +- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f8aa037f70e96f77b3797a2ead8fa0e5dcdec2c1/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/836b883895e581d28aebdfb2aadc59c4233d0fd9/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/f8aa037f70e96f77b3797a2ead8fa0e5dcdec2c1/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f9e8131f80f3..57b7972f93f5 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/984ba672207fd9fe228aba07a3a38a8f0a29beca/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-beta.5-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/984ba672207fd9fe228aba07a3a38a8f0a29beca/4.1-rc/alpine/Dockerfile) +- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.1-rc/alpine/Dockerfile) - [`4.1.0-beta.5-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/aa9c780ec9844f7dfc622b3cfd54d642d50af8f1/4.0/ubuntu/Dockerfile) +- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.0/ubuntu/Dockerfile) - [`4.0.7-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/aa9c780ec9844f7dfc622b3cfd54d642d50af8f1/4.0/alpine/Dockerfile) +- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.0/alpine/Dockerfile) - [`4.0.7-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ccb71776b16c0d07cb502988b421ec41c3bef932/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/ccb71776b16c0d07cb502988b421ec41c3bef932/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From ba73526a297b7817fdae8467f6faa17acd4a6639 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Apr 2025 10:09:44 -0700 Subject: [PATCH 2050/2686] Run update.sh --- monica/README.md | 14 +++++++------- neo4j/README.md | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/monica/README.md b/monica/README.md index db01d744428e..cbd7f67c1696 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/apache/Dockerfile) +- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/apache/Dockerfile) -- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm/Dockerfile) +- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/fpm-alpine/Dockerfile) -- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/92af56dec9f147c16916ed4537dd4263108dcbf3/4/fpm-alpine/Dockerfile) +- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/fpm/Dockerfile) -- [`5.0.0-beta.4-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/apache/Dockerfile) +- [`5.0.0-beta.4-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/apache/Dockerfile) -- [`5.0.0-beta.4-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm/Dockerfile) +- [`5.0.0-beta.4-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/fpm-alpine/Dockerfile) -- [`5.0.0-beta.4-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/4ad283502e6b5411bacc3dcf3b55ff5dd57f29ee/5/fpm-alpine/Dockerfile) +- [`5.0.0-beta.4-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/fpm/Dockerfile) # Quick reference (cont.) @@ -42,7 +42,7 @@ WARNING: [https://github.com/monicahq/docker/issues](https://github.com/monicahq/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/monica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/monica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/monica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/monica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/monica/), [`i386`](https://hub.docker.com/r/i386/monica/), [`mips64le`](https://hub.docker.com/r/mips64le/monica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/monica/), [`s390x`](https://hub.docker.com/r/s390x/monica/) + [`amd64`](https://hub.docker.com/r/amd64/monica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/monica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/monica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/monica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/monica/), [`i386`](https://hub.docker.com/r/i386/monica/), [`mips64le`](https://hub.docker.com/r/mips64le/monica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/monica/), [`riscv64`](https://hub.docker.com/r/riscv64/monica/), [`s390x`](https://hub.docker.com/r/s390x/monica/) - **Published image artifact details**: [repo-info repo's `repos/monica/` directory](https://github.com/docker-library/repo-info/blob/master/repos/monica) ([history](https://github.com/docker-library/repo-info/commits/master/repos/monica)) diff --git a/neo4j/README.md b/neo4j/README.md index 76960b81bf4a..c08b2de217f7 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.03.0-enterprise-ubi9`, `2025.03-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/ubi9/enterprise/Dockerfile) -- [`5.26.4-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.4-community`, `5.26-community`, `5-community`, `5.26.4-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.4`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/bullseye/community/Dockerfile) +- [`5.26.5-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.5-community`, `5.26-community`, `5-community`, `5.26.5-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.5`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/bullseye/community/Dockerfile) -- [`5.26.4-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.4-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/bullseye/enterprise/Dockerfile) +- [`5.26.5-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.5-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/bullseye/enterprise/Dockerfile) -- [`5.26.4-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.4-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/ubi9/community/Dockerfile) +- [`5.26.5-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.5-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/ubi9/community/Dockerfile) -- [`5.26.4-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/58586374f1e13c8c7eb1f42fad12bcaf254ed46b/5.26.4/ubi9/enterprise/Dockerfile) +- [`5.26.5-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/ubi9/enterprise/Dockerfile) - [`4.4.42`, `4.4.42-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/community/Dockerfile) From e332e1675027f5ccb49928adf12b74a3f8cdf34f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Apr 2025 11:09:56 -0700 Subject: [PATCH 2051/2686] Run update.sh --- haproxy/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- wordpress/README.md | 24 ++++++++++++------------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index c68685ce2938..125af66ad482 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev8`, `3.2-dev`, `3.2-dev8-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/a3a9a360d63ff6f9e50e7dc3aeb7184911ef580d/3.2/Dockerfile) +- [`3.2-dev9`, `3.2-dev`, `3.2-dev9-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/da8223cae7f24a16e7897b87f7571579e942a572/3.2/Dockerfile) -- [`3.2-dev8-alpine`, `3.2-dev-alpine`, `3.2-dev8-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/a3a9a360d63ff6f9e50e7dc3aeb7184911ef580d/3.2/alpine/Dockerfile) +- [`3.2-dev9-alpine`, `3.2-dev-alpine`, `3.2-dev9-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/da8223cae7f24a16e7897b87f7571579e942a572/3.2/alpine/Dockerfile) - [`3.1.6`, `3.1`, `latest`, `3.1.6-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 57b7972f93f5..fae7c08d434d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-beta.5`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-rc.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/62229bb2a73f949745a1934a1e10004f5439ec3c/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-beta.5-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-rc.1-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-beta.5-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.1-rc/alpine/Dockerfile) +- [`4.1.0-rc.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/62229bb2a73f949745a1934a1e10004f5439ec3c/4.1-rc/alpine/Dockerfile) -- [`4.1.0-beta.5-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-rc.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) - [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.0/ubuntu/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 856d6efb8c1e..7b68e43d95e1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-RC1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-RC2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-RC1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-RC2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-RC1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-RC2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-RC1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-RC2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-RC1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-RC2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-RC1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-RC2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-RC1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-RC2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-RC1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-RC2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-RC1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-RC2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-RC1-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC1-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-RC2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-RC1-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-RC2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-RC1-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/e9f5aa3fa35a7b74254bbb527fdcd7c40b4bebb0/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-RC2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 07746ffeb5187ba2805b1264e862edd425058196 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Apr 2025 14:09:56 -0700 Subject: [PATCH 2052/2686] Run update.sh --- swipl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swipl/README.md b/swipl/README.md index 400af0e964ec..b9c0c3c4bbe0 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.21`](https://github.com/SWI-Prolog/docker-swipl/blob/dbf90dada050f242dbdde22bb5f82ffb79dda87e/9.3.21/bookworm/Dockerfile) +- [`latest`, `9.3.22`](https://github.com/SWI-Prolog/docker-swipl/blob/2fb5a08b11bbdcbeb445b37afbe4a0bbe8c6ec08/9.3.22/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/dbf90dada050f242dbdde22bb5f82ffb79dda87e/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/2fb5a08b11bbdcbeb445b37afbe4a0bbe8c6ec08/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 042c63e882f8bd4f8e842843c76eafd11f8c0e08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Apr 2025 15:09:55 -0700 Subject: [PATCH 2053/2686] Run update.sh --- spiped/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spiped/README.md b/spiped/README.md index 153a4a42a139..1915de1bc8d0 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.3`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/917d35aa378a013b033fb1eaf34acdef342fa7b6/1.6/Dockerfile) +- [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/6cfa21da993903156ca7347b6f0f9e8111d46671/1.6/Dockerfile) -- [`1.6.3-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/917d35aa378a013b033fb1eaf34acdef342fa7b6/1.6/alpine/Dockerfile) +- [`1.6.4-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/6cfa21da993903156ca7347b6f0f9e8111d46671/1.6/alpine/Dockerfile) # Quick reference (cont.) From 57061ef7df263ded79ed3c2ce15d62e0a04e844f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Apr 2025 17:09:48 -0700 Subject: [PATCH 2054/2686] Run update.sh --- drupal/README.md | 8 ++++---- php/README.md | 8 ++++---- wordpress/README.md | 8 ++++---- yourls/README.md | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 316f8a9bba16..98ef6e2b5685 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -299,15 +299,15 @@ Some of these tags may have names like bookworm or bullseye in them. These are t ## `drupal:-fpm` -This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See [the PHP-FPM website](https://php-fpm.org/) for more information about PHP-FPM. +This variant contains [PHP's FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [PHP-FPM.org](https://php-fpm.org/) -- [simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) -- [very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) +- [FPM's Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) +- [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) - [Apache httpd Wiki example](https://wiki.apache.org/httpd/PHPFPMWordpress) diff --git a/php/README.md b/php/README.md index 780d28d41c82..11a4d5959cd5 100644 --- a/php/README.md +++ b/php/README.md @@ -439,15 +439,15 @@ A similar technique could be employed for other Apache configuration options. ## `php:-fpm` -This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See [the PHP-FPM website](https://php-fpm.org/) for more information about PHP-FPM. +This variant contains [PHP's FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [PHP-FPM.org](https://php-fpm.org/) -- [simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) -- [very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) +- [FPM's Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) +- [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) - [Apache httpd Wiki example](https://wiki.apache.org/httpd/PHPFPMWordpress) diff --git a/wordpress/README.md b/wordpress/README.md index 7b68e43d95e1..f061e1652617 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -265,15 +265,15 @@ This is the defacto image. If you are unsure about what your needs are, you prob ## `wordpress:-fpm` -This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See [the PHP-FPM website](https://php-fpm.org/) for more information about PHP-FPM. +This variant contains [PHP's FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [PHP-FPM.org](https://php-fpm.org/) -- [simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) -- [very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) +- [FPM's Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) +- [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) - [Apache httpd Wiki example](https://wiki.apache.org/httpd/PHPFPMWordpress) diff --git a/yourls/README.md b/yourls/README.md index f4da689e1d7a..accf7fb86e39 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -195,15 +195,15 @@ This is the defacto image. If you are unsure about what your needs are, you prob ## `yourls:-fpm` -This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See [the PHP-FPM website](https://php-fpm.org/) for more information about PHP-FPM. +This variant contains [PHP's FastCGI Process Manager (FPM)](https://www.php.net/fpm), which is the recommended FastCGI implementation for PHP. In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required. Some potentially helpful resources: -- [PHP-FPM.org](https://php-fpm.org/) -- [simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) -- [very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) +- [FPM's Official Configuration Reference](https://www.php.net/manual/en/install.fpm.configuration.php) +- [Simplified example by @md5](https://gist.github.com/md5/d9206eacb5a0ff5d6be0) +- [Very detailed article by Pascal Landau](https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/) - [Stack Overflow discussion](https://stackoverflow.com/q/29905953/433558) - [Apache httpd Wiki example](https://wiki.apache.org/httpd/PHPFPMWordpress) From fe2d49cd2274800a99bccdbd4c4df8971ed2201b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Apr 2025 10:09:51 -0700 Subject: [PATCH 2055/2686] Run update.sh --- rust/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rust/README.md b/rust/README.md index 2fb559a26f35..b0ae3dba2eeb 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.85-bullseye`, `1.85.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.86-bullseye`, `1.86.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.85-slim-bullseye`, `1.85.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.86-slim-bullseye`, `1.86.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.85-bookworm`, `1.85.1-bookworm`, `bookworm`, `1`, `1.85`, `1.85.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.86-bookworm`, `1.86.0-bookworm`, `bookworm`, `1`, `1.86`, `1.86.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.85-slim-bookworm`, `1.85.1-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.85-slim`, `1.85.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.86-slim-bookworm`, `1.86.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.86-slim`, `1.86.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.85-alpine3.20`, `1.85.1-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.86-alpine3.20`, `1.86.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.85-alpine3.21`, `1.85.1-alpine3.21`, `alpine3.21`, `1-alpine`, `1.85-alpine`, `1.85.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/decf7685a03d1d0ee8803cff48c6bf5c440d968d/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.86-alpine3.21`, `1.86.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.86-alpine`, `1.86.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/alpine3.21/Dockerfile) # Quick reference (cont.) From d21389d82aaaba7523a5e4ce9376b31b3e72cb9d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Apr 2025 11:09:56 -0700 Subject: [PATCH 2056/2686] Run update.sh --- convertigo/README.md | 2 +- drupal/README.md | 48 ++++++++++++++++++++++---------------------- registry/README.md | 4 ++-- yourls/README.md | 8 ++++---- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index e736efcb00b5..fe2cd6fcfcb5 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.3`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/129a6df804d60436a1c702798967f0673a4b11c0/docker/default/Dockerfile) +- [`8.3.4`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/85e939ec72473383919c1e5652512bed729afb2d/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 98ef6e2b5685..e343a2defeb2 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.5-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.5-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.5-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.6-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.6-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.6-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.5-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.5-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.6-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.6-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.5-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.6-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.5-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.6-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.5-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.5-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.6-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.6-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.5-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.6-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.5-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.5-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.5-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.5-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.5-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.5`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.6-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.6-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.6-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.6-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.6-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.6`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.5-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.5-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.5-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.5-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.6-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.6-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.6-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.6-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.5-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.5-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.6-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.6-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.5-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.5-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.6-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.6-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.5-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.5-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.5-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.5-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.6-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.6-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.6-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.6-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.5-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.5-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/45ef6cd55ebeaefaa0c5da8441633c06bb50f197/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.6-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.6-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-alpine3.20/Dockerfile) - [`11.0.13-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.13-php8.3-apache`, `11.0-php8.3-apache`, `11.0.13-php8.3`, `11.0-php8.3`, `11.0.13-apache-bookworm`, `11.0-apache-bookworm`, `11.0.13-apache`, `11.0-apache`, `11.0.13`, `11.0`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bookworm/Dockerfile) @@ -60,29 +60,29 @@ WARNING: - [`11.0.13-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.13-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.5-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.5-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.5-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.6-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.6-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.6-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.5-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.5-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.6-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.6-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.5-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.6-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.5-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.6-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.5-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.5-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.6-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.6-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.5-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.6-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.5-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.5-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.5-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.5-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.5-apache`, `10.4-apache`, `10-apache`, `10.4.5`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.6-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.6-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.6-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.6-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.6-apache`, `10.4-apache`, `10-apache`, `10.4.6`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.5-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.5-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.5-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.5-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.6-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.6-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.6-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.6-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.5-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.5-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.6-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.6-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.5-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.5-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.6-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.6-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.5-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.5-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.5-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.5-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.6-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.6-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.6-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.6-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.5-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.5-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fd32a12886ebc7bd03bc612ceff3fafd5e27fa52/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.6-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.6-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.14-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.14-php8.3-apache`, `10.3-php8.3-apache`, `10.3.14-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bookworm/Dockerfile) diff --git a/registry/README.md b/registry/README.md index bb13947aef80..8b80886e9c61 100644 --- a/registry/README.md +++ b/registry/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.0.0-rc.4`](https://github.com/distribution/distribution-library-image/blob/89160e7182642ca47e43f5a3cd2388ccf5663551/Dockerfile) +- [`3.0.0`, `3.0`, `3`, `latest`](https://github.com/distribution/distribution-library-image/blob/f83883590f5afda69afafbc5aaa5fde3686f47cf/Dockerfile) -- [`2.8.3`, `2.8`, `2`, `latest`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) +- [`2.8.3`, `2.8`, `2`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index accf7fb86e39..4851745dfcd7 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.9.2-apache`, `1.9-apache`, `1-apache`, `apache`, `1.9.2`, `1.9`, `1`, `latest`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/apache/Dockerfile) +- [`1.10.0-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.0`, `1.10`, `1`, `latest`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/apache/Dockerfile) -- [`1.9.2-fpm`, `1.9-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm/Dockerfile) +- [`1.10.0-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/fpm/Dockerfile) -- [`1.9.2-fpm-alpine`, `1.9-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/082820033f591498dbc30d4ffc0cc927197ebf26/fpm-alpine/Dockerfile) +- [`1.10.0-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/YOURLS/docker/issues](https://github.com/YOURLS/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`mips64le`](https://hub.docker.com/r/mips64le/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) + [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`mips64le`](https://hub.docker.com/r/mips64le/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`riscv64`](https://hub.docker.com/r/riscv64/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) - **Published image artifact details**: [repo-info repo's `repos/yourls/` directory](https://github.com/docker-library/repo-info/blob/master/repos/yourls) ([history](https://github.com/docker-library/repo-info/commits/master/repos/yourls)) From f72ca52ad34801103e822dac51fab0a206da550b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Apr 2025 15:10:19 -0700 Subject: [PATCH 2057/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index fae7c08d434d..7bb3e8574312 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.1.0-rc.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.7`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.0/ubuntu/Dockerfile) +- [`4.0.8`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6793126f0f255eb3b092533730d8ae8f3c54d111/4.0/ubuntu/Dockerfile) -- [`4.0.7-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.8-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.7-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/4.0/alpine/Dockerfile) +- [`4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6793126f0f255eb3b092533730d8ae8f3c54d111/4.0/alpine/Dockerfile) -- [`4.0.7-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.8-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/ubuntu/Dockerfile) From 6e47055f3f64ea83d64f9729419519c303070aa7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Apr 2025 11:09:59 -0700 Subject: [PATCH 2058/2686] Run update.sh --- composer/README.md | 2 +- rabbitmq/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/composer/README.md b/composer/README.md index 9317dd4b7a9b..bd7842e4a408 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/legacy/Dockerfile) -- [`2.8.6`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/7687464486389e94d55a2bb128a4be36bb5958b4/latest/Dockerfile) +- [`2.8.7`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/942c2b11989714b897fd42a9916c37f85116a3af/latest/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7bb3e8574312..ef316670531a 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-rc.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/62229bb2a73f949745a1934a1e10004f5439ec3c/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-rc.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/ecda659712dd6ac68b4e99c0f8b0f1e1c70893fd/4.1-rc/ubuntu/Dockerfile) - [`4.1.0-rc.1-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-rc.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/62229bb2a73f949745a1934a1e10004f5439ec3c/4.1-rc/alpine/Dockerfile) +- [`4.1.0-rc.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ecda659712dd6ac68b4e99c0f8b0f1e1c70893fd/4.1-rc/alpine/Dockerfile) - [`4.1.0-rc.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.8`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6793126f0f255eb3b092533730d8ae8f3c54d111/4.0/ubuntu/Dockerfile) +- [`4.0.8`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6ec3910359898e81e66f45531ca783e60e348b9f/4.0/ubuntu/Dockerfile) - [`4.0.8-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6793126f0f255eb3b092533730d8ae8f3c54d111/4.0/alpine/Dockerfile) +- [`4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6ec3910359898e81e66f45531ca783e60e348b9f/4.0/alpine/Dockerfile) - [`4.0.8-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) From 640860d1952558a3cb8bef1f07609c9374b3c092 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 4 Apr 2025 14:09:54 -0700 Subject: [PATCH 2059/2686] Run update.sh --- api-firewall/README.md | 2 +- julia/README.md | 23 +++++++++++++++++++++++ oraclelinux/README.md | 18 +++++++++--------- 3 files changed, 33 insertions(+), 10 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index ade856504511..20448fa34ac5 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.8.9`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/447d3785ef7a5aeae008abd74a3b387e2908cf3c/0.8.9/Dockerfile) +- [`0.9.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/4136139fef1359b203ca474a0105cbece05177e9/0.9.0/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 7e4605cd3349..fce9e1e07adc 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`1.12.0-beta1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bookworm/Dockerfile) + +- [`1.12.0-beta1-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bullseye/Dockerfile) + +- [`1.12.0-beta1-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`1.12.0-beta1-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.12.0-beta1-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.11.4-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) - [`1.11.4-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bullseye/Dockerfile) @@ -54,6 +64,19 @@ WARNING: ## Shared Tags +- `1.12.0-beta1`, `1.12-rc`, `rc`: + + - [`1.12.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-beta1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) + +- `1.12.0-beta1-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: + + - [`1.12.0-beta1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - `1.11.4`, `1.11`, `1`, `latest`: - [`1.11.4-bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index a2a9f85c51b2..381b8571c9b1 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/074f5018f469892d1c0ea107d238b796bece5633/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7-slim-fips/Dockerfile) # Quick reference (cont.) From bccbca759312b07d6fd8fd8a3a19eb819c0c154a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 11:09:43 -0700 Subject: [PATCH 2060/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index dc25f5e5c84d..d937641ae31a 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.base) +- [`latest`, `base`, `base-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.base) -- [`base-devel`, `base-devel-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250330.0.328921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/78e569eae2d3a2fb0f72815eb596739da955ec5f/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.multilib-devel) # Quick reference (cont.) From 90722ff77a3fffdbd8fa65725ee341c0b1e6cc22 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 12:09:45 -0700 Subject: [PATCH 2061/2686] Run update.sh --- clearlinux/README.md | 2 +- composer/README.md | 2 +- haskell/README.md | 18 +++++++++++------- sonarqube/README.md | 2 +- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index e737e1148546..016f0c83a5d8 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/fa4af2d9ebce5e7f5947194c975e5598de0bcdea/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/73a3d2aacd6ffd03b8ff3c925e4b04b34dc1cd95/Dockerfile) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index bd7842e4a408..0ecf820552e2 100644 --- a/composer/README.md +++ b/composer/README.md @@ -28,7 +28,7 @@ WARNING: - [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/legacy/Dockerfile) -- [`2.8.7`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/942c2b11989714b897fd42a9916c37f85116a3af/latest/Dockerfile) +- [`2.8.8`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/bb857457676cec69169962eadc2265beaa2d98f9/latest/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index ae09d2c186c1..6cb6dd4e02e2 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,17 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/bullseye/Dockerfile) +- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.12/bookworm/Dockerfile) -- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.10/slim-bullseye/Dockerfile) +- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.12/slim-bookworm/Dockerfile) -- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.8/bullseye/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.10/bullseye/Dockerfile) -- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.8/slim-bullseye/Dockerfile) +- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.10/slim-bullseye/Dockerfile) -- [`9.6.6-bullseye`, `9.6-bullseye`, `9.6.6`, `9.6`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.6/bullseye/Dockerfile) +- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.8/bullseye/Dockerfile) -- [`9.6.6-slim-bullseye`, `9.6-slim-bullseye`, `9.6.6-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/68ddf626a38f6e76a81df168d1e24bd778b17bef/9.6/slim-bullseye/Dockerfile) +- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.8/slim-bullseye/Dockerfile) + +- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.6/bullseye/Dockerfile) + +- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) @@ -171,7 +175,7 @@ The `haskell` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haskell:-slim` diff --git a/sonarqube/README.md b/sonarqube/README.md index d8e48083d843..1609a660045c 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -40,7 +40,7 @@ WARNING: - [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/search/Dockerfile) -- [`25.3.0.104237-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/65d32aee3047ae2d7bff433d278b5e1622134a37/community-build/Dockerfile) +- [`25.4.0.105899-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/39f0aee32d36ed1d1fd5a83a417a625d16222ab4/community-build/Dockerfile) - [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/community/Dockerfile) From df73f31e31903dad8e1f7ade336dc61d9a834bd7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 13:09:45 -0700 Subject: [PATCH 2062/2686] Run update.sh --- redis/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redis/README.md b/redis/README.md index 8df603956399..a9f1e0ea4389 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-M04-alpine`, `8.0-M04-alpine3.21`](https://github.com/redis/docker-library-redis/blob/1d61ffb74b806f51c3691e296d827c3baacc5056/alpine/Dockerfile) +- [`8.0-rc1-alpine`, `8.0-rc1-alpine3.21`](https://github.com/redis/docker-library-redis/blob/f3cfc256e913880e5d5eefc794e220c6b0733f22/alpine/Dockerfile) -- [`8.0-M04`, `8.0-M04-bookworm`](https://github.com/redis/docker-library-redis/blob/1d61ffb74b806f51c3691e296d827c3baacc5056/debian/Dockerfile) +- [`8.0-rc1`, `8.0-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/f3cfc256e913880e5d5eefc794e220c6b0733f22/debian/Dockerfile) - [`7.4.2`, `7.4`, `7`, `latest`, `7.4.2-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/debian/Dockerfile) From 68142dce2d712e164fb95067350d3e987614cd95 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 14:09:48 -0700 Subject: [PATCH 2063/2686] Run update.sh --- gradle/README.md | 8 ++++++++ photon/README.md | 4 ++-- rocket.chat/README.md | 6 +++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 17f451fe7589..0f030517207f 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -74,6 +74,14 @@ WARNING: - [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-ubi9/Dockerfile) +- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-24`, `8.13-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.13.0-jdk-21-and-24-noble`, `8.13-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current/Dockerfile) + +- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-24-alpine`, `8.13-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-alpine/Dockerfile) + +- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-24-corretto`, `8.13-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.13.0-jdk-21-and-24-corretto-al2023`, `8.13-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-corretto/Dockerfile) + +- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-24-graal`, `8.13-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.13.0-jdk-21-and-24-graal-noble`, `8.13-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-graal/Dockerfile) + - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) - [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-jammy/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 5da741b0aee0..7d334013a4bc 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250330`, `latest`](https://github.com/vmware/photon-docker-image/blob/b3a723cc8f73f119f7b16f4ae74b8fecd873041b/docker/Dockerfile) +- [`5.0`, `5.0-20250406`, `latest`](https://github.com/vmware/photon-docker-image/blob/9f40438e15cb3776ddde3fdad929be34057e6d33/docker/Dockerfile) -- [`4.0`, `4.0-20250330`](https://github.com/vmware/photon-docker-image/blob/3fed3bcfda4b61e843efb9d71201c17997450839/docker/Dockerfile) +- [`4.0`, `4.0-20250406`](https://github.com/vmware/photon-docker-image/blob/aefca1bcdb29758063e05c54bb9c3c92516522d6/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 059870679cd7..7ca910677065 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.4.1`, `7.4`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.4/Dockerfile) +- [`7.5.0`, `7.5`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/154dd8ae2939544c7db7bdd21da72894ca503ece/7.5/Dockerfile) + +- [`7.4.1`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.4/Dockerfile) - [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.3/Dockerfile) @@ -36,8 +38,6 @@ WARNING: - [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) -- [`6.12.3`, `6.12`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.12/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From f64f994320f6f8fbbbc32b5240a2bddc76e14fd6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 16:10:02 -0700 Subject: [PATCH 2064/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- golang/README.md | 12 ++++++------ openjdk/README.md | 50 +++++++++++++++++++++++------------------------ 4 files changed, 34 insertions(+), 34 deletions(-) diff --git a/bash/README.md b/bash/README.md index 61a34031a1be..430d48fa42a7 100644 --- a/bash/README.md +++ b/bash/README.md @@ -26,7 +26,7 @@ WARNING: - [`devel-20250331`, `devel`, `devel-20250331-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d0de34dfee2b0ef58f9984f4f9f8ec4d0ca68f8b/devel/Dockerfile) -- [`5.3-beta`, `5.3-rc`, `rc`, `5.3-beta-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/7414f66135e4327b0cca7644bdaf98f22e227c6c/5.3-rc/Dockerfile) +- [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) - [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.21`, `5.2-alpine3.21`, `5-alpine3.21`, `alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.2/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index ce49fc98bb50..2177d14dec2a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.115.1`, `5.115`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c48ae00698d31330519820d2b4a32acc390744f0/5/debian/Dockerfile) +- [`5.116.1`, `5.116`, `5`, `latest`](https://github.com/docker-library/ghost/blob/23f482865cd747b6ea699bcc06c54be5db764343/5/debian/Dockerfile) -- [`5.115.1-alpine`, `5.115-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c48ae00698d31330519820d2b4a32acc390744f0/5/alpine/Dockerfile) +- [`5.116.1-alpine`, `5.116-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/23f482865cd747b6ea699bcc06c54be5db764343/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 63c01d98557f..b9434e7be6eb 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250329-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bookworm/Dockerfile) +- [`tip-20250406-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bookworm/Dockerfile) -- [`tip-20250329-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bullseye/Dockerfile) +- [`tip-20250406-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bullseye/Dockerfile) -- [`tip-20250329-alpine3.21`, `tip-alpine3.21`, `tip-20250329-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/alpine3.21/Dockerfile) +- [`tip-20250406-alpine3.21`, `tip-alpine3.21`, `tip-20250406-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/alpine3.21/Dockerfile) -- [`tip-20250329-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/alpine3.20/Dockerfile) +- [`tip-20250406-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250329`, `tip`: +- `tip-20250406`, `tip`: - - [`tip-20250329-bookworm`](https://github.com/docker-library/golang/blob/11e8d386605f430a62a3730eeb9433ee87c88da2/tip/bookworm/Dockerfile) + - [`tip-20250406-bookworm`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index c610443ca722..c41c6029dfef 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-16-jdk-oraclelinux9`, `25-ea-16-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-16-jdk-oracle`, `25-ea-16-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-17-jdk-oraclelinux9`, `25-ea-17-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-17-jdk-oracle`, `25-ea-17-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-16-jdk-oraclelinux8`, `25-ea-16-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-17-jdk-oraclelinux8`, `25-ea-17-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-16-jdk-bookworm`, `25-ea-16-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/bookworm/Dockerfile) +- [`25-ea-17-jdk-bookworm`, `25-ea-17-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/bookworm/Dockerfile) -- [`25-ea-16-jdk-slim-bookworm`, `25-ea-16-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-16-jdk-slim`, `25-ea-16-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-17-jdk-slim-bookworm`, `25-ea-17-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-17-jdk-slim`, `25-ea-17-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-16-jdk-bullseye`, `25-ea-16-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/bullseye/Dockerfile) +- [`25-ea-17-jdk-bullseye`, `25-ea-17-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/bullseye/Dockerfile) -- [`25-ea-16-jdk-slim-bullseye`, `25-ea-16-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-17-jdk-slim-bullseye`, `25-ea-17-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-16-jdk-windowsservercore-ltsc2025`, `25-ea-16-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-17-jdk-windowsservercore-ltsc2025`, `25-ea-17-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-16-jdk-windowsservercore-ltsc2022`, `25-ea-16-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-17-jdk-windowsservercore-ltsc2022`, `25-ea-17-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-16-jdk-windowsservercore-1809`, `25-ea-16-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-17-jdk-windowsservercore-1809`, `25-ea-17-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-16-jdk-nanoserver-ltsc2025`, `25-ea-16-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-17-jdk-nanoserver-ltsc2025`, `25-ea-17-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-16-jdk-nanoserver-ltsc2022`, `25-ea-16-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-17-jdk-nanoserver-ltsc2022`, `25-ea-17-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-16-jdk-nanoserver-1809`, `25-ea-16-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-17-jdk-nanoserver-1809`, `25-ea-17-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-16-jdk`, `25-ea-16`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-17-jdk`, `25-ea-17`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-16-jdk-windowsservercore`, `25-ea-16-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-17-jdk-windowsservercore`, `25-ea-17-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-16-jdk-nanoserver`, `25-ea-16-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-17-jdk-nanoserver`, `25-ea-17-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-16-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-16-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/157d80f42780b2df8c92755cebf565da09a25fef/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-17-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-17-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From e881188b6b56fdc96ddfcab0b1f930b2d49ab1a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Apr 2025 17:09:57 -0700 Subject: [PATCH 2065/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index e9f3a1a46702..1bdd3116def4 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250317`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250407`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250317-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250407-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250317`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250407`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250317-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250407-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/experimental/Dockerfile) +- [`experimental`, `experimental-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/rc-buggy/Dockerfile) -- [`sid`, `sid-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/sid/oci/index.json) +- [`sid`, `sid-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/sid/oci/index.json) -- [`sid-slim`, `sid-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/sid/slim/oci/index.json) -- [`stable`, `stable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/oci/index.json) +- [`stable`, `stable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/slim/oci/index.json) -- [`testing`, `testing-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/oci/index.json) +- [`testing`, `testing-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/oci/index.json) +- [`trixie`, `trixie-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250317`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/unstable/oci/index.json) +- [`unstable`, `unstable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250317-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/4f247a577df7ed918a6894ecb017d4be322a0737/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/unstable/slim/oci/index.json) # Quick reference (cont.) From c1c35f9af54bc22a3012a4c5b16b636621e52532 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Apr 2025 11:09:43 -0700 Subject: [PATCH 2066/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 430d48fa42a7..b398a0ed88f7 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250331`, `devel`, `devel-20250331-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/d0de34dfee2b0ef58f9984f4f9f8ec4d0ca68f8b/devel/Dockerfile) +- [`devel-20250404`, `devel`, `devel-20250404-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/06eb778f4281864162769a8cff2cfd9b456e402a/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) From 4a8a4af206f421ea9a1fa96ca33ad5993b315d58 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Apr 2025 14:09:57 -0700 Subject: [PATCH 2067/2686] Run update.sh --- nats/README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/nats/README.md b/nats/README.md index 9e8bf1a61643..339e586903e2 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.1-binary-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.1-binary-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/alpine3.21/Dockerfile) +- [`2.11.1-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.1-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/alpine3.21/Dockerfile) -- [`2.11.1-binary-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.1-binary-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/scratch/Dockerfile) +- [`2.11.1-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.1-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/scratch/Dockerfile) -- [`2.11.1-binary-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.1-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.11.1-binary-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.1-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) -- [`2.10.27-binary-alpine3.21`, `2.10-alpine3.21`, `2.10.27-binary-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/alpine3.21/Dockerfile) +- [`2.10.27-alpine3.21`, `2.10-alpine3.21`, `2.10.27-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/alpine3.21/Dockerfile) -- [`2.10.27-binary-scratch`, `2.10-scratch`, `2.10.27-binary-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/scratch/Dockerfile) +- [`2.10.27-scratch`, `2.10-scratch`, `2.10.27-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/scratch/Dockerfile) -- [`2.10.27-binary-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.27-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.27-binary-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.27-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.11.1-binary`, `2.11`, `2`, `latest`: +- `2.11.1`, `2.11`, `2`, `latest`: - - [`2.11.1-binary-scratch`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/scratch/Dockerfile) - - [`2.11.1-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.1-scratch`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/scratch/Dockerfile) + - [`2.11.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) -- `2.11.1-binary-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.1-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.1-binary-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.1-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/windowsservercore-1809/Dockerfile) -- `2.11.1-binary-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.1-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.1-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) -- `2.10.27-binary`, `2.10`: +- `2.10.27`, `2.10`: - - [`2.10.27-binary-scratch`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/scratch/Dockerfile) - - [`2.10.27-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.27-scratch`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/scratch/Dockerfile) + - [`2.10.27-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.27-binary-windowsservercore`, `2.10-windowsservercore`: +- `2.10.27-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.27-binary-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.27-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.27-binary-nanoserver`, `2.10-nanoserver`: +- `2.10.27-nanoserver`, `2.10-nanoserver`: - - [`2.10.27-binary-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4fc384d4f5edacd12651234162799eeba62b541c/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.27-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) From b2c885f953182518759efbeae073569fa9bc9864 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Apr 2025 18:09:57 -0700 Subject: [PATCH 2068/2686] Run update.sh --- python/README.md | 140 ++++++++++++++++++++++---------------------- tomcat/README.md | 24 ++++---- ubuntu/README.md | 10 ++-- wordpress/README.md | 24 ++++---- 4 files changed, 99 insertions(+), 99 deletions(-) diff --git a/python/README.md b/python/README.md index 3ad1713b34b8..c08fd1420f79 100644 --- a/python/README.md +++ b/python/README.md @@ -28,83 +28,83 @@ WARNING: ## Simple Tags -- [`3.14.0a6-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bookworm/Dockerfile) +- [`3.14.0a7-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a6-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a6-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0a7-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a7-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a6-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bullseye/Dockerfile) +- [`3.14.0a7-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a6-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0a7-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a6-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a6-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0a7-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a7-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a6-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0a7-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a6-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0a7-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0a6-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0a7-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a6-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0a7-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.13.2-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) +- [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bookworm/Dockerfile) -- [`3.13.2-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.2-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/slim-bookworm/Dockerfile) +- [`3.13.3-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.3-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/slim-bookworm/Dockerfile) -- [`3.13.2-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bullseye/Dockerfile) +- [`3.13.3-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bullseye/Dockerfile) -- [`3.13.2-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/slim-bullseye/Dockerfile) +- [`3.13.3-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/slim-bullseye/Dockerfile) -- [`3.13.2-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.2-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/alpine3.21/Dockerfile) +- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/alpine3.21/Dockerfile) -- [`3.13.2-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/alpine3.20/Dockerfile) +- [`3.13.3-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/alpine3.20/Dockerfile) -- [`3.13.2-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.3-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.2-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.3-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.2-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) +- [`3.13.3-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.9-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bookworm/Dockerfile) +- [`3.12.10-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bookworm/Dockerfile) -- [`3.12.9-slim-bookworm`, `3.12-slim-bookworm`, `3.12.9-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/slim-bookworm/Dockerfile) +- [`3.12.10-slim-bookworm`, `3.12-slim-bookworm`, `3.12.10-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/slim-bookworm/Dockerfile) -- [`3.12.9-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bullseye/Dockerfile) +- [`3.12.10-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bullseye/Dockerfile) -- [`3.12.9-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/slim-bullseye/Dockerfile) +- [`3.12.10-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/slim-bullseye/Dockerfile) -- [`3.12.9-alpine3.21`, `3.12-alpine3.21`, `3.12.9-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/alpine3.21/Dockerfile) +- [`3.12.10-alpine3.21`, `3.12-alpine3.21`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/alpine3.21/Dockerfile) -- [`3.12.9-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/alpine3.20/Dockerfile) +- [`3.12.10-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/alpine3.20/Dockerfile) -- [`3.12.9-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.12.10-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.12.9-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.12.10-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.9-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) +- [`3.12.10-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.11-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bookworm/Dockerfile) +- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bookworm/Dockerfile) -- [`3.11.11-slim-bookworm`, `3.11-slim-bookworm`, `3.11.11-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/slim-bookworm/Dockerfile) +- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/slim-bookworm/Dockerfile) -- [`3.11.11-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bullseye/Dockerfile) +- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bullseye/Dockerfile) -- [`3.11.11-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/slim-bullseye/Dockerfile) +- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/slim-bullseye/Dockerfile) -- [`3.11.11-alpine3.21`, `3.11-alpine3.21`, `3.11.11-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.11/alpine3.21/Dockerfile) +- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/alpine3.21/Dockerfile) -- [`3.11.11-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/alpine3.20/Dockerfile) +- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/alpine3.20/Dockerfile) -- [`3.10.16-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bookworm/Dockerfile) +- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bookworm/Dockerfile) -- [`3.10.16-slim-bookworm`, `3.10-slim-bookworm`, `3.10.16-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/slim-bookworm/Dockerfile) +- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/slim-bookworm/Dockerfile) -- [`3.10.16-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bullseye/Dockerfile) +- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bullseye/Dockerfile) -- [`3.10.16-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/slim-bullseye/Dockerfile) +- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/slim-bullseye/Dockerfile) -- [`3.10.16-alpine3.21`, `3.10-alpine3.21`, `3.10.16-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.10/alpine3.21/Dockerfile) +- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/alpine3.21/Dockerfile) -- [`3.10.16-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/alpine3.20/Dockerfile) +- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/alpine3.20/Dockerfile) - [`3.9.21-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) @@ -120,52 +120,52 @@ WARNING: ## Shared Tags -- `3.14.0a6`, `3.14-rc`: +- `3.14.0a7`, `3.14-rc`: - - [`3.14.0a6-bookworm`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a7-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bookworm/Dockerfile) + - [`3.14.0a7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a6-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0a7-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0bd97693f7105bfb6f0ef81020c6d81ade21bc0b/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0a7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.13.2`, `3.13`, `3`, `latest`: +- `3.13.3`, `3.13`, `3`, `latest`: - - [`3.13.2-bookworm`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/bookworm/Dockerfile) - - [`3.13.2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.3-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bookworm/Dockerfile) + - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.13.2-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.3-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.2-windowsservercore-1809`](https://github.com/docker-library/python/blob/0330f0baedb296c8806a869d04fe76838f721647/3.13/windows/windowsservercore-1809/Dockerfile) + - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) -- `3.12.9`, `3.12`: +- `3.12.10`, `3.12`: - - [`3.12.9-bookworm`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/bookworm/Dockerfile) - - [`3.12.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.10-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bookworm/Dockerfile) + - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.12.9-windowsservercore`, `3.12-windowsservercore`: +- `3.12.10-windowsservercore`, `3.12-windowsservercore`: - - [`3.12.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/9c50e071f7445d04776485e28d208d39c25fbbaa/3.12/windows/windowsservercore-1809/Dockerfile) + - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) -- `3.11.11`, `3.11`: +- `3.11.12`, `3.11`: - - [`3.11.11-bookworm`](https://github.com/docker-library/python/blob/ded42cf92d68bb878c8a1a9a4f3c86bad6023f4e/3.11/bookworm/Dockerfile) + - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bookworm/Dockerfile) -- `3.10.16`, `3.10`: +- `3.10.17`, `3.10`: - - [`3.10.16-bookworm`](https://github.com/docker-library/python/blob/ed65ea91248f1ac8cb1b25e68324f389822e5ccc/3.10/bookworm/Dockerfile) + - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bookworm/Dockerfile) - `3.9.21`, `3.9`: diff --git a/tomcat/README.md b/tomcat/README.md index 9e53e35a842d..f7bd088481f5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,29 +40,29 @@ WARNING: - [`11.0.5-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.39-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.39-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.39-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.39`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.40-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.40-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.40-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.40`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.39-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.39-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.39-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.40-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.40-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.40-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.39-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.40-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.39-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.40-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.39-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.39-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.39-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.40-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.40-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.40-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.39-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.39-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.39-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.40-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.40-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.40-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.39-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.40-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.39-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.40-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.39-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.39-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.39-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.40-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.40-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.40-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.39-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.39-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.39-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.40-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.40-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.40-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.39-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.40-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.39-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fc19ba73ebfc4709e287683d79a70ad3b3824840/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.40-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.102-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.102-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.102-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.102`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-noble/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index bcebd02a0cef..bc1f99135a72 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20241011`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20241011-2dc0aae1&id=2dc0aae17c912aa6ae81e4c4bbc7277692d67bae) +- [`20.04`, `focal-20250404`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20250404-fb4da095&id=fb4da0956290c3b216a35315510f66ca9bc4a460) -- [`22.04`, `jammy-20250126`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250126-b0d70ec8&id=b0d70ec8ea0e2d97d7311e85d6d42e054bb80350) +- [`22.04`, `jammy-20250404`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250404-ee417809&id=ee4178090f23aa4a0ef3958012c618588d0886a9) -- [`24.04`, `noble-20250127`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250127-9fabb4ba&id=9fabb4bad5138435b01857e2fe9363e2dc5f6a79) +- [`24.04`, `noble-20250404`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250404-febb8724&id=febb872444fbf6132e143cf3d1e5f0958c897cea) -- [`24.10`, `oracular-20241120`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20241120-aea1b7d3&id=aea1b7d330330843a7f7783a788965bc4e89cf6a) +- [`24.10`, `oracular-20250225`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250225-71a591b6&id=71a591b63518c11abbccce5c648ce23d9a55c63b) -- [`25.04`, `plucky-20241213`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20241213-a232d27b&id=a232d27bc1e7b1173a1c8154366982d1e72b0d9b) +- [`25.04`, `plucky-20250402`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250402-9931882c&id=9931882c5303fd5a396376e54bd267f2e63296fb) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index f061e1652617..d71d4429f2bc 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-RC2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-RC3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-RC2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-RC2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-RC2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-RC3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-RC2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-RC3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-RC2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-RC2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-RC3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-RC2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-RC2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-RC2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-RC3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-RC2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-RC2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/49c9f01bd71b075448c9ff8fab89708650242f7c/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7a20117ad4bb04f47b3daf428d61b5de21e12a15 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Apr 2025 10:09:59 -0700 Subject: [PATCH 2069/2686] Run update.sh --- jetty/README.md | 34 +++++++++++++++++----------------- rocket.chat/README.md | 4 ++-- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index bfb2675a0d41..2a4841ce3315 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.18-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.18-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.19-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.19-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.18-jre21`, `12.0-jre21`, `12-jre21`, `12.0.18-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.19-jre21`, `12.0-jre21`, `12-jre21`, `12.0.19-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.18-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.18-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.19-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.19-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.18-jre17`, `12.0-jre17`, `12-jre17`, `12.0.18-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.19-jre17`, `12.0-jre17`, `12-jre17`, `12.0.19-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.18-jdk23-alpine`, `12.0-jdk23-alpine`, `12-jdk23-alpine`, `12.0.18-jdk23-alpine-eclipse-temurin`, `12.0-jdk23-alpine-eclipse-temurin`, `12-jdk23-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk23-alpine/Dockerfile) +- [`12.0.19-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.19-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.18-jdk23`, `12.0-jdk23`, `12-jdk23`, `12.0.18-jdk23-eclipse-temurin`, `12.0-jdk23-eclipse-temurin`, `12-jdk23-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk23/Dockerfile) +- [`12.0.19-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.19-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.18-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.18-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.19-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.19-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.18`, `12.0`, `12`, `12.0.18-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.18-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.18-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.19`, `12.0`, `12`, `12.0.19-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.19-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.19-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.18-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.18-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.19-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.19-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.18-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.18-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.19-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.19-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.18-jdk23-al2023-amazoncorretto`, `12.0-jdk23-al2023-amazoncorretto`, `12-jdk23-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk23-al2023/Dockerfile) +- [`12.0.19-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.18-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.19-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.18-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.19-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.18-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.18-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.19-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.19-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.18-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.19-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.18-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.19-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.18-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.19-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 7ca910677065..16d1e4dd8aee 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.5.0`, `7.5`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/154dd8ae2939544c7db7bdd21da72894ca503ece/7.5/Dockerfile) +- [`7.5.1`, `7.5`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/21fc4da79e661f052063606584195cf342730fbc/7.5/Dockerfile) -- [`7.4.1`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.4/Dockerfile) +- [`7.4.2`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/21fc4da79e661f052063606584195cf342730fbc/7.4/Dockerfile) - [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.3/Dockerfile) From 3efb3e566995ffb1b25be0f37fe34d133bc237ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Apr 2025 12:09:47 -0700 Subject: [PATCH 2070/2686] Run update.sh --- pypy/README.md | 80 ++++++++++++++++++++++++------------------------ python/README.md | 44 +++++++++++++------------- ruby/README.md | 12 ++++---- tomcat/README.md | 16 +++++----- 4 files changed, 76 insertions(+), 76 deletions(-) diff --git a/pypy/README.md b/pypy/README.md index 5be875bdcbbc..76f6105060b5 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,84 +28,84 @@ WARNING: ## Simple Tags -- [`3.11-7.3.19-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/bookworm/Dockerfile) +- [`3.11-7.3.19-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/bookworm/Dockerfile) -- [`3.11-7.3.19-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.19-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/slim-bookworm/Dockerfile) +- [`3.11-7.3.19-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.19-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/slim-bookworm/Dockerfile) -- [`3.11-7.3.19-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.11-7.3.19-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.11-7.3.19-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11-7.3.19-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11-7.3.19-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) +- [`3.11-7.3.19-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) -- [`3.10-7.3.19-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.19-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bookworm/Dockerfile) +- [`3.10-7.3.19-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.19-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) -- [`3.10-7.3.19-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.19-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.19-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.19-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/slim-bookworm/Dockerfile) +- [`3.10-7.3.19-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.19-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.19-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.19-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/slim-bookworm/Dockerfile) -- [`3.10-7.3.19-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.19-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bullseye/Dockerfile) +- [`3.10-7.3.19-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.19-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bullseye/Dockerfile) -- [`3.10-7.3.19-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.19-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/slim-bullseye/Dockerfile) +- [`3.10-7.3.19-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.19-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/slim-bullseye/Dockerfile) -- [`3.10-7.3.19-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.19-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.10-7.3.19-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.19-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.10-7.3.19-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.19-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.10-7.3.19-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.19-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.19-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.19-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) +- [`3.10-7.3.19-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.19-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) -- [`2.7-7.3.19-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.19-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bookworm/Dockerfile) +- [`2.7-7.3.19-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.19-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) -- [`2.7-7.3.19-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.19-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.19-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.19-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.19-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.19-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.19-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.19-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/slim-bookworm/Dockerfile) -- [`2.7-7.3.19-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.19-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bullseye/Dockerfile) +- [`2.7-7.3.19-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.19-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bullseye/Dockerfile) -- [`2.7-7.3.19-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.19-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.19-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.19-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/slim-bullseye/Dockerfile) -- [`2.7-7.3.19-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.19-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) +- [`2.7-7.3.19-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.19-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) -- [`2.7-7.3.19-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.19-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.19-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.19-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.19-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.19-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) +- [`2.7-7.3.19-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.19-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `3.11-7.3.19`, `3.11-7.3`, `3.11-7`, `3.11`: - - [`3.11-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/bookworm/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/bookworm/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11-7.3.19-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: - - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/248e8c458c2df01f40e3c2c37564150c47380cfe/3.11/windows/windowsservercore-1809/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.19`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.19`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/bookworm/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.19-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.19-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/27616dd0faf972ff12817240aa7b4399115006f5/3.10/windows/windowsservercore-1809/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.19`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.19`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/bookworm/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.19-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.19-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/ab2445dcc9cf1d9c0337ac9011440513b0828355/2.7/windows/windowsservercore-1809/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index c08fd1420f79..9b49920c7296 100644 --- a/python/README.md +++ b/python/README.md @@ -82,41 +82,41 @@ WARNING: - [`3.12.10-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bookworm/Dockerfile) +- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bookworm/Dockerfile) -- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/slim-bookworm/Dockerfile) +- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/slim-bookworm/Dockerfile) -- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bullseye/Dockerfile) +- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bullseye/Dockerfile) -- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/slim-bullseye/Dockerfile) +- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/slim-bullseye/Dockerfile) -- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/alpine3.21/Dockerfile) +- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/alpine3.21/Dockerfile) -- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/alpine3.20/Dockerfile) +- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/alpine3.20/Dockerfile) -- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bookworm/Dockerfile) +- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bookworm/Dockerfile) -- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/slim-bookworm/Dockerfile) +- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/slim-bookworm/Dockerfile) -- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bullseye/Dockerfile) +- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bullseye/Dockerfile) -- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/slim-bullseye/Dockerfile) +- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/slim-bullseye/Dockerfile) -- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/alpine3.21/Dockerfile) +- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/alpine3.21/Dockerfile) -- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/alpine3.20/Dockerfile) +- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/alpine3.20/Dockerfile) -- [`3.9.21-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) +- [`3.9.22-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) -- [`3.9.21-slim-bookworm`, `3.9-slim-bookworm`, `3.9.21-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/slim-bookworm/Dockerfile) +- [`3.9.22-slim-bookworm`, `3.9-slim-bookworm`, `3.9.22-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/slim-bookworm/Dockerfile) -- [`3.9.21-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bullseye/Dockerfile) +- [`3.9.22-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bullseye/Dockerfile) -- [`3.9.21-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/slim-bullseye/Dockerfile) +- [`3.9.22-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/slim-bullseye/Dockerfile) -- [`3.9.21-alpine3.21`, `3.9-alpine3.21`, `3.9.21-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/3d7b328b66525fe2e82af7063af10c176b6ee8cd/3.9/alpine3.21/Dockerfile) +- [`3.9.22-alpine3.21`, `3.9-alpine3.21`, `3.9.22-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.21/Dockerfile) -- [`3.9.21-alpine3.20`, `3.9-alpine3.20`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/alpine3.20/Dockerfile) +- [`3.9.22-alpine3.20`, `3.9-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.20/Dockerfile) ## Shared Tags @@ -161,15 +161,15 @@ WARNING: - `3.11.12`, `3.11`: - - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.11/bookworm/Dockerfile) + - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bookworm/Dockerfile) - `3.10.17`, `3.10`: - - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.10/bookworm/Dockerfile) + - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bookworm/Dockerfile) -- `3.9.21`, `3.9`: +- `3.9.22`, `3.9`: - - [`3.9.21-bookworm`](https://github.com/docker-library/python/blob/ebae24f3ea4df70859757829ac383e1dd8de3d2f/3.9/bookworm/Dockerfile) + - [`3.9.22-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 6b78b5dd9a91..74013782298e 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.4.2-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/alpine3.20/Dockerfile) -- [`3.3.7-bookworm`, `3.3-bookworm`, `3.3.7`, `3.3`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/bookworm/Dockerfile) +- [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) -- [`3.3.7-slim-bookworm`, `3.3-slim-bookworm`, `3.3.7-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/slim-bookworm/Dockerfile) +- [`3.3.8-slim-bookworm`, `3.3-slim-bookworm`, `3.3.8-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/slim-bookworm/Dockerfile) -- [`3.3.7-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/bullseye/Dockerfile) +- [`3.3.8-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bullseye/Dockerfile) -- [`3.3.7-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/slim-bullseye/Dockerfile) +- [`3.3.8-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/slim-bullseye/Dockerfile) -- [`3.3.7-alpine3.21`, `3.3-alpine3.21`, `3.3.7-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/alpine3.21/Dockerfile) +- [`3.3.8-alpine3.21`, `3.3-alpine3.21`, `3.3.8-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.21/Dockerfile) -- [`3.3.7-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/02bc03848413b433c8256ee11b16e1d527412389/3.3/alpine3.20/Dockerfile) +- [`3.3.8-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.20/Dockerfile) - [`3.2.8-bookworm`, `3.2-bookworm`, `3.2.8`, `3.2`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bookworm/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index f7bd088481f5..f347f86bb65e 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.5-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.5-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.5-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.5`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.6-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.6-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.6-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.6`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.5-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.5-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.5-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.6-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.6-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.6-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.5-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.6-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.5-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.6-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.5-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.5-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.5-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.6-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.6-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.6-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.5-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.5-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.5-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.6-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.6-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.6-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.5-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.6-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.5-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f2781042408d9697f741f625d4a15c86bbcd5b57/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.6-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.40-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.40-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.40-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.40`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk21/temurin-noble/Dockerfile) From 385962edc6e3367d7432ffa89e2cb5b38c3b103b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Apr 2025 15:09:45 -0700 Subject: [PATCH 2071/2686] Run update.sh --- joomla/README.md | 48 ++++++++++++++++++++++++------------------------ tomcat/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 44 insertions(+), 44 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 8cc94da9aa3c..c39d1efadd61 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-beta3-php8.1-apache`, `5.3-php8.1-apache`, `5.3.beta-php8.1-apache`, `5.3.0-beta-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/apache/Dockerfile) +- [`5.3.0-rc2-php8.1-apache`, `5.3-php8.1-apache`, `5.3.rc-php8.1-apache`, `5.3.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/apache/Dockerfile) -- [`5.3.0-beta3-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.beta-php8.1-fpm-alpine`, `5.3.0-beta-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/fpm-alpine/Dockerfile) +- [`5.3.0-rc2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.rc-php8.1-fpm-alpine`, `5.3.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/fpm-alpine/Dockerfile) -- [`5.3.0-beta3-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.beta-php8.1-fpm`, `5.3.0-beta-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.1/fpm/Dockerfile) +- [`5.3.0-rc2-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.rc-php8.1-fpm`, `5.3.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/fpm/Dockerfile) -- [`5.3.0-beta3-php8.2-apache`, `5.3-php8.2-apache`, `5.3.beta-php8.2-apache`, `5.3.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/apache/Dockerfile) +- [`5.3.0-rc2-php8.2-apache`, `5.3-php8.2-apache`, `5.3.rc-php8.2-apache`, `5.3.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/apache/Dockerfile) -- [`5.3.0-beta3-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.beta-php8.2-fpm-alpine`, `5.3.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.3.0-rc2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.rc-php8.2-fpm-alpine`, `5.3.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/fpm-alpine/Dockerfile) -- [`5.3.0-beta3-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.beta-php8.2-fpm`, `5.3.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.2/fpm/Dockerfile) +- [`5.3.0-rc2-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.rc-php8.2-fpm`, `5.3.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/fpm/Dockerfile) -- [`5.3.0-beta3`, `5.3`, `5.3.beta`, `5.3.0-beta`, `5.3.0-beta3-apache`, `5.3-apache`, `5.3.beta-apache`, `5.3.0-beta-apache`, `5.3.0-beta3-php8.3`, `5.3-php8.3`, `5.3.beta-php8.3`, `5.3.0-beta-php8.3`, `5.3.0-beta3-php8.3-apache`, `5.3-php8.3-apache`, `5.3.beta-php8.3-apache`, `5.3.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/apache/Dockerfile) +- [`5.3.0-rc2`, `5.3`, `5.3.rc`, `5.3.0-rc`, `5.3.0-rc2-apache`, `5.3-apache`, `5.3.rc-apache`, `5.3.0-rc-apache`, `5.3.0-rc2-php8.3`, `5.3-php8.3`, `5.3.rc-php8.3`, `5.3.0-rc-php8.3`, `5.3.0-rc2-php8.3-apache`, `5.3-php8.3-apache`, `5.3.rc-php8.3-apache`, `5.3.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/apache/Dockerfile) -- [`5.3.0-beta3-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.beta-php8.3-fpm-alpine`, `5.3.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.3.0-rc2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.rc-php8.3-fpm-alpine`, `5.3.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-beta3-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.beta-php8.3-fpm`, `5.3.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.3.beta/php8.3/fpm/Dockerfile) +- [`5.3.0-rc2-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.rc-php8.3-fpm`, `5.3.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/fpm/Dockerfile) -- [`5.2.5-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/apache/Dockerfile) +- [`5.2.6-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/apache/Dockerfile) -- [`5.2.5-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/fpm-alpine/Dockerfile) +- [`5.2.6-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/fpm-alpine/Dockerfile) -- [`5.2.5-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.1/fpm/Dockerfile) +- [`5.2.6-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/fpm/Dockerfile) -- [`5.2.5-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/apache/Dockerfile) +- [`5.2.6-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/apache/Dockerfile) -- [`5.2.5-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/fpm-alpine/Dockerfile) +- [`5.2.6-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/fpm-alpine/Dockerfile) -- [`5.2.5-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.2/fpm/Dockerfile) +- [`5.2.6-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/fpm/Dockerfile) -- [`5.2.5`, `5.2`, `5`, `latest`, `5.2.5-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.5-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.5-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/apache/Dockerfile) +- [`5.2.6`, `5.2`, `5`, `latest`, `5.2.6-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.6-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.6-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/apache/Dockerfile) -- [`5.2.5-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/fpm-alpine/Dockerfile) +- [`5.2.6-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/fpm-alpine/Dockerfile) -- [`5.2.5-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/5.2/php8.3/fpm/Dockerfile) +- [`5.2.6-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/fpm/Dockerfile) -- [`4.4.12-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/apache/Dockerfile) +- [`4.4.13-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/apache/Dockerfile) -- [`4.4.12-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/fpm-alpine/Dockerfile) +- [`4.4.13-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/fpm-alpine/Dockerfile) -- [`4.4.12-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.1/fpm/Dockerfile) +- [`4.4.13-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/fpm/Dockerfile) -- [`4.4.12`, `4.4`, `4`, `4.4.12-apache`, `4.4-apache`, `4-apache`, `4.4.12-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.12-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/apache/Dockerfile) +- [`4.4.13`, `4.4`, `4`, `4.4.13-apache`, `4.4-apache`, `4-apache`, `4.4.13-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.13-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/apache/Dockerfile) -- [`4.4.12-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/fpm-alpine/Dockerfile) +- [`4.4.13-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/fpm-alpine/Dockerfile) -- [`4.4.12-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c1e595c7f2d4bc48dab5a87059c69455edafcd79/4.4/php8.2/fpm/Dockerfile) +- [`4.4.13-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index f347f86bb65e..f05c7795e639 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -64,45 +64,45 @@ WARNING: - [`10.1.40-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.102-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.102-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.102-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.102`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.104-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.104-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.104-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.104`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.102-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.102-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.102-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.104-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.104-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.104-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.102-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.104-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.102-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.104-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.102-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.102-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.104-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.104-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.102-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.102-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.102-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.104-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.104-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.104-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.102-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.102-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.102-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.104-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.104-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.104-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.102-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.104-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.102-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.104-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.102-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.102-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.104-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.104-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.102-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.102-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.102-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.104-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.104-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.104-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.102-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.102-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.102-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.104-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.104-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.104-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.102-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.104-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.102-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.104-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.102-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.102-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.104-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.104-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.102-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.102-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.102-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.104-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.104-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.104-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.102-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.102-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.102-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.104-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.104-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.104-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.102-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.104-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.102-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.104-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.102-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.102-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/4ef8521605121c14062319c9b8688fa4de044ba0/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.104-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.104-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 2cb85f06c66388ba5fcf75a922365ebd344d349c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Apr 2025 10:09:47 -0700 Subject: [PATCH 2072/2686] Run update.sh --- erlang/README.md | 6 +++--- geonetwork/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index e2036dc9dd8f..02c67f7d862b 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,11 +30,11 @@ WARNING: - [`28.0.0.0-rc2-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/alpine/Dockerfile) -- [`27.3.0.0`, `27.3.0`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/Dockerfile) +- [`27.3.2.0`, `27.3.2`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/Dockerfile) -- [`27.3.0.0-slim`, `27.3.0-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/slim/Dockerfile) +- [`27.3.2.0-slim`, `27.3.2-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/slim/Dockerfile) -- [`27.3.0.0-alpine`, `27.3.0-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/40a3acb4c06cd19ca0b97cb28a4570d56db15a12/27/alpine/Dockerfile) +- [`27.3.2.0-alpine`, `27.3.2-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/alpine/Dockerfile) - [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index 79f5c0bdb98b..f52a14f3a04c 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -30,7 +30,7 @@ WARNING: - [`4.2.11`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/060a5ab4c57d690ec5df1649718874efdc1372af/4.2.11/Dockerfile) -- [`4.4.6`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/164b0e4605dd3cbfca5c9be411ebc75ec2aa9267/4.4.6/Dockerfile) +- [`4.4.7`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/87a25196b8dd3a8a1bd2bc8644f86c878de2b1d4/4.4.7/Dockerfile) # Quick reference (cont.) From 48702413f666c6e95604dc9e08126aa297656b4d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Apr 2025 11:09:50 -0700 Subject: [PATCH 2073/2686] Run update.sh --- crate/README.md | 10 ++-------- dart/README.md | 4 ++-- krakend/README.md | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/crate/README.md b/crate/README.md index 1a2367f1d18b..5158360cbfa4 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,15 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.3`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/1dbe963d8752d183fe3773c5caf22a5718f17560/Dockerfile) +- [`5.10.4`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/5da0b7a92dd3bcf98be306aae8587698e8922340/Dockerfile) -- [`5.9.12`, `5.9`](https://github.com/crate/docker-crate/blob/42c7218d834e5c8d2a5db3406aef0d1e7efa2092/Dockerfile) - -- [`5.9.11`](https://github.com/crate/docker-crate/blob/f4ad4959f78765d2d7f0929acd49c2bdf449e8a1/Dockerfile) - -- [`5.8.7`, `5.8`](https://github.com/crate/docker-crate/blob/1e8b7379346e188f5de637d9681d450d9435cb0a/Dockerfile) - -- [`5.7.6`, `5.7`](https://github.com/crate/docker-crate/blob/93c9f0651b3513b57aa0dca19c0a084af25c3ab4/Dockerfile) +- [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 25f34600986c..d375cb38b91e 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6bb6958ed35f37d55d6066bfee4d33f6874e0d9e/stable/bookworm/Dockerfile) +- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/0263762f7e406fb9ec1e210f57d0bc2fe81e6821/stable/bookworm/Dockerfile) -- [`3.8.0-171.2.beta-sdk`, `beta-sdk`, `3.8.0-171.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6bb6958ed35f37d55d6066bfee4d33f6874e0d9e/beta/bookworm/Dockerfile) +- [`3.8.0-278.1.beta-sdk`, `beta-sdk`, `3.8.0-278.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/0263762f7e406fb9ec1e210f57d0bc2fe81e6821/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index a8dcfbae5f2d..64d00ca03190 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9.3`, `2.9`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/bac1c35e5818831f0669176ab140e34705185b55/2.9.3/Dockerfile) +- [`2.9.4`, `2.9`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/899edf02008935285c06b651706d74c275459420/2.9.4/Dockerfile) # Quick reference (cont.) From 13e761880779f184aaad459dd6ebd6b0b4bae0cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Apr 2025 12:11:19 -0700 Subject: [PATCH 2074/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- mediawiki/README.md | 18 +++++++++--------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docker/README.md b/docker/README.md index 660e9dfa9b3f..130c63fa7c36 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/cli/Dockerfile) +- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/cli/Dockerfile) -- [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind/Dockerfile) +- [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/63ecacfddacf6340f6440b09f90c4c62b36f406d/28/dind/Dockerfile) - [`28.0.4-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind-rootless/Dockerfile) -- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.0.4-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 07211886ef9a..994812a9e393 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.43.0`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/apache/Dockerfile) +- [`1.43.1`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/apache/Dockerfile) -- [`1.43.0-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/fpm/Dockerfile) +- [`1.43.1-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/fpm/Dockerfile) -- [`1.43.0-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.43/fpm-alpine/Dockerfile) +- [`1.43.1-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/fpm-alpine/Dockerfile) -- [`1.42.5`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/apache/Dockerfile) +- [`1.42.6`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/apache/Dockerfile) -- [`1.42.5-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/fpm/Dockerfile) +- [`1.42.6-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/fpm/Dockerfile) -- [`1.42.5-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.42/fpm-alpine/Dockerfile) +- [`1.42.6-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/fpm-alpine/Dockerfile) -- [`1.39.11`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/apache/Dockerfile) +- [`1.39.12`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/apache/Dockerfile) -- [`1.39.11-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/fpm/Dockerfile) +- [`1.39.12-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/fpm/Dockerfile) -- [`1.39.11-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/aa20b593fa1190fa37dcf8a0ccedab375539ee81/1.39/fpm-alpine/Dockerfile) +- [`1.39.12-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From 3793f3a22bbd32b91273e3a6e6c86271731f1a88 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Apr 2025 16:11:12 -0700 Subject: [PATCH 2075/2686] Run update.sh --- cassandra/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 3732e06b3d85..fe52c686b4bf 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.3`, `5.0`, `5`, `latest`, `5.0.3-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/105daf8445a12fc96ef48a1314566e0f61f473b2/5.0/Dockerfile) +- [`5.0.4`, `5.0`, `5`, `latest`, `5.0.4-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/0f32c04c976068ddf4b094044bd333ca46d42887/5.0/Dockerfile) -- [`4.1.8`, `4.1`, `4`, `4.1.8-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/f49e80e172f29e2cad0a9acd054806d9709a4205/4.1/Dockerfile) +- [`4.1.8`, `4.1`, `4`, `4.1.8-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/4.1/Dockerfile) -- [`4.0.17`, `4.0`, `4.0.17-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/8b58b84f373e48382e49d59acd0b544b33b2c034/4.0/Dockerfile) +- [`4.0.17`, `4.0`, `4.0.17-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/4.0/Dockerfile) -- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/011007d5b4f1b8e73835366ebb0a85ee89c29436/3.11/Dockerfile) +- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/3.11/Dockerfile) -- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/d47ed59f99316e94a333126a10db20a440d4642d/3.0/Dockerfile) +- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/3.0/Dockerfile) # Quick reference (cont.) From a21d39020a504735fe3789e9da8840d1a014a314 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Apr 2025 10:09:52 -0700 Subject: [PATCH 2076/2686] Run update.sh --- haproxy/README.md | 4 +- php/README.md | 112 +++++++++++-------------------------------- silverpeas/README.md | 4 +- wordpress/README.md | 56 +++++++++++----------- 4 files changed, 60 insertions(+), 116 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 125af66ad482..550451a850b0 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev9`, `3.2-dev`, `3.2-dev9-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/da8223cae7f24a16e7897b87f7571579e942a572/3.2/Dockerfile) +- [`3.2-dev10`, `3.2-dev`, `3.2-dev10-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5af892138fe6cd215b41b6aa9558be9d6e6f875c/3.2/Dockerfile) -- [`3.2-dev9-alpine`, `3.2-dev-alpine`, `3.2-dev9-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/da8223cae7f24a16e7897b87f7571579e942a572/3.2/alpine/Dockerfile) +- [`3.2-dev10-alpine`, `3.2-dev-alpine`, `3.2-dev10-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/5af892138fe6cd215b41b6aa9558be9d6e6f875c/3.2/alpine/Dockerfile) - [`3.1.6`, `3.1`, `latest`, `3.1.6-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/Dockerfile) diff --git a/php/README.md b/php/README.md index 11a4d5959cd5..8fb78637d762 100644 --- a/php/README.md +++ b/php/README.md @@ -24,117 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.6RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.6RC1-bookworm`, `8.4-rc-bookworm`, `8.4.6RC1-cli`, `8.4-rc-cli`, `8.4.6RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.6-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.6-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.6-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.6`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/cli/Dockerfile) -- [`8.4.6RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.6RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.6-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.6-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/apache/Dockerfile) -- [`8.4.6RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.6RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.6-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.6-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/fpm/Dockerfile) -- [`8.4.6RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.6RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.6-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.6-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/zts/Dockerfile) -- [`8.4.6RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.6RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.6-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.6-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/cli/Dockerfile) -- [`8.4.6RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.6-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/apache/Dockerfile) -- [`8.4.6RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.6-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/fpm/Dockerfile) -- [`8.4.6RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.6-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/zts/Dockerfile) -- [`8.4.6RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.6RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.6RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.6RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.6-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.6-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.6-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.6-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.6RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.6RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.6-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.6-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.6RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.6RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.6-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.6-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.6RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.6RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.6-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.6-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.6RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.6-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.6RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/05cb5965701b02846a8a638b32c324865a19e4f7/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.6-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.5-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.5-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.5-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.5`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/cli/Dockerfile) +- [`8.3.20-cli-bookworm`, `8.3-cli-bookworm`, `8.3.20-bookworm`, `8.3-bookworm`, `8.3.20-cli`, `8.3-cli`, `8.3.20`, `8.3`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/cli/Dockerfile) -- [`8.4.5-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.5-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/apache/Dockerfile) +- [`8.3.20-apache-bookworm`, `8.3-apache-bookworm`, `8.3.20-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/apache/Dockerfile) -- [`8.4.5-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.5-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/fpm/Dockerfile) +- [`8.3.20-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.20-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/fpm/Dockerfile) -- [`8.4.5-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.5-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bookworm/zts/Dockerfile) +- [`8.3.20-zts-bookworm`, `8.3-zts-bookworm`, `8.3.20-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/zts/Dockerfile) -- [`8.4.5-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.5-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/cli/Dockerfile) +- [`8.3.20-cli-bullseye`, `8.3-cli-bullseye`, `8.3.20-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/cli/Dockerfile) -- [`8.4.5-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/apache/Dockerfile) +- [`8.3.20-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/apache/Dockerfile) -- [`8.4.5-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/fpm/Dockerfile) +- [`8.3.20-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/fpm/Dockerfile) -- [`8.4.5-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/bullseye/zts/Dockerfile) +- [`8.3.20-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/zts/Dockerfile) -- [`8.4.5-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.5-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.5-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.5-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.20-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.20-alpine3.21`, `8.3-alpine3.21`, `8.3.20-cli-alpine`, `8.3-cli-alpine`, `8.3.20-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.5-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.5-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.20-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.20-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.5-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.5-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.20-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.20-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/zts/Dockerfile) -- [`8.4.5-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.5-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/cli/Dockerfile) +- [`8.3.20-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.20-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/cli/Dockerfile) -- [`8.4.5-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/fpm/Dockerfile) +- [`8.3.20-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/fpm/Dockerfile) -- [`8.4.5-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/cabce86b7a0e3ccc79b46a4f393758ec3b3ef999/8.4/alpine3.20/zts/Dockerfile) - -- [`8.3.20RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.20RC1-bookworm`, `8.3-rc-bookworm`, `8.3.20RC1-cli`, `8.3-rc-cli`, `8.3.20RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/cli/Dockerfile) - -- [`8.3.20RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.20RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/apache/Dockerfile) - -- [`8.3.20RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.20RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/fpm/Dockerfile) - -- [`8.3.20RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.20RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bookworm/zts/Dockerfile) - -- [`8.3.20RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.20RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/cli/Dockerfile) - -- [`8.3.20RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/apache/Dockerfile) - -- [`8.3.20RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/fpm/Dockerfile) - -- [`8.3.20RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/bullseye/zts/Dockerfile) - -- [`8.3.20RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.20RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.20RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.20RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/cli/Dockerfile) - -- [`8.3.20RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.20RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/fpm/Dockerfile) - -- [`8.3.20RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.20RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.20RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.20RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/cli/Dockerfile) - -- [`8.3.20RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/fpm/Dockerfile) - -- [`8.3.20RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/fc3ba68b6504738bc59fcdac908e6d715063f03f/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.19-cli-bookworm`, `8.3-cli-bookworm`, `8.3.19-bookworm`, `8.3-bookworm`, `8.3.19-cli`, `8.3-cli`, `8.3.19`, `8.3`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/cli/Dockerfile) - -- [`8.3.19-apache-bookworm`, `8.3-apache-bookworm`, `8.3.19-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/apache/Dockerfile) - -- [`8.3.19-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.19-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.19-zts-bookworm`, `8.3-zts-bookworm`, `8.3.19-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bookworm/zts/Dockerfile) - -- [`8.3.19-cli-bullseye`, `8.3-cli-bullseye`, `8.3.19-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/cli/Dockerfile) - -- [`8.3.19-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/apache/Dockerfile) - -- [`8.3.19-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.19-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/bullseye/zts/Dockerfile) - -- [`8.3.19-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.19-alpine3.21`, `8.3-alpine3.21`, `8.3.19-cli-alpine`, `8.3-cli-alpine`, `8.3.19-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.19-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.19-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.19-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.19-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.19-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.19-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.19-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.19-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/902d96e2a7a2c8b98ae1882ab515cc0c6b59a39b/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.20-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/zts/Dockerfile) - [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) diff --git a/silverpeas/README.md b/silverpeas/README.md index 280bc1d34c47..b994f3adf9db 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.2`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/c80ded6919cdf9e1d3e50f2dcef80e32b497fbc1/Dockerfile) +- [`6.4.3`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/79cad3dae9a20fb2fb404fba5641c5921d410112/Dockerfile) -- [`6.3.5`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/126477050a7890b45fd57eebe471bfdcff20643d/Dockerfile) +- [`6.3.6`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/f0a4c728794ad0e1f06de88cbea9599489634bf6/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index d71d4429f2bc..fbd01028bdbd 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.7.2-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.2-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/apache/Dockerfile) +- [`6.7.2-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.2-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/apache/Dockerfile) -- [`6.7.2-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/fpm/Dockerfile) +- [`6.7.2-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/fpm/Dockerfile) -- [`6.7.2-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.7.2-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.7.2-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.2`, `6.7`, `6`, `latest`, `6.7.2-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.2-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/apache/Dockerfile) +- [`6.7.2-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.2`, `6.7`, `6`, `latest`, `6.7.2-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.2-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/apache/Dockerfile) -- [`6.7.2-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.2-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/fpm/Dockerfile) +- [`6.7.2-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.2-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/fpm/Dockerfile) -- [`6.7.2-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.2-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.7.2-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.2-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.7.2-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.2-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/apache/Dockerfile) +- [`6.7.2-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.2-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/apache/Dockerfile) -- [`6.7.2-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/fpm/Dockerfile) +- [`6.7.2-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/fpm/Dockerfile) -- [`6.7.2-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/470084224c4a2b4f0c2e19da2af9ab96298739e4/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.7.2-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.7.2-php8.4-apache`, `6.7-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.7.2-php8.4`, `6.7-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/apache/Dockerfile) +- [`6.7.2-php8.4-apache`, `6.7-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.7.2-php8.4`, `6.7-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/apache/Dockerfile) -- [`6.7.2-php8.4-fpm`, `6.7-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/fpm/Dockerfile) +- [`6.7.2-php8.4-fpm`, `6.7-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/fpm/Dockerfile) -- [`6.7.2-php8.4-fpm-alpine`, `6.7-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.7.2-php8.4-fpm-alpine`, `6.7-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/fpm-alpine/Dockerfile) -- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.1/alpine/Dockerfile) +- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.1/alpine/Dockerfile) -- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.2/alpine/Dockerfile) +- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.2/alpine/Dockerfile) -- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/aa3c30f8c0a6a5ba0e1b26f73be802dfc8f18e4f/cli/php8.3/alpine/Dockerfile) +- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.3/alpine/Dockerfile) -- [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/89a9728770fd81577a2408254aa007943733152f/cli/php8.4/alpine/Dockerfile) +- [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-RC3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-RC3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-RC3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-RC3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-RC3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-RC3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-RC3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-RC3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-RC3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-RC3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-RC3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-RC3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/77245d4294cadf422ef17bc7fd6d0a9c6ae36d7a/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-RC3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 68d0daad58f108a9c9af6fc867b7d907313bcab5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Apr 2025 12:09:52 -0700 Subject: [PATCH 2077/2686] Run update.sh --- r-base/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-base/README.md b/r-base/README.md index 033cab96a6b9..819c38b5d957 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.4.3`, `latest`](https://github.com/rocker-org/rocker/blob/6fcc5d8dad96fa24438df79cb46451c5534c04ae/r-base/4.4.3/Dockerfile) +- [`4.5.0`, `latest`](https://github.com/rocker-org/rocker/blob/995a8e88700f11166ab858fed1356948b9834545/r-base/4.5.0/Dockerfile) # Quick reference (cont.) From 2d90d3dfb0de88bedca3bfd3156600f51e711d49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Apr 2025 16:09:52 -0700 Subject: [PATCH 2078/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 2177d14dec2a..95e7f582e451 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.116.1`, `5.116`, `5`, `latest`](https://github.com/docker-library/ghost/blob/23f482865cd747b6ea699bcc06c54be5db764343/5/debian/Dockerfile) +- [`5.116.2`, `5.116`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5e14ecbeffa53892c3b777023a1fe99155a99774/5/debian/Dockerfile) -- [`5.116.1-alpine`, `5.116-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/23f482865cd747b6ea699bcc06c54be5db764343/5/alpine/Dockerfile) +- [`5.116.2-alpine`, `5.116-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5e14ecbeffa53892c3b777023a1fe99155a99774/5/alpine/Dockerfile) # Quick reference (cont.) From b22fb57f227964b839652b11f5489414b9fbbcde Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Apr 2025 17:10:05 -0700 Subject: [PATCH 2079/2686] Run update.sh --- docker/README.md | 18 ++++++++++++++++++ rabbitmq/README.md | 8 ++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/docker/README.md b/docker/README.md index 130c63fa7c36..dcc1fe8d5cb1 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,18 @@ WARNING: ## Simple Tags +- [`28.1.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.1.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/cli/Dockerfile) + +- [`28.1.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.1.0-rc.1-dind-alpine3.21`, `28.1.0-rc.1`, `28-rc`, `rc`, `28.1.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind/Dockerfile) + +- [`28.1.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind-rootless/Dockerfile) + +- [`28.1.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.1.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`28.1.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/cli/Dockerfile) - [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/63ecacfddacf6340f6440b09f90c4c62b36f406d/28/dind/Dockerfile) @@ -42,6 +54,12 @@ WARNING: ## Shared Tags +- `28.1.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.1.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-1809/Dockerfile) + - `28.0.4-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2025/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index ef316670531a..907bf65b02a0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-rc.1`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/ecda659712dd6ac68b4e99c0f8b0f1e1c70893fd/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0-rc.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/c82062bf22c402693e5c93722c60b775200b2f00/4.1-rc/ubuntu/Dockerfile) -- [`4.1.0-rc.1-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-rc.2-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) -- [`4.1.0-rc.1-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/ecda659712dd6ac68b4e99c0f8b0f1e1c70893fd/4.1-rc/alpine/Dockerfile) +- [`4.1.0-rc.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c82062bf22c402693e5c93722c60b775200b2f00/4.1-rc/alpine/Dockerfile) -- [`4.1.0-rc.1-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-rc.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) - [`4.0.8`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6ec3910359898e81e66f45531ca783e60e348b9f/4.0/ubuntu/Dockerfile) From 52d055b48409ee1f7f7436b506e9fb5efca31483 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 11:09:41 -0700 Subject: [PATCH 2080/2686] Run update.sh --- archlinux/README.md | 6 ++--- clearlinux/README.md | 2 +- perl/README.md | 64 ++++++++++++++++++++++---------------------- tomee/README.md | 48 ++++++++++++++++----------------- 4 files changed, 60 insertions(+), 60 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index d937641ae31a..09625f654e6f 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.base) +- [`latest`, `base`, `base-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.base) -- [`base-devel`, `base-devel-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250406.0.331908`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/cbc122e627cf8abf286b2e1a306909a57711f13d/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 016f0c83a5d8..0717a0c3b8db 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/73a3d2aacd6ffd03b8ff3c925e4b04b34dc1cd95/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/aad33d30f672c97befac5e431ddd877709392739/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 690e39d60e1c..bdbee72dfb14 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.1`, `5.40`, `5`, `latest`, `stable`, `5.40.1-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main-bookworm/Dockerfile) +- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main-bookworm/Dockerfile) -- [`5.40.1-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main-bullseye/Dockerfile) +- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main-bullseye/Dockerfile) -- [`5.40.1-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.1-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim-bookworm/Dockerfile) +- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim-bookworm/Dockerfile) -- [`5.40.1-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim-bullseye/Dockerfile) +- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim-bullseye/Dockerfile) -- [`5.40.1-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.1-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main,threaded-bookworm/Dockerfile) +- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main,threaded-bookworm/Dockerfile) -- [`5.40.1-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-main,threaded-bullseye/Dockerfile) +- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main,threaded-bullseye/Dockerfile) -- [`5.40.1-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.1-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim,threaded-bookworm/Dockerfile) +- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim,threaded-bookworm/Dockerfile) -- [`5.40.1-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.040.001-slim,threaded-bullseye/Dockerfile) +- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.3`, `5.38`, `5.38.3-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main-bookworm/Dockerfile) +- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main-bookworm/Dockerfile) -- [`5.38.3-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main-bullseye/Dockerfile) +- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main-bullseye/Dockerfile) -- [`5.38.3-slim`, `5.38-slim`, `5.38.3-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim-bookworm/Dockerfile) +- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim-bookworm/Dockerfile) -- [`5.38.3-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim-bullseye/Dockerfile) +- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim-bullseye/Dockerfile) -- [`5.38.3-threaded`, `5.38-threaded`, `5.38.3-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main,threaded-bookworm/Dockerfile) +- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main,threaded-bookworm/Dockerfile) -- [`5.38.3-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-main,threaded-bullseye/Dockerfile) +- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main,threaded-bullseye/Dockerfile) -- [`5.38.3-slim-threaded`, `5.38-slim-threaded`, `5.38.3-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim,threaded-bookworm/Dockerfile) +- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim,threaded-bookworm/Dockerfile) -- [`5.38.3-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.038.003-slim,threaded-bullseye/Dockerfile) +- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.8`, `5.41`, `devel`, `5.41.8-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main-bookworm/Dockerfile) +- [`5.41.10`, `5.41`, `devel`, `5.41.10-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main-bookworm/Dockerfile) -- [`5.41.8-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main-bullseye/Dockerfile) +- [`5.41.10-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main-bullseye/Dockerfile) -- [`5.41.8-slim`, `5.41-slim`, `devel-slim`, `5.41.8-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim-bookworm/Dockerfile) +- [`5.41.10-slim`, `5.41-slim`, `devel-slim`, `5.41.10-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim-bookworm/Dockerfile) -- [`5.41.8-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim-bullseye/Dockerfile) +- [`5.41.10-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim-bullseye/Dockerfile) -- [`5.41.8-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.8-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main,threaded-bookworm/Dockerfile) +- [`5.41.10-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.10-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main,threaded-bookworm/Dockerfile) -- [`5.41.8-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-main,threaded-bullseye/Dockerfile) +- [`5.41.10-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main,threaded-bullseye/Dockerfile) -- [`5.41.8-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.8-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim,threaded-bookworm/Dockerfile) +- [`5.41.10-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.10-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim,threaded-bookworm/Dockerfile) -- [`5.41.8-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/66e7ed371f54a5eb3862b5a89b0b65efcbacbde7/5.041.008-slim,threaded-bullseye/Dockerfile) +- [`5.41.10-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index ff3caba6f3f2..49e7dccafbc5 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.0-jre21-Temurin-ubuntu-microprofile`, `10.0.0-Temurin-ubuntu-microprofile`, `10.0.0-jre21-ubuntu-microprofile`, `10.0.0-ubuntu-microprofile`, `10.0.0-jre21-Temurin-microprofile`, `10.0.0-Temurin-microprofile`, `10.0.0-jre21-microprofile`, `10.0.0-microprofile`, `10.0.0-jre21-Temurin-ubuntu`, `10.0.0-Temurin-ubuntu`, `10.0.0-jre21-ubuntu`, `10.0.0-ubuntu`, `10.0.0-jre21-Temurin`, `10.0.0-Temurin`, `10.0.0-jre21`, `10.0.0`, `10.0-jre21-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre21-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre21-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre21-microprofile`, `10.0-microprofile`, `10.0-jre21-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre21-ubuntu`, `10.0-ubuntu`, `10.0-jre21-Temurin`, `10.0-Temurin`, `10.0-jre21`, `10.0`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.1-jre21-Temurin-ubuntu-microprofile`, `10.0.1-Temurin-ubuntu-microprofile`, `10.0.1-jre21-ubuntu-microprofile`, `10.0.1-ubuntu-microprofile`, `10.0.1-jre21-Temurin-microprofile`, `10.0.1-Temurin-microprofile`, `10.0.1-jre21-microprofile`, `10.0.1-microprofile`, `10.0.1-jre21-Temurin-ubuntu`, `10.0.1-Temurin-ubuntu`, `10.0.1-jre21-ubuntu`, `10.0.1-ubuntu`, `10.0.1-jre21-Temurin`, `10.0.1-Temurin`, `10.0.1-jre21`, `10.0.1`, `10.0-jre21-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre21-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre21-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre21-microprofile`, `10.0-microprofile`, `10.0-jre21-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre21-ubuntu`, `10.0-ubuntu`, `10.0-jre21-Temurin`, `10.0-Temurin`, `10.0-jre21`, `10.0`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.0-jre21-Temurin-ubuntu-plume`, `10.0.0-Temurin-ubuntu-plume`, `10.0.0-jre21-ubuntu-plume`, `10.0.0-ubuntu-plume`, `10.0.0-jre21-Temurin-plume`, `10.0.0-Temurin-plume`, `10.0.0-jre21-plume`, `10.0.0-plume`, `10.0-jre21-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre21-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre21-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre21-plume`, `10.0-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.1-jre21-Temurin-ubuntu-plume`, `10.0.1-Temurin-ubuntu-plume`, `10.0.1-jre21-ubuntu-plume`, `10.0.1-ubuntu-plume`, `10.0.1-jre21-Temurin-plume`, `10.0.1-Temurin-plume`, `10.0.1-jre21-plume`, `10.0.1-plume`, `10.0-jre21-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre21-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre21-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre21-plume`, `10.0-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.0-jre21-Temurin-ubuntu-plus`, `10.0.0-Temurin-ubuntu-plus`, `10.0.0-jre21-ubuntu-plus`, `10.0.0-ubuntu-plus`, `10.0.0-jre21-Temurin-plus`, `10.0.0-Temurin-plus`, `10.0.0-jre21-plus`, `10.0.0-plus`, `10.0-jre21-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre21-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre21-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre21-plus`, `10.0-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.1-jre21-Temurin-ubuntu-plus`, `10.0.1-Temurin-ubuntu-plus`, `10.0.1-jre21-ubuntu-plus`, `10.0.1-ubuntu-plus`, `10.0.1-jre21-Temurin-plus`, `10.0.1-Temurin-plus`, `10.0.1-jre21-plus`, `10.0.1-plus`, `10.0-jre21-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre21-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre21-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre21-plus`, `10.0-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.0-jre21-Temurin-ubuntu-webprofile`, `10.0.0-Temurin-ubuntu-webprofile`, `10.0.0-jre21-ubuntu-webprofile`, `10.0.0-ubuntu-webprofile`, `10.0.0-jre21-Temurin-webprofile`, `10.0.0-Temurin-webprofile`, `10.0.0-jre21-webprofile`, `10.0.0-webprofile`, `10.0-jre21-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre21-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre21-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre21-webprofile`, `10.0-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.1-jre21-Temurin-ubuntu-webprofile`, `10.0.1-Temurin-ubuntu-webprofile`, `10.0.1-jre21-ubuntu-webprofile`, `10.0.1-ubuntu-webprofile`, `10.0.1-jre21-Temurin-webprofile`, `10.0.1-Temurin-webprofile`, `10.0.1-jre21-webprofile`, `10.0.1-webprofile`, `10.0-jre21-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre21-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre21-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre21-webprofile`, `10.0-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.0-jre21-Temurin-alpine-microprofile`, `10.0.0-Temurin-alpine-microprofile`, `10.0.0-jre21-alpine-microprofile`, `10.0.0-alpine-microprofile`, `10.0.0-jre21-Temurin-alpine`, `10.0.0-Temurin-alpine`, `10.0.0-jre21-alpine`, `10.0.0-alpine`, `10.0-jre21-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre21-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre21-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre21-alpine`, `10.0-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.1-jre21-Temurin-alpine-microprofile`, `10.0.1-Temurin-alpine-microprofile`, `10.0.1-jre21-alpine-microprofile`, `10.0.1-alpine-microprofile`, `10.0.1-jre21-Temurin-alpine`, `10.0.1-Temurin-alpine`, `10.0.1-jre21-alpine`, `10.0.1-alpine`, `10.0-jre21-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre21-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre21-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre21-alpine`, `10.0-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.0-jre21-Temurin-alpine-plume`, `10.0.0-Temurin-alpine-plume`, `10.0.0-jre21-alpine-plume`, `10.0.0-alpine-plume`, `10.0-jre21-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre21-alpine-plume`, `10.0-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/plume/Dockerfile) +- [`10.0.1-jre21-Temurin-alpine-plume`, `10.0.1-Temurin-alpine-plume`, `10.0.1-jre21-alpine-plume`, `10.0.1-alpine-plume`, `10.0-jre21-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre21-alpine-plume`, `10.0-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/plume/Dockerfile) -- [`10.0.0-jre21-Temurin-alpine-plus`, `10.0.0-Temurin-alpine-plus`, `10.0.0-jre21-alpine-plus`, `10.0.0-alpine-plus`, `10.0-jre21-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre21-alpine-plus`, `10.0-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/plus/Dockerfile) +- [`10.0.1-jre21-Temurin-alpine-plus`, `10.0.1-Temurin-alpine-plus`, `10.0.1-jre21-alpine-plus`, `10.0.1-alpine-plus`, `10.0-jre21-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre21-alpine-plus`, `10.0-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/plus/Dockerfile) -- [`10.0.0-jre21-Temurin-alpine-webprofile`, `10.0.0-Temurin-alpine-webprofile`, `10.0.0-jre21-alpine-webprofile`, `10.0.0-alpine-webprofile`, `10.0-jre21-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre21-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.1-jre21-Temurin-alpine-webprofile`, `10.0.1-Temurin-alpine-webprofile`, `10.0.1-jre21-alpine-webprofile`, `10.0.1-alpine-webprofile`, `10.0-jre21-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre21-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.0-jre21-Semeru-ubuntu-microprofile`, `10.0.0-Semeru-ubuntu-microprofile`, `10.0.0-jre21-Semeru-microprofile`, `10.0.0-Semeru-microprofile`, `10.0.0-jre21-Semeru-ubuntu`, `10.0.0-Semeru-ubuntu`, `10.0.0-jre21-Semeru`, `10.0.0-Semeru`, `10.0-jre21-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre21-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre21-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre21-Semeru`, `10.0-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.1-jre21-Semeru-ubuntu-microprofile`, `10.0.1-Semeru-ubuntu-microprofile`, `10.0.1-jre21-Semeru-microprofile`, `10.0.1-Semeru-microprofile`, `10.0.1-jre21-Semeru-ubuntu`, `10.0.1-Semeru-ubuntu`, `10.0.1-jre21-Semeru`, `10.0.1-Semeru`, `10.0-jre21-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre21-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre21-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre21-Semeru`, `10.0-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.0-jre21-Semeru-ubuntu-plume`, `10.0.0-Semeru-ubuntu-plume`, `10.0.0-jre21-Semeru-plume`, `10.0.0-Semeru-plume`, `10.0-jre21-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre21-Semeru-plume`, `10.0-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.1-jre21-Semeru-ubuntu-plume`, `10.0.1-Semeru-ubuntu-plume`, `10.0.1-jre21-Semeru-plume`, `10.0.1-Semeru-plume`, `10.0-jre21-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre21-Semeru-plume`, `10.0-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.0-jre21-Semeru-ubuntu-plus`, `10.0.0-Semeru-ubuntu-plus`, `10.0.0-jre21-Semeru-plus`, `10.0.0-Semeru-plus`, `10.0-jre21-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre21-Semeru-plus`, `10.0-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.1-jre21-Semeru-ubuntu-plus`, `10.0.1-Semeru-ubuntu-plus`, `10.0.1-jre21-Semeru-plus`, `10.0.1-Semeru-plus`, `10.0-jre21-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre21-Semeru-plus`, `10.0-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.0-jre21-Semeru-ubuntu-webprofile`, `10.0.0-Semeru-ubuntu-webprofile`, `10.0.0-jre21-Semeru-webprofile`, `10.0.0-Semeru-webprofile`, `10.0-jre21-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre21-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre21/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.1-jre21-Semeru-ubuntu-webprofile`, `10.0.1-Semeru-ubuntu-webprofile`, `10.0.1-jre21-Semeru-webprofile`, `10.0.1-Semeru-webprofile`, `10.0-jre21-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre21-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.0.0-jre17-Temurin-ubuntu-microprofile`, `10.0.0-jre17-ubuntu-microprofile`, `10.0.0-jre17-Temurin-microprofile`, `10.0.0-jre17-microprofile`, `10.0.0-jre17-Temurin-ubuntu`, `10.0.0-jre17-ubuntu`, `10.0.0-jre17-Temurin`, `10.0.0-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.0.1-jre17-Temurin-ubuntu-microprofile`, `10.0.1-jre17-ubuntu-microprofile`, `10.0.1-jre17-Temurin-microprofile`, `10.0.1-jre17-microprofile`, `10.0.1-jre17-Temurin-ubuntu`, `10.0.1-jre17-ubuntu`, `10.0.1-jre17-Temurin`, `10.0.1-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.0-jre17-Temurin-ubuntu-plume`, `10.0.0-jre17-ubuntu-plume`, `10.0.0-jre17-Temurin-plume`, `10.0.0-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.0.1-jre17-Temurin-ubuntu-plume`, `10.0.1-jre17-ubuntu-plume`, `10.0.1-jre17-Temurin-plume`, `10.0.1-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.0-jre17-Temurin-ubuntu-plus`, `10.0.0-jre17-ubuntu-plus`, `10.0.0-jre17-Temurin-plus`, `10.0.0-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.0.1-jre17-Temurin-ubuntu-plus`, `10.0.1-jre17-ubuntu-plus`, `10.0.1-jre17-Temurin-plus`, `10.0.1-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.0-jre17-Temurin-ubuntu-webprofile`, `10.0.0-jre17-ubuntu-webprofile`, `10.0.0-jre17-Temurin-webprofile`, `10.0.0-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.0.1-jre17-Temurin-ubuntu-webprofile`, `10.0.1-jre17-ubuntu-webprofile`, `10.0.1-jre17-Temurin-webprofile`, `10.0.1-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.0-jre17-Temurin-alpine-microprofile`, `10.0.0-jre17-alpine-microprofile`, `10.0.0-jre17-Temurin-alpine`, `10.0.0-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.0.1-jre17-Temurin-alpine-microprofile`, `10.0.1-jre17-alpine-microprofile`, `10.0.1-jre17-Temurin-alpine`, `10.0.1-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.0-jre17-Temurin-alpine-plume`, `10.0.0-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.0.1-jre17-Temurin-alpine-plume`, `10.0.1-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.0.0-jre17-Temurin-alpine-plus`, `10.0.0-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.0.1-jre17-Temurin-alpine-plus`, `10.0.1-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.0.0-jre17-Temurin-alpine-webprofile`, `10.0.0-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.0.1-jre17-Temurin-alpine-webprofile`, `10.0.1-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.0-jre17-Semeru-ubuntu-microprofile`, `10.0.0-jre17-Semeru-microprofile`, `10.0.0-jre17-Semeru-ubuntu`, `10.0.0-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.0.1-jre17-Semeru-ubuntu-microprofile`, `10.0.1-jre17-Semeru-microprofile`, `10.0.1-jre17-Semeru-ubuntu`, `10.0.1-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.0-jre17-Semeru-ubuntu-plume`, `10.0.0-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.0.1-jre17-Semeru-ubuntu-plume`, `10.0.1-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.0-jre17-Semeru-ubuntu-plus`, `10.0.0-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.0.1-jre17-Semeru-ubuntu-plus`, `10.0.1-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.0-jre17-Semeru-ubuntu-webprofile`, `10.0.0-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/6c9d8f07968c634f662f307d257bc7e827237296/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.0.1-jre17-Semeru-ubuntu-webprofile`, `10.0.1-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From e6dfb8bda2b19f1c3b36913f208adcaa722068ab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 12:09:52 -0700 Subject: [PATCH 2081/2686] Run update.sh --- adminer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 24c3746e0f15..e4b96233d17c 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.1.0`, `5`, `latest`, `5.1.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/681be82fc7d6186825f481cb155e57ea9a1bbd28/5/Dockerfile) +- [`5.2.1`, `5`, `latest`, `5.2.1-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/e1bbfa80275b335a47fc08591fde7ac6210c9fd9/5/Dockerfile) -- [`5.1.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/681be82fc7d6186825f481cb155e57ea9a1bbd28/5/fastcgi/Dockerfile) +- [`5.2.1-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/e1bbfa80275b335a47fc08591fde7ac6210c9fd9/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) From ec54392982f17748eed7c556b6d39565c9cf7156 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 14:10:02 -0700 Subject: [PATCH 2082/2686] Run update.sh --- almalinux/README.md | 12 ++++++------ geonetwork/README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index a1f39568bb10..b945f0bfa694 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250204`](https://github.com/AlmaLinux/container-images/blob/0dd34b412e662a392275d79dc2f0fb635e74ff7a/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250411`](https://github.com/AlmaLinux/container-images/blob/fe90cd58f021d87941fd2a8abfbbe92e89511ade/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250204`](https://github.com/AlmaLinux/container-images/blob/0dd34b412e662a392275d79dc2f0fb635e74ff7a/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/fe90cd58f021d87941fd2a8abfbbe92e89511ade/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250307`](https://github.com/AlmaLinux/container-images/blob/861f8cac54e81214b50b6f5d9bb6c6c8f3878651/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250411`](https://github.com/AlmaLinux/container-images/blob/9f9b3c8c8cf4a57fd42f362570ff47c75788031f/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250307`](https://github.com/AlmaLinux/container-images/blob/861f8cac54e81214b50b6f5d9bb6c6c8f3878651/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/9f9b3c8c8cf4a57fd42f362570ff47c75788031f/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.5`, `9.5-20250307`](https://github.com/AlmaLinux/container-images/blob/42e0ab782d07aaf454c82face64cece898f109c8/default/amd64/Dockerfile) +- [`latest`, `9`, `9.5`, `9.5-20250411`](https://github.com/AlmaLinux/container-images/blob/0bedcce49a80a0861e3435facb1a3f7b8b492900/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250307`](https://github.com/AlmaLinux/container-images/blob/42e0ab782d07aaf454c82face64cece898f109c8/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/0bedcce49a80a0861e3435facb1a3f7b8b492900/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index f52a14f3a04c..f8a40c7980d2 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -28,7 +28,7 @@ WARNING: - [`3.12.12-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/postgres/Dockerfile) -- [`4.2.11`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/060a5ab4c57d690ec5df1649718874efdc1372af/4.2.11/Dockerfile) +- [`4.2.12`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/a3e15b94330e69449238b4bb0c6e6909f958afa2/4.2.12/Dockerfile) - [`4.4.7`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/87a25196b8dd3a8a1bd2bc8644f86c878de2b1d4/4.4.7/Dockerfile) From e65b59bf7bbf00e0d143d8c708261a5a07ca0aab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 15:10:18 -0700 Subject: [PATCH 2083/2686] Run update.sh --- golang/README.md | 12 +++++------ openjdk/README.md | 50 ++++++++++++++++++++++----------------------- orientdb/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- ruby/README.md | 12 +++++------ telegraf/README.md | 12 +++++------ wordpress/README.md | 24 +++++++++++----------- xwiki/README.md | 6 +++--- 8 files changed, 64 insertions(+), 64 deletions(-) diff --git a/golang/README.md b/golang/README.md index b9434e7be6eb..723e15160780 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250406-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bookworm/Dockerfile) +- [`tip-20250413-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bookworm/Dockerfile) -- [`tip-20250406-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bullseye/Dockerfile) +- [`tip-20250413-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bullseye/Dockerfile) -- [`tip-20250406-alpine3.21`, `tip-alpine3.21`, `tip-20250406-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/alpine3.21/Dockerfile) +- [`tip-20250413-alpine3.21`, `tip-alpine3.21`, `tip-20250413-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/alpine3.21/Dockerfile) -- [`tip-20250406-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/alpine3.20/Dockerfile) +- [`tip-20250413-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250406`, `tip`: +- `tip-20250413`, `tip`: - - [`tip-20250406-bookworm`](https://github.com/docker-library/golang/blob/6654051ef4316e6f0350f0cd95d8e2105cca364b/tip/bookworm/Dockerfile) + - [`tip-20250413-bookworm`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index c41c6029dfef..4abcf9ccfd3b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-17-jdk-oraclelinux9`, `25-ea-17-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-17-jdk-oracle`, `25-ea-17-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-18-jdk-oraclelinux9`, `25-ea-18-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-18-jdk-oracle`, `25-ea-18-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-17-jdk-oraclelinux8`, `25-ea-17-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-18-jdk-oraclelinux8`, `25-ea-18-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-17-jdk-bookworm`, `25-ea-17-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/bookworm/Dockerfile) +- [`25-ea-18-jdk-bookworm`, `25-ea-18-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/bookworm/Dockerfile) -- [`25-ea-17-jdk-slim-bookworm`, `25-ea-17-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-17-jdk-slim`, `25-ea-17-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-18-jdk-slim-bookworm`, `25-ea-18-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-18-jdk-slim`, `25-ea-18-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-17-jdk-bullseye`, `25-ea-17-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/bullseye/Dockerfile) +- [`25-ea-18-jdk-bullseye`, `25-ea-18-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/bullseye/Dockerfile) -- [`25-ea-17-jdk-slim-bullseye`, `25-ea-17-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-18-jdk-slim-bullseye`, `25-ea-18-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-17-jdk-windowsservercore-ltsc2025`, `25-ea-17-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-18-jdk-windowsservercore-ltsc2025`, `25-ea-18-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-17-jdk-windowsservercore-ltsc2022`, `25-ea-17-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-18-jdk-windowsservercore-ltsc2022`, `25-ea-18-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-17-jdk-windowsservercore-1809`, `25-ea-17-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-18-jdk-windowsservercore-1809`, `25-ea-18-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-17-jdk-nanoserver-ltsc2025`, `25-ea-17-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-18-jdk-nanoserver-ltsc2025`, `25-ea-18-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-17-jdk-nanoserver-ltsc2022`, `25-ea-17-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-18-jdk-nanoserver-ltsc2022`, `25-ea-18-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-17-jdk-nanoserver-1809`, `25-ea-17-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-18-jdk-nanoserver-1809`, `25-ea-18-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-17-jdk`, `25-ea-17`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-18-jdk`, `25-ea-18`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-17-jdk-windowsservercore`, `25-ea-17-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-18-jdk-windowsservercore`, `25-ea-18-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-17-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-17-jdk-nanoserver`, `25-ea-17-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-18-jdk-nanoserver`, `25-ea-18-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-17-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-17-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-17-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/ab3f97900122c5e175d5db511968bb6fbb93075f/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-18-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-18-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index d75d3e8bc39f..8cf3a359fba9 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.38`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/93cc44e52b4538b72e15537cb709ae0808ac16fa/release/3.2.x/3.2.38/Dockerfile) +- [`3.2.39`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/d5fc5b95efa83975ea52419c19f2b2c94e9426d0/release/3.2.x/3.2.39/Dockerfile) -- [`3.2.38-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/93cc44e52b4538b72e15537cb709ae0808ac16fa/release/3.2.x/3.2.38-tp3/Dockerfile) +- [`3.2.39-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/d5fc5b95efa83975ea52419c19f2b2c94e9426d0/release/3.2.x/3.2.39-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 907bf65b02a0..ed7cce0ba351 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.1.0-rc.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) -- [`4.0.8`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6ec3910359898e81e66f45531ca783e60e348b9f/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/ubuntu/Dockerfile) -- [`4.0.8-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.9-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.8-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6ec3910359898e81e66f45531ca783e60e348b9f/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/alpine/Dockerfile) -- [`4.0.8-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.9-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/ubuntu/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 74013782298e..f57c1f27886d 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.4.2-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.2`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/bookworm/Dockerfile) +- [`3.4.3-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.3`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/bookworm/Dockerfile) -- [`3.4.2-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.2-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/slim-bookworm/Dockerfile) +- [`3.4.3-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.3-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/slim-bookworm/Dockerfile) -- [`3.4.2-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/bullseye/Dockerfile) +- [`3.4.3-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/bullseye/Dockerfile) -- [`3.4.2-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/slim-bullseye/Dockerfile) +- [`3.4.3-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/slim-bullseye/Dockerfile) -- [`3.4.2-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.2-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/alpine3.21/Dockerfile) +- [`3.4.3-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.3-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/alpine3.21/Dockerfile) -- [`3.4.2-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/b8c490723bba11a80431effaee96030475f643bb/3.4/alpine3.20/Dockerfile) +- [`3.4.3-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/alpine3.20/Dockerfile) - [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 1e15ba507b08..ae4f2cf1b318 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/6efb848a5d43d569b0f9b64026e6bd97caafca8c/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.34/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index fbd01028bdbd..07615c18111c 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-RC3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/apache/Dockerfile) +- [`beta-6.8-RC4-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC4-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/apache/Dockerfile) -- [`beta-6.8-RC3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/fpm/Dockerfile) +- [`beta-6.8-RC4-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.8-RC4-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/apache/Dockerfile) +- [`beta-6.8-RC4-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC4`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC4-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC4-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/apache/Dockerfile) -- [`beta-6.8-RC3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/fpm/Dockerfile) +- [`beta-6.8-RC4-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC4-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/fpm/Dockerfile) -- [`beta-6.8-RC3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.8-RC4-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC4-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/apache/Dockerfile) +- [`beta-6.8-RC4-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC4-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/apache/Dockerfile) -- [`beta-6.8-RC3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/fpm/Dockerfile) +- [`beta-6.8-RC4-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.8-RC4-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.8-RC3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/apache/Dockerfile) +- [`beta-6.8-RC4-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC4-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/apache/Dockerfile) -- [`beta-6.8-RC3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/fpm/Dockerfile) +- [`beta-6.8-RC4-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/fpm/Dockerfile) -- [`beta-6.8-RC3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.8-RC4-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index c088543db0dd..904254103781 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.2`, `17.2.0`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/mysql-tomcat/Dockerfile) +- [`17`, `17.2`, `17.2.1`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/e97854f466beab3b98521ae65b41cea061121fe6/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.5`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mysql-tomcat/Dockerfile) From 9570edaed6bb82197beda381188da69ecd2b387f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 16:09:59 -0700 Subject: [PATCH 2084/2686] Run update.sh --- mongo/README.md | 108 ++++++++++++++++++++++++------------------------ 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 662daf635fa6..f476c5c9b100 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,97 +28,97 @@ WARNING: ## Simple Tags -- [`8.0.6-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/Dockerfile) +- [`8.0.8-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/Dockerfile) -- [`8.0.6-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.8-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.6-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.8-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.6-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) +- [`8.0.8-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.6-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.8-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.6-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.8-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.18-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/Dockerfile) +- [`7.0.19-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/Dockerfile) -- [`7.0.18-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.19-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.18-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.19-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.18-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.19-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.18-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.19-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.18-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.19-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.21-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/Dockerfile) +- [`6.0.22-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/Dockerfile) -- [`6.0.21-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.22-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`6.0.21-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.22-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.21-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.22-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.21-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.22-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.21-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.22-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `8.0.6`, `8.0`, `8`, `latest`: +- `8.0.8`, `8.0`, `8`, `latest`: - - [`8.0.6-noble`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/Dockerfile) - - [`8.0.6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.8-noble`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/Dockerfile) + - [`8.0.8-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.6-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.8-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.8-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.6-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.8-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/65fe0ab65cb529c9772bedca669568a2b0bffb02/8.0/windows/nanoserver-1809/Dockerfile) + - [`8.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.18`, `7.0`, `7`: +- `7.0.19`, `7.0`, `7`: - - [`7.0.18-jammy`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/Dockerfile) - - [`7.0.18-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.19-jammy`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/Dockerfile) + - [`7.0.19-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.18-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.19-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.18-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.18-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.18-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.19-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.18-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.19-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.18-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.18-nanoserver-1809`](https://github.com/docker-library/mongo/blob/064da22dd72d6461b759f1eaa6e036476a64b553/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.21`, `6.0`, `6`: +- `6.0.22`, `6.0`, `6`: - - [`6.0.21-jammy`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/Dockerfile) - - [`6.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.22-jammy`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/Dockerfile) + - [`6.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.21-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.22-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.21-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.21-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.22-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.21-nanoserver-1809`](https://github.com/docker-library/mongo/blob/02fd6f0b50a32aaafcfde7dec0cdf7eb2a6c30bf/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 93a21d8c79f20484776204cb6d227ce2f7830397 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Apr 2025 17:09:41 -0700 Subject: [PATCH 2085/2686] Run update.sh --- jruby/README.md | 40 ++++++++++++++++++++++++---------------- mysql/README.md | 8 ++++---- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 01ee3e59f47d..5af10318f9d5 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,37 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.0`, `9.4.12.0-jre`, `9.4.12.0-jre8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre8/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.0`, `10.0.0.0-jre`, `10.0.0.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jre21/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.0-jdk`, `9.4.12.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk8/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.0-jdk`, `10.0.0.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jdk21/Dockerfile) -- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.0-jre11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre11/Dockerfile) +- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.0-jre24`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jre24/Dockerfile) -- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk11/Dockerfile) +- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.0-jdk24`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jdk24/Dockerfile) -- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk17/Dockerfile) +- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.0`, `9.4.12.0-jre`, `9.4.12.0-jre8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre8/Dockerfile) -- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.0-jre17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre17/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.0-jdk`, `9.4.12.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk8/Dockerfile) -- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jdk21/Dockerfile) +- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.0-jre11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre11/Dockerfile) -- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.0-jre21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.4/jre21/Dockerfile) +- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk11/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre8/Dockerfile) +- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk17/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk8/Dockerfile) +- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.0-jre17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre17/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre11/Dockerfile) +- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk21/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk11/Dockerfile) +- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre21/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk17/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre8/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre17/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk8/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jdk21/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre11/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/a35def8fa9a00387097d745c38c5a66be4494a32/9.3/jre21/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk11/Dockerfile) + +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk17/Dockerfile) + +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre17/Dockerfile) + +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk21/Dockerfile) + +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index b4b3fcd66f4a..68b07d158ede 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.2.0`, `9.2`, `9`, `innovation`, `latest`, `9.2.0-oraclelinux9`, `9.2-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.2.0-oracle`, `9.2-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/df3a5c483a5e8c3c4d1eae61678fa5372c403bf0/innovation/Dockerfile.oracle) +- [`9.3.0`, `9.3`, `9`, `innovation`, `latest`, `9.3.0-oraclelinux9`, `9.3-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.3.0-oracle`, `9.3-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1b9d0c10ad8569c9419d76aacec9dbab23c48e9e/innovation/Dockerfile.oracle) -- [`8.4.4`, `8.4`, `8`, `lts`, `8.4.4-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.4-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/42386a0efb57a032d707e822086feea263088ad9/8.4/Dockerfile.oracle) +- [`8.4.5`, `8.4`, `8`, `lts`, `8.4.5-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.5-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/56251691b082d1aca21065a79a9d8e796daf3ea6/8.4/Dockerfile.oracle) -- [`8.0.41`, `8.0`, `8.0.41-oraclelinux9`, `8.0-oraclelinux9`, `8.0.41-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/6978e12b0d46abf24015045bd22a0cf11b19c150/8.0/Dockerfile.oracle) +- [`8.0.42`, `8.0`, `8.0.42-oraclelinux9`, `8.0-oraclelinux9`, `8.0.42-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.oracle) -- [`8.0.41-bookworm`, `8.0-bookworm`, `8.0.41-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/6978e12b0d46abf24015045bd22a0cf11b19c150/8.0/Dockerfile.debian) +- [`8.0.42-bookworm`, `8.0-bookworm`, `8.0.42-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.debian) # Quick reference (cont.) From 9f6d75c0f22c98081ffaafccf1c59172145ff36f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Apr 2025 10:09:53 -0700 Subject: [PATCH 2086/2686] Run update.sh --- adminer/README.md | 4 ++-- gradle/README.md | 58 +++++++++++++++++++++++------------------------ odoo/README.md | 6 ++--- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index e4b96233d17c..31049e93bafe 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1`, `5`, `latest`, `5.2.1-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/e1bbfa80275b335a47fc08591fde7ac6210c9fd9/5/Dockerfile) +- [`5.2.1`, `5`, `latest`, `5.2.1-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/98b870868bdd5adb179e79aa9b11cc01086ec1db/5/Dockerfile) -- [`5.2.1-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/e1bbfa80275b335a47fc08591fde7ac6210c9fd9/5/fastcgi/Dockerfile) +- [`5.2.1-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/98b870868bdd5adb179e79aa9b11cc01086ec1db/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/gradle/README.md b/gradle/README.md index 0f030517207f..30d2f8494276 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,63 +24,63 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-noble/Dockerfile) +- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-noble/Dockerfile) -- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-jammy/Dockerfile) +- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-jammy/Dockerfile) -- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-alpine/Dockerfile) +- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-alpine/Dockerfile) -- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-corretto/Dockerfile) +- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-corretto/Dockerfile) -- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-ubi9/Dockerfile) +- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-ubi9/Dockerfile) -- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-noble-graal/Dockerfile) +- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-noble-graal/Dockerfile) -- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk21-jammy-graal/Dockerfile) +- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-jammy-graal/Dockerfile) -- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-noble/Dockerfile) +- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-noble/Dockerfile) -- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-jammy/Dockerfile) +- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-jammy/Dockerfile) -- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-focal/Dockerfile) +- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-focal/Dockerfile) -- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-alpine/Dockerfile) +- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-alpine/Dockerfile) -- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-corretto/Dockerfile) +- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-corretto/Dockerfile) -- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-ubi9/Dockerfile) +- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-ubi9/Dockerfile) -- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-noble-graal/Dockerfile) +- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-noble-graal/Dockerfile) -- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-jammy-graal/Dockerfile) +- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-jammy-graal/Dockerfile) -- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk17-focal-graal/Dockerfile) +- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-focal-graal/Dockerfile) -- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-jammy/Dockerfile) +- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-jammy/Dockerfile) -- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-focal/Dockerfile) +- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-focal/Dockerfile) -- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-alpine/Dockerfile) +- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-alpine/Dockerfile) -- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-corretto/Dockerfile) +- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-corretto/Dockerfile) -- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk11-ubi9/Dockerfile) +- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-ubi9/Dockerfile) -- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-jammy/Dockerfile) +- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-jammy/Dockerfile) -- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-focal/Dockerfile) +- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-focal/Dockerfile) -- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-corretto/Dockerfile) +- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-corretto/Dockerfile) -- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk8-ubi9/Dockerfile) +- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-ubi9/Dockerfile) -- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-24`, `8.13-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.13.0-jdk-21-and-24-noble`, `8.13-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current/Dockerfile) +- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-24`, `8.13-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.13.0-jdk-21-and-24-noble`, `8.13-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current/Dockerfile) -- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-24-alpine`, `8.13-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-alpine/Dockerfile) +- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-24-alpine`, `8.13-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-alpine/Dockerfile) -- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-24-corretto`, `8.13-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.13.0-jdk-21-and-24-corretto-al2023`, `8.13-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-corretto/Dockerfile) +- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-24-corretto`, `8.13-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.13.0-jdk-21-and-24-corretto-al2023`, `8.13-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-corretto/Dockerfile) -- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-24-graal`, `8.13-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.13.0-jdk-21-and-24-graal-noble`, `8.13-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/b92e23fe7d6ab83e6d728e8028791ec3c670875b/jdk-lts-and-current-graal/Dockerfile) +- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-24-graal`, `8.13-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.13.0-jdk-21-and-24-graal-noble`, `8.13-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index 716f064bb2b5..27a01e9bf5c8 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250401`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/18.0/Dockerfile) +- [`18.0-20250415`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/18.0/Dockerfile) -- [`17.0-20250401`, `17.0`, `17`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/17.0/Dockerfile) +- [`17.0-20250415`, `17.0`, `17`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/17.0/Dockerfile) -- [`16.0-20250401`, `16.0`, `16`](https://github.com/odoo/docker/blob/564eb08e948bd8cb9cd5422e4aabdad72cdd952a/16.0/Dockerfile) +- [`16.0-20250415`, `16.0`, `16`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/16.0/Dockerfile) # Quick reference (cont.) From ba4299eb04eb0b8988db7636cb8a31c3f623a672 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Apr 2025 11:09:39 -0700 Subject: [PATCH 2087/2686] Run update.sh --- elasticsearch/README.md | 2 +- fedora/README.md | 6 +++--- joomla/README.md | 36 +++++++++--------------------------- kibana/README.md | 2 +- logstash/README.md | 2 +- 5 files changed, 15 insertions(+), 33 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 91ef09f0f4be..10ce2867de2a 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,7 +28,7 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/elasticsearch/Dockerfile) +- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index e2c75be2dd7c..ab8fb53de4c2 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -26,11 +26,11 @@ WARNING: - [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f5bdda47877c6a4cbbdef5233fdcfb31e0a96040/x86_64/Dockerfile) -- [`41`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/90f7c295f180a3cd860c0171efe092ee5e5e6ecc/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5aee3a684c041e0665d1af1350a245f2286fbf18/x86_64/Dockerfile) -- [`42`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b3a0bf2d1b264da889847943ee2c1b31c60cca2e/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/010de8006c2c551b626959423a588bb773fcf412/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/4bdf9fbe0c2f6f786dbdc5e0785fd2b634d99067/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2ed4770ad9089b377782b204bef1ea738fd30862/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index c39d1efadd61..b8b5dc1d3027 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,41 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-rc2-php8.1-apache`, `5.3-php8.1-apache`, `5.3.rc-php8.1-apache`, `5.3.0-rc-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/apache/Dockerfile) +- [`5.3.0-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/apache/Dockerfile) -- [`5.3.0-rc2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5.3.rc-php8.1-fpm-alpine`, `5.3.0-rc-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/fpm-alpine/Dockerfile) +- [`5.3.0-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/fpm-alpine/Dockerfile) -- [`5.3.0-rc2-php8.1-fpm`, `5.3-php8.1-fpm`, `5.3.rc-php8.1-fpm`, `5.3.0-rc-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.1/fpm/Dockerfile) +- [`5.3.0-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/fpm/Dockerfile) -- [`5.3.0-rc2-php8.2-apache`, `5.3-php8.2-apache`, `5.3.rc-php8.2-apache`, `5.3.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/apache/Dockerfile) +- [`5.3.0-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/apache/Dockerfile) -- [`5.3.0-rc2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5.3.rc-php8.2-fpm-alpine`, `5.3.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/fpm-alpine/Dockerfile) +- [`5.3.0-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/fpm-alpine/Dockerfile) -- [`5.3.0-rc2-php8.2-fpm`, `5.3-php8.2-fpm`, `5.3.rc-php8.2-fpm`, `5.3.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.2/fpm/Dockerfile) +- [`5.3.0-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/fpm/Dockerfile) -- [`5.3.0-rc2`, `5.3`, `5.3.rc`, `5.3.0-rc`, `5.3.0-rc2-apache`, `5.3-apache`, `5.3.rc-apache`, `5.3.0-rc-apache`, `5.3.0-rc2-php8.3`, `5.3-php8.3`, `5.3.rc-php8.3`, `5.3.0-rc-php8.3`, `5.3.0-rc2-php8.3-apache`, `5.3-php8.3-apache`, `5.3.rc-php8.3-apache`, `5.3.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/apache/Dockerfile) +- [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.0-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.0-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/apache/Dockerfile) -- [`5.3.0-rc2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5.3.rc-php8.3-fpm-alpine`, `5.3.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/fpm-alpine/Dockerfile) +- [`5.3.0-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-rc2-php8.3-fpm`, `5.3-php8.3-fpm`, `5.3.rc-php8.3-fpm`, `5.3.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.3.rc/php8.3/fpm/Dockerfile) - -- [`5.2.6-php8.1-apache`, `5.2-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/apache/Dockerfile) - -- [`5.2.6-php8.1-fpm-alpine`, `5.2-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/fpm-alpine/Dockerfile) - -- [`5.2.6-php8.1-fpm`, `5.2-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.1/fpm/Dockerfile) - -- [`5.2.6-php8.2-apache`, `5.2-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/apache/Dockerfile) - -- [`5.2.6-php8.2-fpm-alpine`, `5.2-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/fpm-alpine/Dockerfile) - -- [`5.2.6-php8.2-fpm`, `5.2-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.2/fpm/Dockerfile) - -- [`5.2.6`, `5.2`, `5`, `latest`, `5.2.6-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.6-php8.3`, `5.2-php8.3`, `5-php8.3`, `php8.3`, `5.2.6-php8.3-apache`, `5.2-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/apache/Dockerfile) - -- [`5.2.6-php8.3-fpm-alpine`, `5.2-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/fpm-alpine/Dockerfile) - -- [`5.2.6-php8.3-fpm`, `5.2-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/5.2/php8.3/fpm/Dockerfile) +- [`5.3.0-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/fpm/Dockerfile) - [`4.4.13-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/apache/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 6aa8eddcaa82..307a9d33a4e9 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,7 +28,7 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/kibana/Dockerfile) +- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 69f43c41ea2c..447f6db19c8e 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,7 +28,7 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) -- [`8.17.4`](https://github.com/elastic/dockerfiles/blob/92353caed0efb0cd7dabd9113167277fd4488856/logstash/Dockerfile) +- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/logstash/Dockerfile) # Quick reference (cont.) From bd7c080f3d2364064080bc559d03424b9c68c11b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Apr 2025 15:09:42 -0700 Subject: [PATCH 2088/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- ghost/README.md | 4 ++-- julia/README.md | 32 ++++++++++++++++++-------------- mysql/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- rabbitmq/README.md | 16 ++++++++-------- 6 files changed, 52 insertions(+), 48 deletions(-) diff --git a/docker/README.md b/docker/README.md index dcc1fe8d5cb1..7352a4c6b155 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`28.1.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.1.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/cli/Dockerfile) +- [`28.1.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.1.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/cli/Dockerfile) - [`28.1.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.1.0-rc.1-dind-alpine3.21`, `28.1.0-rc.1`, `28-rc`, `rc`, `28.1.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind/Dockerfile) - [`28.1.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind-rootless/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.1.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-1809/Dockerfile) -- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/cli/Dockerfile) +- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/cli/Dockerfile) - [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/63ecacfddacf6340f6440b09f90c4c62b36f406d/28/dind/Dockerfile) - [`28.0.4-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind-rootless/Dockerfile) -- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-1809/Dockerfile) +- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.1.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.1.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.1.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-1809/Dockerfile) - `28.0.4-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ad3602ce8c2b580c2efb6431610b355044dabb7b/28/windows/windowsservercore-1809/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 95e7f582e451..76c43d2a1611 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.116.2`, `5.116`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5e14ecbeffa53892c3b777023a1fe99155a99774/5/debian/Dockerfile) +- [`5.117.0`, `5.117`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c7a646293bc04301c42cc1e6ad63b865cd4aa180/5/debian/Dockerfile) -- [`5.116.2-alpine`, `5.116-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5e14ecbeffa53892c3b777023a1fe99155a99774/5/alpine/Dockerfile) +- [`5.117.0-alpine`, `5.117-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c7a646293bc04301c42cc1e6ad63b865cd4aa180/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index fce9e1e07adc..bcc830c8a982 100644 --- a/julia/README.md +++ b/julia/README.md @@ -38,15 +38,19 @@ WARNING: - [`1.12.0-beta1-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) -- [`1.11.4-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) +- [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) -- [`1.11.4-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bullseye/Dockerfile) +- [`1.11.5-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bullseye/Dockerfile) -- [`1.11.4-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.11.5-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.11.5-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.21/Dockerfile) -- [`1.11.4-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.5-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.20/Dockerfile) -- [`1.11.4-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) +- [`1.11.5-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`1.11.5-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.11.5-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) - [`1.10.9-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) @@ -77,18 +81,18 @@ WARNING: - [`1.12.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.12.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) -- `1.11.4`, `1.11`, `1`, `latest`: +- `1.11.5`, `1.11`, `1`, `latest`: - - [`1.11.4-bookworm`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/bookworm/Dockerfile) - - [`1.11.4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.5-bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) + - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) -- `1.11.4-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.5-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.4-windowsservercore-1809`](https://github.com/docker-library/julia/blob/aa1d49c493f791a7e745aafa0f6166fea59f0247/1.11/windows/windowsservercore-1809/Dockerfile) + - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) - `1.10.9`, `1.10`: diff --git a/mysql/README.md b/mysql/README.md index 68b07d158ede..014243222892 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -26,7 +26,7 @@ WARNING: - [`9.3.0`, `9.3`, `9`, `innovation`, `latest`, `9.3.0-oraclelinux9`, `9.3-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.3.0-oracle`, `9.3-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1b9d0c10ad8569c9419d76aacec9dbab23c48e9e/innovation/Dockerfile.oracle) -- [`8.4.5`, `8.4`, `8`, `lts`, `8.4.5-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.5-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/56251691b082d1aca21065a79a9d8e796daf3ea6/8.4/Dockerfile.oracle) +- [`8.4.5`, `8.4`, `8`, `lts`, `8.4.5-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.5-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/8ade9b2c9a32a79fbaa44b564d09a40744f1d105/8.4/Dockerfile.oracle) - [`8.0.42`, `8.0`, `8.0.42-oraclelinux9`, `8.0-oraclelinux9`, `8.0.42-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.oracle) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 381b8571c9b1..30f0a3cc1a93 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5103c10a3d63171ae41d0672130411abef9fbd1a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index ed7cce0ba351..e66cb8d716c9 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0-rc.2`, `4.1-rc`](https://github.com/docker-library/rabbitmq/blob/c82062bf22c402693e5c93722c60b775200b2f00/4.1-rc/ubuntu/Dockerfile) +- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/Dockerfile) -- [`4.1.0-rc.2-management`, `4.1-rc-management`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/ubuntu/management/Dockerfile) +- [`4.1.0-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.0-rc.2-alpine`, `4.1-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c82062bf22c402693e5c93722c60b775200b2f00/4.1-rc/alpine/Dockerfile) +- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/Dockerfile) -- [`4.1.0-rc.2-management-alpine`, `4.1-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/c0dcc40c9bce4bb6a826a61d250a2aeb0fa35416/4.1-rc/alpine/management/Dockerfile) +- [`4.1.0-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/ubuntu/Dockerfile) -- [`4.0.9-management`, `4.0-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) +- [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/alpine/Dockerfile) -- [`4.0.9-management-alpine`, `4.0-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) +- [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) - [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/ubuntu/Dockerfile) From 8109c73cd4be381501e67967b4f5854ba11eba16 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Apr 2025 16:09:50 -0700 Subject: [PATCH 2089/2686] Run update.sh --- bash/README.md | 2 +- wordpress/README.md | 48 ++++++++++++--------------------------------- 2 files changed, 13 insertions(+), 37 deletions(-) diff --git a/bash/README.md b/bash/README.md index b398a0ed88f7..47532381237d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250404`, `devel`, `devel-20250404-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/06eb778f4281864162769a8cff2cfd9b456e402a/devel/Dockerfile) +- [`devel-20250409`, `devel`, `devel-20250409-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/c5d644d51ee99d7f850b6353c125c8275f3bfd2c/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 07615c18111c..839e542e2c31 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.7.2-php8.1-apache`, `6.7-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.7.2-php8.1`, `6.7-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/apache/Dockerfile) +- [`6.8.0-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.0-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/apache/Dockerfile) -- [`6.7.2-php8.1-fpm`, `6.7-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/fpm/Dockerfile) +- [`6.8.0-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/fpm/Dockerfile) -- [`6.7.2-php8.1-fpm-alpine`, `6.7-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.0-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.7.2-apache`, `6.7-apache`, `6-apache`, `apache`, `6.7.2`, `6.7`, `6`, `latest`, `6.7.2-php8.2-apache`, `6.7-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.7.2-php8.2`, `6.7-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/apache/Dockerfile) +- [`6.8.0-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.0`, `6.8`, `6`, `latest`, `6.8.0-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.0-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/apache/Dockerfile) -- [`6.7.2-fpm`, `6.7-fpm`, `6-fpm`, `fpm`, `6.7.2-php8.2-fpm`, `6.7-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/fpm/Dockerfile) +- [`6.8.0-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.0-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/fpm/Dockerfile) -- [`6.7.2-fpm-alpine`, `6.7-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.7.2-php8.2-fpm-alpine`, `6.7-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.0-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.0-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.7.2-php8.3-apache`, `6.7-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.7.2-php8.3`, `6.7-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/apache/Dockerfile) +- [`6.8.0-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.0-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/apache/Dockerfile) -- [`6.7.2-php8.3-fpm`, `6.7-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/fpm/Dockerfile) +- [`6.8.0-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/fpm/Dockerfile) -- [`6.7.2-php8.3-fpm-alpine`, `6.7-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.0-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.7.2-php8.4-apache`, `6.7-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.7.2-php8.4`, `6.7-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/apache/Dockerfile) +- [`6.8.0-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.0-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/apache/Dockerfile) -- [`6.7.2-php8.4-fpm`, `6.7-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/fpm/Dockerfile) +- [`6.8.0-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/fpm/Dockerfile) -- [`6.7.2-php8.4-fpm-alpine`, `6.7-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.0-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.1/alpine/Dockerfile) @@ -56,30 +56,6 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8-RC4-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8-RC4-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/apache/Dockerfile) - -- [`beta-6.8-RC4-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.8-RC4-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.8-RC4-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8-RC4`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8-RC4-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8-RC4-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/apache/Dockerfile) - -- [`beta-6.8-RC4-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8-RC4-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.8-RC4-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8-RC4-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.8-RC4-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8-RC4-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/apache/Dockerfile) - -- [`beta-6.8-RC4-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.8-RC4-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.3/fpm-alpine/Dockerfile) - -- [`beta-6.8-RC4-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8-RC4-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/apache/Dockerfile) - -- [`beta-6.8-RC4-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/fpm/Dockerfile) - -- [`beta-6.8-RC4-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/600e2affa8394a8b5651ac6e16905b637ab6ec85/beta/php8.4/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 34170aa409794ab1dabad3e7a3e2d80b3b178a79 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Apr 2025 17:10:02 -0700 Subject: [PATCH 2090/2686] Run update.sh --- amazoncorretto/README.md | 110 +++++++++++++++++---------------------- 1 file changed, 48 insertions(+), 62 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index d43962fa4470..0a0870672ab5 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,115 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u442`, `8u442-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u442-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u442-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u442-al2023-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u442-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u442-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u442-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u452-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u442-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u452-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u442-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u442-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u442-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u442-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u442-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u442-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u442-alpine3.21-jre`, `8-alpine-jre`, `8u442-alpine-jre`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.21/Dockerfile) -- [`11`, `11.0.26`, `11.0.26-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.26-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.26-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.26-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.26-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.26-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.26-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2/Dockerfile) -- [`11-alpine3.18`, `11.0.26-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.27-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.26-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.26-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.26-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.26-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.21/Dockerfile) -- [`17`, `17.0.14`, `17.0.14-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.14-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.14-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.14-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.14-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.14-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.14-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.14-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2/Dockerfile) -- [`17-alpine3.18`, `17.0.14-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.15-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.14-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.14-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.14-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.14-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.21/Dockerfile) -- [`21`, `21.0.6`, `21.0.6-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.6-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.6-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.6-al2023-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.6-al2023-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/headful/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.6-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.7-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.6-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.6-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.6-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.6-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.21/Dockerfile) -- [`23-al2023`, `23.0.2-al2023`, `23-al2023-jdk`, `23`, `23-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/al2023/Dockerfile) +- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/al2023/Dockerfile) -- [`23-al2023-headless`, `23.0.2-al2023-headless`, `23-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/headless/al2023/Dockerfile) +- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/headless/al2023/Dockerfile) -- [`23-al2023-headful`, `23.0.2-al2023-headful`, `23-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/headful/al2023/Dockerfile) +- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/headful/al2023/Dockerfile) -- [`23-alpine3.18`, `23.0.2-alpine3.18`, `23-alpine3.18-full`, `23-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.18/Dockerfile) +- [`24-alpine3.18`, `24.0.1-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.18/Dockerfile) -- [`23-alpine3.19`, `23.0.2-alpine3.19`, `23-alpine3.19-full`, `23-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.19/Dockerfile) +- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.19/Dockerfile) -- [`23-alpine3.20`, `23.0.2-alpine3.20`, `23-alpine3.20-full`, `23-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.20/Dockerfile) +- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.20/Dockerfile) -- [`23-alpine3.21`, `23.0.2-alpine3.21`, `23-alpine3.21-full`, `23-alpine3.21-jdk`, `23-alpine`, `23.0.2-alpine`, `23-alpine-full`, `23-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/23/jdk/alpine/3.21/Dockerfile) - -- [`24-al2023`, `24.0.0-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/al2023/Dockerfile) - -- [`24-al2023-headless`, `24.0.0-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/headless/al2023/Dockerfile) - -- [`24-al2023-headful`, `24.0.0-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/headful/al2023/Dockerfile) - -- [`24-alpine3.18`, `24.0.0-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.18/Dockerfile) - -- [`24-alpine3.19`, `24.0.0-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.19/Dockerfile) - -- [`24-alpine3.20`, `24.0.0-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.20/Dockerfile) - -- [`24-alpine3.21`, `24.0.0-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.0-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/4abdc06bc5a7f4942a8ff94b9da0b95044ffaf68/24/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) From 940af0ed13ec0e0f4c1cd47d711aacf5d2214b55 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Apr 2025 10:10:05 -0700 Subject: [PATCH 2091/2686] Run update.sh --- chronograf/README.md | 16 +++---- nginx/README.md | 28 +++++------ sapmachine/README.md | 108 +++++++++++++++++++++---------------------- 3 files changed, 76 insertions(+), 76 deletions(-) diff --git a/chronograf/README.md b/chronograf/README.md index 328f10a00de7..3861859187ac 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.7/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.9/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.9/alpine/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.10/Dockerfile) +- [`1.10`, `1.10.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d5a0f7c309e8fa6165d63e8538b178b795822f97/chronograf/1.10/alpine/Dockerfile) +- [`1.10-alpine`, `1.10.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index 0947e0a6145c..14c203fcc50a 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.4`, `mainline`, `1`, `1.27`, `latest`, `1.27.4-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian/Dockerfile) +- [`1.27.5`, `mainline`, `1`, `1.27`, `latest`, `1.27.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/debian/Dockerfile) -- [`1.27.4-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.4-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian-perl/Dockerfile) +- [`1.27.5-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/debian-perl/Dockerfile) -- [`1.27.4-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.4-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/debian-otel/Dockerfile) +- [`1.27.5-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/4e08af2988063a3b02420ef0040e2e13fc9d93d6/mainline/debian-otel/Dockerfile) -- [`1.27.4-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.4-alpine3.21`, `mainline-alpine3.21`, `1-alpine3.21`, `1.27-alpine3.21`, `alpine3.21`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine/Dockerfile) +- [`1.27.5-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.5-alpine3.21`, `mainline-alpine3.21`, `1-alpine3.21`, `1.27-alpine3.21`, `alpine3.21`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine/Dockerfile) -- [`1.27.4-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.4-alpine3.21-perl`, `mainline-alpine3.21-perl`, `1-alpine3.21-perl`, `1.27-alpine3.21-perl`, `alpine3.21-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-perl/Dockerfile) +- [`1.27.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.5-alpine3.21-perl`, `mainline-alpine3.21-perl`, `1-alpine3.21-perl`, `1.27-alpine3.21-perl`, `alpine3.21-perl`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine-perl/Dockerfile) -- [`1.27.4-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.4-alpine3.21-slim`, `mainline-alpine3.21-slim`, `1-alpine3.21-slim`, `1.27-alpine3.21-slim`, `alpine3.21-slim`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-slim/Dockerfile) +- [`1.27.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.5-alpine3.21-slim`, `mainline-alpine3.21-slim`, `1-alpine3.21-slim`, `1.27-alpine3.21-slim`, `alpine3.21-slim`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine-slim/Dockerfile) -- [`1.27.4-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.4-alpine3.21-otel`, `mainline-alpine3.21-otel`, `1-alpine3.21-otel`, `1.27-alpine3.21-otel`, `alpine3.21-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/mainline/alpine-otel/Dockerfile) +- [`1.27.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.5-alpine3.21-otel`, `mainline-alpine3.21-otel`, `1-alpine3.21-otel`, `1.27-alpine3.21-otel`, `alpine3.21-otel`](https://github.com/nginx/docker-nginx/blob/4e08af2988063a3b02420ef0040e2e13fc9d93d6/mainline/alpine-otel/Dockerfile) -- [`1.26.3`, `stable`, `1.26`, `1.26.3-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian/Dockerfile) +- [`1.26.3`, `stable`, `1.26`, `1.26.3-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian/Dockerfile) -- [`1.26.3-perl`, `stable-perl`, `1.26-perl`, `1.26.3-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-perl/Dockerfile) +- [`1.26.3-perl`, `stable-perl`, `1.26-perl`, `1.26.3-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-perl/Dockerfile) -- [`1.26.3-otel`, `stable-otel`, `1.26-otel`, `1.26.3-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-otel/Dockerfile) +- [`1.26.3-otel`, `stable-otel`, `1.26-otel`, `1.26.3-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-otel/Dockerfile) -- [`1.26.3-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.3-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine/Dockerfile) +- [`1.26.3-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.3-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine/Dockerfile) -- [`1.26.3-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.3-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-perl/Dockerfile) +- [`1.26.3-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.3-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-perl/Dockerfile) -- [`1.26.3-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.3-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-slim/Dockerfile) +- [`1.26.3-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.3-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginx/docker-nginx/blob/bd3e501c6d800f0a541fe7c965ef905f470cd75f/stable/alpine-slim/Dockerfile) -- [`1.26.3-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.3-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginxinc/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-otel/Dockerfile) +- [`1.26.3-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.3-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-otel/Dockerfile) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 511028f05ad1..ad5c91a83e38 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,113 +24,113 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `24`, `24-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `jdk-ubuntu`, `24`, `24-jdk-ubuntu`, `24.0.1`, `24.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24.0.1-ubuntu-noble`, `24.0.1-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24.0.1-jdk-ubuntu-noble`, `24.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `24-jdk-headless-ubuntu`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu`, `24-jdk-headless-ubuntu`, `24.0.1-jdk-headless-ubuntu`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24.0.1-jdk-headless-ubuntu-noble`, `24.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `24-jre-ubuntu`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) +- [`jre-ubuntu`, `24-jre-ubuntu`, `24.0.1-jre-ubuntu`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24.0.1-jre-ubuntu-noble`, `24.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `24-jre-headless-ubuntu`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu`, `24-jre-headless-ubuntu`, `24.0.1-jre-headless-ubuntu`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24.0.1-jre-headless-ubuntu-noble`, `24.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24.0.1-ubuntu-jammy`, `24.0.1-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24.0.1-jdk-ubuntu-jammy`, `24.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) -- [`24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) +- [`24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24.0.1-jdk-headless-ubuntu-jammy`, `24.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) -- [`24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) +- [`24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24.0.1-jre-ubuntu-jammy`, `24.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) -- [`24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) +- [`24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24.0.1-jre-headless-ubuntu-jammy`, `24.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `24-ubuntu-focal`, `24-ubuntu-20.04`, `24-jdk-ubuntu-focal`, `24-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jdk/Dockerfile) +- [`ubuntu-focal`, `ubuntu-20.04`, `24-ubuntu-focal`, `24-ubuntu-20.04`, `24.0.1-ubuntu-focal`, `24.0.1-ubuntu-20.04`, `24-jdk-ubuntu-focal`, `24-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `24.0.1-jdk-ubuntu-focal`, `24.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jdk/Dockerfile) -- [`24-jdk-headless-ubuntu-focal`, `24-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jdk-headless/Dockerfile) +- [`24-jdk-headless-ubuntu-focal`, `24-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `24.0.1-jdk-headless-ubuntu-focal`, `24.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jdk-headless/Dockerfile) -- [`24-jre-ubuntu-focal`, `24-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jre/Dockerfile) +- [`24-jre-ubuntu-focal`, `24-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `24.0.1-jre-ubuntu-focal`, `24.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jre/Dockerfile) -- [`24-jre-headless-ubuntu-focal`, `24-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/ubuntu/20_04/jre-headless/Dockerfile) +- [`24-jre-headless-ubuntu-focal`, `24-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `24.0.1-jre-headless-ubuntu-focal`, `24.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jre-headless/Dockerfile) -- [`jdk-alpine`, `24-jdk-alpine`, `alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/alpine/3_21/jdk/Dockerfile) +- [`jdk-alpine`, `24-jdk-alpine`, `24.0.1-jdk-alpine`, `alpine-3.21`, `24-alpine-3.21`, `24.0.1-alpine-3.21`, `24-jdk-alpine-3.21`, `jdk-alpine-3.21`, `24.0.1-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jdk/Dockerfile) -- [`jre-alpine`, `24-jre-alpine`, `24-jre-alpine-3.21`, `jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/b38ba5dd72185f1570902f7201be38dd1a261026/dockerfiles/24/alpine/3_21/jre/Dockerfile) +- [`jre-alpine`, `24-jre-alpine`, `24.0.1-jre-alpine`, `24-jre-alpine-3.21`, `jre-alpine-3.21`, `24.0.1-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jre/Dockerfile) -- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.6`, `21.0.6-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.6-ubuntu-noble`, `21.0.6-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.6-jdk-ubuntu-noble`, `21.0.6-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.7`, `21.0.7-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.7-ubuntu-noble`, `21.0.7-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.7-jdk-ubuntu-noble`, `21.0.7-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.6-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.6-jdk-headless-ubuntu-noble`, `21.0.6-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.7-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.7-jdk-headless-ubuntu-noble`, `21.0.7-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.6-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.6-jre-ubuntu-noble`, `21.0.6-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.7-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.7-jre-ubuntu-noble`, `21.0.7-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.6-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.6-jre-headless-ubuntu-noble`, `21.0.6-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.7-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.7-jre-headless-ubuntu-noble`, `21.0.7-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.6-ubuntu-jammy`, `21.0.6-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.6-jdk-ubuntu-jammy`, `21.0.6-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.7-ubuntu-jammy`, `21.0.7-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.7-jdk-ubuntu-jammy`, `21.0.7-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.6-jdk-headless-ubuntu-jammy`, `21.0.6-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.7-jdk-headless-ubuntu-jammy`, `21.0.7-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.6-jre-ubuntu-jammy`, `21.0.6-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.7-jre-ubuntu-jammy`, `21.0.7-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.6-jre-headless-ubuntu-jammy`, `21.0.6-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.7-jre-headless-ubuntu-jammy`, `21.0.7-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.6-ubuntu-focal`, `21.0.6-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.6-jdk-ubuntu-focal`, `21.0.6-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) +- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.7-ubuntu-focal`, `21.0.7-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.7-jdk-ubuntu-focal`, `21.0.7-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.6-jdk-headless-ubuntu-focal`, `21.0.6-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.7-jdk-headless-ubuntu-focal`, `21.0.7-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.6-jre-ubuntu-focal`, `21.0.6-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) +- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.7-jre-ubuntu-focal`, `21.0.7-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.6-jre-headless-ubuntu-focal`, `21.0.6-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.7-jre-headless-ubuntu-focal`, `21.0.7-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) -- [`21-jdk-alpine`, `lts-jdk-alpine`, `21.0.6-jdk-alpine`, `21-alpine-3.21`, `lts-alpine-3.21`, `21.0.6-alpine-3.21`, `21-jdk-alpine-3.21`, `lts-jdk-alpine-3.21`, `21.0.6-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/alpine/3_21/jdk/Dockerfile) +- [`21-jdk-alpine`, `lts-jdk-alpine`, `21.0.7-jdk-alpine`, `21-alpine-3.21`, `lts-alpine-3.21`, `21.0.7-alpine-3.21`, `21-jdk-alpine-3.21`, `lts-jdk-alpine-3.21`, `21.0.7-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`21-jre-alpine`, `lts-jre-alpine`, `21.0.6-jre-alpine`, `21-jre-alpine-3.21`, `lts-jre-alpine-3.21`, `21.0.6-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/5a0f490d8e2752109f0d84b5d89a605c09512a14/dockerfiles/21/alpine/3_21/jre/Dockerfile) +- [`21-jre-alpine`, `lts-jre-alpine`, `21.0.7-jre-alpine`, `21-jre-alpine-3.21`, `lts-jre-alpine-3.21`, `21.0.7-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jre/Dockerfile) -- [`17`, `17-jdk-ubuntu`, `17.0.14`, `17.0.14-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.14-ubuntu-noble`, `17.0.14-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.14-jdk-ubuntu-noble`, `17.0.14-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) +- [`17`, `17-jdk-ubuntu`, `17.0.15`, `17.0.15-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.15-ubuntu-noble`, `17.0.15-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.15-jdk-ubuntu-noble`, `17.0.15-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu`, `17.0.14-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.14-jdk-headless-ubuntu-noble`, `17.0.14-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu`, `17.0.15-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.15-jdk-headless-ubuntu-noble`, `17.0.15-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu`, `17.0.14-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.14-jre-ubuntu-noble`, `17.0.14-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre-ubuntu`, `17.0.15-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.15-jre-ubuntu-noble`, `17.0.15-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu`, `17.0.14-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.14-jre-headless-ubuntu-noble`, `17.0.14-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu`, `17.0.15-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.15-jre-headless-ubuntu-noble`, `17.0.15-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.14-ubuntu-jammy`, `17.0.14-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.14-jdk-ubuntu-jammy`, `17.0.14-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.15-ubuntu-jammy`, `17.0.15-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.15-jdk-ubuntu-jammy`, `17.0.15-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.14-jdk-headless-ubuntu-jammy`, `17.0.14-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.15-jdk-headless-ubuntu-jammy`, `17.0.15-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.14-jre-ubuntu-jammy`, `17.0.14-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.15-jre-ubuntu-jammy`, `17.0.15-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.14-jre-headless-ubuntu-jammy`, `17.0.14-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.15-jre-headless-ubuntu-jammy`, `17.0.15-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.14-ubuntu-focal`, `17.0.14-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.14-jdk-ubuntu-focal`, `17.0.14-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) +- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.15-ubuntu-focal`, `17.0.15-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.15-jdk-ubuntu-focal`, `17.0.15-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.14-jdk-headless-ubuntu-focal`, `17.0.14-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.15-jdk-headless-ubuntu-focal`, `17.0.15-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.14-jre-ubuntu-focal`, `17.0.14-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.15-jre-ubuntu-focal`, `17.0.15-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.14-jre-headless-ubuntu-focal`, `17.0.14-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.15-jre-headless-ubuntu-focal`, `17.0.15-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) -- [`17-jdk-alpine`, `17.0.14-jdk-alpine`, `17-alpine-3.21`, `17.0.14-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.14-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/alpine/3_21/jdk/Dockerfile) +- [`17-jdk-alpine`, `17.0.15-jdk-alpine`, `17-alpine-3.21`, `17.0.15-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.15-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`17-jre-alpine`, `17.0.14-jre-alpine`, `17-jre-alpine-3.21`, `17.0.14-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/29476b9382690e538a1326c1479700be1fc70b62/dockerfiles/17/alpine/3_21/jre/Dockerfile) +- [`17-jre-alpine`, `17.0.15-jre-alpine`, `17-jre-alpine-3.21`, `17.0.15-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jre/Dockerfile) -- [`11`, `11-jdk-ubuntu`, `11.0.26`, `11.0.26-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.26-ubuntu-noble`, `11.0.26-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.26-jdk-ubuntu-noble`, `11.0.26-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`11`, `11-jdk-ubuntu`, `11.0.27`, `11.0.27-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.27-ubuntu-noble`, `11.0.27-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.27-jdk-ubuntu-noble`, `11.0.27-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11.0.26-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.26-jdk-headless-ubuntu-noble`, `11.0.26-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu`, `11.0.27-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.27-jdk-headless-ubuntu-noble`, `11.0.27-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu`, `11.0.26-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.26-jre-ubuntu-noble`, `11.0.26-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre-ubuntu`, `11.0.27-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.27-jre-ubuntu-noble`, `11.0.27-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu`, `11.0.26-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.26-jre-headless-ubuntu-noble`, `11.0.26-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu`, `11.0.27-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.27-jre-headless-ubuntu-noble`, `11.0.27-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.26-ubuntu-jammy`, `11.0.26-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.26-jdk-ubuntu-jammy`, `11.0.26-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.27-ubuntu-jammy`, `11.0.27-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.27-jdk-ubuntu-jammy`, `11.0.27-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.26-jdk-headless-ubuntu-jammy`, `11.0.26-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.27-jdk-headless-ubuntu-jammy`, `11.0.27-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.26-jre-ubuntu-jammy`, `11.0.26-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.27-jre-ubuntu-jammy`, `11.0.27-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.26-jre-headless-ubuntu-jammy`, `11.0.26-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.27-jre-headless-ubuntu-jammy`, `11.0.27-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) -- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.26-ubuntu-focal`, `11.0.26-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.26-jdk-ubuntu-focal`, `11.0.26-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) +- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.27-ubuntu-focal`, `11.0.27-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.27-jdk-ubuntu-focal`, `11.0.27-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.26-jdk-headless-ubuntu-focal`, `11.0.26-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.27-jdk-headless-ubuntu-focal`, `11.0.27-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.26-jre-ubuntu-focal`, `11.0.26-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) +- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.27-jre-ubuntu-focal`, `11.0.27-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.26-jre-headless-ubuntu-focal`, `11.0.26-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/29fb3d840b5725460aeb66af135c70fc5a62a249/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.27-jre-headless-ubuntu-focal`, `11.0.27-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) # Quick reference (cont.) From 5833810c2678377bff4a97142229f7178755a8dd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Apr 2025 11:09:55 -0700 Subject: [PATCH 2092/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 10ce2867de2a..af30f55504c6 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/elasticsearch/Dockerfile) - - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) - [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/elasticsearch/Dockerfile) +- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/elasticsearch/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/kibana/README.md b/kibana/README.md index 307a9d33a4e9..edb78e4a3632 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/kibana/Dockerfile) - - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) - [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/kibana/Dockerfile) +- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/kibana/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/logstash/README.md b/logstash/README.md index 447f6db19c8e..678d2393fdee 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,12 +24,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.16.6`](https://github.com/elastic/dockerfiles/blob/2363a62c2fff853b6ce991d24e7e244e459279a1/logstash/Dockerfile) - - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) - [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/logstash/Dockerfile) +- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/logstash/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From cab60dbc40516903a69871916560bc279c69cefa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Apr 2025 13:09:39 -0700 Subject: [PATCH 2093/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 30f0a3cc1a93..450486acb173 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1f586f61cc5d83b8d9ca8e6b4ee1fed09a797669/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7-slim-fips/Dockerfile) # Quick reference (cont.) From b83897500de892c581747baaf5f931febb4d750c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Apr 2025 18:09:43 -0700 Subject: [PATCH 2094/2686] Run update.sh --- influxdb/README.md | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 831188fe7f8a..5a3737798f41 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,29 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/37d6b9bc4a1aa67689f68a362b7948ec312672c7/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/2.7/alpine/Dockerfile) + +- [`3-core`, `3.0-core`, `3.0.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/3.0-core/Dockerfile) + +- [`3-enterprise`, `3.0-enterprise`, `3.0.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/3.0-enterprise/Dockerfile) # Quick reference (cont.) From 5f14de04dd647d2756525b485f161ad289722a5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Apr 2025 12:09:39 -0700 Subject: [PATCH 2095/2686] Run update.sh --- dart/README.md | 4 ++-- docker/README.md | 38 ++++++++++---------------------------- haproxy/README.md | 4 ++-- rabbitmq/README.md | 12 ++++++------ ubuntu/README.md | 4 ++-- xwiki/README.md | 6 +++--- 6 files changed, 25 insertions(+), 43 deletions(-) diff --git a/dart/README.md b/dart/README.md index d375cb38b91e..bd309ec4e4c0 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.2-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.2`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/0263762f7e406fb9ec1e210f57d0bc2fe81e6821/stable/bookworm/Dockerfile) +- [`3.7.3-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.3`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2ff1146d0172fb02205c6a0fc0082fd8752f0c85/stable/bookworm/Dockerfile) -- [`3.8.0-278.1.beta-sdk`, `beta-sdk`, `3.8.0-278.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/0263762f7e406fb9ec1e210f57d0bc2fe81e6821/beta/bookworm/Dockerfile) +- [`3.8.0-278.2.beta-sdk`, `beta-sdk`, `3.8.0-278.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2ff1146d0172fb02205c6a0fc0082fd8752f0c85/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 7352a4c6b155..8c2c3176df24 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,25 @@ WARNING: ## Simple Tags -- [`28.1.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.1.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/cli/Dockerfile) +- [`28.1.0-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/cli/Dockerfile) -- [`28.1.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.1.0-rc.1-dind-alpine3.21`, `28.1.0-rc.1`, `28-rc`, `rc`, `28.1.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind/Dockerfile) +- [`28.1.0-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.0-dind-alpine3.21`, `28.1.0`, `28.1`, `28`, `latest`, `28.1.0-alpine3.21`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/dind/Dockerfile) -- [`28.1.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/583539925d539c2b934d5996a9b11167970ee9d3/28-rc/dind-rootless/Dockerfile) +- [`28.1.0-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/dind-rootless/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.0-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.0-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-1809/Dockerfile) - -- [`28.0.4-cli`, `28.0-cli`, `28-cli`, `cli`, `28.0.4-cli-alpine3.21`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/cli/Dockerfile) - -- [`28.0.4-dind`, `28.0-dind`, `28-dind`, `dind`, `28.0.4-dind-alpine3.21`, `28.0.4`, `28.0`, `28`, `latest`, `28.0.4-alpine3.21`](https://github.com/docker-library/docker/blob/63ecacfddacf6340f6440b09f90c4c62b36f406d/28/dind/Dockerfile) - -- [`28.0.4-dind-rootless`, `28.0-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/9412765b2bf39a5264743697803116653b990243/28/dind-rootless/Dockerfile) - -- [`28.0.4-windowsservercore-ltsc2025`, `28.0-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.0.4-windowsservercore-ltsc2022`, `28.0-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.0.4-windowsservercore-1809`, `28.0-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.0-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.1.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.1.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/bdca6a23026c9a0ee12cffd4e2d251224d686471/28-rc/windows/windowsservercore-1809/Dockerfile) - -- `28.0.4-windowsservercore`, `28.0-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.1.0-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.0.4-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.0.4-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.0.4-windowsservercore-1809`](https://github.com/docker-library/docker/blob/7a2ae9040feea46e1b150e97a53197eedf47f2f9/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 550451a850b0..c9cc9bcb2988 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.2-dev10-alpine`, `3.2-dev-alpine`, `3.2-dev10-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/5af892138fe6cd215b41b6aa9558be9d6e6f875c/3.2/alpine/Dockerfile) -- [`3.1.6`, `3.1`, `latest`, `3.1.6-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/Dockerfile) +- [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) -- [`3.1.6-alpine`, `3.1-alpine`, `alpine`, `3.1.6-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/2568abb822486a3abd10fa1942b98cfe5e1d5af7/3.1/alpine/Dockerfile) +- [`3.1.7-alpine`, `3.1-alpine`, `alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/alpine/Dockerfile) - [`3.0.9`, `3.0`, `lts`, `3.0.9-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e66cb8d716c9..9d1576c98983 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/Dockerfile) +- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/d74fab12a7cb6679d19a4ed8b68abc09beb405da/4.1/ubuntu/Dockerfile) - [`4.1.0-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/Dockerfile) +- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/d74fab12a7cb6679d19a4ed8b68abc09beb405da/4.1/alpine/Dockerfile) - [`4.1.0-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/d8f94074fe7505007426e54321efaee5ee7f03b8/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/f2464ff7410aa716489c329a34090f56315f59a7/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/d8f94074fe7505007426e54321efaee5ee7f03b8/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/8704b8023dfe001563284ebfa6ac3e380befde24/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/2e887a55341ce61503fda52153b2b6808f539828/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/8704b8023dfe001563284ebfa6ac3e380befde24/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index bc1f99135a72..f3af243ef1cf 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -30,9 +30,9 @@ WARNING: - [`24.04`, `noble-20250404`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250404-febb8724&id=febb872444fbf6132e143cf3d1e5f0958c897cea) -- [`24.10`, `oracular-20250225`, `oracular`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250225-71a591b6&id=71a591b63518c11abbccce5c648ce23d9a55c63b) +- [`24.10`, `oracular-20250225`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250225-71a591b6&id=71a591b63518c11abbccce5c648ce23d9a55c63b) -- [`25.04`, `plucky-20250402`, `plucky`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250402-9931882c&id=9931882c5303fd5a396376e54bd267f2e63296fb) +- [`25.04`, `plucky-20250415`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250415-9aa542b4&id=9aa542b421288860569e4375a11053227643ddf8) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 904254103781..fbec6a8e5ff9 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.2`, `17.2.1`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/mysql-tomcat/Dockerfile) +- [`17`, `17.2`, `17.2.2`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.2-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.2-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/306c66c86f5394ef7270a7c63dac31a8eea5c1e8/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.2-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.5`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mysql-tomcat/Dockerfile) From 62eba0bbed96ea094cd5f65424f340b24d4b56f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Apr 2025 07:09:40 -0700 Subject: [PATCH 2096/2686] Run update.sh --- traefik/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 37d7f5a14855..22da4449c904 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.4.0-rc1-windowsservercore-ltsc2022`, `3.4.0-rc1-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.0-rc2-windowsservercore-ltsc2022`, `3.4.0-rc2-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.0-rc1-windowsservercore-1809`, `3.4.0-rc1-windowsservercore-1809`, `chaource-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/1809/Dockerfile) +- [`v3.4.0-rc2-windowsservercore-1809`, `3.4.0-rc2-windowsservercore-1809`, `chaource-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/1809/Dockerfile) -- [`v3.4.0-rc1-nanoserver-ltsc2022`, `3.4.0-rc1-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.0-rc2-nanoserver-ltsc2022`, `3.4.0-rc2-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.0-rc1`, `3.4.0-rc1`, `chaource`](https://github.com/traefik/traefik-library-image/blob/2b65b9b315d78d58f7b735adf74702ef5a67cebc/v3.4/alpine/Dockerfile) +- [`v3.4.0-rc2`, `3.4.0-rc2`, `chaource`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/alpine/Dockerfile) -- [`v3.3.5-windowsservercore-ltsc2022`, `3.3.5-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.6-windowsservercore-ltsc2022`, `3.3.6-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.5-windowsservercore-1809`, `3.3.5-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/1809/Dockerfile) +- [`v3.3.6-windowsservercore-1809`, `3.3.6-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/1809/Dockerfile) -- [`v3.3.5-nanoserver-ltsc2022`, `3.3.5-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.6-nanoserver-ltsc2022`, `3.3.6-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.5`, `3.3.5`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/03e9b7f28999c78edf47cb577d5c2b34c48f5628/v3.3/alpine/Dockerfile) +- [`v3.3.6`, `3.3.6`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/alpine/Dockerfile) -- [`v2.11.22-windowsservercore-ltsc2022`, `2.11.22-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.24-windowsservercore-ltsc2022`, `2.11.24-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.22-windowsservercore-1809`, `2.11.22-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/1809/Dockerfile) +- [`v2.11.24-windowsservercore-1809`, `2.11.24-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/1809/Dockerfile) -- [`v2.11.22-nanoserver-ltsc2022`, `2.11.22-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.24-nanoserver-ltsc2022`, `2.11.24-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.22`, `2.11.22`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/801ca6b7c03e07108eac57ddb11069cc33932144/v2.11/alpine/Dockerfile) +- [`v2.11.24`, `2.11.24`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/alpine/Dockerfile) # Quick reference (cont.) From 07621b33a9d0c8322e84fc8b30d8b166b5a832bd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Apr 2025 11:09:55 -0700 Subject: [PATCH 2097/2686] Run update.sh --- swipl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swipl/README.md b/swipl/README.md index b9c0c3c4bbe0..56dc8b89ef37 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.22`](https://github.com/SWI-Prolog/docker-swipl/blob/2fb5a08b11bbdcbeb445b37afbe4a0bbe8c6ec08/9.3.22/bookworm/Dockerfile) +- [`latest`, `9.3.23`](https://github.com/SWI-Prolog/docker-swipl/blob/b1a43b5121847a6ca5db26c4651149a1c813ae6a/9.3.23/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/2fb5a08b11bbdcbeb445b37afbe4a0bbe8c6ec08/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/b1a43b5121847a6ca5db26c4651149a1c813ae6a/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From fb6960bc8668510dc92309348dfe1a055c5b8093 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Apr 2025 12:09:36 -0700 Subject: [PATCH 2098/2686] Run update.sh --- docker/README.md | 20 +++++++++---------- haproxy/README.md | 4 ++-- influxdb/README.md | 28 +++++++++++++------------- openjdk/README.md | 50 +++++++++++++++++++++++----------------------- 4 files changed, 51 insertions(+), 51 deletions(-) diff --git a/docker/README.md b/docker/README.md index 8c2c3176df24..6cd9ab836415 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.1.0-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.0-cli-alpine3.21`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/cli/Dockerfile) +- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/cli/Dockerfile) -- [`28.1.0-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.0-dind-alpine3.21`, `28.1.0`, `28.1`, `28`, `latest`, `28.1.0-alpine3.21`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/dind/Dockerfile) +- [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind/Dockerfile) -- [`28.1.0-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/dind-rootless/Dockerfile) +- [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) -- [`28.1.0-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.0-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.0-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.1.0-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.0-windowsservercore-1809`](https://github.com/docker-library/docker/blob/45b29bee9e91e43e91181d5f51a2bb755961bab4/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index c9cc9bcb2988..be3eadbcfe60 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev10`, `3.2-dev`, `3.2-dev10-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5af892138fe6cd215b41b6aa9558be9d6e6f875c/3.2/Dockerfile) +- [`3.2-dev11`, `3.2-dev`, `3.2-dev11-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/3bd8e49e55fcabd257e6a9cbf4afa72f21e72a7b/3.2/Dockerfile) -- [`3.2-dev10-alpine`, `3.2-dev-alpine`, `3.2-dev10-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/5af892138fe6cd215b41b6aa9558be9d6e6f875c/3.2/alpine/Dockerfile) +- [`3.2-dev11-alpine`, `3.2-dev-alpine`, `3.2-dev11-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/3bd8e49e55fcabd257e6a9cbf4afa72f21e72a7b/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 5a3737798f41..a99d2ce5b958 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.0-core`, `3.0.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/3.0-core/Dockerfile) +- [`3-core`, `3.0-core`, `3.0.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/3.0-core/Dockerfile) -- [`3-enterprise`, `3.0-enterprise`, `3.0.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/0c84985f782c7b5c2d5a3da70507dc9a75aedd16/influxdb/3.0-enterprise/Dockerfile) +- [`3-enterprise`, `3.0-enterprise`, `3.0.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/3.0-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 4abcf9ccfd3b..fae08fdfa551 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-18-jdk-oraclelinux9`, `25-ea-18-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-18-jdk-oracle`, `25-ea-18-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-19-jdk-oraclelinux9`, `25-ea-19-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-19-jdk-oracle`, `25-ea-19-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-18-jdk-oraclelinux8`, `25-ea-18-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-19-jdk-oraclelinux8`, `25-ea-19-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-18-jdk-bookworm`, `25-ea-18-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/bookworm/Dockerfile) +- [`25-ea-19-jdk-bookworm`, `25-ea-19-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/bookworm/Dockerfile) -- [`25-ea-18-jdk-slim-bookworm`, `25-ea-18-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-18-jdk-slim`, `25-ea-18-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-19-jdk-slim-bookworm`, `25-ea-19-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-19-jdk-slim`, `25-ea-19-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-18-jdk-bullseye`, `25-ea-18-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/bullseye/Dockerfile) +- [`25-ea-19-jdk-bullseye`, `25-ea-19-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/bullseye/Dockerfile) -- [`25-ea-18-jdk-slim-bullseye`, `25-ea-18-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-19-jdk-slim-bullseye`, `25-ea-19-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-18-jdk-windowsservercore-ltsc2025`, `25-ea-18-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-19-jdk-windowsservercore-ltsc2025`, `25-ea-19-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-18-jdk-windowsservercore-ltsc2022`, `25-ea-18-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-19-jdk-windowsservercore-ltsc2022`, `25-ea-19-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-18-jdk-windowsservercore-1809`, `25-ea-18-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-19-jdk-windowsservercore-1809`, `25-ea-19-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-18-jdk-nanoserver-ltsc2025`, `25-ea-18-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-19-jdk-nanoserver-ltsc2025`, `25-ea-19-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-18-jdk-nanoserver-ltsc2022`, `25-ea-18-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-19-jdk-nanoserver-ltsc2022`, `25-ea-19-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-18-jdk-nanoserver-1809`, `25-ea-18-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-19-jdk-nanoserver-1809`, `25-ea-19-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-18-jdk`, `25-ea-18`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-19-jdk`, `25-ea-19`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-18-jdk-windowsservercore`, `25-ea-18-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-19-jdk-windowsservercore`, `25-ea-19-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-18-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-18-jdk-nanoserver`, `25-ea-18-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-19-jdk-nanoserver`, `25-ea-19-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-18-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-18-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-18-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8871188a965b4d3e4b81bc260ae602e97ffb7212/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-19-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-19-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From a0672c1cc2735e19dd3180569d8f532cc1c6af64 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Apr 2025 15:10:14 -0700 Subject: [PATCH 2099/2686] Run update.sh --- erlang/README.md | 18 +++++++++--------- nextcloud/README.md | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 02c67f7d862b..f363d84eedaf 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,23 +30,23 @@ WARNING: - [`28.0.0.0-rc2-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/alpine/Dockerfile) -- [`27.3.2.0`, `27.3.2`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/Dockerfile) +- [`27.3.3.0`, `27.3.3`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/Dockerfile) -- [`27.3.2.0-slim`, `27.3.2-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/slim/Dockerfile) +- [`27.3.3.0-slim`, `27.3.3-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/slim/Dockerfile) -- [`27.3.2.0-alpine`, `27.3.2-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/f8d21d6191e36d3bad373e3a81ea97b58918c664/27/alpine/Dockerfile) +- [`27.3.3.0-alpine`, `27.3.3-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/alpine/Dockerfile) -- [`26.2.5.6`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/Dockerfile) +- [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/Dockerfile) -- [`26.2.5.6-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/26/slim/Dockerfile) +- [`26.2.5.11-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/slim/Dockerfile) -- [`26.2.5.6-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/26/alpine/Dockerfile) +- [`26.2.5.11-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/alpine/Dockerfile) -- [`25.3.2.16`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/25/Dockerfile) +- [`25.3.2.20`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/Dockerfile) -- [`25.3.2.16-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/0032babeb928e3465a91b0deb4f7b8a33930e3be/25/slim/Dockerfile) +- [`25.3.2.20-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/slim/Dockerfile) -- [`25.3.2.16-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/31b38022c405588392cfb37ff4ccb0cff92873ea/25/alpine/Dockerfile) +- [`25.3.2.20-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 91467c0287d0..2dff918d531b 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`29.0.14-apache`, `29.0-apache`, `29-apache`, `29.0.14`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/apache/Dockerfile) +- [`29.0.16-apache`, `29.0-apache`, `29-apache`, `29.0.16`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/apache/Dockerfile) -- [`29.0.14-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/fpm/Dockerfile) +- [`29.0.16-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm/Dockerfile) -- [`29.0.14-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/29/fpm-alpine/Dockerfile) +- [`29.0.16-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm-alpine/Dockerfile) -- [`30.0.8-apache`, `30.0-apache`, `30-apache`, `stable-apache`, `production-apache`, `30.0.8`, `30.0`, `30`, `stable`, `production`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/apache/Dockerfile) +- [`30.0.10-apache`, `30.0-apache`, `30-apache`, `30.0.10`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/apache/Dockerfile) -- [`30.0.8-fpm`, `30.0-fpm`, `30-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/fpm/Dockerfile) +- [`30.0.10-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/fpm/Dockerfile) -- [`30.0.8-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/30/fpm-alpine/Dockerfile) +- [`30.0.10-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/fpm-alpine/Dockerfile) -- [`31.0.2-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.2`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/apache/Dockerfile) +- [`31.0.4-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.4`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/apache/Dockerfile) -- [`31.0.2-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/fpm/Dockerfile) +- [`31.0.4-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/fpm/Dockerfile) -- [`31.0.2-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/e56b9a4e2e400b72018d06aa94236e2a5be3e99a/31/fpm-alpine/Dockerfile) +- [`31.0.4-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From ec38fa90d3dd362dc541983d94bdc1aa2545787f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Apr 2025 16:10:10 -0700 Subject: [PATCH 2100/2686] Run update.sh --- aerospike/README.md | 4 ++-- archlinux/README.md | 6 +++--- caddy/README.md | 34 +++++++++++++++++----------------- clearlinux/README.md | 2 +- ghost/README.md | 4 ++-- golang/README.md | 12 ++++++------ photon/README.md | 2 +- redmine/README.md | 12 ++++++------ 8 files changed, 38 insertions(+), 38 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index c0725da72f5e..1285df1c18ce 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.5`, `ee-8.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/a38d5331fe9c74c5cfd5b723505eaee056652084/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.6`, `ee-8.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/22dee713af7bf1a8d3c0a3451b99a8c14cf32be1/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.5`, `ce-8.0.0.5_1`](https://github.com/aerospike/aerospike-server.docker/blob/a38d5331fe9c74c5cfd5b723505eaee056652084/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.6`, `ce-8.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/22dee713af7bf1a8d3c0a3451b99a8c14cf32be1/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 09625f654e6f..2f9884a48ff6 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.base) +- [`latest`, `base`, `base-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.base) -- [`base-devel`, `base-devel-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250413.0.335299`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/2ebfad10c5e39ef6dbf3c8f305989de313ddab68/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 4b06ecd06e36..1f8473eec531 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,36 +28,36 @@ WARNING: ## Simple Tags -- [`2.9.1-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/alpine/Dockerfile) +- [`2.10.0-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/alpine/Dockerfile) -- [`2.9.1-builder-alpine`, `2.9-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/builder/Dockerfile) +- [`2.10.0-builder-alpine`, `2.10-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) -- [`2.9.1-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) +- [`2.10.0-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) -- [`2.9.1-windowsservercore-ltsc2022`, `2.9-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) +- [`2.10.0-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) -- [`2.9.1-builder-windowsservercore-1809`, `2.9-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/1809/Dockerfile) +- [`2.10.0-builder-windowsservercore-1809`, `2.10-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/1809/Dockerfile) -- [`2.9.1-builder-windowsservercore-ltsc2022`, `2.9-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/ltsc2022/Dockerfile) +- [`2.10.0-builder-windowsservercore-ltsc2022`, `2.10-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) ## Shared Tags -- `2.9.1`, `2.9`, `2`, `latest`: +- `2.10.0`, `2.10`, `2`, `latest`: - - [`2.9.1-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/alpine/Dockerfile) - - [`2.9.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) - - [`2.9.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) + - [`2.10.0-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/alpine/Dockerfile) + - [`2.10.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) + - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) -- `2.9.1-builder`, `2.9-builder`, `2-builder`, `builder`: +- `2.10.0-builder`, `2.10-builder`, `2-builder`, `builder`: - - [`2.9.1-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/builder/Dockerfile) - - [`2.9.1-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/1809/Dockerfile) - - [`2.9.1-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows-builder/ltsc2022/Dockerfile) + - [`2.10.0-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) + - [`2.10.0-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/1809/Dockerfile) + - [`2.10.0-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) -- `2.9.1-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.0-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.9.1-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/1809/Dockerfile) - - [`2.9.1-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/bcbe8e419506954462fe5e771ed8878ba335a9d5/2.9/windows/ltsc2022/Dockerfile) + - [`2.10.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) + - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0717a0c3b8db..e95cc7ea8769 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/aad33d30f672c97befac5e431ddd877709392739/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/afc50176ee4a6effaa12831b24ea46a96283d107/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 76c43d2a1611..c90f72602e28 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.117.0`, `5.117`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c7a646293bc04301c42cc1e6ad63b865cd4aa180/5/debian/Dockerfile) +- [`5.118.0`, `5.118`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a85dca645ff5c1a654aa8968c4ad180459485ae7/5/debian/Dockerfile) -- [`5.117.0-alpine`, `5.117-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c7a646293bc04301c42cc1e6ad63b865cd4aa180/5/alpine/Dockerfile) +- [`5.118.0-alpine`, `5.118-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a85dca645ff5c1a654aa8968c4ad180459485ae7/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 723e15160780..ef0146fe65b2 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250413-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bookworm/Dockerfile) +- [`tip-20250420-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bookworm/Dockerfile) -- [`tip-20250413-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bullseye/Dockerfile) +- [`tip-20250420-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bullseye/Dockerfile) -- [`tip-20250413-alpine3.21`, `tip-alpine3.21`, `tip-20250413-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/alpine3.21/Dockerfile) +- [`tip-20250420-alpine3.21`, `tip-alpine3.21`, `tip-20250420-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/alpine3.21/Dockerfile) -- [`tip-20250413-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/alpine3.20/Dockerfile) +- [`tip-20250420-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250413`, `tip`: +- `tip-20250420`, `tip`: - - [`tip-20250413-bookworm`](https://github.com/docker-library/golang/blob/0969fec20c8cec4b2dd192191a464ae845fefe5b/tip/bookworm/Dockerfile) + - [`tip-20250420-bookworm`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 7d334013a4bc..83294a85202d 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250406`, `latest`](https://github.com/vmware/photon-docker-image/blob/9f40438e15cb3776ddde3fdad929be34057e6d33/docker/Dockerfile) +- [`5.0`, `5.0-20250420`, `latest`](https://github.com/vmware/photon-docker-image/blob/b9960938098c1c4c0ed7713fa005d8871f77f6d4/docker/Dockerfile) - [`4.0`, `4.0-20250406`](https://github.com/vmware/photon-docker-image/blob/aefca1bcdb29758063e05c54bb9c3c92516522d6/docker/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index e71a563d47a4..f014c4c914ab 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.4`, `6.0`, `6`, `latest`, `6.0.4-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/bookworm/Dockerfile) +- [`6.0.5`, `6.0`, `6`, `latest`, `6.0.5-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/bookworm/Dockerfile) -- [`6.0.4-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.4-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/alpine3.21/Dockerfile) +- [`6.0.5-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.21/Dockerfile) -- [`6.0.4-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/ecbae3cb39595c27a988fbaf5569899578f65196/6.0/alpine3.20/Dockerfile) +- [`6.0.5-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.20/Dockerfile) -- [`5.1.7`, `5.1`, `5`, `5.1.7-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/bookworm/Dockerfile) +- [`5.1.8`, `5.1`, `5`, `5.1.8-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/bookworm/Dockerfile) -- [`5.1.7-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.7-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/alpine3.21/Dockerfile) +- [`5.1.8-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.8-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.21/Dockerfile) -- [`5.1.7-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/eee88520aa10c29d0aa0ae70b665a7d337387be5/5.1/alpine3.20/Dockerfile) +- [`5.1.8-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.20/Dockerfile) # Quick reference (cont.) From 7ae0f9096f11eb642945b7b1573a8551adfc0a99 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Apr 2025 17:09:41 -0700 Subject: [PATCH 2101/2686] Run update.sh --- ruby/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ruby/README.md b/ruby/README.md index f57c1f27886d..4a1d0e8b0e76 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,6 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`3.5.0-preview1-bookworm`, `3.5-rc-bookworm`, `3.5.0-preview1`, `3.5-rc`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/bookworm/Dockerfile) + +- [`3.5.0-preview1-slim-bookworm`, `3.5-rc-slim-bookworm`, `3.5.0-preview1-slim`, `3.5-rc-slim`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/slim-bookworm/Dockerfile) + +- [`3.5.0-preview1-bullseye`, `3.5-rc-bullseye`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/bullseye/Dockerfile) + +- [`3.5.0-preview1-slim-bullseye`, `3.5-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/slim-bullseye/Dockerfile) + +- [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`, `3.5.0-preview1-alpine`, `3.5-rc-alpine`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) + +- [`3.5.0-preview1-alpine3.20`, `3.5-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.20/Dockerfile) + - [`3.4.3-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.3`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/bookworm/Dockerfile) - [`3.4.3-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.3-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/slim-bookworm/Dockerfile) From 5e4579cd4eafc2d78344517a99bae4b05aaad6ba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Apr 2025 10:09:47 -0700 Subject: [PATCH 2102/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 1a744a52a7e2..882c7e81bbda 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.14-bullseye-slim`, `22.14.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.0-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/alpine3.20/Dockerfile) +- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.0-alpine`, `20.19.0-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.1-alpine`, `20.19.1-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/alpine3.21/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.0`, `20.19.0-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.1`, `20.19.1-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.0-bookworm-slim`, `20.19.0-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.1-bookworm-slim`, `20.19.1-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.0-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.1-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.0-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e028becede0527249b105c22a3881412641b6d45/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.1-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bullseye-slim/Dockerfile) - [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.8-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.20/Dockerfile) From 606c85d61efab8409e972767a4b88e96aab8bc59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Apr 2025 12:09:38 -0700 Subject: [PATCH 2103/2686] Run update.sh --- percona/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/percona/README.md b/percona/README.md index b50c1a353c08..b37111812b2a 100644 --- a/percona/README.md +++ b/percona/README.md @@ -26,11 +26,11 @@ WARNING: - [`8.0.41-32-centos`, `8.0-centos`, `8-centos`, `8.0.41-32`, `8.0`, `8`, `ps-8.0.41-32`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/73ddc25d7165fa77bda3e92191ec2fc5536c500a/percona-server-8.0/Dockerfile-dockerhub) -- [`psmdb-7.0.15`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-7.0/Dockerfile-dockerhub) +- [`psmdb-8.0.4`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-8.0/Dockerfile-dockerhub) -- [`psmdb-6.0.19`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-6.0/Dockerfile-dockerhub) +- [`psmdb-7.0.16`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-7.0/Dockerfile-dockerhub) -- [`psmdb-5.0.29`, `psmdb-5.0`](https://github.com/percona/percona-docker/blob/5640bc536e5ce7d1559fc4f28868fda941bbaf1d/percona-server-mongodb-5.0/Dockerfile-dockerhub) +- [`psmdb-6.0.21`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-6.0/Dockerfile-dockerhub) # Quick reference (cont.) From d077b8b6b0da1e30913c25bb0ebecf6f2e90d9ed Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Apr 2025 15:10:03 -0700 Subject: [PATCH 2104/2686] Run update.sh --- bash/README.md | 2 +- haproxy/README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bash/README.md b/bash/README.md index 47532381237d..052fc39f6f2d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250409`, `devel`, `devel-20250409-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/c5d644d51ee99d7f850b6353c125c8275f3bfd2c/devel/Dockerfile) +- [`devel-20250418`, `devel`, `devel-20250418-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/ae6eb4261e9338312d9b2b12395d8c746a3b7c7d/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index be3eadbcfe60..20337e2f8cb9 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,21 +32,21 @@ WARNING: - [`3.1.7-alpine`, `3.1-alpine`, `alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/alpine/Dockerfile) -- [`3.0.9`, `3.0`, `lts`, `3.0.9-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/Dockerfile) +- [`3.0.10`, `3.0`, `lts`, `3.0.10-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/Dockerfile) -- [`3.0.9-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.9-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/a4ad1d171a2056e3c1215ccac0005d012e2eced1/3.0/alpine/Dockerfile) +- [`3.0.10-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/alpine/Dockerfile) - [`2.8.14`, `2.8`, `2.8.14-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/Dockerfile) - [`2.8.14-alpine`, `2.8-alpine`, `2.8.14-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/alpine/Dockerfile) -- [`2.6.21`, `2.6`, `2.6.21-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/1d0ad8c9e8dd1b976f8cc81b263f18bcfc1d9be2/2.6/Dockerfile) +- [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/b2272eca1be0415af128438e91ffb721d758eef7/2.6/Dockerfile) -- [`2.6.21-alpine`, `2.6-alpine`, `2.6.21-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/1d0ad8c9e8dd1b976f8cc81b263f18bcfc1d9be2/2.6/alpine/Dockerfile) +- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/b2272eca1be0415af128438e91ffb721d758eef7/2.6/alpine/Dockerfile) -- [`2.4.28`, `2.4`, `2.4.28-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/a59d80d27242e98cb3fa234e5fa9c81a3968be18/2.4/Dockerfile) +- [`2.4.29`, `2.4`, `2.4.29-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/d5e3fa1fab9349226162c5a160ed667d0f62e688/2.4/Dockerfile) -- [`2.4.28-alpine`, `2.4-alpine`, `2.4.28-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/34494c3b5479daab25cc47dd4790d93dfaebe9ac/2.4/alpine/Dockerfile) +- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/d5e3fa1fab9349226162c5a160ed667d0f62e688/2.4/alpine/Dockerfile) - [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) From 1607bd6a5586ec49df4e1ba41034cdd5385d5011 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Apr 2025 07:09:43 -0700 Subject: [PATCH 2105/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 882c7e81bbda..5d3981e171df 100644 --- a/node/README.md +++ b/node/README.md @@ -36,17 +36,17 @@ WARNING: - [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.14-alpine3.20`, `22.14.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.15-alpine3.20`, `22.15.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.14-alpine`, `22.14-alpine3.21`, `22.14.0-alpine`, `22.14.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.15-alpine`, `22.15-alpine3.21`, `22.15.0-alpine`, `22.15.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.14`, `22.14-bookworm`, `22.14.0`, `22.14.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.15`, `22.15-bookworm`, `22.15.0`, `22.15.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.14-bookworm-slim`, `22.14-slim`, `22.14.0-bookworm-slim`, `22.14.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.15-bookworm-slim`, `22.15-slim`, `22.15.0-bookworm-slim`, `22.15.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.14-bullseye`, `22.14.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.15-bullseye`, `22.15.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.14-bullseye-slim`, `22.14.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/258c1a40754047657c4d8cdb6df5042785584821/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.15-bullseye-slim`, `22.15.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bullseye-slim/Dockerfile) - [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/alpine3.20/Dockerfile) From bf600dbda41c8aca0294ab5a6d11fc603390db49 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Apr 2025 10:09:57 -0700 Subject: [PATCH 2106/2686] Run update.sh --- api-firewall/README.md | 2 +- eclipse-temurin/README.md | 364 ++++++++++++++++---------------------- 2 files changed, 155 insertions(+), 211 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 20448fa34ac5..4828d9dc2aef 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.9.0`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/4136139fef1359b203ca474a0105cbece05177e9/0.9.0/Dockerfile) +- [`0.9.1`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/c2776cc6a5adedddcdeb49e8613f64704ccb4c27/0.9.1/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index d0bb414a0230..3acafbff9891 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -76,185 +76,153 @@ WARNING: - [`8u442-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) -- [`11.0.26_4-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/alpine/3.20/Dockerfile) +- [`11.0.27_6-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/alpine/3.20/Dockerfile) -- [`11.0.26_4-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.26_4-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/alpine/3.21/Dockerfile) +- [`11.0.27_6-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.27_6-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/alpine/3.21/Dockerfile) -- [`11.0.26_4-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.27_6-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/focal/Dockerfile) -- [`11.0.26_4-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.27_6-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.26_4-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.27_6-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.26_4-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.27_6-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.26_4-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.27_6-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.26_4-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.27_6-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.26_4-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.27_6-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.26_4-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.27_6-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.26_4-jdk-windowsservercore-1809`, `11-jdk-windowsservercore-1809`, `11-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) +- [`11.0.27_6-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/alpine/3.20/Dockerfile) -- [`11.0.26_4-jdk-nanoserver-1809`, `11-jdk-nanoserver-1809`, `11-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-1809/Dockerfile) +- [`11.0.27_6-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.27_6-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/alpine/3.21/Dockerfile) -- [`11.0.26_4-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/alpine/3.20/Dockerfile) +- [`11.0.27_6-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/focal/Dockerfile) -- [`11.0.26_4-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.26_4-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/alpine/3.21/Dockerfile) +- [`11.0.27_6-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.26_4-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.27_6-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.26_4-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.27_6-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.26_4-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.27_6-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.26_4-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.27_6-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.26_4-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.27_6-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.26_4-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.27_6-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.26_4-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.15_6-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/alpine/3.20/Dockerfile) -- [`11.0.26_4-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.15_6-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.15_6-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/alpine/3.21/Dockerfile) -- [`11.0.26_4-jre-windowsservercore-1809`, `11-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) +- [`17.0.15_6-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/focal/Dockerfile) -- [`11.0.26_4-jre-nanoserver-1809`, `11-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-1809/Dockerfile) +- [`17.0.15_6-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.14_7-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/alpine/3.20/Dockerfile) +- [`17.0.15_6-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.14_7-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.14_7-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/alpine/3.21/Dockerfile) +- [`17.0.15_6-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.14_7-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/focal/Dockerfile) +- [`17.0.15_6-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.14_7-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.15_6-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.14_7-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.15_6-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.14_7-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.15_6-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.14_7-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.15_6-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/alpine/3.20/Dockerfile) -- [`17.0.14_7-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.15_6-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.15_6-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/alpine/3.21/Dockerfile) -- [`17.0.14_7-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.15_6-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/focal/Dockerfile) -- [`17.0.14_7-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.15_6-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.14_7-jdk-windowsservercore-1809`, `17-jdk-windowsservercore-1809`, `17-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) +- [`17.0.15_6-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.14_7-jdk-nanoserver-1809`, `17-jdk-nanoserver-1809`, `17-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-1809/Dockerfile) +- [`17.0.15_6-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.14_7-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/alpine/3.20/Dockerfile) +- [`17.0.15_6-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.14_7-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.14_7-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/alpine/3.21/Dockerfile) +- [`17.0.15_6-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.14_7-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.15_6-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.14_7-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.15_6-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.14_7-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/noble/Dockerfile) +- [`21.0.7_6-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/alpine/3.20/Dockerfile) -- [`17.0.14_7-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.7_6-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.7_6-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/alpine/3.21/Dockerfile) -- [`17.0.14_7-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.7_6-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.14_7-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.7_6-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/noble/Dockerfile) -- [`17.0.14_7-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.7_6-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.14_7-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.7_6-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.14_7-jre-windowsservercore-1809`, `17-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) +- [`21.0.7_6-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.14_7-jre-nanoserver-1809`, `17-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-1809/Dockerfile) +- [`21.0.7_6-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.6_7-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/alpine/3.20/Dockerfile) +- [`21.0.7_6-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.6_7-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.6_7-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/alpine/3.21/Dockerfile) +- [`21.0.7_6-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/alpine/3.20/Dockerfile) -- [`21.0.6_7-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.7_6-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.7_6-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/alpine/3.21/Dockerfile) -- [`21.0.6_7-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.7_6-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.6_7-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.7_6-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.6_7-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.7_6-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.6_7-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.7_6-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.6_7-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.7_6-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.6_7-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.7_6-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.6_7-jdk-windowsservercore-1809`, `21-jdk-windowsservercore-1809`, `21-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) +- [`21.0.7_6-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.6_7-jdk-nanoserver-1809`, `21-jdk-nanoserver-1809`, `21-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-1809/Dockerfile) +- [`24.0.1_9-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/alpine/3.20/Dockerfile) -- [`21.0.6_7-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/alpine/3.20/Dockerfile) +- [`24.0.1_9-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`, `24.0.1_9-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/alpine/3.21/Dockerfile) -- [`21.0.6_7-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.6_7-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/alpine/3.21/Dockerfile) +- [`24.0.1_9-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubuntu/noble/Dockerfile) -- [`21.0.6_7-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/jammy/Dockerfile) +- [`24.0.1_9-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.6_7-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/noble/Dockerfile) +- [`24.0.1_9-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.6_7-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`24.0.1_9-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.6_7-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24.0.1_9-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.6_7-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`24.0.1_9-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.6_7-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.1_9-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/alpine/3.20/Dockerfile) -- [`21.0.6_7-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`24.0.1_9-jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.1_9-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/alpine/3.21/Dockerfile) -- [`21.0.6_7-jre-windowsservercore-1809`, `21-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) +- [`24.0.1_9-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubuntu/noble/Dockerfile) -- [`21.0.6_7-jre-nanoserver-1809`, `21-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) +- [`24.0.1_9-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubi/ubi9-minimal/Dockerfile) -- [`24_36-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/alpine/3.20/Dockerfile) +- [`24.0.1_9-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24_36-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`, `24_36-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/alpine/3.21/Dockerfile) +- [`24.0.1_9-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`24_36-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubuntu/noble/Dockerfile) +- [`24.0.1_9-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24_36-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubi/ubi9-minimal/Dockerfile) - -- [`24_36-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`24_36-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - -- [`24_36-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`24_36-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - -- [`24_36-jdk-windowsservercore-1809`, `24-jdk-windowsservercore-1809`, `24-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) - -- [`24_36-jdk-nanoserver-1809`, `24-jdk-nanoserver-1809`, `24-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-1809/Dockerfile) - -- [`24_36-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/alpine/3.20/Dockerfile) - -- [`24_36-jre-alpine-3.21`, `24-jre-alpine-3.21`, `24_36-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/alpine/3.21/Dockerfile) - -- [`24_36-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubuntu/noble/Dockerfile) - -- [`24_36-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubi/ubi9-minimal/Dockerfile) - -- [`24_36-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`24_36-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2025/Dockerfile) - -- [`24_36-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`24_36-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2022/Dockerfile) - -- [`24_36-jre-windowsservercore-1809`, `24-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) - -- [`24_36-jre-nanoserver-1809`, `24-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-1809/Dockerfile) +- [`24.0.1_9-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags @@ -296,157 +264,133 @@ WARNING: - [`8u442-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`8u442-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) -- `11.0.26_4-jdk`, `11-jdk`, `11`: +- `11.0.27_6-jdk`, `11-jdk`, `11`: - - [`11.0.26_4-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.26_4-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.26_4-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.26_4-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.27_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.27_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.27_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.26_4-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.27_6-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.26_4-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.26_4-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.26_4-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/windowsservercore-1809/Dockerfile) + - [`11.0.27_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.27_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.26_4-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.27_6-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.26_4-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.26_4-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.26_4-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jdk/windows/nanoserver-1809/Dockerfile) + - [`11.0.27_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.27_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `11.0.26_4-jre`, `11-jre`: +- `11.0.27_6-jre`, `11-jre`: - - [`11.0.26_4-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.26_4-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.26_4-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.26_4-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.27_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.27_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.27_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.26_4-jre-windowsservercore`, `11-jre-windowsservercore`: +- `11.0.27_6-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.26_4-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.26_4-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`11.0.26_4-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/windowsservercore-1809/Dockerfile) + - [`11.0.27_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.27_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.26_4-jre-nanoserver`, `11-jre-nanoserver`: +- `11.0.27_6-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.26_4-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.26_4-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`11.0.26_4-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/11/jre/windows/nanoserver-1809/Dockerfile) + - [`11.0.27_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.27_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.14_7-jdk`, `17-jdk`, `17`: +- `17.0.15_6-jdk`, `17-jdk`, `17`: - - [`17.0.14_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.14_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.14_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.14_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.15_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.15_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.15_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.14_7-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.15_6-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.14_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.14_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.14_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/windowsservercore-1809/Dockerfile) + - [`17.0.15_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.15_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.14_7-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.15_6-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.14_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.14_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.14_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jdk/windows/nanoserver-1809/Dockerfile) + - [`17.0.15_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.15_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.14_7-jre`, `17-jre`: +- `17.0.15_6-jre`, `17-jre`: - - [`17.0.14_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.14_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.14_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.14_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.15_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.15_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.15_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.14_7-jre-windowsservercore`, `17-jre-windowsservercore`: +- `17.0.15_6-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.14_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.14_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`17.0.14_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/windowsservercore-1809/Dockerfile) + - [`17.0.15_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.15_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.14_7-jre-nanoserver`, `17-jre-nanoserver`: +- `17.0.15_6-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.14_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.14_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`17.0.14_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/17/jre/windows/nanoserver-1809/Dockerfile) + - [`17.0.15_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.15_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.6_7-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.7_6-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.6_7-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.6_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.6_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.6_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.7_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.7_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.7_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.6_7-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.7_6-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.6_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.6_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.6_7-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/windowsservercore-1809/Dockerfile) + - [`21.0.7_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.7_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.6_7-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.7_6-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.6_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.6_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.6_7-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jdk/windows/nanoserver-1809/Dockerfile) + - [`21.0.7_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.7_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.6_7-jre`, `21-jre`: +- `21.0.7_6-jre`, `21-jre`: - - [`21.0.6_7-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.6_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.6_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.6_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.7_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.7_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.7_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.6_7-jre-windowsservercore`, `21-jre-windowsservercore`: +- `21.0.7_6-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.6_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.6_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`21.0.6_7-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/windowsservercore-1809/Dockerfile) + - [`21.0.7_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.7_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.6_7-jre-nanoserver`, `21-jre-nanoserver`: +- `21.0.7_6-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.6_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.6_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`21.0.6_7-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/21/jre/windows/nanoserver-1809/Dockerfile) + - [`21.0.7_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.7_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `24_36-jdk`, `24-jdk`, `24`: +- `24.0.1_9-jdk`, `24-jdk`, `24`: - - [`24_36-jdk-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/ubuntu/noble/Dockerfile) - - [`24_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24.0.1_9-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubuntu/noble/Dockerfile) + - [`24.0.1_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24_36-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24.0.1_9-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24_36-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/windowsservercore-1809/Dockerfile) + - [`24.0.1_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24_36-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24.0.1_9-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24_36-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`24_36-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jdk/windows/nanoserver-1809/Dockerfile) + - [`24.0.1_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `24_36-jre`, `24-jre`: +- `24.0.1_9-jre`, `24-jre`: - - [`24_36-jre-noble`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/ubuntu/noble/Dockerfile) - - [`24_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) + - [`24.0.1_9-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubuntu/noble/Dockerfile) + - [`24.0.1_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24_36-jre-windowsservercore`, `24-jre-windowsservercore`: +- `24.0.1_9-jre-windowsservercore`, `24-jre-windowsservercore`: - - [`24_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`24_36-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/windowsservercore-1809/Dockerfile) + - [`24.0.1_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24_36-jre-nanoserver`, `24-jre-nanoserver`: +- `24.0.1_9-jre-nanoserver`, `24-jre-nanoserver`: - - [`24_36-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`24_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`24_36-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/24/jre/windows/nanoserver-1809/Dockerfile) + - [`24.0.1_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`24.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From cd3e7f112c805c2485f01a4a48f6ebbd73461c8d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Apr 2025 12:09:37 -0700 Subject: [PATCH 2107/2686] Run update.sh --- nginx/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 14c203fcc50a..e322580f146e 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -38,19 +38,19 @@ WARNING: - [`1.27.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.5-alpine3.21-otel`, `mainline-alpine3.21-otel`, `1-alpine3.21-otel`, `1.27-alpine3.21-otel`, `alpine3.21-otel`](https://github.com/nginx/docker-nginx/blob/4e08af2988063a3b02420ef0040e2e13fc9d93d6/mainline/alpine-otel/Dockerfile) -- [`1.26.3`, `stable`, `1.26`, `1.26.3-bookworm`, `stable-bookworm`, `1.26-bookworm`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian/Dockerfile) +- [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian/Dockerfile) -- [`1.26.3-perl`, `stable-perl`, `1.26-perl`, `1.26.3-bookworm-perl`, `stable-bookworm-perl`, `1.26-bookworm-perl`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-perl/Dockerfile) +- [`1.28.0-perl`, `stable-perl`, `1.28-perl`, `1.28.0-bookworm-perl`, `stable-bookworm-perl`, `1.28-bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian-perl/Dockerfile) -- [`1.26.3-otel`, `stable-otel`, `1.26-otel`, `1.26.3-bookworm-otel`, `stable-bookworm-otel`, `1.26-bookworm-otel`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/debian-otel/Dockerfile) +- [`1.28.0-otel`, `stable-otel`, `1.28-otel`, `1.28.0-bookworm-otel`, `stable-bookworm-otel`, `1.28-bookworm-otel`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian-otel/Dockerfile) -- [`1.26.3-alpine`, `stable-alpine`, `1.26-alpine`, `1.26.3-alpine3.20`, `stable-alpine3.20`, `1.26-alpine3.20`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine/Dockerfile) +- [`1.28.0-alpine`, `stable-alpine`, `1.28-alpine`, `1.28.0-alpine3.21`, `stable-alpine3.21`, `1.28-alpine3.21`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine/Dockerfile) -- [`1.26.3-alpine-perl`, `stable-alpine-perl`, `1.26-alpine-perl`, `1.26.3-alpine3.20-perl`, `stable-alpine3.20-perl`, `1.26-alpine3.20-perl`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-perl/Dockerfile) +- [`1.28.0-alpine-perl`, `stable-alpine-perl`, `1.28-alpine-perl`, `1.28.0-alpine3.21-perl`, `stable-alpine3.21-perl`, `1.28-alpine3.21-perl`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-perl/Dockerfile) -- [`1.26.3-alpine-slim`, `stable-alpine-slim`, `1.26-alpine-slim`, `1.26.3-alpine3.20-slim`, `stable-alpine3.20-slim`, `1.26-alpine3.20-slim`](https://github.com/nginx/docker-nginx/blob/bd3e501c6d800f0a541fe7c965ef905f470cd75f/stable/alpine-slim/Dockerfile) +- [`1.28.0-alpine-slim`, `stable-alpine-slim`, `1.28-alpine-slim`, `1.28.0-alpine3.21-slim`, `stable-alpine3.21-slim`, `1.28-alpine3.21-slim`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-slim/Dockerfile) -- [`1.26.3-alpine-otel`, `stable-alpine-otel`, `1.26-alpine-otel`, `1.26.3-alpine3.20-otel`, `stable-alpine3.20-otel`, `1.26-alpine3.20-otel`](https://github.com/nginx/docker-nginx/blob/cffeb933620093bc0c08c0b28c3d5cbaec79d729/stable/alpine-otel/Dockerfile) +- [`1.28.0-alpine-otel`, `stable-alpine-otel`, `1.28-alpine-otel`, `1.28.0-alpine3.21-otel`, `stable-alpine3.21-otel`, `1.28-alpine3.21-otel`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-otel/Dockerfile) # Quick reference (cont.) From ccc8b3ef3414d9c81091e3270087d08c0abd3e7e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Apr 2025 14:10:05 -0700 Subject: [PATCH 2108/2686] Run update.sh --- haproxy/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 20337e2f8cb9..e104a79286c4 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -36,9 +36,9 @@ WARNING: - [`3.0.10-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/alpine/Dockerfile) -- [`2.8.14`, `2.8`, `2.8.14-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/Dockerfile) +- [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/82d8d0e917b2dbba726f6cf853688d1bb6eed5fc/2.8/Dockerfile) -- [`2.8.14-alpine`, `2.8-alpine`, `2.8.14-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c491c7f23708215e6f6d3e6cc9339acfda331821/2.8/alpine/Dockerfile) +- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/82d8d0e917b2dbba726f6cf853688d1bb6eed5fc/2.8/alpine/Dockerfile) - [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/b2272eca1be0415af128438e91ffb721d758eef7/2.6/Dockerfile) @@ -48,7 +48,7 @@ WARNING: - [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/d5e3fa1fab9349226162c5a160ed667d0f62e688/2.4/alpine/Dockerfile) -- [`2.2.33`, `2.2`, `2.2.33-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/8b639f8d7d8d5d3bc42273e509fd7ef0cabdb356/2.2/Dockerfile) +- [`2.2.34`, `2.2`, `2.2.34-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/fcee7759df612f1047d4b41b42c9f628dac925bf/2.2/Dockerfile) # Quick reference (cont.) From c9dab9f5338218a3462c156b29d89b3f9689cd93 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Apr 2025 10:09:40 -0700 Subject: [PATCH 2109/2686] Run update.sh --- redis/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/redis/README.md b/redis/README.md index a9f1e0ea4389..d3005090efed 100644 --- a/redis/README.md +++ b/redis/README.md @@ -28,17 +28,17 @@ WARNING: - [`8.0-rc1`, `8.0-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/f3cfc256e913880e5d5eefc794e220c6b0733f22/debian/Dockerfile) -- [`7.4.2`, `7.4`, `7`, `latest`, `7.4.2-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/debian/Dockerfile) +- [`7.4.3`, `7.4`, `7`, `latest`, `7.4.3-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/debian/Dockerfile) -- [`7.4.2-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.2-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.4/alpine/Dockerfile) +- [`7.4.3-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.3-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/alpine/Dockerfile) -- [`7.2.7`, `7.2`, `7.2.7-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.2/debian/Dockerfile) +- [`7.2.8`, `7.2`, `7.2.8-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.2/debian/Dockerfile) -- [`7.2.7-alpine`, `7.2-alpine`, `7.2.7-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/7.2/alpine/Dockerfile) +- [`7.2.8-alpine`, `7.2-alpine`, `7.2.8-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.2/alpine/Dockerfile) -- [`6.2.17`, `6.2`, `6`, `6.2.17-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/6.2/debian/Dockerfile) +- [`6.2.18`, `6.2`, `6`, `6.2.18-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/6.2/debian/Dockerfile) -- [`6.2.17-alpine`, `6.2-alpine`, `6-alpine`, `6.2.17-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/8338d86bc3f7b195046138f8c31bf9a839cdedd3/6.2/alpine/Dockerfile) +- [`6.2.18-alpine`, `6.2-alpine`, `6-alpine`, `6.2.18-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/6.2/alpine/Dockerfile) # Quick reference (cont.) From 983966be51911d5e3cb1600387da0341db449fbb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Apr 2025 13:11:12 -0700 Subject: [PATCH 2110/2686] Run update.sh --- amazonlinux/README.md | 4 +-- open-liberty/README.md | 54 ++++++++++++++++++++++--------------- websphere-liberty/README.md | 48 ++++++++++++++++++++------------- 3 files changed, 65 insertions(+), 41 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index f16222f63765..667f604f6417 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250331.0`](https://github.com/amazonlinux/container-images/blob/9b3e1c1b1599e607f934d7564bbf93e007fcfcb6/Dockerfile) +- [`2023`, `latest`, `2023.7.20250414.0`](https://github.com/amazonlinux/container-images/blob/bdbf0417982cca662b4614c15d65d2c3014c4033/Dockerfile) -- [`2`, `2.0.20250321.0`](https://github.com/amazonlinux/container-images/blob/9d29ba6acd48a0eb4aa0613c43e40a8de728830c/Dockerfile) +- [`2`, `2.0.20250414.0`](https://github.com/amazonlinux/container-images/blob/35f42e6f95e02060e4957600610e5c7ecf7ecc2e/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index 9d5ff383efd2..06600cc6954a 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,47 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/e87b958e549ea1666e3405a2d13f032b8de772d7/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 4a5e302de5f0..3894f4cf8ed4 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/07c162fc17eef8f6a0171b855a733ad0413991ad/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 60b97bcd1a642dcdb1712664a3744f697103c794 Mon Sep 17 00:00:00 2001 From: daveedoo <73546387+daveedoo@users.noreply.github.com> Date: Fri, 25 Apr 2025 19:48:15 +0200 Subject: [PATCH 2111/2686] Update link to --secret option (#2562) --- rabbitmq/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rabbitmq/content.md b/rabbitmq/content.md index 268b74529d12..c95e8217849a 100644 --- a/rabbitmq/content.md +++ b/rabbitmq/content.md @@ -88,7 +88,7 @@ For example, you can provide the cookie via a file (such as with [Docker Secrets docker service create ... --secret source=my-erlang-cookie,target=/var/lib/rabbitmq/.erlang.cookie ... %%IMAGE%% ``` -(Note that it will likely also be necessary to specify `uid=XXX,gid=XXX,mode=0600` in order for Erlang in the container to be able to read the cookie file properly. See [Docker's `--secret` documentation for more details](https://docs.docker.com/engine/reference/commandline/service_create/#create-a-service-with-secrets).) +(Note that it will likely also be necessary to specify `uid=XXX,gid=XXX,mode=0600` in order for Erlang in the container to be able to read the cookie file properly. See [Docker's `--secret` documentation for more details](https://docs.docker.com/reference/cli/docker/service/create/#secret).) ### Management Plugin From 2b181827f0455fb8de7d1964494322099f4c8589 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Apr 2025 11:10:14 -0700 Subject: [PATCH 2112/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- convertigo/README.md | 2 +- nats/README.md | 44 ++++++++++++++++++++++---------------------- rabbitmq/README.md | 2 +- xwiki/README.md | 6 +++--- yourls/README.md | 6 +++--- 6 files changed, 34 insertions(+), 34 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 428592135b73..02116b96f526 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.2`, `25.3.2-jammy`, `25.3.2.39`, `25.3.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.3.2.39/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.4`, `25.4-jammy`, `25.4.1`, `25.4.1-jammy`, `25.4.1.2934`, `25.4.1.2934-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.4.1.2934/Dockerfile.ubuntu) -- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.2.2.39/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.3.3.42/Dockerfile.ubuntu) -- [`25.1`, `25.1-jammy`, `25.1.8`, `25.1.8-jammy`, `25.1.8.25`, `25.1.8.25-jammy`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/25.1.8.25/Dockerfile.ubuntu) +- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.2.2.39/Dockerfile.ubuntu) -- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/7f2f20f9efbf129d00085d4a6f4e8e93c29b5064/server/24.8.14.39/Dockerfile.ubuntu) +- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/24.8.14.39/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index fe2cd6fcfcb5..79a57e631454 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.4`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/85e939ec72473383919c1e5652512bed729afb2d/docker/default/Dockerfile) +- [`8.3.5`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/6003de2a5f91b934f60a9ab731bf45341024f7b6/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index 339e586903e2..4f6ef88f73b2 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.1-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.1-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/alpine3.21/Dockerfile) +- [`2.11.2-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.2-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/alpine3.21/Dockerfile) -- [`2.11.1-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.1-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/scratch/Dockerfile) +- [`2.11.2-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.2-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/scratch/Dockerfile) -- [`2.11.1-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.2-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.11.1-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.2-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) -- [`2.10.27-alpine3.21`, `2.10-alpine3.21`, `2.10.27-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/alpine3.21/Dockerfile) +- [`2.10.28-alpine3.21`, `2.10-alpine3.21`, `2.10.28-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/alpine3.21/Dockerfile) -- [`2.10.27-scratch`, `2.10-scratch`, `2.10.27-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/scratch/Dockerfile) +- [`2.10.28-scratch`, `2.10-scratch`, `2.10.28-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/scratch/Dockerfile) -- [`2.10.27-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.28-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.27-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.28-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.11.1`, `2.11`, `2`, `latest`: +- `2.11.2`, `2.11`, `2`, `latest`: - - [`2.11.1-scratch`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/scratch/Dockerfile) - - [`2.11.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.2-scratch`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/scratch/Dockerfile) + - [`2.11.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) -- `2.11.1-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.2-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.1-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.2-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/windowsservercore-1809/Dockerfile) -- `2.11.1-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.2-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) -- `2.10.27`, `2.10`: +- `2.10.28`, `2.10`: - - [`2.10.27-scratch`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/scratch/Dockerfile) - - [`2.10.27-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.28-scratch`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/scratch/Dockerfile) + - [`2.10.28-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.27-windowsservercore`, `2.10-windowsservercore`: +- `2.10.28-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.27-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.28-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.27-nanoserver`, `2.10-nanoserver`: +- `2.10.28-nanoserver`, `2.10-nanoserver`: - - [`2.10.27-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/89f948f8e95c2a5b735ee8a129c33e77e641dd56/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.28-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9d1576c98983..776d371f0224 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -157,7 +157,7 @@ For example, you can provide the cookie via a file (such as with [Docker Secrets docker service create ... --secret source=my-erlang-cookie,target=/var/lib/rabbitmq/.erlang.cookie ... rabbitmq ``` -(Note that it will likely also be necessary to specify `uid=XXX,gid=XXX,mode=0600` in order for Erlang in the container to be able to read the cookie file properly. See [Docker's `--secret` documentation for more details](https://docs.docker.com/engine/reference/commandline/service_create/#create-a-service-with-secrets).) +(Note that it will likely also be necessary to specify `uid=XXX,gid=XXX,mode=0600` in order for Erlang in the container to be able to read the cookie file properly. See [Docker's `--secret` documentation for more details](https://docs.docker.com/reference/cli/docker/service/create/#secret).) ### Management Plugin diff --git a/xwiki/README.md b/xwiki/README.md index fbec6a8e5ff9..3764528201af 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.2-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.5`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.5-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.6`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.5-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.5-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/754d04a5c697218dfe563967550f26561f19e8bb/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mariadb-tomcat/Dockerfile) - [`16.4`, `16.4.7`, `16.4-mysql-tomcat`, `16.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mysql-tomcat/Dockerfile) diff --git a/yourls/README.md b/yourls/README.md index 4851745dfcd7..15b15577c815 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.0-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.0`, `1.10`, `1`, `latest`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/apache/Dockerfile) +- [`1.10.1-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.1`, `1.10`, `1`, `latest`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/apache/Dockerfile) -- [`1.10.0-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/fpm/Dockerfile) +- [`1.10.1-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/fpm/Dockerfile) -- [`1.10.0-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/0901e6c9dd655f24bdfe42680508309114b71aa8/fpm-alpine/Dockerfile) +- [`1.10.1-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/fpm-alpine/Dockerfile) # Quick reference (cont.) From d755264c6b503cd613d4e34290709e3a3495a653 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Apr 2025 12:09:43 -0700 Subject: [PATCH 2113/2686] Run update.sh --- haproxy/README.md | 4 ++-- php/README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index e104a79286c4..81c68029a67e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev11`, `3.2-dev`, `3.2-dev11-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/3bd8e49e55fcabd257e6a9cbf4afa72f21e72a7b/3.2/Dockerfile) +- [`3.2-dev12`, `3.2-dev`, `3.2-dev12-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5eacb570033bf5a53b9de5e1d9ec477fdc81d64e/3.2/Dockerfile) -- [`3.2-dev11-alpine`, `3.2-dev-alpine`, `3.2-dev11-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/3bd8e49e55fcabd257e6a9cbf4afa72f21e72a7b/3.2/alpine/Dockerfile) +- [`3.2-dev12-alpine`, `3.2-dev-alpine`, `3.2-dev12-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/5eacb570033bf5a53b9de5e1d9ec477fdc81d64e/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/php/README.md b/php/README.md index 8fb78637d762..ed74b8be3a4a 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.7RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.7RC1-bookworm`, `8.4-rc-bookworm`, `8.4.7RC1-cli`, `8.4-rc-cli`, `8.4.7RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.7RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.7RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.7RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.7RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.7RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.7RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.7RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.7RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.7RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.7RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.7RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.7RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.7RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.7RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.7RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.7RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.7RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.7RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.7RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.7RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.7RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.7RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.7RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.6-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.6-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.6-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.6`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/cli/Dockerfile) - [`8.4.6-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.6-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.6-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.21RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.21RC1-bookworm`, `8.3-rc-bookworm`, `8.3.21RC1-cli`, `8.3-rc-cli`, `8.3.21RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.21RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.21RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.21RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.21RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.21RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.21RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.21RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.21RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.21RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.21RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.21RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.21RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.21RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.21RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.21RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.21RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.21RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.21RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.21RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.21RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.21RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.21RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.21RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.20-cli-bookworm`, `8.3-cli-bookworm`, `8.3.20-bookworm`, `8.3-bookworm`, `8.3.20-cli`, `8.3-cli`, `8.3.20`, `8.3`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/cli/Dockerfile) - [`8.3.20-apache-bookworm`, `8.3-apache-bookworm`, `8.3.20-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/apache/Dockerfile) From 0e12c37c27b51f3eab76b553601bba6a7a6ac505 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Apr 2025 15:09:48 -0700 Subject: [PATCH 2114/2686] Run update.sh --- aerospike/README.md | 4 ++-- busybox/README.md | 16 +++++++-------- ghost/README.md | 4 ++-- openjdk/README.md | 50 ++++++++++++++++++++++----------------------- 4 files changed, 37 insertions(+), 37 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 1285df1c18ce..a8ca1a7184f7 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.6`, `ee-8.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/22dee713af7bf1a8d3c0a3451b99a8c14cf32be1/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.7`, `ee-8.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/f7a9bd678ddd35ed68b819e22ece992a45289e96/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.6`, `ce-8.0.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/22dee713af7bf1a8d3c0a3451b99a8c14cf32be1/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.7`, `ce-8.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/f7a9bd678ddd35ed68b819e22ece992a45289e96/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index b25f421744ab..532357cdd24a 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/18ac409c9b1874d7b7e63634c909d29f0cd0207c/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index c90f72602e28..12e35262927f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.118.0`, `5.118`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a85dca645ff5c1a654aa8968c4ad180459485ae7/5/debian/Dockerfile) +- [`5.118.1`, `5.118`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a74ecf04cd0f5be5543c2928918b2cf27b0a9bd1/5/debian/Dockerfile) -- [`5.118.0-alpine`, `5.118-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a85dca645ff5c1a654aa8968c4ad180459485ae7/5/alpine/Dockerfile) +- [`5.118.1-alpine`, `5.118-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a74ecf04cd0f5be5543c2928918b2cf27b0a9bd1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index fae08fdfa551..0205242dfb18 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-19-jdk-oraclelinux9`, `25-ea-19-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-19-jdk-oracle`, `25-ea-19-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-20-jdk-oraclelinux9`, `25-ea-20-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-20-jdk-oracle`, `25-ea-20-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-19-jdk-oraclelinux8`, `25-ea-19-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-20-jdk-oraclelinux8`, `25-ea-20-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-19-jdk-bookworm`, `25-ea-19-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/bookworm/Dockerfile) +- [`25-ea-20-jdk-bookworm`, `25-ea-20-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/bookworm/Dockerfile) -- [`25-ea-19-jdk-slim-bookworm`, `25-ea-19-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-19-jdk-slim`, `25-ea-19-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-20-jdk-slim-bookworm`, `25-ea-20-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-20-jdk-slim`, `25-ea-20-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-19-jdk-bullseye`, `25-ea-19-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/bullseye/Dockerfile) +- [`25-ea-20-jdk-bullseye`, `25-ea-20-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/bullseye/Dockerfile) -- [`25-ea-19-jdk-slim-bullseye`, `25-ea-19-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-20-jdk-slim-bullseye`, `25-ea-20-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-19-jdk-windowsservercore-ltsc2025`, `25-ea-19-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-20-jdk-windowsservercore-ltsc2025`, `25-ea-20-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-19-jdk-windowsservercore-ltsc2022`, `25-ea-19-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-20-jdk-windowsservercore-ltsc2022`, `25-ea-20-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-19-jdk-windowsservercore-1809`, `25-ea-19-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-20-jdk-windowsservercore-1809`, `25-ea-20-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-19-jdk-nanoserver-ltsc2025`, `25-ea-19-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-20-jdk-nanoserver-ltsc2025`, `25-ea-20-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-19-jdk-nanoserver-ltsc2022`, `25-ea-19-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-20-jdk-nanoserver-ltsc2022`, `25-ea-20-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-19-jdk-nanoserver-1809`, `25-ea-19-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-20-jdk-nanoserver-1809`, `25-ea-20-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-19-jdk`, `25-ea-19`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-20-jdk`, `25-ea-20`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-19-jdk-windowsservercore`, `25-ea-19-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-20-jdk-windowsservercore`, `25-ea-20-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-19-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-19-jdk-nanoserver`, `25-ea-19-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-20-jdk-nanoserver`, `25-ea-20-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-19-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-19-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-19-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/e964a1e1c35504d84f04e8633d96f5eb8c71a01f/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-20-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-20-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 05410db7f445388afc54d110e3d48c4f4fb87813 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Apr 2025 16:09:55 -0700 Subject: [PATCH 2115/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 450486acb173..05e8a477b0f8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b650b394ebca3e07ef2c48d0574064eceebc344/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7-slim-fips/Dockerfile) # Quick reference (cont.) From d50e0dad96bbd65ee90c82b8940b1ec9778e262d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Apr 2025 17:10:13 -0700 Subject: [PATCH 2116/2686] Run update.sh --- gcc/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/README.md b/gcc/README.md index b2b5b26ed237..4b4b97c6d665 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`14.2.0`, `14.2`, `14`, `latest`, `14.2.0-bookworm`, `14.2-bookworm`, `14-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/22c26a9e4edb4ce4f7676dfa100afc80fc2ccbea/14/Dockerfile) +- [`15.1.0`, `15.1`, `15`, `latest`, `15.1.0-bookworm`, `15.1-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/a842bfea737b1127a922a27d768df7e382f740af/15/Dockerfile) + +- [`14.2.0`, `14.2`, `14`, `14.2.0-bookworm`, `14.2-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/22c26a9e4edb4ce4f7676dfa100afc80fc2ccbea/14/Dockerfile) - [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/13/Dockerfile) From f99d9b5bc206f6451fd09f7fe70d6ec50e2e7806 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Apr 2025 11:10:01 -0700 Subject: [PATCH 2117/2686] Run update.sh --- archlinux/README.md | 6 +- clearlinux/README.md | 2 +- clojure/README.md | 138 +++++++++++++++++++++---------------------- friendica/README.md | 18 ++---- gradle/README.md | 68 ++++++++++++--------- julia/README.md | 48 ++++++++------- monica/README.md | 12 ++-- odoo/README.md | 6 +- photon/README.md | 4 +- xwiki/README.md | 6 +- 10 files changed, 158 insertions(+), 150 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 2f9884a48ff6..061d21037a79 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.base) +- [`latest`, `base`, `base-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.base) -- [`base-devel`, `base-devel-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250420.0.338771`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/645668bdc8d5440f20c54d6371373c197fc97c35/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index e95cc7ea8769..638c69f4df25 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/afc50176ee4a6effaa12831b24ea46a96283d107/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4fd100553e8f92173599dff2de33e480e8b6c507/Dockerfile) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 09a4216bf090..b34943d3a802 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,143 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/a3924e801445a4edaf4525b7cf1fccc85ce3b1fa/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 09f1bee370d0..c4a8c3424e36 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,23 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2024.08-apache`, `2024.08`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/apache/Dockerfile) +- [`2024.12-apache`, `apache`, `stable-apache`, `2024.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/e56a5124cbf9b88e01f0ebeab0b20d6dfeb25f10/2024.12/apache/Dockerfile) -- [`2024.08-fpm`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm/Dockerfile) +- [`2024.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2024.12/fpm/Dockerfile) -- [`2024.08-fpm-alpine`](https://github.com/friendica/docker/blob/93be4ea89aed395905abfb12856b0c7b47a2204a/2024.08/fpm-alpine/Dockerfile) +- [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2024.12/fpm-alpine/Dockerfile) -- [`2024.12-apache`, `apache`, `stable-apache`, `2024.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/e56a5124cbf9b88e01f0ebeab0b20d6dfeb25f10/2025.02-dev/apache/Dockerfile) -- [`2024.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2025.02-dev/fpm/Dockerfile) -- [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/898e27d3d9b97479037f64a8cc8963a7bcab63a2/2024.12/fpm-alpine/Dockerfile) - -- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/apache/Dockerfile) - -- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/fpm/Dockerfile) - -- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/4218eb3a978cda7313b9e051c69c260ee4391195/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2025.02-dev/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 30d2f8494276..8a12eeee88e0 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,63 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.13.0-jdk21`, `8.13-jdk21`, `8-jdk21`, `jdk21`, `8.13.0-jdk21-noble`, `8.13-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.13.0-jdk`, `8.13-jdk`, `8-jdk`, `jdk`, `8.13.0`, `8.13`, `8`, `8.13.0-jdk-noble`, `8.13-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.13.0-noble`, `8.13-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-noble/Dockerfile) +- [`8.14.0-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.0-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.0-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.0`, `8.14`, `8`, `8.14.0-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.0-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-noble/Dockerfile) -- [`8.13.0-jdk21-jammy`, `8.13-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.13.0-jdk-jammy`, `8.13-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.13.0-jammy`, `8.13-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-jammy/Dockerfile) +- [`8.14.0-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.0-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.0-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-jammy/Dockerfile) -- [`8.13.0-jdk21-alpine`, `8.13-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.13.0-jdk-alpine`, `8.13-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.13.0-alpine`, `8.13-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-alpine/Dockerfile) +- [`8.14.0-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.0-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.0-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-alpine/Dockerfile) -- [`8.13.0-jdk21-corretto`, `8.13-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.13.0-jdk21-corretto-al2023`, `8.13-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-corretto/Dockerfile) +- [`8.14.0-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.0-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-corretto/Dockerfile) -- [`8.13.0-jdk21-ubi`, `8.13-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.13.0-jdk21-ubi-minimal`, `8.13-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-ubi9/Dockerfile) +- [`8.14.0-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.0-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-ubi9/Dockerfile) -- [`8.13.0-jdk21-graal`, `8.13-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.13.0-jdk-graal`, `8.13-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.13.0-graal`, `8.13-graal`, `8-graal`, `graal`, `8.13.0-jdk21-graal-noble`, `8.13-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.13.0-jdk-graal-noble`, `8.13-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.13.0-graal-noble`, `8.13-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-noble-graal/Dockerfile) +- [`8.14.0-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.0-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.0-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.0-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.0-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.0-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-noble-graal/Dockerfile) -- [`8.13.0-jdk21-graal-jammy`, `8.13-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.13.0-jdk-graal-jammy`, `8.13-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.13.0-graal-jammy`, `8.13-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk21-jammy-graal/Dockerfile) +- [`8.14.0-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.0-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.0-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-jammy-graal/Dockerfile) -- [`8.13.0-jdk17`, `8.13-jdk17`, `8-jdk17`, `jdk17`, `8.13.0-jdk17-noble`, `8.13-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-noble/Dockerfile) +- [`8.14.0-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.0-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-noble/Dockerfile) -- [`8.13.0-jdk17-jammy`, `8.13-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-jammy/Dockerfile) +- [`8.14.0-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-jammy/Dockerfile) -- [`8.13.0-jdk17-focal`, `8.13-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.13.0-jdk-focal`, `8.13-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.13.0-focal`, `8.13-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-focal/Dockerfile) +- [`8.14.0-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.0-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.0-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-focal/Dockerfile) -- [`8.13.0-jdk17-alpine`, `8.13-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-alpine/Dockerfile) +- [`8.14.0-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-alpine/Dockerfile) -- [`8.13.0-jdk17-corretto`, `8.13-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.13.0-jdk17-corretto-al2023`, `8.13-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-corretto/Dockerfile) +- [`8.14.0-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.0-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-corretto/Dockerfile) -- [`8.13.0-jdk17-ubi`, `8.13-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.13.0-jdk17-ubi-minimal`, `8.13-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-ubi9/Dockerfile) +- [`8.14.0-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.0-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-ubi9/Dockerfile) -- [`8.13.0-jdk17-graal`, `8.13-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.13.0-jdk17-graal-noble`, `8.13-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-noble-graal/Dockerfile) +- [`8.14.0-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.0-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-noble-graal/Dockerfile) -- [`8.13.0-jdk17-graal-jammy`, `8.13-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-jammy-graal/Dockerfile) +- [`8.14.0-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-jammy-graal/Dockerfile) -- [`8.13.0-jdk17-graal-focal`, `8.13-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.13.0-jdk-graal-focal`, `8.13-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.13.0-graal-focal`, `8.13-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk17-focal-graal/Dockerfile) +- [`8.14.0-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.0-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.0-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-focal-graal/Dockerfile) -- [`8.13.0-jdk11`, `8.13-jdk11`, `8-jdk11`, `jdk11`, `8.13.0-jdk11-jammy`, `8.13-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-jammy/Dockerfile) +- [`8.14.0-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.0-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-jammy/Dockerfile) -- [`8.13.0-jdk11-focal`, `8.13-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-focal/Dockerfile) +- [`8.14.0-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-focal/Dockerfile) -- [`8.13.0-jdk11-alpine`, `8.13-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-alpine/Dockerfile) +- [`8.14.0-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-alpine/Dockerfile) -- [`8.13.0-jdk11-corretto`, `8.13-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.13.0-jdk11-corretto-al2023`, `8.13-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-corretto/Dockerfile) +- [`8.14.0-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.0-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-corretto/Dockerfile) -- [`8.13.0-jdk11-ubi`, `8.13-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.13.0-jdk11-ubi-minimal`, `8.13-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk11-ubi9/Dockerfile) +- [`8.14.0-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.0-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-ubi9/Dockerfile) -- [`8.13.0-jdk8`, `8.13-jdk8`, `8-jdk8`, `jdk8`, `8.13.0-jdk8-jammy`, `8.13-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-jammy/Dockerfile) +- [`8.14.0-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.0-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-jammy/Dockerfile) -- [`8.13.0-jdk8-focal`, `8.13-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-focal/Dockerfile) +- [`8.14.0-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-focal/Dockerfile) -- [`8.13.0-jdk8-corretto`, `8.13-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.13.0-jdk8-corretto-al2023`, `8.13-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-corretto/Dockerfile) +- [`8.14.0-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.0-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-corretto/Dockerfile) -- [`8.13.0-jdk8-ubi`, `8.13-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.13.0-jdk8-ubi-minimal`, `8.13-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk8-ubi9/Dockerfile) +- [`8.14.0-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.0-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-ubi9/Dockerfile) -- [`8.13.0-jdk-lts-and-current`, `8.13-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.13.0-jdk-lts-and-current-noble`, `8.13-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.13.0-jdk-21-and-24`, `8.13-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.13.0-jdk-21-and-24-noble`, `8.13-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current/Dockerfile) +- [`8.14.0-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.0-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-noble/Dockerfile) -- [`8.13.0-jdk-lts-and-current-alpine`, `8.13-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.13.0-jdk-21-and-24-alpine`, `8.13-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.0-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-alpine/Dockerfile) -- [`8.13.0-jdk-lts-and-current-corretto`, `8.13-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.13.0-jdk-lts-and-current-corretto-al2023`, `8.13-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.13.0-jdk-21-and-24-corretto`, `8.13-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.13.0-jdk-21-and-24-corretto-al2023`, `8.13-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.0-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.0-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-corretto/Dockerfile) -- [`8.13.0-jdk-lts-and-current-graal`, `8.13-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.13.0-jdk-lts-and-current-graal-noble`, `8.13-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.13.0-jdk-21-and-24-graal`, `8.13-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.13.0-jdk-21-and-24-graal-noble`, `8.13-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/21b1b77ed72cf076012bc1a877b8feaaeb81ee7e/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.0-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.0-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-ubi9/Dockerfile) + +- [`8.14.0-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.0-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-noble-graal/Dockerfile) + +- [`8.14.0-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.0-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.0-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.0-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current/Dockerfile) + +- [`8.14.0-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.0-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-alpine/Dockerfile) + +- [`8.14.0-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.0-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.0-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.0-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-corretto/Dockerfile) + +- [`8.14.0-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.0-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.0-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.0-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) diff --git a/julia/README.md b/julia/README.md index bcc830c8a982..d51e4d8f5fc1 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,15 +28,19 @@ WARNING: ## Simple Tags -- [`1.12.0-beta1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-beta2-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-beta1-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bullseye/Dockerfile) +- [`1.12.0-beta2-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bullseye/Dockerfile) -- [`1.12.0-beta1-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-beta2-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`, `1.12.0-beta2-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/alpine3.21/Dockerfile) -- [`1.12.0-beta1-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-beta2-alpine3.20`, `1.12-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/alpine3.20/Dockerfile) -- [`1.12.0-beta1-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.12.0-beta2-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`1.12.0-beta2-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.12.0-beta2-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) - [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) @@ -68,18 +72,18 @@ WARNING: ## Shared Tags -- `1.12.0-beta1`, `1.12-rc`, `rc`: +- `1.12.0-beta2`, `1.12-rc`, `rc`: - - [`1.12.0-beta1-bookworm`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/bookworm/Dockerfile) - - [`1.12.0-beta1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.12.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-beta2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) -- `1.12.0-beta1-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-beta2-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-beta1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta1-windowsservercore-1809`](https://github.com/docker-library/julia/blob/ae74313380ef427d6d6f53f5b597867944bb3623/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.12.0-beta2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) - `1.11.5`, `1.11`, `1`, `latest`: @@ -166,6 +170,14 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + ## `julia:-windowsservercore` This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -175,14 +187,6 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) - [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/monica/README.md b/monica/README.md index cbd7f67c1696..65ebbdfee8f5 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/apache/Dockerfile) +- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/apache/Dockerfile) -- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/fpm-alpine/Dockerfile) +- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/fpm-alpine/Dockerfile) -- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/4/fpm/Dockerfile) +- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/fpm/Dockerfile) -- [`5.0.0-beta.4-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/apache/Dockerfile) +- [`5.0.0-beta.5-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/apache/Dockerfile) -- [`5.0.0-beta.4-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/fpm-alpine/Dockerfile) +- [`5.0.0-beta.5-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/fpm-alpine/Dockerfile) -- [`5.0.0-beta.4-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/7982fc66d4eb5569cfd6fd19202ac5a86dbdef93/5/fpm/Dockerfile) +- [`5.0.0-beta.5-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/fpm/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 27a01e9bf5c8..b807d5cd46cd 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250415`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/18.0/Dockerfile) +- [`18.0-20250428`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/18.0/Dockerfile) -- [`17.0-20250415`, `17.0`, `17`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/17.0/Dockerfile) +- [`17.0-20250428`, `17.0`, `17`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/17.0/Dockerfile) -- [`16.0-20250415`, `16.0`, `16`](https://github.com/odoo/docker/blob/515f1249ead0e69758adecfe9a86584266074e85/16.0/Dockerfile) +- [`16.0-20250428`, `16.0`, `16`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/16.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 83294a85202d..216b679359c6 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250420`, `latest`](https://github.com/vmware/photon-docker-image/blob/b9960938098c1c4c0ed7713fa005d8871f77f6d4/docker/Dockerfile) +- [`5.0`, `5.0-20250427`, `latest`](https://github.com/vmware/photon-docker-image/blob/41a2d9175642cf2da9f33b817c28aa2c01919d70/docker/Dockerfile) -- [`4.0`, `4.0-20250406`](https://github.com/vmware/photon-docker-image/blob/aefca1bcdb29758063e05c54bb9c3c92516522d6/docker/Dockerfile) +- [`4.0`, `4.0-20250427`](https://github.com/vmware/photon-docker-image/blob/b0a23c3956afbd0280735705f1f3c916deb5a04f/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 3764528201af..d54ebe65d9a8 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.2`, `17.2.2`, `17-mysql-tomcat`, `17.2-mysql-tomcat`, `17.2.2-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/mysql-tomcat/Dockerfile) +- [`17`, `17.3`, `17.3.0`, `17-mysql-tomcat`, `17.3-mysql-tomcat`, `17.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.2-postgres-tomcat`, `17.2.2-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.3-postgres-tomcat`, `17.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.2-mariadb-tomcat`, `17.2.2-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/3ced44d5c273e60e31cd4717c200f57ecd7df630/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.3-mariadb-tomcat`, `17.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.6`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mysql-tomcat/Dockerfile) From 9c078aaefd63d371429539638caa7f4365e9e15b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Apr 2025 12:09:55 -0700 Subject: [PATCH 2118/2686] Run update.sh --- golang/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/golang/README.md b/golang/README.md index ef0146fe65b2..7fd625049635 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250420-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bookworm/Dockerfile) +- [`tip-20250426-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bookworm/Dockerfile) -- [`tip-20250420-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bullseye/Dockerfile) +- [`tip-20250426-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bullseye/Dockerfile) -- [`tip-20250420-alpine3.21`, `tip-alpine3.21`, `tip-20250420-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/alpine3.21/Dockerfile) +- [`tip-20250426-alpine3.21`, `tip-alpine3.21`, `tip-20250426-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/alpine3.21/Dockerfile) -- [`tip-20250420-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/alpine3.20/Dockerfile) +- [`tip-20250426-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250420`, `tip`: +- `tip-20250426`, `tip`: - - [`tip-20250420-bookworm`](https://github.com/docker-library/golang/blob/1f482d740c124b67fb7cf31ba02c32f4cf918066/tip/bookworm/Dockerfile) + - [`tip-20250426-bookworm`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bookworm/Dockerfile) # Quick reference (cont.) From 13569376092a6bdc74f8b2c5a836c8b04848b1d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Apr 2025 13:09:52 -0700 Subject: [PATCH 2119/2686] Run update.sh --- eclipse-temurin/README.md | 94 +++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 54 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 3acafbff9891..169c5a2d988b 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,53 +28,45 @@ WARNING: ## Simple Tags -- [`8u442-b06-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/alpine/3.20/Dockerfile) +- [`8u452-b09-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/alpine/3.20/Dockerfile) -- [`8u442-b06-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u442-b06-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/alpine/3.21/Dockerfile) +- [`8u452-b09-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u452-b09-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/alpine/3.21/Dockerfile) -- [`8u442-b06-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/focal/Dockerfile) +- [`8u452-b09-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/focal/Dockerfile) -- [`8u442-b06-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u452-b09-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u442-b06-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/noble/Dockerfile) +- [`8u452-b09-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/noble/Dockerfile) -- [`8u442-b06-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u452-b09-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u442-b06-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u452-b09-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u442-b06-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u452-b09-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u442-b06-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u452-b09-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u442-b06-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u452-b09-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u442-b06-jdk-windowsservercore-1809`, `8-jdk-windowsservercore-1809`, `8-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) +- [`8u452-b09-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/alpine/3.20/Dockerfile) -- [`8u442-b06-jdk-nanoserver-1809`, `8-jdk-nanoserver-1809`, `8-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-1809/Dockerfile) +- [`8u452-b09-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u452-b09-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/alpine/3.21/Dockerfile) -- [`8u442-b06-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/alpine/3.20/Dockerfile) +- [`8u452-b09-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/focal/Dockerfile) -- [`8u442-b06-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u442-b06-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/alpine/3.21/Dockerfile) +- [`8u452-b09-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/jammy/Dockerfile) -- [`8u442-b06-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/focal/Dockerfile) +- [`8u452-b09-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/noble/Dockerfile) -- [`8u442-b06-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/jammy/Dockerfile) +- [`8u452-b09-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u442-b06-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/noble/Dockerfile) +- [`8u452-b09-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u442-b06-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/043d39d27d24f217a235083e4011065086d1a464/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u452-b09-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u442-b06-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u452-b09-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u442-b06-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - -- [`8u442-b06-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`8u442-b06-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8u442-b06-jre-windowsservercore-1809`, `8-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) - -- [`8u442-b06-jre-nanoserver-1809`, `8-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) +- [`8u452-b09-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - [`11.0.27_6-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/alpine/3.20/Dockerfile) @@ -226,43 +218,37 @@ WARNING: ## Shared Tags -- `8u442-b06-jdk`, `8-jdk`, `8`: +- `8u452-b09-jdk`, `8-jdk`, `8`: - - [`8u442-b06-jdk-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/ubuntu/noble/Dockerfile) - - [`8u442-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u442-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u442-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u452-b09-jdk-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/noble/Dockerfile) + - [`8u452-b09-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u452-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u442-b06-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u452-b09-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u442-b06-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u442-b06-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u442-b06-jdk-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/windowsservercore-1809/Dockerfile) + - [`8u452-b09-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u452-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u442-b06-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u452-b09-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u442-b06-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u442-b06-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u442-b06-jdk-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jdk/windows/nanoserver-1809/Dockerfile) + - [`8u452-b09-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u452-b09-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `8u442-b06-jre`, `8-jre`: +- `8u452-b09-jre`, `8-jre`: - - [`8u442-b06-jre-noble`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/ubuntu/noble/Dockerfile) - - [`8u442-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u442-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u442-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u452-b09-jre-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/noble/Dockerfile) + - [`8u452-b09-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u452-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u442-b06-jre-windowsservercore`, `8-jre-windowsservercore`: +- `8u452-b09-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u442-b06-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u442-b06-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8u442-b06-jre-windowsservercore-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/windowsservercore-1809/Dockerfile) + - [`8u452-b09-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u452-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u442-b06-jre-nanoserver`, `8-jre-nanoserver`: +- `8u452-b09-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u442-b06-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u442-b06-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - - [`8u442-b06-jre-nanoserver-1809`](https://github.com/adoptium/containers/blob/766789f16156ca5424fbd3a1b435d6bcd13d14b0/8/jre/windows/nanoserver-1809/Dockerfile) + - [`8u452-b09-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u452-b09-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) - `11.0.27_6-jdk`, `11-jdk`, `11`: From bd34fdfd500ae7a786976e2294fbdcd3a65f9d92 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Apr 2025 14:10:05 -0700 Subject: [PATCH 2120/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++----------------------- wordpress/README.md | 24 +++++++++++++++++++++++ 2 files changed, 48 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index 1bdd3116def4..34d7a503b600 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250407`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250428`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250407-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250428-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250407`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250428`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250407-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250428-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/experimental/Dockerfile) +- [`experimental`, `experimental-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/rc-buggy/Dockerfile) -- [`sid`, `sid-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/sid/oci/index.json) +- [`sid`, `sid-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/sid/oci/index.json) -- [`sid-slim`, `sid-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/sid/slim/oci/index.json) -- [`stable`, `stable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/oci/index.json) +- [`stable`, `stable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/slim/oci/index.json) -- [`testing`, `testing-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/oci/index.json) +- [`testing`, `testing-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/oci/index.json) +- [`trixie`, `trixie-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250407`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/unstable/oci/index.json) +- [`unstable`, `unstable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250407-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/949bf2c69b0888b62fe78dd45d02b74a7ddf64e2/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 839e542e2c31..44542e2f7bd5 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,6 +56,30 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) +- [`beta-6.8.1-RC1-php8.1-apache`, `beta-6.8.1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.1-RC1-php8.1`, `beta-6.8.1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/apache/Dockerfile) + +- [`beta-6.8.1-RC1-php8.1-fpm`, `beta-6.8.1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.8.1-RC1-php8.1-fpm-alpine`, `beta-6.8.1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.8.1-RC1-apache`, `beta-6.8.1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.1-RC1`, `beta-6.8.1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.1-RC1-php8.2-apache`, `beta-6.8.1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.1-RC1-php8.2`, `beta-6.8.1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/apache/Dockerfile) + +- [`beta-6.8.1-RC1-fpm`, `beta-6.8.1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.1-RC1-php8.2-fpm`, `beta-6.8.1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.8.1-RC1-fpm-alpine`, `beta-6.8.1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.1-RC1-php8.2-fpm-alpine`, `beta-6.8.1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.8.1-RC1-php8.3-apache`, `beta-6.8.1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.1-RC1-php8.3`, `beta-6.8.1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/apache/Dockerfile) + +- [`beta-6.8.1-RC1-php8.3-fpm`, `beta-6.8.1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.8.1-RC1-php8.3-fpm-alpine`, `beta-6.8.1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/fpm-alpine/Dockerfile) + +- [`beta-6.8.1-RC1-php8.4-apache`, `beta-6.8.1-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.1-RC1-php8.4`, `beta-6.8.1-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/apache/Dockerfile) + +- [`beta-6.8.1-RC1-php8.4-fpm`, `beta-6.8.1-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/fpm/Dockerfile) + +- [`beta-6.8.1-RC1-php8.4-fpm-alpine`, `beta-6.8.1-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 26236cfdc34d7297aa152673cfe45a9815358a1d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Apr 2025 12:09:50 -0700 Subject: [PATCH 2121/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 05e8a477b0f8..53d4a731f1b0 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/194c7b3107251eb0f8d92e95e2c7ff918acf8434/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7-slim-fips/Dockerfile) # Quick reference (cont.) From 30174b2caf3e2eb2b642c8c72a6653f3d5c630cd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Apr 2025 15:10:04 -0700 Subject: [PATCH 2122/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 052fc39f6f2d..b9db98dbc1d3 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250418`, `devel`, `devel-20250418-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/ae6eb4261e9338312d9b2b12395d8c746a3b7c7d/devel/Dockerfile) +- [`devel-20250422`, `devel`, `devel-20250422-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/b9df53e57a14df82d910628a593002a459af88db/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) From c8fefb5ed65cec4609a4cc64b1154ffeb240d2fa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Apr 2025 10:09:51 -0700 Subject: [PATCH 2123/2686] Run update.sh --- crate/README.md | 2 +- neo4j/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crate/README.md b/crate/README.md index 5158360cbfa4..744425c7caa5 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.4`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/5da0b7a92dd3bcf98be306aae8587698e8922340/Dockerfile) +- [`5.10.5`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/97130ba5d0e281dc14187f6c503e98aa26e5ab35/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index c08b2de217f7..e3f770c3dc0a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.03.0-community-bullseye`, `2025.03-community-bullseye`, `2025-community-bullseye`, `2025.03.0-community`, `2025.03-community`, `2025-community`, `2025.03.0-bullseye`, `2025.03-bullseye`, `2025-bullseye`, `2025.03.0`, `2025.03`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/bullseye/community/Dockerfile) +- [`2025.04.0-community-bullseye`, `2025.04-community-bullseye`, `2025-community-bullseye`, `2025.04.0-community`, `2025.04-community`, `2025-community`, `2025.04.0-bullseye`, `2025.04-bullseye`, `2025-bullseye`, `2025.04.0`, `2025.04`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/bullseye/community/Dockerfile) -- [`2025.03.0-enterprise-bullseye`, `2025.03-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.03.0-enterprise`, `2025.03-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/bullseye/enterprise/Dockerfile) +- [`2025.04.0-enterprise-bullseye`, `2025.04-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.04.0-enterprise`, `2025.04-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/bullseye/enterprise/Dockerfile) -- [`2025.03.0-community-ubi9`, `2025.03-community-ubi9`, `2025-community-ubi9`, `2025.03.0-ubi9`, `2025.03-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/ubi9/community/Dockerfile) +- [`2025.04.0-community-ubi9`, `2025.04-community-ubi9`, `2025-community-ubi9`, `2025.04.0-ubi9`, `2025.04-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/community/Dockerfile) -- [`2025.03.0-enterprise-ubi9`, `2025.03-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/16371314e9a680f31db6d00e89881c784d0f0ac1/2025.03.0/ubi9/enterprise/Dockerfile) +- [`2025.04.0-enterprise-ubi9`, `2025.04-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/enterprise/Dockerfile) - [`5.26.5-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.5-community`, `5.26-community`, `5-community`, `5.26.5-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.5`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/bullseye/community/Dockerfile) From f30a38ee2cc0124551ba262ea02fc6747f148b83 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 30 Apr 2025 10:38:10 -0700 Subject: [PATCH 2124/2686] Add "dind" to the "docker" image short description --- docker/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README-short.txt b/docker/README-short.txt index 0276c1dc275b..88557ec5a782 100644 --- a/docker/README-short.txt +++ b/docker/README-short.txt @@ -1 +1 @@ -Docker in Docker! +Docker in Docker! (commonly known as "dind") From 74ff82eb8baf1dae88ea66e4d8c4050a08ce397d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Apr 2025 11:12:55 -0700 Subject: [PATCH 2125/2686] Run update.sh --- haproxy/README.md | 4 +-- mongo/README.md | 72 +++++++++++++++++++++++------------------------ 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 81c68029a67e..09eddb831733 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev12`, `3.2-dev`, `3.2-dev12-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5eacb570033bf5a53b9de5e1d9ec477fdc81d64e/3.2/Dockerfile) +- [`3.2-dev13`, `3.2-dev`, `3.2-dev13-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/ae4952747884968e13bfdf87faf659fb882b14b0/3.2/Dockerfile) -- [`3.2-dev12-alpine`, `3.2-dev-alpine`, `3.2-dev12-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/5eacb570033bf5a53b9de5e1d9ec477fdc81d64e/3.2/alpine/Dockerfile) +- [`3.2-dev13-alpine`, `3.2-dev-alpine`, `3.2-dev13-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/ae4952747884968e13bfdf87faf659fb882b14b0/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/mongo/README.md b/mongo/README.md index f476c5c9b100..027058f25a81 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -40,29 +40,29 @@ WARNING: - [`8.0.8-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) -- [`7.0.19-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/Dockerfile) +- [`7.0.20-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) -- [`7.0.19-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.20-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.19-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.20-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.19-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) +- [`7.0.20-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) -- [`7.0.19-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.20-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.19-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.20-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) -- [`6.0.22-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/Dockerfile) +- [`6.0.23-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) -- [`6.0.22-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.23-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`6.0.22-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.23-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.22-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) +- [`6.0.23-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) -- [`6.0.22-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.23-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.22-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.23-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-1809/Dockerfile) ## Shared Tags @@ -84,41 +84,41 @@ WARNING: - [`8.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) -- `7.0.19`, `7.0`, `7`: +- `7.0.20`, `7.0`, `7`: - - [`7.0.19-jammy`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/Dockerfile) - - [`7.0.19-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.20-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) + - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.19-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.20-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.19-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.19-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.19-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/windowsservercore-1809/Dockerfile) + - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) -- `7.0.19-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.20-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.19-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.19-nanoserver-1809`](https://github.com/docker-library/mongo/blob/7e40a76407bb8fb252d4cbaeaf876bc3e853aee7/7.0/windows/nanoserver-1809/Dockerfile) + - [`7.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) -- `6.0.22`, `6.0`, `6`: +- `6.0.23`, `6.0`, `6`: - - [`6.0.22-jammy`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/Dockerfile) - - [`6.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.23-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) + - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.22-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.23-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.22-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/windowsservercore-1809/Dockerfile) + - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) -- `6.0.22-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.23-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.22-nanoserver-1809`](https://github.com/docker-library/mongo/blob/fa654e75340c261a29eefe230baa20052b88f38d/6.0/windows/nanoserver-1809/Dockerfile) + - [`6.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 6177bf7ce01787e57ecc107ebe5dbb809fd99a04 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 May 2025 10:09:47 -0700 Subject: [PATCH 2126/2686] Run update.sh --- nats/README.md | 44 ++++++++++++++++++++--------------------- wordpress/README.md | 48 ++++++++++++--------------------------------- 2 files changed, 34 insertions(+), 58 deletions(-) diff --git a/nats/README.md b/nats/README.md index 4f6ef88f73b2..d745c3ca5e59 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.2-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.2-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/alpine3.21/Dockerfile) +- [`2.11.3-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.3-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/alpine3.21/Dockerfile) -- [`2.11.2-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.2-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/scratch/Dockerfile) +- [`2.11.3-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.3-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/scratch/Dockerfile) -- [`2.11.2-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.3-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.11.2-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.3-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) -- [`2.10.28-alpine3.21`, `2.10-alpine3.21`, `2.10.28-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/alpine3.21/Dockerfile) +- [`2.10.29-alpine3.21`, `2.10-alpine3.21`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/alpine3.21/Dockerfile) -- [`2.10.28-scratch`, `2.10-scratch`, `2.10.28-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/scratch/Dockerfile) -- [`2.10.28-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.29-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.28-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.29-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.11.2`, `2.11`, `2`, `latest`: +- `2.11.3`, `2.11`, `2`, `latest`: - - [`2.11.2-scratch`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/scratch/Dockerfile) - - [`2.11.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.3-scratch`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/scratch/Dockerfile) + - [`2.11.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) -- `2.11.2-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.3-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.2-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.3-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/windowsservercore-1809/Dockerfile) -- `2.11.2-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.3-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.2-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) -- `2.10.28`, `2.10`: +- `2.10.29`, `2.10`: - - [`2.10.28-scratch`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/scratch/Dockerfile) - - [`2.10.28-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) -- `2.10.28-windowsservercore`, `2.10-windowsservercore`: +- `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.28-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.29-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/windowsservercore-1809/Dockerfile) -- `2.10.28-nanoserver`, `2.10-nanoserver`: +- `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.28-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/3c443abd2148069706713b4ea31826535b09f13a/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 44542e2f7bd5..276937877d19 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.0-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.0-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/apache/Dockerfile) +- [`6.8.1-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.1-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/apache/Dockerfile) -- [`6.8.0-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/fpm/Dockerfile) +- [`6.8.1-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/fpm/Dockerfile) -- [`6.8.0-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.1-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.0-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.0`, `6.8`, `6`, `latest`, `6.8.0-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.0-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/apache/Dockerfile) +- [`6.8.1-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.1`, `6.8`, `6`, `latest`, `6.8.1-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.1-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/apache/Dockerfile) -- [`6.8.0-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.0-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/fpm/Dockerfile) +- [`6.8.1-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.1-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/fpm/Dockerfile) -- [`6.8.0-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.0-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.1-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.1-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.0-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.0-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/apache/Dockerfile) +- [`6.8.1-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.1-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/apache/Dockerfile) -- [`6.8.0-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/fpm/Dockerfile) +- [`6.8.1-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/fpm/Dockerfile) -- [`6.8.0-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.1-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.0-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.0-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/apache/Dockerfile) +- [`6.8.1-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.1-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/apache/Dockerfile) -- [`6.8.0-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/fpm/Dockerfile) +- [`6.8.1-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/fpm/Dockerfile) -- [`6.8.0-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/0d16822127b1e9cd66892ad65dcf526a558b9284/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.1-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.1/alpine/Dockerfile) @@ -56,30 +56,6 @@ WARNING: - [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8.1-RC1-php8.1-apache`, `beta-6.8.1-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.1-RC1-php8.1`, `beta-6.8.1-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/apache/Dockerfile) - -- [`beta-6.8.1-RC1-php8.1-fpm`, `beta-6.8.1-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.8.1-RC1-php8.1-fpm-alpine`, `beta-6.8.1-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.8.1-RC1-apache`, `beta-6.8.1-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.1-RC1`, `beta-6.8.1`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.1-RC1-php8.2-apache`, `beta-6.8.1-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.1-RC1-php8.2`, `beta-6.8.1-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/apache/Dockerfile) - -- [`beta-6.8.1-RC1-fpm`, `beta-6.8.1-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.1-RC1-php8.2-fpm`, `beta-6.8.1-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.8.1-RC1-fpm-alpine`, `beta-6.8.1-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.1-RC1-php8.2-fpm-alpine`, `beta-6.8.1-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.8.1-RC1-php8.3-apache`, `beta-6.8.1-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.1-RC1-php8.3`, `beta-6.8.1-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/apache/Dockerfile) - -- [`beta-6.8.1-RC1-php8.3-fpm`, `beta-6.8.1-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.8.1-RC1-php8.3-fpm-alpine`, `beta-6.8.1-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.3/fpm-alpine/Dockerfile) - -- [`beta-6.8.1-RC1-php8.4-apache`, `beta-6.8.1-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.1-RC1-php8.4`, `beta-6.8.1-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/apache/Dockerfile) - -- [`beta-6.8.1-RC1-php8.4-fpm`, `beta-6.8.1-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/fpm/Dockerfile) - -- [`beta-6.8.1-RC1-php8.4-fpm-alpine`, `beta-6.8.1-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/4ae0a8487a0f41d7c1fe811c219b77183b559767/beta/php8.4/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From b4173fd415ef0400a63fb07aff8e08f4cd19edc8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 May 2025 14:09:57 -0700 Subject: [PATCH 2127/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 667f604f6417..96d9132c8099 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250414.0`](https://github.com/amazonlinux/container-images/blob/bdbf0417982cca662b4614c15d65d2c3014c4033/Dockerfile) +- [`2023`, `latest`, `2023.7.20250428.1`](https://github.com/amazonlinux/container-images/blob/8913d60448e6afb76886c1d50ae38d4fc6642512/Dockerfile) -- [`2`, `2.0.20250414.0`](https://github.com/amazonlinux/container-images/blob/35f42e6f95e02060e4957600610e5c7ecf7ecc2e/Dockerfile) +- [`2`, `2.0.20250428.0`](https://github.com/amazonlinux/container-images/blob/cc127d58207194b46ffb9fa9a478501faee11a81/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From de8a48ab39984aad6b7e9940cd7ceae62bfcd068 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 1 May 2025 16:10:09 -0700 Subject: [PATCH 2128/2686] Run update.sh --- mongo/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 027058f25a81..1bb430fdf060 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`8.0.8-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/Dockerfile) +- [`8.0.9-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) -- [`8.0.8-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.9-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.8-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.9-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.8-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) +- [`8.0.9-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) -- [`8.0.8-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.9-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.8-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) +- [`8.0.9-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) - [`7.0.20-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) @@ -66,23 +66,23 @@ WARNING: ## Shared Tags -- `8.0.8`, `8.0`, `8`, `latest`: +- `8.0.9`, `8.0`, `8`, `latest`: - - [`8.0.8-noble`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/Dockerfile) - - [`8.0.8-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.9-noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) + - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.8-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.9-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.8-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.8-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.8-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/windowsservercore-1809/Dockerfile) + - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) -- `8.0.8-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.9-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.8-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.8-nanoserver-1809`](https://github.com/docker-library/mongo/blob/cd3446a77487960ba7a01a22113c89a157e52aac/8.0/windows/nanoserver-1809/Dockerfile) + - [`8.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) - `7.0.20`, `7.0`, `7`: From 9ab8474a99876d9958cdcdc38e4d4629020e3e92 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 2 May 2025 10:09:51 -0700 Subject: [PATCH 2129/2686] Run update.sh --- arangodb/README.md | 2 +- clickhouse/README.md | 8 ++++---- ubuntu/README.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index a14ce24295df..e97e11114bdb 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.11`, `3.11.13`](https://github.com/arangodb/arangodb-docker/blob/52a0ac78f9cbae17665743bfc1e5b7c75329d268/alpine/3.11.13/Dockerfile) -- [`3.12`, `3.12.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/1c6635050356d0645ed247ee69f3736007a54e27/alpine/3.12.4/Dockerfile) +- [`3.12`, `3.12.4.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/351d27922fd2060deb86a76a26a99ff1bb2f3c12/alpine/3.12.4.3/Dockerfile) # Quick reference (cont.) diff --git a/clickhouse/README.md b/clickhouse/README.md index 02116b96f526..2149badc494f 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.4`, `25.4-jammy`, `25.4.1`, `25.4.1-jammy`, `25.4.1.2934`, `25.4.1.2934-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.4.1.2934/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.4`, `25.4-jammy`, `25.4.2`, `25.4.2-jammy`, `25.4.2.31`, `25.4.2.31-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.4.2.31/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.3.3.42/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.3.3.42/Dockerfile.ubuntu) -- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/25.2.2.39/Dockerfile.ubuntu) +- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.2.2.39/Dockerfile.ubuntu) -- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/887ac97b99841776d67267592c4cc96141a5d467/server/24.8.14.39/Dockerfile.ubuntu) +- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/24.8.14.39/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index f3af243ef1cf..3e5351bff2f4 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,9 +26,9 @@ WARNING: - [`20.04`, `focal-20250404`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20250404-fb4da095&id=fb4da0956290c3b216a35315510f66ca9bc4a460) -- [`22.04`, `jammy-20250404`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250404-ee417809&id=ee4178090f23aa4a0ef3958012c618588d0886a9) +- [`22.04`, `jammy-20250415.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250415.1-518e3d0d&id=518e3d0d114aa4029b5c8889611a4639a501f224) -- [`24.04`, `noble-20250404`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250404-febb8724&id=febb872444fbf6132e143cf3d1e5f0958c897cea) +- [`24.04`, `noble-20250415.1`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250415.1-7c6f2628&id=7c6f26288103e61ee50f3ac157815ba70bb3435d) - [`24.10`, `oracular-20250225`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250225-71a591b6&id=71a591b63518c11abbccce5c648ce23d9a55c63b) From ab567252d84a30060ef97a18ea057065b9846153 Mon Sep 17 00:00:00 2001 From: douginamug Date: Sat, 3 May 2025 15:21:07 +0300 Subject: [PATCH 2130/2686] remove obsolete 'version' attribute --- mediawiki/stack.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mediawiki/stack.yml b/mediawiki/stack.yml index 3406c3b857d3..a40e67cd634d 100644 --- a/mediawiki/stack.yml +++ b/mediawiki/stack.yml @@ -2,7 +2,6 @@ # # Access via "http://localhost:8080" # (or "http://$(docker-machine ip):8080" if using docker-machine) -version: '3' services: mediawiki: image: mediawiki From fc2afeac92ade71c422bbb4fc020600c98582835 Mon Sep 17 00:00:00 2001 From: douginamug Date: Sat, 3 May 2025 15:25:58 +0300 Subject: [PATCH 2131/2686] reposition databse key comment for clarity --- mediawiki/stack.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mediawiki/stack.yml b/mediawiki/stack.yml index a40e67cd634d..05c7e29b5123 100644 --- a/mediawiki/stack.yml +++ b/mediawiki/stack.yml @@ -16,8 +16,7 @@ services: # this yaml and uncomment the following line and use compose to restart # the mediawiki service # - ./LocalSettings.php:/var/www/html/LocalSettings.php - # This key also defines the name of the database host used during setup instead of the default "localhost" - database: + database: # <- This key defines the name of the database during setup image: mariadb restart: always environment: From 81dad65669263952796d47ccceaa711950e9bd65 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Sun, 4 May 2025 09:26:48 +0300 Subject: [PATCH 2132/2686] Adding AGPLv3 as a license option to Redis! The new license: http://redis.io/blog/agplv3/ Redis 8.0: http://redis.io/blog/redis-8-ga/ --- redis/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/license.md b/redis/license.md index 2422f9d132ce..1343cbf6abc7 100644 --- a/redis/license.md +++ b/redis/license.md @@ -1,3 +1,3 @@ -Starting on March 20th, 2024, Redis follows a dual-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/) or the [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/). Older versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause). +Starting with Redis 8.0, Redis follows a tri-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/), [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/), or the [GNU Affero General Public License v3 - AGPLv3](https://opensource.org/license/agpl-v3). Prior versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause)⁠, and Redis 7.4.x-7.8.x are licensed under the dual [RSALv2](https://redis.io/legal/rsalv2-agreement/) or [SSPLv1](https://redis.io/legal/server-side-public-license-sspl/) license. Please also view the [Redis License Overview](https://redis.io/legal/licenses/) and the [Redis Trademark Policy](https://redis.io/legal/trademark-policy/). From 73ee4122b2d0a24ee93779269fff96ad7c041cdb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 May 2025 11:10:01 -0700 Subject: [PATCH 2133/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++-------------------- archlinux/README.md | 6 +-- clearlinux/README.md | 2 +- fluentd/README.md | 4 +- ghost/README.md | 4 +- golang/README.md | 12 ++--- haproxy/README.md | 4 +- influxdb/README.md | 28 ++++++------ matomo/README.md | 6 +-- openjdk/README.md | 50 ++++++++++----------- redis/README.md | 10 ++--- rust/README.md | 12 ++--- sonarqube/README.md | 2 +- traefik/README.md | 16 +++---- 14 files changed, 126 insertions(+), 126 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 0a0870672ab5..d294dc471fcd 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u452-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.18`, `8u452-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.18/Dockerfile) -- [`8-alpine3.18-jre`, `8u452-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.18-jre`, `8u452-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.18/Dockerfile) -- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.21/Dockerfile) -- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2/Dockerfile) -- [`11-alpine3.18`, `11.0.27-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.18`, `11.0.27-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.18/Dockerfile) -- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.21/Dockerfile) -- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2/Dockerfile) -- [`17-alpine3.18`, `17.0.15-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.18/Dockerfile) +- [`17-alpine3.18`, `17.0.15-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.18/Dockerfile) -- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.21/Dockerfile) -- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/headful/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.7-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.18/Dockerfile) +- [`21-alpine3.18`, `21.0.7-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.18/Dockerfile) -- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.21/Dockerfile) -- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/al2023/Dockerfile) +- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/al2023/Dockerfile) -- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/headless/al2023/Dockerfile) +- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/headless/al2023/Dockerfile) -- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/headful/al2023/Dockerfile) +- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/headful/al2023/Dockerfile) -- [`24-alpine3.18`, `24.0.1-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.18/Dockerfile) +- [`24-alpine3.18`, `24.0.1-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.18/Dockerfile) -- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.19/Dockerfile) +- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.19/Dockerfile) -- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.20/Dockerfile) +- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.20/Dockerfile) -- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/ad49ae5d8f8d052939527c9ff28ebbcbc0d7bd44/24/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 061d21037a79..84d33d2c6b08 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.base) +- [`latest`, `base`, `base-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.base) -- [`base-devel`, `base-devel-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250427.0.341977`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/209e8524c779119dbdd6e05ab9a515e5da5074bd/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 638c69f4df25..eb153511e107 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/4fd100553e8f92173599dff2de33e480e8b6c507/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/01d2007806210d37a6e2e8e14c119e2ba88ec06e/Dockerfile) # Quick reference (cont.) diff --git a/fluentd/README.md b/fluentd/README.md index dc73338c2806..6863b916b618 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.7-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/295ba669ac33fc7c997cd2643351cef31c2845b7/v1.16/alpine/Dockerfile) +- [`v1.16.8-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/98155ec2dea1ae97a4cdedb8853e9be8ec7e7412/v1.16/alpine/Dockerfile) -- [`v1.16.7-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/295ba669ac33fc7c997cd2643351cef31c2845b7/v1.16/debian/Dockerfile) +- [`v1.16.8-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/98155ec2dea1ae97a4cdedb8853e9be8ec7e7412/v1.16/debian/Dockerfile) - [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 12e35262927f..867b440fb807 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.118.1`, `5.118`, `5`, `latest`](https://github.com/docker-library/ghost/blob/a74ecf04cd0f5be5543c2928918b2cf27b0a9bd1/5/debian/Dockerfile) +- [`5.119.0`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/78ab4fd19891a88675ec27c37cdc2e16929082e3/5/debian/Dockerfile) -- [`5.118.1-alpine`, `5.118-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/a74ecf04cd0f5be5543c2928918b2cf27b0a9bd1/5/alpine/Dockerfile) +- [`5.119.0-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/78ab4fd19891a88675ec27c37cdc2e16929082e3/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 7fd625049635..cd6ddd8e00b2 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250426-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bookworm/Dockerfile) +- [`tip-20250504-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bookworm/Dockerfile) -- [`tip-20250426-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bullseye/Dockerfile) +- [`tip-20250504-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bullseye/Dockerfile) -- [`tip-20250426-alpine3.21`, `tip-alpine3.21`, `tip-20250426-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/alpine3.21/Dockerfile) +- [`tip-20250504-alpine3.21`, `tip-alpine3.21`, `tip-20250504-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/alpine3.21/Dockerfile) -- [`tip-20250426-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/alpine3.20/Dockerfile) +- [`tip-20250504-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250426`, `tip`: +- `tip-20250504`, `tip`: - - [`tip-20250426-bookworm`](https://github.com/docker-library/golang/blob/e56ad4ba77dec7b1c469992ff5c3484913ac200d/tip/bookworm/Dockerfile) + - [`tip-20250504-bookworm`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 09eddb831733..5f780dd28167 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev13`, `3.2-dev`, `3.2-dev13-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/ae4952747884968e13bfdf87faf659fb882b14b0/3.2/Dockerfile) +- [`3.2-dev14`, `3.2-dev`, `3.2-dev14-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b0ab3d704bc22f8f92bb923ee3b5d79c91402a3e/3.2/Dockerfile) -- [`3.2-dev13-alpine`, `3.2-dev-alpine`, `3.2-dev13-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/ae4952747884968e13bfdf87faf659fb882b14b0/3.2/alpine/Dockerfile) +- [`3.2-dev14-alpine`, `3.2-dev-alpine`, `3.2-dev14-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/b0ab3d704bc22f8f92bb923ee3b5d79c91402a3e/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index a99d2ce5b958..e026644753a7 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.0-core`, `3.0.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/3.0-core/Dockerfile) +- [`3-core`, `3.0-core`, `3.0.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/3.0-core/Dockerfile) -- [`3-enterprise`, `3.0-enterprise`, `3.0.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/80885304f9feada026680f328d27d0a5b19a7a69/influxdb/3.0-enterprise/Dockerfile) +- [`3-enterprise`, `3.0-enterprise`, `3.0.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/3.0-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/matomo/README.md b/matomo/README.md index 2ebfc24d5a3f..d30c45357a91 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.1-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.1`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/apache/Dockerfile) +- [`5.3.2-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.2`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/apache/Dockerfile) -- [`5.3.1-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/fpm/Dockerfile) +- [`5.3.2-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/fpm/Dockerfile) -- [`5.3.1-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/494a2297053a6de6ddabbab6bac0e240860f6e1a/fpm-alpine/Dockerfile) +- [`5.3.2-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 0205242dfb18..d914d3fe21a1 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-20-jdk-oraclelinux9`, `25-ea-20-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-20-jdk-oracle`, `25-ea-20-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-21-jdk-oraclelinux9`, `25-ea-21-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-21-jdk-oracle`, `25-ea-21-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-20-jdk-oraclelinux8`, `25-ea-20-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-21-jdk-oraclelinux8`, `25-ea-21-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-20-jdk-bookworm`, `25-ea-20-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/bookworm/Dockerfile) +- [`25-ea-21-jdk-bookworm`, `25-ea-21-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/bookworm/Dockerfile) -- [`25-ea-20-jdk-slim-bookworm`, `25-ea-20-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-20-jdk-slim`, `25-ea-20-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-21-jdk-slim-bookworm`, `25-ea-21-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-21-jdk-slim`, `25-ea-21-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-20-jdk-bullseye`, `25-ea-20-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/bullseye/Dockerfile) +- [`25-ea-21-jdk-bullseye`, `25-ea-21-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/bullseye/Dockerfile) -- [`25-ea-20-jdk-slim-bullseye`, `25-ea-20-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-21-jdk-slim-bullseye`, `25-ea-21-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-20-jdk-windowsservercore-ltsc2025`, `25-ea-20-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-21-jdk-windowsservercore-ltsc2025`, `25-ea-21-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-20-jdk-windowsservercore-ltsc2022`, `25-ea-20-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-21-jdk-windowsservercore-ltsc2022`, `25-ea-21-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-20-jdk-windowsservercore-1809`, `25-ea-20-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-21-jdk-windowsservercore-1809`, `25-ea-21-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-20-jdk-nanoserver-ltsc2025`, `25-ea-20-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-21-jdk-nanoserver-ltsc2025`, `25-ea-21-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-20-jdk-nanoserver-ltsc2022`, `25-ea-20-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-21-jdk-nanoserver-ltsc2022`, `25-ea-21-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-20-jdk-nanoserver-1809`, `25-ea-20-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-21-jdk-nanoserver-1809`, `25-ea-21-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-20-jdk`, `25-ea-20`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-21-jdk`, `25-ea-21`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-20-jdk-windowsservercore`, `25-ea-20-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-21-jdk-windowsservercore`, `25-ea-21-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-20-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-20-jdk-nanoserver`, `25-ea-20-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-21-jdk-nanoserver`, `25-ea-21-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-20-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-20-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-20-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/949fa078a2bbcc76f7d4e27bbfa9ac5cccf41087/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-21-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-21-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index d3005090efed..391b3fde91b4 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0-rc1-alpine`, `8.0-rc1-alpine3.21`](https://github.com/redis/docker-library-redis/blob/f3cfc256e913880e5d5eefc794e220c6b0733f22/alpine/Dockerfile) +- [`8.0.0`, `8.0`, `8`, `8.0.0-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/7fc7e5625cd84b832db85561cb73b1bef78583fa/debian/Dockerfile) -- [`8.0-rc1`, `8.0-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/f3cfc256e913880e5d5eefc794e220c6b0733f22/debian/Dockerfile) +- [`8.0.0-alpine`, `8.0-alpine`, `8-alpine`, `8.0.0-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/7fc7e5625cd84b832db85561cb73b1bef78583fa/alpine/Dockerfile) -- [`7.4.3`, `7.4`, `7`, `latest`, `7.4.3-bookworm`, `7.4-bookworm`, `7-bookworm`, `bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/debian/Dockerfile) +- [`7.4.3`, `7.4`, `7`, `7.4.3-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/debian/Dockerfile) -- [`7.4.3-alpine`, `7.4-alpine`, `7-alpine`, `alpine`, `7.4.3-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/alpine/Dockerfile) +- [`7.4.3-alpine`, `7.4-alpine`, `7-alpine`, `7.4.3-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/alpine/Dockerfile) - [`7.2.8`, `7.2`, `7.2.8-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.2/debian/Dockerfile) @@ -139,7 +139,7 @@ To minimize image size, it's uncommon for additional related tools (such as `git # License -Starting on March 20th, 2024, Redis follows a dual-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/) or the [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/). Older versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause). +Starting with Redis 8.0, Redis follows a tri-licensing model with the choice of the [Redis Source Available License v2 - RSALv2](https://redis.io/legal/rsalv2-agreement/), [Server Side Public License v1 - SSPLv1](https://redis.io/legal/server-side-public-license-sspl/), or the [GNU Affero General Public License v3 - AGPLv3](https://opensource.org/license/agpl-v3). Prior versions of Redis (<=7.2.4) are licensed under [3-Clause BSD](https://opensource.org/license/bsd-3-clause)⁠, and Redis 7.4.x-7.8.x are licensed under the dual [RSALv2](https://redis.io/legal/rsalv2-agreement/) or [SSPLv1](https://redis.io/legal/server-side-public-license-sspl/) license. Please also view the [Redis License Overview](https://redis.io/legal/licenses/) and the [Redis Trademark Policy](https://redis.io/legal/trademark-policy/). diff --git a/rust/README.md b/rust/README.md index b0ae3dba2eeb..09d5f1043dc8 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.86-bullseye`, `1.86.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.86-bullseye`, `1.86.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.86-slim-bullseye`, `1.86.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.86-slim-bullseye`, `1.86.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.86-bookworm`, `1.86.0-bookworm`, `bookworm`, `1`, `1.86`, `1.86.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.86-bookworm`, `1.86.0-bookworm`, `bookworm`, `1`, `1.86`, `1.86.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.86-slim-bookworm`, `1.86.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.86-slim`, `1.86.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.86-slim-bookworm`, `1.86.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.86-slim`, `1.86.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.86-alpine3.20`, `1.86.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.86-alpine3.20`, `1.86.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.86-alpine3.21`, `1.86.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.86-alpine`, `1.86.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/db908c8cad6c5c2c205be2c0f1ec1145b344feea/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.86-alpine3.21`, `1.86.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.86-alpine`, `1.86.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 1609a660045c..03cc39f52609 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -40,7 +40,7 @@ WARNING: - [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/search/Dockerfile) -- [`25.4.0.105899-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/39f0aee32d36ed1d1fd5a83a417a625d16222ab4/community-build/Dockerfile) +- [`25.5.0.107428-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/56846598574ea57af773ec32bc4c36c25d40f34c/community-build/Dockerfile) - [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/community/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 22da4449c904..e2f3d5479edf 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.4.0-rc2-windowsservercore-ltsc2022`, `3.4.0-rc2-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.0-windowsservercore-ltsc2022`, `3.4.0-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.0-rc2-windowsservercore-1809`, `3.4.0-rc2-windowsservercore-1809`, `chaource-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/1809/Dockerfile) +- [`v3.4.0-windowsservercore-1809`, `3.4.0-windowsservercore-1809`, `v3.4-windowsservercore-1809`, `3.4-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `chaource-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/1809/Dockerfile) -- [`v3.4.0-rc2-nanoserver-ltsc2022`, `3.4.0-rc2-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.0-nanoserver-ltsc2022`, `3.4.0-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.0-rc2`, `3.4.0-rc2`, `chaource`](https://github.com/traefik/traefik-library-image/blob/48eccfc76cf8936cd5c4e07c756e6248e9999c6b/v3.4/alpine/Dockerfile) +- [`v3.4.0`, `3.4.0`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/alpine/Dockerfile) -- [`v3.3.6-windowsservercore-ltsc2022`, `3.3.6-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v3.3.7-windowsservercore-ltsc2022`, `3.3.7-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.6-windowsservercore-1809`, `3.3.6-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/1809/Dockerfile) +- [`v3.3.7-windowsservercore-1809`, `3.3.7-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/1809/Dockerfile) -- [`v3.3.6-nanoserver-ltsc2022`, `3.3.6-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.3.7-nanoserver-ltsc2022`, `3.3.7-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.6`, `3.3.6`, `v3.3`, `3.3`, `v3`, `3`, `saintnectaire`, `latest`](https://github.com/traefik/traefik-library-image/blob/acca84c01faba97c6a6bcfdde5d6cb8d0b92a9af/v3.3/alpine/Dockerfile) +- [`v3.3.7`, `3.3.7`, `v3.3`, `3.3`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/alpine/Dockerfile) - [`v2.11.24-windowsservercore-ltsc2022`, `2.11.24-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/servercore-ltsc2022/Dockerfile) From b984cfeeea0b0d32afce370fbf78f064bb7e241a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 May 2025 15:10:31 -0700 Subject: [PATCH 2134/2686] Run update.sh --- mediawiki/README.md | 6 ++---- telegraf/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index 994812a9e393..df8c95b91df7 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -118,7 +118,6 @@ Example `docker-compose.yml` for `mediawiki`: # # Access via "http://localhost:8080" # (or "http://$(docker-machine ip):8080" if using docker-machine) -version: '3' services: mediawiki: image: mediawiki @@ -133,8 +132,7 @@ services: # this yaml and uncomment the following line and use compose to restart # the mediawiki service # - ./LocalSettings.php:/var/www/html/LocalSettings.php - # This key also defines the name of the database host used during setup instead of the default "localhost" - database: + database: # <- This key defines the name of the database during setup image: mariadb restart: always environment: @@ -151,7 +149,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8fc63a1c6c985353af894baed5f7f4ae73c056f7/mediawiki/stack.yml) +[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/fc2afeac92ade71c422bbb4fc020600c98582835/mediawiki/stack.yml) Run `docker stack deploy -c stack.yml mediawiki` (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). diff --git a/telegraf/README.md b/telegraf/README.md index ae4f2cf1b318..e99cbd4fa836 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/451b8a66dce1a99cafab5e7a18b4fda056446a0e/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.34/alpine/Dockerfile) # Quick reference (cont.) From 15e3853d42c25d216945a8d60e85905256f5c379 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 5 May 2025 11:59:26 -0700 Subject: [PATCH 2135/2686] Convert all `stack.yml` to `compose.yaml` Docker Swarm Mode has been in severely declining usage and maintenance for years now. Meanwhile, Docker Compose has had quite a lot of changes (notably deprecating the `version:` field required by Swarm / forward compatibility). As a result, it no longer makes a ton of sense for us to prefer/suggest Swarm usages. This changes all references to be `compose.yaml` (the upstream-preferred canonical filename: https://github.com/compose-spec/compose-go/blob/9a9cc5d9c3453326bb8d506259bcfccd68af110b/cli/options.go#L384-L385) directly, leaving "swarm compatibility" as an exercise for the minority of readers who might still need/want it. Unfortunately, this also means we need to remove all the play-with-docker links (since it only supports stack deploy via URL arguments, not compose), but my experience with that service is that it hasn't been terribly performant for a while, so I don't think this is a huge loss. (There were also a few trailing references to the long-since-defunct Docker Machine project which have also been cleaned up.) --- .ci/check-ymlfmt.sh | 2 +- .template-helpers/compose.md | 6 ++--- .template-helpers/stack.md | 7 ------ README.md | 8 +++---- adminer/{stack.yml => compose.yaml} | 2 -- adminer/content.md | 4 ++-- backdrop/compose.yaml | 15 ++++++++++++ backdrop/content.md | 21 +---------------- bonita/{stack.yml => compose.yaml} | 0 bonita/content.md | 4 ++-- drupal/{stack.yml => compose.yaml} | 3 --- drupal/content.md | 4 ++-- elasticsearch/{stack.yml => compose.yaml} | 2 -- friendica/{stack.yml => compose.yaml} | 2 -- friendica/content.md | 2 -- geonetwork/{stack.yml => compose.yaml} | 4 +--- geonetwork/content.md | 6 ++--- ghost/{stack.yml => compose.yaml} | 2 -- ghost/content.md | 6 ++--- joomla/{stack.yml => compose.yaml} | 0 joomla/content.md | 4 ++-- kibana/{stack.yml => compose.yaml} | 3 --- krakend/content.md | 4 +--- mariadb/{stack.yml => compose.yaml} | 1 - mariadb/content.md | 6 ++--- mediawiki/{stack.yml => compose.yaml} | 1 - mediawiki/content.md | 4 ++-- mongo-express/content.md | 2 +- mongo/{stack.yml => compose.yaml} | 1 - mongo/content.md | 7 +++--- mysql/{stack.yml => compose.yaml} | 1 - mysql/content.md | 4 ++-- nextcloud/content.md | 12 ++++------ nginx/content.md | 4 ++-- odoo/content.md | 9 +++----- percona/{stack.yml => compose.yaml} | 1 - percona/content.md | 4 ++-- phpmyadmin/{stack.yml => compose.yaml} | 2 -- phpmyadmin/content.md | 2 +- postfixadmin/{stack.yml => compose.yaml} | 2 -- postfixadmin/content.md | 4 ++-- postgres/{stack.yml => compose.yaml} | 3 +-- postgres/content.md | 8 +++---- redmine/{stack.yml => compose.yaml} | 2 -- redmine/content.md | 4 ++-- ros/content.md | 22 ++++++++---------- storm/{stack.yml => compose.yaml} | 2 -- storm/content.md | 4 ++-- teamspeak/{stack.yml => compose.yaml} | 1 - teamspeak/content.md | 4 ++-- update.sh | 28 ++++------------------- wordpress/{stack.yml => compose.yaml} | 0 wordpress/content.md | 4 ++-- yourls/{stack.yml => compose.yaml} | 2 -- yourls/content.md | 4 ++-- zookeeper/{stack.yml => compose.yaml} | 2 -- zookeeper/content.md | 4 ++-- 57 files changed, 97 insertions(+), 175 deletions(-) delete mode 100644 .template-helpers/stack.md rename adminer/{stack.yml => compose.yaml} (93%) create mode 100644 backdrop/compose.yaml rename bonita/{stack.yml => compose.yaml} (100%) rename drupal/{stack.yml => compose.yaml} (90%) rename elasticsearch/{stack.yml => compose.yaml} (87%) rename friendica/{stack.yml => compose.yaml} (98%) rename geonetwork/{stack.yml => compose.yaml} (96%) rename ghost/{stack.yml => compose.yaml} (98%) rename joomla/{stack.yml => compose.yaml} (100%) rename kibana/{stack.yml => compose.yaml} (86%) rename mariadb/{stack.yml => compose.yaml} (94%) rename mediawiki/{stack.yml => compose.yaml} (93%) rename mongo/{stack.yml => compose.yaml} (97%) rename mysql/{stack.yml => compose.yaml} (93%) rename percona/{stack.yml => compose.yaml} (94%) rename phpmyadmin/{stack.yml => compose.yaml} (93%) rename postfixadmin/{stack.yml => compose.yaml} (97%) rename postgres/{stack.yml => compose.yaml} (86%) rename redmine/{stack.yml => compose.yaml} (95%) rename storm/{stack.yml => compose.yaml} (96%) rename teamspeak/{stack.yml => compose.yaml} (97%) rename wordpress/{stack.yml => compose.yaml} (100%) rename yourls/{stack.yml => compose.yaml} (95%) rename zookeeper/{stack.yml => compose.yaml} (97%) diff --git a/.ci/check-ymlfmt.sh b/.ci/check-ymlfmt.sh index 5315948d9a0b..161f4f54caae 100755 --- a/.ci/check-ymlfmt.sh +++ b/.ci/check-ymlfmt.sh @@ -3,7 +3,7 @@ set -Eeuo pipefail cd "$(dirname "$(readlink -f "$BASH_SOURCE")")/.." -files="$(find -name '*.yml' -not -path './.github/*')" +files="$(find '(' -name '*.yml' -o -name '*.yaml' ')' -not -path './.github/*')" need=() needdiff= for f in $files; do diff --git a/.template-helpers/compose.md b/.template-helpers/compose.md index 901a1af15216..ef16614cd709 100644 --- a/.template-helpers/compose.md +++ b/.template-helpers/compose.md @@ -1,5 +1,5 @@ -... via [`docker-compose`](https://github.com/docker/compose) +... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `%%REPO%%`: +Example `compose.yaml` for `%%REPO%%`: -%%COMPOSE-YML%% +%%COMPOSE-YAML%% diff --git a/.template-helpers/stack.md b/.template-helpers/stack.md deleted file mode 100644 index 2ceda127fe71..000000000000 --- a/.template-helpers/stack.md +++ /dev/null @@ -1,7 +0,0 @@ -... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) - -Example `docker-compose.yml` for `%%REPO%%`: - -%%STACK-YML%% - -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=%%STACK-URL%%) diff --git a/README.md b/README.md index 823336ccd389..9b6a68746611 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ All Markdown files here are run through [tianon's fork of `markdownfmt`](https:/ 8. [`maintainer.md`](#maintainermd) 9. [`metadata.json`](#metadatajson) 10. [`README-short.txt`](#readme-shorttxt) - 11. [`stack.yml`](#stackyml) + 11. [`compose.yaml`](#composeyaml) 5. [Files for main Docs repo](#files-for-main-docs-repo) 1. [`update.sh`](#updatesh) 2. [`markdownfmt.sh` and `ymlfmt.sh`](#markdownfmtsh-and-ymlfmtsh) @@ -148,11 +148,11 @@ This is the short description for the Docker Hub, limited to 100 characters in a > Go (golang) is a general purpose, higher-level, imperative programming language. -## `stack.yml` +## `compose.yaml` -This optional file contains a small, working [Compose file for Docker Swarm](https://docs.docker.com/compose/compose-file/compose-file-v3/) showing off how to use the image. To use the `stack.yml`, add `%%STACK%%` to the `content.md` and this will embed the YAML along with a link to directly try it in [Play with Docker](https://labs.play-with-docker.com/). +This optional file contains a small, working [Compose file](https://docs.docker.com/reference/compose-file/) showing off how to use the image. To use the `compose.yaml`, add `%%COMPOSE%%` to the `content.md` and this will embed the YAML. -The file must work via `docker stack deploy` since that is how Play with Docker will launch it, but it is helpful for users to try locally if it works for `docker-compose` as well. Other official images may be referenced within the YAML to demonstrate the functionality of the image, but no images external to the Docker Official Images program may be referenced. +Other official images may be referenced within the YAML to demonstrate the functionality of the image, but no images external to the Docker Official Images program may be referenced. # Files for main Docs repo diff --git a/adminer/stack.yml b/adminer/compose.yaml similarity index 93% rename from adminer/stack.yml rename to adminer/compose.yaml index 56aa33b59f26..8cff90103332 100644 --- a/adminer/stack.yml +++ b/adminer/compose.yaml @@ -1,7 +1,5 @@ # Use root/example as user/password credentials -version: '3.1' - services: adminer: diff --git a/adminer/content.md b/adminer/content.md index 8ff1691833a8..d38e5286a24a 100644 --- a/adminer/content.md +++ b/adminer/content.md @@ -30,9 +30,9 @@ Then point your web server to port 9000 of the container. Note: This exposes the FastCGI socket to the Internet. Make sure to add proper firewall rules or use a private Docker network instead to prevent a direct access. -### %%STACK%% +### %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ### Loading plugins diff --git a/backdrop/compose.yaml b/backdrop/compose.yaml new file mode 100644 index 000000000000..38ef8693cafe --- /dev/null +++ b/backdrop/compose.yaml @@ -0,0 +1,15 @@ +services: + backdrop: + image: backdrop + links: + - db:mysql + ports: + - 8080:80 + + db: + image: mysql + environment: + MYSQL_USER: backdrop + MYSQL_PASSWORD: backdrop + MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' + MYSQL_DATABASE: backdrop diff --git a/backdrop/content.md b/backdrop/content.md index 51dee9d11f7b..68cf928fa8a1 100644 --- a/backdrop/content.md +++ b/backdrop/content.md @@ -44,26 +44,7 @@ $ docker run --name some-%%REPO%% \ -d %%REPO%% ``` -## ... via [Docker Compose](https://github.com/docker/compose) - -Example `compose.yaml` for `%%REPO%%`: - -```yaml -%%REPO%%: - image: %%REPO%% - links: - - db:mysql - ports: - - 8080:80 - -db: - image: mysql - environment: - MYSQL_USER: %%REPO%% - MYSQL_PASSWORD: %%REPO%% - MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' - MYSQL_DATABASE: %%REPO%% -``` +## %%COMPOSE%% Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. diff --git a/bonita/stack.yml b/bonita/compose.yaml similarity index 100% rename from bonita/stack.yml rename to bonita/compose.yaml diff --git a/bonita/content.md b/bonita/content.md index e074fd7e72e9..a904c550af14 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -36,9 +36,9 @@ docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/16), which can be further adapted/customized to suit your needs. -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). - Replace `` with the one used in the licence generation command - leave double `$$` untouched diff --git a/drupal/stack.yml b/drupal/compose.yaml similarity index 90% rename from drupal/stack.yml rename to drupal/compose.yaml index df58e27bc020..ef31c50aeced 100644 --- a/drupal/stack.yml +++ b/drupal/compose.yaml @@ -1,7 +1,6 @@ # Drupal with PostgreSQL # # Access via "http://localhost:8080" -# (or "http://$(docker-machine ip):8080" if using docker-machine) # # During initial Drupal setup, # Database type: PostgreSQL @@ -10,8 +9,6 @@ # Database password: example # ADVANCED OPTIONS; Database host: postgres -version: '3.1' - services: drupal: diff --git a/drupal/content.md b/drupal/content.md index 271b69e2b31c..bb0b00b51fd4 100644 --- a/drupal/content.md +++ b/drupal/content.md @@ -98,9 +98,9 @@ $ docker run --name some-%%REPO%% --network some-network -d \ %%IMAGE%% ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` ## Adding additional libraries / extensions diff --git a/elasticsearch/stack.yml b/elasticsearch/compose.yaml similarity index 87% rename from elasticsearch/stack.yml rename to elasticsearch/compose.yaml index ea77eb1a355c..d0c50078f5d6 100644 --- a/elasticsearch/stack.yml +++ b/elasticsearch/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: elasticsearch: diff --git a/friendica/stack.yml b/friendica/compose.yaml similarity index 98% rename from friendica/stack.yml rename to friendica/compose.yaml index 8248c0f8a0b4..4f963ad2d553 100644 --- a/friendica/stack.yml +++ b/friendica/compose.yaml @@ -1,5 +1,3 @@ -version: '3.2' - services: db: image: mariadb diff --git a/friendica/content.md b/friendica/content.md index 321a87e73af7..4914cbbb5211 100644 --- a/friendica/content.md +++ b/friendica/content.md @@ -12,8 +12,6 @@ The `apache` tag contains a full Friendica installation including an apache web The second option is a `fpm` container. It is based on the [php-fpm](https://hub.docker.com/_/php/) image and runs a fastCGI-Process that serves your Friendica server. To use this image it must be combined with any Webserver that can proxy the http requests to the FastCGI-port of the container. -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=%%STACK-URL%%) (Admin-E-Mail: `root@friendica.local`) - ## Using the apache image You need at least one other mariadb/mysql-container to link it to Friendica. diff --git a/geonetwork/stack.yml b/geonetwork/compose.yaml similarity index 96% rename from geonetwork/stack.yml rename to geonetwork/compose.yaml index 6f05a5bbea9b..2f2a7a8142dc 100644 --- a/geonetwork/stack.yml +++ b/geonetwork/compose.yaml @@ -1,12 +1,10 @@ # GeoNetwork # -# Access via "http://localhost:8080/geonetwork" (or "http://$(docker-machine ip):8080/geonetwork" if using docker-machine) +# Access via "http://localhost:8080/geonetwork" # # Default user: admin # Default password: admin -version: '3.8' - volumes: geonetwork: esdata: diff --git a/geonetwork/content.md b/geonetwork/content.md index 752eccf8c670..e35547e5651f 100644 --- a/geonetwork/content.md +++ b/geonetwork/content.md @@ -118,7 +118,7 @@ GeoNetwork listens on port `8080`. If you want to access the container at the ho docker run --name some-%%REPO%% -d -p 8080:8080 %%IMAGE%% ``` -Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. Otherwise, replace `localhost` by the address of your docker machine. +Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. ### Set the data directory and H2 db file @@ -162,9 +162,9 @@ docker run --name some-%%REPO%% -d -p 8080:8080 -e DATA_DIR=/catalogue-data/data docker run --name some-%%REPO%% -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/%%REPO%%-docker:/catalogue-data %%IMAGE%% ``` -### %%STACK%% +### %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/geonetwork` or `http://host-ip:8080/geonetwork` (as appropriate). ### Default credentials diff --git a/ghost/stack.yml b/ghost/compose.yaml similarity index 98% rename from ghost/stack.yml rename to ghost/compose.yaml index fcf777580beb..4fd4097e35ac 100644 --- a/ghost/stack.yml +++ b/ghost/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: ghost: diff --git a/ghost/content.md b/ghost/content.md index f47d8dcb944d..7c20e087015e 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -68,7 +68,7 @@ All Ghost configuration parameters (such as `url`) can be specified via environm $ docker run -d --name some-ghost -e NODE_ENV=development -e url=http://some-ghost.example.com %%IMAGE%% ``` -(There are further configuration examples in the `stack.yml` listed below.) +(There are further configuration examples in the `compose.yaml` listed below.) ## What is the Node.js version? @@ -89,6 +89,6 @@ To run Ghost for production you'll also need to be running with MySQL 8, https, The following example demonstrates some of the necessary configuration for running with MySQL. For more detail, see [Ghost's "Configuration options" documentation](https://ghost.org/docs/config/#configuration-options). -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). diff --git a/joomla/stack.yml b/joomla/compose.yaml similarity index 100% rename from joomla/stack.yml rename to joomla/compose.yaml diff --git a/joomla/content.md b/joomla/content.md index 807947500643..42e6dedd101d 100644 --- a/joomla/content.md +++ b/joomla/content.md @@ -50,9 +50,9 @@ $ docker run --name some-%%REPO%% --network some-network -e JOOMLA_DB_HOST=10.1. -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d %%IMAGE%% ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/kibana/stack.yml b/kibana/compose.yaml similarity index 86% rename from kibana/stack.yml rename to kibana/compose.yaml index a1139cb266e9..6adbea8faf12 100644 --- a/kibana/stack.yml +++ b/kibana/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: kibana: @@ -9,4 +7,3 @@ services: elasticsearch: image: elasticsearch - diff --git a/krakend/content.md b/krakend/content.md index 0dedadd7c26d..37ac86b64299 100644 --- a/krakend/content.md +++ b/krakend/content.md @@ -108,10 +108,9 @@ The configuration above assumes you have a folder structure like the following: ### Docker Compose example -Finally, a simple `docker-compose` file to start KrakenD with your API would be: +Finally, a simple `docker compose` file to start KrakenD with your API would be: ```yaml -version: "3" services: krakend: image: %%IMAGE%%: @@ -124,7 +123,6 @@ services: And another one that uses the flexible configuration and a custom template filename (`my_krakend.tmpl`) on each start: ```yaml -version: "3" services: krakend: image: %%IMAGE%%: diff --git a/mariadb/stack.yml b/mariadb/compose.yaml similarity index 94% rename from mariadb/stack.yml rename to mariadb/compose.yaml index d5b571712ddb..25409b7e28ae 100644 --- a/mariadb/stack.yml +++ b/mariadb/compose.yaml @@ -1,5 +1,4 @@ # Use root/example as user/password credentials -version: '3.1' services: diff --git a/mariadb/content.md b/mariadb/content.md index 54c14d98f31d..a80e3cfe5beb 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -34,9 +34,9 @@ $ docker run --detach --name some-%%REPO%% --env MARIADB_RANDOM_ROOT_PASSWORD=1 ... where the container logs will contain the generated root password. -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ### Start a `%%IMAGE%%` server instance with user, password and database @@ -208,7 +208,7 @@ The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/ow ## No connections until MariaDB init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker compose`, which start several containers simultaneously. ## Health/Liveness/Readiness Checking diff --git a/mediawiki/stack.yml b/mediawiki/compose.yaml similarity index 93% rename from mediawiki/stack.yml rename to mediawiki/compose.yaml index 05c7e29b5123..7df22965b1d2 100644 --- a/mediawiki/stack.yml +++ b/mediawiki/compose.yaml @@ -1,7 +1,6 @@ # MediaWiki with MariaDB # # Access via "http://localhost:8080" -# (or "http://$(docker-machine ip):8080" if using docker-machine) services: mediawiki: image: mediawiki diff --git a/mediawiki/content.md b/mediawiki/content.md index e5fe6fccfcdb..5242a25474b7 100644 --- a/mediawiki/content.md +++ b/mediawiki/content.md @@ -46,9 +46,9 @@ The paths `/var/www/html/images` and `/var/www/html/LocalSettings.php` are thing $ docker run --rm %%IMAGE%% tar -cC /var/www/html/sites . | tar -xC /path/on/host/sites ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/mongo-express/content.md b/mongo-express/content.md index 13b6df497b75..566d512a74c9 100644 --- a/mongo-express/content.md +++ b/mongo-express/content.md @@ -64,4 +64,4 @@ $ docker run -it --rm \ %%IMAGE%% ``` -This example links to a container name typical of `docker-compose`, changes the editor's color theme, and enables basic authentication. +This example links to a container name typical of `docker compose`, changes the editor's color theme, and enables basic authentication. diff --git a/mongo/stack.yml b/mongo/compose.yaml similarity index 97% rename from mongo/stack.yml rename to mongo/compose.yaml index 36c186bbee5c..a49a3d6ff44f 100644 --- a/mongo/stack.yml +++ b/mongo/compose.yaml @@ -1,5 +1,4 @@ # Use root/example as user/password credentials -version: '3.1' services: diff --git a/mongo/content.md b/mongo/content.md index b7d39f4b3965..0bec7ae13aed 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -32,9 +32,9 @@ $ docker run -it --network some-network --rm %%IMAGE%% mongosh --host some-%%REP ... where `some-%%REPO%%` is the name of your original `mongo` container. -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8081`, `http://localhost:8081`, or `http://host-ip:8081` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8081` or `http://host-ip:8081` (as appropriate). ## Container shell access and viewing MongoDB logs @@ -62,10 +62,9 @@ Most MongoDB configuration can be set through flags to `mongod`. The entrypoint $ docker run --name some-%%REPO%% -d %%IMAGE%% --serviceExecutor adaptive ``` -And here is the same with a `docker-compose.yml` file +And here is the same with a `compose.yaml` file ```yaml -version: '3.1' services: mongo: image: %%IMAGE%% diff --git a/mysql/stack.yml b/mysql/compose.yaml similarity index 93% rename from mysql/stack.yml rename to mysql/compose.yaml index bdb35f606ec5..28abad846d6d 100644 --- a/mysql/stack.yml +++ b/mysql/compose.yaml @@ -1,5 +1,4 @@ # Use root/example as user/password credentials -version: '3.1' services: diff --git a/mysql/content.md b/mysql/content.md index cfac0ff4d618..0e24f5399fd6 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -36,9 +36,9 @@ $ docker run -it --rm %%IMAGE%% mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Container shell access and viewing MySQL logs diff --git a/nextcloud/content.md b/nextcloud/content.md index b83b1347253e..a290b3e39fa7 100644 --- a/nextcloud/content.md +++ b/nextcloud/content.md @@ -32,11 +32,11 @@ To use the fpm image, you need an additional web server, such as [nginx](https:/ $ docker run -d %%IMAGE%%:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [Docker Compose section](#running-this-image-with-docker-compose). +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the Docker Compose section. ## Using an external database -By default, this container uses SQLite for data storage but the Nextcloud setup wizard (appears on first run) allows connecting to an existing MySQL/MariaDB or PostgreSQL database. You can also link a database container, e. g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup. More info is in the docker-compose section. +By default, this container uses SQLite for data storage but the Nextcloud setup wizard (appears on first run) allows connecting to an existing MySQL/MariaDB or PostgreSQL database. You can also link a database container, e. g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup. More info is in the Docker Compose section. ## Persistent data @@ -106,10 +106,10 @@ To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/ $ docker exec --user www-data CONTAINER_ID php occ ``` -or for docker-compose: +or for `docker compose`: ```console -$ docker-compose exec --user www-data app php occ +$ docker compose exec --user www-data app php occ ``` ## Auto configuration via environment variables @@ -157,7 +157,7 @@ You might want to make sure the htaccess is up to date after each container upda - `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. -If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters: +If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your Compose file. To inform Nextcloud about the Redis container, pass in the following parameters: - `REDIS_HOST` (not set by default) Name of Redis container - `REDIS_HOST_PORT` (default: `6379`) Optional port for Redis, only use for external Redis servers that run on non-standard ports. @@ -381,8 +381,6 @@ Then run `docker compose up -d`, now you can access Nextcloud at http://localhos As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: ```yaml -version: '3.2' - services: db: image: postgres diff --git a/nginx/content.md b/nginx/content.md index f933a5baab84..65fb24e8c90e 100644 --- a/nginx/content.md +++ b/nginx/content.md @@ -75,7 +75,7 @@ $ docker run --name my-custom-nginx-container -d custom-nginx Out-of-the-box, %%IMAGE%% doesn't support environment variables inside most configuration blocks. But this image has a function, which will extract environment variables before %%IMAGE%% starts. -Here is an example using docker-compose.yml: +Here is an example using `compose.yaml`: ```yaml web: @@ -131,7 +131,7 @@ Images since version 1.9.8 come with `nginx-debug` binary that produces verbose $ docker run --name my-nginx -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d %%IMAGE%% nginx-debug -g 'daemon off;' ``` -Similar configuration in docker-compose.yml may look like this: +Similar configuration in `compose.yaml` may look like this: ```yaml web: diff --git a/odoo/content.md b/odoo/content.md index 8e45e2c3f519..db07cef10dd8 100644 --- a/odoo/content.md +++ b/odoo/content.md @@ -101,10 +101,9 @@ Tweak these environment variables to easily connect to a postgres server: ## Docker Compose examples -The simplest `docker-compose.yml` file would be: +The simplest `compose.yaml` file would be: ```yml -version: '3.1' services: web: image: %%IMAGE%%:17.0 @@ -123,7 +122,6 @@ services: If the default postgres credentials does not suit you, tweak the environment variables: ```yml -version: '3.1' services: web: image: %%IMAGE%%:17.0 @@ -151,7 +149,6 @@ Here's a last example showing you how to - use a `secrets` file named `odoo_pg_pass` that contains the postgreql password shared by both services ```yml -version: '3.1' services: web: image: %%IMAGE%%:17.0 @@ -187,10 +184,10 @@ secrets: file: odoo_pg_pass ``` -To start your Odoo instance, go in the directory of the `docker-compose.yml` file you created from the previous examples and type: +To start your Odoo instance, go in the directory of the `compose.yaml` file you created from the previous examples and type: ```console -docker-compose up -d +docker compose up -d ``` # How to upgrade this image diff --git a/percona/stack.yml b/percona/compose.yaml similarity index 94% rename from percona/stack.yml rename to percona/compose.yaml index 9390e2f93a4a..60a9ed77ba10 100644 --- a/percona/stack.yml +++ b/percona/compose.yaml @@ -1,5 +1,4 @@ # Use root/example as user/password credentials -version: '3.1' services: diff --git a/percona/content.md b/percona/content.md index b85f8afe2696..9e02530ce86c 100644 --- a/percona/content.md +++ b/percona/content.md @@ -38,9 +38,9 @@ $ docker run -it --rm %%IMAGE%% mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Container shell access and viewing MySQL logs diff --git a/phpmyadmin/stack.yml b/phpmyadmin/compose.yaml similarity index 93% rename from phpmyadmin/stack.yml rename to phpmyadmin/compose.yaml index b3110239483d..56a7674306bb 100644 --- a/phpmyadmin/stack.yml +++ b/phpmyadmin/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: db: image: mariadb:10.11 diff --git a/phpmyadmin/content.md b/phpmyadmin/content.md index b3b15f25acbb..3b7c4f0f8282 100644 --- a/phpmyadmin/content.md +++ b/phpmyadmin/content.md @@ -66,7 +66,7 @@ docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 %%IMAGE%% This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. -%%STACK%% +%%COMPOSE%% ## Adding Custom Configuration diff --git a/postfixadmin/stack.yml b/postfixadmin/compose.yaml similarity index 97% rename from postfixadmin/stack.yml rename to postfixadmin/compose.yaml index cef4054f9ee1..2a8667ba534a 100644 --- a/postfixadmin/stack.yml +++ b/postfixadmin/compose.yaml @@ -1,5 +1,3 @@ -version: '3' - services: db: image: mysql:8.0 diff --git a/postfixadmin/content.md b/postfixadmin/content.md index 883d589a83b5..fcf1fdf93e96 100644 --- a/postfixadmin/content.md +++ b/postfixadmin/content.md @@ -54,6 +54,6 @@ $ docker run -v /local/path/to/config.local.php:/var/www/html/config.local.php \ %%IMAGE%% ``` -%%STACK%% +%%COMPOSE%% -Run docker stack deploy -c stack.yml %%REPO%% (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). diff --git a/postgres/stack.yml b/postgres/compose.yaml similarity index 86% rename from postgres/stack.yml rename to postgres/compose.yaml index 94f8c78c1ff6..47ca8a68a513 100644 --- a/postgres/stack.yml +++ b/postgres/compose.yaml @@ -1,12 +1,11 @@ # Use postgres/example user/password credentials -version: '3.9' services: db: image: postgres restart: always - # set shared memory limit when using docker-compose + # set shared memory limit when using docker compose shm_size: 128mb # or set shared memory limit when deploy via swarm stack #volumes: diff --git a/postgres/content.md b/postgres/content.md index a6bf4347489f..966dea20d6f3 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -36,9 +36,9 @@ postgres=# SELECT 1; (1 row) ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). # How to extend this image @@ -241,9 +241,9 @@ The three easiest ways to get around this: # Caveats -If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker-compose`, that start several containers simultaneously. +If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker compose`, that start several containers simultaneously. -Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). +Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). ## Where to Store Data diff --git a/redmine/stack.yml b/redmine/compose.yaml similarity index 95% rename from redmine/stack.yml rename to redmine/compose.yaml index 0fc04fe7a28f..64ed42bb0603 100644 --- a/redmine/stack.yml +++ b/redmine/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: redmine: diff --git a/redmine/content.md b/redmine/content.md index d00b5ede395c..2d49551e9d5d 100644 --- a/redmine/content.md +++ b/redmine/content.md @@ -42,9 +42,9 @@ Running Redmine with a database server is the recommended way. $ docker run -d --name some-%%REPO%% --network some-network -e REDMINE_DB_POSTGRES=some-postgres -e REDMINE_DB_USERNAME=redmine -e REDMINE_DB_PASSWORD=secret %%IMAGE%% ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Accessing the Application diff --git a/ros/content.md b/ros/content.md index e341c258164c..86033fbbfda8 100644 --- a/ros/content.md +++ b/ros/content.md @@ -157,13 +157,11 @@ Alternatively, more permissive network settings can be used to share all host ne ### Docker Compose -In this example we'll demonstrate using [`docker-compose`](https://docs.docker.com/compose/) to spawn a pair of message publisher and subscriber nodes in separate containers connected through shared software defined network. +In this example we'll demonstrate using [`docker compose`](https://docs.docker.com/compose/) to spawn a pair of message publisher and subscriber nodes in separate containers connected through shared software defined network. -> Create the directory `~/ros_demos` and add the first `Dockerfile` example from above. In the same directory, also create file `docker-compose.yml` with the following that runs a C++ publisher with a Python subscriber: +> Create the directory `~/ros_demos` and add the first `Dockerfile` example from above. In the same directory, also create file `compose.yaml` with the following that runs a C++ publisher with a Python subscriber: ```yaml -version: '3' - services: talker: build: ./ @@ -176,10 +174,10 @@ services: command: ros2 run demo_nodes_py listener ``` -> Use docker-compose inside the same directory to launch our ROS nodes. Given the containers created derive from the same docker compose project, they will coexist on shared project network: +> Use `docker compose` inside the same directory to launch our ROS nodes. Given the containers created derive from the same docker compose project, they will coexist on shared project network: ```console -$ docker-compose up -d +$ docker compose up -d ``` > Notice that a new network named `ros_demos_default` has been created, as can be shown further with: @@ -191,17 +189,17 @@ $ docker network inspect ros_demos_default > We can monitor the logged output of each container, such as the listener node like so: ```console -$ docker-compose logs listener +$ docker compose logs listener ``` -> Finally, we can stop and remove all the relevant containers using docker-compose from the same directory: +> Finally, we can stop and remove all the relevant containers using `docker compose` from the same directory: ```console -$ docker-compose stop -$ docker-compose rm +$ docker compose stop +$ docker compose rm ``` -> Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker-compose down`. +> Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker compose down`. ### ROS 1 Bridge @@ -223,8 +221,6 @@ CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. ```yaml -version: '3' - services: ros1: build: diff --git a/storm/stack.yml b/storm/compose.yaml similarity index 96% rename from storm/stack.yml rename to storm/compose.yaml index a1da43b6efa6..e2cd56c82afb 100644 --- a/storm/stack.yml +++ b/storm/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: zookeeper: image: zookeeper diff --git a/storm/content.md b/storm/content.md index 1b8af1af3a72..345ad75bf345 100644 --- a/storm/content.md +++ b/storm/content.md @@ -52,9 +52,9 @@ $ docker run -it -v $(pwd)/topology.jar:/topology.jar %%IMAGE%% storm jar /topol $ docker run -d -p 8080:8080 --restart always --name ui --link some-nimbus:nimbus %%IMAGE%% storm ui ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml storm` (or `docker compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). +Run `docker compose up` and wait for it to initialize completely. The Nimbus will be available at `http://localhost:6627` or `http://host-ip:6627` (as appropriate). ## Configuration diff --git a/teamspeak/stack.yml b/teamspeak/compose.yaml similarity index 97% rename from teamspeak/stack.yml rename to teamspeak/compose.yaml index 5b1287a6eb5b..930cfdf7a50a 100644 --- a/teamspeak/stack.yml +++ b/teamspeak/compose.yaml @@ -1,4 +1,3 @@ -version: '3.1' services: teamspeak: image: teamspeak diff --git a/teamspeak/content.md b/teamspeak/content.md index 067b2a57f50d..f7b372c185bc 100644 --- a/teamspeak/content.md +++ b/teamspeak/content.md @@ -36,9 +36,9 @@ The TeamSpeak server log is available through Docker's container log: $ docker logs some-%%REPO%% ``` -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `swarm-ip:9987`, `localhost:9987`, or `host-ip:9987` (as appropriate) with a TeamSpeak client. +Run `docker compose up`, wait for it to initialize completely, and visit `localhost:9987` or `host-ip:9987` (as appropriate) with a TeamSpeak client. ## Environment Variables diff --git a/update.sh b/update.sh index 60ff3ad30ae0..ce2608fe8774 100755 --- a/update.sh +++ b/update.sh @@ -86,22 +86,11 @@ for image in "${images[@]}"; do logo="![logo]($logoUrl)" fi - stack= - stackYml= - stackUrl= - if [ -f "$repo/stack.yml" ]; then - stack="$(cat "$repo/stack.md" 2>/dev/null || cat "$helperDir/stack.md")" - stackYml=$'```yaml\n'"$(cat "$repo/stack.yml")"$'\n```' - stackCommit="$(git log -1 --format='format:%H' -- "$repo/stack.yml" 2>/dev/null || true)" - [ "$stackCommit" ] || stackCommit='master' - stackUrl="https://raw.githubusercontent.com/docker-library/docs/$stackCommit/$repo/stack.yml" - fi - compose= - composeYml= - if [ -f "$repo/docker-compose.yml" ]; then + composeYaml= + if [ -f "$repo/compose.yaml" ]; then compose="$(cat "$repo/compose.md" 2>/dev/null || cat "$helperDir/compose.md")" - composeYml=$'```yaml\n'"$(cat "$repo/docker-compose.yml")"$'\n```' + composeYaml=$'```yaml\n'"$(cat "$repo/compose.yaml")"$'\n```' fi deprecated= @@ -167,17 +156,10 @@ for image in "${images[@]}"; do echo " LOGO => $logo" replace_field "$targetFile" 'LOGO' "$logo" '\s*' - echo ' STACK => '"$repo"'/stack.md' - replace_field "$targetFile" 'STACK' "$stack" - echo ' STACK-YML => '"$repo"'/stack.yml' - replace_field "$targetFile" 'STACK-YML' "$stackYml" - echo ' STACK-URL => '"$repo"'/stack.yml' - replace_field "$targetFile" 'STACK-URL' "$stackUrl" - echo ' COMPOSE => '"$repo"'/compose.md' replace_field "$targetFile" 'COMPOSE' "$compose" - echo ' COMPOSE-YML => '"$repo"'/docker-compose.yml' - replace_field "$targetFile" 'COMPOSE-YML' "$composeYml" + echo ' COMPOSE-YAML => '"$repo"'/compose.yaml' + replace_field "$targetFile" 'COMPOSE-YAML' "$composeYaml" echo ' LICENSE => '"$repo"'/license.md' replace_field "$targetFile" 'LICENSE' "$license" diff --git a/wordpress/stack.yml b/wordpress/compose.yaml similarity index 100% rename from wordpress/stack.yml rename to wordpress/compose.yaml diff --git a/wordpress/content.md b/wordpress/content.md index c4e5870b474e..2559aad5836e 100644 --- a/wordpress/content.md +++ b/wordpress/content.md @@ -47,9 +47,9 @@ $ docker run --name some-%%REPO%% -e WORDPRESS_DB_PASSWORD_FILE=/run/secrets/mys Currently, this is supported for `WORDPRESS_DB_HOST`, `WORDPRESS_DB_USER`, `WORDPRESS_DB_PASSWORD`, `WORDPRESS_DB_NAME`, `WORDPRESS_AUTH_KEY`, `WORDPRESS_SECURE_AUTH_KEY`, `WORDPRESS_LOGGED_IN_KEY`, `WORDPRESS_NONCE_KEY`, `WORDPRESS_AUTH_SALT`, `WORDPRESS_SECURE_AUTH_SALT`, `WORDPRESS_LOGGED_IN_SALT`, `WORDPRESS_NONCE_SALT`, `WORDPRESS_TABLE_PREFIX`, and `WORDPRESS_DEBUG`. -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/yourls/stack.yml b/yourls/compose.yaml similarity index 95% rename from yourls/stack.yml rename to yourls/compose.yaml index 2c467f98effd..87af36411f98 100644 --- a/yourls/stack.yml +++ b/yourls/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: yourls: diff --git a/yourls/content.md b/yourls/content.md index 8a0b18ab1e00..13bec42f52b5 100644 --- a/yourls/content.md +++ b/yourls/content.md @@ -92,9 +92,9 @@ $ docker run --name some-%%REPO%% -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`. -## %%STACK%% +## %%COMPOSE%% -Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/admin/`, `http://localhost:8080/admin/`, or `http://:8080/admin/` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/` or `http://:8080/admin/` (as appropriate). ## Adding additional libraries / extensions diff --git a/zookeeper/stack.yml b/zookeeper/compose.yaml similarity index 97% rename from zookeeper/stack.yml rename to zookeeper/compose.yaml index cec88f0dce55..9cbbeb2085ab 100644 --- a/zookeeper/stack.yml +++ b/zookeeper/compose.yaml @@ -1,5 +1,3 @@ -version: '3.1' - services: zoo1: image: zookeeper diff --git a/zookeeper/content.md b/zookeeper/content.md index 67fce24545da..c63bfee4b82c 100644 --- a/zookeeper/content.md +++ b/zookeeper/content.md @@ -28,9 +28,9 @@ $ docker run --name some-app --link some-zookeeper:zookeeper -d application-that $ docker run -it --rm --link some-zookeeper:zookeeper %%IMAGE%% zkCli.sh -server zookeeper ``` -## %%STACK%% +## %%COMPOSE%% -This will start Zookeeper in [replicated mode](https://zookeeper.apache.org/doc/current/zookeeperStarted.html#sc_RunningReplicatedZooKeeper). Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`) and wait for it to initialize completely. Ports `2181-2183` will be exposed. +This will start Zookeeper in [replicated mode](https://zookeeper.apache.org/doc/current/zookeeperStarted.html#sc_RunningReplicatedZooKeeper). Run `docker compose up` and wait for it to initialize completely. Ports `2181-2183` will be exposed. > Please be aware that setting up multiple servers on a single machine will not create any redundancy. If something were to happen which caused the machine to die, all of the zookeeper servers would be offline. Full redundancy requires that each server have its own machine. It must be a completely separate physical server. Multiple virtual machines on the same physical host are still vulnerable to the complete failure of that host. From 0db157237428035616feb561e7ace73dc36873f2 Mon Sep 17 00:00:00 2001 From: Felipe Augusto <14238257+felipementel@users.noreply.github.com> Date: Thu, 6 Mar 2025 12:13:37 -0300 Subject: [PATCH 2136/2686] Update mariadb with various fixes --- mariadb/content.md | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/mariadb/content.md b/mariadb/content.md index a80e3cfe5beb..c66738c9692d 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -12,24 +12,34 @@ The %%IMAGE%% has a number of tags, and of note is `latest`, as the latest stabl ## Running the container +### Configuration + +#### Port binding + +By default, the database running within the container will listen on port 3306. You can expose the container port 3306 to the host port 3306 with the `-p 3306:3306` argument to `docker run`, like the command below: + +```console +$ docker run --name some-%%REPO%% -p 3306:3306 %%IMAGE%%:latest +``` + ### Starting using a minimal configuration The environment variables required to use this image involves the setting of the root user password: ```console -$ docker run --detach --name some-%%REPO%% --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +$ docker run --detach --name some-%%REPO%% --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest ``` or: ```console -$ docker run --detach --name some-%%REPO%% --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 %%IMAGE%%:latest +$ docker run --detach --name some-%%REPO%% --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 %%IMAGE%%:latest ``` or: ```console -$ docker run --detach --name some-%%REPO%% --env MARIADB_RANDOM_ROOT_PASSWORD=1 %%IMAGE%%:latest +$ docker run --detach --name some-%%REPO%% --env MARIADB_RANDOM_ROOT_PASSWORD=1 %%IMAGE%%:latest ``` ... where the container logs will contain the generated root password. @@ -43,7 +53,7 @@ Run `docker compose up`, wait for it to initialize completely, and visit `http:/ Starting a MariaDB instance with a user, password, and a database: ```console -$ docker run --detach --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +$ docker run --detach --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest ``` ### Start a `%%IMAGE%%` server instance in a network @@ -52,8 +62,8 @@ As applications talk to MariaDB, MariaDB needs to start in the same network as t ```console $ docker network create some-network -$ docker run --detach --network some-network --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest -$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-%%REPO%% --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application +$ docker run --detach --network some-network --name some-%%REPO%% --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw %%IMAGE%%:latest +$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-%%REPO%% --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application ``` ... where `some-network` is a newly created network (other than `bridge` as the default network), `some-%%REPO%%` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. `some-application` and then environment variable `APP_DB_HOST`, `APP_DB_USER` and `APP_DB_PASSWD` are the application's configuration for its database connection. @@ -63,7 +73,7 @@ $ docker run --detach --network some-network --name some-application --env APP_D The following command starts another `%%IMAGE%%` container instance and runs the `mariadb` command line client against your original `%%IMAGE%%` container, allowing you to execute SQL statements against your database instance: ```console -$ docker run -it --network some-network --rm %%IMAGE%% mariadb -hsome-%%REPO%% -uexample-user -p +$ docker run -it --network some-network --rm %%IMAGE%% mariadb -h some-%%REPO%% -u example-user ``` ... where `some-%%REPO%%` is the name of your original `%%IMAGE%%` container (connected to the `some-network` Docker network). From 610abd9affd22f9a5040109d2fecdaf3255e55fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 May 2025 16:10:01 -0700 Subject: [PATCH 2137/2686] Run update.sh --- adminer/README.md | 10 +++------- backdrop/README.md | 31 ++++++++++++++++--------------- bonita/README.md | 8 +++----- drupal/README.md | 11 +++-------- friendica/README.md | 2 -- geonetwork/README.md | 14 +++++--------- ghost/README.md | 12 ++++-------- joomla/README.md | 8 +++----- krakend/README.md | 4 +--- mariadb/README.md | 11 ++++------- mediawiki/README.md | 9 +++------ mongo-express/README.md | 2 +- mongo/README.md | 12 ++++-------- mysql/README.md | 9 +++------ nextcloud/README.md | 12 +++++------- nginx/README.md | 4 ++-- odoo/README.md | 9 +++------ percona/README.md | 9 +++------ phpmyadmin/README.md | 8 ++------ postfixadmin/README.md | 10 +++------- postgres/README.md | 15 ++++++--------- redmine/README.md | 10 +++------- ros/README.md | 22 +++++++++------------- storm/README.md | 10 +++------- teamspeak/README.md | 9 +++------ wordpress/README.md | 8 +++----- yourls/README.md | 10 +++------- zookeeper/README.md | 10 +++------- 28 files changed, 104 insertions(+), 185 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 31049e93bafe..8da784375678 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -83,15 +83,13 @@ Then point your web server to port 9000 of the container. Note: This exposes the FastCGI socket to the Internet. Make sure to add proper firewall rules or use a private Docker network instead to prevent a direct access. -### ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +### ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `adminer`: +Example `compose.yaml` for `adminer`: ```yaml # Use root/example as user/password credentials -version: '3.1' - services: adminer: @@ -107,9 +105,7 @@ services: MYSQL_ROOT_PASSWORD: example ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/adminer/stack.yml) - -Run `docker stack deploy -c stack.yml adminer` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ### Loading plugins diff --git a/backdrop/README.md b/backdrop/README.md index b5a238bdea9c..f91f9628427b 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -93,25 +93,26 @@ $ docker run --name some-backdrop \ -d backdrop ``` -## ... via [Docker Compose](https://github.com/docker/compose) +## ... via [`docker compose`](https://github.com/docker/compose) Example `compose.yaml` for `backdrop`: ```yaml -backdrop: - image: backdrop - links: - - db:mysql - ports: - - 8080:80 - -db: - image: mysql - environment: - MYSQL_USER: backdrop - MYSQL_PASSWORD: backdrop - MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' - MYSQL_DATABASE: backdrop +services: + backdrop: + image: backdrop + links: + - db:mysql + ports: + - 8080:80 + + db: + image: mysql + environment: + MYSQL_USER: backdrop + MYSQL_PASSWORD: backdrop + MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' + MYSQL_DATABASE: backdrop ``` Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. diff --git a/bonita/README.md b/bonita/README.md index a10a460e37f9..4e09d8d33979 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -89,9 +89,9 @@ docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 This image is built from the following [GitHub repository](https://github.com/Bonitasoft-Community/bonita-database-docker/tree/main/postgres/16), which can be further adapted/customized to suit your needs. -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `bonita`: +Example `compose.yaml` for `bonita`: ```yaml services: @@ -127,9 +127,7 @@ services: condition: service_healthy ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/b9ac3b631e82399477dd12a906f6bf68b3d872b3/bonita/stack.yml) - -Run `docker stack deploy -c stack.yml bonita` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). - Replace `` with the one used in the licence generation command - leave double `$$` untouched diff --git a/drupal/README.md b/drupal/README.md index e343a2defeb2..34ad31d8dfae 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -227,15 +227,14 @@ $ docker run --name some-drupal --network some-network -d \ drupal ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `drupal`: +Example `compose.yaml` for `drupal`: ```yaml # Drupal with PostgreSQL # # Access via "http://localhost:8080" -# (or "http://$(docker-machine ip):8080" if using docker-machine) # # During initial Drupal setup, # Database type: PostgreSQL @@ -244,8 +243,6 @@ Example `docker-compose.yml` for `drupal`: # Database password: example # ADVANCED OPTIONS; Database host: postgres -version: '3.1' - services: drupal: @@ -269,9 +266,7 @@ services: restart: always ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/drupal/stack.yml) - -Run `docker stack deploy -c stack.yml drupal` (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). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). When installing select `postgres` as database with the following parameters: `dbname=postgres` `user=postgres` `pass=example` `hostname=postgres` ## Adding additional libraries / extensions diff --git a/friendica/README.md b/friendica/README.md index c4a8c3424e36..bad7d24136c0 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -69,8 +69,6 @@ The `apache` tag contains a full Friendica installation including an apache web The second option is a `fpm` container. It is based on the [php-fpm](https://hub.docker.com/_/php/) image and runs a fastCGI-Process that serves your Friendica server. To use this image it must be combined with any Webserver that can proxy the http requests to the FastCGI-port of the container. -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9417aa646ce4a26c904ce2c581ffb70e7a8f82ff/friendica/stack.yml) (Admin-E-Mail: `root@friendica.local`) - ## Using the apache image You need at least one other mariadb/mysql-container to link it to Friendica. diff --git a/geonetwork/README.md b/geonetwork/README.md index f8a40c7980d2..b4c0801cac70 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -171,7 +171,7 @@ GeoNetwork listens on port `8080`. If you want to access the container at the ho docker run --name some-geonetwork -d -p 8080:8080 geonetwork ``` -Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. Otherwise, replace `localhost` by the address of your docker machine. +Then, if you are running docker on Linux, you may access geonetwork at http://localhost:8080/geonetwork. ### Set the data directory and H2 db file @@ -215,20 +215,18 @@ docker run --name some-geonetwork -d -p 8080:8080 -e DATA_DIR=/catalogue-data/da docker run --name some-geonetwork -d -p 8080:8080 -e GN_CONFIG_PROPERTIES="-Dgeonetwork.dir=/catalogue-data" -e GEONETWORK_DB_NAME=/catalogue-data/db/gn -v /host/geonetwork-docker:/catalogue-data geonetwork ``` -### ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +### ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `geonetwork`: +Example `compose.yaml` for `geonetwork`: ```yaml # GeoNetwork # -# Access via "http://localhost:8080/geonetwork" (or "http://$(docker-machine ip):8080/geonetwork" if using docker-machine) +# Access via "http://localhost:8080/geonetwork" # # Default user: admin # Default password: admin -version: '3.8' - volumes: geonetwork: esdata: @@ -343,9 +341,7 @@ services: condition: service_healthy ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/c36fe01925fbb3bd409b060190b7d99be5107af0/geonetwork/stack.yml) - -Run `docker stack deploy -c stack.yml geonetwork` (or `docker compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080/geonetwork`, `http://localhost:8080/geonetwork`, or `http://host-ip:8080/geonetwork` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/geonetwork` or `http://host-ip:8080/geonetwork` (as appropriate). ### Default credentials diff --git a/ghost/README.md b/ghost/README.md index 867b440fb807..6a89d8d8b35b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -117,7 +117,7 @@ All Ghost configuration parameters (such as `url`) can be specified via environm $ docker run -d --name some-ghost -e NODE_ENV=development -e url=http://some-ghost.example.com ghost ``` -(There are further configuration examples in the `stack.yml` listed below.) +(There are further configuration examples in the `compose.yaml` listed below.) ## What is the Node.js version? @@ -138,13 +138,11 @@ To run Ghost for production you'll also need to be running with MySQL 8, https, The following example demonstrates some of the necessary configuration for running with MySQL. For more detail, see [Ghost's "Configuration options" documentation](https://ghost.org/docs/config/#configuration-options). -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `ghost`: +Example `compose.yaml` for `ghost`: ```yaml -version: '3.1' - services: ghost: @@ -179,9 +177,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/ghost/stack.yml) - -Run `docker stack deploy -c stack.yml ghost` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). # Image Variants diff --git a/joomla/README.md b/joomla/README.md index b8b5dc1d3027..f52ebf9db43f 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -125,9 +125,9 @@ $ docker run --name some-joomla --network some-network -e JOOMLA_DB_HOST=10.1.2. -e JOOMLA_DB_USER=... -e JOOMLA_DB_PASSWORD=... -d joomla ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `joomla`: +Example `compose.yaml` for `joomla`: ```yaml services: @@ -173,9 +173,7 @@ networks: joomla_network: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/20d0481fba2d7a3d015932887b2257ec96b01f20/joomla/stack.yml) - -Run `docker stack deploy -c stack.yml joomla` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/krakend/README.md b/krakend/README.md index 64d00ca03190..de8d0b3eecdf 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -155,10 +155,9 @@ The configuration above assumes you have a folder structure like the following: ### Docker Compose example -Finally, a simple `docker-compose` file to start KrakenD with your API would be: +Finally, a simple `docker compose` file to start KrakenD with your API would be: ```yaml -version: "3" services: krakend: image: krakend: @@ -171,7 +170,6 @@ services: And another one that uses the flexible configuration and a custom template filename (`my_krakend.tmpl`) on each start: ```yaml -version: "3" services: krakend: image: krakend: diff --git a/mariadb/README.md b/mariadb/README.md index 788042ccb40a..9af50501f441 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -103,13 +103,12 @@ $ docker run --detach --name some-mariadb --env MARIADB_RANDOM_ROOT_PASSWORD=1 ... where the container logs will contain the generated root password. -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `mariadb`: +Example `compose.yaml` for `mariadb`: ```yaml # Use root/example as user/password credentials -version: '3.1' services: @@ -126,9 +125,7 @@ services: - 8080:8080 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/cf3a7fba4dfd134e3f7f5921b580c71e0fd8bc24/mariadb/stack.yml) - -Run `docker stack deploy -c stack.yml mariadb` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ### Start a `mariadb` server instance with user, password and database @@ -300,7 +297,7 @@ The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/ow ## No connections until MariaDB init completes -If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker-compose`, which start several containers simultaneously. +If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as `docker compose`, which start several containers simultaneously. ## Health/Liveness/Readiness Checking diff --git a/mediawiki/README.md b/mediawiki/README.md index df8c95b91df7..14aeb1cb1d87 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -109,15 +109,14 @@ The paths `/var/www/html/images` and `/var/www/html/LocalSettings.php` are thing $ docker run --rm mediawiki tar -cC /var/www/html/sites . | tar -xC /path/on/host/sites ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `mediawiki`: +Example `compose.yaml` for `mediawiki`: ```yaml # MediaWiki with MariaDB # # Access via "http://localhost:8080" -# (or "http://$(docker-machine ip):8080" if using docker-machine) services: mediawiki: image: mediawiki @@ -149,9 +148,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/fc2afeac92ade71c422bbb4fc020600c98582835/mediawiki/stack.yml) - -Run `docker stack deploy -c stack.yml mediawiki` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/mongo-express/README.md b/mongo-express/README.md index f3d10ae16d5d..27637857b498 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -117,7 +117,7 @@ $ docker run -it --rm \ mongo-express ``` -This example links to a container name typical of `docker-compose`, changes the editor's color theme, and enables basic authentication. +This example links to a container name typical of `docker compose`, changes the editor's color theme, and enables basic authentication. # License diff --git a/mongo/README.md b/mongo/README.md index 1bb430fdf060..cae6f092262d 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -173,13 +173,12 @@ $ docker run -it --network some-network --rm mongo mongosh --host some-mongo tes ... where `some-mongo` is the name of your original `mongo` container. -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `mongo`: +Example `compose.yaml` for `mongo`: ```yaml # Use root/example as user/password credentials -version: '3.1' services: @@ -202,9 +201,7 @@ services: ME_CONFIG_BASICAUTH: false ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/e6234a76beddf381523549d8161c9f985642c8bf/mongo/stack.yml) - -Run `docker stack deploy -c stack.yml mongo` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8081`, `http://localhost:8081`, or `http://host-ip:8081` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8081` or `http://host-ip:8081` (as appropriate). ## Container shell access and viewing MongoDB logs @@ -232,10 +229,9 @@ Most MongoDB configuration can be set through flags to `mongod`. The entrypoint $ docker run --name some-mongo -d mongo --serviceExecutor adaptive ``` -And here is the same with a `docker-compose.yml` file +And here is the same with a `compose.yaml` file ```yaml -version: '3.1' services: mongo: image: mongo diff --git a/mysql/README.md b/mysql/README.md index 014243222892..0b792ecb5e15 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -89,13 +89,12 @@ $ docker run -it --rm mysql mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `mysql`: +Example `compose.yaml` for `mysql`: ```yaml # Use root/example as user/password credentials -version: '3.1' services: @@ -107,9 +106,7 @@ services: # (this is just an example, not intended to be a production configuration) ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/869019c74d53153ad95bf9f6ff285d215c95e3ac/mysql/stack.yml) - -Run `docker stack deploy -c stack.yml mysql` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Container shell access and viewing MySQL logs diff --git a/nextcloud/README.md b/nextcloud/README.md index 2dff918d531b..80db770987e5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -99,11 +99,11 @@ To use the fpm image, you need an additional web server, such as [nginx](https:/ $ docker run -d nextcloud:fpm ``` -As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [Docker Compose section](#running-this-image-with-docker-compose). +As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the Docker Compose section. ## Using an external database -By default, this container uses SQLite for data storage but the Nextcloud setup wizard (appears on first run) allows connecting to an existing MySQL/MariaDB or PostgreSQL database. You can also link a database container, e. g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup. More info is in the docker-compose section. +By default, this container uses SQLite for data storage but the Nextcloud setup wizard (appears on first run) allows connecting to an existing MySQL/MariaDB or PostgreSQL database. You can also link a database container, e. g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup. More info is in the Docker Compose section. ## Persistent data @@ -173,10 +173,10 @@ To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/ $ docker exec --user www-data CONTAINER_ID php occ ``` -or for docker-compose: +or for `docker compose`: ```console -$ docker-compose exec --user www-data app php occ +$ docker compose exec --user www-data app php occ ``` ## Auto configuration via environment variables @@ -224,7 +224,7 @@ You might want to make sure the htaccess is up to date after each container upda - `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization. -If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters: +If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your Compose file. To inform Nextcloud about the Redis container, pass in the following parameters: - `REDIS_HOST` (not set by default) Name of Redis container - `REDIS_HOST_PORT` (default: `6379`) Optional port for Redis, only use for external Redis servers that run on non-standard ports. @@ -448,8 +448,6 @@ Then run `docker compose up -d`, now you can access Nextcloud at http://localhos As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: ```yaml -version: '3.2' - services: db: image: postgres diff --git a/nginx/README.md b/nginx/README.md index e322580f146e..576035af8626 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -148,7 +148,7 @@ $ docker run --name my-custom-nginx-container -d custom-nginx Out-of-the-box, nginx doesn't support environment variables inside most configuration blocks. But this image has a function, which will extract environment variables before nginx starts. -Here is an example using docker-compose.yml: +Here is an example using `compose.yaml`: ```yaml web: @@ -204,7 +204,7 @@ Images since version 1.9.8 come with `nginx-debug` binary that produces verbose $ docker run --name my-nginx -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx nginx-debug -g 'daemon off;' ``` -Similar configuration in docker-compose.yml may look like this: +Similar configuration in `compose.yaml` may look like this: ```yaml web: diff --git a/odoo/README.md b/odoo/README.md index b807d5cd46cd..9876d31a21f9 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -152,10 +152,9 @@ Tweak these environment variables to easily connect to a postgres server: ## Docker Compose examples -The simplest `docker-compose.yml` file would be: +The simplest `compose.yaml` file would be: ```yml -version: '3.1' services: web: image: odoo:17.0 @@ -174,7 +173,6 @@ services: If the default postgres credentials does not suit you, tweak the environment variables: ```yml -version: '3.1' services: web: image: odoo:17.0 @@ -202,7 +200,6 @@ Here's a last example showing you how to - use a `secrets` file named `odoo_pg_pass` that contains the postgreql password shared by both services ```yml -version: '3.1' services: web: image: odoo:17.0 @@ -238,10 +235,10 @@ secrets: file: odoo_pg_pass ``` -To start your Odoo instance, go in the directory of the `docker-compose.yml` file you created from the previous examples and type: +To start your Odoo instance, go in the directory of the `compose.yaml` file you created from the previous examples and type: ```console -docker-compose up -d +docker compose up -d ``` # How to upgrade this image diff --git a/percona/README.md b/percona/README.md index b37111812b2a..35659237b820 100644 --- a/percona/README.md +++ b/percona/README.md @@ -93,13 +93,12 @@ $ docker run -it --rm percona mysql -hsome.mysql.host -usome-mysql-user -p More information about the MySQL command line client can be found in the [MySQL documentation](http://dev.mysql.com/doc/en/mysql.html) -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `percona`: +Example `compose.yaml` for `percona`: ```yaml # Use root/example as user/password credentials -version: '3.1' services: @@ -116,9 +115,7 @@ services: - 8080:8080 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/percona/stack.yml) - -Run `docker stack deploy -c stack.yml percona` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Container shell access and viewing MySQL logs diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 2a59b4db7e70..d3bd45e74094 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -117,13 +117,11 @@ docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 8080:80 phpmyadmin This will run phpMyAdmin with the arbitrary server option - allowing you to specify any MySQL/MariaDB server on the login page. -... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `phpmyadmin`: +Example `compose.yaml` for `phpmyadmin`: ```yaml -version: '3.1' - services: db: image: mariadb:10.11 @@ -140,8 +138,6 @@ services: - PMA_ARBITRARY=1 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9154b40d2603d9776b07f7b0d2a70806d1fbebea/phpmyadmin/stack.yml) - ## Adding Custom Configuration You can add your own custom config.inc.php settings (such as Configuration Storage setup) by creating a file named `config.user.inc.php` with the various user defined settings in it, and then linking it into the container using: diff --git a/postfixadmin/README.md b/postfixadmin/README.md index afeef65691f3..432721c80046 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -105,13 +105,11 @@ $ docker run -v /local/path/to/config.local.php:/var/www/html/config.local.php \ postfixadmin ``` -... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `postfixadmin`: +Example `compose.yaml` for `postfixadmin`: ```yaml -version: '3' - services: db: image: mysql:8.0 @@ -137,9 +135,7 @@ services: POSTFIXADMIN_DB_PASSWORD: example ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/postfixadmin/stack.yml) - -Run docker stack deploy -c stack.yml postfixadmin (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). # Image Variants diff --git a/postgres/README.md b/postgres/README.md index 0dbd76cdd08d..41d828902e1b 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -121,20 +121,19 @@ postgres=# SELECT 1; (1 row) ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `postgres`: +Example `compose.yaml` for `postgres`: ```yaml # Use postgres/example user/password credentials -version: '3.9' services: db: image: postgres restart: always - # set shared memory limit when using docker-compose + # set shared memory limit when using docker compose shm_size: 128mb # or set shared memory limit when deploy via swarm stack #volumes: @@ -152,9 +151,7 @@ services: - 8080:8080 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/f254f585ba82d2e19d794100dd7bca71fb1c02e7/postgres/stack.yml) - -Run `docker stack deploy -c stack.yml postgres` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). # How to extend this image @@ -357,9 +354,9 @@ The three easiest ways to get around this: # Caveats -If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker-compose`, that start several containers simultaneously. +If there is no database when `postgres` starts in a container, then `postgres` will create the default database for you. While this is the expected behavior of `postgres`, this means that it will not accept incoming connections during that time. This may cause issues when using automation tools, such as `docker compose`, that start several containers simultaneously. -Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker-compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). +Also note that the default `/dev/shm` size for containers is 64MB. If the shared memory is exhausted you will encounter `ERROR: could not resize shared memory segment . . . : No space left on device`. You will want to pass [`--shm-size=256MB`](https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources) for example to `docker run`, or alternatively in [`docker compose`](https://docs.docker.com/compose/compose-file/05-services/#shm_size). ## Where to Store Data diff --git a/redmine/README.md b/redmine/README.md index f014c4c914ab..43ec6c3e39df 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -99,13 +99,11 @@ Running Redmine with a database server is the recommended way. $ docker run -d --name some-redmine --network some-network -e REDMINE_DB_POSTGRES=some-postgres -e REDMINE_DB_USERNAME=redmine -e REDMINE_DB_PASSWORD=secret redmine ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `redmine`: +Example `compose.yaml` for `redmine`: ```yaml -version: '3.1' - services: redmine: @@ -126,9 +124,7 @@ services: MYSQL_DATABASE: redmine ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/8b35a43795bda4f4ca1299bee2d02afe2434ee7f/redmine/stack.yml) - -Run `docker stack deploy -c stack.yml redmine` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Accessing the Application diff --git a/ros/README.md b/ros/README.md index c5c303d84649..59e3f33dcf64 100644 --- a/ros/README.md +++ b/ros/README.md @@ -234,13 +234,11 @@ Alternatively, more permissive network settings can be used to share all host ne ### Docker Compose -In this example we'll demonstrate using [`docker-compose`](https://docs.docker.com/compose/) to spawn a pair of message publisher and subscriber nodes in separate containers connected through shared software defined network. +In this example we'll demonstrate using [`docker compose`](https://docs.docker.com/compose/) to spawn a pair of message publisher and subscriber nodes in separate containers connected through shared software defined network. -> Create the directory `~/ros_demos` and add the first `Dockerfile` example from above. In the same directory, also create file `docker-compose.yml` with the following that runs a C++ publisher with a Python subscriber: +> Create the directory `~/ros_demos` and add the first `Dockerfile` example from above. In the same directory, also create file `compose.yaml` with the following that runs a C++ publisher with a Python subscriber: ```yaml -version: '3' - services: talker: build: ./ @@ -253,10 +251,10 @@ services: command: ros2 run demo_nodes_py listener ``` -> Use docker-compose inside the same directory to launch our ROS nodes. Given the containers created derive from the same docker compose project, they will coexist on shared project network: +> Use `docker compose` inside the same directory to launch our ROS nodes. Given the containers created derive from the same docker compose project, they will coexist on shared project network: ```console -$ docker-compose up -d +$ docker compose up -d ``` > Notice that a new network named `ros_demos_default` has been created, as can be shown further with: @@ -268,17 +266,17 @@ $ docker network inspect ros_demos_default > We can monitor the logged output of each container, such as the listener node like so: ```console -$ docker-compose logs listener +$ docker compose logs listener ``` -> Finally, we can stop and remove all the relevant containers using docker-compose from the same directory: +> Finally, we can stop and remove all the relevant containers using `docker compose` from the same directory: ```console -$ docker-compose stop -$ docker-compose rm +$ docker compose stop +$ docker compose rm ``` -> Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker-compose down`. +> Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker compose down`. ### ROS 1 Bridge @@ -300,8 +298,6 @@ CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. ```yaml -version: '3' - services: ros1: build: diff --git a/storm/README.md b/storm/README.md index bc7c3b56f4ff..b7de10240e39 100644 --- a/storm/README.md +++ b/storm/README.md @@ -99,13 +99,11 @@ $ docker run -it -v $(pwd)/topology.jar:/topology.jar storm storm jar /topology. $ docker run -d -p 8080:8080 --restart always --name ui --link some-nimbus:nimbus storm storm ui ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `storm`: +Example `compose.yaml` for `storm`: ```yaml -version: '3.1' - services: zookeeper: image: zookeeper @@ -137,9 +135,7 @@ services: restart: always ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/9efeec18b6b2ed232cf0fbd3914b6211e16e242c/storm/stack.yml) - -Run `docker stack deploy -c stack.yml storm` (or `docker compose -f stack.yml up`) and wait for it to initialize completely. The Nimbus will be available at `http://swarm-ip:6627`, `http://localhost:6627`, or `http://host-ip:6627` (as appropriate). +Run `docker compose up` and wait for it to initialize completely. The Nimbus will be available at `http://localhost:6627` or `http://host-ip:6627` (as appropriate). ## Configuration diff --git a/teamspeak/README.md b/teamspeak/README.md index 8928e1b3488a..c0882d3ed554 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -83,12 +83,11 @@ The TeamSpeak server log is available through Docker's container log: $ docker logs some-teamspeak ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `teamspeak`: +Example `compose.yaml` for `teamspeak`: ```yaml -version: '3.1' services: teamspeak: image: teamspeak @@ -114,9 +113,7 @@ services: MYSQL_DATABASE: teamspeak ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/0975c9ae2481c3f988c17d01d62075c9bf772ebb/teamspeak/stack.yml) - -Run `docker stack deploy -c stack.yml teamspeak` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `swarm-ip:9987`, `localhost:9987`, or `host-ip:9987` (as appropriate) with a TeamSpeak client. +Run `docker compose up`, wait for it to initialize completely, and visit `localhost:9987` or `host-ip:9987` (as appropriate) with a TeamSpeak client. ## Environment Variables diff --git a/wordpress/README.md b/wordpress/README.md index 276937877d19..fc3e703f81b6 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -124,9 +124,9 @@ $ docker run --name some-wordpress -e WORDPRESS_DB_PASSWORD_FILE=/run/secrets/my Currently, this is supported for `WORDPRESS_DB_HOST`, `WORDPRESS_DB_USER`, `WORDPRESS_DB_PASSWORD`, `WORDPRESS_DB_NAME`, `WORDPRESS_AUTH_KEY`, `WORDPRESS_SECURE_AUTH_KEY`, `WORDPRESS_LOGGED_IN_KEY`, `WORDPRESS_NONCE_KEY`, `WORDPRESS_AUTH_SALT`, `WORDPRESS_SECURE_AUTH_SALT`, `WORDPRESS_LOGGED_IN_SALT`, `WORDPRESS_NONCE_SALT`, `WORDPRESS_TABLE_PREFIX`, and `WORDPRESS_DEBUG`. -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `wordpress`: +Example `compose.yaml` for `wordpress`: ```yaml services: @@ -160,9 +160,7 @@ volumes: db: ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/0df0475ce5ccee41cd3faeaa68bf386da9718029/wordpress/stack.yml) - -Run `docker stack deploy -c stack.yml wordpress` (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). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080` (as appropriate). ## Adding additional libraries / extensions diff --git a/yourls/README.md b/yourls/README.md index 15b15577c815..2eb1675ff79a 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -143,13 +143,11 @@ $ docker run --name some-yourls -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root . Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`. -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `yourls`: +Example `compose.yaml` for `yourls`: ```yaml -version: '3.1' - services: yourls: @@ -171,9 +169,7 @@ services: MYSQL_DATABASE: yourls ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/6dba1507190ff91149046ce4bcbac43529d76bd4/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/admin/`, `http://localhost:8080/admin/`, or `http://:8080/admin/` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/` or `http://:8080/admin/` (as appropriate). ## Adding additional libraries / extensions diff --git a/zookeeper/README.md b/zookeeper/README.md index 3e4e17bcd65f..c6c4ec56e884 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -77,13 +77,11 @@ $ docker run --name some-app --link some-zookeeper:zookeeper -d application-that $ docker run -it --rm --link some-zookeeper:zookeeper zookeeper zkCli.sh -server zookeeper ``` -## ... via [`docker-compose`](https://github.com/docker/compose) or [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) +## ... via [`docker compose`](https://github.com/docker/compose) -Example `docker-compose.yml` for `zookeeper`: +Example `compose.yaml` for `zookeeper`: ```yaml -version: '3.1' - services: zoo1: image: zookeeper @@ -116,9 +114,7 @@ services: ZOO_SERVERS: server.1=zoo1:2888:3888;2181 server.2=zoo2:2888:3888;2181 server.3=zoo3:2888:3888;2181 ``` -[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/fb51d93e6bb1e8b773a728d297a45b834f04d3d1/zookeeper/stack.yml) - -This will start Zookeeper in [replicated mode](https://zookeeper.apache.org/doc/current/zookeeperStarted.html#sc_RunningReplicatedZooKeeper). Run `docker stack deploy -c stack.yml zookeeper` (or `docker-compose -f stack.yml up`) and wait for it to initialize completely. Ports `2181-2183` will be exposed. +This will start Zookeeper in [replicated mode](https://zookeeper.apache.org/doc/current/zookeeperStarted.html#sc_RunningReplicatedZooKeeper). Run `docker compose up` and wait for it to initialize completely. Ports `2181-2183` will be exposed. > Please be aware that setting up multiple servers on a single machine will not create any redundancy. If something were to happen which caused the machine to die, all of the zookeeper servers would be offline. Full redundancy requires that each server have its own machine. It must be a completely separate physical server. Multiple virtual machines on the same physical host are still vulnerable to the complete failure of that host. From d931edc19e60965e043063f8cfad4a4789dcda36 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 5 May 2025 17:09:54 -0700 Subject: [PATCH 2138/2686] Run update.sh --- mariadb/README.md | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 9af50501f441..12e71a66d0dc 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -81,24 +81,34 @@ The mariadb has a number of tags, and of note is `latest`, as the latest stable ## Running the container +### Configuration + +#### Port binding + +By default, the database running within the container will listen on port 3306. You can expose the container port 3306 to the host port 3306 with the `-p 3306:3306` argument to `docker run`, like the command below: + +```console +$ docker run --name some-mariadb -p 3306:3306 mariadb:latest +``` + ### Starting using a minimal configuration The environment variables required to use this image involves the setting of the root user password: ```console -$ docker run --detach --name some-mariadb --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest +$ docker run --detach --name some-mariadb --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest ``` or: ```console -$ docker run --detach --name some-mariadb --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 mariadb:latest +$ docker run --detach --name some-mariadb --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 mariadb:latest ``` or: ```console -$ docker run --detach --name some-mariadb --env MARIADB_RANDOM_ROOT_PASSWORD=1 mariadb:latest +$ docker run --detach --name some-mariadb --env MARIADB_RANDOM_ROOT_PASSWORD=1 mariadb:latest ``` ... where the container logs will contain the generated root password. @@ -132,7 +142,7 @@ Run `docker compose up`, wait for it to initialize completely, and visit `http:/ Starting a MariaDB instance with a user, password, and a database: ```console -$ docker run --detach --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest +$ docker run --detach --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_DATABASE=exmple-database --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest ``` ### Start a `mariadb` server instance in a network @@ -141,8 +151,8 @@ As applications talk to MariaDB, MariaDB needs to start in the same network as t ```console $ docker network create some-network -$ docker run --detach --network some-network --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest -$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-mariadb --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application +$ docker run --detach --network some-network --name some-mariadb --env MARIADB_USER=example-user --env MARIADB_PASSWORD=my_cool_secret --env MARIADB_ROOT_PASSWORD=my-secret-pw mariadb:latest +$ docker run --detach --network some-network --name some-application --env APP_DB_HOST=some-mariadb --env APP_DB_USER=example-user --env APP_DB_PASSWD=my_cool_secret some-application ``` ... where `some-network` is a newly created network (other than `bridge` as the default network), `some-mariadb` is the name you want to assign to your container, `my-secret-pw` is the password to be set for the MariaDB root user. See the list above for relevant tags to match your needs and environment. `some-application` and then environment variable `APP_DB_HOST`, `APP_DB_USER` and `APP_DB_PASSWD` are the application's configuration for its database connection. @@ -152,7 +162,7 @@ $ docker run --detach --network some-network --name some-application --env APP_D The following command starts another `mariadb` container instance and runs the `mariadb` command line client against your original `mariadb` container, allowing you to execute SQL statements against your database instance: ```console -$ docker run -it --network some-network --rm mariadb mariadb -hsome-mariadb -uexample-user -p +$ docker run -it --network some-network --rm mariadb mariadb -h some-mariadb -u example-user ``` ... where `some-mariadb` is the name of your original `mariadb` container (connected to the `some-network` Docker network). From 268b8fb5aa794d85c75bd6e77fbbc2d70d2d97b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 May 2025 11:09:52 -0700 Subject: [PATCH 2139/2686] Run update.sh --- couchdb/README.md | 10 +++++--- perl/README.md | 64 +++++++++++++++++++++++------------------------ xwiki/README.md | 6 ++--- 3 files changed, 41 insertions(+), 39 deletions(-) diff --git a/couchdb/README.md b/couchdb/README.md index 09bf957d421d..5f3d22b22818 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `3.4.3`, `3.4`, `3`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.4.3/Dockerfile) +- [`latest`, `3.5.0`, `3.5`, `3`](https://github.com/apache/couchdb-docker/blob/2660034027fec97097f88afcc6f8a4416c364b24/3.5.0/Dockerfile) -- [`3.4.3-nouveau`, `3.4-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.4.3-nouveau/Dockerfile) +- [`3.5.0-nouveau`, `3.5-nouveau`, `3-nouveau`](https://github.com/apache/couchdb-docker/blob/2660034027fec97097f88afcc6f8a4416c364b24/3.5.0-nouveau/Dockerfile) -- [`3.3.3`, `3.3`](https://github.com/apache/couchdb-docker/blob/8a7dfc18fe8a9ba55a1c544ee3416f945dbb94ad/3.3.3/Dockerfile) +- [`3.4.3`, `3.4`](https://github.com/apache/couchdb-docker/blob/2660034027fec97097f88afcc6f8a4416c364b24/3.4.3/Dockerfile) + +- [`3.4.3-nouveau`, `3.4-nouveau`](https://github.com/apache/couchdb-docker/blob/2660034027fec97097f88afcc6f8a4416c364b24/3.4.3-nouveau/Dockerfile) # Quick reference (cont.) @@ -36,7 +38,7 @@ WARNING: [https://github.com/apache/couchdb-docker/issues](https://github.com/apache/couchdb-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/couchdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchdb/), [`ppc64le`](https://hub.docker.com/r/ppc64le/couchdb/), [`s390x`](https://hub.docker.com/r/s390x/couchdb/) + [`amd64`](https://hub.docker.com/r/amd64/couchdb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/couchdb/), [`s390x`](https://hub.docker.com/r/s390x/couchdb/) - **Published image artifact details**: [repo-info repo's `repos/couchdb/` directory](https://github.com/docker-library/repo-info/blob/master/repos/couchdb) ([history](https://github.com/docker-library/repo-info/commits/master/repos/couchdb)) diff --git a/perl/README.md b/perl/README.md index bdbee72dfb14..fcae59a04f96 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main-bookworm/Dockerfile) +- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main-bookworm/Dockerfile) -- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main-bullseye/Dockerfile) +- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main-bullseye/Dockerfile) -- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim-bookworm/Dockerfile) +- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim-bookworm/Dockerfile) -- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim-bullseye/Dockerfile) +- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim-bullseye/Dockerfile) -- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main,threaded-bookworm/Dockerfile) +- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main,threaded-bookworm/Dockerfile) -- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-main,threaded-bullseye/Dockerfile) +- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main,threaded-bullseye/Dockerfile) -- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim,threaded-bookworm/Dockerfile) +- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim,threaded-bookworm/Dockerfile) -- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.040.002-slim,threaded-bullseye/Dockerfile) +- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main-bookworm/Dockerfile) +- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main-bookworm/Dockerfile) -- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main-bullseye/Dockerfile) +- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main-bullseye/Dockerfile) -- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim-bookworm/Dockerfile) +- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim-bookworm/Dockerfile) -- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim-bullseye/Dockerfile) +- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim-bullseye/Dockerfile) -- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main,threaded-bookworm/Dockerfile) +- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main,threaded-bookworm/Dockerfile) -- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-main,threaded-bullseye/Dockerfile) +- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main,threaded-bullseye/Dockerfile) -- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim,threaded-bookworm/Dockerfile) +- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim,threaded-bookworm/Dockerfile) -- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.038.004-slim,threaded-bullseye/Dockerfile) +- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.10`, `5.41`, `devel`, `5.41.10-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main-bookworm/Dockerfile) +- [`5.41.12`, `5.41`, `devel`, `5.41.12-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main-bookworm/Dockerfile) -- [`5.41.10-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main-bullseye/Dockerfile) +- [`5.41.12-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main-bullseye/Dockerfile) -- [`5.41.10-slim`, `5.41-slim`, `devel-slim`, `5.41.10-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim-bookworm/Dockerfile) +- [`5.41.12-slim`, `5.41-slim`, `devel-slim`, `5.41.12-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim-bookworm/Dockerfile) -- [`5.41.10-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim-bullseye/Dockerfile) +- [`5.41.12-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim-bullseye/Dockerfile) -- [`5.41.10-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.10-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main,threaded-bookworm/Dockerfile) +- [`5.41.12-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.12-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main,threaded-bookworm/Dockerfile) -- [`5.41.10-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-main,threaded-bullseye/Dockerfile) +- [`5.41.12-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main,threaded-bullseye/Dockerfile) -- [`5.41.10-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.10-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim,threaded-bookworm/Dockerfile) +- [`5.41.12-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.12-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim,threaded-bookworm/Dockerfile) -- [`5.41.10-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/c2c67e0f54c53b3d6fca4946292d1a385e9cd119/5.041.010-slim,threaded-bullseye/Dockerfile) +- [`5.41.12-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index d54ebe65d9a8..083005ad8983 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mariadb-tomcat/Dockerfile) -- [`16.4`, `16.4.7`, `16.4-mysql-tomcat`, `16.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mysql-tomcat/Dockerfile) +- [`16.4`, `16.4.8`, `16.4-mysql-tomcat`, `16.4.8-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/mysql-tomcat/Dockerfile) -- [`16.4-postgres-tomcat`, `16.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/postgres-tomcat/Dockerfile) +- [`16.4-postgres-tomcat`, `16.4.8-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/postgres-tomcat/Dockerfile) -- [`16.4-mariadb-tomcat`, `16.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/58e6e3f59cc6c7f15a7a1d0fe5b2390353e61e6d/16.4/mariadb-tomcat/Dockerfile) +- [`16.4-mariadb-tomcat`, `16.4.8-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From eb3b50334a9edb3235d4e661408ebe870ea6280d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 May 2025 12:09:51 -0700 Subject: [PATCH 2140/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- krakend/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bash/README.md b/bash/README.md index b9db98dbc1d3..2519914b53a9 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250422`, `devel`, `devel-20250422-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/b9df53e57a14df82d910628a593002a459af88db/devel/Dockerfile) +- [`devel-20250504`, `devel`, `devel-20250504-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/255a35c25008695e4399b376ee36b1f6a02c0506/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 6a89d8d8b35b..52f51af2a848 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.119.0`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/78ab4fd19891a88675ec27c37cdc2e16929082e3/5/debian/Dockerfile) +- [`5.119.1`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1df92732715a0cc5a8c7da811859285d08622356/5/debian/Dockerfile) -- [`5.119.0-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/78ab4fd19891a88675ec27c37cdc2e16929082e3/5/alpine/Dockerfile) +- [`5.119.1-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1df92732715a0cc5a8c7da811859285d08622356/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index de8d0b3eecdf..e12a649943c2 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.9.4`, `2.9`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/899edf02008935285c06b651706d74c275459420/2.9.4/Dockerfile) +- [`2.10.0`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/e251c6c6db51dcd34e11cc507830cfc200d652c1/2.10.0/Dockerfile) # Quick reference (cont.) From 242d860e0b22de4a659b874464c1e2c6bb974e98 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 May 2025 13:10:07 -0700 Subject: [PATCH 2141/2686] Run update.sh --- golang/README.md | 92 ++++++++++++++++++++++++------------------------ 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/golang/README.md b/golang/README.md index cd6ddd8e00b2..660b985df156 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,45 +28,45 @@ WARNING: ## Simple Tags -- [`1.24.2-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bookworm/Dockerfile) +- [`1.24.3-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bookworm/Dockerfile) -- [`1.24.2-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bullseye/Dockerfile) +- [`1.24.3-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bullseye/Dockerfile) -- [`1.24.2-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.2-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/alpine3.21/Dockerfile) +- [`1.24.3-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.3-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.21/Dockerfile) -- [`1.24.2-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/alpine3.20/Dockerfile) +- [`1.24.3-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.20/Dockerfile) -- [`1.24.2-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.3-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.2-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.3-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.2-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) +- [`1.24.3-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) -- [`1.24.2-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.3-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.2-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.3-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.2-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-1809/Dockerfile) +- [`1.24.3-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-1809/Dockerfile) -- [`1.23.8-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bookworm/Dockerfile) +- [`1.23.9-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) -- [`1.23.8-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bullseye/Dockerfile) +- [`1.23.9-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bullseye/Dockerfile) -- [`1.23.8-alpine3.21`, `1.23-alpine3.21`, `1.23.8-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/alpine3.21/Dockerfile) +- [`1.23.9-alpine3.21`, `1.23-alpine3.21`, `1.23.9-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.21/Dockerfile) -- [`1.23.8-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/alpine3.20/Dockerfile) +- [`1.23.9-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.20/Dockerfile) -- [`1.23.8-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.9-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.8-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.9-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.8-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) +- [`1.23.9-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) -- [`1.23.8-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.9-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.8-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.9-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.8-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) +- [`1.23.9-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) - [`tip-20250504-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bookworm/Dockerfile) @@ -78,43 +78,43 @@ WARNING: ## Shared Tags -- `1.24.2`, `1.24`, `1`, `latest`: +- `1.24.3`, `1.24`, `1`, `latest`: - - [`1.24.2-bookworm`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/bookworm/Dockerfile) - - [`1.24.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.3-bookworm`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bookworm/Dockerfile) + - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.2-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.3-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.2-windowsservercore-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/windowsservercore-1809/Dockerfile) + - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) -- `1.24.2-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.3-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24.2-nanoserver-1809`](https://github.com/docker-library/golang/blob/0844a73ae898184098ec47d74d5ec69ba1bd7a34/1.24/windows/nanoserver-1809/Dockerfile) + - [`1.24.3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-1809/Dockerfile) -- `1.23.8`, `1.23`: +- `1.23.9`, `1.23`: - - [`1.23.8-bookworm`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/bookworm/Dockerfile) - - [`1.23.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.9-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) + - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.8-windowsservercore`, `1.23-windowsservercore`: +- `1.23.9-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.8-windowsservercore-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/windowsservercore-1809/Dockerfile) + - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) -- `1.23.8-nanoserver`, `1.23-nanoserver`: +- `1.23.9-nanoserver`, `1.23-nanoserver`: - - [`1.23.8-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.8-nanoserver-1809`](https://github.com/docker-library/golang/blob/9c7b917764138c952925576eed4307eddd3ce96c/1.23/windows/nanoserver-1809/Dockerfile) + - [`1.23.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) - `tip-20250504`, `tip`: From 487e4e632d0c0aaac7f70a1026b282ca9307c0df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 6 May 2025 14:10:04 -0700 Subject: [PATCH 2142/2686] Run update.sh --- node/README.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 5d3981e171df..3db0bd461fec 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.20/Dockerfile) +- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.0-alpine`, `23.11.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.21/Dockerfile) +- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.0-alpine`, `24.0.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.0`, `23.11.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.0`, `24.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.0-bookworm-slim`, `23.11.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.0-bookworm-slim`, `24.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.11-bullseye`, `23.11.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye/Dockerfile) +- [`24-bullseye`, `24.0-bullseye`, `24.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bullseye-slim/Dockerfile) + +- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.20/Dockerfile) + +- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.0-alpine`, `23.11.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.21/Dockerfile) + +- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.0`, `23.11.0-bookworm`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm/Dockerfile) + +- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.0-bookworm-slim`, `23.11.0-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm-slim/Dockerfile) + +- [`23-bullseye`, `23.11-bullseye`, `23.11.0-bullseye`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye/Dockerfile) + +- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye-slim/Dockerfile) - [`22-alpine3.20`, `22.15-alpine3.20`, `22.15.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/alpine3.20/Dockerfile) From 366738c7ca2ea7c5744fc936fe1c30d6537d297c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 May 2025 11:10:07 -0700 Subject: [PATCH 2143/2686] Run update.sh --- neo4j/README.md | 8 ++++---- wordpress/README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index e3f770c3dc0a..13ebd5bd5b3c 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.04.0-enterprise-ubi9`, `2025.04-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/enterprise/Dockerfile) -- [`5.26.5-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.5-community`, `5.26-community`, `5-community`, `5.26.5-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.5`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/bullseye/community/Dockerfile) +- [`5.26.6-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.6-community`, `5.26-community`, `5-community`, `5.26.6-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.6`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/bullseye/community/Dockerfile) -- [`5.26.5-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.5-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/bullseye/enterprise/Dockerfile) +- [`5.26.6-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.6-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/bullseye/enterprise/Dockerfile) -- [`5.26.5-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.5-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/ubi9/community/Dockerfile) +- [`5.26.6-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.6-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/community/Dockerfile) -- [`5.26.5-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/df252a0df2fdc2acdab1b089bf1e047f365bac41/5.26.5/ubi9/enterprise/Dockerfile) +- [`5.26.6-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/enterprise/Dockerfile) - [`4.4.42`, `4.4.42-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/community/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index fc3e703f81b6..50cc2fa76042 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -48,13 +48,13 @@ WARNING: - [`6.8.1-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/fpm-alpine/Dockerfile) -- [`cli-2.11.0-php8.1`, `cli-2.11-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.1/alpine/Dockerfile) +- [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) -- [`cli-2.11.0`, `cli-2.11`, `cli-2`, `cli`, `cli-2.11.0-php8.2`, `cli-2.11-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.2/alpine/Dockerfile) +- [`cli-2.12.0`, `cli-2.12`, `cli-2`, `cli`, `cli-2.12.0-php8.2`, `cli-2.12-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.2/alpine/Dockerfile) -- [`cli-2.11.0-php8.3`, `cli-2.11-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.3/alpine/Dockerfile) +- [`cli-2.12.0-php8.3`, `cli-2.12-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.3/alpine/Dockerfile) -- [`cli-2.11.0-php8.4`, `cli-2.11-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/a52039a5d8059d24403af1892d34d49ebe052323/cli/php8.4/alpine/Dockerfile) +- [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) # Quick reference (cont.) From 303c45c6dcb7f1528ddb13f431ad0ef084492e80 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 7 May 2025 12:09:54 -0700 Subject: [PATCH 2144/2686] Run update.sh --- docker/README.md | 14 +++++++------- jruby/README.md | 40 ++++++++++++++++++++-------------------- photon/README.md | 2 +- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6cd9ab836415..e55268ee9509 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/cli/Dockerfile) +- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/cli/Dockerfile) - [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind/Dockerfile) - [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index 5af10318f9d5..df3c7409b933 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.0`, `10.0.0.0-jre`, `10.0.0.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.0-jdk`, `10.0.0.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.0-jre24`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.0-jdk24`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.0`, `9.4.12.0-jre`, `9.4.12.0-jre8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.1`, `9.4.12.1-jre`, `9.4.12.1-jre8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.0-jdk`, `9.4.12.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.1-jdk`, `9.4.12.1-jdk8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.0-jre11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.1-jre11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.1-jdk11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.1-jdk17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.0-jre17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.1-jre17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.1-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.1-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/6a11b439ed2d0d11dfe7258ae3910eb0a28f1096/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre21/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 216b679359c6..21a16b772d51 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20250427`, `latest`](https://github.com/vmware/photon-docker-image/blob/41a2d9175642cf2da9f33b817c28aa2c01919d70/docker/Dockerfile) -- [`4.0`, `4.0-20250427`](https://github.com/vmware/photon-docker-image/blob/b0a23c3956afbd0280735705f1f3c916deb5a04f/docker/Dockerfile) +- [`4.0`, `4.0-20250506`](https://github.com/vmware/photon-docker-image/blob/464d6fc28670cad9b2e065de98a2048fcc1f3a4d/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) From c8ef3626aa4a5e42cb6a426ea62532249037a969 Mon Sep 17 00:00:00 2001 From: reidb1 <57458212+reidb1@users.noreply.github.com> Date: Thu, 8 May 2025 16:02:27 +0100 Subject: [PATCH 2145/2686] Fix incorrect shebang in example initialization script The `/bin/bash` shebang points does not point to the correct path for bash in the container. Because of this, the initialization scripts will not run. Changing to `/usr/bin/env bash` fixes this problem. Alternatively `/usr/bin/bash` would also work. --- postgres/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/content.md b/postgres/content.md index 966dea20d6f3..6015c85082d9 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -132,7 +132,7 @@ If you would like to do additional initialization in an image derived from this For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-user-db.sh`: ```bash -#!/bin/bash +#!/usr/bin/env bash set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL From 6181fac3ccd6eb910fdbfb099e47956a372ccc92 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 May 2025 11:09:56 -0700 Subject: [PATCH 2146/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 34ad31d8dfae..d6f21eddf92a 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.1.6-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.6-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.6-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.7-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.7-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.7-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.6-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.6-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.7-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.7-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.6-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.7-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.6-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.7-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.6-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.6-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.7-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.7-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.6-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.7-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.6-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.6-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.6-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.6-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.6-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.6`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.7-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.7-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.7-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.7-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.7-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.7`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.6-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.6-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.6-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.6-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.7-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.7-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.7-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.7-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.6-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.6-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.7-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.7-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.6-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.6-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.7-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.7-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.6-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.6-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.6-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.6-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.7-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.7-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.7-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.7-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.6-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.6-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8b3927fc29e119332af7da39360b7106a2916c93/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.7-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.7-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-alpine3.20/Dockerfile) - [`11.0.13-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.13-php8.3-apache`, `11.0-php8.3-apache`, `11.0.13-php8.3`, `11.0-php8.3`, `11.0.13-apache-bookworm`, `11.0-apache-bookworm`, `11.0.13-apache`, `11.0-apache`, `11.0.13`, `11.0`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bookworm/Dockerfile) @@ -60,29 +60,29 @@ WARNING: - [`11.0.13-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.13-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.6-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.6-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.6-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.7-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.7-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.7-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.6-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.6-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.7-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.7-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.6-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.7-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.6-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.7-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.6-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.6-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.7-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.7-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.6-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.7-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.6-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.6-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.6-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.6-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.6-apache`, `10.4-apache`, `10-apache`, `10.4.6`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.7-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.7-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.7-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.7-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.7-apache`, `10.4-apache`, `10-apache`, `10.4.7`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.6-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.6-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.6-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.6-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.7-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.7-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.7-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.7-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.6-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.6-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.7-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.7-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.6-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.6-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.7-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.7-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.6-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.6-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.6-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.6-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.7-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.7-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.7-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.7-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.6-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.6-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/bbeb421d71d8dac8ccc6e7274495d67a6947c7ae/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.7-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.7-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.14-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.14-php8.3-apache`, `10.3-php8.3-apache`, `10.3.14-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bookworm/Dockerfile) From 2e29dd9805dd0836e0ce58c524379601f1f1afc9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 May 2025 12:10:40 -0700 Subject: [PATCH 2147/2686] Run update.sh --- postgres/README.md | 2 +- rabbitmq/README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 41d828902e1b..0a1d37ecc8d6 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -245,7 +245,7 @@ If you would like to do additional initialization in an image derived from this For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-user-db.sh`: ```bash -#!/bin/bash +#!/usr/bin/env bash set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 776d371f0224..77451df9f856 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/d74fab12a7cb6679d19a4ed8b68abc09beb405da/4.1/ubuntu/Dockerfile) +- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/85ffaf0cfe4310ab046b8ccad93c624c6dffe4bc/4.1/ubuntu/Dockerfile) - [`4.1.0-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/d74fab12a7cb6679d19a4ed8b68abc09beb405da/4.1/alpine/Dockerfile) +- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/85ffaf0cfe4310ab046b8ccad93c624c6dffe4bc/4.1/alpine/Dockerfile) - [`4.1.0-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/d8f94074fe7505007426e54321efaee5ee7f03b8/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/101d600e8f6ba9543a7e9dd9e156a2f7972218cf/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/d8f94074fe7505007426e54321efaee5ee7f03b8/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/101d600e8f6ba9543a7e9dd9e156a2f7972218cf/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/8704b8023dfe001563284ebfa6ac3e380befde24/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/42f61ae85d877c377e97c892d97ed4a65f1c7809/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/8704b8023dfe001563284ebfa6ac3e380befde24/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/42f61ae85d877c377e97c892d97ed4a65f1c7809/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From a54748d9f1f35ee75c9ee282b7dabb7168a3c288 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 May 2025 13:11:23 -0700 Subject: [PATCH 2148/2686] Run update.sh --- postgres/README.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 0a1d37ecc8d6..72149f96adcb 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.4`, `17`, `latest`, `17.4-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/bookworm/Dockerfile) +- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/17/bookworm/Dockerfile) -- [`17.4-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/bullseye/Dockerfile) +- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/17/bullseye/Dockerfile) -- [`17.4-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.4-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/alpine3.21/Dockerfile) +- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.21/Dockerfile) -- [`17.4-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/17/alpine3.20/Dockerfile) +- [`17.5-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.20/Dockerfile) -- [`16.8`, `16`, `16.8-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/bookworm/Dockerfile) +- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/16/bookworm/Dockerfile) -- [`16.8-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/bullseye/Dockerfile) +- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/16/bullseye/Dockerfile) -- [`16.8-alpine3.21`, `16-alpine3.21`, `16.8-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/alpine3.21/Dockerfile) +- [`16.9-alpine3.21`, `16-alpine3.21`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.21/Dockerfile) -- [`16.8-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/16/alpine3.20/Dockerfile) +- [`16.9-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.20/Dockerfile) -- [`15.12`, `15`, `15.12-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/bookworm/Dockerfile) +- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/15/bookworm/Dockerfile) -- [`15.12-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/bullseye/Dockerfile) +- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/15/bullseye/Dockerfile) -- [`15.12-alpine3.21`, `15-alpine3.21`, `15.12-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/alpine3.21/Dockerfile) +- [`15.13-alpine3.21`, `15-alpine3.21`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.21/Dockerfile) -- [`15.12-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/15/alpine3.20/Dockerfile) +- [`15.13-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.20/Dockerfile) -- [`14.17`, `14`, `14.17-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/bookworm/Dockerfile) +- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/14/bookworm/Dockerfile) -- [`14.17-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/bullseye/Dockerfile) +- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/14/bullseye/Dockerfile) -- [`14.17-alpine3.21`, `14-alpine3.21`, `14.17-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/alpine3.21/Dockerfile) +- [`14.18-alpine3.21`, `14-alpine3.21`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.21/Dockerfile) -- [`14.17-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/14/alpine3.20/Dockerfile) +- [`14.18-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.20/Dockerfile) -- [`13.20`, `13`, `13.20-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/bookworm/Dockerfile) +- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/13/bookworm/Dockerfile) -- [`13.20-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/bullseye/Dockerfile) +- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/13/bullseye/Dockerfile) -- [`13.20-alpine3.21`, `13-alpine3.21`, `13.20-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/alpine3.21/Dockerfile) +- [`13.21-alpine3.21`, `13-alpine3.21`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/13/alpine3.21/Dockerfile) -- [`13.20-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/cc254e85ed86e1f8c9052f9cbf0e3320324f0421/13/alpine3.20/Dockerfile) +- [`13.21-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/13/alpine3.20/Dockerfile) # Quick reference (cont.) From a70b991290efe4bca5de4576236f02b0e36eb0f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 May 2025 14:10:03 -0700 Subject: [PATCH 2149/2686] Run update.sh --- python/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/python/README.md b/python/README.md index 9b49920c7296..ec7875c42458 100644 --- a/python/README.md +++ b/python/README.md @@ -28,23 +28,23 @@ WARNING: ## Simple Tags -- [`3.14.0a7-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bookworm/Dockerfile) +- [`3.14.0b1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bookworm/Dockerfile) -- [`3.14.0a7-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0a7-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0b1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0a7-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bullseye/Dockerfile) +- [`3.14.0b1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bullseye/Dockerfile) -- [`3.14.0a7-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0b1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0a7-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0a7-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b1-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0a7-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0b1-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0a7-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0b1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0a7-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0b1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0a7-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0b1-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bookworm/Dockerfile) @@ -120,18 +120,18 @@ WARNING: ## Shared Tags -- `3.14.0a7`, `3.14-rc`: +- `3.14.0b1`, `3.14-rc`: - - [`3.14.0a7-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/bookworm/Dockerfile) - - [`3.14.0a7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0b1-bookworm`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bookworm/Dockerfile) + - [`3.14.0b1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0a7-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0b1-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0a7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0b1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.3`, `3.13`, `3`, `latest`: From 03fcba16c35b1d9a2ad747cb12596c788d297511 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 May 2025 15:10:23 -0700 Subject: [PATCH 2150/2686] Run update.sh --- node/README.md | 12 +++++------ php/README.md | 56 +++++++++++++------------------------------------- 2 files changed, 20 insertions(+), 48 deletions(-) diff --git a/node/README.md b/node/README.md index 3db0bd461fec..4409bcf8219b 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/alpine3.20/Dockerfile) +- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.1-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/alpine3.20/Dockerfile) -- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.0-alpine`, `24.0.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/alpine3.21/Dockerfile) +- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.1-alpine`, `24.0.1-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/alpine3.21/Dockerfile) -- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.0`, `24.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.1`, `24.0.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.0-bookworm-slim`, `24.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.1-bookworm-slim`, `24.0.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.0-bullseye`, `24.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.0-bullseye`, `24.0.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/b3ae4060c7bb20d34896ab3e1f5f3d2ee7dcdd10/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bullseye-slim/Dockerfile) - [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.20/Dockerfile) diff --git a/php/README.md b/php/README.md index ed74b8be3a4a..2eda30cae163 100644 --- a/php/README.md +++ b/php/README.md @@ -24,61 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.7RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.7RC1-bookworm`, `8.4-rc-bookworm`, `8.4.7RC1-cli`, `8.4-rc-cli`, `8.4.7RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.7-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.7-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.7-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.7`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/cli/Dockerfile) -- [`8.4.7RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.7RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.7-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.7-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/apache/Dockerfile) -- [`8.4.7RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.7RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.7-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.7-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/fpm/Dockerfile) -- [`8.4.7RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.7RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.7-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.7-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/zts/Dockerfile) -- [`8.4.7RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.7RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.7-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.7-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/cli/Dockerfile) -- [`8.4.7RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.7-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/apache/Dockerfile) -- [`8.4.7RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.7-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/fpm/Dockerfile) -- [`8.4.7RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.7-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/zts/Dockerfile) -- [`8.4.7RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.7RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.7RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.7RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.7-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.7-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.7-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.7-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.7RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.7RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.7-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.7-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.7RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.7RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.7-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.7-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.7RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.7RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.7-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.7-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.7RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.7-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.7RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/d21ab07e7f4014a5443f47c8ff8e292f9c703a58/8.4-rc/alpine3.20/zts/Dockerfile) - -- [`8.4.6-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.6-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.6-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.6`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/cli/Dockerfile) - -- [`8.4.6-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.6-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/apache/Dockerfile) - -- [`8.4.6-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.6-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/fpm/Dockerfile) - -- [`8.4.6-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.6-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bookworm/zts/Dockerfile) - -- [`8.4.6-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.6-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/cli/Dockerfile) - -- [`8.4.6-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/apache/Dockerfile) - -- [`8.4.6-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/fpm/Dockerfile) - -- [`8.4.6-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/bullseye/zts/Dockerfile) - -- [`8.4.6-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.6-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.6-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.6-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/cli/Dockerfile) - -- [`8.4.6-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.6-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/fpm/Dockerfile) - -- [`8.4.6-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.6-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.21/zts/Dockerfile) - -- [`8.4.6-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.6-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/cli/Dockerfile) - -- [`8.4.6-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/fpm/Dockerfile) - -- [`8.4.6-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/15c125ffb3ec5d08b0f68330dde53fa675fee0c9/8.4/alpine3.20/zts/Dockerfile) +- [`8.4.7-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/zts/Dockerfile) - [`8.3.21RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.21RC1-bookworm`, `8.3-rc-bookworm`, `8.3.21RC1-cli`, `8.3-rc-cli`, `8.3.21RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/cli/Dockerfile) From 98589579833ee60c23af5cde53fa72bbbdb396a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 May 2025 10:09:49 -0700 Subject: [PATCH 2151/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 100 ++++++++++++++-------------------- 1 file changed, 40 insertions(+), 60 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 38965d7d7a0b..37d42b8c9531 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,107 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u442-b06-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u452-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u442-b06-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u452-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u442-b06-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u452-b09-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-8u452-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u452-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u442-b06-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u452-b09-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.26_4-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.27_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.14_7-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.15_6-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/focal/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/focal/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.6_7-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jdk-focal`, `open-23-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jdk-jammy`, `open-23-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jdk-noble`, `open-23-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jre-focal`, `open-23-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jre-jammy`, `open-23-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-23.0.2_7-jre-noble`, `open-23-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.7_6-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u442-b06-jdk`, `open-8-jdk`: - - - [`open-8u442-b06-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-8u442-b06-jre`, `open-8-jre`: - - - [`open-8u442-b06-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-11.0.26_4-jdk`, `open-11-jdk`: +- `open-8u452-b09-jdk`, `open-8-jdk`: - - [`open-11.0.26_4-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u452-b09-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.26_4-jre`, `open-11-jre`: +- `open-8u452-b09-jre`, `open-8-jre`: - - [`open-11.0.26_4-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u452-b09-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.14_7-jdk`, `open-17-jdk`: +- `open-11.0.27_6-jdk`, `open-11-jdk`: - - [`open-17.0.14_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.27_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.14_7-jre`, `open-17-jre`: +- `open-11.0.27_6-jre`, `open-11-jre`: - - [`open-17.0.14_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.27_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.6_7-jdk`, `open-21-jdk`: +- `open-17.0.15_6-jdk`, `open-17-jdk`: - - [`open-21.0.6_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.15_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.6_7-jre`, `open-21-jre`: +- `open-17.0.15_6-jre`, `open-17-jre`: - - [`open-21.0.6_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.15_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-23.0.2_7-jdk`, `open-23-jdk`: +- `open-21.0.7_6-jdk`, `open-21-jdk`: - - [`open-23.0.2_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.7_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-23.0.2_7-jre`, `open-23-jre`: +- `open-21.0.7_6-jre`, `open-21-jre`: - - [`open-23.0.2_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/4b7a7c4704cf1d6b2241aa09f8dacef518cf6e74/23/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.7_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) From 7a7943e3b92dbfc3b4a7d80a4b741ed726e85495 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 May 2025 11:10:00 -0700 Subject: [PATCH 2152/2686] Run update.sh --- haproxy/README.md | 4 +- hylang/README.md | 143 ++++++++++++++++++++++++++-------------------- php/README.md | 56 +++++------------- xwiki/README.md | 12 +--- 4 files changed, 101 insertions(+), 114 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 5f780dd28167..56fdeef412b2 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev14`, `3.2-dev`, `3.2-dev14-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b0ab3d704bc22f8f92bb923ee3b5d79c91402a3e/3.2/Dockerfile) +- [`3.2-dev15`, `3.2-dev`, `3.2-dev15-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/40ab67138f90c67f0c898b1c7bb13719190d337b/3.2/Dockerfile) -- [`3.2-dev14-alpine`, `3.2-dev-alpine`, `3.2-dev14-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/b0ab3d704bc22f8f92bb923ee3b5d79c91402a3e/3.2/alpine/Dockerfile) +- [`3.2-dev15-alpine`, `3.2-dev-alpine`, `3.2-dev15-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/40ab67138f90c67f0c898b1c7bb13719190d337b/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/hylang/README.md b/hylang/README.md index 39f573489bcb..d7376add1721 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,117 +28,138 @@ WARNING: ## Simple Tags -- [`1.0.0-python3.13-bookworm`, `1.0-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.0.0-bookworm`, `1.0-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.0.0-python3.13-bullseye`, `1.0-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.0.0-bullseye`, `1.0-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.0.0-python3.13-alpine3.21`, `1.0-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.0.0-alpine3.21`, `1.0-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.0.0-python3.13-alpine`, `1.0-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.0.0-alpine`, `1.0-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.0.0-python3.13-alpine3.20`, `1.0-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.0.0-alpine3.20`, `1.0-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.1.0-python3.13-alpine3.20`, `1.1-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.1.0-alpine3.20`, `1.1-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.0.0-python3.13-windowsservercore-ltsc2025`, `1.0-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.0.0-windowsservercore-ltsc2025`, `1.0-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.0.0-python3.13-windowsservercore-ltsc2022`, `1.0-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.0.0-windowsservercore-ltsc2022`, `1.0-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.0.0-python3.13-windowsservercore-1809`, `1.0-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.0.0-windowsservercore-1809`, `1.0-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.1.0-python3.13-windowsservercore-1809`, `1.1-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.1.0-windowsservercore-1809`, `1.1-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) -- [`1.0.0-python3.12-bookworm`, `1.0-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.0.0-python3.12-bullseye`, `1.0-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.0.0-python3.12-alpine3.21`, `1.0-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.0.0-python3.12-alpine`, `1.0-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.0.0-python3.12-alpine3.20`, `1.0-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.1.0-python3.12-alpine3.20`, `1.1-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.0.0-python3.12-windowsservercore-ltsc2025`, `1.0-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.0.0-python3.12-windowsservercore-ltsc2022`, `1.0-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.0.0-python3.12-windowsservercore-1809`, `1.0-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.1.0-python3.12-windowsservercore-1809`, `1.1-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- [`1.0.0-python3.11-bookworm`, `1.0-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.0.0-python3.11-bullseye`, `1.0-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.0.0-python3.11-alpine3.21`, `1.0-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.0.0-python3.11-alpine`, `1.0-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.0.0-python3.11-alpine3.20`, `1.0-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.1.0-python3.11-alpine3.20`, `1.1-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.0.0-python3.10-bookworm`, `1.0-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.0.0-python3.10-bullseye`, `1.0-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.0.0-python3.10-alpine3.21`, `1.0-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.0.0-python3.10-alpine`, `1.0-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.0.0-python3.10-alpine3.20`, `1.0-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.1.0-python3.10-alpine3.20`, `1.1-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.0.0-python3.9-bookworm`, `1.0-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.0.0-python3.9-bullseye`, `1.0-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.0.0-python3.9-alpine3.21`, `1.0-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.0.0-python3.9-alpine`, `1.0-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.0.0-python3.9-alpine3.20`, `1.0-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.1.0-python3.9-alpine3.20`, `1.1-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.0.0-pypy3.11-bookworm`, `1.0-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.0.0-pypy3.11-windowsservercore-ltsc2025`, `1.0-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) -- [`1.0.0-pypy3.11-windowsservercore-ltsc2022`, `1.0-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.0.0-pypy3.11-windowsservercore-1809`, `1.0-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) +- [`1.1.0-python3.14-rc-alpine3.20`, `1.1-python3.14-rc-alpine3.20`, `1-python3.14-rc-alpine3.20`, `python3.14-rc-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.20) -- [`1.0.0-pypy3.10-bookworm`, `1.0-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.0.0-pypy-bookworm`, `1.0-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.0.0-pypy3.10-bullseye`, `1.0-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.0.0-pypy-bullseye`, `1.0-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2025`, `1.0-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.0.0-pypy-windowsservercore-ltsc2025`, `1.0-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-rc-windowsservercore-1809`, `1.1-python3.14-rc-windowsservercore-1809`, `1-python3.14-rc-windowsservercore-1809`, `python3.14-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-1809) -- [`1.0.0-pypy3.10-windowsservercore-ltsc2022`, `1.0-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.0.0-pypy-windowsservercore-ltsc2022`, `1.0-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.0.0-pypy3.10-windowsservercore-1809`, `1.0-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.0.0-pypy-windowsservercore-1809`, `1.0-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + +- [`1.1.0-pypy3.11-windowsservercore-1809`, `1.1-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) + +- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + +- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) + +- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + +- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + +- [`1.1.0-pypy3.10-windowsservercore-1809`, `1.1-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.1.0-pypy-windowsservercore-1809`, `1.1-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) ## Shared Tags -- `1.0.0-python3.13`, `1.0-python3.13`, `1-python3.13`, `python3.13`, `1.0.0`, `1.0`, `1`, `latest`: +- `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: + + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + +- `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.0.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.0.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.0.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.0.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.1.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) -- `1.0.0-python3.12`, `1.0-python3.12`, `1-python3.12`, `python3.12`: +- `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.0.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.0.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.0.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.0.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- `1.0.0-python3.11`, `1.0-python3.11`, `1-python3.11`, `python3.11`: +- `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.0.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- `1.0.0-python3.10`, `1.0-python3.10`, `1-python3.10`, `python3.10`: +- `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.0.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- `1.0.0-python3.9`, `1.0-python3.9`, `1-python3.9`, `python3.9`: +- `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.0.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-1809) -- `1.0.0-pypy3.11`, `1.0-pypy3.11`, `1-pypy3.11`, `pypy3.11`: +- `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - [`1.0.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.0.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.0.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) -- `1.0.0-pypy3.10`, `1.0-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.0.0-pypy`, `1.0-pypy`, `1-pypy`, `pypy`: +- `1.1.0-pypy3.10`, `1.1-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.0.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.0.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.0.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/0be72a84cbbfd005237177478e1c6bef44cccb36/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 2eda30cae163..f2e8540ec000 100644 --- a/php/README.md +++ b/php/README.md @@ -52,61 +52,33 @@ WARNING: - [`8.4.7-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/zts/Dockerfile) -- [`8.3.21RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.21RC1-bookworm`, `8.3-rc-bookworm`, `8.3.21RC1-cli`, `8.3-rc-cli`, `8.3.21RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.21-cli-bookworm`, `8.3-cli-bookworm`, `8.3.21-bookworm`, `8.3-bookworm`, `8.3.21-cli`, `8.3-cli`, `8.3.21`, `8.3`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/cli/Dockerfile) -- [`8.3.21RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.21RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.21-apache-bookworm`, `8.3-apache-bookworm`, `8.3.21-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/apache/Dockerfile) -- [`8.3.21RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.21RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.21-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.21-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/fpm/Dockerfile) -- [`8.3.21RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.21RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.21-zts-bookworm`, `8.3-zts-bookworm`, `8.3.21-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/zts/Dockerfile) -- [`8.3.21RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.21RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.21-cli-bullseye`, `8.3-cli-bullseye`, `8.3.21-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/cli/Dockerfile) -- [`8.3.21RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.21-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/apache/Dockerfile) -- [`8.3.21RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.21-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/fpm/Dockerfile) -- [`8.3.21RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.21-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/zts/Dockerfile) -- [`8.3.21RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.21RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.21RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.21RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.3.21-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.21-alpine3.21`, `8.3-alpine3.21`, `8.3.21-cli-alpine`, `8.3-cli-alpine`, `8.3.21-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.21RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.21RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.3.21-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.21-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.21RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.21RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.3.21-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.21-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/zts/Dockerfile) -- [`8.3.21RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.21RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/cli/Dockerfile) +- [`8.3.21-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.21-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/cli/Dockerfile) -- [`8.3.21RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/fpm/Dockerfile) +- [`8.3.21-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/fpm/Dockerfile) -- [`8.3.21RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/f03ec5af5ef2391c7010f78dbf4d1e83ae438081/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.20-cli-bookworm`, `8.3-cli-bookworm`, `8.3.20-bookworm`, `8.3-bookworm`, `8.3.20-cli`, `8.3-cli`, `8.3.20`, `8.3`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/cli/Dockerfile) - -- [`8.3.20-apache-bookworm`, `8.3-apache-bookworm`, `8.3.20-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/apache/Dockerfile) - -- [`8.3.20-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.20-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.20-zts-bookworm`, `8.3-zts-bookworm`, `8.3.20-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bookworm/zts/Dockerfile) - -- [`8.3.20-cli-bullseye`, `8.3-cli-bullseye`, `8.3.20-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/cli/Dockerfile) - -- [`8.3.20-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/apache/Dockerfile) - -- [`8.3.20-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.20-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/bullseye/zts/Dockerfile) - -- [`8.3.20-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.20-alpine3.21`, `8.3-alpine3.21`, `8.3.20-cli-alpine`, `8.3-cli-alpine`, `8.3.20-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.20-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.20-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.20-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.20-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.20-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.20-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.20-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.20-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/75d428f3ca1df6ada74e25ab79251ad201ec8d2e/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.21-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/zts/Dockerfile) - [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 083005ad8983..53ef187db2e2 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,17 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.3-mariadb-tomcat`, `17.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.6`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.6-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.7`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.6-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.6-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ceba10a9507ba7f663ce97ea055035884f05ad5/16/mariadb-tomcat/Dockerfile) - -- [`16.4`, `16.4.8`, `16.4-mysql-tomcat`, `16.4.8-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/mysql-tomcat/Dockerfile) - -- [`16.4-postgres-tomcat`, `16.4.8-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/postgres-tomcat/Dockerfile) - -- [`16.4-mariadb-tomcat`, `16.4.8-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/44640ccee2be1c86518cf844518f5bea1f432070/16.4/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 33a55d99d9910e32568f77f11a6df9dd700e856c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 May 2025 12:09:59 -0700 Subject: [PATCH 2153/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++---------------------- elasticsearch/README.md | 6 ++- gradle/README.md | 18 -------- kibana/README.md | 6 ++- logstash/README.md | 6 ++- 5 files changed, 54 insertions(+), 78 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index d294dc471fcd..9e9a7b7392f5 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2/Dockerfile) -- [`8-alpine3.18`, `8u452-alpine3.18`, `8-alpine3.18-full`, `8-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.18/Dockerfile) +- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.18-jre`, `8u452-alpine3.18-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.18/Dockerfile) +- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.21/Dockerfile) -- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jdk/alpine/3.21/Dockerfile) +- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2-generic/Dockerfile) -- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/8/jre/alpine/3.21/Dockerfile) +- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2023/Dockerfile) -- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2-generic/Dockerfile) +- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headless/al2023/Dockerfile) -- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headful/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headless/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headless/al2/Dockerfile) -- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headful/al2023/Dockerfile) +- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2/Dockerfile) -- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/headless/al2/Dockerfile) +- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.19/Dockerfile) -- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/al2/Dockerfile) +- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.18`, `11.0.27-alpine3.18`, `11-alpine3.18-full`, `11-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.18/Dockerfile) +- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.21/Dockerfile) -- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.19/Dockerfile) +- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2-generic/Dockerfile) -- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.20/Dockerfile) +- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2023/Dockerfile) -- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/11/jdk/alpine/3.21/Dockerfile) +- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headless/al2023/Dockerfile) -- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2-generic/Dockerfile) +- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headful/al2023/Dockerfile) -- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headless/al2/Dockerfile) -- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headless/al2023/Dockerfile) +- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headful/al2/Dockerfile) -- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headful/al2023/Dockerfile) +- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2/Dockerfile) -- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headless/al2/Dockerfile) +- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.19/Dockerfile) -- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/headful/al2/Dockerfile) +- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.20/Dockerfile) -- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/al2/Dockerfile) +- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.21/Dockerfile) -- [`17-alpine3.18`, `17.0.15-alpine3.18`, `17-alpine3.18-full`, `17-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.18/Dockerfile) +- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/al2-generic/Dockerfile) -- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.19/Dockerfile) +- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/al2023/Dockerfile) -- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.20/Dockerfile) +- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/headless/al2023/Dockerfile) -- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/17/jdk/alpine/3.21/Dockerfile) +- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/headful/al2023/Dockerfile) -- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/al2-generic/Dockerfile) +- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.19/Dockerfile) -- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/al2023/Dockerfile) +- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.20/Dockerfile) -- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/headless/al2023/Dockerfile) +- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.21/Dockerfile) -- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/headful/al2023/Dockerfile) +- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/al2023/Dockerfile) -- [`21-alpine3.18`, `21.0.7-alpine3.18`, `21-alpine3.18-full`, `21-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.18/Dockerfile) +- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/headless/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.19/Dockerfile) +- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/headful/al2023/Dockerfile) -- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.20/Dockerfile) +- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/21/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.20/Dockerfile) -- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/al2023/Dockerfile) - -- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/headless/al2023/Dockerfile) - -- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/headful/al2023/Dockerfile) - -- [`24-alpine3.18`, `24.0.1-alpine3.18`, `24-alpine3.18-full`, `24-alpine3.18-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.18/Dockerfile) - -- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.19/Dockerfile) - -- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.20/Dockerfile) - -- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5863f873696768f24eb1640f9598b777d0c712d4/24/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index af30f55504c6..2787cb442b29 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,9 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/elasticsearch/Dockerfile) +- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/elasticsearch/Dockerfile) -- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/elasticsearch/Dockerfile) +- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/elasticsearch/Dockerfile) + +- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 8a12eeee88e0..c2ab5d0868aa 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -177,24 +177,6 @@ If you are mounting a volume and the uid/gid running Docker is not *1000*, you s Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. -# Image Variants - -The `gradle` images come in many flavors, each designed for a specific use case. - -## `gradle:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. - -## `gradle:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](https://gradle.org/license/) for the software contained in this image. diff --git a/kibana/README.md b/kibana/README.md index edb78e4a3632..c87b3e87966f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,9 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/kibana/Dockerfile) +- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/kibana/Dockerfile) -- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/kibana/Dockerfile) +- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/kibana/Dockerfile) + +- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 678d2393fdee..ba58f744764d 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,9 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) -- [`8.17.5`](https://github.com/elastic/dockerfiles/blob/ec338e388e5d359de48c743b4f2314436a337a8d/logstash/Dockerfile) +- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/logstash/Dockerfile) -- [`8.18.0`](https://github.com/elastic/dockerfiles/blob/0bc901e7edcccaebfe262d53c0be6be4f90df8a5/logstash/Dockerfile) +- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/logstash/Dockerfile) + +- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/logstash/Dockerfile) # Quick reference (cont.) From 31e4760cbb23457753cd698ee803305e5c67db7b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 May 2025 13:10:06 -0700 Subject: [PATCH 2154/2686] Run update.sh --- gradle/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gradle/README.md b/gradle/README.md index c2ab5d0868aa..8a12eeee88e0 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -177,6 +177,24 @@ If you are mounting a volume and the uid/gid running Docker is not *1000*, you s Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. +# Image Variants + +The `gradle` images come in many flavors, each designed for a specific use case. + +## `gradle:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. + +## `gradle:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](https://gradle.org/license/) for the software contained in this image. From ed63d18f88f58d6fd7bb6edc5d8343df82403bd3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 9 May 2025 17:10:07 -0700 Subject: [PATCH 2155/2686] Run update.sh --- ghost/README.md | 4 +-- python/README.md | 70 ++++++++++++++++++++++++------------------------ 2 files changed, 37 insertions(+), 37 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 52f51af2a848..279f96e899d9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.119.1`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1df92732715a0cc5a8c7da811859285d08622356/5/debian/Dockerfile) +- [`5.119.2`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e19100c7aab4ecdb73b8978dc6819d26b0346210/5/debian/Dockerfile) -- [`5.119.1-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1df92732715a0cc5a8c7da811859285d08622356/5/alpine/Dockerfile) +- [`5.119.2-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e19100c7aab4ecdb73b8978dc6819d26b0346210/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index ec7875c42458..14f8968e9f7f 100644 --- a/python/README.md +++ b/python/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`3.14.0b1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bookworm/Dockerfile) +- [`3.14.0b1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bookworm/Dockerfile) -- [`3.14.0b1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0b1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0b1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bullseye/Dockerfile) +- [`3.14.0b1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bullseye/Dockerfile) -- [`3.14.0b1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0b1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b1-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b1-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0b1-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0b1-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/alpine3.20/Dockerfile) - [`3.14.0b1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -46,17 +46,17 @@ WARNING: - [`3.14.0b1-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bookworm/Dockerfile) +- [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) -- [`3.13.3-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.3-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/slim-bookworm/Dockerfile) +- [`3.13.3-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.3-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bookworm/Dockerfile) -- [`3.13.3-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bullseye/Dockerfile) +- [`3.13.3-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bullseye/Dockerfile) -- [`3.13.3-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/slim-bullseye/Dockerfile) +- [`3.13.3-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bullseye/Dockerfile) -- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/alpine3.21/Dockerfile) +- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.21/Dockerfile) -- [`3.13.3-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/alpine3.20/Dockerfile) +- [`3.13.3-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.20/Dockerfile) - [`3.13.3-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) @@ -64,17 +64,17 @@ WARNING: - [`3.13.3-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) -- [`3.12.10-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bookworm/Dockerfile) +- [`3.12.10-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) -- [`3.12.10-slim-bookworm`, `3.12-slim-bookworm`, `3.12.10-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/slim-bookworm/Dockerfile) +- [`3.12.10-slim-bookworm`, `3.12-slim-bookworm`, `3.12.10-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bookworm/Dockerfile) -- [`3.12.10-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bullseye/Dockerfile) +- [`3.12.10-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bullseye/Dockerfile) -- [`3.12.10-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/slim-bullseye/Dockerfile) +- [`3.12.10-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bullseye/Dockerfile) -- [`3.12.10-alpine3.21`, `3.12-alpine3.21`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/alpine3.21/Dockerfile) +- [`3.12.10-alpine3.21`, `3.12-alpine3.21`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.21/Dockerfile) -- [`3.12.10-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/alpine3.20/Dockerfile) +- [`3.12.10-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.20/Dockerfile) - [`3.12.10-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) @@ -82,29 +82,29 @@ WARNING: - [`3.12.10-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) -- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bookworm/Dockerfile) +- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bookworm/Dockerfile) -- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/slim-bookworm/Dockerfile) +- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bookworm/Dockerfile) -- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bullseye/Dockerfile) +- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bullseye/Dockerfile) -- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/slim-bullseye/Dockerfile) +- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bullseye/Dockerfile) -- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/alpine3.21/Dockerfile) +- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.21/Dockerfile) -- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/alpine3.20/Dockerfile) +- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.20/Dockerfile) -- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bookworm/Dockerfile) +- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bookworm/Dockerfile) -- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/slim-bookworm/Dockerfile) +- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/slim-bookworm/Dockerfile) -- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bullseye/Dockerfile) +- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bullseye/Dockerfile) -- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/slim-bullseye/Dockerfile) +- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/slim-bullseye/Dockerfile) -- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/alpine3.21/Dockerfile) +- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.21/Dockerfile) -- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/alpine3.20/Dockerfile) +- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.20/Dockerfile) - [`3.9.22-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) @@ -122,7 +122,7 @@ WARNING: - `3.14.0b1`, `3.14-rc`: - - [`3.14.0b1-bookworm`](https://github.com/docker-library/python/blob/4cf0116a7bbe300e199a0565ebf6656af61352c6/3.14-rc/bookworm/Dockerfile) + - [`3.14.0b1-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bookworm/Dockerfile) - [`3.14.0b1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.14.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) @@ -135,7 +135,7 @@ WARNING: - `3.13.3`, `3.13`, `3`, `latest`: - - [`3.13.3-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/bookworm/Dockerfile) + - [`3.13.3-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) @@ -148,7 +148,7 @@ WARNING: - `3.12.10`, `3.12`: - - [`3.12.10-bookworm`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/bookworm/Dockerfile) + - [`3.12.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) @@ -161,11 +161,11 @@ WARNING: - `3.11.12`, `3.11`: - - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.11/bookworm/Dockerfile) + - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bookworm/Dockerfile) - `3.10.17`, `3.10`: - - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.10/bookworm/Dockerfile) + - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bookworm/Dockerfile) - `3.9.22`, `3.9`: From 528c7dcbb45c7503b4d5d51f5e2184b867f275e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 May 2025 12:09:47 -0700 Subject: [PATCH 2156/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 84d33d2c6b08..35ef974ef81d 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.base) +- [`latest`, `base`, `base-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.base) -- [`base-devel`, `base-devel-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250504.0.344409`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ea8b6bc31f9b4089b14fae4b6489bd3a7379c1ef/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index eb153511e107..52ebeb4f0ac1 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/01d2007806210d37a6e2e8e14c119e2ba88ec06e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/536de2f889e63dbc411cfd408bc57c41f4a8bad2/Dockerfile) # Quick reference (cont.) From 088c1148dc78e75d0636fb73fb8ba6807ae21f08 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 12 May 2025 13:10:05 -0700 Subject: [PATCH 2157/2686] Run update.sh --- golang/README.md | 12 ++++++------ openjdk/README.md | 50 +++++++++++++++++++++++------------------------ 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/golang/README.md b/golang/README.md index 660b985df156..cf64f07557b3 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.9-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250504-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bookworm/Dockerfile) +- [`tip-20250509-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bookworm/Dockerfile) -- [`tip-20250504-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bullseye/Dockerfile) +- [`tip-20250509-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bullseye/Dockerfile) -- [`tip-20250504-alpine3.21`, `tip-alpine3.21`, `tip-20250504-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/alpine3.21/Dockerfile) +- [`tip-20250509-alpine3.21`, `tip-alpine3.21`, `tip-20250509-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/alpine3.21/Dockerfile) -- [`tip-20250504-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/alpine3.20/Dockerfile) +- [`tip-20250509-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250504`, `tip`: +- `tip-20250509`, `tip`: - - [`tip-20250504-bookworm`](https://github.com/docker-library/golang/blob/d289d20ba91749b735fa54c455de3378413b6d10/tip/bookworm/Dockerfile) + - [`tip-20250509-bookworm`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index d914d3fe21a1..4e010ebac623 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-21-jdk-oraclelinux9`, `25-ea-21-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-21-jdk-oracle`, `25-ea-21-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-22-jdk-oraclelinux9`, `25-ea-22-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-22-jdk-oracle`, `25-ea-22-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-21-jdk-oraclelinux8`, `25-ea-21-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-22-jdk-oraclelinux8`, `25-ea-22-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-21-jdk-bookworm`, `25-ea-21-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/bookworm/Dockerfile) +- [`25-ea-22-jdk-bookworm`, `25-ea-22-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/bookworm/Dockerfile) -- [`25-ea-21-jdk-slim-bookworm`, `25-ea-21-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-21-jdk-slim`, `25-ea-21-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-22-jdk-slim-bookworm`, `25-ea-22-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-22-jdk-slim`, `25-ea-22-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-21-jdk-bullseye`, `25-ea-21-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/bullseye/Dockerfile) +- [`25-ea-22-jdk-bullseye`, `25-ea-22-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/bullseye/Dockerfile) -- [`25-ea-21-jdk-slim-bullseye`, `25-ea-21-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-22-jdk-slim-bullseye`, `25-ea-22-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-21-jdk-windowsservercore-ltsc2025`, `25-ea-21-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-22-jdk-windowsservercore-ltsc2025`, `25-ea-22-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-21-jdk-windowsservercore-ltsc2022`, `25-ea-21-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-22-jdk-windowsservercore-ltsc2022`, `25-ea-22-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-21-jdk-windowsservercore-1809`, `25-ea-21-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-22-jdk-windowsservercore-1809`, `25-ea-22-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-21-jdk-nanoserver-ltsc2025`, `25-ea-21-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-22-jdk-nanoserver-ltsc2025`, `25-ea-22-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-21-jdk-nanoserver-ltsc2022`, `25-ea-21-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-22-jdk-nanoserver-ltsc2022`, `25-ea-22-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-21-jdk-nanoserver-1809`, `25-ea-21-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-22-jdk-nanoserver-1809`, `25-ea-22-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-21-jdk`, `25-ea-21`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-22-jdk`, `25-ea-22`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-21-jdk-windowsservercore`, `25-ea-21-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-22-jdk-windowsservercore`, `25-ea-22-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-21-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-21-jdk-nanoserver`, `25-ea-21-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-22-jdk-nanoserver`, `25-ea-22-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-21-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-21-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-21-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/89d4cf3aac108139233c973cfc7b72bdd4e448d7/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 7a1f29776f0a4ed3a5a522c05e76a84b526f27d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 May 2025 11:09:50 -0700 Subject: [PATCH 2158/2686] Run update.sh --- clojure/README.md | 182 ++++++++++++++++++++++++++++------------------ 1 file changed, 111 insertions(+), 71 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index b34943d3a802..631c1c7a4a00 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,143 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-8-tools-deps-1.12.0.1530-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-8-tools-deps-1.12.0.1530-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-11-tools-deps-1.12.0.1530-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.0.1530-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-17/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-17/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-21/lein/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.0.1530-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.0.1530-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-24/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-21/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-21/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/52822dd010ad5fbbaf3c6d5f9c1f6102194815f9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) + +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) + +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) + +- [`temurin-21-tools-deps-1.12.0.1530-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.0.1530-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-21/tools-deps/Dockerfile) + +- [`temurin-21-tools-deps-1.12.0.1530-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.0.1530-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-21/tools-deps/Dockerfile) + +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) + +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-24/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-24/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-24/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-24/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-24/lein/Dockerfile) + +- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-24/lein/Dockerfile) + +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) + +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-24/tools-deps/Dockerfile) + +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) + +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-24/tools-deps/Dockerfile) + +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) + +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) + +- [`temurin-24-tools-deps-1.12.0.1530-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-24/tools-deps/Dockerfile) + +- [`temurin-24-tools-deps-1.12.0.1530-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) @@ -168,7 +208,7 @@ WARNING: [https://github.com/Quantisan/docker-clojure/issues](https://github.com/Quantisan/docker-clojure/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/clojure/), [`arm64v8`](https://hub.docker.com/r/arm64v8/clojure/) + [`amd64`](https://hub.docker.com/r/amd64/clojure/), [`arm64v8`](https://hub.docker.com/r/arm64v8/clojure/), [`ppc64le`](https://hub.docker.com/r/ppc64le/clojure/), [`riscv64`](https://hub.docker.com/r/riscv64/clojure/), [`s390x`](https://hub.docker.com/r/s390x/clojure/) - **Published image artifact details**: [repo-info repo's `repos/clojure/` directory](https://github.com/docker-library/repo-info/blob/master/repos/clojure) ([history](https://github.com/docker-library/repo-info/commits/master/repos/clojure)) @@ -267,7 +307,7 @@ The `clojure` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. From 5511b083c851332920999f10dac530b1e3fb8ca6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 May 2025 12:09:54 -0700 Subject: [PATCH 2159/2686] Run update.sh --- jetty/README.md | 34 ++++++++++---------- neo4j/README.md | 4 +-- redis/README.md | 4 +-- tomcat/README.md | 80 ++++++++++++++++++++++++------------------------ 4 files changed, 61 insertions(+), 61 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 2a4841ce3315..dc63aa38281d 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.19-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.19-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.20-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.20-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.19-jre21`, `12.0-jre21`, `12-jre21`, `12.0.19-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.20-jre21`, `12.0-jre21`, `12-jre21`, `12.0.20-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.19-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.19-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.20-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.20-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.19-jre17`, `12.0-jre17`, `12-jre17`, `12.0.19-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.20-jre17`, `12.0-jre17`, `12-jre17`, `12.0.20-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.19-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.19-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.20-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.20-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.19-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.19-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.20-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.20-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.19-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.19-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.20-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.20-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.19`, `12.0`, `12`, `12.0.19-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.19-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.19-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.20`, `12.0`, `12`, `12.0.20-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.20-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.20-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.19-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.19-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.20-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.20-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.19-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.19-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.20-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.20-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.19-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/339be720159332409afc26c2aceff1354c2d46a0/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.20-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.19-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.20-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.19-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.20-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.19-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.19-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.20-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.20-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.19-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.20-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.19-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.20-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.19-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/21073d1ee04780383ec3a3afdd777351501823aa/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.20-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 13ebd5bd5b3c..57060ddee855 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -40,9 +40,9 @@ WARNING: - [`5.26.6-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/enterprise/Dockerfile) -- [`4.4.42`, `4.4.42-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/community/Dockerfile) +- [`4.4.43`, `4.4.43-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/48b3bb8a4fe04db7357d08343502edd588493af0/4.4.43/bullseye/community/Dockerfile) -- [`4.4.42-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/33f079b10e1f3b69b6e8565ac788419462e237e9/4.4.42/bullseye/enterprise/Dockerfile) +- [`4.4.43-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/48b3bb8a4fe04db7357d08343502edd588493af0/4.4.43/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index 391b3fde91b4..e9f05b03f515 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.0`, `8.0`, `8`, `8.0.0-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/7fc7e5625cd84b832db85561cb73b1bef78583fa/debian/Dockerfile) +- [`8.0.1`, `8.0`, `8`, `8.0.1-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/fe864e383ae7c5c891a694f9e0c16f8459a62234/debian/Dockerfile) -- [`8.0.0-alpine`, `8.0-alpine`, `8-alpine`, `8.0.0-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/7fc7e5625cd84b832db85561cb73b1bef78583fa/alpine/Dockerfile) +- [`8.0.1-alpine`, `8.0-alpine`, `8-alpine`, `8.0.1-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/fe864e383ae7c5c891a694f9e0c16f8459a62234/alpine/Dockerfile) - [`7.4.3`, `7.4`, `7`, `7.4.3-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/debian/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index f05c7795e639..4866f97470cc 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,85 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.6-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.6-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.6-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.6`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.7-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.7-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.7-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.7`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.6-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.6-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.6-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.7-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.7-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.7-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.6-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.7-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.6-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.7-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.6-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.6-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.6-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.7-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.7-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.7-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.6-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.6-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.6-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.7-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.7-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.7-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.6-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.7-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.6-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/382ec881edccd0ae325b0124c1f723aafea7fc44/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.7-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.40-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.40-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.40-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.40`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.41-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.41-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.41-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.41`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.40-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.40-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.40-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.41-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.41-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.41-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.40-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.41-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.40-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.41-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.40-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.40-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.40-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.41-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.41-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.41-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.40-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.40-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.40-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.41-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.41-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.41-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.40-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.41-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.40-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.41-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.40-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.40-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.40-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.41-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.41-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.41-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.40-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.40-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.40-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.41-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.41-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.41-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.40-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.41-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.40-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1d8335aadffc0643d8110fac5be9b6e441da254d/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.41-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.104-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.104-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.104-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.104`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.105-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.105-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.105-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.105`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.104-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.104-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.104-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.105-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.105-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.105-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.104-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.105-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.104-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.105-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.104-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.104-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.105-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.105-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.104-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.104-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.104-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.105-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.105-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.105-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.104-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.104-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.104-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.105-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.105-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.105-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.104-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.105-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.104-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.105-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.104-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.104-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.105-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.105-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.104-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.104-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.104-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.105-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.105-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.105-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.104-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.104-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.104-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.105-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.105-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.105-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.104-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.105-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.104-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.105-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.104-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.104-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.105-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.105-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.104-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.104-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.104-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.105-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.105-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.105-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.104-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.104-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.104-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.105-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.105-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.105-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.104-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.105-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.104-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.105-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.104-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.104-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2e0f5c8b1fd0909d48795464c5675cb8ed4dc7ec/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.105-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.105-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From ebc44abf49669c271790a401848d753aa6dc086d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 May 2025 13:10:06 -0700 Subject: [PATCH 2160/2686] Run update.sh --- julia/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/julia/README.md b/julia/README.md index d51e4d8f5fc1..7d9870b4fe59 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,19 +28,19 @@ WARNING: ## Simple Tags -- [`1.12.0-beta2-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-beta3-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-beta2-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bullseye/Dockerfile) +- [`1.12.0-beta3-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bullseye/Dockerfile) -- [`1.12.0-beta2-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`, `1.12.0-beta2-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/alpine3.21/Dockerfile) +- [`1.12.0-beta3-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`, `1.12.0-beta3-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.21/Dockerfile) -- [`1.12.0-beta2-alpine3.20`, `1.12-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/alpine3.20/Dockerfile) +- [`1.12.0-beta3-alpine3.20`, `1.12-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.20/Dockerfile) -- [`1.12.0-beta2-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-beta3-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-beta2-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-beta3-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.12.0-beta2-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) +- [`1.12.0-beta3-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) - [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) @@ -72,18 +72,18 @@ WARNING: ## Shared Tags -- `1.12.0-beta2`, `1.12-rc`, `rc`: +- `1.12.0-beta3`, `1.12-rc`, `rc`: - - [`1.12.0-beta2-bookworm`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/bookworm/Dockerfile) - - [`1.12.0-beta2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.12.0-beta3-bookworm`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) -- `1.12.0-beta2-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-beta3-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-beta2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta2-windowsservercore-1809`](https://github.com/docker-library/julia/blob/1905a163646ec275db431f7f88ed4837fa36572d/1.12-rc/windows/windowsservercore-1809/Dockerfile) + - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) - `1.11.5`, `1.11`, `1`, `latest`: From 50d63816ed5236da30313d4c8385013590a9be02 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 13 May 2025 17:10:09 -0700 Subject: [PATCH 2161/2686] Run update.sh --- varnish/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index 18ab89879ba3..e0afca175869 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.0`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/fresh/debian/Dockerfile) +- [`fresh`, `7.7.1`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.7.0-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.7.1-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/fresh/alpine/Dockerfile) -- [`old`, `7.6.1`, `7.6`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/old/debian/Dockerfile) +- [`old`, `7.6.3`, `7.6`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/old/debian/Dockerfile) -- [`old-alpine`, `7.6.1-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/b28634cf1517af2f6e2eb79b993f9bd42f7ad8bc/old/alpine/Dockerfile) +- [`old-alpine`, `7.6.3-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/old/alpine/Dockerfile) -- [`stable`, `6.0.13`, `6.0`](https://github.com/varnish/docker-varnish/blob/2195c6673d226d168014f6b7b65ab2c633246689/stable/debian/Dockerfile) +- [`stable`, `6.0.14`, `6.0`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/stable/debian/Dockerfile) # Quick reference (cont.) From ba62c2b04a9d9ed9b2b41d5d5d9f83ce0fa60b16 Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Wed, 14 May 2025 15:15:12 +0200 Subject: [PATCH 2162/2686] emqx: add deprecation notice --- emqx/deprecated.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 emqx/deprecated.md diff --git a/emqx/deprecated.md b/emqx/deprecated.md new file mode 100644 index 000000000000..b4863cbe2a28 --- /dev/null +++ b/emqx/deprecated.md @@ -0,0 +1,5 @@ +Starting from v5.9.0, EMQX has unified all features from the previous Open Source and Enterprise editions into a single, powerful offering with the Business Source License (BSL) 1.1. + +If you want to understand why we made the change, please read this [blog post](https://www.emqx.com/en/news/emqx-adopts-business-source-license), and if you want to know more about the new license, please read the [EMQX Licensing FAQ](https://www.emqx.com/en/content/license-faq). + +Consequently, we stopped publishing the official Dockehub `emqx` image. EMQX v5.9.0+ will only be available in the `emqx/emqx` and `emqx/emqx-enterprise` Docker repositories. From 0b0cfc03cd334ac70cd40c52d71b2a85a7fa3347 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 May 2025 12:09:53 -0700 Subject: [PATCH 2163/2686] Run update.sh --- haskell/README.md | 16 ++++++++-------- jetty/README.md | 34 +++++++++++++++++----------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/haskell/README.md b/haskell/README.md index 6cb6dd4e02e2..7ac23e9d7dd8 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.12/bookworm/Dockerfile) +- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.12/bookworm/Dockerfile) -- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.12/slim-bookworm/Dockerfile) +- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.12/slim-bookworm/Dockerfile) -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.10/bullseye/Dockerfile) +- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.10/bullseye/Dockerfile) -- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.10/slim-bullseye/Dockerfile) +- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.10/slim-bullseye/Dockerfile) -- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.8/bullseye/Dockerfile) +- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.8/bullseye/Dockerfile) -- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.8/slim-bullseye/Dockerfile) +- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.8/slim-bullseye/Dockerfile) -- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.6/bullseye/Dockerfile) +- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.6/bullseye/Dockerfile) -- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/e7f56b0064dea2d53541ca85a9b2d2cb82cf8c13/9.6/slim-bullseye/Dockerfile) +- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index dc63aa38281d..36c8bd7093dd 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.20-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.20-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.21-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.21-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.20-jre21`, `12.0-jre21`, `12-jre21`, `12.0.20-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.21-jre21`, `12.0-jre21`, `12-jre21`, `12.0.21-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.20-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.20-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.21-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.21-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.20-jre17`, `12.0-jre17`, `12-jre17`, `12.0.20-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.21-jre17`, `12.0-jre17`, `12-jre17`, `12.0.21-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.20-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.20-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.21-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.21-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.20-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.20-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.21-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.21-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.20-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.20-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.21-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.21-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.20`, `12.0`, `12`, `12.0.20-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.20-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.20-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.21`, `12.0`, `12`, `12.0.21-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.21-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.21-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.20-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.20-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.21-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.21-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.20-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.20-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.21-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.21-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.20-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.21-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.20-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.21-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.20-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.21-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.20-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.20-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.21-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.21-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.20-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.21-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.20-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.21-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.20-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/3e0493215a3f0824c7066f1e4ca7a46223fe1099/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.21-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) From 0e4604f7e26aba5d70035ca940628ca555432902 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 14 May 2025 13:09:54 -0700 Subject: [PATCH 2164/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- ibmjava/README.md | 6 +++--- xwiki/README.md | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 279f96e899d9..29fcda028a64 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.119.2`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e19100c7aab4ecdb73b8978dc6819d26b0346210/5/debian/Dockerfile) +- [`5.119.3`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/370aac722c97cb23c49488d077afd13dccfc374b/5/debian/Dockerfile) -- [`5.119.2-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e19100c7aab4ecdb73b8978dc6819d26b0346210/5/alpine/Dockerfile) +- [`5.119.3-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/370aac722c97cb23c49488d077afd13dccfc374b/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 56fdeef412b2..355d769610df 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev15`, `3.2-dev`, `3.2-dev15-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/40ab67138f90c67f0c898b1c7bb13719190d337b/3.2/Dockerfile) +- [`3.2-dev16`, `3.2-dev`, `3.2-dev16-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7cf95bc0438dd2aa3973dacf392c74a0c31abb2d/3.2/Dockerfile) -- [`3.2-dev15-alpine`, `3.2-dev-alpine`, `3.2-dev15-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/40ab67138f90c67f0c898b1c7bb13719190d337b/3.2/alpine/Dockerfile) +- [`3.2-dev16-alpine`, `3.2-dev-alpine`, `3.2-dev16-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7cf95bc0438dd2aa3973dacf392c74a0c31abb2d/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/ibmjava/README.md b/ibmjava/README.md index 9824b0f8f74e..8ab9364dbead 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/00a17cb73f516a49cd3c0aae3d92c9fd9c74f7aa/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 53ef187db2e2..d00dba4df337 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.3-mariadb-tomcat`, `17.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.7`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.7-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.8`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.7-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.7-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ad14b6b0e667f9de7e65e564d7004b211ae6f52/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From bf6e1ab2ebae0fb4dc4da816e06424c613d6938d Mon Sep 17 00:00:00 2001 From: Ivan Dyachkov Date: Thu, 15 May 2025 08:37:29 +0200 Subject: [PATCH 2165/2686] emqx: refine deprecation notice --- emqx/deprecated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/deprecated.md b/emqx/deprecated.md index b4863cbe2a28..b20afcf8e225 100644 --- a/emqx/deprecated.md +++ b/emqx/deprecated.md @@ -2,4 +2,4 @@ Starting from v5.9.0, EMQX has unified all features from the previous Open Sourc If you want to understand why we made the change, please read this [blog post](https://www.emqx.com/en/news/emqx-adopts-business-source-license), and if you want to know more about the new license, please read the [EMQX Licensing FAQ](https://www.emqx.com/en/content/license-faq). -Consequently, we stopped publishing the official Dockehub `emqx` image. EMQX v5.9.0+ will only be available in the `emqx/emqx` and `emqx/emqx-enterprise` Docker repositories. +Consequently, we stopped publishing the `emqx` Docker Official Image. EMQX v5.9.0+ will only be available in the [`emqx/emqx`](https://hub.docker.com/r/emqx/emqx) and [`emqx/emqx-enterprise`](https://hub.docker.com/r/emqx/emqx-enterprise) Docker Hub repositories. From 2377c09f936354810c1374917e59b7319f8a00d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 May 2025 08:09:53 -0700 Subject: [PATCH 2166/2686] Run update.sh --- node/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index 4409bcf8219b..129a4011a21b 100644 --- a/node/README.md +++ b/node/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.1-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/alpine3.20/Dockerfile) +- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.2-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/alpine3.20/Dockerfile) -- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.1-alpine`, `24.0.1-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/alpine3.21/Dockerfile) +- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.2-alpine`, `24.0.2-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/alpine3.21/Dockerfile) -- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.1`, `24.0.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.2`, `24.0.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.1-bookworm-slim`, `24.0.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.2-bookworm-slim`, `24.0.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.0-bullseye`, `24.0.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.0-bullseye`, `24.0.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d9138b93aec8cd4b4febaae0b4e40b3272015ca6/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bullseye-slim/Dockerfile) -- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.0-alpine3.20`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.20/Dockerfile) +- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.1-alpine3.20`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.20/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.0-alpine`, `23.11.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.1-alpine`, `23.11.1-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.21/Dockerfile) -- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.0`, `23.11.0-bookworm`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm/Dockerfile) +- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.1`, `23.11.1-bookworm`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bookworm/Dockerfile) -- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.0-bookworm-slim`, `23.11.0-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bookworm-slim/Dockerfile) +- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.1-bookworm-slim`, `23.11.1-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bookworm-slim/Dockerfile) -- [`23-bullseye`, `23.11-bullseye`, `23.11.0-bullseye`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye/Dockerfile) +- [`23-bullseye`, `23.11-bullseye`, `23.11.1-bullseye`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye/Dockerfile) -- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/f6908ff3eb35a5d0c8fc60086fd29ae16e3abdba/23/bullseye-slim/Dockerfile) +- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.15-alpine3.20`, `22.15.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.15-alpine3.20`, `22.15.1-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.15-alpine`, `22.15-alpine3.21`, `22.15.0-alpine`, `22.15.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.15-alpine`, `22.15-alpine3.21`, `22.15.1-alpine`, `22.15.1-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.15`, `22.15-bookworm`, `22.15.0`, `22.15.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.15`, `22.15-bookworm`, `22.15.1`, `22.15.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.15-bookworm-slim`, `22.15-slim`, `22.15.0-bookworm-slim`, `22.15.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.15-bookworm-slim`, `22.15-slim`, `22.15.1-bookworm-slim`, `22.15.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.15-bullseye`, `22.15.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.15-bullseye`, `22.15.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.15-bullseye-slim`, `22.15.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/9bb97e784231f01e61df4d22aaa95a110432a1c7/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.15-bullseye-slim`, `22.15.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.1-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/alpine3.20/Dockerfile) +- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.2-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.20/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.1-alpine`, `20.19.1-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.2-alpine`, `20.19.2-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.21/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.1`, `20.19.1-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.2`, `20.19.2-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.1-bookworm-slim`, `20.19.1-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.2-bookworm-slim`, `20.19.2-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.1-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.2-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.1-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/59723c6c97abbac39c8fbc4fa09ab52ba33d42db/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.2-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bullseye-slim/Dockerfile) - [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.8-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.20/Dockerfile) From bd16fc3d3706c12a1b2ada960cd48c7cb2d9c3a5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 May 2025 12:09:52 -0700 Subject: [PATCH 2167/2686] Run update.sh --- composer/README.md | 6 +++--- crate/README.md | 2 +- rust/README.md | 12 ++++++------ ubuntu/README.md | 2 ++ 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/composer/README.md b/composer/README.md index 0ecf820552e2..c040a15b1468 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/lts/Dockerfile) +- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/15ee952ef914adfc785fd77e4a0b619401dcc194/lts/Dockerfile) -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/722eb1639245daf4cf6980d2de8737e204f56384/legacy/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/15ee952ef914adfc785fd77e4a0b619401dcc194/legacy/Dockerfile) -- [`2.8.8`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/bb857457676cec69169962eadc2265beaa2d98f9/latest/Dockerfile) +- [`2.8.9`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/100f579f6234b361017ae72b9de677ea04859ab7/latest/Dockerfile) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 744425c7caa5..e1203801e742 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.5`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/97130ba5d0e281dc14187f6c503e98aa26e5ab35/Dockerfile) +- [`5.10.6`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/c03b3583d255cef7e4bf78e4159b6eb2e8d4fbe1/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/rust/README.md b/rust/README.md index 09d5f1043dc8..e1a914306239 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.86-bullseye`, `1.86.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.87-bullseye`, `1.87.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.86-slim-bullseye`, `1.86.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.87-slim-bullseye`, `1.87.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.86-bookworm`, `1.86.0-bookworm`, `bookworm`, `1`, `1.86`, `1.86.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.87-bookworm`, `1.87.0-bookworm`, `bookworm`, `1`, `1.87`, `1.87.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.86-slim-bookworm`, `1.86.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.86-slim`, `1.86.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.87-slim-bookworm`, `1.87.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.87-slim`, `1.87.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.86-alpine3.20`, `1.86.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.87-alpine3.20`, `1.87.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.86-alpine3.21`, `1.86.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.86-alpine`, `1.86.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/4c319c1b759ebc1f3452f2c3b62f75b509baa4e6/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.87-alpine3.21`, `1.87.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.87-alpine`, `1.87.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 3e5351bff2f4..4883a5da14db 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -34,6 +34,8 @@ WARNING: - [`25.04`, `plucky-20250415`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250415-9aa542b4&id=9aa542b421288860569e4375a11053227643ddf8) +- [`25.10`, `questing-20250514`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250514-fdfe5cc8&id=fdfe5cc8f8ad756c85ece74b2d96318dc7334468) + # Quick reference (cont.) - **Where to file issues**: From 8716d0ca28f96767d09051bd2ce2922d56b1de90 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 May 2025 14:09:47 -0700 Subject: [PATCH 2168/2686] Run update.sh --- rocket.chat/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 16d1e4dd8aee..342f4cb6e86e 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.5.1`, `7.5`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/21fc4da79e661f052063606584195cf342730fbc/7.5/Dockerfile) +- [`7.6.0`, `7.6`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.6/Dockerfile) -- [`7.4.2`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/21fc4da79e661f052063606584195cf342730fbc/7.4/Dockerfile) +- [`7.5.1`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.5/Dockerfile) -- [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/3298af870432633166621cf11ba33105ca062a4e/7.3/Dockerfile) +- [`7.4.2`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.4/Dockerfile) + +- [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.3/Dockerfile) - [`7.2.5`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.2/Dockerfile) @@ -36,8 +38,6 @@ WARNING: - [`7.0.9`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.0/Dockerfile) -- [`6.13.1`, `6.13`, `6`](https://github.com/RocketChat/Docker.Official.Image/blob/2604071c1f2f2d4300262347a33c03bac25918fc/6.13/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 6b458da6d3c23dfe955af29225e0d949c68774b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 May 2025 16:10:08 -0700 Subject: [PATCH 2169/2686] Run update.sh --- emqx/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/emqx/README.md b/emqx/README.md index 7073d1c8a314..9a84b15c939d 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -14,6 +14,14 @@ WARNING: --> +# **DEPRECATION NOTICE** + +Starting from v5.9.0, EMQX has unified all features from the previous Open Source and Enterprise editions into a single, powerful offering with the Business Source License (BSL) 1.1. + +If you want to understand why we made the change, please read this [blog post](https://www.emqx.com/en/news/emqx-adopts-business-source-license), and if you want to know more about the new license, please read the [EMQX Licensing FAQ](https://www.emqx.com/en/content/license-faq). + +Consequently, we stopped publishing the `emqx` Docker Official Image. EMQX v5.9.0+ will only be available in the [`emqx/emqx`](https://hub.docker.com/r/emqx/emqx) and [`emqx/emqx-enterprise`](https://hub.docker.com/r/emqx/emqx-enterprise) Docker Hub repositories. + # Quick reference - **Maintained by**: From 73ea7e36f08396406483d3ab5bc41ea65f38b567 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 15 May 2025 17:09:53 -0700 Subject: [PATCH 2170/2686] Run update.sh --- ruby/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index 4a1d0e8b0e76..51f54ca4f8c4 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.5.0-preview1-alpine3.20`, `3.5-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.20/Dockerfile) -- [`3.4.3-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.3`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/bookworm/Dockerfile) +- [`3.4.4-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.4`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/bookworm/Dockerfile) -- [`3.4.3-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.3-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/slim-bookworm/Dockerfile) +- [`3.4.4-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.4-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/slim-bookworm/Dockerfile) -- [`3.4.3-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/bullseye/Dockerfile) +- [`3.4.4-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/bullseye/Dockerfile) -- [`3.4.3-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/slim-bullseye/Dockerfile) +- [`3.4.4-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/slim-bullseye/Dockerfile) -- [`3.4.3-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.3-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/alpine3.21/Dockerfile) +- [`3.4.4-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.4-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.21/Dockerfile) -- [`3.4.3-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/235b3ffb2060c837137b32ea55f75816f2f4e4c4/3.4/alpine3.20/Dockerfile) +- [`3.4.4-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.20/Dockerfile) - [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) From 415c2259d80fc124ef0594a0fb18759dbec2b44c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 May 2025 11:09:54 -0700 Subject: [PATCH 2171/2686] Run update.sh --- backdrop/README.md | 4 ++-- nextcloud/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index f91f9628427b..4821ee51609b 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.30.2`, `1.30`, `1`, `1.30.2-apache`, `1.30-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/8af6f112829878eaef3c55f239aa9e6b35cbf2a7/1/apache/Dockerfile) +- [`1.31.0`, `1.31`, `1`, `1.31.0-apache`, `1.31-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/82f5f08f12c2e861cde61b7b4dac8ebd76f3ee1f/1/apache/Dockerfile) -- [`1.30.2-fpm`, `1.30-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/8af6f112829878eaef3c55f239aa9e6b35cbf2a7/1/fpm/Dockerfile) +- [`1.31.0-fpm`, `1.31-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/82f5f08f12c2e861cde61b7b4dac8ebd76f3ee1f/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 80db770987e5..d82f15907e6e 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,17 +34,17 @@ WARNING: - [`29.0.16-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm-alpine/Dockerfile) -- [`30.0.10-apache`, `30.0-apache`, `30-apache`, `30.0.10`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/apache/Dockerfile) +- [`30.0.11-apache`, `30.0-apache`, `30-apache`, `30.0.11`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/apache/Dockerfile) -- [`30.0.10-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/fpm/Dockerfile) +- [`30.0.11-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/fpm/Dockerfile) -- [`30.0.10-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/30/fpm-alpine/Dockerfile) +- [`30.0.11-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/fpm-alpine/Dockerfile) -- [`31.0.4-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.4`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/apache/Dockerfile) +- [`31.0.5-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.5`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/apache/Dockerfile) -- [`31.0.4-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/fpm/Dockerfile) +- [`31.0.5-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/fpm/Dockerfile) -- [`31.0.4-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/645f515e295c4a7b505c44bc9622d6b158a7b526/31/fpm-alpine/Dockerfile) +- [`31.0.5-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From 564b91990193136862fadffc562b33bf6f78e3ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 May 2025 12:10:02 -0700 Subject: [PATCH 2172/2686] Run update.sh --- influxdb/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index e026644753a7..f605254b252b 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.0-core`, `3.0.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/3.0-core/Dockerfile) +- [`3-core`, `3.0-core`, `3.0.3-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/3.0-core/Dockerfile) -- [`3-enterprise`, `3.0-enterprise`, `3.0.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/cc4e58f76300b30b71d9fe854dbfdd4c8bee3f50/influxdb/3.0-enterprise/Dockerfile) +- [`3-enterprise`, `3.0-enterprise`, `3.0.3-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/3.0-enterprise/Dockerfile) # Quick reference (cont.) From 20d20bb98debe30ff508a5c3d9e21d877c9b551c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 May 2025 14:10:07 -0700 Subject: [PATCH 2173/2686] Run update.sh --- openjdk/README.md | 50 +++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index 4e010ebac623..5c7a1af85fa9 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-22-jdk-oraclelinux9`, `25-ea-22-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-22-jdk-oracle`, `25-ea-22-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-23-jdk-oraclelinux9`, `25-ea-23-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-23-jdk-oracle`, `25-ea-23-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-22-jdk-oraclelinux8`, `25-ea-22-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-23-jdk-oraclelinux8`, `25-ea-23-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-22-jdk-bookworm`, `25-ea-22-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/bookworm/Dockerfile) +- [`25-ea-23-jdk-bookworm`, `25-ea-23-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/bookworm/Dockerfile) -- [`25-ea-22-jdk-slim-bookworm`, `25-ea-22-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-22-jdk-slim`, `25-ea-22-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-23-jdk-slim-bookworm`, `25-ea-23-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-23-jdk-slim`, `25-ea-23-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-22-jdk-bullseye`, `25-ea-22-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/bullseye/Dockerfile) +- [`25-ea-23-jdk-bullseye`, `25-ea-23-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/bullseye/Dockerfile) -- [`25-ea-22-jdk-slim-bullseye`, `25-ea-22-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-23-jdk-slim-bullseye`, `25-ea-23-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-22-jdk-windowsservercore-ltsc2025`, `25-ea-22-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-23-jdk-windowsservercore-ltsc2025`, `25-ea-23-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-22-jdk-windowsservercore-ltsc2022`, `25-ea-22-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-23-jdk-windowsservercore-ltsc2022`, `25-ea-23-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-22-jdk-windowsservercore-1809`, `25-ea-22-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-23-jdk-windowsservercore-1809`, `25-ea-23-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-22-jdk-nanoserver-ltsc2025`, `25-ea-22-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-23-jdk-nanoserver-ltsc2025`, `25-ea-23-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-22-jdk-nanoserver-ltsc2022`, `25-ea-22-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-23-jdk-nanoserver-ltsc2022`, `25-ea-23-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-22-jdk-nanoserver-1809`, `25-ea-22-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-23-jdk-nanoserver-1809`, `25-ea-23-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-22-jdk`, `25-ea-22`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-23-jdk`, `25-ea-23`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-22-jdk-windowsservercore`, `25-ea-22-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-23-jdk-windowsservercore`, `25-ea-23-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-22-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-22-jdk-nanoserver`, `25-ea-22-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-23-jdk-nanoserver`, `25-ea-23-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-22-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/02e8a2ffc4f72b17e5f42980b1025c14d17ac9f7/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-23-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-23-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From b5d81808ae6f208d7737e8ab6b2938e857e8a129 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 16 May 2025 15:09:54 -0700 Subject: [PATCH 2174/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 29fcda028a64..2cb4735202ab 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.119.3`, `5.119`, `5`, `latest`](https://github.com/docker-library/ghost/blob/370aac722c97cb23c49488d077afd13dccfc374b/5/debian/Dockerfile) +- [`5.120.0`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f4c8c2b40a00ab82e5b5f867a3a5bf327ec7343d/5/debian/Dockerfile) -- [`5.119.3-alpine`, `5.119-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/370aac722c97cb23c49488d077afd13dccfc374b/5/alpine/Dockerfile) +- [`5.120.0-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f4c8c2b40a00ab82e5b5f867a3a5bf327ec7343d/5/alpine/Dockerfile) # Quick reference (cont.) From 2a6746577b07728f2baec2919c914448922ff9e9 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Mon, 19 May 2025 16:40:44 +0200 Subject: [PATCH 2175/2686] docs(ubuntu): add Plucky and Questing to content.md --- ubuntu/content.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ubuntu/content.md b/ubuntu/content.md index 3da70cb11f9f..de51927da392 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -40,3 +40,5 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) - [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) +- [Plucky](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/plucky/ubuntu-oci) +- [Questing](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/questing/ubuntu-oci) From f86be5965799f2d8577dbf3d28df4518fb77f0fd Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Mon, 19 May 2025 16:41:19 +0200 Subject: [PATCH 2176/2686] docs(ubuntu): remove Focal - End of Standard Support --- ubuntu/content.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index de51927da392..8a9ac98b4327 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -36,7 +36,6 @@ Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/or The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: -- [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) - [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) From 3c5ad06c7e705a1982b368323a56b15c15436392 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 19 May 2025 14:46:24 -0700 Subject: [PATCH 2177/2686] Add "DEPRECATED" to short description for emqx (as is our custom) --- emqx/README-short.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emqx/README-short.txt b/emqx/README-short.txt index 9357fa1d6ad0..a0aa3e373c32 100644 --- a/emqx/README-short.txt +++ b/emqx/README-short.txt @@ -1 +1 @@ -The most scalable open-source MQTT broker for IoT, IIoT, connected vehicles, and more. +DEPRECATED; The most scalable open-source MQTT broker for IoT, IIoT, connected vehicles, and more. From fa4082170023156bb6fc92b1d3c1736402bde3c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 19 May 2025 16:10:07 -0700 Subject: [PATCH 2178/2686] Run update.sh --- adminer/README.md | 4 ++-- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- photon/README.md | 2 +- ros/README.md | 6 ------ 5 files changed, 7 insertions(+), 13 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 8da784375678..64c1197cc231 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.1`, `5`, `latest`, `5.2.1-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/98b870868bdd5adb179e79aa9b11cc01086ec1db/5/Dockerfile) +- [`5.3.0`, `5`, `latest`, `5.3.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/51202fad34e0f5ec140451e9b6bdba9d1068e329/5/Dockerfile) -- [`5.2.1-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/98b870868bdd5adb179e79aa9b11cc01086ec1db/5/fastcgi/Dockerfile) +- [`5.3.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/51202fad34e0f5ec140451e9b6bdba9d1068e329/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index 35ef974ef81d..bdec9b466b9c 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.base) +- [`latest`, `base`, `base-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.base) -- [`base-devel`, `base-devel-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250511.0.348143`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ebb381b644ed8f3d3e1f4319975e18a65f638d66/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 52ebeb4f0ac1..640bf0aafafb 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/536de2f889e63dbc411cfd408bc57c41f4a8bad2/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/27a518ed29a2028033f7a3d23f983650ed391c18/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 21a16b772d51..f5846ab57736 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20250427`, `latest`](https://github.com/vmware/photon-docker-image/blob/41a2d9175642cf2da9f33b817c28aa2c01919d70/docker/Dockerfile) -- [`4.0`, `4.0-20250506`](https://github.com/vmware/photon-docker-image/blob/464d6fc28670cad9b2e065de98a2048fcc1f3a4d/docker/Dockerfile) +- [`4.0`, `4.0-20250518`](https://github.com/vmware/photon-docker-image/blob/0b2ace4fa57bbd1d03b60915156c9d357bcbe698/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/ros/README.md b/ros/README.md index 59e3f33dcf64..c8b498cf4468 100644 --- a/ros/README.md +++ b/ros/README.md @@ -38,12 +38,6 @@ WARNING: - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/2ad854492209b8dbab303578a5baedab4d5ab41d/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - -- [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - -- [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) - - [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) From 69a0bf1f084bffdc171b65d895cee414a830babf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 19 May 2025 17:09:57 -0700 Subject: [PATCH 2179/2686] Run update.sh --- almalinux/README.md | 12 ++++++------ amazonlinux/README.md | 4 ++-- buildpack-deps/README.md | 6 ++++++ docker/README.md | 34 ++++++++++++++++++++++++++-------- golang/README.md | 12 ++++++------ percona/README.md | 2 +- telegraf/README.md | 12 ++++++------ ubuntu/README.md | 3 ++- 8 files changed, 55 insertions(+), 30 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index b945f0bfa694..0b49894ddcfe 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250411`](https://github.com/AlmaLinux/container-images/blob/fe90cd58f021d87941fd2a8abfbbe92e89511ade/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250424`](https://github.com/AlmaLinux/container-images/blob/2230904321a45357fe69746368e02e0ccc6f0476/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/fe90cd58f021d87941fd2a8abfbbe92e89511ade/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250424`](https://github.com/AlmaLinux/container-images/blob/2230904321a45357fe69746368e02e0ccc6f0476/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250411`](https://github.com/AlmaLinux/container-images/blob/9f9b3c8c8cf4a57fd42f362570ff47c75788031f/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/9f9b3c8c8cf4a57fd42f362570ff47c75788031f/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.5`, `9.5-20250411`](https://github.com/AlmaLinux/container-images/blob/0bedcce49a80a0861e3435facb1a3f7b8b492900/default/amd64/Dockerfile) +- [`latest`, `9`, `9.5`, `9.5-20250519`](https://github.com/AlmaLinux/container-images/blob/b7c4071a0c013abc8705a6bdb7658b64c4005c42/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250411`](https://github.com/AlmaLinux/container-images/blob/0bedcce49a80a0861e3435facb1a3f7b8b492900/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/b7c4071a0c013abc8705a6bdb7658b64c4005c42/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 96d9132c8099..08ce27740cb8 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250428.1`](https://github.com/amazonlinux/container-images/blob/8913d60448e6afb76886c1d50ae38d4fc6642512/Dockerfile) +- [`2023`, `latest`, `2023.7.20250512.0`](https://github.com/amazonlinux/container-images/blob/dacb9d52e9344a2977503cb4ecfc0879b69de878/Dockerfile) -- [`2`, `2.0.20250428.0`](https://github.com/amazonlinux/container-images/blob/cc127d58207194b46ffb9fa9a478501faee11a81/Dockerfile) +- [`2`, `2.0.20250512.0`](https://github.com/amazonlinux/container-images/blob/943ba6f33d9edd4b4dce773a0501b914af2d39f8/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 8497e09e76f6..2da33f60364d 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -78,6 +78,12 @@ WARNING: - [`plucky`, `25.04`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/Dockerfile) +- [`questing-curl`, `25.10-curl`](https://github.com/docker-library/buildpack-deps/blob/99e7dc24c50c0a7be371ea9e6aed6134ce4cbfeb/ubuntu/questing/curl/Dockerfile) + +- [`questing-scm`, `25.10-scm`](https://github.com/docker-library/buildpack-deps/blob/99e7dc24c50c0a7be371ea9e6aed6134ce4cbfeb/ubuntu/questing/scm/Dockerfile) + +- [`questing`, `25.10`](https://github.com/docker-library/buildpack-deps/blob/99e7dc24c50c0a7be371ea9e6aed6134ce4cbfeb/ubuntu/questing/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/docker/README.md b/docker/README.md index e55268ee9509..0901a8f2fbb2 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,43 @@ WARNING: ## Simple Tags -- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/cli/Dockerfile) +- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/cli/Dockerfile) -- [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind/Dockerfile) +- [`28.2.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.1-dind-alpine3.21`, `28.2.0-rc.1`, `28-rc`, `rc`, `28.2.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/861512c7e2e4945f0878d043e55262dd330843a4/28-rc/dind/Dockerfile) + +- [`28.2.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/dind-rootless/Dockerfile) + +- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-1809/Dockerfile) + +- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/cli/Dockerfile) + +- [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/52c8bfa9869c9c5605c6c03dc9a82cfe426ace77/28/dind/Dockerfile) - [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags +- `28.2.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-1809/Dockerfile) + - `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/3dba50562769bdfb0ed701bcfc2bbbde4304c72a/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index cf64f07557b3..a9b16b36de0c 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.9-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250509-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bookworm/Dockerfile) +- [`tip-20250517-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bookworm/Dockerfile) -- [`tip-20250509-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bullseye/Dockerfile) +- [`tip-20250517-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bullseye/Dockerfile) -- [`tip-20250509-alpine3.21`, `tip-alpine3.21`, `tip-20250509-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/alpine3.21/Dockerfile) +- [`tip-20250517-alpine3.21`, `tip-alpine3.21`, `tip-20250517-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/alpine3.21/Dockerfile) -- [`tip-20250509-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/alpine3.20/Dockerfile) +- [`tip-20250517-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250509`, `tip`: +- `tip-20250517`, `tip`: - - [`tip-20250509-bookworm`](https://github.com/docker-library/golang/blob/42865173cb4dcd942ff191edf77c33ae6cb836a1/tip/bookworm/Dockerfile) + - [`tip-20250517-bookworm`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 35659237b820..ef645ac6870b 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.41-32-centos`, `8.0-centos`, `8-centos`, `8.0.41-32`, `8.0`, `8`, `ps-8.0.41-32`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/73ddc25d7165fa77bda3e92191ec2fc5536c500a/percona-server-8.0/Dockerfile-dockerhub) +- [`8.0.42-33-centos`, `8.0-centos`, `8-centos`, `8.0.42-33`, `8.0`, `8`, `ps-8.0.42-33`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/9cd781adb27010da39faab5daca25c1e72db0af4/percona-server-8.0/Dockerfile-dockerhub) - [`psmdb-8.0.4`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-8.0/Dockerfile-dockerhub) diff --git a/telegraf/README.md b/telegraf/README.md index e99cbd4fa836..b6c96801e34c 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.32/Dockerfile) +- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.32/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.32/alpine/Dockerfile) +- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.32/alpine/Dockerfile) -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/683532295e6664614b8cdf0dc801247b12983608/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.34/alpine/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 4883a5da14db..3e890efa250e 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -93,10 +93,11 @@ Starting from [Ubuntu 24.10 "Oracular Oriole"](https://discourse.ubuntu.com/t/or The tarballs published by Canonical, referenced by `dist-*` tags in https://git.launchpad.net/cloud-images/+oci/ubuntu-base Git repository, are built from scripts that live in [the livecd-rootfs project](https://code.launchpad.net/~ubuntu-core-dev/livecd-rootfs/+git/livecd-rootfs/+ref/ubuntu/master), especially `live-build/auto/build`. The builds are run on Launchpad. For build history see `livefs` build pages of individual releases on Launchpad: -- [Focal](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/focal/ubuntu-oci) - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) - [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) +- [Plucky](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/plucky/ubuntu-oci) +- [Questing](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/questing/ubuntu-oci) # License From a3ec4366882ad24feea94e5b18dde4fc77ad13ad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 May 2025 10:09:56 -0700 Subject: [PATCH 2180/2686] Run update.sh --- couchbase/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/couchbase/README.md b/couchbase/README.md index 0b9080f2e4a8..ac631654c174 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.5`, `enterprise`, `enterprise-7.6.5`, `latest`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) +- [`7.6.6`, `enterprise`, `enterprise-7.6.6`, `latest`](https://github.com/couchbase/docker/blob/9ce3cbc835dd4e072943ac7878aa7f87d6b95178/enterprise/couchbase-server/7.6.6/Dockerfile) + +- [`7.6.5`, `enterprise-7.6.5`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) - [`7.6.4`, `enterprise-7.6.4`](https://github.com/couchbase/docker/blob/9990e2cfabc94b37607e5666d9ef1eab69a397a6/enterprise/couchbase-server/7.6.4/Dockerfile) From 5107472c265ec7db13802cbbb12e4951858f86b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 May 2025 11:09:57 -0700 Subject: [PATCH 2181/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index 9876d31a21f9..a76461a0bb7f 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250428`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/18.0/Dockerfile) +- [`18.0-20250520`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/18.0/Dockerfile) -- [`17.0-20250428`, `17.0`, `17`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/17.0/Dockerfile) +- [`17.0-20250520`, `17.0`, `17`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/17.0/Dockerfile) -- [`16.0-20250428`, `16.0`, `16`](https://github.com/odoo/docker/blob/4cb56b39df0cc06093b6185a609609e1cf264371/16.0/Dockerfile) +- [`16.0-20250520`, `16.0`, `16`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/16.0/Dockerfile) # Quick reference (cont.) From d3f816f0405d49c0a9387dea0696809c61ab3c4d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 20 May 2025 15:09:58 -0700 Subject: [PATCH 2182/2686] Run update.sh --- almalinux/README.md | 8 ++++---- bash/README.md | 2 +- cassandra/README.md | 2 +- dart/README.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 0b49894ddcfe..3dfa90d32d9b 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250424`](https://github.com/AlmaLinux/container-images/blob/2230904321a45357fe69746368e02e0ccc6f0476/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250520`](https://github.com/AlmaLinux/container-images/blob/86aa3a7482e6edd9c1e9c38065257b8c155d4507/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250424`](https://github.com/AlmaLinux/container-images/blob/2230904321a45357fe69746368e02e0ccc6f0476/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250520`](https://github.com/AlmaLinux/container-images/blob/86aa3a7482e6edd9c1e9c38065257b8c155d4507/minimal/amd64/Dockerfile) - [`8`, `8.10`, `8.10-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/default/amd64/Dockerfile) - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.5`, `9.5-20250519`](https://github.com/AlmaLinux/container-images/blob/b7c4071a0c013abc8705a6bdb7658b64c4005c42/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250520`](https://github.com/AlmaLinux/container-images/blob/411c4c906cf1dc7664b30d5c34e2b7e9a273b80e/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.5-minimal`, `9.5-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/b7c4071a0c013abc8705a6bdb7658b64c4005c42/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250520`](https://github.com/AlmaLinux/container-images/blob/411c4c906cf1dc7664b30d5c34e2b7e9a273b80e/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 2519914b53a9..a7208acb6cb4 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250504`, `devel`, `devel-20250504-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/255a35c25008695e4399b376ee36b1f6a02c0506/devel/Dockerfile) +- [`devel-20250519`, `devel`, `devel-20250519-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/ff66a224721752a241d9c7426e2c62d5d0bc2106/devel/Dockerfile) - [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index fe52c686b4bf..81e2487bc42f 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0.4`, `5.0`, `5`, `latest`, `5.0.4-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/0f32c04c976068ddf4b094044bd333ca46d42887/5.0/Dockerfile) -- [`4.1.8`, `4.1`, `4`, `4.1.8-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/4.1/Dockerfile) +- [`4.1.9`, `4.1`, `4`, `4.1.9-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/8b125f8e4cb082768e6d299130722ed3547e2206/4.1/Dockerfile) - [`4.0.17`, `4.0`, `4.0.17-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/4.0/Dockerfile) diff --git a/dart/README.md b/dart/README.md index bd309ec4e4c0..5ffbb14f7fa9 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.7.3-sdk`, `3.7-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.7.3`, `3.7`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2ff1146d0172fb02205c6a0fc0082fd8752f0c85/stable/bookworm/Dockerfile) +- [`3.8.0-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.0`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/18561563ab7693353929d54e9bee6bed9d7909a6/stable/bookworm/Dockerfile) -- [`3.8.0-278.2.beta-sdk`, `beta-sdk`, `3.8.0-278.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2ff1146d0172fb02205c6a0fc0082fd8752f0c85/beta/bookworm/Dockerfile) +- [`3.9.0-100.2.beta-sdk`, `beta-sdk`, `3.9.0-100.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/18561563ab7693353929d54e9bee6bed9d7909a6/beta/bookworm/Dockerfile) # Quick reference (cont.) From ce580adb9bf490295303f9760982949c754a742b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 May 2025 10:09:59 -0700 Subject: [PATCH 2183/2686] Run update.sh --- erlang/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index f363d84eedaf..b3e543ac1ec5 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,11 +30,11 @@ WARNING: - [`28.0.0.0-rc2-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/alpine/Dockerfile) -- [`27.3.3.0`, `27.3.3`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/Dockerfile) +- [`27.3.4.0`, `27.3.4`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/Dockerfile) -- [`27.3.3.0-slim`, `27.3.3-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/slim/Dockerfile) +- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/slim/Dockerfile) -- [`27.3.3.0-alpine`, `27.3.3-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/27/alpine/Dockerfile) +- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/alpine/Dockerfile) - [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/Dockerfile) From 761c25f8aab7facc736e0b0461643f38da6a3de7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 May 2025 11:10:11 -0700 Subject: [PATCH 2184/2686] Run update.sh --- open-liberty/README.md | 54 ++++++++++++++++++------------------- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index 06600cc6954a..1a6058d643f3 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.4-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.4-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.4-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.4-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.4-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.4-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/ea421dc2f72c32dec2cb226ad9e9d6cfcda38ed0/releases/25.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 3894f4cf8ed4..5498179c0ba4 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.4-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.4-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.4-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.4-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.4-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.4-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/39ee1440e2dc942c6978eb56f2ae09a2213218dd/ga/25.0.0.4/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 903509e553e80f832588b7ece2f13d18035d5d27 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 May 2025 12:09:54 -0700 Subject: [PATCH 2185/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- haproxy/README.md | 4 ++-- node/README.md | 12 ++++++------ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0901a8f2fbb2..d2f82671bfd5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/cli/Dockerfile) +- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/cli/Dockerfile) - [`28.2.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.1-dind-alpine3.21`, `28.2.0-rc.1`, `28-rc`, `rc`, `28.2.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/861512c7e2e4945f0878d043e55262dd330843a4/28-rc/dind/Dockerfile) - [`28.2.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/dind-rootless/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-1809/Dockerfile) -- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/cli/Dockerfile) +- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/cli/Dockerfile) - [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/52c8bfa9869c9c5605c6c03dc9a82cfe426ace77/28/dind/Dockerfile) - [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.2.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-1809/Dockerfile) - `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/d370b5c8bac568d44d901ed2243868d61b48d3a4/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 355d769610df..bfccf0657f18 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev16`, `3.2-dev`, `3.2-dev16-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/7cf95bc0438dd2aa3973dacf392c74a0c31abb2d/3.2/Dockerfile) +- [`3.2-dev17`, `3.2-dev`, `3.2-dev17-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/70c305c6007707c7647fb1d019632a9bbfb6a739/3.2/Dockerfile) -- [`3.2-dev16-alpine`, `3.2-dev-alpine`, `3.2-dev16-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/7cf95bc0438dd2aa3973dacf392c74a0c31abb2d/3.2/alpine/Dockerfile) +- [`3.2-dev17-alpine`, `3.2-dev-alpine`, `3.2-dev17-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/70c305c6007707c7647fb1d019632a9bbfb6a739/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) diff --git a/node/README.md b/node/README.md index 129a4011a21b..11de4e6438ef 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.15-alpine3.20`, `22.15.1-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/alpine3.20/Dockerfile) +- [`22-alpine3.20`, `22.16-alpine3.20`, `22.16.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.20/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.15-alpine`, `22.15-alpine3.21`, `22.15.1-alpine`, `22.15.1-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.21`, `22.16-alpine`, `22.16-alpine3.21`, `22.16.0-alpine`, `22.16.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) -- [`22`, `22-bookworm`, `22.15`, `22.15-bookworm`, `22.15.1`, `22.15.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.16`, `22.16-bookworm`, `22.16.0`, `22.16.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.15-bookworm-slim`, `22.15-slim`, `22.15.1-bookworm-slim`, `22.15.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.16-bookworm-slim`, `22.16-slim`, `22.16.0-bookworm-slim`, `22.16.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.15-bullseye`, `22.15.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.16-bullseye`, `22.16.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.15-bullseye-slim`, `22.15.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.16-bullseye-slim`, `22.16.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye-slim/Dockerfile) - [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.2-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.20/Dockerfile) From 83b189ed19a895e247afb8cee7fbf68225386292 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 May 2025 14:10:11 -0700 Subject: [PATCH 2186/2686] Run update.sh --- eclipse-temurin/README.md | 12 ++++++++++-- influxdb/README.md | 28 ++++++++++++++-------------- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 169c5a2d988b..aef9524c4319 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -413,13 +413,21 @@ JRE images are available for all versions of Eclipse Temurin but it is recommend # Can I add my internal CA certificates to the truststore? -Yes! Add your certificates to `/certificates` inside the container (e.g. by using a volume) and set the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value. With Docker CLI this might look like this: +Yes, it's possible for all image flavors except for Windows-based images. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. + +You need to put your CA certificates into `/certificates` directory inside the container (e.g. by using a volume) and opt-in into CA certificate processing by setting the environment variable `USE_SYSTEM_CA_CERTS` on the container to any value (if you are overriding the entrypoint script, please make sure you call `/__cacert_entrypoint.sh` to enable the processing). Using Docker CLI this might look like this: ```console $ docker run -v $(pwd)/certs:/certificates/ -e USE_SYSTEM_CA_CERTS=1 eclipse-temurin:21 ``` -The certificates would get added to the system CA store, which would in turn be converted to Java's truststore. The format of the certificates depends on what the OS of the base image used expects, but PEM format with a `.crt` file extension is a good bet. **Please note**: this feature is currently not available for Windows-based images. +When run like this, your certificates will get added to both the JVM truststore and to the system CA store (e.g. for use by `curl` and other CLI tools). However, if you are running your containers in a restricted-by-default environment (such as Red Hat OpenShift), there will be some small differences: + +- **Your containers are run with a non-`root` UID**: Since neither the default JVM truststore nor the system CA store can be written to by a non-`root` user, the system CA store will not be updated, while a separate truststore will be provided to the JVM. Your certificates will get added to that truststore and the `JAVA_TOOL_OPTIONS` environment variable will be automatically extended to switch the JVM over to this new truststore. If you are overriding the default entrypoint script of this image, you'll need let the JVM know about the new truststore manually. The path to the new truststore will be exported via `JRE_CACERTS_PATH` environment variable. + +- **Your containers are run with a read-only filesystem**: The same restrictions apply as with running containers with a non-`root` UID. In addition, a writable volume is required at `/tmp` to be able to create the new truststore. + +While this feature has been tested in multiple scenarios, there is always a chance of an unexpected edge case. Should you encounter one of these, please open an [issue](https://github.com/adoptium/containers/issues). # How to use this Image diff --git a/influxdb/README.md b/influxdb/README.md index f605254b252b..cb2076781c31 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.11`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.0-core`, `3.0.3-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/3.0-core/Dockerfile) +- [`3-core`, `3.0-core`, `3.0.3-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-core/Dockerfile) -- [`3-enterprise`, `3.0-enterprise`, `3.0.3-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/a757de46ff8c42b19e05692e592c153bd52d2fc6/influxdb/3.0-enterprise/Dockerfile) +- [`3-enterprise`, `3.0-enterprise`, `3.0.3-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-enterprise/Dockerfile) # Quick reference (cont.) From 44f013fcc9a86a9b7e0d4c9b3dd2b1d842ee6cdf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 21 May 2025 16:09:45 -0700 Subject: [PATCH 2187/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index 34d7a503b600..117e9dc47d12 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250428`, `12.10`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250520`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250428-slim`, `12.10-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250520-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250428`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250520`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250428-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250520-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/experimental/Dockerfile) +- [`experimental`, `experimental-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/rc-buggy/Dockerfile) -- [`sid`, `sid-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/sid/oci/index.json) +- [`sid`, `sid-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/sid/oci/index.json) -- [`sid-slim`, `sid-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/sid/slim/oci/index.json) -- [`stable`, `stable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/oci/index.json) +- [`stable`, `stable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/slim/oci/index.json) -- [`testing`, `testing-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/oci/index.json) +- [`testing`, `testing-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/oci/index.json) +- [`trixie`, `trixie-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250428`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/unstable/oci/index.json) +- [`unstable`, `unstable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250428-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/b5c972271c90459c4941a6eefd4b4c38183878d3/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/unstable/slim/oci/index.json) # Quick reference (cont.) From 65300268577e44b586b69e31ab908af31fdb69ef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 May 2025 10:10:01 -0700 Subject: [PATCH 2188/2686] Run update.sh --- elixir/README.md | 18 +++++++++--------- erlang/README.md | 12 ++++++------ fluentd/README.md | 4 ++-- ghost/README.md | 4 ++-- nats/README.md | 38 +++++++++++++++++++------------------- neo4j/README.md | 4 ++-- postgres/README.md | 20 ++++++++++---------- 7 files changed, 50 insertions(+), 50 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index a5e8690cb42c..fc468ab1687e 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.3`, `1.18`, `latest`, `1.18.3-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/Dockerfile) +- [`1.18.4`, `1.18`, `latest`, `1.18.4-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/Dockerfile) -- [`1.18.3-slim`, `1.18-slim`, `slim`, `1.18.3-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/slim/Dockerfile) +- [`1.18.4-slim`, `1.18-slim`, `slim`, `1.18.4-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/slim/Dockerfile) -- [`1.18.3-alpine`, `1.18-alpine`, `alpine`, `1.18.3-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/alpine/Dockerfile) +- [`1.18.4-alpine`, `1.18-alpine`, `alpine`, `1.18.4-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/alpine/Dockerfile) -- [`1.18.3-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25/Dockerfile) +- [`1.18.4-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25/Dockerfile) -- [`1.18.3-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25-alpine/Dockerfile) +- [`1.18.4-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-alpine/Dockerfile) -- [`1.18.3-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-25-slim/Dockerfile) +- [`1.18.4-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-slim/Dockerfile) -- [`1.18.3-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26/Dockerfile) +- [`1.18.4-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26/Dockerfile) -- [`1.18.3-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26-alpine/Dockerfile) +- [`1.18.4-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-alpine/Dockerfile) -- [`1.18.3-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/263d517a95ebbe6671717ef28b5ccccc9360436d/1.18/otp-26-slim/Dockerfile) +- [`1.18.4-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-slim/Dockerfile) - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index b3e543ac1ec5..4aa7c15d302f 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.0.0-rc2`, `28.0.0`, `28.0`, `28`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/Dockerfile) +- [`28.0.0.0`, `28.0.0`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/Dockerfile) -- [`28.0.0.0-rc2-slim`, `28.0.0-slim`, `28.0-slim`, `28-slim`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/slim/Dockerfile) +- [`28.0.0.0-slim`, `28.0.0-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/slim/Dockerfile) -- [`28.0.0.0-rc2-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c572ad3b71b6a21bdcd10fde3b3516175f390afa/28/alpine/Dockerfile) +- [`28.0.0.0-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/alpine/Dockerfile) -- [`27.3.4.0`, `27.3.4`, `27.3`, `27`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/Dockerfile) +- [`27.3.4.0`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/Dockerfile) -- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/slim/Dockerfile) +- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/slim/Dockerfile) -- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/alpine/Dockerfile) +- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/alpine/Dockerfile) - [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/Dockerfile) diff --git a/fluentd/README.md b/fluentd/README.md index 6863b916b618..11d00980ed4c 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.8-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/98155ec2dea1ae97a4cdedb8853e9be8ec7e7412/v1.16/alpine/Dockerfile) +- [`v1.16.9-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/35463e85d2b17fbb34e82345d253e62ad0af710b/v1.16/alpine/Dockerfile) -- [`v1.16.8-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/98155ec2dea1ae97a4cdedb8853e9be8ec7e7412/v1.16/debian/Dockerfile) +- [`v1.16.9-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/35463e85d2b17fbb34e82345d253e62ad0af710b/v1.16/debian/Dockerfile) - [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 2cb4735202ab..935ef7da3370 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.120.0`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f4c8c2b40a00ab82e5b5f867a3a5bf327ec7343d/5/debian/Dockerfile) +- [`5.120.1`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/adf58ca55ebf4151a2c48c87a66ff0fdf6c53b27/5/debian/Dockerfile) -- [`5.120.0-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f4c8c2b40a00ab82e5b5f867a3a5bf327ec7343d/5/alpine/Dockerfile) +- [`5.120.1-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/adf58ca55ebf4151a2c48c87a66ff0fdf6c53b27/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index d745c3ca5e59..7c73d9dff6f6 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.3-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.3-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/alpine3.21/Dockerfile) +- [`2.11.4-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.4-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/alpine3.21/Dockerfile) -- [`2.11.3-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.3-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/scratch/Dockerfile) +- [`2.11.4-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.4-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/scratch/Dockerfile) -- [`2.11.3-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.4-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/windowsservercore-1809/Dockerfile) -- [`2.11.3-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.4-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) -- [`2.10.29-alpine3.21`, `2.10-alpine3.21`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/alpine3.21/Dockerfile) +- [`2.10.29-alpine3.21`, `2.10-alpine3.21`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/alpine3.21/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.29-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/windowsservercore-1809/Dockerfile) -- [`2.10.29-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.29-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) ## Shared Tags -- `2.11.3`, `2.11`, `2`, `latest`: +- `2.11.4`, `2.11`, `2`, `latest`: - - [`2.11.3-scratch`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/scratch/Dockerfile) - - [`2.11.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.4-scratch`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/scratch/Dockerfile) + - [`2.11.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) -- `2.11.3-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.4-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.3-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/windowsservercore-1809/Dockerfile) -- `2.11.3-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.4-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.3-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.29-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/windowsservercore-1809/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/f3b6ff7d542baf41e7aed53924c35336542c06df/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 57060ddee855..a35254830607 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -40,9 +40,9 @@ WARNING: - [`5.26.6-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/enterprise/Dockerfile) -- [`4.4.43`, `4.4.43-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/48b3bb8a4fe04db7357d08343502edd588493af0/4.4.43/bullseye/community/Dockerfile) +- [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) -- [`4.4.43-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/48b3bb8a4fe04db7357d08343502edd588493af0/4.4.43/bullseye/enterprise/Dockerfile) +- [`4.4.44-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 72149f96adcb..671236ce96d3 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/17/bookworm/Dockerfile) +- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/17/bookworm/Dockerfile) -- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/17/bullseye/Dockerfile) +- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/17/bullseye/Dockerfile) - [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.21/Dockerfile) - [`17.5-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.20/Dockerfile) -- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/16/bookworm/Dockerfile) +- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bookworm/Dockerfile) -- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/16/bullseye/Dockerfile) +- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bullseye/Dockerfile) - [`16.9-alpine3.21`, `16-alpine3.21`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.21/Dockerfile) - [`16.9-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.20/Dockerfile) -- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/15/bookworm/Dockerfile) +- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bookworm/Dockerfile) -- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/15/bullseye/Dockerfile) +- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bullseye/Dockerfile) - [`15.13-alpine3.21`, `15-alpine3.21`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.21/Dockerfile) - [`15.13-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.20/Dockerfile) -- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/14/bookworm/Dockerfile) +- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bookworm/Dockerfile) -- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/14/bullseye/Dockerfile) +- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bullseye/Dockerfile) - [`14.18-alpine3.21`, `14-alpine3.21`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.21/Dockerfile) - [`14.18-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.20/Dockerfile) -- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/13/bookworm/Dockerfile) +- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bookworm/Dockerfile) -- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/266748257c85f28eb01a276e84860013ade2eb14/13/bullseye/Dockerfile) +- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bullseye/Dockerfile) - [`13.21-alpine3.21`, `13-alpine3.21`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/13/alpine3.21/Dockerfile) From 2017e3efeb57702440936c64f46403ef4df3cd9b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 May 2025 15:10:32 -0700 Subject: [PATCH 2189/2686] Run update.sh --- mariadb/README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 12e71a66d0dc..5a0edd50c99e 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -34,19 +34,21 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] - [`11.7.2-noble`, `11.7-noble`, `11-noble`, `noble`, `11.7.2`, `11.7`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/853447019725b35685d5ec3c007096a266399bea/11.7/Dockerfile) -- [`11.4.5-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.5-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/11.4-ubi/Dockerfile) +- [`11.4.7-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.7-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4-ubi/Dockerfile) -- [`11.4.5-noble`, `11.4-noble`, `lts-noble`, `11.4.5`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/11.4/Dockerfile) +- [`11.4.7-noble`, `11.4-noble`, `lts-noble`, `11.4.7`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4/Dockerfile) -- [`10.11.11-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.11-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.11-ubi/Dockerfile) +- [`10.11.13-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.13-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/10.11-ubi/Dockerfile) -- [`10.11.11-jammy`, `10.11-jammy`, `10-jammy`, `10.11.11`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.11/Dockerfile) +- [`10.11.13-jammy`, `10.11-jammy`, `10-jammy`, `10.11.13`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/10.11/Dockerfile) -- [`10.6.21-ubi9`, `10.6-ubi9`, `10.6.21-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.6-ubi/Dockerfile) +- [`10.6.22-ubi9`, `10.6-ubi9`, `10.6.22-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.6-ubi/Dockerfile) -- [`10.6.21-focal`, `10.6-focal`, `10.6.21`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.6/Dockerfile) +- [`10.6.22-jammy`, `10.6-jammy`](https://github.com/MariaDB/mariadb-docker/blob/9bc98d6905a26282e6209da20970d9d4b055a384/10.6-jammy/Dockerfile) -- [`10.5.28-focal`, `10.5-focal`, `10.5.28`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/3bfeae408bde492aad0444cbb13d55a70ceec6e5/10.5/Dockerfile) +- [`10.6.22-focal`, `10.6-focal`, `10.6.22`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.6/Dockerfile) + +- [`10.5.29-focal`, `10.5-focal`, `10.5.29`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.5/Dockerfile) # Quick reference (cont.) From 4401be212b39e5da0ec82c8e68fe0a76b63acce5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 22 May 2025 16:10:59 -0700 Subject: [PATCH 2190/2686] Run update.sh --- busybox/README.md | 16 ++++----- mongo/README.md | 90 +++++++++++++++++++++++++++++++++++++++++++++++ php/README.md | 56 +++++++++++++++++++++++++++++ 3 files changed, 154 insertions(+), 8 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 532357cdd24a..8f5199478509 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/b5c9df2db88f6fb3cb22e05ecc02479c53b29199/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index cae6f092262d..a0efa7563058 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,18 @@ WARNING: ## Simple Tags +- [`8.0.10-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/Dockerfile) + +- [`8.0.10-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.10-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.10-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`8.0.10-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.10-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-1809/Dockerfile) + - [`8.0.9-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) - [`8.0.9-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -40,6 +52,18 @@ WARNING: - [`8.0.9-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) +- [`7.0.21-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) + +- [`7.0.21-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.21-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.21-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`7.0.21-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.21-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-1809/Dockerfile) + - [`7.0.20-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) - [`7.0.20-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,6 +76,18 @@ WARNING: - [`7.0.20-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) +- [`6.0.24-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) + +- [`6.0.24-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`6.0.24-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.24-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- [`6.0.24-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`6.0.24-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-1809/Dockerfile) + - [`6.0.23-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) - [`6.0.23-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -66,6 +102,24 @@ WARNING: ## Shared Tags +- `8.0.10-rc0`, `8.0-rc`: + + - [`8.0.10-rc0-noble`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/Dockerfile) + - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.10-rc0-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `8.0.10-rc0-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-1809/Dockerfile) + - `8.0.9`, `8.0`, `8`, `latest`: - [`8.0.9-noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) @@ -84,6 +138,24 @@ WARNING: - [`8.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) +- `7.0.21-rc0`, `7.0-rc`: + + - [`7.0.21-rc0-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) + - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.21-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `7.0.21-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-1809/Dockerfile) + - `7.0.20`, `7.0`, `7`: - [`7.0.20-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) @@ -102,6 +174,24 @@ WARNING: - [`7.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) +- `6.0.24-rc0`, `6.0-rc`: + + - [`6.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) + - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.24-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) + +- `6.0.24-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-1809/Dockerfile) + - `6.0.23`, `6.0`, `6`: - [`6.0.23-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) diff --git a/php/README.md b/php/README.md index f2e8540ec000..1823c04c3a43 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.8RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.8RC1-bookworm`, `8.4-rc-bookworm`, `8.4.8RC1-cli`, `8.4-rc-cli`, `8.4.8RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.8RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.8RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.8RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.8RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.8RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.8RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.8RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.8RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.8RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.8RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.8RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.8RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.8RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.8RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.8RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.8RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.8RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.8RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.8RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.8RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.8RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/cli/Dockerfile) + +- [`8.4.8RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/fpm/Dockerfile) + +- [`8.4.8RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/zts/Dockerfile) + - [`8.4.7-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.7-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.7-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.7`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/cli/Dockerfile) - [`8.4.7-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.7-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.7-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/zts/Dockerfile) +- [`8.3.22RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.22RC1-bookworm`, `8.3-rc-bookworm`, `8.3.22RC1-cli`, `8.3-rc-cli`, `8.3.22RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.22RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.22RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.22RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.22RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.22RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.22RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.22RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.22RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.22RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.22RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.22RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.22RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.22RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.22RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.22RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.22RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.22RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.22RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.22RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/zts/Dockerfile) + +- [`8.3.22RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.22RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/cli/Dockerfile) + +- [`8.3.22RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/fpm/Dockerfile) + +- [`8.3.22RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/zts/Dockerfile) + - [`8.3.21-cli-bookworm`, `8.3-cli-bookworm`, `8.3.21-bookworm`, `8.3-bookworm`, `8.3.21-cli`, `8.3-cli`, `8.3.21`, `8.3`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/cli/Dockerfile) - [`8.3.21-apache-bookworm`, `8.3-apache-bookworm`, `8.3.21-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/apache/Dockerfile) From 197f839f31fb074d7d9cefe7ad4e1f9f7fed08b7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 10:09:49 -0700 Subject: [PATCH 2191/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- convertigo/README.md | 2 +- liquibase/README.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 2149badc494f..49a0bbff4b51 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.4`, `25.4-jammy`, `25.4.2`, `25.4.2-jammy`, `25.4.2.31`, `25.4.2.31-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.4.2.31/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.5`, `25.5-jammy`, `25.5.1`, `25.5.1-jammy`, `25.5.1.2782`, `25.5.1.2782-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.5.1.2782/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.3.3.42/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.5`, `25.4.5-jammy`, `25.4.5.24`, `25.4.5.24-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.4.5.24/Dockerfile.ubuntu) -- [`25.2`, `25.2-jammy`, `25.2.2`, `25.2.2-jammy`, `25.2.2.39`, `25.2.2.39-jammy`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/25.2.2.39/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.3.3.42/Dockerfile.ubuntu) -- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/5f600937076099ad4f7bee2e9e91d458a491dc8b/server/24.8.14.39/Dockerfile.ubuntu) +- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/24.8.14.39/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index 79a57e631454..2d8c146ece16 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.5`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/6003de2a5f91b934f60a9ab731bf45341024f7b6/docker/default/Dockerfile) +- [`8.3.6`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/6e628ac765adb0968a764fc2593886ef8732808e/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/liquibase/README.md b/liquibase/README.md index e7b9b072ad8f..a142515eea45 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.31`, `4.31.1`, `latest`](https://github.com/liquibase/docker/blob/721daba2f67968383d82ce61e2f6891f444685ee/Dockerfile) +- [`4.32`, `4.32.0`, `latest`](https://github.com/liquibase/docker/blob/5f25f074861b619a8bd3a3147d3ceeafb672f717/Dockerfile) -- [`4.31-alpine`, `4.31.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/721daba2f67968383d82ce61e2f6891f444685ee/Dockerfile.alpine) +- [`4.32-alpine`, `4.32.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/5f25f074861b619a8bd3a3147d3ceeafb672f717/Dockerfile.alpine) # Quick reference (cont.) From 710563e27b6f549a5690cb36b444610d90848134 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 11:09:52 -0700 Subject: [PATCH 2192/2686] Run update.sh --- fluentd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluentd/README.md b/fluentd/README.md index 11d00980ed4c..a536ef249e79 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v1.16.9-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/35463e85d2b17fbb34e82345d253e62ad0af710b/v1.16/alpine/Dockerfile) +- [`v1.16.9-1.0`, `v1.16-1`](https://github.com/fluent/fluentd-docker-image/blob/505a1af75b4a4adb40d576df7b18cebab853264e/v1.16/alpine/Dockerfile) -- [`v1.16.9-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/35463e85d2b17fbb34e82345d253e62ad0af710b/v1.16/debian/Dockerfile) +- [`v1.16.9-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/505a1af75b4a4adb40d576df7b18cebab853264e/v1.16/debian/Dockerfile) - [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) From fc73f62a3aaad330b21e0af5c8b38df85f3f4b02 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 12:09:47 -0700 Subject: [PATCH 2193/2686] Run update.sh --- docker/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docker/README.md b/docker/README.md index d2f82671bfd5..aa8bb780ec94 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,43 @@ WARNING: ## Simple Tags -- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/cli/Dockerfile) +- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/cli/Dockerfile) - [`28.2.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.1-dind-alpine3.21`, `28.2.0-rc.1`, `28-rc`, `rc`, `28.2.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/861512c7e2e4945f0878d043e55262dd330843a4/28-rc/dind/Dockerfile) - [`28.2.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/dind-rootless/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-1809/Dockerfile) -- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/cli/Dockerfile) +- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/cli/Dockerfile) - [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/52c8bfa9869c9c5605c6c03dc9a82cfe426ace77/28/dind/Dockerfile) - [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-1809/Dockerfile) +- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags - `28.2.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/a89fda523324cef5da11eed61c397347e1435edd/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-1809/Dockerfile) - `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fc3431ce388e6622936952b0d2e54b28d3488edd/28/windows/windowsservercore-1809/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From 2a8392dc211e0bbc6f8579b76b99029d668cd59c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 13:10:12 -0700 Subject: [PATCH 2194/2686] Run update.sh --- gcc/README.md | 2 +- openjdk/README.md | 50 +++++++++++++++++++++++------------------------ 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index 4b4b97c6d665..6c34987c26a7 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -26,7 +26,7 @@ WARNING: - [`15.1.0`, `15.1`, `15`, `latest`, `15.1.0-bookworm`, `15.1-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/a842bfea737b1127a922a27d768df7e382f740af/15/Dockerfile) -- [`14.2.0`, `14.2`, `14`, `14.2.0-bookworm`, `14.2-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/22c26a9e4edb4ce4f7676dfa100afc80fc2ccbea/14/Dockerfile) +- [`14.3.0`, `14.3`, `14`, `14.3.0-bookworm`, `14.3-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/d262936418fbf062bb25907d5126a178578ab58b/14/Dockerfile) - [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/13/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 5c7a1af85fa9..1498c037a861 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-23-jdk-oraclelinux9`, `25-ea-23-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-23-jdk-oracle`, `25-ea-23-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-24-jdk-oraclelinux9`, `25-ea-24-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-24-jdk-oracle`, `25-ea-24-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-23-jdk-oraclelinux8`, `25-ea-23-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-24-jdk-oraclelinux8`, `25-ea-24-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-23-jdk-bookworm`, `25-ea-23-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/bookworm/Dockerfile) +- [`25-ea-24-jdk-bookworm`, `25-ea-24-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/bookworm/Dockerfile) -- [`25-ea-23-jdk-slim-bookworm`, `25-ea-23-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-23-jdk-slim`, `25-ea-23-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-24-jdk-slim-bookworm`, `25-ea-24-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-24-jdk-slim`, `25-ea-24-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-23-jdk-bullseye`, `25-ea-23-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/bullseye/Dockerfile) +- [`25-ea-24-jdk-bullseye`, `25-ea-24-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/bullseye/Dockerfile) -- [`25-ea-23-jdk-slim-bullseye`, `25-ea-23-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-24-jdk-slim-bullseye`, `25-ea-24-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-23-jdk-windowsservercore-ltsc2025`, `25-ea-23-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-24-jdk-windowsservercore-ltsc2025`, `25-ea-24-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-23-jdk-windowsservercore-ltsc2022`, `25-ea-23-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-24-jdk-windowsservercore-ltsc2022`, `25-ea-24-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-23-jdk-windowsservercore-1809`, `25-ea-23-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-24-jdk-windowsservercore-1809`, `25-ea-24-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-23-jdk-nanoserver-ltsc2025`, `25-ea-23-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-24-jdk-nanoserver-ltsc2025`, `25-ea-24-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-23-jdk-nanoserver-ltsc2022`, `25-ea-23-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-24-jdk-nanoserver-ltsc2022`, `25-ea-24-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-23-jdk-nanoserver-1809`, `25-ea-23-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-24-jdk-nanoserver-1809`, `25-ea-24-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-23-jdk`, `25-ea-23`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-24-jdk`, `25-ea-24`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-23-jdk-windowsservercore`, `25-ea-23-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-24-jdk-windowsservercore`, `25-ea-24-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-23-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-23-jdk-nanoserver`, `25-ea-23-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-24-jdk-nanoserver`, `25-ea-24-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-23-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-23-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-23-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/8439e8d6ea8b201c9520bba03ba5eb8c4ff71309/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-24-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-24-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 5521167602748f6c23742b3119e2fb559a3b19bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 15:09:54 -0700 Subject: [PATCH 2195/2686] Run update.sh --- ros/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ros/README.md b/ros/README.md index c8b498cf4468..d78906c32261 100644 --- a/ros/README.md +++ b/ros/README.md @@ -44,6 +44,12 @@ WARNING: - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) +- [`kilted-ros-core`, `kilted-ros-core-noble`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/ros-core/Dockerfile) + +- [`kilted-ros-base`, `kilted-ros-base-noble`, `kilted`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/ros-base/Dockerfile) + +- [`kilted-perception`, `kilted-perception-noble`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/perception/Dockerfile) + - [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-base/Dockerfile) From 13969572f39e7121a0bfad28a8f44e0c1b806772 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 16:10:05 -0700 Subject: [PATCH 2196/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 935ef7da3370..5ff134b9f3e2 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.120.1`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/adf58ca55ebf4151a2c48c87a66ff0fdf6c53b27/5/debian/Dockerfile) +- [`5.120.2`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ce234d9236dcd4ed7319c26cbb534676120b0181/5/debian/Dockerfile) -- [`5.120.1-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/adf58ca55ebf4151a2c48c87a66ff0fdf6c53b27/5/alpine/Dockerfile) +- [`5.120.2-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ce234d9236dcd4ed7319c26cbb534676120b0181/5/alpine/Dockerfile) # Quick reference (cont.) From 97f3d829c61ea293a087ad14ad63ecd3a8103026 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 17:10:20 -0700 Subject: [PATCH 2197/2686] Run update.sh --- arangodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangodb/README.md b/arangodb/README.md index e97e11114bdb..a3fd8b4a815c 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.13`](https://github.com/arangodb/arangodb-docker/blob/52a0ac78f9cbae17665743bfc1e5b7c75329d268/alpine/3.11.13/Dockerfile) +- [`3.11`, `3.11.14`](https://github.com/arangodb/arangodb-docker/blob/8b486ff8c7b63e75c19f2bee37b756e9c0ba620f/alpine/3.11.14/Dockerfile) - [`3.12`, `3.12.4.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/351d27922fd2060deb86a76a26a99ff1bb2f3c12/alpine/3.12.4.3/Dockerfile) From bd3274e111d5df2c7f65cbecd13ad4ddf904acf5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 23 May 2025 18:10:17 -0700 Subject: [PATCH 2198/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docker/README.md b/docker/README.md index aa8bb780ec94..31b85ead5fc6 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`28.2.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/cli/Dockerfile) +- [`28.2.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/cli/Dockerfile) -- [`28.2.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.1-dind-alpine3.21`, `28.2.0-rc.1`, `28-rc`, `rc`, `28.2.0-rc.1-alpine3.21`](https://github.com/docker-library/docker/blob/861512c7e2e4945f0878d043e55262dd330843a4/28-rc/dind/Dockerfile) +- [`28.2.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.2-dind-alpine3.21`, `28.2.0-rc.2`, `28-rc`, `rc`, `28.2.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/dind/Dockerfile) -- [`28.2.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8daf44089ceb1c4996c1985f1ae6a17a70d52dfc/28-rc/dind-rootless/Dockerfile) +- [`28.2.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/dind-rootless/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.0-rc.1-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-1809/Dockerfile) +- [`28.2.0-rc.2-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-1809/Dockerfile) - [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/cli/Dockerfile) @@ -54,11 +54,11 @@ WARNING: ## Shared Tags -- `28.2.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: +- `28.2.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.2.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.0-rc.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/0dcbded97a8c1fc306c5325566cbedb5b164955b/28-rc/windows/windowsservercore-1809/Dockerfile) + - [`28.2.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-1809/Dockerfile) - `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: From da032b61421be24bc68661eb72a15e9ee6c65403 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 26 May 2025 07:10:02 -0700 Subject: [PATCH 2199/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 11de4e6438ef..d5759788c812 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.20`, `24.0-alpine3.20`, `24.0.2-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/alpine3.20/Dockerfile) +- [`24-alpine3.20`, `24.1-alpine3.20`, `24.1.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.20/Dockerfile) -- [`24-alpine`, `24-alpine3.21`, `24.0-alpine`, `24.0-alpine3.21`, `24.0.2-alpine`, `24.0.2-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/alpine3.21/Dockerfile) +- [`24-alpine`, `24-alpine3.21`, `24.1-alpine`, `24.1-alpine3.21`, `24.1.0-alpine`, `24.1.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.21/Dockerfile) -- [`24`, `24-bookworm`, `24.0`, `24.0-bookworm`, `24.0.2`, `24.0.2-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.1`, `24.1-bookworm`, `24.1.0`, `24.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.0-bookworm-slim`, `24.0-slim`, `24.0.2-bookworm-slim`, `24.0.2-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.1-bookworm-slim`, `24.1-slim`, `24.1.0-bookworm-slim`, `24.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.0-bullseye`, `24.0.2-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.1-bullseye`, `24.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.0-bullseye-slim`, `24.0.2-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.1-bullseye-slim`, `24.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye-slim/Dockerfile) - [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.1-alpine3.20`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.20/Dockerfile) From 04433762cfc4dab51c0d06016fe6071b5821ca7e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 May 2025 08:10:03 -0700 Subject: [PATCH 2200/2686] Run update.sh --- traefik/README.md | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index e2f3d5479edf..bc07506fad64 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,29 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.4.0-windowsservercore-ltsc2022`, `3.4.0-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.1-windowsservercore-ltsc2022`, `3.4.1-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.0-windowsservercore-1809`, `3.4.0-windowsservercore-1809`, `v3.4-windowsservercore-1809`, `3.4-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `chaource-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/1809/Dockerfile) +- [`v3.4.1-windowsservercore-1809`, `3.4.1-windowsservercore-1809`, `v3.4-windowsservercore-1809`, `3.4-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `chaource-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/1809/Dockerfile) -- [`v3.4.0-nanoserver-ltsc2022`, `3.4.0-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.1-nanoserver-ltsc2022`, `3.4.1-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.0`, `3.4.0`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/8b16bf1c51046631b81b5acc469edb982f5c237d/v3.4/alpine/Dockerfile) +- [`v3.4.1`, `3.4.1`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/alpine/Dockerfile) -- [`v3.3.7-windowsservercore-ltsc2022`, `3.3.7-windowsservercore-ltsc2022`, `v3.3-windowsservercore-ltsc2022`, `3.3-windowsservercore-ltsc2022`, `saintnectaire-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.25-windowsservercore-ltsc2022`, `2.11.25-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v3.3.7-windowsservercore-1809`, `3.3.7-windowsservercore-1809`, `v3.3-windowsservercore-1809`, `3.3-windowsservercore-1809`, `saintnectaire-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/1809/Dockerfile) +- [`v2.11.25-windowsservercore-1809`, `2.11.25-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/1809/Dockerfile) -- [`v3.3.7-nanoserver-ltsc2022`, `3.3.7-nanoserver-ltsc2022`, `v3.3-nanoserver-ltsc2022`, `3.3-nanoserver-ltsc2022`, `saintnectaire-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.25-nanoserver-ltsc2022`, `2.11.25-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.3.7`, `3.3.7`, `v3.3`, `3.3`, `saintnectaire`](https://github.com/traefik/traefik-library-image/blob/f85d75511c3d417080b2d29bda42b794c43f4aac/v3.3/alpine/Dockerfile) - -- [`v2.11.24-windowsservercore-ltsc2022`, `2.11.24-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/servercore-ltsc2022/Dockerfile) - -- [`v2.11.24-windowsservercore-1809`, `2.11.24-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/1809/Dockerfile) - -- [`v2.11.24-nanoserver-ltsc2022`, `2.11.24-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/windows/nanoserver-ltsc2022/Dockerfile) - -- [`v2.11.24`, `2.11.24`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/87668d6d8d86f920c2d3b0ae149673b26aec71df/v2.11/alpine/Dockerfile) +- [`v2.11.25`, `2.11.25`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/alpine/Dockerfile) # Quick reference (cont.) From ec4a7cb698c232790ec668049b638cf509bd81de Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 May 2025 12:10:07 -0700 Subject: [PATCH 2201/2686] Run update.sh --- archlinux/README.md | 6 ++-- clearlinux/README.md | 2 +- ghost/README.md | 4 +-- golang/README.md | 12 ++++---- gradle/README.md | 68 ++++++++++++++++++++++---------------------- python/README.md | 36 +++++++++++------------ sonarqube/README.md | 26 ++++++++--------- swift/README.md | 24 ++++++++-------- varnish/README.md | 4 +-- xwiki/README.md | 6 ++-- 10 files changed, 94 insertions(+), 94 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index bdec9b466b9c..e530d6b55847 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.base) +- [`latest`, `base`, `base-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.base) -- [`base-devel`, `base-devel-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250518.0.352066`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/fc983c8f72b0684b9c8559999485ac1ac58c3c47/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 640bf0aafafb..2500c732816d 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/27a518ed29a2028033f7a3d23f983650ed391c18/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ce1bb4278aa485d3075433d74c153adbeea98adf/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 5ff134b9f3e2..c59bd49dfbd4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.120.2`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ce234d9236dcd4ed7319c26cbb534676120b0181/5/debian/Dockerfile) +- [`5.120.3`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8a220c4cec5ea861f8b4995f50015fd2674eacd8/5/debian/Dockerfile) -- [`5.120.2-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ce234d9236dcd4ed7319c26cbb534676120b0181/5/alpine/Dockerfile) +- [`5.120.3-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8a220c4cec5ea861f8b4995f50015fd2674eacd8/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index a9b16b36de0c..510a3d452966 100644 --- a/golang/README.md +++ b/golang/README.md @@ -68,13 +68,13 @@ WARNING: - [`1.23.9-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- [`tip-20250517-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bookworm/Dockerfile) +- [`tip-20250524-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bookworm/Dockerfile) -- [`tip-20250517-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bullseye/Dockerfile) +- [`tip-20250524-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bullseye/Dockerfile) -- [`tip-20250517-alpine3.21`, `tip-alpine3.21`, `tip-20250517-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/alpine3.21/Dockerfile) +- [`tip-20250524-alpine3.21`, `tip-alpine3.21`, `tip-20250524-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.21/Dockerfile) -- [`tip-20250517-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/alpine3.20/Dockerfile) +- [`tip-20250524-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.20/Dockerfile) ## Shared Tags @@ -116,9 +116,9 @@ WARNING: - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`1.23.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) -- `tip-20250517`, `tip`: +- `tip-20250524`, `tip`: - - [`tip-20250517-bookworm`](https://github.com/docker-library/golang/blob/96f7058a054cc34157a97d877ecd65c574f500b8/tip/bookworm/Dockerfile) + - [`tip-20250524-bookworm`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index 8a12eeee88e0..b054029eb5c8 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,73 +24,73 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.0-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.0-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.0-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.0`, `8.14`, `8`, `8.14.0-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.0-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-noble/Dockerfile) +- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-noble/Dockerfile) -- [`8.14.0-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.0-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.0-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-jammy/Dockerfile) +- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-jammy/Dockerfile) -- [`8.14.0-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.0-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.0-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-alpine/Dockerfile) +- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-alpine/Dockerfile) -- [`8.14.0-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.0-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-corretto/Dockerfile) +- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-corretto/Dockerfile) -- [`8.14.0-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.0-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-ubi9/Dockerfile) +- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-ubi9/Dockerfile) -- [`8.14.0-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.0-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.0-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.0-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.0-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.0-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-noble-graal/Dockerfile) +- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-noble-graal/Dockerfile) -- [`8.14.0-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.0-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.0-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk21-jammy-graal/Dockerfile) +- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-jammy-graal/Dockerfile) -- [`8.14.0-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.0-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-noble/Dockerfile) +- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-noble/Dockerfile) -- [`8.14.0-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-jammy/Dockerfile) +- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-jammy/Dockerfile) -- [`8.14.0-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.0-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.0-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-focal/Dockerfile) +- [`8.14.1-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.1-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.1-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-focal/Dockerfile) -- [`8.14.0-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-alpine/Dockerfile) +- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-alpine/Dockerfile) -- [`8.14.0-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.0-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-corretto/Dockerfile) +- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-corretto/Dockerfile) -- [`8.14.0-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.0-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-ubi9/Dockerfile) +- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-ubi9/Dockerfile) -- [`8.14.0-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.0-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-noble-graal/Dockerfile) +- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-noble-graal/Dockerfile) -- [`8.14.0-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-jammy-graal/Dockerfile) +- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-jammy-graal/Dockerfile) -- [`8.14.0-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.0-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.0-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk17-focal-graal/Dockerfile) +- [`8.14.1-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.1-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.1-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-focal-graal/Dockerfile) -- [`8.14.0-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.0-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-jammy/Dockerfile) +- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-jammy/Dockerfile) -- [`8.14.0-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-focal/Dockerfile) +- [`8.14.1-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-focal/Dockerfile) -- [`8.14.0-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-alpine/Dockerfile) +- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-alpine/Dockerfile) -- [`8.14.0-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.0-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-corretto/Dockerfile) +- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-corretto/Dockerfile) -- [`8.14.0-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.0-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk11-ubi9/Dockerfile) +- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-ubi9/Dockerfile) -- [`8.14.0-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.0-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-jammy/Dockerfile) +- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-jammy/Dockerfile) -- [`8.14.0-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-focal/Dockerfile) +- [`8.14.1-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-focal/Dockerfile) -- [`8.14.0-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.0-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-corretto/Dockerfile) +- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-corretto/Dockerfile) -- [`8.14.0-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.0-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk8-ubi9/Dockerfile) +- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-ubi9/Dockerfile) -- [`8.14.0-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.0-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-noble/Dockerfile) +- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-noble/Dockerfile) -- [`8.14.0-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-alpine/Dockerfile) +- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-alpine/Dockerfile) -- [`8.14.0-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.0-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-corretto/Dockerfile) +- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-corretto/Dockerfile) -- [`8.14.0-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.0-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-ubi9/Dockerfile) +- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-ubi9/Dockerfile) -- [`8.14.0-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.0-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk24-noble-graal/Dockerfile) +- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-noble-graal/Dockerfile) -- [`8.14.0-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.0-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.0-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.0-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current/Dockerfile) +- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current/Dockerfile) -- [`8.14.0-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.0-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.0-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.0-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.0-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.0-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.0-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.0-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.0-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.0-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/412636fb1ec7fda11cdc0613801db735a6c6d847/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-graal/Dockerfile) - [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) diff --git a/python/README.md b/python/README.md index 14f8968e9f7f..21dd648beaaa 100644 --- a/python/README.md +++ b/python/README.md @@ -28,23 +28,23 @@ WARNING: ## Simple Tags -- [`3.14.0b1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bookworm/Dockerfile) +- [`3.14.0b2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bookworm/Dockerfile) -- [`3.14.0b1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0b2-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0b1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bullseye/Dockerfile) +- [`3.14.0b2-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bullseye/Dockerfile) -- [`3.14.0b1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0b2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b1-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b2-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0b1-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0b2-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.20/Dockerfile) -- [`3.14.0b1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0b2-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0b1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0b2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0b1-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) +- [`3.14.0b2-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) - [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) @@ -120,18 +120,18 @@ WARNING: ## Shared Tags -- `3.14.0b1`, `3.14-rc`: +- `3.14.0b2`, `3.14-rc`: - - [`3.14.0b1-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.14-rc/bookworm/Dockerfile) - - [`3.14.0b1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0b2-bookworm`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bookworm/Dockerfile) + - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) -- `3.14.0b1-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0b2-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0b1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0b1-windowsservercore-1809`](https://github.com/docker-library/python/blob/0fb50d347fe0df6a92b492ed52d012cb4d502627/3.14-rc/windows/windowsservercore-1809/Dockerfile) + - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.3`, `3.13`, `3`, `latest`: diff --git a/sonarqube/README.md b/sonarqube/README.md index 03cc39f52609..0ebd9cf7f085 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.2.0-developer`, `2025.2-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/developer/Dockerfile) +- [`2025.3.0-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/developer/Dockerfile) -- [`2025.2.0-enterprise`, `2025.2-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/enterprise/Dockerfile) +- [`2025.3.0-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/enterprise/Dockerfile) -- [`2025.2.0-datacenter-app`, `2025.2-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/datacenter/app/Dockerfile) +- [`2025.3.0-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/datacenter/app/Dockerfile) -- [`2025.2.0-datacenter-search`, `2025.2-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025/datacenter/search/Dockerfile) +- [`2025.3.0-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/datacenter/search/Dockerfile) -- [`2025.1.1-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/developer/Dockerfile) +- [`2025.1.2-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/developer/Dockerfile) -- [`2025.1.1-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/enterprise/Dockerfile) +- [`2025.1.2-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/enterprise/Dockerfile) -- [`2025.1.1-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/app/Dockerfile) +- [`2025.1.2-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/datacenter/app/Dockerfile) -- [`2025.1.1-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/2025.1/datacenter/search/Dockerfile) +- [`2025.1.2-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/datacenter/search/Dockerfile) - [`25.5.0.107428-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/56846598574ea57af773ec32bc4c36c25d40f34c/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2c5fde2923701623402dbec59369d4fa115f1adb/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index b775e58386cf..1049a44c3c39 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.0`, `6.1`, `6.1.0-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/24.04/Dockerfile) +- [`6.1.1`, `6.1`, `6.1.1-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/24.04/Dockerfile) -- [`6.1.0-slim`, `6.1-slim`, `6.1.0-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/24.04/slim/Dockerfile) +- [`6.1.1-slim`, `6.1-slim`, `6.1.1-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/24.04/slim/Dockerfile) -- [`6.1.0-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/22.04/Dockerfile) +- [`6.1.1-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/22.04/Dockerfile) -- [`6.1.0-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/22.04/slim/Dockerfile) +- [`6.1.1-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/22.04/slim/Dockerfile) -- [`6.1.0-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/20.04/slim/Dockerfile) +- [`6.1.1-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/20.04/slim/Dockerfile) -- [`6.1.0-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/ubuntu/20.04/Dockerfile) +- [`6.1.1-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/20.04/Dockerfile) -- [`6.1.0-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/debian/12/Dockerfile) +- [`6.1.1-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/debian/12/Dockerfile) -- [`6.1.0-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/amazonlinux/2/Dockerfile) +- [`6.1.1-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/amazonlinux/2/Dockerfile) -- [`6.1.0-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/amazonlinux/2/slim/Dockerfile) +- [`6.1.1-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/amazonlinux/2/slim/Dockerfile) -- [`6.1.0-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/rhel-ubi/9/Dockerfile) +- [`6.1.1-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/rhel-ubi/9/Dockerfile) -- [`6.1.0-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/rhel-ubi/9/slim/Dockerfile) +- [`6.1.1-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/rhel-ubi/9/slim/Dockerfile) -- [`6.1.0-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/fad056fa5f65f926323f0ff61129cb4e6b1eec11/6.1/windows/LTSC2022/Dockerfile) +- [`6.1.1-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/windows/LTSC2022/Dockerfile) - [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index e0afca175869..69a62492c373 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.1`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/fresh/debian/Dockerfile) +- [`fresh`, `7.7.1`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/ed86c8d78292bb13fe129ba5dcccfd8d11ed1481/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.7.1-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.7.1-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/ed86c8d78292bb13fe129ba5dcccfd8d11ed1481/fresh/alpine/Dockerfile) - [`old`, `7.6.3`, `7.6`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/old/debian/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index d00dba4df337..a379fff3fc26 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.3`, `17.3.0`, `17-mysql-tomcat`, `17.3-mysql-tomcat`, `17.3.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mysql-tomcat/Dockerfile) +- [`17`, `17.4`, `17.4.0`, `17-mysql-tomcat`, `17.4-mysql-tomcat`, `17.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.3-postgres-tomcat`, `17.3.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.4-postgres-tomcat`, `17.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.3-mariadb-tomcat`, `17.3.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/71a0c005e146907701301188b381e917638d7d1c/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.4-mariadb-tomcat`, `17.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.8`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mysql-tomcat/Dockerfile) From 04d2adbf61eeac8af085bb7667d443b1a1061045 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 May 2025 13:10:42 -0700 Subject: [PATCH 2202/2686] Run update.sh --- almalinux/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 3dfa90d32d9b..d69e01b3f8bc 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -28,13 +28,17 @@ WARNING: - [`10-kitten-minimal`, `10-kitten-minimal-20250520`](https://github.com/AlmaLinux/container-images/blob/86aa3a7482e6edd9c1e9c38065257b8c155d4507/minimal/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250527`](https://github.com/AlmaLinux/container-images/blob/1864a779d7e0eb6345de3ff5fc464314224e19fe/default/amd64/Dockerfile) + +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250527`](https://github.com/AlmaLinux/container-images/blob/1864a779d7e0eb6345de3ff5fc464314224e19fe/minimal/amd64/Dockerfile) + - [`8`, `8.10`, `8.10-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/default/amd64/Dockerfile) - [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250520`](https://github.com/AlmaLinux/container-images/blob/411c4c906cf1dc7664b30d5c34e2b7e9a273b80e/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250527`](https://github.com/AlmaLinux/container-images/blob/d8e55638e1ddeabf27e53b135b7a90ea96c07076/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250520`](https://github.com/AlmaLinux/container-images/blob/411c4c906cf1dc7664b30d5c34e2b7e9a273b80e/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250527`](https://github.com/AlmaLinux/container-images/blob/d8e55638e1ddeabf27e53b135b7a90ea96c07076/minimal/amd64/Dockerfile) # Quick reference (cont.) From 6b64cf6bb44e9137b448adb6580d2fff5a69d932 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 May 2025 14:10:09 -0700 Subject: [PATCH 2203/2686] Run update.sh --- neo4j/README.md | 8 ++++---- rocket.chat/README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index a35254830607..1fa5dd99250d 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.04.0-enterprise-ubi9`, `2025.04-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/enterprise/Dockerfile) -- [`5.26.6-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.6-community`, `5.26-community`, `5-community`, `5.26.6-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.6`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/bullseye/community/Dockerfile) +- [`5.26.7-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.7-community`, `5.26-community`, `5-community`, `5.26.7-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.7`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/bullseye/community/Dockerfile) -- [`5.26.6-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.6-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/bullseye/enterprise/Dockerfile) +- [`5.26.7-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.7-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/bullseye/enterprise/Dockerfile) -- [`5.26.6-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.6-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/community/Dockerfile) +- [`5.26.7-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.7-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/ubi9/community/Dockerfile) -- [`5.26.6-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/0b02ab3d2bf3861e179877398dde9a2f3b4b55a2/5.26.6/ubi9/enterprise/Dockerfile) +- [`5.26.7-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/ubi9/enterprise/Dockerfile) - [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 342f4cb6e86e..f154990b8c5a 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.0`, `7.6`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.6/Dockerfile) +- [`7.6.1`, `7.6`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/cbc1851ee221b8cea1f4bff221682040d9ca4dbe/7.6/Dockerfile) - [`7.5.1`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.5/Dockerfile) From ff7d0f782cd73bf4df9b7cd1c8b795ad36d6e186 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 May 2025 17:10:20 -0700 Subject: [PATCH 2204/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index a8ca1a7184f7..62767a7002d6 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.7`, `ee-8.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/f7a9bd678ddd35ed68b819e22ece992a45289e96/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.8`, `ee-8.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/210708576d3aa769dec734576a5b2788b013aea1/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.7`, `ce-8.0.0.7_1`](https://github.com/aerospike/aerospike-server.docker/blob/f7a9bd678ddd35ed68b819e22ece992a45289e96/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.8`, `ce-8.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/210708576d3aa769dec734576a5b2788b013aea1/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) From 1dbee76fcf6e850710499c6204eb244a32178780 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 May 2025 10:10:04 -0700 Subject: [PATCH 2205/2686] Run update.sh --- node/README.md | 12 ------------ spark/README.md | 24 ++++++++++++------------ 2 files changed, 12 insertions(+), 24 deletions(-) diff --git a/node/README.md b/node/README.md index d5759788c812..8a71b4837af9 100644 --- a/node/README.md +++ b/node/README.md @@ -72,18 +72,6 @@ WARNING: - [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.2-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bullseye-slim/Dockerfile) -- [`18-alpine3.20`, `18.20-alpine3.20`, `18.20.8-alpine3.20`, `hydrogen-alpine3.20`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.20/Dockerfile) - -- [`18-alpine`, `18-alpine3.21`, `18.20-alpine`, `18.20-alpine3.21`, `18.20.8-alpine`, `18.20.8-alpine3.21`, `hydrogen-alpine`, `hydrogen-alpine3.21`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/alpine3.21/Dockerfile) - -- [`18`, `18-bookworm`, `18.20`, `18.20-bookworm`, `18.20.8`, `18.20.8-bookworm`, `hydrogen`, `hydrogen-bookworm`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bookworm/Dockerfile) - -- [`18-bookworm-slim`, `18-slim`, `18.20-bookworm-slim`, `18.20-slim`, `18.20.8-bookworm-slim`, `18.20.8-slim`, `hydrogen-bookworm-slim`, `hydrogen-slim`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bookworm-slim/Dockerfile) - -- [`18-bullseye`, `18.20-bullseye`, `18.20.8-bullseye`, `hydrogen-bullseye`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bullseye/Dockerfile) - -- [`18-bullseye-slim`, `18.20-bullseye-slim`, `18.20.8-bullseye-slim`, `hydrogen-bullseye-slim`](https://github.com/nodejs/docker-node/blob/ba2b3e61e6aaf4643108fb5f1cda9ee5238efde5/18/bullseye-slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/spark/README.md b/spark/README.md index 9feb777d1362..e984c71cb582 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-preview2-scala2.13-java21-python3-ubuntu`, `4.0.0-preview2-java21-python3`, `4.0.0-preview2-java21`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-python3-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java21-python3-ubuntu`, `4.0.0-java21-python3`, `4.0.0-java21`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-python3-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java21-r-ubuntu`, `4.0.0-preview2-java21-r`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-r-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java21-r-ubuntu`, `4.0.0-java21-r`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-r-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java21-ubuntu`, `4.0.0-preview2-java21-scala`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java21-ubuntu`, `4.0.0-java21-scala`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java21-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java21-python3-r-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java21-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-python3-r-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java17-python3-ubuntu`, `4.0.0-preview2-python3`, `4.0.0-preview2`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java17-python3-ubuntu`, `4.0.0-python3`, `4.0.0`, `python3-java17`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java17-r-ubuntu`, `4.0.0-preview2-r`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-r-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java17-r-ubuntu`, `4.0.0-r`, `r`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-r-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java17-ubuntu`, `4.0.0-preview2-scala`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java17-ubuntu`, `4.0.0-scala`, `scala`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-ubuntu/Dockerfile) -- [`4.0.0-preview2-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/059a2817e53ac7c0c408196f9eb91397a99ec84e/4.0.0-preview2/scala2.13-java17-python3-r-ubuntu/Dockerfile) +- [`4.0.0-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java17-python3-ubuntu`, `3.5.5-java17-python3`, `3.5.5-java17`, `python3-java17`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java17-python3-ubuntu`, `3.5.5-java17-python3`, `3.5.5-java17`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-ubuntu/Dockerfile) - [`3.5.5-scala2.12-java17-r-ubuntu`, `3.5.5-java17-r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-r-ubuntu/Dockerfile) @@ -48,11 +48,11 @@ WARNING: - [`3.5.5-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-python3-ubuntu`, `3.5.5-python3`, `3.5.5`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-python3-ubuntu`, `3.5.5-python3`, `3.5.5`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-r-ubuntu`, `3.5.5-r`, `r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-r-ubuntu`, `3.5.5-r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-ubuntu`, `3.5.5-scala`, `scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.5-scala2.12-java11-ubuntu`, `3.5.5-scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-ubuntu/Dockerfile) - [`3.5.5-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-r-ubuntu/Dockerfile) From 81ae3e6bf122cae7cadbf2dd75a9509bca3f9318 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 May 2025 11:10:32 -0700 Subject: [PATCH 2206/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 16 ++++++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c59bd49dfbd4..88dadc7f8b72 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.120.3`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/8a220c4cec5ea861f8b4995f50015fd2674eacd8/5/debian/Dockerfile) +- [`5.120.4`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c1d40a5e43bd632dfa2adfc55f444e0f3257c98f/5/debian/Dockerfile) -- [`5.120.3-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8a220c4cec5ea861f8b4995f50015fd2674eacd8/5/alpine/Dockerfile) +- [`5.120.4-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c1d40a5e43bd632dfa2adfc55f444e0f3257c98f/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index bfccf0657f18..c40cb8e1c4d3 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,17 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2-dev17`, `3.2-dev`, `3.2-dev17-bookworm`, `3.2-dev-bookworm`](https://github.com/docker-library/haproxy/blob/70c305c6007707c7647fb1d019632a9bbfb6a739/3.2/Dockerfile) +- [`3.3-dev0`, `3.3-dev`, `3.3-dev0-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/f60ffd8842e34ca4d65267b72139c32dc821736b/3.3/Dockerfile) -- [`3.2-dev17-alpine`, `3.2-dev-alpine`, `3.2-dev17-alpine3.21`, `3.2-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/70c305c6007707c7647fb1d019632a9bbfb6a739/3.2/alpine/Dockerfile) +- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.21`, `3.3-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/f60ffd8842e34ca4d65267b72139c32dc821736b/3.3/alpine/Dockerfile) -- [`3.1.7`, `3.1`, `latest`, `3.1.7-bookworm`, `3.1-bookworm`, `bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) +- [`3.2.0`, `3.2`, `latest`, `lts`, `3.2.0-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/788f34715b0b1ef626761dcca1a4e996316a9c6e/3.2/Dockerfile) -- [`3.1.7-alpine`, `3.1-alpine`, `alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/alpine/Dockerfile) +- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.21`, `3.2-alpine3.21`, `alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/788f34715b0b1ef626761dcca1a4e996316a9c6e/3.2/alpine/Dockerfile) -- [`3.0.10`, `3.0`, `lts`, `3.0.10-bookworm`, `3.0-bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/Dockerfile) +- [`3.1.7`, `3.1`, `3.1.7-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) -- [`3.0.10-alpine`, `3.0-alpine`, `lts-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/alpine/Dockerfile) +- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/alpine/Dockerfile) + +- [`3.0.10`, `3.0`, `3.0.10-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/Dockerfile) + +- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/alpine/Dockerfile) - [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/82d8d0e917b2dbba726f6cf853688d1bb6eed5fc/2.8/Dockerfile) From 4878d2d557d58a9e9b354c27007b21bfe4039c57 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 May 2025 12:10:04 -0700 Subject: [PATCH 2207/2686] Run update.sh --- swift/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/swift/README.md b/swift/README.md index 1049a44c3c39..b49dc04abad0 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.1`, `6.1`, `6.1.1-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/24.04/Dockerfile) +- [`6.1.2`, `6.1`, `6.1.2-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/24.04/Dockerfile) -- [`6.1.1-slim`, `6.1-slim`, `6.1.1-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/24.04/slim/Dockerfile) +- [`6.1.2-slim`, `6.1-slim`, `6.1.2-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/24.04/slim/Dockerfile) -- [`6.1.1-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/22.04/Dockerfile) +- [`6.1.2-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/22.04/Dockerfile) -- [`6.1.1-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/22.04/slim/Dockerfile) +- [`6.1.2-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/22.04/slim/Dockerfile) -- [`6.1.1-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/20.04/slim/Dockerfile) +- [`6.1.2-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/20.04/slim/Dockerfile) -- [`6.1.1-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/ubuntu/20.04/Dockerfile) +- [`6.1.2-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/20.04/Dockerfile) -- [`6.1.1-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/debian/12/Dockerfile) +- [`6.1.2-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/debian/12/Dockerfile) -- [`6.1.1-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/amazonlinux/2/Dockerfile) +- [`6.1.2-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/amazonlinux/2/Dockerfile) -- [`6.1.1-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/amazonlinux/2/slim/Dockerfile) +- [`6.1.2-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/amazonlinux/2/slim/Dockerfile) -- [`6.1.1-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/rhel-ubi/9/Dockerfile) +- [`6.1.2-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/rhel-ubi/9/Dockerfile) -- [`6.1.1-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/rhel-ubi/9/slim/Dockerfile) +- [`6.1.2-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/rhel-ubi/9/slim/Dockerfile) -- [`6.1.1-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/a2511114ba55abd6f5200c8fb0758fdd067ccad0/6.1/windows/LTSC2022/Dockerfile) +- [`6.1.2-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/windows/LTSC2022/Dockerfile) - [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) From 1d9fc0803a9d57ba7255cdec135aadd7a65dd9c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 28 May 2025 16:10:18 -0700 Subject: [PATCH 2208/2686] Run update.sh --- kapacitor/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kapacitor/README.md b/kapacitor/README.md index aae634b5165f..f83a7256e1f1 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.6/Dockerfile) +- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.6/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.6/alpine/Dockerfile) +- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.6/alpine/Dockerfile) -- [`1.7`, `1.7.6`, `latest`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.7/Dockerfile) +- [`1.7`, `1.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.6-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/f4065650506de70c65b6b63234eb5e03e4c33fb6/kapacitor/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.7/alpine/Dockerfile) # Quick reference (cont.) From 9566b6bbbf61e0b0c02c782cb88b0843be656368 Mon Sep 17 00:00:00 2001 From: Petar Shtuchkin Date: Fri, 23 May 2025 18:02:27 +0300 Subject: [PATCH 2209/2686] Update docs for privilege / permission changes. --- redis/content.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/redis/content.md b/redis/content.md index f5dfd0144b0a..ccd86f1b87a6 100644 --- a/redis/content.md +++ b/redis/content.md @@ -14,6 +14,12 @@ For the ease of accessing Redis from other containers via Docker networking, the - [Protected mode](https://redis.io/docs/latest/operate/oss_and_stack/management/security/#protected-mode) - [A few things about Redis security by antirez](http://antirez.com/news/96) +## Process User and Privileges + +By default, the Redis Docker image drops privileges by switching to the redis user and removing unnecessary capabilities. This step is skipped if Docker is run with the `--user` option or if you set the `SKIP_DROP_PRIVS=1` (since 8.0.2) environment variable. + +Note: Using `SKIP_DROP_PRIVS` is not recommended, as it reduces the container's security. + # How to use this image ## Start a redis instance @@ -32,6 +38,20 @@ There are several different persistence strategies to choose from. This one will For more about Redis persistence, see [the official Redis documentation](https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/). +### File and Directory Permissions + +Redis will attempt to correct the ownership and permissions of the data and configuration (since 8.0.2) directories and files if they are not set correctly. This adjustment is only performed in basic, default scenarios to avoid interfering with custom or user-specific configurations. + +You can skip this step by setting the `SKIP_FIX_PERMS=1`(since 8.0.2) environment variable. + +### Manually Setting File and Directory Permissions + +If you prefer to handle file permissions yourself, you can use a `docker run` command to set the correct ownership on mounted volumes. For example: + +```console +$ docker run --rm -v /your/host/path:/data %%IMAGE%% chown -R redis:redis /data +``` + ## Connecting via `redis-cli` ```console From 6c46fef0aed0fbc3f49df8dada046b2f71803995 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 11:10:07 -0700 Subject: [PATCH 2210/2686] Run update.sh --- influxdb/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index cb2076781c31..42e1545d9884 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.0-core`, `3.0.3-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-core/Dockerfile) +- [`3-core`, `3.1-core`, `3.1.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/3.1-core/Dockerfile) -- [`3-enterprise`, `3.0-enterprise`, `3.0.3-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-enterprise/Dockerfile) +- [`3-enterprise`, `3.1-enterprise`, `3.1.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/3.1-enterprise/Dockerfile) # Quick reference (cont.) From fa94432909b5e34cf6035a8445faedeafe094bf6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 12:10:00 -0700 Subject: [PATCH 2211/2686] Run update.sh --- crate/README.md | 2 +- orientdb/README.md | 4 ++-- spark/README.md | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/crate/README.md b/crate/README.md index e1203801e742..cd2ed421e34b 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.6`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/c03b3583d255cef7e4bf78e4159b6eb2e8d4fbe1/Dockerfile) +- [`5.10.7`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/45ab56012a7f2d38b9150238a2e2fe617b1189e3/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index 8cf3a359fba9..d68d4a3ec19c 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.39`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/d5fc5b95efa83975ea52419c19f2b2c94e9426d0/release/3.2.x/3.2.39/Dockerfile) +- [`3.2.40`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/ca5536253f21e4c20ad57e3a09ec982990ceadb2/release/3.2.x/3.2.40/Dockerfile) -- [`3.2.39-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/d5fc5b95efa83975ea52419c19f2b2c94e9426d0/release/3.2.x/3.2.39-tp3/Dockerfile) +- [`3.2.40-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/ca5536253f21e4c20ad57e3a09ec982990ceadb2/release/3.2.x/3.2.40-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/spark/README.md b/spark/README.md index e984c71cb582..82128227f444 100644 --- a/spark/README.md +++ b/spark/README.md @@ -40,21 +40,21 @@ WARNING: - [`4.0.0-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java17-python3-ubuntu`, `3.5.5-java17-python3`, `3.5.5-java17`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java17-python3-ubuntu`, `3.5.6-java17-python3`, `3.5.6-java17`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java17-r-ubuntu`, `3.5.5-java17-r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java17-r-ubuntu`, `3.5.6-java17-r`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java17-ubuntu`, `3.5.5-java17-scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java17-ubuntu`, `3.5.6-java17-scala`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-python3-ubuntu`, `3.5.5-python3`, `3.5.5`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java11-python3-ubuntu`, `3.5.6-python3`, `3.5.6`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-r-ubuntu`, `3.5.5-r`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java11-r-ubuntu`, `3.5.6-r`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-ubuntu`, `3.5.5-scala`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java11-ubuntu`, `3.5.6-scala`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.5-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/86f243f6df77cf247f8eb9931558d719e0c56144/3.5.5/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.6-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) From aae589382eea500709780a0f586af7b3ac9d33f8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 14:10:03 -0700 Subject: [PATCH 2212/2686] Run update.sh --- elasticsearch/README.md | 2 +- jruby/README.md | 64 ++++++++++++++++++++++++++++------------- kibana/README.md | 2 +- logstash/README.md | 2 +- 4 files changed, 47 insertions(+), 23 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 2787cb442b29..e81eb63c7ed0 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/elasticsearch/Dockerfile) -- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/elasticsearch/Dockerfile) +- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/elasticsearch/Dockerfile) - [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/elasticsearch/Dockerfile) diff --git a/jruby/README.md b/jruby/README.md index df3c7409b933..e3c6b51243ef 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,45 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.1`, `9.4.12.1-jre`, `9.4.12.1-jre8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.1`, `9.4.12.1-jre`, `9.4.12.1-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.1-jdk`, `9.4.12.1-jdk8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.1-jdk`, `9.4.12.1-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.1-jre11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.1-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.1-jdk11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.1-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.1-jdk17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.1-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.1-jre17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.1-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.1-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.1-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.1-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.1-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/fc0883dada1cb29607c6a8aa7edce14aac7642e0/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre21/Dockerfile) + +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jre21/Dockerfile) + +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jdk21/Dockerfile) + +- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jre24/Dockerfile) + +- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jdk24/Dockerfile) + +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre8/Dockerfile) + +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk8/Dockerfile) + +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre11/Dockerfile) + +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk11/Dockerfile) + +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk17/Dockerfile) + +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre17/Dockerfile) + +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk21/Dockerfile) + +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre21/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index c87b3e87966f..41b17a5d5868 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/kibana/Dockerfile) -- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/kibana/Dockerfile) +- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/kibana/Dockerfile) - [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index ba58f744764d..0721d9eeadb2 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,7 +28,7 @@ WARNING: - [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/logstash/Dockerfile) -- [`8.18.1`](https://github.com/elastic/dockerfiles/blob/bba6738fb5c2e6202a324f07fa028aa36bd1716f/logstash/Dockerfile) +- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/logstash/Dockerfile) - [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/logstash/Dockerfile) From 9c662297b6f194e5694ce136693a6d9f37e000a3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 15:10:34 -0700 Subject: [PATCH 2213/2686] Run update.sh --- cassandra/README.md | 2 +- docker/README.md | 38 ++++++++++---------------------------- 2 files changed, 11 insertions(+), 29 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 81e2487bc42f..c3532c259208 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.9`, `4.1`, `4`, `4.1.9-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/8b125f8e4cb082768e6d299130722ed3547e2206/4.1/Dockerfile) -- [`4.0.17`, `4.0`, `4.0.17-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/4.0/Dockerfile) +- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b4b0579f68b8dfbffb61a438c8aaad14fccf44c4/4.0/Dockerfile) - [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/3.11/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 31b85ead5fc6..b303f3dbaca3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,43 +28,25 @@ WARNING: ## Simple Tags -- [`28.2.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.2.0-rc.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/cli/Dockerfile) +- [`28.2.1-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/cli/Dockerfile) -- [`28.2.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.2.0-rc.2-dind-alpine3.21`, `28.2.0-rc.2`, `28-rc`, `rc`, `28.2.0-rc.2-alpine3.21`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/dind/Dockerfile) +- [`28.2.1-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.1-dind-alpine3.21`, `28.2.1`, `28.2`, `28`, `latest`, `28.2.1-alpine3.21`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/dind/Dockerfile) -- [`28.2.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/dind-rootless/Dockerfile) +- [`28.2.1-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/dind-rootless/Dockerfile) -- [`28.2.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.1-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.1-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.0-rc.2-windowsservercore-1809`, `28-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-1809/Dockerfile) - -- [`28.1.1-cli`, `28.1-cli`, `28-cli`, `cli`, `28.1.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/cli/Dockerfile) - -- [`28.1.1-dind`, `28.1-dind`, `28-dind`, `dind`, `28.1.1-dind-alpine3.21`, `28.1.1`, `28.1`, `28`, `latest`, `28.1.1-alpine3.21`](https://github.com/docker-library/docker/blob/52c8bfa9869c9c5605c6c03dc9a82cfe426ace77/28/dind/Dockerfile) - -- [`28.1.1-dind-rootless`, `28.1-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/84fa8e735cf571bd16f439e8431ad23913dd19f4/28/dind-rootless/Dockerfile) - -- [`28.1.1-windowsservercore-ltsc2025`, `28.1-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.1.1-windowsservercore-ltsc2022`, `28.1-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.1.1-windowsservercore-1809`, `28.1-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-1809/Dockerfile) +- [`28.2.1-windowsservercore-1809`, `28.2-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.2.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.2.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.0-rc.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/e3927bb31eb6732adf3837a3e99200fb63b55f66/28-rc/windows/windowsservercore-1809/Dockerfile) - -- `28.1.1-windowsservercore`, `28.1-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.2.1-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.1.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.1.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.1.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/fd9ffd927316fe34adddaa0e1fccd65307b09e2c/28/windows/windowsservercore-1809/Dockerfile) + - [`28.2.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From fdb87135acaa1b8915f138e53a76289cb72d5979 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 16:10:13 -0700 Subject: [PATCH 2214/2686] Run update.sh --- haproxy/README.md | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index c40cb8e1c4d3..0238cfec5b35 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,35 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev0`, `3.3-dev`, `3.3-dev0-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/f60ffd8842e34ca4d65267b72139c32dc821736b/3.3/Dockerfile) +- [`3.3-dev0`, `3.3-dev`, `3.3-dev0-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.3/Dockerfile) -- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.21`, `3.3-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/f60ffd8842e34ca4d65267b72139c32dc821736b/3.3/alpine/Dockerfile) +- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.21`, `3.3-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.3/alpine/Dockerfile) -- [`3.2.0`, `3.2`, `latest`, `lts`, `3.2.0-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/788f34715b0b1ef626761dcca1a4e996316a9c6e/3.2/Dockerfile) +- [`3.2.0`, `3.2`, `latest`, `lts`, `3.2.0-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.2/Dockerfile) -- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.21`, `3.2-alpine3.21`, `alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/788f34715b0b1ef626761dcca1a4e996316a9c6e/3.2/alpine/Dockerfile) +- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.21`, `3.2-alpine3.21`, `alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.2/alpine/Dockerfile) -- [`3.1.7`, `3.1`, `3.1.7-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/Dockerfile) +- [`3.1.7`, `3.1`, `3.1.7-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.1/Dockerfile) -- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`](https://github.com/docker-library/haproxy/blob/923a92620c9c0277c5d52f3c8734fefe612cadfd/3.1/alpine/Dockerfile) +- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.1/alpine/Dockerfile) -- [`3.0.10`, `3.0`, `3.0.10-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/Dockerfile) +- [`3.0.10`, `3.0`, `3.0.10-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.0/Dockerfile) -- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`](https://github.com/docker-library/haproxy/blob/dccf0f4e3aa2c74e30a89954cba69305e52edf7f/3.0/alpine/Dockerfile) +- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.0/alpine/Dockerfile) -- [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/82d8d0e917b2dbba726f6cf853688d1bb6eed5fc/2.8/Dockerfile) +- [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/Dockerfile) -- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/82d8d0e917b2dbba726f6cf853688d1bb6eed5fc/2.8/alpine/Dockerfile) +- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/alpine/Dockerfile) -- [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/b2272eca1be0415af128438e91ffb721d758eef7/2.6/Dockerfile) +- [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.6/Dockerfile) -- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/b2272eca1be0415af128438e91ffb721d758eef7/2.6/alpine/Dockerfile) +- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.6/alpine/Dockerfile) -- [`2.4.29`, `2.4`, `2.4.29-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/d5e3fa1fab9349226162c5a160ed667d0f62e688/2.4/Dockerfile) +- [`2.4.29`, `2.4`, `2.4.29-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.4/Dockerfile) -- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/d5e3fa1fab9349226162c5a160ed667d0f62e688/2.4/alpine/Dockerfile) - -- [`2.2.34`, `2.2`, `2.2.34-bullseye`, `2.2-bullseye`](https://github.com/docker-library/haproxy/blob/fcee7759df612f1047d4b41b42c9f628dac925bf/2.2/Dockerfile) +- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.4/alpine/Dockerfile) # Quick reference (cont.) @@ -144,7 +142,7 @@ The `haproxy` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haproxy:-alpine` From 9bc7c2bb1718ffaba46f9a5e3d2dafad5745ccb8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 29 May 2025 18:09:58 -0700 Subject: [PATCH 2215/2686] Run update.sh --- redis/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/redis/README.md b/redis/README.md index e9f05b03f515..8c9a9bb3a2e4 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.1`, `8.0`, `8`, `8.0.1-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/fe864e383ae7c5c891a694f9e0c16f8459a62234/debian/Dockerfile) +- [`8.0.2`, `8.0`, `8`, `8.0.2-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/debian/Dockerfile) -- [`8.0.1-alpine`, `8.0-alpine`, `8-alpine`, `8.0.1-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/fe864e383ae7c5c891a694f9e0c16f8459a62234/alpine/Dockerfile) +- [`8.0.2-alpine`, `8.0-alpine`, `8-alpine`, `8.0.2-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/alpine/Dockerfile) -- [`7.4.3`, `7.4`, `7`, `7.4.3-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/debian/Dockerfile) +- [`7.4.4`, `7.4`, `7`, `7.4.4-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.4/debian/Dockerfile) -- [`7.4.3-alpine`, `7.4-alpine`, `7-alpine`, `7.4.3-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.4/alpine/Dockerfile) +- [`7.4.4-alpine`, `7.4-alpine`, `7-alpine`, `7.4.4-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.4/alpine/Dockerfile) -- [`7.2.8`, `7.2`, `7.2.8-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.2/debian/Dockerfile) +- [`7.2.9`, `7.2`, `7.2.9-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.2/debian/Dockerfile) -- [`7.2.8-alpine`, `7.2-alpine`, `7.2.8-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/7.2/alpine/Dockerfile) +- [`7.2.9-alpine`, `7.2-alpine`, `7.2.9-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.2/alpine/Dockerfile) - [`6.2.18`, `6.2`, `6`, `6.2.18-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/6.2/debian/Dockerfile) From 1a6a3c382d8f5443bdeed9be95a2c87ddc36e2c8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 11:10:06 -0700 Subject: [PATCH 2216/2686] Run update.sh --- alpine/README.md | 6 +-- docker/README.md | 20 ++++---- hylang/README.md | 125 ++++++++++++++++++++-------------------------- openjdk/README.md | 50 +++++++++---------- 4 files changed, 93 insertions(+), 108 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 1b44125cf19b..b0e2f8e41b9f 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,14 +26,14 @@ WARNING: - [`20250108`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c1f1de232c970df2285c03050ab3747b8563164f/x86_64/Dockerfile) -- [`3.21.3`, `3.21`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/17fe3d1e2d2cbf54d745139eab749c252e35b883/x86_64/Dockerfile) +- [`3.22.0`, `3.22`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/5213c5a71c73d39d5896657909e753effb1c05ff/x86_64/Dockerfile) + +- [`3.21.3`, `3.21`](https://github.com/alpinelinux/docker-alpine/blob/17fe3d1e2d2cbf54d745139eab749c252e35b883/x86_64/Dockerfile) - [`3.20.6`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/a0db1d60e576114995a27356e6dda8145293d6f8/x86_64/Dockerfile) - [`3.19.7`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7cfdb838c6f47bb3845c25f1674a9c3a44d8bafb/x86_64/Dockerfile) -- [`3.18.12`, `3.18`](https://github.com/alpinelinux/docker-alpine/blob/f92f1c2b3b7025f08b05dc11b70534568a973903/x86_64/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/docker/README.md b/docker/README.md index b303f3dbaca3..1e2638ec55d5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,25 +28,25 @@ WARNING: ## Simple Tags -- [`28.2.1-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.1-cli-alpine3.21`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/cli/Dockerfile) -- [`28.2.1-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.1-dind-alpine3.21`, `28.2.1`, `28.2`, `28`, `latest`, `28.2.1-alpine3.21`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/dind/Dockerfile) +- [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.21`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.21`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind/Dockerfile) -- [`28.2.1-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/dind-rootless/Dockerfile) +- [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.1-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.1-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.1-windowsservercore-1809`, `28.2-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-1809/Dockerfile) +- [`28.2.2-windowsservercore-1809`, `28.2-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-1809/Dockerfile) ## Shared Tags -- `28.2.1-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.1-windowsservercore-1809`](https://github.com/docker-library/docker/blob/1aa2d6b7d29531b6ab43d1bd6912745d2d522674/28/windows/windowsservercore-1809/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index d7376add1721..b9cb00f45de2 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,138 +28,123 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.13-alpine3.20`, `1.1-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.1.0-alpine3.20`, `1.1-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.1.0-python3.13-alpine3.20`, `1.1-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.1.0-alpine3.20`, `1.1-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.13-windowsservercore-1809`, `1.1-python3.13-windowsservercore-1809`, `1-python3.13-windowsservercore-1809`, `python3.13-windowsservercore-1809`, `1.1.0-windowsservercore-1809`, `1.1-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.20`, `1.1-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) -- [`1.1.0-python3.12-alpine3.20`, `1.1-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.12-windowsservercore-1809`, `1.1-python3.12-windowsservercore-1809`, `1-python3.12-windowsservercore-1809`, `python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) +- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-alpine3.20`, `1.1-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.11-alpine3.20`, `1.1-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-alpine3.20`, `1.1-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.10-alpine3.20`, `1.1-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-alpine3.20`, `1.1-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.1.0-python3.9-alpine3.20`, `1.1-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) +- [`1.1.0-python3.14-rc-alpine3.20`, `1.1-python3.14-rc-alpine3.20`, `1-python3.14-rc-alpine3.20`, `python3.14-rc-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.20) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-alpine3.20`, `1.1-python3.14-rc-alpine3.20`, `1-python3.14-rc-alpine3.20`, `python3.14-rc-alpine3.20`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.20) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-windowsservercore-1809`, `1.1-python3.14-rc-windowsservercore-1809`, `1-python3.14-rc-windowsservercore-1809`, `python3.14-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-1809) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.11-windowsservercore-1809`, `1.1-pypy3.11-windowsservercore-1809`, `1-pypy3.11-windowsservercore-1809`, `pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) - -- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - -- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - -- [`1.1.0-pypy3.10-windowsservercore-1809`, `1.1-pypy3.10-windowsservercore-1809`, `1-pypy3.10-windowsservercore-1809`, `pypy3.10-windowsservercore-1809`, `1.1.0-pypy-windowsservercore-1809`, `1.1-pypy-windowsservercore-1809`, `1-pypy-windowsservercore-1809`, `pypy-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) ## Shared Tags - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - - [`1.1.0-python3.13-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-1809) + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - - [`1.1.0-python3.12-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-1809) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - - [`1.1.0-python3.14-rc-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-1809) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - - [`1.1.0-pypy3.11-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-1809) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - `1.1.0-pypy3.10`, `1.1-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) - - [`1.1.0-pypy3.10-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/4e68cc28d92c1344289ea9e26cef509f06eae0c1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-1809) + - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 1498c037a861..9165618cbe4e 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,50 +42,50 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-24-jdk-oraclelinux9`, `25-ea-24-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-24-jdk-oracle`, `25-ea-24-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-25-jdk-oraclelinux9`, `25-ea-25-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-25-jdk-oracle`, `25-ea-25-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-24-jdk-oraclelinux8`, `25-ea-24-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-25-jdk-oraclelinux8`, `25-ea-25-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-24-jdk-bookworm`, `25-ea-24-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/bookworm/Dockerfile) +- [`25-ea-25-jdk-bookworm`, `25-ea-25-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/bookworm/Dockerfile) -- [`25-ea-24-jdk-slim-bookworm`, `25-ea-24-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-24-jdk-slim`, `25-ea-24-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-25-jdk-slim-bookworm`, `25-ea-25-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-25-jdk-slim`, `25-ea-25-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-24-jdk-bullseye`, `25-ea-24-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/bullseye/Dockerfile) +- [`25-ea-25-jdk-bullseye`, `25-ea-25-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/bullseye/Dockerfile) -- [`25-ea-24-jdk-slim-bullseye`, `25-ea-24-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-25-jdk-slim-bullseye`, `25-ea-25-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-24-jdk-windowsservercore-ltsc2025`, `25-ea-24-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-25-jdk-windowsservercore-ltsc2025`, `25-ea-25-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-24-jdk-windowsservercore-ltsc2022`, `25-ea-24-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-25-jdk-windowsservercore-ltsc2022`, `25-ea-25-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-24-jdk-windowsservercore-1809`, `25-ea-24-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) +- [`25-ea-25-jdk-windowsservercore-1809`, `25-ea-25-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) -- [`25-ea-24-jdk-nanoserver-ltsc2025`, `25-ea-24-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-25-jdk-nanoserver-ltsc2025`, `25-ea-25-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-24-jdk-nanoserver-ltsc2022`, `25-ea-24-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-25-jdk-nanoserver-ltsc2022`, `25-ea-25-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-24-jdk-nanoserver-1809`, `25-ea-24-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-1809/Dockerfile) +- [`25-ea-25-jdk-nanoserver-1809`, `25-ea-25-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-1809/Dockerfile) ## Shared Tags -- `25-ea-24-jdk`, `25-ea-24`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-25-jdk`, `25-ea-25`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-24-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-24-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-24-jdk-windowsservercore`, `25-ea-24-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-25-jdk-windowsservercore`, `25-ea-25-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-24-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-24-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/windowsservercore-1809/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) -- `25-ea-24-jdk-nanoserver`, `25-ea-24-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-25-jdk-nanoserver`, `25-ea-25-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-24-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-24-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-24-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/6e232089a1c9fae7f1c52fb019389c22322b7b65/25/jdk/windows/nanoserver-1809/Dockerfile) + - [`25-ea-25-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-25-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From 22891554c5b43bea3287b3fb8644ae798603e2f3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 12:10:36 -0700 Subject: [PATCH 2217/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 53d4a731f1b0..fbf2aae34168 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/dcecdbc89593ae8c411dc5934612db19e80845d4/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7-slim-fips/Dockerfile) # Quick reference (cont.) From 41246615756949337d3a0aeb38fd63f9d234840f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 14:10:22 -0700 Subject: [PATCH 2218/2686] Run update.sh --- bash/README.md | 26 +++++++++++++------------- busybox/README.md | 16 ++++++++-------- rust/README.md | 4 +++- 3 files changed, 24 insertions(+), 22 deletions(-) diff --git a/bash/README.md b/bash/README.md index a7208acb6cb4..7930e1ad313a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250519`, `devel`, `devel-20250519-alpine3.21`, `devel-alpine3.21`](https://github.com/tianon/docker-bash/blob/ff66a224721752a241d9c7426e2c62d5d0bc2106/devel/Dockerfile) +- [`devel-20250519`, `devel`, `devel-20250519-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/feb2be0730930f6ea37410f51ea2d34ad153abbf/devel/Dockerfile) -- [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.21`, `5.3-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/tianon/docker-bash/blob/82c9b997d8f8a2ea8f3e451389c0612ca9a31442/5.3-rc/Dockerfile) +- [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/a36b0edc8a5fe8a5bc071852a0022377f26948d1/5.3-rc/Dockerfile) -- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.21`, `5.2-alpine3.21`, `5-alpine3.21`, `alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.2/Dockerfile) +- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.22`, `5.2-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/9fc164bd1a8e4bfe16c517623ce935dc821bbb08/5.2/Dockerfile) -- [`5.1.16`, `5.1`, `5.1.16-alpine3.21`, `5.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/712b1f0c63d45c37d1072e6e9e635da1edfb0734/5.1/Dockerfile) +- [`5.1.16`, `5.1`, `5.1.16-alpine3.22`, `5.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/8ba8423bc0d3339722d4ba2d1af1f53fd179f506/5.1/Dockerfile) -- [`5.0.18`, `5.0`, `5.0.18-alpine3.21`, `5.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/4811b83a9b81e2af6587fbe01c7932a078cb1acc/5.0/Dockerfile) +- [`5.0.18`, `5.0`, `5.0.18-alpine3.22`, `5.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/5f58d08f8ee4a558b8302ef22352af99d4beedfd/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.21`, `4.4-alpine3.21`, `4-alpine3.21`](https://github.com/tianon/docker-bash/blob/9d45ba25a4e765a55bac62098e4f0360dc3c79b3/4.4/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.22`, `4.4-alpine3.22`, `4-alpine3.22`](https://github.com/tianon/docker-bash/blob/7deed0d5c668469ae5eaf56e2a6c925f9a6a48d0/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.21`, `4.3-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.3/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.22`, `4.3-alpine3.22`](https://github.com/tianon/docker-bash/blob/c3cc929583554a6797eeedf1143461fb6934d41c/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.21`, `4.2-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.2/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.22`, `4.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/84117f18511a843e2587b998901b9e8f84863141/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.21`, `4.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.1/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.22`, `4.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/454c634ceb497bb3dd70cceffc18219af82094fc/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.21`, `4.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/4.0/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.22`, `4.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/cf3478db7e68c12b2bf73225cb86d33d9067b01d/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.21`, `3.2-alpine3.21`, `3-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.2/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.22`, `3.2-alpine3.22`, `3-alpine3.22`](https://github.com/tianon/docker-bash/blob/8d2e78e9fb10d94ab82f2c96ed5453116b60b266/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.21`, `3.1-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.1/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.22`, `3.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/0b88b446dde99f282604a9d4feee4ee4328012fb/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.21`, `3.0-alpine3.21`](https://github.com/tianon/docker-bash/blob/ddea3cd1ca0fc97dc8ba41ddac489eec71ee8081/3.0/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.22`, `3.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/aa72817e8ccfc175d51acc2bcadae64684e06879/3.0/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index 8f5199478509..e5ca4ea86aed 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/c48244ec06971ec9da046a065764cff4d92c3c25/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index e1a914306239..fdbd907d1fdd 100644 --- a/rust/README.md +++ b/rust/README.md @@ -34,7 +34,9 @@ WARNING: - [`1-alpine3.20`, `1.87-alpine3.20`, `1.87.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.87-alpine3.21`, `1.87.0-alpine3.21`, `alpine3.21`, `1-alpine`, `1.87-alpine`, `1.87.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.87-alpine3.21`, `1.87.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.21/Dockerfile) + +- [`1-alpine3.22`, `1.87-alpine3.22`, `1.87.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.87-alpine`, `1.87.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/311332e026a7a603ccb2e7d8f9eb0117615f49df/stable/alpine3.22/Dockerfile) # Quick reference (cont.) From 6e549c943b606f28c03cd1de6c31af0c14be648a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 15:10:05 -0700 Subject: [PATCH 2219/2686] Run update.sh --- ghost/README.md | 4 ++-- hello-world/README.md | 4 ---- memcached/README.md | 2 +- openjdk/README.md | 7 ------- 4 files changed, 3 insertions(+), 14 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 88dadc7f8b72..5bf1f6103093 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.120.4`, `5.120`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c1d40a5e43bd632dfa2adfc55f444e0f3257c98f/5/debian/Dockerfile) +- [`5.121.0`, `5.121`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0c9978cf2491877e60e250866c2575e694bdde04/5/debian/Dockerfile) -- [`5.120.4-alpine`, `5.120-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c1d40a5e43bd632dfa2adfc55f444e0f3257c98f/5/alpine/Dockerfile) +- [`5.121.0-alpine`, `5.121-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0c9978cf2491877e60e250866c2575e694bdde04/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hello-world/README.md b/hello-world/README.md index 3a550cab9f14..8bdb62459ebc 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -34,8 +34,6 @@ WARNING: - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) -- [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) - ## Shared Tags - `latest`: @@ -43,13 +41,11 @@ WARNING: - [`linux`](https://github.com/docker-library/hello-world/blob/a71acd2dfb8c21c8e42a8f926ce37c1ffbf8eae7/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) - `nanoserver`: - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) - - [`nanoserver-1809`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 36f82bb3edca..ce04ce35f807 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f8aa037f70e96f77b3797a2ead8fa0e5dcdec2c1/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.21`, `1.6-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/memcached/blob/f8aa037f70e96f77b3797a2ead8fa0e5dcdec2c1/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/9d786e2bceabc841c7858127de29ad969454d9ac/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 9165618cbe4e..32f58e33bccb 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -58,14 +58,10 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-25-jdk-windowsservercore-ltsc2022`, `25-ea-25-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-25-jdk-windowsservercore-1809`, `25-ea-25-windowsservercore-1809`, `25-ea-jdk-windowsservercore-1809`, `25-ea-windowsservercore-1809`, `25-jdk-windowsservercore-1809`, `25-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) - - [`25-ea-25-jdk-nanoserver-ltsc2025`, `25-ea-25-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`25-ea-25-jdk-nanoserver-ltsc2022`, `25-ea-25-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-25-jdk-nanoserver-1809`, `25-ea-25-nanoserver-1809`, `25-ea-jdk-nanoserver-1809`, `25-ea-nanoserver-1809`, `25-jdk-nanoserver-1809`, `25-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-1809/Dockerfile) - ## Shared Tags - `25-ea-25-jdk`, `25-ea-25`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: @@ -73,19 +69,16 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux9/Dockerfile) - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) - `25-ea-25-jdk-windowsservercore`, `25-ea-25-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - - [`25-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-1809/Dockerfile) - `25-ea-25-jdk-nanoserver`, `25-ea-25-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - [`25-ea-25-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`25-ea-25-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - - [`25-ea-25-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) From f2f3e114eb13e6ff4bc72c02276008c62e417b3f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 16:10:08 -0700 Subject: [PATCH 2220/2686] Run update.sh --- drupal/README.md | 48 +++++++++++++++++++++++++++++++++++++++++++++ irssi/README.md | 2 +- memcached/README.md | 2 +- mongo/README.md | 42 --------------------------------------- rabbitmq/README.md | 6 +++--- 5 files changed, 53 insertions(+), 47 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index d6f21eddf92a..553a16cd8295 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,6 +24,30 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`11.2.0-beta1-php8.4-apache-bookworm`, `11.2-rc-php8.4-apache-bookworm`, `11.2.0-beta1-php8.4-apache`, `11.2-rc-php8.4-apache`, `11.2.0-beta1-php8.4`, `11.2-rc-php8.4`, `11.2.0-beta1-apache-bookworm`, `11.2-rc-apache-bookworm`, `11.2.0-beta1-apache`, `11.2-rc-apache`, `11.2.0-beta1`, `11.2-rc`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/apache-bookworm/Dockerfile) + +- [`11.2.0-beta1-php8.4-fpm-bookworm`, `11.2-rc-php8.4-fpm-bookworm`, `11.2.0-beta1-php8.4-fpm`, `11.2-rc-php8.4-fpm`, `11.2.0-beta1-fpm-bookworm`, `11.2-rc-fpm-bookworm`, `11.2.0-beta1-fpm`, `11.2-rc-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-bookworm/Dockerfile) + +- [`11.2.0-beta1-php8.4-apache-bullseye`, `11.2-rc-php8.4-apache-bullseye`, `11.2.0-beta1-apache-bullseye`, `11.2-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/apache-bullseye/Dockerfile) + +- [`11.2.0-beta1-php8.4-fpm-bullseye`, `11.2-rc-php8.4-fpm-bullseye`, `11.2.0-beta1-fpm-bullseye`, `11.2-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-bullseye/Dockerfile) + +- [`11.2.0-beta1-php8.4-fpm-alpine3.21`, `11.2-rc-php8.4-fpm-alpine3.21`, `11.2.0-beta1-php8.4-fpm-alpine`, `11.2-rc-php8.4-fpm-alpine`, `11.2.0-beta1-fpm-alpine3.21`, `11.2-rc-fpm-alpine3.21`, `11.2.0-beta1-fpm-alpine`, `11.2-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-alpine3.21/Dockerfile) + +- [`11.2.0-beta1-php8.4-fpm-alpine3.20`, `11.2-rc-php8.4-fpm-alpine3.20`, `11.2.0-beta1-fpm-alpine3.20`, `11.2-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-alpine3.20/Dockerfile) + +- [`11.2.0-beta1-php8.3-apache-bookworm`, `11.2-rc-php8.3-apache-bookworm`, `11.2.0-beta1-php8.3-apache`, `11.2-rc-php8.3-apache`, `11.2.0-beta1-php8.3`, `11.2-rc-php8.3`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/apache-bookworm/Dockerfile) + +- [`11.2.0-beta1-php8.3-fpm-bookworm`, `11.2-rc-php8.3-fpm-bookworm`, `11.2.0-beta1-php8.3-fpm`, `11.2-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-bookworm/Dockerfile) + +- [`11.2.0-beta1-php8.3-apache-bullseye`, `11.2-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/apache-bullseye/Dockerfile) + +- [`11.2.0-beta1-php8.3-fpm-bullseye`, `11.2-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-bullseye/Dockerfile) + +- [`11.2.0-beta1-php8.3-fpm-alpine3.21`, `11.2-rc-php8.3-fpm-alpine3.21`, `11.2.0-beta1-php8.3-fpm-alpine`, `11.2-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-alpine3.21/Dockerfile) + +- [`11.2.0-beta1-php8.3-fpm-alpine3.20`, `11.2-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-alpine3.20/Dockerfile) + - [`11.1.7-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.7-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.7-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/apache-bookworm/Dockerfile) - [`11.1.7-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.7-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-bookworm/Dockerfile) @@ -60,6 +84,30 @@ WARNING: - [`11.0.13-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.13-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.5.0-beta1-php8.4-apache-bookworm`, `10.5-rc-php8.4-apache-bookworm`, `10.5.0-beta1-php8.4-apache`, `10.5-rc-php8.4-apache`, `10.5.0-beta1-php8.4`, `10.5-rc-php8.4`, `10.5.0-beta1-apache-bookworm`, `10.5-rc-apache-bookworm`, `10.5.0-beta1-apache`, `10.5-rc-apache`, `10.5.0-beta1`, `10.5-rc`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/apache-bookworm/Dockerfile) + +- [`10.5.0-beta1-php8.4-fpm-bookworm`, `10.5-rc-php8.4-fpm-bookworm`, `10.5.0-beta1-php8.4-fpm`, `10.5-rc-php8.4-fpm`, `10.5.0-beta1-fpm-bookworm`, `10.5-rc-fpm-bookworm`, `10.5.0-beta1-fpm`, `10.5-rc-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-bookworm/Dockerfile) + +- [`10.5.0-beta1-php8.4-apache-bullseye`, `10.5-rc-php8.4-apache-bullseye`, `10.5.0-beta1-apache-bullseye`, `10.5-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/apache-bullseye/Dockerfile) + +- [`10.5.0-beta1-php8.4-fpm-bullseye`, `10.5-rc-php8.4-fpm-bullseye`, `10.5.0-beta1-fpm-bullseye`, `10.5-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-bullseye/Dockerfile) + +- [`10.5.0-beta1-php8.4-fpm-alpine3.21`, `10.5-rc-php8.4-fpm-alpine3.21`, `10.5.0-beta1-php8.4-fpm-alpine`, `10.5-rc-php8.4-fpm-alpine`, `10.5.0-beta1-fpm-alpine3.21`, `10.5-rc-fpm-alpine3.21`, `10.5.0-beta1-fpm-alpine`, `10.5-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-alpine3.21/Dockerfile) + +- [`10.5.0-beta1-php8.4-fpm-alpine3.20`, `10.5-rc-php8.4-fpm-alpine3.20`, `10.5.0-beta1-fpm-alpine3.20`, `10.5-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-alpine3.20/Dockerfile) + +- [`10.5.0-beta1-php8.3-apache-bookworm`, `10.5-rc-php8.3-apache-bookworm`, `10.5.0-beta1-php8.3-apache`, `10.5-rc-php8.3-apache`, `10.5.0-beta1-php8.3`, `10.5-rc-php8.3`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/apache-bookworm/Dockerfile) + +- [`10.5.0-beta1-php8.3-fpm-bookworm`, `10.5-rc-php8.3-fpm-bookworm`, `10.5.0-beta1-php8.3-fpm`, `10.5-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-bookworm/Dockerfile) + +- [`10.5.0-beta1-php8.3-apache-bullseye`, `10.5-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/apache-bullseye/Dockerfile) + +- [`10.5.0-beta1-php8.3-fpm-bullseye`, `10.5-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-bullseye/Dockerfile) + +- [`10.5.0-beta1-php8.3-fpm-alpine3.21`, `10.5-rc-php8.3-fpm-alpine3.21`, `10.5.0-beta1-php8.3-fpm-alpine`, `10.5-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-alpine3.21/Dockerfile) + +- [`10.5.0-beta1-php8.3-fpm-alpine3.20`, `10.5-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-alpine3.20/Dockerfile) + - [`10.4.7-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.7-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.7-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/apache-bookworm/Dockerfile) - [`10.4.7-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.7-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-bookworm/Dockerfile) diff --git a/irssi/README.md b/irssi/README.md index ce34800c1718..81632e7bd254 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) -- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.21`, `1.4-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/jessfraz/irssi/blob/1581d0c09544a0bd8de42ba3d185956be6a9935c/alpine/Dockerfile) +- [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.22`, `1.4-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/jessfraz/irssi/blob/48233da7bca13e68f9792da75119fe595f6192c9/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index ce04ce35f807..9097db5672e4 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -34,7 +34,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) diff --git a/mongo/README.md b/mongo/README.md index a0efa7563058..3633a19977ba 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -34,72 +34,48 @@ WARNING: - [`8.0.10-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.10-rc0-windowsservercore-1809`, `8.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) - - [`8.0.10-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.10-rc0-nanoserver-1809`, `8.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-1809/Dockerfile) - - [`8.0.9-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) - [`8.0.9-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.9-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.9-windowsservercore-1809`, `8.0-windowsservercore-1809`, `8-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) - - [`8.0.9-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.9-nanoserver-1809`, `8.0-nanoserver-1809`, `8-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) - - [`7.0.21-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) - [`7.0.21-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.21-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.21-rc0-windowsservercore-1809`, `7.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) - - [`7.0.21-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.21-rc0-nanoserver-1809`, `7.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-1809/Dockerfile) - - [`7.0.20-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) - [`7.0.20-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.20-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.20-windowsservercore-1809`, `7.0-windowsservercore-1809`, `7-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) - - [`7.0.20-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.20-nanoserver-1809`, `7.0-nanoserver-1809`, `7-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) - - [`6.0.24-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) - [`6.0.24-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.24-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.24-rc0-windowsservercore-1809`, `6.0-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) - - [`6.0.24-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.24-rc0-nanoserver-1809`, `6.0-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-1809/Dockerfile) - - [`6.0.23-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) - [`6.0.23-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.23-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.23-windowsservercore-1809`, `6.0-windowsservercore-1809`, `6-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) - - [`6.0.23-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.23-nanoserver-1809`, `6.0-nanoserver-1809`, `6-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-1809/Dockerfile) - ## Shared Tags - `8.0.10-rc0`, `8.0-rc`: @@ -107,108 +83,90 @@ WARNING: - [`8.0.10-rc0-noble`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/Dockerfile) - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) - `8.0.10-rc0-windowsservercore`, `8.0-rc-windowsservercore`: - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.10-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-1809/Dockerfile) - `8.0.10-rc0-nanoserver`, `8.0-rc-nanoserver`: - [`8.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.10-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-1809/Dockerfile) - `8.0.9`, `8.0`, `8`, `latest`: - [`8.0.9-noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) - `8.0.9-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`8.0.9-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-1809/Dockerfile) - `8.0.9-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - [`8.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`8.0.9-nanoserver-1809`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-1809/Dockerfile) - `7.0.21-rc0`, `7.0-rc`: - [`7.0.21-rc0-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) - `7.0.21-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.21-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-1809/Dockerfile) - `7.0.21-rc0-nanoserver`, `7.0-rc-nanoserver`: - [`7.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.21-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-1809/Dockerfile) - `7.0.20`, `7.0`, `7`: - [`7.0.20-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.20-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`7.0.20-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-1809/Dockerfile) - `7.0.20-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - [`7.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`7.0.20-nanoserver-1809`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-1809/Dockerfile) - `6.0.24-rc0`, `6.0-rc`: - [`6.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) - `6.0.24-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.24-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-1809/Dockerfile) - `6.0.24-rc0-nanoserver`, `6.0-rc-nanoserver`: - [`6.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.24-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-1809/Dockerfile) - `6.0.23`, `6.0`, `6`: - [`6.0.23-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.23-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - - [`6.0.23-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-1809/Dockerfile) - `6.0.23-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - [`6.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) - - [`6.0.23-nanoserver-1809`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-1809/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 77451df9f856..375f05e9d2e4 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.0-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/85ffaf0cfe4310ab046b8ccad93c624c6dffe4bc/4.1/alpine/Dockerfile) +- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/4.1/alpine/Dockerfile) - [`4.1.0-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) @@ -36,7 +36,7 @@ WARNING: - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/101d600e8f6ba9543a7e9dd9e156a2f7972218cf/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/42f61ae85d877c377e97c892d97ed4a65f1c7809/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From a3e1e220bbe33c03f1a22a5c8bb00a742ebffdef Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 30 May 2025 17:10:21 -0700 Subject: [PATCH 2221/2686] Run update.sh --- docker/README.md | 3 --- golang/README.md | 26 ++++++-------------------- haproxy/README.md | 14 +++++++------- julia/README.md | 24 ++++++------------------ node/README.md | 16 ++++++++-------- pypy/README.md | 12 ------------ python/README.md | 36 ++++++++++++------------------------ ruby/README.md | 16 ++++++++-------- 8 files changed, 47 insertions(+), 100 deletions(-) diff --git a/docker/README.md b/docker/README.md index 1e2638ec55d5..fc08a3c9f235 100644 --- a/docker/README.md +++ b/docker/README.md @@ -38,15 +38,12 @@ WARNING: - [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.2-windowsservercore-1809`, `28.2-windowsservercore-1809`, `28-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-1809/Dockerfile) - ## Shared Tags - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2025/Dockerfile) - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) - - [`28.2.2-windowsservercore-1809`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 510a3d452966..e1b64ebf372f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -32,49 +32,41 @@ WARNING: - [`1.24.3-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bullseye/Dockerfile) -- [`1.24.3-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.24.3-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.21/Dockerfile) +- [`1.24.3-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.3-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/1.24/alpine3.22/Dockerfile) -- [`1.24.3-alpine3.20`, `1.24-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.20/Dockerfile) +- [`1.24.3-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.21/Dockerfile) - [`1.24.3-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.3-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.3-windowsservercore-1809`, `1.24-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) - - [`1.24.3-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.3-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.3-nanoserver-1809`, `1.24-nanoserver-1809`, `1-nanoserver-1809`, `nanoserver-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-1809/Dockerfile) - - [`1.23.9-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) - [`1.23.9-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bullseye/Dockerfile) -- [`1.23.9-alpine3.21`, `1.23-alpine3.21`, `1.23.9-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.21/Dockerfile) +- [`1.23.9-alpine3.22`, `1.23-alpine3.22`, `1.23.9-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/1.23/alpine3.22/Dockerfile) -- [`1.23.9-alpine3.20`, `1.23-alpine3.20`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.20/Dockerfile) +- [`1.23.9-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.21/Dockerfile) - [`1.23.9-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.9-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.9-windowsservercore-1809`, `1.23-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) - - [`1.23.9-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.9-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.9-nanoserver-1809`, `1.23-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) - - [`tip-20250524-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bookworm/Dockerfile) - [`tip-20250524-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bullseye/Dockerfile) -- [`tip-20250524-alpine3.21`, `tip-alpine3.21`, `tip-20250524-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.21/Dockerfile) +- [`tip-20250524-alpine3.22`, `tip-alpine3.22`, `tip-20250524-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/tip/alpine3.22/Dockerfile) -- [`tip-20250524-alpine3.20`, `tip-alpine3.20`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.20/Dockerfile) +- [`tip-20250524-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -83,38 +75,32 @@ WARNING: - [`1.24.3-bookworm`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bookworm/Dockerfile) - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) - `1.24.3-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.24.3-windowsservercore-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-1809/Dockerfile) - `1.24.3-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - [`1.24.3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.24.3-nanoserver-1809`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-1809/Dockerfile) - `1.23.9`, `1.23`: - [`1.23.9-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.9-windowsservercore`, `1.23-windowsservercore`: - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.23.9-windowsservercore-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-1809/Dockerfile) - `1.23.9-nanoserver`, `1.23-nanoserver`: - [`1.23.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - [`1.23.9-nanoserver-1809`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-1809/Dockerfile) - `tip-20250524`, `tip`: diff --git a/haproxy/README.md b/haproxy/README.md index 0238cfec5b35..634cf8ab4a3d 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -26,31 +26,31 @@ WARNING: - [`3.3-dev0`, `3.3-dev`, `3.3-dev0-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.3/Dockerfile) -- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.21`, `3.3-dev-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.3/alpine/Dockerfile) +- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.3/alpine/Dockerfile) - [`3.2.0`, `3.2`, `latest`, `lts`, `3.2.0-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.2/Dockerfile) -- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.21`, `3.2-alpine3.21`, `alpine3.21`, `lts-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.2/alpine/Dockerfile) +- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.2/alpine/Dockerfile) - [`3.1.7`, `3.1`, `3.1.7-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.1/Dockerfile) -- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.21`, `3.1-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.1/alpine/Dockerfile) +- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.1/alpine/Dockerfile) - [`3.0.10`, `3.0`, `3.0.10-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.0/Dockerfile) -- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.21`, `3.0-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.0/alpine/Dockerfile) +- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.0/alpine/Dockerfile) - [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/Dockerfile) -- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.21`, `2.8-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/alpine/Dockerfile) +- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.8/alpine/Dockerfile) - [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.6/Dockerfile) -- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.21`, `2.6-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.6/alpine/Dockerfile) +- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.6/alpine/Dockerfile) - [`2.4.29`, `2.4`, `2.4.29-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.4/Dockerfile) -- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.21`, `2.4-alpine3.21`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.4/alpine/Dockerfile) +- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 7d9870b4fe59..e595bd5cbbdc 100644 --- a/julia/README.md +++ b/julia/README.md @@ -32,44 +32,38 @@ WARNING: - [`1.12.0-beta3-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bullseye/Dockerfile) -- [`1.12.0-beta3-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`, `1.12.0-beta3-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.21/Dockerfile) +- [`1.12.0-beta3-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-beta3-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.12-rc/alpine3.22/Dockerfile) -- [`1.12.0-beta3-alpine3.20`, `1.12-rc-alpine3.20`, `rc-alpine3.20`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.20/Dockerfile) +- [`1.12.0-beta3-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.21/Dockerfile) - [`1.12.0-beta3-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-beta3-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.12.0-beta3-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) - - [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) - [`1.11.5-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bullseye/Dockerfile) -- [`1.11.5-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.11.5-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.21/Dockerfile) +- [`1.11.5-alpine3.22`, `1.11-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.11.5-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.11/alpine3.22/Dockerfile) -- [`1.11.5-alpine3.20`, `1.11-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.20/Dockerfile) +- [`1.11.5-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.21/Dockerfile) - [`1.11.5-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.5-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.5-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) - - [`1.10.9-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) - [`1.10.9-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bullseye/Dockerfile) -- [`1.10.9-alpine3.21`, `1.10-alpine3.21`, `1.10.9-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.21/Dockerfile) +- [`1.10.9-alpine3.22`, `1.10-alpine3.22`, `1.10.9-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.10/alpine3.22/Dockerfile) -- [`1.10.9-alpine3.20`, `1.10-alpine3.20`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.20/Dockerfile) +- [`1.10.9-alpine3.21`, `1.10-alpine3.21`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.21/Dockerfile) - [`1.10.9-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.9-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.9-windowsservercore-1809`, `1.10-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) - ## Shared Tags - `1.12.0-beta3`, `1.12-rc`, `rc`: @@ -77,39 +71,33 @@ WARNING: - [`1.12.0-beta3-bookworm`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bookworm/Dockerfile) - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) - `1.12.0-beta3-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.12.0-beta3-windowsservercore-1809`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-1809/Dockerfile) - `1.11.5`, `1.11`, `1`, `latest`: - [`1.11.5-bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) - `1.11.5-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.11.5-windowsservercore-1809`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-1809/Dockerfile) - `1.10.9`, `1.10`: - [`1.10.9-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.9-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) - `1.10.9-windowsservercore`, `1.10-windowsservercore`: - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`1.10.9-windowsservercore-1809`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 8a71b4837af9..afebfb108de2 100644 --- a/node/README.md +++ b/node/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.20`, `24.1-alpine3.20`, `24.1.0-alpine3.20`, `alpine3.20`, `current-alpine3.20`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.20/Dockerfile) +- [`24-alpine3.21`, `24.1-alpine3.21`, `24.1.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.21`, `24.1-alpine`, `24.1-alpine3.21`, `24.1.0-alpine`, `24.1.0-alpine3.21`, `alpine`, `alpine3.21`, `current-alpine`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.21/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.1-alpine`, `24.1-alpine3.22`, `24.1.0-alpine`, `24.1.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/24/alpine3.22/Dockerfile) - [`24`, `24-bookworm`, `24.1`, `24.1-bookworm`, `24.1.0`, `24.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bookworm/Dockerfile) @@ -36,9 +36,9 @@ WARNING: - [`24-bullseye-slim`, `24.1-bullseye-slim`, `24.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye-slim/Dockerfile) -- [`23-alpine3.20`, `23.11-alpine3.20`, `23.11.1-alpine3.20`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.20/Dockerfile) +- [`23-alpine3.21`, `23.11-alpine3.21`, `23.11.1-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.21/Dockerfile) -- [`23-alpine`, `23-alpine3.21`, `23.11-alpine`, `23.11-alpine3.21`, `23.11.1-alpine`, `23.11.1-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.21/Dockerfile) +- [`23-alpine`, `23-alpine3.22`, `23.11-alpine`, `23.11-alpine3.22`, `23.11.1-alpine`, `23.11.1-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/23/alpine3.22/Dockerfile) - [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.1`, `23.11.1-bookworm`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bookworm/Dockerfile) @@ -48,9 +48,9 @@ WARNING: - [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye-slim/Dockerfile) -- [`22-alpine3.20`, `22.16-alpine3.20`, `22.16.0-alpine3.20`, `jod-alpine3.20`, `lts-alpine3.20`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.20/Dockerfile) +- [`22-alpine3.21`, `22.16-alpine3.21`, `22.16.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.21`, `22.16-alpine`, `22.16-alpine3.21`, `22.16.0-alpine`, `22.16.0-alpine3.21`, `jod-alpine`, `jod-alpine3.21`, `lts-alpine`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.16-alpine`, `22.16-alpine3.22`, `22.16.0-alpine`, `22.16.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/22/alpine3.22/Dockerfile) - [`22`, `22-bookworm`, `22.16`, `22.16-bookworm`, `22.16.0`, `22.16.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bookworm/Dockerfile) @@ -60,9 +60,9 @@ WARNING: - [`22-bullseye-slim`, `22.16-bullseye-slim`, `22.16.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye-slim/Dockerfile) -- [`20-alpine3.20`, `20.19-alpine3.20`, `20.19.2-alpine3.20`, `iron-alpine3.20`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.20/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.2-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.21`, `20.19-alpine`, `20.19-alpine3.21`, `20.19.2-alpine`, `20.19.2-alpine3.21`, `iron-alpine`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.21/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.2-alpine`, `20.19.2-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/20/alpine3.22/Dockerfile) - [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.2`, `20.19.2-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bookworm/Dockerfile) diff --git a/pypy/README.md b/pypy/README.md index 76f6105060b5..4960358b23ce 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -36,8 +36,6 @@ WARNING: - [`3.11-7.3.19-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.11-7.3.19-windowsservercore-1809`, `3.11-7.3-windowsservercore-1809`, `3.11-7-windowsservercore-1809`, `3.11-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) - - [`3.10-7.3.19-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.19-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) - [`3.10-7.3.19-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.19-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.19-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.19-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/slim-bookworm/Dockerfile) @@ -50,8 +48,6 @@ WARNING: - [`3.10-7.3.19-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.19-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.19-windowsservercore-1809`, `3.10-7.3-windowsservercore-1809`, `3.10-7-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-7.3.19-windowsservercore-1809`, `3-7.3-windowsservercore-1809`, `3-7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) - - [`2.7-7.3.19-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.19-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) - [`2.7-7.3.19-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.19-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.19-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.19-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/slim-bookworm/Dockerfile) @@ -64,8 +60,6 @@ WARNING: - [`2.7-7.3.19-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.19-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.19-windowsservercore-1809`, `2.7-7.3-windowsservercore-1809`, `2.7-7-windowsservercore-1809`, `2.7-windowsservercore-1809`, `2-7.3.19-windowsservercore-1809`, `2-7.3-windowsservercore-1809`, `2-7-windowsservercore-1809`, `2-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) - ## Shared Tags - `3.11-7.3.19`, `3.11-7.3`, `3.11-7`, `3.11`: @@ -73,39 +67,33 @@ WARNING: - [`3.11-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/bookworm/Dockerfile) - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.11-7.3.19-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.11-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.19`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.19`, `3-7.3`, `3-7`, `3`, `latest`: - [`3.10-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) - `3.10-7.3.19-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.19-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.10-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.19`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.19`, `2-7.3`, `2-7`, `2`: - [`2.7-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) - `2.7-7.3.19-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.19-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) - - [`2.7-7.3.19-windowsservercore-1809`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-1809/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 21dd648beaaa..e143df8dcdb2 100644 --- a/python/README.md +++ b/python/README.md @@ -36,16 +36,14 @@ WARNING: - [`3.14.0b2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b2-alpine3.21`, `3.14-rc-alpine3.21`, `3.14.0b2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b2-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0b2-alpine3.20`, `3.14-rc-alpine3.20`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.20/Dockerfile) +- [`3.14.0b2-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.21/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.14.0b2-windowsservercore-1809`, `3.14-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) - - [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) - [`3.13.3-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.3-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bookworm/Dockerfile) @@ -54,16 +52,14 @@ WARNING: - [`3.13.3-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bullseye/Dockerfile) -- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.21/Dockerfile) +- [`3.13.3-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.13/alpine3.22/Dockerfile) -- [`3.13.3-alpine3.20`, `3.13-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.20/Dockerfile) +- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.21/Dockerfile) - [`3.13.3-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.3-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.3-windowsservercore-1809`, `3.13-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) - - [`3.12.10-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) - [`3.12.10-slim-bookworm`, `3.12-slim-bookworm`, `3.12.10-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bookworm/Dockerfile) @@ -72,16 +68,14 @@ WARNING: - [`3.12.10-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bullseye/Dockerfile) -- [`3.12.10-alpine3.21`, `3.12-alpine3.21`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.21/Dockerfile) +- [`3.12.10-alpine3.22`, `3.12-alpine3.22`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.12/alpine3.22/Dockerfile) -- [`3.12.10-alpine3.20`, `3.12-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.20/Dockerfile) +- [`3.12.10-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.21/Dockerfile) - [`3.12.10-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.10-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.10-windowsservercore-1809`, `3.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) - - [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bookworm/Dockerfile) - [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bookworm/Dockerfile) @@ -90,9 +84,9 @@ WARNING: - [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bullseye/Dockerfile) -- [`3.11.12-alpine3.21`, `3.11-alpine3.21`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.21/Dockerfile) +- [`3.11.12-alpine3.22`, `3.11-alpine3.22`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.11/alpine3.22/Dockerfile) -- [`3.11.12-alpine3.20`, `3.11-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.20/Dockerfile) +- [`3.11.12-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.21/Dockerfile) - [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bookworm/Dockerfile) @@ -102,9 +96,9 @@ WARNING: - [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/slim-bullseye/Dockerfile) -- [`3.10.17-alpine3.21`, `3.10-alpine3.21`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.21/Dockerfile) +- [`3.10.17-alpine3.22`, `3.10-alpine3.22`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.10/alpine3.22/Dockerfile) -- [`3.10.17-alpine3.20`, `3.10-alpine3.20`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.20/Dockerfile) +- [`3.10.17-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.21/Dockerfile) - [`3.9.22-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) @@ -114,9 +108,9 @@ WARNING: - [`3.9.22-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/slim-bullseye/Dockerfile) -- [`3.9.22-alpine3.21`, `3.9-alpine3.21`, `3.9.22-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.21/Dockerfile) +- [`3.9.22-alpine3.22`, `3.9-alpine3.22`, `3.9.22-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.9/alpine3.22/Dockerfile) -- [`3.9.22-alpine3.20`, `3.9-alpine3.20`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.20/Dockerfile) +- [`3.9.22-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.21/Dockerfile) ## Shared Tags @@ -125,39 +119,33 @@ WARNING: - [`3.14.0b2-bookworm`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bookworm/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.14.0b2-windowsservercore`, `3.14-rc-windowsservercore`: - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.14.0b2-windowsservercore-1809`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-1809/Dockerfile) - `3.13.3`, `3.13`, `3`, `latest`: - [`3.13.3-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) - `3.13.3-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.13.3-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-1809/Dockerfile) - `3.12.10`, `3.12`: - [`3.12.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) - `3.12.10-windowsservercore`, `3.12-windowsservercore`: - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) - - [`3.12.10-windowsservercore-1809`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-1809/Dockerfile) - `3.11.12`, `3.11`: diff --git a/ruby/README.md b/ruby/README.md index 51f54ca4f8c4..f72f6638b99e 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -32,9 +32,9 @@ WARNING: - [`3.5.0-preview1-slim-bullseye`, `3.5-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/slim-bullseye/Dockerfile) -- [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`, `3.5.0-preview1-alpine`, `3.5-rc-alpine`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) +- [`3.5.0-preview1-alpine3.22`, `3.5-rc-alpine3.22`, `3.5.0-preview1-alpine`, `3.5-rc-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.5-rc/alpine3.22/Dockerfile) -- [`3.5.0-preview1-alpine3.20`, `3.5-rc-alpine3.20`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.20/Dockerfile) +- [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) - [`3.4.4-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.4`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/bookworm/Dockerfile) @@ -44,9 +44,9 @@ WARNING: - [`3.4.4-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/slim-bullseye/Dockerfile) -- [`3.4.4-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`, `3.4.4-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.21/Dockerfile) +- [`3.4.4-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.4-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.4/alpine3.22/Dockerfile) -- [`3.4.4-alpine3.20`, `3.4-alpine3.20`, `3-alpine3.20`, `alpine3.20`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.20/Dockerfile) +- [`3.4.4-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.21/Dockerfile) - [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) @@ -56,9 +56,9 @@ WARNING: - [`3.3.8-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/slim-bullseye/Dockerfile) -- [`3.3.8-alpine3.21`, `3.3-alpine3.21`, `3.3.8-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.21/Dockerfile) +- [`3.3.8-alpine3.22`, `3.3-alpine3.22`, `3.3.8-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.3/alpine3.22/Dockerfile) -- [`3.3.8-alpine3.20`, `3.3-alpine3.20`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.20/Dockerfile) +- [`3.3.8-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.21/Dockerfile) - [`3.2.8-bookworm`, `3.2-bookworm`, `3.2.8`, `3.2`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bookworm/Dockerfile) @@ -68,9 +68,9 @@ WARNING: - [`3.2.8-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/slim-bullseye/Dockerfile) -- [`3.2.8-alpine3.21`, `3.2-alpine3.21`, `3.2.8-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.21/Dockerfile) +- [`3.2.8-alpine3.22`, `3.2-alpine3.22`, `3.2.8-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.2/alpine3.22/Dockerfile) -- [`3.2.8-alpine3.20`, `3.2-alpine3.20`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.20/Dockerfile) +- [`3.2.8-alpine3.21`, `3.2-alpine3.21`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.21/Dockerfile) # Quick reference (cont.) From 6adf1749157d631f90c545b304bc46c226fa109a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Jun 2025 11:10:05 -0700 Subject: [PATCH 2222/2686] Run update.sh --- archlinux/README.md | 6 +- bash/README.md | 2 +- buildpack-deps/README.md | 6 -- clearlinux/README.md | 2 +- dart/README.md | 4 +- eclipse-mosquitto/README.md | 4 +- fedora/README.md | 8 +-- gradle/README.md | 112 ++++++++++++++++++------------------ httpd/README.md | 2 +- hylang/README.md | 110 +++++++++++++++++------------------ joomla/README.md | 36 +++++++++--- postgres/README.md | 20 +++---- rakudo-star/README.md | 2 +- redis/README.md | 20 +++++++ sonarqube/README.md | 2 +- traefik/README.md | 4 -- 16 files changed, 183 insertions(+), 157 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index e530d6b55847..0ce3fa664fa7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.base) +- [`latest`, `base`, `base-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.base) -- [`base-devel`, `base-devel-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250525.0.354646`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/560d50ec5c619455df1b4d015bf93e8cf820f28b/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index 7930e1ad313a..e920900945aa 100644 --- a/bash/README.md +++ b/bash/README.md @@ -26,7 +26,7 @@ WARNING: - [`devel-20250519`, `devel`, `devel-20250519-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/feb2be0730930f6ea37410f51ea2d34ad153abbf/devel/Dockerfile) -- [`5.3-rc1`, `5.3-rc`, `rc`, `5.3-rc1-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/a36b0edc8a5fe8a5bc071852a0022377f26948d1/5.3-rc/Dockerfile) +- [`5.3-rc2`, `5.3-rc`, `rc`, `5.3-rc2-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/b8c645d094186ccdca78c724ed020a27588b253b/5.3-rc/Dockerfile) - [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.22`, `5.2-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/9fc164bd1a8e4bfe16c517623ce935dc821bbb08/5.2/Dockerfile) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 2da33f60364d..69e2de259509 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -48,12 +48,6 @@ WARNING: - [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/Dockerfile) -- [`focal-curl`, `20.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/focal/curl/Dockerfile) - -- [`focal-scm`, `20.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/scm/Dockerfile) - -- [`focal`, `20.04`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/focal/Dockerfile) - - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) - [`jammy-scm`, `22.04-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/ubuntu/jammy/scm/Dockerfile) diff --git a/clearlinux/README.md b/clearlinux/README.md index 2500c732816d..0bd47aabffae 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/ce1bb4278aa485d3075433d74c153adbeea98adf/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/26562d8268c7e77024c64721a4950cc20af04b5e/Dockerfile) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 5ffbb14f7fa9..a6eb0c1fbda0 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.0-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.0`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/18561563ab7693353929d54e9bee6bed9d7909a6/stable/bookworm/Dockerfile) +- [`3.8.1-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.1`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/61edf8fcb0ca8bc47b084984266e5c43e9d9c845/stable/bookworm/Dockerfile) -- [`3.9.0-100.2.beta-sdk`, `beta-sdk`, `3.9.0-100.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/18561563ab7693353929d54e9bee6bed9d7909a6/beta/bookworm/Dockerfile) +- [`3.9.0-100.2.beta-sdk`, `beta-sdk`, `3.9.0-100.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/61edf8fcb0ca8bc47b084984266e5c43e9d9c845/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index f01c0e70fc9f..89851826786b 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.21`, `2.0.21-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/44fe135864ee751aa7dacf9923f3d7478339d700/docker/2.0-openssl/Dockerfile) +- [`2.0.21`, `2.0.21-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/2c671de72a0aebff0f3896a1b7dab2f2dfe51c26/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/44fe135864ee751aa7dacf9923f3d7478339d700/docker/1.6-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/2c671de72a0aebff0f3896a1b7dab2f2dfe51c26/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index ab8fb53de4c2..5f645fa966fe 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`40`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f5bdda47877c6a4cbbdef5233fdcfb31e0a96040/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f52fdfbecea2b7787548d7bdc28d264ed03c000d/x86_64/Dockerfile) -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5aee3a684c041e0665d1af1350a245f2286fbf18/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c774b2277863035ea29f1224fc9b8e52935dc8a7/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/010de8006c2c551b626959423a588bb773fcf412/x86_64/Dockerfile) - -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2ed4770ad9089b377782b204bef1ea738fd30862/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7201349072eb32839418bdb10e846c3a91ff9270/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index b054029eb5c8..2e6c65a60376 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,117 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-noble/Dockerfile) +- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-noble/Dockerfile) -- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-jammy/Dockerfile) +- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-jammy/Dockerfile) -- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-alpine/Dockerfile) +- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-alpine/Dockerfile) -- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-corretto/Dockerfile) +- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-corretto/Dockerfile) -- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-ubi9/Dockerfile) +- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-ubi9/Dockerfile) -- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-noble-graal/Dockerfile) +- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-noble-graal/Dockerfile) -- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk21-jammy-graal/Dockerfile) +- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-jammy-graal/Dockerfile) -- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-noble/Dockerfile) +- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-noble/Dockerfile) -- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-jammy/Dockerfile) +- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-jammy/Dockerfile) -- [`8.14.1-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.1-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.1-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-focal/Dockerfile) +- [`8.14.1-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.1-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.1-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-focal/Dockerfile) -- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-alpine/Dockerfile) +- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-alpine/Dockerfile) -- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-corretto/Dockerfile) +- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-corretto/Dockerfile) -- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-ubi9/Dockerfile) +- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-ubi9/Dockerfile) -- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-noble-graal/Dockerfile) +- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-noble-graal/Dockerfile) -- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-jammy-graal/Dockerfile) +- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-jammy-graal/Dockerfile) -- [`8.14.1-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.1-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.1-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk17-focal-graal/Dockerfile) +- [`8.14.1-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.1-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.1-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-focal-graal/Dockerfile) -- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-jammy/Dockerfile) +- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-jammy/Dockerfile) -- [`8.14.1-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-focal/Dockerfile) +- [`8.14.1-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-focal/Dockerfile) -- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-alpine/Dockerfile) +- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-alpine/Dockerfile) -- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-corretto/Dockerfile) +- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-corretto/Dockerfile) -- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk11-ubi9/Dockerfile) +- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-ubi9/Dockerfile) -- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-jammy/Dockerfile) +- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-jammy/Dockerfile) -- [`8.14.1-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-focal/Dockerfile) +- [`8.14.1-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-focal/Dockerfile) -- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-corretto/Dockerfile) +- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-corretto/Dockerfile) -- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk8-ubi9/Dockerfile) +- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-ubi9/Dockerfile) -- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-noble/Dockerfile) +- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-noble/Dockerfile) -- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-alpine/Dockerfile) +- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-alpine/Dockerfile) -- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-corretto/Dockerfile) +- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-corretto/Dockerfile) -- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-ubi9/Dockerfile) +- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-ubi9/Dockerfile) -- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk24-noble-graal/Dockerfile) +- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-noble-graal/Dockerfile) -- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current/Dockerfile) +- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current/Dockerfile) -- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d4c694ce3f1a98e2f49a576da05694fd8cf1a5fe/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-noble/Dockerfile) -- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-jammy/Dockerfile) +- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-jammy/Dockerfile) -- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-focal/Dockerfile) +- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-focal/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-alpine/Dockerfile) -- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-corretto/Dockerfile) +- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-corretto/Dockerfile) -- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-noble-graal/Dockerfile) +- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-noble-graal/Dockerfile) -- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-jammy-graal/Dockerfile) +- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-jammy-graal/Dockerfile) -- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk17-focal-graal/Dockerfile) +- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-focal-graal/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-jammy/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-focal/Dockerfile) +- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-focal/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-alpine/Dockerfile) +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk11-corretto/Dockerfile) +- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-jammy/Dockerfile) +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-focal/Dockerfile) +- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-focal/Dockerfile) -- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/a4ebcac4a9fd3638d01f29dc0ab930c8ba818601/jdk8-corretto/Dockerfile) +- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-corretto/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-jammy/Dockerfile) -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-focal/Dockerfile) +- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-focal/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-alpine/Dockerfile) -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-corretto/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-jammy/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-jammy/Dockerfile) -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-focal/Dockerfile) +- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-focal/Dockerfile) -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/f1737d15cd490d9878537f592ce8e870e06b99bc/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-corretto/Dockerfile) # Quick reference (cont.) diff --git a/httpd/README.md b/httpd/README.md index 56836a5bf3cb..fa584664f77d 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -26,7 +26,7 @@ WARNING: - [`2.4.63`, `2.4`, `2`, `latest`, `2.4.63-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/329f85a9ad75526de865749a41b273ead99fb69b/2.4/Dockerfile) -- [`2.4.63-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.63-alpine3.21`, `2.4-alpine3.21`, `2-alpine3.21`, `alpine3.21`](https://github.com/docker-library/httpd/blob/329f85a9ad75526de865749a41b273ead99fb69b/2.4/alpine/Dockerfile) +- [`2.4.63-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.63-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/7b36de3e42a8698eab0938ee92f93cfddf6ff835/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index b9cb00f45de2..a3904cbb0915 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,123 +28,123 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) -- [`1.1.0-python3.13-alpine3.20`, `1.1-python3.13-alpine3.20`, `1-python3.13-alpine3.20`, `python3.13-alpine3.20`, `1.1.0-alpine3.20`, `1.1-alpine3.20`, `1-alpine3.20`, `alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-alpine3.20) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) -- [`1.1.0-python3.12-alpine3.20`, `1.1-python3.12-alpine3.20`, `1-python3.12-alpine3.20`, `python3.12-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-alpine3.20) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) -- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) -- [`1.1.0-python3.11-alpine3.20`, `1.1-python3.11-alpine3.20`, `1-python3.11-alpine3.20`, `python3.11-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-alpine3.20) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) -- [`1.1.0-python3.10-alpine3.20`, `1.1-python3.10-alpine3.20`, `1-python3.10-alpine3.20`, `python3.10-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-alpine3.20) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) -- [`1.1.0-python3.9-alpine3.20`, `1.1-python3.9-alpine3.20`, `1-python3.9-alpine3.20`, `python3.9-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-alpine3.20) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) +- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) -- [`1.1.0-python3.14-rc-alpine3.20`, `1.1-python3.14-rc-alpine3.20`, `1-python3.14-rc-alpine3.20`, `python3.14-rc-alpine3.20`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.20) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) +- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) ## Shared Tags - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) + - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - `1.1.0-pypy3.10`, `1.1-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/b09c944967289a2c9bc1fc135dca7937e92eeef1/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index f52ebf9db43f..34b9995edbc9 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/apache/Dockerfile) +- [`6.0.0-alpha1`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha1-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha1-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/apache/Dockerfile) -- [`5.3.0-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/fpm-alpine/Dockerfile) +- [`6.0.0-alpha1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.1/fpm/Dockerfile) +- [`6.0.0-alpha1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/fpm/Dockerfile) -- [`5.3.0-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/apache/Dockerfile) +- [`5.4.0-alpha1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/apache/Dockerfile) -- [`5.3.0-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-alpha1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.3.0-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.2/fpm/Dockerfile) +- [`5.4.0-alpha1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/fpm/Dockerfile) -- [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.0-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.0-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/apache/Dockerfile) +- [`5.4.0-alpha1`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha1-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha1-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/apache/Dockerfile) -- [`5.3.0-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-alpha1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.3.0-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/b80c1739fa4d78db58f408336c097a98ae94e534/5.3/php8.3/fpm/Dockerfile) +- [`5.4.0-alpha1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/fpm/Dockerfile) + +- [`5.3.1-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/apache/Dockerfile) + +- [`5.3.1-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/fpm-alpine/Dockerfile) + +- [`5.3.1-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/fpm/Dockerfile) + +- [`5.3.1-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/apache/Dockerfile) + +- [`5.3.1-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/fpm-alpine/Dockerfile) + +- [`5.3.1-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/fpm/Dockerfile) + +- [`5.3.1`, `5.3`, `5`, `latest`, `5.3.1-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.1-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.1-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/apache/Dockerfile) + +- [`5.3.1-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/fpm-alpine/Dockerfile) + +- [`5.3.1-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/fpm/Dockerfile) - [`4.4.13-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/apache/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 671236ce96d3..60fba231014b 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -28,41 +28,41 @@ WARNING: - [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/17/bullseye/Dockerfile) -- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.21/Dockerfile) +- [`17.5-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/17/alpine3.22/Dockerfile) -- [`17.5-alpine3.20`, `17-alpine3.20`, `alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/17/alpine3.20/Dockerfile) +- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/17/alpine3.21/Dockerfile) - [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bookworm/Dockerfile) - [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bullseye/Dockerfile) -- [`16.9-alpine3.21`, `16-alpine3.21`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.21/Dockerfile) +- [`16.9-alpine3.22`, `16-alpine3.22`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/16/alpine3.22/Dockerfile) -- [`16.9-alpine3.20`, `16-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/16/alpine3.20/Dockerfile) +- [`16.9-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/16/alpine3.21/Dockerfile) - [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bookworm/Dockerfile) - [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bullseye/Dockerfile) -- [`15.13-alpine3.21`, `15-alpine3.21`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.21/Dockerfile) +- [`15.13-alpine3.22`, `15-alpine3.22`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/15/alpine3.22/Dockerfile) -- [`15.13-alpine3.20`, `15-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/15/alpine3.20/Dockerfile) +- [`15.13-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/15/alpine3.21/Dockerfile) - [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bookworm/Dockerfile) - [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bullseye/Dockerfile) -- [`14.18-alpine3.21`, `14-alpine3.21`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.21/Dockerfile) +- [`14.18-alpine3.22`, `14-alpine3.22`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/14/alpine3.22/Dockerfile) -- [`14.18-alpine3.20`, `14-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/14/alpine3.20/Dockerfile) +- [`14.18-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/14/alpine3.21/Dockerfile) - [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bookworm/Dockerfile) - [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bullseye/Dockerfile) -- [`13.21-alpine3.21`, `13-alpine3.21`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/13/alpine3.21/Dockerfile) +- [`13.21-alpine3.22`, `13-alpine3.22`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/13/alpine3.22/Dockerfile) -- [`13.21-alpine3.20`, `13-alpine3.20`](https://github.com/docker-library/postgres/blob/b23470265cc9c4bc283a88bf6c5054e3fca87c16/13/alpine3.20/Dockerfile) +- [`13.21-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/13/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index bb8df56fd495..174f90e08544 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2025.02`, `bookworm`](https://github.com/rakudo/docker/blob/02696336f52874a3440ae2fa8f2cbf2a7c6176dd/2025.02/bookworm/Dockerfile) +- [`latest`, `2025.04`, `bookworm`](https://github.com/rakudo/docker/blob/9687c880204b2dad5b7d816f268dc0257c39abc0/2025.04/bookworm/Dockerfile) - [`alpine`, `2025.02-alpine`](https://github.com/rakudo/docker/blob/02696336f52874a3440ae2fa8f2cbf2a7c6176dd/2025.02/alpine/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 8c9a9bb3a2e4..6c28fa85b8af 100644 --- a/redis/README.md +++ b/redis/README.md @@ -75,6 +75,12 @@ For the ease of accessing Redis from other containers via Docker networking, the - [Protected mode](https://redis.io/docs/latest/operate/oss_and_stack/management/security/#protected-mode) - [A few things about Redis security by antirez](http://antirez.com/news/96) +## Process User and Privileges + +By default, the Redis Docker image drops privileges by switching to the redis user and removing unnecessary capabilities. This step is skipped if Docker is run with the `--user` option or if you set the `SKIP_DROP_PRIVS=1` (since 8.0.2) environment variable. + +Note: Using `SKIP_DROP_PRIVS` is not recommended, as it reduces the container's security. + # How to use this image ## Start a redis instance @@ -93,6 +99,20 @@ There are several different persistence strategies to choose from. This one will For more about Redis persistence, see [the official Redis documentation](https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/). +### File and Directory Permissions + +Redis will attempt to correct the ownership and permissions of the data and configuration (since 8.0.2) directories and files if they are not set correctly. This adjustment is only performed in basic, default scenarios to avoid interfering with custom or user-specific configurations. + +You can skip this step by setting the `SKIP_FIX_PERMS=1`(since 8.0.2) environment variable. + +### Manually Setting File and Directory Permissions + +If you prefer to handle file permissions yourself, you can use a `docker run` command to set the correct ownership on mounted volumes. For example: + +```console +$ docker run --rm -v /your/host/path:/data redis chown -R redis:redis /data +``` + ## Connecting via `redis-cli` ```console diff --git a/sonarqube/README.md b/sonarqube/README.md index 0ebd9cf7f085..587996be3f06 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -40,7 +40,7 @@ WARNING: - [`2025.1.2-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/datacenter/search/Dockerfile) -- [`25.5.0.107428-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/56846598574ea57af773ec32bc4c36c25d40f34c/community-build/Dockerfile) +- [`25.6.0.109173-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/13051010fbfba3fe366f6ca2ede1b8551fa4c251/community-build/Dockerfile) - [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/community/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index bc07506fad64..5eff2f5a8971 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -26,16 +26,12 @@ WARNING: - [`v3.4.1-windowsservercore-ltsc2022`, `3.4.1-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.1-windowsservercore-1809`, `3.4.1-windowsservercore-1809`, `v3.4-windowsservercore-1809`, `3.4-windowsservercore-1809`, `v3-windowsservercore-1809`, `3-windowsservercore-1809`, `chaource-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/1809/Dockerfile) - - [`v3.4.1-nanoserver-ltsc2022`, `3.4.1-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/nanoserver-ltsc2022/Dockerfile) - [`v3.4.1`, `3.4.1`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/alpine/Dockerfile) - [`v2.11.25-windowsservercore-ltsc2022`, `2.11.25-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.25-windowsservercore-1809`, `2.11.25-windowsservercore-1809`, `v2.11-windowsservercore-1809`, `2.11-windowsservercore-1809`, `v2-windowsservercore-1809`, `2-windowsservercore-1809`, `mimolette-windowsservercore-1809`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/1809/Dockerfile) - - [`v2.11.25-nanoserver-ltsc2022`, `2.11.25-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/nanoserver-ltsc2022/Dockerfile) - [`v2.11.25`, `2.11.25`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/alpine/Dockerfile) From 42428d3bea6a203420c9763ae6f33e8c8b4972ab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Jun 2025 12:09:52 -0700 Subject: [PATCH 2223/2686] Run update.sh --- golang/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/golang/README.md b/golang/README.md index e1b64ebf372f..3970c0810de7 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.23.9-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250524-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bookworm/Dockerfile) +- [`tip-20250530-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bookworm/Dockerfile) -- [`tip-20250524-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bullseye/Dockerfile) +- [`tip-20250530-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bullseye/Dockerfile) -- [`tip-20250524-alpine3.22`, `tip-alpine3.22`, `tip-20250524-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/tip/alpine3.22/Dockerfile) +- [`tip-20250530-alpine3.22`, `tip-alpine3.22`, `tip-20250530-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/alpine3.22/Dockerfile) -- [`tip-20250524-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/alpine3.21/Dockerfile) +- [`tip-20250530-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.23.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250524`, `tip`: +- `tip-20250530`, `tip`: - - [`tip-20250524-bookworm`](https://github.com/docker-library/golang/blob/34c6d91f503a3410cfeb68fd099619bf00f3ba7f/tip/bookworm/Dockerfile) + - [`tip-20250530-bookworm`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bookworm/Dockerfile) # Quick reference (cont.) From da1837d5dc5502f266e3bd3d048f7d46161d0cc1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Jun 2025 13:10:00 -0700 Subject: [PATCH 2224/2686] Run update.sh --- gradle/README.md | 114 +++++++++++++++++++++-------------------------- 1 file changed, 52 insertions(+), 62 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 2e6c65a60376..6f5d97cde831 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,117 +24,107 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-noble/Dockerfile) +- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-noble/Dockerfile) -- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-jammy/Dockerfile) +- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-jammy/Dockerfile) -- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-alpine/Dockerfile) +- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-alpine/Dockerfile) -- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-corretto/Dockerfile) +- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-corretto/Dockerfile) -- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-ubi9/Dockerfile) +- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-ubi9/Dockerfile) -- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-noble-graal/Dockerfile) +- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-noble-graal/Dockerfile) -- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk21-jammy-graal/Dockerfile) +- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-jammy-graal/Dockerfile) -- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-noble/Dockerfile) +- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-noble/Dockerfile) -- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-jammy/Dockerfile) +- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-jammy/Dockerfile) -- [`8.14.1-jdk17-focal`, `8.14-jdk17-focal`, `8-jdk17-focal`, `jdk17-focal`, `8.14.1-jdk-focal`, `8.14-jdk-focal`, `8-jdk-focal`, `jdk-focal`, `8.14.1-focal`, `8.14-focal`, `8-focal`, `focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-focal/Dockerfile) +- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-alpine/Dockerfile) -- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-alpine/Dockerfile) +- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-corretto/Dockerfile) -- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-corretto/Dockerfile) +- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-ubi9/Dockerfile) -- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-ubi9/Dockerfile) +- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-noble-graal/Dockerfile) -- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-noble-graal/Dockerfile) +- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-jammy-graal/Dockerfile) -- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-jammy-graal/Dockerfile) +- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-jammy/Dockerfile) -- [`8.14.1-jdk17-graal-focal`, `8.14-jdk17-graal-focal`, `8-jdk17-graal-focal`, `jdk17-graal-focal`, `8.14.1-jdk-graal-focal`, `8.14-jdk-graal-focal`, `8-jdk-graal-focal`, `jdk-graal-focal`, `8.14.1-graal-focal`, `8.14-graal-focal`, `8-graal-focal`, `graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk17-focal-graal/Dockerfile) +- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-alpine/Dockerfile) -- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-jammy/Dockerfile) +- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-corretto/Dockerfile) -- [`8.14.1-jdk11-focal`, `8.14-jdk11-focal`, `8-jdk11-focal`, `jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-focal/Dockerfile) +- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-ubi9/Dockerfile) -- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-alpine/Dockerfile) +- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-jammy/Dockerfile) -- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-corretto/Dockerfile) +- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-corretto/Dockerfile) -- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk11-ubi9/Dockerfile) +- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-ubi9/Dockerfile) -- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-jammy/Dockerfile) +- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-noble/Dockerfile) -- [`8.14.1-jdk8-focal`, `8.14-jdk8-focal`, `8-jdk8-focal`, `jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-focal/Dockerfile) +- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-alpine/Dockerfile) -- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-corretto/Dockerfile) +- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-corretto/Dockerfile) -- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk8-ubi9/Dockerfile) +- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-ubi9/Dockerfile) -- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-noble/Dockerfile) +- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-noble-graal/Dockerfile) -- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-alpine/Dockerfile) +- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current/Dockerfile) -- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-corretto/Dockerfile) +- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-ubi9/Dockerfile) +- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk24-noble-graal/Dockerfile) +- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-graal/Dockerfile) -- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current/Dockerfile) +- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-noble/Dockerfile) -- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-alpine/Dockerfile) +- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-jammy/Dockerfile) -- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-corretto/Dockerfile) +- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-alpine/Dockerfile) -- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e73e6ebe9c030452af14c9fef20e1166e9c02a41/jdk-lts-and-current-graal/Dockerfile) +- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-corretto/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-noble/Dockerfile) +- [`7.6.4-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.4-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-ubi9/Dockerfile) -- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-jammy/Dockerfile) +- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-noble-graal/Dockerfile) -- [`7.6.4-jdk17-focal`, `7.6-jdk17-focal`, `7-jdk17-focal`, `7.6.4-jdk-focal`, `7.6-jdk-focal`, `7-jdk-focal`, `7.6.4-focal`, `7.6-focal`, `7-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-focal/Dockerfile) +- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-jammy-graal/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-alpine/Dockerfile) +- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-corretto/Dockerfile) +- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-noble-graal/Dockerfile) +- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-jammy-graal/Dockerfile) +- [`7.6.4-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.4-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-ubi9/Dockerfile) -- [`7.6.4-jdk17-graal-focal`, `7.6-jdk17-graal-focal`, `7-jdk17-graal-focal`, `7.6.4-jdk-graal-focal`, `7.6-jdk-graal-focal`, `7-jdk-graal-focal`, `7.6.4-graal-focal`, `7.6-graal-focal`, `7-graal-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk17-focal-graal/Dockerfile) +- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-jammy/Dockerfile) +- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-corretto/Dockerfile) -- [`7.6.4-jdk11-focal`, `7.6-jdk11-focal`, `7-jdk11-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-focal/Dockerfile) +- [`7.6.4-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.4-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-ubi9/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-jammy/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk8-focal`, `7.6-jdk8-focal`, `7-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-focal/Dockerfile) +- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-ubi9/Dockerfile) -- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/9074ad90116a632a7388d50f45ca7bc0982087f6/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-jammy/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-corretto/Dockerfile) -- [`6.9.4-jdk11-focal`, `6.9-jdk11-focal`, `6-jdk11-focal`, `6.9.4-jdk-focal`, `6.9-jdk-focal`, `6-jdk-focal`, `6.9.4-focal`, `6.9-focal`, `6-focal`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-focal/Dockerfile) - -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-alpine/Dockerfile) - -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk11-corretto/Dockerfile) - -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-jammy/Dockerfile) - -- [`6.9.4-jdk8-focal`, `6.9-jdk8-focal`, `6-jdk8-focal`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-focal/Dockerfile) - -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/beb4762c794b044606ed4e69e123d7910da53571/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-ubi9/Dockerfile) # Quick reference (cont.) @@ -185,7 +175,7 @@ The `gradle` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `gradle:-alpine` From c3713941423c087e447c0ecab892c78d041007b5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Jun 2025 15:10:36 -0700 Subject: [PATCH 2225/2686] Run update.sh --- haproxy/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 634cf8ab4a3d..f59852e1aaf7 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -32,13 +32,13 @@ WARNING: - [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.2/alpine/Dockerfile) -- [`3.1.7`, `3.1`, `3.1.7-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.1/Dockerfile) +- [`3.1.8`, `3.1`, `3.1.8-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/Dockerfile) -- [`3.1.7-alpine`, `3.1-alpine`, `3.1.7-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.1/alpine/Dockerfile) +- [`3.1.8-alpine`, `3.1-alpine`, `3.1.8-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/alpine/Dockerfile) -- [`3.0.10`, `3.0`, `3.0.10-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.0/Dockerfile) +- [`3.0.11`, `3.0`, `3.0.11-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/6fa540dd7d9d82634605e727a8e1c726a23d8b0d/3.0/Dockerfile) -- [`3.0.10-alpine`, `3.0-alpine`, `3.0.10-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.0/alpine/Dockerfile) +- [`3.0.11-alpine`, `3.0-alpine`, `3.0.11-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/6fa540dd7d9d82634605e727a8e1c726a23d8b0d/3.0/alpine/Dockerfile) - [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/Dockerfile) From 080f0551da580fc3b75e701bcf9db948284e1481 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 2 Jun 2025 17:09:59 -0700 Subject: [PATCH 2226/2686] Run update.sh --- eclipse-temurin/README.md | 2 +- maven/README.md | 2 +- sapmachine/README.md | 2 +- swift/README.md | 2 +- ubuntu/README.md | 12 +++++------- 5 files changed, 9 insertions(+), 11 deletions(-) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index aef9524c4319..a61018db8296 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -508,7 +508,7 @@ The `eclipse-temurin` images come in many flavors, each designed for a specific This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `eclipse-temurin:-alpine` diff --git a/maven/README.md b/maven/README.md index b7ea5ac10f1e..66a17c8c6258 100644 --- a/maven/README.md +++ b/maven/README.md @@ -202,7 +202,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `maven:-alpine` diff --git a/sapmachine/README.md b/sapmachine/README.md index ad5c91a83e38..15a32cb368af 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -196,7 +196,7 @@ The `sapmachine` images come in many flavors, each designed for a specific use c This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `sapmachine:-alpine` diff --git a/swift/README.md b/swift/README.md index b49dc04abad0..05bae54a6b9c 100644 --- a/swift/README.md +++ b/swift/README.md @@ -192,7 +192,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like focal, jammy, or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `swift:-slim` diff --git a/ubuntu/README.md b/ubuntu/README.md index 3e890efa250e..bd1400b7391f 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,17 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`20.04`, `focal-20250404`, `focal`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-focal-amd64-20250404-fb4da095&id=fb4da0956290c3b216a35315510f66ca9bc4a460) +- [`22.04`, `jammy-20250530`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250530-202257f3&id=202257f3f1e712e9b2e4e9d66d68e028cbed990c) -- [`22.04`, `jammy-20250415.1`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250415.1-518e3d0d&id=518e3d0d114aa4029b5c8889611a4639a501f224) +- [`24.04`, `noble-20250529`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250529-222144ab&id=222144abd5860a6d8ef142eb47fe61d8367cefdb) -- [`24.04`, `noble-20250415.1`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250415.1-7c6f2628&id=7c6f26288103e61ee50f3ac157815ba70bb3435d) +- [`24.10`, `oracular-20250428`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250428-c68b0ce8&id=c68b0ce815238e8edacf842c439d3df2fa026b5e) -- [`24.10`, `oracular-20250225`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250225-71a591b6&id=71a591b63518c11abbccce5c648ce23d9a55c63b) +- [`25.04`, `plucky-20250521`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250521-f96cf5be&id=f96cf5be5b7e848059b5a9297fdbc15fa9a46e8d) -- [`25.04`, `plucky-20250415`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250415-9aa542b4&id=9aa542b421288860569e4375a11053227643ddf8) - -- [`25.10`, `questing-20250514`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250514-fdfe5cc8&id=fdfe5cc8f8ad756c85ece74b2d96318dc7334468) +- [`25.10`, `questing-20250601`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250601-0b88f997&id=0b88f99700c9869cad822402a402f3798e3a935b) # Quick reference (cont.) From df87521e125e1410a1fabe4fd198d5143683043b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 10:10:26 -0700 Subject: [PATCH 2227/2686] Run update.sh --- ros/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ros/README.md b/ros/README.md index d78906c32261..cb18d74aa43d 100644 --- a/ros/README.md +++ b/ros/README.md @@ -32,25 +32,25 @@ WARNING: - [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/humble/ubuntu/jammy/ros-core/Dockerfile) +- [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) +- [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) - [`jazzy-perception`, `jazzy-perception-noble`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/perception/Dockerfile) -- [`kilted-ros-core`, `kilted-ros-core-noble`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/ros-core/Dockerfile) +- [`kilted-ros-core`, `kilted-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/kilted/ubuntu/noble/ros-core/Dockerfile) - [`kilted-ros-base`, `kilted-ros-base-noble`, `kilted`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/ros-base/Dockerfile) - [`kilted-perception`, `kilted-perception-noble`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-core/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/rolling/ubuntu/noble/ros-core/Dockerfile) - [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-base/Dockerfile) From 8866e046fa11febd650f302ddcdce41d5349bc5f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 11:10:24 -0700 Subject: [PATCH 2228/2686] Run update.sh --- geonetwork/README.md | 4 ++-- maven/README.md | 16 ++++++++-------- nats/README.md | 32 ++++++++++++++++---------------- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/geonetwork/README.md b/geonetwork/README.md index b4c0801cac70..49ff857fca8b 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.12.12-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/postgres/Dockerfile) -- [`4.2.12`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/a3e15b94330e69449238b4bb0c6e6909f958afa2/4.2.12/Dockerfile) +- [`4.2.13`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/ca0637409ff44e32b5138a3ef76a48533ba1d595/4.2.13/Dockerfile) -- [`4.4.7`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/87a25196b8dd3a8a1bd2bc8644f86c878de2b1d4/4.4.7/Dockerfile) +- [`4.4.8`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/ca0637409ff44e32b5138a3ef76a48533ba1d595/4.4.8/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 66a17c8c6258..697c0886c75a 100644 --- a/maven/README.md +++ b/maven/README.md @@ -28,19 +28,19 @@ WARNING: - [`3.9.9-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-11-focal`, `3.9-eclipse-temurin-11-focal`, `3-eclipse-temurin-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-11-noble/Dockerfile) - [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-17/Dockerfile) - [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-17-focal`, `3.9-eclipse-temurin-17-focal`, `3-eclipse-temurin-17-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-17-noble/Dockerfile) - [`3.9.9-eclipse-temurin-21`, `3.9.9`, `3.9.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21/Dockerfile) - [`3.9.9-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-21-jammy`, `3.9-eclipse-temurin-21-jammy`, `3-eclipse-temurin-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-jammy/Dockerfile) +- [`3.9.9-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-21-noble/Dockerfile) - [`3.9.9-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24/Dockerfile) @@ -52,15 +52,15 @@ WARNING: - [`3.9.9-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-8-focal`, `3.9-eclipse-temurin-8-focal`, `3-eclipse-temurin-8-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8-focal/Dockerfile) +- [`3.9.9-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-8-noble/Dockerfile) - [`3.9.9-ibmjava-8`, `3.9.9-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibmjava-8/Dockerfile) -- [`3.9.9-ibm-semeru-11-focal`, `3.9-ibm-semeru-11-focal`, `3-ibm-semeru-11-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-11-focal/Dockerfile) +- [`3.9.9-ibm-semeru-11-noble`, `3.9-ibm-semeru-11-noble`, `3-ibm-semeru-11-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-11-noble/Dockerfile) -- [`3.9.9-ibm-semeru-17-focal`, `3.9-ibm-semeru-17-focal`, `3-ibm-semeru-17-focal`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-17-focal/Dockerfile) +- [`3.9.9-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-17-noble/Dockerfile) -- [`3.9.9-ibm-semeru-21-jammy`, `3.9-ibm-semeru-21-jammy`, `3-ibm-semeru-21-jammy`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibm-semeru-21-jammy/Dockerfile) +- [`3.9.9-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-21-noble/Dockerfile) - [`3.9.9-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11/Dockerfile) @@ -202,7 +202,7 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `maven:-alpine` diff --git a/nats/README.md b/nats/README.md index 7c73d9dff6f6..a2c2bf206d2b 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.4-alpine3.21`, `2.11-alpine3.21`, `2-alpine3.21`, `alpine3.21`, `2.11.4-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/alpine3.21/Dockerfile) +- [`2.11.4-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.4-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/alpine3.22/Dockerfile) -- [`2.11.4-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.4-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/scratch/Dockerfile) +- [`2.11.4-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.4-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/scratch/Dockerfile) -- [`2.11.4-windowsservercore-1809`, `2.11-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/windowsservercore-1809/Dockerfile) +- [`2.11.4-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.4-nanoserver-1809`, `2.11-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) +- [`2.11.4-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.21`, `2.10-alpine3.21`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/alpine3.21/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-1809`, `2.10-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/windowsservercore-1809/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-1809`, `2.10-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags - `2.11.4`, `2.11`, `2`, `latest`: - - [`2.11.4-scratch`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/scratch/Dockerfile) - - [`2.11.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.4-scratch`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/scratch/Dockerfile) + - [`2.11.4-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.11.4-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.4-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/windowsservercore-1809/Dockerfile) + - [`2.11.4-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/windowsservercore-ltsc2022/Dockerfile) - `2.11.4-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.4-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.11.x/nanoserver-1809/Dockerfile) + - [`2.11.4-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/windowsservercore-1809/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/4751c3f9ca2be4c128c688c6be46af2a02c70b25/2.10.x/nanoserver-1809/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 09f35f7573a1883a1eae4908ab75794a134deae2 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 3 Jun 2025 11:51:16 -0700 Subject: [PATCH 2229/2686] Remove outdated per-arch Jenkins badges Unfortunately we don't have a good replacement for these, but they're very, very outdated, so this removes them. --- update.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/update.sh b/update.sh index ce2608fe8774..a4744445695e 100755 --- a/update.sh +++ b/update.sh @@ -134,10 +134,6 @@ for image in "${images[@]}"; do # opensuse, etc partial='**No supported tags**' fi - elif [ -n "$ARCH_SPECIFIC_DOCS" ]; then - jenkinsJobUrl="https://doi-janky.infosiftr.net/job/multiarch/job/$BASHBREW_ARCH/job/$repo/" - jenkinsImageUrl="https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/$BASHBREW_ARCH/job/$repo.svg?label=%%IMAGE%%%20%20build%20job" - partial+=$'\n\n''[![%%IMAGE%% build status badge]('"$jenkinsImageUrl"')]('"$jenkinsJobUrl"')' fi replace_field "$targetFile" 'TAGS' "$partial" From d0136f120931bf4e3a132df6e6cc417e958e909a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 12:10:25 -0700 Subject: [PATCH 2230/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++++----------------------- node/README.md | 12 ---- 2 files changed, 89 insertions(+), 101 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 631c1c7a4a00..0f0d28d51f9b 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.0.1530-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1543-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.0.1530-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1543-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.0.1530-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1543-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.0.1530-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1543-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.0.1530`, `temurin-8-tools-deps-1.12.0.1530-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1543`, `temurin-8-tools-deps-1.12.1.1543-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.0.1530-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1543-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.0.1530-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1543-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.0.1530-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1543-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.0.1530-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1543-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.0.1530-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1543-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.0.1530-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1543-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.0.1530`, `temurin-11-tools-deps-1.12.0.1530-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1543`, `temurin-11-tools-deps-1.12.1.1543-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.0.1530-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1543-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.0.1530-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1543-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.0.1530-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1543-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.0.1530-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1543-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.0.1530-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1543-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.0.1530-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1543-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.0.1530`, `temurin-17-tools-deps-1.12.0.1530-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1543`, `temurin-17-tools-deps-1.12.1.1543-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.0.1530-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1543-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.0.1530-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1543-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.0.1530-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1543-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.0.1530`, `temurin-21-tools-deps-1.12.0.1530-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.0.1530`, `tools-deps-1.12.0.1530-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1543`, `temurin-21-tools-deps-1.12.1.1543-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1543`, `tools-deps-1.12.1.1543-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.0.1530-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1543-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.0.1530-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.0.1530-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1543-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1543-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.0.1530-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1543-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.0.1530-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1543-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.0.1530-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1543-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.0.1530-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.0.1530-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1543-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1543-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.0.1530-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.0.1530-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1543-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1543-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.0.1530-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1543-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.0.1530`, `temurin-24-tools-deps-1.12.0.1530-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1543`, `temurin-24-tools-deps-1.12.1.1543-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.0.1530-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.0.1530-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1543-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.0.1530-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.0.1530-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1543-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.0.1530-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1543-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.0.1530-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/e4429fbcfb57b589abe8c884884c454997098ad9/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1543-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index afebfb108de2..b032dceec3c0 100644 --- a/node/README.md +++ b/node/README.md @@ -36,18 +36,6 @@ WARNING: - [`24-bullseye-slim`, `24.1-bullseye-slim`, `24.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye-slim/Dockerfile) -- [`23-alpine3.21`, `23.11-alpine3.21`, `23.11.1-alpine3.21`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/alpine3.21/Dockerfile) - -- [`23-alpine`, `23-alpine3.22`, `23.11-alpine`, `23.11-alpine3.22`, `23.11.1-alpine`, `23.11.1-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/23/alpine3.22/Dockerfile) - -- [`23`, `23-bookworm`, `23.11`, `23.11-bookworm`, `23.11.1`, `23.11.1-bookworm`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bookworm/Dockerfile) - -- [`23-bookworm-slim`, `23-slim`, `23.11-bookworm-slim`, `23.11-slim`, `23.11.1-bookworm-slim`, `23.11.1-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bookworm-slim/Dockerfile) - -- [`23-bullseye`, `23.11-bullseye`, `23.11.1-bullseye`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye/Dockerfile) - -- [`23-bullseye-slim`, `23.11-bullseye-slim`, `23.11.1-bullseye-slim`](https://github.com/nodejs/docker-node/blob/473bc763275ee20ce142b1e23ee253f6c248673d/23/bullseye-slim/Dockerfile) - - [`22-alpine3.21`, `22.16-alpine3.21`, `22.16.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) - [`22-alpine`, `22-alpine3.22`, `22.16-alpine`, `22.16-alpine3.22`, `22.16.0-alpine`, `22.16.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/22/alpine3.22/Dockerfile) From 50f74a20a7384e89f1ac3bacce9d684e4fcf73b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 13:10:29 -0700 Subject: [PATCH 2231/2686] Run update.sh --- neurodebian/README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/neurodebian/README.md b/neurodebian/README.md index 2d02e9397485..c7bb7b6d3081 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -24,18 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`focal`, `nd20.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/focal/Dockerfile) - -- [`focal-non-free`, `nd20.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/focal-non-free/Dockerfile) - - [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy/Dockerfile) - [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy-non-free/Dockerfile) -- [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/noble/Dockerfile) - -- [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/noble-non-free/Dockerfile) - - [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye/Dockerfile) - [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye-non-free/Dockerfile) From 5c3baa314fac01afc8c1b5f085911567d5749b2b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 15:10:38 -0700 Subject: [PATCH 2232/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index fbf2aae34168..284d14350bd4 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/73c1147a780418c151030003d2c6d8136a7c863d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7-slim-fips/Dockerfile) # Quick reference (cont.) From ea0604a53ee6b775d5505d2fc096a3b8b7560995 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 3 Jun 2025 16:10:13 -0700 Subject: [PATCH 2233/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 2 +- mongo/README.md | 147 ++++++++++++---------------------------------- redmine/README.md | 8 +-- 4 files changed, 45 insertions(+), 114 deletions(-) diff --git a/bash/README.md b/bash/README.md index e920900945aa..cdc245f9ffab 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250519`, `devel`, `devel-20250519-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/feb2be0730930f6ea37410f51ea2d34ad153abbf/devel/Dockerfile) +- [`devel-20250530`, `devel`, `devel-20250530-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/75f0b3a327b75aab36bb72839fe586cdee72c983/devel/Dockerfile) - [`5.3-rc2`, `5.3-rc`, `rc`, `5.3-rc2-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/b8c645d094186ccdca78c724ed020a27588b253b/5.3-rc/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 5bf1f6103093..0566c1b98c6f 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.121.0`, `5.121`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0c9978cf2491877e60e250866c2575e694bdde04/5/debian/Dockerfile) -- [`5.121.0-alpine`, `5.121-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/0c9978cf2491877e60e250866c2575e694bdde04/5/alpine/Dockerfile) +- [`5.121.0-alpine`, `5.121-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/84b2e6edbf30790d7b99d06580ac48f71d1bf47d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 3633a19977ba..ac9f94f666a1 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,145 +28,76 @@ WARNING: ## Simple Tags -- [`8.0.10-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/Dockerfile) +- [`8.0.10-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/Dockerfile) -- [`8.0.10-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.10-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.10-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.10-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.10-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.10-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.9-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) +- [`7.0.21-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) -- [`8.0.9-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.21-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.9-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.21-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.9-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.21-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.21-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) +- [`6.0.24-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) -- [`7.0.21-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.24-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.21-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.24-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.21-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.20-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) - -- [`7.0.20-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.20-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.20-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.24-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) - -- [`6.0.24-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.24-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.24-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.23-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) - -- [`6.0.23-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.23-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.23-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.24-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `8.0.10-rc0`, `8.0-rc`: - - - [`8.0.10-rc0-noble`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/Dockerfile) - - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.10-rc0-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.10-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.10-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.10-rc0-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.10-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/2f4394fc01957ff8273774215df1ab8cc9d8e3b4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `8.0.9`, `8.0`, `8`, `latest`: - - - [`8.0.9-noble`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/Dockerfile) - - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.9-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - - [`8.0.9-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.9-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.9-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - - [`8.0.9-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a235aeb62c1741461ec94ba619e475d43c07c07e/8.0/windows/nanoserver-ltsc2022/Dockerfile) - -- `7.0.21-rc0`, `7.0-rc`: - - - [`7.0.21-rc0-jammy`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/Dockerfile) - - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.21-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.21-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.21-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.21-rc0-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.21-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/8c9defe4fe7268a296a35bbe7e08f54fe94fa783/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `7.0.20`, `7.0`, `7`: +- `8.0.10`, `8.0`, `8`, `latest`: - - [`7.0.20-jammy`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/Dockerfile) - - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.10-noble`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/Dockerfile) + - [`8.0.10-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.20-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `8.0.10-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`7.0.20-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.20-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.10-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.20-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `8.0.10-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`7.0.20-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/08e3d80394a2bd49ae96524c1611e01c8d2147bd/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- `6.0.24-rc0`, `6.0-rc`: +- `7.0.21`, `7.0`, `7`: - - [`6.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/Dockerfile) - - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.21-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) + - [`7.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.24-rc0-windowsservercore`, `6.0-rc-windowsservercore`: +- `7.0.21-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`6.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.24-rc0-nanoserver`, `6.0-rc-nanoserver`: +- `7.0.21-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`6.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6a7758b4d168c0e99ee3bb94f3ac63779386d9ce/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- `6.0.23`, `6.0`, `6`: +- `6.0.24`, `6.0`, `6`: - - [`6.0.23-jammy`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/Dockerfile) - - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.24-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) + - [`6.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.23-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.24-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.23-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.24-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9a668aed11c59f0ac6fd1f461d5a767e3fd0d50b/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 43ec6c3e39df..38688a252b34 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -26,15 +26,15 @@ WARNING: - [`6.0.5`, `6.0`, `6`, `latest`, `6.0.5-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/bookworm/Dockerfile) -- [`6.0.5-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`, `6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.21/Dockerfile) +- [`6.0.5-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/1d4803b70876ee3a9a8e9dfb71c0c0293f5621d8/6.0/alpine3.22/Dockerfile) -- [`6.0.5-alpine3.20`, `6.0-alpine3.20`, `6-alpine3.20`, `alpine3.20`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.20/Dockerfile) +- [`6.0.5-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.21/Dockerfile) - [`5.1.8`, `5.1`, `5`, `5.1.8-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/bookworm/Dockerfile) -- [`5.1.8-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`, `5.1.8-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.21/Dockerfile) +- [`5.1.8-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.8-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/1d4803b70876ee3a9a8e9dfb71c0c0293f5621d8/5.1/alpine3.22/Dockerfile) -- [`5.1.8-alpine3.20`, `5.1-alpine3.20`, `5-alpine3.20`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.20/Dockerfile) +- [`5.1.8-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) From 1b7397592921d83b6d7f4c0b144050ef8983361b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 10:10:05 -0700 Subject: [PATCH 2234/2686] Run update.sh --- python/README.md | 105 +++++++++++++++++++++-------------------------- 1 file changed, 47 insertions(+), 58 deletions(-) diff --git a/python/README.md b/python/README.md index e143df8dcdb2..008b941018d2 100644 --- a/python/README.md +++ b/python/README.md @@ -44,73 +44,69 @@ WARNING: - [`3.14.0b2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.3-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) +- [`3.13.4-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bookworm/Dockerfile) -- [`3.13.3-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.3-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bookworm/Dockerfile) +- [`3.13.4-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.4-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/slim-bookworm/Dockerfile) -- [`3.13.3-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bullseye/Dockerfile) +- [`3.13.4-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bullseye/Dockerfile) -- [`3.13.3-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/slim-bullseye/Dockerfile) +- [`3.13.4-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/slim-bullseye/Dockerfile) -- [`3.13.3-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.3-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.13/alpine3.22/Dockerfile) +- [`3.13.4-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/alpine3.22/Dockerfile) -- [`3.13.3-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/alpine3.21/Dockerfile) +- [`3.13.4-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/alpine3.21/Dockerfile) -- [`3.13.3-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.4-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.3-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.4-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.10-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) +- [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) -- [`3.12.10-slim-bookworm`, `3.12-slim-bookworm`, `3.12.10-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bookworm/Dockerfile) +- [`3.12.11-slim-bookworm`, `3.12-slim-bookworm`, `3.12.11-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/slim-bookworm/Dockerfile) -- [`3.12.10-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bullseye/Dockerfile) +- [`3.12.11-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bullseye/Dockerfile) -- [`3.12.10-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/slim-bullseye/Dockerfile) +- [`3.12.11-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/slim-bullseye/Dockerfile) -- [`3.12.10-alpine3.22`, `3.12-alpine3.22`, `3.12.10-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.12/alpine3.22/Dockerfile) +- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/alpine3.22/Dockerfile) -- [`3.12.10-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/alpine3.21/Dockerfile) +- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/alpine3.21/Dockerfile) -- [`3.12.10-windowsservercore-ltsc2025`, `3.12-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.11.13-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bookworm/Dockerfile) -- [`3.12.10-windowsservercore-ltsc2022`, `3.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11.13-slim-bookworm`, `3.11-slim-bookworm`, `3.11.13-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/slim-bookworm/Dockerfile) -- [`3.11.12-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bookworm/Dockerfile) +- [`3.11.13-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bullseye/Dockerfile) -- [`3.11.12-slim-bookworm`, `3.11-slim-bookworm`, `3.11.12-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bookworm/Dockerfile) +- [`3.11.13-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/slim-bullseye/Dockerfile) -- [`3.11.12-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bullseye/Dockerfile) +- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/alpine3.22/Dockerfile) -- [`3.11.12-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/slim-bullseye/Dockerfile) +- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/alpine3.21/Dockerfile) -- [`3.11.12-alpine3.22`, `3.11-alpine3.22`, `3.11.12-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.11/alpine3.22/Dockerfile) +- [`3.10.18-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bookworm/Dockerfile) -- [`3.11.12-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/alpine3.21/Dockerfile) +- [`3.10.18-slim-bookworm`, `3.10-slim-bookworm`, `3.10.18-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/slim-bookworm/Dockerfile) -- [`3.10.17-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bookworm/Dockerfile) +- [`3.10.18-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bullseye/Dockerfile) -- [`3.10.17-slim-bookworm`, `3.10-slim-bookworm`, `3.10.17-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/slim-bookworm/Dockerfile) +- [`3.10.18-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/slim-bullseye/Dockerfile) -- [`3.10.17-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bullseye/Dockerfile) +- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/alpine3.22/Dockerfile) -- [`3.10.17-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/slim-bullseye/Dockerfile) +- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/alpine3.21/Dockerfile) -- [`3.10.17-alpine3.22`, `3.10-alpine3.22`, `3.10.17-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.10/alpine3.22/Dockerfile) +- [`3.9.23-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) -- [`3.10.17-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/alpine3.21/Dockerfile) +- [`3.9.23-slim-bookworm`, `3.9-slim-bookworm`, `3.9.23-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/slim-bookworm/Dockerfile) -- [`3.9.22-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) +- [`3.9.23-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bullseye/Dockerfile) -- [`3.9.22-slim-bookworm`, `3.9-slim-bookworm`, `3.9.22-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/slim-bookworm/Dockerfile) +- [`3.9.23-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/slim-bullseye/Dockerfile) -- [`3.9.22-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bullseye/Dockerfile) +- [`3.9.23-alpine3.22`, `3.9-alpine3.22`, `3.9.23-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/alpine3.22/Dockerfile) -- [`3.9.22-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/slim-bullseye/Dockerfile) - -- [`3.9.22-alpine3.22`, `3.9-alpine3.22`, `3.9.22-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.9/alpine3.22/Dockerfile) - -- [`3.9.22-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/alpine3.21/Dockerfile) +- [`3.9.23-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/alpine3.21/Dockerfile) ## Shared Tags @@ -125,39 +121,32 @@ WARNING: - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.3`, `3.13`, `3`, `latest`: - - - [`3.13.3-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.13/bookworm/Dockerfile) - - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - -- `3.13.3-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.4`, `3.13`, `3`, `latest`: - - [`3.13.3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.4-bookworm`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bookworm/Dockerfile) + - [`3.13.4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.12.10`, `3.12`: +- `3.13.4-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.12.10-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.12/bookworm/Dockerfile) - - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.12.10-windowsservercore`, `3.12-windowsservercore`: +- `3.12.11`, `3.12`: - - [`3.12.10-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.12.10-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/70fc099be48e4a130afd949a4dd3c6afe6935b8a/3.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.12.11-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) -- `3.11.12`, `3.11`: +- `3.11.13`, `3.11`: - - [`3.11.12-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.11/bookworm/Dockerfile) + - [`3.11.13-bookworm`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bookworm/Dockerfile) -- `3.10.17`, `3.10`: +- `3.10.18`, `3.10`: - - [`3.10.17-bookworm`](https://github.com/docker-library/python/blob/90aa427282f3f8283652c97011a511a77ea699b8/3.10/bookworm/Dockerfile) + - [`3.10.18-bookworm`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bookworm/Dockerfile) -- `3.9.22`, `3.9`: +- `3.9.23`, `3.9`: - - [`3.9.22-bookworm`](https://github.com/docker-library/python/blob/5f041dab48cbaa33eef235fb94ddf07c61a53ad7/3.9/bookworm/Dockerfile) + - [`3.9.23-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) # Quick reference (cont.) From 2dc7e1cb3f49460cd3b1af4be05c1553d87da789 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 11:10:22 -0700 Subject: [PATCH 2235/2686] Run update.sh --- gradle/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 6f5d97cde831..c013940dc737 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -84,33 +84,33 @@ WARNING: - [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.4-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.4-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.4-jdk`, `7.6-jdk`, `7-jdk`, `7.6.4`, `7.6`, `7`, `7.6.4-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.4-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-noble/Dockerfile) +- [`7.6.5-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.5-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.5-jdk`, `7.6-jdk`, `7-jdk`, `7.6.5`, `7.6`, `7`, `7.6.5-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.5-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-noble/Dockerfile) -- [`7.6.4-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.4-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.4-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-jammy/Dockerfile) +- [`7.6.5-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.5-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.5-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-jammy/Dockerfile) -- [`7.6.4-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.4-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.4-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-alpine/Dockerfile) +- [`7.6.5-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.5-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.5-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-alpine/Dockerfile) -- [`7.6.4-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.4-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-corretto/Dockerfile) +- [`7.6.5-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.5-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-corretto/Dockerfile) -- [`7.6.4-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.4-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-ubi9/Dockerfile) +- [`7.6.5-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.5-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-ubi9/Dockerfile) -- [`7.6.4-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.4-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.4-graal`, `7.6-graal`, `7-graal`, `7.6.4-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.4-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.4-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-noble-graal/Dockerfile) +- [`7.6.5-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.5-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.5-graal`, `7.6-graal`, `7-graal`, `7.6.5-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.5-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.5-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-noble-graal/Dockerfile) -- [`7.6.4-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.4-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.4-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk17-jammy-graal/Dockerfile) +- [`7.6.5-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.5-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.5-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-jammy-graal/Dockerfile) -- [`7.6.4-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.4-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-jammy/Dockerfile) +- [`7.6.5-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.5-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-jammy/Dockerfile) -- [`7.6.4-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-alpine/Dockerfile) +- [`7.6.5-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-alpine/Dockerfile) -- [`7.6.4-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.4-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-corretto/Dockerfile) +- [`7.6.5-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.5-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-corretto/Dockerfile) -- [`7.6.4-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.4-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk11-ubi9/Dockerfile) +- [`7.6.5-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.5-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-ubi9/Dockerfile) -- [`7.6.4-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.4-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-jammy/Dockerfile) +- [`7.6.5-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.5-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-jammy/Dockerfile) -- [`7.6.4-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.4-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-corretto/Dockerfile) +- [`7.6.5-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.5-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-corretto/Dockerfile) -- [`7.6.4-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.4-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/d2bcc402a82961686289fb3b3ad42f40b5f2220e/jdk8-ubi9/Dockerfile) +- [`7.6.5-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.5-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-ubi9/Dockerfile) - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) From 12eb2f888bfee039ba9d86cb7a57acaf3dc0b9d9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 12:09:56 -0700 Subject: [PATCH 2236/2686] Run update.sh --- neo4j/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 1fa5dd99250d..6790f40926cd 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.04.0-community-bullseye`, `2025.04-community-bullseye`, `2025-community-bullseye`, `2025.04.0-community`, `2025.04-community`, `2025-community`, `2025.04.0-bullseye`, `2025.04-bullseye`, `2025-bullseye`, `2025.04.0`, `2025.04`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/bullseye/community/Dockerfile) +- [`2025.05.0-community-bullseye`, `2025.05-community-bullseye`, `2025-community-bullseye`, `2025.05.0-community`, `2025.05-community`, `2025-community`, `2025.05.0-bullseye`, `2025.05-bullseye`, `2025-bullseye`, `2025.05.0`, `2025.05`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/bullseye/community/Dockerfile) -- [`2025.04.0-enterprise-bullseye`, `2025.04-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.04.0-enterprise`, `2025.04-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/bullseye/enterprise/Dockerfile) +- [`2025.05.0-enterprise-bullseye`, `2025.05-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.05.0-enterprise`, `2025.05-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/bullseye/enterprise/Dockerfile) -- [`2025.04.0-community-ubi9`, `2025.04-community-ubi9`, `2025-community-ubi9`, `2025.04.0-ubi9`, `2025.04-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/community/Dockerfile) +- [`2025.05.0-community-ubi9`, `2025.05-community-ubi9`, `2025-community-ubi9`, `2025.05.0-ubi9`, `2025.05-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/ubi9/community/Dockerfile) -- [`2025.04.0-enterprise-ubi9`, `2025.04-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/fc15c187e052410e6462ed5c4054c5537e0c01ac/2025.04.0/ubi9/enterprise/Dockerfile) +- [`2025.05.0-enterprise-ubi9`, `2025.05-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/ubi9/enterprise/Dockerfile) - [`5.26.7-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.7-community`, `5.26-community`, `5-community`, `5.26.7-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.7`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/bullseye/community/Dockerfile) From bf9d8165d808076550520fb2862585ab535e3a56 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 14:10:14 -0700 Subject: [PATCH 2237/2686] Run update.sh --- notary/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/notary/README.md b/notary/README.md index 987c7c12ce17..832df259bae0 100644 --- a/notary/README.md +++ b/notary/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`server-0.7.0`, `server`](https://github.com/docker/notary-official-images/blob/77b9b7833f8dd6be07104b214193788795a320ff/notary-server/Dockerfile) - -- [`signer-0.7.0`, `signer`](https://github.com/docker/notary-official-images/blob/77b9b7833f8dd6be07104b214193788795a320ff/notary-signer/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -34,7 +32,7 @@ WARNING: [https://github.com/docker/notary-official-images/issues](https://github.com/docker/notary-official-images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/notary/), [`arm32v6`](https://hub.docker.com/r/arm32v6/notary/), [`arm64v8`](https://hub.docker.com/r/arm64v8/notary/), [`i386`](https://hub.docker.com/r/i386/notary/), [`ppc64le`](https://hub.docker.com/r/ppc64le/notary/), [`s390x`](https://hub.docker.com/r/s390x/notary/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/notary/` directory](https://github.com/docker-library/repo-info/blob/master/repos/notary) ([history](https://github.com/docker-library/repo-info/commits/master/repos/notary)) From f7001a1fed584623192049b5e8f3d64a474f6d45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 15:10:05 -0700 Subject: [PATCH 2238/2686] Run update.sh --- hylang/README.md | 108 ++++++++++++++++++++++------------------------- 1 file changed, 51 insertions(+), 57 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index a3904cbb0915..0ed657157fb1 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,123 +28,117 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.12-windowsservercore-ltsc2025`, `1.1-python3.12-windowsservercore-ltsc2025`, `1-python3.12-windowsservercore-ltsc2025`, `python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.12-windowsservercore-ltsc2022`, `1.1-python3.12-windowsservercore-ltsc2022`, `1-python3.12-windowsservercore-ltsc2022`, `python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) +- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) -- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) -- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) -- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) -- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) -- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) ## Shared Tags - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-bookworm) - - [`1.1.0-python3.12-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2025) - - [`1.1.0-python3.12-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.12-windowsservercore-ltsc2022) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - `1.1.0-pypy3.10`, `1.1-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/5c986c271e3c6c67e1b6cf38b74b0fa24482fc86/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) # Quick reference (cont.) From 0b5c8e2ee6385d4ad3f87a173fb9d0c538f71960 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 4 Jun 2025 15:13:35 -0700 Subject: [PATCH 2239/2686] Officially deprecate SATOSA for inactivity --- satosa/README-short.txt | 2 +- satosa/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 satosa/deprecated.md diff --git a/satosa/README-short.txt b/satosa/README-short.txt index 50d0e08f9866..9027c4696413 100644 --- a/satosa/README-short.txt +++ b/satosa/README-short.txt @@ -1 +1 @@ -SATOSA translates between authentication protocols such as SAML2, OpenID Connect, and OAuth2. +DEPRECATED; SATOSA translates between auth protocols such as SAML2, OpenID Connect, and OAuth2. diff --git a/satosa/deprecated.md b/satosa/deprecated.md new file mode 100644 index 000000000000..41f6be58b34c --- /dev/null +++ b/satosa/deprecated.md @@ -0,0 +1 @@ +This image is deprecated due to maintainer inactivity (last updated Dec 2023; [docker-library/official-images#15964](https://github.com/docker-library/official-images/pull/15964)). From 4a65c7b4ca2bd793431864f6a495cddd7bea06c4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 16:10:04 -0700 Subject: [PATCH 2240/2686] Run update.sh --- haxe/README.md | 8 -------- kong/README.md | 18 ------------------ mongo-express/README.md | 10 ++-------- registry/README.md | 2 -- satosa/README.md | 4 ++++ teamspeak/README.md | 4 ++-- 6 files changed, 8 insertions(+), 38 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index d9caeaa8fbbe..0aeab55259ba 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -40,8 +40,6 @@ WARNING: - [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.19/Dockerfile) -- [`4.3.6-alpine3.18`, `4.3-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.18/Dockerfile) - - [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) - [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bullseye/Dockerfile) @@ -54,8 +52,6 @@ WARNING: - [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.19/Dockerfile) -- [`4.2.5-alpine3.18`, `4.2-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.18/Dockerfile) - - [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) @@ -66,8 +62,6 @@ WARNING: - [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.19/Dockerfile) -- [`4.1.5-alpine3.18`, `4.1-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.18/Dockerfile) - - [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) @@ -78,8 +72,6 @@ WARNING: - [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.19/Dockerfile) -- [`4.0.5-alpine3.18`, `4.0-alpine3.18`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.18/Dockerfile) - ## Shared Tags - `4.3.6`, `4.3`, `latest`: diff --git a/kong/README.md b/kong/README.md index 8801790afd08..9de028e42899 100644 --- a/kong/README.md +++ b/kong/README.md @@ -34,8 +34,6 @@ WARNING: - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) -- [`2.8.5-alpine`, `2.8-alpine`, `2.8.5`, `2.8`, `2`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/alpine/Dockerfile) - - [`2.8.5-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/ubuntu/Dockerfile) # Quick reference (cont.) @@ -69,22 +67,6 @@ Kong's official documentation can be found at [docs.konghq.com](https://docs.kon Please refer to the [installation section](https://docs.konghq.com/gateway/latest/install/docker/#main) on our documentation website to learn how to use this image. -# Image Variants - -The `kong` images come in many flavors, each designed for a specific use case. - -## `kong:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -## `kong:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - # License View [license information](https://github.com/Kong/kong/blob/master/LICENSE) for the software contained in this image. diff --git a/mongo-express/README.md b/mongo-express/README.md index 27637857b498..622247c1f1c4 100644 --- a/mongo-express/README.md +++ b/mongo-express/README.md @@ -24,13 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.0.2-20-alpine3.19`, `1.0-20-alpine3.19`, `1-20-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.19/Dockerfile) - -- [`1.0.2-20`, `1.0-20`, `1-20`, `1.0.2-20-alpine3.18`, `1.0-20-alpine3.18`, `1-20-alpine3.18`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/20-alpine3.18/Dockerfile) - -- [`1.0.2-18-alpine3.19`, `1.0-18-alpine3.19`, `1-18-alpine3.19`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.19/Dockerfile) - -- [`1.0.2`, `1.0`, `1`, `1.0.2-18`, `1.0-18`, `1-18`, `1.0.2-18-alpine3.18`, `1.0-18-alpine3.18`, `1-18-alpine3.18`, `latest`](https://github.com/mongo-express/mongo-express-docker/blob/403467f350d819b404f3d5150be7776217e810b7/1.0/18-alpine3.18/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -38,7 +32,7 @@ WARNING: [https://github.com/mongo-express/mongo-express-docker/issues](https://github.com/mongo-express/mongo-express-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/mongo-express/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mongo-express/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/mongo-express/` directory](https://github.com/docker-library/repo-info/blob/master/repos/mongo-express) ([history](https://github.com/docker-library/repo-info/commits/master/repos/mongo-express)) diff --git a/registry/README.md b/registry/README.md index 8b80886e9c61..85ef0515ec33 100644 --- a/registry/README.md +++ b/registry/README.md @@ -26,8 +26,6 @@ WARNING: - [`3.0.0`, `3.0`, `3`, `latest`](https://github.com/distribution/distribution-library-image/blob/f83883590f5afda69afafbc5aaa5fde3686f47cf/Dockerfile) -- [`2.8.3`, `2.8`, `2`](https://github.com/distribution/distribution-library-image/blob/39dd72feaab7066334829d6945c54bc51a0aee98/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/satosa/README.md b/satosa/README.md index 984a467541af..b83ac6f68d7d 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +This image is deprecated due to maintainer inactivity (last updated Dec 2023; [docker-library/official-images#15964](https://github.com/docker-library/official-images/pull/15964)). + # Quick reference - **Maintained by**: diff --git a/teamspeak/README.md b/teamspeak/README.md index c0882d3ed554..87517278e4ef 100644 --- a/teamspeak/README.md +++ b/teamspeak/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.13`, `3.13.7`, `latest`](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/blob/f5f1e7f6142e8eeebb8d46d7b493b5d3ec01d599/alpine/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -32,7 +32,7 @@ WARNING: [https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues](https://github.com/TeamSpeak-Systems/teamspeak-linux-docker-images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/teamspeak/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/teamspeak/` directory](https://github.com/docker-library/repo-info/blob/master/repos/teamspeak) ([history](https://github.com/docker-library/repo-info/commits/master/repos/teamspeak)) From 0f1aaff5be26de0047e13b40ef760ccef76a2cd1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 4 Jun 2025 17:10:08 -0700 Subject: [PATCH 2241/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 375f05e9d2e4..7a6cb8f5f5c0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.0`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/85ffaf0cfe4310ab046b8ccad93c624c6dffe4bc/4.1/ubuntu/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/7065ac8c60d10c1cdaaa98b4d55d6a088485c766/4.1/ubuntu/Dockerfile) -- [`4.1.0-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) +- [`4.1.1-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.0-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/4.1/alpine/Dockerfile) +- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7065ac8c60d10c1cdaaa98b4d55d6a088485c766/4.1/alpine/Dockerfile) -- [`4.1.0-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) +- [`4.1.1-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/101d600e8f6ba9543a7e9dd9e156a2f7972218cf/4.0/ubuntu/Dockerfile) From 06a6fd6e059697b1da3d0479f80b30d0b239be45 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Jun 2025 10:10:09 -0700 Subject: [PATCH 2242/2686] Run update.sh --- jetty/README.md | 48 ++++++++++++++++++++++++------------------------ kong/README.md | 6 +----- 2 files changed, 25 insertions(+), 29 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 36c8bd7093dd..e474b6f7eefd 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -40,7 +40,7 @@ WARNING: - [`9.4.57-jre11`, `9.4-jre11`, `9-jre11`, `9.4.57-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk8/Dockerfile) - [`9.4.57-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.57-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) @@ -48,31 +48,31 @@ WARNING: - [`9.4.57-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.57-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk17/Dockerfile) - [`9.4.57-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.57-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.21-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.21-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.22-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.22-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.21-jre21`, `12.0-jre21`, `12-jre21`, `12.0.21-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.22-jre21`, `12.0-jre21`, `12-jre21`, `12.0.22-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.21-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.21-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.22-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.22-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.21-jre17`, `12.0-jre17`, `12-jre17`, `12.0.21-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.22-jre17`, `12.0-jre17`, `12-jre17`, `12.0.22-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.21-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.21-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.22-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.22-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.21-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.21-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.22-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.22-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.21-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.21-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.22-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.22-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.21`, `12.0`, `12`, `12.0.21-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.21-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.21-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.22`, `12.0`, `12`, `12.0.22-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.22-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.22-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.21-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.21-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.22-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.22-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.21-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.21-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.22-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.22-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -92,11 +92,11 @@ WARNING: - [`11.0.25-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.25-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/11.0/jdk17/Dockerfile) - [`11.0.25-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.25-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/11.0/jdk11/Dockerfile) - [`10.0.25-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.25-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre21-alpine/Dockerfile) @@ -116,11 +116,11 @@ WARNING: - [`10.0.25-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.25-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/10.0/jdk17/Dockerfile) - [`10.0.25-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.25-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.21-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.22-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.21-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.22-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.21-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.22-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.21-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.21-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.22-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.22-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.21-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.22-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.21-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.22-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.21-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/06d912a8ec1a1e8df456a953926ca1b1c7543c0c/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.22-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/kong/README.md b/kong/README.md index 9de028e42899..a393ec648714 100644 --- a/kong/README.md +++ b/kong/README.md @@ -24,14 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.0-ubuntu`, `3.9-ubuntu`, `3.9.0`, `3.9`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/d46098c09b6198efb71682fe7209bd6467bf3f67/ubuntu/Dockerfile) +- [`3.9.1-ubuntu`, `3.9-ubuntu`, `3.9.1`, `3.9`, `3`, `latest`, `ubuntu`](https://github.com/Kong/docker-kong/blob/af96ffd89b75f2e7a68cb90d0a3c4b4cd30d53fc/ubuntu/Dockerfile) - [`3.8.0-ubuntu`, `3.8-ubuntu`, `3.8.0`, `3.8`](https://github.com/Kong/docker-kong/blob/1f5199f7da45c17f4344b811397e89899a160040/ubuntu/Dockerfile) -- [`3.7.1-ubuntu`, `3.7-ubuntu`, `3.7.1`, `3.7`](https://github.com/Kong/docker-kong/blob/83bc64115d6487c754a6d7fdf43254ad9840058a/ubuntu/Dockerfile) - -- [`3.6.1-ubuntu`, `3.6-ubuntu`, `3.6.1`, `3.6`](https://github.com/Kong/docker-kong/blob/8791499ad78381aff75b4763ea944b0141851089/ubuntu/Dockerfile) - - [`3.4.2-ubuntu`, `3.4-ubuntu`, `3.4.2`, `3.4`](https://github.com/Kong/docker-kong/blob/e07de903edf213445a0540172d51529ac344b448/ubuntu/Dockerfile) - [`2.8.5-ubuntu`, `2.8-ubuntu`](https://github.com/Kong/docker-kong/blob/cdf93ae2106f998a2245a3eee6814b1ae68781af/ubuntu/Dockerfile) From 9cefc866a0d148ba7537743817cb7c2a163a06c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Jun 2025 11:12:14 -0700 Subject: [PATCH 2243/2686] Run update.sh --- elasticsearch/README.md | 2 +- kibana/README.md | 2 +- logstash/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index e81eb63c7ed0..79e87bb2640e 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -30,7 +30,7 @@ WARNING: - [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/elasticsearch/Dockerfile) -- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/elasticsearch/Dockerfile) +- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 41b17a5d5868..bccef28d544b 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -30,7 +30,7 @@ WARNING: - [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/kibana/Dockerfile) -- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/kibana/Dockerfile) +- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 0721d9eeadb2..e56cfe1d6fec 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -30,7 +30,7 @@ WARNING: - [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/logstash/Dockerfile) -- [`9.0.1`](https://github.com/elastic/dockerfiles/blob/c1767391264142d319c5aebbc7b44ff935ecb40d/logstash/Dockerfile) +- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/logstash/Dockerfile) # Quick reference (cont.) From be6731f765f8d040b9b106e6f6e8d146645467f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Jun 2025 13:09:55 -0700 Subject: [PATCH 2244/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ gradle/README.md | 60 ++++++++++++++++++++-------------------- 2 files changed, 66 insertions(+), 66 deletions(-) diff --git a/golang/README.md b/golang/README.md index 3970c0810de7..392bfc0a0bd9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`1.24.3-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bookworm/Dockerfile) +- [`1.24.4-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) -- [`1.24.3-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bullseye/Dockerfile) +- [`1.24.4-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bullseye/Dockerfile) -- [`1.24.3-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.3-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/1.24/alpine3.22/Dockerfile) +- [`1.24.4-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.4-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/alpine3.22/Dockerfile) -- [`1.24.3-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/alpine3.21/Dockerfile) +- [`1.24.4-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/alpine3.21/Dockerfile) -- [`1.24.3-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.4-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.3-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.4-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.3-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.4-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.3-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.4-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.9-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) +- [`1.23.10-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bookworm/Dockerfile) -- [`1.23.9-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bullseye/Dockerfile) +- [`1.23.10-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bullseye/Dockerfile) -- [`1.23.9-alpine3.22`, `1.23-alpine3.22`, `1.23.9-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/7162cd9bb639c8bc2c34b29dd8657b9a4a2ebb85/1.23/alpine3.22/Dockerfile) +- [`1.23.10-alpine3.22`, `1.23-alpine3.22`, `1.23.10-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/alpine3.22/Dockerfile) -- [`1.23.9-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/alpine3.21/Dockerfile) +- [`1.23.10-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/alpine3.21/Dockerfile) -- [`1.23.9-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.10-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.9-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.10-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.9-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.10-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.9-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20250530-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bookworm/Dockerfile) @@ -70,37 +70,37 @@ WARNING: ## Shared Tags -- `1.24.3`, `1.24`, `1`, `latest`: +- `1.24.4`, `1.24`, `1`, `latest`: - - [`1.24.3-bookworm`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/bookworm/Dockerfile) - - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.4-bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) + - [`1.24.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.3-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.4-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.3-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.4-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6f5593131e9bccda9a4e83f858427d4d0d16b58d/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.4-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `1.23.9`, `1.23`: +- `1.23.10`, `1.23`: - - [`1.23.9-bookworm`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/bookworm/Dockerfile) - - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.10-bookworm`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bookworm/Dockerfile) + - [`1.23.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.9-windowsservercore`, `1.23-windowsservercore`: +- `1.23.10-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.9-nanoserver`, `1.23-nanoserver`: +- `1.23.10-nanoserver`, `1.23-nanoserver`: - - [`1.23.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/93f44df27b2ca87cc4342447e0179fe0b8f7d226/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20250530`, `tip`: diff --git a/gradle/README.md b/gradle/README.md index c013940dc737..b700b97980a1 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.1-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.1-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.1-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.1`, `8.14`, `8`, `8.14.1-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.1-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-noble/Dockerfile) +- [`8.14.2-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.2-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.2-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.2`, `8.14`, `8`, `8.14.2-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.2-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-noble/Dockerfile) -- [`8.14.1-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.1-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.1-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-jammy/Dockerfile) +- [`8.14.2-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.2-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.2-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-jammy/Dockerfile) -- [`8.14.1-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.1-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.1-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-alpine/Dockerfile) +- [`8.14.2-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.2-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.2-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-alpine/Dockerfile) -- [`8.14.1-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.1-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-corretto/Dockerfile) +- [`8.14.2-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.2-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-corretto/Dockerfile) -- [`8.14.1-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.1-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-ubi9/Dockerfile) +- [`8.14.2-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.2-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-ubi9/Dockerfile) -- [`8.14.1-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.1-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.1-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.1-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.1-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.1-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-noble-graal/Dockerfile) +- [`8.14.2-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.2-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.2-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.2-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.2-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.2-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-noble-graal/Dockerfile) -- [`8.14.1-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.1-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.1-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk21-jammy-graal/Dockerfile) +- [`8.14.2-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.2-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.2-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-jammy-graal/Dockerfile) -- [`8.14.1-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.1-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-noble/Dockerfile) +- [`8.14.2-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.2-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-noble/Dockerfile) -- [`8.14.1-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-jammy/Dockerfile) +- [`8.14.2-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-jammy/Dockerfile) -- [`8.14.1-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-alpine/Dockerfile) +- [`8.14.2-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-alpine/Dockerfile) -- [`8.14.1-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.1-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-corretto/Dockerfile) +- [`8.14.2-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.2-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-corretto/Dockerfile) -- [`8.14.1-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.1-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-ubi9/Dockerfile) +- [`8.14.2-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.2-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-ubi9/Dockerfile) -- [`8.14.1-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.1-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-noble-graal/Dockerfile) +- [`8.14.2-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.2-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-noble-graal/Dockerfile) -- [`8.14.1-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk17-jammy-graal/Dockerfile) +- [`8.14.2-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-jammy-graal/Dockerfile) -- [`8.14.1-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.1-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-jammy/Dockerfile) +- [`8.14.2-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.2-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-jammy/Dockerfile) -- [`8.14.1-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-alpine/Dockerfile) +- [`8.14.2-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-alpine/Dockerfile) -- [`8.14.1-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.1-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-corretto/Dockerfile) +- [`8.14.2-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.2-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-corretto/Dockerfile) -- [`8.14.1-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.1-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk11-ubi9/Dockerfile) +- [`8.14.2-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.2-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-ubi9/Dockerfile) -- [`8.14.1-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.1-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-jammy/Dockerfile) +- [`8.14.2-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.2-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-jammy/Dockerfile) -- [`8.14.1-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.1-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-corretto/Dockerfile) +- [`8.14.2-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.2-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-corretto/Dockerfile) -- [`8.14.1-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.1-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk8-ubi9/Dockerfile) +- [`8.14.2-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.2-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-ubi9/Dockerfile) -- [`8.14.1-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.1-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-noble/Dockerfile) +- [`8.14.2-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.2-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-noble/Dockerfile) -- [`8.14.1-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-alpine/Dockerfile) +- [`8.14.2-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-alpine/Dockerfile) -- [`8.14.1-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.1-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-corretto/Dockerfile) +- [`8.14.2-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.2-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-corretto/Dockerfile) -- [`8.14.1-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.1-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-ubi9/Dockerfile) +- [`8.14.2-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.2-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-ubi9/Dockerfile) -- [`8.14.1-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.1-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk24-noble-graal/Dockerfile) +- [`8.14.2-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.2-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-noble-graal/Dockerfile) -- [`8.14.1-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.1-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.1-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.1-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current/Dockerfile) +- [`8.14.2-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.2-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.2-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.2-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current/Dockerfile) -- [`8.14.1-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.1-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.2-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.2-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.1-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.1-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.1-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.1-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.2-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.2-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.2-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.2-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.1-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.1-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.1-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.1-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c8151c28b2e068643cfc950d25dc080850bb6580/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.2-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.2-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.2-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.2-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-graal/Dockerfile) - [`7.6.5-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.5-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.5-jdk`, `7.6-jdk`, `7-jdk`, `7.6.5`, `7.6`, `7`, `7.6.5-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.5-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-noble/Dockerfile) From 4ee549a0c66d5d68da099c42231c22c570b340cc Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Wed, 4 Jun 2025 15:57:13 -0700 Subject: [PATCH 2245/2686] Note on PGDATA changes for PostgreSQL 18+ --- postgres/content.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/postgres/content.md b/postgres/content.md index 6015c85082d9..87cd0c59305b 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -96,7 +96,11 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. +> **Important Change:** [the `PGDATA` environment variable of the image was changed to be version specific in PostgreSQL 18 and above](https://github.com/docker-library/postgres/pull/1259). For 18 it is `/var/lib/postgresql/18/docker`. Later versions will replace `18` with their respective major version (e.g., `/var/lib/postgresql/19/docker` for PostgreSQL `19.x`). The defined `VOLUME` was changed in 18 and above to `/var/lib/postgresql`. Mounts and volumes should be targeted at the updated location. This will allow users upgrading between PostgreSQL major releases to use the faster `--link` when running `pg_upgrade` and mounting `/var/lib/postgresql`. + +Users who wish to opt-in to this change on older releases can do so by setting `PGDATA` explicitly (`--env PGDATA=/var/lib/postgresql/17/docker --volume some-postgres:/var/lib/postgresql`). To migrate pre-existing data, adjust the volume's folder structure appropriately first (moving all database files into a `PG_MAJOR/docker` subdirectory). + +> **Important Note:** (for PostgreSQL 17 and below) Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. From 6f9f981207d2b25b0974b6ce0bf0d63b3c5b1156 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 5 Jun 2025 16:10:14 -0700 Subject: [PATCH 2246/2686] Run update.sh --- docker/README.md | 12 ++++++------ gcc/README.md | 2 +- julia/README.md | 26 +++++++++++++------------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docker/README.md b/docker/README.md index fc08a3c9f235..21279b6492f7 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.21`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/cli/Dockerfile) -- [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.21`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.21`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind/Dockerfile) +- [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index 6c34987c26a7..f9e47c010710 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -28,7 +28,7 @@ WARNING: - [`14.3.0`, `14.3`, `14`, `14.3.0-bookworm`, `14.3-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/d262936418fbf062bb25907d5126a178578ab58b/14/Dockerfile) -- [`13.3.0`, `13.3`, `13`, `13.3.0-bookworm`, `13.3-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/13/Dockerfile) +- [`13.4.0`, `13.4`, `13`, `13.4.0-bookworm`, `13.4-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/118c07a8e6467baababb4634b6cfde14a67c24b0/13/Dockerfile) - [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/12/Dockerfile) diff --git a/julia/README.md b/julia/README.md index e595bd5cbbdc..2e74db5f6ac8 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`1.12.0-beta3-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-beta4-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-beta3-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bullseye/Dockerfile) +- [`1.12.0-beta4-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bullseye/Dockerfile) -- [`1.12.0-beta3-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-beta3-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.12-rc/alpine3.22/Dockerfile) +- [`1.12.0-beta4-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-beta4-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/alpine3.22/Dockerfile) -- [`1.12.0-beta3-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/alpine3.21/Dockerfile) +- [`1.12.0-beta4-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/alpine3.21/Dockerfile) -- [`1.12.0-beta3-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-beta4-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-beta3-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-beta4-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) @@ -66,16 +66,16 @@ WARNING: ## Shared Tags -- `1.12.0-beta3`, `1.12-rc`, `rc`: +- `1.12.0-beta4`, `1.12-rc`, `rc`: - - [`1.12.0-beta3-bookworm`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/bookworm/Dockerfile) - - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta4-bookworm`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-beta4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-beta3-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-beta4-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-beta3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/09ad25e2f355dd91cbd2f87978800fb90bf0a1c0/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-beta4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `1.11.5`, `1.11`, `1`, `latest`: From 52d56c7062cda9ac3076706c8ff43789266ad080 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Jun 2025 11:10:22 -0700 Subject: [PATCH 2247/2686] Run update.sh --- caddy/README.md | 12 ++--- drupal/README.md | 48 +++++++++--------- odoo/README.md | 6 +-- php/README.md | 112 +++++++++++------------------------------- rocket.chat/README.md | 6 +-- 5 files changed, 64 insertions(+), 120 deletions(-) diff --git a/caddy/README.md b/caddy/README.md index 1f8473eec531..a232179b787c 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -32,32 +32,32 @@ WARNING: - [`2.10.0-builder-alpine`, `2.10-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) -- [`2.10.0-windowsservercore-1809`, `2.10-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) - - [`2.10.0-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) -- [`2.10.0-builder-windowsservercore-1809`, `2.10-builder-windowsservercore-1809`, `2-builder-windowsservercore-1809`, `builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/1809/Dockerfile) +- [`2.10.0-windowsservercore-ltsc2025`, `2.10-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) - [`2.10.0-builder-windowsservercore-ltsc2022`, `2.10-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) +- [`2.10.0-builder-windowsservercore-ltsc2025`, `2.10-builder-windowsservercore-ltsc2025`, `2-builder-windowsservercore-ltsc2025`, `builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows-builder/ltsc2025/Dockerfile) + ## Shared Tags - `2.10.0`, `2.10`, `2`, `latest`: - [`2.10.0-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/alpine/Dockerfile) - - [`2.10.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) + - [`2.10.0-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) - `2.10.0-builder`, `2.10-builder`, `2-builder`, `builder`: - [`2.10.0-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) - - [`2.10.0-builder-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/1809/Dockerfile) - [`2.10.0-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) + - [`2.10.0-builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows-builder/ltsc2025/Dockerfile) - `2.10.0-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.0-windowsservercore-1809`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/1809/Dockerfile) - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) + - [`2.10.0-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 553a16cd8295..4c681086a93a 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -48,29 +48,29 @@ WARNING: - [`11.2.0-beta1-php8.3-fpm-alpine3.20`, `11.2-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-alpine3.20/Dockerfile) -- [`11.1.7-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.7-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.7-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.7-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.7-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.7-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.7-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.7-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.7-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.8-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.7-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.20/Dockerfile) -- [`11.1.7-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.7-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.7-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.7-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.7-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.7`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.8`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.7-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.7-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.7-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.7-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.8-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.7-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.7-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.7-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.7-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.8-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.7-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.7-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.7-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.7-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.8-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.8-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.7-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.7-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/c6093d2b0c18f8c7dd2b4979541af158bfcf8d20/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.8-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.20/Dockerfile) - [`11.0.13-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.13-php8.3-apache`, `11.0-php8.3-apache`, `11.0.13-php8.3`, `11.0-php8.3`, `11.0.13-apache-bookworm`, `11.0-apache-bookworm`, `11.0.13-apache`, `11.0-apache`, `11.0.13`, `11.0`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bookworm/Dockerfile) @@ -108,29 +108,29 @@ WARNING: - [`10.5.0-beta1-php8.3-fpm-alpine3.20`, `10.5-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-alpine3.20/Dockerfile) -- [`10.4.7-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.7-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.7-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.7-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.7-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.7-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.4.7-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.4.7-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.7-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.8-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.7-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.20/Dockerfile) -- [`10.4.7-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.7-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.7-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.7-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.7-apache`, `10.4-apache`, `10-apache`, `10.4.7`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10-apache`, `10.4.8`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.7-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.7-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.7-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.7-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.8-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.7-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.7-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.7-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.7-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.8-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.7-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.7-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.7-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.7-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.8-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.8-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.8-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.7-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.7-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/b8db65b8a951d1c4a44fb3c6a7e6213ed347ff7a/10.4/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.8-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.20/Dockerfile) - [`10.3.14-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.14-php8.3-apache`, `10.3-php8.3-apache`, `10.3.14-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bookworm/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index a76461a0bb7f..f355bc505f80 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250520`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/18.0/Dockerfile) +- [`18.0-20250606`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/18.0/Dockerfile) -- [`17.0-20250520`, `17.0`, `17`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/17.0/Dockerfile) +- [`17.0-20250606`, `17.0`, `17`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/17.0/Dockerfile) -- [`16.0-20250520`, `16.0`, `16`](https://github.com/odoo/docker/blob/5d67b9585c0e29c9dccc0b3f484eedc4e5c46714/16.0/Dockerfile) +- [`16.0-20250606`, `16.0`, `16`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/16.0/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 1823c04c3a43..f23e72eb9dc7 100644 --- a/php/README.md +++ b/php/README.md @@ -24,117 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.8RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.8RC1-bookworm`, `8.4-rc-bookworm`, `8.4.8RC1-cli`, `8.4-rc-cli`, `8.4.8RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.8-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.8-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.8-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.8`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/cli/Dockerfile) -- [`8.4.8RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.8RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.8-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.8-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/apache/Dockerfile) -- [`8.4.8RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.8RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.8-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.8-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/fpm/Dockerfile) -- [`8.4.8RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.8RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.8-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.8-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/zts/Dockerfile) -- [`8.4.8RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.8RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.8-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.8-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/cli/Dockerfile) -- [`8.4.8RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.8-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/apache/Dockerfile) -- [`8.4.8RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.8-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/fpm/Dockerfile) -- [`8.4.8RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.8-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/zts/Dockerfile) -- [`8.4.8RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.8RC1-alpine3.21`, `8.4-rc-alpine3.21`, `8.4.8RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.8RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.8RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`, `8.4.8RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.8RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`, `8.4.8RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.8RC1-cli-alpine3.20`, `8.4-rc-cli-alpine3.20`, `8.4.8RC1-alpine3.20`, `8.4-rc-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/cli/Dockerfile) +- [`8.4.8-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.8-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/cli/Dockerfile) -- [`8.4.8RC1-fpm-alpine3.20`, `8.4-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/fpm/Dockerfile) -- [`8.4.8RC1-zts-alpine3.20`, `8.4-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/697721dd6520a40a45ec634f8aa2b52590ada144/8.4-rc/alpine3.20/zts/Dockerfile) +- [`8.4.8-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/zts/Dockerfile) -- [`8.4.7-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.7-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.7-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.7`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/cli/Dockerfile) +- [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/cli/Dockerfile) -- [`8.4.7-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.7-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/apache/Dockerfile) +- [`8.3.22-apache-bookworm`, `8.3-apache-bookworm`, `8.3.22-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/apache/Dockerfile) -- [`8.4.7-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.7-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/fpm/Dockerfile) +- [`8.3.22-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.22-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/fpm/Dockerfile) -- [`8.4.7-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.7-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bookworm/zts/Dockerfile) +- [`8.3.22-zts-bookworm`, `8.3-zts-bookworm`, `8.3.22-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/zts/Dockerfile) -- [`8.4.7-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.7-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/cli/Dockerfile) +- [`8.3.22-cli-bullseye`, `8.3-cli-bullseye`, `8.3.22-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/cli/Dockerfile) -- [`8.4.7-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/apache/Dockerfile) +- [`8.3.22-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/apache/Dockerfile) -- [`8.4.7-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/fpm/Dockerfile) +- [`8.3.22-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/fpm/Dockerfile) -- [`8.4.7-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/bullseye/zts/Dockerfile) +- [`8.3.22-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/zts/Dockerfile) -- [`8.4.7-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.7-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.7-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.7-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.7-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.7-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.7-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.7-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/zts/Dockerfile) -- [`8.4.7-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.7-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/cli/Dockerfile) +- [`8.3.22-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.22-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/cli/Dockerfile) -- [`8.4.7-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/fpm/Dockerfile) -- [`8.4.7-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/ef410b5f840d3bd27d955de75f409f6dce050ccd/8.4/alpine3.20/zts/Dockerfile) - -- [`8.3.22RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.22RC1-bookworm`, `8.3-rc-bookworm`, `8.3.22RC1-cli`, `8.3-rc-cli`, `8.3.22RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/cli/Dockerfile) - -- [`8.3.22RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.22RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/apache/Dockerfile) - -- [`8.3.22RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.22RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/fpm/Dockerfile) - -- [`8.3.22RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.22RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bookworm/zts/Dockerfile) - -- [`8.3.22RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.22RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/cli/Dockerfile) - -- [`8.3.22RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/apache/Dockerfile) - -- [`8.3.22RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/fpm/Dockerfile) - -- [`8.3.22RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/bullseye/zts/Dockerfile) - -- [`8.3.22RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.22RC1-alpine3.21`, `8.3-rc-alpine3.21`, `8.3.22RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.22RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/cli/Dockerfile) - -- [`8.3.22RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`, `8.3.22RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/fpm/Dockerfile) - -- [`8.3.22RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`, `8.3.22RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.22RC1-cli-alpine3.20`, `8.3-rc-cli-alpine3.20`, `8.3.22RC1-alpine3.20`, `8.3-rc-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/cli/Dockerfile) - -- [`8.3.22RC1-fpm-alpine3.20`, `8.3-rc-fpm-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/fpm/Dockerfile) - -- [`8.3.22RC1-zts-alpine3.20`, `8.3-rc-zts-alpine3.20`](https://github.com/docker-library/php/blob/d683ba1b39e5a5881c28b745d1206bfb360addf6/8.3-rc/alpine3.20/zts/Dockerfile) - -- [`8.3.21-cli-bookworm`, `8.3-cli-bookworm`, `8.3.21-bookworm`, `8.3-bookworm`, `8.3.21-cli`, `8.3-cli`, `8.3.21`, `8.3`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/cli/Dockerfile) - -- [`8.3.21-apache-bookworm`, `8.3-apache-bookworm`, `8.3.21-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/apache/Dockerfile) - -- [`8.3.21-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.21-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.21-zts-bookworm`, `8.3-zts-bookworm`, `8.3.21-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bookworm/zts/Dockerfile) - -- [`8.3.21-cli-bullseye`, `8.3-cli-bullseye`, `8.3.21-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/cli/Dockerfile) - -- [`8.3.21-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/apache/Dockerfile) - -- [`8.3.21-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/fpm/Dockerfile) - -- [`8.3.21-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/bullseye/zts/Dockerfile) - -- [`8.3.21-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.21-alpine3.21`, `8.3-alpine3.21`, `8.3.21-cli-alpine`, `8.3-cli-alpine`, `8.3.21-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.21-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.21-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.21-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.21-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.21/zts/Dockerfile) - -- [`8.3.21-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.21-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/cli/Dockerfile) - -- [`8.3.21-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/fpm/Dockerfile) - -- [`8.3.21-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/6c2ca6009a3d8e4b7aaa3df697a0e12b13948efc/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.22-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/zts/Dockerfile) - [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index f154990b8c5a..448dbd101479 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.1`, `7.6`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/cbc1851ee221b8cea1f4bff221682040d9ca4dbe/7.6/Dockerfile) +- [`7.7.0`, `7.7`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3130b58c0def2f3b03ce78af368ef8506e250b92/7.7/Dockerfile) + +- [`7.6.2`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/3130b58c0def2f3b03ce78af368ef8506e250b92/7.6/Dockerfile) - [`7.5.1`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.5/Dockerfile) @@ -36,8 +38,6 @@ WARNING: - [`7.1.5`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.1/Dockerfile) -- [`7.0.9`, `7.0`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.0/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From c61a889a8d13d07d8e5fd184f4c484f92d29a980 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Jun 2025 14:10:08 -0700 Subject: [PATCH 2248/2686] Run update.sh --- haxe/README.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/haxe/README.md b/haxe/README.md index 0aeab55259ba..ec0add28be85 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -34,8 +34,6 @@ WARNING: - [`4.3.6-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.6-windowsservercore-1809`, `4.3-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) - - [`4.3.6-alpine3.20`, `4.3-alpine3.20`, `4.3.6-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.20/Dockerfile) - [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.19/Dockerfile) @@ -46,8 +44,6 @@ WARNING: - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.5-windowsservercore-1809`, `4.2-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - - [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.20/Dockerfile) - [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.19/Dockerfile) @@ -56,8 +52,6 @@ WARNING: - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) -- [`4.1.5-windowsservercore-1809`, `4.1-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - - [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.20/Dockerfile) - [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.19/Dockerfile) @@ -66,8 +60,6 @@ WARNING: - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) -- [`4.0.5-windowsservercore-1809`, `4.0-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - - [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.20/Dockerfile) - [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.19/Dockerfile) @@ -78,45 +70,37 @@ WARNING: - [`4.3.6-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bookworm/Dockerfile) - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.6-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) - `4.3.6-windowsservercore`, `4.3-windowsservercore`: - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) - - [`4.3.6-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-1809/Dockerfile) - `4.2.5`, `4.2`: - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - - [`4.2.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-1809/Dockerfile) - `4.1.5`, `4.1`: - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.1.5-windowsservercore`, `4.1-windowsservercore`: - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - - [`4.1.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-1809/Dockerfile) - `4.0.5`, `4.0`: - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) - `4.0.5-windowsservercore`, `4.0-windowsservercore`: - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - - [`4.0.5-windowsservercore-1809`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-1809/Dockerfile) # Quick reference (cont.) From f4ef535dc58a2e1357374c5516fd559de6f975c3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 6 Jun 2025 16:09:50 -0700 Subject: [PATCH 2249/2686] Run update.sh --- ros/README.md | 94 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 90 insertions(+), 4 deletions(-) diff --git a/ros/README.md b/ros/README.md index cb18d74aa43d..e035040ce453 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,13 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/b525e9ef659ce448db6150fd5407ef62b2c5b265/ros/noetic/ubuntu/focal/ros-core/Dockerfile) +- [`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/indigo/ubuntu/trusty/ros-core/Dockerfile) -- [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) +- [`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/ros-base/Dockerfile) -- [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) +- [`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/robot/Dockerfile) -- [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) +- [`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/perception/Dockerfile) + +- [`jade-ros-core`, `jade-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/jade/ubuntu/trusty/ros-core/Dockerfile) + +- [`jade-ros-base`, `jade-ros-base-trusty`, `jade`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/ros-base/Dockerfile) + +- [`jade-robot`, `jade-robot-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/robot/Dockerfile) + +- [`jade-perception`, `jade-perception-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/perception/Dockerfile) + +- [`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile) + +- [`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile) + +- [`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/robot/Dockerfile) + +- [`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/perception/Dockerfile) + +- [`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/xenial/ros-core/Dockerfile) + +- [`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/ros-base/Dockerfile) + +- [`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/robot/Dockerfile) + +- [`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/perception/Dockerfile) + +- [`lunar-ros-core-zesty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/zesty/ros-core/Dockerfile) + +- [`lunar-ros-base-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/ros-base/Dockerfile) + +- [`lunar-robot-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/robot/Dockerfile) + +- [`lunar-perception-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/perception/Dockerfile) + +- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) + +- [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) + +- [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) + +- [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) + +- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/debian/buster/ros-core/Dockerfile) + +- [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) + +- [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) + +- [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) + +- [`ardent-ros-core`, `ardent-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/ardent/ubuntu/xenial/ros-core/Dockerfile) + +- [`ardent-ros-base`, `ardent-ros-base-xenial`, `ardent`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/ardent/ubuntu/xenial/ros-base/Dockerfile) + +- [`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile) + +- [`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile) + +- [`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/crystal/ubuntu/bionic/ros-core/Dockerfile) + +- [`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/crystal/ubuntu/bionic/ros-base/Dockerfile) + +- [`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/dashing/ubuntu/bionic/ros-core/Dockerfile) + +- [`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/dashing/ubuntu/bionic/ros-base/Dockerfile) + +- [`dashing-ros1-bridge`, `dashing-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/dashing/ubuntu/bionic/ros1-bridge/Dockerfile) + +- [`eloquent-ros-core`, `eloquent-ros-core-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros-core/Dockerfile) + +- [`eloquent-ros-base`, `eloquent-ros-base-bionic`, `eloquent`](https://github.com/osrf/docker_images/blob/b3e79c3aef3687b56b3c1052ae38aa7010234834/ros/eloquent/ubuntu/bionic/ros-base/Dockerfile) + +- [`eloquent-ros1-bridge`, `eloquent-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros1-bridge/Dockerfile) + +- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros-core/Dockerfile) + +- [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) + +- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/galactic/ubuntu/focal/ros-core/Dockerfile) + +- [`galactic-ros-base`, `galactic-ros-base-focal`, `galactic`](https://github.com/osrf/docker_images/blob/6511d8fc0754616550b7f5ea31a40084c2462938/ros/galactic/ubuntu/focal/ros-base/Dockerfile) - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/humble/ubuntu/jammy/ros-core/Dockerfile) @@ -38,6 +118,12 @@ WARNING: - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) +- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/2ad854492209b8dbab303578a5baedab4d5ab41d/ros/iron/ubuntu/jammy/ros-core/Dockerfile) + +- [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) + +- [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) + - [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) From 18bab64e241a0c7c661573bf764a15fbd83573d0 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 9 Jun 2025 10:44:51 -0700 Subject: [PATCH 2250/2686] Fix ymlfmt for geonetwork --- geonetwork/compose.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/geonetwork/compose.yaml b/geonetwork/compose.yaml index 2f2a7a8142dc..141fd69e3b12 100644 --- a/geonetwork/compose.yaml +++ b/geonetwork/compose.yaml @@ -71,8 +71,7 @@ services: POSTGRES_USER: geonetwork POSTGRES_PASSWORD: geonetwork POSTGRES_DB: geonetwork - command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, - -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] + command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] healthcheck: test: [CMD-SHELL, pg_isready -U postgres] interval: 5s From ca53f3d176e7bc232bdd6c0cc08c8443350b632c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Jun 2025 11:09:57 -0700 Subject: [PATCH 2251/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++---------------------- geonetwork/README.md | 3 +- postgres/README.md | 48 +++++++----- 3 files changed, 118 insertions(+), 111 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 0f0d28d51f9b..77dd040d585c 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1543-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1550-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1543-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1550-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1543-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1550-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1543-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1550-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1543`, `temurin-8-tools-deps-1.12.1.1543-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1550`, `temurin-8-tools-deps-1.12.1.1550-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1543-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1550-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1543-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1550-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1543-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1550-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1543-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1550-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1543-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1550-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1543-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1550-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1543`, `temurin-11-tools-deps-1.12.1.1543-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1550`, `temurin-11-tools-deps-1.12.1.1550-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1543-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1550-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1543-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1550-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1543-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1550-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1543-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1550-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1543-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1550-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1543-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1550-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1543`, `temurin-17-tools-deps-1.12.1.1543-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1550`, `temurin-17-tools-deps-1.12.1.1550-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1543-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1550-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1543-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1550-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1543-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1550-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1543`, `temurin-21-tools-deps-1.12.1.1543-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1543`, `tools-deps-1.12.1.1543-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1550`, `temurin-21-tools-deps-1.12.1.1550-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1550`, `tools-deps-1.12.1.1550-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1543-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1550-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1543-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1543-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1550-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1550-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1543-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1550-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1543-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1550-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1543-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1550-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1543-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1543-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1550-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1550-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1543-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1543-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1550-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1550-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1543-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1550-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1543`, `temurin-24-tools-deps-1.12.1.1543-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1550`, `temurin-24-tools-deps-1.12.1.1550-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1543-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1543-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1550-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1543-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1543-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1550-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1543-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1550-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1543-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/8492ade305637149a3a79b7345a67b9d47def3f9/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1550-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 49ff857fca8b..07b1c7b0fd47 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -293,8 +293,7 @@ services: POSTGRES_USER: geonetwork POSTGRES_PASSWORD: geonetwork POSTGRES_DB: geonetwork - command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, - -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] + command: [postgres, -c, log_statement=all, -c, logging_collector=true, -c, log_file_mode=0644, -c, log_directory=/var/log/postgresql, -c, log_filename=postgresql.log] healthcheck: test: [CMD-SHELL, pg_isready -U postgres] interval: 5s diff --git a/postgres/README.md b/postgres/README.md index 60fba231014b..14c88f15da08 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,45 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/17/bookworm/Dockerfile) +- [`18beta1`, `18beta1-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/bookworm/Dockerfile) -- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/17/bullseye/Dockerfile) +- [`18beta1-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/bullseye/Dockerfile) -- [`17.5-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/17/alpine3.22/Dockerfile) +- [`18beta1-alpine3.22`, `18beta1-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/alpine3.22/Dockerfile) -- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/17/alpine3.21/Dockerfile) +- [`18beta1-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/alpine3.21/Dockerfile) -- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bookworm/Dockerfile) +- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bookworm/Dockerfile) -- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/16/bullseye/Dockerfile) +- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bullseye/Dockerfile) -- [`16.9-alpine3.22`, `16-alpine3.22`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/16/alpine3.22/Dockerfile) +- [`17.5-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.22/Dockerfile) -- [`16.9-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/16/alpine3.21/Dockerfile) +- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.21/Dockerfile) -- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bookworm/Dockerfile) +- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bookworm/Dockerfile) -- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/15/bullseye/Dockerfile) +- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bullseye/Dockerfile) -- [`15.13-alpine3.22`, `15-alpine3.22`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/15/alpine3.22/Dockerfile) +- [`16.9-alpine3.22`, `16-alpine3.22`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.22/Dockerfile) -- [`15.13-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/15/alpine3.21/Dockerfile) +- [`16.9-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.21/Dockerfile) -- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bookworm/Dockerfile) +- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bookworm/Dockerfile) -- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/14/bullseye/Dockerfile) +- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bullseye/Dockerfile) -- [`14.18-alpine3.22`, `14-alpine3.22`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/14/alpine3.22/Dockerfile) +- [`15.13-alpine3.22`, `15-alpine3.22`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.22/Dockerfile) -- [`14.18-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/14/alpine3.21/Dockerfile) +- [`15.13-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.21/Dockerfile) -- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bookworm/Dockerfile) +- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bookworm/Dockerfile) -- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/d9c4773ca5dc96692188c458f281d217d78b14d9/13/bullseye/Dockerfile) +- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bullseye/Dockerfile) -- [`13.21-alpine3.22`, `13-alpine3.22`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/13/alpine3.22/Dockerfile) +- [`14.18-alpine3.22`, `14-alpine3.22`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.22/Dockerfile) -- [`13.21-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/172d9e7dbcff681ed65899f9bb01ba8bcc5fc063/13/alpine3.21/Dockerfile) +- [`14.18-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.21/Dockerfile) + +- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bookworm/Dockerfile) + +- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bullseye/Dockerfile) + +- [`13.21-alpine3.22`, `13-alpine3.22`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/alpine3.22/Dockerfile) + +- [`13.21-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/alpine3.21/Dockerfile) # Quick reference (cont.) From 17559cb013efcbba82eb0e1b0528cfa078d5d98d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Jun 2025 12:10:04 -0700 Subject: [PATCH 2252/2686] Run update.sh --- archlinux/README.md | 6 +++--- clearlinux/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 0ce3fa664fa7..7acfd0fec458 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.base) +- [`latest`, `base`, `base-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.base) -- [`base-devel`, `base-devel-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250601.0.358000`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/de7defab6a4087b48add0be9c82b5bb3548d3706/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0bd47aabffae..0c9ec01f8d2f 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/26562d8268c7e77024c64721a4950cc20af04b5e/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2654783fe5c1032d4c2d9a26971b22cc58f0940b/Dockerfile) # Quick reference (cont.) From af8cc4a457aa4bc410926dd6152b6b1e66f950d4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Jun 2025 15:10:53 -0700 Subject: [PATCH 2253/2686] Run update.sh --- fedora/README.md | 6 +-- golang/README.md | 12 +++--- neo4j/README.md | 8 ++-- openjdk/README.md | 76 +++++++++++++++++++++++++--------- postgres/README.md | 6 ++- rocket.chat/README.md | 12 +++--- ros/README.md | 94 +++++-------------------------------------- tomcat/README.md | 16 ++++---- znc/README.md | 4 +- 9 files changed, 100 insertions(+), 134 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 5f645fa966fe..546f5874e43c 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/f52fdfbecea2b7787548d7bdc28d264ed03c000d/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/959b041ac4407fa6feb34c556d3a6426a2726512/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c774b2277863035ea29f1224fc9b8e52935dc8a7/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d949b63f5dc03364ae535d527acee81256f5c955/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7201349072eb32839418bdb10e846c3a91ff9270/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/afbdf314028efe6610a49e7629d520e85b3daa22/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 392bfc0a0bd9..7bdc45701d8c 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250530-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bookworm/Dockerfile) +- [`tip-20250607-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bookworm/Dockerfile) -- [`tip-20250530-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bullseye/Dockerfile) +- [`tip-20250607-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bullseye/Dockerfile) -- [`tip-20250530-alpine3.22`, `tip-alpine3.22`, `tip-20250530-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/alpine3.22/Dockerfile) +- [`tip-20250607-alpine3.22`, `tip-alpine3.22`, `tip-20250607-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/alpine3.22/Dockerfile) -- [`tip-20250530-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/alpine3.21/Dockerfile) +- [`tip-20250607-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250530`, `tip`: +- `tip-20250607`, `tip`: - - [`tip-20250530-bookworm`](https://github.com/docker-library/golang/blob/e04c21cc73c95ec8140c127bc110a0c139807cc1/tip/bookworm/Dockerfile) + - [`tip-20250607-bookworm`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 6790f40926cd..24e7e35df6b7 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.05.0-enterprise-ubi9`, `2025.05-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/ubi9/enterprise/Dockerfile) -- [`5.26.7-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.7-community`, `5.26-community`, `5-community`, `5.26.7-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.7`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/bullseye/community/Dockerfile) +- [`5.26.8-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.8-community`, `5.26-community`, `5-community`, `5.26.8-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.8`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/community/Dockerfile) -- [`5.26.7-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.7-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/bullseye/enterprise/Dockerfile) +- [`5.26.8-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.8-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/enterprise/Dockerfile) -- [`5.26.7-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.7-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/ubi9/community/Dockerfile) +- [`5.26.8-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.8-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/ubi9/community/Dockerfile) -- [`5.26.7-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/f2ea9c4a3a1afcaf2d5ea9654fe55ff52fc1e86f/5.26.7/ubi9/enterprise/Dockerfile) +- [`5.26.8-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/ubi9/enterprise/Dockerfile) - [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 32f58e33bccb..3a95b056d774 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`25-ea-25-jdk-oraclelinux9`, `25-ea-25-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-25-jdk-oracle`, `25-ea-25-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux9/Dockerfile) +- [`26-ea-1-jdk-oraclelinux9`, `26-ea-1-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-1-jdk-oracle`, `26-ea-1-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux9/Dockerfile) -- [`25-ea-25-jdk-oraclelinux8`, `25-ea-25-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux8/Dockerfile) +- [`26-ea-1-jdk-oraclelinux8`, `26-ea-1-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux8/Dockerfile) -- [`25-ea-25-jdk-bookworm`, `25-ea-25-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/bookworm/Dockerfile) +- [`26-ea-1-jdk-bookworm`, `26-ea-1-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/bookworm/Dockerfile) -- [`25-ea-25-jdk-slim-bookworm`, `25-ea-25-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-25-jdk-slim`, `25-ea-25-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/slim-bookworm/Dockerfile) +- [`26-ea-1-jdk-slim-bookworm`, `26-ea-1-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-1-jdk-slim`, `26-ea-1-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/slim-bookworm/Dockerfile) -- [`25-ea-25-jdk-bullseye`, `25-ea-25-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/bullseye/Dockerfile) +- [`26-ea-1-jdk-bullseye`, `26-ea-1-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/bullseye/Dockerfile) -- [`25-ea-25-jdk-slim-bullseye`, `25-ea-25-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/slim-bullseye/Dockerfile) +- [`26-ea-1-jdk-slim-bullseye`, `26-ea-1-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/slim-bullseye/Dockerfile) -- [`25-ea-25-jdk-windowsservercore-ltsc2025`, `25-ea-25-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-1-jdk-windowsservercore-ltsc2025`, `26-ea-1-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-25-jdk-windowsservercore-ltsc2022`, `25-ea-25-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-1-jdk-windowsservercore-ltsc2022`, `26-ea-1-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-25-jdk-nanoserver-ltsc2025`, `25-ea-25-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-1-jdk-nanoserver-ltsc2025`, `26-ea-1-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-25-jdk-nanoserver-ltsc2022`, `25-ea-25-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-1-jdk-nanoserver-ltsc2022`, `26-ea-1-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + +- [`25-ea-26-jdk-oraclelinux9`, `25-ea-26-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-26-jdk-oracle`, `25-ea-26-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux9/Dockerfile) + +- [`25-ea-26-jdk-oraclelinux8`, `25-ea-26-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux8/Dockerfile) + +- [`25-ea-26-jdk-bookworm`, `25-ea-26-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/bookworm/Dockerfile) + +- [`25-ea-26-jdk-slim-bookworm`, `25-ea-26-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-26-jdk-slim`, `25-ea-26-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/slim-bookworm/Dockerfile) + +- [`25-ea-26-jdk-bullseye`, `25-ea-26-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/bullseye/Dockerfile) + +- [`25-ea-26-jdk-slim-bullseye`, `25-ea-26-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/slim-bullseye/Dockerfile) + +- [`25-ea-26-jdk-windowsservercore-ltsc2025`, `25-ea-26-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`25-ea-26-jdk-windowsservercore-ltsc2022`, `25-ea-26-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`25-ea-26-jdk-nanoserver-ltsc2025`, `25-ea-26-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + +- [`25-ea-26-jdk-nanoserver-ltsc2022`, `25-ea-26-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `25-ea-25-jdk`, `25-ea-25`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `26-ea-1-jdk`, `26-ea-1`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: + + - [`26-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-1-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + +- `26-ea-1-jdk-windowsservercore`, `26-ea-1-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: + + - [`26-ea-1-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + +- `26-ea-1-jdk-nanoserver`, `26-ea-1-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: + + - [`26-ea-1-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-1-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + +- `25-ea-26-jdk`, `25-ea-26`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-25-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-26-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-25-jdk-windowsservercore`, `25-ea-25-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-26-jdk-windowsservercore`, `25-ea-26-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-25-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-25-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-26-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-25-jdk-nanoserver`, `25-ea-25-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-26-jdk-nanoserver`, `25-ea-26-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-25-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-25-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d0ae6880b77a288d80bacd8ed1136504cf6a441d/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-26-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-26-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index 14c88f15da08..13d839722433 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -217,7 +217,11 @@ See the PostgreSQL documentation on [`pg_hba.conf`](https://www.postgresql.org/d ### `PGDATA` -> **Important Note:** Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. +> **Important Change:** [the `PGDATA` environment variable of the image was changed to be version specific in PostgreSQL 18 and above](https://github.com/docker-library/postgres/pull/1259). For 18 it is `/var/lib/postgresql/18/docker`. Later versions will replace `18` with their respective major version (e.g., `/var/lib/postgresql/19/docker` for PostgreSQL `19.x`). The defined `VOLUME` was changed in 18 and above to `/var/lib/postgresql`. Mounts and volumes should be targeted at the updated location. This will allow users upgrading between PostgreSQL major releases to use the faster `--link` when running `pg_upgrade` and mounting `/var/lib/postgresql`. + +Users who wish to opt-in to this change on older releases can do so by setting `PGDATA` explicitly (`--env PGDATA=/var/lib/postgresql/17/docker --volume some-postgres:/var/lib/postgresql`). To migrate pre-existing data, adjust the volume's folder structure appropriately first (moving all database files into a `PG_MAJOR/docker` subdirectory). + +> **Important Note:** (for PostgreSQL 17 and below) Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 448dbd101479..ceaa6d644020 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -26,17 +26,17 @@ WARNING: - [`7.7.0`, `7.7`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3130b58c0def2f3b03ce78af368ef8506e250b92/7.7/Dockerfile) -- [`7.6.2`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/3130b58c0def2f3b03ce78af368ef8506e250b92/7.6/Dockerfile) +- [`7.6.3`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.6/Dockerfile) -- [`7.5.1`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.5/Dockerfile) +- [`7.5.2`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.5/Dockerfile) -- [`7.4.2`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.4/Dockerfile) +- [`7.4.3`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.4/Dockerfile) -- [`7.3.4`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/0c1b4f5e1eaf9ee047b5dc8e331e96cfb04655ca/7.3/Dockerfile) +- [`7.3.5`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.3/Dockerfile) -- [`7.2.5`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.2/Dockerfile) +- [`7.2.6`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.2/Dockerfile) -- [`7.1.5`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/128a267feefa95572213f84274b34db155a87d9b/7.1/Dockerfile) +- [`7.1.6`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.1/Dockerfile) # Quick reference (cont.) diff --git a/ros/README.md b/ros/README.md index e035040ce453..9218b515b21a 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,106 +24,32 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/indigo/ubuntu/trusty/ros-core/Dockerfile) +- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/noetic/ubuntu/focal/ros-core/Dockerfile) -- [`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/ros-base/Dockerfile) +- [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) -- [`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/robot/Dockerfile) +- [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) -- [`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/20061b005b245d1b7e23626afd0ea2c39de9db49/ros/indigo/ubuntu/trusty/perception/Dockerfile) +- [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) -- [`jade-ros-core`, `jade-ros-core-trusty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/jade/ubuntu/trusty/ros-core/Dockerfile) - -- [`jade-ros-base`, `jade-ros-base-trusty`, `jade`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/ros-base/Dockerfile) - -- [`jade-robot`, `jade-robot-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/robot/Dockerfile) - -- [`jade-perception`, `jade-perception-trusty`](https://github.com/osrf/docker_images/blob/dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822/ros/jade/ubuntu/trusty/perception/Dockerfile) - -- [`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile) - -- [`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile) - -- [`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/robot/Dockerfile) - -- [`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/kinetic/ubuntu/xenial/perception/Dockerfile) - -- [`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/xenial/ros-core/Dockerfile) - -- [`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/ros-base/Dockerfile) - -- [`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/robot/Dockerfile) - -- [`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/d81c0004d43383a6cd0f7b5a9b3020300f3cb1ca/ros/lunar/ubuntu/xenial/perception/Dockerfile) - -- [`lunar-ros-core-zesty`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/lunar/ubuntu/zesty/ros-core/Dockerfile) - -- [`lunar-ros-base-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/ros-base/Dockerfile) - -- [`lunar-robot-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/robot/Dockerfile) - -- [`lunar-perception-zesty`](https://github.com/osrf/docker_images/blob/4cfa1c7fd7e4f6ec638d1615f12133edbc100731/ros/lunar/ubuntu/zesty/perception/Dockerfile) - -- [`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/melodic/ubuntu/bionic/ros-core/Dockerfile) - -- [`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/ros-base/Dockerfile) - -- [`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/robot/Dockerfile) - -- [`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/melodic/ubuntu/bionic/perception/Dockerfile) - -- [`noetic-ros-core-buster`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/noetic/debian/buster/ros-core/Dockerfile) - -- [`noetic-ros-base-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/ros-base/Dockerfile) - -- [`noetic-robot-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/robot/Dockerfile) - -- [`noetic-perception-buster`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/debian/buster/perception/Dockerfile) - -- [`ardent-ros-core`, `ardent-ros-core-xenial`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/ardent/ubuntu/xenial/ros-core/Dockerfile) - -- [`ardent-ros-base`, `ardent-ros-base-xenial`, `ardent`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/ardent/ubuntu/xenial/ros-base/Dockerfile) - -- [`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile) - -- [`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile) - -- [`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/51ba1c72c513b62e8825c3df015ca4d926ac688c/ros/crystal/ubuntu/bionic/ros-core/Dockerfile) - -- [`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/9619e8b2fedc763707c07bd5568f2401bfc5b117/ros/crystal/ubuntu/bionic/ros-base/Dockerfile) - -- [`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/dashing/ubuntu/bionic/ros-core/Dockerfile) - -- [`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/dashing/ubuntu/bionic/ros-base/Dockerfile) - -- [`dashing-ros1-bridge`, `dashing-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/87074e54828d12dacf84f15273e95e03eeb17d24/ros/dashing/ubuntu/bionic/ros1-bridge/Dockerfile) - -- [`eloquent-ros-core`, `eloquent-ros-core-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros-core/Dockerfile) - -- [`eloquent-ros-base`, `eloquent-ros-base-bionic`, `eloquent`](https://github.com/osrf/docker_images/blob/b3e79c3aef3687b56b3c1052ae38aa7010234834/ros/eloquent/ubuntu/bionic/ros-base/Dockerfile) - -- [`eloquent-ros1-bridge`, `eloquent-ros1-bridge-bionic`](https://github.com/osrf/docker_images/blob/3b5cbe2c25b25fa2b5acc9770f5f0b71143f864d/ros/eloquent/ubuntu/bionic/ros1-bridge/Dockerfile) - -- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/foxy/ubuntu/focal/ros-core/Dockerfile) +- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/foxy/ubuntu/focal/ros-core/Dockerfile) - [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) -- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/9ab23751d41735b448da8cfa1580958279ae5101/ros/galactic/ubuntu/focal/ros-core/Dockerfile) +- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/40cfb45357e267ea9aeb714e9b556ae77c859e76/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) + +- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/galactic/ubuntu/focal/ros-core/Dockerfile) - [`galactic-ros-base`, `galactic-ros-base-focal`, `galactic`](https://github.com/osrf/docker_images/blob/6511d8fc0754616550b7f5ea31a40084c2462938/ros/galactic/ubuntu/focal/ros-base/Dockerfile) +- [`galactic-ros1-bridge`, `galactic-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/40cfb45357e267ea9aeb714e9b556ae77c859e76/ros/galactic/ubuntu/focal/ros1-bridge/Dockerfile) + - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) - [`humble-perception`, `humble-perception-jammy`](https://github.com/osrf/docker_images/blob/20d40c96b426b8956dec203e236abff2ec29b188/ros/humble/ubuntu/jammy/perception/Dockerfile) -- [`iron-ros-core`, `iron-ros-core-jammy`](https://github.com/osrf/docker_images/blob/2ad854492209b8dbab303578a5baedab4d5ab41d/ros/iron/ubuntu/jammy/ros-core/Dockerfile) - -- [`iron-ros-base`, `iron-ros-base-jammy`, `iron`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/ros-base/Dockerfile) - -- [`iron-perception`, `iron-perception-jammy`](https://github.com/osrf/docker_images/blob/bca53bf4c09d771be3ff735da4157203b53ebc2b/ros/iron/ubuntu/jammy/perception/Dockerfile) - - [`jazzy-ros-core`, `jazzy-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/jazzy/ubuntu/noble/ros-core/Dockerfile) - [`jazzy-ros-base`, `jazzy-ros-base-noble`, `jazzy`, `latest`](https://github.com/osrf/docker_images/blob/0038f1c3a11aa0fc573d698b39ab5c204aad5a40/ros/jazzy/ubuntu/noble/ros-base/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 4866f97470cc..27d52cac998b 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.7-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.7-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.7-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.7`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.8-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.8-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.8-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.8`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.7-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.7-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.7-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.8-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.8-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.8-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.7-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.8-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.7-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.8-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.7-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.7-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.7-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.8-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.8-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.8-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.7-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.7-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.7-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.8-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.8-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.8-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.7-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.8-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.7-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/7bfd2b8f99a60b08403a61b8a9c82cf54d92575a/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.8-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.41-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.41-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.41-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.41`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk21/temurin-noble/Dockerfile) diff --git a/znc/README.md b/znc/README.md index 2a8b5d3721d3..5e442850f49b 100644 --- a/znc/README.md +++ b/znc/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.9.1`, `1.9`, `latest`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/full/Dockerfile) +- [`1.10.0`, `1.10`, `latest`](https://github.com/znc/znc-docker/blob/83082df630a0da0ef2d3724aa0299fba193ac096/full/Dockerfile) -- [`1.9.1-slim`, `1.9-slim`, `slim`](https://github.com/znc/znc-docker/blob/14890ffcd1006eefbe0e2aeb9ea389b49eb995ce/slim/Dockerfile) +- [`1.10.0-slim`, `1.10-slim`, `slim`](https://github.com/znc/znc-docker/blob/83082df630a0da0ef2d3724aa0299fba193ac096/slim/Dockerfile) # Quick reference (cont.) From 7a8c4c581c0bb1e79491824741175ed76ad7b4a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Jun 2025 16:10:11 -0700 Subject: [PATCH 2254/2686] Run update.sh --- postgres/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 13d839722433..b32ca558a02c 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18beta1`, `18beta1-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/bookworm/Dockerfile) +- [`18beta1`, `18beta1-bookworm`](https://github.com/docker-library/postgres/blob/46e8474a6e8ac8460416ac62afcbdf59cfeb6366/18/bookworm/Dockerfile) -- [`18beta1-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/bullseye/Dockerfile) +- [`18beta1-bullseye`](https://github.com/docker-library/postgres/blob/46e8474a6e8ac8460416ac62afcbdf59cfeb6366/18/bullseye/Dockerfile) - [`18beta1-alpine3.22`, `18beta1-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/alpine3.22/Dockerfile) From 4d2fb1aabfa84ad68e8edf2cbd3dd506f9600de2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 9 Jun 2025 17:10:00 -0700 Subject: [PATCH 2255/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index b032dceec3c0..92f36a2bb743 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.1-alpine3.21`, `24.1.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.2-alpine3.21`, `24.2.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.1-alpine`, `24.1-alpine3.22`, `24.1.0-alpine`, `24.1.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.2-alpine`, `24.2-alpine3.22`, `24.2.0-alpine`, `24.2.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.1`, `24.1-bookworm`, `24.1.0`, `24.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.2`, `24.2-bookworm`, `24.2.0`, `24.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.1-bookworm-slim`, `24.1-slim`, `24.1.0-bookworm-slim`, `24.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.2-bookworm-slim`, `24.2-slim`, `24.2.0-bookworm-slim`, `24.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.1-bullseye`, `24.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.2-bullseye`, `24.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.1-bullseye-slim`, `24.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/292dea0c0077b0925717d708e641dfef6ad2b373/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.2-bullseye-slim`, `24.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bullseye-slim/Dockerfile) - [`22-alpine3.21`, `22.16-alpine3.21`, `22.16.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) From aff0c79929dc04cbc3beeaaaf0e73cb049d65545 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Jun 2025 10:09:56 -0700 Subject: [PATCH 2256/2686] Run update.sh --- ros/README.md | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/ros/README.md b/ros/README.md index 9218b515b21a..92d832c07541 100644 --- a/ros/README.md +++ b/ros/README.md @@ -24,26 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`noetic-ros-core`, `noetic-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/noetic/ubuntu/focal/ros-core/Dockerfile) - -- [`noetic-ros-base`, `noetic-ros-base-focal`, `noetic`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/ros-base/Dockerfile) - -- [`noetic-robot`, `noetic-robot-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/robot/Dockerfile) - -- [`noetic-perception`, `noetic-perception-focal`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/noetic/ubuntu/focal/perception/Dockerfile) - -- [`foxy-ros-core`, `foxy-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/foxy/ubuntu/focal/ros-core/Dockerfile) - -- [`foxy-ros-base`, `foxy-ros-base-focal`, `foxy`](https://github.com/osrf/docker_images/blob/df19ab7d5993d3b78a908362cdcd1479a8e78b35/ros/foxy/ubuntu/focal/ros-base/Dockerfile) - -- [`foxy-ros1-bridge`, `foxy-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/40cfb45357e267ea9aeb714e9b556ae77c859e76/ros/foxy/ubuntu/focal/ros1-bridge/Dockerfile) - -- [`galactic-ros-core`, `galactic-ros-core-focal`](https://github.com/osrf/docker_images/blob/f1d91dccd2aa75a52d7beffd93196455043e695c/ros/galactic/ubuntu/focal/ros-core/Dockerfile) - -- [`galactic-ros-base`, `galactic-ros-base-focal`, `galactic`](https://github.com/osrf/docker_images/blob/6511d8fc0754616550b7f5ea31a40084c2462938/ros/galactic/ubuntu/focal/ros-base/Dockerfile) - -- [`galactic-ros1-bridge`, `galactic-ros1-bridge-focal`](https://github.com/osrf/docker_images/blob/40cfb45357e267ea9aeb714e9b556ae77c859e76/ros/galactic/ubuntu/focal/ros1-bridge/Dockerfile) - - [`humble-ros-core`, `humble-ros-core-jammy`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/humble/ubuntu/jammy/ros-core/Dockerfile) - [`humble-ros-base`, `humble-ros-base-jammy`, `humble`](https://github.com/osrf/docker_images/blob/20e3ba685bb353a3c00be9ba01c1b7a6823c9472/ros/humble/ubuntu/jammy/ros-base/Dockerfile) @@ -74,7 +54,7 @@ WARNING: [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ros/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ros/) + [`amd64`](https://hub.docker.com/r/amd64/ros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ros/) - **Published image artifact details**: [repo-info repo's `repos/ros/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ros) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ros)) From 1de60b78164559617e0c5ca934bbbb4faa347585 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Jun 2025 11:09:50 -0700 Subject: [PATCH 2257/2686] Run update.sh --- bash/README.md | 2 +- convertigo/README.md | 2 +- ibm-semeru-runtimes/README.md | 88 +---------------------------------- ros/README.md | 6 +-- tomcat/README.md | 64 ++++++++++++------------- 5 files changed, 39 insertions(+), 123 deletions(-) diff --git a/bash/README.md b/bash/README.md index cdc245f9ffab..c46d8359abbc 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250530`, `devel`, `devel-20250530-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/75f0b3a327b75aab36bb72839fe586cdee72c983/devel/Dockerfile) +- [`devel-20250606`, `devel`, `devel-20250606-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/371e4d318df6760a50b7b6bac701b2bae586a2f0/devel/Dockerfile) - [`5.3-rc2`, `5.3-rc`, `rc`, `5.3-rc2-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/b8c645d094186ccdca78c724ed020a27588b253b/5.3-rc/Dockerfile) diff --git a/convertigo/README.md b/convertigo/README.md index 2d8c146ece16..d4997579dd87 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.6`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/6e628ac765adb0968a764fc2593886ef8732808e/docker/default/Dockerfile) +- [`8.3.7`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/3445d12dfad08b98ad476a57ce7d3c4047652832/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 37d42b8c9531..ad73541fe54c 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -24,91 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -(See ["What's the difference between 'Shared' and 'Simple' tags?" in the FAQ](https://github.com/docker-library/faq#whats-the-difference-between-shared-and-simple-tags).) - -## Simple Tags - -- [`open-8u452-b09-jdk-focal`, `open-8-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-8u452-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-8u452-b09-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-8u452-b09-jre-focal`, `open-8-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-8u452-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-8u452-b09-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jdk-focal`, `open-11-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jre-focal`, `open-11-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-11.0.27_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jdk-focal`, `open-17-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jre-focal`, `open-17-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-17.0.15_6-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jdk-focal`, `open-21-jdk-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jre-focal`, `open-21-jre-focal`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/focal/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-21.0.7_6-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - -## Shared Tags - -- `open-8u452-b09-jdk`, `open-8-jdk`: - - - [`open-8u452-b09-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-8u452-b09-jre`, `open-8-jre`: - - - [`open-8u452-b09-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-11.0.27_6-jdk`, `open-11-jdk`: - - - [`open-11.0.27_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-11.0.27_6-jre`, `open-11-jre`: - - - [`open-11.0.27_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-17.0.15_6-jdk`, `open-17-jdk`: - - - [`open-17.0.15_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-17.0.15_6-jre`, `open-17-jre`: - - - [`open-17.0.15_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-21.0.7_6-jdk`, `open-21-jdk`: - - - [`open-21.0.7_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-21.0.7_6-jre`, `open-21-jre`: - - - [`open-21.0.7_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/a1003659cad2232a0bb4e0ed49ae1c428e4d8b63/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +**No supported tags** # Quick reference (cont.) @@ -116,7 +32,7 @@ WARNING: [GitHub](https://github.com/ibmruntimes/Semeru-Runtimes/issues); The [IBM Semeru Runtimes support](https://ibm.com/semeru-runtimes) page has more information on quality, roadmap and other details for IBM Semeru Runtime Open Edition builds; - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ibm-semeru-runtimes/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ibm-semeru-runtimes/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ibm-semeru-runtimes/), [`s390x`](https://hub.docker.com/r/s390x/ibm-semeru-runtimes/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/ibm-semeru-runtimes/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ibm-semeru-runtimes) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ibm-semeru-runtimes)) diff --git a/ros/README.md b/ros/README.md index 92d832c07541..27707510f35a 100644 --- a/ros/README.md +++ b/ros/README.md @@ -42,11 +42,11 @@ WARNING: - [`kilted-perception`, `kilted-perception-noble`](https://github.com/osrf/docker_images/blob/b835a530495c0b411a0d15db858710a2748ee0a0/ros/kilted/ubuntu/noble/perception/Dockerfile) -- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/eb5634cf92ba079897e44fb7541d3b78aa6cf717/ros/rolling/ubuntu/noble/ros-core/Dockerfile) +- [`rolling-ros-core`, `rolling-ros-core-noble`](https://github.com/osrf/docker_images/blob/8cf2903c0f8813aacd3042c71d4d2d56d5068ad5/ros/rolling/ubuntu/noble/ros-core/Dockerfile) -- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/ros-base/Dockerfile) +- [`rolling-ros-base`, `rolling-ros-base-noble`, `rolling`](https://github.com/osrf/docker_images/blob/8cf2903c0f8813aacd3042c71d4d2d56d5068ad5/ros/rolling/ubuntu/noble/ros-base/Dockerfile) -- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/2e9b4e3c02bff2c70271e6f0fd15d4132e8cbcbb/ros/rolling/ubuntu/noble/perception/Dockerfile) +- [`rolling-perception`, `rolling-perception-noble`](https://github.com/osrf/docker_images/blob/8cf2903c0f8813aacd3042c71d4d2d56d5068ad5/ros/rolling/ubuntu/noble/perception/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 27d52cac998b..8e0fc1bd976a 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,69 +40,69 @@ WARNING: - [`11.0.8-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.41-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.41-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.41-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.41`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.42-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.42-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.42-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.42`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.41-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.41-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.41-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.42-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.42-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.42-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.41-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.42-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.41-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.42-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.41-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.41-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.41-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.42-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.42-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.42-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.41-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.41-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.41-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.42-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.42-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.42-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.41-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.42-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.41-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.42-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.41-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.41-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.41-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.42-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.42-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.42-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.41-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.41-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.41-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.42-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.42-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.42-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.41-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.42-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.41-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/af53019e096060a258b68bd4e35ea4472ab1c1b2/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.42-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.105-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.105-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.105-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.105`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.106-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.106-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.106-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.106`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.105-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.105-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.105-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.106-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.106-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.106-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.105-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.106-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.105-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.106-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.105-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.105-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.106-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.106-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.105-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.105-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.105-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.106-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.106-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.106-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.105-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.105-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.105-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.106-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.106-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.106-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.105-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.106-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.105-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.106-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.105-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.105-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.106-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.106-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.105-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.105-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.105-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.106-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.106-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.106-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.105-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.105-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.105-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.106-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.106-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.106-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.105-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.106-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.105-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.106-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.105-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.105-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.106-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.106-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.105-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.105-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.105-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.106-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.106-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.106-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.105-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.105-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.105-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.106-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.106-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.106-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.105-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.106-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.105-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.106-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.105-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.105-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/74e7656bc7005c06281ade7ccd1b67dbe05a5802/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.106-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.106-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 3a927a49d4b113300e0de9ecea774b5e44d9ac06 Mon Sep 17 00:00:00 2001 From: "Chris \"Not So\" Short" Date: Tue, 10 Jun 2025 16:46:36 -0400 Subject: [PATCH 2258/2686] Rocky Linux: Adding note on where to find the latest versions (#2584) * Rocky Linux: Adding note on where to find the latest versions while we refactor around oci-import Signed-off-by: Chris "Not So" Short * Fix: Add newline at the end of file to resolve linting error Signed-off-by: Chris "Not So" Short * Update rockylinux/deprecated.md Co-authored-by: Tianon Gravi --------- Signed-off-by: Chris "Not So" Short Co-authored-by: Tianon Gravi --- rockylinux/deprecated.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 rockylinux/deprecated.md diff --git a/rockylinux/deprecated.md b/rockylinux/deprecated.md new file mode 100644 index 000000000000..87abc0481f1b --- /dev/null +++ b/rockylinux/deprecated.md @@ -0,0 +1,3 @@ +# IMPORTANT NOTE + +The Docker team curates the Official Images program, and there are currently some technical constraints preventing Rocky Linux from publishing updates here. For the most up-to-date container images, please refer to the [Rocky Linux Docker Hub repository](https://hub.docker.com/r/rockylinux/rockylinux) for now. From 6f7c94ac58e9ff3c7cefa4f92ae17ef97b528d01 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Jun 2025 14:09:58 -0700 Subject: [PATCH 2259/2686] Run update.sh --- jruby/README.md | 64 ++++++++++++++++++++++---------------------- rockylinux/README.md | 4 +++ 2 files changed, 36 insertions(+), 32 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index e3c6b51243ef..8823918177c9 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.12`, `9.4-jre`, `9.4-jre8`, `9.4.12-jre`, `9.4.12-jre8`, `9.4.12.1`, `9.4.12.1-jre`, `9.4.12.1-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.12-jdk`, `9.4.12-jdk8`, `9.4.12.1-jdk`, `9.4.12.1-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.12-jre11`, `9.4.12.1-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.12-jdk11`, `9.4.12.1-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.12-jdk17`, `9.4.12.1-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.12-jre17`, `9.4.12.1-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.12-jdk21`, `9.4.12.1-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.12-jre21`, `9.4.12.1-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre21/Dockerfile) -- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jre21/Dockerfile) +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jre21/Dockerfile) -- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jdk21/Dockerfile) +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jdk21/Dockerfile) -- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jre24/Dockerfile) +- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jre24/Dockerfile) -- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/10.0-dev/jdk24/Dockerfile) +- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jdk24/Dockerfile) -- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre8/Dockerfile) +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre8/Dockerfile) -- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk8/Dockerfile) +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk8/Dockerfile) -- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre11/Dockerfile) +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre11/Dockerfile) -- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk11/Dockerfile) +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk11/Dockerfile) -- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk17/Dockerfile) +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk17/Dockerfile) -- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre17/Dockerfile) +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre17/Dockerfile) -- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jdk21/Dockerfile) +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk21/Dockerfile) -- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/5112552613c233f36b798ba480cbddd86bae614d/9.4-dev/jre21/Dockerfile) +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre21/Dockerfile) # Quick reference (cont.) diff --git a/rockylinux/README.md b/rockylinux/README.md index 2355343b90de..710780881650 100644 --- a/rockylinux/README.md +++ b/rockylinux/README.md @@ -14,6 +14,10 @@ WARNING: --> +# IMPORTANT NOTE + +The Docker team curates the Official Images program, and there are currently some technical constraints preventing Rocky Linux from publishing updates here. For the most up-to-date container images, please refer to the [Rocky Linux Docker Hub repository](https://hub.docker.com/r/rockylinux/rockylinux) for now. + # Quick reference - **Maintained by**: From 1d24f0b52a0bc5eb15d1be43fdf8ff58150379aa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Jun 2025 16:09:52 -0700 Subject: [PATCH 2260/2686] Run update.sh --- debian/README.md | 48 +++++++++++++++++++++++------------------------ mariadb/README.md | 16 ++++++---------- 2 files changed, 30 insertions(+), 34 deletions(-) diff --git a/debian/README.md b/debian/README.md index 117e9dc47d12..b2235ccb39f6 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250520`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250610`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250520-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250610-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250520`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250610`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250520-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250610-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/experimental/Dockerfile) +- [`experimental`, `experimental-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/rc-buggy/Dockerfile) -- [`sid`, `sid-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/sid/oci/index.json) +- [`sid`, `sid-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/sid/oci/index.json) -- [`sid-slim`, `sid-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/sid/slim/oci/index.json) -- [`stable`, `stable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/oci/index.json) +- [`stable`, `stable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/slim/oci/index.json) -- [`testing`, `testing-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/oci/index.json) +- [`testing`, `testing-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/oci/index.json) +- [`trixie`, `trixie-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250520`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/unstable/oci/index.json) +- [`unstable`, `unstable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250520-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/9497182fdda2971b71e105e1c5e45c216ed0b974/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index 5a0edd50c99e..bbf0d0dd97c3 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,17 +26,17 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`11.8.1-ubi9-rc`, `11.8-ubi9-rc`, `11.8.1-ubi-rc`, `11.8-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/2d5103917774c4c53ec6bf3c6fdfc7b210e85690/11.8-ubi/Dockerfile) +- [`12.0.1-ubi9-rc`, `12.0-ubi9-rc`, `12.0.1-ubi-rc`, `12.0-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/e9903b927ef46dc55fc6900ab015e4314349699a/12.0-ubi/Dockerfile) -- [`11.8.1-noble-rc`, `11.8-noble-rc`, `11.8.1-rc`, `11.8-rc`](https://github.com/MariaDB/mariadb-docker/blob/2d5103917774c4c53ec6bf3c6fdfc7b210e85690/11.8/Dockerfile) +- [`12.0.1-noble-rc`, `12.0-noble-rc`, `12.0.1-rc`, `12.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/e9903b927ef46dc55fc6900ab015e4314349699a/12.0/Dockerfile) -- [`11.7.2-ubi9`, `11.7-ubi9`, `11-ubi9`, `11.7.2-ubi`, `11.7-ubi`, `11-ubi`](https://github.com/MariaDB/mariadb-docker/blob/853447019725b35685d5ec3c007096a266399bea/11.7-ubi/Dockerfile) +- [`11.8.2-ubi9`, `11.8-ubi9`, `11-ubi9`, `lts-ubi9`, `11.8.2-ubi`, `11.8-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/4c5048803b4785a1ef057c2d4c48b126a08348c6/11.8-ubi/Dockerfile) -- [`11.7.2-noble`, `11.7-noble`, `11-noble`, `noble`, `11.7.2`, `11.7`, `11`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/853447019725b35685d5ec3c007096a266399bea/11.7/Dockerfile) +- [`11.8.2-noble`, `11.8-noble`, `11-noble`, `noble`, `lts-noble`, `11.8.2`, `11.8`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/4c5048803b4785a1ef057c2d4c48b126a08348c6/11.8/Dockerfile) -- [`11.4.7-ubi9`, `11.4-ubi9`, `lts-ubi9`, `11.4.7-ubi`, `11.4-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4-ubi/Dockerfile) +- [`11.4.7-ubi9`, `11.4-ubi9`, `11.4.7-ubi`, `11.4-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4-ubi/Dockerfile) -- [`11.4.7-noble`, `11.4-noble`, `lts-noble`, `11.4.7`, `11.4`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4/Dockerfile) +- [`11.4.7-noble`, `11.4-noble`, `11.4.7`, `11.4`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4/Dockerfile) - [`10.11.13-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.13-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/10.11-ubi/Dockerfile) @@ -46,10 +46,6 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] - [`10.6.22-jammy`, `10.6-jammy`](https://github.com/MariaDB/mariadb-docker/blob/9bc98d6905a26282e6209da20970d9d4b055a384/10.6-jammy/Dockerfile) -- [`10.6.22-focal`, `10.6-focal`, `10.6.22`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.6/Dockerfile) - -- [`10.5.29-focal`, `10.5-focal`, `10.5.29`, `10.5`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.5/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 7668b0ed89b77bce47a41eac82e375fa0da13759 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 10 Jun 2025 17:10:33 -0700 Subject: [PATCH 2261/2686] Run update.sh --- ghost/README.md | 4 ++-- php/README.md | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 0566c1b98c6f..e6d52ee1b3f5 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.121.0`, `5.121`, `5`, `latest`](https://github.com/docker-library/ghost/blob/0c9978cf2491877e60e250866c2575e694bdde04/5/debian/Dockerfile) +- [`5.123.0`, `5.123`, `5`, `latest`](https://github.com/docker-library/ghost/blob/79a4aefbcef7297936c2a3a51f6c6607eed1b1a5/5/debian/Dockerfile) -- [`5.121.0-alpine`, `5.121-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/84b2e6edbf30790d7b99d06580ac48f71d1bf47d/5/alpine/Dockerfile) +- [`5.123.0-alpine`, `5.123-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/79a4aefbcef7297936c2a3a51f6c6607eed1b1a5/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index f23e72eb9dc7..22fb47ae0e95 100644 --- a/php/README.md +++ b/php/README.md @@ -40,17 +40,17 @@ WARNING: - [`8.4.8-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/zts/Dockerfile) -- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/cli/Dockerfile) +- [`8.4.8-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.8-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/zts/Dockerfile) +- [`8.4.8-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.8-cli-alpine3.20`, `8.4-cli-alpine3.20`, `8-cli-alpine3.20`, `cli-alpine3.20`, `8.4.8-alpine3.20`, `8.4-alpine3.20`, `8-alpine3.20`, `alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/cli/Dockerfile) +- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.20`, `8.4-fpm-alpine3.20`, `8-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.20`, `8.4-zts-alpine3.20`, `8-zts-alpine3.20`, `zts-alpine3.20`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.20/zts/Dockerfile) +- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/zts/Dockerfile) - [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/cli/Dockerfile) @@ -68,17 +68,17 @@ WARNING: - [`8.3.22-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/zts/Dockerfile) -- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/cli/Dockerfile) +- [`8.3.22-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.22-alpine3.22`, `8.3-alpine3.22`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.3/alpine3.22/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.3/alpine3.22/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/zts/Dockerfile) +- [`8.3.22-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.3/alpine3.22/zts/Dockerfile) -- [`8.3.22-cli-alpine3.20`, `8.3-cli-alpine3.20`, `8.3.22-alpine3.20`, `8.3-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/cli/Dockerfile) +- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.20`, `8.3-fpm-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.20`, `8.3-zts-alpine3.20`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.20/zts/Dockerfile) +- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/zts/Dockerfile) - [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) @@ -96,17 +96,17 @@ WARNING: - [`8.2.28-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/zts/Dockerfile) -- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/cli/Dockerfile) +- [`8.2.28-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.28-alpine3.22`, `8.2-alpine3.22`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.2/alpine3.22/cli/Dockerfile) -- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.2/alpine3.22/fpm/Dockerfile) -- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/zts/Dockerfile) +- [`8.2.28-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.2/alpine3.22/zts/Dockerfile) -- [`8.2.28-cli-alpine3.20`, `8.2-cli-alpine3.20`, `8.2.28-alpine3.20`, `8.2-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/cli/Dockerfile) +- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/cli/Dockerfile) -- [`8.2.28-fpm-alpine3.20`, `8.2-fpm-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/fpm/Dockerfile) -- [`8.2.28-zts-alpine3.20`, `8.2-zts-alpine3.20`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.20/zts/Dockerfile) +- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/zts/Dockerfile) - [`8.1.32-cli-bookworm`, `8.1-cli-bookworm`, `8.1.32-bookworm`, `8.1-bookworm`, `8.1.32-cli`, `8.1-cli`, `8.1.32`, `8.1`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/cli/Dockerfile) @@ -124,17 +124,17 @@ WARNING: - [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/zts/Dockerfile) -- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) +- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) +- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.1/alpine3.22/zts/Dockerfile) -- [`8.1.32-cli-alpine3.20`, `8.1-cli-alpine3.20`, `8.1.32-alpine3.20`, `8.1-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/cli/Dockerfile) +- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.20`, `8.1-fpm-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.20`, `8.1-zts-alpine3.20`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.20/zts/Dockerfile) +- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) # Quick reference (cont.) From 4e7d9e85a0f162627825a2b2e9aeb4537d2db308 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Jun 2025 10:10:03 -0700 Subject: [PATCH 2262/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 284d14350bd4..73a45d3a0e19 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/c39258e425d98b54e525e5f9ddbbcecd838a3d3e/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7-slim-fips/Dockerfile) # Quick reference (cont.) From f5c64618a6e9acfe0906a9170c6487be9a300f89 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Jun 2025 11:10:17 -0700 Subject: [PATCH 2263/2686] Run update.sh --- almalinux/README.md | 16 ++++++++-------- haproxy/README.md | 8 ++++---- hitch/README.md | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index d69e01b3f8bc..e3bd9178a6fe 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250520`](https://github.com/AlmaLinux/container-images/blob/86aa3a7482e6edd9c1e9c38065257b8c155d4507/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250611`](https://github.com/AlmaLinux/container-images/blob/6135d73e0784e8ca6ca279d509e095e0daf5b6a9/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250520`](https://github.com/AlmaLinux/container-images/blob/86aa3a7482e6edd9c1e9c38065257b8c155d4507/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/6135d73e0784e8ca6ca279d509e095e0daf5b6a9/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250527`](https://github.com/AlmaLinux/container-images/blob/1864a779d7e0eb6345de3ff5fc464314224e19fe/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250611`](https://github.com/AlmaLinux/container-images/blob/053340d6a579e7c6242951931f3a1b18717887ef/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250527`](https://github.com/AlmaLinux/container-images/blob/1864a779d7e0eb6345de3ff5fc464314224e19fe/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/053340d6a579e7c6242951931f3a1b18717887ef/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250611`](https://github.com/AlmaLinux/container-images/blob/5e437611704aff1c6eb7c81a2b097fae4f0bcaae/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250519`](https://github.com/AlmaLinux/container-images/blob/3fd0bc18338628bbf09343ab9a1b44169e032bfb/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/5e437611704aff1c6eb7c81a2b097fae4f0bcaae/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250527`](https://github.com/AlmaLinux/container-images/blob/d8e55638e1ddeabf27e53b135b7a90ea96c07076/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250611`](https://github.com/AlmaLinux/container-images/blob/39a9e4c8fa6266f1d58af9ba922e635694eeb380/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250527`](https://github.com/AlmaLinux/container-images/blob/d8e55638e1ddeabf27e53b135b7a90ea96c07076/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/39a9e4c8fa6266f1d58af9ba922e635694eeb380/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index f59852e1aaf7..c790b7124de1 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev0`, `3.3-dev`, `3.3-dev0-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.3/Dockerfile) +- [`3.3-dev1`, `3.3-dev`, `3.3-dev1-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/44e407b80e8a05deb563724d1118d9efebf79e06/3.3/Dockerfile) -- [`3.3-dev0-alpine`, `3.3-dev-alpine`, `3.3-dev0-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.3/alpine/Dockerfile) +- [`3.3-dev1-alpine`, `3.3-dev-alpine`, `3.3-dev1-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/44e407b80e8a05deb563724d1118d9efebf79e06/3.3/alpine/Dockerfile) -- [`3.2.0`, `3.2`, `latest`, `lts`, `3.2.0-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/3.2/Dockerfile) +- [`3.2.1`, `3.2`, `latest`, `lts`, `3.2.1-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/e57bdf9982a76d5391e3f40eec41ae0c6c477ae0/3.2/Dockerfile) -- [`3.2.0-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.0-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/3.2/alpine/Dockerfile) +- [`3.2.1-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.1-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e57bdf9982a76d5391e3f40eec41ae0c6c477ae0/3.2/alpine/Dockerfile) - [`3.1.8`, `3.1`, `3.1.8-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/Dockerfile) diff --git a/hitch/README.md b/hitch/README.md index 3ff58d6e537b..d8972613e2c5 100644 --- a/hitch/README.md +++ b/hitch/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1`, `1.8`, `1.8.0`, `1.8.0-1`, `latest`](https://github.com/varnish/docker-hitch/blob/3fe55c4296018b04c7e1d2efdfcadce9c4017e0a/Dockerfile) +- [`1`, `1.8`, `1.8.0`, `1.8.0-1`, `latest`](https://github.com/varnish/docker-hitch/blob/fa19f55cf3b713e5f6787315c889a3885ab270bf/Dockerfile) # Quick reference (cont.) @@ -32,7 +32,7 @@ WARNING: [https://github.com/varnish/docker-hitch/issues](https://github.com/varnish/docker-hitch/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/hitch/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hitch/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hitch/), [`i386`](https://hub.docker.com/r/i386/hitch/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hitch/), [`s390x`](https://hub.docker.com/r/s390x/hitch/) + [`amd64`](https://hub.docker.com/r/amd64/hitch/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hitch/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hitch/), [`i386`](https://hub.docker.com/r/i386/hitch/) - **Published image artifact details**: [repo-info repo's `repos/hitch/` directory](https://github.com/docker-library/repo-info/blob/master/repos/hitch) ([history](https://github.com/docker-library/repo-info/commits/master/repos/hitch)) From 01e8d147e7958f51adf274990c135e5604b20eaa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 11 Jun 2025 18:09:56 -0700 Subject: [PATCH 2264/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 73a45d3a0e19..94ffb80592bc 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1c53c87556765c7231665e194ac18efd33497869/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7-slim-fips/Dockerfile) # Quick reference (cont.) From c6b7873a9f845a9cfeac52030d170ce14d5c89ba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Jun 2025 11:10:04 -0700 Subject: [PATCH 2265/2686] Run update.sh --- lightstreamer/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lightstreamer/README.md b/lightstreamer/README.md index 4bb0b04b8e33..230d401442fa 100644 --- a/lightstreamer/README.md +++ b/lightstreamer/README.md @@ -46,13 +46,13 @@ WARNING: - [`7.3.3-jdk17-temurin`, `7.3-jdk17-temurin`, `7.3.3-jdk17`, `7.3-jdk17`, `7.3.3`, `7.3`](https://github.com/Lightstreamer/Docker/blob/b6c4a87af3e78b53887f311bdf2404f4f9956796/7.3/jdk17/Dockerfile) -- [`7.4.6-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.6-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk8/Dockerfile) +- [`7.4.7-jdk8-temurin`, `7.4-jdk8-temurin`, `7-jdk8-temurin`, `7.4.7-jdk8`, `7.4-jdk8`, `7-jdk8`](https://github.com/Lightstreamer/Docker/blob/abea70d53fb366cb5d5402493c37ca4f0b2ab0c1/7.4/jdk8/Dockerfile) -- [`7.4.6-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.6-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk11/Dockerfile) +- [`7.4.7-jdk11-temurin`, `7.4-jdk11-temurin`, `7-jdk11-temurin`, `7.4.7-jdk11`, `7.4-jdk11`, `7-jdk11`](https://github.com/Lightstreamer/Docker/blob/abea70d53fb366cb5d5402493c37ca4f0b2ab0c1/7.4/jdk11/Dockerfile) -- [`7.4.6-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.6-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk17/Dockerfile) +- [`7.4.7-jdk17-temurin`, `7.4-jdk17-temurin`, `7-jdk17-temurin`, `7.4.7-jdk17`, `7.4-jdk17`, `7-jdk17`](https://github.com/Lightstreamer/Docker/blob/abea70d53fb366cb5d5402493c37ca4f0b2ab0c1/7.4/jdk17/Dockerfile) -- [`7.4.6-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.6-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.6`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/f46cf1edebc1d6c755d5181cd46b5f73bb6fc97d/7.4/jdk21/Dockerfile) +- [`7.4.7-jdk21-temurin`, `7.4-jdk21-temurin`, `7-jdk21-temurin`, `7.4.7-jdk21`, `7.4-jdk21`, `7-jdk21`, `7.4.7`, `7.4`, `7`, `latest`](https://github.com/Lightstreamer/Docker/blob/abea70d53fb366cb5d5402493c37ca4f0b2ab0c1/7.4/jdk21/Dockerfile) # Quick reference (cont.) From 9f6e625bf48b41dc7b10712418ced63998f110f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Jun 2025 14:10:04 -0700 Subject: [PATCH 2266/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 94ffb80592bc..40f02a431059 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/02ca74605019488bc95c56333529b01009fd1e6c/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7-slim-fips/Dockerfile) # Quick reference (cont.) From ac6ad68fa865cde8de07b0cbfc764133c4a581b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 12 Jun 2025 16:10:37 -0700 Subject: [PATCH 2267/2686] Run update.sh --- couchbase/README.md | 32 ++++++++++++++++---------------- docker/README.md | 10 +++++----- golang/README.md | 23 +++++++++++++++++++++++ python/README.md | 30 +++++++++++++++--------------- 4 files changed, 59 insertions(+), 36 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index ac631654c174..7511e0a5e12c 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -32,37 +32,37 @@ WARNING: - [`7.6.3`, `enterprise-7.6.3`](https://github.com/couchbase/docker/blob/553d1baa4aa90fe506e1d7bcdf4daec387a110fe/enterprise/couchbase-server/7.6.3/Dockerfile) -- [`7.6.2`, `enterprise-7.6.2`](https://github.com/couchbase/docker/blob/ba43d566538a8e0b6315569b94f0a7cf835c222b/enterprise/couchbase-server/7.6.2/Dockerfile) +- [`7.6.2`, `enterprise-7.6.2`](https://github.com/couchbase/docker/blob/ce13f602d2c95f76835c67a8855d5e73480973a6/enterprise/couchbase-server/7.6.2/Dockerfile) -- [`community`, `community-7.6.2`](https://github.com/couchbase/docker/blob/34bb6684dc575f4e0b8b0f16127f5d4188015d8d/community/couchbase-server/7.6.2/Dockerfile) +- [`community`, `community-7.6.2`](https://github.com/couchbase/docker/blob/3f81af158b7f307e42f8c42ceaf7657b2690bfca/community/couchbase-server/7.6.2/Dockerfile) -- [`7.6.1`, `enterprise-7.6.1`](https://github.com/couchbase/docker/blob/5268f3a009878a85c70b1461ef32cf8ce21debec/enterprise/couchbase-server/7.6.1/Dockerfile) +- [`7.6.1`, `enterprise-7.6.1`](https://github.com/couchbase/docker/blob/966143f937bfe6979b7c09b86684004fdd21e5b8/enterprise/couchbase-server/7.6.1/Dockerfile) -- [`community-7.6.1`](https://github.com/couchbase/docker/blob/6eb060cef1909e850b0ad4a930cd577a89a6d269/community/couchbase-server/7.6.1/Dockerfile) +- [`community-7.6.1`](https://github.com/couchbase/docker/blob/a18464c9b23efba391317fd21f898bf64dff6ec1/community/couchbase-server/7.6.1/Dockerfile) -- [`7.6.0`, `enterprise-7.6.0`](https://github.com/couchbase/docker/blob/203e62f36ce055be75955e073d0000249bf2c040/enterprise/couchbase-server/7.6.0/Dockerfile) +- [`7.6.0`, `enterprise-7.6.0`](https://github.com/couchbase/docker/blob/9bdcf41deedd86da4c71347ffeea350a9895d816/enterprise/couchbase-server/7.6.0/Dockerfile) -- [`community-7.6.0`](https://github.com/couchbase/docker/blob/7148bc241bcdcf8961c34f8adf76ebfb2860ed83/community/couchbase-server/7.6.0/Dockerfile) +- [`community-7.6.0`](https://github.com/couchbase/docker/blob/6d669d0e34e6990b43c1b91ea74720235c96c4ac/community/couchbase-server/7.6.0/Dockerfile) -- [`7.2.7`, `enterprise-7.2.7`](https://github.com/couchbase/docker/blob/ae9a971db27050a4da598137fce7bd3d63396c24/enterprise/couchbase-server/7.2.7/Dockerfile) +- [`7.2.7`, `enterprise-7.2.7`](https://github.com/couchbase/docker/blob/23887cae4fd6ce054f383d524a7975d2e3a6b72e/enterprise/couchbase-server/7.2.7/Dockerfile) -- [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/857d7bcc814e241fd36aa4dc326dcab37e1d1e73/enterprise/couchbase-server/7.2.6/Dockerfile) +- [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/181af64dcbedc1abf6e0916d9f5373cf1c18cb6e/enterprise/couchbase-server/7.2.6/Dockerfile) -- [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/58e0549b1e021259a1ce9bb70d70aac4cc5e71da/enterprise/couchbase-server/7.2.5/Dockerfile) +- [`7.2.5`, `enterprise-7.2.5`](https://github.com/couchbase/docker/blob/94d97d9eea3d4057846be28f319940927d5166cb/enterprise/couchbase-server/7.2.5/Dockerfile) -- [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/24bae6aab6520dc97c362b56150db9658d041873/enterprise/couchbase-server/7.2.4/Dockerfile) +- [`7.2.4`, `enterprise-7.2.4`](https://github.com/couchbase/docker/blob/15c1c3c0b4717a8b23ef7962f3fde28fe68e4311/enterprise/couchbase-server/7.2.4/Dockerfile) -- [`community-7.2.4`](https://github.com/couchbase/docker/blob/9fc1cf481a8fe8e78d7539cee3a25cdbaa7b5e1e/community/couchbase-server/7.2.4/Dockerfile) +- [`community-7.2.4`](https://github.com/couchbase/docker/blob/7c8453ef8584ff18f7b6c052828758693af4f72c/community/couchbase-server/7.2.4/Dockerfile) -- [`7.2.3`, `enterprise-7.2.3`](https://github.com/couchbase/docker/blob/3a446520433f63e3d270f01063b14cb6b6ade12a/enterprise/couchbase-server/7.2.3/Dockerfile) +- [`7.2.3`, `enterprise-7.2.3`](https://github.com/couchbase/docker/blob/b54049418018144369816d18c63d9bf76e34bc9f/enterprise/couchbase-server/7.2.3/Dockerfile) -- [`7.2.2`, `enterprise-7.2.2`](https://github.com/couchbase/docker/blob/00de0b8de802ff6909be789b1f86a65d934a38f8/enterprise/couchbase-server/7.2.2/Dockerfile) +- [`7.2.2`, `enterprise-7.2.2`](https://github.com/couchbase/docker/blob/3515fb617a469a5f46d492cf6910dddff8efb825/enterprise/couchbase-server/7.2.2/Dockerfile) -- [`community-7.2.2`](https://github.com/couchbase/docker/blob/855d163127ee5e4bc6854714ecd6911f70f27906/community/couchbase-server/7.2.2/Dockerfile) +- [`community-7.2.2`](https://github.com/couchbase/docker/blob/c7a25ac7f38a81a465aa97f1a1d753a6c579954f/community/couchbase-server/7.2.2/Dockerfile) -- [`7.2.0`, `enterprise-7.2.0`](https://github.com/couchbase/docker/blob/1985fb8f6774c71cb0f00e37a62c0741fad59ece/enterprise/couchbase-server/7.2.0/Dockerfile) +- [`7.2.0`, `enterprise-7.2.0`](https://github.com/couchbase/docker/blob/4e769975179dc4e5bf4138349818bc8a0e191c9f/enterprise/couchbase-server/7.2.0/Dockerfile) -- [`community-7.2.0`](https://github.com/couchbase/docker/blob/2bd177d6887d051b6981c8c2591af6eed3ae9505/community/couchbase-server/7.2.0/Dockerfile) +- [`community-7.2.0`](https://github.com/couchbase/docker/blob/71596d088ce2bc0218418187ac40ffccb08dbc36/community/couchbase-server/7.2.0/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 21279b6492f7..7bd5fbbf0513 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/cli/Dockerfile) - [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5705e867cc73585b7e81cfd8acb2992ff4565868/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 7bdc45701d8c..301723037e86 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,6 +28,18 @@ WARNING: ## Simple Tags +- [`1.25rc1-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bookworm/Dockerfile) + +- [`1.25rc1-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bullseye/Dockerfile) + +- [`1.25rc1-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc1-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/alpine3.22/Dockerfile) + +- [`1.25rc1-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/alpine3.21/Dockerfile) + +- [`1.25rc1-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`1.25rc1-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.4-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) - [`1.24.4-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bullseye/Dockerfile) @@ -70,6 +82,17 @@ WARNING: ## Shared Tags +- `1.25rc1`, `1.25-rc`: + + - [`1.25rc1-bookworm`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bookworm/Dockerfile) + - [`1.25rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `1.25rc1-windowsservercore`, `1.25-rc-windowsservercore`: + + - [`1.25rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `1.24.4`, `1.24`, `1`, `latest`: - [`1.24.4-bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) diff --git a/python/README.md b/python/README.md index 008b941018d2..f270c2087954 100644 --- a/python/README.md +++ b/python/README.md @@ -44,21 +44,21 @@ WARNING: - [`3.14.0b2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.4-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bookworm/Dockerfile) +- [`3.13.5-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) -- [`3.13.4-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.4-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/slim-bookworm/Dockerfile) +- [`3.13.5-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.5-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/slim-bookworm/Dockerfile) -- [`3.13.4-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bullseye/Dockerfile) +- [`3.13.5-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bullseye/Dockerfile) -- [`3.13.4-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/slim-bullseye/Dockerfile) +- [`3.13.5-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/slim-bullseye/Dockerfile) -- [`3.13.4-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.4-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/alpine3.22/Dockerfile) +- [`3.13.5-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.5-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/alpine3.22/Dockerfile) -- [`3.13.4-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/alpine3.21/Dockerfile) +- [`3.13.5-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/alpine3.21/Dockerfile) -- [`3.13.4-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.5-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.4-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.5-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) @@ -121,16 +121,16 @@ WARNING: - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.4`, `3.13`, `3`, `latest`: +- `3.13.5`, `3.13`, `3`, `latest`: - - [`3.13.4-bookworm`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/bookworm/Dockerfile) - - [`3.13.4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.5-bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) + - [`3.13.5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.4-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.5-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/c9ebb15ad11c123eec102b7efa0007afe63be7cf/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - `3.12.11`, `3.12`: From 8a1ea586ebb031d0df997265ccec079103f100d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Jun 2025 10:11:18 -0700 Subject: [PATCH 2268/2686] Run update.sh --- amazonlinux/README.md | 4 +-- nextcloud/README.md | 14 +++++----- perl/README.md | 64 +++++++++++++++++++++---------------------- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 08ce27740cb8..1789092dde3b 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250512.0`](https://github.com/amazonlinux/container-images/blob/dacb9d52e9344a2977503cb4ecfc0879b69de878/Dockerfile) +- [`2023`, `latest`, `2023.7.20250609.0`](https://github.com/amazonlinux/container-images/blob/4d953066c54d4022977eb64aa0b6bcd82e350f2f/Dockerfile) -- [`2`, `2.0.20250512.0`](https://github.com/amazonlinux/container-images/blob/943ba6f33d9edd4b4dce773a0501b914af2d39f8/Dockerfile) +- [`2`, `2.0.20250610.0`](https://github.com/amazonlinux/container-images/blob/890e843557c587dec993e9be443d9220e663580b/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index d82f15907e6e..71206d8939d5 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -32,19 +32,19 @@ WARNING: - [`29.0.16-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm/Dockerfile) -- [`29.0.16-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm-alpine/Dockerfile) +- [`29.0.16-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/29/fpm-alpine/Dockerfile) -- [`30.0.11-apache`, `30.0-apache`, `30-apache`, `30.0.11`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/apache/Dockerfile) +- [`30.0.12-apache`, `30.0-apache`, `30-apache`, `30.0.12`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/30/apache/Dockerfile) -- [`30.0.11-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/fpm/Dockerfile) +- [`30.0.12-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/30/fpm/Dockerfile) -- [`30.0.11-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/30/fpm-alpine/Dockerfile) +- [`30.0.12-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/30/fpm-alpine/Dockerfile) -- [`31.0.5-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.5`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/apache/Dockerfile) +- [`31.0.6-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.6`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/31/apache/Dockerfile) -- [`31.0.5-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/fpm/Dockerfile) +- [`31.0.6-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/31/fpm/Dockerfile) -- [`31.0.5-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/02fc45a96e52b11b07e37a7f3c44ce599d0f0915/31/fpm-alpine/Dockerfile) +- [`31.0.6-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/31/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index fcae59a04f96..b407d357aceb 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main-bookworm/Dockerfile) +- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main-bookworm/Dockerfile) -- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main-bullseye/Dockerfile) +- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main-bullseye/Dockerfile) -- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim-bookworm/Dockerfile) +- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim-bookworm/Dockerfile) -- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim-bullseye/Dockerfile) +- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim-bullseye/Dockerfile) -- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main,threaded-bookworm/Dockerfile) +- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main,threaded-bookworm/Dockerfile) -- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-main,threaded-bullseye/Dockerfile) +- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main,threaded-bullseye/Dockerfile) -- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim,threaded-bookworm/Dockerfile) +- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim,threaded-bookworm/Dockerfile) -- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.040.002-slim,threaded-bullseye/Dockerfile) +- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim,threaded-bullseye/Dockerfile) -- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main-bookworm/Dockerfile) +- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main-bookworm/Dockerfile) -- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main-bullseye/Dockerfile) +- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main-bullseye/Dockerfile) -- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim-bookworm/Dockerfile) +- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim-bookworm/Dockerfile) -- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim-bullseye/Dockerfile) +- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim-bullseye/Dockerfile) -- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main,threaded-bookworm/Dockerfile) +- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main,threaded-bookworm/Dockerfile) -- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-main,threaded-bullseye/Dockerfile) +- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main,threaded-bullseye/Dockerfile) -- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim,threaded-bookworm/Dockerfile) +- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim,threaded-bookworm/Dockerfile) -- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.038.004-slim,threaded-bullseye/Dockerfile) +- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main-bookworm/Dockerfile) +- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main-bullseye/Dockerfile) +- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim-bookworm/Dockerfile) +- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim-bullseye/Dockerfile) +- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.12`, `5.41`, `devel`, `5.41.12-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main-bookworm/Dockerfile) +- [`5.41.13`, `5.41`, `devel`, `5.41.13-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main-bookworm/Dockerfile) -- [`5.41.12-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main-bullseye/Dockerfile) +- [`5.41.13-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main-bullseye/Dockerfile) -- [`5.41.12-slim`, `5.41-slim`, `devel-slim`, `5.41.12-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim-bookworm/Dockerfile) +- [`5.41.13-slim`, `5.41-slim`, `devel-slim`, `5.41.13-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim-bookworm/Dockerfile) -- [`5.41.12-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim-bullseye/Dockerfile) +- [`5.41.13-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim-bullseye/Dockerfile) -- [`5.41.12-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.12-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main,threaded-bookworm/Dockerfile) +- [`5.41.13-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.13-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main,threaded-bookworm/Dockerfile) -- [`5.41.12-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-main,threaded-bullseye/Dockerfile) +- [`5.41.13-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main,threaded-bullseye/Dockerfile) -- [`5.41.12-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.12-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim,threaded-bookworm/Dockerfile) +- [`5.41.13-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.13-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim,threaded-bookworm/Dockerfile) -- [`5.41.12-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/08148bb42b17f1c418f8f16bd5f20c894538cf64/5.041.012-slim,threaded-bullseye/Dockerfile) +- [`5.41.13-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) From 7bae61df8f72c72edc150ab075325614d90c8029 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Jun 2025 11:09:51 -0700 Subject: [PATCH 2269/2686] Run update.sh --- r-base/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-base/README.md b/r-base/README.md index 819c38b5d957..f6a6947c1247 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.5.0`, `latest`](https://github.com/rocker-org/rocker/blob/995a8e88700f11166ab858fed1356948b9834545/r-base/4.5.0/Dockerfile) +- [`4.5.1`, `latest`](https://github.com/rocker-org/rocker/blob/6971f6286e907991a3b78e9d261ede20f9c31f49/r-base/4.5.1/Dockerfile) # Quick reference (cont.) From e9dc67b1307b7f1aadbeaf718d25e2acd9a14709 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 13 Jun 2025 12:09:58 -0700 Subject: [PATCH 2270/2686] Run update.sh --- ghost/README.md | 4 ++-- php/README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index e6d52ee1b3f5..9c15fd27dfe9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.123.0`, `5.123`, `5`, `latest`](https://github.com/docker-library/ghost/blob/79a4aefbcef7297936c2a3a51f6c6607eed1b1a5/5/debian/Dockerfile) +- [`5.125.1`, `5.125`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f192ab96781889a1452aca93916e67850c1294f2/5/debian/Dockerfile) -- [`5.123.0-alpine`, `5.123-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/79a4aefbcef7297936c2a3a51f6c6607eed1b1a5/5/alpine/Dockerfile) +- [`5.125.1-alpine`, `5.125-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f192ab96781889a1452aca93916e67850c1294f2/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 22fb47ae0e95..da02754229ed 100644 --- a/php/README.md +++ b/php/README.md @@ -124,17 +124,17 @@ WARNING: - [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/zts/Dockerfile) -- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/cli/Dockerfile) +- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.1/alpine3.22/zts/Dockerfile) +- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.1/alpine3.22/zts/Dockerfile) -- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) +- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) +- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) # Quick reference (cont.) From 1106ece7c53de7c9043a4d1f607b58d0c9156ca6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Jun 2025 10:09:59 -0700 Subject: [PATCH 2271/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 7acfd0fec458..c72b8eb0d01f 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.base) +- [`latest`, `base`, `base-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.base) -- [`base-devel`, `base-devel-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250608.0.361578`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/7854bdb0232d4aecf8d361c351c92bfa18bf3add/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.multilib-devel) # Quick reference (cont.) From 60e1393648ed1762c36576fcee292f10d85d0e2f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Jun 2025 11:10:02 -0700 Subject: [PATCH 2272/2686] Run update.sh --- docker/README.md | 15 +++++++++ fedora/README.md | 6 ++-- golang/README.md | 12 +++---- openjdk/README.md | 80 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 12 +++---- storm/README.md | 4 ++- 6 files changed, 73 insertions(+), 56 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7bd5fbbf0513..7fd643494b0a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/cli/Dockerfile) + +- [`28.3.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.1-dind-alpine3.22`, `28.3.0-rc.1`, `28-rc`, `rc`, `28.3.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind/Dockerfile) + +- [`28.3.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind-rootless/Dockerfile) + +- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/cli/Dockerfile) - [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) @@ -40,6 +50,11 @@ WARNING: ## Shared Tags +- `28.3.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2025/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index 546f5874e43c..db64660e2371 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/959b041ac4407fa6feb34c556d3a6426a2726512/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5046bc9c0c11297c8cbaf01ca2e9f44f3e8f328b/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d949b63f5dc03364ae535d527acee81256f5c955/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/6da1eeae1c9c842f1afdf13abfc4eb5c1f330fdc/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/afbdf314028efe6610a49e7629d520e85b3daa22/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/cf223078f50157bbf2b9b4206a3bbdac0a00f552/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 301723037e86..9dd6d95523b2 100644 --- a/golang/README.md +++ b/golang/README.md @@ -72,13 +72,13 @@ WARNING: - [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250607-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bookworm/Dockerfile) +- [`tip-20250613-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bookworm/Dockerfile) -- [`tip-20250607-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bullseye/Dockerfile) +- [`tip-20250613-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bullseye/Dockerfile) -- [`tip-20250607-alpine3.22`, `tip-alpine3.22`, `tip-20250607-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/alpine3.22/Dockerfile) +- [`tip-20250613-alpine3.22`, `tip-alpine3.22`, `tip-20250613-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/alpine3.22/Dockerfile) -- [`tip-20250607-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/alpine3.21/Dockerfile) +- [`tip-20250613-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -125,9 +125,9 @@ WARNING: - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250607`, `tip`: +- `tip-20250613`, `tip`: - - [`tip-20250607-bookworm`](https://github.com/docker-library/golang/blob/213eccdd445be9025f5db79700ed464273b9795b/tip/bookworm/Dockerfile) + - [`tip-20250613-bookworm`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 3a95b056d774..c6105533a3aa 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-1-jdk-oraclelinux9`, `26-ea-1-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-1-jdk-oracle`, `26-ea-1-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-2-jdk-oraclelinux9`, `26-ea-2-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-2-jdk-oracle`, `26-ea-2-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-1-jdk-oraclelinux8`, `26-ea-1-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-2-jdk-oraclelinux8`, `26-ea-2-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-1-jdk-bookworm`, `26-ea-1-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/bookworm/Dockerfile) +- [`26-ea-2-jdk-bookworm`, `26-ea-2-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/bookworm/Dockerfile) -- [`26-ea-1-jdk-slim-bookworm`, `26-ea-1-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-1-jdk-slim`, `26-ea-1-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-2-jdk-slim-bookworm`, `26-ea-2-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-2-jdk-slim`, `26-ea-2-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-1-jdk-bullseye`, `26-ea-1-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/bullseye/Dockerfile) +- [`26-ea-2-jdk-bullseye`, `26-ea-2-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/bullseye/Dockerfile) -- [`26-ea-1-jdk-slim-bullseye`, `26-ea-1-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-2-jdk-slim-bullseye`, `26-ea-2-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-1-jdk-windowsservercore-ltsc2025`, `26-ea-1-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-2-jdk-windowsservercore-ltsc2025`, `26-ea-2-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-1-jdk-windowsservercore-ltsc2022`, `26-ea-1-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-2-jdk-windowsservercore-ltsc2022`, `26-ea-2-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-1-jdk-nanoserver-ltsc2025`, `26-ea-1-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-2-jdk-nanoserver-ltsc2025`, `26-ea-2-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-1-jdk-nanoserver-ltsc2022`, `26-ea-1-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-2-jdk-nanoserver-ltsc2022`, `26-ea-2-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-26-jdk-oraclelinux9`, `25-ea-26-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-26-jdk-oracle`, `25-ea-26-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-27-jdk-oraclelinux9`, `25-ea-27-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-27-jdk-oracle`, `25-ea-27-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-26-jdk-oraclelinux8`, `25-ea-26-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-27-jdk-oraclelinux8`, `25-ea-27-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-26-jdk-bookworm`, `25-ea-26-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/bookworm/Dockerfile) +- [`25-ea-27-jdk-bookworm`, `25-ea-27-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/bookworm/Dockerfile) -- [`25-ea-26-jdk-slim-bookworm`, `25-ea-26-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-26-jdk-slim`, `25-ea-26-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-27-jdk-slim-bookworm`, `25-ea-27-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-27-jdk-slim`, `25-ea-27-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-26-jdk-bullseye`, `25-ea-26-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/bullseye/Dockerfile) +- [`25-ea-27-jdk-bullseye`, `25-ea-27-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/bullseye/Dockerfile) -- [`25-ea-26-jdk-slim-bullseye`, `25-ea-26-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-27-jdk-slim-bullseye`, `25-ea-27-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-26-jdk-windowsservercore-ltsc2025`, `25-ea-26-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-27-jdk-windowsservercore-ltsc2025`, `25-ea-27-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-26-jdk-windowsservercore-ltsc2022`, `25-ea-26-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-27-jdk-windowsservercore-ltsc2022`, `25-ea-27-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-26-jdk-nanoserver-ltsc2025`, `25-ea-26-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-27-jdk-nanoserver-ltsc2025`, `25-ea-27-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-26-jdk-nanoserver-ltsc2022`, `25-ea-26-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-27-jdk-nanoserver-ltsc2022`, `25-ea-27-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-1-jdk`, `26-ea-1`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-2-jdk`, `26-ea-2`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-1-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-1-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-2-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-1-jdk-windowsservercore`, `26-ea-1-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-2-jdk-windowsservercore`, `26-ea-2-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-1-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-1-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-2-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-1-jdk-nanoserver`, `26-ea-1-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-2-jdk-nanoserver`, `26-ea-2-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-1-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-1-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/c5842dae74217d27a5106105e599b1aa9af233d7/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-2-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-2-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-26-jdk`, `25-ea-26`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-27-jdk`, `25-ea-27`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-26-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-26-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-27-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-26-jdk-windowsservercore`, `25-ea-26-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-27-jdk-windowsservercore`, `25-ea-27-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-26-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-26-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-27-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-26-jdk-nanoserver`, `25-ea-26-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-27-jdk-nanoserver`, `25-ea-27-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-26-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-26-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b91d3dc63136681a4de0e8b81e84a5914857a7fe/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-27-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-27-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 7a6cb8f5f5c0..b7fd5cb47f73 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/7065ac8c60d10c1cdaaa98b4d55d6a088485c766/4.1/ubuntu/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/7e462c35dba545cf20d78a0ac3d18ba27c2e847e/4.1/ubuntu/Dockerfile) - [`4.1.1-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7065ac8c60d10c1cdaaa98b4d55d6a088485c766/4.1/alpine/Dockerfile) +- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7e462c35dba545cf20d78a0ac3d18ba27c2e847e/4.1/alpine/Dockerfile) - [`4.1.1-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/101d600e8f6ba9543a7e9dd9e156a2f7972218cf/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/9fe5ffd717216db809fe0207c0b7266d231fa3a0/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/9fe5ffd717216db809fe0207c0b7266d231fa3a0/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/42f61ae85d877c377e97c892d97ed4a65f1c7809/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/63c027c607b260ba94e9ada33e5c51bb4a70f6a3/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/e04938d64c632af0637af2c7ee5261e8da2c442d/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/63c027c607b260ba94e9ada33e5c51bb4a70f6a3/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/storm/README.md b/storm/README.md index b7de10240e39..0a3c21a55263 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.0`, `2.8`, `latest`, `2.8.0-jre17`, `2.8-jre17`](https://github.com/apache/storm-docker/blob/fefacef2f400d8f437675b11e08bc6098a91c188/2.8.0/Dockerfile) +- [`2.8.1-jre17`, `2.8-jre17`, `2.8.1`, `2.8`, `latest`](https://github.com/apache/storm-docker/blob/c81967cfcd43d2535f097f0c68eacdbf4ec778cf/2.8.1/Dockerfile) + +- [`2.8.1-jre21`, `2.8-jre21`](https://github.com/apache/storm-docker/blob/c81967cfcd43d2535f097f0c68eacdbf4ec778cf/2.8.1-jre21/Dockerfile) # Quick reference (cont.) From 146dadd101db13955f65891b4c398fca9be27069 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 16 Jun 2025 15:10:30 -0700 Subject: [PATCH 2273/2686] Run update.sh --- clearlinux/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 0c9ec01f8d2f..44a17960be65 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/2654783fe5c1032d4c2d9a26971b22cc58f0940b/Dockerfile) +- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/03e2dcd390233733b398e72ce2382e54b5ef48a4/Dockerfile) # Quick reference (cont.) From 42fbce4753f25dc64d71fc7cc277ee6681455e0e Mon Sep 17 00:00:00 2001 From: "kevin.hinz" <107544908+kevin-hinz@users.noreply.github.com> Date: Tue, 17 Jun 2025 11:24:02 +0200 Subject: [PATCH 2274/2686] DOC-2073 update URLs to the Sonar docs * DOC-2073 update URLs to the Sonar docs * DOC-2073, update link to Instance administration --- sonarqube/content.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index 3fb402bca65b..6c6f71b05a5d 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -25,15 +25,15 @@ ulimit -u 8192 ## Demo -To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarqube.org/latest/setup/get-started-2-minutes/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. +To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarsource.com/sonarqube-server/latest/try-out-sonarqube/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. ## Installation > **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). -For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. +For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-sonarqube-from-docker/) page. -To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server-as-a-cluster/) page. > The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. @@ -55,7 +55,7 @@ By default, the image will use an embedded H2 database that is not suited for pr > **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably, and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. -Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. +Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. ### Use volumes @@ -69,7 +69,7 @@ We recommend creating volumes for the following directories: ## Upgrading -For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade the Server](https://docs.sonarqube.org/latest/setup/upgrading/) page. +For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade the Server](https://docs.sonarsource.com/sonarqube-server/latest/server-upgrade-and-maintenance/upgrade/upgrade/) page. ## Advanced configuration @@ -99,4 +99,4 @@ docker run --stop-timeout 3600 %%IMAGE%% ## Administration -The administration guide can be found [here](https://redirect.sonarsource.com/doc/administration-guide.html). +Information about administering your instance of SonarQube Server begins [here](https://docs.sonarsource.com/sonarqube-server/latest/instance-administration/overview/). From fed58887a5e4beb8bf61a9792a5f575fc41ebf4b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jun 2025 10:10:08 -0700 Subject: [PATCH 2275/2686] Run update.sh --- erlang/README.md | 18 ++++----- ibm-semeru-runtimes/README.md | 72 ++++++++++++++++++++++++++++++++++- rocket.chat/README.md | 2 +- sonarqube/README.md | 12 +++--- 4 files changed, 86 insertions(+), 18 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 4aa7c15d302f..61f39d365e4e 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.0.0`, `28.0.0`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/Dockerfile) +- [`28.0.1.0`, `28.0.1`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/Dockerfile) -- [`28.0.0.0-slim`, `28.0.0-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/slim/Dockerfile) +- [`28.0.1.0-slim`, `28.0.1-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/slim/Dockerfile) -- [`28.0.0.0-alpine`, `28.0.0-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/45cb51bc860ee36d497cebc379bf31c2e078710d/28/alpine/Dockerfile) +- [`28.0.1.0-alpine`, `28.0.1-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/alpine/Dockerfile) -- [`27.3.4.0`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/Dockerfile) +- [`27.3.4.0`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/Dockerfile) -- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/slim/Dockerfile) +- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/slim/Dockerfile) -- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/7589a63ec3f5365ac936ee61062f7ae24e6d3e46/27/alpine/Dockerfile) +- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/alpine/Dockerfile) -- [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/Dockerfile) +- [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/Dockerfile) -- [`26.2.5.11-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/slim/Dockerfile) +- [`26.2.5.11-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/slim/Dockerfile) -- [`26.2.5.11-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/26/alpine/Dockerfile) +- [`26.2.5.11-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/alpine/Dockerfile) - [`25.3.2.20`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/Dockerfile) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index ad73541fe54c..1f53a99ed2e1 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -24,7 +24,75 @@ WARNING: # Supported tags and respective `Dockerfile` links -**No supported tags** +(See ["What's the difference between 'Shared' and 'Simple' tags?" in the FAQ](https://github.com/docker-library/faq#whats-the-difference-between-shared-and-simple-tags).) + +## Simple Tags + +- [`open-8u452-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-8u452-b09-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-8u452-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-8u452-b09-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-11.0.27_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-11.0.27_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-11.0.27_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-11.0.27_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-17.0.15_6-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-17.0.15_6-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-17.0.15_6-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-17.0.15_6-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-21.0.7_6-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-21.0.7_6-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-21.0.7_6-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-21.0.7_6-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + +## Shared Tags + +- `open-8u452-b09-jdk`, `open-8-jdk`: + + - [`open-8u452-b09-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-8u452-b09-jre`, `open-8-jre`: + + - [`open-8u452-b09-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-11.0.27_6-jdk`, `open-11-jdk`: + + - [`open-11.0.27_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-11.0.27_6-jre`, `open-11-jre`: + + - [`open-11.0.27_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-17.0.15_6-jdk`, `open-17-jdk`: + + - [`open-17.0.15_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-17.0.15_6-jre`, `open-17-jre`: + + - [`open-17.0.15_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-21.0.7_6-jdk`, `open-21-jdk`: + + - [`open-21.0.7_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-21.0.7_6-jre`, `open-21-jre`: + + - [`open-21.0.7_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) @@ -32,7 +100,7 @@ WARNING: [GitHub](https://github.com/ibmruntimes/Semeru-Runtimes/issues); The [IBM Semeru Runtimes support](https://ibm.com/semeru-runtimes) page has more information on quality, roadmap and other details for IBM Semeru Runtime Open Edition builds; - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **No supported architectures** + [`amd64`](https://hub.docker.com/r/amd64/ibm-semeru-runtimes/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ibm-semeru-runtimes/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ibm-semeru-runtimes/), [`s390x`](https://hub.docker.com/r/s390x/ibm-semeru-runtimes/) - **Published image artifact details**: [repo-info repo's `repos/ibm-semeru-runtimes/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ibm-semeru-runtimes) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ibm-semeru-runtimes)) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index ceaa6d644020..811285294d36 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.7.0`, `7.7`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/3130b58c0def2f3b03ce78af368ef8506e250b92/7.7/Dockerfile) +- [`7.7.1`, `7.7`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/f8b830091f7a8eb1576c1db6b73f2e6bc244a34c/7.7/Dockerfile) - [`7.6.3`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.6/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 587996be3f06..503f1552a4e1 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -98,15 +98,15 @@ ulimit -u 8192 ## Demo -To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarqube.org/latest/setup/get-started-2-minutes/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. +To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](https://docs.sonarsource.com/sonarqube-server/latest/try-out-sonarqube/) page. When you are ready to move to a more sustainable setup, take some time to read the **Installation** and **Configuration** sections below. ## Installation > **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). -For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarqube.org/latest/setup/install-server/) page. +For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-sonarqube-from-docker/) page. -To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarqube.org/latest/setup/install-cluster/) page. +To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server-as-a-cluster/) page. > The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. @@ -128,7 +128,7 @@ By default, the image will use an embedded H2 database that is not suited for pr > **Warning:** Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably, and data will be corrupted. There is no safeguard, as described on [SONAR-10362](https://jira.sonarsource.com/browse/SONAR-10362). The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time. -Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. +Set up a database by following the ["Installing the Database"](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-the-database/) section. ### Use volumes @@ -142,7 +142,7 @@ We recommend creating volumes for the following directories: ## Upgrading -For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade the Server](https://docs.sonarqube.org/latest/setup/upgrading/) page. +For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade the Server](https://docs.sonarsource.com/sonarqube-server/latest/server-upgrade-and-maintenance/upgrade/upgrade/) page. ## Advanced configuration @@ -172,7 +172,7 @@ docker run --stop-timeout 3600 sonarqube ## Administration -The administration guide can be found [here](https://redirect.sonarsource.com/doc/administration-guide.html). +Information about administering your instance of SonarQube Server begins [here](https://docs.sonarsource.com/sonarqube-server/latest/instance-administration/overview/). # License From 4e6ce50be75871a8559ffffa6fa62c924e82a6cb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jun 2025 11:10:04 -0700 Subject: [PATCH 2276/2686] Run update.sh --- bash/README.md | 2 +- orientdb/README.md | 4 ++-- xwiki/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bash/README.md b/bash/README.md index c46d8359abbc..de73fe3225ad 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250606`, `devel`, `devel-20250606-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/371e4d318df6760a50b7b6bac701b2bae586a2f0/devel/Dockerfile) +- [`devel-20250616`, `devel`, `devel-20250616-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/80b590f06d5f8da2c8d36549d7b760e7a2c988a7/devel/Dockerfile) - [`5.3-rc2`, `5.3-rc`, `rc`, `5.3-rc2-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/b8c645d094186ccdca78c724ed020a27588b253b/5.3-rc/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index d68d4a3ec19c..28671f946652 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.40`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/ca5536253f21e4c20ad57e3a09ec982990ceadb2/release/3.2.x/3.2.40/Dockerfile) +- [`3.2.41`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/b2238e6ffeb25c54ae1fff87e0864401acaf612f/release/3.2.x/3.2.41/Dockerfile) -- [`3.2.40-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/ca5536253f21e4c20ad57e3a09ec982990ceadb2/release/3.2.x/3.2.40-tp3/Dockerfile) +- [`3.2.41-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/b2238e6ffeb25c54ae1fff87e0864401acaf612f/release/3.2.x/3.2.41-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index a379fff3fc26..2e20f0ac6532 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.4`, `17.4.0`, `17-mysql-tomcat`, `17.4-mysql-tomcat`, `17.4.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/mysql-tomcat/Dockerfile) +- [`17`, `17.4`, `17.4.1`, `17-mysql-tomcat`, `17.4-mysql-tomcat`, `17.4.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.4-postgres-tomcat`, `17.4.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.4-postgres-tomcat`, `17.4.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.4-mariadb-tomcat`, `17.4.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/4b6bc78ad062a9d60192709b9785c3263b8e5dff/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.4-mariadb-tomcat`, `17.4.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.8`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mysql-tomcat/Dockerfile) From a02ad95c83997339dc71fedf849f1735a560f428 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jun 2025 15:10:01 -0700 Subject: [PATCH 2277/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index b6c96801e34c..f5bc8f365db9 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32`, `1.32.3`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.32/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.33/Dockerfile) -- [`1.32-alpine`, `1.32.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.32/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.33/alpine/Dockerfile) -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.33/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.34/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.33/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.34/alpine/Dockerfile) -- [`1.34`, `1.34.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.34/Dockerfile) +- [`1.35`, `1.35.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.35/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0b65fafca00f144c68229b06d52af77b47b97e02/telegraf/1.34/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.35/alpine/Dockerfile) # Quick reference (cont.) From a20ab57c375f984b5c35c2d876a9b41762d3d7c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 17 Jun 2025 16:10:06 -0700 Subject: [PATCH 2278/2686] Run update.sh --- open-liberty/README.md | 54 +++++++++++++++---------------------- photon/README.md | 2 +- websphere-liberty/README.md | 48 +++++++++++++-------------------- 3 files changed, 40 insertions(+), 64 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index 1a6058d643f3..efd5af7fda78 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.5-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk8) - -- [`25.0.0.5-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.5-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/kernel-slim/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.5-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk8) - -- [`25.0.0.5-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.5-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/099ba0885486a8cc480d64cbffdd86e65ef41ad8/releases/25.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index f5846ab57736..e136d5bb01fb 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250427`, `latest`](https://github.com/vmware/photon-docker-image/blob/41a2d9175642cf2da9f33b817c28aa2c01919d70/docker/Dockerfile) +- [`5.0`, `5.0-20250617`, `latest`](https://github.com/vmware/photon-docker-image/blob/d804fe9bb9514bca6a7fa885538e269f2caade73/docker/Dockerfile) - [`4.0`, `4.0-20250518`](https://github.com/vmware/photon-docker-image/blob/0b2ace4fa57bbd1d03b60915156c9d357bcbe698/docker/Dockerfile) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 5498179c0ba4..9a6b99cf5691 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`24.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`24.0.0.12-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`24.0.0.12-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/24.0.0.12/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.5-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.ibmjava8) - -- [`25.0.0.5-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.5-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/kernel/Dockerfile.ubuntu.openjdk17) - -- [`25.0.0.5-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.ibmjava8) - -- [`25.0.0.5-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.openjdk11) - -- [`25.0.0.5-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c8dd82b972ab08fb1b63f65eff1e3681e58c3843/ga/25.0.0.5/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 901bda9eea402789094a1f90dfc3f11eea89500f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 18 Jun 2025 10:10:01 -0700 Subject: [PATCH 2279/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- odoo/README.md | 6 +++--- python/README.md | 30 +++++++++++++++--------------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7fd643494b0a..c2641806ee93 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/cli/Dockerfile) +- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/cli/Dockerfile) - [`28.3.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.1-dind-alpine3.22`, `28.3.0-rc.1`, `28-rc`, `rc`, `28.3.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind/Dockerfile) - [`28.3.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind-rootless/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/cli/Dockerfile) - [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/46b52b3a685ae16281bb08c1df1622f0a5b3ae24/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index f355bc505f80..761858438537 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250606`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/18.0/Dockerfile) +- [`18.0-20250618`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/18.0/Dockerfile) -- [`17.0-20250606`, `17.0`, `17`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/17.0/Dockerfile) +- [`17.0-20250618`, `17.0`, `17`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/17.0/Dockerfile) -- [`16.0-20250606`, `16.0`, `16`](https://github.com/odoo/docker/blob/5baa064da27446d2c9aa4b087cc5ead956bc2a20/16.0/Dockerfile) +- [`16.0-20250618`, `16.0`, `16`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/16.0/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index f270c2087954..56a96952bc18 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0b2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bookworm/Dockerfile) +- [`3.14.0b3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bookworm/Dockerfile) -- [`3.14.0b2-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0b3-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0b2-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bullseye/Dockerfile) +- [`3.14.0b3-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bullseye/Dockerfile) -- [`3.14.0b2-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0b3-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b2-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/7a46d5a133e8954b1291a04b1832dab334b2414c/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0b3-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0b2-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b3-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0b2-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0b3-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0b2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0b3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.5-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) @@ -110,16 +110,16 @@ WARNING: ## Shared Tags -- `3.14.0b2`, `3.14-rc`: +- `3.14.0b3`, `3.14-rc`: - - [`3.14.0b2-bookworm`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/bookworm/Dockerfile) - - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b3-bookworm`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bookworm/Dockerfile) + - [`3.14.0b3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0b2-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0b3-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0b2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/00b6ec85003098bfd36fadf092eb4d14c496b942/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `3.13.5`, `3.13`, `3`, `latest`: From 668d3790d5bf10f0c43d29e251f66866e0183446 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jun 2025 12:10:13 -0700 Subject: [PATCH 2280/2686] Run update.sh --- clickhouse/README.md | 8 +++---- crate/README.md | 2 +- dart/README.md | 4 ++-- docker/README.md | 20 ++++++++-------- ghost/README.md | 4 ++-- krakend/README.md | 2 +- neo4j/README.md | 8 +++---- php/README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++ redis/README.md | 4 ++++ sonarqube/README.md | 26 ++++++++++---------- 10 files changed, 97 insertions(+), 37 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 49a0bbff4b51..8cceffeb25ea 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.5`, `25.5-jammy`, `25.5.1`, `25.5.1-jammy`, `25.5.1.2782`, `25.5.1.2782-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.5.1.2782/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.5`, `25.5-jammy`, `25.5.3`, `25.5.3-jammy`, `25.5.3.75`, `25.5.3.75-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.5.3.75/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.5`, `25.4.5-jammy`, `25.4.5.24`, `25.4.5.24-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.4.5.24/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.7`, `25.4.7-jammy`, `25.4.7.66`, `25.4.7.66-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.4.7.66/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/25.3.3.42/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.3.3.42/Dockerfile.ubuntu) -- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/8ed25b891e8dd5ca35da19f306b6735b75bae82f/server/24.8.14.39/Dockerfile.ubuntu) +- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/24.8.14.39/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index cd2ed421e34b..a784787ceda8 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.7`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/45ab56012a7f2d38b9150238a2e2fe617b1189e3/Dockerfile) +- [`5.10.9`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/28dad94d4aa5bb07184144086fbcb06dd93a7e29/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/dart/README.md b/dart/README.md index a6eb0c1fbda0..0f502e830c78 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.1-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.1`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/61edf8fcb0ca8bc47b084984266e5c43e9d9c845/stable/bookworm/Dockerfile) +- [`3.8.1-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.1`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/f9851523b6353ff4d4f4b0d583213aee8fa2203a/stable/bookworm/Dockerfile) -- [`3.9.0-100.2.beta-sdk`, `beta-sdk`, `3.9.0-100.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/61edf8fcb0ca8bc47b084984266e5c43e9d9c845/beta/bookworm/Dockerfile) +- [`3.9.0-196.1.beta-sdk`, `beta-sdk`, `3.9.0-196.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/f9851523b6353ff4d4f4b0d583213aee8fa2203a/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index c2641806ee93..c898f4c176ba 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/cli/Dockerfile) +- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/cli/Dockerfile) - [`28.3.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.1-dind-alpine3.22`, `28.3.0-rc.1`, `28-rc`, `rc`, `28.3.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind/Dockerfile) - [`28.3.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind-rootless/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/cli/Dockerfile) - [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c90609cf2ae49f9d87aec68d9ce5eb39c0cb868d/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/689bb251b0f0110dd24f306d9eacafd27826a412/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 9c15fd27dfe9..482bc4d3bdd6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.125.1`, `5.125`, `5`, `latest`](https://github.com/docker-library/ghost/blob/f192ab96781889a1452aca93916e67850c1294f2/5/debian/Dockerfile) +- [`5.126.0`, `5.126`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1f30930f32ebab134e804747bb7012f39db1587a/5/debian/Dockerfile) -- [`5.125.1-alpine`, `5.125-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f192ab96781889a1452aca93916e67850c1294f2/5/alpine/Dockerfile) +- [`5.126.0-alpine`, `5.126-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1f30930f32ebab134e804747bb7012f39db1587a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index e12a649943c2..9c9c057633d7 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.10.0`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/e251c6c6db51dcd34e11cc507830cfc200d652c1/2.10.0/Dockerfile) +- [`2.10.1`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/12b7569e8fd292713ce18bcc4eb1e4e033e1f721/2.10.1/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 24e7e35df6b7..d18314b52d44 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.05.0-community-bullseye`, `2025.05-community-bullseye`, `2025-community-bullseye`, `2025.05.0-community`, `2025.05-community`, `2025-community`, `2025.05.0-bullseye`, `2025.05-bullseye`, `2025-bullseye`, `2025.05.0`, `2025.05`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/bullseye/community/Dockerfile) +- [`2025.05.1-community-bullseye`, `2025.05-community-bullseye`, `2025-community-bullseye`, `2025.05.1-community`, `2025.05-community`, `2025-community`, `2025.05.1-bullseye`, `2025.05-bullseye`, `2025-bullseye`, `2025.05.1`, `2025.05`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/bullseye/community/Dockerfile) -- [`2025.05.0-enterprise-bullseye`, `2025.05-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.05.0-enterprise`, `2025.05-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/bullseye/enterprise/Dockerfile) +- [`2025.05.1-enterprise-bullseye`, `2025.05-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.05.1-enterprise`, `2025.05-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/bullseye/enterprise/Dockerfile) -- [`2025.05.0-community-ubi9`, `2025.05-community-ubi9`, `2025-community-ubi9`, `2025.05.0-ubi9`, `2025.05-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/ubi9/community/Dockerfile) +- [`2025.05.1-community-ubi9`, `2025.05-community-ubi9`, `2025-community-ubi9`, `2025.05.1-ubi9`, `2025.05-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/ubi9/community/Dockerfile) -- [`2025.05.0-enterprise-ubi9`, `2025.05-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/e9e870d30bcb8e30daca71ca31d809dd018645ea/2025.05.0/ubi9/enterprise/Dockerfile) +- [`2025.05.1-enterprise-ubi9`, `2025.05-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/ubi9/enterprise/Dockerfile) - [`5.26.8-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.8-community`, `5.26-community`, `5-community`, `5.26.8-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.8`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/community/Dockerfile) diff --git a/php/README.md b/php/README.md index da02754229ed..15dc4e144d52 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4.9RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.9RC1-bookworm`, `8.4-rc-bookworm`, `8.4.9RC1-cli`, `8.4-rc-cli`, `8.4.9RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.9RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.9RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.9RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.9RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.9RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.9RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.9RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.9RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.9RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.9RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.9RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.9RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.9RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.9RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.9RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.9RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.9RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.9RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.9RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.9RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.9RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.9RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.9RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/zts/Dockerfile) + - [`8.4.8-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.8-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.8-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.8`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/cli/Dockerfile) - [`8.4.8-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.8-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/apache/Dockerfile) @@ -52,6 +80,34 @@ WARNING: - [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.23RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.23RC1-bookworm`, `8.3-rc-bookworm`, `8.3.23RC1-cli`, `8.3-rc-cli`, `8.3.23RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.23RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.23RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.23RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.23RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.23RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.23RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.23RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.23RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.23RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.23RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.23RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.23RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.23RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.23RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.23RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.23RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.23RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.23RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.23RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.23RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.23RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.23RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.23RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/cli/Dockerfile) - [`8.3.22-apache-bookworm`, `8.3-apache-bookworm`, `8.3.22-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/apache/Dockerfile) diff --git a/redis/README.md b/redis/README.md index 6c28fa85b8af..debdb81c5820 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.2-m01`, `8.2-m01-bookworm`](https://github.com/redis/docker-library-redis/blob/c0091fa744e1437a972c5ee5c8062dc1894e6ab7/debian/Dockerfile) + +- [`8.2-m01-alpine`, `8.2-m01-alpine3.22`](https://github.com/redis/docker-library-redis/blob/c0091fa744e1437a972c5ee5c8062dc1894e6ab7/alpine/Dockerfile) + - [`8.0.2`, `8.0`, `8`, `8.0.2-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/debian/Dockerfile) - [`8.0.2-alpine`, `8.0-alpine`, `8-alpine`, `8.0.2-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/alpine/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 503f1552a4e1..b22b22526034 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.3.0-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/developer/Dockerfile) +- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/developer/Dockerfile) -- [`2025.3.0-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/enterprise/Dockerfile) +- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/enterprise/Dockerfile) -- [`2025.3.0-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/datacenter/app/Dockerfile) +- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/datacenter/app/Dockerfile) -- [`2025.3.0-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025/datacenter/search/Dockerfile) +- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/datacenter/search/Dockerfile) -- [`2025.1.2-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/developer/Dockerfile) +- [`2025.1.2-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/developer/Dockerfile) -- [`2025.1.2-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/enterprise/Dockerfile) +- [`2025.1.2-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/enterprise/Dockerfile) -- [`2025.1.2-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/datacenter/app/Dockerfile) +- [`2025.1.2-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/datacenter/app/Dockerfile) -- [`2025.1.2-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/2025.1/datacenter/search/Dockerfile) +- [`2025.1.2-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/datacenter/search/Dockerfile) - [`25.6.0.109173-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/13051010fbfba3fe366f6ca2ede1b8551fa4c251/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/f36d73cab148e76cd0dae6c650f0273676522240/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/datacenter/search/Dockerfile) # Quick reference (cont.) From 0d4dd5bb1dc65bd7fc84f1298b8af43a1bc343d7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jun 2025 15:09:56 -0700 Subject: [PATCH 2281/2686] Run update.sh --- drupal/README.md | 132 +++++++++++++++++----------------------------- ghost/README.md | 4 +- percona/README.md | 4 -- 3 files changed, 50 insertions(+), 90 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 4c681086a93a..9c2724690f62 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,137 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.0-beta1-php8.4-apache-bookworm`, `11.2-rc-php8.4-apache-bookworm`, `11.2.0-beta1-php8.4-apache`, `11.2-rc-php8.4-apache`, `11.2.0-beta1-php8.4`, `11.2-rc-php8.4`, `11.2.0-beta1-apache-bookworm`, `11.2-rc-apache-bookworm`, `11.2.0-beta1-apache`, `11.2-rc-apache`, `11.2.0-beta1`, `11.2-rc`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/apache-bookworm/Dockerfile) +- [`11.2.0-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.0-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.0-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.0-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.0-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.0`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.0-beta1-php8.4-fpm-bookworm`, `11.2-rc-php8.4-fpm-bookworm`, `11.2.0-beta1-php8.4-fpm`, `11.2-rc-php8.4-fpm`, `11.2.0-beta1-fpm-bookworm`, `11.2-rc-fpm-bookworm`, `11.2.0-beta1-fpm`, `11.2-rc-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.0-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.0-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.0-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.0-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.0-beta1-php8.4-apache-bullseye`, `11.2-rc-php8.4-apache-bullseye`, `11.2.0-beta1-apache-bullseye`, `11.2-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/apache-bullseye/Dockerfile) +- [`11.2.0-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.0-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/apache-bullseye/Dockerfile) -- [`11.2.0-beta1-php8.4-fpm-bullseye`, `11.2-rc-php8.4-fpm-bullseye`, `11.2.0-beta1-fpm-bullseye`, `11.2-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.0-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.0-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-bullseye/Dockerfile) -- [`11.2.0-beta1-php8.4-fpm-alpine3.21`, `11.2-rc-php8.4-fpm-alpine3.21`, `11.2.0-beta1-php8.4-fpm-alpine`, `11.2-rc-php8.4-fpm-alpine`, `11.2.0-beta1-fpm-alpine3.21`, `11.2-rc-fpm-alpine3.21`, `11.2.0-beta1-fpm-alpine`, `11.2-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.0-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.0-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.0-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.0-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.0-beta1-php8.4-fpm-alpine3.20`, `11.2-rc-php8.4-fpm-alpine3.20`, `11.2.0-beta1-fpm-alpine3.20`, `11.2-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.2.0-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.0-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.0-beta1-php8.3-apache-bookworm`, `11.2-rc-php8.3-apache-bookworm`, `11.2.0-beta1-php8.3-apache`, `11.2-rc-php8.3-apache`, `11.2.0-beta1-php8.3`, `11.2-rc-php8.3`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/apache-bookworm/Dockerfile) +- [`11.2.0-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.0-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.0-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.0-beta1-php8.3-fpm-bookworm`, `11.2-rc-php8.3-fpm-bookworm`, `11.2.0-beta1-php8.3-fpm`, `11.2-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.0-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.0-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.0-beta1-php8.3-apache-bullseye`, `11.2-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/apache-bullseye/Dockerfile) +- [`11.2.0-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/apache-bullseye/Dockerfile) -- [`11.2.0-beta1-php8.3-fpm-bullseye`, `11.2-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.0-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-bullseye/Dockerfile) -- [`11.2.0-beta1-php8.3-fpm-alpine3.21`, `11.2-rc-php8.3-fpm-alpine3.21`, `11.2.0-beta1-php8.3-fpm-alpine`, `11.2-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.0-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.0-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.0-beta1-php8.3-fpm-alpine3.20`, `11.2-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/11.2-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.2.0-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`, `11-php8.4`, `php8.4`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bullseye/Dockerfile) -- [`11.1.8-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bullseye/Dockerfile) -- [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.1.8-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.22`, `11.1-php8.4-fpm-alpine3.22`, `11.1.8-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/11.1/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.1.8-php8.4-fpm-alpine3.20`, `11.1-php8.4-fpm-alpine3.20`, `11-php8.4-fpm-alpine3.20`, `php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.20/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11-php8.3`, `php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11-apache`, `apache`, `11.1.8`, `11.1`, `11`, `latest`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11.1.8`, `11.1`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.1.8-fpm`, `11.1-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`, `11.1.8-fpm`, `11.1-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bullseye/Dockerfile) -- [`11.1.8-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`, `11.1.8-fpm-bullseye`, `11.1-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11.1.8-fpm-bullseye`, `11.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bullseye/Dockerfile) -- [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`, `11.1.8-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`, `11.1.8-fpm-alpine`, `11.1-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.22`, `11.1-php8.3-fpm-alpine3.22`, `11.1.8-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11.1.8-fpm-alpine3.22`, `11.1-fpm-alpine3.22`, `11.1.8-fpm-alpine`, `11.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/11.1/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.1.8-php8.3-fpm-alpine3.20`, `11.1-php8.3-fpm-alpine3.20`, `11-php8.3-fpm-alpine3.20`, `php8.3-fpm-alpine3.20`, `11.1.8-fpm-alpine3.20`, `11.1-fpm-alpine3.20`, `11-fpm-alpine3.20`, `fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.20/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.0.13-php8.3-apache-bookworm`, `11.0-php8.3-apache-bookworm`, `11.0.13-php8.3-apache`, `11.0-php8.3-apache`, `11.0.13-php8.3`, `11.0-php8.3`, `11.0.13-apache-bookworm`, `11.0-apache-bookworm`, `11.0.13-apache`, `11.0-apache`, `11.0.13`, `11.0`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bookworm/Dockerfile) +- [`10.5.0-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.0-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.0-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.0-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.0-apache`, `10.5-apache`, `10-apache`, `10.5.0`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/apache-bookworm/Dockerfile) -- [`11.0.13-php8.3-fpm-bookworm`, `11.0-php8.3-fpm-bookworm`, `11.0.13-php8.3-fpm`, `11.0-php8.3-fpm`, `11.0.13-fpm-bookworm`, `11.0-fpm-bookworm`, `11.0.13-fpm`, `11.0-fpm`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.0-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.0-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.0-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.0-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`11.0.13-php8.3-apache-bullseye`, `11.0-php8.3-apache-bullseye`, `11.0.13-apache-bullseye`, `11.0-apache-bullseye`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/apache-bullseye/Dockerfile) +- [`10.5.0-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.0-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/apache-bullseye/Dockerfile) -- [`11.0.13-php8.3-fpm-bullseye`, `11.0-php8.3-fpm-bullseye`, `11.0.13-fpm-bullseye`, `11.0-fpm-bullseye`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-bullseye/Dockerfile) +- [`10.5.0-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.0-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bullseye/Dockerfile) -- [`11.0.13-php8.3-fpm-alpine3.21`, `11.0-php8.3-fpm-alpine3.21`, `11.0.13-php8.3-fpm-alpine`, `11.0-php8.3-fpm-alpine`, `11.0.13-fpm-alpine3.21`, `11.0-fpm-alpine3.21`, `11.0.13-fpm-alpine`, `11.0-fpm-alpine`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.0-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.0-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.0-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.0-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.0.13-php8.3-fpm-alpine3.20`, `11.0-php8.3-fpm-alpine3.20`, `11.0.13-fpm-alpine3.20`, `11.0-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/6e99d404954100da55da961fabfdbd5176523cd3/11.0/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.5.0-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.0-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.0-beta1-php8.4-apache-bookworm`, `10.5-rc-php8.4-apache-bookworm`, `10.5.0-beta1-php8.4-apache`, `10.5-rc-php8.4-apache`, `10.5.0-beta1-php8.4`, `10.5-rc-php8.4`, `10.5.0-beta1-apache-bookworm`, `10.5-rc-apache-bookworm`, `10.5.0-beta1-apache`, `10.5-rc-apache`, `10.5.0-beta1`, `10.5-rc`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/apache-bookworm/Dockerfile) +- [`10.5.0-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.0-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.0-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.0-beta1-php8.4-fpm-bookworm`, `10.5-rc-php8.4-fpm-bookworm`, `10.5.0-beta1-php8.4-fpm`, `10.5-rc-php8.4-fpm`, `10.5.0-beta1-fpm-bookworm`, `10.5-rc-fpm-bookworm`, `10.5.0-beta1-fpm`, `10.5-rc-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.0-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.0-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.0-beta1-php8.4-apache-bullseye`, `10.5-rc-php8.4-apache-bullseye`, `10.5.0-beta1-apache-bullseye`, `10.5-rc-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/apache-bullseye/Dockerfile) +- [`10.5.0-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/apache-bullseye/Dockerfile) -- [`10.5.0-beta1-php8.4-fpm-bullseye`, `10.5-rc-php8.4-fpm-bullseye`, `10.5.0-beta1-fpm-bullseye`, `10.5-rc-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-bullseye/Dockerfile) +- [`10.5.0-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bullseye/Dockerfile) -- [`10.5.0-beta1-php8.4-fpm-alpine3.21`, `10.5-rc-php8.4-fpm-alpine3.21`, `10.5.0-beta1-php8.4-fpm-alpine`, `10.5-rc-php8.4-fpm-alpine`, `10.5.0-beta1-fpm-alpine3.21`, `10.5-rc-fpm-alpine3.21`, `10.5.0-beta1-fpm-alpine`, `10.5-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.0-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.0-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.0-beta1-php8.4-fpm-alpine3.20`, `10.5-rc-php8.4-fpm-alpine3.20`, `10.5.0-beta1-fpm-alpine3.20`, `10.5-rc-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.4/fpm-alpine3.20/Dockerfile) +- [`10.5.0-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.0-beta1-php8.3-apache-bookworm`, `10.5-rc-php8.3-apache-bookworm`, `10.5.0-beta1-php8.3-apache`, `10.5-rc-php8.3-apache`, `10.5.0-beta1-php8.3`, `10.5-rc-php8.3`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/apache-bookworm/Dockerfile) +- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.5.0-beta1-php8.3-fpm-bookworm`, `10.5-rc-php8.3-fpm-bookworm`, `10.5.0-beta1-php8.3-fpm`, `10.5-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.0-beta1-php8.3-apache-bullseye`, `10.5-rc-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/apache-bullseye/Dockerfile) +- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bullseye/Dockerfile) -- [`10.5.0-beta1-php8.3-fpm-bullseye`, `10.5-rc-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bullseye/Dockerfile) -- [`10.5.0-beta1-php8.3-fpm-alpine3.21`, `10.5-rc-php8.3-fpm-alpine3.21`, `10.5.0-beta1-php8.3-fpm-alpine`, `10.5-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.22`, `10.4-php8.4-fpm-alpine3.22`, `10.4.8-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/10.4/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.0-beta1-php8.3-fpm-alpine3.20`, `10.5-rc-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/5d3e557c6488dd6581244cc3b885ce4308d54502/10.5-rc/php8.3/fpm-alpine3.20/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`, `10-php8.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10.4.8`, `10.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`, `10-php8.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`, `10.4.8-fpm`, `10.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bullseye/Dockerfile) -- [`10.4.8-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10.4.8-fpm-bullseye`, `10.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bullseye/Dockerfile) -- [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.4.8-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.22`, `10.4-php8.3-fpm-alpine3.22`, `10.4.8-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10.4.8-fpm-alpine3.22`, `10.4-fpm-alpine3.22`, `10.4.8-fpm-alpine`, `10.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/10.4/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.4.8-php8.4-fpm-alpine3.20`, `10.4-php8.4-fpm-alpine3.20`, `10-php8.4-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.20/Dockerfile) - -- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10-apache`, `10.4.8`, `10.4`, `10`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bookworm/Dockerfile) - -- [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10-php8.3-fpm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`, `10-fpm-bookworm`, `10.4.8-fpm`, `10.4-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bookworm/Dockerfile) - -- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bullseye/Dockerfile) - -- [`10.4.8-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`, `10.4.8-fpm-bullseye`, `10.4-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bullseye/Dockerfile) - -- [`10.4.8-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`, `10.4.8-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`, `10.4.8-fpm-alpine3.21`, `10.4-fpm-alpine3.21`, `10-fpm-alpine3.21`, `10.4.8-fpm-alpine`, `10.4-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.21/Dockerfile) - -- [`10.4.8-php8.3-fpm-alpine3.20`, `10.4-php8.3-fpm-alpine3.20`, `10-php8.3-fpm-alpine3.20`, `10.4.8-fpm-alpine3.20`, `10.4-fpm-alpine3.20`, `10-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.20/Dockerfile) - -- [`10.3.14-php8.3-apache-bookworm`, `10.3-php8.3-apache-bookworm`, `10.3.14-php8.3-apache`, `10.3-php8.3-apache`, `10.3.14-php8.3`, `10.3-php8.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bookworm/Dockerfile) - -- [`10.3.14-php8.3-fpm-bookworm`, `10.3-php8.3-fpm-bookworm`, `10.3.14-php8.3-fpm`, `10.3-php8.3-fpm`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-bookworm/Dockerfile) - -- [`10.3.14-php8.3-apache-bullseye`, `10.3-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/apache-bullseye/Dockerfile) - -- [`10.3.14-php8.3-fpm-bullseye`, `10.3-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-bullseye/Dockerfile) - -- [`10.3.14-php8.3-fpm-alpine3.21`, `10.3-php8.3-fpm-alpine3.21`, `10.3.14-php8.3-fpm-alpine`, `10.3-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-alpine3.21/Dockerfile) - -- [`10.3.14-php8.3-fpm-alpine3.20`, `10.3-php8.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.3/fpm-alpine3.20/Dockerfile) - -- [`10.3.14-php8.2-apache-bookworm`, `10.3-php8.2-apache-bookworm`, `10.3.14-php8.2-apache`, `10.3-php8.2-apache`, `10.3.14-php8.2`, `10.3-php8.2`, `10.3.14-apache-bookworm`, `10.3-apache-bookworm`, `10.3.14-apache`, `10.3-apache`, `10.3.14`, `10.3`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/apache-bookworm/Dockerfile) - -- [`10.3.14-php8.2-fpm-bookworm`, `10.3-php8.2-fpm-bookworm`, `10.3.14-php8.2-fpm`, `10.3-php8.2-fpm`, `10.3.14-fpm-bookworm`, `10.3-fpm-bookworm`, `10.3.14-fpm`, `10.3-fpm`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-bookworm/Dockerfile) - -- [`10.3.14-php8.2-apache-bullseye`, `10.3-php8.2-apache-bullseye`, `10.3.14-apache-bullseye`, `10.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/apache-bullseye/Dockerfile) - -- [`10.3.14-php8.2-fpm-bullseye`, `10.3-php8.2-fpm-bullseye`, `10.3.14-fpm-bullseye`, `10.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-bullseye/Dockerfile) - -- [`10.3.14-php8.2-fpm-alpine3.21`, `10.3-php8.2-fpm-alpine3.21`, `10.3.14-php8.2-fpm-alpine`, `10.3-php8.2-fpm-alpine`, `10.3.14-fpm-alpine3.21`, `10.3-fpm-alpine3.21`, `10.3.14-fpm-alpine`, `10.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-alpine3.21/Dockerfile) - -- [`10.3.14-php8.2-fpm-alpine3.20`, `10.3-php8.2-fpm-alpine3.20`, `10.3.14-fpm-alpine3.20`, `10.3-fpm-alpine3.20`](https://github.com/docker-library/drupal/blob/8f3ebb5ea454515f31c2ad06221660250016ecb8/10.3/php8.2/fpm-alpine3.20/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10.4.8-fpm-alpine3.21`, `10.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 482bc4d3bdd6..a0f16f0ebd6e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.126.0`, `5.126`, `5`, `latest`](https://github.com/docker-library/ghost/blob/1f30930f32ebab134e804747bb7012f39db1587a/5/debian/Dockerfile) +- [`5.126.1`, `5.126`, `5`, `latest`](https://github.com/docker-library/ghost/blob/cc4f5d9c4c7ad8cb61c9bcfae1db6740e8896613/5/debian/Dockerfile) -- [`5.126.0-alpine`, `5.126-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/1f30930f32ebab134e804747bb7012f39db1587a/5/alpine/Dockerfile) +- [`5.126.1-alpine`, `5.126-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/cc4f5d9c4c7ad8cb61c9bcfae1db6740e8896613/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index ef645ac6870b..985078d1c43c 100644 --- a/percona/README.md +++ b/percona/README.md @@ -26,10 +26,6 @@ WARNING: - [`8.0.42-33-centos`, `8.0-centos`, `8-centos`, `8.0.42-33`, `8.0`, `8`, `ps-8.0.42-33`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/9cd781adb27010da39faab5daca25c1e72db0af4/percona-server-8.0/Dockerfile-dockerhub) -- [`psmdb-8.0.4`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-8.0/Dockerfile-dockerhub) - -- [`psmdb-7.0.16`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-7.0/Dockerfile-dockerhub) - - [`psmdb-6.0.21`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-6.0/Dockerfile-dockerhub) # Quick reference (cont.) From 2b841c4ce8d2861a30f259c2c3d153c51101ac93 Mon Sep 17 00:00:00 2001 From: Ruffin Date: Fri, 20 Jun 2025 18:59:30 -0500 Subject: [PATCH 2282/2686] [ROS] Update Official Docker image docs (#2578) * Remove references to dedicated ROS distros as final ROS 1 version, Noetic, is now EOL * Redirect primary links to documentation landing page as docs page is more up-to-date and pertinent for users * Remove retired ROS blog - https://www.ros.org/news/2020/01/ros-blog-retired.html * Update OSRF URL redirect * Update example image tag to rolling to avoid docs from becoming stale * Consolidate branding and dated references * Update Q&A links to stackexchange given migration - https://discourse.ros.org/t/planned-migration-of-ros-answers-and-gazebo-answers-to-robotics-stack-exchange/28068 - https://discourse.ros.org/t/new-static-archives-for-ros-and-gazebo-answers/41346 * Simplify cloning overlay source * Simplify use of mixin setting * Split runner and builder stages as example to save on image size as well as on build time using caching * Simplify scripting for dependencies * Lint use of ARGs for readability of each stage * Simplify example cache mount for apt and update rosdep along with apt list to ensure package index is fresh * Update categories for ROS to include additional relevant entries * Shorten derivation script * Use ros-core tag for minimal installer * Stage example image sizes for demos * Simplify naming * Omit cacher from size table to focus on primary targets * Modify and mount custom apt config accounting for included docker-clean default * Simplify RUN directive for apt config * Stage WIP edits * Update package cache before cloning source to avoid running rosdep update for each source change as docker build --no-cache can still be used to force update * Fix use of EOF in Dockerfile * Simply RUN directives * Expand bullet points about optimizations * Expand upon runner vs installer comparison * Linting * Fix grammar and spelling * Linting * Rename stage in apt get example while keeping with uniquely spelled noun that is self descriptive yet unmistakable * Comment on overwriting defaults to persist minimal cache --- ros/content.md | 193 +++++++++++++++++++++++----------------------- ros/metadata.json | 2 + 2 files changed, 99 insertions(+), 96 deletions(-) diff --git a/ros/content.md b/ros/content.md index 86033fbbfda8..4544e8ab5141 100644 --- a/ros/content.md +++ b/ros/content.md @@ -1,10 +1,10 @@ -# What is [ROS](https://www.ros.org/)? +# What is [ROS](https://docs.ros.org/)? The Robot Operating System (ROS) is a set of software libraries and tools that help you build robot applications. From drivers to state-of-the-art algorithms, and with powerful developer tools, ROS has what you need for your next robotics project. And it's all open source. > [wikipedia.org/wiki/Robot_Operating_System](https://en.wikipedia.org/wiki/Robot_Operating_System) -[%%LOGO%%](https://www.ros.org/) +[%%LOGO%%](https://docs.ros.org/) # How to use this image @@ -13,7 +13,7 @@ The Robot Operating System (ROS) is a set of software libraries and tools that h To create your own ROS docker images and install custom packages, here's a simple example of installing the C++, Python client library demos using the official released Debian packages via apt-get. ```dockerfile -FROM %%IMAGE%%:foxy +FROM %%IMAGE%%:rolling-ros-core as aptgetter # install ros package RUN apt-get update && apt-get install -y \ @@ -28,8 +28,8 @@ CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] Note: all ROS images include a default entrypoint that sources the ROS environment setup before executing the configured command, in this case the demo packages launch file. You can then build and run the Docker image like so: ```console -$ docker build -t my/ros:app . -$ docker run -it --rm my/ros:app +$ docker build -t my/ros:aptgetter . +$ docker run -it --rm my/ros:aptgetter [INFO] [launch]: process[talker-1]: started with pid [813] [INFO] [launch]: process[listener-2]: started with pid [814] [INFO] [talker]: Publishing: 'Hello World: 1' @@ -44,59 +44,85 @@ $ docker run -it --rm my/ros:app To create your own ROS docker images and build custom packages, here's a simple example of installing a package's build dependencies, compiling it from source, and installing the resulting build artifacts into a final multi-stage image layer. ```dockerfile -ARG FROM_IMAGE=%%IMAGE%%:foxy +ARG FROM_IMAGE=%%IMAGE%%:rolling ARG OVERLAY_WS=/opt/ros/overlay_ws # multi-stage for caching FROM $FROM_IMAGE AS cacher +ARG OVERLAY_WS + +# overwrite defaults to persist minimal cache +RUN rosdep update --rosdistro $ROS_DISTRO && \ + cat < /etc/apt/apt.conf.d/docker-clean && apt-get update +APT::Install-Recommends "false"; +APT::Install-Suggests "false"; +EOF # clone overlay source -ARG OVERLAY_WS WORKDIR $OVERLAY_WS/src -RUN echo "\ -repositories: \n\ - ros2/demos: \n\ - type: git \n\ - url: https://github.com/ros2/demos.git \n\ - version: ${ROS_DISTRO} \n\ -" > ../overlay.repos -RUN vcs import ./ < ../overlay.repos - -# copy manifests for caching -WORKDIR /opt -RUN mkdir -p /tmp/opt && \ - find ./ -name "package.xml" | \ - xargs cp --parents -t /tmp/opt && \ - find ./ -name "COLCON_IGNORE" | \ - xargs cp --parents -t /tmp/opt || true +RUN cat < /tmp/${type}_debs.txt +done +EOF # multi-stage for building FROM $FROM_IMAGE AS builder - -# install overlay dependencies ARG OVERLAY_WS -WORKDIR $OVERLAY_WS -COPY --from=cacher /tmp/$OVERLAY_WS/src ./src -RUN . /opt/ros/$ROS_DISTRO/setup.sh && \ - apt-get update && rosdep install -y \ - --from-paths \ - src/ros2/demos/demo_nodes_cpp \ - src/ros2/demos/demo_nodes_py \ - --ignore-src \ - && rm -rf /var/lib/apt/lists/* + +# install build dependencies +COPY --from=cacher /tmp/build_debs.txt /tmp/build_debs.txt +RUN --mount=type=cache,target=/etc/apt/apt.conf.d,from=cacher,source=/etc/apt/apt.conf.d \ + --mount=type=cache,target=/var/lib/apt/lists,from=cacher,source=/var/lib/apt/lists \ + --mount=type=cache,target=/var/cache/apt,sharing=locked \ + < /tmp/build_debs.txt xargs apt-get install -y # build overlay source +WORKDIR $OVERLAY_WS COPY --from=cacher $OVERLAY_WS/src ./src -ARG OVERLAY_MIXINS="release" RUN . /opt/ros/$ROS_DISTRO/setup.sh && \ colcon build \ --packages-select \ demo_nodes_cpp \ demo_nodes_py \ - --mixin $OVERLAY_MIXINS + --mixin release + +# multi-stage for running +FROM $FROM_IMAGE-ros-core AS runner +ARG OVERLAY_WS + +# install exec dependencies +COPY --from=cacher /tmp/exec_debs.txt /tmp/exec_debs.txt +RUN --mount=type=cache,target=/etc/apt/apt.conf.d,from=cacher,source=/etc/apt/apt.conf.d \ + --mount=type=cache,target=/var/lib/apt/lists,from=cacher,source=/var/lib/apt/lists \ + --mount=type=cache,target=/var/cache/apt,sharing=locked \ + < /tmp/exec_debs.txt xargs apt-get install -y -# source entrypoint setup -ENV OVERLAY_WS $OVERLAY_WS +# setup overlay install +ENV OVERLAY_WS=$OVERLAY_WS +COPY --from=builder $OVERLAY_WS/install $OVERLAY_WS/install RUN sed --in-place --expression \ '$isource "$OVERLAY_WS/install/setup.bash"' \ /ros_entrypoint.sh @@ -105,11 +131,36 @@ RUN sed --in-place --expression \ CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` -The example above starts by using [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone source repos of interest into the cacher stage. One could similarly `COPY` code from the local build context into the source directory as well. Package manifest files are then cached in a temporary directory where the following builder stage may copy from to install necessary dependencies with [`rosdep`](https://github.com/ros-infrastructure/rosdep). This is done prior to copying the rest of the source files to preserve the multi-stage build cache, given unaltered manifests do not alter declared dependencies, saving time and bandwidth. The overlay is then built using [`colcon`](https://colcon.readthedocs.io/en/released/), the entrypoint updated to source the workspace, and the default command set to launch the demo. +The example above consists of three sequential stages. The `cacher` stage first updates the apt lists and ROS index, uses [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone a demo repo into the workspace source directory, and derives build and runtime dependency sets using [`rosdep`](https://docs.ros.org/en/rolling/Tutorials/Intermediate/Rosdep.html). The `builder` stage installs the derived build dependencies, sources the ROS install underlay, and compiles the source in release mode using [`colcon`](https://docs.ros.org/en/rolling/Tutorials/Beginner-Client-Libraries/Colcon-Tutorial.html). Finally, the `runner` stage installs only runtime dependencies, copies the compiled workspace artifacts, and sets up the environment to launch the demo. Note the example consists of several subtle optimizations: + +- Multi-Stage Build + - Dependency derivation, compilation, and runtime setup are partitioned + - Maximizes cache retention despite package source or build/runtime changes + - Greater concurrency, e.g., colcon build while runtime apt installs +- Persistent Cache Propagation + - Use of [`--mount`](https://docs.docker.com/engine/reference/builder/#run---mount) to cache temp data without bloating layers + - Maintain temporally consistent apt lists between parallel stages + - Avoid needless network I/O between stages or across Docker rebuilds +- Minimal Image Size + - Final stage builds from `ros-core` for smallest runtime image + - Builds and installs only a select few packages in the workspace + - Only workspace install artifacts are copied into final layers -Note: `--from-paths` and `--packages-select` are set here as so to only install the dependencies and build for the demo C++ and Python packages, among many in the demo git repo that was cloned. To install the dependencies and build all the packages in the source workspace, merely change the scope by setting `--from-paths src/` and dropping the `--packages-select` arguments. +For comparison, the resulting `runner` image is similar in size to the earlier `aptgetter` example. This allows you to develop and distribute custom ROS packages without significantly increasing image size compared to pre-built Debian installations: -For more advance examples such as daisy chaining multiple overlay workspaces to improve caching of docker image build layers, using tools such as ccache to accelerate compilation with colcon, or using buildkit to save build time and bandwidth even when dependencies change, the project `Dockerfile`s in the ROS 2 [Navigation2](https://github.com/ros-planning/navigation2) repo are excellent resources. +```console +$ docker image ls my/ros --format "table {{.Tag}}\t{{.Size}}" +TAG SIZE +aptgetter 504MB +runner 510MB +builder 941MB +$ docker image ls ros --format "table {{.Tag}}\t{{.Size}}" +TAG SIZE +rolling-ros-core 489MB +rolling 876MB +``` + +For more advance examples such as daisy chaining multiple overlay workspaces to improve caching of docker image build layers, using tools such as ccache to accelerate compilation with colcon, or using buildkit to save build time and bandwidth even when dependencies change, the project `Dockerfile`s in the [Navigation2](https://github.com/ros-planning/navigation2) repo are excellent resources. ## Deployment use cases @@ -119,7 +170,7 @@ Developing such complex systems with cutting edge implementations of newly publi With the advancements and standardization of software containers, roboticists are primed to acquire a host of improved developer tooling for building and shipping software. To help alleviate the growing pains and technical challenges of adopting new practices, we have focused on providing an official resource for using ROS with these new technologies. -For a complete listing of supported architectures and base images for each ROS Distribution Release, please read the official REP on target platforms for either [ROS 1](https://www.ros.org/reps/rep-0003.html) or for [ROS 2](https://www.ros.org/reps/rep-2000.html). +For a complete listing of supported architectures and base images for each ROS Distribution Release, please read the official REP on target platforms [here](https://www.ros.org/reps/rep-2001.html). ## Deployment suggestions @@ -127,11 +178,10 @@ The available tags include supported distros along with a hierarchy tags based o - `ros-core`: minimal ROS install - `ros-base`: basic tools and libraries (also tagged with distro name with LTS version as `latest`) -- `ros1-bridge`: tools and libraries to run hybrid ROS 1 - ROS 2 systems and bridge messages between them In the interest of keeping `ros-core` tag minimal in image size, developer tools such as `rosdep`, `colcon` and `vcstools` are not shipped in `ros_core`, but in `ros-base` instead. -The rest of the common meta-packages such as `desktop` are hosted on repos under OSRF's Docker Hub profile [here](https://hub.docker.com/r/osrf/ros/). These meta-packages include graphical dependencies and hook a host of other large packages such as X11, X server, etc. So in the interest of keeping the official images lean and secure, the desktop packages are just being hosted with OSRF's profile. For an extensive list of available variants, please read the official REP on target platforms for either [ROS 1](https://ros.org/reps/rep-0150.html) or for [ROS 2](https://www.ros.org/reps/rep-2001.html). +The rest of the common meta-packages such as `desktop` are hosted on repos under OSRF's Docker Hub profile [here](https://hub.docker.com/r/osrf/ros/). These meta-packages include graphical dependencies and hook a host of other large packages such as X11, X server, etc. So in the interest of keeping the official images lean and secure, the desktop packages are just being hosted with OSRF's profile. ### Volumes @@ -201,59 +251,10 @@ $ docker compose rm > Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker compose down`. -### ROS 1 Bridge - -To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. - -```dockerfile -FROM %%IMAGE%%:noetic - -# install ros package -RUN apt-get update && apt-get install -y \ - ros-${ROS_DISTRO}-ros-tutorials \ - ros-${ROS_DISTRO}-common-tutorials && \ - rm -rf /var/lib/apt/lists/* - -# launch ros package -CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] -``` - -The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. - -```yaml -services: - ros1: - build: - context: ./ - dockerfile: ros1.Dockerfile - - ros2: - build: - context: ./ - dockerfile: ros2.Dockerfile - - bridge: - image: ros:foxy-ros1-bridge - environment: - - "ROS_HOSTNAME=bridge" - - "ROS_MASTER_URI=http://ros1:11311" - command: ros2 run ros1_bridge dynamic_bridge -``` - # More Resources -[ROS.org](http://www.ros.org/): Main ROS website -[Q&A](https://answers.ros.org/questions/): Ask questions. Get answers +[Docs](https://docs.ros.org/): ROS Developer Documentation +[Q&A](https://robotics.stackexchange.com/): Ask questions. Get answers [Forums](https://discourse.ros.org/): Hear the latest discussions -[Blog](http://www.ros.org/news/): Stay up-to-date [Packages](https://index.ros.org/?search_packages=true): Discover indexed packages -[OSRF](https://www.osrfoundation.org/): Open Source Robotics Foundation - -## ROS 2 - -[Index](https://docs.ros.org): ROS 2 Documentation -[Design](https://design.ros2.org/): ROS 2 Design Articles - -## ROS 1 - -[Wiki](http://wiki.ros.org/Documentation): ROS 1 Documentation +[OSRF](https://www.openrobotics.org/): Open Source Robotics Foundation diff --git a/ros/metadata.json b/ros/metadata.json index df07586b5b35..de234f00b76c 100644 --- a/ros/metadata.json +++ b/ros/metadata.json @@ -1,6 +1,8 @@ { "hub": { "categories": [ + "languages-and-frameworks", + "machine-learning-and-ai", "operating-systems" ] } From e57badc43affe1dfaa8c87907af0faee3cfd73aa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jun 2025 17:10:10 -0700 Subject: [PATCH 2283/2686] Run update.sh --- ros/README.md | 193 +++++++++++++++++++++++++------------------------- 1 file changed, 97 insertions(+), 96 deletions(-) diff --git a/ros/README.md b/ros/README.md index 27707510f35a..5e1ecc49e86c 100644 --- a/ros/README.md +++ b/ros/README.md @@ -67,13 +67,13 @@ WARNING: - **Source of this description**: [docs repo's `ros/` directory](https://github.com/docker-library/docs/tree/master/ros) ([history](https://github.com/docker-library/docs/commits/master/ros)) -# What is [ROS](https://www.ros.org/)? +# What is [ROS](https://docs.ros.org/)? The Robot Operating System (ROS) is a set of software libraries and tools that help you build robot applications. From drivers to state-of-the-art algorithms, and with powerful developer tools, ROS has what you need for your next robotics project. And it's all open source. > [wikipedia.org/wiki/Robot_Operating_System](https://en.wikipedia.org/wiki/Robot_Operating_System) -[![logo](https://raw.githubusercontent.com/docker-library/docs/0074e9dac72a35e5058f356885121aa82572682f/ros/logo.png)](https://www.ros.org/) +[![logo](https://raw.githubusercontent.com/docker-library/docs/0074e9dac72a35e5058f356885121aa82572682f/ros/logo.png)](https://docs.ros.org/) # How to use this image @@ -82,7 +82,7 @@ The Robot Operating System (ROS) is a set of software libraries and tools that h To create your own ROS docker images and install custom packages, here's a simple example of installing the C++, Python client library demos using the official released Debian packages via apt-get. ```dockerfile -FROM ros:foxy +FROM ros:rolling-ros-core as aptgetter # install ros package RUN apt-get update && apt-get install -y \ @@ -97,8 +97,8 @@ CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] Note: all ROS images include a default entrypoint that sources the ROS environment setup before executing the configured command, in this case the demo packages launch file. You can then build and run the Docker image like so: ```console -$ docker build -t my/ros:app . -$ docker run -it --rm my/ros:app +$ docker build -t my/ros:aptgetter . +$ docker run -it --rm my/ros:aptgetter [INFO] [launch]: process[talker-1]: started with pid [813] [INFO] [launch]: process[listener-2]: started with pid [814] [INFO] [talker]: Publishing: 'Hello World: 1' @@ -113,59 +113,85 @@ $ docker run -it --rm my/ros:app To create your own ROS docker images and build custom packages, here's a simple example of installing a package's build dependencies, compiling it from source, and installing the resulting build artifacts into a final multi-stage image layer. ```dockerfile -ARG FROM_IMAGE=ros:foxy +ARG FROM_IMAGE=ros:rolling ARG OVERLAY_WS=/opt/ros/overlay_ws # multi-stage for caching FROM $FROM_IMAGE AS cacher +ARG OVERLAY_WS + +# overwrite defaults to persist minimal cache +RUN rosdep update --rosdistro $ROS_DISTRO && \ + cat < /etc/apt/apt.conf.d/docker-clean && apt-get update +APT::Install-Recommends "false"; +APT::Install-Suggests "false"; +EOF # clone overlay source -ARG OVERLAY_WS WORKDIR $OVERLAY_WS/src -RUN echo "\ -repositories: \n\ - ros2/demos: \n\ - type: git \n\ - url: https://github.com/ros2/demos.git \n\ - version: ${ROS_DISTRO} \n\ -" > ../overlay.repos -RUN vcs import ./ < ../overlay.repos - -# copy manifests for caching -WORKDIR /opt -RUN mkdir -p /tmp/opt && \ - find ./ -name "package.xml" | \ - xargs cp --parents -t /tmp/opt && \ - find ./ -name "COLCON_IGNORE" | \ - xargs cp --parents -t /tmp/opt || true +RUN cat < /tmp/${type}_debs.txt +done +EOF # multi-stage for building FROM $FROM_IMAGE AS builder - -# install overlay dependencies ARG OVERLAY_WS -WORKDIR $OVERLAY_WS -COPY --from=cacher /tmp/$OVERLAY_WS/src ./src -RUN . /opt/ros/$ROS_DISTRO/setup.sh && \ - apt-get update && rosdep install -y \ - --from-paths \ - src/ros2/demos/demo_nodes_cpp \ - src/ros2/demos/demo_nodes_py \ - --ignore-src \ - && rm -rf /var/lib/apt/lists/* + +# install build dependencies +COPY --from=cacher /tmp/build_debs.txt /tmp/build_debs.txt +RUN --mount=type=cache,target=/etc/apt/apt.conf.d,from=cacher,source=/etc/apt/apt.conf.d \ + --mount=type=cache,target=/var/lib/apt/lists,from=cacher,source=/var/lib/apt/lists \ + --mount=type=cache,target=/var/cache/apt,sharing=locked \ + < /tmp/build_debs.txt xargs apt-get install -y # build overlay source +WORKDIR $OVERLAY_WS COPY --from=cacher $OVERLAY_WS/src ./src -ARG OVERLAY_MIXINS="release" RUN . /opt/ros/$ROS_DISTRO/setup.sh && \ colcon build \ --packages-select \ demo_nodes_cpp \ demo_nodes_py \ - --mixin $OVERLAY_MIXINS + --mixin release + +# multi-stage for running +FROM $FROM_IMAGE-ros-core AS runner +ARG OVERLAY_WS + +# install exec dependencies +COPY --from=cacher /tmp/exec_debs.txt /tmp/exec_debs.txt +RUN --mount=type=cache,target=/etc/apt/apt.conf.d,from=cacher,source=/etc/apt/apt.conf.d \ + --mount=type=cache,target=/var/lib/apt/lists,from=cacher,source=/var/lib/apt/lists \ + --mount=type=cache,target=/var/cache/apt,sharing=locked \ + < /tmp/exec_debs.txt xargs apt-get install -y -# source entrypoint setup -ENV OVERLAY_WS $OVERLAY_WS +# setup overlay install +ENV OVERLAY_WS=$OVERLAY_WS +COPY --from=builder $OVERLAY_WS/install $OVERLAY_WS/install RUN sed --in-place --expression \ '$isource "$OVERLAY_WS/install/setup.bash"' \ /ros_entrypoint.sh @@ -174,11 +200,36 @@ RUN sed --in-place --expression \ CMD ["ros2", "launch", "demo_nodes_cpp", "talker_listener_launch.py"] ``` -The example above starts by using [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone source repos of interest into the cacher stage. One could similarly `COPY` code from the local build context into the source directory as well. Package manifest files are then cached in a temporary directory where the following builder stage may copy from to install necessary dependencies with [`rosdep`](https://github.com/ros-infrastructure/rosdep). This is done prior to copying the rest of the source files to preserve the multi-stage build cache, given unaltered manifests do not alter declared dependencies, saving time and bandwidth. The overlay is then built using [`colcon`](https://colcon.readthedocs.io/en/released/), the entrypoint updated to source the workspace, and the default command set to launch the demo. +The example above consists of three sequential stages. The `cacher` stage first updates the apt lists and ROS index, uses [`vcstool`](https://github.com/dirk-thomas/vcstool) to clone a demo repo into the workspace source directory, and derives build and runtime dependency sets using [`rosdep`](https://docs.ros.org/en/rolling/Tutorials/Intermediate/Rosdep.html). The `builder` stage installs the derived build dependencies, sources the ROS install underlay, and compiles the source in release mode using [`colcon`](https://docs.ros.org/en/rolling/Tutorials/Beginner-Client-Libraries/Colcon-Tutorial.html). Finally, the `runner` stage installs only runtime dependencies, copies the compiled workspace artifacts, and sets up the environment to launch the demo. Note the example consists of several subtle optimizations: + +- Multi-Stage Build + - Dependency derivation, compilation, and runtime setup are partitioned + - Maximizes cache retention despite package source or build/runtime changes + - Greater concurrency, e.g., colcon build while runtime apt installs +- Persistent Cache Propagation + - Use of [`--mount`](https://docs.docker.com/engine/reference/builder/#run---mount) to cache temp data without bloating layers + - Maintain temporally consistent apt lists between parallel stages + - Avoid needless network I/O between stages or across Docker rebuilds +- Minimal Image Size + - Final stage builds from `ros-core` for smallest runtime image + - Builds and installs only a select few packages in the workspace + - Only workspace install artifacts are copied into final layers -Note: `--from-paths` and `--packages-select` are set here as so to only install the dependencies and build for the demo C++ and Python packages, among many in the demo git repo that was cloned. To install the dependencies and build all the packages in the source workspace, merely change the scope by setting `--from-paths src/` and dropping the `--packages-select` arguments. +For comparison, the resulting `runner` image is similar in size to the earlier `aptgetter` example. This allows you to develop and distribute custom ROS packages without significantly increasing image size compared to pre-built Debian installations: -For more advance examples such as daisy chaining multiple overlay workspaces to improve caching of docker image build layers, using tools such as ccache to accelerate compilation with colcon, or using buildkit to save build time and bandwidth even when dependencies change, the project `Dockerfile`s in the ROS 2 [Navigation2](https://github.com/ros-planning/navigation2) repo are excellent resources. +```console +$ docker image ls my/ros --format "table {{.Tag}}\t{{.Size}}" +TAG SIZE +aptgetter 504MB +runner 510MB +builder 941MB +$ docker image ls ros --format "table {{.Tag}}\t{{.Size}}" +TAG SIZE +rolling-ros-core 489MB +rolling 876MB +``` + +For more advance examples such as daisy chaining multiple overlay workspaces to improve caching of docker image build layers, using tools such as ccache to accelerate compilation with colcon, or using buildkit to save build time and bandwidth even when dependencies change, the project `Dockerfile`s in the [Navigation2](https://github.com/ros-planning/navigation2) repo are excellent resources. ## Deployment use cases @@ -188,7 +239,7 @@ Developing such complex systems with cutting edge implementations of newly publi With the advancements and standardization of software containers, roboticists are primed to acquire a host of improved developer tooling for building and shipping software. To help alleviate the growing pains and technical challenges of adopting new practices, we have focused on providing an official resource for using ROS with these new technologies. -For a complete listing of supported architectures and base images for each ROS Distribution Release, please read the official REP on target platforms for either [ROS 1](https://www.ros.org/reps/rep-0003.html) or for [ROS 2](https://www.ros.org/reps/rep-2000.html). +For a complete listing of supported architectures and base images for each ROS Distribution Release, please read the official REP on target platforms [here](https://www.ros.org/reps/rep-2001.html). ## Deployment suggestions @@ -196,11 +247,10 @@ The available tags include supported distros along with a hierarchy tags based o - `ros-core`: minimal ROS install - `ros-base`: basic tools and libraries (also tagged with distro name with LTS version as `latest`) -- `ros1-bridge`: tools and libraries to run hybrid ROS 1 - ROS 2 systems and bridge messages between them In the interest of keeping `ros-core` tag minimal in image size, developer tools such as `rosdep`, `colcon` and `vcstools` are not shipped in `ros_core`, but in `ros-base` instead. -The rest of the common meta-packages such as `desktop` are hosted on repos under OSRF's Docker Hub profile [here](https://hub.docker.com/r/osrf/ros/). These meta-packages include graphical dependencies and hook a host of other large packages such as X11, X server, etc. So in the interest of keeping the official images lean and secure, the desktop packages are just being hosted with OSRF's profile. For an extensive list of available variants, please read the official REP on target platforms for either [ROS 1](https://ros.org/reps/rep-0150.html) or for [ROS 2](https://www.ros.org/reps/rep-2001.html). +The rest of the common meta-packages such as `desktop` are hosted on repos under OSRF's Docker Hub profile [here](https://hub.docker.com/r/osrf/ros/). These meta-packages include graphical dependencies and hook a host of other large packages such as X11, X server, etc. So in the interest of keeping the official images lean and secure, the desktop packages are just being hosted with OSRF's profile. ### Volumes @@ -270,62 +320,13 @@ $ docker compose rm > Note: the auto-generated network, `ros_demos_default`, will persist until you explicitly remove it using `docker compose down`. -### ROS 1 Bridge - -To ease ROS 2 migration, [`ros1_bridge`](https://index.ros.org/p/ros1_bridge) is a ROS 2 package that provides bidirectional communication between ROS 1 and ROS 2. As a minimal example, given the ROS 2 Dockerfile above, we'll create the ROS 1 equivalent below, and name the Dockerfile appropriately. - -```dockerfile -FROM ros:noetic - -# install ros package -RUN apt-get update && apt-get install -y \ - ros-${ROS_DISTRO}-ros-tutorials \ - ros-${ROS_DISTRO}-common-tutorials && \ - rm -rf /var/lib/apt/lists/* - -# launch ros package -CMD ["roslaunch", "roscpp_tutorials", "talker_listener_launch"] -``` - -The compose file bellow spawns services for both talker listener demos while connecting the two via a dynamic bridge. You may then view the log output from both pairs of talker and listener nodes cross talking over the `/chatter` topic. - -```yaml -services: - ros1: - build: - context: ./ - dockerfile: ros1.Dockerfile - - ros2: - build: - context: ./ - dockerfile: ros2.Dockerfile - - bridge: - image: ros:foxy-ros1-bridge - environment: - - "ROS_HOSTNAME=bridge" - - "ROS_MASTER_URI=http://ros1:11311" - command: ros2 run ros1_bridge dynamic_bridge -``` - # More Resources -[ROS.org](http://www.ros.org/): Main ROS website -[Q&A](https://answers.ros.org/questions/): Ask questions. Get answers +[Docs](https://docs.ros.org/): ROS Developer Documentation +[Q&A](https://robotics.stackexchange.com/): Ask questions. Get answers [Forums](https://discourse.ros.org/): Hear the latest discussions -[Blog](http://www.ros.org/news/): Stay up-to-date [Packages](https://index.ros.org/?search_packages=true): Discover indexed packages -[OSRF](https://www.osrfoundation.org/): Open Source Robotics Foundation - -## ROS 2 - -[Index](https://docs.ros.org): ROS 2 Documentation -[Design](https://design.ros2.org/): ROS 2 Design Articles - -## ROS 1 - -[Wiki](http://wiki.ros.org/Documentation): ROS 1 Documentation +[OSRF](https://www.openrobotics.org/): Open Source Robotics Foundation # License From e30f6a2e0937501e1d37ff040d17d1a364c2d6f3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 20 Jun 2025 18:10:11 -0700 Subject: [PATCH 2284/2686] Run update.sh --- openjdk/README.md | 80 +++++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index c6105533a3aa..87bd825a13dd 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-2-jdk-oraclelinux9`, `26-ea-2-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-2-jdk-oracle`, `26-ea-2-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-3-jdk-oraclelinux9`, `26-ea-3-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-3-jdk-oracle`, `26-ea-3-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-2-jdk-oraclelinux8`, `26-ea-2-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-3-jdk-oraclelinux8`, `26-ea-3-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-2-jdk-bookworm`, `26-ea-2-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/bookworm/Dockerfile) +- [`26-ea-3-jdk-bookworm`, `26-ea-3-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/bookworm/Dockerfile) -- [`26-ea-2-jdk-slim-bookworm`, `26-ea-2-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-2-jdk-slim`, `26-ea-2-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-3-jdk-slim-bookworm`, `26-ea-3-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-3-jdk-slim`, `26-ea-3-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-2-jdk-bullseye`, `26-ea-2-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/bullseye/Dockerfile) +- [`26-ea-3-jdk-bullseye`, `26-ea-3-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/bullseye/Dockerfile) -- [`26-ea-2-jdk-slim-bullseye`, `26-ea-2-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-3-jdk-slim-bullseye`, `26-ea-3-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-2-jdk-windowsservercore-ltsc2025`, `26-ea-2-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-3-jdk-windowsservercore-ltsc2025`, `26-ea-3-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-2-jdk-windowsservercore-ltsc2022`, `26-ea-2-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-3-jdk-windowsservercore-ltsc2022`, `26-ea-3-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-2-jdk-nanoserver-ltsc2025`, `26-ea-2-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-3-jdk-nanoserver-ltsc2025`, `26-ea-3-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-2-jdk-nanoserver-ltsc2022`, `26-ea-2-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-3-jdk-nanoserver-ltsc2022`, `26-ea-3-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-27-jdk-oraclelinux9`, `25-ea-27-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-27-jdk-oracle`, `25-ea-27-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-28-jdk-oraclelinux9`, `25-ea-28-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-28-jdk-oracle`, `25-ea-28-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-27-jdk-oraclelinux8`, `25-ea-27-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-28-jdk-oraclelinux8`, `25-ea-28-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-27-jdk-bookworm`, `25-ea-27-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/bookworm/Dockerfile) +- [`25-ea-28-jdk-bookworm`, `25-ea-28-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/bookworm/Dockerfile) -- [`25-ea-27-jdk-slim-bookworm`, `25-ea-27-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-27-jdk-slim`, `25-ea-27-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-28-jdk-slim-bookworm`, `25-ea-28-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-28-jdk-slim`, `25-ea-28-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-27-jdk-bullseye`, `25-ea-27-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/bullseye/Dockerfile) +- [`25-ea-28-jdk-bullseye`, `25-ea-28-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/bullseye/Dockerfile) -- [`25-ea-27-jdk-slim-bullseye`, `25-ea-27-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-28-jdk-slim-bullseye`, `25-ea-28-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-27-jdk-windowsservercore-ltsc2025`, `25-ea-27-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-28-jdk-windowsservercore-ltsc2025`, `25-ea-28-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-27-jdk-windowsservercore-ltsc2022`, `25-ea-27-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-28-jdk-windowsservercore-ltsc2022`, `25-ea-28-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-27-jdk-nanoserver-ltsc2025`, `25-ea-27-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-28-jdk-nanoserver-ltsc2025`, `25-ea-28-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-27-jdk-nanoserver-ltsc2022`, `25-ea-27-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-28-jdk-nanoserver-ltsc2022`, `25-ea-28-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-2-jdk`, `26-ea-2`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-3-jdk`, `26-ea-3`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-2-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-2-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-3-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-3-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-2-jdk-windowsservercore`, `26-ea-2-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-3-jdk-windowsservercore`, `26-ea-3-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-2-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-2-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-3-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-2-jdk-nanoserver`, `26-ea-2-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-3-jdk-nanoserver`, `26-ea-3-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-2-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-2-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b620ac8d237ffc31af5731ad0dd24d828180335/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-3-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-3-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-27-jdk`, `25-ea-27`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-28-jdk`, `25-ea-28`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-27-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-27-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-28-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-27-jdk-windowsservercore`, `25-ea-27-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-28-jdk-windowsservercore`, `25-ea-28-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-27-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-27-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-28-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-27-jdk-nanoserver`, `25-ea-27-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-28-jdk-nanoserver`, `25-ea-28-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-27-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-27-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/621893d1b0548ef67dd11b985f94528da3581942/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-28-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-28-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 39d0f69cc2398c93ff4e9ef236a1937a51d8e845 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jun 2025 06:10:20 -0700 Subject: [PATCH 2285/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 92f36a2bb743..9dc2147edf2a 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.16-bullseye-slim`, `22.16.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye-slim/Dockerfile) -- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.2-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/alpine3.21/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.3-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.2-alpine`, `20.19.2-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/20/alpine3.22/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.3-alpine`, `20.19.3-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/alpine3.22/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.2`, `20.19.2-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.3`, `20.19.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.2-bookworm-slim`, `20.19.2-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.3-bookworm-slim`, `20.19.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.2-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.2-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/a87fa26c1bb455170dac58c57c661e820a7390cb/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bullseye-slim/Dockerfile) # Quick reference (cont.) From 5e5ed25f8f4faa8540ddb80b20d2820372d85555 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jun 2025 10:09:55 -0700 Subject: [PATCH 2286/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index c72b8eb0d01f..0a4fd31e0eba 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.base) +- [`latest`, `base`, `base-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.base) -- [`base-devel`, `base-devel-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250615.0.365905`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/32394b3e1408dc4b6da04e3fb655160707e1db93/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.multilib-devel) # Quick reference (cont.) From b53f70ae7cc1e4b24dba185c0d79c79232bd192f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jun 2025 11:10:05 -0700 Subject: [PATCH 2287/2686] Run update.sh --- ghost/README.md | 4 +-- golang/README.md | 12 +++---- maven/README.md | 82 ++++++++++++++++++++++++------------------------ xwiki/README.md | 6 ++-- 4 files changed, 52 insertions(+), 52 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a0f16f0ebd6e..259ae5f8cbf0 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.126.1`, `5.126`, `5`, `latest`](https://github.com/docker-library/ghost/blob/cc4f5d9c4c7ad8cb61c9bcfae1db6740e8896613/5/debian/Dockerfile) +- [`5.127.0`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/473df34d83f857cd993c02574e6db4d8ce57fd1b/5/debian/Dockerfile) -- [`5.126.1-alpine`, `5.126-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/cc4f5d9c4c7ad8cb61c9bcfae1db6740e8896613/5/alpine/Dockerfile) +- [`5.127.0-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/473df34d83f857cd993c02574e6db4d8ce57fd1b/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 9dd6d95523b2..cac645a7cb91 100644 --- a/golang/README.md +++ b/golang/README.md @@ -72,13 +72,13 @@ WARNING: - [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250613-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bookworm/Dockerfile) +- [`tip-20250620-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bookworm/Dockerfile) -- [`tip-20250613-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bullseye/Dockerfile) +- [`tip-20250620-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bullseye/Dockerfile) -- [`tip-20250613-alpine3.22`, `tip-alpine3.22`, `tip-20250613-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/alpine3.22/Dockerfile) +- [`tip-20250620-alpine3.22`, `tip-alpine3.22`, `tip-20250620-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/alpine3.22/Dockerfile) -- [`tip-20250613-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/alpine3.21/Dockerfile) +- [`tip-20250620-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -125,9 +125,9 @@ WARNING: - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250613`, `tip`: +- `tip-20250620`, `tip`: - - [`tip-20250613-bookworm`](https://github.com/docker-library/golang/blob/0600de98a144e433e13617ec64523cb58ecd7bc0/tip/bookworm/Dockerfile) + - [`tip-20250620-bookworm`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 697c0886c75a..927382fc3201 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,87 +24,87 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.9-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11/Dockerfile) +- [`3.9.10-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11/Dockerfile) -- [`3.9.9-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.10-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-11-noble/Dockerfile) +- [`3.9.10-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11-noble/Dockerfile) -- [`3.9.9-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-17/Dockerfile) +- [`3.9.10-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17/Dockerfile) -- [`3.9.9-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.10-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-17-noble/Dockerfile) +- [`3.9.10-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17-noble/Dockerfile) -- [`3.9.9-eclipse-temurin-21`, `3.9.9`, `3.9.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21/Dockerfile) +- [`3.9.10-eclipse-temurin-21`, `3.9.10`, `3.9.10-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21/Dockerfile) -- [`3.9.9-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.10-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-21-noble/Dockerfile) +- [`3.9.10-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21-noble/Dockerfile) -- [`3.9.9-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24/Dockerfile) +- [`3.9.10-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24/Dockerfile) -- [`3.9.9-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24-alpine/Dockerfile) +- [`3.9.10-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/eclipse-temurin-24-noble/Dockerfile) +- [`3.9.10-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24-noble/Dockerfile) -- [`3.9.9-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8/Dockerfile) +- [`3.9.10-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8/Dockerfile) -- [`3.9.9-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.10-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.9-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/eclipse-temurin-8-noble/Dockerfile) +- [`3.9.10-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8-noble/Dockerfile) -- [`3.9.9-ibmjava-8`, `3.9.9-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/ibmjava-8/Dockerfile) +- [`3.9.10-ibmjava-8`, `3.9.10-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibmjava-8/Dockerfile) -- [`3.9.9-ibm-semeru-11-noble`, `3.9-ibm-semeru-11-noble`, `3-ibm-semeru-11-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-11-noble/Dockerfile) +- [`3.9.10-ibm-semeru-11-noble`, `3.9-ibm-semeru-11-noble`, `3-ibm-semeru-11-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-11-noble/Dockerfile) -- [`3.9.9-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-17-noble/Dockerfile) +- [`3.9.10-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-17-noble/Dockerfile) -- [`3.9.9-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/999b218fb0188c75751755c9cb1aebedecb70351/ibm-semeru-21-noble/Dockerfile) +- [`3.9.10-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-21-noble/Dockerfile) -- [`3.9.9-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11/Dockerfile) +- [`3.9.10-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11/Dockerfile) -- [`3.9.9-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.10-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-11-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-11-debian`, `3.9.9-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-11-debian/Dockerfile) +- [`3.9.10-amazoncorretto-11-debian`, `3.9.10-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-debian/Dockerfile) -- [`3.9.9-amazoncorretto-17`, `3.9.9-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17/Dockerfile) +- [`3.9.10-amazoncorretto-17`, `3.9.10-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17/Dockerfile) -- [`3.9.9-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.10-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-17-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-17-debian`, `3.9.9-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-17-debian/Dockerfile) +- [`3.9.10-amazoncorretto-17-debian`, `3.9.10-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-debian/Dockerfile) -- [`3.9.9-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21/Dockerfile) +- [`3.9.10-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21/Dockerfile) -- [`3.9.9-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.10-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-21-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-21-debian`, `3.9.9-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-21-debian/Dockerfile) +- [`3.9.10-amazoncorretto-21-debian`, `3.9.10-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-debian/Dockerfile) -- [`3.9.9-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/amazoncorretto-24/Dockerfile) +- [`3.9.10-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-24/Dockerfile) -- [`3.9.9-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/amazoncorretto-24-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-24-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8/Dockerfile) +- [`3.9.10-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8/Dockerfile) -- [`3.9.9-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.10-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.9-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/8db2ffe029454a39edce973ce06b21fcab59a4d5/amazoncorretto-8-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.9-amazoncorretto-8-debian`, `3.9.9-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/b5ddd7190544dd759fb71bf56b6105ffcf4ee6ad/amazoncorretto-8-debian/Dockerfile) +- [`3.9.10-amazoncorretto-8-debian`, `3.9.10-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-debian/Dockerfile) -- [`3.9.9-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-11/Dockerfile) +- [`3.9.10-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-11/Dockerfile) -- [`3.9.9-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-17/Dockerfile) +- [`3.9.10-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-17/Dockerfile) -- [`3.9.9-sapmachine-21`, `3.9.9-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/8cfe24baffa5b250f7bb2d31ce233fc28f3c4f20/sapmachine-21/Dockerfile) +- [`3.9.10-sapmachine-21`, `3.9.10-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-21/Dockerfile) -- [`3.9.9-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/289ad67772f6dfad22c5362b863a29ec7373f501/sapmachine-24/Dockerfile) +- [`3.9.10-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-24/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 2e20f0ac6532..1248d838a6b5 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.4-mariadb-tomcat`, `17.4.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.8`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.8-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.9`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.8-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.8-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/432858b827200132c33219374999c43a4a8d6f5b/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 56da84bb08a6e5d23d9f8649c3ac9f927b5e7518 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jun 2025 15:10:39 -0700 Subject: [PATCH 2288/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index f5bc8f365db9..6d245d4dedc9 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c5e3dc7bcc6279366885b846c5b732ba02316aa9/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.35/alpine/Dockerfile) # Quick reference (cont.) From a375e018e6bd486c85ab523508287b78f24178c2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 23 Jun 2025 16:10:18 -0700 Subject: [PATCH 2289/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/docker/README.md b/docker/README.md index c898f4c176ba..c08652ed247c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`28.3.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/cli/Dockerfile) +- [`28.3.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/cli/Dockerfile) -- [`28.3.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.1-dind-alpine3.22`, `28.3.0-rc.1`, `28-rc`, `rc`, `28.3.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind/Dockerfile) +- [`28.3.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.2-dind-alpine3.22`, `28.3.0-rc.2`, `28-rc`, `rc`, `28.3.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind/Dockerfile) -- [`28.3.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/76619ecee54053ecbbb38f1d4a8c5d40d3688b1c/28-rc/dind-rootless/Dockerfile) +- [`28.3.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind-rootless/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `28.3.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: +- `28.3.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.3.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/5b7a395945d5b13e906b42b6d7f878dc9a461a25/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: diff --git a/drupal/README.md b/drupal/README.md index 9c2724690f62..873979541a4e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.0-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.0-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.0-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.0-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.0-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.0`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.0-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.0-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.0-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.0-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.0-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.0`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.0-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.0-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.0-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.0-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.0-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.0-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.0-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.0-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.0-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.0-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/apache-bullseye/Dockerfile) +- [`11.2.0-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.0-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/apache-bullseye/Dockerfile) -- [`11.2.0-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.0-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.0-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.0-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-bullseye/Dockerfile) -- [`11.2.0-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.0-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.0-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.0-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.0-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.0-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.0-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.0-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.0-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.0-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.0-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.0-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.0-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.0-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.0-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.0-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.0-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.0-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.0-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.0-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.0-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.0-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.0-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/apache-bullseye/Dockerfile) +- [`11.2.0-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/apache-bullseye/Dockerfile) -- [`11.2.0-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.0-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-bullseye/Dockerfile) -- [`11.2.0-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.0-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.0-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.0-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.0-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3743e63f51c38309cf6b870c93517d66acbfcfd3/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.0-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bookworm/Dockerfile) - [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bullseye/Dockerfile) - [`11.1.8-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bullseye/Dockerfile) @@ -60,11 +60,11 @@ WARNING: - [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11.1.8`, `11.1`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11.1.8`, `11.1`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.3/apache-bookworm/Dockerfile) - [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`, `11.1.8-fpm`, `11.1-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.3/apache-bullseye/Dockerfile) - [`11.1.8-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11.1.8-fpm-bullseye`, `11.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bullseye/Dockerfile) @@ -72,11 +72,11 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.0-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.0-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.0-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.0-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.0-apache`, `10.5-apache`, `10-apache`, `10.5.0`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.0-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.0-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.0-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.0-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.0-apache`, `10.5-apache`, `10-apache`, `10.5.0`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.4/apache-bookworm/Dockerfile) - [`10.5.0-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.0-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.0-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.0-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.0-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.0-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/apache-bullseye/Dockerfile) +- [`10.5.0-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.0-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.4/apache-bullseye/Dockerfile) - [`10.5.0-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.0-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bullseye/Dockerfile) @@ -84,11 +84,11 @@ WARNING: - [`10.5.0-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.0-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.0-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.0-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.0-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.0-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.0-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.0-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.3/apache-bookworm/Dockerfile) - [`10.5.0-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.0-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.0-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/apache-bullseye/Dockerfile) +- [`10.5.0-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.3/apache-bullseye/Dockerfile) - [`10.5.0-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bullseye/Dockerfile) @@ -96,11 +96,11 @@ WARNING: - [`10.5.0-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bookworm/Dockerfile) - [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bullseye/Dockerfile) - [`10.4.8-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bullseye/Dockerfile) @@ -108,11 +108,11 @@ WARNING: - [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10.4.8`, `10.4`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10.4.8`, `10.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.3/apache-bookworm/Dockerfile) - [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`, `10.4.8-fpm`, `10.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.3/apache-bullseye/Dockerfile) - [`10.4.8-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10.4.8-fpm-bullseye`, `10.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bullseye/Dockerfile) From 6ecbd7957604c9f3409dbe50ce7e0997a41e5774 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Jun 2025 12:10:04 -0700 Subject: [PATCH 2290/2686] Run update.sh --- docker/README.md | 20 ++++++++++---------- ghost/README.md | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docker/README.md b/docker/README.md index c08652ed247c..2eb3dd400745 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`28.3.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/cli/Dockerfile) +- [`28.3.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/cli/Dockerfile) - [`28.3.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.2-dind-alpine3.22`, `28.3.0-rc.2`, `28-rc`, `rc`, `28.3.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind/Dockerfile) - [`28.3.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind-rootless/Dockerfile) -- [`28.3.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/cli/Dockerfile) +- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/cli/Dockerfile) - [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.3.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/c59f9ebaabd0350f4247a89bf021281dda9e587f/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 259ae5f8cbf0..68f8915b66e9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.127.0`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/473df34d83f857cd993c02574e6db4d8ce57fd1b/5/debian/Dockerfile) +- [`5.127.1`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e5986bd17ddf5261535448a549796c494b01cc82/5/debian/Dockerfile) -- [`5.127.0-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/473df34d83f857cd993c02574e6db4d8ce57fd1b/5/alpine/Dockerfile) +- [`5.127.1-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e5986bd17ddf5261535448a549796c494b01cc82/5/alpine/Dockerfile) # Quick reference (cont.) From 8406474645c4577d90c9743e3af73e46bf897290 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 24 Jun 2025 15:10:24 -0700 Subject: [PATCH 2291/2686] Run update.sh --- nginx/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 576035af8626..5ac5fc7c9fd5 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.27.5`, `mainline`, `1`, `1.27`, `latest`, `1.27.5-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.27-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/debian/Dockerfile) +- [`1.29.0`, `mainline`, `1`, `1.29`, `latest`, `1.29.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian/Dockerfile) -- [`1.27.5-perl`, `mainline-perl`, `1-perl`, `1.27-perl`, `perl`, `1.27.5-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.27-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/debian-perl/Dockerfile) +- [`1.29.0-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.29-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian-perl/Dockerfile) -- [`1.27.5-otel`, `mainline-otel`, `1-otel`, `1.27-otel`, `otel`, `1.27.5-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.27-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/4e08af2988063a3b02420ef0040e2e13fc9d93d6/mainline/debian-otel/Dockerfile) +- [`1.29.0-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.29-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian-otel/Dockerfile) -- [`1.27.5-alpine`, `mainline-alpine`, `1-alpine`, `1.27-alpine`, `alpine`, `1.27.5-alpine3.21`, `mainline-alpine3.21`, `1-alpine3.21`, `1.27-alpine3.21`, `alpine3.21`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine/Dockerfile) +- [`1.29.0-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.0-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine/Dockerfile) -- [`1.27.5-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.27-alpine-perl`, `alpine-perl`, `1.27.5-alpine3.21-perl`, `mainline-alpine3.21-perl`, `1-alpine3.21-perl`, `1.27-alpine3.21-perl`, `alpine3.21-perl`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine-perl/Dockerfile) +- [`1.29.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.0-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-perl/Dockerfile) -- [`1.27.5-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.27-alpine-slim`, `alpine-slim`, `1.27.5-alpine3.21-slim`, `mainline-alpine3.21-slim`, `1-alpine3.21-slim`, `1.27-alpine3.21-slim`, `alpine3.21-slim`](https://github.com/nginx/docker-nginx/blob/eaf8875a1967d24cea6ed8b37109075e39ed9e43/mainline/alpine-slim/Dockerfile) +- [`1.29.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.0-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-slim/Dockerfile) -- [`1.27.5-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.27-alpine-otel`, `alpine-otel`, `1.27.5-alpine3.21-otel`, `mainline-alpine3.21-otel`, `1-alpine3.21-otel`, `1.27-alpine3.21-otel`, `alpine3.21-otel`](https://github.com/nginx/docker-nginx/blob/4e08af2988063a3b02420ef0040e2e13fc9d93d6/mainline/alpine-otel/Dockerfile) +- [`1.29.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.0-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-otel/Dockerfile) - [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian/Dockerfile) From 57202870afa770ee144ae8c42fbf03ace20f5e8a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 09:09:54 -0700 Subject: [PATCH 2292/2686] Run update.sh --- node/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/node/README.md b/node/README.md index 9dc2147edf2a..c15872825974 100644 --- a/node/README.md +++ b/node/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.2-alpine3.21`, `24.2.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.3-alpine3.21`, `24.3.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.2-alpine`, `24.2-alpine3.22`, `24.2.0-alpine`, `24.2.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.3-alpine`, `24.3-alpine3.22`, `24.3.0-alpine`, `24.3.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.2`, `24.2-bookworm`, `24.2.0`, `24.2.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.3`, `24.3-bookworm`, `24.3.0`, `24.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.2-bookworm-slim`, `24.2-slim`, `24.2.0-bookworm-slim`, `24.2.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.3-bookworm-slim`, `24.3-slim`, `24.3.0-bookworm-slim`, `24.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.2-bullseye`, `24.2.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.3-bullseye`, `24.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.2-bullseye-slim`, `24.2.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/52a145e08a3c4e7b6e72addccc410e57530cd0c1/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.3-bullseye-slim`, `24.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bullseye-slim/Dockerfile) -- [`22-alpine3.21`, `22.16-alpine3.21`, `22.16.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.16-alpine`, `22.16-alpine3.22`, `22.16.0-alpine`, `22.16.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.0-alpine`, `22.17.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.16`, `22.16-bookworm`, `22.16.0`, `22.16.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.0`, `22.17.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.16-bookworm-slim`, `22.16-slim`, `22.16.0-bookworm-slim`, `22.16.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.0-bookworm-slim`, `22.17.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.16-bullseye`, `22.16.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.17-bullseye`, `22.17.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.16-bullseye-slim`, `22.16.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d073523fcb78049b965f76d813627eb59ffb7a58/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bullseye-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.3-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/alpine3.21/Dockerfile) From fe535f1baf44927d7b94c336acf160891c1bf4a2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 10:10:33 -0700 Subject: [PATCH 2293/2686] Run update.sh --- fedora/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index db64660e2371..4ddf01838dc8 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/5046bc9c0c11297c8cbaf01ca2e9f44f3e8f328b/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/61904d31c04e699d52ee3dc1e6ca3b5c3a204c8c/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/6da1eeae1c9c842f1afdf13abfc4eb5c1f330fdc/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/149f8b55d849edcd37656691785c1ca886208ce7/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/cf223078f50157bbf2b9b4206a3bbdac0a00f552/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1436e31a5c48859dd5a9a700d5172a8acdfa91a0/x86_64/Dockerfile) # Quick reference (cont.) From 3122d49950aad2d58e05852c15b5d85fde78a9da Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 11:10:19 -0700 Subject: [PATCH 2294/2686] Run update.sh --- alt/README.md | 6 +++--- docker/README.md | 31 ++++++++----------------------- drupal/README.md | 24 ++++++++++++------------ ghost/README.md | 4 ++-- swipl/README.md | 4 ++-- 5 files changed, 27 insertions(+), 42 deletions(-) diff --git a/alt/README.md b/alt/README.md index 9ef377cc7f2e..c2f4952359d3 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/141eb568487cf0a98374d173e8641a00e234459a/x86_64/Dockerfile) +- [`p10`](https://github.com/alt-cloud/docker-brew-alt/blob/4e761a7c575be581c7c1a18d10e30324858ae086/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/37a06effa12c3a7fae2ed60d6ae73da507ea1817/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/e5a536d9aed224ac6603ed7d721e08da20b48105/x86_64/Dockerfile) -- [`p11`](https://github.com/alt-cloud/docker-brew-alt/blob/73a73fc0c51684d2c1eee3b6640a6577a4bea19e/x86_64/Dockerfile) +- [`p11`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/6a48028d28b5fdfe83421ff08af1945ad97fcba2/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 2eb3dd400745..c59482979b2e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.3.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/cli/Dockerfile) +- [`28.3.0-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/cli/Dockerfile) -- [`28.3.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.3.0-rc.2-dind-alpine3.22`, `28.3.0-rc.2`, `28-rc`, `rc`, `28.3.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind/Dockerfile) +- [`28.3.0-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.0-dind-alpine3.22`, `28.3.0`, `28.3`, `28`, `latest`, `28.3.0-alpine3.22`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/dind/Dockerfile) -- [`28.3.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/eadb5343017e3b976c259cedf1af39b1cc6909f1/28-rc/dind-rootless/Dockerfile) +- [`28.3.0-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/dind-rootless/Dockerfile) -- [`28.3.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.2.2-cli`, `28.2-cli`, `28-cli`, `cli`, `28.2.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/cli/Dockerfile) - -- [`28.2.2-dind`, `28.2-dind`, `28-dind`, `dind`, `28.2.2-dind-alpine3.22`, `28.2.2`, `28.2`, `28`, `latest`, `28.2.2-alpine3.22`](https://github.com/docker-library/docker/blob/e9f3fbf07fb73d5266464f898f71510f25fa3266/28/dind/Dockerfile) - -- [`28.2.2-dind-rootless`, `28.2-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/ac216a48589a02162b04badf29b22a09ca5c9043/28/dind-rootless/Dockerfile) - -- [`28.2.2-windowsservercore-ltsc2025`, `28.2-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.2.2-windowsservercore-ltsc2022`, `28.2-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.3.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.3.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/e28be6fd6d4874a91cc287d7aa60b823d6a77a6b/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `28.2.2-windowsservercore`, `28.2-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.3.0-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.2.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.2.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2a67c3c8af5f43744b23408390280243830613d8/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/drupal/README.md b/drupal/README.md index 873979541a4e..dd9393140a4e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.0-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.0-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.0-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.0-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.0-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.0`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.1-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.1-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.1-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.1-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.1-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.1`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.0-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.0-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.0-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.0-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.1-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.1-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.1-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.1-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.0-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.0-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/apache-bullseye/Dockerfile) +- [`11.2.1-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.1-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/apache-bullseye/Dockerfile) -- [`11.2.0-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.0-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.1-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.1-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-bullseye/Dockerfile) -- [`11.2.0-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.0-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.0-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.0-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.1-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.1-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.1-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.1-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.0-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.0-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.1-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.1-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.0-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.0-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.0-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.1-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.1-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.1-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.0-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.0-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.1-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.1-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.0-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/apache-bullseye/Dockerfile) +- [`11.2.1-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/apache-bullseye/Dockerfile) -- [`11.2.0-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.1-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-bullseye/Dockerfile) -- [`11.2.0-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.0-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.1-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.1-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.0-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7eb8d68a4df0cd6315c107f5263fe791ebe31f72/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.1-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bookworm/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 68f8915b66e9..065f7992d351 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.127.1`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e5986bd17ddf5261535448a549796c494b01cc82/5/debian/Dockerfile) +- [`5.127.2`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e69077bccf7d6a25858805a6077320986dbae9f9/5/debian/Dockerfile) -- [`5.127.1-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e5986bd17ddf5261535448a549796c494b01cc82/5/alpine/Dockerfile) +- [`5.127.2-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e69077bccf7d6a25858805a6077320986dbae9f9/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 56dc8b89ef37..d515c11a85a4 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.23`](https://github.com/SWI-Prolog/docker-swipl/blob/b1a43b5121847a6ca5db26c4651149a1c813ae6a/9.3.23/bookworm/Dockerfile) +- [`latest`, `9.3.25`](https://github.com/SWI-Prolog/docker-swipl/blob/c074ca594a29bc53c06fac914f1f0217bb593352/9.3.25/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/b1a43b5121847a6ca5db26c4651149a1c813ae6a/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/c074ca594a29bc53c06fac914f1f0217bb593352/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 4b2a09847f05325fb75ce1d7fa102b94727180bc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 12:10:11 -0700 Subject: [PATCH 2295/2686] Run update.sh --- php/README.md | 168 +++++++++++++++++++++++++------------------------- 1 file changed, 84 insertions(+), 84 deletions(-) diff --git a/php/README.md b/php/README.md index 15dc4e144d52..14a6885b5ce7 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,173 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.9RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.9RC1-bookworm`, `8.4-rc-bookworm`, `8.4.9RC1-cli`, `8.4-rc-cli`, `8.4.9RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.9RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.9RC1-bookworm`, `8.4-rc-bookworm`, `8.4.9RC1-cli`, `8.4-rc-cli`, `8.4.9RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/cli/Dockerfile) -- [`8.4.9RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.9RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.9RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.9RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/apache/Dockerfile) -- [`8.4.9RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.9RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.9RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.9RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/fpm/Dockerfile) -- [`8.4.9RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.9RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.9RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.9RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/zts/Dockerfile) -- [`8.4.9RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.9RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.9RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.9RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/cli/Dockerfile) -- [`8.4.9RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.9RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/apache/Dockerfile) -- [`8.4.9RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.9RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/fpm/Dockerfile) -- [`8.4.9RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.9RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/zts/Dockerfile) -- [`8.4.9RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.9RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.9RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.9RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.9RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.9RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.9RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.9RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/cli/Dockerfile) -- [`8.4.9RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.9RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.9RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.9RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/fpm/Dockerfile) -- [`8.4.9RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.9RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.9RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.9RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/zts/Dockerfile) -- [`8.4.9RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.9RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.9RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.9RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/cli/Dockerfile) -- [`8.4.9RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.9RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/fpm/Dockerfile) -- [`8.4.9RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/85abdb7b2a40baabbb16397f21825283667e141d/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.9RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/zts/Dockerfile) -- [`8.4.8-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.8-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.8-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.8`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/cli/Dockerfile) +- [`8.4.8-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.8-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.8-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.8`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/cli/Dockerfile) -- [`8.4.8-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.8-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/apache/Dockerfile) +- [`8.4.8-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.8-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/apache/Dockerfile) -- [`8.4.8-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.8-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/fpm/Dockerfile) +- [`8.4.8-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.8-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/fpm/Dockerfile) -- [`8.4.8-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.8-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bookworm/zts/Dockerfile) +- [`8.4.8-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.8-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/zts/Dockerfile) -- [`8.4.8-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.8-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/cli/Dockerfile) +- [`8.4.8-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.8-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/cli/Dockerfile) -- [`8.4.8-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/apache/Dockerfile) +- [`8.4.8-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/apache/Dockerfile) -- [`8.4.8-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/fpm/Dockerfile) +- [`8.4.8-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/fpm/Dockerfile) -- [`8.4.8-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/bullseye/zts/Dockerfile) +- [`8.4.8-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/zts/Dockerfile) -- [`8.4.8-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.8-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.4/alpine3.22/cli/Dockerfile) +- [`8.4.8-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.8-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.4/alpine3.22/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.4/alpine3.22/zts/Dockerfile) +- [`8.4.8-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/cli/Dockerfile) +- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/fpm/Dockerfile) +- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/1b31e2e0cb2a9ad2cf0c198422be888bec840a59/8.4/alpine3.21/zts/Dockerfile) +- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/zts/Dockerfile) -- [`8.3.23RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.23RC1-bookworm`, `8.3-rc-bookworm`, `8.3.23RC1-cli`, `8.3-rc-cli`, `8.3.23RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.23RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.23RC1-bookworm`, `8.3-rc-bookworm`, `8.3.23RC1-cli`, `8.3-rc-cli`, `8.3.23RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/cli/Dockerfile) -- [`8.3.23RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.23RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.23RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.23RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/apache/Dockerfile) -- [`8.3.23RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.23RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.23RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.23RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/fpm/Dockerfile) -- [`8.3.23RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.23RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.23RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.23RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/zts/Dockerfile) -- [`8.3.23RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.23RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/cli/Dockerfile) +- [`8.3.23RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.23RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/cli/Dockerfile) -- [`8.3.23RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/apache/Dockerfile) +- [`8.3.23RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/apache/Dockerfile) -- [`8.3.23RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.3.23RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/fpm/Dockerfile) -- [`8.3.23RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/bullseye/zts/Dockerfile) +- [`8.3.23RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/zts/Dockerfile) -- [`8.3.23RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.23RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.23RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.23RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/cli/Dockerfile) +- [`8.3.23RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.23RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.23RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.23RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/cli/Dockerfile) -- [`8.3.23RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.23RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/fpm/Dockerfile) +- [`8.3.23RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.23RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/fpm/Dockerfile) -- [`8.3.23RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.23RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.22/zts/Dockerfile) +- [`8.3.23RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.23RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/zts/Dockerfile) -- [`8.3.23RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.23RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.3.23RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.23RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/cli/Dockerfile) -- [`8.3.23RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.3.23RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/fpm/Dockerfile) -- [`8.3.23RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/dc1039868fac5f6de8cc59192fd186532c522111/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.3.23RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/zts/Dockerfile) -- [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/cli/Dockerfile) +- [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/cli/Dockerfile) -- [`8.3.22-apache-bookworm`, `8.3-apache-bookworm`, `8.3.22-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/apache/Dockerfile) +- [`8.3.22-apache-bookworm`, `8.3-apache-bookworm`, `8.3.22-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/apache/Dockerfile) -- [`8.3.22-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.22-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/fpm/Dockerfile) +- [`8.3.22-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.22-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/fpm/Dockerfile) -- [`8.3.22-zts-bookworm`, `8.3-zts-bookworm`, `8.3.22-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bookworm/zts/Dockerfile) +- [`8.3.22-zts-bookworm`, `8.3-zts-bookworm`, `8.3.22-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/zts/Dockerfile) -- [`8.3.22-cli-bullseye`, `8.3-cli-bullseye`, `8.3.22-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/cli/Dockerfile) +- [`8.3.22-cli-bullseye`, `8.3-cli-bullseye`, `8.3.22-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/cli/Dockerfile) -- [`8.3.22-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/apache/Dockerfile) +- [`8.3.22-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/apache/Dockerfile) -- [`8.3.22-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/fpm/Dockerfile) +- [`8.3.22-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/fpm/Dockerfile) -- [`8.3.22-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/bullseye/zts/Dockerfile) +- [`8.3.22-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/zts/Dockerfile) -- [`8.3.22-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.22-alpine3.22`, `8.3-alpine3.22`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.3/alpine3.22/cli/Dockerfile) +- [`8.3.22-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.22-alpine3.22`, `8.3-alpine3.22`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.3/alpine3.22/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.3/alpine3.22/zts/Dockerfile) +- [`8.3.22-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/zts/Dockerfile) -- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/cli/Dockerfile) +- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/fpm/Dockerfile) +- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/e055cc2b6c4df1b306c59eddb6612bcc4e816c5c/8.3/alpine3.21/zts/Dockerfile) +- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/zts/Dockerfile) -- [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/cli/Dockerfile) +- [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/cli/Dockerfile) -- [`8.2.28-apache-bookworm`, `8.2-apache-bookworm`, `8.2.28-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/apache/Dockerfile) +- [`8.2.28-apache-bookworm`, `8.2-apache-bookworm`, `8.2.28-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/apache/Dockerfile) -- [`8.2.28-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.28-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/fpm/Dockerfile) +- [`8.2.28-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.28-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/fpm/Dockerfile) -- [`8.2.28-zts-bookworm`, `8.2-zts-bookworm`, `8.2.28-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bookworm/zts/Dockerfile) +- [`8.2.28-zts-bookworm`, `8.2-zts-bookworm`, `8.2.28-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/zts/Dockerfile) -- [`8.2.28-cli-bullseye`, `8.2-cli-bullseye`, `8.2.28-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/cli/Dockerfile) +- [`8.2.28-cli-bullseye`, `8.2-cli-bullseye`, `8.2.28-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/cli/Dockerfile) -- [`8.2.28-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/apache/Dockerfile) +- [`8.2.28-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/apache/Dockerfile) -- [`8.2.28-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/fpm/Dockerfile) +- [`8.2.28-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/fpm/Dockerfile) -- [`8.2.28-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/bullseye/zts/Dockerfile) +- [`8.2.28-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/zts/Dockerfile) -- [`8.2.28-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.28-alpine3.22`, `8.2-alpine3.22`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.2/alpine3.22/cli/Dockerfile) +- [`8.2.28-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.28-alpine3.22`, `8.2-alpine3.22`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/cli/Dockerfile) -- [`8.2.28-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.2/alpine3.22/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/fpm/Dockerfile) -- [`8.2.28-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.2/alpine3.22/zts/Dockerfile) +- [`8.2.28-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/zts/Dockerfile) -- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/cli/Dockerfile) +- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/cli/Dockerfile) -- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/fpm/Dockerfile) +- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/fpm/Dockerfile) -- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/1d34ec5ee5ce9fa76a776c039a9f98533cc096f8/8.2/alpine3.21/zts/Dockerfile) +- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/zts/Dockerfile) -- [`8.1.32-cli-bookworm`, `8.1-cli-bookworm`, `8.1.32-bookworm`, `8.1-bookworm`, `8.1.32-cli`, `8.1-cli`, `8.1.32`, `8.1`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/cli/Dockerfile) +- [`8.1.32-cli-bookworm`, `8.1-cli-bookworm`, `8.1.32-bookworm`, `8.1-bookworm`, `8.1.32-cli`, `8.1-cli`, `8.1.32`, `8.1`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/cli/Dockerfile) -- [`8.1.32-apache-bookworm`, `8.1-apache-bookworm`, `8.1.32-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/apache/Dockerfile) +- [`8.1.32-apache-bookworm`, `8.1-apache-bookworm`, `8.1.32-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/apache/Dockerfile) -- [`8.1.32-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.32-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/fpm/Dockerfile) +- [`8.1.32-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.32-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/fpm/Dockerfile) -- [`8.1.32-zts-bookworm`, `8.1-zts-bookworm`, `8.1.32-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bookworm/zts/Dockerfile) +- [`8.1.32-zts-bookworm`, `8.1-zts-bookworm`, `8.1.32-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/zts/Dockerfile) -- [`8.1.32-cli-bullseye`, `8.1-cli-bullseye`, `8.1.32-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/cli/Dockerfile) +- [`8.1.32-cli-bullseye`, `8.1-cli-bullseye`, `8.1.32-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/cli/Dockerfile) -- [`8.1.32-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/apache/Dockerfile) +- [`8.1.32-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/apache/Dockerfile) -- [`8.1.32-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/fpm/Dockerfile) +- [`8.1.32-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/fpm/Dockerfile) -- [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/bullseye/zts/Dockerfile) +- [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/zts/Dockerfile) -- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/cli/Dockerfile) +- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/904a84a176cea22942566d52335794314c3b2aed/8.1/alpine3.22/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/9c90483c2bb64195cc9c55cb06a4830955015830/8.1/alpine3.22/zts/Dockerfile) +- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/zts/Dockerfile) -- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/cli/Dockerfile) +- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/cli/Dockerfile) -- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/fpm/Dockerfile) +- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/fpm/Dockerfile) -- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/aada98fe2ddd5df2b73e25ecf552c954b299f928/8.1/alpine3.21/zts/Dockerfile) +- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/zts/Dockerfile) # Quick reference (cont.) From d978d28428507e4c2c91b45ef969f5ed8845eae4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 13:10:00 -0700 Subject: [PATCH 2296/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 40f02a431059..0ba5511852f1 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/7f68a61d5c74c5c6ed1b75ba0f114b98cd2f304d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7-slim-fips/Dockerfile) # Quick reference (cont.) From 10da78f30be5a39d59a288c6e4c72f7315ba718d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 25 Jun 2025 17:10:11 -0700 Subject: [PATCH 2297/2686] Run update.sh --- influxdb/README.md | 28 ++++++++++++++-------------- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 42e1545d9884..08e2fc855058 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.1-core`, `3.1.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/3.1-core/Dockerfile) +- [`3-core`, `3.2-core`, `3.2.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/3.2-core/Dockerfile) -- [`3-enterprise`, `3.1-enterprise`, `3.1.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/063caa0d729da41b70760c8f7362345f1bb79779/influxdb/3.1-enterprise/Dockerfile) +- [`3-enterprise`, `3.2-enterprise`, `3.2.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/3.2-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0ba5511852f1..f7ba80bd54dc 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/595d60b2a49570b4ab0b3057a029c72f28a34723/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7-slim-fips/Dockerfile) # Quick reference (cont.) From bb6c2155f3d8bf485cae17caeb312d37a6f2be18 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Thu, 26 Jun 2025 11:48:21 +0200 Subject: [PATCH 2298/2686] Add .gitattributes: Ensure Unix line endings for text files On Windows, Git may be configured to checkout LF line endings as CRLF, but this breaks shell scripts. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000000..6313b56c5784 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf From cadd2cd3fbe1cf618f045cb057599ae2b784f0ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jun 2025 12:10:09 -0700 Subject: [PATCH 2299/2686] Run update.sh --- arangodb/README.md | 4 +--- friendica/README.md | 6 ++++++ rust/README.md | 14 +++++++------- traefik/README.md | 18 ++++++++++++------ 4 files changed, 26 insertions(+), 16 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index a3fd8b4a815c..150fc87f6b64 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.11`, `3.11.14`](https://github.com/arangodb/arangodb-docker/blob/8b486ff8c7b63e75c19f2bee37b756e9c0ba620f/alpine/3.11.14/Dockerfile) - -- [`3.12`, `3.12.4.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/351d27922fd2060deb86a76a26a99ff1bb2f3c12/alpine/3.12.4.3/Dockerfile) +- [`3.12`, `3.12.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/4b0e7ca61aaaa24cf0d65d1ff96ed6068bcf5e9a/alpine/3.12.5/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index bad7d24136c0..a7c1d9baa6ee 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,6 +36,12 @@ WARNING: - [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/apache/Dockerfile) + +- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/fpm/Dockerfile) + +- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/rust/README.md b/rust/README.md index fdbd907d1fdd..3399c67d05c5 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.87-bullseye`, `1.87.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.88-bullseye`, `1.88.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.87-slim-bullseye`, `1.87.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.88-slim-bullseye`, `1.88.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.87-bookworm`, `1.87.0-bookworm`, `bookworm`, `1`, `1.87`, `1.87.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.88-bookworm`, `1.88.0-bookworm`, `bookworm`, `1`, `1.88`, `1.88.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.87-slim-bookworm`, `1.87.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.87-slim`, `1.87.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.88-slim-bookworm`, `1.88.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.88-slim`, `1.88.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bookworm/slim/Dockerfile) -- [`1-alpine3.20`, `1.87-alpine3.20`, `1.87.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.88-alpine3.20`, `1.88.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.87-alpine3.21`, `1.87.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/dfb10b7de9b61ced7cd6eb3907815cadbc6f16c3/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.88-alpine3.21`, `1.88.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.87-alpine3.22`, `1.87.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.87-alpine`, `1.87.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/311332e026a7a603ccb2e7d8f9eb0117615f49df/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.88-alpine3.22`, `1.88.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.88-alpine`, `1.88.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.22/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 5eff2f5a8971..a0c5daec68a0 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,17 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.4.1-windowsservercore-ltsc2022`, `3.4.1-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.0-rc1-windowsservercore-ltsc2022`, `3.5.0-rc1-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.1-nanoserver-ltsc2022`, `3.4.1-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.0-rc1-nanoserver-ltsc2022`, `3.5.0-rc1-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.1`, `3.4.1`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/19c7156de69c027a199d78d77efc7285d9cca13e/v3.4/alpine/Dockerfile) +- [`v3.5.0-rc1`, `3.5.0-rc1`, `chabichou`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/alpine/Dockerfile) -- [`v2.11.25-windowsservercore-ltsc2022`, `2.11.25-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.3-windowsservercore-ltsc2022`, `3.4.3-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.25-nanoserver-ltsc2022`, `2.11.25-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.3-nanoserver-ltsc2022`, `3.4.3-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.25`, `2.11.25`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/8deaff57a2d889d1198c81e081cb0fdb6819c12a/v2.11/alpine/Dockerfile) +- [`v3.4.3`, `3.4.3`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/alpine/Dockerfile) + +- [`v2.11.26-windowsservercore-ltsc2022`, `2.11.26-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/windows/servercore-ltsc2022/Dockerfile) + +- [`v2.11.26-nanoserver-ltsc2022`, `2.11.26-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + +- [`v2.11.26`, `2.11.26`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/alpine/Dockerfile) # Quick reference (cont.) From d2047478182a0149a8173cedde9e29bf82de92ae Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jun 2025 13:10:11 -0700 Subject: [PATCH 2300/2686] Run update.sh --- drupal/README.md | 48 +++++++++++++++++++++++------------------------ haproxy/README.md | 4 ++-- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index dd9393140a4e..31c90b49854f 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.1-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.1-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.1-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.1-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.1-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.1`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.2-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.2-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.2-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.2-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.2-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.2`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.1-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.1-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.1-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.1-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.2-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.2-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.2-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.2-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.1-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.1-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/apache-bullseye/Dockerfile) +- [`11.2.2-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.2-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/apache-bullseye/Dockerfile) -- [`11.2.1-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.1-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.2-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.2-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-bullseye/Dockerfile) -- [`11.2.1-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.1-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.1-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.1-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.2-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.2-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.2-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.2-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.1-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.1-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.2-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.2-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.1-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.1-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.1-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.2-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.2-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.2-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.1-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.1-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.2-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.2-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.1-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/apache-bullseye/Dockerfile) +- [`11.2.2-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/apache-bullseye/Dockerfile) -- [`11.2.1-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.2-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-bullseye/Dockerfile) -- [`11.2.1-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.1-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.2-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.2-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.1-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/34e0cf5dbc6a69ffe005f5f069a67f9e62918286/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.2-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bookworm/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.0-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.0-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.0-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.0-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.0-apache`, `10.5-apache`, `10-apache`, `10.5.0`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.1-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.1-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.1-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.1-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.1-apache`, `10.5-apache`, `10-apache`, `10.5.1`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.0-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.0-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.0-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.0-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.1-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.1-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.1-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.1-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.0-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.0-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.4/apache-bullseye/Dockerfile) +- [`10.5.1-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.1-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/apache-bullseye/Dockerfile) -- [`10.5.0-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.0-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-bullseye/Dockerfile) +- [`10.5.1-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.1-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-bullseye/Dockerfile) -- [`10.5.0-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.0-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.0-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.0-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.1-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.1-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.1-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.1-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.0-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.0-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.1-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.1-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.0-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.0-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.0-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.1-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.1-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.1-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.0-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.0-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.1-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.1-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.0-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.5/php8.3/apache-bullseye/Dockerfile) +- [`10.5.1-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/apache-bullseye/Dockerfile) -- [`10.5.0-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-bullseye/Dockerfile) +- [`10.5.1-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-bullseye/Dockerfile) -- [`10.5.0-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.0-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.1-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.1-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.0-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/af2f38b80e7ce01570341323d166dba5785f7cc6/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.1-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-alpine3.21/Dockerfile) - [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bookworm/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index c790b7124de1..78f159698c91 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev1`, `3.3-dev`, `3.3-dev1-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/44e407b80e8a05deb563724d1118d9efebf79e06/3.3/Dockerfile) +- [`3.3-dev2`, `3.3-dev`, `3.3-dev2-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/Dockerfile) -- [`3.3-dev1-alpine`, `3.3-dev-alpine`, `3.3-dev1-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/44e407b80e8a05deb563724d1118d9efebf79e06/3.3/alpine/Dockerfile) +- [`3.3-dev2-alpine`, `3.3-dev-alpine`, `3.3-dev2-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/alpine/Dockerfile) - [`3.2.1`, `3.2`, `latest`, `lts`, `3.2.1-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/e57bdf9982a76d5391e3f40eec41ae0c6c477ae0/3.2/Dockerfile) From 3f2376130b260ca9d715badc799193cb310e978e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jun 2025 14:10:11 -0700 Subject: [PATCH 2301/2686] Run update.sh --- nats/README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/nats/README.md b/nats/README.md index a2c2bf206d2b..46a593e839d4 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.4-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.4-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/alpine3.22/Dockerfile) +- [`2.11.5-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.5-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/alpine3.22/Dockerfile) -- [`2.11.4-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.4-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/scratch/Dockerfile) +- [`2.11.5-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.5-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/scratch/Dockerfile) -- [`2.11.4-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.5-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.4-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.5-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.4`, `2.11`, `2`, `latest`: +- `2.11.5`, `2.11`, `2`, `latest`: - - [`2.11.4-scratch`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/scratch/Dockerfile) - - [`2.11.4-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.5-scratch`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/scratch/Dockerfile) + - [`2.11.5-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.4-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.5-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.4-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.5-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.4-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.5-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.4-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.5-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/09997444258bc1900ab5db78dd781915eed04885/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 2daa959e947683b815944412c0f60d6a1e932fee Mon Sep 17 00:00:00 2001 From: Simran Date: Thu, 26 Jun 2025 23:18:27 +0200 Subject: [PATCH 2302/2686] ArangoDB: Slightly update license and setting the language (#2587) --- arangodb/content.md | 6 +++--- arangodb/license.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arangodb/content.md b/arangodb/content.md index 159a5569c66f..2cc2b4a207b0 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -49,11 +49,11 @@ docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: -- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. +- From v3.12.2 onward: Append the `--icu-language` startup option to the end of the Docker command, like `docker run ... %%IMAGE%% --icu-language sv` for a Swedish locale. -- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv`. -Note that you cannot set the language using only a startup option on the command-line, like `docker run ... %%IMAGE%% --icu-language sv`. +- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. If you don't specify a language explicitly, the default is `en_US` up to ArangoDB v3.11 and `en_US_POSIX` from ArangoDB v3.12 onward. diff --git a/arangodb/license.md b/arangodb/license.md index 0bd79adbca15..8e8b5b9a6a41 100644 --- a/arangodb/license.md +++ b/arangodb/license.md @@ -1,4 +1,4 @@ -The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. It does not include the right to distribute, embed within other products, or combine with ArangoDB's Enterprise Edition of the software. The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. From 92711a747f1f2ac8a3a75fbd978386344f805390 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jun 2025 15:10:37 -0700 Subject: [PATCH 2303/2686] Run update.sh --- arangodb/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 150fc87f6b64..6395bbd8081f 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -96,11 +96,11 @@ docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: -- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. +- From v3.12.2 onward: Append the `--icu-language` startup option to the end of the Docker command, like `docker run ... arangodb --icu-language sv` for a Swedish locale. -- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv`. -Note that you cannot set the language using only a startup option on the command-line, like `docker run ... arangodb --icu-language sv`. +- Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. If you don't specify a language explicitly, the default is `en_US` up to ArangoDB v3.11 and `en_US_POSIX` from ArangoDB v3.12 onward. @@ -266,7 +266,7 @@ When deriving the image, you can control the instantiation via putting files int # License -The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. +The official Docker images of the ArangoDB Community Edition are governed by the [ArangoDB Community License](https://arangodb.com/community-license/). It limits deployments to a 100 GB on dataset size in production and you cannot use it for any commercial purposes, only internal business purposes. It does not include the right to distribute, embed within other products, or combine with ArangoDB's Enterprise Edition of the software. The source code of the Community Edition is available under the [Business Source License 1.1 (BUSL-1.1)](https://github.com/arangodb/arangodb/blob/devel/LICENSE). Copying, modification, redistribution, non-commercial use, and commercial use in a non-production context are always allowed. Additionally, you can deploy BUSL-licensed ArangoDB source code for any purpose (including production) as long as you are not creating a commercial derivative work or offering, or are including it in a commercial product, application, or service. On the fourth anniversary of the first publicly available distribution of a specific version, the license changes to the permissive Apache 2.0 open-source license. From ac9dfe1ec3e968cebe75d035aacb6f8dad7a189c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Jun 2025 18:10:01 -0700 Subject: [PATCH 2304/2686] Run update.sh --- tomee/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tomee/README.md b/tomee/README.md index 49e7dccafbc5..8812f36bb39a 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.0.1-jre21-Temurin-ubuntu-microprofile`, `10.0.1-Temurin-ubuntu-microprofile`, `10.0.1-jre21-ubuntu-microprofile`, `10.0.1-ubuntu-microprofile`, `10.0.1-jre21-Temurin-microprofile`, `10.0.1-Temurin-microprofile`, `10.0.1-jre21-microprofile`, `10.0.1-microprofile`, `10.0.1-jre21-Temurin-ubuntu`, `10.0.1-Temurin-ubuntu`, `10.0.1-jre21-ubuntu`, `10.0.1-ubuntu`, `10.0.1-jre21-Temurin`, `10.0.1-Temurin`, `10.0.1-jre21`, `10.0.1`, `10.0-jre21-Temurin-ubuntu-microprofile`, `10.0-Temurin-ubuntu-microprofile`, `10.0-jre21-ubuntu-microprofile`, `10.0-ubuntu-microprofile`, `10.0-jre21-Temurin-microprofile`, `10.0-Temurin-microprofile`, `10.0-jre21-microprofile`, `10.0-microprofile`, `10.0-jre21-Temurin-ubuntu`, `10.0-Temurin-ubuntu`, `10.0-jre21-ubuntu`, `10.0-ubuntu`, `10.0-jre21-Temurin`, `10.0-Temurin`, `10.0-jre21`, `10.0`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.0-jre21-Temurin-ubuntu-microprofile`, `10.1.0-Temurin-ubuntu-microprofile`, `10.1.0-jre21-ubuntu-microprofile`, `10.1.0-ubuntu-microprofile`, `10.1.0-jre21-Temurin-microprofile`, `10.1.0-Temurin-microprofile`, `10.1.0-jre21-microprofile`, `10.1.0-microprofile`, `10.1.0-jre21-Temurin-ubuntu`, `10.1.0-Temurin-ubuntu`, `10.1.0-jre21-ubuntu`, `10.1.0-ubuntu`, `10.1.0-jre21-Temurin`, `10.1.0-Temurin`, `10.1.0-jre21`, `10.1.0`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.1-jre21-Temurin-ubuntu-plume`, `10.0.1-Temurin-ubuntu-plume`, `10.0.1-jre21-ubuntu-plume`, `10.0.1-ubuntu-plume`, `10.0.1-jre21-Temurin-plume`, `10.0.1-Temurin-plume`, `10.0.1-jre21-plume`, `10.0.1-plume`, `10.0-jre21-Temurin-ubuntu-plume`, `10.0-Temurin-ubuntu-plume`, `10.0-jre21-ubuntu-plume`, `10.0-ubuntu-plume`, `10.0-jre21-Temurin-plume`, `10.0-Temurin-plume`, `10.0-jre21-plume`, `10.0-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.0-jre21-Temurin-ubuntu-plume`, `10.1.0-Temurin-ubuntu-plume`, `10.1.0-jre21-ubuntu-plume`, `10.1.0-ubuntu-plume`, `10.1.0-jre21-Temurin-plume`, `10.1.0-Temurin-plume`, `10.1.0-jre21-plume`, `10.1.0-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.1-jre21-Temurin-ubuntu-plus`, `10.0.1-Temurin-ubuntu-plus`, `10.0.1-jre21-ubuntu-plus`, `10.0.1-ubuntu-plus`, `10.0.1-jre21-Temurin-plus`, `10.0.1-Temurin-plus`, `10.0.1-jre21-plus`, `10.0.1-plus`, `10.0-jre21-Temurin-ubuntu-plus`, `10.0-Temurin-ubuntu-plus`, `10.0-jre21-ubuntu-plus`, `10.0-ubuntu-plus`, `10.0-jre21-Temurin-plus`, `10.0-Temurin-plus`, `10.0-jre21-plus`, `10.0-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.0-jre21-Temurin-ubuntu-plus`, `10.1.0-Temurin-ubuntu-plus`, `10.1.0-jre21-ubuntu-plus`, `10.1.0-ubuntu-plus`, `10.1.0-jre21-Temurin-plus`, `10.1.0-Temurin-plus`, `10.1.0-jre21-plus`, `10.1.0-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.1-jre21-Temurin-ubuntu-webprofile`, `10.0.1-Temurin-ubuntu-webprofile`, `10.0.1-jre21-ubuntu-webprofile`, `10.0.1-ubuntu-webprofile`, `10.0.1-jre21-Temurin-webprofile`, `10.0.1-Temurin-webprofile`, `10.0.1-jre21-webprofile`, `10.0.1-webprofile`, `10.0-jre21-Temurin-ubuntu-webprofile`, `10.0-Temurin-ubuntu-webprofile`, `10.0-jre21-ubuntu-webprofile`, `10.0-ubuntu-webprofile`, `10.0-jre21-Temurin-webprofile`, `10.0-Temurin-webprofile`, `10.0-jre21-webprofile`, `10.0-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.0-jre21-Temurin-ubuntu-webprofile`, `10.1.0-Temurin-ubuntu-webprofile`, `10.1.0-jre21-ubuntu-webprofile`, `10.1.0-ubuntu-webprofile`, `10.1.0-jre21-Temurin-webprofile`, `10.1.0-Temurin-webprofile`, `10.1.0-jre21-webprofile`, `10.1.0-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.1-jre21-Temurin-alpine-microprofile`, `10.0.1-Temurin-alpine-microprofile`, `10.0.1-jre21-alpine-microprofile`, `10.0.1-alpine-microprofile`, `10.0.1-jre21-Temurin-alpine`, `10.0.1-Temurin-alpine`, `10.0.1-jre21-alpine`, `10.0.1-alpine`, `10.0-jre21-Temurin-alpine-microprofile`, `10.0-Temurin-alpine-microprofile`, `10.0-jre21-alpine-microprofile`, `10.0-alpine-microprofile`, `10.0-jre21-Temurin-alpine`, `10.0-Temurin-alpine`, `10.0-jre21-alpine`, `10.0-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.0-jre21-Temurin-alpine-microprofile`, `10.1.0-Temurin-alpine-microprofile`, `10.1.0-jre21-alpine-microprofile`, `10.1.0-alpine-microprofile`, `10.1.0-jre21-Temurin-alpine`, `10.1.0-Temurin-alpine`, `10.1.0-jre21-alpine`, `10.1.0-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.1-jre21-Temurin-alpine-plume`, `10.0.1-Temurin-alpine-plume`, `10.0.1-jre21-alpine-plume`, `10.0.1-alpine-plume`, `10.0-jre21-Temurin-alpine-plume`, `10.0-Temurin-alpine-plume`, `10.0-jre21-alpine-plume`, `10.0-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/plume/Dockerfile) +- [`10.1.0-jre21-Temurin-alpine-plume`, `10.1.0-Temurin-alpine-plume`, `10.1.0-jre21-alpine-plume`, `10.1.0-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) -- [`10.0.1-jre21-Temurin-alpine-plus`, `10.0.1-Temurin-alpine-plus`, `10.0.1-jre21-alpine-plus`, `10.0.1-alpine-plus`, `10.0-jre21-Temurin-alpine-plus`, `10.0-Temurin-alpine-plus`, `10.0-jre21-alpine-plus`, `10.0-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/plus/Dockerfile) +- [`10.1.0-jre21-Temurin-alpine-plus`, `10.1.0-Temurin-alpine-plus`, `10.1.0-jre21-alpine-plus`, `10.1.0-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) -- [`10.0.1-jre21-Temurin-alpine-webprofile`, `10.0.1-Temurin-alpine-webprofile`, `10.0.1-jre21-alpine-webprofile`, `10.0.1-alpine-webprofile`, `10.0-jre21-Temurin-alpine-webprofile`, `10.0-Temurin-alpine-webprofile`, `10.0-jre21-alpine-webprofile`, `10.0-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.0-jre21-Temurin-alpine-webprofile`, `10.1.0-Temurin-alpine-webprofile`, `10.1.0-jre21-alpine-webprofile`, `10.1.0-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.1-jre21-Semeru-ubuntu-microprofile`, `10.0.1-Semeru-ubuntu-microprofile`, `10.0.1-jre21-Semeru-microprofile`, `10.0.1-Semeru-microprofile`, `10.0.1-jre21-Semeru-ubuntu`, `10.0.1-Semeru-ubuntu`, `10.0.1-jre21-Semeru`, `10.0.1-Semeru`, `10.0-jre21-Semeru-ubuntu-microprofile`, `10.0-Semeru-ubuntu-microprofile`, `10.0-jre21-Semeru-microprofile`, `10.0-Semeru-microprofile`, `10.0-jre21-Semeru-ubuntu`, `10.0-Semeru-ubuntu`, `10.0-jre21-Semeru`, `10.0-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.0-jre21-Semeru-ubuntu-microprofile`, `10.1.0-Semeru-ubuntu-microprofile`, `10.1.0-jre21-Semeru-microprofile`, `10.1.0-Semeru-microprofile`, `10.1.0-jre21-Semeru-ubuntu`, `10.1.0-Semeru-ubuntu`, `10.1.0-jre21-Semeru`, `10.1.0-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.1-jre21-Semeru-ubuntu-plume`, `10.0.1-Semeru-ubuntu-plume`, `10.0.1-jre21-Semeru-plume`, `10.0.1-Semeru-plume`, `10.0-jre21-Semeru-ubuntu-plume`, `10.0-Semeru-ubuntu-plume`, `10.0-jre21-Semeru-plume`, `10.0-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.0-jre21-Semeru-ubuntu-plume`, `10.1.0-Semeru-ubuntu-plume`, `10.1.0-jre21-Semeru-plume`, `10.1.0-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.1-jre21-Semeru-ubuntu-plus`, `10.0.1-Semeru-ubuntu-plus`, `10.0.1-jre21-Semeru-plus`, `10.0.1-Semeru-plus`, `10.0-jre21-Semeru-ubuntu-plus`, `10.0-Semeru-ubuntu-plus`, `10.0-jre21-Semeru-plus`, `10.0-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.0-jre21-Semeru-ubuntu-plus`, `10.1.0-Semeru-ubuntu-plus`, `10.1.0-jre21-Semeru-plus`, `10.1.0-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.1-jre21-Semeru-ubuntu-webprofile`, `10.0.1-Semeru-ubuntu-webprofile`, `10.0.1-jre21-Semeru-webprofile`, `10.0.1-Semeru-webprofile`, `10.0-jre21-Semeru-ubuntu-webprofile`, `10.0-Semeru-ubuntu-webprofile`, `10.0-jre21-Semeru-webprofile`, `10.0-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre21/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.0-jre21-Semeru-ubuntu-webprofile`, `10.1.0-Semeru-ubuntu-webprofile`, `10.1.0-jre21-Semeru-webprofile`, `10.1.0-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.0.1-jre17-Temurin-ubuntu-microprofile`, `10.0.1-jre17-ubuntu-microprofile`, `10.0.1-jre17-Temurin-microprofile`, `10.0.1-jre17-microprofile`, `10.0.1-jre17-Temurin-ubuntu`, `10.0.1-jre17-ubuntu`, `10.0.1-jre17-Temurin`, `10.0.1-jre17`, `10.0-jre17-Temurin-ubuntu-microprofile`, `10.0-jre17-ubuntu-microprofile`, `10.0-jre17-Temurin-microprofile`, `10.0-jre17-microprofile`, `10.0-jre17-Temurin-ubuntu`, `10.0-jre17-ubuntu`, `10.0-jre17-Temurin`, `10.0-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.0-jre17-Temurin-ubuntu-microprofile`, `10.1.0-jre17-ubuntu-microprofile`, `10.1.0-jre17-Temurin-microprofile`, `10.1.0-jre17-microprofile`, `10.1.0-jre17-Temurin-ubuntu`, `10.1.0-jre17-ubuntu`, `10.1.0-jre17-Temurin`, `10.1.0-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.0.1-jre17-Temurin-ubuntu-plume`, `10.0.1-jre17-ubuntu-plume`, `10.0.1-jre17-Temurin-plume`, `10.0.1-jre17-plume`, `10.0-jre17-Temurin-ubuntu-plume`, `10.0-jre17-ubuntu-plume`, `10.0-jre17-Temurin-plume`, `10.0-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.0-jre17-Temurin-ubuntu-plume`, `10.1.0-jre17-ubuntu-plume`, `10.1.0-jre17-Temurin-plume`, `10.1.0-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.0.1-jre17-Temurin-ubuntu-plus`, `10.0.1-jre17-ubuntu-plus`, `10.0.1-jre17-Temurin-plus`, `10.0.1-jre17-plus`, `10.0-jre17-Temurin-ubuntu-plus`, `10.0-jre17-ubuntu-plus`, `10.0-jre17-Temurin-plus`, `10.0-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.0-jre17-Temurin-ubuntu-plus`, `10.1.0-jre17-ubuntu-plus`, `10.1.0-jre17-Temurin-plus`, `10.1.0-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.0.1-jre17-Temurin-ubuntu-webprofile`, `10.0.1-jre17-ubuntu-webprofile`, `10.0.1-jre17-Temurin-webprofile`, `10.0.1-jre17-webprofile`, `10.0-jre17-Temurin-ubuntu-webprofile`, `10.0-jre17-ubuntu-webprofile`, `10.0-jre17-Temurin-webprofile`, `10.0-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.0-jre17-Temurin-ubuntu-webprofile`, `10.1.0-jre17-ubuntu-webprofile`, `10.1.0-jre17-Temurin-webprofile`, `10.1.0-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.0.1-jre17-Temurin-alpine-microprofile`, `10.0.1-jre17-alpine-microprofile`, `10.0.1-jre17-Temurin-alpine`, `10.0.1-jre17-alpine`, `10.0-jre17-Temurin-alpine-microprofile`, `10.0-jre17-alpine-microprofile`, `10.0-jre17-Temurin-alpine`, `10.0-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.0-jre17-Temurin-alpine-microprofile`, `10.1.0-jre17-alpine-microprofile`, `10.1.0-jre17-Temurin-alpine`, `10.1.0-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.0.1-jre17-Temurin-alpine-plume`, `10.0.1-jre17-alpine-plume`, `10.0-jre17-Temurin-alpine-plume`, `10.0-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.1.0-jre17-Temurin-alpine-plume`, `10.1.0-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.0.1-jre17-Temurin-alpine-plus`, `10.0.1-jre17-alpine-plus`, `10.0-jre17-Temurin-alpine-plus`, `10.0-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.1.0-jre17-Temurin-alpine-plus`, `10.1.0-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.0.1-jre17-Temurin-alpine-webprofile`, `10.0.1-jre17-alpine-webprofile`, `10.0-jre17-Temurin-alpine-webprofile`, `10.0-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.0-jre17-Temurin-alpine-webprofile`, `10.1.0-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.0.1-jre17-Semeru-ubuntu-microprofile`, `10.0.1-jre17-Semeru-microprofile`, `10.0.1-jre17-Semeru-ubuntu`, `10.0.1-jre17-Semeru`, `10.0-jre17-Semeru-ubuntu-microprofile`, `10.0-jre17-Semeru-microprofile`, `10.0-jre17-Semeru-ubuntu`, `10.0-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.0-jre17-Semeru-ubuntu-microprofile`, `10.1.0-jre17-Semeru-microprofile`, `10.1.0-jre17-Semeru-ubuntu`, `10.1.0-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.0.1-jre17-Semeru-ubuntu-plume`, `10.0.1-jre17-Semeru-plume`, `10.0-jre17-Semeru-ubuntu-plume`, `10.0-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.0-jre17-Semeru-ubuntu-plume`, `10.1.0-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.0.1-jre17-Semeru-ubuntu-plus`, `10.0.1-jre17-Semeru-plus`, `10.0-jre17-Semeru-ubuntu-plus`, `10.0-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.0-jre17-Semeru-ubuntu-plus`, `10.1.0-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.0.1-jre17-Semeru-ubuntu-webprofile`, `10.0.1-jre17-Semeru-webprofile`, `10.0-jre17-Semeru-ubuntu-webprofile`, `10.0-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/56d9c12403ae515512a8a1d75b50a7760c8780a2/TomEE-10.0/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.0-jre17-Semeru-ubuntu-webprofile`, `10.1.0-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From a747dc428ecd5970e89217f1f09aeb7a94955430 Mon Sep 17 00:00:00 2001 From: disservin Date: Fri, 27 Jun 2025 10:56:56 +0200 Subject: [PATCH 2305/2686] Update content.md --- mysql/content.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/mysql/content.md b/mysql/content.md index 0e24f5399fd6..9b21973bd9ca 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -56,7 +56,13 @@ $ docker logs some-%%REPO%% ## Using a custom MySQL configuration file -The default configuration for MySQL can be found in `/etc/mysql/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d` or `/etc/mysql/mysql.conf.d`. Please inspect the relevant files and directories within the `%%IMAGE%%` image itself for more details. +The default configuration for MySQL varies depending on the base image: + +**Oracle-based images (default):** The default configuration is located at `/etc/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d`. + +**Debian-based MySQL 8 images:** The default configuration can be found in `/etc/mysql/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d`. + +Please inspect the relevant files and directories within the `%%IMAGE%%` image itself for more details. If `/my/custom/config-file.cnf` is the path and name of your custom configuration file, you can start your `%%IMAGE%%` container like this (note that only the directory path of the custom config file is used in this command): @@ -64,7 +70,7 @@ If `/my/custom/config-file.cnf` is the path and name of your custom configuratio $ docker run --name some-%%REPO%% -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d %%IMAGE%%:tag ``` -This will start a new container `some-%%REPO%%` where the MySQL instance uses the combined startup settings from `/etc/mysql/my.cnf` and `/etc/mysql/conf.d/config-file.cnf`, with settings from the latter taking precedence. +This will start a new container `some-%%REPO%%` where the MySQL instance uses the combined startup settings from the default configuration file and `/etc/mysql/conf.d/config-file.cnf`, with settings from the latter taking precedence. ### Configuration without a `cnf` file From 6283d0d7662c1abe963da6bfa5d9c367e5b3fbee Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Jun 2025 10:10:02 -0700 Subject: [PATCH 2306/2686] Run update.sh --- mysql/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 0b792ecb5e15..2844fdca069c 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -124,7 +124,13 @@ $ docker logs some-mysql ## Using a custom MySQL configuration file -The default configuration for MySQL can be found in `/etc/mysql/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d` or `/etc/mysql/mysql.conf.d`. Please inspect the relevant files and directories within the `mysql` image itself for more details. +The default configuration for MySQL varies depending on the base image: + +**Oracle-based images (default):** The default configuration is located at `/etc/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d`. + +**Debian-based MySQL 8 images:** The default configuration can be found in `/etc/mysql/my.cnf`, which may `!includedir` additional directories such as `/etc/mysql/conf.d`. + +Please inspect the relevant files and directories within the `mysql` image itself for more details. If `/my/custom/config-file.cnf` is the path and name of your custom configuration file, you can start your `mysql` container like this (note that only the directory path of the custom config file is used in this command): @@ -132,7 +138,7 @@ If `/my/custom/config-file.cnf` is the path and name of your custom configuratio $ docker run --name some-mysql -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag ``` -This will start a new container `some-mysql` where the MySQL instance uses the combined startup settings from `/etc/mysql/my.cnf` and `/etc/mysql/conf.d/config-file.cnf`, with settings from the latter taking precedence. +This will start a new container `some-mysql` where the MySQL instance uses the combined startup settings from the default configuration file and `/etc/mysql/conf.d/config-file.cnf`, with settings from the latter taking precedence. ### Configuration without a `cnf` file From e22fb397a60fcfbafb689399155cd7bf484f4ea3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Jun 2025 11:10:10 -0700 Subject: [PATCH 2307/2686] Run update.sh --- influxdb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb/README.md b/influxdb/README.md index 08e2fc855058..6d88c7344a99 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -46,7 +46,7 @@ WARNING: - [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.11-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/alpine/Dockerfile) - [`3-core`, `3.2-core`, `3.2.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/3.2-core/Dockerfile) From 6015bdce42f0e714d7454d34fae39663e3b56352 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 27 Jun 2025 12:10:06 -0700 Subject: [PATCH 2308/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 8cceffeb25ea..2917cc7326df 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.5`, `25.5-jammy`, `25.5.3`, `25.5.3-jammy`, `25.5.3.75`, `25.5.3.75-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.5.3.75/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.1`, `25.6.1-jammy`, `25.6.1.3206`, `25.6.1.3206-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.6.1.3206/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.7`, `25.4.7-jammy`, `25.4.7.66`, `25.4.7.66-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.4.7.66/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.4`, `25.5.4-jammy`, `25.5.4.38`, `25.5.4.38-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.5.4.38/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.3`, `25.3.3-jammy`, `25.3.3.42`, `25.3.3.42-jammy`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/25.3.3.42/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.7`, `25.4.7-jammy`, `25.4.7.66`, `25.4.7.66-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.4.7.66/Dockerfile.ubuntu) -- [`24.8`, `24.8-focal`, `24.8.14`, `24.8.14-focal`, `24.8.14.39`, `24.8.14.39-focal`](https://github.com/ClickHouse/docker-library/blob/e628e513f37cb1d71becf5e226956844e70b142b/server/24.8.14.39/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.4`, `25.3.4-jammy`, `25.3.4.190`, `25.3.4.190-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.3.4.190/Dockerfile.ubuntu) # Quick reference (cont.) From 3c314937d7e35098b8101fef1394f75c3ead70b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jun 2025 11:10:14 -0700 Subject: [PATCH 2309/2686] Run update.sh --- archlinux/README.md | 6 ++-- eggdrop/README.md | 2 ++ elixir/README.md | 12 +++++-- ghost/README.md | 4 +-- golang/README.md | 12 +++---- mongo/README.md | 26 +++++++-------- openjdk/README.md | 80 ++++++++++++++++++++++----------------------- photon/README.md | 4 +-- wordpress/README.md | 24 +++++++------- xwiki/README.md | 6 ++-- 10 files changed, 92 insertions(+), 84 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 0a4fd31e0eba..90be41fd3e79 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.base) +- [`latest`, `base`, `base-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.base) -- [`base-devel`, `base-devel-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250622.0.370030`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/70aed63144eeef75586bec5419a9dcb99f294c43/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/eggdrop/README.md b/eggdrop/README.md index 8e633d6d041b..51d2d43d0ef0 100644 --- a/eggdrop/README.md +++ b/eggdrop/README.md @@ -30,6 +30,8 @@ WARNING: - [`1.10`, `1.10.0`, `stable`, `latest`](https://github.com/eggheads/eggdrop-docker/blob/2861815d67478e41667b8ed2cf9d3f13a5e755c1/1.10/Dockerfile) +- [`1.10.1rc1`](https://github.com/eggheads/eggdrop-docker/blob/fa9fab693902545745642c75650b56379d17b16b/1.10.1rc1/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/elixir/README.md b/elixir/README.md index fc468ab1687e..b3e9efeb448c 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.4`, `1.18`, `latest`, `1.18.4-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/Dockerfile) +- [`1.18.4`, `1.18`, `latest`, `1.18.4-otp-28`, `1.18-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/Dockerfile) -- [`1.18.4-slim`, `1.18-slim`, `slim`, `1.18.4-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/slim/Dockerfile) +- [`1.18.4-slim`, `1.18-slim`, `slim`, `1.18.4-otp-28-slim`, `1.18-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/slim/Dockerfile) -- [`1.18.4-alpine`, `1.18-alpine`, `alpine`, `1.18.4-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/alpine/Dockerfile) +- [`1.18.4-alpine`, `1.18-alpine`, `alpine`, `1.18.4-otp-28-alpine`, `1.18-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/alpine/Dockerfile) - [`1.18.4-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25/Dockerfile) @@ -42,6 +42,12 @@ WARNING: - [`1.18.4-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-slim/Dockerfile) +- [`1.18.4-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27/Dockerfile) + +- [`1.18.4-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-alpine/Dockerfile) + +- [`1.18.4-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-slim/Dockerfile) + - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) - [`1.17.3-slim`, `1.17-slim`, `1.17.3-otp-27-slim`, `1.17-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/slim/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 065f7992d351..bd4624172e1e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.127.2`, `5.127`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e69077bccf7d6a25858805a6077320986dbae9f9/5/debian/Dockerfile) +- [`5.128.0`, `5.128`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ab56b390e45ba4be016b95c7e671dae96450ac1/5/debian/Dockerfile) -- [`5.127.2-alpine`, `5.127-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e69077bccf7d6a25858805a6077320986dbae9f9/5/alpine/Dockerfile) +- [`5.128.0-alpine`, `5.128-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ab56b390e45ba4be016b95c7e671dae96450ac1/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index cac645a7cb91..74368219e37b 100644 --- a/golang/README.md +++ b/golang/README.md @@ -72,13 +72,13 @@ WARNING: - [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250620-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bookworm/Dockerfile) +- [`tip-20250629-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bookworm/Dockerfile) -- [`tip-20250620-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bullseye/Dockerfile) +- [`tip-20250629-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bullseye/Dockerfile) -- [`tip-20250620-alpine3.22`, `tip-alpine3.22`, `tip-20250620-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/alpine3.22/Dockerfile) +- [`tip-20250629-alpine3.22`, `tip-alpine3.22`, `tip-20250629-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/alpine3.22/Dockerfile) -- [`tip-20250620-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/alpine3.21/Dockerfile) +- [`tip-20250629-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -125,9 +125,9 @@ WARNING: - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250620`, `tip`: +- `tip-20250629`, `tip`: - - [`tip-20250620-bookworm`](https://github.com/docker-library/golang/blob/f9a8809f76803a2b3b227aba2d2543d52613157c/tip/bookworm/Dockerfile) + - [`tip-20250629-bookworm`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index ac9f94f666a1..ed4e8f748530 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.10-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/Dockerfile) +- [`8.0.11-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) -- [`8.0.10-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.11-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.10-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.11-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.10-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.11-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.21-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) @@ -54,20 +54,20 @@ WARNING: ## Shared Tags -- `8.0.10`, `8.0`, `8`, `latest`: +- `8.0.11`, `8.0`, `8`, `latest`: - - [`8.0.10-noble`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/Dockerfile) - - [`8.0.10-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.11-noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) + - [`8.0.11-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.10-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.11-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.10-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.10-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.11-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.10-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.11-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.10-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8081e0e624789f709b6d7e1c5591962bebc059e/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) - `7.0.21`, `7.0`, `7`: diff --git a/openjdk/README.md b/openjdk/README.md index 87bd825a13dd..520fb41634a8 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-3-jdk-oraclelinux9`, `26-ea-3-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-3-jdk-oracle`, `26-ea-3-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-4-jdk-oraclelinux9`, `26-ea-4-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-4-jdk-oracle`, `26-ea-4-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-3-jdk-oraclelinux8`, `26-ea-3-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-4-jdk-oraclelinux8`, `26-ea-4-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-3-jdk-bookworm`, `26-ea-3-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/bookworm/Dockerfile) +- [`26-ea-4-jdk-bookworm`, `26-ea-4-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/bookworm/Dockerfile) -- [`26-ea-3-jdk-slim-bookworm`, `26-ea-3-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-3-jdk-slim`, `26-ea-3-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-4-jdk-slim-bookworm`, `26-ea-4-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-4-jdk-slim`, `26-ea-4-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-3-jdk-bullseye`, `26-ea-3-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/bullseye/Dockerfile) +- [`26-ea-4-jdk-bullseye`, `26-ea-4-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/bullseye/Dockerfile) -- [`26-ea-3-jdk-slim-bullseye`, `26-ea-3-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-4-jdk-slim-bullseye`, `26-ea-4-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-3-jdk-windowsservercore-ltsc2025`, `26-ea-3-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-4-jdk-windowsservercore-ltsc2025`, `26-ea-4-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-3-jdk-windowsservercore-ltsc2022`, `26-ea-3-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-4-jdk-windowsservercore-ltsc2022`, `26-ea-4-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-3-jdk-nanoserver-ltsc2025`, `26-ea-3-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-4-jdk-nanoserver-ltsc2025`, `26-ea-4-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-3-jdk-nanoserver-ltsc2022`, `26-ea-3-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-4-jdk-nanoserver-ltsc2022`, `26-ea-4-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-28-jdk-oraclelinux9`, `25-ea-28-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-28-jdk-oracle`, `25-ea-28-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-29-jdk-oraclelinux9`, `25-ea-29-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-29-jdk-oracle`, `25-ea-29-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-28-jdk-oraclelinux8`, `25-ea-28-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-29-jdk-oraclelinux8`, `25-ea-29-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-28-jdk-bookworm`, `25-ea-28-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/bookworm/Dockerfile) +- [`25-ea-29-jdk-bookworm`, `25-ea-29-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/bookworm/Dockerfile) -- [`25-ea-28-jdk-slim-bookworm`, `25-ea-28-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-28-jdk-slim`, `25-ea-28-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-29-jdk-slim-bookworm`, `25-ea-29-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-29-jdk-slim`, `25-ea-29-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-28-jdk-bullseye`, `25-ea-28-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/bullseye/Dockerfile) +- [`25-ea-29-jdk-bullseye`, `25-ea-29-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/bullseye/Dockerfile) -- [`25-ea-28-jdk-slim-bullseye`, `25-ea-28-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-29-jdk-slim-bullseye`, `25-ea-29-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-28-jdk-windowsservercore-ltsc2025`, `25-ea-28-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-29-jdk-windowsservercore-ltsc2025`, `25-ea-29-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-28-jdk-windowsservercore-ltsc2022`, `25-ea-28-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-29-jdk-windowsservercore-ltsc2022`, `25-ea-29-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-28-jdk-nanoserver-ltsc2025`, `25-ea-28-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-29-jdk-nanoserver-ltsc2025`, `25-ea-29-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-28-jdk-nanoserver-ltsc2022`, `25-ea-28-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-29-jdk-nanoserver-ltsc2022`, `25-ea-29-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-3-jdk`, `26-ea-3`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-4-jdk`, `26-ea-4`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-3-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-3-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-4-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-3-jdk-windowsservercore`, `26-ea-3-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-4-jdk-windowsservercore`, `26-ea-4-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-3-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-3-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-4-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-3-jdk-nanoserver`, `26-ea-3-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-4-jdk-nanoserver`, `26-ea-4-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-3-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-3-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9a25c11574332a1a27a830380a36024981965982/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-4-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-4-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-28-jdk`, `25-ea-28`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-29-jdk`, `25-ea-29`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-28-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-28-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-29-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-29-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-28-jdk-windowsservercore`, `25-ea-28-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-29-jdk-windowsservercore`, `25-ea-29-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-28-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-28-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-29-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-28-jdk-nanoserver`, `25-ea-28-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-29-jdk-nanoserver`, `25-ea-29-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-28-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-28-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6a2def77f7d16106607df19bb40f5057a05847bf/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-29-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-29-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index e136d5bb01fb..85c38a9a868f 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250617`, `latest`](https://github.com/vmware/photon-docker-image/blob/d804fe9bb9514bca6a7fa885538e269f2caade73/docker/Dockerfile) +- [`5.0`, `5.0-20250629`, `latest`](https://github.com/vmware/photon-docker-image/blob/a93cd99c12295c2994e58e266e693cbf2b039b03/docker/Dockerfile) -- [`4.0`, `4.0-20250518`](https://github.com/vmware/photon-docker-image/blob/0b2ace4fa57bbd1d03b60915156c9d357bcbe698/docker/Dockerfile) +- [`4.0`, `4.0-20250629`](https://github.com/vmware/photon-docker-image/blob/968050869270aa1a5faf0ed4ee5f5998df1ab1bb/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 50cc2fa76042..b56a3ac245ca 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.1-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.1-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/apache/Dockerfile) +- [`6.8.1-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.1-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/apache/Dockerfile) -- [`6.8.1-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/fpm/Dockerfile) +- [`6.8.1-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/fpm/Dockerfile) -- [`6.8.1-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.1-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.1-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.1`, `6.8`, `6`, `latest`, `6.8.1-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.1-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/apache/Dockerfile) +- [`6.8.1-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.1`, `6.8`, `6`, `latest`, `6.8.1-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.1-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/apache/Dockerfile) -- [`6.8.1-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.1-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/fpm/Dockerfile) +- [`6.8.1-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.1-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/fpm/Dockerfile) -- [`6.8.1-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.1-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.1-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.1-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.1-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.1-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/apache/Dockerfile) +- [`6.8.1-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.1-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/apache/Dockerfile) -- [`6.8.1-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/fpm/Dockerfile) +- [`6.8.1-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/fpm/Dockerfile) -- [`6.8.1-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.1-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.1-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.1-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/apache/Dockerfile) +- [`6.8.1-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.1-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/apache/Dockerfile) -- [`6.8.1-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/fpm/Dockerfile) +- [`6.8.1-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/fpm/Dockerfile) -- [`6.8.1-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/b8721d7271bf763d999285985277d61e78c584aa/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.1-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 1248d838a6b5..c068078e152f 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.4`, `17.4.1`, `17-mysql-tomcat`, `17.4-mysql-tomcat`, `17.4.1-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/mysql-tomcat/Dockerfile) +- [`17`, `17.5`, `17.5.0`, `17-mysql-tomcat`, `17.5-mysql-tomcat`, `17.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.4-postgres-tomcat`, `17.4.1-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.5-postgres-tomcat`, `17.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.4-mariadb-tomcat`, `17.4.1-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/edc5062ac1533654c21f074b65980ea57305c495/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.5-mariadb-tomcat`, `17.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.9`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mysql-tomcat/Dockerfile) From 09e552f10b15693bea9f61edd68f0dbfafb198db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jun 2025 17:10:11 -0700 Subject: [PATCH 2310/2686] Run update.sh --- julia/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/julia/README.md b/julia/README.md index 2e74db5f6ac8..e7e2f163ef25 100644 --- a/julia/README.md +++ b/julia/README.md @@ -52,17 +52,17 @@ WARNING: - [`1.11.5-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.9-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) +- [`1.10.10-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) -- [`1.10.9-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bullseye/Dockerfile) +- [`1.10.10-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bullseye/Dockerfile) -- [`1.10.9-alpine3.22`, `1.10-alpine3.22`, `1.10.9-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.10/alpine3.22/Dockerfile) +- [`1.10.10-alpine3.22`, `1.10-alpine3.22`, `1.10.10-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/alpine3.22/Dockerfile) -- [`1.10.9-alpine3.21`, `1.10-alpine3.21`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/alpine3.21/Dockerfile) +- [`1.10.10-alpine3.21`, `1.10-alpine3.21`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/alpine3.21/Dockerfile) -- [`1.10.9-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.10.10-windowsservercore-ltsc2025`, `1.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.10.9-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.10.10-windowsservercore-ltsc2022`, `1.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags @@ -88,16 +88,16 @@ WARNING: - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.10.9`, `1.10`: +- `1.10.10`, `1.10`: - - [`1.10.9-bookworm`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/bookworm/Dockerfile) - - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) + - [`1.10.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.10.9-windowsservercore`, `1.10-windowsservercore`: +- `1.10.10-windowsservercore`, `1.10-windowsservercore`: - - [`1.10.9-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.10.9-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/6f34d11736ca81e111e3ce285d6d7e08a4742300/1.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.10.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) From e150cacd6e7ebb70cabbde7c661f32eb72d95c31 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 30 Jun 2025 18:10:13 -0700 Subject: [PATCH 2311/2686] Run update.sh --- debian/README.md | 48 ++++++++++++++++++++++++------------------------ maven/README.md | 2 ++ 2 files changed, 26 insertions(+), 24 deletions(-) diff --git a/debian/README.md b/debian/README.md index b2235ccb39f6..0800a76416e5 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250610`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250630`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250610-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250630-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250610`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250630`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250610-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250630-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/experimental/Dockerfile) +- [`experimental`, `experimental-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/rc-buggy/Dockerfile) -- [`sid`, `sid-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/sid/oci/index.json) +- [`sid`, `sid-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/sid/oci/index.json) -- [`sid-slim`, `sid-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/sid/slim/oci/index.json) -- [`stable`, `stable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/oci/index.json) +- [`stable`, `stable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/slim/oci/index.json) -- [`testing`, `testing-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/oci/index.json) +- [`testing`, `testing-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/oci/index.json) +- [`trixie`, `trixie-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250610`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/unstable/oci/index.json) +- [`unstable`, `unstable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250610-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/34def9a42f8f725225fcba6357df65c8a77f2d5d/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 927382fc3201..a07afc3b06ac 100644 --- a/maven/README.md +++ b/maven/README.md @@ -90,6 +90,8 @@ WARNING: - [`3.9.10-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-24-alpine/Dockerfile) +- [`3.9.10-amazoncorretto-24-debian`, `3.9.10-amazoncorretto-24-debian-bookworm`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-bookworm`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e5a0f8fd8b06d35e932faa6285a1998f40f28c82/amazoncorretto-24-debian/Dockerfile) + - [`3.9.10-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8/Dockerfile) - [`3.9.10-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-al2023/Dockerfile) From f66b2c068f4af9216f10dd7e6ef964bdf87c2c5e Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 1 Jul 2025 10:07:36 +0200 Subject: [PATCH 2312/2686] ArangoDB: Revert server language change --- arangodb/content.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arangodb/content.md b/arangodb/content.md index 2cc2b4a207b0..12eb65693c19 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -49,9 +49,7 @@ docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: -- From v3.12.2 onward: Append the `--icu-language` startup option to the end of the Docker command, like `docker run ... %%IMAGE%% --icu-language sv` for a Swedish locale. - -- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv`. +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. - Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. From 67516a4fb71fa78a4e05a9b5161e938b083342de Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Jul 2025 12:10:05 -0700 Subject: [PATCH 2313/2686] Run update.sh --- arangodb/README.md | 2 +- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 6395bbd8081f..46892ac5e92f 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12`, `3.12.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/4b0e7ca61aaaa24cf0d65d1ff96ed6068bcf5e9a/alpine/3.12.5/Dockerfile) +- [`3.12`, `3.12.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/fc9ce3eff9804b5232c97894c603266eae12a592/alpine/3.12.5/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index f7ba80bd54dc..79fc0ca3c05f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9168fad52db70eac986440d0cd1e81e2f742ecec/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7-slim-fips/Dockerfile) # Quick reference (cont.) From 00c9756f7bcfe2844111a8ce15b7154fcf8abdf7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Jul 2025 14:10:30 -0700 Subject: [PATCH 2314/2686] Run update.sh --- nats/README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/nats/README.md b/nats/README.md index 46a593e839d4..ce1b1b251c64 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.5-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.5-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/alpine3.22/Dockerfile) +- [`2.11.6-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.6-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/alpine3.22/Dockerfile) -- [`2.11.5-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.5-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/scratch/Dockerfile) +- [`2.11.6-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.6-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/scratch/Dockerfile) -- [`2.11.5-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.6-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.5-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.6-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.5`, `2.11`, `2`, `latest`: +- `2.11.6`, `2.11`, `2`, `latest`: - - [`2.11.5-scratch`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/scratch/Dockerfile) - - [`2.11.5-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.6-scratch`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/scratch/Dockerfile) + - [`2.11.6-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.5-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.6-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.5-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.6-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.5-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.6-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.5-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.6-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b0823f026ca716d00827e3e116241121a76ea767/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 77a5b5cb3526c40c9b7bfbbea65a2075a5ffa206 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Jul 2025 15:10:26 -0700 Subject: [PATCH 2315/2686] Run update.sh --- arangodb/README.md | 4 +--- groovy/README.md | 14 +++++++------- joomla/README.md | 18 +++++++++--------- mediawiki/README.md | 18 +++++++++--------- neo4j/README.md | 8 ++++---- oraclelinux/README.md | 18 +++++++++--------- znc/README.md | 4 ++-- 7 files changed, 41 insertions(+), 43 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 46892ac5e92f..4bfe0ee445dd 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -96,9 +96,7 @@ docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: -- From v3.12.2 onward: Append the `--icu-language` startup option to the end of the Docker command, like `docker run ... arangodb --icu-language sv` for a Swedish locale. - -- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv`. +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. - Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`. diff --git a/groovy/README.md b/groovy/README.md index e520b232bde9..5a1dd0a61821 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.25-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.25-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk8/Dockerfile) +- [`4.0.27-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.27-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk8/Dockerfile) -- [`4.0.25-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.25-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk11/Dockerfile) +- [`4.0.27-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.27-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk11/Dockerfile) -- [`4.0.25-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk11-alpine/Dockerfile) +- [`4.0.27-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk11-alpine/Dockerfile) -- [`4.0.25-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.25-jdk`, `4.0-jdk`, `4.0.25`, `4.0`, `4`, `jdk`, `latest`, `4.0.25-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.25-jdk-jammy`, `4.0-jdk-jammy`, `4.0.25-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk17/Dockerfile) +- [`4.0.27-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.27-jdk`, `4.0-jdk`, `4.0.27`, `4.0`, `4`, `jdk`, `latest`, `4.0.27-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.27-jdk-jammy`, `4.0-jdk-jammy`, `4.0.27-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk17/Dockerfile) -- [`4.0.25-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.25-jdk-alpine`, `4.0-jdk-alpine`, `4.0.25-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk17-alpine/Dockerfile) +- [`4.0.27-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.27-jdk-alpine`, `4.0-jdk-alpine`, `4.0.27-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk17-alpine/Dockerfile) -- [`4.0.25-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.25-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk21/Dockerfile) +- [`4.0.27-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.27-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk21/Dockerfile) -- [`4.0.25-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/0bf66b24590f71de06ad45107716beacd4a07c06/jdk21-alpine/Dockerfile) +- [`4.0.27-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk21-alpine/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 34b9995edbc9..b0df4fbd9b4e 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-alpha1`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha1-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha1-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/apache/Dockerfile) +- [`6.0.0-alpha2`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha2-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha2-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha2-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/apache/Dockerfile) -- [`6.0.0-alpha1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-alpha2-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-alpha1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/edc4654f06694c7b8caed4a7297549f1bbca78a8/6.0.alpha/php8.3/fpm/Dockerfile) +- [`6.0.0-alpha2-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/fpm/Dockerfile) -- [`5.4.0-alpha1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/apache/Dockerfile) +- [`5.4.0-alpha2-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/apache/Dockerfile) -- [`5.4.0-alpha1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-alpha2-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-alpha1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.2/fpm/Dockerfile) +- [`5.4.0-alpha2-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/fpm/Dockerfile) -- [`5.4.0-alpha1`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha1-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha1-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/apache/Dockerfile) +- [`5.4.0-alpha2`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha2-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha2-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha2-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/apache/Dockerfile) -- [`5.4.0-alpha1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-alpha2-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-alpha1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c8469f6f946b5084b36382b529001d10ccef2acb/5.4.alpha/php8.3/fpm/Dockerfile) +- [`5.4.0-alpha2-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/fpm/Dockerfile) - [`5.3.1-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/apache/Dockerfile) diff --git a/mediawiki/README.md b/mediawiki/README.md index 14aeb1cb1d87..f473b210d375 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.43.1`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/apache/Dockerfile) +- [`1.43.3`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/apache/Dockerfile) -- [`1.43.1-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/fpm/Dockerfile) +- [`1.43.3-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/fpm/Dockerfile) -- [`1.43.1-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.43/fpm-alpine/Dockerfile) +- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/fpm-alpine/Dockerfile) -- [`1.42.6`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/apache/Dockerfile) +- [`1.42.7`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/apache/Dockerfile) -- [`1.42.6-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/fpm/Dockerfile) +- [`1.42.7-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/fpm/Dockerfile) -- [`1.42.6-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.42/fpm-alpine/Dockerfile) +- [`1.42.7-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/fpm-alpine/Dockerfile) -- [`1.39.12`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/apache/Dockerfile) +- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/apache/Dockerfile) -- [`1.39.12-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/fpm/Dockerfile) +- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/fpm/Dockerfile) -- [`1.39.12-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/76236dfa180c94c95410242a17d6dc8603ba3990/1.39/fpm-alpine/Dockerfile) +- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index d18314b52d44..3ca52da05855 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.05.1-community-bullseye`, `2025.05-community-bullseye`, `2025-community-bullseye`, `2025.05.1-community`, `2025.05-community`, `2025-community`, `2025.05.1-bullseye`, `2025.05-bullseye`, `2025-bullseye`, `2025.05.1`, `2025.05`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/bullseye/community/Dockerfile) +- [`2025.06.0-community-bullseye`, `2025.06-community-bullseye`, `2025-community-bullseye`, `2025.06.0-community`, `2025.06-community`, `2025-community`, `2025.06.0-bullseye`, `2025.06-bullseye`, `2025-bullseye`, `2025.06.0`, `2025.06`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/bullseye/community/Dockerfile) -- [`2025.05.1-enterprise-bullseye`, `2025.05-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.05.1-enterprise`, `2025.05-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/bullseye/enterprise/Dockerfile) +- [`2025.06.0-enterprise-bullseye`, `2025.06-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.06.0-enterprise`, `2025.06-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/bullseye/enterprise/Dockerfile) -- [`2025.05.1-community-ubi9`, `2025.05-community-ubi9`, `2025-community-ubi9`, `2025.05.1-ubi9`, `2025.05-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/ubi9/community/Dockerfile) +- [`2025.06.0-community-ubi9`, `2025.06-community-ubi9`, `2025-community-ubi9`, `2025.06.0-ubi9`, `2025.06-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/ubi9/community/Dockerfile) -- [`2025.05.1-enterprise-ubi9`, `2025.05-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/63f027854864eb65446d7b4996ebf4eabf597174/2025.05.1/ubi9/enterprise/Dockerfile) +- [`2025.06.0-enterprise-ubi9`, `2025.06-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/ubi9/enterprise/Dockerfile) - [`5.26.8-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.8-community`, `5.26-community`, `5-community`, `5.26.8-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.8`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/community/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 79fc0ca3c05f..a3d6f2d0f374 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/48cc251d441898c3f05fa3048ac2ad4c276ee2d7/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/znc/README.md b/znc/README.md index 5e442850f49b..53918f4c6628 100644 --- a/znc/README.md +++ b/znc/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.0`, `1.10`, `latest`](https://github.com/znc/znc-docker/blob/83082df630a0da0ef2d3724aa0299fba193ac096/full/Dockerfile) +- [`1.10.1`, `1.10`, `latest`](https://github.com/znc/znc-docker/blob/079544b1c9bfefeed964c7b35b49222ca05cb018/full/Dockerfile) -- [`1.10.0-slim`, `1.10-slim`, `slim`](https://github.com/znc/znc-docker/blob/83082df630a0da0ef2d3724aa0299fba193ac096/slim/Dockerfile) +- [`1.10.1-slim`, `1.10-slim`, `slim`](https://github.com/znc/znc-docker/blob/079544b1c9bfefeed964c7b35b49222ca05cb018/slim/Dockerfile) # Quick reference (cont.) From 147faa6d26df98b3c78ec6c13b2192180157bfe4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Jul 2025 16:10:08 -0700 Subject: [PATCH 2316/2686] Run update.sh --- docker/README.md | 12 ++++++------ ghost/README.md | 4 ++-- rabbitmq/README.md | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docker/README.md b/docker/README.md index c59482979b2e..b568f7f34037 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.0-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/cli/Dockerfile) +- [`28.3.0-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/cli/Dockerfile) - [`28.3.0-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.0-dind-alpine3.22`, `28.3.0`, `28.3`, `28`, `latest`, `28.3.0-alpine3.22`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/dind/Dockerfile) -- [`28.3.0-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/dind-rootless/Dockerfile) +- [`28.3.0-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/a916243e36b818461dc38c36a28dfa74d9cdf8bd/28/dind-rootless/Dockerfile) -- [`28.3.0-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.0-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.0-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.0-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index bd4624172e1e..e6444c39e084 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.128.0`, `5.128`, `5`, `latest`](https://github.com/docker-library/ghost/blob/4ab56b390e45ba4be016b95c7e671dae96450ac1/5/debian/Dockerfile) +- [`5.128.1`, `5.128`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2714c8e60196bdb7df672ec534ac4c95de747af0/5/debian/Dockerfile) -- [`5.128.0-alpine`, `5.128-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/4ab56b390e45ba4be016b95c7e671dae96450ac1/5/alpine/Dockerfile) +- [`5.128.1-alpine`, `5.128-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2714c8e60196bdb7df672ec534ac4c95de747af0/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index b7fd5cb47f73..f1058d0ef1ef 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/7e462c35dba545cf20d78a0ac3d18ba27c2e847e/4.1/ubuntu/Dockerfile) +- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/9eafde89a61aa032cf9a47cd1e58951444210ff5/4.1/ubuntu/Dockerfile) - [`4.1.1-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/7e462c35dba545cf20d78a0ac3d18ba27c2e847e/4.1/alpine/Dockerfile) +- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/9eafde89a61aa032cf9a47cd1e58951444210ff5/4.1/alpine/Dockerfile) - [`4.1.1-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/9fe5ffd717216db809fe0207c0b7266d231fa3a0/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/87e124e1c98f38cda70af592b5c994c36cb7847c/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/9fe5ffd717216db809fe0207c0b7266d231fa3a0/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/87e124e1c98f38cda70af592b5c994c36cb7847c/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) From d3cd7592ab8384a6db5d4255c4ee0ff53b25804c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 1 Jul 2025 18:10:24 -0700 Subject: [PATCH 2317/2686] Run update.sh --- ubuntu/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index bd1400b7391f..ad05da8a17d4 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.04`, `jammy-20250530`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250530-202257f3&id=202257f3f1e712e9b2e4e9d66d68e028cbed990c) +- [`22.04`, `jammy-20250619`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250619-7fb3f136&id=7fb3f1366b34c5b765ad9b4231010c5500324bc4) -- [`24.04`, `noble-20250529`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250529-222144ab&id=222144abd5860a6d8ef142eb47fe61d8367cefdb) +- [`24.04`, `noble-20250619`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250619-21910021&id=21910021a997c25cb714dc6f40ef03a630dd8b3b) -- [`24.10`, `oracular-20250428`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250428-c68b0ce8&id=c68b0ce815238e8edacf842c439d3df2fa026b5e) +- [`24.10`, `oracular-20250619`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250619-cc02a011&id=cc02a01164fbf0fd3b74b09e6c9b0da490411665) -- [`25.04`, `plucky-20250521`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250521-f96cf5be&id=f96cf5be5b7e848059b5a9297fdbc15fa9a46e8d) +- [`25.04`, `plucky-20250619`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250619-d0219e60&id=d0219e60c528ce77ce4e16a7a79696ff45239411) -- [`25.10`, `questing-20250601`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250601-0b88f997&id=0b88f99700c9869cad822402a402f3798e3a935b) +- [`25.10`, `questing-20250620`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250620-fb433863&id=fb433863336aaeb793b4c17e7751bad417783ebe) # Quick reference (cont.) From 3d16d36b09c1511c2dd36b326b3df11afa100142 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Jul 2025 10:10:10 -0700 Subject: [PATCH 2318/2686] Run update.sh --- groovy/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/groovy/README.md b/groovy/README.md index 5a1dd0a61821..2bbb39a75fc6 100644 --- a/groovy/README.md +++ b/groovy/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.27-jdk8`, `4.0-jdk8`, `jdk8`, `4.0.27-jdk8-jammy`, `4.0-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk8/Dockerfile) +- [`4.0.27-jdk21`, `4.0-jdk21`, `4-jdk21`, `jdk21`, `4.0.27-jdk21-noble`, `4.0-jdk21-noble`, `4-jdk21-noble`, `jdk21-noble`, `latest`, `4.0.27-jdk`, `4.0-jdk`, `4-jdk`, `jdk`, `4.0.27`, `4.0`, `4`, `4.0.27-jdk-noble`, `4.0-jdk-noble`, `4-jdk-noble`, `jdk-noble`, `4.0.27-noble`, `4.0-noble`, `4-noble`, `noble`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk21/Dockerfile) -- [`4.0.27-jdk11`, `4.0-jdk11`, `jdk11`, `4.0.27-jdk11-jammy`, `4.0-jdk11-jammy`, `jdk11-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk11/Dockerfile) +- [`4.0.27-jdk21-alpine`, `4.0-jdk21-alpine`, `4-jdk21-alpine`, `jdk21-alpine`, `4.0.27-jdk-alpine`, `4.0-jdk-alpine`, `4-jdk-alpine`, `jdk-alpine`, `4.0.27-alpine`, `4.0-alpine`, `4-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk21-alpine/Dockerfile) -- [`4.0.27-jdk11-alpine`, `4.0-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk11-alpine/Dockerfile) +- [`4.0.27-jdk17`, `4.0-jdk17`, `4-jdk17`, `jdk17`, `4.0.27-jdk17-noble`, `4.0-jdk17-noble`, `4-jdk17-noble`, `jdk17-noble`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk17/Dockerfile) -- [`4.0.27-jdk17`, `4.0-jdk17`, `jdk17`, `4.0.27-jdk`, `4.0-jdk`, `4.0.27`, `4.0`, `4`, `jdk`, `latest`, `4.0.27-jdk17-jammy`, `4.0-jdk17-jammy`, `jdk17-jammy`, `4.0.27-jdk-jammy`, `4.0-jdk-jammy`, `4.0.27-jammy`, `4.0-jammy`, `4-jammy`, `jdk-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk17/Dockerfile) +- [`4.0.27-jdk17-alpine`, `4.0-jdk17-alpine`, `4-jdk17-alpine`, `jdk17-alpine`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk17-alpine/Dockerfile) -- [`4.0.27-jdk17-alpine`, `4.0-jdk17-alpine`, `jdk17-alpine`, `4.0.27-jdk-alpine`, `4.0-jdk-alpine`, `4.0.27-alpine`, `4.0-alpine`, `4-alpine`, `jdk-alpine`, `alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk17-alpine/Dockerfile) +- [`4.0.27-jdk11`, `4.0-jdk11`, `4-jdk11`, `jdk11`, `4.0.27-jdk11-jammy`, `4.0-jdk11-jammy`, `4-jdk11-jammy`, `jdk11-jammy`, `4.0.27-jdk-jammy`, `4.0-jdk-jammy`, `4-jdk-jammy`, `jdk-jammy`, `4.0.27-jammy`, `4.0-jammy`, `4-jammy`, `jammy`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk11/Dockerfile) -- [`4.0.27-jdk21`, `4.0-jdk21`, `jdk21`, `4.0.27-jdk21-jammy`, `4.0-jdk21-jammy`, `jdk21-jammy`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk21/Dockerfile) +- [`4.0.27-jdk11-alpine`, `4.0-jdk11-alpine`, `4-jdk11-alpine`, `jdk11-alpine`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk11-alpine/Dockerfile) -- [`4.0.27-jdk21-alpine`, `4.0-jdk21-alpine`, `jdk21-alpine`](https://github.com/groovy/docker-groovy/blob/56e8c6f9da9d12e66437fab7e591eb1cd535f731/jdk21-alpine/Dockerfile) +- [`4.0.27-jdk8`, `4.0-jdk8`, `4-jdk8`, `jdk8`, `4.0.27-jdk8-jammy`, `4.0-jdk8-jammy`, `4-jdk8-jammy`, `jdk8-jammy`](https://github.com/groovy/docker-groovy/blob/5a3c63b31c157987812e0b7d7d510cf83490e259/jdk8/Dockerfile) # Quick reference (cont.) @@ -44,7 +44,7 @@ WARNING: [https://github.com/groovy/docker-groovy/issues](https://github.com/groovy/docker-groovy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/groovy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/groovy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/groovy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/groovy/), [`s390x`](https://hub.docker.com/r/s390x/groovy/) + [`amd64`](https://hub.docker.com/r/amd64/groovy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/groovy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/groovy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/groovy/), [`riscv64`](https://hub.docker.com/r/riscv64/groovy/), [`s390x`](https://hub.docker.com/r/s390x/groovy/) - **Published image artifact details**: [repo-info repo's `repos/groovy/` directory](https://github.com/docker-library/repo-info/blob/master/repos/groovy) ([history](https://github.com/docker-library/repo-info/commits/master/repos/groovy)) @@ -92,7 +92,7 @@ The `groovy` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like jammy in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. +Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. ## `groovy:-alpine` From 8aae9cdbc3bae29ea70b9e44288053313714981f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Jul 2025 12:10:07 -0700 Subject: [PATCH 2319/2686] Run update.sh --- haproxy/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 78f159698c91..b24316ecdc6b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.3-dev2-alpine`, `3.3-dev-alpine`, `3.3-dev2-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/alpine/Dockerfile) -- [`3.2.1`, `3.2`, `latest`, `lts`, `3.2.1-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/e57bdf9982a76d5391e3f40eec41ae0c6c477ae0/3.2/Dockerfile) +- [`3.2.2`, `3.2`, `latest`, `lts`, `3.2.2-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/d29240a8f2a0b5f4eead7098f7fc4952654c5e21/3.2/Dockerfile) -- [`3.2.1-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.1-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e57bdf9982a76d5391e3f40eec41ae0c6c477ae0/3.2/alpine/Dockerfile) +- [`3.2.2-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.2-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/d29240a8f2a0b5f4eead7098f7fc4952654c5e21/3.2/alpine/Dockerfile) - [`3.1.8`, `3.1`, `3.1.8-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index a3d6f2d0f374..469da31080b5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5b33f7c43239403a22d823bc3ff2195ff1691fed/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7-slim-fips/Dockerfile) # Quick reference (cont.) From 21c0449a3c39b2ad3ccf6a7f937eef33529fe1c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Jul 2025 15:10:28 -0700 Subject: [PATCH 2320/2686] Run update.sh --- oraclelinux/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 469da31080b5..b12333bb0ec5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4e9d8c307845ea0a1ae91cf3e3324269137ed213/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7-slim-fips/Dockerfile) # Quick reference (cont.) From 5d1008fe5fc36765eab1404ef1739e0e2c2c98e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 2 Jul 2025 16:10:05 -0700 Subject: [PATCH 2321/2686] Run update.sh --- mediawiki/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mediawiki/README.md b/mediawiki/README.md index f473b210d375..6e656a4553d7 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.43.3`, `1.43`, `latest`, `stable`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/apache/Dockerfile) +- [`1.44.0`, `1.44`, `latest`, `stable`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/apache/Dockerfile) -- [`1.43.3-fpm`, `1.43-fpm`, `stable-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/fpm/Dockerfile) +- [`1.44.0-fpm`, `1.44-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/fpm/Dockerfile) -- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `stable-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.43/fpm-alpine/Dockerfile) +- [`1.44.0-fpm-alpine`, `1.44-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/fpm-alpine/Dockerfile) -- [`1.42.7`, `1.42`, `legacy`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/apache/Dockerfile) +- [`1.43.3`, `1.43`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/apache/Dockerfile) -- [`1.42.7-fpm`, `1.42-fpm`, `legacy-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/fpm/Dockerfile) +- [`1.43.3-fpm`, `1.43-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/fpm/Dockerfile) -- [`1.42.7-fpm-alpine`, `1.42-fpm-alpine`, `legacy-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.42/fpm-alpine/Dockerfile) +- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/fpm-alpine/Dockerfile) -- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/apache/Dockerfile) +- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/apache/Dockerfile) -- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/fpm/Dockerfile) +- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/fpm/Dockerfile) -- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/45f5af8ee458dd9429b7d104210a425cc1040971/1.39/fpm-alpine/Dockerfile) +- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From abeb5d65f5bdcf3dc103994420cbcb5cd2d57922 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Jul 2025 10:11:55 -0700 Subject: [PATCH 2322/2686] Run update.sh --- crate/README.md | 2 +- emqx/README.md | 2 +- orientdb/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crate/README.md b/crate/README.md index a784787ceda8..d44168961b70 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.9`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/28dad94d4aa5bb07184144086fbcb06dd93a7e29/Dockerfile) +- [`5.10.10`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/906a383f2f8d19cdac64239515d8bf0c5e367827/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/emqx/README.md b/emqx/README.md index 9a84b15c939d..20227d4cb22a 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -34,7 +34,7 @@ Consequently, we stopped publishing the `emqx` Docker Official Image. EMQX v5.9. - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.6`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/7324fb36f81404915f97472652e2572f1dda5066/5.8/Dockerfile) +- [`5.8.7`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/18bad90efc25023480d0a11978f7d90e085116b5/5.8/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 28671f946652..4ca0f365abc0 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.41`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/b2238e6ffeb25c54ae1fff87e0864401acaf612f/release/3.2.x/3.2.41/Dockerfile) +- [`3.2.42`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/ceca4ac3050f37b6671d8ab4d690083b348c2a5e/release/3.2.x/3.2.42/Dockerfile) -- [`3.2.41-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/b2238e6ffeb25c54ae1fff87e0864401acaf612f/release/3.2.x/3.2.41-tp3/Dockerfile) +- [`3.2.42-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/ceca4ac3050f37b6671d8ab4d690083b348c2a5e/release/3.2.x/3.2.42-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From 9d9374ca5704d5ca36f040515f3497f1e54e006e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Jul 2025 11:10:26 -0700 Subject: [PATCH 2323/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- ghost/README.md | 4 ++-- mongo/README.md | 23 +++++++++++++++++++++++ rust/README.md | 6 +++++- 4 files changed, 38 insertions(+), 11 deletions(-) diff --git a/docker/README.md b/docker/README.md index b568f7f34037..9af20af05f7f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.0-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/cli/Dockerfile) +- [`28.3.1-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/cli/Dockerfile) -- [`28.3.0-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.0-dind-alpine3.22`, `28.3.0`, `28.3`, `28`, `latest`, `28.3.0-alpine3.22`](https://github.com/docker-library/docker/blob/6aa52b1fc58b28a25a377b620928f2be8efe2f67/28/dind/Dockerfile) +- [`28.3.1-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.1-dind-alpine3.22`, `28.3.1`, `28.3`, `28`, `latest`, `28.3.1-alpine3.22`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind/Dockerfile) -- [`28.3.0-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/a916243e36b818461dc38c36a28dfa74d9cdf8bd/28/dind-rootless/Dockerfile) +- [`28.3.1-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind-rootless/Dockerfile) -- [`28.3.0-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.1-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.0-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.1-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.3.0-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.3.1-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bddecb43d9f238232a55ce93807533116955afc5/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index e6444c39e084..c5c099f41b06 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.128.1`, `5.128`, `5`, `latest`](https://github.com/docker-library/ghost/blob/2714c8e60196bdb7df672ec534ac4c95de747af0/5/debian/Dockerfile) +- [`5.129.0`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c873d10369512d7d00f91814ddb395db890d0be2/5/debian/Dockerfile) -- [`5.128.1-alpine`, `5.128-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2714c8e60196bdb7df672ec534ac4c95de747af0/5/alpine/Dockerfile) +- [`5.129.0-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c873d10369512d7d00f91814ddb395db890d0be2/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index ed4e8f748530..25e98e09b212 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -44,6 +44,14 @@ WARNING: - [`7.0.21-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.25-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/Dockerfile) + +- [`6.0.25-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`6.0.25-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.25-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.24-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) - [`6.0.24-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -84,6 +92,21 @@ WARNING: - [`7.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- `6.0.25-rc0`, `6.0-rc`: + + - [`6.0.25-rc0-jammy`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/Dockerfile) + - [`6.0.25-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.25-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `6.0.25-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.25-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.25-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `6.0.25-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.25-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `6.0.24`, `6.0`, `6`: - [`6.0.24-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) diff --git a/rust/README.md b/rust/README.md index 3399c67d05c5..b1b39f6fe38a 100644 --- a/rust/README.md +++ b/rust/README.md @@ -32,6 +32,10 @@ WARNING: - [`1-slim-bookworm`, `1.88-slim-bookworm`, `1.88.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.88-slim`, `1.88.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bookworm/slim/Dockerfile) +- [`1-trixie`, `1.88-trixie`, `1.88.0-trixie`, `trixie`](https://github.com/rust-lang/docker-rust/blob/521720d715e0c4884c7424a27208568a83484baf/stable/trixie/Dockerfile) + +- [`1-slim-trixie`, `1.88-slim-trixie`, `1.88.0-slim-trixie`, `slim-trixie`](https://github.com/rust-lang/docker-rust/blob/521720d715e0c4884c7424a27208568a83484baf/stable/trixie/slim/Dockerfile) + - [`1-alpine3.20`, `1.88-alpine3.20`, `1.88.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.20/Dockerfile) - [`1-alpine3.21`, `1.88-alpine3.21`, `1.88.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.21/Dockerfile) @@ -127,7 +131,7 @@ The `rust` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From 73b469305968349c0157928cda79ee64c83fcecc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Jul 2025 12:11:27 -0700 Subject: [PATCH 2324/2686] Run update.sh --- influxdb/README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 6d88c7344a99..3329d2ec717c 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.2-core`, `3.2.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/3.2-core/Dockerfile) +- [`3-core`, `3.2-core`, `3.2.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/3.2-core/Dockerfile) -- [`3-enterprise`, `3.2-enterprise`, `3.2.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/abb94994d78be45ccaa56282f36c36ad16bd5a5e/influxdb/3.2-enterprise/Dockerfile) +- [`3-enterprise`, `3.2-enterprise`, `3.2.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/3.2-enterprise/Dockerfile) # Quick reference (cont.) From 1feac9fe12573b1491baa7dcb2c9812e52f5408c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 3 Jul 2025 16:11:09 -0700 Subject: [PATCH 2325/2686] Run update.sh --- amazonlinux/README.md | 4 +- busybox/README.md | 16 ++-- php/README.md | 168 ++++++++++++++---------------------------- rabbitmq/README.md | 8 +- 4 files changed, 70 insertions(+), 126 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 1789092dde3b..b581681fd01c 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250609.0`](https://github.com/amazonlinux/container-images/blob/4d953066c54d4022977eb64aa0b6bcd82e350f2f/Dockerfile) +- [`2023`, `latest`, `2023.7.20250623.1`](https://github.com/amazonlinux/container-images/blob/1d30653467bce95f1e74ce047c186cf527122751/Dockerfile) -- [`2`, `2.0.20250610.0`](https://github.com/amazonlinux/container-images/blob/890e843557c587dec993e9be443d9220e663580b/Dockerfile) +- [`2`, `2.0.20250623.0`](https://github.com/amazonlinux/container-images/blob/1f08d8c203661dd3116b52c70b6a6067b22cc81a/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/busybox/README.md b/busybox/README.md index e5ca4ea86aed..b3b6944d2359 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/d8f3d64265a740b8b5420edb72523a88130f7ef5/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 14a6885b5ce7..87ad13a0dc93 100644 --- a/php/README.md +++ b/php/README.md @@ -24,173 +24,117 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.4.9RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.9RC1-bookworm`, `8.4-rc-bookworm`, `8.4.9RC1-cli`, `8.4-rc-cli`, `8.4.9RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.10-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.10-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.10-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.10`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/cli/Dockerfile) -- [`8.4.9RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.9RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.10-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.10-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/apache/Dockerfile) -- [`8.4.9RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.9RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.10-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.10-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/fpm/Dockerfile) -- [`8.4.9RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.9RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.10-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.10-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/zts/Dockerfile) -- [`8.4.9RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.9RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.10-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.10-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/cli/Dockerfile) -- [`8.4.9RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.10-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/apache/Dockerfile) -- [`8.4.9RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.10-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/fpm/Dockerfile) -- [`8.4.9RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.10-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/zts/Dockerfile) -- [`8.4.9RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.9RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.9RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.9RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.10-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.10-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.10-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.10-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.9RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.9RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.10-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.10-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.9RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.9RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.10-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.10-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.9RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.9RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.10-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.10-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.9RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.10-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.9RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.10-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.8-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.8-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.8-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.8`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/cli/Dockerfile) +- [`8.3.23-cli-bookworm`, `8.3-cli-bookworm`, `8.3.23-bookworm`, `8.3-bookworm`, `8.3.23-cli`, `8.3-cli`, `8.3.23`, `8.3`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/cli/Dockerfile) -- [`8.4.8-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.8-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/apache/Dockerfile) +- [`8.3.23-apache-bookworm`, `8.3-apache-bookworm`, `8.3.23-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/apache/Dockerfile) -- [`8.4.8-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.8-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/fpm/Dockerfile) +- [`8.3.23-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.23-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/fpm/Dockerfile) -- [`8.4.8-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.8-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bookworm/zts/Dockerfile) +- [`8.3.23-zts-bookworm`, `8.3-zts-bookworm`, `8.3.23-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/zts/Dockerfile) -- [`8.4.8-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.8-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/cli/Dockerfile) +- [`8.3.23-cli-bullseye`, `8.3-cli-bullseye`, `8.3.23-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/cli/Dockerfile) -- [`8.4.8-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/apache/Dockerfile) +- [`8.3.23-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/apache/Dockerfile) -- [`8.4.8-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/fpm/Dockerfile) +- [`8.3.23-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/fpm/Dockerfile) -- [`8.4.8-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/bullseye/zts/Dockerfile) +- [`8.3.23-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/zts/Dockerfile) -- [`8.4.8-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.8-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.8-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.8-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/cli/Dockerfile) +- [`8.3.23-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.23-alpine3.22`, `8.3-alpine3.22`, `8.3.23-cli-alpine`, `8.3-cli-alpine`, `8.3.23-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.8-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/fpm/Dockerfile) +- [`8.3.23-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.23-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.8-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.22/zts/Dockerfile) +- [`8.3.23-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.23-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/zts/Dockerfile) -- [`8.4.8-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.8-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.23-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.23-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.8-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.23-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.8-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.23-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/zts/Dockerfile) -- [`8.3.23RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.23RC1-bookworm`, `8.3-rc-bookworm`, `8.3.23RC1-cli`, `8.3-rc-cli`, `8.3.23RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/cli/Dockerfile) +- [`8.2.29-cli-bookworm`, `8.2-cli-bookworm`, `8.2.29-bookworm`, `8.2-bookworm`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/cli/Dockerfile) -- [`8.3.23RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.23RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/apache/Dockerfile) +- [`8.2.29-apache-bookworm`, `8.2-apache-bookworm`, `8.2.29-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/apache/Dockerfile) -- [`8.3.23RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.23RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.2.29-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.29-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/fpm/Dockerfile) -- [`8.3.23RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.23RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bookworm/zts/Dockerfile) +- [`8.2.29-zts-bookworm`, `8.2-zts-bookworm`, `8.2.29-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/zts/Dockerfile) -- [`8.3.23RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.23RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/cli/Dockerfile) +- [`8.2.29-cli-bullseye`, `8.2-cli-bullseye`, `8.2.29-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/cli/Dockerfile) -- [`8.3.23RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/apache/Dockerfile) +- [`8.2.29-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/apache/Dockerfile) -- [`8.3.23RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.2.29-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/fpm/Dockerfile) -- [`8.3.23RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/bullseye/zts/Dockerfile) +- [`8.2.29-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/zts/Dockerfile) -- [`8.3.23RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.23RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.23RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.23RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/cli/Dockerfile) +- [`8.2.29-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.29-alpine3.22`, `8.2-alpine3.22`, `8.2.29-cli-alpine`, `8.2-cli-alpine`, `8.2.29-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/cli/Dockerfile) -- [`8.3.23RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.23RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/fpm/Dockerfile) +- [`8.2.29-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.29-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/fpm/Dockerfile) -- [`8.3.23RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.23RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.22/zts/Dockerfile) +- [`8.2.29-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.29-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/zts/Dockerfile) -- [`8.3.23RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.23RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.2.29-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.29-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/cli/Dockerfile) -- [`8.3.23RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.2.29-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/fpm/Dockerfile) -- [`8.3.23RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.2.29-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/zts/Dockerfile) -- [`8.3.22-cli-bookworm`, `8.3-cli-bookworm`, `8.3.22-bookworm`, `8.3-bookworm`, `8.3.22-cli`, `8.3-cli`, `8.3.22`, `8.3`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/cli/Dockerfile) +- [`8.1.33-cli-bookworm`, `8.1-cli-bookworm`, `8.1.33-bookworm`, `8.1-bookworm`, `8.1.33-cli`, `8.1-cli`, `8.1.33`, `8.1`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/cli/Dockerfile) -- [`8.3.22-apache-bookworm`, `8.3-apache-bookworm`, `8.3.22-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/apache/Dockerfile) +- [`8.1.33-apache-bookworm`, `8.1-apache-bookworm`, `8.1.33-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/apache/Dockerfile) -- [`8.3.22-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.22-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/fpm/Dockerfile) +- [`8.1.33-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.33-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/fpm/Dockerfile) -- [`8.3.22-zts-bookworm`, `8.3-zts-bookworm`, `8.3.22-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bookworm/zts/Dockerfile) +- [`8.1.33-zts-bookworm`, `8.1-zts-bookworm`, `8.1.33-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/zts/Dockerfile) -- [`8.3.22-cli-bullseye`, `8.3-cli-bullseye`, `8.3.22-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/cli/Dockerfile) +- [`8.1.33-cli-bullseye`, `8.1-cli-bullseye`, `8.1.33-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/cli/Dockerfile) -- [`8.3.22-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/apache/Dockerfile) +- [`8.1.33-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/apache/Dockerfile) -- [`8.3.22-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/fpm/Dockerfile) +- [`8.1.33-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/fpm/Dockerfile) -- [`8.3.22-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/bullseye/zts/Dockerfile) +- [`8.1.33-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/zts/Dockerfile) -- [`8.3.22-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.22-alpine3.22`, `8.3-alpine3.22`, `8.3.22-cli-alpine`, `8.3-cli-alpine`, `8.3.22-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/cli/Dockerfile) +- [`8.1.33-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.33-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.22-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/fpm/Dockerfile) +- [`8.1.33-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.22-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.22/zts/Dockerfile) +- [`8.1.33-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/zts/Dockerfile) -- [`8.3.22-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.22-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/cli/Dockerfile) +- [`8.1.33-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.33-alpine3.21`, `8.1-alpine3.21`, `8.1.33-cli-alpine`, `8.1-cli-alpine`, `8.1.33-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/cli/Dockerfile) -- [`8.3.22-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/fpm/Dockerfile) +- [`8.1.33-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.33-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/fpm/Dockerfile) -- [`8.3.22-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.3/alpine3.21/zts/Dockerfile) - -- [`8.2.28-cli-bookworm`, `8.2-cli-bookworm`, `8.2.28-bookworm`, `8.2-bookworm`, `8.2.28-cli`, `8.2-cli`, `8.2.28`, `8.2`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/cli/Dockerfile) - -- [`8.2.28-apache-bookworm`, `8.2-apache-bookworm`, `8.2.28-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/apache/Dockerfile) - -- [`8.2.28-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.28-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.28-zts-bookworm`, `8.2-zts-bookworm`, `8.2.28-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bookworm/zts/Dockerfile) - -- [`8.2.28-cli-bullseye`, `8.2-cli-bullseye`, `8.2.28-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/cli/Dockerfile) - -- [`8.2.28-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/apache/Dockerfile) - -- [`8.2.28-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.28-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/bullseye/zts/Dockerfile) - -- [`8.2.28-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.28-alpine3.22`, `8.2-alpine3.22`, `8.2.28-cli-alpine`, `8.2-cli-alpine`, `8.2.28-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/cli/Dockerfile) - -- [`8.2.28-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.28-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/fpm/Dockerfile) - -- [`8.2.28-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.28-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.22/zts/Dockerfile) - -- [`8.2.28-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.28-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/cli/Dockerfile) - -- [`8.2.28-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/fpm/Dockerfile) - -- [`8.2.28-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.2/alpine3.21/zts/Dockerfile) - -- [`8.1.32-cli-bookworm`, `8.1-cli-bookworm`, `8.1.32-bookworm`, `8.1-bookworm`, `8.1.32-cli`, `8.1-cli`, `8.1.32`, `8.1`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/cli/Dockerfile) - -- [`8.1.32-apache-bookworm`, `8.1-apache-bookworm`, `8.1.32-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/apache/Dockerfile) - -- [`8.1.32-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.32-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/fpm/Dockerfile) - -- [`8.1.32-zts-bookworm`, `8.1-zts-bookworm`, `8.1.32-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bookworm/zts/Dockerfile) - -- [`8.1.32-cli-bullseye`, `8.1-cli-bullseye`, `8.1.32-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/cli/Dockerfile) - -- [`8.1.32-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/apache/Dockerfile) - -- [`8.1.32-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/fpm/Dockerfile) - -- [`8.1.32-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/bullseye/zts/Dockerfile) - -- [`8.1.32-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.32-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/cli/Dockerfile) - -- [`8.1.32-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/fpm/Dockerfile) - -- [`8.1.32-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.22/zts/Dockerfile) - -- [`8.1.32-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.32-alpine3.21`, `8.1-alpine3.21`, `8.1.32-cli-alpine`, `8.1-cli-alpine`, `8.1.32-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/cli/Dockerfile) - -- [`8.1.32-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.32-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/fpm/Dockerfile) - -- [`8.1.32-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.32-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/2a5269015e47294d70bbd025facd38b6ac564990/8.1/alpine3.21/zts/Dockerfile) +- [`8.1.33-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.33-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/zts/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f1058d0ef1ef..e7460293e33f 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.1`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/9eafde89a61aa032cf9a47cd1e58951444210ff5/4.1/ubuntu/Dockerfile) +- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/2ce885bd43ce1b6c103ab672ceb1b6a0860d381f/4.1/ubuntu/Dockerfile) -- [`4.1.1-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) +- [`4.1.2-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.1-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/9eafde89a61aa032cf9a47cd1e58951444210ff5/4.1/alpine/Dockerfile) +- [`4.1.2-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2ce885bd43ce1b6c103ab672ceb1b6a0860d381f/4.1/alpine/Dockerfile) -- [`4.1.1-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) +- [`4.1.2-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/87e124e1c98f38cda70af592b5c994c36cb7847c/4.0/ubuntu/Dockerfile) From d4b7f811b97370d8c85081a8235103020aabc5db Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Jul 2025 10:10:04 -0700 Subject: [PATCH 2326/2686] Run update.sh --- redis/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/redis/README.md b/redis/README.md index debdb81c5820..dc23faa234c0 100644 --- a/redis/README.md +++ b/redis/README.md @@ -28,21 +28,21 @@ WARNING: - [`8.2-m01-alpine`, `8.2-m01-alpine3.22`](https://github.com/redis/docker-library-redis/blob/c0091fa744e1437a972c5ee5c8062dc1894e6ab7/alpine/Dockerfile) -- [`8.0.2`, `8.0`, `8`, `8.0.2-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/debian/Dockerfile) +- [`8.0.3`, `8.0`, `8`, `8.0.3-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) -- [`8.0.2-alpine`, `8.0-alpine`, `8-alpine`, `8.0.2-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/5151eacdaf46f588f330c2e45fbed7fa0a7c192e/alpine/Dockerfile) +- [`8.0.3-alpine`, `8.0-alpine`, `8-alpine`, `8.0.3-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/alpine/Dockerfile) -- [`7.4.4`, `7.4`, `7`, `7.4.4-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.4/debian/Dockerfile) +- [`7.4.5`, `7.4`, `7`, `7.4.5-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.4/debian/Dockerfile) -- [`7.4.4-alpine`, `7.4-alpine`, `7-alpine`, `7.4.4-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.4/alpine/Dockerfile) +- [`7.4.5-alpine`, `7.4-alpine`, `7-alpine`, `7.4.5-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.4/alpine/Dockerfile) -- [`7.2.9`, `7.2`, `7.2.9-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.2/debian/Dockerfile) +- [`7.2.10`, `7.2`, `7.2.10-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.2/debian/Dockerfile) -- [`7.2.9-alpine`, `7.2-alpine`, `7.2.9-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7eaf5cd7042aee7a3f9049d91e48c647e2422de5/7.2/alpine/Dockerfile) +- [`7.2.10-alpine`, `7.2-alpine`, `7.2.10-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.2/alpine/Dockerfile) -- [`6.2.18`, `6.2`, `6`, `6.2.18-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/6.2/debian/Dockerfile) +- [`6.2.19`, `6.2`, `6`, `6.2.19-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/6.2/debian/Dockerfile) -- [`6.2.18-alpine`, `6.2-alpine`, `6-alpine`, `6.2.18-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/27cd071c3e9d903a19c79577ddb82fb322ef5ed6/6.2/alpine/Dockerfile) +- [`6.2.19-alpine`, `6.2-alpine`, `6-alpine`, `6.2.19-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/6.2/alpine/Dockerfile) # Quick reference (cont.) From f865c85e24e4aa0980763e4f7af780d57b21875a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Jul 2025 13:10:00 -0700 Subject: [PATCH 2327/2686] Run update.sh --- jetty/README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index e474b6f7eefd..f0c93841a459 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,25 +54,25 @@ WARNING: - [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.22-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.22-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.23-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.23-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.22-jre21`, `12.0-jre21`, `12-jre21`, `12.0.22-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.23-jre21`, `12.0-jre21`, `12-jre21`, `12.0.23-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.22-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.22-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.23-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.23-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.22-jre17`, `12.0-jre17`, `12-jre17`, `12.0.22-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.23-jre17`, `12.0-jre17`, `12-jre17`, `12.0.23-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.22-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.22-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.23-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.23-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.22-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.22-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.23-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.23-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.22-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.22-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.23-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.23-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.22`, `12.0`, `12`, `12.0.22-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.22-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.22-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.23`, `12.0`, `12`, `12.0.23-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.23-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.23-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.22-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.22-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.23-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.23-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.22-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.22-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.23-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.23-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -138,19 +138,19 @@ WARNING: - [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.22-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.23-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.22-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.23-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.22-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.23-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.22-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.22-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.23-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.23-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.22-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.23-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.22-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.23-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.22-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/23b358279dbdb246f24a3ebc52fa0bee11d91b74/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.23-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) From 73df6ec6010741730459f0504e47114ec041f5cf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Jul 2025 14:09:55 -0700 Subject: [PATCH 2328/2686] Run update.sh --- archlinux/README.md | 6 +-- clickhouse/README.md | 8 ++-- ghost/README.md | 4 +- golang/README.md | 12 +++--- gradle/README.md | 88 ++++++++++++++++++++-------------------- node/README.md | 36 ++++++++--------- openjdk/README.md | 80 ++++++++++++++++++------------------ percona/README.md | 6 ++- perl/README.md | 64 ++++++++++++++--------------- pypy/README.md | 71 +++++++++++--------------------- redis/README.md | 4 +- sapmachine/README.md | 96 ++++++++++++++++++-------------------------- sonarqube/README.md | 28 ++++++------- tomcat/README.md | 80 ++++++++++++++++++------------------ 14 files changed, 272 insertions(+), 311 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 90be41fd3e79..65098954100a 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.base) +- [`latest`, `base`, `base-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.base) -- [`base-devel`, `base-devel-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250629.0.373469`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/6dc57a996ed660aa8f9b7c085572a238dc05cc8e/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clickhouse/README.md b/clickhouse/README.md index 2917cc7326df..50daddbddbec 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.1`, `25.6.1-jammy`, `25.6.1.3206`, `25.6.1.3206-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.6.1.3206/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.2`, `25.6.2-jammy`, `25.6.2.5`, `25.6.2.5-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.6.2.5/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.4`, `25.5.4-jammy`, `25.5.4.38`, `25.5.4.38-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.5.4.38/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.6`, `25.5.6-jammy`, `25.5.6.14`, `25.5.6.14-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.5.6.14/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.7`, `25.4.7-jammy`, `25.4.7.66`, `25.4.7.66-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.4.7.66/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.9`, `25.4.9-jammy`, `25.4.9.14`, `25.4.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.4.9.14/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.4`, `25.3.4-jammy`, `25.3.4.190`, `25.3.4.190-jammy`](https://github.com/ClickHouse/docker-library/blob/100a02a77ed1b4d8cdee2db2504c7674b6ab2bfd/server/25.3.4.190/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.5`, `25.3.5-jammy`, `25.3.5.42`, `25.3.5.42-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.3.5.42/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index c5c099f41b06..ffab99539866 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.129.0`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/c873d10369512d7d00f91814ddb395db890d0be2/5/debian/Dockerfile) +- [`5.129.1`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e8c710980b66691311f973ba46ca8c5fb8588dbe/5/debian/Dockerfile) -- [`5.129.0-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/c873d10369512d7d00f91814ddb395db890d0be2/5/alpine/Dockerfile) +- [`5.129.1-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e8c710980b66691311f973ba46ca8c5fb8588dbe/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 74368219e37b..2e092fe7a579 100644 --- a/golang/README.md +++ b/golang/README.md @@ -72,13 +72,13 @@ WARNING: - [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250629-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bookworm/Dockerfile) +- [`tip-20250704-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bookworm/Dockerfile) -- [`tip-20250629-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bullseye/Dockerfile) +- [`tip-20250704-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bullseye/Dockerfile) -- [`tip-20250629-alpine3.22`, `tip-alpine3.22`, `tip-20250629-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/alpine3.22/Dockerfile) +- [`tip-20250704-alpine3.22`, `tip-alpine3.22`, `tip-20250704-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/alpine3.22/Dockerfile) -- [`tip-20250629-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/alpine3.21/Dockerfile) +- [`tip-20250704-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -125,9 +125,9 @@ WARNING: - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250629`, `tip`: +- `tip-20250704`, `tip`: - - [`tip-20250629-bookworm`](https://github.com/docker-library/golang/blob/543a928a309ef15f44b15b542db70dad4a78bd46/tip/bookworm/Dockerfile) + - [`tip-20250704-bookworm`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index b700b97980a1..12c58bb2fd20 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,93 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.2-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.2-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.2-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.2`, `8.14`, `8`, `8.14.2-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.2-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-noble/Dockerfile) -- [`8.14.2-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.2-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.2-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-jammy/Dockerfile) -- [`8.14.2-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.2-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.2-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-alpine/Dockerfile) -- [`8.14.2-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.2-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-corretto/Dockerfile) -- [`8.14.2-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.2-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-ubi9/Dockerfile) -- [`8.14.2-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.2-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.2-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.2-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.2-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.2-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-noble-graal/Dockerfile) -- [`8.14.2-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.2-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.2-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-jammy-graal/Dockerfile) -- [`8.14.2-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.2-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-noble/Dockerfile) -- [`8.14.2-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-jammy/Dockerfile) -- [`8.14.2-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-alpine/Dockerfile) -- [`8.14.2-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.2-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-corretto/Dockerfile) -- [`8.14.2-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.2-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-ubi9/Dockerfile) -- [`8.14.2-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.2-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-noble-graal/Dockerfile) -- [`8.14.2-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-jammy-graal/Dockerfile) -- [`8.14.2-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.2-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-jammy/Dockerfile) -- [`8.14.2-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-alpine/Dockerfile) -- [`8.14.2-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.2-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-corretto/Dockerfile) -- [`8.14.2-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.2-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-ubi9/Dockerfile) -- [`8.14.2-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.2-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-jammy/Dockerfile) -- [`8.14.2-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.2-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-corretto/Dockerfile) -- [`8.14.2-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.2-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-ubi9/Dockerfile) -- [`8.14.2-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.2-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-noble/Dockerfile) -- [`8.14.2-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-alpine/Dockerfile) -- [`8.14.2-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.2-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-corretto/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-corretto/Dockerfile) -- [`8.14.2-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.2-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-ubi9/Dockerfile) +- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-ubi9/Dockerfile) -- [`8.14.2-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.2-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-noble-graal/Dockerfile) -- [`8.14.2-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.2-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.2-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.2-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current/Dockerfile) +- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current/Dockerfile) -- [`8.14.2-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.2-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.2-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.2-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.2-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.2-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.2-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.2-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.2-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.2-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/fbe624190acab50d1aa82bbe6c94d117f77a39c1/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.5-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.5-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.5-jdk`, `7.6-jdk`, `7-jdk`, `7.6.5`, `7.6`, `7`, `7.6.5-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.5-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-noble/Dockerfile) +- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) -- [`7.6.5-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.5-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.5-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-jammy/Dockerfile) +- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy/Dockerfile) -- [`7.6.5-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.5-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.5-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-alpine/Dockerfile) +- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-alpine/Dockerfile) -- [`7.6.5-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.5-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-corretto/Dockerfile) +- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-corretto/Dockerfile) -- [`7.6.5-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.5-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-ubi9/Dockerfile) +- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-ubi9/Dockerfile) -- [`7.6.5-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.5-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.5-graal`, `7.6-graal`, `7-graal`, `7.6.5-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.5-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.5-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-noble-graal/Dockerfile) +- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble-graal/Dockerfile) -- [`7.6.5-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.5-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.5-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk17-jammy-graal/Dockerfile) +- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy-graal/Dockerfile) -- [`7.6.5-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.5-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-jammy/Dockerfile) +- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-jammy/Dockerfile) -- [`7.6.5-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-alpine/Dockerfile) +- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-alpine/Dockerfile) -- [`7.6.5-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.5-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-corretto/Dockerfile) +- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-corretto/Dockerfile) -- [`7.6.5-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.5-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk11-ubi9/Dockerfile) +- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-ubi9/Dockerfile) -- [`7.6.5-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.5-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-jammy/Dockerfile) +- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-jammy/Dockerfile) -- [`7.6.5-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.5-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-corretto/Dockerfile) +- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-corretto/Dockerfile) -- [`7.6.5-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.5-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/17989d30c31815509e1002fff3b45cbd1777471b/jdk8-ubi9/Dockerfile) +- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-ubi9/Dockerfile) - [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) diff --git a/node/README.md b/node/README.md index c15872825974..2cc74d130e4a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,41 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.3-alpine3.21`, `24.3.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.3-alpine3.21`, `24.3.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.3-alpine`, `24.3-alpine3.22`, `24.3.0-alpine`, `24.3.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.3-alpine`, `24.3-alpine3.22`, `24.3.0-alpine`, `24.3.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.3`, `24.3-bookworm`, `24.3.0`, `24.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.3`, `24.3-bookworm`, `24.3.0`, `24.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.3-bookworm-slim`, `24.3-slim`, `24.3.0-bookworm-slim`, `24.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.3-bookworm-slim`, `24.3-slim`, `24.3.0-bookworm-slim`, `24.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.3-bullseye`, `24.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.3-bullseye`, `24.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.3-bullseye-slim`, `24.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.3-bullseye-slim`, `24.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bullseye-slim/Dockerfile) -- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.0-alpine`, `22.17.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.0-alpine`, `22.17.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.0`, `22.17.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.0`, `22.17.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.0-bookworm-slim`, `22.17.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.0-bookworm-slim`, `22.17.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.17-bullseye`, `22.17.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.17-bullseye`, `22.17.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/781fc74e97c58255f2078b1ffcc85f16208b2604/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bullseye-slim/Dockerfile) -- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.3-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/alpine3.21/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.3-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.3-alpine`, `20.19.3-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/alpine3.22/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.3-alpine`, `20.19.3-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/alpine3.22/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.3`, `20.19.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.3`, `20.19.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.3-bookworm-slim`, `20.19.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.3-bookworm-slim`, `20.19.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/009449f787348218b6b4ecbfb359b8dd1d0092fc/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bullseye-slim/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 520fb41634a8..52e94892ce28 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-4-jdk-oraclelinux9`, `26-ea-4-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-4-jdk-oracle`, `26-ea-4-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-5-jdk-oraclelinux9`, `26-ea-5-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-5-jdk-oracle`, `26-ea-5-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-4-jdk-oraclelinux8`, `26-ea-4-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-5-jdk-oraclelinux8`, `26-ea-5-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-4-jdk-bookworm`, `26-ea-4-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/bookworm/Dockerfile) +- [`26-ea-5-jdk-bookworm`, `26-ea-5-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/bookworm/Dockerfile) -- [`26-ea-4-jdk-slim-bookworm`, `26-ea-4-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-4-jdk-slim`, `26-ea-4-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-5-jdk-slim-bookworm`, `26-ea-5-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-5-jdk-slim`, `26-ea-5-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-4-jdk-bullseye`, `26-ea-4-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/bullseye/Dockerfile) +- [`26-ea-5-jdk-bullseye`, `26-ea-5-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/bullseye/Dockerfile) -- [`26-ea-4-jdk-slim-bullseye`, `26-ea-4-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-5-jdk-slim-bullseye`, `26-ea-5-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-4-jdk-windowsservercore-ltsc2025`, `26-ea-4-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-5-jdk-windowsservercore-ltsc2025`, `26-ea-5-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-4-jdk-windowsservercore-ltsc2022`, `26-ea-4-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-5-jdk-windowsservercore-ltsc2022`, `26-ea-5-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-4-jdk-nanoserver-ltsc2025`, `26-ea-4-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-5-jdk-nanoserver-ltsc2025`, `26-ea-5-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-4-jdk-nanoserver-ltsc2022`, `26-ea-4-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-5-jdk-nanoserver-ltsc2022`, `26-ea-5-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-29-jdk-oraclelinux9`, `25-ea-29-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-29-jdk-oracle`, `25-ea-29-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-30-jdk-oraclelinux9`, `25-ea-30-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-30-jdk-oracle`, `25-ea-30-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-29-jdk-oraclelinux8`, `25-ea-29-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-30-jdk-oraclelinux8`, `25-ea-30-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-29-jdk-bookworm`, `25-ea-29-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/bookworm/Dockerfile) +- [`25-ea-30-jdk-bookworm`, `25-ea-30-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/bookworm/Dockerfile) -- [`25-ea-29-jdk-slim-bookworm`, `25-ea-29-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-29-jdk-slim`, `25-ea-29-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-30-jdk-slim-bookworm`, `25-ea-30-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-30-jdk-slim`, `25-ea-30-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-29-jdk-bullseye`, `25-ea-29-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/bullseye/Dockerfile) +- [`25-ea-30-jdk-bullseye`, `25-ea-30-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/bullseye/Dockerfile) -- [`25-ea-29-jdk-slim-bullseye`, `25-ea-29-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-30-jdk-slim-bullseye`, `25-ea-30-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-29-jdk-windowsservercore-ltsc2025`, `25-ea-29-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-30-jdk-windowsservercore-ltsc2025`, `25-ea-30-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-29-jdk-windowsservercore-ltsc2022`, `25-ea-29-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-30-jdk-windowsservercore-ltsc2022`, `25-ea-30-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-29-jdk-nanoserver-ltsc2025`, `25-ea-29-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-30-jdk-nanoserver-ltsc2025`, `25-ea-30-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-29-jdk-nanoserver-ltsc2022`, `25-ea-29-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-30-jdk-nanoserver-ltsc2022`, `25-ea-30-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-4-jdk`, `26-ea-4`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-5-jdk`, `26-ea-5`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-4-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-4-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-5-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-4-jdk-windowsservercore`, `26-ea-4-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-5-jdk-windowsservercore`, `26-ea-5-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-4-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-4-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-5-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-4-jdk-nanoserver`, `26-ea-4-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-5-jdk-nanoserver`, `26-ea-5-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-4-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-4-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/4dd8a181f1ef006ac911ffba5117600debb8df17/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-5-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-5-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-29-jdk`, `25-ea-29`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-30-jdk`, `25-ea-30`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-29-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-29-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-30-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-29-jdk-windowsservercore`, `25-ea-29-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-30-jdk-windowsservercore`, `25-ea-30-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-29-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-29-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-30-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-29-jdk-nanoserver`, `25-ea-29-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-30-jdk-nanoserver`, `25-ea-30-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-29-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-29-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/28b0306abb768c3e808a4c3111853bf3d894cfea/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-30-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-30-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 985078d1c43c..068f927d9291 100644 --- a/percona/README.md +++ b/percona/README.md @@ -26,7 +26,11 @@ WARNING: - [`8.0.42-33-centos`, `8.0-centos`, `8-centos`, `8.0.42-33`, `8.0`, `8`, `ps-8.0.42-33`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/9cd781adb27010da39faab5daca25c1e72db0af4/percona-server-8.0/Dockerfile-dockerhub) -- [`psmdb-6.0.21`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/01836bbd1b62ad6ee28226986b2d7fff660523b6/percona-server-mongodb-6.0/Dockerfile-dockerhub) +- [`psmdb-8.0.8`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-8.0/Dockerfile-dockerhub) + +- [`psmdb-7.0.18`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-7.0/Dockerfile-dockerhub) + +- [`psmdb-6.0.24`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-6.0/Dockerfile-dockerhub) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index b407d357aceb..6177fb48bd5a 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.40.2`, `5.40`, `5`, `latest`, `stable`, `5.40.2-bookworm`, `5.40-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main-bookworm/Dockerfile) +- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main-bookworm/Dockerfile) -- [`5.40.2-bullseye`, `5.40-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main-bullseye/Dockerfile) +- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main-bullseye/Dockerfile) -- [`5.40.2-slim`, `5.40-slim`, `5-slim`, `slim`, `stable-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim-bookworm/Dockerfile) +- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim-bookworm/Dockerfile) -- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim-bullseye/Dockerfile) +- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim-bullseye/Dockerfile) -- [`5.40.2-threaded`, `5.40-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main,threaded-bookworm/Dockerfile) +- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main,threaded-bookworm/Dockerfile) -- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-main,threaded-bullseye/Dockerfile) +- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main,threaded-bullseye/Dockerfile) -- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim,threaded-bookworm/Dockerfile) +- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.040.002-slim,threaded-bullseye/Dockerfile) +- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim,threaded-bullseye/Dockerfile) -- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main-bookworm/Dockerfile) +- [`5.40.2`, `5.40`, `5.40.2-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main-bookworm/Dockerfile) -- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main-bullseye/Dockerfile) +- [`5.40.2-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main-bullseye/Dockerfile) -- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim-bookworm/Dockerfile) +- [`5.40.2-slim`, `5.40-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim-bookworm/Dockerfile) -- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim-bullseye/Dockerfile) +- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim-bullseye/Dockerfile) -- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main,threaded-bookworm/Dockerfile) +- [`5.40.2-threaded`, `5.40-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main,threaded-bookworm/Dockerfile) -- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-main,threaded-bullseye/Dockerfile) +- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main,threaded-bullseye/Dockerfile) -- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim,threaded-bookworm/Dockerfile) +- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim,threaded-bookworm/Dockerfile) -- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.038.004-slim,threaded-bullseye/Dockerfile) +- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim,threaded-bullseye/Dockerfile) -- [`5.36.3`, `5.36`, `5.36.3-bookworm`, `5.36-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main-bookworm/Dockerfile) +- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main-bookworm/Dockerfile) -- [`5.36.3-bullseye`, `5.36-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main-bullseye/Dockerfile) +- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main-bullseye/Dockerfile) -- [`5.36.3-slim`, `5.36-slim`, `5.36.3-slim-bookworm`, `5.36-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim-bookworm/Dockerfile) +- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim-bookworm/Dockerfile) -- [`5.36.3-slim-bullseye`, `5.36-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim-bullseye/Dockerfile) +- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim-bullseye/Dockerfile) -- [`5.36.3-threaded`, `5.36-threaded`, `5.36.3-threaded-bookworm`, `5.36-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main,threaded-bookworm/Dockerfile) +- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main,threaded-bookworm/Dockerfile) -- [`5.36.3-threaded-bullseye`, `5.36-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-main,threaded-bullseye/Dockerfile) +- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main,threaded-bullseye/Dockerfile) -- [`5.36.3-slim-threaded`, `5.36-slim-threaded`, `5.36.3-slim-threaded-bookworm`, `5.36-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim,threaded-bookworm/Dockerfile) +- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim,threaded-bookworm/Dockerfile) -- [`5.36.3-slim-threaded-bullseye`, `5.36-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.036.003-slim,threaded-bullseye/Dockerfile) +- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim,threaded-bullseye/Dockerfile) -- [`5.41.13`, `5.41`, `devel`, `5.41.13-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main-bookworm/Dockerfile) +- [`5.41.13`, `5.41`, `devel`, `5.41.13-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main-bookworm/Dockerfile) -- [`5.41.13-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main-bullseye/Dockerfile) +- [`5.41.13-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main-bullseye/Dockerfile) -- [`5.41.13-slim`, `5.41-slim`, `devel-slim`, `5.41.13-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim-bookworm/Dockerfile) +- [`5.41.13-slim`, `5.41-slim`, `devel-slim`, `5.41.13-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim-bookworm/Dockerfile) -- [`5.41.13-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim-bullseye/Dockerfile) +- [`5.41.13-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim-bullseye/Dockerfile) -- [`5.41.13-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.13-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main,threaded-bookworm/Dockerfile) +- [`5.41.13-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.13-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main,threaded-bookworm/Dockerfile) -- [`5.41.13-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-main,threaded-bullseye/Dockerfile) +- [`5.41.13-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main,threaded-bullseye/Dockerfile) -- [`5.41.13-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.13-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim,threaded-bookworm/Dockerfile) +- [`5.41.13-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.13-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim,threaded-bookworm/Dockerfile) -- [`5.41.13-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/876d8d6e4273ac9361142cd488f4717d880668de/5.041.013-slim,threaded-bullseye/Dockerfile) +- [`5.41.13-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/pypy/README.md b/pypy/README.md index 4960358b23ce..84f189aa974a 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,72 +28,49 @@ WARNING: ## Simple Tags -- [`3.11-7.3.19-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/bookworm/Dockerfile) +- [`3.11-7.3.20-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`, `3-7.3.20-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/bookworm/Dockerfile) -- [`3.11-7.3.19-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3.11-7.3.19-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/slim-bookworm/Dockerfile) +- [`3.11-7.3.20-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3-7.3.20-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.11-7.3.20-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`, `3-7.3.20-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/slim-bookworm/Dockerfile) -- [`3.11-7.3.19-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.11-7.3.20-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`, `3-7.3.20-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.11-7.3.19-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.11-7.3.20-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-7.3.20-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.10-7.3.19-bookworm`, `3.10-7.3-bookworm`, `3.10-7-bookworm`, `3.10-bookworm`, `3-7.3.19-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) +- [`2.7-7.3.20-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.20-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bookworm/Dockerfile) -- [`3.10-7.3.19-slim`, `3.10-7.3-slim`, `3.10-7-slim`, `3.10-slim`, `3-7.3.19-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.10-7.3.19-slim-bookworm`, `3.10-7.3-slim-bookworm`, `3.10-7-slim-bookworm`, `3.10-slim-bookworm`, `3-7.3.19-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/slim-bookworm/Dockerfile) +- [`2.7-7.3.20-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.20-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.20-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.20-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/slim-bookworm/Dockerfile) -- [`3.10-7.3.19-bullseye`, `3.10-7.3-bullseye`, `3.10-7-bullseye`, `3.10-bullseye`, `3-7.3.19-bullseye`, `3-7.3-bullseye`, `3-7-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bullseye/Dockerfile) +- [`2.7-7.3.20-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.20-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bullseye/Dockerfile) -- [`3.10-7.3.19-slim-bullseye`, `3.10-7.3-slim-bullseye`, `3.10-7-slim-bullseye`, `3.10-slim-bullseye`, `3-7.3.19-slim-bullseye`, `3-7.3-slim-bullseye`, `3-7-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/slim-bullseye/Dockerfile) +- [`2.7-7.3.20-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.20-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/slim-bullseye/Dockerfile) -- [`3.10-7.3.19-windowsservercore-ltsc2025`, `3.10-7.3-windowsservercore-ltsc2025`, `3.10-7-windowsservercore-ltsc2025`, `3.10-windowsservercore-ltsc2025`, `3-7.3.19-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) +- [`2.7-7.3.20-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.20-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.10-7.3.19-windowsservercore-ltsc2022`, `3.10-7.3-windowsservercore-ltsc2022`, `3.10-7-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-7.3.19-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`2.7-7.3.19-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.19-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) - -- [`2.7-7.3.19-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.19-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.19-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.19-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/slim-bookworm/Dockerfile) - -- [`2.7-7.3.19-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.19-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bullseye/Dockerfile) - -- [`2.7-7.3.19-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.19-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/slim-bullseye/Dockerfile) - -- [`2.7-7.3.19-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.19-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`2.7-7.3.19-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.19-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) +- [`2.7-7.3.20-windowsservercore-ltsc2022`, `2.7-7.3-windowsservercore-ltsc2022`, `2.7-7-windowsservercore-ltsc2022`, `2.7-windowsservercore-ltsc2022`, `2-7.3.20-windowsservercore-ltsc2022`, `2-7.3-windowsservercore-ltsc2022`, `2-7-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `3.11-7.3.19`, `3.11-7.3`, `3.11-7`, `3.11`: - - - [`3.11-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/bookworm/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - -- `3.11-7.3.19-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`: - - - [`3.11-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.11-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.11/windows/windowsservercore-ltsc2022/Dockerfile) - -- `3.10-7.3.19`, `3.10-7.3`, `3.10-7`, `3.10`, `3-7.3.19`, `3-7.3`, `3-7`, `3`, `latest`: +- `3.11-7.3.20`, `3.11-7.3`, `3.11-7`, `3.11`, `3-7.3.20`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.10-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/bookworm/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.20-bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/bookworm/Dockerfile) + - [`3.11-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.10-7.3.19-windowsservercore`, `3.10-7.3-windowsservercore`, `3.10-7-windowsservercore`, `3.10-windowsservercore`, `3-7.3.19-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.11-7.3.20-windowsservercore`, `3.11-7.3-windowsservercore`, `3.11-7-windowsservercore`, `3.11-windowsservercore`, `3-7.3.20-windowsservercore`, `3-7.3-windowsservercore`, `3-7-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.10-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.10-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/3.10/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.11-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.11-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `2.7-7.3.19`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.19`, `2-7.3`, `2-7`, `2`: +- `2.7-7.3.20`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.20`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.19-bookworm`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/bookworm/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.20-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bookworm/Dockerfile) + - [`2.7-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2022/Dockerfile) -- `2.7-7.3.19-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.19-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: +- `2.7-7.3.20-windowsservercore`, `2.7-7.3-windowsservercore`, `2.7-7-windowsservercore`, `2.7-windowsservercore`, `2-7.3.20-windowsservercore`, `2-7.3-windowsservercore`, `2-7-windowsservercore`, `2-windowsservercore`: - - [`2.7-7.3.19-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - - [`2.7-7.3.19-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/36a974d67789b4535820e4673345c79740c1a4e2/2.7/windows/windowsservercore-ltsc2022/Dockerfile) + - [`2.7-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2025/Dockerfile) + - [`2.7-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/redis/README.md b/redis/README.md index dc23faa234c0..ac8b5cc59d85 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2-m01`, `8.2-m01-bookworm`](https://github.com/redis/docker-library-redis/blob/c0091fa744e1437a972c5ee5c8062dc1894e6ab7/debian/Dockerfile) +- [`8.2-rc1`, `8.2-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/dc9ceb8661ea4bfc660d73d6889533e0ae8fb3f3/debian/Dockerfile) -- [`8.2-m01-alpine`, `8.2-m01-alpine3.22`](https://github.com/redis/docker-library-redis/blob/c0091fa744e1437a972c5ee5c8062dc1894e6ab7/alpine/Dockerfile) +- [`8.2-rc1-alpine`, `8.2-rc1-alpine3.22`](https://github.com/redis/docker-library-redis/blob/dc9ceb8661ea4bfc660d73d6889533e0ae8fb3f3/alpine/Dockerfile) - [`8.0.3`, `8.0`, `8`, `8.0.3-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 15a32cb368af..9b05047556af 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,71 +24,63 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jdk-ubuntu`, `24`, `24-jdk-ubuntu`, `24.0.1`, `24.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24.0.1-ubuntu-noble`, `24.0.1-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24.0.1-jdk-ubuntu-noble`, `24.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `24`, `24-ubuntu`, `24.0.1`, `24.0.1-ubuntu`, `24-jdk`, `24-jdk-ubuntu`, `24.0.1-jdk`, `24.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `24.0.1-ubuntu-noble`, `24.0.1-ubuntu-24.04`, `24.0.1-jdk-ubuntu-noble`, `24.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu`, `24-jdk-headless-ubuntu`, `24.0.1-jdk-headless-ubuntu`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24.0.1-jdk-headless-ubuntu-noble`, `24.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless`, `jdk-headless-ubuntu`, `24-jdk-headless`, `24-jdk-headless-ubuntu`, `24.0.1-jdk-headless`, `24.0.1-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `24.0.1-jdk-headless-ubuntu-noble`, `24.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre-ubuntu`, `24-jre-ubuntu`, `24.0.1-jre-ubuntu`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24.0.1-jre-ubuntu-noble`, `24.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) +- [`jre`, `jre-ubuntu`, `24-jre`, `24-jre-ubuntu`, `24.0.1-jre`, `24.0.1-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `24.0.1-jre-ubuntu-noble`, `24.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless-ubuntu`, `24-jre-headless-ubuntu`, `24.0.1-jre-headless-ubuntu`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24.0.1-jre-headless-ubuntu-noble`, `24.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless`, `jre-headless-ubuntu`, `24-jre-headless`, `24-jre-headless-ubuntu`, `24.0.1-jre-headless`, `24.0.1-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `24.0.1-jre-headless-ubuntu-noble`, `24.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24.0.1-ubuntu-jammy`, `24.0.1-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24.0.1-jdk-ubuntu-jammy`, `24.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `24.0.1-ubuntu-jammy`, `24.0.1-ubuntu-22.04`, `24.0.1-jdk-ubuntu-jammy`, `24.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) -- [`24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24.0.1-jdk-headless-ubuntu-jammy`, `24.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `24.0.1-jdk-headless-ubuntu-jammy`, `24.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) -- [`24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24.0.1-jre-ubuntu-jammy`, `24.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) +- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `24.0.1-jre-ubuntu-jammy`, `24.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) -- [`24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24.0.1-jre-headless-ubuntu-jammy`, `24.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `24.0.1-jre-headless-ubuntu-jammy`, `24.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) -- [`ubuntu-focal`, `ubuntu-20.04`, `24-ubuntu-focal`, `24-ubuntu-20.04`, `24.0.1-ubuntu-focal`, `24.0.1-ubuntu-20.04`, `24-jdk-ubuntu-focal`, `24-jdk-ubuntu-20.04`, `jdk-ubuntu-focal`, `jdk-ubuntu-20.04`, `24.0.1-jdk-ubuntu-focal`, `24.0.1-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jdk/Dockerfile) +- [`alpine`, `jdk-alpine`, `24-alpine`, `24.0.1-alpine`, `24-jdk-alpine`, `24.0.1-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `24-alpine-3.22`, `24-jdk-alpine-3.22`, `24.0.1-alpine-3.22`, `24.0.1-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/8540b4a7636cfd29507fb6853f8f5d6331f62d24/dockerfiles/24/alpine/3_22/jdk/Dockerfile) -- [`24-jdk-headless-ubuntu-focal`, `24-jdk-headless-ubuntu-20.04`, `jdk-headless-ubuntu-focal`, `jdk-headless-ubuntu-20.04`, `24.0.1-jdk-headless-ubuntu-focal`, `24.0.1-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jdk-headless/Dockerfile) +- [`jre-alpine`, `24-jre-alpine`, `24.0.1-jre-alpine`, `jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.1-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/8540b4a7636cfd29507fb6853f8f5d6331f62d24/dockerfiles/24/alpine/3_22/jre/Dockerfile) -- [`24-jre-ubuntu-focal`, `24-jre-ubuntu-20.04`, `jre-ubuntu-focal`, `jre-ubuntu-20.04`, `24.0.1-jre-ubuntu-focal`, `24.0.1-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jre/Dockerfile) +- [`alpine-3.21`, `jdk-alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `24.0.1-alpine-3.21`, `24.0.1-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jdk/Dockerfile) -- [`24-jre-headless-ubuntu-focal`, `24-jre-headless-ubuntu-20.04`, `jre-headless-ubuntu-focal`, `jre-headless-ubuntu-20.04`, `24.0.1-jre-headless-ubuntu-focal`, `24.0.1-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/20_04/jre-headless/Dockerfile) +- [`jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.1-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jre/Dockerfile) -- [`jdk-alpine`, `24-jdk-alpine`, `24.0.1-jdk-alpine`, `alpine-3.21`, `24-alpine-3.21`, `24.0.1-alpine-3.21`, `24-jdk-alpine-3.21`, `jdk-alpine-3.21`, `24.0.1-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jdk/Dockerfile) +- [`lts`, `lts-ubuntu`, `21`, `21-ubuntu`, `21.0.7`, `21.0.7-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.7-jdk`, `21.0.7-jdk-ubuntu`, `lts-jdk-ubuntu`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.7-ubuntu-noble`, `21.0.7-ubuntu-24.04`, `21.0.7-jdk-ubuntu-noble`, `21.0.7-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`jre-alpine`, `24-jre-alpine`, `24.0.1-jre-alpine`, `24-jre-alpine-3.21`, `jre-alpine-3.21`, `24.0.1-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jre/Dockerfile) +- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.7-jdk-headless`, `21.0.7-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.7-jdk-headless-ubuntu-noble`, `21.0.7-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21`, `lts`, `21-jdk-ubuntu`, `lts-jdk-ubuntu`, `21.0.7`, `21.0.7-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `21.0.7-ubuntu-noble`, `21.0.7-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21.0.7-jdk-ubuntu-noble`, `21.0.7-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`21-jre`, `21-jre-ubuntu`, `21.0.7-jre`, `21.0.7-jre-ubuntu`, `lts-jre-ubuntu`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.7-jre-ubuntu-noble`, `21.0.7-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `21.0.7-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21.0.7-jdk-headless-ubuntu-noble`, `21.0.7-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.7-jre-headless`, `21.0.7-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.7-jre-headless-ubuntu-noble`, `21.0.7-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-jre-ubuntu`, `lts-jre-ubuntu`, `21.0.7-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21.0.7-jre-ubuntu-noble`, `21.0.7-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.7-ubuntu-jammy`, `21.0.7-ubuntu-22.04`, `21.0.7-jdk-ubuntu-jammy`, `21.0.7-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `21.0.7-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21.0.7-jre-headless-ubuntu-noble`, `21.0.7-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.7-jdk-headless-ubuntu-jammy`, `21.0.7-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `21.0.7-ubuntu-jammy`, `21.0.7-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21.0.7-jdk-ubuntu-jammy`, `21.0.7-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.7-jre-ubuntu-jammy`, `21.0.7-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21.0.7-jdk-headless-ubuntu-jammy`, `21.0.7-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.7-jre-headless-ubuntu-jammy`, `21.0.7-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21.0.7-jre-ubuntu-jammy`, `21.0.7-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`lts-alpine`, `21-alpine`, `21.0.7-alpine`, `lts-jdk-alpine`, `21-jdk-alpine`, `21.0.7-jdk-alpine`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.7-alpine-3.22`, `21.0.7-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/f6b5f88e98cac94b30cfaa2321cfde070fd32208/dockerfiles/21/alpine/3_22/jdk/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21.0.7-jre-headless-ubuntu-jammy`, `21.0.7-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`lts-jre-alpine`, `21-jre-alpine`, `21.0.7-jre-alpine`, `lts-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.7-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/f6b5f88e98cac94b30cfaa2321cfde070fd32208/dockerfiles/21/alpine/3_22/jre/Dockerfile) -- [`21-ubuntu-focal`, `21-ubuntu-20.04`, `lts-ubuntu-focal`, `lts-ubuntu-20.04`, `21.0.7-ubuntu-focal`, `21.0.7-ubuntu-20.04`, `21-jdk-ubuntu-focal`, `21-jdk-ubuntu-20.04`, `lts-jdk-ubuntu-focal`, `lts-jdk-ubuntu-20.04`, `21.0.7-jdk-ubuntu-focal`, `21.0.7-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jdk/Dockerfile) +- [`lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.7-alpine-3.21`, `21.0.7-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-focal`, `21-jdk-headless-ubuntu-20.04`, `lts-jdk-headless-ubuntu-focal`, `lts-jdk-headless-ubuntu-20.04`, `21.0.7-jdk-headless-ubuntu-focal`, `21.0.7-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jdk-headless/Dockerfile) +- [`lts-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.7-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jre/Dockerfile) -- [`21-jre-ubuntu-focal`, `21-jre-ubuntu-20.04`, `lts-jre-ubuntu-focal`, `lts-jre-ubuntu-20.04`, `21.0.7-jre-ubuntu-focal`, `21.0.7-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jre/Dockerfile) +- [`17`, `17-ubuntu`, `17.0.15`, `17.0.15-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.15-jdk`, `17.0.15-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.15-ubuntu-noble`, `17.0.15-ubuntu-24.04`, `17.0.15-jdk-ubuntu-noble`, `17.0.15-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`21-jre-headless-ubuntu-focal`, `21-jre-headless-ubuntu-20.04`, `lts-jre-headless-ubuntu-focal`, `lts-jre-headless-ubuntu-20.04`, `21.0.7-jre-headless-ubuntu-focal`, `21.0.7-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.15-jdk-headless`, `17.0.15-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.15-jdk-headless-ubuntu-noble`, `17.0.15-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jdk-alpine`, `lts-jdk-alpine`, `21.0.7-jdk-alpine`, `21-alpine-3.21`, `lts-alpine-3.21`, `21.0.7-alpine-3.21`, `21-jdk-alpine-3.21`, `lts-jdk-alpine-3.21`, `21.0.7-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jdk/Dockerfile) +- [`17-jre`, `17-jre-ubuntu`, `17.0.15-jre`, `17.0.15-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.15-jre-ubuntu-noble`, `17.0.15-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-alpine`, `lts-jre-alpine`, `21.0.7-jre-alpine`, `21-jre-alpine-3.21`, `lts-jre-alpine-3.21`, `21.0.7-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jre/Dockerfile) +- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.15-jre-headless`, `17.0.15-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.15-jre-headless-ubuntu-noble`, `17.0.15-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17`, `17-jdk-ubuntu`, `17.0.15`, `17.0.15-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17.0.15-ubuntu-noble`, `17.0.15-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.15-jdk-ubuntu-noble`, `17.0.15-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) - -- [`17-jdk-headless-ubuntu`, `17.0.15-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.15-jdk-headless-ubuntu-noble`, `17.0.15-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) - -- [`17-jre-ubuntu`, `17.0.15-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.15-jre-ubuntu-noble`, `17.0.15-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) - -- [`17-jre-headless-ubuntu`, `17.0.15-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.15-jre-headless-ubuntu-noble`, `17.0.15-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) - -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17.0.15-ubuntu-jammy`, `17.0.15-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.15-jdk-ubuntu-jammy`, `17.0.15-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.15-ubuntu-jammy`, `17.0.15-ubuntu-22.04`, `17.0.15-jdk-ubuntu-jammy`, `17.0.15-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) - [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.15-jdk-headless-ubuntu-jammy`, `17.0.15-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) @@ -96,27 +88,23 @@ WARNING: - [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.15-jre-headless-ubuntu-jammy`, `17.0.15-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-ubuntu-focal`, `17-ubuntu-20.04`, `17.0.15-ubuntu-focal`, `17.0.15-ubuntu-20.04`, `17-jdk-ubuntu-focal`, `17-jdk-ubuntu-20.04`, `17.0.15-jdk-ubuntu-focal`, `17.0.15-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jdk/Dockerfile) - -- [`17-jdk-headless-ubuntu-focal`, `17-jdk-headless-ubuntu-20.04`, `17.0.15-jdk-headless-ubuntu-focal`, `17.0.15-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jdk-headless/Dockerfile) +- [`17-alpine`, `17.0.15-alpine`, `17-jdk-alpine`, `17.0.15-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.15-alpine-3.22`, `17.0.15-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7363a6d1e47c9f6371c1fb5b2dcc8525396e5d2f/dockerfiles/17/alpine/3_22/jdk/Dockerfile) -- [`17-jre-ubuntu-focal`, `17-jre-ubuntu-20.04`, `17.0.15-jre-ubuntu-focal`, `17.0.15-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jre/Dockerfile) +- [`17-jre-alpine`, `17.0.15-jre-alpine`, `17-jre-alpine-3.22`, `17.0.15-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7363a6d1e47c9f6371c1fb5b2dcc8525396e5d2f/dockerfiles/17/alpine/3_22/jre/Dockerfile) -- [`17-jre-headless-ubuntu-focal`, `17-jre-headless-ubuntu-20.04`, `17.0.15-jre-headless-ubuntu-focal`, `17.0.15-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/20_04/jre-headless/Dockerfile) +- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.15-alpine-3.21`, `17.0.15-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`17-jdk-alpine`, `17.0.15-jdk-alpine`, `17-alpine-3.21`, `17.0.15-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.15-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jdk/Dockerfile) +- [`17-jre-alpine-3.21`, `17.0.15-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jre/Dockerfile) -- [`17-jre-alpine`, `17.0.15-jre-alpine`, `17-jre-alpine-3.21`, `17.0.15-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jre/Dockerfile) +- [`11`, `11-ubuntu`, `11.0.27`, `11.0.27-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.27-jdk`, `11.0.27-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.27-ubuntu-noble`, `11.0.27-ubuntu-24.04`, `11.0.27-jdk-ubuntu-noble`, `11.0.27-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11`, `11-jdk-ubuntu`, `11.0.27`, `11.0.27-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11.0.27-ubuntu-noble`, `11.0.27-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.27-jdk-ubuntu-noble`, `11.0.27-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.27-jdk-headless`, `11.0.27-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.27-jdk-headless-ubuntu-noble`, `11.0.27-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jdk-headless-ubuntu`, `11.0.27-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.27-jdk-headless-ubuntu-noble`, `11.0.27-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jre`, `11-jre-ubuntu`, `11.0.27-jre`, `11.0.27-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.27-jre-ubuntu-noble`, `11.0.27-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-ubuntu`, `11.0.27-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.27-jre-ubuntu-noble`, `11.0.27-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.27-jre-headless`, `11.0.27-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.27-jre-headless-ubuntu-noble`, `11.0.27-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-jre-headless-ubuntu`, `11.0.27-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.27-jre-headless-ubuntu-noble`, `11.0.27-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) - -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11.0.27-ubuntu-jammy`, `11.0.27-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.27-jdk-ubuntu-jammy`, `11.0.27-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.27-ubuntu-jammy`, `11.0.27-ubuntu-22.04`, `11.0.27-jdk-ubuntu-jammy`, `11.0.27-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) - [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.27-jdk-headless-ubuntu-jammy`, `11.0.27-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) @@ -124,14 +112,6 @@ WARNING: - [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.27-jre-headless-ubuntu-jammy`, `11.0.27-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) -- [`11-ubuntu-focal`, `11-ubuntu-20.04`, `11.0.27-ubuntu-focal`, `11.0.27-ubuntu-20.04`, `11-jdk-ubuntu-focal`, `11-jdk-ubuntu-20.04`, `11.0.27-jdk-ubuntu-focal`, `11.0.27-jdk-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jdk/Dockerfile) - -- [`11-jdk-headless-ubuntu-focal`, `11-jdk-headless-ubuntu-20.04`, `11.0.27-jdk-headless-ubuntu-focal`, `11.0.27-jdk-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jdk-headless/Dockerfile) - -- [`11-jre-ubuntu-focal`, `11-jre-ubuntu-20.04`, `11.0.27-jre-ubuntu-focal`, `11.0.27-jre-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jre/Dockerfile) - -- [`11-jre-headless-ubuntu-focal`, `11-jre-headless-ubuntu-20.04`, `11.0.27-jre-headless-ubuntu-focal`, `11.0.27-jre-headless-ubuntu-20.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/20_04/jre-headless/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/sonarqube/README.md b/sonarqube/README.md index b22b22526034..bedc348f1e22 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/developer/Dockerfile) +- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/developer/Dockerfile) -- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/enterprise/Dockerfile) +- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/enterprise/Dockerfile) -- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/datacenter/app/Dockerfile) +- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/app/Dockerfile) -- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/commercial-editions/datacenter/search/Dockerfile) +- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/search/Dockerfile) -- [`2025.1.2-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/developer/Dockerfile) +- [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) -- [`2025.1.2-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/enterprise/Dockerfile) +- [`2025.1.3-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/enterprise/Dockerfile) -- [`2025.1.2-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/datacenter/app/Dockerfile) +- [`2025.1.3-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/app/Dockerfile) -- [`2025.1.2-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/31fac30f5087cc490c9cd266e2279729a2fbdd7c/commercial-editions/datacenter/search/Dockerfile) +- [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) -- [`25.6.0.109173-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/13051010fbfba3fe366f6ca2ede1b8551fa4c251/community-build/Dockerfile) +- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/0330278146e14fdbde39328ab2c9e10a66f9fbe8/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 8e0fc1bd976a..936820dd8162 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,85 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.8-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.8-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.8-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.8`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.9-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.9-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.9-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.9`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.8-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.8-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.8-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.9-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.9-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.9-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.8-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.9-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.8-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.9-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.8-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.8-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.8-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.9-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.9-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.9-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.8-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.8-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.8-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.9-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.9-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.9-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.8-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.9-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.8-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/b63e91319c234d5378a4bea81be915a56e30746b/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.9-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.42-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.42-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.42-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.42`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.43-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.43-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.43-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.43`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.42-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.42-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.42-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.43-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.43-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.43-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.42-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.43-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.42-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.43-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.42-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.42-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.42-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.43-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.43-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.43-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.42-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.42-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.42-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.43-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.43-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.43-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.42-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.43-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.42-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.43-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.42-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.42-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.42-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.43-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.43-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.43-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.42-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.42-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.42-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.43-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.43-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.43-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.42-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.43-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.42-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/084d3348c4952cc064ed7daab88964af510bd332/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.43-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.106-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.106-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.106-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.106`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.107-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.107-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.107-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.107`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.106-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.106-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.106-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.107-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.107-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.107-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.106-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.107-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.106-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.107-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.106-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.106-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.107-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.107-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.106-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.106-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.106-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.107-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.107-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.107-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.106-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.106-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.106-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.107-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.107-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.107-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.106-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.107-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.106-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.107-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.106-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.106-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.107-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.107-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.106-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.106-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.106-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.107-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.107-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.107-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.106-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.106-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.106-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.107-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.107-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.107-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.106-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.107-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.106-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.107-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.106-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.106-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.107-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.107-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.106-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.106-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.106-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.107-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.107-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.107-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.106-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.106-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.106-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.107-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.107-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.107-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.106-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.107-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.106-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.107-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.106-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.106-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/2c6ae9e10bdc2b86109c376094327f998d40c5e7/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.107-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.107-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 3af9a576ddfd7a1e7a151e69cb5ca0528477ef70 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 7 Jul 2025 16:10:57 -0700 Subject: [PATCH 2329/2686] Run update.sh --- bash/README.md | 22 +++++++++++----------- photon/README.md | 2 +- php/README.md | 28 ++++++++++++++++++++++++++++ redmine/README.md | 12 ++++++------ 4 files changed, 46 insertions(+), 18 deletions(-) diff --git a/bash/README.md b/bash/README.md index de73fe3225ad..90f95d2126ff 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250616`, `devel`, `devel-20250616-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/80b590f06d5f8da2c8d36549d7b760e7a2c988a7/devel/Dockerfile) +- [`devel-20250627`, `devel`, `devel-20250627-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/devel/Dockerfile) -- [`5.3-rc2`, `5.3-rc`, `rc`, `5.3-rc2-alpine3.22`, `5.3-rc-alpine3.22`, `rc-alpine3.22`](https://github.com/tianon/docker-bash/blob/b8c645d094186ccdca78c724ed020a27588b253b/5.3-rc/Dockerfile) +- [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/59788c3224d1c11f14518f6c860ce6bccaf21d54/5.3/Dockerfile) -- [`5.2.37`, `5.2`, `5`, `latest`, `5.2.37-alpine3.22`, `5.2-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/9fc164bd1a8e4bfe16c517623ce935dc821bbb08/5.2/Dockerfile) +- [`5.2.37`, `5.2`, `5.2.37-alpine3.22`, `5.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/9fc164bd1a8e4bfe16c517623ce935dc821bbb08/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.22`, `5.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/8ba8423bc0d3339722d4ba2d1af1f53fd179f506/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.22`, `5.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/5f58d08f8ee4a558b8302ef22352af99d4beedfd/5.0/Dockerfile) -- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.22`, `4.4-alpine3.22`, `4-alpine3.22`](https://github.com/tianon/docker-bash/blob/7deed0d5c668469ae5eaf56e2a6c925f9a6a48d0/4.4/Dockerfile) +- [`4.4.23`, `4.4`, `4`, `4.4.23-alpine3.22`, `4.4-alpine3.22`, `4-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.4/Dockerfile) -- [`4.3.48`, `4.3`, `4.3.48-alpine3.22`, `4.3-alpine3.22`](https://github.com/tianon/docker-bash/blob/c3cc929583554a6797eeedf1143461fb6934d41c/4.3/Dockerfile) +- [`4.3.48`, `4.3`, `4.3.48-alpine3.22`, `4.3-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.22`, `4.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/84117f18511a843e2587b998901b9e8f84863141/4.2/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.22`, `4.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.2/Dockerfile) -- [`4.1.17`, `4.1`, `4.1.17-alpine3.22`, `4.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/454c634ceb497bb3dd70cceffc18219af82094fc/4.1/Dockerfile) +- [`4.1.17`, `4.1`, `4.1.17-alpine3.22`, `4.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.1/Dockerfile) -- [`4.0.44`, `4.0`, `4.0.44-alpine3.22`, `4.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/cf3478db7e68c12b2bf73225cb86d33d9067b01d/4.0/Dockerfile) +- [`4.0.44`, `4.0`, `4.0.44-alpine3.22`, `4.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.0/Dockerfile) -- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.22`, `3.2-alpine3.22`, `3-alpine3.22`](https://github.com/tianon/docker-bash/blob/8d2e78e9fb10d94ab82f2c96ed5453116b60b266/3.2/Dockerfile) +- [`3.2.57`, `3.2`, `3`, `3.2.57-alpine3.22`, `3.2-alpine3.22`, `3-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/3.2/Dockerfile) -- [`3.1.23`, `3.1`, `3.1.23-alpine3.22`, `3.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/0b88b446dde99f282604a9d4feee4ee4328012fb/3.1/Dockerfile) +- [`3.1.23`, `3.1`, `3.1.23-alpine3.22`, `3.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.22`, `3.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/aa72817e8ccfc175d51acc2bcadae64684e06879/3.0/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.22`, `3.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/3.0/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 85c38a9a868f..8839fe686c7b 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20250629`, `latest`](https://github.com/vmware/photon-docker-image/blob/a93cd99c12295c2994e58e266e693cbf2b039b03/docker/Dockerfile) -- [`4.0`, `4.0-20250629`](https://github.com/vmware/photon-docker-image/blob/968050869270aa1a5faf0ed4ee5f5998df1ab1bb/docker/Dockerfile) +- [`4.0`, `4.0-20250707`](https://github.com/vmware/photon-docker-image/blob/369c4a4dd824b08209ac62ddb85137a9122633b5/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/php/README.md b/php/README.md index 87ad13a0dc93..9fdd112ede54 100644 --- a/php/README.md +++ b/php/README.md @@ -24,6 +24,34 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.5.0alpha1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha1-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha1-cli`, `8.5-rc-cli`, `8.5.0alpha1`, `8.5-rc`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/cli/Dockerfile) + +- [`8.5.0alpha1-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/apache/Dockerfile) + +- [`8.5.0alpha1-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/fpm/Dockerfile) + +- [`8.5.0alpha1-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/zts/Dockerfile) + +- [`8.5.0alpha1-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha1-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/cli/Dockerfile) + +- [`8.5.0alpha1-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/apache/Dockerfile) + +- [`8.5.0alpha1-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/fpm/Dockerfile) + +- [`8.5.0alpha1-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/zts/Dockerfile) + +- [`8.5.0alpha1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/cli/Dockerfile) + +- [`8.5.0alpha1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/fpm/Dockerfile) + +- [`8.5.0alpha1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/zts/Dockerfile) + +- [`8.5.0alpha1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/cli/Dockerfile) + +- [`8.5.0alpha1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/fpm/Dockerfile) + +- [`8.5.0alpha1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/zts/Dockerfile) + - [`8.4.10-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.10-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.10-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.10`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/cli/Dockerfile) - [`8.4.10-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.10-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/apache/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 38688a252b34..7b5815a3553c 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.5`, `6.0`, `6`, `latest`, `6.0.5-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/bookworm/Dockerfile) +- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/bookworm/Dockerfile) -- [`6.0.5-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/1d4803b70876ee3a9a8e9dfb71c0c0293f5621d8/6.0/alpine3.22/Dockerfile) +- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/alpine3.22/Dockerfile) -- [`6.0.5-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/79fdb4829c95432ad05877fea0b27793b35bfd6f/6.0/alpine3.21/Dockerfile) +- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/alpine3.21/Dockerfile) -- [`5.1.8`, `5.1`, `5`, `5.1.8-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/bookworm/Dockerfile) +- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/bookworm/Dockerfile) -- [`5.1.8-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.8-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/1d4803b70876ee3a9a8e9dfb71c0c0293f5621d8/5.1/alpine3.22/Dockerfile) +- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/alpine3.22/Dockerfile) -- [`5.1.8-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/a000f11a67e7e7f315398fb83a9262e47998b663/5.1/alpine3.21/Dockerfile) +- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) From f352b814450ee2e69bdd16f5cfb250942955b115 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Jul 2025 10:10:04 -0700 Subject: [PATCH 2330/2686] Run update.sh --- docker/README.md | 10 ++--- hylang/README.md | 104 +++++++++++++++++++------------------------- kapacitor/README.md | 8 ++-- telegraf/README.md | 12 ++--- 4 files changed, 60 insertions(+), 74 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9af20af05f7f..2364d5d3a17e 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.1-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/cli/Dockerfile) +- [`28.3.1-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/cli/Dockerfile) - [`28.3.1-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.1-dind-alpine3.22`, `28.3.1`, `28.3`, `28`, `latest`, `28.3.1-alpine3.22`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind/Dockerfile) - [`28.3.1-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind-rootless/Dockerfile) -- [`28.3.1-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.1-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.1-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.1-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.1-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 0ed657157fb1..3b5c0f26b3ef 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,117 +28,103 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bullseye) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bullseye) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bullseye) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bullseye) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bullseye) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) +- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) -- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) +- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) - -- [`1.1.0-pypy3.10-bookworm`, `1.1-pypy3.10-bookworm`, `1-pypy3.10-bookworm`, `pypy3.10-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - -- [`1.1.0-pypy3.10-bullseye`, `1.1-pypy3.10-bullseye`, `1-pypy3.10-bullseye`, `pypy3.10-bullseye`, `1.1.0-pypy-bullseye`, `1.1-pypy-bullseye`, `1-pypy-bullseye`, `pypy-bullseye`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bullseye) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2025`, `1.1-pypy3.10-windowsservercore-ltsc2025`, `1-pypy3.10-windowsservercore-ltsc2025`, `pypy3.10-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - -- [`1.1.0-pypy3.10-windowsservercore-ltsc2022`, `1.1-pypy3.10-windowsservercore-ltsc2022`, `1-pypy3.10-windowsservercore-ltsc2022`, `pypy3.10-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) ## Shared Tags - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - -- `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`: - - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- `1.1.0-pypy3.10`, `1.1-pypy3.10`, `1-pypy3.10`, `pypy3.10`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: +- `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-bookworm) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.10-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/9ed6ce9a2ebd814e1881fde9c92aa2f99ff6cb47/dockerfiles-generated/Dockerfile.pypy3.10-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index f83a7256e1f1..eb39653f502d 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6`, `1.6.6`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.6/Dockerfile) +- [`1.7`, `1.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/Dockerfile) -- [`1.6-alpine`, `1.6.6-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.6/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/alpine/Dockerfile) -- [`1.7`, `1.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.7/Dockerfile) +- [`1.8`, `1.8.0`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/Dockerfile) -- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b23d6db77384c3fbecc52e880b83c4600fdffc8/kapacitor/1.7/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/alpine/Dockerfile) # Quick reference (cont.) diff --git a/telegraf/README.md b/telegraf/README.md index 6d245d4dedc9..2d2edd647fd3 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/fb435939ac23cd89da617974cf2da0e8a49bc706/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.35/alpine/Dockerfile) # Quick reference (cont.) From 48f36b06367291af3320301c9cbbb07860ce2542 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Jul 2025 11:10:03 -0700 Subject: [PATCH 2331/2686] Run update.sh --- golang/README.md | 107 +++++++++++++++++++++++++---------------------- 1 file changed, 58 insertions(+), 49 deletions(-) diff --git a/golang/README.md b/golang/README.md index 2e092fe7a579..f9977c7e00aa 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,49 +28,53 @@ WARNING: ## Simple Tags -- [`1.25rc1-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bookworm/Dockerfile) +- [`1.25rc2-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bookworm/Dockerfile) -- [`1.25rc1-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bullseye/Dockerfile) +- [`1.25rc2-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bullseye/Dockerfile) -- [`1.25rc1-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc1-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/alpine3.22/Dockerfile) +- [`1.25rc2-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc2-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/alpine3.22/Dockerfile) -- [`1.25rc1-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/alpine3.21/Dockerfile) +- [`1.25rc2-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/alpine3.21/Dockerfile) -- [`1.25rc1-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25rc2-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25rc1-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25rc2-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.4-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) +- [`1.25rc2-nanoserver-ltsc2025`, `1.25-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.4-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bullseye/Dockerfile) +- [`1.25rc2-nanoserver-ltsc2022`, `1.25-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.4-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.4-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/alpine3.22/Dockerfile) +- [`1.24.5-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bookworm/Dockerfile) -- [`1.24.4-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/alpine3.21/Dockerfile) +- [`1.24.5-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bullseye/Dockerfile) -- [`1.24.4-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.5-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.5-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/alpine3.22/Dockerfile) -- [`1.24.4-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.5-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/alpine3.21/Dockerfile) -- [`1.24.4-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.5-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.4-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.5-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.10-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bookworm/Dockerfile) +- [`1.24.5-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.10-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bullseye/Dockerfile) +- [`1.24.5-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.10-alpine3.22`, `1.23-alpine3.22`, `1.23.10-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/alpine3.22/Dockerfile) +- [`1.23.11-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bookworm/Dockerfile) -- [`1.23.10-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/alpine3.21/Dockerfile) +- [`1.23.11-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bullseye/Dockerfile) -- [`1.23.10-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.11-alpine3.22`, `1.23-alpine3.22`, `1.23.11-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/alpine3.22/Dockerfile) -- [`1.23.10-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.11-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/alpine3.21/Dockerfile) -- [`1.23.10-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.11-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.10-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.11-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`1.23.11-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) + +- [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20250704-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bookworm/Dockerfile) @@ -82,48 +86,53 @@ WARNING: ## Shared Tags -- `1.25rc1`, `1.25-rc`: +- `1.25rc2`, `1.25-rc`: + + - [`1.25rc2-bookworm`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bookworm/Dockerfile) + - [`1.25rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `1.25rc2-windowsservercore`, `1.25-rc-windowsservercore`: - - [`1.25rc1-bookworm`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/bookworm/Dockerfile) - - [`1.25rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25rc1-windowsservercore`, `1.25-rc-windowsservercore`: +- `1.25rc2-nanoserver`, `1.25-rc-nanoserver`: - - [`1.25rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/37f4c078c0906f4c2226072dcbb81e6e9bc439dc/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25rc2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.4`, `1.24`, `1`, `latest`: +- `1.24.5`, `1.24`, `1`, `latest`: - - [`1.24.4-bookworm`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/bookworm/Dockerfile) - - [`1.24.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.5-bookworm`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bookworm/Dockerfile) + - [`1.24.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.4-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.5-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.4-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.5-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.4-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/205cf586b0d0c7200e0fd642feaf738ddb382da0/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.5-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `1.23.10`, `1.23`: +- `1.23.11`, `1.23`: - - [`1.23.10-bookworm`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/bookworm/Dockerfile) - - [`1.23.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.11-bookworm`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bookworm/Dockerfile) + - [`1.23.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.10-windowsservercore`, `1.23-windowsservercore`: +- `1.23.11-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.10-nanoserver`, `1.23-nanoserver`: +- `1.23.11-nanoserver`, `1.23-nanoserver`: - - [`1.23.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/696a3e93441e4e8ec740f0bff37a96a0983749e5/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20250704`, `tip`: From 5ec0aea29faf738f2f2d74556d9e76c7d394f6f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 8 Jul 2025 14:10:12 -0700 Subject: [PATCH 2332/2686] Run update.sh --- kapacitor/README.md | 4 ++-- oraclelinux/README.md | 18 +++++++++--------- python/README.md | 30 +++++++++++++++--------------- wordpress/README.md | 24 ++++++++++++++++++++++++ 4 files changed, 50 insertions(+), 26 deletions(-) diff --git a/kapacitor/README.md b/kapacitor/README.md index eb39653f502d..c893332ac212 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/Dockerfile) +- [`1.7`, `1.7.7`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/Dockerfile) - [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.0`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/Dockerfile) +- [`1.8`, `1.8.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/Dockerfile) - [`1.8-alpine`, `1.8.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/alpine/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index b12333bb0ec5..89c71403a582 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4b8879ec20f8a00a9304d0dcc494a11bea93f5dc/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 56a96952bc18..54d884bf0612 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0b3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bookworm/Dockerfile) +- [`3.14.0b4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bookworm/Dockerfile) -- [`3.14.0b3-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0b4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0b3-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bullseye/Dockerfile) +- [`3.14.0b4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bullseye/Dockerfile) -- [`3.14.0b3-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0b4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b3-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0b4-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0b3-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0b4-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0b3-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0b4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0b3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0b4-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.5-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) @@ -110,16 +110,16 @@ WARNING: ## Shared Tags -- `3.14.0b3`, `3.14-rc`: +- `3.14.0b4`, `3.14-rc`: - - [`3.14.0b3-bookworm`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/bookworm/Dockerfile) - - [`3.14.0b3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b4-bookworm`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bookworm/Dockerfile) + - [`3.14.0b4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0b3-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0b4-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0b3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/68223f21de07b2bae6b71f7da1fe360f53b34d19/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0b4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `3.13.5`, `3.13`, `3`, `latest`: diff --git a/wordpress/README.md b/wordpress/README.md index b56a3ac245ca..12c12a616a69 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,6 +56,30 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) +- [`beta-6.8.2-RC1-php8.1-apache`, `beta-6.8.2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.2-RC1-php8.1`, `beta-6.8.2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/apache/Dockerfile) + +- [`beta-6.8.2-RC1-php8.1-fpm`, `beta-6.8.2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.8.2-RC1-php8.1-fpm-alpine`, `beta-6.8.2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.8.2-RC1-apache`, `beta-6.8.2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.2-RC1`, `beta-6.8.2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.2-RC1-php8.2-apache`, `beta-6.8.2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.2-RC1-php8.2`, `beta-6.8.2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/apache/Dockerfile) + +- [`beta-6.8.2-RC1-fpm`, `beta-6.8.2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.2-RC1-php8.2-fpm`, `beta-6.8.2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.8.2-RC1-fpm-alpine`, `beta-6.8.2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.2-RC1-php8.2-fpm-alpine`, `beta-6.8.2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.8.2-RC1-php8.3-apache`, `beta-6.8.2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.2-RC1-php8.3`, `beta-6.8.2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/apache/Dockerfile) + +- [`beta-6.8.2-RC1-php8.3-fpm`, `beta-6.8.2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.8.2-RC1-php8.3-fpm-alpine`, `beta-6.8.2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/fpm-alpine/Dockerfile) + +- [`beta-6.8.2-RC1-php8.4-apache`, `beta-6.8.2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.2-RC1-php8.4`, `beta-6.8.2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/apache/Dockerfile) + +- [`beta-6.8.2-RC1-php8.4-fpm`, `beta-6.8.2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/fpm/Dockerfile) + +- [`beta-6.8.2-RC1-php8.4-fpm-alpine`, `beta-6.8.2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 35c6864376c060218f84117f0e852006698e336b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Jul 2025 11:11:31 -0700 Subject: [PATCH 2333/2686] Run update.sh --- almalinux/README.md | 16 ++++++++-------- haproxy/README.md | 4 ++-- joomla/README.md | 18 +++++++++--------- node/README.md | 12 ++++++------ 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index e3bd9178a6fe..0d74740dd753 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250611`](https://github.com/AlmaLinux/container-images/blob/6135d73e0784e8ca6ca279d509e095e0daf5b6a9/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250709`](https://github.com/AlmaLinux/container-images/blob/89c3f0c8f61042b7a77c59f7532bdb30f76af551/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/6135d73e0784e8ca6ca279d509e095e0daf5b6a9/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/89c3f0c8f61042b7a77c59f7532bdb30f76af551/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250611`](https://github.com/AlmaLinux/container-images/blob/053340d6a579e7c6242951931f3a1b18717887ef/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250709`](https://github.com/AlmaLinux/container-images/blob/42ac29acea2f74c1107f78f2fa6ed22e2ecfbf10/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/053340d6a579e7c6242951931f3a1b18717887ef/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/42ac29acea2f74c1107f78f2fa6ed22e2ecfbf10/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250611`](https://github.com/AlmaLinux/container-images/blob/5e437611704aff1c6eb7c81a2b097fae4f0bcaae/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250709`](https://github.com/AlmaLinux/container-images/blob/9b12440f63466bc853122a0d6a5251ae501a4957/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/5e437611704aff1c6eb7c81a2b097fae4f0bcaae/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/9b12440f63466bc853122a0d6a5251ae501a4957/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250611`](https://github.com/AlmaLinux/container-images/blob/39a9e4c8fa6266f1d58af9ba922e635694eeb380/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250709`](https://github.com/AlmaLinux/container-images/blob/33df2b4934820404ae980366f6688843c1240f6e/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250611`](https://github.com/AlmaLinux/container-images/blob/39a9e4c8fa6266f1d58af9ba922e635694eeb380/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/33df2b4934820404ae980366f6688843c1240f6e/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index b24316ecdc6b..7d090a68d899 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.3-dev2-alpine`, `3.3-dev-alpine`, `3.3-dev2-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/alpine/Dockerfile) -- [`3.2.2`, `3.2`, `latest`, `lts`, `3.2.2-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/d29240a8f2a0b5f4eead7098f7fc4952654c5e21/3.2/Dockerfile) +- [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/Dockerfile) -- [`3.2.2-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.2-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/d29240a8f2a0b5f4eead7098f7fc4952654c5e21/3.2/alpine/Dockerfile) +- [`3.2.3-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.3-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/alpine/Dockerfile) - [`3.1.8`, `3.1`, `3.1.8-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/Dockerfile) diff --git a/joomla/README.md b/joomla/README.md index b0df4fbd9b4e..b72c78c1da86 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -42,23 +42,23 @@ WARNING: - [`5.4.0-alpha2-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/fpm/Dockerfile) -- [`5.3.1-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/apache/Dockerfile) +- [`5.3.2-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/apache/Dockerfile) -- [`5.3.1-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/fpm-alpine/Dockerfile) +- [`5.3.2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/fpm-alpine/Dockerfile) -- [`5.3.1-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.1/fpm/Dockerfile) +- [`5.3.2-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/fpm/Dockerfile) -- [`5.3.1-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/apache/Dockerfile) +- [`5.3.2-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/apache/Dockerfile) -- [`5.3.1-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/fpm-alpine/Dockerfile) +- [`5.3.2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/fpm-alpine/Dockerfile) -- [`5.3.1-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.2/fpm/Dockerfile) +- [`5.3.2-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/fpm/Dockerfile) -- [`5.3.1`, `5.3`, `5`, `latest`, `5.3.1-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.1-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.1-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/apache/Dockerfile) +- [`5.3.2`, `5.3`, `5`, `latest`, `5.3.2-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.2-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.2-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/apache/Dockerfile) -- [`5.3.1-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/fpm-alpine/Dockerfile) +- [`5.3.2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/fpm-alpine/Dockerfile) -- [`5.3.1-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/5bd86402acfa528dac7dfa6eea3d27d0fc1de5f6/5.3/php8.3/fpm/Dockerfile) +- [`5.3.2-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/fpm/Dockerfile) - [`4.4.13-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/apache/Dockerfile) diff --git a/node/README.md b/node/README.md index 2cc74d130e4a..9e3696d366e3 100644 --- a/node/README.md +++ b/node/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.3-alpine3.21`, `24.3.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.4-alpine3.21`, `24.4.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.3-alpine`, `24.3-alpine3.22`, `24.3.0-alpine`, `24.3.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.4-alpine`, `24.4-alpine3.22`, `24.4.0-alpine`, `24.4.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.3`, `24.3-bookworm`, `24.3.0`, `24.3.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.4`, `24.4-bookworm`, `24.4.0`, `24.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.3-bookworm-slim`, `24.3-slim`, `24.3.0-bookworm-slim`, `24.3.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.4-bookworm-slim`, `24.4-slim`, `24.4.0-bookworm-slim`, `24.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.3-bullseye`, `24.3.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.4-bullseye`, `24.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.3-bullseye-slim`, `24.3.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.4-bullseye-slim`, `24.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bullseye-slim/Dockerfile) - [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/alpine3.21/Dockerfile) From 29ebf6d49caa0274c5b6dfd446c870eec6899fca Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Jul 2025 13:10:08 -0700 Subject: [PATCH 2334/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index a142515eea45..0051cde75a52 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.32`, `4.32.0`, `latest`](https://github.com/liquibase/docker/blob/5f25f074861b619a8bd3a3147d3ceeafb672f717/Dockerfile) +- [`4.33`, `4.33.0`, `latest`](https://github.com/liquibase/docker/blob/e54a7dd42e0afd00fa3a85d3ef3d90a3b583c613/Dockerfile) -- [`4.32-alpine`, `4.32.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/5f25f074861b619a8bd3a3147d3ceeafb672f717/Dockerfile.alpine) +- [`4.33-alpine`, `4.33.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/e54a7dd42e0afd00fa3a85d3ef3d90a3b583c613/Dockerfile.alpine) # Quick reference (cont.) From f39bc066b885496ba9c96ab74ed97c21f78acc74 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 9 Jul 2025 14:10:22 -0700 Subject: [PATCH 2335/2686] Run update.sh --- erlang/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 61f39d365e4e..827bc7b66035 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -30,23 +30,23 @@ WARNING: - [`28.0.1.0-alpine`, `28.0.1-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/alpine/Dockerfile) -- [`27.3.4.0`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/Dockerfile) +- [`27.3.4.1`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/Dockerfile) -- [`27.3.4.0-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/slim/Dockerfile) +- [`27.3.4.1-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/slim/Dockerfile) -- [`27.3.4.0-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/27/alpine/Dockerfile) +- [`27.3.4.1-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/alpine/Dockerfile) -- [`26.2.5.11`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/Dockerfile) +- [`26.2.5.13`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/Dockerfile) -- [`26.2.5.11-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/slim/Dockerfile) +- [`26.2.5.13-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/slim/Dockerfile) -- [`26.2.5.11-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/26/alpine/Dockerfile) +- [`26.2.5.13-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/alpine/Dockerfile) -- [`25.3.2.20`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/Dockerfile) +- [`25.3.2.21`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/25/Dockerfile) -- [`25.3.2.20-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/slim/Dockerfile) +- [`25.3.2.21-slim`, `25.3.2-slim`, `25.3-slim`, `25-slim`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/25/slim/Dockerfile) -- [`25.3.2.20-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ee1bc4b04fb25496e02799a5285678072cf31b1e/25/alpine/Dockerfile) +- [`25.3.2.21-alpine`, `25.3.2-alpine`, `25.3-alpine`, `25-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/25/alpine/Dockerfile) - [`24.3.4.17`, `24.3.4`, `24.3`, `24`](https://github.com/erlang/docker-erlang-otp/blob/c7e3d58244259ec45bd0b84df7287096d9833d19/24/Dockerfile) From fae9dfc087f052436b29ee603fff5172e408bbd8 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 10 Jul 2025 13:02:34 +0200 Subject: [PATCH 2336/2686] registry: use v3 in example Registry v2 reached EOL, so update the example to use v3. Signed-off-by: Sebastiaan van Stijn --- registry/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/content.md b/registry/content.md index 6b0c7b28cc69..1250c1c5793b 100644 --- a/registry/content.md +++ b/registry/content.md @@ -7,7 +7,7 @@ This image contains an implementation of the OCI Distribution spec. See [github. ## Run a local registry: Quick Version ```console -$ docker run -d -p 5000:5000 --restart always --name registry %%IMAGE%%:2 +$ docker run -d -p 5000:5000 --restart always --name registry %%IMAGE%%:3 ``` Now, use it from within Docker: From 1ac067fa941372423485ded98d91a720caa617ac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 10:10:03 -0700 Subject: [PATCH 2337/2686] Run update.sh --- registry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/README.md b/registry/README.md index 85ef0515ec33..3ea41bc6e25a 100644 --- a/registry/README.md +++ b/registry/README.md @@ -54,7 +54,7 @@ This image contains an implementation of the OCI Distribution spec. See [github. ## Run a local registry: Quick Version ```console -$ docker run -d -p 5000:5000 --restart always --name registry registry:2 +$ docker run -d -p 5000:5000 --restart always --name registry registry:3 ``` Now, use it from within Docker: From 3a187aa8a0c24193379107eea3785bbaa4451835 Mon Sep 17 00:00:00 2001 From: "Matthew X. Economou" Date: Thu, 10 Jul 2025 13:24:52 -0400 Subject: [PATCH 2338/2686] feat!: version bump to SATOSA v8.5.1 This includes fixes for IdentityPython/satosa-docker#10 and IdentityPython/satosa-docker#12 as well as base image updates. Please note that the new maintainer is the same person. However, the work is now community-sponsored. BREAKING CHANGE: This drops support for 32-bit architectures; cf. IdentityPython/satosa-docker#11. --- satosa/README-short.txt | 2 +- satosa/content.md | 18 +++++++----------- satosa/deprecated.md | 1 - 3 files changed, 8 insertions(+), 13 deletions(-) delete mode 100644 satosa/deprecated.md diff --git a/satosa/README-short.txt b/satosa/README-short.txt index 9027c4696413..ba958d8dfba1 100644 --- a/satosa/README-short.txt +++ b/satosa/README-short.txt @@ -1 +1 @@ -DEPRECATED; SATOSA translates between auth protocols such as SAML2, OpenID Connect, and OAuth2. +SATOSA translates between auth protocols such as SAML2, OpenID Connect, and OAuth2. diff --git a/satosa/content.md b/satosa/content.md index fcba08015cf4..bf6dbaf945ca 100644 --- a/satosa/content.md +++ b/satosa/content.md @@ -4,9 +4,7 @@ SATOSA is a configurable proxy for translating between different authentication %%LOGO%% -# How to use this image - -## To start a SATOSA instance +## Using This Image The basic pattern for starting a `%%REPO%%` instance is: @@ -22,8 +20,6 @@ docker run --name some-%%REPO%% -p 80:8080 -d %%IMAGE%% The entrypoint script outputs SAML2 metadata to the container log at start time. This metadata refers to the instance's base URL, e.g., `https://example.com`. Browsers must be able to access the instance over HTTPS. -# How to extend this image - ## Configuration files The `%%REPO%%` image stores its configuration in /etc/satosa. This configuration must persist among instances, particularly the SAML2 entity ID (derived from the proxy's base URL by default) and related keying material. [Use volumes, bind mounts, or custom images](https://docs.docker.com/storage/) to maintain this configuration. @@ -48,13 +44,13 @@ docker run -it --name some-%%REPO%% %%IMAGE%% bash ## Environment variables -The entrypoint script uses environment variables to generate the initial configuration, which sets SATOSA up as a SAML2 proxy between the free [SAMLtest.ID](https://samltest.id/) test service provider and test identity provider. All of the environment variables are optional. +The entrypoint script uses environment variables to generate the initial configuration, which requires customization. All of the environment variables are **OPTIONAL**. -The environment variables' values can be read from [Docker secrets](https://docs.docker.com/engine/swarm/secrets/). Append `_FILE` to the variable name (e.g., `STATE_ENCRYPTION_KEY_FILE`), and set it to the pathname of the corresponding secret (e.g., `/run/secrets/state_encryption_key`). +Environment variables' values can be read from [Docker secrets](https://docs.docker.com/engine/swarm/secrets/). Append `_FILE` to the variable name (e.g., `STATE_ENCRYPTION_KEY_FILE`), and set it to the pathname of the corresponding secret (e.g., `/run/secrets/state_encryption_key`). ### `BASE_URL` -SATOSA must be hosted at the root of the website. This environment variable optionally specifies the website's base URL, which defaults to `http://example.com`. If set, the base URL *must* be a method plus a hostname without any trailing slash or path components, e.g., `https://idproxy.example.com`, not `https://idproxy.example.com/` nor `https://idproxy.example.com/satosa`. +SATOSA **MUST** be hosted at the root of the website. This environment variable specifies the website's base URL, which defaults to `http://example.com`. If set, the base URL *must* be a method plus a hostname without any trailing slash or path components, e.g., `https://idproxy.example.com`, not `https://idproxy.example.com/` nor `https://idproxy.example.com/satosa`. ### `STATE_ENCRYPTION_KEY` @@ -62,12 +58,12 @@ SATOSA uses encrypted cookies to track the progress of an authentication flow. T ### `SAML2_BACKEND_DISCO_SRV` -When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). +When part of a SAML trust federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). ### `SAML2_BACKEND_CERT` and `SAML2_BACKEND_KEY` -SATOSA's SAML2 backend acts like a service provider (relying party), requesting authentication by and attributes from the user's identity provider. It uses public key cryptography to sign authentication requests and decrypt responses. These optional environment variables hold the backend's paired public and private keys in [the PEM format](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail). If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. +SATOSA's default SAML back-end microservice acts like a service provider (relying party), requesting authentication by and attributes from the user-selected identity provider. The microservice uses public key cryptography to sign authentication requests and decrypt responses. These environment variables provide the requisite keying material in [the PEM format](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail). If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. ### `SAML2_FRONTEND_CERT` and `SAML2_FRONTEND_KEY` -SATOSA's SAML2 frontend acts like an identity provider (credential service provider), processing authentication requests from and returning user attributes to trusted websites. It uses public key cryptography to sign authentication responses. These optional environment variables hold the frontend's paired public and private keys, also in the PEM format. If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. +SATOSA's default SAML front-end microservice acts like an identity provider (credential service provider), processing authentication requests from and returning user attributes to trusted websites. It uses public key cryptography to sign authentication responses. These environment variables provide the requisite keying material, also in the PEM format. If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. diff --git a/satosa/deprecated.md b/satosa/deprecated.md deleted file mode 100644 index 41f6be58b34c..000000000000 --- a/satosa/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -This image is deprecated due to maintainer inactivity (last updated Dec 2023; [docker-library/official-images#15964](https://github.com/docker-library/official-images/pull/15964)). From e535063252ce4a5936e6a97409f1a6670dff128e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 12:10:01 -0700 Subject: [PATCH 2339/2686] Run update.sh --- mageia/README.md | 4 ++-- odoo/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index 1ed4433e127b..e8a9a666041b 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a33ee87c937363a457b13a30e584e66c0e0a396f/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/f385344eecb3d3ba981cfd1682f2b8df8f0e4cc1/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/a33ee87c937363a457b13a30e584e66c0e0a396f/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/f385344eecb3d3ba981cfd1682f2b8df8f0e4cc1/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 761858438537..fb5315ab6710 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250618`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/18.0/Dockerfile) +- [`18.0-20250710`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/18.0/Dockerfile) -- [`17.0-20250618`, `17.0`, `17`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/17.0/Dockerfile) +- [`17.0-20250710`, `17.0`, `17`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/17.0/Dockerfile) -- [`16.0-20250618`, `16.0`, `16`](https://github.com/odoo/docker/blob/b254689862e8a1bbb9624bf86022867544582dd2/16.0/Dockerfile) +- [`16.0-20250710`, `16.0`, `16`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/16.0/Dockerfile) # Quick reference (cont.) From 4233075987ab731fddc5c5f1f48c8284989125b2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 13:10:06 -0700 Subject: [PATCH 2340/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 50daddbddbec..7c06d7f0a94e 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.2`, `25.6.2-jammy`, `25.6.2.5`, `25.6.2.5-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.6.2.5/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.3`, `25.6.3-jammy`, `25.6.3.116`, `25.6.3.116-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.6.3.116/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.6`, `25.5.6-jammy`, `25.5.6.14`, `25.5.6.14-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.5.6.14/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.6`, `25.5.6-jammy`, `25.5.6.14`, `25.5.6.14-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.5.6.14/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.9`, `25.4.9-jammy`, `25.4.9.14`, `25.4.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.4.9.14/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.10`, `25.4.10-jammy`, `25.4.10.45`, `25.4.10.45-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.4.10.45/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.5`, `25.3.5-jammy`, `25.3.5.42`, `25.3.5.42-jammy`](https://github.com/ClickHouse/docker-library/blob/47c5d99dd7c86a0fe9e8702d756e815b61392390/server/25.3.5.42/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.5`, `25.3.5-jammy`, `25.3.5.42`, `25.3.5.42-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.3.5.42/Dockerfile.ubuntu) # Quick reference (cont.) From 350da38ad9eb431ced3f273cafb19b844288752f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 14:10:07 -0700 Subject: [PATCH 2341/2686] Run update.sh --- flink/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flink/README.md b/flink/README.md index 069908451477..91521abed88f 100644 --- a/flink/README.md +++ b/flink/README.md @@ -30,17 +30,17 @@ WARNING: - [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`, `java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.20.1-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.1-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.2-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.20.1-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.1-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.2-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.20.1-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.1-scala_2.12`, `1.20-scala_2.12`, `1.20.1-java11`, `1.20-java11`, `1.20.1`, `1.20`](https://github.com/apache/flink-docker/blob/5d24800c76946c9271d285efe16a299b6c0b0607/1.20/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.2-scala_2.12`, `1.20-scala_2.12`, `1.20.2-java11`, `1.20-java11`, `1.20.2`, `1.20`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.19.2-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.2-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.19.3-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.3-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.19.2-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.2-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.19.3-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.3-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.19.2-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.2-scala_2.12`, `1.19-scala_2.12`, `1.19.2-java11`, `1.19-java11`, `1.19.2`, `1.19`](https://github.com/apache/flink-docker/blob/e2765a6d67449ccd22bc75050449b199a3a91302/1.19/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.19.3-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.3-scala_2.12`, `1.19-scala_2.12`, `1.19.3-java11`, `1.19-java11`, `1.19.3`, `1.19`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) From d89148c5d6d473d219b3ec9cefc1dc6fa90d1442 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 15:10:51 -0700 Subject: [PATCH 2342/2686] Run update.sh --- elasticsearch/README.md | 6 +++--- kibana/README.md | 6 +++--- logstash/README.md | 8 +++----- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 79e87bb2640e..6a4bf9875568 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,11 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/elasticsearch/Dockerfile) +- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/653b4dc804854bfbfab911c4f092c2855dd31171/elasticsearch/Dockerfile) -- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/elasticsearch/Dockerfile) +- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/92aedffa9f9e73e02987878d89a65316fc9c3714/elasticsearch/Dockerfile) -- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/elasticsearch/Dockerfile) +- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/1f8e64284e998ea9f7ca5a9455b3977f451069dc/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index bccef28d544b..9a5f126c7a21 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,11 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/kibana/Dockerfile) +- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/c0ff2abd45ddb4d84ba1d9855b2e1c2576018eed/kibana/Dockerfile) -- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/kibana/Dockerfile) +- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/92aedffa9f9e73e02987878d89a65316fc9c3714/kibana/Dockerfile) -- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/kibana/Dockerfile) +- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/1f8e64284e998ea9f7ca5a9455b3977f451069dc/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index e56cfe1d6fec..3c528a6d6292 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/logstash/Dockerfile) +- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/8d4edd5583d8955df18cf1c7813198e0a534d30f/logstash/Dockerfile) -- [`8.17.6`](https://github.com/elastic/dockerfiles/blob/d7216d19313f88d63f43b52df31da2b4ae6ace3c/logstash/Dockerfile) +- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/a92b21169643b523390367f61ebf78b538e1ab9a/logstash/Dockerfile) -- [`8.18.2`](https://github.com/elastic/dockerfiles/blob/1224fffeb3ad5be8a373d52d0906a6c70146b27b/logstash/Dockerfile) - -- [`9.0.2`](https://github.com/elastic/dockerfiles/blob/6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271/logstash/Dockerfile) +- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/cf09fe592bf894ffec1686e6aaa89aa4a42a6e08/logstash/Dockerfile) # Quick reference (cont.) From a64ebb21280233b1cb24942d07378e8c6e0362b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 10 Jul 2025 17:09:58 -0700 Subject: [PATCH 2343/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 89c71403a582..0a4aa704409f 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,23 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/10/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/10-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/9-slim-fips/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9-slim/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8-slim/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9-slim-fips/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/8-slim-fips/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8-slim/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7-slim/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8-slim-fips/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/294d682bff4740ce534309f766bf0f6736bf7be6/7-slim-fips/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7/Dockerfile) + +- [`7-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7-slim/Dockerfile) + +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7-slim-fips/Dockerfile) # Quick reference (cont.) From bcdb0c660371cee66064f23182a4340521a08a14 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Jul 2025 16:10:10 -0700 Subject: [PATCH 2344/2686] Run update.sh --- docker/README.md | 16 +++++++-------- mongo/README.md | 46 +++++++++++++++++++++++++++++++++++++++++++ nextcloud/README.md | 18 ++++++----------- oraclelinux/README.md | 22 ++++++++++----------- traefik/README.md | 18 ++++++++--------- 5 files changed, 80 insertions(+), 40 deletions(-) diff --git a/docker/README.md b/docker/README.md index 2364d5d3a17e..579cd3d44351 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.1-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/cli/Dockerfile) +- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/cli/Dockerfile) -- [`28.3.1-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.1-dind-alpine3.22`, `28.3.1`, `28.3`, `28`, `latest`, `28.3.1-alpine3.22`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind/Dockerfile) +- [`28.3.2-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.2-dind-alpine3.22`, `28.3.2`, `28.3`, `28`, `latest`, `28.3.2-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind/Dockerfile) -- [`28.3.1-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/89f7fcb459efa9cb3d19e33f50c3c2d51d4579c1/28/dind-rootless/Dockerfile) +- [`28.3.2-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind-rootless/Dockerfile) -- [`28.3.1-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.1-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.3.1-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.3.2-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/072498886bfe721ca5b53fb778883652c66fda10/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 25e98e09b212..2a1a4fa37fea 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,14 @@ WARNING: ## Simple Tags +- [`8.0.12-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/Dockerfile) + +- [`8.0.12-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.12-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.12-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.11-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) - [`8.0.11-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -36,6 +44,14 @@ WARNING: - [`8.0.11-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.22-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/Dockerfile) + +- [`7.0.22-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.22-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.22-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.21-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) - [`7.0.21-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -62,6 +78,21 @@ WARNING: ## Shared Tags +- `8.0.12-rc0`, `8.0-rc`: + + - [`8.0.12-rc0-noble`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/Dockerfile) + - [`8.0.12-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.12-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.12-rc0-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.12-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.12-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.12-rc0-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.12-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `8.0.11`, `8.0`, `8`, `latest`: - [`8.0.11-noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) @@ -77,6 +108,21 @@ WARNING: - [`8.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- `7.0.22-rc0`, `7.0-rc`: + + - [`7.0.22-rc0-jammy`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/Dockerfile) + - [`7.0.22-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.22-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.22-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.22-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.22-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.22-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.22-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `7.0.21`, `7.0`, `7`: - [`7.0.21-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index 71206d8939d5..3415d3e9a21a 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`29.0.16-apache`, `29.0-apache`, `29-apache`, `29.0.16`, `29.0`, `29`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/apache/Dockerfile) +- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/apache/Dockerfile) -- [`29.0.16-fpm`, `29.0-fpm`, `29-fpm`](https://github.com/nextcloud/docker/blob/f130178136c00a6e6951591510bcc059490e4c54/29/fpm/Dockerfile) +- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/fpm/Dockerfile) -- [`29.0.16-fpm-alpine`, `29.0-fpm-alpine`, `29-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/29/fpm-alpine/Dockerfile) +- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/fpm-alpine/Dockerfile) -- [`30.0.12-apache`, `30.0-apache`, `30-apache`, `30.0.12`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/30/apache/Dockerfile) +- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/apache/Dockerfile) -- [`30.0.12-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/30/fpm/Dockerfile) +- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/fpm/Dockerfile) -- [`30.0.12-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/30/fpm-alpine/Dockerfile) - -- [`31.0.6-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.6`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/31/apache/Dockerfile) - -- [`31.0.6-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/a2233a9553bed3b7a9ab8f6e3d7132b5f008a737/31/fpm/Dockerfile) - -- [`31.0.6-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/3d950bcf0c163a74d12d1d9476fc13f725623ad7/31/fpm-alpine/Dockerfile) +- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 0a4aa704409f..f8ac03cac5c8 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/9af3781f4a6e91907dbda1fc34cbe5971c36729a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index a0c5daec68a0..7fff400b858b 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.0-rc1-windowsservercore-ltsc2022`, `3.5.0-rc1-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.0-rc2-windowsservercore-ltsc2022`, `3.5.0-rc2-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.0-rc1-nanoserver-ltsc2022`, `3.5.0-rc1-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.0-rc2-nanoserver-ltsc2022`, `3.5.0-rc2-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.0-rc1`, `3.5.0-rc1`, `chabichou`](https://github.com/traefik/traefik-library-image/blob/3d170dece52062e6a27ddc1f4b553b3d92a7c756/v3.5/alpine/Dockerfile) +- [`v3.5.0-rc2`, `3.5.0-rc2`, `chabichou`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/alpine/Dockerfile) -- [`v3.4.3-windowsservercore-ltsc2022`, `3.4.3-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.4-windowsservercore-ltsc2022`, `3.4.4-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.3-nanoserver-ltsc2022`, `3.4.3-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.4-nanoserver-ltsc2022`, `3.4.4-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.3`, `3.4.3`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/a767e027745831be4213f86d020b9f6e56a9e59f/v3.4/alpine/Dockerfile) +- [`v3.4.4`, `3.4.4`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/alpine/Dockerfile) -- [`v2.11.26-windowsservercore-ltsc2022`, `2.11.26-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.27-windowsservercore-ltsc2022`, `2.11.27-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.26-nanoserver-ltsc2022`, `2.11.26-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.27-nanoserver-ltsc2022`, `2.11.27-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.26`, `2.11.26`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/afab22bec71b19bf593216d6774e98b66e93e6c2/v2.11/alpine/Dockerfile) +- [`v2.11.27`, `2.11.27`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/alpine/Dockerfile) # Quick reference (cont.) From ab5f726a98dc44a30877d810157410abbcce3934 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 11 Jul 2025 17:10:26 -0700 Subject: [PATCH 2345/2686] Run update.sh --- eclipse-mosquitto/README.md | 4 ++-- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- httpd/README.md | 4 ++-- julia/README.md | 26 +++++++++++++------------- neo4j/README.md | 16 ++++++++-------- 6 files changed, 29 insertions(+), 29 deletions(-) diff --git a/eclipse-mosquitto/README.md b/eclipse-mosquitto/README.md index 89851826786b..333b51c5227f 100644 --- a/eclipse-mosquitto/README.md +++ b/eclipse-mosquitto/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.21`, `2.0.21-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/2c671de72a0aebff0f3896a1b7dab2f2dfe51c26/docker/2.0-openssl/Dockerfile) +- [`2.0.22`, `2.0.22-openssl`, `2.0`, `2.0-openssl`, `2`, `2-openssl`, `openssl`, `latest`](https://github.com/eclipse/mosquitto/blob/ff1187fd9c74ae3a7ba0097e7933828bdcdbce71/docker/2.0-openssl/Dockerfile) -- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/2c671de72a0aebff0f3896a1b7dab2f2dfe51c26/docker/1.6-openssl/Dockerfile) +- [`1.6.15-openssl`, `1.6-openssl`](https://github.com/eclipse/mosquitto/blob/ff1187fd9c74ae3a7ba0097e7933828bdcdbce71/docker/1.6-openssl/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ffab99539866..7cd7fb225e3b 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.129.1`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/e8c710980b66691311f973ba46ca8c5fb8588dbe/5/debian/Dockerfile) +- [`5.129.2`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/84d49c038473dc661cfaa67b54b9e951b3cca5d5/5/debian/Dockerfile) -- [`5.129.1-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e8c710980b66691311f973ba46ca8c5fb8588dbe/5/alpine/Dockerfile) +- [`5.129.2-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/84d49c038473dc661cfaa67b54b9e951b3cca5d5/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 7d090a68d899..ffac65ab3f66 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev2`, `3.3-dev`, `3.3-dev2-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/Dockerfile) +- [`3.3-dev3`, `3.3-dev`, `3.3-dev3-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/bd1886e3b1856044dd77d309199afcd065df9d08/3.3/Dockerfile) -- [`3.3-dev2-alpine`, `3.3-dev-alpine`, `3.3-dev2-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/b6f17fd781acb5ce7522ba6d5d2b03a34d210e5b/3.3/alpine/Dockerfile) +- [`3.3-dev3-alpine`, `3.3-dev-alpine`, `3.3-dev3-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/bd1886e3b1856044dd77d309199afcd065df9d08/3.3/alpine/Dockerfile) - [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index fa584664f77d..c5e094f30706 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.63`, `2.4`, `2`, `latest`, `2.4.63-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/329f85a9ad75526de865749a41b273ead99fb69b/2.4/Dockerfile) +- [`2.4.64`, `2.4`, `2`, `latest`, `2.4.64-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/c8d6d8abc1681ef80f36de19253880f4a02c355e/2.4/Dockerfile) -- [`2.4.63-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.63-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/7b36de3e42a8698eab0938ee92f93cfddf6ff835/2.4/alpine/Dockerfile) +- [`2.4.64-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.64-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/c8d6d8abc1681ef80f36de19253880f4a02c355e/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index e7e2f163ef25..e1b3a57b9735 100644 --- a/julia/README.md +++ b/julia/README.md @@ -40,17 +40,17 @@ WARNING: - [`1.12.0-beta4-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.5-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) +- [`1.11.6-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) -- [`1.11.5-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bullseye/Dockerfile) +- [`1.11.6-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bullseye/Dockerfile) -- [`1.11.5-alpine3.22`, `1.11-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.11.5-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/7a8a43f0bd818b70b6856727c8ce87cd6f1ee26d/1.11/alpine3.22/Dockerfile) +- [`1.11.6-alpine3.22`, `1.11-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.11.6-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/alpine3.22/Dockerfile) -- [`1.11.5-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/alpine3.21/Dockerfile) +- [`1.11.6-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/alpine3.21/Dockerfile) -- [`1.11.5-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.11.6-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.11.5-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.6-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.10-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) @@ -77,16 +77,16 @@ WARNING: - [`1.12.0-beta4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.5`, `1.11`, `1`, `latest`: +- `1.11.6`, `1.11`, `1`, `latest`: - - [`1.11.5-bookworm`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/bookworm/Dockerfile) - - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.6-bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) + - [`1.11.6-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.5-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.6-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.5-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.5-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/bd1d1d4ea366ccbfd675e942aed13022abd76eb6/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.6-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - `1.10.10`, `1.10`: diff --git a/neo4j/README.md b/neo4j/README.md index 3ca52da05855..79f03a25a9b5 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.06.0-community-bullseye`, `2025.06-community-bullseye`, `2025-community-bullseye`, `2025.06.0-community`, `2025.06-community`, `2025-community`, `2025.06.0-bullseye`, `2025.06-bullseye`, `2025-bullseye`, `2025.06.0`, `2025.06`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/bullseye/community/Dockerfile) +- [`2025.06.2-community-bullseye`, `2025.06-community-bullseye`, `2025-community-bullseye`, `2025.06.2-community`, `2025.06-community`, `2025-community`, `2025.06.2-bullseye`, `2025.06-bullseye`, `2025-bullseye`, `2025.06.2`, `2025.06`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/bullseye/community/Dockerfile) -- [`2025.06.0-enterprise-bullseye`, `2025.06-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.06.0-enterprise`, `2025.06-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/bullseye/enterprise/Dockerfile) +- [`2025.06.2-enterprise-bullseye`, `2025.06-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.06.2-enterprise`, `2025.06-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/bullseye/enterprise/Dockerfile) -- [`2025.06.0-community-ubi9`, `2025.06-community-ubi9`, `2025-community-ubi9`, `2025.06.0-ubi9`, `2025.06-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/ubi9/community/Dockerfile) +- [`2025.06.2-community-ubi9`, `2025.06-community-ubi9`, `2025-community-ubi9`, `2025.06.2-ubi9`, `2025.06-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/ubi9/community/Dockerfile) -- [`2025.06.0-enterprise-ubi9`, `2025.06-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/65f15ba0941fa0191a1383cf673a984fcbe1317a/2025.06.0/ubi9/enterprise/Dockerfile) +- [`2025.06.2-enterprise-ubi9`, `2025.06-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/ubi9/enterprise/Dockerfile) -- [`5.26.8-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.8-community`, `5.26-community`, `5-community`, `5.26.8-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.8`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/community/Dockerfile) +- [`5.26.9-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.9-community`, `5.26-community`, `5-community`, `5.26.9-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.9`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/bullseye/community/Dockerfile) -- [`5.26.8-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.8-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/bullseye/enterprise/Dockerfile) +- [`5.26.9-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.9-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/bullseye/enterprise/Dockerfile) -- [`5.26.8-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.8-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/ubi9/community/Dockerfile) +- [`5.26.9-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.9-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/ubi9/community/Dockerfile) -- [`5.26.8-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/7bcd74b9f4aaee7a0a271aa0f9b0e9c4723d3280/5.26.8/ubi9/enterprise/Dockerfile) +- [`5.26.9-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/ubi9/enterprise/Dockerfile) - [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) From c0b9a9c0cd8950308a69b23b53dacb5fe8f1ae38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Jul 2025 14:10:07 -0700 Subject: [PATCH 2346/2686] Run update.sh --- almalinux/README.md | 16 ++++----- archlinux/README.md | 6 ++-- composer/README.md | 6 ++-- gcc/README.md | 2 +- golang/README.md | 12 +++---- julia/README.md | 26 +++++++------- openjdk/README.md | 80 +++++++++++++++++++++---------------------- rocket.chat/README.md | 12 +++---- 8 files changed, 80 insertions(+), 80 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 0d74740dd753..34689a1cd2ef 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250709`](https://github.com/AlmaLinux/container-images/blob/89c3f0c8f61042b7a77c59f7532bdb30f76af551/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250711`](https://github.com/AlmaLinux/container-images/blob/649a94558c44886f3b63a29dbd637ab31efe0804/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/89c3f0c8f61042b7a77c59f7532bdb30f76af551/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250711`](https://github.com/AlmaLinux/container-images/blob/649a94558c44886f3b63a29dbd637ab31efe0804/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250709`](https://github.com/AlmaLinux/container-images/blob/42ac29acea2f74c1107f78f2fa6ed22e2ecfbf10/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250711`](https://github.com/AlmaLinux/container-images/blob/c85dabd05aae3a97a85b285c6051a74bbd8b396d/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/42ac29acea2f74c1107f78f2fa6ed22e2ecfbf10/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250711`](https://github.com/AlmaLinux/container-images/blob/c85dabd05aae3a97a85b285c6051a74bbd8b396d/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250709`](https://github.com/AlmaLinux/container-images/blob/9b12440f63466bc853122a0d6a5251ae501a4957/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250712`](https://github.com/AlmaLinux/container-images/blob/f15cead36e80f751fdd54e23ea6fa8f5cdec82df/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/9b12440f63466bc853122a0d6a5251ae501a4957/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250712`](https://github.com/AlmaLinux/container-images/blob/f15cead36e80f751fdd54e23ea6fa8f5cdec82df/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250709`](https://github.com/AlmaLinux/container-images/blob/33df2b4934820404ae980366f6688843c1240f6e/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250712`](https://github.com/AlmaLinux/container-images/blob/dd832071d11c40c4697dee7378bf0dce8265302c/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250709`](https://github.com/AlmaLinux/container-images/blob/33df2b4934820404ae980366f6688843c1240f6e/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250712`](https://github.com/AlmaLinux/container-images/blob/dd832071d11c40c4697dee7378bf0dce8265302c/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/archlinux/README.md b/archlinux/README.md index 65098954100a..d31a397bfdbc 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.base) +- [`latest`, `base`, `base-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.base) -- [`base-devel`, `base-devel-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250706.0.377547`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/586fd52db83f6e3715f36ed5fd1783725c5ad3ca/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/composer/README.md b/composer/README.md index c040a15b1468..cdfa267bfe12 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.25`, `2.2`, `lts`](https://github.com/composer/docker/blob/15ee952ef914adfc785fd77e4a0b619401dcc194/lts/Dockerfile) +- [`2.8.10`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/1992e740d9584be61ea3130e18193276cf989cf5/latest/Dockerfile) -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/15ee952ef914adfc785fd77e4a0b619401dcc194/legacy/Dockerfile) +- [`2.2.25`, `2.2`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/2.2/Dockerfile) -- [`2.8.9`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/100f579f6234b361017ae72b9de677ea04859ab7/latest/Dockerfile) +- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/1.10/Dockerfile) # Quick reference (cont.) diff --git a/gcc/README.md b/gcc/README.md index f9e47c010710..eeaf0cf14b8f 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -30,7 +30,7 @@ WARNING: - [`13.4.0`, `13.4`, `13`, `13.4.0-bookworm`, `13.4-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/118c07a8e6467baababb4634b6cfde14a67c24b0/13/Dockerfile) -- [`12.4.0`, `12.4`, `12`, `12.4.0-bookworm`, `12.4-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/b5055bcc1551a7e271af315158e1c260c212409c/12/Dockerfile) +- [`12.5.0`, `12.5`, `12`, `12.5.0-bookworm`, `12.5-bookworm`, `12-bookworm`](https://github.com/docker-library/gcc/blob/7070981b23d22d3ca790f87bff26f13f3614dd4c/12/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index f9977c7e00aa..2f1726e283f3 100644 --- a/golang/README.md +++ b/golang/README.md @@ -76,13 +76,13 @@ WARNING: - [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250704-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bookworm/Dockerfile) +- [`tip-20250711-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bookworm/Dockerfile) -- [`tip-20250704-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bullseye/Dockerfile) +- [`tip-20250711-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bullseye/Dockerfile) -- [`tip-20250704-alpine3.22`, `tip-alpine3.22`, `tip-20250704-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/alpine3.22/Dockerfile) +- [`tip-20250711-alpine3.22`, `tip-alpine3.22`, `tip-20250711-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/alpine3.22/Dockerfile) -- [`tip-20250704-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/alpine3.21/Dockerfile) +- [`tip-20250711-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -134,9 +134,9 @@ WARNING: - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250704`, `tip`: +- `tip-20250711`, `tip`: - - [`tip-20250704-bookworm`](https://github.com/docker-library/golang/blob/63767b5451bd0735b221f620ee43cfbf95254b52/tip/bookworm/Dockerfile) + - [`tip-20250711-bookworm`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index e1b3a57b9735..c8a3a5f351cc 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`1.12.0-beta4-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-rc1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-beta4-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bullseye/Dockerfile) +- [`1.12.0-rc1-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bullseye/Dockerfile) -- [`1.12.0-beta4-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-beta4-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/alpine3.22/Dockerfile) +- [`1.12.0-rc1-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-rc1-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/alpine3.22/Dockerfile) -- [`1.12.0-beta4-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/alpine3.21/Dockerfile) +- [`1.12.0-rc1-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/alpine3.21/Dockerfile) -- [`1.12.0-beta4-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-rc1-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-beta4-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-rc1-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.6-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) @@ -66,16 +66,16 @@ WARNING: ## Shared Tags -- `1.12.0-beta4`, `1.12-rc`, `rc`: +- `1.12.0-rc1`, `1.12-rc`, `rc`: - - [`1.12.0-beta4-bookworm`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/bookworm/Dockerfile) - - [`1.12.0-beta4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-beta4-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-rc1-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-beta4-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-beta4-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/51f7c3f9b1d6c71ac564d1518844144500371e9c/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `1.11.6`, `1.11`, `1`, `latest`: diff --git a/openjdk/README.md b/openjdk/README.md index 52e94892ce28..ef304d29ae67 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-5-jdk-oraclelinux9`, `26-ea-5-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-5-jdk-oracle`, `26-ea-5-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-6-jdk-oraclelinux9`, `26-ea-6-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-6-jdk-oracle`, `26-ea-6-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-5-jdk-oraclelinux8`, `26-ea-5-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-6-jdk-oraclelinux8`, `26-ea-6-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-5-jdk-bookworm`, `26-ea-5-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/bookworm/Dockerfile) +- [`26-ea-6-jdk-bookworm`, `26-ea-6-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/bookworm/Dockerfile) -- [`26-ea-5-jdk-slim-bookworm`, `26-ea-5-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-5-jdk-slim`, `26-ea-5-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-6-jdk-slim-bookworm`, `26-ea-6-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-6-jdk-slim`, `26-ea-6-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-5-jdk-bullseye`, `26-ea-5-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/bullseye/Dockerfile) +- [`26-ea-6-jdk-bullseye`, `26-ea-6-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/bullseye/Dockerfile) -- [`26-ea-5-jdk-slim-bullseye`, `26-ea-5-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-6-jdk-slim-bullseye`, `26-ea-6-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-5-jdk-windowsservercore-ltsc2025`, `26-ea-5-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-6-jdk-windowsservercore-ltsc2025`, `26-ea-6-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-5-jdk-windowsservercore-ltsc2022`, `26-ea-5-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-6-jdk-windowsservercore-ltsc2022`, `26-ea-6-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-5-jdk-nanoserver-ltsc2025`, `26-ea-5-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-6-jdk-nanoserver-ltsc2025`, `26-ea-6-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-5-jdk-nanoserver-ltsc2022`, `26-ea-5-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-6-jdk-nanoserver-ltsc2022`, `26-ea-6-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-30-jdk-oraclelinux9`, `25-ea-30-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-30-jdk-oracle`, `25-ea-30-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-31-jdk-oraclelinux9`, `25-ea-31-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-31-jdk-oracle`, `25-ea-31-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-30-jdk-oraclelinux8`, `25-ea-30-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-31-jdk-oraclelinux8`, `25-ea-31-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-30-jdk-bookworm`, `25-ea-30-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/bookworm/Dockerfile) +- [`25-ea-31-jdk-bookworm`, `25-ea-31-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/bookworm/Dockerfile) -- [`25-ea-30-jdk-slim-bookworm`, `25-ea-30-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-30-jdk-slim`, `25-ea-30-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-31-jdk-slim-bookworm`, `25-ea-31-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-31-jdk-slim`, `25-ea-31-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-30-jdk-bullseye`, `25-ea-30-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/bullseye/Dockerfile) +- [`25-ea-31-jdk-bullseye`, `25-ea-31-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/bullseye/Dockerfile) -- [`25-ea-30-jdk-slim-bullseye`, `25-ea-30-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-31-jdk-slim-bullseye`, `25-ea-31-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-30-jdk-windowsservercore-ltsc2025`, `25-ea-30-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-31-jdk-windowsservercore-ltsc2025`, `25-ea-31-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-30-jdk-windowsservercore-ltsc2022`, `25-ea-30-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-31-jdk-windowsservercore-ltsc2022`, `25-ea-31-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-30-jdk-nanoserver-ltsc2025`, `25-ea-30-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-31-jdk-nanoserver-ltsc2025`, `25-ea-31-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-30-jdk-nanoserver-ltsc2022`, `25-ea-30-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-31-jdk-nanoserver-ltsc2022`, `25-ea-31-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-5-jdk`, `26-ea-5`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-6-jdk`, `26-ea-6`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-5-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-5-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-5-jdk-windowsservercore`, `26-ea-5-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-6-jdk-windowsservercore`, `26-ea-6-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-5-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-5-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-5-jdk-nanoserver`, `26-ea-5-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-6-jdk-nanoserver`, `26-ea-6-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-5-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-5-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d4669e8a06b8b8e69e27d1fffea7716fdc400943/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-6-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-6-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-30-jdk`, `25-ea-30`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-31-jdk`, `25-ea-31`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-30-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-30-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-30-jdk-windowsservercore`, `25-ea-30-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-31-jdk-windowsservercore`, `25-ea-31-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-30-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-30-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-30-jdk-nanoserver`, `25-ea-30-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-31-jdk-nanoserver`, `25-ea-31-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-30-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-30-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/67237d064cc50274648fb959291edc97cd549f8f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-31-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-31-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 811285294d36..ad11c2f6aef7 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.7.1`, `7.7`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/f8b830091f7a8eb1576c1db6b73f2e6bc244a34c/7.7/Dockerfile) +- [`7.8.0`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.8/Dockerfile) -- [`7.6.3`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.6/Dockerfile) +- [`7.7.4`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.7/Dockerfile) -- [`7.5.2`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.5/Dockerfile) +- [`7.6.4`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.6/Dockerfile) + +- [`7.5.3`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.5/Dockerfile) - [`7.4.3`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.4/Dockerfile) -- [`7.3.5`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.3/Dockerfile) +- [`7.3.6`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.3/Dockerfile) - [`7.2.6`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.2/Dockerfile) -- [`7.1.6`, `7.1`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.1/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From f37947e844df70e1538ebfce39f6969d041aea8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 14 Jul 2025 19:10:06 -0700 Subject: [PATCH 2347/2686] Run update.sh --- nginx/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index 5ac5fc7c9fd5..aca318b881e5 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.0`, `mainline`, `1`, `1.29`, `latest`, `1.29.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian/Dockerfile) +- [`1.29.0`, `mainline`, `1`, `1.29`, `latest`, `1.29.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/b2faad22d5d15d966e46922033681639b2a6d6fa/mainline/debian/Dockerfile) - [`1.29.0-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.29-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian-perl/Dockerfile) @@ -38,7 +38,7 @@ WARNING: - [`1.29.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.0-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-otel/Dockerfile) -- [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian/Dockerfile) +- [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/b2faad22d5d15d966e46922033681639b2a6d6fa/stable/debian/Dockerfile) - [`1.28.0-perl`, `stable-perl`, `1.28-perl`, `1.28.0-bookworm-perl`, `stable-bookworm-perl`, `1.28-bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian-perl/Dockerfile) From e873958c2425510ef50f3de1b27cb75817664b53 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 11:10:00 -0700 Subject: [PATCH 2348/2686] Run update.sh --- bash/README.md | 2 +- ghost/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/README.md b/bash/README.md index 90f95d2126ff..9de9b506ebec 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250627`, `devel`, `devel-20250627-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/devel/Dockerfile) +- [`devel-20250711`, `devel`, `devel-20250711-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/826dcd0b8893244a0cd9a35a67463bcf2194f97b/devel/Dockerfile) - [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/59788c3224d1c11f14518f6c860ce6bccaf21d54/5.3/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 7cd7fb225e3b..2a30412699b3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.129.2`, `5.129`, `5`, `latest`](https://github.com/docker-library/ghost/blob/84d49c038473dc661cfaa67b54b9e951b3cca5d5/5/debian/Dockerfile) +- [`5.130.0`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/59ac78837905155750e2f0dc2206693e5d5d6f1f/5/debian/Dockerfile) -- [`5.129.2-alpine`, `5.129-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/84d49c038473dc661cfaa67b54b9e951b3cca5d5/5/alpine/Dockerfile) +- [`5.130.0-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/59ac78837905155750e2f0dc2206693e5d5d6f1f/5/alpine/Dockerfile) # Quick reference (cont.) From 0e8dc334b2ad961f25022779c6e4cfea3abeb367 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 12:10:30 -0700 Subject: [PATCH 2349/2686] Run update.sh --- alpine/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index b0e2f8e41b9f..5341eb982e78 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20250108`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c1f1de232c970df2285c03050ab3747b8563164f/x86_64/Dockerfile) -- [`3.22.0`, `3.22`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/5213c5a71c73d39d5896657909e753effb1c05ff/x86_64/Dockerfile) +- [`3.22.1`, `3.22`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/01dd5fbd09e25f6c040627eedf18bbfccfa9ad6e/x86_64/Dockerfile) -- [`3.21.3`, `3.21`](https://github.com/alpinelinux/docker-alpine/blob/17fe3d1e2d2cbf54d745139eab749c252e35b883/x86_64/Dockerfile) +- [`3.21.4`, `3.21`](https://github.com/alpinelinux/docker-alpine/blob/dd258ea6660042cdf5aef42ef7745640ce27bf8e/x86_64/Dockerfile) -- [`3.20.6`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/a0db1d60e576114995a27356e6dda8145293d6f8/x86_64/Dockerfile) +- [`3.20.7`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/62f727c549aafddfe09929209215e68eb222f0b2/x86_64/Dockerfile) -- [`3.19.7`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/7cfdb838c6f47bb3845c25f1674a9c3a44d8bafb/x86_64/Dockerfile) +- [`3.19.8`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/f2420d7551c86c2cd3fab04159b57b9bcc533647/x86_64/Dockerfile) # Quick reference (cont.) From 792e9d4c754006dd31c2079d752d078d3578523f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 13:10:25 -0700 Subject: [PATCH 2350/2686] Run update.sh --- ruby/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ruby/README.md b/ruby/README.md index f72f6638b99e..e736ed09a27c 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) -- [`3.4.4-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.4`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/bookworm/Dockerfile) +- [`3.4.5-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.5`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/bookworm/Dockerfile) -- [`3.4.4-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.4-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/slim-bookworm/Dockerfile) +- [`3.4.5-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.5-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/slim-bookworm/Dockerfile) -- [`3.4.4-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/bullseye/Dockerfile) +- [`3.4.5-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/bullseye/Dockerfile) -- [`3.4.4-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/slim-bullseye/Dockerfile) +- [`3.4.5-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/slim-bullseye/Dockerfile) -- [`3.4.4-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.4-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.4/alpine3.22/Dockerfile) +- [`3.4.5-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.5-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.22/Dockerfile) -- [`3.4.4-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/7d865400f938b2597b3feffbd900040c11b41eed/3.4/alpine3.21/Dockerfile) +- [`3.4.5-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.21/Dockerfile) - [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) From 9f5e482083cf6e4e2e5df6da0dfcbcb71a124824 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 14:10:19 -0700 Subject: [PATCH 2351/2686] Run update.sh --- sapmachine/README.md | 88 ++++++++++++++++++++++---------------------- ubuntu/README.md | 8 ++-- wordpress/README.md | 48 ++++++------------------ 3 files changed, 59 insertions(+), 85 deletions(-) diff --git a/sapmachine/README.md b/sapmachine/README.md index 9b05047556af..57b4ceeb6d58 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,93 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `24`, `24-ubuntu`, `24.0.1`, `24.0.1-ubuntu`, `24-jdk`, `24-jdk-ubuntu`, `24.0.1-jdk`, `24.0.1-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `24.0.1-ubuntu-noble`, `24.0.1-ubuntu-24.04`, `24.0.1-jdk-ubuntu-noble`, `24.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `24`, `24-ubuntu`, `24.0.2`, `24.0.2-ubuntu`, `24-jdk`, `24-jdk-ubuntu`, `24.0.2-jdk`, `24.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `24.0.2-ubuntu-noble`, `24.0.2-ubuntu-24.04`, `24.0.2-jdk-ubuntu-noble`, `24.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless`, `jdk-headless-ubuntu`, `24-jdk-headless`, `24-jdk-headless-ubuntu`, `24.0.1-jdk-headless`, `24.0.1-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `24.0.1-jdk-headless-ubuntu-noble`, `24.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless`, `jdk-headless-ubuntu`, `24-jdk-headless`, `24-jdk-headless-ubuntu`, `24.0.2-jdk-headless`, `24.0.2-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `24.0.2-jdk-headless-ubuntu-noble`, `24.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre`, `jre-ubuntu`, `24-jre`, `24-jre-ubuntu`, `24.0.1-jre`, `24.0.1-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `24.0.1-jre-ubuntu-noble`, `24.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) +- [`jre`, `jre-ubuntu`, `24-jre`, `24-jre-ubuntu`, `24.0.2-jre`, `24.0.2-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `24.0.2-jre-ubuntu-noble`, `24.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless`, `jre-headless-ubuntu`, `24-jre-headless`, `24-jre-headless-ubuntu`, `24.0.1-jre-headless`, `24.0.1-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `24.0.1-jre-headless-ubuntu-noble`, `24.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless`, `jre-headless-ubuntu`, `24-jre-headless`, `24-jre-headless-ubuntu`, `24.0.2-jre-headless`, `24.0.2-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `24.0.2-jre-headless-ubuntu-noble`, `24.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `24.0.1-ubuntu-jammy`, `24.0.1-ubuntu-22.04`, `24.0.1-jdk-ubuntu-jammy`, `24.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `24.0.2-ubuntu-jammy`, `24.0.2-ubuntu-22.04`, `24.0.2-jdk-ubuntu-jammy`, `24.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `24.0.1-jdk-headless-ubuntu-jammy`, `24.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `24.0.2-jdk-headless-ubuntu-jammy`, `24.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) -- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `24.0.1-jre-ubuntu-jammy`, `24.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) +- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `24.0.2-jre-ubuntu-jammy`, `24.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) -- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `24.0.1-jre-headless-ubuntu-jammy`, `24.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `24.0.2-jre-headless-ubuntu-jammy`, `24.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) -- [`alpine`, `jdk-alpine`, `24-alpine`, `24.0.1-alpine`, `24-jdk-alpine`, `24.0.1-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `24-alpine-3.22`, `24-jdk-alpine-3.22`, `24.0.1-alpine-3.22`, `24.0.1-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/8540b4a7636cfd29507fb6853f8f5d6331f62d24/dockerfiles/24/alpine/3_22/jdk/Dockerfile) +- [`alpine`, `jdk-alpine`, `24-alpine`, `24.0.2-alpine`, `24-jdk-alpine`, `24.0.2-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `24-alpine-3.22`, `24-jdk-alpine-3.22`, `24.0.2-alpine-3.22`, `24.0.2-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_22/jdk/Dockerfile) -- [`jre-alpine`, `24-jre-alpine`, `24.0.1-jre-alpine`, `jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.1-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/8540b4a7636cfd29507fb6853f8f5d6331f62d24/dockerfiles/24/alpine/3_22/jre/Dockerfile) +- [`jre-alpine`, `24-jre-alpine`, `24.0.2-jre-alpine`, `jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.2-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_22/jre/Dockerfile) -- [`alpine-3.21`, `jdk-alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `24.0.1-alpine-3.21`, `24.0.1-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jdk/Dockerfile) +- [`alpine-3.21`, `jdk-alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `24.0.2-alpine-3.21`, `24.0.2-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_21/jdk/Dockerfile) -- [`jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.1-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/f812009dd9d683d710e00f3e9c6978c23c4da797/dockerfiles/24/alpine/3_21/jre/Dockerfile) +- [`jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.2-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_21/jre/Dockerfile) -- [`lts`, `lts-ubuntu`, `21`, `21-ubuntu`, `21.0.7`, `21.0.7-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.7-jdk`, `21.0.7-jdk-ubuntu`, `lts-jdk-ubuntu`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.7-ubuntu-noble`, `21.0.7-ubuntu-24.04`, `21.0.7-jdk-ubuntu-noble`, `21.0.7-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`lts`, `lts-ubuntu`, `21`, `21-ubuntu`, `21.0.8`, `21.0.8-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.8-jdk`, `21.0.8-jdk-ubuntu`, `lts-jdk-ubuntu`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.8-ubuntu-noble`, `21.0.8-ubuntu-24.04`, `21.0.8-jdk-ubuntu-noble`, `21.0.8-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.7-jdk-headless`, `21.0.7-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.7-jdk-headless-ubuntu-noble`, `21.0.7-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.8-jdk-headless`, `21.0.8-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.8-jdk-headless-ubuntu-noble`, `21.0.8-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre`, `21-jre-ubuntu`, `21.0.7-jre`, `21.0.7-jre-ubuntu`, `lts-jre-ubuntu`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.7-jre-ubuntu-noble`, `21.0.7-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre`, `21-jre-ubuntu`, `21.0.8-jre`, `21.0.8-jre-ubuntu`, `lts-jre-ubuntu`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.8-jre-ubuntu-noble`, `21.0.8-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.7-jre-headless`, `21.0.7-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.7-jre-headless-ubuntu-noble`, `21.0.7-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.8-jre-headless`, `21.0.8-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.8-jre-headless-ubuntu-noble`, `21.0.8-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.7-ubuntu-jammy`, `21.0.7-ubuntu-22.04`, `21.0.7-jdk-ubuntu-jammy`, `21.0.7-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.8-ubuntu-jammy`, `21.0.8-ubuntu-22.04`, `21.0.8-jdk-ubuntu-jammy`, `21.0.8-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.7-jdk-headless-ubuntu-jammy`, `21.0.7-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.8-jdk-headless-ubuntu-jammy`, `21.0.8-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.7-jre-ubuntu-jammy`, `21.0.7-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.8-jre-ubuntu-jammy`, `21.0.8-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.7-jre-headless-ubuntu-jammy`, `21.0.7-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.8-jre-headless-ubuntu-jammy`, `21.0.8-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`lts-alpine`, `21-alpine`, `21.0.7-alpine`, `lts-jdk-alpine`, `21-jdk-alpine`, `21.0.7-jdk-alpine`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.7-alpine-3.22`, `21.0.7-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/f6b5f88e98cac94b30cfaa2321cfde070fd32208/dockerfiles/21/alpine/3_22/jdk/Dockerfile) +- [`lts-alpine`, `21-alpine`, `21.0.8-alpine`, `lts-jdk-alpine`, `21-jdk-alpine`, `21.0.8-jdk-alpine`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.8-alpine-3.22`, `21.0.8-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_22/jdk/Dockerfile) -- [`lts-jre-alpine`, `21-jre-alpine`, `21.0.7-jre-alpine`, `lts-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.7-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/f6b5f88e98cac94b30cfaa2321cfde070fd32208/dockerfiles/21/alpine/3_22/jre/Dockerfile) +- [`lts-jre-alpine`, `21-jre-alpine`, `21.0.8-jre-alpine`, `lts-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.8-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_22/jre/Dockerfile) -- [`lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.7-alpine-3.21`, `21.0.7-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jdk/Dockerfile) +- [`lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.8-alpine-3.21`, `21.0.8-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`lts-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.7-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/54b17adefafcdd1f5929dd7681d8b98ab4d86e4c/dockerfiles/21/alpine/3_21/jre/Dockerfile) +- [`lts-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.8-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_21/jre/Dockerfile) -- [`17`, `17-ubuntu`, `17.0.15`, `17.0.15-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.15-jdk`, `17.0.15-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.15-ubuntu-noble`, `17.0.15-ubuntu-24.04`, `17.0.15-jdk-ubuntu-noble`, `17.0.15-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) +- [`17`, `17-ubuntu`, `17.0.16`, `17.0.16-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.16-jdk`, `17.0.16-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.16-ubuntu-noble`, `17.0.16-ubuntu-24.04`, `17.0.16-jdk-ubuntu-noble`, `17.0.16-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.15-jdk-headless`, `17.0.15-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.15-jdk-headless-ubuntu-noble`, `17.0.15-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.16-jdk-headless`, `17.0.16-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.16-jdk-headless-ubuntu-noble`, `17.0.16-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre`, `17-jre-ubuntu`, `17.0.15-jre`, `17.0.15-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.15-jre-ubuntu-noble`, `17.0.15-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre`, `17-jre-ubuntu`, `17.0.16-jre`, `17.0.16-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.16-jre-ubuntu-noble`, `17.0.16-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.15-jre-headless`, `17.0.15-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.15-jre-headless-ubuntu-noble`, `17.0.15-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.16-jre-headless`, `17.0.16-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.16-jre-headless-ubuntu-noble`, `17.0.16-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.15-ubuntu-jammy`, `17.0.15-ubuntu-22.04`, `17.0.15-jdk-ubuntu-jammy`, `17.0.15-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.16-ubuntu-jammy`, `17.0.16-ubuntu-22.04`, `17.0.16-jdk-ubuntu-jammy`, `17.0.16-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.15-jdk-headless-ubuntu-jammy`, `17.0.15-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.16-jdk-headless-ubuntu-jammy`, `17.0.16-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.15-jre-ubuntu-jammy`, `17.0.15-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.16-jre-ubuntu-jammy`, `17.0.16-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.15-jre-headless-ubuntu-jammy`, `17.0.15-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.16-jre-headless-ubuntu-jammy`, `17.0.16-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-alpine`, `17.0.15-alpine`, `17-jdk-alpine`, `17.0.15-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.15-alpine-3.22`, `17.0.15-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7363a6d1e47c9f6371c1fb5b2dcc8525396e5d2f/dockerfiles/17/alpine/3_22/jdk/Dockerfile) +- [`17-alpine`, `17.0.16-alpine`, `17-jdk-alpine`, `17.0.16-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.16-alpine-3.22`, `17.0.16-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_22/jdk/Dockerfile) -- [`17-jre-alpine`, `17.0.15-jre-alpine`, `17-jre-alpine-3.22`, `17.0.15-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7363a6d1e47c9f6371c1fb5b2dcc8525396e5d2f/dockerfiles/17/alpine/3_22/jre/Dockerfile) +- [`17-jre-alpine`, `17.0.16-jre-alpine`, `17-jre-alpine-3.22`, `17.0.16-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_22/jre/Dockerfile) -- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.15-alpine-3.21`, `17.0.15-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jdk/Dockerfile) +- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.16-alpine-3.21`, `17.0.16-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`17-jre-alpine-3.21`, `17.0.15-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eda1e4d07cb6b70feef4d6192bcf09593bafc3dd/dockerfiles/17/alpine/3_21/jre/Dockerfile) +- [`17-jre-alpine-3.21`, `17.0.16-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_21/jre/Dockerfile) -- [`11`, `11-ubuntu`, `11.0.27`, `11.0.27-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.27-jdk`, `11.0.27-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.27-ubuntu-noble`, `11.0.27-ubuntu-24.04`, `11.0.27-jdk-ubuntu-noble`, `11.0.27-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`11`, `11-ubuntu`, `11.0.28`, `11.0.28-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.28-jdk`, `11.0.28-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.28-ubuntu-noble`, `11.0.28-ubuntu-24.04`, `11.0.28-jdk-ubuntu-noble`, `11.0.28-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.27-jdk-headless`, `11.0.27-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.27-jdk-headless-ubuntu-noble`, `11.0.27-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.28-jdk-headless`, `11.0.28-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.28-jdk-headless-ubuntu-noble`, `11.0.28-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre`, `11-jre-ubuntu`, `11.0.27-jre`, `11.0.27-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.27-jre-ubuntu-noble`, `11.0.27-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre`, `11-jre-ubuntu`, `11.0.28-jre`, `11.0.28-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.28-jre-ubuntu-noble`, `11.0.28-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.27-jre-headless`, `11.0.27-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.27-jre-headless-ubuntu-noble`, `11.0.27-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.28-jre-headless`, `11.0.28-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.28-jre-headless-ubuntu-noble`, `11.0.28-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.27-ubuntu-jammy`, `11.0.27-ubuntu-22.04`, `11.0.27-jdk-ubuntu-jammy`, `11.0.27-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.28-ubuntu-jammy`, `11.0.28-ubuntu-22.04`, `11.0.28-jdk-ubuntu-jammy`, `11.0.28-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.27-jdk-headless-ubuntu-jammy`, `11.0.27-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.28-jdk-headless-ubuntu-jammy`, `11.0.28-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.27-jre-ubuntu-jammy`, `11.0.27-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.28-jre-ubuntu-jammy`, `11.0.28-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.27-jre-headless-ubuntu-jammy`, `11.0.27-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/b56fec3b73cca3045d10f608837dcc1d690123db/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.28-jre-headless-ubuntu-jammy`, `11.0.28-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index ad05da8a17d4..015585be7bf3 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.04`, `jammy-20250619`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250619-7fb3f136&id=7fb3f1366b34c5b765ad9b4231010c5500324bc4) +- [`22.04`, `jammy-20250714`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250714-168abc94&id=168abc94dd44eff4a2f311f98cdd30463ff9265b) -- [`24.04`, `noble-20250619`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250619-21910021&id=21910021a997c25cb714dc6f40ef03a630dd8b3b) +- [`24.04`, `noble-20250714`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250714-3d50b499&id=3d50b4991bec4ec696ab2bd2fc8dc51f066ef6da) -- [`24.10`, `oracular-20250619`, `oracular`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-oracular-amd64-20250619-cc02a011&id=cc02a01164fbf0fd3b74b09e6c9b0da490411665) - -- [`25.04`, `plucky-20250619`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250619-d0219e60&id=d0219e60c528ce77ce4e16a7a79696ff45239411) +- [`25.04`, `plucky-20250714`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250714-583c18ff&id=583c18ffc4ba6a16e0c8f62dff0ddf62db29134a) - [`25.10`, `questing-20250620`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250620-fb433863&id=fb433863336aaeb793b4c17e7751bad417783ebe) diff --git a/wordpress/README.md b/wordpress/README.md index 12c12a616a69..8b0318dc1de5 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.1-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.1-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/apache/Dockerfile) +- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/apache/Dockerfile) -- [`6.8.1-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/fpm/Dockerfile) +- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/fpm/Dockerfile) -- [`6.8.1-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.1-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.1`, `6.8`, `6`, `latest`, `6.8.1-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.1-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/apache/Dockerfile) +- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/apache/Dockerfile) -- [`6.8.1-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.1-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/fpm/Dockerfile) +- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/fpm/Dockerfile) -- [`6.8.1-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.1-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.1-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.1-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/apache/Dockerfile) +- [`6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/apache/Dockerfile) -- [`6.8.1-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/fpm/Dockerfile) +- [`6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/fpm/Dockerfile) -- [`6.8.1-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.1-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.1-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/apache/Dockerfile) +- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/apache/Dockerfile) -- [`6.8.1-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/fpm/Dockerfile) +- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/fpm/Dockerfile) -- [`6.8.1-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/447d7d60da6f91d656ac711dbab2a042e1b5b515/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) @@ -56,30 +56,6 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8.2-RC1-php8.1-apache`, `beta-6.8.2-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.2-RC1-php8.1`, `beta-6.8.2-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/apache/Dockerfile) - -- [`beta-6.8.2-RC1-php8.1-fpm`, `beta-6.8.2-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.8.2-RC1-php8.1-fpm-alpine`, `beta-6.8.2-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.8.2-RC1-apache`, `beta-6.8.2-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.2-RC1`, `beta-6.8.2`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.2-RC1-php8.2-apache`, `beta-6.8.2-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.2-RC1-php8.2`, `beta-6.8.2-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/apache/Dockerfile) - -- [`beta-6.8.2-RC1-fpm`, `beta-6.8.2-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.2-RC1-php8.2-fpm`, `beta-6.8.2-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.8.2-RC1-fpm-alpine`, `beta-6.8.2-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.2-RC1-php8.2-fpm-alpine`, `beta-6.8.2-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.8.2-RC1-php8.3-apache`, `beta-6.8.2-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.2-RC1-php8.3`, `beta-6.8.2-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/apache/Dockerfile) - -- [`beta-6.8.2-RC1-php8.3-fpm`, `beta-6.8.2-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.8.2-RC1-php8.3-fpm-alpine`, `beta-6.8.2-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.3/fpm-alpine/Dockerfile) - -- [`beta-6.8.2-RC1-php8.4-apache`, `beta-6.8.2-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.2-RC1-php8.4`, `beta-6.8.2-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/apache/Dockerfile) - -- [`beta-6.8.2-RC1-php8.4-fpm`, `beta-6.8.2-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/fpm/Dockerfile) - -- [`beta-6.8.2-RC1-php8.4-fpm-alpine`, `beta-6.8.2-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/fe46b5e252346246362c11299cb4763888056060/beta/php8.4/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 732e2470c7fc268fe8512d4cdae57d58862b5798 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 15:10:06 -0700 Subject: [PATCH 2352/2686] Run update.sh --- buildpack-deps/README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index 69e2de259509..b0247833703e 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -60,12 +60,6 @@ WARNING: - [`noble`, `24.04`](https://github.com/docker-library/buildpack-deps/blob/60dc5f9555c521de086b2f5770514faf69ee2cc4/ubuntu/noble/Dockerfile) -- [`oracular-curl`, `24.10-curl`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/curl/Dockerfile) - -- [`oracular-scm`, `24.10-scm`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/scm/Dockerfile) - -- [`oracular`, `24.10`](https://github.com/docker-library/buildpack-deps/blob/f24f02bc0fda57d7f0e30b205df4a38114712b0a/ubuntu/oracular/Dockerfile) - - [`plucky-curl`, `25.04-curl`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/curl/Dockerfile) - [`plucky-scm`, `25.04-scm`](https://github.com/docker-library/buildpack-deps/blob/ab3ae04e943ecb240a9691dfa1de219b4a3e32a0/ubuntu/plucky/scm/Dockerfile) From 1396a193d39e52ba2ece20ece89bd970f44e33b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Jul 2025 18:10:33 -0700 Subject: [PATCH 2353/2686] Run update.sh --- node/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/README.md b/node/README.md index 9e3696d366e3..61f2a4faaea7 100644 --- a/node/README.md +++ b/node/README.md @@ -48,17 +48,17 @@ WARNING: - [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bullseye-slim/Dockerfile) -- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.3-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/alpine3.21/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.3-alpine`, `20.19.3-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/alpine3.22/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.4-alpine`, `20.19.4-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.22/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.3`, `20.19.3-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.4`, `20.19.4-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.3-bookworm-slim`, `20.19.3-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.4-bookworm-slim`, `20.19.4-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.3-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.4-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.3-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.4-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bullseye-slim/Dockerfile) # Quick reference (cont.) From 04e6231fd832ee35bd18ac78b9972404649a5ceb Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Wed, 16 Jul 2025 16:54:06 +0200 Subject: [PATCH 2354/2686] docs: close Oracular --- ubuntu/content.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index 8a9ac98b4327..abaea66dbc6c 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -38,6 +38,5 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) -- [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) - [Plucky](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/plucky/ubuntu-oci) - [Questing](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/questing/ubuntu-oci) From 4bb5f00acc9ef7aee30002cda437dae26f32ec5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Jul 2025 10:10:10 -0700 Subject: [PATCH 2355/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index f8ac03cac5c8..8c47ce53a2ed 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a03519ff983042313f97695d63c9b724faf5faa8/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7-slim-fips/Dockerfile) # Quick reference (cont.) From fa8c66ee9e2b497c2cc3b16827bf45da92149e44 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Jul 2025 11:10:24 -0700 Subject: [PATCH 2356/2686] Run update.sh --- node/README.md | 28 ++++++++++++++-------------- oraclelinux/README.md | 22 +++++++++++----------- ubuntu/README.md | 1 - 3 files changed, 25 insertions(+), 26 deletions(-) diff --git a/node/README.md b/node/README.md index 61f2a4faaea7..55e8fb58779c 100644 --- a/node/README.md +++ b/node/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.4-alpine3.21`, `24.4.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.4-alpine3.21`, `24.4.1-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.4-alpine`, `24.4-alpine3.22`, `24.4.0-alpine`, `24.4.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.4-alpine`, `24.4-alpine3.22`, `24.4.1-alpine`, `24.4.1-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.4`, `24.4-bookworm`, `24.4.0`, `24.4.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.4`, `24.4-bookworm`, `24.4.1`, `24.4.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.4-bookworm-slim`, `24.4-slim`, `24.4.0-bookworm-slim`, `24.4.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.4-bookworm-slim`, `24.4-slim`, `24.4.1-bookworm-slim`, `24.4.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.4-bullseye`, `24.4.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.4-bullseye`, `24.4.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.4-bullseye-slim`, `24.4.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/72fb86458a432da1cc1dd93966a62f2eeb954325/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.4-bullseye-slim`, `24.4.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/24/bullseye-slim/Dockerfile) -- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.1-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.0-alpine`, `22.17.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.1-alpine`, `22.17.1-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.0`, `22.17.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.1`, `22.17.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.0-bookworm-slim`, `22.17.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.1-bookworm-slim`, `22.17.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.17-bullseye`, `22.17.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.17-bullseye`, `22.17.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/d78e8df65f94f391ba1adf67f7ef1e2596ac92f1/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/22/bullseye-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) @@ -54,11 +54,11 @@ WARNING: - [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.4`, `20.19.4-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.4-bookworm-slim`, `20.19.4-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.4-bookworm-slim`, `20.19.4-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/20/bookworm-slim/Dockerfile) - [`20-bullseye`, `20.19-bullseye`, `20.19.4-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.4-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.4-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/20/bullseye-slim/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 8c47ce53a2ed..db835ffda91e 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/bd0c560512c432254deef4f91c4eb4a9928b2801/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 015585be7bf3..213ec8c0391b 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -91,7 +91,6 @@ The tarballs published by Canonical, referenced by `dist-*` tags in https://git. - [Jammy](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/jammy/ubuntu-oci) - [Noble](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/noble/ubuntu-oci) -- [Oracular](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/oracular/ubuntu-oci) - [Plucky](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/plucky/ubuntu-oci) - [Questing](https://launchpad.net/~cloud-images-release-managers/+livefs/ubuntu/questing/ubuntu-oci) From 6a289d2d972a147a1f5696042bbc1937324f7f25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 16 Jul 2025 14:10:30 -0700 Subject: [PATCH 2357/2686] Run update.sh --- amazoncorretto/README.md | 84 ++++++++++++++++++++-------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 9e9a7b7392f5..fbf3537e5eca 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u452`, `8u452-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u452-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u452-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u452-al2023-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u452-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u452-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u452-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u452-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u452-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u452-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u452-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u452-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u452-alpine3.21-jre`, `8-alpine-jre`, `8u452-alpine-jre`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.21/Dockerfile) -- [`11`, `11.0.27`, `11.0.27-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.27-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.27-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.27-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.27-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.27-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.27-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2/Dockerfile) -- [`11-alpine3.19`, `11.0.27-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.27-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.27-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.27-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.21/Dockerfile) -- [`17`, `17.0.15`, `17.0.15-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.15-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.15-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.15-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.15-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.15-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.15-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.15-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2/Dockerfile) -- [`17-alpine3.19`, `17.0.15-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.15-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.15-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.15-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.21/Dockerfile) -- [`21`, `21.0.7`, `21.0.7-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.7-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.7-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.7-al2023-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.7-al2023-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/headful/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.7-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.7-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.7-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.7-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.21/Dockerfile) -- [`24-al2023`, `24.0.1-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/al2023/Dockerfile) +- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/al2023/Dockerfile) -- [`24-al2023-headless`, `24.0.1-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/headless/al2023/Dockerfile) +- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/headless/al2023/Dockerfile) -- [`24-al2023-headful`, `24.0.1-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/headful/al2023/Dockerfile) +- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/headful/al2023/Dockerfile) -- [`24-alpine3.19`, `24.0.1-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.19/Dockerfile) +- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.19/Dockerfile) -- [`24-alpine3.20`, `24.0.1-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.20/Dockerfile) +- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.20/Dockerfile) -- [`24-alpine3.21`, `24.0.1-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.1-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/90f5eeb1cfe4c83eb0bc36e4c79b62700b5a45a9/24/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.21/Dockerfile) # Quick reference (cont.) From 0395de009d99f8499b81cbbfc28bf8791583c38e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Jul 2025 11:10:21 -0700 Subject: [PATCH 2358/2686] Run update.sh --- open-liberty/README.md | 54 ++++++++++++++++++++++--------------- websphere-liberty/README.md | 48 ++++++++++++++++++++------------- 2 files changed, 63 insertions(+), 39 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index efd5af7fda78..8caa58b119bc 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,47 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/8ab01f34341661854ed9c0db48f272fd2c053883/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 9a6b99cf5691..3c9dbe5ced01 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/923e41779be731923cac0f6bb2d3c2f737eedd17/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 1dad689f0a055e4b5fbe42930691178030ae6561 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Jul 2025 12:10:03 -0700 Subject: [PATCH 2359/2686] Run update.sh --- clickhouse/README.md | 8 ++--- crate/README.md | 2 +- dart/README.md | 4 +-- maven/README.md | 84 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 ++++++------ 5 files changed, 60 insertions(+), 60 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 7c06d7f0a94e..3c0de7bd417a 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.3`, `25.6.3-jammy`, `25.6.3.116`, `25.6.3.116-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.6.3.116/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.4`, `25.6.4-jammy`, `25.6.4.12`, `25.6.4.12-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.6.4.12/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.6`, `25.5.6-jammy`, `25.5.6.14`, `25.5.6.14-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.5.6.14/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.8`, `25.5.8-jammy`, `25.5.8.13`, `25.5.8.13-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.5.8.13/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.10`, `25.4.10-jammy`, `25.4.10.45`, `25.4.10.45-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.4.10.45/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.12`, `25.4.12-jammy`, `25.4.12.9`, `25.4.12.9-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.4.12.9/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.5`, `25.3.5-jammy`, `25.3.5.42`, `25.3.5.42-jammy`](https://github.com/ClickHouse/docker-library/blob/ae751c55a33341cc1c850baa2fb5852e4613548c/server/25.3.5.42/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index d44168961b70..b6051f1c3c20 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.10`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/906a383f2f8d19cdac64239515d8bf0c5e367827/Dockerfile) +- [`5.10.11`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/274bcc033592b7503602cc7850de662313a3b858/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 0f502e830c78..5f2cd32afe57 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.1-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.1`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/f9851523b6353ff4d4f4b0d583213aee8fa2203a/stable/bookworm/Dockerfile) +- [`3.8.2-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.2`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b3e6c15a66ef81c416efa30c2316a731cdc694a7/stable/bookworm/Dockerfile) -- [`3.9.0-196.1.beta-sdk`, `beta-sdk`, `3.9.0-196.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/f9851523b6353ff4d4f4b0d583213aee8fa2203a/beta/bookworm/Dockerfile) +- [`3.9.0-333.3.beta-sdk`, `beta-sdk`, `3.9.0-333.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b3e6c15a66ef81c416efa30c2316a731cdc694a7/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index a07afc3b06ac..e8fd2d92c807 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,89 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.10-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11/Dockerfile) +- [`3.9.11-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11/Dockerfile) -- [`3.9.10-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.10-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-11-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11-noble/Dockerfile) -- [`3.9.10-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17/Dockerfile) +- [`3.9.11-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17/Dockerfile) -- [`3.9.10-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.10-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-17-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17-noble/Dockerfile) -- [`3.9.10-eclipse-temurin-21`, `3.9.10`, `3.9.10-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21/Dockerfile) +- [`3.9.11-eclipse-temurin-21`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21/Dockerfile) -- [`3.9.10-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.10-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-21-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-noble/Dockerfile) -- [`3.9.10-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24/Dockerfile) +- [`3.9.11-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24/Dockerfile) -- [`3.9.10-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-alpine/Dockerfile) -- [`3.9.10-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-24-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-noble/Dockerfile) -- [`3.9.10-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8/Dockerfile) +- [`3.9.11-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8/Dockerfile) -- [`3.9.10-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.10-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/eclipse-temurin-8-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-noble/Dockerfile) -- [`3.9.10-ibmjava-8`, `3.9.10-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibmjava-8/Dockerfile) +- [`3.9.11-ibmjava-8`, `3.9.11-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibmjava-8/Dockerfile) -- [`3.9.10-ibm-semeru-11-noble`, `3.9-ibm-semeru-11-noble`, `3-ibm-semeru-11-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-11-noble/Dockerfile) +- [`3.9.11-ibm-semeru-11-noble`, `3.9-ibm-semeru-11-noble`, `3-ibm-semeru-11-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibm-semeru-11-noble/Dockerfile) -- [`3.9.10-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-17-noble/Dockerfile) +- [`3.9.11-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibm-semeru-17-noble/Dockerfile) -- [`3.9.10-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/ibm-semeru-21-noble/Dockerfile) +- [`3.9.11-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibm-semeru-21-noble/Dockerfile) -- [`3.9.10-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11/Dockerfile) +- [`3.9.11-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11/Dockerfile) -- [`3.9.10-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-al2023/Dockerfile) +- [`3.9.11-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-al2023/Dockerfile) -- [`3.9.10-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-alpine/Dockerfile) +- [`3.9.11-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.10-amazoncorretto-11-debian`, `3.9.10-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-11-debian/Dockerfile) +- [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-11-debian/Dockerfile) -- [`3.9.10-amazoncorretto-17`, `3.9.10-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17/Dockerfile) +- [`3.9.11-amazoncorretto-17`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17/Dockerfile) -- [`3.9.10-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-al2023/Dockerfile) +- [`3.9.11-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-al2023/Dockerfile) -- [`3.9.10-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-alpine/Dockerfile) +- [`3.9.11-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.10-amazoncorretto-17-debian`, `3.9.10-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-17-debian/Dockerfile) +- [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-17-debian/Dockerfile) -- [`3.9.10-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21/Dockerfile) +- [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21/Dockerfile) -- [`3.9.10-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-al2023/Dockerfile) +- [`3.9.11-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-al2023/Dockerfile) -- [`3.9.10-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-alpine/Dockerfile) +- [`3.9.11-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.10-amazoncorretto-21-debian`, `3.9.10-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-21-debian/Dockerfile) +- [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-21-debian/Dockerfile) -- [`3.9.10-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-24/Dockerfile) +- [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) -- [`3.9.10-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-24-alpine/Dockerfile) +- [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) -- [`3.9.10-amazoncorretto-24-debian`, `3.9.10-amazoncorretto-24-debian-bookworm`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-bookworm`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/e5a0f8fd8b06d35e932faa6285a1998f40f28c82/amazoncorretto-24-debian/Dockerfile) +- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-bookworm`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-bookworm`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-24-debian/Dockerfile) -- [`3.9.10-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8/Dockerfile) +- [`3.9.11-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8/Dockerfile) -- [`3.9.10-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-al2023/Dockerfile) +- [`3.9.11-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8-al2023/Dockerfile) -- [`3.9.10-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-alpine/Dockerfile) +- [`3.9.11-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.10-amazoncorretto-8-debian`, `3.9.10-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/amazoncorretto-8-debian/Dockerfile) +- [`3.9.11-amazoncorretto-8-debian`, `3.9.11-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-8-debian/Dockerfile) -- [`3.9.10-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-11/Dockerfile) +- [`3.9.11-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-11/Dockerfile) -- [`3.9.10-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-17/Dockerfile) +- [`3.9.11-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-17/Dockerfile) -- [`3.9.10-sapmachine-21`, `3.9.10-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-21/Dockerfile) +- [`3.9.11-sapmachine-21`, `3.9.11-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-21/Dockerfile) -- [`3.9.10-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/d4dd728295e5aa8b24a97d27418142164af0ee40/sapmachine-24/Dockerfile) +- [`3.9.11-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-24/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index db835ffda91e..d04953bc8575 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/de5c32f47e209c97bd4c18cc2e3b7ff53185ff1e/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7-slim-fips/Dockerfile) # Quick reference (cont.) From 75937faf4bc25b7974ffcd70c6849f1af3b2d659 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Jul 2025 13:10:06 -0700 Subject: [PATCH 2360/2686] Run update.sh --- jruby/README.md | 64 ++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 8823918177c9..9cfa9930d42f 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.0`, `10.0-jre`, `10.0-jre21`, `10.0.0-jre`, `10.0.0-jre21`, `10.0.0.1`, `10.0.0.1-jre`, `10.0.0.1-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.1`, `10.0-jre`, `10.0-jre21`, `10.0.1-jre`, `10.0.1-jre21`, `10.0.1.0`, `10.0.1.0-jre`, `10.0.1.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.0-jdk`, `10.0.0-jdk21`, `10.0.0.1-jdk`, `10.0.0.1-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.1-jdk`, `10.0.1-jdk21`, `10.0.1.0-jdk`, `10.0.1.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.0-jre24`, `10.0.0.1-jre24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.1-jre24`, `10.0.1.0-jre24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.0-jdk24`, `10.0.0.1-jdk24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.1-jdk24`, `10.0.1.0-jdk24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre21/Dockerfile) -- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jre21/Dockerfile) +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jre21/Dockerfile) -- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jdk21/Dockerfile) +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jdk21/Dockerfile) -- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jre24/Dockerfile) +- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jre24/Dockerfile) -- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/10.0-dev/jdk24/Dockerfile) +- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jdk24/Dockerfile) -- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre8/Dockerfile) +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre8/Dockerfile) -- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk8/Dockerfile) +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk8/Dockerfile) -- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre11/Dockerfile) +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre11/Dockerfile) -- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk11/Dockerfile) +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk11/Dockerfile) -- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk17/Dockerfile) +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk17/Dockerfile) -- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre17/Dockerfile) +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre17/Dockerfile) -- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jdk21/Dockerfile) +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk21/Dockerfile) -- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/bf38ddf9c19ebe9ad1c531e29f8b23e234b9fe3d/9.4-dev/jre21/Dockerfile) +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre21/Dockerfile) # Quick reference (cont.) From 8cf0ef60fbc9d1d138c83021677d99c7593555df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 17 Jul 2025 15:10:49 -0700 Subject: [PATCH 2361/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- rabbitmq/README.md | 12 ++++++------ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d04953bc8575..c62befe2b1c0 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/91d2f212cbb3feab675773c9dd4b4a773bc60858/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e7460293e33f..9ccbc0ab37d0 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/2ce885bd43ce1b6c103ab672ceb1b6a0860d381f/4.1/ubuntu/Dockerfile) +- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/f48199c1547583407e595de52e818ec68db5a161/4.1/ubuntu/Dockerfile) - [`4.1.2-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.2-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/2ce885bd43ce1b6c103ab672ceb1b6a0860d381f/4.1/alpine/Dockerfile) +- [`4.1.2-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f48199c1547583407e595de52e818ec68db5a161/4.1/alpine/Dockerfile) - [`4.1.2-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/87e124e1c98f38cda70af592b5c994c36cb7847c/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/87e124e1c98f38cda70af592b5c994c36cb7847c/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/63c027c607b260ba94e9ada33e5c51bb4a70f6a3/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/797c08ce61d680137277f7e6f5d56ec7ea181137/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/63c027c607b260ba94e9ada33e5c51bb4a70f6a3/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/797c08ce61d680137277f7e6f5d56ec7ea181137/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From e3a719d11f651dbb9b2c206b10937cc487b76372 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Jul 2025 10:10:23 -0700 Subject: [PATCH 2362/2686] Run update.sh --- php/README.md | 84 +++++++++++++++++++++++++++++++++++-------- rocket.chat/README.md | 6 ++-- 2 files changed, 73 insertions(+), 17 deletions(-) diff --git a/php/README.md b/php/README.md index 9fdd112ede54..4c5c8e9193c4 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0alpha1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha1-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha1-cli`, `8.5-rc-cli`, `8.5.0alpha1`, `8.5-rc`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0alpha2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha2-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha2-cli`, `8.5-rc-cli`, `8.5.0alpha2`, `8.5-rc`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0alpha1-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0alpha2-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0alpha1-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0alpha1-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0alpha2-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0alpha1-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha1-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/cli/Dockerfile) +- [`8.5.0alpha2-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha2-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/cli/Dockerfile) -- [`8.5.0alpha1-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/apache/Dockerfile) +- [`8.5.0alpha2-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/apache/Dockerfile) -- [`8.5.0alpha1-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/fpm/Dockerfile) -- [`8.5.0alpha1-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/bullseye/zts/Dockerfile) +- [`8.5.0alpha2-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/zts/Dockerfile) -- [`8.5.0alpha1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0alpha2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0alpha1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0alpha1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0alpha2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0alpha1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0alpha2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0alpha1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0alpha1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5edcb5b2d79196de6d80bc10a0a0518199dbd46d/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0alpha2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.11RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.11RC1-bookworm`, `8.4-rc-bookworm`, `8.4.11RC1-cli`, `8.4-rc-cli`, `8.4.11RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.11RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.11RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.11RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.11RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.11RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.11RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.11RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.11RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/cli/Dockerfile) + +- [`8.4.11RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/apache/Dockerfile) + +- [`8.4.11RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/fpm/Dockerfile) + +- [`8.4.11RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/zts/Dockerfile) + +- [`8.4.11RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.11RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.11RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.11RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.11RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.11RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.11RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.11RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.11RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.11RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.11RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.11RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/zts/Dockerfile) - [`8.4.10-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.10-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.10-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.10`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.4.10-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.24RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.24RC1-bookworm`, `8.3-rc-bookworm`, `8.3.24RC1-cli`, `8.3-rc-cli`, `8.3.24RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.24RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.24RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.24RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.24RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.24RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.24RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.24RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.24RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/cli/Dockerfile) + +- [`8.3.24RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/apache/Dockerfile) + +- [`8.3.24RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/fpm/Dockerfile) + +- [`8.3.24RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/zts/Dockerfile) + +- [`8.3.24RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.24RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.24RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.24RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.24RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.24RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.24RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.24RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.24RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.24RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.24RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.24RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.23-cli-bookworm`, `8.3-cli-bookworm`, `8.3.23-bookworm`, `8.3-bookworm`, `8.3.23-cli`, `8.3-cli`, `8.3.23`, `8.3`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/cli/Dockerfile) - [`8.3.23-apache-bookworm`, `8.3-apache-bookworm`, `8.3.23-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/apache/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index ad11c2f6aef7..0025d7f4e5bd 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.8.0`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.8/Dockerfile) +- [`7.8.1`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.8/Dockerfile) -- [`7.7.4`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.7/Dockerfile) +- [`7.7.5`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.7/Dockerfile) - [`7.6.4`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.6/Dockerfile) - [`7.5.3`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.5/Dockerfile) -- [`7.4.3`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.4/Dockerfile) +- [`7.4.4`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.4/Dockerfile) - [`7.3.6`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.3/Dockerfile) From 9a85f88cf725e83b3f4cd7a03774e9c4b7e335ca Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Jul 2025 12:10:17 -0700 Subject: [PATCH 2363/2686] Run update.sh --- gradle/README.md | 60 ++++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 12c58bb2fd20..f7f4dcb25640 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,65 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) -- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-jammy/Dockerfile) -- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-alpine/Dockerfile) -- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-corretto/Dockerfile) -- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-ubi9/Dockerfile) -- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-jammy/Dockerfile) -- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-corretto/Dockerfile) -- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) -- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-corretto/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) -- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-ubi9/Dockerfile) +- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) -- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current/Dockerfile) +- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) -- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/1f6b564dc38ec8a6c1128f352b2afa5b13ac591b/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) - [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) From eca5f13d86cb38ef32ff89ffaebca3e2f330b3a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Jul 2025 13:10:41 -0700 Subject: [PATCH 2364/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++++------------------ 1 file changed, 54 insertions(+), 42 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index fbf3537e5eca..484cd21487b2 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,89 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.21/Dockerfile) -- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2-generic/Dockerfile) +- [`8-alpine3.22`, `8u462-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.22/Dockerfile) -- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2023/Dockerfile) +- [`8-alpine3.22-jre`, `8u462-alpine3.22-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.22/Dockerfile) -- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headless/al2023/Dockerfile) +- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2-generic/Dockerfile) -- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headful/al2023/Dockerfile) +- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/headless/al2/Dockerfile) +- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headless/al2023/Dockerfile) -- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/al2/Dockerfile) +- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headful/al2023/Dockerfile) -- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.19/Dockerfile) +- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headless/al2/Dockerfile) -- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.20/Dockerfile) +- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2/Dockerfile) -- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.19/Dockerfile) -- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2-generic/Dockerfile) +- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.20/Dockerfile) -- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2023/Dockerfile) +- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.21/Dockerfile) -- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headless/al2023/Dockerfile) +- [`11-alpine3.22`, `11.0.28-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.22/Dockerfile) -- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headful/al2023/Dockerfile) +- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2-generic/Dockerfile) -- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headless/al2/Dockerfile) +- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2023/Dockerfile) -- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/headful/al2/Dockerfile) +- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headless/al2023/Dockerfile) -- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/al2/Dockerfile) +- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headful/al2023/Dockerfile) -- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.19/Dockerfile) +- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headless/al2/Dockerfile) -- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.20/Dockerfile) +- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headful/al2/Dockerfile) -- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/17/jdk/alpine/3.21/Dockerfile) +- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2/Dockerfile) -- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/al2-generic/Dockerfile) +- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.19/Dockerfile) -- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/al2023/Dockerfile) +- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.20/Dockerfile) -- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/headless/al2023/Dockerfile) +- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.21/Dockerfile) -- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/headful/al2023/Dockerfile) +- [`17-alpine3.22`, `17.0.16-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.22/Dockerfile) -- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/al2-generic/Dockerfile) -- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.20/Dockerfile) +- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/al2023/Dockerfile) -- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/21/jdk/alpine/3.21/Dockerfile) +- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/headless/al2023/Dockerfile) -- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/headful/al2023/Dockerfile) -- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/headless/al2023/Dockerfile) +- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.19/Dockerfile) -- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/headful/al2023/Dockerfile) +- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.20/Dockerfile) -- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.21/Dockerfile) -- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.22`, `21.0.8-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.22/Dockerfile) -- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/9779e929a0687e116895673021cec25cb82c9733/24/jdk/alpine/3.21/Dockerfile) +- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/al2023/Dockerfile) + +- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/headless/al2023/Dockerfile) + +- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/headful/al2023/Dockerfile) + +- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.19/Dockerfile) + +- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.20/Dockerfile) + +- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.21/Dockerfile) + +- [`24-alpine3.22`, `24.0.2-alpine3.22`, `24-alpine3.22-full`, `24-alpine3.22-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.22/Dockerfile) # Quick reference (cont.) From 99e9e3e9a772d154729b6626f79a11a74737430d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 18 Jul 2025 18:10:39 -0700 Subject: [PATCH 2365/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- ghost/README.md | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index b581681fd01c..8f0bc1c0b6a2 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.7.20250623.1`](https://github.com/amazonlinux/container-images/blob/1d30653467bce95f1e74ce047c186cf527122751/Dockerfile) +- [`2023`, `latest`, `2023.8.20250715.0`](https://github.com/amazonlinux/container-images/blob/12e432807ac744a5cf1da9f5a0ac5fd0bfad2a94/Dockerfile) -- [`2`, `2.0.20250623.0`](https://github.com/amazonlinux/container-images/blob/1f08d8c203661dd3116b52c70b6a6067b22cc81a/Dockerfile) +- [`2`, `2.0.20250707.0`](https://github.com/amazonlinux/container-images/blob/ff7c7277e66ddb9671b1d2f52a9dd03e12da17ad/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 2a30412699b3..52cfe377b08e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.130.0`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/59ac78837905155750e2f0dc2206693e5d5d6f1f/5/debian/Dockerfile) +- [`6.0.0-alpha.1`](https://github.com/docker-library/ghost/blob/83ce6d8beb81974a32d4b1461406ab4a3e8be365/6-rc/debian/Dockerfile) -- [`5.130.0-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/59ac78837905155750e2f0dc2206693e5d5d6f1f/5/alpine/Dockerfile) +- [`6.0.0-alpha.1-alpine`](https://github.com/docker-library/ghost/blob/83ce6d8beb81974a32d4b1461406ab4a3e8be365/6-rc/alpine/Dockerfile) + +- [`5.130.1`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5dd89fdd04b1c93674e441732e877dbd3a90e558/5/debian/Dockerfile) + +- [`5.130.1-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5dd89fdd04b1c93674e441732e877dbd3a90e558/5/alpine/Dockerfile) # Quick reference (cont.) From c6b1859ddd750e5c76dd5fe877fb09b6b81c971a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Jul 2025 10:10:21 -0700 Subject: [PATCH 2366/2686] Run update.sh --- archlinux/README.md | 6 +++--- erlang/README.md | 12 ++++++------ photon/README.md | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index d31a397bfdbc..d8322036073d 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.base) +- [`latest`, `base`, `base-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.base) -- [`base-devel`, `base-devel-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250713.0.382768`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/811a79c1883f789130d4ac520de03c2bb9ab40fa/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 827bc7b66035..9fde00b85a9e 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.1.0`, `28.0.1`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/Dockerfile) +- [`28.0.2.0`, `28.0.2`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/Dockerfile) -- [`28.0.1.0-slim`, `28.0.1-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/slim/Dockerfile) +- [`28.0.2.0-slim`, `28.0.2-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/slim/Dockerfile) -- [`28.0.1.0-alpine`, `28.0.1-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/0beb465832363629e7b1953b1c40580644d1c95a/28/alpine/Dockerfile) +- [`28.0.2.0-alpine`, `28.0.2-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/alpine/Dockerfile) -- [`27.3.4.1`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/Dockerfile) +- [`27.3.4.2`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/Dockerfile) -- [`27.3.4.1-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/slim/Dockerfile) +- [`27.3.4.2-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/slim/Dockerfile) -- [`27.3.4.1-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/27/alpine/Dockerfile) +- [`27.3.4.2-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/alpine/Dockerfile) - [`26.2.5.13`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 8839fe686c7b..3e2b7831b31b 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250629`, `latest`](https://github.com/vmware/photon-docker-image/blob/a93cd99c12295c2994e58e266e693cbf2b039b03/docker/Dockerfile) +- [`5.0`, `5.0-20250720`, `latest`](https://github.com/vmware/photon-docker-image/blob/bc68d14030fe831ca46aa843f54d3c8c23bae9a7/docker/Dockerfile) -- [`4.0`, `4.0-20250707`](https://github.com/vmware/photon-docker-image/blob/369c4a4dd824b08209ac62ddb85137a9122633b5/docker/Dockerfile) +- [`4.0`, `4.0-20250720`](https://github.com/vmware/photon-docker-image/blob/9d6967f8df36b47415b0cf7980ea0814c5130482/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) From 00d6b66fd17f90905ffd86741202c5d2ea255f7a Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 21 Jul 2025 19:12:55 +0200 Subject: [PATCH 2367/2686] Remove obsolete parenthesis (#2603) * Remove obsolete parenthesis * Update content.md * Update ghost/README.md --- ghost/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/content.md b/ghost/content.md index 7c20e087015e..a595a019c3cc 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -2,7 +2,7 @@ Ghost is an independent platform for publishing online by web and email newsletter. It has user signups, gated access and subscription payments built-in (with Stripe) to allow you to build a direct relationship with your audience. It's fast, user-friendly, and runs on Node.js & MySQL8. -> [Ghost.org)](https://ghost.org) +> [Ghost.org](https://ghost.org) %%LOGO%% From 3563e06de8b13fca06a5970c0d0577840d3d0115 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Jul 2025 11:10:16 -0700 Subject: [PATCH 2368/2686] Run update.sh --- fedora/README.md | 6 ++-- ghost/README.md | 2 +- haxe/README.md | 93 ++++++++++++++++++++++++++++++++++++------------ 3 files changed, 74 insertions(+), 27 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 4ddf01838dc8..77f521101b83 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/61904d31c04e699d52ee3dc1e6ca3b5c3a204c8c/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ff3211c1190067ffba8e2b21c62c1cf4812a902e/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/149f8b55d849edcd37656691785c1ca886208ce7/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/025e8072df0aed7bbc0cd1bcdce3cedb845dada5/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1436e31a5c48859dd5a9a700d5172a8acdfa91a0/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/de8b7f5d466b995dab4ee8fa7561e653b4a870b4/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 52cfe377b08e..4e851aecd6a6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -55,7 +55,7 @@ WARNING: Ghost is an independent platform for publishing online by web and email newsletter. It has user signups, gated access and subscription payments built-in (with Stripe) to allow you to build a direct relationship with your audience. It's fast, user-friendly, and runs on Node.js & MySQL8. -> [Ghost.org)](https://ghost.org) +> [Ghost.org](https://ghost.org) ![logo](https://raw.githubusercontent.com/docker-library/docs/c88522f95bebcab2322f3020f2f735210286939b/ghost/logo.png) diff --git a/haxe/README.md b/haxe/README.md index ec0add28be85..c42f89a90c6c 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -28,78 +28,125 @@ WARNING: ## Simple Tags -- [`4.3.6-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bookworm/Dockerfile) +- [`4.3.7-bookworm`, `4.3-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/bookworm/Dockerfile) -- [`4.3.6-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bullseye/Dockerfile) +- [`4.3.7-bullseye`, `4.3-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/bullseye/Dockerfile) -- [`4.3.6-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) +- [`4.3.7-windowsservercore-ltsc2025`, `4.3-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.3/windowsservercore-ltsc2025/Dockerfile) -- [`4.3.6-alpine3.20`, `4.3-alpine3.20`, `4.3.6-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.20/Dockerfile) +- [`4.3.7-windowsservercore-ltsc2022`, `4.3-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/windowsservercore-ltsc2022/Dockerfile) -- [`4.3.6-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/alpine3.19/Dockerfile) +- [`4.3.7-alpine3.22`, `4.3-alpine3.22`, `4.3.7-alpine`, `4.3-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/29c1c10f60a3d5d96c92c23ed8d07f5393c962b5/4.3/alpine3.22/Dockerfile) -- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) +- [`4.3.7-alpine3.21`, `4.3-alpine3.21`](https://github.com/HaxeFoundation/docker-library-haxe/blob/29c1c10f60a3d5d96c92c23ed8d07f5393c962b5/4.3/alpine3.21/Dockerfile) -- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bullseye/Dockerfile) +- [`4.3.7-alpine3.20`, `4.3-alpine3.20`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/alpine3.20/Dockerfile) + +- [`4.3.7-alpine3.19`, `4.3-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/alpine3.19/Dockerfile) + +- [`5.0.0-preview.1-bookworm`, `5.0.0-bookworm`, `5.0-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/bookworm/Dockerfile) + +- [`5.0.0-preview.1-bullseye`, `5.0.0-bullseye`, `5.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/bullseye/Dockerfile) + +- [`5.0.0-preview.1-windowsservercore-ltsc2025`, `5.0.0-windowsservercore-ltsc2025`, `5.0-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/5.0/windowsservercore-ltsc2025/Dockerfile) + +- [`5.0.0-preview.1-windowsservercore-ltsc2022`, `5.0.0-windowsservercore-ltsc2022`, `5.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/windowsservercore-ltsc2022/Dockerfile) + +- [`5.0.0-preview.1-alpine3.22`, `5.0.0-preview.1-alpine`, `5.0.0-alpine3.22`, `5.0-alpine3.22`, `5.0.0-alpine`, `5.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/29c1c10f60a3d5d96c92c23ed8d07f5393c962b5/5.0/alpine3.22/Dockerfile) + +- [`5.0.0-preview.1-alpine3.21`, `5.0.0-alpine3.21`, `5.0-alpine3.21`](https://github.com/HaxeFoundation/docker-library-haxe/blob/29c1c10f60a3d5d96c92c23ed8d07f5393c962b5/5.0/alpine3.21/Dockerfile) + +- [`5.0.0-preview.1-alpine3.20`, `5.0.0-alpine3.20`, `5.0-alpine3.20`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/alpine3.20/Dockerfile) + +- [`5.0.0-preview.1-alpine3.19`, `5.0.0-alpine3.19`, `5.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/alpine3.19/Dockerfile) + +- [`4.2.5-bookworm`, `4.2-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.2/bookworm/Dockerfile) + +- [`4.2.5-bullseye`, `4.2-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.2/bullseye/Dockerfile) + +- [`4.2.5-windowsservercore-ltsc2025`, `4.2-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.2/windowsservercore-ltsc2025/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`, `4.2-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) -- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.20/Dockerfile) +- [`4.2.5-alpine3.20`, `4.2-alpine3.20`, `4.2.5-alpine`, `4.2-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.2/alpine3.20/Dockerfile) -- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/alpine3.19/Dockerfile) +- [`4.2.5-alpine3.19`, `4.2-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.2/alpine3.19/Dockerfile) -- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) +- [`4.1.5-bullseye`, `4.1-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.1/bullseye/Dockerfile) + +- [`4.1.5-windowsservercore-ltsc2025`, `4.1-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.1/windowsservercore-ltsc2025/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`, `4.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) -- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.20/Dockerfile) +- [`4.1.5-alpine3.20`, `4.1-alpine3.20`, `4.1.5-alpine`, `4.1-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.1/alpine3.20/Dockerfile) + +- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.1/alpine3.19/Dockerfile) -- [`4.1.5-alpine3.19`, `4.1-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.1/alpine3.19/Dockerfile) +- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.0/bullseye/Dockerfile) -- [`4.0.5-bullseye`, `4.0-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) +- [`4.0.5-windowsservercore-ltsc2025`, `4.0-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.0/windowsservercore-ltsc2025/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`, `4.0-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) -- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.20/Dockerfile) +- [`4.0.5-alpine3.20`, `4.0-alpine3.20`, `4.0.5-alpine`, `4.0-alpine`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.0/alpine3.20/Dockerfile) -- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.0/alpine3.19/Dockerfile) +- [`4.0.5-alpine3.19`, `4.0-alpine3.19`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.0/alpine3.19/Dockerfile) ## Shared Tags -- `4.3.6`, `4.3`, `latest`: +- `4.3.7`, `4.3`, `latest`: + + - [`4.3.7-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/bookworm/Dockerfile) + - [`4.3.7-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.3/windowsservercore-ltsc2025/Dockerfile) + - [`4.3.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/windowsservercore-ltsc2022/Dockerfile) + +- `4.3.7-windowsservercore`, `4.3-windowsservercore`: + + - [`4.3.7-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.3/windowsservercore-ltsc2025/Dockerfile) + - [`4.3.7-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.3/windowsservercore-ltsc2022/Dockerfile) + +- `5.0.0-preview.1`, `5.0.0`, `5.0`: - - [`4.3.6-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.3/bookworm/Dockerfile) - - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.0-preview.1-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/bookworm/Dockerfile) + - [`5.0.0-preview.1-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/5.0/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.0-preview.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/windowsservercore-ltsc2022/Dockerfile) -- `4.3.6-windowsservercore`, `4.3-windowsservercore`: +- `5.0.0-preview.1-windowsservercore`, `5.0.0-windowsservercore`, `5.0-windowsservercore`: - - [`4.3.6-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/03cdd3f2df8800aff8f28313181564ed9443dedd/4.3/windowsservercore-ltsc2022/Dockerfile) + - [`5.0.0-preview.1-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/5.0/windowsservercore-ltsc2025/Dockerfile) + - [`5.0.0-preview.1-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/5.0/windowsservercore-ltsc2022/Dockerfile) - `4.2.5`, `4.2`: - - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/483c3e2b958d83239d03f4469ea9e745c0852326/4.2/bookworm/Dockerfile) + - [`4.2.5-bookworm`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.2/bookworm/Dockerfile) + - [`4.2.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.2/windowsservercore-ltsc2025/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - `4.2.5-windowsservercore`, `4.2-windowsservercore`: + - [`4.2.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.2/windowsservercore-ltsc2025/Dockerfile) - [`4.2.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.2/windowsservercore-ltsc2022/Dockerfile) - `4.1.5`, `4.1`: - - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.1/bullseye/Dockerfile) + - [`4.1.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.1/bullseye/Dockerfile) + - [`4.1.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.1/windowsservercore-ltsc2025/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - `4.1.5-windowsservercore`, `4.1-windowsservercore`: + - [`4.1.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.1/windowsservercore-ltsc2025/Dockerfile) - [`4.1.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.1/windowsservercore-ltsc2022/Dockerfile) - `4.0.5`, `4.0`: - - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/5b15afa744e6374bd547252dbc702ebe9aab4ddb/4.0/bullseye/Dockerfile) + - [`4.0.5-bullseye`](https://github.com/HaxeFoundation/docker-library-haxe/blob/2636eee6b67d0c99730e4ab1d0d752d66809e3fa/4.0/bullseye/Dockerfile) + - [`4.0.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.0/windowsservercore-ltsc2025/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) - `4.0.5-windowsservercore`, `4.0-windowsservercore`: + - [`4.0.5-windowsservercore-ltsc2025`](https://github.com/HaxeFoundation/docker-library-haxe/blob/4e5b49d4004e4996d1d405de45967da6d36bdd94/4.0/windowsservercore-ltsc2025/Dockerfile) - [`4.0.5-windowsservercore-ltsc2022`](https://github.com/HaxeFoundation/docker-library-haxe/blob/c0367972017a7b87845bf33477e29b1fe64ccc4a/4.0/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) From f9de50b8b24e6580d0625f55ab38015ee639f3e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Jul 2025 14:10:16 -0700 Subject: [PATCH 2369/2686] Run update.sh --- ghost/README.md | 4 +- golang/README.md | 12 +++--- mongo/README.md | 98 ++++++++++++---------------------------------- openjdk/README.md | 80 ++++++++++++++++++------------------- postgres/README.md | 8 ++-- satosa/README.md | 10 ++--- 6 files changed, 83 insertions(+), 129 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 4e851aecd6a6..13bb3cee2028 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -28,9 +28,9 @@ WARNING: - [`6.0.0-alpha.1-alpine`](https://github.com/docker-library/ghost/blob/83ce6d8beb81974a32d4b1461406ab4a3e8be365/6-rc/alpine/Dockerfile) -- [`5.130.1`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/5dd89fdd04b1c93674e441732e877dbd3a90e558/5/debian/Dockerfile) +- [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/debian/Dockerfile) -- [`5.130.1-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5dd89fdd04b1c93674e441732e877dbd3a90e558/5/alpine/Dockerfile) +- [`5.130.2-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 2f1726e283f3..07908a652ce8 100644 --- a/golang/README.md +++ b/golang/README.md @@ -76,13 +76,13 @@ WARNING: - [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250711-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bookworm/Dockerfile) +- [`tip-20250720-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bookworm/Dockerfile) -- [`tip-20250711-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bullseye/Dockerfile) +- [`tip-20250720-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bullseye/Dockerfile) -- [`tip-20250711-alpine3.22`, `tip-alpine3.22`, `tip-20250711-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/alpine3.22/Dockerfile) +- [`tip-20250720-alpine3.22`, `tip-alpine3.22`, `tip-20250720-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/alpine3.22/Dockerfile) -- [`tip-20250711-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/alpine3.21/Dockerfile) +- [`tip-20250720-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -134,9 +134,9 @@ WARNING: - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250711`, `tip`: +- `tip-20250720`, `tip`: - - [`tip-20250711-bookworm`](https://github.com/docker-library/golang/blob/e01d99b8b8204f0e169b5ffabd1f969966364756/tip/bookworm/Dockerfile) + - [`tip-20250720-bookworm`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 2a1a4fa37fea..e2618202a466 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -44,37 +44,21 @@ WARNING: - [`8.0.11-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.22-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/Dockerfile) +- [`7.0.22-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) -- [`7.0.22-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.22-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.22-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.22-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.22-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.22-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.21-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) +- [`6.0.25-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) -- [`7.0.21-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.25-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.21-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.25-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.21-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.25-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/Dockerfile) - -- [`6.0.25-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.25-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.25-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.24-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) - -- [`6.0.24-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.24-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.24-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.25-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags @@ -108,65 +92,35 @@ WARNING: - [`8.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- `7.0.22-rc0`, `7.0-rc`: - - - [`7.0.22-rc0-jammy`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/Dockerfile) - - [`7.0.22-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.22-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.22-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.22-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.22-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.22-rc0-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.22-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/3e2684645051d03c5c3ac191db5de1206cdf79fe/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `7.0.21`, `7.0`, `7`: - - - [`7.0.21-jammy`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/Dockerfile) - - [`7.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.21-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - - [`7.0.21-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.21-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.21-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - - [`7.0.21-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7bd702215414e981801b521109a05b859506167/7.0/windows/nanoserver-ltsc2022/Dockerfile) - -- `6.0.25-rc0`, `6.0-rc`: +- `7.0.22`, `7.0`, `7`: - - [`6.0.25-rc0-jammy`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/Dockerfile) - - [`6.0.25-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.25-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.22-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) + - [`7.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.25-rc0-windowsservercore`, `6.0-rc-windowsservercore`: +- `7.0.22-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`6.0.25-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.25-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.25-rc0-nanoserver`, `6.0-rc-nanoserver`: +- `7.0.22-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`6.0.25-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/38cc7d8fd8b278a66d9f85a0123c8ce62e6b1ef6/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- `6.0.24`, `6.0`, `6`: +- `6.0.25`, `6.0`, `6`: - - [`6.0.24-jammy`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/Dockerfile) - - [`6.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.25-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) + - [`6.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.24-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.25-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.24-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.25-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/562f49de7c6f7fc87bce26a51ab4806806c6de79/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index ef304d29ae67..c5952dab46ee 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-6-jdk-oraclelinux9`, `26-ea-6-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-6-jdk-oracle`, `26-ea-6-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-7-jdk-oraclelinux9`, `26-ea-7-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-7-jdk-oracle`, `26-ea-7-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-6-jdk-oraclelinux8`, `26-ea-6-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-7-jdk-oraclelinux8`, `26-ea-7-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-6-jdk-bookworm`, `26-ea-6-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/bookworm/Dockerfile) +- [`26-ea-7-jdk-bookworm`, `26-ea-7-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/bookworm/Dockerfile) -- [`26-ea-6-jdk-slim-bookworm`, `26-ea-6-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-6-jdk-slim`, `26-ea-6-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-7-jdk-slim-bookworm`, `26-ea-7-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-7-jdk-slim`, `26-ea-7-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-6-jdk-bullseye`, `26-ea-6-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/bullseye/Dockerfile) +- [`26-ea-7-jdk-bullseye`, `26-ea-7-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/bullseye/Dockerfile) -- [`26-ea-6-jdk-slim-bullseye`, `26-ea-6-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-7-jdk-slim-bullseye`, `26-ea-7-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-6-jdk-windowsservercore-ltsc2025`, `26-ea-6-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-7-jdk-windowsservercore-ltsc2025`, `26-ea-7-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-6-jdk-windowsservercore-ltsc2022`, `26-ea-6-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-7-jdk-windowsservercore-ltsc2022`, `26-ea-7-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-6-jdk-nanoserver-ltsc2025`, `26-ea-6-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-7-jdk-nanoserver-ltsc2025`, `26-ea-7-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-6-jdk-nanoserver-ltsc2022`, `26-ea-6-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-7-jdk-nanoserver-ltsc2022`, `26-ea-7-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-31-jdk-oraclelinux9`, `25-ea-31-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-31-jdk-oracle`, `25-ea-31-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-32-jdk-oraclelinux9`, `25-ea-32-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-32-jdk-oracle`, `25-ea-32-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-31-jdk-oraclelinux8`, `25-ea-31-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-32-jdk-oraclelinux8`, `25-ea-32-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-31-jdk-bookworm`, `25-ea-31-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/bookworm/Dockerfile) +- [`25-ea-32-jdk-bookworm`, `25-ea-32-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/bookworm/Dockerfile) -- [`25-ea-31-jdk-slim-bookworm`, `25-ea-31-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-31-jdk-slim`, `25-ea-31-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-32-jdk-slim-bookworm`, `25-ea-32-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-32-jdk-slim`, `25-ea-32-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-31-jdk-bullseye`, `25-ea-31-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/bullseye/Dockerfile) +- [`25-ea-32-jdk-bullseye`, `25-ea-32-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/bullseye/Dockerfile) -- [`25-ea-31-jdk-slim-bullseye`, `25-ea-31-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-32-jdk-slim-bullseye`, `25-ea-32-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-31-jdk-windowsservercore-ltsc2025`, `25-ea-31-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-32-jdk-windowsservercore-ltsc2025`, `25-ea-32-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-31-jdk-windowsservercore-ltsc2022`, `25-ea-31-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-32-jdk-windowsservercore-ltsc2022`, `25-ea-32-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-31-jdk-nanoserver-ltsc2025`, `25-ea-31-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-32-jdk-nanoserver-ltsc2025`, `25-ea-32-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-31-jdk-nanoserver-ltsc2022`, `25-ea-31-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-32-jdk-nanoserver-ltsc2022`, `25-ea-32-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-6-jdk`, `26-ea-6`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-7-jdk`, `26-ea-7`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-6-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-6-jdk-windowsservercore`, `26-ea-6-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-7-jdk-windowsservercore`, `26-ea-7-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-6-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-6-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-6-jdk-nanoserver`, `26-ea-6-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-7-jdk-nanoserver`, `26-ea-7-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-6-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-6-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d6ae4265a099cd4eeec71c9a17deb591b886959f/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-7-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-7-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-31-jdk`, `25-ea-31`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-32-jdk`, `25-ea-32`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-31-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-32-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-31-jdk-windowsservercore`, `25-ea-31-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-32-jdk-windowsservercore`, `25-ea-32-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-31-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-31-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-31-jdk-nanoserver`, `25-ea-31-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-32-jdk-nanoserver`, `25-ea-32-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-31-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-31-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/6ad75a5acbd080d99b32796708fa698b57745ed6/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-32-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-32-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index b32ca558a02c..d888f646ed3b 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18beta1`, `18beta1-bookworm`](https://github.com/docker-library/postgres/blob/46e8474a6e8ac8460416ac62afcbdf59cfeb6366/18/bookworm/Dockerfile) +- [`18beta2`, `18beta2-bookworm`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bookworm/Dockerfile) -- [`18beta1-bullseye`](https://github.com/docker-library/postgres/blob/46e8474a6e8ac8460416ac62afcbdf59cfeb6366/18/bullseye/Dockerfile) +- [`18beta2-bullseye`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bullseye/Dockerfile) -- [`18beta1-alpine3.22`, `18beta1-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/alpine3.22/Dockerfile) +- [`18beta2-alpine3.22`, `18beta2-alpine`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.22/Dockerfile) -- [`18beta1-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/18/alpine3.21/Dockerfile) +- [`18beta2-alpine3.21`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.21/Dockerfile) - [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bookworm/Dockerfile) diff --git a/satosa/README.md b/satosa/README.md index b83ac6f68d7d..7ce61c3ae111 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -32,15 +32,15 @@ This image is deprecated due to maintainer inactivity (last updated Dec 2023; [d ## Simple Tags -- [`8.4.0-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) +- [`8.5.1-bookworm`, `8.5-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/bookworm/Dockerfile) -- [`8.4.0-alpine3.19`, `8.4-alpine3.19`, `8-alpine3.19`, `alpine3.19`, `8.4.0-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/74a847396f1190ec26679fc3bf09ffcc42d2e999/8.4/alpine3.19/Dockerfile) +- [`8.5.1-alpine3.22`, `8.5-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.5.1-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/alpine3.22/Dockerfile) ## Shared Tags -- `8.4.0`, `8.4`, `8`, `latest`: +- `8.5.1`, `8.5`, `8`, `latest`: - - [`8.4.0-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/69038a84d541717d66420f3ad8ec7c9da22c91b4/8.4/bookworm/Dockerfile) + - [`8.5.1-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/bookworm/Dockerfile) # Quick reference (cont.) @@ -48,7 +48,7 @@ This image is deprecated due to maintainer inactivity (last updated Dec 2023; [d [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm32v7`](https://hub.docker.com/r/arm32v7/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`i386`](https://hub.docker.com/r/i386/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/) + [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`riscv64`](https://hub.docker.com/r/riscv64/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) - **Published image artifact details**: [repo-info repo's `repos/satosa/` directory](https://github.com/docker-library/repo-info/blob/master/repos/satosa) ([history](https://github.com/docker-library/repo-info/commits/master/repos/satosa)) From 7fbfe9927f11f6bba0b641bfe3b7e16548389931 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Sat, 19 Jul 2025 07:44:10 -0700 Subject: [PATCH 2370/2686] Add Clear Linux OS deprecation notice This text is copied from the official announcement at https://community.clearlinux.org/t/all-good-things-come-to-an-end-shutting-down-clear-linux-os/10716 (I only added the date of the announcement to clarify when "immediately" means since the image description is a more static context than the forum post). --- clearlinux/README-short.txt | 2 +- clearlinux/deprecated.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 clearlinux/deprecated.md diff --git a/clearlinux/README-short.txt b/clearlinux/README-short.txt index 763108325200..5e3f43002615 100644 --- a/clearlinux/README-short.txt +++ b/clearlinux/README-short.txt @@ -1 +1 @@ -Official docker build of Clear Linux OS for Intel Architecture +DEPRECATED; Official docker build of Clear Linux OS for Intel Architecture diff --git a/clearlinux/deprecated.md b/clearlinux/deprecated.md new file mode 100644 index 000000000000..ffc509c4ebec --- /dev/null +++ b/clearlinux/deprecated.md @@ -0,0 +1,3 @@ +https://community.clearlinux.org/t/all-good-things-come-to-an-end-shutting-down-clear-linux-os/10716 + +> Effective immediately [2025-07-18], Intel will no longer provide security patches, updates, or maintenance for Clear Linux OS, and the Clear Linux OS GitHub repository will be archived in read-only mode. So, if you’re currently using Clear Linux OS, we strongly recommend planning your migration to another actively maintained Linux distribution as soon as possible to ensure ongoing security and stability. From 498132ac0903756eff4d951cf5db05014584b9e2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 21 Jul 2025 17:10:22 -0700 Subject: [PATCH 2371/2686] Run update.sh --- clearlinux/README.md | 6 ++++++ debian/README.md | 48 ++++++++++++++++++++++---------------------- docker/README.md | 10 ++++----- ghost/README.md | 4 ++-- satosa/README.md | 22 +++++++------------- 5 files changed, 44 insertions(+), 46 deletions(-) diff --git a/clearlinux/README.md b/clearlinux/README.md index 44a17960be65..fdd5b863d195 100644 --- a/clearlinux/README.md +++ b/clearlinux/README.md @@ -14,6 +14,12 @@ WARNING: --> +# **DEPRECATION NOTICE** + +https://community.clearlinux.org/t/all-good-things-come-to-an-end-shutting-down-clear-linux-os/10716 + +> Effective immediately [2025-07-18], Intel will no longer provide security patches, updates, or maintenance for Clear Linux OS, and the Clear Linux OS GitHub repository will be archived in read-only mode. So, if you’re currently using Clear Linux OS, we strongly recommend planning your migration to another actively maintained Linux distribution as soon as possible to ensure ongoing security and stability. + # Quick reference - **Maintained by**: diff --git a/debian/README.md b/debian/README.md index 0800a76416e5..b743b618d9e7 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250630`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250721`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250630-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250721-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250630`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250721`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/backports/Dockerfile) +- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/backports/Dockerfile) -- [`bullseye-slim`, `bullseye-20250630-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250721-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/experimental/Dockerfile) +- [`experimental`, `experimental-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/experimental/Dockerfile) -- [`oldstable`, `oldstable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/rc-buggy/Dockerfile) -- [`sid`, `sid-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/sid/oci/index.json) +- [`sid`, `sid-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/sid/oci/index.json) -- [`sid-slim`, `sid-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/sid/slim/oci/index.json) -- [`stable`, `stable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/oci/index.json) +- [`stable`, `stable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/slim/oci/index.json) -- [`testing`, `testing-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/oci/index.json) +- [`testing`, `testing-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/oci/index.json) +- [`trixie`, `trixie-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250630`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/unstable/oci/index.json) +- [`unstable`, `unstable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250630-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/832a6bc019b418928e987d454b5387f6907b64f2/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 579cd3d44351..2d39389cdd3a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/cli/Dockerfile) +- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/cli/Dockerfile) - [`28.3.2-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.2-dind-alpine3.22`, `28.3.2`, `28.3`, `28`, `latest`, `28.3.2-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind/Dockerfile) - [`28.3.2-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind-rootless/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.2-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 13bb3cee2028..c6b375f44400 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-alpha.1`](https://github.com/docker-library/ghost/blob/83ce6d8beb81974a32d4b1461406ab4a3e8be365/6-rc/debian/Dockerfile) +- [`6.0.0-alpha.2`](https://github.com/docker-library/ghost/blob/e7b1033377c47e638d3875dc63468e814a655d08/6-rc/debian/Dockerfile) -- [`6.0.0-alpha.1-alpine`](https://github.com/docker-library/ghost/blob/83ce6d8beb81974a32d4b1461406ab4a3e8be365/6-rc/alpine/Dockerfile) +- [`6.0.0-alpha.2-alpine`](https://github.com/docker-library/ghost/blob/e7b1033377c47e638d3875dc63468e814a655d08/6-rc/alpine/Dockerfile) - [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/debian/Dockerfile) diff --git a/satosa/README.md b/satosa/README.md index 7ce61c3ae111..b846457a0aa0 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -14,10 +14,6 @@ WARNING: --> -# **DEPRECATION NOTICE** - -This image is deprecated due to maintainer inactivity (last updated Dec 2023; [docker-library/official-images#15964](https://github.com/docker-library/official-images/pull/15964)). - # Quick reference - **Maintained by**: @@ -67,9 +63,7 @@ SATOSA is a configurable proxy for translating between different authentication ![logo](https://raw.githubusercontent.com/docker-library/docs/8e1f8cd99d5ce31197d5452d6d04886f791ac9c7/satosa/logo.svg?sanitize=true) -# How to use this image - -## To start a SATOSA instance +## Using This Image The basic pattern for starting a `satosa` instance is: @@ -85,8 +79,6 @@ docker run --name some-satosa -p 80:8080 -d satosa The entrypoint script outputs SAML2 metadata to the container log at start time. This metadata refers to the instance's base URL, e.g., `https://example.com`. Browsers must be able to access the instance over HTTPS. -# How to extend this image - ## Configuration files The `satosa` image stores its configuration in /etc/satosa. This configuration must persist among instances, particularly the SAML2 entity ID (derived from the proxy's base URL by default) and related keying material. [Use volumes, bind mounts, or custom images](https://docs.docker.com/storage/) to maintain this configuration. @@ -111,13 +103,13 @@ docker run -it --name some-satosa satosa bash ## Environment variables -The entrypoint script uses environment variables to generate the initial configuration, which sets SATOSA up as a SAML2 proxy between the free [SAMLtest.ID](https://samltest.id/) test service provider and test identity provider. All of the environment variables are optional. +The entrypoint script uses environment variables to generate the initial configuration, which requires customization. All of the environment variables are **OPTIONAL**. -The environment variables' values can be read from [Docker secrets](https://docs.docker.com/engine/swarm/secrets/). Append `_FILE` to the variable name (e.g., `STATE_ENCRYPTION_KEY_FILE`), and set it to the pathname of the corresponding secret (e.g., `/run/secrets/state_encryption_key`). +Environment variables' values can be read from [Docker secrets](https://docs.docker.com/engine/swarm/secrets/). Append `_FILE` to the variable name (e.g., `STATE_ENCRYPTION_KEY_FILE`), and set it to the pathname of the corresponding secret (e.g., `/run/secrets/state_encryption_key`). ### `BASE_URL` -SATOSA must be hosted at the root of the website. This environment variable optionally specifies the website's base URL, which defaults to `http://example.com`. If set, the base URL *must* be a method plus a hostname without any trailing slash or path components, e.g., `https://idproxy.example.com`, not `https://idproxy.example.com/` nor `https://idproxy.example.com/satosa`. +SATOSA **MUST** be hosted at the root of the website. This environment variable specifies the website's base URL, which defaults to `http://example.com`. If set, the base URL *must* be a method plus a hostname without any trailing slash or path components, e.g., `https://idproxy.example.com`, not `https://idproxy.example.com/` nor `https://idproxy.example.com/satosa`. ### `STATE_ENCRYPTION_KEY` @@ -125,15 +117,15 @@ SATOSA uses encrypted cookies to track the progress of an authentication flow. T ### `SAML2_BACKEND_DISCO_SRV` -When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). +When part of a SAML trust federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/). ### `SAML2_BACKEND_CERT` and `SAML2_BACKEND_KEY` -SATOSA's SAML2 backend acts like a service provider (relying party), requesting authentication by and attributes from the user's identity provider. It uses public key cryptography to sign authentication requests and decrypt responses. These optional environment variables hold the backend's paired public and private keys in [the PEM format](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail). If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. +SATOSA's default SAML back-end microservice acts like a service provider (relying party), requesting authentication by and attributes from the user-selected identity provider. The microservice uses public key cryptography to sign authentication requests and decrypt responses. These environment variables provide the requisite keying material in [the PEM format](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail). If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. ### `SAML2_FRONTEND_CERT` and `SAML2_FRONTEND_KEY` -SATOSA's SAML2 frontend acts like an identity provider (credential service provider), processing authentication requests from and returning user attributes to trusted websites. It uses public key cryptography to sign authentication responses. These optional environment variables hold the frontend's paired public and private keys, also in the PEM format. If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. +SATOSA's default SAML front-end microservice acts like an identity provider (credential service provider), processing authentication requests from and returning user attributes to trusted websites. It uses public key cryptography to sign authentication responses. These environment variables provide the requisite keying material, also in the PEM format. If not specified, a new 2048-bit RSA key-pair will be generated using the hostname part of `BASE_URL`. # Image Variants From fa99aa329faf9673c7052122ed2994e45699b4cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Jul 2025 10:10:15 -0700 Subject: [PATCH 2372/2686] Run update.sh --- elasticsearch/README.md | 6 +++--- kibana/README.md | 6 +++--- logstash/README.md | 6 +++--- rocket.chat/README.md | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 6a4bf9875568..4e8e47370d3c 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,11 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) -- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/653b4dc804854bfbfab911c4f092c2855dd31171/elasticsearch/Dockerfile) +- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/elasticsearch/Dockerfile) -- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/92aedffa9f9e73e02987878d89a65316fc9c3714/elasticsearch/Dockerfile) +- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/elasticsearch/Dockerfile) -- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/1f8e64284e998ea9f7ca5a9455b3977f451069dc/elasticsearch/Dockerfile) +- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 9a5f126c7a21..9aa865ea793d 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,11 +26,11 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) -- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/c0ff2abd45ddb4d84ba1d9855b2e1c2576018eed/kibana/Dockerfile) +- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/kibana/Dockerfile) -- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/92aedffa9f9e73e02987878d89a65316fc9c3714/kibana/Dockerfile) +- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/kibana/Dockerfile) -- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/1f8e64284e998ea9f7ca5a9455b3977f451069dc/kibana/Dockerfile) +- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 3c528a6d6292..15ffc65148e8 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.17.8`](https://github.com/elastic/dockerfiles/blob/8d4edd5583d8955df18cf1c7813198e0a534d30f/logstash/Dockerfile) +- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/logstash/Dockerfile) -- [`8.18.3`](https://github.com/elastic/dockerfiles/blob/a92b21169643b523390367f61ebf78b538e1ab9a/logstash/Dockerfile) +- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/logstash/Dockerfile) -- [`9.0.3`](https://github.com/elastic/dockerfiles/blob/cf09fe592bf894ffec1686e6aaa89aa4a42a6e08/logstash/Dockerfile) +- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/logstash/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 0025d7f4e5bd..e4c5adb88452 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.8.1`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.8/Dockerfile) +- [`7.8.2`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/959b4ca3263ac00b17fd4d8d4c92f19f83b046df/7.8/Dockerfile) -- [`7.7.5`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.7/Dockerfile) +- [`7.7.6`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/959b4ca3263ac00b17fd4d8d4c92f19f83b046df/7.7/Dockerfile) - [`7.6.4`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.6/Dockerfile) From 6803478d15c5295de23b4c44c928a71fa31f1e94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 Jul 2025 11:10:55 -0700 Subject: [PATCH 2373/2686] Run update.sh --- bash/README.md | 2 +- docker/README.md | 10 +++++----- krakend/README.md | 2 +- mysql/README.md | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bash/README.md b/bash/README.md index 9de9b506ebec..949f00dd8ccf 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250711`, `devel`, `devel-20250711-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/826dcd0b8893244a0cd9a35a67463bcf2194f97b/devel/Dockerfile) +- [`devel-20250718`, `devel`, `devel-20250718-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/51dcae3851d7b406c17d000cd17adb0f8993d736/devel/Dockerfile) - [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/59788c3224d1c11f14518f6c860ce6bccaf21d54/5.3/Dockerfile) diff --git a/docker/README.md b/docker/README.md index 2d39389cdd3a..8ad825bf0bac 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/cli/Dockerfile) +- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/cli/Dockerfile) - [`28.3.2-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.2-dind-alpine3.22`, `28.3.2`, `28.3`, `28`, `latest`, `28.3.2-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind/Dockerfile) - [`28.3.2-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind-rootless/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.2-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/57bc3ac83209527653ba4abe6912df5d7c071daa/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index 9c9c057633d7..9ae7e15700a7 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.10.1`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/12b7569e8fd292713ce18bcc4eb1e4e033e1f721/2.10.1/Dockerfile) +- [`2.10.2`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/3017b6a9345534b54243c35b76f865121e8d50bf/2.10.2/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index 2844fdca069c..b4c6f4123085 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.3.0`, `9.3`, `9`, `innovation`, `latest`, `9.3.0-oraclelinux9`, `9.3-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.3.0-oracle`, `9.3-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/1b9d0c10ad8569c9419d76aacec9dbab23c48e9e/innovation/Dockerfile.oracle) +- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/cfdf0f31c85e777afa46157194ea8363dccc0260/innovation/Dockerfile.oracle) -- [`8.4.5`, `8.4`, `8`, `lts`, `8.4.5-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.5-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/8ade9b2c9a32a79fbaa44b564d09a40744f1d105/8.4/Dockerfile.oracle) +- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/516237cdb5e0991abc0c6dcbbc7a66cc6444d3a3/8.4/Dockerfile.oracle) - [`8.0.42`, `8.0`, `8.0.42-oraclelinux9`, `8.0-oraclelinux9`, `8.0.42-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.oracle) From c26a91603e66ce043cd2e3d5f4e4c7d995420c1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Jul 2025 10:10:20 -0700 Subject: [PATCH 2374/2686] Run update.sh --- rust/README.md | 6 +++--- traefik/README.md | 18 +++++++++--------- xwiki/README.md | 6 ++++++ 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/rust/README.md b/rust/README.md index b1b39f6fe38a..ebf382532636 100644 --- a/rust/README.md +++ b/rust/README.md @@ -36,11 +36,11 @@ WARNING: - [`1-slim-trixie`, `1.88-slim-trixie`, `1.88.0-slim-trixie`, `slim-trixie`](https://github.com/rust-lang/docker-rust/blob/521720d715e0c4884c7424a27208568a83484baf/stable/trixie/slim/Dockerfile) -- [`1-alpine3.20`, `1.88-alpine3.20`, `1.88.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.88-alpine3.20`, `1.88.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.88-alpine3.21`, `1.88.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.88-alpine3.21`, `1.88.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.88-alpine3.22`, `1.88.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.88-alpine`, `1.88.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.88-alpine3.22`, `1.88.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.88-alpine`, `1.88.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.22/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 7fff400b858b..e459ea3dfd1d 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.0-rc2-windowsservercore-ltsc2022`, `3.5.0-rc2-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.0-windowsservercore-ltsc2022`, `3.5.0-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.0-rc2-nanoserver-ltsc2022`, `3.5.0-rc2-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.0-nanoserver-ltsc2022`, `3.5.0-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.0-rc2`, `3.5.0-rc2`, `chabichou`](https://github.com/traefik/traefik-library-image/blob/c73fc0b54ac57e7e65351bc379e87feed19763a2/v3.5/alpine/Dockerfile) +- [`v3.5.0`, `3.5.0`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/alpine/Dockerfile) -- [`v3.4.4-windowsservercore-ltsc2022`, `3.4.4-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v3.4.5-windowsservercore-ltsc2022`, `3.4.5-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.4-nanoserver-ltsc2022`, `3.4.4-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.4.5-nanoserver-ltsc2022`, `3.4.5-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.4`, `3.4.4`, `v3.4`, `3.4`, `v3`, `3`, `chaource`, `latest`](https://github.com/traefik/traefik-library-image/blob/c1254decac92cfb9b04147f7b061ac7c23cedb13/v3.4/alpine/Dockerfile) +- [`v3.4.5`, `3.4.5`, `v3.4`, `3.4`, `chaource`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/alpine/Dockerfile) -- [`v2.11.27-windowsservercore-ltsc2022`, `2.11.27-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.28-windowsservercore-ltsc2022`, `2.11.28-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.27-nanoserver-ltsc2022`, `2.11.27-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.28-nanoserver-ltsc2022`, `2.11.28-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.27`, `2.11.27`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ff4950e3c5622dcef67e20a7a2ba9ef8301b081f/v2.11/alpine/Dockerfile) +- [`v2.11.28`, `2.11.28`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index c068078e152f..7b54c165f525 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,6 +30,12 @@ WARNING: - [`17-mariadb-tomcat`, `17.5-mariadb-tomcat`, `17.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/mariadb-tomcat/Dockerfile) +- [`17.4`, `17.4.2`, `17.4-mysql-tomcat`, `17.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mysql-tomcat/Dockerfile) + +- [`17.4-postgres-tomcat`, `17.4.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/postgres-tomcat/Dockerfile) + +- [`17.4-mariadb-tomcat`, `17.4.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mariadb-tomcat/Dockerfile) + - [`16`, `16.10`, `16.10.9`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mysql-tomcat/Dockerfile) - [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/postgres-tomcat/Dockerfile) From 4204d7f1435e42aafa983e9eb41046d624e6d151 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Jul 2025 15:10:23 -0700 Subject: [PATCH 2375/2686] Run update.sh --- bash/README.md | 2 +- httpd/README.md | 4 ++-- mysql/README.md | 4 ++-- python/README.md | 30 +++++++++++++++--------------- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/bash/README.md b/bash/README.md index 949f00dd8ccf..59a1649e4b68 100644 --- a/bash/README.md +++ b/bash/README.md @@ -26,7 +26,7 @@ WARNING: - [`devel-20250718`, `devel`, `devel-20250718-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/51dcae3851d7b406c17d000cd17adb0f8993d736/devel/Dockerfile) -- [`5.3.0`, `5.3`, `5`, `latest`, `5.3.0-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/59788c3224d1c11f14518f6c860ce6bccaf21d54/5.3/Dockerfile) +- [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) - [`5.2.37`, `5.2`, `5.2.37-alpine3.22`, `5.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/9fc164bd1a8e4bfe16c517623ce935dc821bbb08/5.2/Dockerfile) diff --git a/httpd/README.md b/httpd/README.md index c5e094f30706..0b05d657e658 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.64`, `2.4`, `2`, `latest`, `2.4.64-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/c8d6d8abc1681ef80f36de19253880f4a02c355e/2.4/Dockerfile) +- [`2.4.65`, `2.4`, `2`, `latest`, `2.4.65-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/42b1c8997488557ae90e80ff64a90830b1563d75/2.4/Dockerfile) -- [`2.4.64-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.64-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/c8d6d8abc1681ef80f36de19253880f4a02c355e/2.4/alpine/Dockerfile) +- [`2.4.65-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.65-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/42b1c8997488557ae90e80ff64a90830b1563d75/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index b4c6f4123085..ecda58bad114 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -28,9 +28,9 @@ WARNING: - [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/516237cdb5e0991abc0c6dcbbc7a66cc6444d3a3/8.4/Dockerfile.oracle) -- [`8.0.42`, `8.0`, `8.0.42-oraclelinux9`, `8.0-oraclelinux9`, `8.0.42-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.oracle) +- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/4ea634473f3ca9b1dcd476236e6d617258e2d63b/8.0/Dockerfile.oracle) -- [`8.0.42-bookworm`, `8.0-bookworm`, `8.0.42-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/94583e54d3bc02af523af720fdd58f8215287da9/8.0/Dockerfile.debian) +- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/4ea634473f3ca9b1dcd476236e6d617258e2d63b/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 54d884bf0612..02cb62c98cf9 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0b4-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bookworm/Dockerfile) +- [`3.14.0rc1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bookworm/Dockerfile) -- [`3.14.0b4-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0b4-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0rc1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0rc1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0b4-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bullseye/Dockerfile) +- [`3.14.0rc1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bullseye/Dockerfile) -- [`3.14.0b4-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0rc1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/slim-bullseye/Dockerfile) -- [`3.14.0b4-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0b4-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0rc1-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0b4-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0rc1-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0b4-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0rc1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0b4-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0rc1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.5-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) @@ -110,16 +110,16 @@ WARNING: ## Shared Tags -- `3.14.0b4`, `3.14-rc`: +- `3.14.0rc1`, `3.14-rc`: - - [`3.14.0b4-bookworm`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/bookworm/Dockerfile) - - [`3.14.0b4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc1-bookworm`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bookworm/Dockerfile) + - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0b4-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0rc1-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0b4-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0b4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/72a4f963fb30c8cf452ac53356937fa239170f55/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `3.13.5`, `3.13`, `3`, `latest`: From a1ad3eb752c2b5ff335702a4582fa668fd43f9f1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Jul 2025 16:10:17 -0700 Subject: [PATCH 2376/2686] Run update.sh --- ghost/README.md | 4 ++-- memcached/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index c6b375f44400..8e731bff18eb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-alpha.2`](https://github.com/docker-library/ghost/blob/e7b1033377c47e638d3875dc63468e814a655d08/6-rc/debian/Dockerfile) +- [`6.0.0-rc.0`](https://github.com/docker-library/ghost/blob/540828ee43ace0b3c7d994a3457b78fab003817d/6-rc/debian/Dockerfile) -- [`6.0.0-alpha.2-alpine`](https://github.com/docker-library/ghost/blob/e7b1033377c47e638d3875dc63468e814a655d08/6-rc/alpine/Dockerfile) +- [`6.0.0-rc.0-alpine`](https://github.com/docker-library/ghost/blob/540828ee43ace0b3c7d994a3457b78fab003817d/6-rc/alpine/Dockerfile) - [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/debian/Dockerfile) diff --git a/memcached/README.md b/memcached/README.md index 9097db5672e4..493840b60f5f 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/f8aa037f70e96f77b3797a2ead8fa0e5dcdec2c1/1/debian/Dockerfile) +- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/41e28506e64d0b5daabbafc8d6349eddc91c17c0/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/9d786e2bceabc841c7858127de29ad969454d9ac/1/alpine/Dockerfile) +- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/41e28506e64d0b5daabbafc8d6349eddc91c17c0/1/alpine/Dockerfile) # Quick reference (cont.) @@ -34,7 +34,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) From a371771b1b29cb7c373ec60cfd47eacb80251055 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 23 Jul 2025 17:10:19 -0700 Subject: [PATCH 2377/2686] Run update.sh --- mongo/README.md | 49 +++++++++++++------------------------------------ 1 file changed, 13 insertions(+), 36 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index e2618202a466..29df108ecd74 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.12-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/Dockerfile) +- [`8.0.12-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) -- [`8.0.12-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.12-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.12-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.12-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.12-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8.0.11-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) - -- [`8.0.11-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`8.0.11-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`8.0.11-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.12-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.22-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) @@ -62,35 +54,20 @@ WARNING: ## Shared Tags -- `8.0.12-rc0`, `8.0-rc`: - - - [`8.0.12-rc0-noble`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/Dockerfile) - - [`8.0.12-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.12-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.12-rc0-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.12-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.12-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.12-rc0-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.12-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/40fce3a3402d6e6d082f00f1138067641db544b5/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `8.0.11`, `8.0`, `8`, `latest`: +- `8.0.12`, `8.0`, `8`, `latest`: - - [`8.0.11-noble`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/Dockerfile) - - [`8.0.11-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.12-noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) + - [`8.0.12-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.11-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.12-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.11-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.11-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.12-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.11-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.12-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.11-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/5a86595e24c7e0baa61884297c01dfebfaff3521/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) - `7.0.22`, `7.0`, `7`: From b03f3af04733410f6a18c4d90ddaf125bb37aa12 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Jul 2025 10:10:17 -0700 Subject: [PATCH 2378/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 3c0de7bd417a..bb224845ecf4 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.4`, `25.6.4-jammy`, `25.6.4.12`, `25.6.4.12-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.6.4.12/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.5`, `25.6.5-jammy`, `25.6.5.41`, `25.6.5.41-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.6.5.41/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.8`, `25.5.8-jammy`, `25.5.8.13`, `25.5.8.13-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.5.8.13/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.5.9.14/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.12`, `25.4.12-jammy`, `25.4.12.9`, `25.4.12.9-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.4.12.9/Dockerfile.ubuntu) +- [`25.4`, `25.4-jammy`, `25.4.13`, `25.4.13-jammy`, `25.4.13.22`, `25.4.13.22-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.4.13.22/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/86ece85bf5a04bdb8bdf1ca73722e8ed116252f9/server/25.3.6.56/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) From ccdbe7e0dd008a2016cf1e6abe5d1929af31ce1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Jul 2025 12:10:19 -0700 Subject: [PATCH 2379/2686] Run update.sh --- docker/README.md | 10 +++++----- ruby/README.md | 24 ++++++++++++------------ solr/README.md | 8 ++++---- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docker/README.md b/docker/README.md index 8ad825bf0bac..7b97d4137711 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/cli/Dockerfile) +- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/cli/Dockerfile) - [`28.3.2-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.2-dind-alpine3.22`, `28.3.2`, `28.3`, `28`, `latest`, `28.3.2-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind/Dockerfile) - [`28.3.2-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind-rootless/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `28.3.2-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/ce365f438f60cb026022b6e3d01f91edf4fee7af/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index e736ed09a27c..1f46af3ed41d 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -48,29 +48,29 @@ WARNING: - [`3.4.5-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.21/Dockerfile) -- [`3.3.8-bookworm`, `3.3-bookworm`, `3.3.8`, `3.3`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bookworm/Dockerfile) +- [`3.3.9-bookworm`, `3.3-bookworm`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/bookworm/Dockerfile) -- [`3.3.8-slim-bookworm`, `3.3-slim-bookworm`, `3.3.8-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/slim-bookworm/Dockerfile) +- [`3.3.9-slim-bookworm`, `3.3-slim-bookworm`, `3.3.9-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/slim-bookworm/Dockerfile) -- [`3.3.8-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/bullseye/Dockerfile) +- [`3.3.9-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/bullseye/Dockerfile) -- [`3.3.8-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/slim-bullseye/Dockerfile) +- [`3.3.9-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/slim-bullseye/Dockerfile) -- [`3.3.8-alpine3.22`, `3.3-alpine3.22`, `3.3.8-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.3/alpine3.22/Dockerfile) +- [`3.3.9-alpine3.22`, `3.3-alpine3.22`, `3.3.9-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.22/Dockerfile) -- [`3.3.8-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/fd391a024df0e026b289e60e7bf1ed8db0c41e48/3.3/alpine3.21/Dockerfile) +- [`3.3.9-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.21/Dockerfile) -- [`3.2.8-bookworm`, `3.2-bookworm`, `3.2.8`, `3.2`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bookworm/Dockerfile) +- [`3.2.9-bookworm`, `3.2-bookworm`, `3.2.9`, `3.2`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/bookworm/Dockerfile) -- [`3.2.8-slim-bookworm`, `3.2-slim-bookworm`, `3.2.8-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/slim-bookworm/Dockerfile) +- [`3.2.9-slim-bookworm`, `3.2-slim-bookworm`, `3.2.9-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/slim-bookworm/Dockerfile) -- [`3.2.8-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/bullseye/Dockerfile) +- [`3.2.9-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/bullseye/Dockerfile) -- [`3.2.8-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/slim-bullseye/Dockerfile) +- [`3.2.9-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/slim-bullseye/Dockerfile) -- [`3.2.8-alpine3.22`, `3.2-alpine3.22`, `3.2.8-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.2/alpine3.22/Dockerfile) +- [`3.2.9-alpine3.22`, `3.2-alpine3.22`, `3.2.9-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/alpine3.22/Dockerfile) -- [`3.2.8-alpine3.21`, `3.2-alpine3.21`](https://github.com/docker-library/ruby/blob/00121708b79e89ee4c477dbae3035467ebe2484e/3.2/alpine3.21/Dockerfile) +- [`3.2.9-alpine3.21`, `3.2-alpine3.21`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index ab2d496e4958..a978d52e31a5 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.8.1`, `9.8`, `9`, `latest`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8/Dockerfile) +- [`9.9.0`, `9.9`, `9`, `latest`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9/Dockerfile) -- [`9.8.1-slim`, `9.8-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8-slim/Dockerfile) +- [`9.9.0-slim`, `9.9-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9-slim/Dockerfile) -- [`9.7.0`, `9.7`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7/Dockerfile) +- [`9.8.1`, `9.8`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8/Dockerfile) -- [`9.7.0-slim`, `9.7-slim`](https://github.com/apache/solr-docker/blob/cabde2a16c99aa974e1882df2c55ca17eab0bd17/9.7-slim/Dockerfile) +- [`9.8.1-slim`, `9.8-slim`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8-slim/Dockerfile) - [`8.11.4`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11/Dockerfile) From 9e22d2acb2657b69c7bad67e8531644f18f408b3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 24 Jul 2025 14:10:07 -0700 Subject: [PATCH 2380/2686] Run update.sh --- joomla/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index b72c78c1da86..d74f396d6a24 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-alpha2`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha2-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha2-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha2-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/apache/Dockerfile) +- [`6.0.0-alpha3`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha3-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha3-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha3-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/apache/Dockerfile) -- [`6.0.0-alpha2-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-alpha3-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-alpha2-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/6.0.alpha/php8.3/fpm/Dockerfile) +- [`6.0.0-alpha3-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/fpm/Dockerfile) -- [`5.4.0-alpha2-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/apache/Dockerfile) +- [`5.4.0-alpha3-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/apache/Dockerfile) -- [`5.4.0-alpha2-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-alpha3-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-alpha2-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.2/fpm/Dockerfile) +- [`5.4.0-alpha3-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/fpm/Dockerfile) -- [`5.4.0-alpha2`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha2-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha2-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha2-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/apache/Dockerfile) +- [`5.4.0-alpha3`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha3-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha3-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha3-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/apache/Dockerfile) -- [`5.4.0-alpha2-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-alpha3-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-alpha2-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/950c6dac45e3f56b4699e9cfbe4305274c430438/5.4.alpha/php8.3/fpm/Dockerfile) +- [`5.4.0-alpha3-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/fpm/Dockerfile) - [`5.3.2-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/apache/Dockerfile) From c6df1e62a627fa4be30e15388085fb6e4c9e0c13 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 25 Jul 2025 10:10:19 -0700 Subject: [PATCH 2381/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 64 +++++++++++++++++------------------ odoo/README.md | 6 ++-- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 1f53a99ed2e1..1e4f9ea99def 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,71 +28,71 @@ WARNING: ## Simple Tags -- [`open-8u452-b09-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u452-b09-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u452-b09-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u452-b09-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.27_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.27_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.27_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.27_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.15_6-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.15_6-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.15_6-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.15_6-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.7_6-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.7_6-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.7_6-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.7_6-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u452-b09-jdk`, `open-8-jdk`: +- `open-8u462-b08-jdk`, `open-8-jdk`: - - [`open-8u452-b09-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-8u452-b09-jre`, `open-8-jre`: +- `open-8u462-b08-jre`, `open-8-jre`: - - [`open-8u452-b09-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.27_6-jdk`, `open-11-jdk`: +- `open-11.0.28_6-jdk`, `open-11-jdk`: - - [`open-11.0.27_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.27_6-jre`, `open-11-jre`: +- `open-11.0.28_6-jre`, `open-11-jre`: - - [`open-11.0.27_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.15_6-jdk`, `open-17-jdk`: +- `open-17.0.16_8-jdk`, `open-17-jdk`: - - [`open-17.0.15_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.15_6-jre`, `open-17-jre`: +- `open-17.0.16_8-jre`, `open-17-jre`: - - [`open-17.0.15_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.7_6-jdk`, `open-21-jdk`: +- `open-21.0.8_9-jdk`, `open-21-jdk`: - - [`open-21.0.7_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.7_6-jre`, `open-21-jre`: +- `open-21.0.8_9-jre`, `open-21-jre`: - - [`open-21.0.7_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/faa20429d12e88ada8d6b38dbcbca8741853e8e8/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index fb5315ab6710..33264910a2a0 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250710`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/18.0/Dockerfile) +- [`18.0-20250725`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/18.0/Dockerfile) -- [`17.0-20250710`, `17.0`, `17`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/17.0/Dockerfile) +- [`17.0-20250725`, `17.0`, `17`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/17.0/Dockerfile) -- [`16.0-20250710`, `16.0`, `16`](https://github.com/odoo/docker/blob/fc0fbafb02e82e1d17bcf22d10466d6c6fb55a7b/16.0/Dockerfile) +- [`16.0-20250725`, `16.0`, `16`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/16.0/Dockerfile) # Quick reference (cont.) From 2d8e8f7c7a6ac9ff14ed55ffe33cab6c45cf6c17 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Jul 2025 10:11:32 -0700 Subject: [PATCH 2382/2686] Run update.sh --- archlinux/README.md | 6 +++--- photon/README.md | 4 ++-- satosa/README.md | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index d8322036073d..5a7bcd43dcc7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.base) +- [`latest`, `base`, `base-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.base) -- [`base-devel`, `base-devel-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250720.0.386825`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/ecd024d596772f1a52efc4ad8ff54577cbefca9e/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 3e2b7831b31b..b0233eb63f2c 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250720`, `latest`](https://github.com/vmware/photon-docker-image/blob/bc68d14030fe831ca46aa843f54d3c8c23bae9a7/docker/Dockerfile) +- [`5.0`, `5.0-20250727`, `latest`](https://github.com/vmware/photon-docker-image/blob/2a752800a81f25811605bd82f7f387a31d7bec31/docker/Dockerfile) -- [`4.0`, `4.0-20250720`](https://github.com/vmware/photon-docker-image/blob/9d6967f8df36b47415b0cf7980ea0814c5130482/docker/Dockerfile) +- [`4.0`, `4.0-20250727`](https://github.com/vmware/photon-docker-image/blob/63832f199d2f680b8efa209ea1964f640b8cc6bf/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/satosa/README.md b/satosa/README.md index b846457a0aa0..355c1500e94d 100644 --- a/satosa/README.md +++ b/satosa/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`8.5.1-bookworm`, `8.5-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/bookworm/Dockerfile) +- [`8.5.1-bookworm`, `8.5-bookworm`, `8-bookworm`, `bookworm`](https://github.com/IdentityPython/satosa-docker/blob/8420c19d43d36f132e015a981df54f30dc54980f/8.5/bookworm/Dockerfile) -- [`8.5.1-alpine3.22`, `8.5-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.5.1-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/alpine3.22/Dockerfile) +- [`8.5.1-alpine3.22`, `8.5-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.5.1-alpine`, `8.5-alpine`, `8-alpine`, `alpine`](https://github.com/IdentityPython/satosa-docker/blob/8420c19d43d36f132e015a981df54f30dc54980f/8.5/alpine3.22/Dockerfile) ## Shared Tags - `8.5.1`, `8.5`, `8`, `latest`: - - [`8.5.1-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/dd0928a83ef54c8bed05691325f026d155e58dd3/8.5/bookworm/Dockerfile) + - [`8.5.1-bookworm`](https://github.com/IdentityPython/satosa-docker/blob/8420c19d43d36f132e015a981df54f30dc54980f/8.5/bookworm/Dockerfile) # Quick reference (cont.) @@ -44,7 +44,7 @@ WARNING: [https://github.com/IdentityPython/satosa-docker/issues](https://github.com/IdentityPython/satosa-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/), [`ppc64le`](https://hub.docker.com/r/ppc64le/satosa/), [`riscv64`](https://hub.docker.com/r/riscv64/satosa/), [`s390x`](https://hub.docker.com/r/s390x/satosa/) + [`amd64`](https://hub.docker.com/r/amd64/satosa/), [`arm64v8`](https://hub.docker.com/r/arm64v8/satosa/) - **Published image artifact details**: [repo-info repo's `repos/satosa/` directory](https://github.com/docker-library/repo-info/blob/master/repos/satosa) ([history](https://github.com/docker-library/repo-info/commits/master/repos/satosa)) From 53adbe0daea81d23617b785e2a06753fb11705d2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Jul 2025 12:10:06 -0700 Subject: [PATCH 2383/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 7b54c165f525..4d04161ff356 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.5`, `17.5.0`, `17-mysql-tomcat`, `17.5-mysql-tomcat`, `17.5.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/mysql-tomcat/Dockerfile) +- [`17`, `17.6`, `17.6.0`, `17-mysql-tomcat`, `17.6-mysql-tomcat`, `17.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.5-postgres-tomcat`, `17.5.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.6-postgres-tomcat`, `17.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.5-mariadb-tomcat`, `17.5.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/33e5c797b2cfa5527452b679bce856d79f4c4e29/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.6-mariadb-tomcat`, `17.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mariadb-tomcat/Dockerfile) - [`17.4`, `17.4.2`, `17.4-mysql-tomcat`, `17.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mysql-tomcat/Dockerfile) From 323e3fd43cd577bc5adb67a08a78fc62681cacb3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Jul 2025 14:10:16 -0700 Subject: [PATCH 2384/2686] Run update.sh --- ghost/README.md | 8 ++--- golang/README.md | 12 +++---- haproxy/README.md | 4 +-- openjdk/README.md | 80 +++++++++++++++++++++---------------------- rocket.chat/README.md | 4 +-- telegraf/README.md | 12 +++---- 6 files changed, 60 insertions(+), 60 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 8e731bff18eb..7869ba553047 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-rc.0`](https://github.com/docker-library/ghost/blob/540828ee43ace0b3c7d994a3457b78fab003817d/6-rc/debian/Dockerfile) +- [`6.0.0-rc.0`](https://github.com/docker-library/ghost/blob/5200f34ed5fcff769a62b3c72f059f4c516142a4/6-rc/debian/Dockerfile) -- [`6.0.0-rc.0-alpine`](https://github.com/docker-library/ghost/blob/540828ee43ace0b3c7d994a3457b78fab003817d/6-rc/alpine/Dockerfile) +- [`6.0.0-rc.0-alpine`](https://github.com/docker-library/ghost/blob/5200f34ed5fcff769a62b3c72f059f4c516142a4/6-rc/alpine/Dockerfile) -- [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/debian/Dockerfile) +- [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/315fd829a562dc5e7c2edf6a2f9dc919a1961478/5/debian/Dockerfile) -- [`5.130.2-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/9646b20a5604936a2ee5b703cfe4f2f8a30135a7/5/alpine/Dockerfile) +- [`5.130.2-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/315fd829a562dc5e7c2edf6a2f9dc919a1961478/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 07908a652ce8..5516ed4468c6 100644 --- a/golang/README.md +++ b/golang/README.md @@ -76,13 +76,13 @@ WARNING: - [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250720-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bookworm/Dockerfile) +- [`tip-20250726-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bookworm/Dockerfile) -- [`tip-20250720-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bullseye/Dockerfile) +- [`tip-20250726-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bullseye/Dockerfile) -- [`tip-20250720-alpine3.22`, `tip-alpine3.22`, `tip-20250720-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/alpine3.22/Dockerfile) +- [`tip-20250726-alpine3.22`, `tip-alpine3.22`, `tip-20250726-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/alpine3.22/Dockerfile) -- [`tip-20250720-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/alpine3.21/Dockerfile) +- [`tip-20250726-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -134,9 +134,9 @@ WARNING: - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250720`, `tip`: +- `tip-20250726`, `tip`: - - [`tip-20250720-bookworm`](https://github.com/docker-library/golang/blob/b7a18b62b0401b20b1354e633d7905fc1a04e209/tip/bookworm/Dockerfile) + - [`tip-20250726-bookworm`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index ffac65ab3f66..c74fe8ae0a02 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev3`, `3.3-dev`, `3.3-dev3-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/bd1886e3b1856044dd77d309199afcd065df9d08/3.3/Dockerfile) +- [`3.3-dev5`, `3.3-dev`, `3.3-dev5-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5ad5441e37d329696c2022721a2575d3be5fd1d4/3.3/Dockerfile) -- [`3.3-dev3-alpine`, `3.3-dev-alpine`, `3.3-dev3-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/bd1886e3b1856044dd77d309199afcd065df9d08/3.3/alpine/Dockerfile) +- [`3.3-dev5-alpine`, `3.3-dev-alpine`, `3.3-dev5-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/5ad5441e37d329696c2022721a2575d3be5fd1d4/3.3/alpine/Dockerfile) - [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index c5952dab46ee..b0aabcc122b2 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-7-jdk-oraclelinux9`, `26-ea-7-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-7-jdk-oracle`, `26-ea-7-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-8-jdk-oraclelinux9`, `26-ea-8-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-8-jdk-oracle`, `26-ea-8-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-7-jdk-oraclelinux8`, `26-ea-7-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-8-jdk-oraclelinux8`, `26-ea-8-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-7-jdk-bookworm`, `26-ea-7-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/bookworm/Dockerfile) +- [`26-ea-8-jdk-bookworm`, `26-ea-8-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/bookworm/Dockerfile) -- [`26-ea-7-jdk-slim-bookworm`, `26-ea-7-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-7-jdk-slim`, `26-ea-7-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-8-jdk-slim-bookworm`, `26-ea-8-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-8-jdk-slim`, `26-ea-8-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-7-jdk-bullseye`, `26-ea-7-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/bullseye/Dockerfile) +- [`26-ea-8-jdk-bullseye`, `26-ea-8-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/bullseye/Dockerfile) -- [`26-ea-7-jdk-slim-bullseye`, `26-ea-7-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-8-jdk-slim-bullseye`, `26-ea-8-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-7-jdk-windowsservercore-ltsc2025`, `26-ea-7-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-8-jdk-windowsservercore-ltsc2025`, `26-ea-8-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-7-jdk-windowsservercore-ltsc2022`, `26-ea-7-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-8-jdk-windowsservercore-ltsc2022`, `26-ea-8-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-7-jdk-nanoserver-ltsc2025`, `26-ea-7-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-8-jdk-nanoserver-ltsc2025`, `26-ea-8-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-7-jdk-nanoserver-ltsc2022`, `26-ea-7-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-8-jdk-nanoserver-ltsc2022`, `26-ea-8-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-32-jdk-oraclelinux9`, `25-ea-32-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-32-jdk-oracle`, `25-ea-32-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-33-jdk-oraclelinux9`, `25-ea-33-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-33-jdk-oracle`, `25-ea-33-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-32-jdk-oraclelinux8`, `25-ea-32-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-33-jdk-oraclelinux8`, `25-ea-33-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-32-jdk-bookworm`, `25-ea-32-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/bookworm/Dockerfile) +- [`25-ea-33-jdk-bookworm`, `25-ea-33-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/bookworm/Dockerfile) -- [`25-ea-32-jdk-slim-bookworm`, `25-ea-32-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-32-jdk-slim`, `25-ea-32-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-33-jdk-slim-bookworm`, `25-ea-33-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-33-jdk-slim`, `25-ea-33-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-32-jdk-bullseye`, `25-ea-32-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/bullseye/Dockerfile) +- [`25-ea-33-jdk-bullseye`, `25-ea-33-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/bullseye/Dockerfile) -- [`25-ea-32-jdk-slim-bullseye`, `25-ea-32-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-33-jdk-slim-bullseye`, `25-ea-33-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-32-jdk-windowsservercore-ltsc2025`, `25-ea-32-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-33-jdk-windowsservercore-ltsc2025`, `25-ea-33-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-32-jdk-windowsservercore-ltsc2022`, `25-ea-32-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-33-jdk-windowsservercore-ltsc2022`, `25-ea-33-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-32-jdk-nanoserver-ltsc2025`, `25-ea-32-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-33-jdk-nanoserver-ltsc2025`, `25-ea-33-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-32-jdk-nanoserver-ltsc2022`, `25-ea-32-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-33-jdk-nanoserver-ltsc2022`, `25-ea-33-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-7-jdk`, `26-ea-7`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-8-jdk`, `26-ea-8`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-7-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-7-jdk-windowsservercore`, `26-ea-7-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-8-jdk-windowsservercore`, `26-ea-8-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-7-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-7-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-7-jdk-nanoserver`, `26-ea-7-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-8-jdk-nanoserver`, `26-ea-8-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-7-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-7-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82d170e645026220d32f1ae5a1ad99c2fc26189e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-8-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-8-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-32-jdk`, `25-ea-32`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-33-jdk`, `25-ea-33`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-32-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-32-jdk-windowsservercore`, `25-ea-32-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-33-jdk-windowsservercore`, `25-ea-33-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-32-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-32-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-32-jdk-nanoserver`, `25-ea-32-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-33-jdk-nanoserver`, `25-ea-33-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-32-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-32-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/08ca8d42f8cad03c076aad1ad3ed1557074be316/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-33-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-33-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index e4c5adb88452..ca2833a83039 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.8.2`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/959b4ca3263ac00b17fd4d8d4c92f19f83b046df/7.8/Dockerfile) +- [`7.8.3`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.8/Dockerfile) -- [`7.7.6`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/959b4ca3263ac00b17fd4d8d4c92f19f83b046df/7.7/Dockerfile) +- [`7.7.7`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.7/Dockerfile) - [`7.6.4`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.6/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 2d2edd647fd3..901b0df94d19 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/7d918846e6a2b806846159034486d77497273a48/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.35/alpine/Dockerfile) # Quick reference (cont.) From cf305a4d0c1b385f261e8502a9c65e77a40dae86 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 28 Jul 2025 17:10:16 -0700 Subject: [PATCH 2385/2686] Run update.sh --- busybox/README.md | 16 ++++++++-------- nextcloud/README.md | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index b3b6944d2359..85ed1487f067 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/f2a6730c23406abf8e00bbada490547224b4a9b6/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 3415d3e9a21a..1da4bddf9716 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/apache/Dockerfile) +- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/apache/Dockerfile) -- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/fpm/Dockerfile) +- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/fpm/Dockerfile) -- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/30/fpm-alpine/Dockerfile) +- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/fpm-alpine/Dockerfile) -- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/apache/Dockerfile) +- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/apache/Dockerfile) -- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/fpm/Dockerfile) +- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/fpm/Dockerfile) -- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/0637214ee821fcf6102d68233d3eb3b3b4461d0e/31/fpm-alpine/Dockerfile) +- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From 45b4d551ebf8e204d00ad5ccf3d3bc3322815849 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Jul 2025 10:10:19 -0700 Subject: [PATCH 2386/2686] Run update.sh --- aerospike/README.md | 4 ++-- docker/README.md | 16 ++++++++-------- memcached/README.md | 4 ++-- sonarqube/README.md | 20 ++++++++++---------- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 62767a7002d6..69ac1796f1f1 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.8`, `ee-8.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/210708576d3aa769dec734576a5b2788b013aea1/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.0.0.9`, `ee-8.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/89436530fb2cfa4613ada9a2e6d63733faa51195/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.8`, `ce-8.0.0.8_1`](https://github.com/aerospike/aerospike-server.docker/blob/210708576d3aa769dec734576a5b2788b013aea1/community/ubuntu24.04/Dockerfile) +- [`ce-8.0.0.9`, `ce-8.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/89436530fb2cfa4613ada9a2e6d63733faa51195/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 7b97d4137711..9a1e159ba79a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.3.2-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/cli/Dockerfile) +- [`28.3.3-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/cli/Dockerfile) -- [`28.3.2-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.2-dind-alpine3.22`, `28.3.2`, `28.3`, `28`, `latest`, `28.3.2-alpine3.22`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind/Dockerfile) +- [`28.3.3-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.3-dind-alpine3.22`, `28.3.3`, `28.3`, `28`, `latest`, `28.3.3-alpine3.22`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind/Dockerfile) -- [`28.3.2-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/970a23424906f35f372532787bd20259e5090888/28/dind-rootless/Dockerfile) +- [`28.3.3-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind-rootless/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.3-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.2-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.3-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.3.2-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.3.3-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43846ae8bfe7ca7f46d9d49a098be861374b12d8/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index 493840b60f5f..ee81166409ec 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.38`, `1.6`, `1`, `latest`, `1.6.38-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/41e28506e64d0b5daabbafc8d6349eddc91c17c0/1/debian/Dockerfile) +- [`1.6.39`, `1.6`, `1`, `latest`, `1.6.39-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/82dce5b661528c56980b7166b1065c149fab783e/1/debian/Dockerfile) -- [`1.6.38-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.38-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/41e28506e64d0b5daabbafc8d6349eddc91c17c0/1/alpine/Dockerfile) +- [`1.6.39-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.39-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/82dce5b661528c56980b7166b1065c149fab783e/1/alpine/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index bedc348f1e22..0cef7326bcad 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/developer/Dockerfile) +- [`2025.4.0-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/developer/Dockerfile) -- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/enterprise/Dockerfile) +- [`2025.4.0-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/enterprise/Dockerfile) -- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.0-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/datacenter/app/Dockerfile) -- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.0-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/datacenter/search/Dockerfile) - [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) @@ -40,17 +40,17 @@ WARNING: - [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) -- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/community-build/Dockerfile) +- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/datacenter/search/Dockerfile) # Quick reference (cont.) From 1cb421c157e2bc36da16871b523734177cf70f59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Jul 2025 12:12:27 -0700 Subject: [PATCH 2387/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c62befe2b1c0..da5e4c2c75cb 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/07b89e4dea7f6bb6f378df0ddf88df8e2c7db95f/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7-slim-fips/Dockerfile) # Quick reference (cont.) From bd16d6b3ea70df6c92b95cf270baa562ad1fd142 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Jul 2025 14:10:17 -0700 Subject: [PATCH 2388/2686] Run update.sh --- maven/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maven/README.md b/maven/README.md index e8fd2d92c807..f44a657e072c 100644 --- a/maven/README.md +++ b/maven/README.md @@ -88,6 +88,8 @@ WARNING: - [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) +- [`3.9.11-amazoncorretto-24-al2023`, `3.9-amazoncorretto-24-al2023`, `3-amazoncorretto-24-al2023`](https://github.com/carlossg/docker-maven/blob/91a4014542b7460b411512805153b5876783fc70/amazoncorretto-24-al2023/Dockerfile) + - [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) - [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-bookworm`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-bookworm`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-24-debian/Dockerfile) From f36fa8c3e4f520f18c84c5b24251371c2978cbab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 29 Jul 2025 17:10:39 -0700 Subject: [PATCH 2389/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index da5e4c2c75cb..3c8853877095 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/4280bdc8be2559d47436ec020eb980d3b17601d7/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7-slim-fips/Dockerfile) # Quick reference (cont.) From 222288bc774ad2f78318ba5107b25d0690ca7034 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Jul 2025 10:10:49 -0700 Subject: [PATCH 2390/2686] Run update.sh --- flink/README.md | 18 +++++++++--------- influxdb/README.md | 28 ++++++++++++++-------------- oraclelinux/README.md | 22 +++++++++++----------- rocket.chat/README.md | 4 +++- 4 files changed, 37 insertions(+), 35 deletions(-) diff --git a/flink/README.md b/flink/README.md index 91521abed88f..18f0f506d452 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.0-scala_2.12-java21`, `2.0-scala_2.12-java21`, `scala_2.12-java21`, `2.0.0-java21`, `2.0-java21`, `java21`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java21-ubuntu/Dockerfile) +- [`2.1.0-scala_2.12-java21`, `2.1-scala_2.12-java21`, `scala_2.12-java21`, `2.1.0-java21`, `2.1-java21`, `java21`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java21-ubuntu/Dockerfile) -- [`2.0.0-scala_2.12-java17`, `2.0-scala_2.12-java17`, `scala_2.12-java17`, `2.0.0-scala_2.12`, `2.0-scala_2.12`, `scala_2.12`, `2.0.0-java17`, `2.0-java17`, `java17`, `2.0.0`, `2.0`, `latest`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java17-ubuntu/Dockerfile) +- [`2.1.0-scala_2.12-java17`, `2.1-scala_2.12-java17`, `scala_2.12-java17`, `2.1.0-scala_2.12`, `2.1-scala_2.12`, `scala_2.12`, `2.1.0-java17`, `2.1-java17`, `java17`, `2.1.0`, `2.1`, `latest`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java17-ubuntu/Dockerfile) -- [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`, `java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) +- [`2.1.0-scala_2.12-java11`, `2.1-scala_2.12-java11`, `scala_2.12-java11`, `2.1.0-java11`, `2.1-java11`, `java11`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.2-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java8-ubuntu/Dockerfile) +- [`2.0.0-scala_2.12-java21`, `2.0-scala_2.12-java21`, `2.0.0-java21`, `2.0-java21`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java21-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.2-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java17-ubuntu/Dockerfile) +- [`2.0.0-scala_2.12-java17`, `2.0-scala_2.12-java17`, `2.0.0-scala_2.12`, `2.0-scala_2.12`, `2.0.0-java17`, `2.0-java17`, `2.0.0`, `2.0`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.2-scala_2.12`, `1.20-scala_2.12`, `1.20.2-java11`, `1.20-java11`, `1.20.2`, `1.20`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java11-ubuntu/Dockerfile) +- [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.19.3-scala_2.12-java8`, `1.19-scala_2.12-java8`, `1.19.3-java8`, `1.19-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.2-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.19.3-scala_2.12-java17`, `1.19-scala_2.12-java17`, `1.19.3-java17`, `1.19-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.2-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.19.3-scala_2.12-java11`, `1.19-scala_2.12-java11`, `1.19.3-scala_2.12`, `1.19-scala_2.12`, `1.19.3-java11`, `1.19-java11`, `1.19.3`, `1.19`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.19/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.2-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.2-scala_2.12`, `1.20-scala_2.12`, `1.20.2-java11`, `1.20-java11`, `1.20.2`, `1.20`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 3329d2ec717c..4541771eb36b 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.2-core`, `3.2.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/3.2-core/Dockerfile) +- [`3-core`, `3.3-core`, `3.3.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/3.3-core/Dockerfile) -- [`3-enterprise`, `3.2-enterprise`, `3.2.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/45b1761a3dd6bf6c2923d9c9b34374a11f2b33e7/influxdb/3.2-enterprise/Dockerfile) +- [`3-enterprise`, `3.3-enterprise`, `3.3.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/3.3-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 3c8853877095..974cf709b126 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e22bf43372eb565676eee202cf8fb033924cc541/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index ca2833a83039..4555c872062f 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.8.3`, `7.8`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.8/Dockerfile) +- [`7.9.0`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/a65636d0b5acd05f5927ef9a407f007fc420cb09/7.9/Dockerfile) + +- [`7.8.3`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.8/Dockerfile) - [`7.7.7`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.7/Dockerfile) From 4d1a38ab64b3309247e4ad53c6e26ba9a7f94562 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 30 Jul 2025 11:10:33 -0700 Subject: [PATCH 2391/2686] Run update.sh --- sonarqube/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 0cef7326bcad..a336bd360988 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.4.0-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/developer/Dockerfile) +- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/developer/Dockerfile) -- [`2025.4.0-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/enterprise/Dockerfile) +- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/enterprise/Dockerfile) -- [`2025.4.0-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/datacenter/app/Dockerfile) +- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/app/Dockerfile) -- [`2025.4.0-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/commercial-editions/datacenter/search/Dockerfile) +- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/search/Dockerfile) - [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) From 8685807e00de29f89a4daa33b9058e5de3d45520 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Jul 2025 10:10:27 -0700 Subject: [PATCH 2392/2686] Run update.sh --- elasticsearch/README.md | 6 ++++-- kibana/README.md | 6 +++++- logstash/README.md | 4 ++++ sonarqube/README.md | 20 ++++++++++---------- xwiki/README.md | 6 +++--- 5 files changed, 26 insertions(+), 16 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 4e8e47370d3c..31c7d354386f 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,14 +24,16 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/elasticsearch/Dockerfile) - - [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/elasticsearch/Dockerfile) - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/elasticsearch/Dockerfile) +- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/a01d05345bb7ef65ee8fe2ca4713cc0efa98cf5b/elasticsearch/Dockerfile) + - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/elasticsearch/Dockerfile) +- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/elasticsearch/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/kibana/README.md b/kibana/README.md index 9aa865ea793d..5aa343163340 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,14 +24,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/2ef7e0a0be5abd21cb38a39c3cce65d5278ebfee/kibana/Dockerfile) +- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/28b876f2aaba7bc27d76a1acd55cbc8ada9b5dea/kibana/Dockerfile) - [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/kibana/Dockerfile) - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/kibana/Dockerfile) +- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/e4c2da0c16babf1795279cb79aa1bf507363b3f6/kibana/Dockerfile) + - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/kibana/Dockerfile) +- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/kibana/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/logstash/README.md b/logstash/README.md index 15ffc65148e8..ce3eaae88acb 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,8 +28,12 @@ WARNING: - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/logstash/Dockerfile) +- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/a01d05345bb7ef65ee8fe2ca4713cc0efa98cf5b/logstash/Dockerfile) + - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/logstash/Dockerfile) +- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/logstash/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/sonarqube/README.md b/sonarqube/README.md index a336bd360988..68cb124c5b9d 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.3.1-developer`, `2025.3-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/developer/Dockerfile) +- [`2025.4.1-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/developer/Dockerfile) -- [`2025.3.1-enterprise`, `2025.3-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/enterprise/Dockerfile) +- [`2025.4.1-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/enterprise/Dockerfile) -- [`2025.3.1-datacenter-app`, `2025.3-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.1-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/datacenter/app/Dockerfile) -- [`2025.3.1-datacenter-search`, `2025.3-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/e29feb48414fb0f210d4d025158b7557eefe0092/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.1-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/datacenter/search/Dockerfile) - [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) @@ -40,17 +40,17 @@ WARNING: - [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) -- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/community-build/Dockerfile) +- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4c717b6de25b4882074a79d7f02447004df555cf/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 4d04161ff356..74539d5f1e0f 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`17.4-mariadb-tomcat`, `17.4.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.9`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.9-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.10`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.9-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.9-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/6a1adf447819ae22156427e3468d1820110cdfb5/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 8e05c0471419eec3de339d8ba9611696af0065f3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Jul 2025 11:10:13 -0700 Subject: [PATCH 2393/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- yourls/README.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index bb224845ecf4..733fd06494a4 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.6`, `25.6-jammy`, `25.6.5`, `25.6.5-jammy`, `25.6.5.41`, `25.6.5.41-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.6.5.41/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.1`, `25.7.1-jammy`, `25.7.1.3997`, `25.7.1.3997-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.7.1.3997/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.5.9.14/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.6`, `25.6.6-jammy`, `25.6.6.29`, `25.6.6.29-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.6.6.29/Dockerfile.ubuntu) -- [`25.4`, `25.4-jammy`, `25.4.13`, `25.4.13-jammy`, `25.4.13.22`, `25.4.13.22-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.4.13.22/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.5.9.14/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8a2ccf4a8e675cf081f27afa8917d5a9c180c1a5/server/25.3.6.56/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index 2eb1675ff79a..763a2ca1731a 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.1-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.1`, `1.10`, `1`, `latest`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/apache/Dockerfile) +- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/apache/Dockerfile) -- [`1.10.1-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/fpm/Dockerfile) +- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/fpm/Dockerfile) -- [`1.10.1-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/images/blob/d306b06d6b3e94f1441c65385395f7a384a46101/fpm-alpine/Dockerfile) +- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/fpm-alpine/Dockerfile) # Quick reference (cont.) From 02adf93523bb4ddc6e7fe6c2b9c5152e383841e8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 31 Jul 2025 14:10:58 -0700 Subject: [PATCH 2394/2686] Run update.sh --- ghost/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 7869ba553047..917b83975561 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-rc.0`](https://github.com/docker-library/ghost/blob/5200f34ed5fcff769a62b3c72f059f4c516142a4/6-rc/debian/Dockerfile) +- [`6.0.0-rc.2`](https://github.com/docker-library/ghost/blob/4c141439c875c1d90091a8e6d79f56ba3104cd09/6-rc/debian/Dockerfile) -- [`6.0.0-rc.0-alpine`](https://github.com/docker-library/ghost/blob/5200f34ed5fcff769a62b3c72f059f4c516142a4/6-rc/alpine/Dockerfile) +- [`6.0.0-rc.2-alpine`](https://github.com/docker-library/ghost/blob/4c141439c875c1d90091a8e6d79f56ba3104cd09/6-rc/alpine/Dockerfile) -- [`5.130.2`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/315fd829a562dc5e7c2edf6a2f9dc919a1961478/5/debian/Dockerfile) +- [`5.130.3`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/debian/Dockerfile) -- [`5.130.2-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/315fd829a562dc5e7c2edf6a2f9dc919a1961478/5/alpine/Dockerfile) +- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/alpine/Dockerfile) # Quick reference (cont.) From 657b250908652f6b74f8973264cc7e1c9e80d94f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 03:10:06 -0700 Subject: [PATCH 2395/2686] Run update.sh --- ghost/README.md | 4 ++-- node/README.md | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 917b83975561..e97209a68292 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-rc.2`](https://github.com/docker-library/ghost/blob/4c141439c875c1d90091a8e6d79f56ba3104cd09/6-rc/debian/Dockerfile) +- [`6.0.0-rc.3`](https://github.com/docker-library/ghost/blob/7766a0f0817d496da7f758d45bbe363a348565de/6-rc/debian/Dockerfile) -- [`6.0.0-rc.2-alpine`](https://github.com/docker-library/ghost/blob/4c141439c875c1d90091a8e6d79f56ba3104cd09/6-rc/alpine/Dockerfile) +- [`6.0.0-rc.3-alpine`](https://github.com/docker-library/ghost/blob/7766a0f0817d496da7f758d45bbe363a348565de/6-rc/alpine/Dockerfile) - [`5.130.3`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/debian/Dockerfile) diff --git a/node/README.md b/node/README.md index 55e8fb58779c..5b31b4e81a2a 100644 --- a/node/README.md +++ b/node/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.4-alpine3.21`, `24.4.1-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.5-alpine3.21`, `24.5.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.4-alpine`, `24.4-alpine3.22`, `24.4.1-alpine`, `24.4.1-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.5-alpine`, `24.5-alpine3.22`, `24.5.0-alpine`, `24.5.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.4`, `24.4-bookworm`, `24.4.1`, `24.4.1-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.5`, `24.5-bookworm`, `24.5.0`, `24.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.4-bookworm-slim`, `24.4-slim`, `24.4.1-bookworm-slim`, `24.4.1-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.5-bookworm-slim`, `24.5-slim`, `24.5.0-bookworm-slim`, `24.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.4-bullseye`, `24.4.1-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.5-bullseye`, `24.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.4-bullseye-slim`, `24.4.1-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.5-bullseye-slim`, `24.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bullseye-slim/Dockerfile) -- [`22-alpine3.21`, `22.17-alpine3.21`, `22.17.1-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.18-alpine3.21`, `22.18.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.17-alpine`, `22.17-alpine3.22`, `22.17.1-alpine`, `22.17.1-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.18-alpine`, `22.18-alpine3.22`, `22.18.0-alpine`, `22.18.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.17`, `22.17-bookworm`, `22.17.1`, `22.17.1-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.18`, `22.18-bookworm`, `22.18.0`, `22.18.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.17-bookworm-slim`, `22.17-slim`, `22.17.1-bookworm-slim`, `22.17.1-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.18-bookworm-slim`, `22.18-slim`, `22.18.0-bookworm-slim`, `22.18.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.17-bullseye`, `22.17.1-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/bd31952b241c9e57ff2205294a87dbb55fdb2f26/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.18-bullseye`, `22.18.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.17-bullseye-slim`, `22.17.1-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.18-bullseye-slim`, `22.18.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bullseye-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) From 0dc8d1c9652f821003c6b78de4d188e45dbcd520 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 06:10:43 -0700 Subject: [PATCH 2396/2686] Run update.sh --- ghost/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index e97209a68292..8f65d5fc3d59 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-rc.3`](https://github.com/docker-library/ghost/blob/7766a0f0817d496da7f758d45bbe363a348565de/6-rc/debian/Dockerfile) +- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/2237b8ab43ce6b33ea5dbcf4c446c3fbdcea90cb/6/debian/Dockerfile) -- [`6.0.0-rc.3-alpine`](https://github.com/docker-library/ghost/blob/7766a0f0817d496da7f758d45bbe363a348565de/6-rc/alpine/Dockerfile) +- [`6.0.0-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2237b8ab43ce6b33ea5dbcf4c446c3fbdcea90cb/6/alpine/Dockerfile) -- [`5.130.3`, `5.130`, `5`, `latest`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/debian/Dockerfile) +- [`5.130.3`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/debian/Dockerfile) -- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/alpine/Dockerfile) +- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/alpine/Dockerfile) # Quick reference (cont.) From fc1a57874a94647af26276f286ea36fc009c1e74 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 11:10:33 -0700 Subject: [PATCH 2397/2686] Run update.sh --- fluentd/README.md | 4 +--- nats/README.md | 38 +++++++++++++++++++------------------- xwiki/README.md | 6 +++--- 3 files changed, 23 insertions(+), 25 deletions(-) diff --git a/fluentd/README.md b/fluentd/README.md index a536ef249e79..836498659329 100644 --- a/fluentd/README.md +++ b/fluentd/README.md @@ -28,9 +28,7 @@ WARNING: - [`v1.16.9-debian-1.0`, `v1.16-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/505a1af75b4a4adb40d576df7b18cebab853264e/v1.16/debian/Dockerfile) -- [`v1.18.0-1.0`, `v1.18-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/alpine/Dockerfile) - -- [`v1.18.0-debian-1.0`, `v1.18-debian-1`](https://github.com/fluent/fluentd-docker-image/blob/0c3c82df3ec08a46ba346e53c4644cfc667dc703/v1.18/debian/Dockerfile) +- [`v1.19.0-debian-1.0`, `v1.19-debian-1`, `v1.19.0-1.0`, `v1.19-1`, `latest`](https://github.com/fluent/fluentd-docker-image/blob/42a0afa30b3821482bce1ba8e67266d745619724/v1.19/debian/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index ce1b1b251c64..0ee2a9b39170 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.6-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.6-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/alpine3.22/Dockerfile) +- [`2.11.7-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.7-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/alpine3.22/Dockerfile) -- [`2.11.6-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.6-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/scratch/Dockerfile) +- [`2.11.7-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.7-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/scratch/Dockerfile) -- [`2.11.6-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.7-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.6-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.7-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.6`, `2.11`, `2`, `latest`: +- `2.11.7`, `2.11`, `2`, `latest`: - - [`2.11.6-scratch`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/scratch/Dockerfile) - - [`2.11.6-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.7-scratch`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/scratch/Dockerfile) + - [`2.11.7-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.6-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.7-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.6-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.7-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.6-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.7-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.6-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.7-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/8cf6e635752df63e09808bbb4d76d8f17f19bfc5/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 74539d5f1e0f..88ff96d846f3 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.6-mariadb-tomcat`, `17.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.2`, `17.4-mysql-tomcat`, `17.4.2-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.3`, `17.4-mysql-tomcat`, `17.4.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.2-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.2-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/26aac747da65d11d2d238a91fc17c0f00c3f8807/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.10`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mysql-tomcat/Dockerfile) From 4d43b13e5ce22cd6aa3f7613fbc955f24bf9ec0c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 12:10:42 -0700 Subject: [PATCH 2398/2686] Run update.sh --- archlinux/README.md | 6 +- eclipse-temurin/README.md | 416 ++++++++++++++++++++------------------ oraclelinux/README.md | 22 +- 3 files changed, 236 insertions(+), 208 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 5a7bcd43dcc7..073f1c7b0e74 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.base) +- [`latest`, `base`, `base-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.base) -- [`base-devel`, `base-devel-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250727.0.390543`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5b795383cad1cb308b7a03894f8c98eb2ead6cb4/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index a61018db8296..b1e56fad13c6 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,355 +28,383 @@ WARNING: ## Simple Tags -- [`8u452-b09-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/alpine/3.20/Dockerfile) +- [`8u462-b08-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.20/Dockerfile) -- [`8u452-b09-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`, `8u452-b09-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/alpine/3.21/Dockerfile) +- [`8u462-b08-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.21/Dockerfile) -- [`8u452-b09-jdk-focal`, `8-jdk-focal`, `8-focal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/focal/Dockerfile) +- [`8u462-b08-jdk-alpine-3.22`, `8-jdk-alpine-3.22`, `8-alpine-3.22`, `8u462-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.22/Dockerfile) -- [`8u452-b09-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u462-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u452-b09-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/noble/Dockerfile) +- [`8u462-b08-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/noble/Dockerfile) -- [`8u452-b09-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u462-b08-jdk-ubi10-minimal`, `8-jdk-ubi10-minimal`, `8-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubi/ubi10-minimal/Dockerfile) -- [`8u452-b09-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u462-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u452-b09-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u462-b08-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u452-b09-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u462-b08-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u452-b09-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u462-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u452-b09-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/alpine/3.20/Dockerfile) +- [`8u462-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u452-b09-jre-alpine-3.21`, `8-jre-alpine-3.21`, `8u452-b09-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/alpine/3.21/Dockerfile) +- [`8u462-b08-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.20/Dockerfile) -- [`8u452-b09-jre-focal`, `8-jre-focal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/focal/Dockerfile) +- [`8u462-b08-jre-alpine-3.21`, `8-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.21/Dockerfile) -- [`8u452-b09-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/jammy/Dockerfile) +- [`8u462-b08-jre-alpine-3.22`, `8-jre-alpine-3.22`, `8u462-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.22/Dockerfile) -- [`8u452-b09-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/noble/Dockerfile) +- [`8u462-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/jammy/Dockerfile) -- [`8u452-b09-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u462-b08-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/noble/Dockerfile) -- [`8u452-b09-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u462-b08-jre-ubi10-minimal`, `8-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubi/ubi10-minimal/Dockerfile) -- [`8u452-b09-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u462-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u452-b09-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u462-b08-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u452-b09-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u462-b08-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.27_6-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/alpine/3.20/Dockerfile) +- [`8u462-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.27_6-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`, `11.0.27_6-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/alpine/3.21/Dockerfile) +- [`8u462-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.27_6-jdk-focal`, `11-jdk-focal`, `11-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/focal/Dockerfile) +- [`11.0.28_6-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.20/Dockerfile) -- [`11.0.27_6-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.28_6-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.21/Dockerfile) -- [`11.0.27_6-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.28_6-jdk-alpine-3.22`, `11-jdk-alpine-3.22`, `11-alpine-3.22`, `11.0.28_6-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.22/Dockerfile) -- [`11.0.27_6-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.28_6-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.27_6-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.28_6-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.27_6-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.28_6-jdk-ubi10-minimal`, `11-jdk-ubi10-minimal`, `11-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubi/ubi10-minimal/Dockerfile) -- [`11.0.27_6-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.28_6-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.27_6-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.28_6-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.27_6-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/alpine/3.20/Dockerfile) +- [`11.0.28_6-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.27_6-jre-alpine-3.21`, `11-jre-alpine-3.21`, `11.0.27_6-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/alpine/3.21/Dockerfile) +- [`11.0.28_6-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.27_6-jre-focal`, `11-jre-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/focal/Dockerfile) +- [`11.0.28_6-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.27_6-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.28_6-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.20/Dockerfile) -- [`11.0.27_6-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.28_6-jre-alpine-3.21`, `11-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.21/Dockerfile) -- [`11.0.27_6-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.28_6-jre-alpine-3.22`, `11-jre-alpine-3.22`, `11.0.28_6-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.22/Dockerfile) -- [`11.0.27_6-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.28_6-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.27_6-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.28_6-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.27_6-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.28_6-jre-ubi10-minimal`, `11-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubi/ubi10-minimal/Dockerfile) -- [`11.0.27_6-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.28_6-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.15_6-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/alpine/3.20/Dockerfile) +- [`11.0.28_6-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.15_6-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`, `17.0.15_6-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/alpine/3.21/Dockerfile) +- [`11.0.28_6-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.15_6-jdk-focal`, `17-jdk-focal`, `17-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/focal/Dockerfile) +- [`11.0.28_6-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.15_6-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.28_6-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.15_6-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.16_8-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.20/Dockerfile) -- [`17.0.15_6-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.16_8-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.21/Dockerfile) -- [`17.0.15_6-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.16_8-jdk-alpine-3.22`, `17-jdk-alpine-3.22`, `17-alpine-3.22`, `17.0.16_8-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.22/Dockerfile) -- [`17.0.15_6-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.16_8-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.15_6-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.16_8-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.15_6-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.16_8-jdk-ubi10-minimal`, `17-jdk-ubi10-minimal`, `17-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubi/ubi10-minimal/Dockerfile) -- [`17.0.15_6-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/alpine/3.20/Dockerfile) +- [`17.0.16_8-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.15_6-jre-alpine-3.21`, `17-jre-alpine-3.21`, `17.0.15_6-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/alpine/3.21/Dockerfile) +- [`17.0.16_8-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.15_6-jre-focal`, `17-jre-focal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/focal/Dockerfile) +- [`17.0.16_8-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.15_6-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.16_8-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.15_6-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.16_8-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.15_6-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.16_8-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.20/Dockerfile) -- [`17.0.15_6-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.16_8-jre-alpine-3.21`, `17-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.21/Dockerfile) -- [`17.0.15_6-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.16_8-jre-alpine-3.22`, `17-jre-alpine-3.22`, `17.0.16_8-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.22/Dockerfile) -- [`17.0.15_6-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.16_8-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.15_6-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.16_8-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/noble/Dockerfile) -- [`21.0.7_6-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/alpine/3.20/Dockerfile) +- [`17.0.16_8-jre-ubi10-minimal`, `17-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubi/ubi10-minimal/Dockerfile) -- [`21.0.7_6-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`, `21.0.7_6-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/alpine/3.21/Dockerfile) +- [`17.0.16_8-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.7_6-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.16_8-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.7_6-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/noble/Dockerfile) +- [`17.0.16_8-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.7_6-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.16_8-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.7_6-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.16_8-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.7_6-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.8_9-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.20/Dockerfile) -- [`21.0.7_6-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.8_9-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.21/Dockerfile) -- [`21.0.7_6-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.8_9-jdk-alpine-3.22`, `21-jdk-alpine-3.22`, `21-alpine-3.22`, `21.0.8_9-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.22/Dockerfile) -- [`21.0.7_6-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/alpine/3.20/Dockerfile) +- [`21.0.8_9-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.7_6-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.7_6-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/alpine/3.21/Dockerfile) +- [`21.0.8_9-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.7_6-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.8_9-jdk-ubi10-minimal`, `21-jdk-ubi10-minimal`, `21-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubi/ubi10-minimal/Dockerfile) -- [`21.0.7_6-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.8_9-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.7_6-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.8_9-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.7_6-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.8_9-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.7_6-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.8_9-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.7_6-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.8_9-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.7_6-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.8_9-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.20/Dockerfile) -- [`24.0.1_9-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/alpine/3.20/Dockerfile) +- [`21.0.8_9-jre-alpine-3.21`, `21-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.21/Dockerfile) -- [`24.0.1_9-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`, `24.0.1_9-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/alpine/3.21/Dockerfile) +- [`21.0.8_9-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.8_9-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.22/Dockerfile) -- [`24.0.1_9-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubuntu/noble/Dockerfile) +- [`21.0.8_9-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/jammy/Dockerfile) -- [`24.0.1_9-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.8_9-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/noble/Dockerfile) -- [`24.0.1_9-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.8_9-jre-ubi10-minimal`, `21-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubi/ubi10-minimal/Dockerfile) -- [`24.0.1_9-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.8_9-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`24.0.1_9-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.8_9-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24.0.1_9-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.8_9-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`24.0.1_9-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/alpine/3.20/Dockerfile) +- [`21.0.8_9-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.1_9-jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.1_9-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/alpine/3.21/Dockerfile) +- [`21.0.8_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`24.0.1_9-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubuntu/noble/Dockerfile) +- [`24.0.2_12-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.20/Dockerfile) -- [`24.0.1_9-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubi/ubi9-minimal/Dockerfile) +- [`24.0.2_12-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.21/Dockerfile) -- [`24.0.1_9-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`24.0.2_12-jdk-alpine-3.22`, `24-jdk-alpine-3.22`, `24-alpine-3.22`, `24.0.2_12-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.22/Dockerfile) -- [`24.0.1_9-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`24.0.2_12-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubuntu/noble/Dockerfile) -- [`24.0.1_9-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`24.0.2_12-jdk-ubi10-minimal`, `24-jdk-ubi10-minimal`, `24-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubi/ubi10-minimal/Dockerfile) -- [`24.0.1_9-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`24.0.2_12-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubi/ubi9-minimal/Dockerfile) + +- [`24.0.2_12-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`24.0.2_12-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + +- [`24.0.2_12-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`24.0.2_12-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + +- [`24.0.2_12-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.20/Dockerfile) + +- [`24.0.2_12-jre-alpine-3.21`, `24-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.21/Dockerfile) + +- [`24.0.2_12-jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.2_12-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.22/Dockerfile) + +- [`24.0.2_12-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubuntu/noble/Dockerfile) + +- [`24.0.2_12-jre-ubi10-minimal`, `24-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubi/ubi10-minimal/Dockerfile) + +- [`24.0.2_12-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubi/ubi9-minimal/Dockerfile) + +- [`24.0.2_12-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`24.0.2_12-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2025/Dockerfile) + +- [`24.0.2_12-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`24.0.2_12-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `8u452-b09-jdk`, `8-jdk`, `8`: +- `8u462-b08-jdk`, `8-jdk`, `8`: - - [`8u452-b09-jdk-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/ubuntu/noble/Dockerfile) - - [`8u452-b09-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u452-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u462-b08-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/noble/Dockerfile) + - [`8u462-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u462-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u452-b09-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u462-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u452-b09-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u452-b09-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u462-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u462-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u452-b09-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u462-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u452-b09-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u452-b09-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u462-b08-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u462-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `8u452-b09-jre`, `8-jre`: +- `8u462-b08-jre`, `8-jre`: - - [`8u452-b09-jre-noble`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/ubuntu/noble/Dockerfile) - - [`8u452-b09-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u452-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u462-b08-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/noble/Dockerfile) + - [`8u462-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u462-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u452-b09-jre-windowsservercore`, `8-jre-windowsservercore`: +- `8u462-b08-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u452-b09-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u452-b09-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u462-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u462-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u452-b09-jre-nanoserver`, `8-jre-nanoserver`: +- `8u462-b08-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u452-b09-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u452-b09-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/4890fb4638e68c037c00c4a28c7587e0b5c96fcf/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u462-b08-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u462-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `11.0.27_6-jdk`, `11-jdk`, `11`: +- `11.0.28_6-jdk`, `11-jdk`, `11`: - - [`11.0.27_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.27_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.27_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.28_6-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.28_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.28_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.27_6-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.28_6-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.27_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.27_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.28_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.28_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.27_6-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.28_6-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.27_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.27_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.28_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.28_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `11.0.27_6-jre`, `11-jre`: +- `11.0.28_6-jre`, `11-jre`: - - [`11.0.27_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.27_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.27_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.28_6-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.28_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.28_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.27_6-jre-windowsservercore`, `11-jre-windowsservercore`: +- `11.0.28_6-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.27_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.27_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.28_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.28_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.27_6-jre-nanoserver`, `11-jre-nanoserver`: +- `11.0.28_6-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.27_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.27_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.28_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.28_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.15_6-jdk`, `17-jdk`, `17`: +- `17.0.16_8-jdk`, `17-jdk`, `17`: - - [`17.0.15_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.15_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.15_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.16_8-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.16_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.16_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.15_6-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.16_8-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.15_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.15_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.16_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.16_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.15_6-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.16_8-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.15_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.15_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.16_8-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.16_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.15_6-jre`, `17-jre`: +- `17.0.16_8-jre`, `17-jre`: - - [`17.0.15_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.15_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.15_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.16_8-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.16_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.16_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.15_6-jre-windowsservercore`, `17-jre-windowsservercore`: +- `17.0.16_8-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.15_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.15_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.16_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.16_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.15_6-jre-nanoserver`, `17-jre-nanoserver`: +- `17.0.16_8-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.15_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.15_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.16_8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.16_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.7_6-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.8_9-jdk`, `21-jdk`, `21`, `latest`: - - [`21.0.7_6-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.7_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.7_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.8_9-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.8_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.8_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.7_6-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.8_9-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.7_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.7_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.8_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.8_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.7_6-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.8_9-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.7_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.7_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.8_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.8_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.7_6-jre`, `21-jre`: +- `21.0.8_9-jre`, `21-jre`: - - [`21.0.7_6-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.7_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.7_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.8_9-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.8_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.8_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.7_6-jre-windowsservercore`, `21-jre-windowsservercore`: +- `21.0.8_9-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.7_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.7_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.8_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.8_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.7_6-jre-nanoserver`, `21-jre-nanoserver`: +- `21.0.8_9-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.7_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.7_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.8_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.8_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `24.0.1_9-jdk`, `24-jdk`, `24`: +- `24.0.2_12-jdk`, `24-jdk`, `24`: - - [`24.0.1_9-jdk-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/ubuntu/noble/Dockerfile) - - [`24.0.1_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2_12-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubuntu/noble/Dockerfile) + - [`24.0.2_12-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.2_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.1_9-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `24.0.2_12-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: - - [`24.0.1_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.1_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2_12-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.2_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.1_9-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `24.0.2_12-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: - - [`24.0.1_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24.0.1_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`24.0.2_12-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`24.0.2_12-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `24.0.1_9-jre`, `24-jre`: +- `24.0.2_12-jre`, `24-jre`: - - [`24.0.1_9-jre-noble`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/ubuntu/noble/Dockerfile) - - [`24.0.1_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2_12-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubuntu/noble/Dockerfile) + - [`24.0.2_12-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.2_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.1_9-jre-windowsservercore`, `24-jre-windowsservercore`: +- `24.0.2_12-jre-windowsservercore`, `24-jre-windowsservercore`: - - [`24.0.1_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.1_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`24.0.2_12-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`24.0.2_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.1_9-jre-nanoserver`, `24-jre-nanoserver`: +- `24.0.2_12-jre-nanoserver`, `24-jre-nanoserver`: - - [`24.0.1_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`24.0.1_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/30d5f31fe4d1360da008ef3205ec3d5bf7e5b53d/24/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`24.0.2_12-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`24.0.2_12-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 974cf709b126..2d75064acce1 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/443ff4e5fc210c89d03bffe7d655634159bc9b3e/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7-slim-fips/Dockerfile) # Quick reference (cont.) From cb2658908c7be1dd35ad190f990ec0b746b83866 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 13:10:16 -0700 Subject: [PATCH 2399/2686] Run update.sh --- photon/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon/README.md b/photon/README.md index b0233eb63f2c..5024b1e34324 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250727`, `latest`](https://github.com/vmware/photon-docker-image/blob/2a752800a81f25811605bd82f7f387a31d7bec31/docker/Dockerfile) +- [`5.0`, `5.0-20250803`, `latest`](https://github.com/vmware/photon-docker-image/blob/d4d934013de5b37db69230704a65ebae3c52b28d/docker/Dockerfile) - [`4.0`, `4.0-20250727`](https://github.com/vmware/photon-docker-image/blob/63832f199d2f680b8efa209ea1964f640b8cc6bf/docker/Dockerfile) From 36d2250555be4e2569d39692b8d6c09b56c1c40a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 14:10:19 -0700 Subject: [PATCH 2400/2686] Run update.sh --- almalinux/README.md | 16 ++-- golang/README.md | 12 +-- mongo/README.md | 23 +++++ neo4j/README.md | 8 +- openjdk/README.md | 80 ++++++++--------- oraclelinux/README.md | 22 ++--- php/README.md | 196 +++++++++++++++--------------------------- rabbitmq/README.md | 12 +-- redis/README.md | 8 +- yourls/README.md | 6 +- 10 files changed, 175 insertions(+), 208 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 34689a1cd2ef..39007546a535 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250711`](https://github.com/AlmaLinux/container-images/blob/649a94558c44886f3b63a29dbd637ab31efe0804/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250803`](https://github.com/AlmaLinux/container-images/blob/67b5f61aa97e2b67a336dbb8d5bf259c21d766fc/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250711`](https://github.com/AlmaLinux/container-images/blob/649a94558c44886f3b63a29dbd637ab31efe0804/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/67b5f61aa97e2b67a336dbb8d5bf259c21d766fc/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250711`](https://github.com/AlmaLinux/container-images/blob/c85dabd05aae3a97a85b285c6051a74bbd8b396d/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250803`](https://github.com/AlmaLinux/container-images/blob/134e01c926e064d501ec8f78bc885201de5c9f3d/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250711`](https://github.com/AlmaLinux/container-images/blob/c85dabd05aae3a97a85b285c6051a74bbd8b396d/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/134e01c926e064d501ec8f78bc885201de5c9f3d/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250712`](https://github.com/AlmaLinux/container-images/blob/f15cead36e80f751fdd54e23ea6fa8f5cdec82df/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250803`](https://github.com/AlmaLinux/container-images/blob/4c66ec9c37e6790d3adeba56bbb86aed3eef86c6/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250712`](https://github.com/AlmaLinux/container-images/blob/f15cead36e80f751fdd54e23ea6fa8f5cdec82df/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/4c66ec9c37e6790d3adeba56bbb86aed3eef86c6/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250712`](https://github.com/AlmaLinux/container-images/blob/dd832071d11c40c4697dee7378bf0dce8265302c/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250803`](https://github.com/AlmaLinux/container-images/blob/4467954b1a3e5c74fa854632cecd3f9d26fe378f/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250712`](https://github.com/AlmaLinux/container-images/blob/dd832071d11c40c4697dee7378bf0dce8265302c/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/4467954b1a3e5c74fa854632cecd3f9d26fe378f/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 5516ed4468c6..163ff61a3dcb 100644 --- a/golang/README.md +++ b/golang/README.md @@ -76,13 +76,13 @@ WARNING: - [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250726-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bookworm/Dockerfile) +- [`tip-20250801-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bookworm/Dockerfile) -- [`tip-20250726-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bullseye/Dockerfile) +- [`tip-20250801-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bullseye/Dockerfile) -- [`tip-20250726-alpine3.22`, `tip-alpine3.22`, `tip-20250726-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/alpine3.22/Dockerfile) +- [`tip-20250801-alpine3.22`, `tip-alpine3.22`, `tip-20250801-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/alpine3.22/Dockerfile) -- [`tip-20250726-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/alpine3.21/Dockerfile) +- [`tip-20250801-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -134,9 +134,9 @@ WARNING: - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250726`, `tip`: +- `tip-20250801`, `tip`: - - [`tip-20250726-bookworm`](https://github.com/docker-library/golang/blob/a7013840304bbca721982e1b5d405190ba2f46cb/tip/bookworm/Dockerfile) + - [`tip-20250801-bookworm`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 29df108ecd74..1ef073f4fe95 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -36,6 +36,14 @@ WARNING: - [`8.0.12-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.23-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/Dockerfile) + +- [`7.0.23-rc1-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.23-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.23-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.22-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) - [`7.0.22-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -69,6 +77,21 @@ WARNING: - [`8.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- `7.0.23-rc1`, `7.0-rc`: + + - [`7.0.23-rc1-jammy`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/Dockerfile) + - [`7.0.23-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.23-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.23-rc1-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.23-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.23-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.23-rc1-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.23-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `7.0.22`, `7.0`, `7`: - [`7.0.22-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) diff --git a/neo4j/README.md b/neo4j/README.md index 79f03a25a9b5..b5ec2c8ffa66 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.06.2-enterprise-ubi9`, `2025.06-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/ubi9/enterprise/Dockerfile) -- [`5.26.9-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.9-community`, `5.26-community`, `5-community`, `5.26.9-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.9`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/bullseye/community/Dockerfile) +- [`5.26.10-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.10-community`, `5.26-community`, `5-community`, `5.26.10-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.10`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/bullseye/community/Dockerfile) -- [`5.26.9-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.9-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/bullseye/enterprise/Dockerfile) +- [`5.26.10-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.10-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/bullseye/enterprise/Dockerfile) -- [`5.26.9-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.9-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/ubi9/community/Dockerfile) +- [`5.26.10-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.10-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/ubi9/community/Dockerfile) -- [`5.26.9-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/ebd5f187187e045faf4fb655e2e1a47885daf0dd/5.26.9/ubi9/enterprise/Dockerfile) +- [`5.26.10-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/ubi9/enterprise/Dockerfile) - [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index b0aabcc122b2..af072e34ee65 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-8-jdk-oraclelinux9`, `26-ea-8-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-8-jdk-oracle`, `26-ea-8-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-9-jdk-oraclelinux9`, `26-ea-9-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-9-jdk-oracle`, `26-ea-9-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-8-jdk-oraclelinux8`, `26-ea-8-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-9-jdk-oraclelinux8`, `26-ea-9-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-8-jdk-bookworm`, `26-ea-8-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/bookworm/Dockerfile) +- [`26-ea-9-jdk-bookworm`, `26-ea-9-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/bookworm/Dockerfile) -- [`26-ea-8-jdk-slim-bookworm`, `26-ea-8-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-8-jdk-slim`, `26-ea-8-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-9-jdk-slim-bookworm`, `26-ea-9-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-9-jdk-slim`, `26-ea-9-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-8-jdk-bullseye`, `26-ea-8-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/bullseye/Dockerfile) +- [`26-ea-9-jdk-bullseye`, `26-ea-9-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/bullseye/Dockerfile) -- [`26-ea-8-jdk-slim-bullseye`, `26-ea-8-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-9-jdk-slim-bullseye`, `26-ea-9-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-8-jdk-windowsservercore-ltsc2025`, `26-ea-8-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-9-jdk-windowsservercore-ltsc2025`, `26-ea-9-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-8-jdk-windowsservercore-ltsc2022`, `26-ea-8-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-9-jdk-windowsservercore-ltsc2022`, `26-ea-9-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-8-jdk-nanoserver-ltsc2025`, `26-ea-8-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-9-jdk-nanoserver-ltsc2025`, `26-ea-9-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-8-jdk-nanoserver-ltsc2022`, `26-ea-8-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-9-jdk-nanoserver-ltsc2022`, `26-ea-9-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-33-jdk-oraclelinux9`, `25-ea-33-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-33-jdk-oracle`, `25-ea-33-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux9/Dockerfile) +- [`25-ea-34-jdk-oraclelinux9`, `25-ea-34-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-34-jdk-oracle`, `25-ea-34-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-33-jdk-oraclelinux8`, `25-ea-33-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux8/Dockerfile) +- [`25-ea-34-jdk-oraclelinux8`, `25-ea-34-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-33-jdk-bookworm`, `25-ea-33-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/bookworm/Dockerfile) +- [`25-ea-34-jdk-bookworm`, `25-ea-34-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/bookworm/Dockerfile) -- [`25-ea-33-jdk-slim-bookworm`, `25-ea-33-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-33-jdk-slim`, `25-ea-33-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/slim-bookworm/Dockerfile) +- [`25-ea-34-jdk-slim-bookworm`, `25-ea-34-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-34-jdk-slim`, `25-ea-34-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-33-jdk-bullseye`, `25-ea-33-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/bullseye/Dockerfile) +- [`25-ea-34-jdk-bullseye`, `25-ea-34-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/bullseye/Dockerfile) -- [`25-ea-33-jdk-slim-bullseye`, `25-ea-33-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/slim-bullseye/Dockerfile) +- [`25-ea-34-jdk-slim-bullseye`, `25-ea-34-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-33-jdk-windowsservercore-ltsc2025`, `25-ea-33-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-ea-34-jdk-windowsservercore-ltsc2025`, `25-ea-34-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-33-jdk-windowsservercore-ltsc2022`, `25-ea-33-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-ea-34-jdk-windowsservercore-ltsc2022`, `25-ea-34-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-33-jdk-nanoserver-ltsc2025`, `25-ea-33-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-ea-34-jdk-nanoserver-ltsc2025`, `25-ea-34-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-33-jdk-nanoserver-ltsc2022`, `25-ea-33-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-ea-34-jdk-nanoserver-ltsc2022`, `25-ea-34-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-8-jdk`, `26-ea-8`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-9-jdk`, `26-ea-9`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-8-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-8-jdk-windowsservercore`, `26-ea-8-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-9-jdk-windowsservercore`, `26-ea-9-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-8-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-8-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-8-jdk-nanoserver`, `26-ea-8-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-9-jdk-nanoserver`, `26-ea-9-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-8-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-8-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cab7b939233281f9f432bf89494dd1dca9a3b81c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-9-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-9-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-33-jdk`, `25-ea-33`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-ea-34-jdk`, `25-ea-34`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: - - [`25-ea-33-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux9/Dockerfile) + - [`25-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-33-jdk-windowsservercore`, `25-ea-33-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-ea-34-jdk-windowsservercore`, `25-ea-34-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-33-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-33-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-33-jdk-nanoserver`, `25-ea-33-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-ea-34-jdk-nanoserver`, `25-ea-34-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-33-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-33-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/3943cfb049b3547e497655ebcf93650b912b31d1/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-ea-34-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-ea-34-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2d75064acce1..d25d8ac4e25d 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/2f923af01654bf1418554dbe9635bb5ed4ba365a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 4c5c8e9193c4..2b5ded1d28e2 100644 --- a/php/README.md +++ b/php/README.md @@ -24,201 +24,145 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0alpha2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha2-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha2-cli`, `8.5-rc-cli`, `8.5.0alpha2`, `8.5-rc`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0alpha2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha2-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha2-cli`, `8.5-rc-cli`, `8.5.0alpha2`, `8.5-rc`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0alpha2-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0alpha2-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0alpha2-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0alpha2-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0alpha2-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0alpha2-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha2-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/cli/Dockerfile) +- [`8.5.0alpha2-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha2-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/cli/Dockerfile) -- [`8.5.0alpha2-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/apache/Dockerfile) +- [`8.5.0alpha2-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/apache/Dockerfile) -- [`8.5.0alpha2-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/fpm/Dockerfile) -- [`8.5.0alpha2-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/bullseye/zts/Dockerfile) +- [`8.5.0alpha2-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/zts/Dockerfile) -- [`8.5.0alpha2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0alpha2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0alpha2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0alpha2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0alpha2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0alpha2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0alpha2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0alpha2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0alpha2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0alpha2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/dd2c440c9add0f39d1739113b1697ec3fb45420b/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0alpha2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/zts/Dockerfile) -- [`8.4.11RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.11RC1-bookworm`, `8.4-rc-bookworm`, `8.4.11RC1-cli`, `8.4-rc-cli`, `8.4.11RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.11-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.11-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/cli/Dockerfile) -- [`8.4.11RC1-apache-bookworm`, `8.4-rc-apache-bookworm`, `8.4.11RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.11-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.11-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/apache/Dockerfile) -- [`8.4.11RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`, `8.4.11RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.11-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.11-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/fpm/Dockerfile) -- [`8.4.11RC1-zts-bookworm`, `8.4-rc-zts-bookworm`, `8.4.11RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.11-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.11-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/zts/Dockerfile) -- [`8.4.11RC1-cli-bullseye`, `8.4-rc-cli-bullseye`, `8.4.11RC1-bullseye`, `8.4-rc-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/cli/Dockerfile) +- [`8.4.11-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.11-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/cli/Dockerfile) -- [`8.4.11RC1-apache-bullseye`, `8.4-rc-apache-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/apache/Dockerfile) +- [`8.4.11-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/apache/Dockerfile) -- [`8.4.11RC1-fpm-bullseye`, `8.4-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/fpm/Dockerfile) +- [`8.4.11-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/fpm/Dockerfile) -- [`8.4.11RC1-zts-bullseye`, `8.4-rc-zts-bullseye`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/bullseye/zts/Dockerfile) +- [`8.4.11-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/zts/Dockerfile) -- [`8.4.11RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.11RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.11RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.11RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.11-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.11-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.11-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.11-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.11RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.11RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.11-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.11-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.11RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.11RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.11-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.11-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.11RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.11RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.11-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.11-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.11RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.11-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.11RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/0adc0a16f65d0bd27f889dadf86d232d491cdb72/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.11-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.10-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.10-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.10-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.10`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/cli/Dockerfile) +- [`8.3.24-cli-bookworm`, `8.3-cli-bookworm`, `8.3.24-bookworm`, `8.3-bookworm`, `8.3.24-cli`, `8.3-cli`, `8.3.24`, `8.3`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/cli/Dockerfile) -- [`8.4.10-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.10-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/apache/Dockerfile) +- [`8.3.24-apache-bookworm`, `8.3-apache-bookworm`, `8.3.24-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/apache/Dockerfile) -- [`8.4.10-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.10-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/fpm/Dockerfile) +- [`8.3.24-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.24-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/fpm/Dockerfile) -- [`8.4.10-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.10-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bookworm/zts/Dockerfile) +- [`8.3.24-zts-bookworm`, `8.3-zts-bookworm`, `8.3.24-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/zts/Dockerfile) -- [`8.4.10-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.10-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/cli/Dockerfile) +- [`8.3.24-cli-bullseye`, `8.3-cli-bullseye`, `8.3.24-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/cli/Dockerfile) -- [`8.4.10-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/apache/Dockerfile) +- [`8.3.24-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/apache/Dockerfile) -- [`8.4.10-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/fpm/Dockerfile) +- [`8.3.24-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/fpm/Dockerfile) -- [`8.4.10-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/bullseye/zts/Dockerfile) +- [`8.3.24-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/zts/Dockerfile) -- [`8.4.10-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.10-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.10-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.10-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/cli/Dockerfile) +- [`8.3.24-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.24-alpine3.22`, `8.3-alpine3.22`, `8.3.24-cli-alpine`, `8.3-cli-alpine`, `8.3.24-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/cli/Dockerfile) -- [`8.4.10-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.10-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/fpm/Dockerfile) +- [`8.3.24-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.24-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/fpm/Dockerfile) -- [`8.4.10-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.10-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.22/zts/Dockerfile) +- [`8.3.24-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.24-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/zts/Dockerfile) -- [`8.4.10-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.10-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.24-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.24-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.10-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.24-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.10-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/6e025fb18826b21b5aa340f9cb35f82d31f58f16/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.24-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/zts/Dockerfile) -- [`8.3.24RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.24RC1-bookworm`, `8.3-rc-bookworm`, `8.3.24RC1-cli`, `8.3-rc-cli`, `8.3.24RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/cli/Dockerfile) +- [`8.2.29-cli-bookworm`, `8.2-cli-bookworm`, `8.2.29-bookworm`, `8.2-bookworm`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/cli/Dockerfile) -- [`8.3.24RC1-apache-bookworm`, `8.3-rc-apache-bookworm`, `8.3.24RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/apache/Dockerfile) +- [`8.2.29-apache-bookworm`, `8.2-apache-bookworm`, `8.2.29-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/apache/Dockerfile) -- [`8.3.24RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`, `8.3.24RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.2.29-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.29-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/fpm/Dockerfile) -- [`8.3.24RC1-zts-bookworm`, `8.3-rc-zts-bookworm`, `8.3.24RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bookworm/zts/Dockerfile) +- [`8.2.29-zts-bookworm`, `8.2-zts-bookworm`, `8.2.29-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/zts/Dockerfile) -- [`8.3.24RC1-cli-bullseye`, `8.3-rc-cli-bullseye`, `8.3.24RC1-bullseye`, `8.3-rc-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/cli/Dockerfile) +- [`8.2.29-cli-bullseye`, `8.2-cli-bullseye`, `8.2.29-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/cli/Dockerfile) -- [`8.3.24RC1-apache-bullseye`, `8.3-rc-apache-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/apache/Dockerfile) +- [`8.2.29-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/apache/Dockerfile) -- [`8.3.24RC1-fpm-bullseye`, `8.3-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/fpm/Dockerfile) +- [`8.2.29-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/fpm/Dockerfile) -- [`8.3.24RC1-zts-bullseye`, `8.3-rc-zts-bullseye`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/bullseye/zts/Dockerfile) +- [`8.2.29-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/zts/Dockerfile) -- [`8.3.24RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.24RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.24RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.24RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/cli/Dockerfile) +- [`8.2.29-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.29-alpine3.22`, `8.2-alpine3.22`, `8.2.29-cli-alpine`, `8.2-cli-alpine`, `8.2.29-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.22/cli/Dockerfile) -- [`8.3.24RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.24RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/fpm/Dockerfile) +- [`8.2.29-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.29-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.22/fpm/Dockerfile) -- [`8.3.24RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.24RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.22/zts/Dockerfile) +- [`8.2.29-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.29-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.22/zts/Dockerfile) -- [`8.3.24RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.24RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.2.29-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.29-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.21/cli/Dockerfile) -- [`8.3.24RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.2.29-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.21/fpm/Dockerfile) -- [`8.3.24RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/1df1e6f4f88c8186c3147500503aa1ba7032b432/8.3-rc/alpine3.21/zts/Dockerfile) +- [`8.2.29-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.21/zts/Dockerfile) -- [`8.3.23-cli-bookworm`, `8.3-cli-bookworm`, `8.3.23-bookworm`, `8.3-bookworm`, `8.3.23-cli`, `8.3-cli`, `8.3.23`, `8.3`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/cli/Dockerfile) +- [`8.1.33-cli-bookworm`, `8.1-cli-bookworm`, `8.1.33-bookworm`, `8.1-bookworm`, `8.1.33-cli`, `8.1-cli`, `8.1.33`, `8.1`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/cli/Dockerfile) -- [`8.3.23-apache-bookworm`, `8.3-apache-bookworm`, `8.3.23-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/apache/Dockerfile) +- [`8.1.33-apache-bookworm`, `8.1-apache-bookworm`, `8.1.33-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/apache/Dockerfile) -- [`8.3.23-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.23-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/fpm/Dockerfile) +- [`8.1.33-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.33-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/fpm/Dockerfile) -- [`8.3.23-zts-bookworm`, `8.3-zts-bookworm`, `8.3.23-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bookworm/zts/Dockerfile) +- [`8.1.33-zts-bookworm`, `8.1-zts-bookworm`, `8.1.33-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/zts/Dockerfile) -- [`8.3.23-cli-bullseye`, `8.3-cli-bullseye`, `8.3.23-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/cli/Dockerfile) +- [`8.1.33-cli-bullseye`, `8.1-cli-bullseye`, `8.1.33-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/cli/Dockerfile) -- [`8.3.23-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/apache/Dockerfile) +- [`8.1.33-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/apache/Dockerfile) -- [`8.3.23-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/fpm/Dockerfile) +- [`8.1.33-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/fpm/Dockerfile) -- [`8.3.23-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/bullseye/zts/Dockerfile) +- [`8.1.33-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/zts/Dockerfile) -- [`8.3.23-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.23-alpine3.22`, `8.3-alpine3.22`, `8.3.23-cli-alpine`, `8.3-cli-alpine`, `8.3.23-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/cli/Dockerfile) +- [`8.1.33-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.33-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.22/cli/Dockerfile) -- [`8.3.23-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.23-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/fpm/Dockerfile) +- [`8.1.33-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.22/fpm/Dockerfile) -- [`8.3.23-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.23-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.22/zts/Dockerfile) +- [`8.1.33-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.22/zts/Dockerfile) -- [`8.3.23-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.23-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/cli/Dockerfile) +- [`8.1.33-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.33-alpine3.21`, `8.1-alpine3.21`, `8.1.33-cli-alpine`, `8.1-cli-alpine`, `8.1.33-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.21/cli/Dockerfile) -- [`8.3.23-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/fpm/Dockerfile) +- [`8.1.33-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.33-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.21/fpm/Dockerfile) -- [`8.3.23-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/dc6a79be0a4a1e0bb310e3d9b1ac230e8335bf3c/8.3/alpine3.21/zts/Dockerfile) - -- [`8.2.29-cli-bookworm`, `8.2-cli-bookworm`, `8.2.29-bookworm`, `8.2-bookworm`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/cli/Dockerfile) - -- [`8.2.29-apache-bookworm`, `8.2-apache-bookworm`, `8.2.29-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/apache/Dockerfile) - -- [`8.2.29-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.29-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/fpm/Dockerfile) - -- [`8.2.29-zts-bookworm`, `8.2-zts-bookworm`, `8.2.29-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bookworm/zts/Dockerfile) - -- [`8.2.29-cli-bullseye`, `8.2-cli-bullseye`, `8.2.29-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/cli/Dockerfile) - -- [`8.2.29-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/apache/Dockerfile) - -- [`8.2.29-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/fpm/Dockerfile) - -- [`8.2.29-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/bullseye/zts/Dockerfile) - -- [`8.2.29-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.29-alpine3.22`, `8.2-alpine3.22`, `8.2.29-cli-alpine`, `8.2-cli-alpine`, `8.2.29-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/cli/Dockerfile) - -- [`8.2.29-fpm-alpine3.22`, `8.2-fpm-alpine3.22`, `8.2.29-fpm-alpine`, `8.2-fpm-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/fpm/Dockerfile) - -- [`8.2.29-zts-alpine3.22`, `8.2-zts-alpine3.22`, `8.2.29-zts-alpine`, `8.2-zts-alpine`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.22/zts/Dockerfile) - -- [`8.2.29-cli-alpine3.21`, `8.2-cli-alpine3.21`, `8.2.29-alpine3.21`, `8.2-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/cli/Dockerfile) - -- [`8.2.29-fpm-alpine3.21`, `8.2-fpm-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/fpm/Dockerfile) - -- [`8.2.29-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/1d98d9a5553c480eed01d2598cf7efaf024169b8/8.2/alpine3.21/zts/Dockerfile) - -- [`8.1.33-cli-bookworm`, `8.1-cli-bookworm`, `8.1.33-bookworm`, `8.1-bookworm`, `8.1.33-cli`, `8.1-cli`, `8.1.33`, `8.1`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/cli/Dockerfile) - -- [`8.1.33-apache-bookworm`, `8.1-apache-bookworm`, `8.1.33-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/apache/Dockerfile) - -- [`8.1.33-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.33-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/fpm/Dockerfile) - -- [`8.1.33-zts-bookworm`, `8.1-zts-bookworm`, `8.1.33-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bookworm/zts/Dockerfile) - -- [`8.1.33-cli-bullseye`, `8.1-cli-bullseye`, `8.1.33-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/cli/Dockerfile) - -- [`8.1.33-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/apache/Dockerfile) - -- [`8.1.33-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/fpm/Dockerfile) - -- [`8.1.33-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/bullseye/zts/Dockerfile) - -- [`8.1.33-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.33-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/cli/Dockerfile) - -- [`8.1.33-fpm-alpine3.22`, `8.1-fpm-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/fpm/Dockerfile) - -- [`8.1.33-zts-alpine3.22`, `8.1-zts-alpine3.22`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.22/zts/Dockerfile) - -- [`8.1.33-cli-alpine3.21`, `8.1-cli-alpine3.21`, `8.1.33-alpine3.21`, `8.1-alpine3.21`, `8.1.33-cli-alpine`, `8.1-cli-alpine`, `8.1.33-alpine`, `8.1-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/cli/Dockerfile) - -- [`8.1.33-fpm-alpine3.21`, `8.1-fpm-alpine3.21`, `8.1.33-fpm-alpine`, `8.1-fpm-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/fpm/Dockerfile) - -- [`8.1.33-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.33-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/37fbae995ce28e07d2f955eadeb05e1b30eba39d/8.1/alpine3.21/zts/Dockerfile) +- [`8.1.33-zts-alpine3.21`, `8.1-zts-alpine3.21`, `8.1.33-zts-alpine`, `8.1-zts-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.21/zts/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 9ccbc0ab37d0..306a6ebcdbf6 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/f48199c1547583407e595de52e818ec68db5a161/4.1/ubuntu/Dockerfile) +- [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/ubuntu/Dockerfile) -- [`4.1.2-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) +- [`4.1.3-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.2-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/f48199c1547583407e595de52e818ec68db5a161/4.1/alpine/Dockerfile) +- [`4.1.3-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/alpine/Dockerfile) -- [`4.1.2-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) +- [`4.1.3-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/ubuntu/Dockerfile) @@ -40,11 +40,11 @@ WARNING: - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/797c08ce61d680137277f7e6f5d56ec7ea181137/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/4fe4142e5f9df0b54da6f226b4747f718c8f221b/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/797c08ce61d680137277f7e6f5d56ec7ea181137/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/4fe4142e5f9df0b54da6f226b4747f718c8f221b/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/redis/README.md b/redis/README.md index ac8b5cc59d85..f593c223dd7c 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2-rc1`, `8.2-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/dc9ceb8661ea4bfc660d73d6889533e0ae8fb3f3/debian/Dockerfile) +- [`8.2.0`, `8.2`, `8`, `8.2.0-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/e19e964037c9a47962beaf727fa623c7fe1bed6b/debian/Dockerfile) -- [`8.2-rc1-alpine`, `8.2-rc1-alpine3.22`](https://github.com/redis/docker-library-redis/blob/dc9ceb8661ea4bfc660d73d6889533e0ae8fb3f3/alpine/Dockerfile) +- [`8.2.0-alpine`, `8.2-alpine`, `8-alpine`, `8.2.0-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/e19e964037c9a47962beaf727fa623c7fe1bed6b/alpine/Dockerfile) -- [`8.0.3`, `8.0`, `8`, `8.0.3-bookworm`, `8.0-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) +- [`8.0.3`, `8.0`, `8.0.3-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) -- [`8.0.3-alpine`, `8.0-alpine`, `8-alpine`, `8.0.3-alpine3.21`, `8.0-alpine3.21`, `8-alpine3.21`, `alpine`, `alpine3.21`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/alpine/Dockerfile) +- [`8.0.3-alpine`, `8.0-alpine`, `8.0.3-alpine3.21`, `8.0-alpine3.21`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/alpine/Dockerfile) - [`7.4.5`, `7.4`, `7`, `7.4.5-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.4/debian/Dockerfile) diff --git a/yourls/README.md b/yourls/README.md index 763a2ca1731a..1850c28bc87d 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/apache/Dockerfile) +- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/apache/Dockerfile) -- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/fpm/Dockerfile) +- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/fpm/Dockerfile) -- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/89dfcf9b332685465708b98d3151d39f4f6340a0/fpm-alpine/Dockerfile) +- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/fpm-alpine/Dockerfile) # Quick reference (cont.) From fc1ae7ad63a076b1daddfa69cc7044d3fee991a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Tue, 5 Aug 2025 00:01:59 +0200 Subject: [PATCH 2401/2686] Reflect latest changes in YOURLS docs (#2605) --- yourls/compose.yaml | 9 ++++--- yourls/content.md | 59 +++++++++++++++++++++++++++++++-------------- yourls/github-repo | 2 +- 3 files changed, 48 insertions(+), 22 deletions(-) diff --git a/yourls/compose.yaml b/yourls/compose.yaml index 87af36411f98..f07816e8285e 100644 --- a/yourls/compose.yaml +++ b/yourls/compose.yaml @@ -1,19 +1,22 @@ +name: yourls services: - yourls: image: yourls restart: always + depends_on: + - mysql ports: - - 8080:80 + - 8080:8080 environment: YOURLS_DB_PASS: example YOURLS_SITE: https://example.com YOURLS_USER: example_username YOURLS_PASS: example_password - mysql: image: mysql restart: always environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: yourls + volumes: + - db:/var/lib/mysql diff --git a/yourls/content.md b/yourls/content.md index 13bec42f52b5..541bd27aa006 100644 --- a/yourls/content.md +++ b/yourls/content.md @@ -10,29 +10,42 @@ YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener ## Start a `%%IMAGE%%` server instance -```console -$ docker run --name some-%%REPO%% --link some-mysql:mysql \ - -e YOURLS_SITE="https://example.com" \ - -e YOURLS_USER="example_username" \ - -e YOURLS_PASS="example_password" \ - -d %%IMAGE%% +```bash +docker run \ + --name some-%%REPO%% \ + --detach \ + --network some-network \ + --env YOURLS_SITE="https://example.com" \ + --env YOURLS_USER="example_username" \ + --env YOURLS_PASS="example_password" \ + %%IMAGE%% ``` The YOURLS instance accepts a number of environment variables for configuration, see *Environment Variables* section below. -If you'd like to use an external database instead of a linked `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`): +If you'd like to use an external database instead of a `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`): -```console -$ docker run --name some-%%REPO%%s -e YOURLS_DB_HOST=10.1.2.3:3306 \ - -e YOURLS_DB_USER=... -e YOURLS_DB_PASS=... -d %%IMAGE%% +```bash +docker run \ + --name some-%%REPO%% \ + --detach \ + --env YOURLS_DB_HOST=... \ + --env YOURLS_DB_USER=... \ + --env YOURLS_DB_PASS=... \ + %%IMAGE%% ``` ## Connect to the YOURLS administration interface If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used: -```console -$ docker run --name some-%%REPO%% --link some-mysql:mysql -p 8080:80 -d %%IMAGE%% +```bash +docker run \ + --name some-%%REPO%% \ + --detach \ + --network some-network \ + --publish 8080:8080 \ + %%IMAGE%% ``` Then, access it via `http://localhost:8080/admin/` or `http://:8080/admin/` in a browser. @@ -41,7 +54,7 @@ Then, access it via `http://localhost:8080/admin/` or `http://:8080/adm ## Environment Variables -When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command line. +When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command-line. The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/docs/guide/essentials/configuration). A few notable/important examples for using this Docker image include the following. @@ -86,15 +99,19 @@ Database tables prefix, defaults to `yourls_`. Only set this when you need to ov As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: -```console -$ docker run --name some-%%REPO%% -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root ... -d %%IMAGE%%:tag +```bash +docker run \ + --name some-%%REPO%% \ + --detach \ + --env YOURLS_DB_PASS_FILE=/run/secrets/mysql-root \ + %%IMAGE%% ``` Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`. ## %%COMPOSE%% -Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/` or `http://:8080/admin/` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/`, or `http://:8080/admin/` (as appropriate). ## Adding additional libraries / extensions @@ -102,6 +119,12 @@ This image does not provide any additional PHP extensions or other libraries, ev If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. -The following Docker Hub features can help with the task of keeping your dependent images up-to-date: +## Include persistent user-content -- [Automated Builds](https://docs.docker.com/docker-hub/builds/) let Docker Hub automatically build your Dockerfile each time you push changes to it. +Mount the volume containing your plugins, pages or languages to the proper directory; and then apply them through the "admin" UI. Ensure read/write/execute permissions are in place for the user: + +- Plugins go in a subdirectory in `/var/www/html/user/plugins/` +- Pages go in a subdirectory in `/var/www/html/user/pages/` +- Languages go in a subdirectory in `/var/www/html/user/languages/` + +If you wish to provide additional content in an image for deploying in multiple installations, place it in the same directories under `/usr/src/yourls/` instead (which gets copied to `/var/www/html/` on the container's initial startup). diff --git a/yourls/github-repo b/yourls/github-repo index 8f03e3682b1e..291559eac2d3 100644 --- a/yourls/github-repo +++ b/yourls/github-repo @@ -1 +1 @@ -https://github.com/YOURLS/docker +https://github.com/YOURLS/containers From 1253f1e4e39d9ee2c9d49585fc524a6c43a476f4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 4 Aug 2025 15:10:55 -0700 Subject: [PATCH 2402/2686] Run update.sh --- arangodb/README.md | 2 +- yourls/README.md | 72 +++++++++++++++++++++++++++++++--------------- 2 files changed, 50 insertions(+), 24 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 4bfe0ee445dd..633236a19203 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12`, `3.12.5`, `latest`](https://github.com/arangodb/arangodb-docker/blob/fc9ce3eff9804b5232c97894c603266eae12a592/alpine/3.12.5/Dockerfile) +- [`3.12`, `3.12.5.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/0584d0d3a17f0d4b13cd549b0f4f36a1f6cc65cc/alpine/3.12.5.2/Dockerfile) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index 1850c28bc87d..77eb8835fbc2 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -17,7 +17,7 @@ WARNING: # Quick reference - **Maintained by**: - [YOURLS](https://github.com/YOURLS/docker) + [YOURLS](https://github.com/YOURLS/containers) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) @@ -33,7 +33,7 @@ WARNING: # Quick reference (cont.) - **Where to file issues**: - [https://github.com/YOURLS/docker/issues](https://github.com/YOURLS/docker/issues?q=) + [https://github.com/YOURLS/containers/issues](https://github.com/YOURLS/containers/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`mips64le`](https://hub.docker.com/r/mips64le/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`riscv64`](https://hub.docker.com/r/riscv64/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) @@ -61,29 +61,42 @@ YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener ## Start a `yourls` server instance -```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 +```bash +docker run \ + --name some-yourls \ + --detach \ + --network some-network \ + --env YOURLS_SITE="https://example.com" \ + --env YOURLS_USER="example_username" \ + --env YOURLS_PASS="example_password" \ + yourls ``` The YOURLS instance accepts a number of environment variables for configuration, see *Environment Variables* section below. -If you'd like to use an external database instead of a linked `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`): +If you'd like to use an external database instead of a `mysql` container, specify the hostname and port with `YOURLS_DB_HOST` along with the password in `YOURLS_DB_PASS` and the username in `YOURLS_DB_USER` (if it is something other than `root`): -```console -$ docker run --name some-yourlss -e YOURLS_DB_HOST=10.1.2.3:3306 \ - -e YOURLS_DB_USER=... -e YOURLS_DB_PASS=... -d yourls +```bash +docker run \ + --name some-yourls \ + --detach \ + --env YOURLS_DB_HOST=... \ + --env YOURLS_DB_USER=... \ + --env YOURLS_DB_PASS=... \ + yourls ``` ## Connect to the YOURLS administration interface If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used: -```console -$ docker run --name some-yourls --link some-mysql:mysql -p 8080:80 -d yourls +```bash +docker run \ + --name some-yourls \ + --detach \ + --network some-network \ + --publish 8080:8080 \ + yourls ``` Then, access it via `http://localhost:8080/admin/` or `http://:8080/admin/` in a browser. @@ -92,7 +105,7 @@ Then, access it via `http://localhost:8080/admin/` or `http://:8080/adm ## Environment Variables -When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command line. +When you start the `yourls` image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the `docker run` command-line. The YOURLS instance accepts [a number of environment variables for configuration](https://yourls.org/docs/guide/essentials/configuration). A few notable/important examples for using this Docker image include the following. @@ -137,8 +150,12 @@ Database tables prefix, defaults to `yourls_`. Only set this when you need to ov As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/` files. For example: -```console -$ docker run --name some-yourls -e YOURLS_DB_PASS_FILE=/run/secrets/mysql-root ... -d yourls:tag +```bash +docker run \ + --name some-yourls \ + --detach \ + --env YOURLS_DB_PASS_FILE=/run/secrets/mysql-root \ + yourls ``` Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_PASS`, `YOURLS_DB_NAME`, `YOURLS_DB_PREFIX`, `YOURLS_SITE`, `YOURLS_USER`, and `YOURLS_PASS`. @@ -148,28 +165,31 @@ Currently, this is supported for `YOURLS_DB_HOST`, `YOURLS_DB_USER`, `YOURLS_DB_ Example `compose.yaml` for `yourls`: ```yaml +name: yourls services: - yourls: image: yourls restart: always + depends_on: + - mysql ports: - - 8080:80 + - 8080:8080 environment: YOURLS_DB_PASS: example YOURLS_SITE: https://example.com YOURLS_USER: example_username YOURLS_PASS: example_password - mysql: image: mysql restart: always environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: yourls + volumes: + - db:/var/lib/mysql ``` -Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/` or `http://:8080/admin/` (as appropriate). +Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8080/admin/`, or `http://:8080/admin/` (as appropriate). ## Adding additional libraries / extensions @@ -177,9 +197,15 @@ This image does not provide any additional PHP extensions or other libraries, ev If you need additional PHP extensions, you'll need to create your own image `FROM` this one. The [documentation of the `php` image](https://github.com/docker-library/docs/blob/master/php/README.md#how-to-install-more-php-extensions) explains how to compile additional extensions. -The following Docker Hub features can help with the task of keeping your dependent images up-to-date: +## Include persistent user-content + +Mount the volume containing your plugins, pages or languages to the proper directory; and then apply them through the "admin" UI. Ensure read/write/execute permissions are in place for the user: + +- Plugins go in a subdirectory in `/var/www/html/user/plugins/` +- Pages go in a subdirectory in `/var/www/html/user/pages/` +- Languages go in a subdirectory in `/var/www/html/user/languages/` -- [Automated Builds](https://docs.docker.com/docker-hub/builds/) let Docker Hub automatically build your Dockerfile each time you push changes to it. +If you wish to provide additional content in an image for deploying in multiple installations, place it in the same directories under `/usr/src/yourls/` instead (which gets copied to `/var/www/html/` on the container's initial startup). # Image Variants From f1e04374ccc35cea5660c01d6d3fb42366dcd733 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Aug 2025 10:10:53 -0700 Subject: [PATCH 2403/2686] Run update.sh --- fedora/README.md | 6 ++-- gradle/README.md | 92 +++++++++++++++++++++++++++++++++++------------ ibmjava/README.md | 6 ++-- neo4j/README.md | 8 ++--- percona/README.md | 4 +-- yourls/README.md | 6 ++-- 6 files changed, 84 insertions(+), 38 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 77f521101b83..7ca1efaee786 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ff3211c1190067ffba8e2b21c62c1cf4812a902e/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ff23717c9acc1ab32ef37417b4fee194a1af1a65/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/025e8072df0aed7bbc0cd1bcdce3cedb845dada5/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/53fba86f68cfa54ec3bf62495b871c13128ce38a/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/de8b7f5d466b995dab4ee8fa7561e653b4a870b4/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e39e58d83994f1e4535f6f7748bd634ac9beb558/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index f7f4dcb25640..946419e026cb 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,33 +24,79 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `jdk21-noble`, `latest`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) +- [`9.0.0-jdk21`, `9.0-jdk21`, `9-jdk21`, `jdk21`, `9.0.0-jdk21-noble`, `9.0-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.0.0-jdk`, `9.0-jdk`, `9-jdk`, `jdk`, `9.0.0`, `9.0`, `9`, `9.0.0-jdk-noble`, `9.0-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.0.0-noble`, `9.0-noble`, `9-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) +- [`9.0.0-jdk21-jammy`, `9.0-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.0.0-jdk-jammy`, `9.0-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.0.0-jammy`, `9.0-jammy`, `9-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) +- [`9.0.0-jdk21-alpine`, `9.0-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.0.0-jdk-alpine`, `9.0-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.0.0-alpine`, `9.0-alpine`, `9-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `jdk21-corretto`, `corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) +- [`9.0.0-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.0.0-jdk21-corretto-al2023`, `9.0-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `jdk21-ubi`, `ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) +- [`9.0.0-jdk21-ubi`, `9.0-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.0.0-jdk21-ubi-minimal`, `9.0-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) +- [`9.0.0-jdk21-graal`, `9.0-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.0.0-jdk-graal`, `9.0-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.0.0-graal`, `9.0-graal`, `9-graal`, `graal`, `9.0.0-jdk21-graal-noble`, `9.0-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.0.0-jdk-graal-noble`, `9.0-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.0.0-graal-noble`, `9.0-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) +- [`9.0.0-jdk21-graal-jammy`, `9.0-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.0.0-jdk-graal-jammy`, `9.0-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.0.0-graal-jammy`, `9.0-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) +- [`9.0.0-jdk17`, `9.0-jdk17`, `9-jdk17`, `jdk17`, `9.0.0-jdk17-noble`, `9.0-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) +- [`9.0.0-jdk17-jammy`, `9.0-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) +- [`9.0.0-jdk17-alpine`, `9.0-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) +- [`9.0.0-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.0.0-jdk17-corretto-al2023`, `9.0-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) +- [`9.0.0-jdk17-ubi`, `9.0-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.0.0-jdk17-ubi-minimal`, `9.0-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) +- [`9.0.0-jdk17-graal`, `9.0-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.0.0-jdk17-graal-noble`, `9.0-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) +- [`9.0.0-jdk17-graal-jammy`, `9.0-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy-graal/Dockerfile) + +- [`9.0.0-jdk24`, `9.0-jdk24`, `9-jdk24`, `jdk24`, `9.0.0-jdk24-noble`, `9.0-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble/Dockerfile) + +- [`9.0.0-jdk24-alpine`, `9.0-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-alpine/Dockerfile) + +- [`9.0.0-jdk24-corretto`, `9.0-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.0.0-jdk24-corretto-al2023`, `9.0-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-corretto/Dockerfile) + +- [`9.0.0-jdk24-ubi`, `9.0-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.0.0-jdk24-ubi-minimal`, `9.0-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-ubi9/Dockerfile) + +- [`9.0.0-jdk24-graal`, `9.0-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.0.0-jdk24-graal-noble`, `9.0-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble-graal/Dockerfile) + +- [`9.0.0-jdk-lts-and-current`, `9.0-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.0.0-jdk-lts-and-current-noble`, `9.0-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.0.0-jdk-21-and-24`, `9.0-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.0.0-jdk-21-and-24-noble`, `9.0-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current/Dockerfile) + +- [`9.0.0-jdk-lts-and-current-alpine`, `9.0-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.0.0-jdk-21-and-24-alpine`, `9.0-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-alpine/Dockerfile) + +- [`9.0.0-jdk-lts-and-current-corretto`, `9.0-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.0.0-jdk-lts-and-current-corretto-al2023`, `9.0-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.0.0-jdk-21-and-24-corretto`, `9.0-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.0.0-jdk-21-and-24-corretto-al2023`, `9.0-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-corretto/Dockerfile) + +- [`9.0.0-jdk-lts-and-current-graal`, `9.0-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.0.0-jdk-lts-and-current-graal-noble`, `9.0-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.0.0-jdk-21-and-24-graal`, `9.0-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.0.0-jdk-21-and-24-graal-noble`, `9.0-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-graal/Dockerfile) + +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) + +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) + +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) + +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) + +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) + +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) + +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) + +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) + +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) + +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) + +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) + +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) + +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) + +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) - [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-jammy/Dockerfile) @@ -66,23 +112,23 @@ WARNING: - [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) -- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) -- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) +- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) -- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) +- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) -- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) - [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) diff --git a/ibmjava/README.md b/ibmjava/README.md index 8ab9364dbead..91f06d6790ac 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/9f1804904c83b71533e810b7605ad93970cb3938/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index b5ec2c8ffa66..25c34b6c4c0b 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.06.2-community-bullseye`, `2025.06-community-bullseye`, `2025-community-bullseye`, `2025.06.2-community`, `2025.06-community`, `2025-community`, `2025.06.2-bullseye`, `2025.06-bullseye`, `2025-bullseye`, `2025.06.2`, `2025.06`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/bullseye/community/Dockerfile) +- [`2025.07.1-community-bullseye`, `2025.07-community-bullseye`, `2025-community-bullseye`, `2025.07.1-community`, `2025.07-community`, `2025-community`, `2025.07.1-bullseye`, `2025.07-bullseye`, `2025-bullseye`, `2025.07.1`, `2025.07`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/bullseye/community/Dockerfile) -- [`2025.06.2-enterprise-bullseye`, `2025.06-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.06.2-enterprise`, `2025.06-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/bullseye/enterprise/Dockerfile) +- [`2025.07.1-enterprise-bullseye`, `2025.07-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.07.1-enterprise`, `2025.07-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/bullseye/enterprise/Dockerfile) -- [`2025.06.2-community-ubi9`, `2025.06-community-ubi9`, `2025-community-ubi9`, `2025.06.2-ubi9`, `2025.06-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/ubi9/community/Dockerfile) +- [`2025.07.1-community-ubi9`, `2025.07-community-ubi9`, `2025-community-ubi9`, `2025.07.1-ubi9`, `2025.07-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/ubi9/community/Dockerfile) -- [`2025.06.2-enterprise-ubi9`, `2025.06-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c70ef1e4a356312ff114db0c8be67e5d91f9d1e8/2025.06.2/ubi9/enterprise/Dockerfile) +- [`2025.07.1-enterprise-ubi9`, `2025.07-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/ubi9/enterprise/Dockerfile) - [`5.26.10-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.10-community`, `5.26-community`, `5-community`, `5.26.10-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.10`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/bullseye/community/Dockerfile) diff --git a/percona/README.md b/percona/README.md index 068f927d9291..0c766719f92c 100644 --- a/percona/README.md +++ b/percona/README.md @@ -28,9 +28,9 @@ WARNING: - [`psmdb-8.0.8`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-8.0/Dockerfile-dockerhub) -- [`psmdb-7.0.18`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-7.0/Dockerfile-dockerhub) +- [`psmdb-7.0.22`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/c37d7c35b5d3ddeacdf8b6c837e7735c14ace89b/percona-server-mongodb-7.0/Dockerfile-dockerhub) -- [`psmdb-6.0.24`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-6.0/Dockerfile-dockerhub) +- [`psmdb-6.0.25`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/c37d7c35b5d3ddeacdf8b6c837e7735c14ace89b/percona-server-mongodb-6.0/Dockerfile-dockerhub) # Quick reference (cont.) diff --git a/yourls/README.md b/yourls/README.md index 77eb8835fbc2..ae3d60037bb4 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/apache/Dockerfile) +- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/apache/Dockerfile) -- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/fpm/Dockerfile) +- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/fpm/Dockerfile) -- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/b322b7c1cb96d7f139000a090f0529042f6c123c/fpm-alpine/Dockerfile) +- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/fpm-alpine/Dockerfile) # Quick reference (cont.) From ff8fd537b4135346c80c4224d98d7e25e16f3b28 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Aug 2025 14:10:10 -0700 Subject: [PATCH 2404/2686] Run update.sh --- bash/README.md | 2 +- cassandra/README.md | 2 +- maven/README.md | 20 +++++--------------- 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/bash/README.md b/bash/README.md index 59a1649e4b68..88c12684e31e 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250718`, `devel`, `devel-20250718-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/51dcae3851d7b406c17d000cd17adb0f8993d736/devel/Dockerfile) +- [`devel-20250804`, `devel`, `devel-20250804-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/352d5308eb7f15f0670a6f8ad275eb9b0f17490e/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index c3532c259208..1e9cf4a482bc 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.4`, `5.0`, `5`, `latest`, `5.0.4-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/0f32c04c976068ddf4b094044bd333ca46d42887/5.0/Dockerfile) +- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/da543c94df2e77fbbc83023c3259527aec45ec12/5.0/Dockerfile) - [`4.1.9`, `4.1`, `4`, `4.1.9-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/8b125f8e4cb082768e6d299130722ed3547e2206/4.1/Dockerfile) diff --git a/maven/README.md b/maven/README.md index f44a657e072c..11f27a6fc85f 100644 --- a/maven/README.md +++ b/maven/README.md @@ -24,35 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.11-eclipse-temurin-11`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11/Dockerfile) - - [`3.9.11-eclipse-temurin-11-alpine`, `3.9-eclipse-temurin-11-alpine`, `3-eclipse-temurin-11-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11-alpine/Dockerfile) -- [`3.9.11-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11-noble`, `3-eclipse-temurin-11-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-11-noble/Dockerfile) - -- [`3.9.11-eclipse-temurin-17`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17/Dockerfile) +- [`3.9.11-eclipse-temurin-11-noble`, `3.9.11-eclipse-temurin-11`, `3.9-eclipse-temurin-11-noble`, `3.9-eclipse-temurin-11`, `3-eclipse-temurin-11-noble`, `3-eclipse-temurin-11`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-11-noble/Dockerfile) - [`3.9.11-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17-alpine/Dockerfile) -- [`3.9.11-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17-noble`, `3-eclipse-temurin-17-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17-noble/Dockerfile) - -- [`3.9.11-eclipse-temurin-21`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3.9`, `3.9-eclipse-temurin`, `3-eclipse-temurin-21`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21/Dockerfile) +- [`3.9.11-eclipse-temurin-17-noble`, `3.9.11-eclipse-temurin-17`, `3.9-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17-noble`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-17-noble/Dockerfile) - [`3.9.11-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-alpine/Dockerfile) -- [`3.9.11-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21-noble`, `3-eclipse-temurin-21-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-noble/Dockerfile) - -- [`3.9.11-eclipse-temurin-24`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24/Dockerfile) +- [`3.9.11-eclipse-temurin-21-noble`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9.11-eclipse-temurin-21`, `3.9-eclipse-temurin-21-noble`, `3.9`, `3.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3-eclipse-temurin-21-noble`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`, `3-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-21-noble/Dockerfile) - [`3.9.11-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-alpine/Dockerfile) -- [`3.9.11-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24-noble`, `3-eclipse-temurin-24-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-noble/Dockerfile) - -- [`3.9.11-eclipse-temurin-8`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8/Dockerfile) +- [`3.9.11-eclipse-temurin-24-noble`, `3.9.11-eclipse-temurin-24`, `3.9-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24-noble`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-24-noble/Dockerfile) - [`3.9.11-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-alpine/Dockerfile) -- [`3.9.11-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8-noble`, `3-eclipse-temurin-8-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-8-noble`, `3.9.11-eclipse-temurin-8`, `3.9-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8-noble`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-8-noble/Dockerfile) - [`3.9.11-ibmjava-8`, `3.9.11-ibmjava`, `3.9-ibmjava-8`, `3.9-ibmjava`, `3-ibmjava-8`, `3-ibmjava`, `ibmjava`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibmjava-8/Dockerfile) From fc4d9ff99f11624764b46f0d79f26b7e49ad7c70 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Aug 2025 10:10:13 -0700 Subject: [PATCH 2405/2686] Run update.sh --- aerospike/README.md | 4 ++-- rocket.chat/README.md | 16 ++++++---------- sonarqube/README.md | 20 ++++++++++---------- 3 files changed, 18 insertions(+), 22 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index 69ac1796f1f1..e563fa4de57a 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.0.0.9`, `ee-8.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/89436530fb2cfa4613ada9a2e6d63733faa51195/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.1.0.0`, `ee-8.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/d2d1e58437ea00ef3811529920a1cbfc0018a751/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.0.0.9`, `ce-8.0.0.9_1`](https://github.com/aerospike/aerospike-server.docker/blob/89436530fb2cfa4613ada9a2e6d63733faa51195/community/ubuntu24.04/Dockerfile) +- [`ce-8.1.0.0`, `ce-8.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/d2d1e58437ea00ef3811529920a1cbfc0018a751/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 4555c872062f..0312844a8ad8 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,21 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.9.0`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/a65636d0b5acd05f5927ef9a407f007fc420cb09/7.9/Dockerfile) +- [`7.9.1`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.9/Dockerfile) -- [`7.8.3`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.8/Dockerfile) +- [`7.8.4`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.8/Dockerfile) -- [`7.7.7`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/fb174298d2cfd5c817d1d314d045725553ff9d41/7.7/Dockerfile) +- [`7.7.8`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.7/Dockerfile) -- [`7.6.4`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.6/Dockerfile) +- [`7.6.5`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.6/Dockerfile) -- [`7.5.3`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.5/Dockerfile) +- [`7.5.4`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.5/Dockerfile) -- [`7.4.4`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/33ff6d3801e4aeacdd4aeb207e6efe4c374708d1/7.4/Dockerfile) - -- [`7.3.6`, `7.3`](https://github.com/RocketChat/Docker.Official.Image/blob/bc65dcc31c5ccd8fe8b1d4790004d1d1c8c83e60/7.3/Dockerfile) - -- [`7.2.6`, `7.2`](https://github.com/RocketChat/Docker.Official.Image/blob/baa98d62388a0ef1975816c8489679832ef8e8f8/7.2/Dockerfile) +- [`7.4.5`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.4/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 68cb124c5b9d..319a9c085aa0 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.4.1-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/developer/Dockerfile) +- [`2025.4.2-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/developer/Dockerfile) -- [`2025.4.1-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/enterprise/Dockerfile) +- [`2025.4.2-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/enterprise/Dockerfile) -- [`2025.4.1-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.2-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/datacenter/app/Dockerfile) -- [`2025.4.1-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.2-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/datacenter/search/Dockerfile) - [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) @@ -40,17 +40,17 @@ WARNING: - [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) -- [`25.7.0.110598-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/community-build/Dockerfile) +- [`25.8.0.112029-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/dd566423d641b8fc06cf65229bc2cb1c5fe913f9/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/datacenter/search/Dockerfile) # Quick reference (cont.) From 9007d8848f1bddbef813fa0086bc1b95ec94793d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Aug 2025 14:10:16 -0700 Subject: [PATCH 2406/2686] Run update.sh --- ghost/README.md | 8 ++-- golang/README.md | 108 +++++++++++++++++++++++------------------------ 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 8f65d5fc3d59..0d6eab11d31e 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/2237b8ab43ce6b33ea5dbcf4c446c3fbdcea90cb/6/debian/Dockerfile) +- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/bb570dc7994c9827f7984aed03335fb9da8e1869/6/debian/Dockerfile) -- [`6.0.0-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2237b8ab43ce6b33ea5dbcf4c446c3fbdcea90cb/6/alpine/Dockerfile) +- [`6.0.0-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/bb570dc7994c9827f7984aed03335fb9da8e1869/6/alpine/Dockerfile) -- [`5.130.3`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/debian/Dockerfile) +- [`5.130.3`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/521da5fea8b4cccffdb40ad78205b96e8342b98d/5/debian/Dockerfile) -- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/ce47e6e3c1e58d76d5a9d7fa56042306a7767977/5/alpine/Dockerfile) +- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/521da5fea8b4cccffdb40ad78205b96e8342b98d/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 163ff61a3dcb..062a89f35f51 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,53 +28,53 @@ WARNING: ## Simple Tags -- [`1.25rc2-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bookworm/Dockerfile) +- [`1.25rc3-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bookworm/Dockerfile) -- [`1.25rc2-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bullseye/Dockerfile) +- [`1.25rc3-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bullseye/Dockerfile) -- [`1.25rc2-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc2-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/alpine3.22/Dockerfile) +- [`1.25rc3-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc3-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/alpine3.22/Dockerfile) -- [`1.25rc2-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/alpine3.21/Dockerfile) +- [`1.25rc3-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/alpine3.21/Dockerfile) -- [`1.25rc2-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25rc3-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25rc2-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25rc3-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25rc2-nanoserver-ltsc2025`, `1.25-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25rc3-nanoserver-ltsc2025`, `1.25-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25rc2-nanoserver-ltsc2022`, `1.25-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25rc3-nanoserver-ltsc2022`, `1.25-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.5-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bookworm/Dockerfile) +- [`1.24.6-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) -- [`1.24.5-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bullseye/Dockerfile) +- [`1.24.6-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bullseye/Dockerfile) -- [`1.24.5-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.5-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/alpine3.22/Dockerfile) +- [`1.24.6-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.6-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.22/Dockerfile) -- [`1.24.5-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/alpine3.21/Dockerfile) +- [`1.24.6-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.21/Dockerfile) -- [`1.24.5-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.6-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.5-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.6-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.5-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.6-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.5-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.11-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bookworm/Dockerfile) +- [`1.23.12-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bookworm/Dockerfile) -- [`1.23.11-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bullseye/Dockerfile) +- [`1.23.12-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bullseye/Dockerfile) -- [`1.23.11-alpine3.22`, `1.23-alpine3.22`, `1.23.11-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/alpine3.22/Dockerfile) +- [`1.23.12-alpine3.22`, `1.23-alpine3.22`, `1.23.12-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/alpine3.22/Dockerfile) -- [`1.23.11-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/alpine3.21/Dockerfile) +- [`1.23.12-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/alpine3.21/Dockerfile) -- [`1.23.11-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.23.12-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.23.11-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.23.12-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.23.11-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.23.12-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.23.11-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.23.12-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20250801-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bookworm/Dockerfile) @@ -86,53 +86,53 @@ WARNING: ## Shared Tags -- `1.25rc2`, `1.25-rc`: +- `1.25rc3`, `1.25-rc`: - - [`1.25rc2-bookworm`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/bookworm/Dockerfile) - - [`1.25rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25rc3-bookworm`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bookworm/Dockerfile) + - [`1.25rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25rc2-windowsservercore`, `1.25-rc-windowsservercore`: +- `1.25rc3-windowsservercore`, `1.25-rc-windowsservercore`: - - [`1.25rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25rc2-nanoserver`, `1.25-rc-nanoserver`: +- `1.25rc3-nanoserver`, `1.25-rc-nanoserver`: - - [`1.25rc2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25rc2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/d82727d3498b0908f6fe532a368e0248d799ab39/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25rc3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.5`, `1.24`, `1`, `latest`: +- `1.24.6`, `1.24`, `1`, `latest`: - - [`1.24.5-bookworm`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/bookworm/Dockerfile) - - [`1.24.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.6-bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) + - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.5-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.6-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.24.5-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.5-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.5-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.6-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.24.5-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.5-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/17bfae27a00b1de386d538bceef7838810c2d80c/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `1.23.11`, `1.23`: +- `1.23.12`, `1.23`: - - [`1.23.11-bookworm`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/bookworm/Dockerfile) - - [`1.23.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.12-bookworm`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bookworm/Dockerfile) + - [`1.23.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.11-windowsservercore`, `1.23-windowsservercore`: +- `1.23.12-windowsservercore`, `1.23-windowsservercore`: - - [`1.23.11-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.11-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.23.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.23.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.23.11-nanoserver`, `1.23-nanoserver`: +- `1.23.12-nanoserver`, `1.23-nanoserver`: - - [`1.23.11-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.11-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/19c4c4251cc5acbeb799067d36339be4dcf134b8/1.23/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.23.12-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.23.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20250801`, `tip`: From e3d667c0ff2cbf5a0561e7148c39aee7893c2113 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 6 Aug 2025 16:11:08 -0700 Subject: [PATCH 2407/2686] Run update.sh --- nextcloud/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index 1da4bddf9716..8c23f85db487 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/apache/Dockerfile) +- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/apache/Dockerfile) -- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/fpm/Dockerfile) +- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/fpm/Dockerfile) -- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/30/fpm-alpine/Dockerfile) +- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/fpm-alpine/Dockerfile) -- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/apache/Dockerfile) +- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/apache/Dockerfile) -- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/fpm/Dockerfile) +- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/fpm/Dockerfile) -- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/4a6e70cdb3288df1bc221d9064a96ffb6ca24437/31/fpm-alpine/Dockerfile) +- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/fpm-alpine/Dockerfile) # Quick reference (cont.) From cf3291f59be6fce0317d7283b7f18ee6026e38c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Aug 2025 10:10:20 -0700 Subject: [PATCH 2408/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- dart/README.md | 4 ++-- odoo/README.md | 6 +++--- silverpeas/README.md | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 733fd06494a4..0b507dfc5209 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.1`, `25.7.1-jammy`, `25.7.1.3997`, `25.7.1.3997-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.7.1.3997/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.2`, `25.7.2-jammy`, `25.7.2.54`, `25.7.2.54-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.7.2.54/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.6`, `25.6.6-jammy`, `25.6.6.29`, `25.6.6.29-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.6.6.29/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.6.8.10/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.5.9.14/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.5.9.14/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/c3c67371961b5efb723ad9b4755f7178b458f9b7/server/25.3.6.56/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 5f2cd32afe57..0d53c6289f7e 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.2-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.2`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b3e6c15a66ef81c416efa30c2316a731cdc694a7/stable/bookworm/Dockerfile) +- [`3.8.3-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.3`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/19c93897da021cf96a8466f017fbba294b9cb4f6/stable/bookworm/Dockerfile) -- [`3.9.0-333.3.beta-sdk`, `beta-sdk`, `3.9.0-333.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b3e6c15a66ef81c416efa30c2316a731cdc694a7/beta/bookworm/Dockerfile) +- [`3.9.0-333.4.beta-sdk`, `beta-sdk`, `3.9.0-333.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/19c93897da021cf96a8466f017fbba294b9cb4f6/beta/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 33264910a2a0..0e283c6e0f52 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250725`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/18.0/Dockerfile) +- [`18.0-20250807`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/18.0/Dockerfile) -- [`17.0-20250725`, `17.0`, `17`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/17.0/Dockerfile) +- [`17.0-20250807`, `17.0`, `17`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/17.0/Dockerfile) -- [`16.0-20250725`, `16.0`, `16`](https://github.com/odoo/docker/blob/aa4008ad317c2e442c75ff3540cc95373f44aec8/16.0/Dockerfile) +- [`16.0-20250807`, `16.0`, `16`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/16.0/Dockerfile) # Quick reference (cont.) diff --git a/silverpeas/README.md b/silverpeas/README.md index b994f3adf9db..434c50544bc7 100644 --- a/silverpeas/README.md +++ b/silverpeas/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.3`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/79cad3dae9a20fb2fb404fba5641c5921d410112/Dockerfile) +- [`6.4.4`, `latest`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/2094ddb26caec9820d1852a9fa2bc3c2c84a1ada/Dockerfile) -- [`6.3.6`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/f0a4c728794ad0e1f06de88cbea9599489634bf6/Dockerfile) +- [`6.3.6`](https://github.com/Silverpeas/docker-silverpeas-prod/blob/fb25885d1cd43172693b3acf79e9fac056a9db34/Dockerfile) # Quick reference (cont.) From 94f34a6c60256581fdacfed0c4fd88fd0a74e6ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Aug 2025 11:10:13 -0700 Subject: [PATCH 2409/2686] Run update.sh --- haproxy/README.md | 4 +-- jruby/README.md | 64 ++++++++++++++++++------------------- python/README.md | 30 +++++++++--------- tomcat/README.md | 80 +++++++++++++++++++++++------------------------ 4 files changed, 89 insertions(+), 89 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index c74fe8ae0a02..37f7b2b7007f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev5`, `3.3-dev`, `3.3-dev5-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/5ad5441e37d329696c2022721a2575d3be5fd1d4/3.3/Dockerfile) +- [`3.3-dev6`, `3.3-dev`, `3.3-dev6-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/Dockerfile) -- [`3.3-dev5-alpine`, `3.3-dev-alpine`, `3.3-dev5-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/5ad5441e37d329696c2022721a2575d3be5fd1d4/3.3/alpine/Dockerfile) +- [`3.3-dev6-alpine`, `3.3-dev-alpine`, `3.3-dev6-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/alpine/Dockerfile) - [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/Dockerfile) diff --git a/jruby/README.md b/jruby/README.md index 9cfa9930d42f..29cbb5934f15 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.1`, `10.0-jre`, `10.0-jre21`, `10.0.1-jre`, `10.0.1-jre21`, `10.0.1.0`, `10.0.1.0-jre`, `10.0.1.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.2`, `10.0-jre`, `10.0-jre21`, `10.0.2-jre`, `10.0.2-jre21`, `10.0.2.0`, `10.0.2.0-jre`, `10.0.2.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.1-jdk`, `10.0.1-jdk21`, `10.0.1.0-jdk`, `10.0.1.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.2-jdk`, `10.0.2-jdk21`, `10.0.2.0-jdk`, `10.0.2.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.1-jre24`, `10.0.1.0-jre24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.2-jre24`, `10.0.2.0-jre24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.1-jdk24`, `10.0.1.0-jdk24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.2-jdk24`, `10.0.2.0-jdk24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre21/Dockerfile) -- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jre21/Dockerfile) +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jre21/Dockerfile) -- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jdk21/Dockerfile) +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jdk21/Dockerfile) -- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jre24/Dockerfile) +- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jre24/Dockerfile) -- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/10.0-dev/jdk24/Dockerfile) +- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jdk24/Dockerfile) -- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre8/Dockerfile) +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre8/Dockerfile) -- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk8/Dockerfile) +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk8/Dockerfile) -- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre11/Dockerfile) +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre11/Dockerfile) -- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk11/Dockerfile) +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk11/Dockerfile) -- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk17/Dockerfile) +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk17/Dockerfile) -- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre17/Dockerfile) +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre17/Dockerfile) -- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jdk21/Dockerfile) +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk21/Dockerfile) -- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/b750df0f044ac7c3e4f1224948245ab5c0fc5ce8/9.4-dev/jre21/Dockerfile) +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre21/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 02cb62c98cf9..f3494a615f70 100644 --- a/python/README.md +++ b/python/README.md @@ -44,21 +44,21 @@ WARNING: - [`3.14.0rc1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.5-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) +- [`3.13.6-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bookworm/Dockerfile) -- [`3.13.5-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.5-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/slim-bookworm/Dockerfile) +- [`3.13.6-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.6-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/slim-bookworm/Dockerfile) -- [`3.13.5-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bullseye/Dockerfile) +- [`3.13.6-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bullseye/Dockerfile) -- [`3.13.5-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/slim-bullseye/Dockerfile) +- [`3.13.6-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/slim-bullseye/Dockerfile) -- [`3.13.5-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.5-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/alpine3.22/Dockerfile) +- [`3.13.6-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/alpine3.22/Dockerfile) -- [`3.13.5-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/alpine3.21/Dockerfile) +- [`3.13.6-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/alpine3.21/Dockerfile) -- [`3.13.5-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.6-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.5-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.6-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) @@ -121,16 +121,16 @@ WARNING: - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.5`, `3.13`, `3`, `latest`: +- `3.13.6`, `3.13`, `3`, `latest`: - - [`3.13.5-bookworm`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/bookworm/Dockerfile) - - [`3.13.5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.6-bookworm`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bookworm/Dockerfile) + - [`3.13.6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.5-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.6-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.5-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.5-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3fae0a14ac171f46e47d7ce41567e40524af5bcc/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - `3.12.11`, `3.12`: diff --git a/tomcat/README.md b/tomcat/README.md index 936820dd8162..802c4c2c2b8e 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,85 +24,85 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.9-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.9-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.9-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.9`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.10-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.10-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.10-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.10`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.9-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.9-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.9-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.10-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.10-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.10-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.9-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.10-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.9-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.10-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.9-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.9-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.9-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.10-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.10-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.10-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.9-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.9-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.9-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.10-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.10-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.10-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.9-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.10-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.9-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/526d1f0ac9b6ba3745ef4479eb061837dff98076/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.10-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.43-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.43-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.43-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.43`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.44-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.44-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.44-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.44`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.43-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.43-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.43-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.44-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.44-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.44-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.43-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.44-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.43-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.44-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.43-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.43-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.43-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.44-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.44-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.44-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.43-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.43-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.43-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.44-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.44-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.44-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.43-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.44-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.43-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.44-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.43-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.43-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.43-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.44-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.44-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.44-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.43-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.43-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.43-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.44-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.44-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.44-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.43-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.44-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.43-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a5be8fac68a1479d94d74a47f0297379607e7a96/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.44-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.107-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.107-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.107-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.107`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.108-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.108-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.108-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.108`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.107-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.107-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.107-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.108-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.108-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.108-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.107-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.108-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.107-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.108-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.107-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.107-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.108-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.108-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.107-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.107-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.107-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.108-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.108-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.108-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.107-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.107-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.107-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.108-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.108-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.108-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.107-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.108-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.107-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.108-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.107-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.107-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.108-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.108-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.107-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.107-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.107-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.108-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.108-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.108-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.107-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.107-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.107-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.108-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.108-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.108-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.107-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.108-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.107-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.108-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.107-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.107-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.108-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.108-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.107-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.107-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.107-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.108-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.108-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.108-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.107-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.107-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.107-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.108-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.108-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.108-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.107-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.108-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.107-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.108-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.107-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.107-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fde8eb4da2a43616bcc2dbd94aa5a1fb570f9435/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.108-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.108-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From d6dd8425dcddc80b53394721734405cd4f6fdd57 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Aug 2025 12:10:07 -0700 Subject: [PATCH 2410/2686] Run update.sh --- mongo/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/mongo/README.md b/mongo/README.md index 1ef073f4fe95..fb2241aeca2e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,14 @@ WARNING: ## Simple Tags +- [`8.0.13-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/Dockerfile) + +- [`8.0.13-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.13-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.13-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.12-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) - [`8.0.12-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -62,6 +70,21 @@ WARNING: ## Shared Tags +- `8.0.13-rc1`, `8.0-rc`: + + - [`8.0.13-rc1-noble`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/Dockerfile) + - [`8.0.13-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.13-rc1-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.13-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.13-rc1-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.13-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `8.0.12`, `8.0`, `8`, `latest`: - [`8.0.12-noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) From 650c8572522f37509e959014bde29cf13314502b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 7 Aug 2025 17:10:14 -0700 Subject: [PATCH 2411/2686] Run update.sh --- drupal/README.md | 48 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 ++++++++++---------- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 31c90b49854f..c6f5ebb071ed 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.2-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.2-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.2-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.2-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.2-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.2`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.3-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.3-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.3-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.3-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.3-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.2-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.2-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.2-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.2-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.3-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.3-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.3-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.3-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.2-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.2-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/apache-bullseye/Dockerfile) +- [`11.2.3-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.3-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/apache-bullseye/Dockerfile) -- [`11.2.2-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.2-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.3-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.3-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-bullseye/Dockerfile) -- [`11.2.2-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.2-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.2-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.2-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.3-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.3-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.3-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.3-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.2-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.2-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.3-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.3-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.2-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.2-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.2-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.3-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.3-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.3-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.2-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.2-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.3-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.3-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.2-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/apache-bullseye/Dockerfile) +- [`11.2.3-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/apache-bullseye/Dockerfile) -- [`11.2.2-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.3-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-bullseye/Dockerfile) -- [`11.2.2-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.2-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.3-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.3-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.2-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/b1300ffa33df76577af07a1ffe68d4f56bbf1e03/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.3-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bookworm/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.1-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.1-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.1-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.1-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.1-apache`, `10.5-apache`, `10-apache`, `10.5.1`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.2-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.2-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.2-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.2-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.2-apache`, `10.5-apache`, `10-apache`, `10.5.2`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.1-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.1-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.1-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.1-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.2-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.2-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.2-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.2-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.1-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.1-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/apache-bullseye/Dockerfile) +- [`10.5.2-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.2-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/apache-bullseye/Dockerfile) -- [`10.5.1-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.1-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-bullseye/Dockerfile) +- [`10.5.2-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.2-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-bullseye/Dockerfile) -- [`10.5.1-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.1-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.1-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.1-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.2-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.2-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.2-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.2-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.1-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.1-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.2-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.2-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.1-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.1-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.1-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.2-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.2-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.2-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.1-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.1-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.2-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.2-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.1-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/apache-bullseye/Dockerfile) +- [`10.5.2-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/apache-bullseye/Dockerfile) -- [`10.5.1-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-bullseye/Dockerfile) +- [`10.5.2-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-bullseye/Dockerfile) -- [`10.5.1-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.1-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.2-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.2-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.1-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/e8fabe752bc049ebfcb5c4f9b5357020678d7988/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.2-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-alpine3.21/Dockerfile) - [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bookworm/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index d25d8ac4e25d..95977ddb19bb 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/680780efaa80d590309b635d2d5852ad05d34a82/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7-slim-fips/Dockerfile) # Quick reference (cont.) From befbf50312a27ca3f5e94a3aa887c399cbff1bf4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Aug 2025 10:10:12 -0700 Subject: [PATCH 2412/2686] Run update.sh --- rust/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rust/README.md b/rust/README.md index ebf382532636..b1e243afd7dc 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.88-bullseye`, `1.88.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.89-bullseye`, `1.89.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.88-slim-bullseye`, `1.88.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.89-slim-bullseye`, `1.89.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.88-bookworm`, `1.88.0-bookworm`, `bookworm`, `1`, `1.88`, `1.88.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.89-bookworm`, `1.89.0-bookworm`, `bookworm`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.88-slim-bookworm`, `1.88.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.88-slim`, `1.88.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/9ba2805c3642783b50436e140f5eaa9ecf173054/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.89-slim-bookworm`, `1.89.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.88-trixie`, `1.88.0-trixie`, `trixie`](https://github.com/rust-lang/docker-rust/blob/521720d715e0c4884c7424a27208568a83484baf/stable/trixie/Dockerfile) +- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.88-slim-trixie`, `1.88.0-slim-trixie`, `slim-trixie`](https://github.com/rust-lang/docker-rust/blob/521720d715e0c4884c7424a27208568a83484baf/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/slim/Dockerfile) -- [`1-alpine3.20`, `1.88-alpine3.20`, `1.88.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.89-alpine3.20`, `1.89.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.88-alpine3.21`, `1.88.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.89-alpine3.21`, `1.89.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.88-alpine3.22`, `1.88.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.88-alpine`, `1.88.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/425486915517526d57d0a5d1527bc3c4c944830c/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.89-alpine3.22`, `1.89.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.89-alpine`, `1.89.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.22/Dockerfile) # Quick reference (cont.) From 1c5e1a3954477000dc32ea6bce56e5f0ad0cbb8c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Aug 2025 14:10:10 -0700 Subject: [PATCH 2413/2686] Run update.sh --- php/README.md | 28 ++++++++++++++-------------- rabbitmq/README.md | 8 ++++++++ 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/php/README.md b/php/README.md index 2b5ded1d28e2..53a9d93e27fe 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0alpha2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha2-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha2-cli`, `8.5-rc-cli`, `8.5.0alpha2`, `8.5-rc`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0alpha4-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha4-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha4-cli`, `8.5-rc-cli`, `8.5.0alpha4`, `8.5-rc`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0alpha2-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0alpha4-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha4-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0alpha2-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha4-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0alpha2-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0alpha4-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha4-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0alpha2-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha2-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/cli/Dockerfile) +- [`8.5.0alpha4-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha4-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/cli/Dockerfile) -- [`8.5.0alpha2-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/apache/Dockerfile) +- [`8.5.0alpha4-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/apache/Dockerfile) -- [`8.5.0alpha2-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/fpm/Dockerfile) -- [`8.5.0alpha2-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/bullseye/zts/Dockerfile) +- [`8.5.0alpha4-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/zts/Dockerfile) -- [`8.5.0alpha2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0alpha4-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha4-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha4-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha4-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0alpha2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha4-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0alpha2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0alpha4-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha4-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0alpha2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0alpha4-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha4-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0alpha2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0alpha2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0alpha4-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/zts/Dockerfile) - [`8.4.11-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.11-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/cli/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 306a6ebcdbf6..f069b9b505de 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,6 +24,14 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`4.2.0-beta.1`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/Dockerfile) + +- [`4.2.0-beta.1-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) + +- [`4.2.0-beta.1-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/Dockerfile) + +- [`4.2.0-beta.1-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) + - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/ubuntu/Dockerfile) - [`4.1.3-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) From 72636922825074d54d4f7f22ebe71f6dbe499790 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 8 Aug 2025 15:10:10 -0700 Subject: [PATCH 2414/2686] Run update.sh --- gcc/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/README.md b/gcc/README.md index eeaf0cf14b8f..e8c5e4cbb4d0 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.1.0`, `15.1`, `15`, `latest`, `15.1.0-bookworm`, `15.1-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/a842bfea737b1127a922a27d768df7e382f740af/15/Dockerfile) +- [`15.2.0`, `15.2`, `15`, `latest`, `15.2.0-bookworm`, `15.2-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/339fcb5f09293ecdb47d6ae0b36b12509f0080e3/15/Dockerfile) - [`14.3.0`, `14.3`, `14`, `14.3.0-bookworm`, `14.3-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/d262936418fbf062bb25907d5126a178578ab58b/14/Dockerfile) From dd04c3067c0a8ac69c121ff87c28e62cb9910b71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Aug 2025 10:10:46 -0700 Subject: [PATCH 2415/2686] Run update.sh --- archlinux/README.md | 6 +++--- spiped/README.md | 2 +- storm/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 073f1c7b0e74..ef082ddf1dbe 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.base) +- [`latest`, `base`, `base-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.base) -- [`base-devel`, `base-devel-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250803.0.394512`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/61df55aaac93b29bbdcbf725f1b372ce47246023/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/spiped/README.md b/spiped/README.md index 1915de1bc8d0..bbcb1a82d7cd 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -26,7 +26,7 @@ WARNING: - [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/6cfa21da993903156ca7347b6f0f9e8111d46671/1.6/Dockerfile) -- [`1.6.4-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/6cfa21da993903156ca7347b6f0f9e8111d46671/1.6/alpine/Dockerfile) +- [`1.6.4-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2a6429d25e5ebccc2a8075cb8ec85d5dd951579e/1.6/alpine/Dockerfile) # Quick reference (cont.) diff --git a/storm/README.md b/storm/README.md index 0a3c21a55263..7913ba9ad31f 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.1-jre17`, `2.8-jre17`, `2.8.1`, `2.8`, `latest`](https://github.com/apache/storm-docker/blob/c81967cfcd43d2535f097f0c68eacdbf4ec778cf/2.8.1/Dockerfile) +- [`2.8.2-jre17`, `2.8-jre17`, `2.8.2`, `2.8`, `latest`](https://github.com/apache/storm-docker/blob/8f90c62992f17324add5537a121c0f60636e8171/2.8.2/Dockerfile) -- [`2.8.1-jre21`, `2.8-jre21`](https://github.com/apache/storm-docker/blob/c81967cfcd43d2535f097f0c68eacdbf4ec778cf/2.8.1-jre21/Dockerfile) +- [`2.8.2-jre21`, `2.8-jre21`](https://github.com/apache/storm-docker/blob/8f90c62992f17324add5537a121c0f60636e8171/2.8.2-jre21/Dockerfile) # Quick reference (cont.) From 3ac41f395c0234c90341fb17e2b3c81b7ecb39c3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Aug 2025 11:10:06 -0700 Subject: [PATCH 2416/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 31c7d354386f..369fe7d2007b 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,11 +28,11 @@ WARNING: - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/elasticsearch/Dockerfile) -- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/a01d05345bb7ef65ee8fe2ca4713cc0efa98cf5b/elasticsearch/Dockerfile) +- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/elasticsearch/Dockerfile) - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/elasticsearch/Dockerfile) -- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/elasticsearch/Dockerfile) +- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 5aa343163340..0749704c718f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -30,11 +30,11 @@ WARNING: - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/kibana/Dockerfile) -- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/e4c2da0c16babf1795279cb79aa1bf507363b3f6/kibana/Dockerfile) +- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/kibana/Dockerfile) - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/kibana/Dockerfile) -- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/kibana/Dockerfile) +- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index ce3eaae88acb..4dcdec28b2e6 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,11 +28,11 @@ WARNING: - [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/logstash/Dockerfile) -- [`8.19.0`](https://github.com/elastic/dockerfiles/blob/a01d05345bb7ef65ee8fe2ca4713cc0efa98cf5b/logstash/Dockerfile) +- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/logstash/Dockerfile) - [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/logstash/Dockerfile) -- [`9.1.0`](https://github.com/elastic/dockerfiles/blob/e25a4db7c35942e4deb90532335b7f43710ff5ce/logstash/Dockerfile) +- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/logstash/Dockerfile) # Quick reference (cont.) From 895a1d5636ebc87c22af3ef72fb89d35b6dcd77f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Aug 2025 13:09:57 -0700 Subject: [PATCH 2417/2686] Run update.sh --- photon/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photon/README.md b/photon/README.md index 5024b1e34324..addcae301d76 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250803`, `latest`](https://github.com/vmware/photon-docker-image/blob/d4d934013de5b37db69230704a65ebae3c52b28d/docker/Dockerfile) +- [`5.0`, `5.0-20250810`, `latest`](https://github.com/vmware/photon-docker-image/blob/1b224bdf03710e2a9d79fb562e40c3cc990c4029/docker/Dockerfile) -- [`4.0`, `4.0-20250727`](https://github.com/vmware/photon-docker-image/blob/63832f199d2f680b8efa209ea1964f640b8cc6bf/docker/Dockerfile) +- [`4.0`, `4.0-20250810`](https://github.com/vmware/photon-docker-image/blob/8e86c1fe4b1997c87a1376f197c394d92b93ac76/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) From c9a0fd02f96cf58e69548b4429d5d7e7f76afb0f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Aug 2025 17:10:14 -0700 Subject: [PATCH 2418/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 95977ddb19bb..c5c9f158a93e 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/1b992f72c3fa21d995ec8e02ad96738613a1456b/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7-slim-fips/Dockerfile) # Quick reference (cont.) From ca76b9b36ed173d1d78b513bfdf3a136ece75fe9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 10:13:16 -0700 Subject: [PATCH 2419/2686] Run update.sh --- elasticsearch/README.md | 10 +++++----- mariadb/README.md | 24 ++++++++++++++---------- ubuntu/README.md | 6 +++--- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 369fe7d2007b..bfbfa65efbcc 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/elasticsearch/Dockerfile) +- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/elasticsearch/Dockerfile) -- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/elasticsearch/Dockerfile) +- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/elasticsearch/Dockerfile) -- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/elasticsearch/Dockerfile) +- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/elasticsearch/Dockerfile) -- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/elasticsearch/Dockerfile) +- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/elasticsearch/Dockerfile) -- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/elasticsearch/Dockerfile) +- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/mariadb/README.md b/mariadb/README.md index bbf0d0dd97c3..c5b97a7da7aa 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,25 +26,29 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`12.0.1-ubi9-rc`, `12.0-ubi9-rc`, `12.0.1-ubi-rc`, `12.0-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/e9903b927ef46dc55fc6900ab015e4314349699a/12.0-ubi/Dockerfile) +- [`12.1.1-ubi10-rc`, `12.1-ubi10-rc`, `12.1.1-ubi-rc`, `12.1-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/12.1-ubi/Dockerfile) -- [`12.0.1-noble-rc`, `12.0-noble-rc`, `12.0.1-rc`, `12.0-rc`](https://github.com/MariaDB/mariadb-docker/blob/e9903b927ef46dc55fc6900ab015e4314349699a/12.0/Dockerfile) +- [`12.1.1-noble-rc`, `12.1-noble-rc`, `12.1.1-rc`, `12.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/12.1/Dockerfile) -- [`11.8.2-ubi9`, `11.8-ubi9`, `11-ubi9`, `lts-ubi9`, `11.8.2-ubi`, `11.8-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/4c5048803b4785a1ef057c2d4c48b126a08348c6/11.8-ubi/Dockerfile) +- [`12.0.2-ubi10`, `12.0-ubi10`, `12-ubi10`, `12.0.2-ubi`, `12.0-ubi`, `12-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/12.0-ubi/Dockerfile) -- [`11.8.2-noble`, `11.8-noble`, `11-noble`, `noble`, `lts-noble`, `11.8.2`, `11.8`, `11`, `latest`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/4c5048803b4785a1ef057c2d4c48b126a08348c6/11.8/Dockerfile) +- [`12.0.2-noble`, `12.0-noble`, `12-noble`, `noble`, `12.0.2`, `12.0`, `12`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/6a5611cd9dd70a8dcb24195cc8dd2147dd6471e3/12.0/Dockerfile) -- [`11.4.7-ubi9`, `11.4-ubi9`, `11.4.7-ubi`, `11.4-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4-ubi/Dockerfile) +- [`11.8.3-ubi9`, `11.8-ubi9`, `11-ubi9`, `lts-ubi9`, `11.8.3-ubi`, `11.8-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/11.8-ubi/Dockerfile) -- [`11.4.7-noble`, `11.4-noble`, `11.4.7`, `11.4`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/11.4/Dockerfile) +- [`11.8.3-noble`, `11.8-noble`, `11-noble`, `lts-noble`, `11.8.3`, `11.8`, `11`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/11.8/Dockerfile) -- [`10.11.13-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.13-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/10.11-ubi/Dockerfile) +- [`11.4.8-ubi9`, `11.4-ubi9`, `11.4.8-ubi`, `11.4-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/11.4-ubi/Dockerfile) -- [`10.11.13-jammy`, `10.11-jammy`, `10-jammy`, `10.11.13`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/a272347802e1764dd8c0e15ba2b2abfeeadb3bb6/10.11/Dockerfile) +- [`11.4.8-noble`, `11.4-noble`, `11.4.8`, `11.4`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/11.4/Dockerfile) -- [`10.6.22-ubi9`, `10.6-ubi9`, `10.6.22-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/c5669903a1c1f711039de61e480fbfd3549e1f86/10.6-ubi/Dockerfile) +- [`10.11.14-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.14-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/10.11-ubi/Dockerfile) -- [`10.6.22-jammy`, `10.6-jammy`](https://github.com/MariaDB/mariadb-docker/blob/9bc98d6905a26282e6209da20970d9d4b055a384/10.6-jammy/Dockerfile) +- [`10.11.14-jammy`, `10.11-jammy`, `10-jammy`, `10.11.14`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/10.11/Dockerfile) + +- [`10.6.23-ubi9`, `10.6-ubi9`, `10.6.23-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/10.6-ubi/Dockerfile) + +- [`10.6.23-jammy`, `10.6-jammy`, `10.6.23`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/10.6/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 213ec8c0391b..7d4894388b76 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.04`, `jammy-20250714`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250714-168abc94&id=168abc94dd44eff4a2f311f98cdd30463ff9265b) +- [`22.04`, `jammy-20250730`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250730-ff6f2cbe&id=ff6f2cbe85556208c97af5df1e3a129995b0421d) -- [`24.04`, `noble-20250714`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250714-3d50b499&id=3d50b4991bec4ec696ab2bd2fc8dc51f066ef6da) +- [`24.04`, `noble-20250716`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250716-0bed38f8&id=0bed38f848c1d36e629285d6aecc20f17083b469) - [`25.04`, `plucky-20250714`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250714-583c18ff&id=583c18ffc4ba6a16e0c8f62dff0ddf62db29134a) -- [`25.10`, `questing-20250620`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250620-fb433863&id=fb433863336aaeb793b4c17e7751bad417783ebe) +- [`25.10`, `questing-20250721`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250721-737410c3&id=737410c343b462be131d9073d61f0602a766b9e5) # Quick reference (cont.) From 9d85e93a2fcc5acf8b0e88b78d2e18c9f1b162fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 11:10:49 -0700 Subject: [PATCH 2420/2686] Run update.sh --- ghost/README.md | 4 +-- golang/README.md | 12 +++---- kibana/README.md | 10 +++--- logstash/README.md | 10 +++--- mongo/README.md | 26 +++++++-------- openjdk/README.md | 80 +++++++++++++++++++++++----------------------- 6 files changed, 71 insertions(+), 71 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 0d6eab11d31e..c407382099d4 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/bb570dc7994c9827f7984aed03335fb9da8e1869/6/debian/Dockerfile) +- [`6.0.2`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/367a5c44e346cb2fa71bf2a47f0e2b6d753c6b0c/6/debian/Dockerfile) -- [`6.0.0-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/bb570dc7994c9827f7984aed03335fb9da8e1869/6/alpine/Dockerfile) +- [`6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/367a5c44e346cb2fa71bf2a47f0e2b6d753c6b0c/6/alpine/Dockerfile) - [`5.130.3`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/521da5fea8b4cccffdb40ad78205b96e8342b98d/5/debian/Dockerfile) diff --git a/golang/README.md b/golang/README.md index 062a89f35f51..05e2473637dd 100644 --- a/golang/README.md +++ b/golang/README.md @@ -76,13 +76,13 @@ WARNING: - [`1.23.12-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250801-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bookworm/Dockerfile) +- [`tip-20250808-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bookworm/Dockerfile) -- [`tip-20250801-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bullseye/Dockerfile) +- [`tip-20250808-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bullseye/Dockerfile) -- [`tip-20250801-alpine3.22`, `tip-alpine3.22`, `tip-20250801-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/alpine3.22/Dockerfile) +- [`tip-20250808-alpine3.22`, `tip-alpine3.22`, `tip-20250808-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.22/Dockerfile) -- [`tip-20250801-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/alpine3.21/Dockerfile) +- [`tip-20250808-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -134,9 +134,9 @@ WARNING: - [`1.23.12-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2025/Dockerfile) - [`1.23.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250801`, `tip`: +- `tip-20250808`, `tip`: - - [`tip-20250801-bookworm`](https://github.com/docker-library/golang/blob/493b5b76fbbb9f3600a683fa8b37b3d00003ee7a/tip/bookworm/Dockerfile) + - [`tip-20250808-bookworm`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 0749704c718f..0274f492aff6 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,15 +26,15 @@ WARNING: - [`7.17.28`](https://github.com/elastic/dockerfiles/blob/28b876f2aaba7bc27d76a1acd55cbc8ada9b5dea/kibana/Dockerfile) -- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/kibana/Dockerfile) +- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) -- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/kibana/Dockerfile) +- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/kibana/Dockerfile) -- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/kibana/Dockerfile) +- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/kibana/Dockerfile) -- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/kibana/Dockerfile) +- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/kibana/Dockerfile) -- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/kibana/Dockerfile) +- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 4dcdec28b2e6..da491ef6b21c 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.17.9`](https://github.com/elastic/dockerfiles/blob/60c38c02ab0ce7b60f5045d9ae5badf5f9931527/logstash/Dockerfile) +- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/logstash/Dockerfile) -- [`8.18.4`](https://github.com/elastic/dockerfiles/blob/879005c2065f0c8d78fa6d978ce161fd38734600/logstash/Dockerfile) +- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/logstash/Dockerfile) -- [`8.19.1`](https://github.com/elastic/dockerfiles/blob/aa4f933ca3fcaec6be3f3bb1d1288e7024f661a1/logstash/Dockerfile) +- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/logstash/Dockerfile) -- [`9.0.4`](https://github.com/elastic/dockerfiles/blob/8052f28559ff55a203e9ce99ecb48251bbc67079/logstash/Dockerfile) +- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/logstash/Dockerfile) -- [`9.1.1`](https://github.com/elastic/dockerfiles/blob/602b1d0e025f8a0f95c755705c5d03240c12e6b3/logstash/Dockerfile) +- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/logstash/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index fb2241aeca2e..bea61663252e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.13-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/Dockerfile) +- [`8.0.13-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/Dockerfile) -- [`8.0.13-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.13-rc2-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.13-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.13-rc2-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.13-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.13-rc2-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.12-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) @@ -70,20 +70,20 @@ WARNING: ## Shared Tags -- `8.0.13-rc1`, `8.0-rc`: +- `8.0.13-rc2`, `8.0-rc`: - - [`8.0.13-rc1-noble`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/Dockerfile) - - [`8.0.13-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.13-rc2-noble`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/Dockerfile) + - [`8.0.13-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.13-rc1-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.13-rc2-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.13-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.13-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.13-rc1-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.13-rc2-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.13-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/1bd3371acc78dd98f5b87c021516dd23cda5e042/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.13-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - `8.0.12`, `8.0`, `8`, `latest`: diff --git a/openjdk/README.md b/openjdk/README.md index af072e34ee65..1a5e6e51f46c 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,79 +42,79 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-9-jdk-oraclelinux9`, `26-ea-9-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-9-jdk-oracle`, `26-ea-9-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-10-jdk-oraclelinux9`, `26-ea-10-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-10-jdk-oracle`, `26-ea-10-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-9-jdk-oraclelinux8`, `26-ea-9-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-10-jdk-oraclelinux8`, `26-ea-10-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-9-jdk-bookworm`, `26-ea-9-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/bookworm/Dockerfile) +- [`26-ea-10-jdk-bookworm`, `26-ea-10-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bookworm/Dockerfile) -- [`26-ea-9-jdk-slim-bookworm`, `26-ea-9-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-9-jdk-slim`, `26-ea-9-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-10-jdk-slim-bookworm`, `26-ea-10-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-10-jdk-slim`, `26-ea-10-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-9-jdk-bullseye`, `26-ea-9-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/bullseye/Dockerfile) +- [`26-ea-10-jdk-bullseye`, `26-ea-10-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bullseye/Dockerfile) -- [`26-ea-9-jdk-slim-bullseye`, `26-ea-9-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-10-jdk-slim-bullseye`, `26-ea-10-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bullseye/Dockerfile) -- [`26-ea-9-jdk-windowsservercore-ltsc2025`, `26-ea-9-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-10-jdk-windowsservercore-ltsc2025`, `26-ea-10-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-9-jdk-windowsservercore-ltsc2022`, `26-ea-9-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-10-jdk-windowsservercore-ltsc2022`, `26-ea-10-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-9-jdk-nanoserver-ltsc2025`, `26-ea-9-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-10-jdk-nanoserver-ltsc2025`, `26-ea-10-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-9-jdk-nanoserver-ltsc2022`, `26-ea-9-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-10-jdk-nanoserver-ltsc2022`, `26-ea-10-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-ea-34-jdk-oraclelinux9`, `25-ea-34-oraclelinux9`, `25-ea-jdk-oraclelinux9`, `25-ea-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-ea-34-jdk-oracle`, `25-ea-34-oracle`, `25-ea-jdk-oracle`, `25-ea-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux9/Dockerfile) +- [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux9/Dockerfile) -- [`25-ea-34-jdk-oraclelinux8`, `25-ea-34-oraclelinux8`, `25-ea-jdk-oraclelinux8`, `25-ea-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux8/Dockerfile) +- [`25-rc-jdk-oraclelinux8`, `25-rc-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux8/Dockerfile) -- [`25-ea-34-jdk-bookworm`, `25-ea-34-bookworm`, `25-ea-jdk-bookworm`, `25-ea-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/bookworm/Dockerfile) +- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bookworm/Dockerfile) -- [`25-ea-34-jdk-slim-bookworm`, `25-ea-34-slim-bookworm`, `25-ea-jdk-slim-bookworm`, `25-ea-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-ea-34-jdk-slim`, `25-ea-34-slim`, `25-ea-jdk-slim`, `25-ea-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/slim-bookworm/Dockerfile) +- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bookworm/Dockerfile) -- [`25-ea-34-jdk-bullseye`, `25-ea-34-bullseye`, `25-ea-jdk-bullseye`, `25-ea-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/bullseye/Dockerfile) +- [`25-rc-jdk-bullseye`, `25-rc-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bullseye/Dockerfile) -- [`25-ea-34-jdk-slim-bullseye`, `25-ea-34-slim-bullseye`, `25-ea-jdk-slim-bullseye`, `25-ea-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/slim-bullseye/Dockerfile) +- [`25-rc-jdk-slim-bullseye`, `25-rc-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bullseye/Dockerfile) -- [`25-ea-34-jdk-windowsservercore-ltsc2025`, `25-ea-34-windowsservercore-ltsc2025`, `25-ea-jdk-windowsservercore-ltsc2025`, `25-ea-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-rc-jdk-windowsservercore-ltsc2025`, `25-rc-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-ea-34-jdk-windowsservercore-ltsc2022`, `25-ea-34-windowsservercore-ltsc2022`, `25-ea-jdk-windowsservercore-ltsc2022`, `25-ea-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-rc-jdk-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25-ea-34-jdk-nanoserver-ltsc2025`, `25-ea-34-nanoserver-ltsc2025`, `25-ea-jdk-nanoserver-ltsc2025`, `25-ea-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25-rc-jdk-nanoserver-ltsc2025`, `25-rc-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25-ea-34-jdk-nanoserver-ltsc2022`, `25-ea-34-nanoserver-ltsc2022`, `25-ea-jdk-nanoserver-ltsc2022`, `25-ea-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25-rc-jdk-nanoserver-ltsc2022`, `25-rc-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-9-jdk`, `26-ea-9`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-10-jdk`, `26-ea-10`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-9-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-9-jdk-windowsservercore`, `26-ea-9-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-10-jdk-windowsservercore`, `26-ea-10-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-9-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-9-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-9-jdk-nanoserver`, `26-ea-9-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-10-jdk-nanoserver`, `26-ea-10-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-9-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-9-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/47927ef10288acd6fff133a6b3c6b705011a79bc/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-10-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-10-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-ea-34-jdk`, `25-ea-34`, `25-ea-jdk`, `25-ea`, `25-jdk`, `25`: +- `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: - - [`25-ea-34-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/oraclelinux9/Dockerfile) - - [`25-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux9/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-34-jdk-windowsservercore`, `25-ea-34-windowsservercore`, `25-ea-jdk-windowsservercore`, `25-ea-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25-rc-jdk-windowsservercore`, `25-rc-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-ea-34-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-ea-34-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25-ea-34-jdk-nanoserver`, `25-ea-34-nanoserver`, `25-ea-jdk-nanoserver`, `25-ea-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25-rc-jdk-nanoserver`, `25-rc-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25-ea-34-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-ea-34-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/cf3ebd20b3c77e5671cf93933140c8f7573fba5f/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25-rc-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25-rc-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 49cf7a142fad9b23a7f3ad589ef8274f1ec93949 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 12:10:08 -0700 Subject: [PATCH 2421/2686] Run update.sh --- bash/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/README.md b/bash/README.md index 88c12684e31e..a89ba0f1523d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250804`, `devel`, `devel-20250804-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/352d5308eb7f15f0670a6f8ad275eb9b0f17490e/devel/Dockerfile) +- [`devel-20250808`, `devel`, `devel-20250808-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/ba83c44b09aeae11e6886e86487d394aa23fcea5/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) From dc6f92e28d400e1730cff050816ada04f4d6a153 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 14:10:17 -0700 Subject: [PATCH 2422/2686] Run update.sh --- debian/README.md | 56 +++++++++++++++++++++---------------- open-liberty/README.md | 54 +++++++++++++++++------------------ orientdb/README.md | 4 +-- websphere-liberty/README.md | 48 +++++++++++++++---------------- 4 files changed, 85 insertions(+), 77 deletions(-) diff --git a/debian/README.md b/debian/README.md index b743b618d9e7..fc4c517064d1 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,53 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250721`, `12.11`, `12`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250811`, `12.11`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250721-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250811-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250721`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250811`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bullseye/oci/index.json) -- [`bullseye-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/backports/Dockerfile) +- [`bullseye-slim`, `bullseye-20250811-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bullseye/slim/oci/index.json) -- [`bullseye-slim`, `bullseye-20250721-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/bullseye/slim/oci/index.json) +- [`experimental`, `experimental-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/experimental/Dockerfile) -- [`experimental`, `experimental-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/experimental/Dockerfile) +- [`forky`, `forky-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/oci/index.json) -- [`oldstable`, `oldstable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/oci/index.json) +- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/backports/Dockerfile) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/backports/Dockerfile) +- [`forky-slim`, `forky-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/slim/oci/index.json) -- [`oldstable-slim`, `oldstable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/oldstable/slim/oci/index.json) +- [`oldoldstable`, `oldoldstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldoldstable/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/rc-buggy/Dockerfile) +- [`oldoldstable-slim`, `oldoldstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldoldstable/slim/oci/index.json) -- [`sid`, `sid-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/sid/oci/index.json) +- [`oldstable`, `oldstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/oci/index.json) -- [`sid-slim`, `sid-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/sid/slim/oci/index.json) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/backports/Dockerfile) -- [`stable`, `stable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/oci/index.json) +- [`oldstable-slim`, `oldstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/slim/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/backports/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/rc-buggy/Dockerfile) -- [`stable-slim`, `stable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/stable/slim/oci/index.json) +- [`sid`, `sid-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/sid/oci/index.json) -- [`testing`, `testing-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/oci/index.json) +- [`sid-slim`, `sid-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/sid/slim/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/backports/Dockerfile) +- [`stable`, `stable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/oci/index.json) -- [`testing-slim`, `testing-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/testing/slim/oci/index.json) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/backports/Dockerfile) -- [`trixie`, `trixie-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/oci/index.json) +- [`stable-slim`, `stable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/slim/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/backports/Dockerfile) +- [`testing`, `testing-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/oci/index.json) -- [`trixie-slim`, `trixie-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/trixie/slim/oci/index.json) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/backports/Dockerfile) -- [`unstable`, `unstable-20250721`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/unstable/oci/index.json) +- [`testing-slim`, `testing-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/slim/oci/index.json) -- [`unstable-slim`, `unstable-20250721-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/c6274d8b402b7e394a69b9e0496df4c0df5efffe/unstable/slim/oci/index.json) +- [`trixie`, `trixie-20250811`, `13.0`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/oci/index.json) + +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/backports/Dockerfile) + +- [`trixie-slim`, `trixie-20250811-slim`, `13.0-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/slim/oci/index.json) + +- [`unstable`, `unstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/unstable/oci/index.json) + +- [`unstable-slim`, `unstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/open-liberty/README.md b/open-liberty/README.md index 8caa58b119bc..a4caa82c53dd 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.7-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.7-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.7-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.7-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.7-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.7-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/eaf8a46774e922f064e87fed06e57d97e7f5f1b5/releases/25.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 4ca0f365abc0..f5833518d9aa 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.42`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/ceca4ac3050f37b6671d8ab4d690083b348c2a5e/release/3.2.x/3.2.42/Dockerfile) +- [`3.2.43`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/5c99861048806e75095f1ecf85bad22275694a7f/release/3.2.x/3.2.43/Dockerfile) -- [`3.2.42-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/ceca4ac3050f37b6671d8ab4d690083b348c2a5e/release/3.2.x/3.2.42-tp3/Dockerfile) +- [`3.2.43-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/5c99861048806e75095f1ecf85bad22275694a7f/release/3.2.x/3.2.43-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 3c9dbe5ced01..24240fc08d6c 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.7-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.7-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.7-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.7-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.7-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.7-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/c4051f24970278e9abf6645e624296a48cf0a976/ga/25.0.0.7/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From caa762e28687ded6eada8a3e07bbff3a030b30f6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 15:10:26 -0700 Subject: [PATCH 2423/2686] Run update.sh --- gcc/README.md | 6 ++-- haproxy/README.md | 18 +++++----- httpd/README.md | 6 ++-- julia/README.md | 20 +++++------ php/README.md | 82 +++++++++++++++++++++++----------------------- postgres/README.md | 26 +++++++-------- pypy/README.md | 22 ++++++++----- python/README.md | 82 +++++++++++++++++++++++----------------------- ruby/README.md | 34 +++++++++---------- spiped/README.md | 4 +-- 10 files changed, 152 insertions(+), 148 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index e8c5e4cbb4d0..3a57ea5af6b5 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`15.2.0`, `15.2`, `15`, `latest`, `15.2.0-bookworm`, `15.2-bookworm`, `15-bookworm`, `bookworm`](https://github.com/docker-library/gcc/blob/339fcb5f09293ecdb47d6ae0b36b12509f0080e3/15/Dockerfile) +- [`15.2.0`, `15.2`, `15`, `latest`, `15.2.0-trixie`, `15.2-trixie`, `15-trixie`, `trixie`](https://github.com/docker-library/gcc/blob/915af5ccbb6b09575e244f280c26925e77172039/15/Dockerfile) -- [`14.3.0`, `14.3`, `14`, `14.3.0-bookworm`, `14.3-bookworm`, `14-bookworm`](https://github.com/docker-library/gcc/blob/d262936418fbf062bb25907d5126a178578ab58b/14/Dockerfile) +- [`14.3.0`, `14.3`, `14`, `14.3.0-trixie`, `14.3-trixie`, `14-trixie`](https://github.com/docker-library/gcc/blob/280306a58a2ff0c21a95ed8abe882ac483d03c8b/14/Dockerfile) - [`13.4.0`, `13.4`, `13`, `13.4.0-bookworm`, `13.4-bookworm`, `13-bookworm`](https://github.com/docker-library/gcc/blob/118c07a8e6467baababb4634b6cfde14a67c24b0/13/Dockerfile) @@ -38,7 +38,7 @@ WARNING: [https://github.com/docker-library/gcc/issues](https://github.com/docker-library/gcc/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/) + [`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`riscv64`](https://hub.docker.com/r/riscv64/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/) - **Published image artifact details**: [repo-info repo's `repos/gcc/` directory](https://github.com/docker-library/repo-info/blob/master/repos/gcc) ([history](https://github.com/docker-library/repo-info/commits/master/repos/gcc)) diff --git a/haproxy/README.md b/haproxy/README.md index 37f7b2b7007f..0b3bc15e478e 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev6`, `3.3-dev`, `3.3-dev6-bookworm`, `3.3-dev-bookworm`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/Dockerfile) +- [`3.3-dev6`, `3.3-dev`, `3.3-dev6-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.3/Dockerfile) - [`3.3-dev6-alpine`, `3.3-dev-alpine`, `3.3-dev6-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/alpine/Dockerfile) -- [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-bookworm`, `3.2-bookworm`, `bookworm`, `lts-bookworm`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/Dockerfile) +- [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.2/Dockerfile) - [`3.2.3-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.3-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/alpine/Dockerfile) -- [`3.1.8`, `3.1`, `3.1.8-bookworm`, `3.1-bookworm`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/Dockerfile) +- [`3.1.8`, `3.1`, `3.1.8-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.1/Dockerfile) - [`3.1.8-alpine`, `3.1-alpine`, `3.1.8-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/alpine/Dockerfile) -- [`3.0.11`, `3.0`, `3.0.11-bookworm`, `3.0-bookworm`](https://github.com/docker-library/haproxy/blob/6fa540dd7d9d82634605e727a8e1c726a23d8b0d/3.0/Dockerfile) +- [`3.0.11`, `3.0`, `3.0.11-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.0/Dockerfile) - [`3.0.11-alpine`, `3.0-alpine`, `3.0.11-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/6fa540dd7d9d82634605e727a8e1c726a23d8b0d/3.0/alpine/Dockerfile) -- [`2.8.15`, `2.8`, `2.8.15-bookworm`, `2.8-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.8/Dockerfile) +- [`2.8.15`, `2.8`, `2.8.15-trixie`, `2.8-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.8/Dockerfile) - [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.8/alpine/Dockerfile) -- [`2.6.22`, `2.6`, `2.6.22-bookworm`, `2.6-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.6/Dockerfile) +- [`2.6.22`, `2.6`, `2.6.22-trixie`, `2.6-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.6/Dockerfile) - [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.6/alpine/Dockerfile) -- [`2.4.29`, `2.4`, `2.4.29-bookworm`, `2.4-bookworm`](https://github.com/docker-library/haproxy/blob/c153740fe581f5c43c6c5571acd00055e49e478d/2.4/Dockerfile) +- [`2.4.29`, `2.4`, `2.4.29-trixie`, `2.4-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.4/Dockerfile) - [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.4/alpine/Dockerfile) @@ -58,7 +58,7 @@ WARNING: [https://github.com/docker-library/haproxy/issues](https://github.com/docker-library/haproxy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`mips64le`](https://hub.docker.com/r/mips64le/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`riscv64`](https://hub.docker.com/r/riscv64/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/) + [`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`riscv64`](https://hub.docker.com/r/riscv64/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/) - **Published image artifact details**: [repo-info repo's `repos/haproxy/` directory](https://github.com/docker-library/repo-info/blob/master/repos/haproxy) ([history](https://github.com/docker-library/repo-info/commits/master/repos/haproxy)) @@ -142,7 +142,7 @@ The `haproxy` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `haproxy:-alpine` diff --git a/httpd/README.md b/httpd/README.md index 0b05d657e658..6c53bcd020e7 100644 --- a/httpd/README.md +++ b/httpd/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.4.65`, `2.4`, `2`, `latest`, `2.4.65-bookworm`, `2.4-bookworm`, `2-bookworm`, `bookworm`](https://github.com/docker-library/httpd/blob/42b1c8997488557ae90e80ff64a90830b1563d75/2.4/Dockerfile) +- [`2.4.65`, `2.4`, `2`, `latest`, `2.4.65-trixie`, `2.4-trixie`, `2-trixie`, `trixie`](https://github.com/docker-library/httpd/blob/684a447a23a8035356d5cce42e1f85212cfd39a3/2.4/Dockerfile) - [`2.4.65-alpine`, `2.4-alpine`, `2-alpine`, `alpine`, `2.4.65-alpine3.22`, `2.4-alpine3.22`, `2-alpine3.22`, `alpine3.22`](https://github.com/docker-library/httpd/blob/42b1c8997488557ae90e80ff64a90830b1563d75/2.4/alpine/Dockerfile) @@ -34,7 +34,7 @@ WARNING: [https://github.com/docker-library/httpd/issues](https://github.com/docker-library/httpd/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`mips64le`](https://hub.docker.com/r/mips64le/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`riscv64`](https://hub.docker.com/r/riscv64/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/) + [`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`riscv64`](https://hub.docker.com/r/riscv64/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/) - **Published image artifact details**: [repo-info repo's `repos/httpd/` directory](https://github.com/docker-library/repo-info/blob/master/repos/httpd) ([history](https://github.com/docker-library/repo-info/commits/master/repos/httpd)) @@ -134,7 +134,7 @@ The `httpd` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `httpd:-alpine` diff --git a/julia/README.md b/julia/README.md index c8a3a5f351cc..f741c340bd0a 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,9 +28,9 @@ WARNING: ## Simple Tags -- [`1.12.0-rc1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-rc1-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.12-rc/trixie/Dockerfile) -- [`1.12.0-rc1-bullseye`, `1.12-rc-bullseye`, `rc-bullseye`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bullseye/Dockerfile) +- [`1.12.0-rc1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) - [`1.12.0-rc1-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-rc1-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/alpine3.22/Dockerfile) @@ -40,9 +40,9 @@ WARNING: - [`1.12.0-rc1-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.6-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) +- [`1.11.6-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.11/trixie/Dockerfile) -- [`1.11.6-bullseye`, `1.11-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bullseye/Dockerfile) +- [`1.11.6-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) - [`1.11.6-alpine3.22`, `1.11-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.11.6-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/alpine3.22/Dockerfile) @@ -52,9 +52,9 @@ WARNING: - [`1.11.6-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.10.10-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) +- [`1.10.10-trixie`, `1.10-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.10/trixie/Dockerfile) -- [`1.10.10-bullseye`, `1.10-bullseye`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bullseye/Dockerfile) +- [`1.10.10-bookworm`, `1.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) - [`1.10.10-alpine3.22`, `1.10-alpine3.22`, `1.10.10-alpine`, `1.10-alpine`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/alpine3.22/Dockerfile) @@ -68,7 +68,7 @@ WARNING: - `1.12.0-rc1`, `1.12-rc`, `rc`: - - [`1.12.0-rc1-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) + - [`1.12.0-rc1-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.12-rc/trixie/Dockerfile) - [`1.12.0-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -79,7 +79,7 @@ WARNING: - `1.11.6`, `1.11`, `1`, `latest`: - - [`1.11.6-bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) + - [`1.11.6-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.11/trixie/Dockerfile) - [`1.11.6-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) @@ -90,7 +90,7 @@ WARNING: - `1.10.10`, `1.10`: - - [`1.10.10-bookworm`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/bookworm/Dockerfile) + - [`1.10.10-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.10/trixie/Dockerfile) - [`1.10.10-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.10.10-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/36ec8a84fe6a3ac59872725f20e892e472b45227/1.10/windows/windowsservercore-ltsc2022/Dockerfile) @@ -156,7 +156,7 @@ The `julia` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `julia:-alpine` diff --git a/php/README.md b/php/README.md index 53a9d93e27fe..bc8ff5c33d87 100644 --- a/php/README.md +++ b/php/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0alpha4-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha4-bookworm`, `8.5-rc-bookworm`, `8.5.0alpha4-cli`, `8.5-rc-cli`, `8.5.0alpha4`, `8.5-rc`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0alpha4-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0alpha4-trixie`, `8.5-rc-trixie`, `8.5.0alpha4-cli`, `8.5-rc-cli`, `8.5.0alpha4`, `8.5-rc`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0alpha4-apache-bookworm`, `8.5-rc-apache-bookworm`, `8.5.0alpha4-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0alpha4-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0alpha4-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0alpha4-fpm-bookworm`, `8.5-rc-fpm-bookworm`, `8.5.0alpha4-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0alpha4-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0alpha4-zts-bookworm`, `8.5-rc-zts-bookworm`, `8.5.0alpha4-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0alpha4-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0alpha4-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0alpha4-cli-bullseye`, `8.5-rc-cli-bullseye`, `8.5.0alpha4-bullseye`, `8.5-rc-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/cli/Dockerfile) +- [`8.5.0alpha4-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha4-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0alpha4-apache-bullseye`, `8.5-rc-apache-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/apache/Dockerfile) +- [`8.5.0alpha4-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0alpha4-fpm-bullseye`, `8.5-rc-fpm-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/fpm/Dockerfile) +- [`8.5.0alpha4-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0alpha4-zts-bullseye`, `8.5-rc-zts-bullseye`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/bullseye/zts/Dockerfile) +- [`8.5.0alpha4-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/zts/Dockerfile) - [`8.5.0alpha4-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha4-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha4-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha4-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/cli/Dockerfile) @@ -52,21 +52,21 @@ WARNING: - [`8.5.0alpha4-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/zts/Dockerfile) -- [`8.4.11-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.11-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/cli/Dockerfile) +- [`8.4.11-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.11-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/cli/Dockerfile) -- [`8.4.11-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`, `8.4.11-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/apache/Dockerfile) +- [`8.4.11-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.11-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/apache/Dockerfile) -- [`8.4.11-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`, `8.4.11-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/fpm/Dockerfile) +- [`8.4.11-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.11-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/fpm/Dockerfile) -- [`8.4.11-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`, `8.4.11-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bookworm/zts/Dockerfile) +- [`8.4.11-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.11-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/zts/Dockerfile) -- [`8.4.11-cli-bullseye`, `8.4-cli-bullseye`, `8-cli-bullseye`, `cli-bullseye`, `8.4.11-bullseye`, `8.4-bullseye`, `8-bullseye`, `bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/cli/Dockerfile) +- [`8.4.11-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.11-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/cli/Dockerfile) -- [`8.4.11-apache-bullseye`, `8.4-apache-bullseye`, `8-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/apache/Dockerfile) +- [`8.4.11-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/apache/Dockerfile) -- [`8.4.11-fpm-bullseye`, `8.4-fpm-bullseye`, `8-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/fpm/Dockerfile) +- [`8.4.11-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/fpm/Dockerfile) -- [`8.4.11-zts-bullseye`, `8.4-zts-bullseye`, `8-zts-bullseye`, `zts-bullseye`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/bullseye/zts/Dockerfile) +- [`8.4.11-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/zts/Dockerfile) - [`8.4.11-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.11-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.11-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.11-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/cli/Dockerfile) @@ -80,21 +80,21 @@ WARNING: - [`8.4.11-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/zts/Dockerfile) -- [`8.3.24-cli-bookworm`, `8.3-cli-bookworm`, `8.3.24-bookworm`, `8.3-bookworm`, `8.3.24-cli`, `8.3-cli`, `8.3.24`, `8.3`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/cli/Dockerfile) +- [`8.3.24-cli-trixie`, `8.3-cli-trixie`, `8.3.24-trixie`, `8.3-trixie`, `8.3.24-cli`, `8.3-cli`, `8.3.24`, `8.3`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/cli/Dockerfile) -- [`8.3.24-apache-bookworm`, `8.3-apache-bookworm`, `8.3.24-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/apache/Dockerfile) +- [`8.3.24-apache-trixie`, `8.3-apache-trixie`, `8.3.24-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/apache/Dockerfile) -- [`8.3.24-fpm-bookworm`, `8.3-fpm-bookworm`, `8.3.24-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/fpm/Dockerfile) +- [`8.3.24-fpm-trixie`, `8.3-fpm-trixie`, `8.3.24-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/fpm/Dockerfile) -- [`8.3.24-zts-bookworm`, `8.3-zts-bookworm`, `8.3.24-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bookworm/zts/Dockerfile) +- [`8.3.24-zts-trixie`, `8.3-zts-trixie`, `8.3.24-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/zts/Dockerfile) -- [`8.3.24-cli-bullseye`, `8.3-cli-bullseye`, `8.3.24-bullseye`, `8.3-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/cli/Dockerfile) +- [`8.3.24-cli-bookworm`, `8.3-cli-bookworm`, `8.3.24-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/cli/Dockerfile) -- [`8.3.24-apache-bullseye`, `8.3-apache-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/apache/Dockerfile) +- [`8.3.24-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/apache/Dockerfile) -- [`8.3.24-fpm-bullseye`, `8.3-fpm-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/fpm/Dockerfile) +- [`8.3.24-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/fpm/Dockerfile) -- [`8.3.24-zts-bullseye`, `8.3-zts-bullseye`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/bullseye/zts/Dockerfile) +- [`8.3.24-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/zts/Dockerfile) - [`8.3.24-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.24-alpine3.22`, `8.3-alpine3.22`, `8.3.24-cli-alpine`, `8.3-cli-alpine`, `8.3.24-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/cli/Dockerfile) @@ -108,21 +108,21 @@ WARNING: - [`8.3.24-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/zts/Dockerfile) -- [`8.2.29-cli-bookworm`, `8.2-cli-bookworm`, `8.2.29-bookworm`, `8.2-bookworm`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/cli/Dockerfile) +- [`8.2.29-cli-trixie`, `8.2-cli-trixie`, `8.2.29-trixie`, `8.2-trixie`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/cli/Dockerfile) -- [`8.2.29-apache-bookworm`, `8.2-apache-bookworm`, `8.2.29-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/apache/Dockerfile) +- [`8.2.29-apache-trixie`, `8.2-apache-trixie`, `8.2.29-apache`, `8.2-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/apache/Dockerfile) -- [`8.2.29-fpm-bookworm`, `8.2-fpm-bookworm`, `8.2.29-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/fpm/Dockerfile) +- [`8.2.29-fpm-trixie`, `8.2-fpm-trixie`, `8.2.29-fpm`, `8.2-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/fpm/Dockerfile) -- [`8.2.29-zts-bookworm`, `8.2-zts-bookworm`, `8.2.29-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bookworm/zts/Dockerfile) +- [`8.2.29-zts-trixie`, `8.2-zts-trixie`, `8.2.29-zts`, `8.2-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/zts/Dockerfile) -- [`8.2.29-cli-bullseye`, `8.2-cli-bullseye`, `8.2.29-bullseye`, `8.2-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/cli/Dockerfile) +- [`8.2.29-cli-bookworm`, `8.2-cli-bookworm`, `8.2.29-bookworm`, `8.2-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/bookworm/cli/Dockerfile) -- [`8.2.29-apache-bullseye`, `8.2-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/apache/Dockerfile) +- [`8.2.29-apache-bookworm`, `8.2-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/bookworm/apache/Dockerfile) -- [`8.2.29-fpm-bullseye`, `8.2-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/fpm/Dockerfile) +- [`8.2.29-fpm-bookworm`, `8.2-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/bookworm/fpm/Dockerfile) -- [`8.2.29-zts-bullseye`, `8.2-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/bullseye/zts/Dockerfile) +- [`8.2.29-zts-bookworm`, `8.2-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/bookworm/zts/Dockerfile) - [`8.2.29-cli-alpine3.22`, `8.2-cli-alpine3.22`, `8.2.29-alpine3.22`, `8.2-alpine3.22`, `8.2.29-cli-alpine`, `8.2-cli-alpine`, `8.2.29-alpine`, `8.2-alpine`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.22/cli/Dockerfile) @@ -136,21 +136,21 @@ WARNING: - [`8.2.29-zts-alpine3.21`, `8.2-zts-alpine3.21`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.2/alpine3.21/zts/Dockerfile) -- [`8.1.33-cli-bookworm`, `8.1-cli-bookworm`, `8.1.33-bookworm`, `8.1-bookworm`, `8.1.33-cli`, `8.1-cli`, `8.1.33`, `8.1`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/cli/Dockerfile) +- [`8.1.33-cli-trixie`, `8.1-cli-trixie`, `8.1.33-trixie`, `8.1-trixie`, `8.1.33-cli`, `8.1-cli`, `8.1.33`, `8.1`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/trixie/cli/Dockerfile) -- [`8.1.33-apache-bookworm`, `8.1-apache-bookworm`, `8.1.33-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/apache/Dockerfile) +- [`8.1.33-apache-trixie`, `8.1-apache-trixie`, `8.1.33-apache`, `8.1-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/trixie/apache/Dockerfile) -- [`8.1.33-fpm-bookworm`, `8.1-fpm-bookworm`, `8.1.33-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/fpm/Dockerfile) +- [`8.1.33-fpm-trixie`, `8.1-fpm-trixie`, `8.1.33-fpm`, `8.1-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/trixie/fpm/Dockerfile) -- [`8.1.33-zts-bookworm`, `8.1-zts-bookworm`, `8.1.33-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bookworm/zts/Dockerfile) +- [`8.1.33-zts-trixie`, `8.1-zts-trixie`, `8.1.33-zts`, `8.1-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/trixie/zts/Dockerfile) -- [`8.1.33-cli-bullseye`, `8.1-cli-bullseye`, `8.1.33-bullseye`, `8.1-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/cli/Dockerfile) +- [`8.1.33-cli-bookworm`, `8.1-cli-bookworm`, `8.1.33-bookworm`, `8.1-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/bookworm/cli/Dockerfile) -- [`8.1.33-apache-bullseye`, `8.1-apache-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/apache/Dockerfile) +- [`8.1.33-apache-bookworm`, `8.1-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/bookworm/apache/Dockerfile) -- [`8.1.33-fpm-bullseye`, `8.1-fpm-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/fpm/Dockerfile) +- [`8.1.33-fpm-bookworm`, `8.1-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/bookworm/fpm/Dockerfile) -- [`8.1.33-zts-bullseye`, `8.1-zts-bullseye`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/bullseye/zts/Dockerfile) +- [`8.1.33-zts-bookworm`, `8.1-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.1/bookworm/zts/Dockerfile) - [`8.1.33-cli-alpine3.22`, `8.1-cli-alpine3.22`, `8.1.33-alpine3.22`, `8.1-alpine3.22`](https://github.com/docker-library/php/blob/eb7898cb9c2963997a4396833d4cc20e350a24ea/8.1/alpine3.22/cli/Dockerfile) @@ -358,7 +358,7 @@ In many production environments, it is also recommended to (build and) enable th The `php` images come in many flavors, each designed for a specific use case. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `php:-cli` diff --git a/postgres/README.md b/postgres/README.md index d888f646ed3b..c022b21ad0b7 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,49 +24,49 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18beta2`, `18beta2-bookworm`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bookworm/Dockerfile) +- [`18beta2`, `18beta2-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/18/trixie/Dockerfile) -- [`18beta2-bullseye`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bullseye/Dockerfile) +- [`18beta2-bookworm`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bookworm/Dockerfile) - [`18beta2-alpine3.22`, `18beta2-alpine`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.22/Dockerfile) - [`18beta2-alpine3.21`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.21/Dockerfile) -- [`17.5`, `17`, `latest`, `17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bookworm/Dockerfile) +- [`17.5`, `17`, `latest`, `17.5-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/17/trixie/Dockerfile) -- [`17.5-bullseye`, `17-bullseye`, `bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bullseye/Dockerfile) +- [`17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bookworm/Dockerfile) - [`17.5-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.22/Dockerfile) - [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.21/Dockerfile) -- [`16.9`, `16`, `16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bookworm/Dockerfile) +- [`16.9`, `16`, `16.9-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/16/trixie/Dockerfile) -- [`16.9-bullseye`, `16-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bullseye/Dockerfile) +- [`16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bookworm/Dockerfile) - [`16.9-alpine3.22`, `16-alpine3.22`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.22/Dockerfile) - [`16.9-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.21/Dockerfile) -- [`15.13`, `15`, `15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bookworm/Dockerfile) +- [`15.13`, `15`, `15.13-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/15/trixie/Dockerfile) -- [`15.13-bullseye`, `15-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bullseye/Dockerfile) +- [`15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bookworm/Dockerfile) - [`15.13-alpine3.22`, `15-alpine3.22`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.22/Dockerfile) - [`15.13-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.21/Dockerfile) -- [`14.18`, `14`, `14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bookworm/Dockerfile) +- [`14.18`, `14`, `14.18-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/14/trixie/Dockerfile) -- [`14.18-bullseye`, `14-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bullseye/Dockerfile) +- [`14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bookworm/Dockerfile) - [`14.18-alpine3.22`, `14-alpine3.22`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.22/Dockerfile) - [`14.18-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.21/Dockerfile) -- [`13.21`, `13`, `13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bookworm/Dockerfile) +- [`13.21`, `13`, `13.21-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/13/trixie/Dockerfile) -- [`13.21-bullseye`, `13-bullseye`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bullseye/Dockerfile) +- [`13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bookworm/Dockerfile) - [`13.21-alpine3.22`, `13-alpine3.22`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/alpine3.22/Dockerfile) @@ -396,7 +396,7 @@ The `postgres` images come in many flavors, each designed for a specific use cas This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `postgres:-alpine` diff --git a/pypy/README.md b/pypy/README.md index 84f189aa974a..6602102a8ec4 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -28,21 +28,25 @@ WARNING: ## Simple Tags -- [`3.11-7.3.20-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`, `3-7.3.20-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/bookworm/Dockerfile) +- [`3.11-7.3.20-trixie`, `3.11-7.3-trixie`, `3.11-7-trixie`, `3.11-trixie`, `3-7.3.20-trixie`, `3-7.3-trixie`, `3-7-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/3.11/trixie/Dockerfile) -- [`3.11-7.3.20-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3-7.3.20-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.11-7.3.20-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`, `3-7.3.20-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/slim-bookworm/Dockerfile) +- [`3.11-7.3.20-slim`, `3.11-7.3-slim`, `3.11-7-slim`, `3.11-slim`, `3-7.3.20-slim`, `3-7.3-slim`, `3-7-slim`, `3-slim`, `slim`, `3.11-7.3.20-slim-trixie`, `3.11-7.3-slim-trixie`, `3.11-7-slim-trixie`, `3.11-slim-trixie`, `3-7.3.20-slim-trixie`, `3-7.3-slim-trixie`, `3-7-slim-trixie`, `3-slim-trixie`, `slim-trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/3.11/slim-trixie/Dockerfile) + +- [`3.11-7.3.20-bookworm`, `3.11-7.3-bookworm`, `3.11-7-bookworm`, `3.11-bookworm`, `3-7.3.20-bookworm`, `3-7.3-bookworm`, `3-7-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/3.11/bookworm/Dockerfile) + +- [`3.11-7.3.20-slim-bookworm`, `3.11-7.3-slim-bookworm`, `3.11-7-slim-bookworm`, `3.11-slim-bookworm`, `3-7.3.20-slim-bookworm`, `3-7.3-slim-bookworm`, `3-7-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/3.11/slim-bookworm/Dockerfile) - [`3.11-7.3.20-windowsservercore-ltsc2025`, `3.11-7.3-windowsservercore-ltsc2025`, `3.11-7-windowsservercore-ltsc2025`, `3.11-windowsservercore-ltsc2025`, `3-7.3.20-windowsservercore-ltsc2025`, `3-7.3-windowsservercore-ltsc2025`, `3-7-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.11-7.3.20-windowsservercore-ltsc2022`, `3.11-7.3-windowsservercore-ltsc2022`, `3.11-7-windowsservercore-ltsc2022`, `3.11-windowsservercore-ltsc2022`, `3-7.3.20-windowsservercore-ltsc2022`, `3-7.3-windowsservercore-ltsc2022`, `3-7-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2022/Dockerfile) -- [`2.7-7.3.20-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.20-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bookworm/Dockerfile) +- [`2.7-7.3.20-trixie`, `2.7-7.3-trixie`, `2.7-7-trixie`, `2.7-trixie`, `2-7.3.20-trixie`, `2-7.3-trixie`, `2-7-trixie`, `2-trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/2.7/trixie/Dockerfile) -- [`2.7-7.3.20-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.20-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.20-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.20-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/slim-bookworm/Dockerfile) +- [`2.7-7.3.20-slim`, `2.7-7.3-slim`, `2.7-7-slim`, `2.7-slim`, `2-7.3.20-slim`, `2-7.3-slim`, `2-7-slim`, `2-slim`, `2.7-7.3.20-slim-trixie`, `2.7-7.3-slim-trixie`, `2.7-7-slim-trixie`, `2.7-slim-trixie`, `2-7.3.20-slim-trixie`, `2-7.3-slim-trixie`, `2-7-slim-trixie`, `2-slim-trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/2.7/slim-trixie/Dockerfile) -- [`2.7-7.3.20-bullseye`, `2.7-7.3-bullseye`, `2.7-7-bullseye`, `2.7-bullseye`, `2-7.3.20-bullseye`, `2-7.3-bullseye`, `2-7-bullseye`, `2-bullseye`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bullseye/Dockerfile) +- [`2.7-7.3.20-bookworm`, `2.7-7.3-bookworm`, `2.7-7-bookworm`, `2.7-bookworm`, `2-7.3.20-bookworm`, `2-7.3-bookworm`, `2-7-bookworm`, `2-bookworm`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/2.7/bookworm/Dockerfile) -- [`2.7-7.3.20-slim-bullseye`, `2.7-7.3-slim-bullseye`, `2.7-7-slim-bullseye`, `2.7-slim-bullseye`, `2-7.3.20-slim-bullseye`, `2-7.3-slim-bullseye`, `2-7-slim-bullseye`, `2-slim-bullseye`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/slim-bullseye/Dockerfile) +- [`2.7-7.3.20-slim-bookworm`, `2.7-7.3-slim-bookworm`, `2.7-7-slim-bookworm`, `2.7-slim-bookworm`, `2-7.3.20-slim-bookworm`, `2-7.3-slim-bookworm`, `2-7-slim-bookworm`, `2-slim-bookworm`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/2.7/slim-bookworm/Dockerfile) - [`2.7-7.3.20-windowsservercore-ltsc2025`, `2.7-7.3-windowsservercore-ltsc2025`, `2.7-7-windowsservercore-ltsc2025`, `2.7-windowsservercore-ltsc2025`, `2-7.3.20-windowsservercore-ltsc2025`, `2-7.3-windowsservercore-ltsc2025`, `2-7-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,7 +56,7 @@ WARNING: - `3.11-7.3.20`, `3.11-7.3`, `3.11-7`, `3.11`, `3-7.3.20`, `3-7.3`, `3-7`, `3`, `latest`: - - [`3.11-7.3.20-bookworm`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/bookworm/Dockerfile) + - [`3.11-7.3.20-trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/3.11/trixie/Dockerfile) - [`3.11-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.11-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/b32ca0567b9856e21c607610254748a24439a956/3.11/windows/windowsservercore-ltsc2022/Dockerfile) @@ -63,7 +67,7 @@ WARNING: - `2.7-7.3.20`, `2.7-7.3`, `2.7-7`, `2.7`, `2-7.3.20`, `2-7.3`, `2-7`, `2`: - - [`2.7-7.3.20-bookworm`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/bookworm/Dockerfile) + - [`2.7-7.3.20-trixie`](https://github.com/docker-library/pypy/blob/8908818e3c253a09864223f7c148db765684135f/2.7/trixie/Dockerfile) - [`2.7-7.3.20-windowsservercore-ltsc2025`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2025/Dockerfile) - [`2.7-7.3.20-windowsservercore-ltsc2022`](https://github.com/docker-library/pypy/blob/29ecc5a68bdd0a4643ca2b5495956f541a3ceb72/2.7/windows/windowsservercore-ltsc2022/Dockerfile) @@ -162,7 +166,7 @@ The `pypy` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/python/README.md b/python/README.md index f3494a615f70..2e3bb5c3b219 100644 --- a/python/README.md +++ b/python/README.md @@ -28,81 +28,81 @@ WARNING: ## Simple Tags -- [`3.14.0rc1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bookworm/Dockerfile) +- [`3.14.0rc1-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/trixie/Dockerfile) -- [`3.14.0rc1-slim-bookworm`, `3.14-rc-slim-bookworm`, `3.14.0rc1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0rc1-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/slim-trixie/Dockerfile) -- [`3.14.0rc1-bullseye`, `3.14-rc-bullseye`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bullseye/Dockerfile) +- [`3.14.0rc1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/bookworm/Dockerfile) -- [`3.14.0rc1-slim-bullseye`, `3.14-rc-slim-bullseye`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/slim-bullseye/Dockerfile) +- [`3.14.0rc1-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0rc1-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0rc1-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0rc1-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0rc1-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/alpine3.21/Dockerfile) - [`3.14.0rc1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0rc1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.6-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bookworm/Dockerfile) +- [`3.13.6-trixie`, `3.13-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/trixie/Dockerfile) -- [`3.13.6-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.13.6-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/slim-bookworm/Dockerfile) +- [`3.13.6-slim-trixie`, `3.13-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.13.6-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/slim-trixie/Dockerfile) -- [`3.13.6-bullseye`, `3.13-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bullseye/Dockerfile) +- [`3.13.6-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/bookworm/Dockerfile) -- [`3.13.6-slim-bullseye`, `3.13-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/slim-bullseye/Dockerfile) +- [`3.13.6-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/slim-bookworm/Dockerfile) -- [`3.13.6-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/alpine3.22/Dockerfile) +- [`3.13.6-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/alpine3.22/Dockerfile) -- [`3.13.6-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/alpine3.21/Dockerfile) +- [`3.13.6-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/alpine3.21/Dockerfile) - [`3.13.6-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.6-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) +- [`3.12.11-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) -- [`3.12.11-slim-bookworm`, `3.12-slim-bookworm`, `3.12.11-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/slim-bookworm/Dockerfile) +- [`3.12.11-slim-trixie`, `3.12-slim-trixie`, `3.12.11-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/slim-trixie/Dockerfile) -- [`3.12.11-bullseye`, `3.12-bullseye`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bullseye/Dockerfile) +- [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/bookworm/Dockerfile) -- [`3.12.11-slim-bullseye`, `3.12-slim-bullseye`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/slim-bullseye/Dockerfile) +- [`3.12.11-slim-bookworm`, `3.12-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/slim-bookworm/Dockerfile) -- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/alpine3.22/Dockerfile) +- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/alpine3.22/Dockerfile) -- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/alpine3.21/Dockerfile) +- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/alpine3.21/Dockerfile) -- [`3.11.13-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bookworm/Dockerfile) +- [`3.11.13-trixie`, `3.11-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/trixie/Dockerfile) -- [`3.11.13-slim-bookworm`, `3.11-slim-bookworm`, `3.11.13-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/slim-bookworm/Dockerfile) +- [`3.11.13-slim-trixie`, `3.11-slim-trixie`, `3.11.13-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/slim-trixie/Dockerfile) -- [`3.11.13-bullseye`, `3.11-bullseye`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bullseye/Dockerfile) +- [`3.11.13-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/bookworm/Dockerfile) -- [`3.11.13-slim-bullseye`, `3.11-slim-bullseye`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/slim-bullseye/Dockerfile) +- [`3.11.13-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/slim-bookworm/Dockerfile) -- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/alpine3.22/Dockerfile) +- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/alpine3.22/Dockerfile) -- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/alpine3.21/Dockerfile) +- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/alpine3.21/Dockerfile) -- [`3.10.18-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bookworm/Dockerfile) +- [`3.10.18-trixie`, `3.10-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/trixie/Dockerfile) -- [`3.10.18-slim-bookworm`, `3.10-slim-bookworm`, `3.10.18-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/slim-bookworm/Dockerfile) +- [`3.10.18-slim-trixie`, `3.10-slim-trixie`, `3.10.18-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/slim-trixie/Dockerfile) -- [`3.10.18-bullseye`, `3.10-bullseye`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bullseye/Dockerfile) +- [`3.10.18-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/bookworm/Dockerfile) -- [`3.10.18-slim-bullseye`, `3.10-slim-bullseye`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/slim-bullseye/Dockerfile) +- [`3.10.18-slim-bookworm`, `3.10-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/slim-bookworm/Dockerfile) -- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/alpine3.22/Dockerfile) +- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/alpine3.22/Dockerfile) -- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/alpine3.21/Dockerfile) +- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/alpine3.21/Dockerfile) -- [`3.9.23-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) +- [`3.9.23-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/trixie/Dockerfile) -- [`3.9.23-slim-bookworm`, `3.9-slim-bookworm`, `3.9.23-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/slim-bookworm/Dockerfile) +- [`3.9.23-slim-trixie`, `3.9-slim-trixie`, `3.9.23-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/slim-trixie/Dockerfile) -- [`3.9.23-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bullseye/Dockerfile) +- [`3.9.23-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) -- [`3.9.23-slim-bullseye`, `3.9-slim-bullseye`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/slim-bullseye/Dockerfile) +- [`3.9.23-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/slim-bookworm/Dockerfile) - [`3.9.23-alpine3.22`, `3.9-alpine3.22`, `3.9.23-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/alpine3.22/Dockerfile) @@ -112,7 +112,7 @@ WARNING: - `3.14.0rc1`, `3.14-rc`: - - [`3.14.0rc1-bookworm`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/bookworm/Dockerfile) + - [`3.14.0rc1-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/trixie/Dockerfile) - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -123,7 +123,7 @@ WARNING: - `3.13.6`, `3.13`, `3`, `latest`: - - [`3.13.6-bookworm`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/bookworm/Dockerfile) + - [`3.13.6-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/trixie/Dockerfile) - [`3.13.6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) @@ -134,19 +134,19 @@ WARNING: - `3.12.11`, `3.12`: - - [`3.12.11-bookworm`](https://github.com/docker-library/python/blob/a25c9ad64fe168fb619fea7247b17189d441b988/3.12/bookworm/Dockerfile) + - [`3.12.11-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) - `3.11.13`, `3.11`: - - [`3.11.13-bookworm`](https://github.com/docker-library/python/blob/14b61451ec7c172cf1d43d8e7859335459fcd344/3.11/bookworm/Dockerfile) + - [`3.11.13-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/trixie/Dockerfile) - `3.10.18`, `3.10`: - - [`3.10.18-bookworm`](https://github.com/docker-library/python/blob/cfb3eae801211d2ada389efa034d248147fd8775/3.10/bookworm/Dockerfile) + - [`3.10.18-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/trixie/Dockerfile) - `3.9.23`, `3.9`: - - [`3.9.23-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) + - [`3.9.23-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/trixie/Dockerfile) # Quick reference (cont.) @@ -240,7 +240,7 @@ The `python` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/ruby/README.md b/ruby/README.md index 1f46af3ed41d..52d0a86b4a83 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -24,49 +24,49 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.5.0-preview1-bookworm`, `3.5-rc-bookworm`, `3.5.0-preview1`, `3.5-rc`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/bookworm/Dockerfile) +- [`3.5.0-preview1-trixie`, `3.5-rc-trixie`, `3.5.0-preview1`, `3.5-rc`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.5-rc/trixie/Dockerfile) -- [`3.5.0-preview1-slim-bookworm`, `3.5-rc-slim-bookworm`, `3.5.0-preview1-slim`, `3.5-rc-slim`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/slim-bookworm/Dockerfile) +- [`3.5.0-preview1-slim-trixie`, `3.5-rc-slim-trixie`, `3.5.0-preview1-slim`, `3.5-rc-slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.5-rc/slim-trixie/Dockerfile) -- [`3.5.0-preview1-bullseye`, `3.5-rc-bullseye`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/bullseye/Dockerfile) +- [`3.5.0-preview1-bookworm`, `3.5-rc-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.5-rc/bookworm/Dockerfile) -- [`3.5.0-preview1-slim-bullseye`, `3.5-rc-slim-bullseye`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/slim-bullseye/Dockerfile) +- [`3.5.0-preview1-slim-bookworm`, `3.5-rc-slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.5-rc/slim-bookworm/Dockerfile) - [`3.5.0-preview1-alpine3.22`, `3.5-rc-alpine3.22`, `3.5.0-preview1-alpine`, `3.5-rc-alpine`](https://github.com/docker-library/ruby/blob/7d367fd4559ed09fedea90e1184638b36cfb64d2/3.5-rc/alpine3.22/Dockerfile) - [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) -- [`3.4.5-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`, `3.4.5`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/bookworm/Dockerfile) +- [`3.4.5-trixie`, `3.4-trixie`, `3-trixie`, `trixie`, `3.4.5`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/trixie/Dockerfile) -- [`3.4.5-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`, `3.4.5-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/slim-bookworm/Dockerfile) +- [`3.4.5-slim-trixie`, `3.4-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.4.5-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/slim-trixie/Dockerfile) -- [`3.4.5-bullseye`, `3.4-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/bullseye/Dockerfile) +- [`3.4.5-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/bookworm/Dockerfile) -- [`3.4.5-slim-bullseye`, `3.4-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/slim-bullseye/Dockerfile) +- [`3.4.5-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/slim-bookworm/Dockerfile) - [`3.4.5-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.5-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.22/Dockerfile) - [`3.4.5-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.21/Dockerfile) -- [`3.3.9-bookworm`, `3.3-bookworm`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/bookworm/Dockerfile) +- [`3.3.9-trixie`, `3.3-trixie`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/trixie/Dockerfile) -- [`3.3.9-slim-bookworm`, `3.3-slim-bookworm`, `3.3.9-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/slim-bookworm/Dockerfile) +- [`3.3.9-slim-trixie`, `3.3-slim-trixie`, `3.3.9-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/slim-trixie/Dockerfile) -- [`3.3.9-bullseye`, `3.3-bullseye`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/bullseye/Dockerfile) +- [`3.3.9-bookworm`, `3.3-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/bookworm/Dockerfile) -- [`3.3.9-slim-bullseye`, `3.3-slim-bullseye`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/slim-bullseye/Dockerfile) +- [`3.3.9-slim-bookworm`, `3.3-slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/slim-bookworm/Dockerfile) - [`3.3.9-alpine3.22`, `3.3-alpine3.22`, `3.3.9-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.22/Dockerfile) - [`3.3.9-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.21/Dockerfile) -- [`3.2.9-bookworm`, `3.2-bookworm`, `3.2.9`, `3.2`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/bookworm/Dockerfile) +- [`3.2.9-trixie`, `3.2-trixie`, `3.2.9`, `3.2`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.2/trixie/Dockerfile) -- [`3.2.9-slim-bookworm`, `3.2-slim-bookworm`, `3.2.9-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/slim-bookworm/Dockerfile) +- [`3.2.9-slim-trixie`, `3.2-slim-trixie`, `3.2.9-slim`, `3.2-slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.2/slim-trixie/Dockerfile) -- [`3.2.9-bullseye`, `3.2-bullseye`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/bullseye/Dockerfile) +- [`3.2.9-bookworm`, `3.2-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.2/bookworm/Dockerfile) -- [`3.2.9-slim-bullseye`, `3.2-slim-bullseye`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/slim-bullseye/Dockerfile) +- [`3.2.9-slim-bookworm`, `3.2-slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.2/slim-bookworm/Dockerfile) - [`3.2.9-alpine3.22`, `3.2-alpine3.22`, `3.2.9-alpine`, `3.2-alpine`](https://github.com/docker-library/ruby/blob/33e4f980322b70f078a64d9e61eae1af040df5c2/3.2/alpine3.22/Dockerfile) @@ -164,7 +164,7 @@ The `ruby` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/spiped/README.md b/spiped/README.md index bbcb1a82d7cd..73f0c0dbee59 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/6cfa21da993903156ca7347b6f0f9e8111d46671/1.6/Dockerfile) +- [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/6df25f7ecdd98bd0de7726944ed64165699d2edb/1.6/Dockerfile) - [`1.6.4-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2a6429d25e5ebccc2a8075cb8ec85d5dd951579e/1.6/alpine/Dockerfile) @@ -34,7 +34,7 @@ WARNING: [https://github.com/TimWolla/docker-spiped/issues](https://github.com/TimWolla/docker-spiped/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/spiped/), [`arm32v5`](https://hub.docker.com/r/arm32v5/spiped/), [`arm32v6`](https://hub.docker.com/r/arm32v6/spiped/), [`arm32v7`](https://hub.docker.com/r/arm32v7/spiped/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spiped/), [`i386`](https://hub.docker.com/r/i386/spiped/), [`mips64le`](https://hub.docker.com/r/mips64le/spiped/), [`ppc64le`](https://hub.docker.com/r/ppc64le/spiped/), [`riscv64`](https://hub.docker.com/r/riscv64/spiped/), [`s390x`](https://hub.docker.com/r/s390x/spiped/) + [`amd64`](https://hub.docker.com/r/amd64/spiped/), [`arm32v5`](https://hub.docker.com/r/arm32v5/spiped/), [`arm32v6`](https://hub.docker.com/r/arm32v6/spiped/), [`arm32v7`](https://hub.docker.com/r/arm32v7/spiped/), [`arm64v8`](https://hub.docker.com/r/arm64v8/spiped/), [`i386`](https://hub.docker.com/r/i386/spiped/), [`ppc64le`](https://hub.docker.com/r/ppc64le/spiped/), [`riscv64`](https://hub.docker.com/r/riscv64/spiped/), [`s390x`](https://hub.docker.com/r/s390x/spiped/) - **Published image artifact details**: [repo-info repo's `repos/spiped/` directory](https://github.com/docker-library/repo-info/blob/master/repos/spiped) ([history](https://github.com/docker-library/repo-info/commits/master/repos/spiped)) From b559769303a000ced911fb9abc51e5007a29dae9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 16:10:16 -0700 Subject: [PATCH 2424/2686] Run update.sh --- buildpack-deps/README.md | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index b0247833703e..345a552bae4c 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -24,17 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) +- [`bookworm-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/3e18c3af1f5dce6a48abf036857f9097b6bd79cc/debian/bookworm/curl/Dockerfile) -- [`bookworm-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/scm/Dockerfile) +- [`bookworm-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/scm/Dockerfile) -- [`bookworm`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/Dockerfile) +- [`bookworm`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bookworm/Dockerfile) -- [`bullseye-curl`, `oldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) +- [`bullseye-curl`, `oldoldstable-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/debian/bullseye/curl/Dockerfile) -- [`bullseye-scm`, `oldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/scm/Dockerfile) +- [`bullseye-scm`, `oldoldstable-scm`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/scm/Dockerfile) -- [`bullseye`, `oldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/Dockerfile) +- [`bullseye`, `oldoldstable`](https://github.com/docker-library/buildpack-deps/blob/d0ecd4b7313e9bc6b00d9a4fe62ad5787bc197ae/debian/bullseye/Dockerfile) + +- [`forky-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/6fbd1fd6aa17031b10f11a97c31b9da1ac09db76/debian/forky/curl/Dockerfile) + +- [`forky-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/6fbd1fd6aa17031b10f11a97c31b9da1ac09db76/debian/forky/scm/Dockerfile) + +- [`forky`, `testing`](https://github.com/docker-library/buildpack-deps/blob/6fbd1fd6aa17031b10f11a97c31b9da1ac09db76/debian/forky/Dockerfile) - [`sid-curl`, `unstable-curl`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/curl/Dockerfile) @@ -42,11 +48,11 @@ WARNING: - [`sid`, `unstable`](https://github.com/docker-library/buildpack-deps/blob/2b3a8b7d1f8875865034be3bab98ddd737e37d5e/debian/sid/Dockerfile) -- [`trixie-curl`, `testing-curl`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/curl/Dockerfile) +- [`trixie-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/curl/Dockerfile) -- [`trixie-scm`, `testing-scm`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/scm/Dockerfile) +- [`trixie-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/scm/Dockerfile) -- [`trixie`, `testing`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/Dockerfile) +- [`trixie`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/1f4fe499c668d9a2e1578aa8db4f0b2d14482cf5/debian/trixie/Dockerfile) - [`jammy-curl`, `22.04-curl`](https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile) From ed6d18fb73ea76bf8ed8a1b549f00b1b3d93d064 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 12 Aug 2025 17:10:45 -0700 Subject: [PATCH 2425/2686] Run update.sh --- irssi/README.md | 6 +++--- mongo/README.md | 23 +++++++++++++++++++++++ openjdk/README.md | 18 +++++++++--------- rocket.chat/README.md | 2 +- 4 files changed, 36 insertions(+), 13 deletions(-) diff --git a/irssi/README.md b/irssi/README.md index 81632e7bd254..4d315f08345b 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-bookworm`, `1.4-bookworm`, `1-bookworm`, `bookworm`](https://github.com/jessfraz/irssi/blob/b8ea417aaa1a29a6003756627d748450a5bf6abe/debian/Dockerfile) +- [`1.4.5`, `1.4`, `1`, `latest`, `1.4.5-trixie`, `1.4-trixie`, `1-trixie`, `trixie`](https://github.com/jessfraz/irssi/blob/071b281a8011fb7ac5c5d6b6928e13fee8ab719c/debian/Dockerfile) - [`1.4.5-alpine`, `1.4-alpine`, `1-alpine`, `alpine`, `1.4.5-alpine3.22`, `1.4-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/jessfraz/irssi/blob/48233da7bca13e68f9792da75119fe595f6192c9/alpine/Dockerfile) @@ -34,7 +34,7 @@ WARNING: [https://github.com/jessfraz/irssi/issues](https://github.com/jessfraz/irssi/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/irssi/), [`arm32v5`](https://hub.docker.com/r/arm32v5/irssi/), [`arm32v6`](https://hub.docker.com/r/arm32v6/irssi/), [`arm32v7`](https://hub.docker.com/r/arm32v7/irssi/), [`arm64v8`](https://hub.docker.com/r/arm64v8/irssi/), [`i386`](https://hub.docker.com/r/i386/irssi/), [`mips64le`](https://hub.docker.com/r/mips64le/irssi/), [`ppc64le`](https://hub.docker.com/r/ppc64le/irssi/), [`riscv64`](https://hub.docker.com/r/riscv64/irssi/), [`s390x`](https://hub.docker.com/r/s390x/irssi/) + [`amd64`](https://hub.docker.com/r/amd64/irssi/), [`arm32v5`](https://hub.docker.com/r/arm32v5/irssi/), [`arm32v6`](https://hub.docker.com/r/arm32v6/irssi/), [`arm32v7`](https://hub.docker.com/r/arm32v7/irssi/), [`arm64v8`](https://hub.docker.com/r/arm64v8/irssi/), [`i386`](https://hub.docker.com/r/i386/irssi/), [`ppc64le`](https://hub.docker.com/r/ppc64le/irssi/), [`riscv64`](https://hub.docker.com/r/riscv64/irssi/), [`s390x`](https://hub.docker.com/r/s390x/irssi/) - **Published image artifact details**: [repo-info repo's `repos/irssi/` directory](https://github.com/docker-library/repo-info/blob/master/repos/irssi) ([history](https://github.com/docker-library/repo-info/commits/master/repos/irssi)) @@ -94,7 +94,7 @@ The `irssi` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `irssi:-alpine` diff --git a/mongo/README.md b/mongo/README.md index bea61663252e..50f871207a0b 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -60,6 +60,14 @@ WARNING: - [`7.0.22-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.26-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/Dockerfile) + +- [`6.0.26-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`6.0.26-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`6.0.26-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.25-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) - [`6.0.25-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -130,6 +138,21 @@ WARNING: - [`7.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- `6.0.26-rc0`, `6.0-rc`: + + - [`6.0.26-rc0-jammy`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/Dockerfile) + - [`6.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `6.0.26-rc0-windowsservercore`, `6.0-rc-windowsservercore`: + + - [`6.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `6.0.26-rc0-nanoserver`, `6.0-rc-nanoserver`: + + - [`6.0.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `6.0.25`, `6.0`, `6`: - [`6.0.25-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 1a5e6e51f46c..30e41f5bb02b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -46,13 +46,13 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`26-ea-10-jdk-oraclelinux8`, `26-ea-10-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-10-jdk-bookworm`, `26-ea-10-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bookworm/Dockerfile) +- [`26-ea-10-jdk-trixie`, `26-ea-10-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/26/jdk/trixie/Dockerfile) -- [`26-ea-10-jdk-slim-bookworm`, `26-ea-10-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`, `26-ea-10-jdk-slim`, `26-ea-10-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-10-jdk-slim-trixie`, `26-ea-10-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-10-jdk-slim`, `26-ea-10-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-10-jdk-bullseye`, `26-ea-10-bullseye`, `26-ea-jdk-bullseye`, `26-ea-bullseye`, `26-jdk-bullseye`, `26-bullseye`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bullseye/Dockerfile) +- [`26-ea-10-jdk-bookworm`, `26-ea-10-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bookworm/Dockerfile) -- [`26-ea-10-jdk-slim-bullseye`, `26-ea-10-slim-bullseye`, `26-ea-jdk-slim-bullseye`, `26-ea-slim-bullseye`, `26-jdk-slim-bullseye`, `26-slim-bullseye`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bullseye/Dockerfile) +- [`26-ea-10-jdk-slim-bookworm`, `26-ea-10-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bookworm/Dockerfile) - [`26-ea-10-jdk-windowsservercore-ltsc2025`, `26-ea-10-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -66,13 +66,13 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`25-rc-jdk-oraclelinux8`, `25-rc-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux8/Dockerfile) -- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bookworm/Dockerfile) +- [`25-rc-jdk-trixie`, `25-rc-trixie`, `25-jdk-trixie`, `25-trixie`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/25/jdk/trixie/Dockerfile) -- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bookworm/Dockerfile) +- [`25-rc-jdk-slim-trixie`, `25-rc-slim-trixie`, `25-jdk-slim-trixie`, `25-slim-trixie`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/25/jdk/slim-trixie/Dockerfile) -- [`25-rc-jdk-bullseye`, `25-rc-bullseye`, `25-jdk-bullseye`, `25-bullseye`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bullseye/Dockerfile) +- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bookworm/Dockerfile) -- [`25-rc-jdk-slim-bullseye`, `25-rc-slim-bullseye`, `25-jdk-slim-bullseye`, `25-slim-bullseye`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bullseye/Dockerfile) +- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bookworm/Dockerfile) - [`25-rc-jdk-windowsservercore-ltsc2025`, `25-rc-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -204,7 +204,7 @@ The `openjdk` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `openjdk:` (from 12 onwards), `openjdk:-oracle` and `openjdk:-oraclelinux8` diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 0312844a8ad8..50363affb981 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.9.1`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.9/Dockerfile) +- [`7.9.3`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/75c516a89b6e98d44085fa9cd33f9bc5f2b5986c/7.9/Dockerfile) - [`7.8.4`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.8/Dockerfile) From 51738419b651c8c0d82b2a88a403064182bf4a96 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Aug 2025 11:38:38 -0700 Subject: [PATCH 2426/2686] Run update.sh --- golang/README.md | 98 ++++++++++++++++-------------------------------- 1 file changed, 33 insertions(+), 65 deletions(-) diff --git a/golang/README.md b/golang/README.md index 05e2473637dd..e6c8f89e5f67 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,115 +28,83 @@ WARNING: ## Simple Tags -- [`1.25rc3-bookworm`, `1.25-rc-bookworm`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bookworm/Dockerfile) +- [`1.25.0-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/trixie/Dockerfile) -- [`1.25rc3-bullseye`, `1.25-rc-bullseye`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bullseye/Dockerfile) +- [`1.25.0-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/bookworm/Dockerfile) -- [`1.25rc3-alpine3.22`, `1.25-rc-alpine3.22`, `1.25rc3-alpine`, `1.25-rc-alpine`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/alpine3.22/Dockerfile) +- [`1.25.0-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.0-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/alpine3.22/Dockerfile) -- [`1.25rc3-alpine3.21`, `1.25-rc-alpine3.21`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/alpine3.21/Dockerfile) +- [`1.25.0-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/alpine3.21/Dockerfile) -- [`1.25rc3-windowsservercore-ltsc2025`, `1.25-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25.0-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25rc3-windowsservercore-ltsc2022`, `1.25-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25.0-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25rc3-nanoserver-ltsc2025`, `1.25-rc-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25.0-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25rc3-nanoserver-ltsc2022`, `1.25-rc-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25.0-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.6-bookworm`, `1.24-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) +- [`1.24.6-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/1.24/trixie/Dockerfile) -- [`1.24.6-bullseye`, `1.24-bullseye`, `1-bullseye`, `bullseye`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bullseye/Dockerfile) +- [`1.24.6-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) -- [`1.24.6-alpine3.22`, `1.24-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.24.6-alpine`, `1.24-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.22/Dockerfile) +- [`1.24.6-alpine3.22`, `1.24-alpine3.22`, `1.24.6-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.22/Dockerfile) -- [`1.24.6-alpine3.21`, `1.24-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.21/Dockerfile) +- [`1.24.6-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.21/Dockerfile) -- [`1.24.6-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.6-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.6-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.6-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.6-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.6-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.23.12-bookworm`, `1.23-bookworm`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bookworm/Dockerfile) - -- [`1.23.12-bullseye`, `1.23-bullseye`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bullseye/Dockerfile) - -- [`1.23.12-alpine3.22`, `1.23-alpine3.22`, `1.23.12-alpine`, `1.23-alpine`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/alpine3.22/Dockerfile) - -- [`1.23.12-alpine3.21`, `1.23-alpine3.21`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/alpine3.21/Dockerfile) - -- [`1.23.12-windowsservercore-ltsc2025`, `1.23-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`1.23.12-windowsservercore-ltsc2022`, `1.23-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`1.23.12-nanoserver-ltsc2025`, `1.23-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2025/Dockerfile) - -- [`1.23.12-nanoserver-ltsc2022`, `1.23-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) +- [`tip-20250808-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/tip/trixie/Dockerfile) - [`tip-20250808-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bookworm/Dockerfile) -- [`tip-20250808-bullseye`, `tip-bullseye`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bullseye/Dockerfile) - - [`tip-20250808-alpine3.22`, `tip-alpine3.22`, `tip-20250808-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.22/Dockerfile) - [`tip-20250808-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.21/Dockerfile) ## Shared Tags -- `1.25rc3`, `1.25-rc`: +- `1.25.0`, `1.25`, `1`, `latest`: - - [`1.25rc3-bookworm`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/bookworm/Dockerfile) - - [`1.25rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.0-trixie`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/trixie/Dockerfile) + - [`1.25.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25rc3-windowsservercore`, `1.25-rc-windowsservercore`: +- `1.25.0-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.25rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25rc3-nanoserver`, `1.25-rc-nanoserver`: +- `1.25.0-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.25rc3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25rc3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6b699a77b3cf7a8eb89e3d6f89a03984513f3cae/1.25-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25.0-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.6`, `1.24`, `1`, `latest`: +- `1.24.6`, `1.24`: - - [`1.24.6-bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) + - [`1.24.6-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/1.24/trixie/Dockerfile) - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.6-windowsservercore`, `1.24-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.24.6-windowsservercore`, `1.24-windowsservercore`: - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.6-nanoserver`, `1.24-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.24.6-nanoserver`, `1.24-nanoserver`: - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `1.23.12`, `1.23`: - - - [`1.23.12-bookworm`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/bookworm/Dockerfile) - - [`1.23.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - -- `1.23.12-windowsservercore`, `1.23-windowsservercore`: - - - [`1.23.12-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.23.12-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/windowsservercore-ltsc2022/Dockerfile) - -- `1.23.12-nanoserver`, `1.23-nanoserver`: - - - [`1.23.12-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.23.12-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fa1511a8dd0aab3a928d7998b2bc2d4ba95507bc/1.23/windows/nanoserver-ltsc2022/Dockerfile) - - `tip-20250808`, `tip`: - - [`tip-20250808-bookworm`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bookworm/Dockerfile) + - [`tip-20250808-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/tip/trixie/Dockerfile) # Quick reference (cont.) @@ -241,7 +209,7 @@ The `golang` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `golang:-alpine` From 10d02d727962b327277fe29c6b4c2c710507e58e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Aug 2025 12:10:24 -0700 Subject: [PATCH 2427/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 64 ++++++++------ jetty/README.md | 152 +++++++++++++++++----------------- nginx/README.md | 18 ++-- node/README.md | 14 +++- 4 files changed, 138 insertions(+), 110 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 1e4f9ea99def..6b125168a772 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,71 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags - `open-8u462-b08-jdk`, `open-8-jdk`: - - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-8u462-b08-jre`, `open-8-jre`: - - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.28_6-jdk`, `open-11-jdk`: - - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.28_6-jre`, `open-11-jre`: - - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.16_8-jdk`, `open-17-jdk`: - - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.16_8-jre`, `open-17-jre`: - - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.8_9-jdk`, `open-21-jdk`: - - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.8_9-jre`, `open-21-jre`: - - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/f532f06b022643ed68990afb9a0d6cf32e824a75/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-jdk-24.0.2_12-jdk`, `open-24-jdk`: + + - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-jdk-24.0.2_12-jre`, `open-24-jre`: + + - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index f0c93841a459..b2822632f338 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,157 +24,157 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.57-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.57-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.57-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.57-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.57-jre8`, `9.4-jre8`, `9-jre8`, `9.4.57-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.57-jre8`, `9.4-jre8`, `9-jre8`, `9.4.57-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.57-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.57-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.57-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.57-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.57-jre21`, `9.4-jre21`, `9-jre21`, `9.4.57-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.57-jre21`, `9.4-jre21`, `9-jre21`, `9.4.57-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.57-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.57-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.57-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.57-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.57-jre17`, `9.4-jre17`, `9-jre17`, `9.4.57-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.57-jre17`, `9.4-jre17`, `9-jre17`, `9.4.57-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.57-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.57-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.57-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.57-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.57-jre11`, `9.4-jre11`, `9-jre11`, `9.4.57-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.57-jre11`, `9.4-jre11`, `9-jre11`, `9.4.57-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.57-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.57-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.57-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.57-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.57`, `9.4`, `9`, `9.4.57-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.57-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.57-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.57`, `9.4`, `9`, `9.4.57-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.57-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.57-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.57-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.57-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.57-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.57-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.57-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.57-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.57-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.57-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.23-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.23-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.24-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.24-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.23-jre21`, `12.0-jre21`, `12-jre21`, `12.0.23-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.24-jre21`, `12.0-jre21`, `12-jre21`, `12.0.24-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.23-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.23-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.24-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.24-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.23-jre17`, `12.0-jre17`, `12-jre17`, `12.0.23-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.24-jre17`, `12.0-jre17`, `12-jre17`, `12.0.24-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.23-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.23-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.24-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.24-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.23-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.23-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.24-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.24-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.23-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.23-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.24-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.24-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.23`, `12.0`, `12`, `12.0.23-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.23-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.23-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.24`, `12.0`, `12`, `12.0.24-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.24-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.24-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.23-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.23-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.24-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.24-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.23-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.23-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.24-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.24-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.25-jre21`, `11.0-jre21`, `11-jre21`, `11.0.25-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre21/Dockerfile) +- [`11.0.25-jre21`, `11.0-jre21`, `11-jre21`, `11.0.25-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.25-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.25-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`11.0.25-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.25-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.25-jre17`, `11.0-jre17`, `11-jre17`, `11.0.25-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre17/Dockerfile) +- [`11.0.25-jre17`, `11.0-jre17`, `11-jre17`, `11.0.25-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.25-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.25-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.25-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.25-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.25-jre11`, `11.0-jre11`, `11-jre11`, `11.0.25-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.25-jre11`, `11.0-jre11`, `11-jre11`, `11.0.25-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.25-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.25-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.25-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.25-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.25`, `11.0`, `11`, `11.0.25-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.25-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.25-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.25`, `11.0`, `11`, `11.0.25-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.25-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.25-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`11.0.25-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.25-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.25-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.25-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`11.0.25-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.25-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.25-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.25-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.25-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.25-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`10.0.25-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.25-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.25-jre21`, `10.0-jre21`, `10-jre21`, `10.0.25-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre21/Dockerfile) +- [`10.0.25-jre21`, `10.0-jre21`, `10-jre21`, `10.0.25-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.25-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.25-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`10.0.25-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.25-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.25-jre17`, `10.0-jre17`, `10-jre17`, `10.0.25-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre17/Dockerfile) +- [`10.0.25-jre17`, `10.0-jre17`, `10-jre17`, `10.0.25-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.25-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.25-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.25-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.25-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.25-jre11`, `10.0-jre11`, `10-jre11`, `10.0.25-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.25-jre11`, `10.0-jre11`, `10-jre11`, `10.0.25-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.25-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.25-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.25-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.25-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.25`, `10.0`, `10`, `10.0.25-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.25-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.25-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.25`, `10.0`, `10`, `10.0.25-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.25-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.25-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk21/Dockerfile) -- [`10.0.25-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.25-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.25-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.25-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) -- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk17/Dockerfile) -- [`10.0.25-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.25-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.25-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.25-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) -- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/34d907c9ea97a79faefe7d80e5a24f32b53a4f13/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.57-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.57-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.57-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.57-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.57-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.57-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.57-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.57-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.57-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.57-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.57-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.57-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.57-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.57-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/446d2207a126e7afe059328bc3641731d2cbd74e/amazoncorretto/9.4/jdk11/Dockerfile) +- [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.23-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.24-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.23-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.24-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.23-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.24-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.23-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.23-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.24-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.24-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.23-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.24-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.23-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.24-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.23-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/af303c2b44ec3211b77f3a28fe6a4fbbfdac3f2a/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.24-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.25-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.25-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.25-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.25-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.25-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.25-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.25-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.25-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.25-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.25-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.25-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.25-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.25-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.25-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.25-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.25-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.25-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.25-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.25-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.25-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.25-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.25-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.25-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.25-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.25-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/354499910a5a61631cea6a8679f2d11f054c2ecb/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.25-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) diff --git a/nginx/README.md b/nginx/README.md index aca318b881e5..d1d91c0b735e 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.0`, `mainline`, `1`, `1.29`, `latest`, `1.29.0-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/b2faad22d5d15d966e46922033681639b2a6d6fa/mainline/debian/Dockerfile) +- [`1.29.1`, `mainline`, `1`, `1.29`, `latest`, `1.29.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian/Dockerfile) -- [`1.29.0-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.0-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.29-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian-perl/Dockerfile) +- [`1.29.1-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.29-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian-perl/Dockerfile) -- [`1.29.0-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.0-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.29-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/debian-otel/Dockerfile) +- [`1.29.1-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.1-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.29-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian-otel/Dockerfile) -- [`1.29.0-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.0-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine/Dockerfile) +- [`1.29.1-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.1-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine/Dockerfile) -- [`1.29.0-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.0-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-perl/Dockerfile) +- [`1.29.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.1-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-perl/Dockerfile) -- [`1.29.0-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.0-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-slim/Dockerfile) +- [`1.29.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.1-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-slim/Dockerfile) -- [`1.29.0-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.0-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/7895505c41013f66d3841cd2613b436229c1fe0e/mainline/alpine-otel/Dockerfile) +- [`1.29.1-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.1-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-otel/Dockerfile) -- [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/b2faad22d5d15d966e46922033681639b2a6d6fa/stable/debian/Dockerfile) +- [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/9b549fdf936778810dbe95a4813899c60444ef1c/stable/debian/Dockerfile) - [`1.28.0-perl`, `stable-perl`, `1.28-perl`, `1.28.0-bookworm-perl`, `stable-bookworm-perl`, `1.28-bookworm-perl`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/debian-perl/Dockerfile) @@ -48,7 +48,7 @@ WARNING: - [`1.28.0-alpine-perl`, `stable-alpine-perl`, `1.28-alpine-perl`, `1.28.0-alpine3.21-perl`, `stable-alpine3.21-perl`, `1.28-alpine3.21-perl`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-perl/Dockerfile) -- [`1.28.0-alpine-slim`, `stable-alpine-slim`, `1.28-alpine-slim`, `1.28.0-alpine3.21-slim`, `stable-alpine3.21-slim`, `1.28-alpine3.21-slim`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-slim/Dockerfile) +- [`1.28.0-alpine-slim`, `stable-alpine-slim`, `1.28-alpine-slim`, `1.28.0-alpine3.21-slim`, `stable-alpine3.21-slim`, `1.28-alpine3.21-slim`](https://github.com/nginx/docker-nginx/blob/9b549fdf936778810dbe95a4813899c60444ef1c/stable/alpine-slim/Dockerfile) - [`1.28.0-alpine-otel`, `stable-alpine-otel`, `1.28-alpine-otel`, `1.28.0-alpine3.21-otel`, `stable-alpine3.21-otel`, `1.28-alpine3.21-otel`](https://github.com/nginx/docker-nginx/blob/7f1d49f6f222f7e588a9066fd53a0ce43c3466a5/stable/alpine-otel/Dockerfile) diff --git a/node/README.md b/node/README.md index 5b31b4e81a2a..9b48885557b4 100644 --- a/node/README.md +++ b/node/README.md @@ -36,6 +36,10 @@ WARNING: - [`24-bullseye-slim`, `24.5-bullseye-slim`, `24.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bullseye-slim/Dockerfile) +- [`24-trixie`, `24.5-trixie`, `24.5.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/24/trixie/Dockerfile) + +- [`24-trixie-slim`, `24.5-trixie-slim`, `24.5.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/24/trixie-slim/Dockerfile) + - [`22-alpine3.21`, `22.18-alpine3.21`, `22.18.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.21/Dockerfile) - [`22-alpine`, `22-alpine3.22`, `22.18-alpine`, `22.18-alpine3.22`, `22.18.0-alpine`, `22.18.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.22/Dockerfile) @@ -48,6 +52,10 @@ WARNING: - [`22-bullseye-slim`, `22.18-bullseye-slim`, `22.18.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bullseye-slim/Dockerfile) +- [`22-trixie`, `22.18-trixie`, `22.18.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/22/trixie/Dockerfile) + +- [`22-trixie-slim`, `22.18-trixie-slim`, `22.18.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/22/trixie-slim/Dockerfile) + - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) - [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.4-alpine`, `20.19.4-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.22/Dockerfile) @@ -60,6 +68,10 @@ WARNING: - [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.4-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/20/bullseye-slim/Dockerfile) +- [`20-trixie`, `20.19-trixie`, `20.19.4-trixie`, `iron-trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/20/trixie/Dockerfile) + +- [`20-trixie-slim`, `20.19-trixie-slim`, `20.19.4-trixie-slim`, `iron-trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/20/trixie-slim/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: @@ -103,7 +115,7 @@ The `node` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. From 9596822e820d3ab965fd69cc1767ff9a2e081c04 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Aug 2025 14:10:33 -0700 Subject: [PATCH 2428/2686] Run update.sh --- couchbase/README.md | 4 +++- ghost/README.md | 8 ++++---- memcached/README.md | 6 +++--- wordpress/README.md | 26 +++++++++++++------------- 4 files changed, 23 insertions(+), 21 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 7511e0a5e12c..94c1649092e4 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.6`, `enterprise`, `enterprise-7.6.6`, `latest`](https://github.com/couchbase/docker/blob/9ce3cbc835dd4e072943ac7878aa7f87d6b95178/enterprise/couchbase-server/7.6.6/Dockerfile) +- [`7.6.7`, `enterprise`, `enterprise-7.6.7`, `latest`](https://github.com/couchbase/docker/blob/a322cc7110124b2581339f52d88bab80fb50016d/enterprise/couchbase-server/7.6.7/Dockerfile) + +- [`7.6.6`, `enterprise-7.6.6`](https://github.com/couchbase/docker/blob/9ce3cbc835dd4e072943ac7878aa7f87d6b95178/enterprise/couchbase-server/7.6.6/Dockerfile) - [`7.6.5`, `enterprise-7.6.5`](https://github.com/couchbase/docker/blob/ec16abff6f0551ced6c771bd5606a4392379dd31/enterprise/couchbase-server/7.6.5/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index c407382099d4..a15cb4936b79 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/367a5c44e346cb2fa71bf2a47f0e2b6d753c6b0c/6/debian/Dockerfile) +- [`6.0.3`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/44adbd73a5aab86d7b650c8e4baff2eaa4bda1ee/6/debian/Dockerfile) -- [`6.0.2-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/367a5c44e346cb2fa71bf2a47f0e2b6d753c6b0c/6/alpine/Dockerfile) +- [`6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/44adbd73a5aab86d7b650c8e4baff2eaa4bda1ee/6/alpine/Dockerfile) -- [`5.130.3`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/521da5fea8b4cccffdb40ad78205b96e8342b98d/5/debian/Dockerfile) +- [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) -- [`5.130.3-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/521da5fea8b4cccffdb40ad78205b96e8342b98d/5/alpine/Dockerfile) +- [`5.130.4-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/memcached/README.md b/memcached/README.md index ee81166409ec..078a43fc991b 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.39`, `1.6`, `1`, `latest`, `1.6.39-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/82dce5b661528c56980b7166b1065c149fab783e/1/debian/Dockerfile) +- [`1.6.39`, `1.6`, `1`, `latest`, `1.6.39-trixie`, `1.6-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/memcached/blob/4569a8aaadebe2cfc4c1b5b052eb0764519db470/1/debian/Dockerfile) - [`1.6.39-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.39-alpine3.22`, `1.6-alpine3.22`, `1-alpine3.22`, `alpine3.22`](https://github.com/docker-library/memcached/blob/82dce5b661528c56980b7166b1065c149fab783e/1/alpine/Dockerfile) @@ -34,7 +34,7 @@ WARNING: [https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`mips64le`](https://hub.docker.com/r/mips64le/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) + [`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`riscv64`](https://hub.docker.com/r/riscv64/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/) - **Published image artifact details**: [repo-info repo's `repos/memcached/` directory](https://github.com/docker-library/repo-info/blob/master/repos/memcached) ([history](https://github.com/docker-library/repo-info/commits/master/repos/memcached)) @@ -97,7 +97,7 @@ The `memcached` images come in many flavors, each designed for a specific use ca This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `memcached:-alpine` diff --git a/wordpress/README.md b/wordpress/README.md index 8b0318dc1de5..c1228b2396d1 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/apache/Dockerfile) +- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/apache/Dockerfile) -- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/fpm/Dockerfile) +- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/fpm/Dockerfile) -- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/apache/Dockerfile) +- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/apache/Dockerfile) -- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/fpm/Dockerfile) +- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm/Dockerfile) -- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/apache/Dockerfile) +- [`6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/apache/Dockerfile) -- [`6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/fpm/Dockerfile) +- [`6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm/Dockerfile) -- [`6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/apache/Dockerfile) +- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/apache/Dockerfile) -- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/fpm/Dockerfile) +- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/fpm/Dockerfile) -- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6b67cd46375883e2e25d218736ce936f93aca3b2/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) @@ -62,7 +62,7 @@ WARNING: [https://github.com/docker-library/wordpress/issues](https://github.com/docker-library/wordpress/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`mips64le`](https://hub.docker.com/r/mips64le/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`riscv64`](https://hub.docker.com/r/riscv64/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/) + [`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`riscv64`](https://hub.docker.com/r/riscv64/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/) - **Published image artifact details**: [repo-info repo's `repos/wordpress/` directory](https://github.com/docker-library/repo-info/blob/master/repos/wordpress) ([history](https://github.com/docker-library/repo-info/commits/master/repos/wordpress)) From bcec7d1904bfd361e2435620396e7b9645fee470 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Aug 2025 15:10:23 -0700 Subject: [PATCH 2429/2686] Run update.sh --- drupal/README.md | 98 +++++++++++++++++++++++------------------------ haproxy/README.md | 4 +- hylang/README.md | 92 ++++++++++++++++++++++---------------------- 3 files changed, 98 insertions(+), 96 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index c6f5ebb071ed..38f4905cbd25 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.3-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.3-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.3-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.3-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`, `11.2.3-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.3-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.3-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.3-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.3-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.3-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/apache-trixie/Dockerfile) -- [`11.2.3-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.3-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.3-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`, `11.2.3-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.3-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.3-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.3-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.3-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-trixie/Dockerfile) -- [`11.2.3-php8.4-apache-bullseye`, `11.2-php8.4-apache-bullseye`, `11-php8.4-apache-bullseye`, `php8.4-apache-bullseye`, `11.2.3-apache-bullseye`, `11.2-apache-bullseye`, `11-apache-bullseye`, `apache-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/apache-bullseye/Dockerfile) +- [`11.2.3-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.3-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.3-php8.4-fpm-bullseye`, `11.2-php8.4-fpm-bullseye`, `11-php8.4-fpm-bullseye`, `php8.4-fpm-bullseye`, `11.2.3-fpm-bullseye`, `11.2-fpm-bullseye`, `11-fpm-bullseye`, `fpm-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-bullseye/Dockerfile) +- [`11.2.3-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.3-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.3-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.3-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.3-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.3-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.3-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.3-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.3-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.3-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.3-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.3-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.3-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.3-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.3-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`, `11.2.3-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.3-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.3-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.3-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.3-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/apache-trixie/Dockerfile) -- [`11.2.3-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`, `11.2.3-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.3-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.3-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-trixie/Dockerfile) -- [`11.2.3-php8.3-apache-bullseye`, `11.2-php8.3-apache-bullseye`, `11-php8.3-apache-bullseye`, `php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/apache-bullseye/Dockerfile) +- [`11.2.3-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.3-php8.3-fpm-bullseye`, `11.2-php8.3-fpm-bullseye`, `11-php8.3-fpm-bullseye`, `php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-bullseye/Dockerfile) +- [`11.2.3-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.3-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.3-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.3-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.3-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.3-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/25bfb558f9491a408a0f9e12e3d921754c4ad2ed/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.3-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bookworm/Dockerfile) +- [`11.1.8-php8.4-apache-trixie`, `11.1-php8.4-apache-trixie`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-trixie/Dockerfile) -- [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.4-fpm-trixie`, `11.1-php8.4-fpm-trixie`, `11.1.8-php8.4-fpm`, `11.1-php8.4-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/fpm-trixie/Dockerfile) -- [`11.1.8-php8.4-apache-bullseye`, `11.1-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.4/apache-bullseye/Dockerfile) +- [`11.1.8-php8.4-apache-bookworm`, `11.1-php8.4-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-bookworm/Dockerfile) -- [`11.1.8-php8.4-fpm-bullseye`, `11.1-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.4-fpm-bookworm`, `11.1-php8.4-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.4-fpm-alpine3.22`, `11.1-php8.4-fpm-alpine3.22`, `11.1.8-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/11.1/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.22`, `11.1-php8.4-fpm-alpine3.22`, `11.1.8-php8.4-fpm-alpine`, `11.1-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.4-fpm-alpine3.21`, `11.1-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`, `11.1.8-apache`, `11.1-apache`, `11.1.8`, `11.1`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.3/apache-bookworm/Dockerfile) +- [`11.1.8-php8.3-apache-trixie`, `11.1-php8.3-apache-trixie`, `11.1.8-php8.3-apache`, `11.1-php8.3-apache`, `11.1.8-php8.3`, `11.1-php8.3`, `11.1.8-apache-trixie`, `11.1-apache-trixie`, `11.1.8-apache`, `11.1-apache`, `11.1.8`, `11.1`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/apache-trixie/Dockerfile) -- [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`, `11.1.8-fpm`, `11.1-fpm`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bookworm/Dockerfile) +- [`11.1.8-php8.3-fpm-trixie`, `11.1-php8.3-fpm-trixie`, `11.1.8-php8.3-fpm`, `11.1-php8.3-fpm`, `11.1.8-fpm-trixie`, `11.1-fpm-trixie`, `11.1.8-fpm`, `11.1-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-trixie/Dockerfile) -- [`11.1.8-php8.3-apache-bullseye`, `11.1-php8.3-apache-bullseye`, `11.1.8-apache-bullseye`, `11.1-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/11.1/php8.3/apache-bullseye/Dockerfile) +- [`11.1.8-php8.3-apache-bookworm`, `11.1-php8.3-apache-bookworm`, `11.1.8-apache-bookworm`, `11.1-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/apache-bookworm/Dockerfile) -- [`11.1.8-php8.3-fpm-bullseye`, `11.1-php8.3-fpm-bullseye`, `11.1.8-fpm-bullseye`, `11.1-fpm-bullseye`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-bullseye/Dockerfile) +- [`11.1.8-php8.3-fpm-bookworm`, `11.1-php8.3-fpm-bookworm`, `11.1.8-fpm-bookworm`, `11.1-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-bookworm/Dockerfile) -- [`11.1.8-php8.3-fpm-alpine3.22`, `11.1-php8.3-fpm-alpine3.22`, `11.1.8-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11.1.8-fpm-alpine3.22`, `11.1-fpm-alpine3.22`, `11.1.8-fpm-alpine`, `11.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/11.1/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.22`, `11.1-php8.3-fpm-alpine3.22`, `11.1.8-php8.3-fpm-alpine`, `11.1-php8.3-fpm-alpine`, `11.1.8-fpm-alpine3.22`, `11.1-fpm-alpine3.22`, `11.1.8-fpm-alpine`, `11.1-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/fc8bb8678a97dd7100c472b8d91ca80d8b898ebf/11.1/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.2-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.2-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.2-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.2-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`, `10.5.2-apache`, `10.5-apache`, `10-apache`, `10.5.2`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.2-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.2-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.2-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.2-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.2-apache`, `10.5-apache`, `10-apache`, `10.5.2`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/apache-trixie/Dockerfile) -- [`10.5.2-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.2-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.2-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`, `10.5.2-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.2-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.2-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.2-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.2-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-trixie/Dockerfile) -- [`10.5.2-php8.4-apache-bullseye`, `10.5-php8.4-apache-bullseye`, `10-php8.4-apache-bullseye`, `10.5.2-apache-bullseye`, `10.5-apache-bullseye`, `10-apache-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/apache-bullseye/Dockerfile) +- [`10.5.2-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.2-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.2-php8.4-fpm-bullseye`, `10.5-php8.4-fpm-bullseye`, `10-php8.4-fpm-bullseye`, `10.5.2-fpm-bullseye`, `10.5-fpm-bullseye`, `10-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-bullseye/Dockerfile) +- [`10.5.2-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.2-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.2-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.2-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.2-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.2-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.2-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.2-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.2-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.2-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.2-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.2-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.2-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.2-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.2-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`, `10.5.2-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.2-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.2-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.2-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.2-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/apache-trixie/Dockerfile) -- [`10.5.2-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`, `10.5.2-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.2-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.2-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-trixie/Dockerfile) -- [`10.5.2-php8.3-apache-bullseye`, `10.5-php8.3-apache-bullseye`, `10-php8.3-apache-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/apache-bullseye/Dockerfile) +- [`10.5.2-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.2-php8.3-fpm-bullseye`, `10.5-php8.3-fpm-bullseye`, `10-php8.3-fpm-bullseye`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-bullseye/Dockerfile) +- [`10.5.2-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.2-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.2-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.2-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.2-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.2-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/c9db8eff440f83626a22cc7df648d15313c54e7d/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.2-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bookworm/Dockerfile) +- [`10.4.8-php8.4-apache-trixie`, `10.4-php8.4-apache-trixie`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/apache-trixie/Dockerfile) -- [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.4-fpm-trixie`, `10.4-php8.4-fpm-trixie`, `10.4.8-php8.4-fpm`, `10.4-php8.4-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/fpm-trixie/Dockerfile) -- [`10.4.8-php8.4-apache-bullseye`, `10.4-php8.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.4/apache-bullseye/Dockerfile) +- [`10.4.8-php8.4-apache-bookworm`, `10.4-php8.4-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/apache-bookworm/Dockerfile) -- [`10.4.8-php8.4-fpm-bullseye`, `10.4-php8.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.4-fpm-bookworm`, `10.4-php8.4-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/fpm-bookworm/Dockerfile) -- [`10.4.8-php8.4-fpm-alpine3.22`, `10.4-php8.4-fpm-alpine3.22`, `10.4.8-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/10.4/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.22`, `10.4-php8.4-fpm-alpine3.22`, `10.4.8-php8.4-fpm-alpine`, `10.4-php8.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.4-fpm-alpine3.21`, `10.4-php8.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`, `10.4.8-apache`, `10.4-apache`, `10.4.8`, `10.4`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.3/apache-bookworm/Dockerfile) +- [`10.4.8-php8.3-apache-trixie`, `10.4-php8.3-apache-trixie`, `10.4.8-php8.3-apache`, `10.4-php8.3-apache`, `10.4.8-php8.3`, `10.4-php8.3`, `10.4.8-apache-trixie`, `10.4-apache-trixie`, `10.4.8-apache`, `10.4-apache`, `10.4.8`, `10.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/apache-trixie/Dockerfile) -- [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`, `10.4.8-fpm`, `10.4-fpm`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bookworm/Dockerfile) +- [`10.4.8-php8.3-fpm-trixie`, `10.4-php8.3-fpm-trixie`, `10.4.8-php8.3-fpm`, `10.4-php8.3-fpm`, `10.4.8-fpm-trixie`, `10.4-fpm-trixie`, `10.4.8-fpm`, `10.4-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/fpm-trixie/Dockerfile) -- [`10.4.8-php8.3-apache-bullseye`, `10.4-php8.3-apache-bullseye`, `10.4.8-apache-bullseye`, `10.4-apache-bullseye`](https://github.com/docker-library/drupal/blob/e519db2680ed80385869df7c3f1f1953ac613640/10.4/php8.3/apache-bullseye/Dockerfile) +- [`10.4.8-php8.3-apache-bookworm`, `10.4-php8.3-apache-bookworm`, `10.4.8-apache-bookworm`, `10.4-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/apache-bookworm/Dockerfile) -- [`10.4.8-php8.3-fpm-bullseye`, `10.4-php8.3-fpm-bullseye`, `10.4.8-fpm-bullseye`, `10.4-fpm-bullseye`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-bullseye/Dockerfile) +- [`10.4.8-php8.3-fpm-bookworm`, `10.4-php8.3-fpm-bookworm`, `10.4.8-fpm-bookworm`, `10.4-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/fpm-bookworm/Dockerfile) -- [`10.4.8-php8.3-fpm-alpine3.22`, `10.4-php8.3-fpm-alpine3.22`, `10.4.8-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10.4.8-fpm-alpine3.22`, `10.4-fpm-alpine3.22`, `10.4.8-fpm-alpine`, `10.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/8c7d5d9cedb1c95cc377c2b7b16e31fff1f49934/10.4/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.22`, `10.4-php8.3-fpm-alpine3.22`, `10.4.8-php8.3-fpm-alpine`, `10.4-php8.3-fpm-alpine`, `10.4.8-fpm-alpine3.22`, `10.4-fpm-alpine3.22`, `10.4.8-fpm-alpine`, `10.4-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.4.8-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10.4.8-fpm-alpine3.21`, `10.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/63c7afc822b8fda0cae483894af5fd495e698144/10.4/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.4.8-php8.3-fpm-alpine3.21`, `10.4-php8.3-fpm-alpine3.21`, `10.4.8-fpm-alpine3.21`, `10.4-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.3/fpm-alpine3.21/Dockerfile) # Quick reference (cont.) @@ -302,7 +302,7 @@ The `drupal` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `drupal:-fpm` diff --git a/haproxy/README.md b/haproxy/README.md index 0b3bc15e478e..a4bd9d652706 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.3-dev6-alpine`, `3.3-dev-alpine`, `3.3-dev6-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/alpine/Dockerfile) -- [`3.2.3`, `3.2`, `latest`, `lts`, `3.2.3-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.2/Dockerfile) +- [`3.2.4`, `3.2`, `latest`, `lts`, `3.2.4-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/Dockerfile) -- [`3.2.3-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.3-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3b6ff7d6c6c2562948c4e91e6f592e176eab5e0f/3.2/alpine/Dockerfile) +- [`3.2.4-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.4-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/alpine/Dockerfile) - [`3.1.8`, `3.1`, `3.1.8-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.1/Dockerfile) diff --git a/hylang/README.md b/hylang/README.md index 3b5c0f26b3ef..08c8d3eada2f 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,103 +28,105 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-trixie) -- [`1.1.0-python3.13-bullseye`, `1.1-python3.13-bullseye`, `1-python3.13-bullseye`, `python3.13-bullseye`, `1.1.0-bullseye`, `1.1-bullseye`, `1-bullseye`, `bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bullseye) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-trixie) -- [`1.1.0-python3.12-bullseye`, `1.1-python3.12-bullseye`, `1-python3.12-bullseye`, `python3.12-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bullseye) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-trixie) -- [`1.1.0-python3.11-bullseye`, `1.1-python3.11-bullseye`, `1-python3.11-bullseye`, `python3.11-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bullseye) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-trixie) -- [`1.1.0-python3.10-bullseye`, `1.1-python3.10-bullseye`, `1-python3.10-bullseye`, `python3.10-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bullseye) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-trixie) -- [`1.1.0-python3.9-bullseye`, `1.1-python3.9-bullseye`, `1-python3.9-bullseye`, `python3.9-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bullseye) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.14-rc-trixie`, `1.1-python3.14-rc-trixie`, `1-python3.14-rc-trixie`, `python3.14-rc-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-trixie) -- [`1.1.0-python3.14-rc-bullseye`, `1.1-python3.14-rc-bullseye`, `1-python3.14-rc-bullseye`, `python3.14-rc-bullseye`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bullseye) +- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) -- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) +- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-trixie) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) ## Shared Tags - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-bookworm) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-bookworm) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-bookworm) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-bookworm) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.9-bookworm) + - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-bookworm) - `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/840be50da77d4c04e45a3e2394c86d221483788f/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) # Quick reference (cont.) @@ -187,7 +189,7 @@ The `hylang` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `hylang:-alpine` From 1d93e239d476b30003fe6aa9e79d544638429fbc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 13 Aug 2025 16:10:19 -0700 Subject: [PATCH 2430/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- hello-world/README.md | 6 +++--- hello-world/content.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8f0bc1c0b6a2..a54a443cb053 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.8.20250715.0`](https://github.com/amazonlinux/container-images/blob/12e432807ac744a5cf1da9f5a0ac5fd0bfad2a94/Dockerfile) +- [`2023`, `latest`, `2023.8.20250808.1`](https://github.com/amazonlinux/container-images/blob/94f86e7a853963227c332a030c651668c70850b9/Dockerfile) -- [`2`, `2.0.20250707.0`](https://github.com/amazonlinux/container-images/blob/ff7c7277e66ddb9671b1d2f52a9dd03e12da17ad/Dockerfile) +- [`2`, `2.0.20250808.1`](https://github.com/amazonlinux/container-images/blob/0a084d30ee45ac3299f958e7b37088a12f87b250/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/hello-world/README.md b/hello-world/README.md index 8bdb62459ebc..f8cdb3f3305a 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`linux`](https://github.com/docker-library/hello-world/blob/a71acd2dfb8c21c8e42a8f926ce37c1ffbf8eae7/amd64/hello-world/Dockerfile) +- [`linux`](https://github.com/docker-library/hello-world/blob/6930d60e10e81283a57be3ee3a2b5ca328a40304/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) @@ -38,7 +38,7 @@ WARNING: - `latest`: - - [`linux`](https://github.com/docker-library/hello-world/blob/a71acd2dfb8c21c8e42a8f926ce37c1ffbf8eae7/amd64/hello-world/Dockerfile) + - [`linux`](https://github.com/docker-library/hello-world/blob/6930d60e10e81283a57be3ee3a2b5ca328a40304/amd64/hello-world/Dockerfile) - [`nanoserver-ltsc2025`](https://github.com/docker-library/hello-world/blob/08987c71f648c985f54be2a80bed4223cbd0723b/amd64/hello-world/nanoserver-ltsc2025/Dockerfile) - [`nanoserver-ltsc2022`](https://github.com/docker-library/hello-world/blob/c816763efda4774cc0c628dca3c7dbd93c099928/amd64/hello-world/nanoserver-ltsc2022/Dockerfile) @@ -95,7 +95,7 @@ For more examples and ideas, visit: $ docker images hello-world REPOSITORY TAG IMAGE ID SIZE -hello-world latest 74cc54e27dc4 10.07kB +hello-world latest 1b44b5a3e06a 10.07kB ``` ![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/hello-world/logo.png) diff --git a/hello-world/content.md b/hello-world/content.md index 242556a522b1..53158910e528 100644 --- a/hello-world/content.md +++ b/hello-world/content.md @@ -27,7 +27,7 @@ For more examples and ideas, visit: $ docker images %%IMAGE%% REPOSITORY TAG IMAGE ID SIZE -hello-world latest 74cc54e27dc4 10.07kB +hello-world latest 1b44b5a3e06a 10.07kB ``` %%LOGO%% From d0273920be21d1aa54a9f7392030cf7bfae863e7 Mon Sep 17 00:00:00 2001 From: Christoph Obexer Date: Thu, 14 Aug 2025 15:57:07 +0200 Subject: [PATCH 2431/2686] Gradle: Transfer the `gradle` image to Gradle Moving the repository and updating to official maintainers from Gradle. Signed-off-by: Christoph Obexer --- gradle/github-repo | 2 +- gradle/maintainer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/github-repo b/gradle/github-repo index 784f386f7951..a7f853f1b379 100644 --- a/gradle/github-repo +++ b/gradle/github-repo @@ -1 +1 @@ -https://github.com/keeganwitt/docker-gradle +https://github.com/gradle/docker-gradle diff --git a/gradle/maintainer.md b/gradle/maintainer.md index f53574265422..078f1bd5a904 100644 --- a/gradle/maintainer.md +++ b/gradle/maintainer.md @@ -1 +1 @@ -[Keegan Witt (of the Groovy Project)](%%GITHUB-REPO%%), [with the Gradle Project's approval](https://discuss.gradle.org/t/official-docker-images/21159/8) +[Gradle, Inc.](%%GITHUB-REPO%%) From 111604c8dad15ee43db04886cbdaa3c918efe878 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Aug 2025 11:10:12 -0700 Subject: [PATCH 2432/2686] Run update.sh --- clickhouse/README.md | 8 +-- dart/README.md | 6 +- gradle/README.md | 152 +++++++++++++++++++++---------------------- nats/README.md | 38 +++++------ 4 files changed, 102 insertions(+), 102 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 0b507dfc5209..708feaf895c3 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.2`, `25.7.2-jammy`, `25.7.2.54`, `25.7.2.54-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.7.2.54/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.4`, `25.7.4-jammy`, `25.7.4.11`, `25.7.4.11-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.7.4.11/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.6.8.10/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.6.8.10/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.5.9.14/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.5.9.14/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8e85c013a6a6b3b4e073f107421f1e96df60eb57/server/25.3.6.56/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index 0d53c6289f7e..ed5987d0bc55 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.3-sdk`, `3.8-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.8.3`, `3.8`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/19c93897da021cf96a8466f017fbba294b9cb4f6/stable/bookworm/Dockerfile) +- [`3.9.0-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.0`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6c30628c249e3915b95da3876f0c8f607e286bee/stable/trixie/Dockerfile) -- [`3.9.0-333.4.beta-sdk`, `beta-sdk`, `3.9.0-333.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/19c93897da021cf96a8466f017fbba294b9cb4f6/beta/bookworm/Dockerfile) +- [`3.10.0-75.1.beta-sdk`, `beta-sdk`, `3.10.0-75.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6c30628c249e3915b95da3876f0c8f607e286bee/beta/trixie/Dockerfile) # Quick reference (cont.) @@ -34,7 +34,7 @@ WARNING: [https://github.com/dart-lang/dart-docker/issues](https://github.com/dart-lang/dart-docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/dart/), [`arm32v7`](https://hub.docker.com/r/arm32v7/dart/), [`arm64v8`](https://hub.docker.com/r/arm64v8/dart/) + [`amd64`](https://hub.docker.com/r/amd64/dart/), [`arm32v7`](https://hub.docker.com/r/arm32v7/dart/), [`arm64v8`](https://hub.docker.com/r/arm64v8/dart/), [`riscv64`](https://hub.docker.com/r/riscv64/dart/) - **Published image artifact details**: [repo-info repo's `repos/dart/` directory](https://github.com/docker-library/repo-info/blob/master/repos/dart) ([history](https://github.com/docker-library/repo-info/commits/master/repos/dart)) diff --git a/gradle/README.md b/gradle/README.md index 946419e026cb..ac707ab73cf6 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -17,165 +17,165 @@ WARNING: # Quick reference - **Maintained by**: - [Keegan Witt (of the Groovy Project)](https://github.com/keeganwitt/docker-gradle), [with the Gradle Project's approval](https://discuss.gradle.org/t/official-docker-images/21159/8) + [Gradle, Inc.](https://github.com/gradle/docker-gradle) - **Where to get help**: [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) # Supported tags and respective `Dockerfile` links -- [`9.0.0-jdk21`, `9.0-jdk21`, `9-jdk21`, `jdk21`, `9.0.0-jdk21-noble`, `9.0-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.0.0-jdk`, `9.0-jdk`, `9-jdk`, `jdk`, `9.0.0`, `9.0`, `9`, `9.0.0-jdk-noble`, `9.0-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.0.0-noble`, `9.0-noble`, `9-noble`, `noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble/Dockerfile) +- [`9.0.0-jdk21`, `9.0-jdk21`, `9-jdk21`, `jdk21`, `9.0.0-jdk21-noble`, `9.0-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.0.0-jdk`, `9.0-jdk`, `9-jdk`, `jdk`, `9.0.0`, `9.0`, `9`, `9.0.0-jdk-noble`, `9.0-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.0.0-noble`, `9.0-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble/Dockerfile) -- [`9.0.0-jdk21-jammy`, `9.0-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.0.0-jdk-jammy`, `9.0-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.0.0-jammy`, `9.0-jammy`, `9-jammy`, `jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy/Dockerfile) +- [`9.0.0-jdk21-jammy`, `9.0-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.0.0-jdk-jammy`, `9.0-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.0.0-jammy`, `9.0-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy/Dockerfile) -- [`9.0.0-jdk21-alpine`, `9.0-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.0.0-jdk-alpine`, `9.0-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.0.0-alpine`, `9.0-alpine`, `9-alpine`, `alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-alpine/Dockerfile) +- [`9.0.0-jdk21-alpine`, `9.0-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.0.0-jdk-alpine`, `9.0-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.0.0-alpine`, `9.0-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-alpine/Dockerfile) -- [`9.0.0-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.0.0-jdk21-corretto-al2023`, `9.0-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-corretto/Dockerfile) +- [`9.0.0-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.0.0-jdk21-corretto-al2023`, `9.0-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-corretto/Dockerfile) -- [`9.0.0-jdk21-ubi`, `9.0-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.0.0-jdk21-ubi-minimal`, `9.0-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-ubi9/Dockerfile) +- [`9.0.0-jdk21-ubi`, `9.0-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.0.0-jdk21-ubi-minimal`, `9.0-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-ubi9/Dockerfile) -- [`9.0.0-jdk21-graal`, `9.0-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.0.0-jdk-graal`, `9.0-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.0.0-graal`, `9.0-graal`, `9-graal`, `graal`, `9.0.0-jdk21-graal-noble`, `9.0-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.0.0-jdk-graal-noble`, `9.0-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.0.0-graal-noble`, `9.0-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble-graal/Dockerfile) +- [`9.0.0-jdk21-graal`, `9.0-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.0.0-jdk-graal`, `9.0-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.0.0-graal`, `9.0-graal`, `9-graal`, `graal`, `9.0.0-jdk21-graal-noble`, `9.0-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.0.0-jdk-graal-noble`, `9.0-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.0.0-graal-noble`, `9.0-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble-graal/Dockerfile) -- [`9.0.0-jdk21-graal-jammy`, `9.0-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.0.0-jdk-graal-jammy`, `9.0-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.0.0-graal-jammy`, `9.0-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy-graal/Dockerfile) +- [`9.0.0-jdk21-graal-jammy`, `9.0-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.0.0-jdk-graal-jammy`, `9.0-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.0.0-graal-jammy`, `9.0-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy-graal/Dockerfile) -- [`9.0.0-jdk17`, `9.0-jdk17`, `9-jdk17`, `jdk17`, `9.0.0-jdk17-noble`, `9.0-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble/Dockerfile) +- [`9.0.0-jdk17`, `9.0-jdk17`, `9-jdk17`, `jdk17`, `9.0.0-jdk17-noble`, `9.0-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble/Dockerfile) -- [`9.0.0-jdk17-jammy`, `9.0-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy/Dockerfile) +- [`9.0.0-jdk17-jammy`, `9.0-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy/Dockerfile) -- [`9.0.0-jdk17-alpine`, `9.0-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-alpine/Dockerfile) +- [`9.0.0-jdk17-alpine`, `9.0-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-alpine/Dockerfile) -- [`9.0.0-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.0.0-jdk17-corretto-al2023`, `9.0-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-corretto/Dockerfile) +- [`9.0.0-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.0.0-jdk17-corretto-al2023`, `9.0-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-corretto/Dockerfile) -- [`9.0.0-jdk17-ubi`, `9.0-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.0.0-jdk17-ubi-minimal`, `9.0-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-ubi9/Dockerfile) +- [`9.0.0-jdk17-ubi`, `9.0-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.0.0-jdk17-ubi-minimal`, `9.0-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-ubi9/Dockerfile) -- [`9.0.0-jdk17-graal`, `9.0-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.0.0-jdk17-graal-noble`, `9.0-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble-graal/Dockerfile) +- [`9.0.0-jdk17-graal`, `9.0-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.0.0-jdk17-graal-noble`, `9.0-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble-graal/Dockerfile) -- [`9.0.0-jdk17-graal-jammy`, `9.0-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy-graal/Dockerfile) +- [`9.0.0-jdk17-graal-jammy`, `9.0-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy-graal/Dockerfile) -- [`9.0.0-jdk24`, `9.0-jdk24`, `9-jdk24`, `jdk24`, `9.0.0-jdk24-noble`, `9.0-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble/Dockerfile) +- [`9.0.0-jdk24`, `9.0-jdk24`, `9-jdk24`, `jdk24`, `9.0.0-jdk24-noble`, `9.0-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble/Dockerfile) -- [`9.0.0-jdk24-alpine`, `9.0-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-alpine/Dockerfile) +- [`9.0.0-jdk24-alpine`, `9.0-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-alpine/Dockerfile) -- [`9.0.0-jdk24-corretto`, `9.0-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.0.0-jdk24-corretto-al2023`, `9.0-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-corretto/Dockerfile) +- [`9.0.0-jdk24-corretto`, `9.0-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.0.0-jdk24-corretto-al2023`, `9.0-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-corretto/Dockerfile) -- [`9.0.0-jdk24-ubi`, `9.0-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.0.0-jdk24-ubi-minimal`, `9.0-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-ubi9/Dockerfile) +- [`9.0.0-jdk24-ubi`, `9.0-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.0.0-jdk24-ubi-minimal`, `9.0-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-ubi9/Dockerfile) -- [`9.0.0-jdk24-graal`, `9.0-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.0.0-jdk24-graal-noble`, `9.0-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble-graal/Dockerfile) +- [`9.0.0-jdk24-graal`, `9.0-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.0.0-jdk24-graal-noble`, `9.0-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble-graal/Dockerfile) -- [`9.0.0-jdk-lts-and-current`, `9.0-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.0.0-jdk-lts-and-current-noble`, `9.0-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.0.0-jdk-21-and-24`, `9.0-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.0.0-jdk-21-and-24-noble`, `9.0-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current/Dockerfile) +- [`9.0.0-jdk-lts-and-current`, `9.0-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.0.0-jdk-lts-and-current-noble`, `9.0-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.0.0-jdk-21-and-24`, `9.0-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.0.0-jdk-21-and-24-noble`, `9.0-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current/Dockerfile) -- [`9.0.0-jdk-lts-and-current-alpine`, `9.0-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.0.0-jdk-21-and-24-alpine`, `9.0-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-alpine/Dockerfile) +- [`9.0.0-jdk-lts-and-current-alpine`, `9.0-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.0.0-jdk-21-and-24-alpine`, `9.0-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-alpine/Dockerfile) -- [`9.0.0-jdk-lts-and-current-corretto`, `9.0-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.0.0-jdk-lts-and-current-corretto-al2023`, `9.0-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.0.0-jdk-21-and-24-corretto`, `9.0-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.0.0-jdk-21-and-24-corretto-al2023`, `9.0-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-corretto/Dockerfile) +- [`9.0.0-jdk-lts-and-current-corretto`, `9.0-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.0.0-jdk-lts-and-current-corretto-al2023`, `9.0-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.0.0-jdk-21-and-24-corretto`, `9.0-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.0.0-jdk-21-and-24-corretto-al2023`, `9.0-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-corretto/Dockerfile) -- [`9.0.0-jdk-lts-and-current-graal`, `9.0-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.0.0-jdk-lts-and-current-graal-noble`, `9.0-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.0.0-jdk-21-and-24-graal`, `9.0-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.0.0-jdk-21-and-24-graal-noble`, `9.0-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-graal/Dockerfile) +- [`9.0.0-jdk-lts-and-current-graal`, `9.0-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.0.0-jdk-lts-and-current-graal-noble`, `9.0-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.0.0-jdk-21-and-24-graal`, `9.0-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.0.0-jdk-21-and-24-graal-noble`, `9.0-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-graal/Dockerfile) -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) -- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-jammy/Dockerfile) -- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-alpine/Dockerfile) -- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-corretto/Dockerfile) -- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-ubi9/Dockerfile) -- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-jammy/Dockerfile) -- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-corretto/Dockerfile) -- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) -- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) -- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) +- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) -- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) +- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) -- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) +- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) -- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy/Dockerfile) +- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy/Dockerfile) -- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-alpine/Dockerfile) +- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-alpine/Dockerfile) -- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-corretto/Dockerfile) +- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-corretto/Dockerfile) -- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-ubi9/Dockerfile) +- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-ubi9/Dockerfile) -- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble-graal/Dockerfile) +- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble-graal/Dockerfile) -- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy-graal/Dockerfile) +- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy-graal/Dockerfile) -- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-jammy/Dockerfile) +- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-jammy/Dockerfile) -- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-alpine/Dockerfile) +- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-alpine/Dockerfile) -- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-corretto/Dockerfile) +- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-corretto/Dockerfile) -- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-ubi9/Dockerfile) +- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-ubi9/Dockerfile) -- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-jammy/Dockerfile) +- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-jammy/Dockerfile) -- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-corretto/Dockerfile) +- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-corretto/Dockerfile) -- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-ubi9/Dockerfile) +- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-ubi9/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-alpine/Dockerfile) -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-corretto/Dockerfile) -- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-ubi9/Dockerfile) +- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-ubi9/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-jammy/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-jammy/Dockerfile) -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-corretto/Dockerfile) -- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/keeganwitt/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-ubi9/Dockerfile) +- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-ubi9/Dockerfile) # Quick reference (cont.) - **Where to file issues**: - [https://github.com/keeganwitt/docker-gradle/issues](https://github.com/keeganwitt/docker-gradle/issues?q=) + [https://github.com/gradle/docker-gradle/issues](https://github.com/gradle/docker-gradle/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/gradle/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gradle/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gradle/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gradle/), [`riscv64`](https://hub.docker.com/r/riscv64/gradle/), [`s390x`](https://hub.docker.com/r/s390x/gradle/) diff --git a/nats/README.md b/nats/README.md index 0ee2a9b39170..864cb1d5879c 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.7-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.7-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/alpine3.22/Dockerfile) +- [`2.11.8-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.8-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/alpine3.22/Dockerfile) -- [`2.11.7-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.7-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/scratch/Dockerfile) +- [`2.11.8-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.8-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/scratch/Dockerfile) -- [`2.11.7-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.8-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.7-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.8-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.7`, `2.11`, `2`, `latest`: +- `2.11.8`, `2.11`, `2`, `latest`: - - [`2.11.7-scratch`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/scratch/Dockerfile) - - [`2.11.7-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.8-scratch`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/scratch/Dockerfile) + - [`2.11.8-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.7-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.8-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.7-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.8-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.7-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.8-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.7-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.8-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/3ec49f76b02935f5c32ced5497f74e55d61e6d08/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 2746419ce7dd0557068233fe6bdd07f72cc760b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Aug 2025 12:10:01 -0700 Subject: [PATCH 2433/2686] Run update.sh --- busybox/README.md | 18 ++++++++--------- postgres/README.md | 48 +++++++++++++++++++++++----------------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 85ed1487f067..58a350a9e5a8 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/c9d396b13758b9ef013ff0ebc31b15e246ced4d2/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/glibc/amd64/index.json) # Quick reference (cont.) @@ -46,7 +46,7 @@ WARNING: [https://github.com/docker-library/busybox/issues](https://github.com/docker-library/busybox/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/busybox/), [`arm32v5`](https://hub.docker.com/r/arm32v5/busybox/), [`arm32v6`](https://hub.docker.com/r/arm32v6/busybox/), [`arm32v7`](https://hub.docker.com/r/arm32v7/busybox/), [`arm64v8`](https://hub.docker.com/r/arm64v8/busybox/), [`i386`](https://hub.docker.com/r/i386/busybox/), [`mips64le`](https://hub.docker.com/r/mips64le/busybox/), [`ppc64le`](https://hub.docker.com/r/ppc64le/busybox/), [`riscv64`](https://hub.docker.com/r/riscv64/busybox/), [`s390x`](https://hub.docker.com/r/s390x/busybox/) + [`amd64`](https://hub.docker.com/r/amd64/busybox/), [`arm32v5`](https://hub.docker.com/r/arm32v5/busybox/), [`arm32v6`](https://hub.docker.com/r/arm32v6/busybox/), [`arm32v7`](https://hub.docker.com/r/arm32v7/busybox/), [`arm64v8`](https://hub.docker.com/r/arm64v8/busybox/), [`i386`](https://hub.docker.com/r/i386/busybox/), [`ppc64le`](https://hub.docker.com/r/ppc64le/busybox/), [`riscv64`](https://hub.docker.com/r/riscv64/busybox/), [`s390x`](https://hub.docker.com/r/s390x/busybox/) - **Published image artifact details**: [repo-info repo's `repos/busybox/` directory](https://github.com/docker-library/repo-info/blob/master/repos/busybox) ([history](https://github.com/docker-library/repo-info/commits/master/repos/busybox)) diff --git a/postgres/README.md b/postgres/README.md index c022b21ad0b7..b03c5562fcef 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18beta2`, `18beta2-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/18/trixie/Dockerfile) +- [`18beta3`, `18beta3-trixie`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/trixie/Dockerfile) -- [`18beta2-bookworm`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/bookworm/Dockerfile) +- [`18beta3-bookworm`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/bookworm/Dockerfile) -- [`18beta2-alpine3.22`, `18beta2-alpine`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.22/Dockerfile) +- [`18beta3-alpine3.22`, `18beta3-alpine`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/alpine3.22/Dockerfile) -- [`18beta2-alpine3.21`](https://github.com/docker-library/postgres/blob/889f9447cd2dfe21cccfbe9bb7945e3b037e02d8/18/alpine3.21/Dockerfile) +- [`18beta3-alpine3.21`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/alpine3.21/Dockerfile) -- [`17.5`, `17`, `latest`, `17.5-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/17/trixie/Dockerfile) +- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/trixie/Dockerfile) -- [`17.5-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/bookworm/Dockerfile) -- [`17.5-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.5-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.22/Dockerfile) -- [`17.5-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.21/Dockerfile) -- [`16.9`, `16`, `16.9-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/16/trixie/Dockerfile) +- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/trixie/Dockerfile) -- [`16.9-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/bookworm/Dockerfile) +- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/bookworm/Dockerfile) -- [`16.9-alpine3.22`, `16-alpine3.22`, `16.9-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.22/Dockerfile) +- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.22/Dockerfile) -- [`16.9-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/16/alpine3.21/Dockerfile) +- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.21/Dockerfile) -- [`15.13`, `15`, `15.13-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/15/trixie/Dockerfile) +- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/trixie/Dockerfile) -- [`15.13-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/bookworm/Dockerfile) +- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/bookworm/Dockerfile) -- [`15.13-alpine3.22`, `15-alpine3.22`, `15.13-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.22/Dockerfile) +- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.22/Dockerfile) -- [`15.13-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/15/alpine3.21/Dockerfile) +- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.21/Dockerfile) -- [`14.18`, `14`, `14.18-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/14/trixie/Dockerfile) +- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/trixie/Dockerfile) -- [`14.18-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/bookworm/Dockerfile) +- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/bookworm/Dockerfile) -- [`14.18-alpine3.22`, `14-alpine3.22`, `14.18-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.22/Dockerfile) +- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.22/Dockerfile) -- [`14.18-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/14/alpine3.21/Dockerfile) +- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.21/Dockerfile) -- [`13.21`, `13`, `13.21-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/176bc3c3f06c7df2602331d65b779a6d08c56861/13/trixie/Dockerfile) +- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/trixie/Dockerfile) -- [`13.21-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/bookworm/Dockerfile) +- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/bookworm/Dockerfile) -- [`13.21-alpine3.22`, `13-alpine3.22`, `13.21-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/alpine3.22/Dockerfile) +- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/alpine3.22/Dockerfile) -- [`13.21-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/2c6fe8daca9d2ccc143afe6b1cdbc1eb80379d3f/13/alpine3.21/Dockerfile) +- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/alpine3.21/Dockerfile) # Quick reference (cont.) From b2bee0447f54d6e570a49b5b3ec9fbe4e3e7302c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 14 Aug 2025 16:11:24 -0700 Subject: [PATCH 2434/2686] Run update.sh --- mongo/README.md | 49 +++++++++++---------------------------- nextcloud/README.md | 14 ++++++------ php/README.md | 56 +++++++++++++++++++++++++++++++++------------ 3 files changed, 62 insertions(+), 57 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 50f871207a0b..68bf7cbcca55 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -44,21 +44,13 @@ WARNING: - [`8.0.12-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.23-rc1-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/Dockerfile) +- [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) -- [`7.0.23-rc1-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.23-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.23-rc1-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.23-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.23-rc1-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.22-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) - -- [`7.0.22-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.22-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.22-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.23-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.26-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/Dockerfile) @@ -108,35 +100,20 @@ WARNING: - [`8.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- `7.0.23-rc1`, `7.0-rc`: - - - [`7.0.23-rc1-jammy`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/Dockerfile) - - [`7.0.23-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.23-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.23-rc1-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.23-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.23-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.23-rc1-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.23-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a06c7dce57b0d99d4d8e68afbf5f8dbb55b2d4b7/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `7.0.22`, `7.0`, `7`: +- `7.0.23`, `7.0`, `7`: - - [`7.0.22-jammy`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/Dockerfile) - - [`7.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.23-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) + - [`7.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.22-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.23-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.22-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.22-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.22-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.23-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.22-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/b7ab44b56b238d945e095129e8eb344b3ac1b5cf/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) - `6.0.26-rc0`, `6.0-rc`: diff --git a/nextcloud/README.md b/nextcloud/README.md index 8c23f85db487..8beb5779aa5a 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.13-apache`, `30.0-apache`, `30-apache`, `30.0.13`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/apache/Dockerfile) +- [`30.0.14-apache`, `30.0-apache`, `30-apache`, `30.0.14`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/apache/Dockerfile) -- [`30.0.13-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/fpm/Dockerfile) +- [`30.0.14-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/fpm/Dockerfile) -- [`30.0.13-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/30/fpm-alpine/Dockerfile) +- [`30.0.14-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/fpm-alpine/Dockerfile) -- [`31.0.7-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.7`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/apache/Dockerfile) +- [`31.0.8-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.8`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/apache/Dockerfile) -- [`31.0.7-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/fpm/Dockerfile) +- [`31.0.8-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/fpm/Dockerfile) -- [`31.0.7-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/6e4ccffb9a2ea802e6522481a1f61602fc3f5a5d/31/fpm-alpine/Dockerfile) +- [`31.0.8-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -46,7 +46,7 @@ WARNING: [https://github.com/nextcloud/docker/issues](https://github.com/nextcloud/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/nextcloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nextcloud/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nextcloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nextcloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nextcloud/), [`i386`](https://hub.docker.com/r/i386/nextcloud/), [`mips64le`](https://hub.docker.com/r/mips64le/nextcloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nextcloud/), [`riscv64`](https://hub.docker.com/r/riscv64/nextcloud/), [`s390x`](https://hub.docker.com/r/s390x/nextcloud/) + [`amd64`](https://hub.docker.com/r/amd64/nextcloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/nextcloud/), [`arm32v6`](https://hub.docker.com/r/arm32v6/nextcloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/nextcloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/nextcloud/), [`i386`](https://hub.docker.com/r/i386/nextcloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/nextcloud/), [`riscv64`](https://hub.docker.com/r/riscv64/nextcloud/), [`s390x`](https://hub.docker.com/r/s390x/nextcloud/) - **Published image artifact details**: [repo-info repo's `repos/nextcloud/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nextcloud) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nextcloud)) diff --git a/php/README.md b/php/README.md index bc8ff5c33d87..ad258549fb14 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0alpha4-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0alpha4-trixie`, `8.5-rc-trixie`, `8.5.0alpha4-cli`, `8.5-rc-cli`, `8.5.0alpha4`, `8.5-rc`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0beta1-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta1-trixie`, `8.5-rc-trixie`, `8.5.0beta1-cli`, `8.5-rc-cli`, `8.5.0beta1`, `8.5-rc`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0alpha4-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0alpha4-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0beta1-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0alpha4-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0alpha4-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0beta1-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0alpha4-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0alpha4-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0beta1-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0alpha4-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0alpha4-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0beta1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta1-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0alpha4-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0beta1-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0alpha4-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0beta1-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0alpha4-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0beta1-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0alpha4-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0alpha4-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0alpha4-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0alpha4-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0beta1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0alpha4-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0alpha4-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0beta1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0alpha4-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0alpha4-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0beta1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0alpha4-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0alpha4-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0beta1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0alpha4-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0beta1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0alpha4-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5e4e2e22d28daa52566db1270af7b2ae65c6aa37/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0beta1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.12RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.12RC1-trixie`, `8.4-rc-trixie`, `8.4.12RC1-cli`, `8.4-rc-cli`, `8.4.12RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/cli/Dockerfile) + +- [`8.4.12RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.12RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/apache/Dockerfile) + +- [`8.4.12RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.12RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/fpm/Dockerfile) + +- [`8.4.12RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.12RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/zts/Dockerfile) + +- [`8.4.12RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.12RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.12RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.12RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.12RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.12RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.12RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.12RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.12RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.12RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.12RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.12RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.12RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.12RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.12RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.12RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.12RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/zts/Dockerfile) - [`8.4.11-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.11-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/cli/Dockerfile) From d93ee53c432cf1cc497cfce541728890c7b8faa8 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Fri, 15 Aug 2025 16:37:08 +0200 Subject: [PATCH 2435/2686] fix: point Ubuntu link to Ubuntu website --- ubuntu/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/content.md b/ubuntu/content.md index abaea66dbc6c..0fc13a5773b1 100644 --- a/ubuntu/content.md +++ b/ubuntu/content.md @@ -4,7 +4,7 @@ Ubuntu is a Debian-based Linux operating system that runs from the desktop to th Development of Ubuntu is led by Canonical Ltd. Canonical generates revenue through the sale of technical support and other services related to Ubuntu. The Ubuntu project is publicly committed to the principles of open-source software development; people are encouraged to use free software, study how it works, improve upon it, and distribute it. -> [wikipedia.org/wiki/Ubuntu](https://en.wikipedia.org/wiki/Ubuntu) +> [ubuntu.com](https://ubuntu.com) %%LOGO%% From f9aeca4f3037b4d7fecb810cc96a63b32d89c00b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Aug 2025 10:10:34 -0700 Subject: [PATCH 2436/2686] Run update.sh --- swift/README.md | 20 ++------------------ varnish/README.md | 10 +++++----- 2 files changed, 7 insertions(+), 23 deletions(-) diff --git a/swift/README.md b/swift/README.md index 05bae54a6b9c..d0224e2f7c38 100644 --- a/swift/README.md +++ b/swift/README.md @@ -32,10 +32,6 @@ WARNING: - [`6.1.2-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/22.04/slim/Dockerfile) -- [`6.1.2-focal-slim`, `6.1-focal-slim`, `focal-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/20.04/slim/Dockerfile) - -- [`6.1.2-focal`, `6.1-focal`, `focal`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/20.04/Dockerfile) - - [`6.1.2-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/debian/12/Dockerfile) - [`6.1.2-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/amazonlinux/2/Dockerfile) @@ -56,10 +52,6 @@ WARNING: - [`6.0.3-jammy-slim`, `6.0-jammy-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/22.04/slim/Dockerfile) -- [`6.0.3-focal-slim`, `6.0-focal-slim`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/slim/Dockerfile) - -- [`6.0.3-focal`, `6.0-focal`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/20.04/Dockerfile) - - [`6.0.3-bookworm`, `6.0-bookworm`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/debian/12/Dockerfile) - [`6.0.3-amazonlinux2`, `6.0-amazonlinux2`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/amazonlinux/2/Dockerfile) @@ -76,10 +68,6 @@ WARNING: - [`5.10.1-slim`, `5.10-slim`, `5.10.1-jammy-slim`, `5.10-jammy-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/22.04/slim/Dockerfile) -- [`5.10.1-focal-slim`, `5.10-focal-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/slim/Dockerfile) - -- [`5.10.1-focal`, `5.10-focal`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/20.04/Dockerfile) - - [`5.10.1-noble`, `5.10-noble`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/ubuntu/24.04/Dockerfile) - [`5.10.1-noble-slim`, `5.10-noble-slim`](https://github.com/apple/swift-docker/blob/38e4244ebab3d6a4e702fb30449827d6c28ee1fd/5.10/ubuntu/24.04/slim/Dockerfile) @@ -94,16 +82,12 @@ WARNING: - [`5.10.1-rhel-ubi9-slim`, `5.10-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/rhel-ubi/9/slim/Dockerfile) -- [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/53c4d44e4b556d7bab6ff94c80e5bd0444cdc17d/5.10/windows/LTSC2022/Dockerfile) +- [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/90888735fac23a3a5cd8f798d1d7de89bb5d47bb/5.10/windows/LTSC2022/Dockerfile) - [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) - [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) -- [`5.9.2-focal-slim`, `5.9-focal-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/slim/Dockerfile) - -- [`5.9.2-focal`, `5.9-focal`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/20.04/Dockerfile) - - [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) - [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) @@ -112,7 +96,7 @@ WARNING: - [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) -- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/windows/LTSC2022/Dockerfile) +- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/90888735fac23a3a5cd8f798d1d7de89bb5d47bb/5.9/windows/LTSC2022/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 69a62492c373..ecd6972b6ad5 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.1`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/ed86c8d78292bb13fe129ba5dcccfd8d11ed1481/fresh/debian/Dockerfile) +- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.7.1-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/ed86c8d78292bb13fe129ba5dcccfd8d11ed1481/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.7.2-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/fresh/alpine/Dockerfile) -- [`old`, `7.6.3`, `7.6`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/old/debian/Dockerfile) +- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/old/debian/Dockerfile) -- [`old-alpine`, `7.6.3-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/old/alpine/Dockerfile) +- [`old-alpine`, `7.6.4-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/old/alpine/Dockerfile) -- [`stable`, `6.0.14`, `6.0`](https://github.com/varnish/docker-varnish/blob/ea97ed35f2b0eb438ccd6a9250c36567686bfb4a/stable/debian/Dockerfile) +- [`stable`, `6.0.15`, `6.0`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/stable/debian/Dockerfile) # Quick reference (cont.) From e16fc1b02c770d42df711f00ae5773f4f84af800 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Aug 2025 11:10:25 -0700 Subject: [PATCH 2437/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 9b48885557b4..07c49d4ab951 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.5-alpine3.21`, `24.5.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.6-alpine3.21`, `24.6.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.5-alpine`, `24.5-alpine3.22`, `24.5.0-alpine`, `24.5.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.6-alpine`, `24.6-alpine3.22`, `24.6.0-alpine`, `24.6.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.5`, `24.5-bookworm`, `24.5.0`, `24.5.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.6`, `24.6-bookworm`, `24.6.0`, `24.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.5-bookworm-slim`, `24.5-slim`, `24.5.0-bookworm-slim`, `24.5.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.6-bookworm-slim`, `24.6-slim`, `24.6.0-bookworm-slim`, `24.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.5-bullseye`, `24.5.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.6-bullseye`, `24.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.5-bullseye-slim`, `24.5.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.6-bullseye-slim`, `24.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.5-trixie`, `24.5.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/24/trixie/Dockerfile) +- [`24-trixie`, `24.6-trixie`, `24.6.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.5-trixie-slim`, `24.5.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.6-trixie-slim`, `24.6.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.18-alpine3.21`, `22.18.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.21/Dockerfile) From 462662807e68ff4d4bdc655c89ca14c87031f2f9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Aug 2025 13:11:50 -0700 Subject: [PATCH 2438/2686] Run update.sh --- api-firewall/README.md | 2 +- jetty/README.md | 80 +++++++++++++++++++++--------------------- ubuntu/README.md | 2 +- 3 files changed, 42 insertions(+), 42 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index 4828d9dc2aef..b36fe8ebe30a 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.9.1`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/c2776cc6a5adedddcdeb49e8613f64704ccb4c27/0.9.1/Dockerfile) +- [`0.9.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/5d6718573955995c3f39a859f58655eed323b3b8/0.9.2/Dockerfile) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index b2822632f338..159d9cfcbc56 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -24,55 +24,55 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.57-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.57-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre8-alpine/Dockerfile) +- [`9.4.58-jre8-alpine`, `9.4-jre8-alpine`, `9-jre8-alpine`, `9.4.58-jre8-alpine-eclipse-temurin`, `9.4-jre8-alpine-eclipse-temurin`, `9-jre8-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre8-alpine/Dockerfile) -- [`9.4.57-jre8`, `9.4-jre8`, `9-jre8`, `9.4.57-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre8/Dockerfile) +- [`9.4.58-jre8`, `9.4-jre8`, `9-jre8`, `9.4.58-jre8-eclipse-temurin`, `9.4-jre8-eclipse-temurin`, `9-jre8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre8/Dockerfile) -- [`9.4.57-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.57-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre21-alpine/Dockerfile) +- [`9.4.58-jre21-alpine`, `9.4-jre21-alpine`, `9-jre21-alpine`, `9.4.58-jre21-alpine-eclipse-temurin`, `9.4-jre21-alpine-eclipse-temurin`, `9-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre21-alpine/Dockerfile) -- [`9.4.57-jre21`, `9.4-jre21`, `9-jre21`, `9.4.57-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre21/Dockerfile) +- [`9.4.58-jre21`, `9.4-jre21`, `9-jre21`, `9.4.58-jre21-eclipse-temurin`, `9.4-jre21-eclipse-temurin`, `9-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre21/Dockerfile) -- [`9.4.57-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.57-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre17-alpine/Dockerfile) +- [`9.4.58-jre17-alpine`, `9.4-jre17-alpine`, `9-jre17-alpine`, `9.4.58-jre17-alpine-eclipse-temurin`, `9.4-jre17-alpine-eclipse-temurin`, `9-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre17-alpine/Dockerfile) -- [`9.4.57-jre17`, `9.4-jre17`, `9-jre17`, `9.4.57-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre17/Dockerfile) +- [`9.4.58-jre17`, `9.4-jre17`, `9-jre17`, `9.4.58-jre17-eclipse-temurin`, `9.4-jre17-eclipse-temurin`, `9-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre17/Dockerfile) -- [`9.4.57-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.57-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre11-alpine/Dockerfile) +- [`9.4.58-jre11-alpine`, `9.4-jre11-alpine`, `9-jre11-alpine`, `9.4.58-jre11-alpine-eclipse-temurin`, `9.4-jre11-alpine-eclipse-temurin`, `9-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre11-alpine/Dockerfile) -- [`9.4.57-jre11`, `9.4-jre11`, `9-jre11`, `9.4.57-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jre11/Dockerfile) +- [`9.4.58-jre11`, `9.4-jre11`, `9-jre11`, `9.4.58-jre11-eclipse-temurin`, `9.4-jre11-eclipse-temurin`, `9-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jre11/Dockerfile) -- [`9.4.57-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.57-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk8/Dockerfile) +- [`9.4.58-jdk8`, `9.4-jdk8`, `9-jdk8`, `9.4.58-jdk8-eclipse-temurin`, `9.4-jdk8-eclipse-temurin`, `9-jdk8-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk8/Dockerfile) -- [`9.4.57-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.57-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) +- [`9.4.58-jdk21-alpine`, `9.4-jdk21-alpine`, `9-jdk21-alpine`, `9.4.58-jdk21-alpine-eclipse-temurin`, `9.4-jdk21-alpine-eclipse-temurin`, `9-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk21-alpine/Dockerfile) -- [`9.4.57`, `9.4`, `9`, `9.4.57-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.57-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.57-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk21/Dockerfile) +- [`9.4.58`, `9.4`, `9`, `9.4.58-jdk21`, `9.4-jdk21`, `9-jdk21`, `9.4.58-eclipse-temurin`, `9.4-eclipse-temurin`, `9-eclipse-temurin`, `9.4.58-jdk21-eclipse-temurin`, `9.4-jdk21-eclipse-temurin`, `9-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk21/Dockerfile) -- [`9.4.57-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.57-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) +- [`9.4.58-jdk17-alpine`, `9.4-jdk17-alpine`, `9-jdk17-alpine`, `9.4.58-jdk17-alpine-eclipse-temurin`, `9.4-jdk17-alpine-eclipse-temurin`, `9-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk17-alpine/Dockerfile) -- [`9.4.57-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.57-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk17/Dockerfile) +- [`9.4.58-jdk17`, `9.4-jdk17`, `9-jdk17`, `9.4.58-jdk17-eclipse-temurin`, `9.4-jdk17-eclipse-temurin`, `9-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk17/Dockerfile) -- [`9.4.57-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.57-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) +- [`9.4.58-jdk11-alpine`, `9.4-jdk11-alpine`, `9-jdk11-alpine`, `9.4.58-jdk11-alpine-eclipse-temurin`, `9.4-jdk11-alpine-eclipse-temurin`, `9-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11-alpine/Dockerfile) -- [`9.4.57-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.57-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/9.4/jdk11/Dockerfile) +- [`9.4.58-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.58-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.24-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.24-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.25-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.25-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.24-jre21`, `12.0-jre21`, `12-jre21`, `12.0.24-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.25-jre21`, `12.0-jre21`, `12-jre21`, `12.0.25-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.24-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.24-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.25-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.25-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.24-jre17`, `12.0-jre17`, `12-jre17`, `12.0.24-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.25-jre17`, `12.0-jre17`, `12-jre17`, `12.0.25-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.24-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.24-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.25-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.25-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.24-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.24-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.25-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.25-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.24-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.24-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.25-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.25-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.24`, `12.0`, `12`, `12.0.24-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.24-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.24-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.25`, `12.0`, `12`, `12.0.25-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.25-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.25-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.24-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.24-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.25-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.25-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.24-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.24-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.25-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.25-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -122,35 +122,35 @@ WARNING: - [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk11/Dockerfile) -- [`9.4.57-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk8-alpine/Dockerfile) +- [`9.4.58-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk8-alpine/Dockerfile) -- [`9.4.57-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk8/Dockerfile) +- [`9.4.58-jdk8-amazoncorretto`, `9.4-jdk8-amazoncorretto`, `9-jdk8-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk8/Dockerfile) -- [`9.4.57-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk21-alpine/Dockerfile) +- [`9.4.58-jdk21-alpine-amazoncorretto`, `9.4-jdk21-alpine-amazoncorretto`, `9-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk21-alpine/Dockerfile) -- [`9.4.57-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.57-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk21/Dockerfile) +- [`9.4.58-amazoncorretto`, `9.4-amazoncorretto`, `9-amazoncorretto`, `9.4.58-jdk21-amazoncorretto`, `9.4-jdk21-amazoncorretto`, `9-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk21/Dockerfile) -- [`9.4.57-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk17-alpine/Dockerfile) +- [`9.4.58-jdk17-alpine-amazoncorretto`, `9.4-jdk17-alpine-amazoncorretto`, `9-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk17-alpine/Dockerfile) -- [`9.4.57-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk17/Dockerfile) +- [`9.4.58-jdk17-amazoncorretto`, `9.4-jdk17-amazoncorretto`, `9-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk17/Dockerfile) -- [`9.4.57-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk11-alpine/Dockerfile) +- [`9.4.58-jdk11-alpine-amazoncorretto`, `9.4-jdk11-alpine-amazoncorretto`, `9-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11-alpine/Dockerfile) -- [`9.4.57-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/9.4/jdk11/Dockerfile) +- [`9.4.58-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.24-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.25-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.24-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.25-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.24-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.25-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.24-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.24-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.25-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.25-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.24-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.25-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.24-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.25-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.24-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.25-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index 7d4894388b76..a80bc2a1e264 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -57,7 +57,7 @@ Ubuntu is a Debian-based Linux operating system that runs from the desktop to th Development of Ubuntu is led by Canonical Ltd. Canonical generates revenue through the sale of technical support and other services related to Ubuntu. The Ubuntu project is publicly committed to the principles of open-source software development; people are encouraged to use free software, study how it works, improve upon it, and distribute it. -> [wikipedia.org/wiki/Ubuntu](https://en.wikipedia.org/wiki/Ubuntu) +> [ubuntu.com](https://ubuntu.com) ![logo](https://raw.githubusercontent.com/docker-library/docs/2ac3caaf21dfba9734f20518971983edc617c77c/ubuntu/logo.png) From 3efd1a23d44f42b9916e255bcbe118740c41770e Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Fri, 15 Aug 2025 16:56:04 -0500 Subject: [PATCH 2439/2686] Merge pull request #2600 from jstirnaman/jts-update-influxdb InfluxDB: Update for InfluxDB 3, condense, add metadata --- influxdb/compose.yaml | 22 ++ influxdb/content.md | 666 +++++---------------------------------- influxdb/get-help.md | 1 + influxdb/metadata.json | 4 +- influxdb/variant-data.md | 4 +- influxdb/variant-meta.md | 18 +- 6 files changed, 116 insertions(+), 599 deletions(-) create mode 100644 influxdb/compose.yaml create mode 100644 influxdb/get-help.md diff --git a/influxdb/compose.yaml b/influxdb/compose.yaml new file mode 100644 index 000000000000..f5d514d3d457 --- /dev/null +++ b/influxdb/compose.yaml @@ -0,0 +1,22 @@ +# compose.yaml +name: influxdb3 +services: + influxdb3-core: + container_name: influxdb3-core + image: influxdb:3-core + ports: + - 8181:8181 + command: + - influxdb3 + - serve + - --node-id=node0 + - --object-store=file + - --data-dir=/var/lib/influxdb3/data + - --plugin-dir=/var/lib/influxdb3/plugins + volumes: + - type: bind + source: ~/.influxdb3/core/data + target: /var/lib/influxdb3/data + - type: bind + source: ~/.influxdb3/core/plugins + target: /var/lib/influxdb3/plugins diff --git a/influxdb/content.md b/influxdb/content.md index e94ab3d60fae..c44a496aee5a 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -1,643 +1,135 @@ # What is InfluxDB? -InfluxDB is the time series data platform designed to handle high write and query workloads. Using InfluxDB, you can collect, store, and process large amounts of timestamped data, including metrics and events for use cases such as DevOps monitoring, application metrics, IoT sensors, and event monitoring. - -Use the InfluxDB Docker Hub image to write, query, and process time series data in [InfluxDB v2](https://docs.influxdata.com/influxdb/v2/) or [InfluxDB v1](https://docs.influxdata.com/influxdb/v1/). - -For more information, visit https://influxdata.com. - %%LOGO%% -# How to use this image for InfluxDB v2 - -**Quick start**: See the guide to [Install InfluxDB v2 for Docker](https://docs.influxdata.com/influxdb/v2/install/?t=Docker) and get started using InfluxDB v2. +InfluxDB is the time series database platform designed to collect, store, and process large amounts of event and time series data. Ideal for monitoring (sensors, servers, applications, networks), financial analytics, and behavioral tracking. -## Start InfluxDB v2 and set up with the UI, CLI, or API +## Quick Start -To start an InfluxDB v2 container, enter the following command: +Use InfluxDB 3 Core, the latest InfluxDB OSS: -```bash -docker run \ - -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - %%IMAGE%%:2 +```console +docker run -d -p 8181:8181 %%IMAGE%%:3-core ``` -Replace the following with your own values: +Available OSS tags: -- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path +- `%%IMAGE%%:3-core` - **Latest InfluxDB OSS** (InfluxDB 3 Core) +- `%%IMAGE%%:2` - Previous generation OSS (InfluxDB v2) +- `%%IMAGE%%:1.11` - InfluxDB v1 -After the container starts, the InfluxDB UI and API are accessible at http://localhost:8086 on the host. You're ready to set up an initial admin user, token, and bucket from outside or inside the container--choose one of the following: +## Available Versions -- **Set up InfluxDB from outside the container**: [Set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) from the host or network using the InfluxDB UI, `influx` CLI, or HTTP API. +#### InfluxDB 3 Core (`%%IMAGE%%:3-core`) - Latest OSS -- **Set up InfluxDB from inside the container**: Use `docker exec` to run the `influx` CLI installed in the container--for example: +- **Latest generation** with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL +- Sub-10ms queries and unlimited cardinality +- Supports SQL and InfluxQL queries +- Includes Python processing engine +- Designed for real-time monitoring and recent data +- Includes v1 compatibility API for writing and querying data +- Includes v2 compatibility API for writing data - ```bash - docker exec influxdb2 influx setup \ - --username $USERNAME \ - --password $PASSWORD \ - --org $ORGANIZATION \ - --bucket $BUCKET \ - --force - ``` +#### InfluxDB v2 (`%%IMAGE%%:2`) -See the [`influx setup` documentation](https://docs.influxdata.com/influxdb/v2/reference/cli/influx/setup/) for the full list of options. +- Built on the TSM storage engine +- Supports Flux query language +- Integrated UI and dashboards +- Includes v1 compatibility API that supports InfluxQL -*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* +#### InfluxDB v1 (`%%IMAGE%%:1.11`) -## Start InfluxDB v2 with automated setup +- Built on the TSM storage engine +- Original version with InfluxQL query language +- Proven stability for existing deployments -To start and set up InfluxDB v2 with a single command, specify `-e DOCKER_INFLUXDB_INIT_MODE=setup` and `-e DOCKER_INFLUXDB_INIT_` environment variables for the initial user, password, bucket, and organization--for example: +### Enterprise Editions (License Required) -```bash -docker run -d -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME= \ - -e DOCKER_INFLUXDB_INIT_PASSWORD= \ - -e DOCKER_INFLUXDB_INIT_ORG= \ - -e DOCKER_INFLUXDB_INIT_BUCKET= \ - %%IMAGE%%:2 -``` +#### InfluxDB 3 Enterprise (`%%IMAGE%%:3-enterprise`) -Replace the following with your own values: +- Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core -- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- ``: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) -- ``: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) -- ``: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) -- ``: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) (database) +For setup instructions, see the [InfluxDB 3 Enterprise installation documentation](https://docs.influxdata.com/influxdb3/enterprise/install/). -*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* +#### InfluxDB v1 Enterprise -### Automated setup options +- `%%IMAGE%%:1.11-data` - Data nodes for clustering +- `%%IMAGE%%:1.11-meta` - Meta nodes for cluster coordination (port 8091) -In setup mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or upgrade mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), you can specify the following Docker-specific environment variables to provide initial setup values: +For setup instructions, see the [InfluxDB v1 Enterprise Docker documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). -- `DOCKER_INFLUXDB_INIT_USERNAME`: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). -- `DOCKER_INFLUXDB_INIT_ORG`: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/). -- `DOCKER_INFLUXDB_INIT_BUCKET`: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/). -- Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) to use as the initial bucket's [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data). -- Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A string value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: a generated token. +## Version Compatibility -The following example shows how to pass values for all initial setup options: +### Migration Paths -```bash -docker run -d -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ - -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ - %%IMAGE%%:2 -``` +To migrate from v1 or v2 to InfluxDB 3: -*To upgrade from InfluxDB 1.x to InfluxDB 2.x, see the **Upgrading from InfluxDB 1.x** section below.\* +1. Dual-write new data to v1/v2 and InfluxDB 3. +2. Query historical data from v1/v2 and write it to InfluxDB 3. *InfluxDB 3 Enterprise is recommended for historical query capability.* -With InfluxDB set up and running, see the [Get started](https://docs.influxdata.com/influxdb/v2/get-started/) tutorial to create tokens and write and query data. +## Using InfluxDB 3 Core (Latest OSS) -### Custom Initialization Scripts +### Start InfluxDB 3 Core -In `setup` mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or `upgrade` mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), the InfluxDB Docker Hub image supports running custom initialization scripts. After the setup process completes, scripts are executed in lexical sort order by name. +%%COMPOSE%% -For the container to run scripts, they must: +The example `compose.yaml` starts InfluxDB 3 Core on port 8181 with: -- Be mounted in the container's `/docker-entrypoint-initdb.d` directory -- Be named using the `.sh` file name extension -- Be executable by the user running the `docker run` command--for example, to allow the current use to execute a script with `docker run`: +- Data persistence at `/var/lib/influxdb3` +- Plugin directory for Python processing engine +- Object storage configured (default: file) - ```bash - chmod +x ./scripts/ - ``` +### Get Started Using InfluxDB 3 -> #### Grant permissions to mounted files -> -> By default, Docker runs containers using the user and group IDs of the user executing the `docker run` command. When files are bind-mounted into the container, Docker preserves the user and group ownership from the host system. +After starting your InfluxDB 3 server: -The image exports a number of variables into the environment before executing scripts. The following variables are available for you to use in your scripts: +- Follow the [Get started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an auth token and database, and write, query, and process data. +- Use the [InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/) to write data, create dashboards, explore metrics, and manage databases -- `INFLUX_CONFIGS_PATH`: Path to the `influx` CLI connection configurations file written by `setup`/`upgrade` -- `INFLUX_HOST`: URL to the `influxd` instance running `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_USER_ID`: ID of the initial admin user created by `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_ORG_ID`: ID of the initial organization created by `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_BUCKET_ID`: ID of the initial bucket created by `setup`/`upgrade` +### InfluxDB 3 Server Options -For example, to grant an InfluxDB 1.x client *write* permission to your initial bucket, create a `$PWD/scripts/setup-v1.sh` file that contains the following: +Customize your deployment with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): ```bash -#!/bin/bash -set -e - -influx v1 dbrp create \ - --bucket-id ${DOCKER_INFLUXDB_INIT_BUCKET_ID} \ - --db ${V1_DB_NAME} \ - --rp ${V1_RP_NAME} \ - --default \ - --org ${DOCKER_INFLUXDB_INIT_ORG} - -influx v1 auth create \ - --username ${V1_AUTH_USERNAME} \ - --password ${V1_AUTH_PASSWORD} \ - --write-bucket ${DOCKER_INFLUXDB_INIT_BUCKET_ID} \ - --org ${DOCKER_INFLUXDB_INIT_ORG} +# View all available options +docker run --rm %%IMAGE%%:3-core influxdb3 serve --help ``` -Then, run the following command to start and set up InfluxDB using custom scripts: - -```bash -docker run -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -v "$PWD/scripts:/docker-entrypoint-initdb.d" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e V1_DB_NAME=v1-db \ - -e V1_RP_NAME=v1-rp \ - -e V1_AUTH_USERNAME=v1-user \ - -e V1_AUTH_PASSWORD=v1-password \ - %%IMAGE%%:2 -``` - -> #### Automated setup and upgrade ignored if already setup -> -> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. -> -> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. - -## Access InfluxDB v2 file system and ports - -When starting an InfluxDB container, we recommend the following for easy access to your data, configurations, and InfluxDB v2 instance: - -- Publish the container's `8086` port to make the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) accessible from the host system. -- Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) outside of containers. - -### Default file system and networking ports - -For InfluxDB v2, the InfluxDB Docker Hub image uses the following default ports and file system paths: - -- TCP port `8086`: the default port for the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/). To specify a different port or address, use the [`http-bind-address` configuration option](https://docs.influxdata.com/influxdb/v2/reference/config-options/#http-bind-address). -- `/var/lib/influxdb2/`: the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) - - - `/engine/`: Default InfluxDB [Storage engine path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#engine-path) - - `influxd.bolt`: Default [Bolt path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#bolt-path) - - `influxd.sqlite`: Default [SQLite path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#sqlite-path) - -- `/etc/influxdb2`: the [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) - - - `/etc/influxdb2/configs`: `influx` CLI connection configurations file - - `/etc/influxdb2/influx-configs`: `influx` CLI connection configurations file, *if you run setup from within the container* - - Optional: `/etc/influxdb2/config.[yml, json, toml]`: Your customized InfluxDB [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/) file - -### Configure InfluxDB v2 in a container - -To customize InfluxDB, specify [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options) in a configuration file, environment variables, or command line flags. - -#### Use a configuration file - -To customize and mount an InfluxDB configuration file, do the following: - -1. If you haven't already, [set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) to initialize an API [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). You'll need the Operator token in the next step. - -2. Run the `influx server-config` CLI command to output the current server configuration to a file in the mounted configuration directory--for example, enter the following command to use the container's `influx` CLI and default Operator token: - - ```bash - docker exec -it influxdb2 influx server-config > "$PWD/config/config.yml" - ``` - -Replace `$PWD/config/` with the host directory that you mounted at the container's `/etc/influxdb2` InfluxDB configuration directory path. - -1. Edit the `config.yml` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). -2. Restart the container. - - ```bash - docker restart influxdb2 - ``` - -#### Use environment variables and command line flags - -To override specific [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options), use environment variables or command line flags. - -- Pass `INFLUXD_` environment variables to Docker to override the configuration file--for example: - - ```bash - docker run -p 8086:8086 \ - -e INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m \ - influxdb:2 - ``` - -- Pass `influxd` command line flags to override environment variables and the configuration file--for example: - - ```bash - docker run -p 8086:8086 \ - %%IMAGE%%:2 --storage-wal-fsync-delay=15m - ``` - -To learn more, see [InfluxDB configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options). - -### Upgrading from InfluxDB 1.x - -InfluxDB 2.x provides a [1.x-compatible API](https://docs.influxdata.com/influxdb/v2/reference/api/influxdb-1x/), but expects a different storage layout on disk. To account for these differences, the InfluxDB Docker Hub image provides an `upgrade` feature that migrates 1.x data and configuration to 2.x before starting the `influxd` server. - -The automated upgrade process creates the following in the InfluxDB v2 container: - -- an initial admin user -- an initial organization -- an initial bucket -- InfluxDB v2 data files (the default path is `/var/lib/influxdb2`) -- InfluxDB v2 configuration files (the default path is `/etc/influxdb2`) - -*Mount volumes at both paths to avoid losing data.* - -To run the automated upgrade, specify the following when you start the container: - -- InfluxDB v2 initialization environment variables: +## Using InfluxDB v2 - - `DOCKER_INFLUXDB_INIT_MODE=upgrade` - - `DOCKER_INFLUXDB_INIT_USERNAME`: A name for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) - - `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) - - `DOCKER_INFLUXDB_INIT_ORG`: A name for the initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) - - `DOCKER_INFLUXDB_INIT_BUCKET`: A name for the initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) - - Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) for the bucket [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data) - - Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: generates a token. +*InfluxDB v2 is a previous version. Consider InfluxDB 3 Core for new deployments.* -- 1.x data and configuration paths: - - - A 1.x data volume, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable or mounted at `/var/lib/influxdb` - - Optional: a 1.x custom configuration file, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable or mounted at `/etc/influxdb/influxdb.conf` - -The upgrade process searches for mounted 1.x data and configuration paths in the following order of precedence: - -1. A configuration file referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable -2. A data directory referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable -3. A configuration file mounted at `/etc/influxdb/influxdb.conf` -4. A data directory mounted at `/var/lib/influxdb` - -> #### Automated setup and upgrade ignored if already setup -> -> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. -> -> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. - -#### Upgrade InfluxDB 1.x: default data path and configuration - -Assume you've been running a minimal InfluxDB 1.x deployment: +### Start InfluxDB v2 ```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - %%IMAGE%%:1.8 -``` - -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - %%IMAGE%%:2 -``` - -#### Upgrade InfluxDB 1.x: custom configuration - -Assume you've been running an InfluxDB 1.x deployment with customized configuration (`/etc/influxdb/influxdb.conf`): - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ - %%IMAGE%%:1.8 -``` - -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - %%IMAGE%%:2 -``` - -#### Upgrade InfluxDB 1.x: custom data and configuration paths - -Assume you've been running an InfluxDB 1.x deployment with data and configuration mounted at custom paths: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - %%IMAGE%%:1.8 -config /root/influxdb/influxdb.conf -``` - -Before you upgrade to InfluxDB v2, decide whether to keep using your custom paths or to use the InfluxDB v2 defaults. - -To use InfluxDB v2 defaults, stop the running InfluxDB 1.x container, and then run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - %%IMAGE%%:2 -``` - -To use your custom paths instead of InfluxDB v2 default paths, run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/root/influxdb2/data \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ - -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ - -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ - %%IMAGE%%:2 -``` - -To learn more about the upgrade process, see the [v1-to-v2 upgrade guide](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). - -### Upgrading from quay.io-hosted InfluxDB 2.x image - -Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb` and contained the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data in `/root/.influxdbv2`. - -Starting with `v2.0.4`, we restored the InfluxDB Docker Hub build, which defaults to storing data in `/var/lib/influxdb2`. If you upgrade directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` using the default settings, InfluxDB won't be able to find your existing data files. - -To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, choose one of the following: - -#### Update the mount to use the InfluxDB default - -To use the InfluxDB Docker Hub data path, start a container that mounts your data volume into `/var/lib/influxdb2`--for example, if you used the following command to start the InfluxDB quay.io container: - -```bash -# quay.io InfluxDB 2.x container -docker run -p 8086:8086 \ - -v "$PWD:/root/.influxdbv2" \ - quay.io/influxdb/influxdb:v2.0.3 -``` - -Use this command to start an InfluxDB v2 Docker Hub container: - -```bash -# Docker Hub InfluxDB 2.x container -docker run -p 8086:8086 \ - -v "$PWD:/var/lib/influxdb2" \ - %%IMAGE%%:2 -``` - -#### Configure InfluxDB to use the container home directory - -To continue using the `/root/.influxdbv2` data path, customize storage path configuration options ([bolt-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#bolt-path), [engine-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#engine-path), [sqlite-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#sqlite-path)) configuration options for your InfluxDB Docker Hub container--for example, if you used the following command to start the InfluxDB quay.io container: - -```bash -# quay.io-hosted InfluxDB 2.x -docker run -p 8086:8086 \ - -v "$PWD:/root/.influxdbv2" \ - quay.io/influxdb/influxdb:v2.0.3 -``` - -Use this command to start an InfluxDB v2 Docker Hub container: - -```bash -docker run -p 8086:8086 \ - -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ - -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ - -v "$PWD:/root/.influxdbv2" \ - %%IMAGE%%:2 -``` - -# How to use this image for InfluxDB v1 - -Use the InfluxDB Docker Hub image to run and set up an [InfluxDB 1.x](https://docs.influxdata.com/influxdb/v1/) container. - -## Running the container - -To start an InfluxDB 1.x container, enter the following command: - -```bash -docker run -p 8086:8086 \ - -v "$PWD:/var/lib/influxdb" \ - %%IMAGE%%:1.8 -``` - -The command passes the following arguments: - -- `-p 8086:8086`: Exposes the InfluxDB [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) on host port `8086`. -- `-v $PWD:/var/lib/influxdb`: Mounts the host's `$PWD` directory to the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/) to persist data outside the container. - -Replace `$PWD` with the host directory where you want InfluxDB to store data. - -*Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/).* - -## Networking ports - -InfluxDB uses the following networking ports: - -- TCP port `8086`: the default port for the [HTTP API](https://docs.influxdata.com/influxdb/v1/tools/api/) -- TCP port `2003`: the port for the Graphite protocol (if enabled) - -Using the `docker run` [`-P, --publish-all` flag](https://docs.docker.com/reference/cli/docker/container/run/#publish-all) exposes the InfluxDB HTTP API to the host. - -## Configure InfluxDB v1 in a container - -To configure InfluxDB v1 in a container, use a configuration file or environment variables. - -### Use a configuration file - -To customize and mount a configuration file, do the following: - -1. Output the current server configuration to a file in the mounted configuration directory--for example: - - ```bash - docker run --rm %%IMAGE%%:1.8 influxd config > influxdb.conf - ``` - -2. Edit the `influxdb.conf` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). - - ```bash - docker run -p 8086:8086 \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro" \ - %%IMAGE%%:1.8 -config /etc/influxdb/influxdb.conf - ``` - - Replace `$PWD` with the host directory where you want to store the configuration file. - -### Use environment variables - -Pass [`INFLUXDB_` environment variables](https://docs.influxdata.com/influxdb/v1/administration/config/#environment-variables) to override specific InfluxDB v1 configuration options. An environment variable overrides the equivalent option in the configuration file. - -```bash -docker run -p 8086:8086 \ - -e INFLUXDB_REPORTING_DISABLED=true \ - -e INFLUXDB_META_DIR=/path/to/metadir \ - -e INFLUXDB_DATA_QUERY_LOG_ENABLED=false \ - %%IMAGE%%:1.8 -``` - -Learn more about [configuring InfluxDB v1](https://docs.influxdata.com/influxdb/v1.8/administration/config/). - -## Graphite - -InfluxDB supports the Graphite line protocol, but the service and ports are not exposed by default. To run InfluxDB with Graphite support enabled, you can either use a configuration file or set the appropriate environment variables. Run InfluxDB with the default Graphite configuration: - -```bash -docker run -p 8086:8086 -p 2003:2003 \ - -e INFLUXDB_GRAPHITE_ENABLED=true \ - %%IMAGE%%:1.8 -``` - -See the [README on GitHub](https://github.com/influxdata/influxdb/blob/master/services/graphite/README.md) for more detailed documentation to set up the Graphite service. In order to take advantage of graphite templates, you should use a configuration file by outputting a default configuration file using the steps above and modifying the `[[graphite]]` section. - -## InfluxDB v1 HTTP API - -Creating a DB named mydb: - -```bash -curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" -``` - -Inserting into the DB: - -```bash -curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' -``` - -Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/). - -## CLI / SHELL - -Start the container: - -```bash -docker run --name=influxdb -d -p 8086:8086 %%IMAGE%%:1.8 -``` - -Run the influx client in this container: - -```bash -docker exec -it influxdb influx -``` - -Or run the influx client in a separate container: - -```bash -docker run --rm --link=influxdb -it %%IMAGE%%:1.8 influx -host influxdb +docker run -d -p 8086:8086 \ + -v $PWD/data:/var/lib/influxdb2 \ + -v $PWD/config:/etc/influxdb2 \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + %%IMAGE%%:2 ``` -## InfluxDB v1 database initialization - -### Not recommended for production - -We **don't** recommend using initialization options for InfluxDB v1 production scenarios, but they're useful when running standalone instances for testing. - -The InfluxDB Docker Hub image lets you set initialization options when creating an InfluxDB v1 container. - -The database initialization script is only called when running `influxd`; it isn't executed by any other program. - -### Environment variables +After the container starts, visit [http://localhost:8086](http://localhost:8086) to view the UI. -During the InfluxDB v1 set up process, the InfluxDB image uses environment variables to automatically configure some server options. You can override the following environment variables to customize set up options. +For detailed instructions, see the [InfluxDB v2 Docker Compose documentation](https://docs.influxdata.com/influxdb/v2/install/use-docker-compose/). -#### INFLUXDB_DB +## Using InfluxDB v1 -Automatically initializes a database with the name of this environment variable. +*InfluxDB v1 is a previous version. Consider InfluxDB 3 Core for new deployments.* -#### INFLUXDB_HTTP_AUTH_ENABLED - -Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication-related options below to work. - -#### INFLUXDB_ADMIN_USER - -The name of the admin user to be created. If this is unset, no admin user is created. - -#### INFLUXDB_ADMIN_PASSWORD - -The password for the admin user configured with `INFLUXDB_ADMIN_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_USER - -The name of a user to be created with no privileges. If `INFLUXDB_DB` is set, this user will be granted read and write permissions for that database. - -#### INFLUXDB_USER_PASSWORD - -The password for the user configured with `INFLUXDB_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_READ_USER - -The name of a user to be created with read privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. - -#### INFLUXDB_READ_USER_PASSWORD - -The password for the user configured with `INFLUXDB_READ_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_WRITE_USER - -The name of a user to be created with write privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. - -#### INFLUXDB_WRITE_USER_PASSWORD - -The password for the user configured with `INFLUXDB_WRITE_USER`. If this is unset, a random password is generated and printed to standard out. - -### Initialization Files - -If the Docker image finds any files with the extensions `.sh` or `.iql` inside of the `/docker-entrypoint-initdb.d` folder, it will execute them. The order they are executed in is determined by the shell. This is usually alphabetical order. - -### Manually Initialize InfluxDB v1 - -To manually initialize an InfluxDB v1 database, use `docker run` to call the `/init-influxdb.sh` script directly. The script takes the same initialization options as the `influxd run` command--for example: - -```bash -docker run --rm \ - -e INFLUXDB_DB=db0 \ - -e INFLUXDB_ADMIN_USER=admin \ - -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ - -e INFLUXDB_USER=telegraf -e \ - -e INFLUXDB_USER_PASSWORD=secretpassword \ - -v "$PWD:/var/lib/influxdb" \ - %%IMAGE%%:1.8 /init-influxdb.sh +```console +docker run -d -p 8086:8086 \ + -v $PWD:/var/lib/influxdb \ + %%IMAGE%%:1.11 ``` -The command creates the following: +This starts InfluxDB v1 with: -- a database named `db0` -- an admin user `admin` with the password `supersecretpassword` -- a `telegraf` user with the password `secretpassword` +- HTTP API on port 8086 +- Data persisted to current directory -The `--rm` flag causes Docker to exit and delete the container after the script runs. The data and configuration files created during initialization remain in the mounted volume (the host's `$PWD` directory). +For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). diff --git a/influxdb/get-help.md b/influxdb/get-help.md new file mode 100644 index 000000000000..ab1d9d0e956f --- /dev/null +++ b/influxdb/get-help.md @@ -0,0 +1 @@ +[InfluxDB Discord Server](https://discord.gg/9zaNCW2PRT) *(preferred for **InfluxDB 3 Core**, **InfluxDB 3 Enterprise**)*, [InfluxDB Community Slack](https://influxdata.com/slack) *(preferred for **InfluxDB v2**, **v1**)\* diff --git a/influxdb/metadata.json b/influxdb/metadata.json index 3d3937b21fb1..56ca576ac81a 100644 --- a/influxdb/metadata.json +++ b/influxdb/metadata.json @@ -1,7 +1,9 @@ { "hub": { "categories": [ - "databases-and-storage" + "data-science", + "databases-and-storage", + "internet-of-things" ] } } diff --git a/influxdb/variant-data.md b/influxdb/variant-data.md index 55dafc261dea..f805ebf38b1c 100644 --- a/influxdb/variant-data.md +++ b/influxdb/variant-data.md @@ -1,7 +1,7 @@ -## `%%IMAGE%%:data` +## `%%IMAGE%%:1-data` *Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. -Refer to the `influxdb:meta` variant for directions on how to setup a cluster. +Refer to the `influxdb:1-meta` variant for directions on how to setup a cluster. diff --git a/influxdb/variant-meta.md b/influxdb/variant-meta.md index 0442235ca886..0bbdcd7d1a42 100644 --- a/influxdb/variant-meta.md +++ b/influxdb/variant-meta.md @@ -1,8 +1,8 @@ -## `%%IMAGE%%:meta` +## `%%IMAGE%%:1-meta` *This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. -This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:data` package of the same version. +This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:1-data` package of the same version. ### Using this Image @@ -13,7 +13,7 @@ The license key can be specified using either an environment variable or by over ```console docker run -p 8089:8089 -p 8091:8091 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= - %%IMAGE%%:meta + %%IMAGE%%:1-meta ``` #### Running the container @@ -32,15 +32,15 @@ Start three meta nodes. This is the suggested number of meta nodes. We do not re docker run -d --name=influxdb-meta-0 --network=influxdb \ -h influxdb-meta-0 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:meta + %%IMAGE%%:1-meta docker run -d --name=influxdb-meta-1 --network=influxdb \ -h influxdb-meta-1 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:meta + %%IMAGE%%:1-meta docker run -d --name=influxdb-meta-2 --network=influxdb \ -h influxdb-meta-2 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:meta + %%IMAGE%%:1-meta ``` When setting the hostname, you can use `-h ` or you can directly set the environment variable using `-e INFLUXDB_HOSTNAME=`. @@ -60,7 +60,7 @@ Or you can just start a single meta node. If you setup a single meta node, you d docker run -d --name=influxdb-meta --network=influxdb \ -h influxdb-meta \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:meta -single-server + %%IMAGE%%:1-meta -single-server ``` #### Connecting the data nodes @@ -71,7 +71,7 @@ Start the data nodes using `%%IMAGE%%:data` with similar command line arguments docker run -d --name=influxdb-data-0 --network=influxdb \ -h influxdb-data-0 \ -e INFLUXDB_LICENSE_KEY= \ - %%IMAGE%%:data + %%IMAGE%%:1-data ``` You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. @@ -102,7 +102,7 @@ Modify the default configuration, which will now be available under `$PWD`. Then ```console docker run \ -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ - %%IMAGE%% -config /etc/influxdb/influxdb-meta.conf + %%IMAGE%%:1-meta -config /etc/influxdb/influxdb-meta.conf ``` Modify `$PWD` to the directory where you want to store the configuration file. From a3718f39ab655ac1e03b8f2cd5ac677f2995b1a7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Aug 2025 15:10:06 -0700 Subject: [PATCH 2440/2686] Run update.sh --- influxdb/README.md | 711 ++++++++------------------------------------- python/README.md | 60 ++-- 2 files changed, 145 insertions(+), 626 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 4541771eb36b..d9a7ed8dc4f6 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -20,7 +20,7 @@ WARNING: [InfluxData](https://github.com/influxdata/influxdata-docker) - **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + [InfluxDB Discord Server](https://discord.gg/9zaNCW2PRT) *(preferred for **InfluxDB 3 Core**, **InfluxDB 3 Enterprise**)*, [InfluxDB Community Slack](https://influxdata.com/slack) *(preferred for **InfluxDB v2**, **v1**)\* # Supported tags and respective `Dockerfile` links @@ -73,647 +73,166 @@ WARNING: # What is InfluxDB? -InfluxDB is the time series data platform designed to handle high write and query workloads. Using InfluxDB, you can collect, store, and process large amounts of timestamped data, including metrics and events for use cases such as DevOps monitoring, application metrics, IoT sensors, and event monitoring. - -Use the InfluxDB Docker Hub image to write, query, and process time series data in [InfluxDB v2](https://docs.influxdata.com/influxdb/v2/) or [InfluxDB v1](https://docs.influxdata.com/influxdb/v1/). - -For more information, visit https://influxdata.com. - ![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png) -# How to use this image for InfluxDB v2 - -**Quick start**: See the guide to [Install InfluxDB v2 for Docker](https://docs.influxdata.com/influxdb/v2/install/?t=Docker) and get started using InfluxDB v2. - -## Start InfluxDB v2 and set up with the UI, CLI, or API - -To start an InfluxDB v2 container, enter the following command: - -```bash -docker run \ - -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - influxdb:2 -``` - -Replace the following with your own values: - -- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path - -After the container starts, the InfluxDB UI and API are accessible at http://localhost:8086 on the host. You're ready to set up an initial admin user, token, and bucket from outside or inside the container--choose one of the following: - -- **Set up InfluxDB from outside the container**: [Set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) from the host or network using the InfluxDB UI, `influx` CLI, or HTTP API. - -- **Set up InfluxDB from inside the container**: Use `docker exec` to run the `influx` CLI installed in the container--for example: - - ```bash - docker exec influxdb2 influx setup \ - --username $USERNAME \ - --password $PASSWORD \ - --org $ORGANIZATION \ - --bucket $BUCKET \ - --force - ``` - -See the [`influx setup` documentation](https://docs.influxdata.com/influxdb/v2/reference/cli/influx/setup/) for the full list of options. - -*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* - -## Start InfluxDB v2 with automated setup - -To start and set up InfluxDB v2 with a single command, specify `-e DOCKER_INFLUXDB_INIT_MODE=setup` and `-e DOCKER_INFLUXDB_INIT_` environment variables for the initial user, password, bucket, and organization--for example: - -```bash -docker run -d -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME= \ - -e DOCKER_INFLUXDB_INIT_PASSWORD= \ - -e DOCKER_INFLUXDB_INIT_ORG= \ - -e DOCKER_INFLUXDB_INIT_BUCKET= \ - influxdb:2 -``` - -Replace the following with your own values: - -- `$PWD/data`: A host directory to mount at the container's [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- `$PWD/config`: A host directory to mount at the container's [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) path -- ``: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) -- ``: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) -- ``: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) -- ``: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) (database) - -*If you run setup from within the container, InfluxDB stores `influx` CLI [connection configurations](/influxdb/v2/reference/cli/influx/#provide-required-authentication-credentials) in the container's `/etc/influxdb2/influx-configs` file.* - -### Automated setup options - -In setup mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or upgrade mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), you can specify the following Docker-specific environment variables to provide initial setup values: - -- `DOCKER_INFLUXDB_INIT_USERNAME`: A name for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). -- `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for your initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/). -- `DOCKER_INFLUXDB_INIT_ORG`: A name for your initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/). -- `DOCKER_INFLUXDB_INIT_BUCKET`: A name for your initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/). -- Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) to use as the initial bucket's [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data). -- Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A string value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: a generated token. - -The following example shows how to pass values for all initial setup options: - -```bash -docker run -d -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_RETENTION=1w \ - -e DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token \ - influxdb:2 -``` - -*To upgrade from InfluxDB 1.x to InfluxDB 2.x, see the **Upgrading from InfluxDB 1.x** section below.\* +InfluxDB is the time series database platform designed to collect, store, and process large amounts of event and time series data. Ideal for monitoring (sensors, servers, applications, networks), financial analytics, and behavioral tracking. -With InfluxDB set up and running, see the [Get started](https://docs.influxdata.com/influxdb/v2/get-started/) tutorial to create tokens and write and query data. - -### Custom Initialization Scripts - -In `setup` mode (`DOCKER_INFLUXDB_INIT_MODE=setup`) or `upgrade` mode (`DOCKER_INFLUXDB_INIT_MODE=upgrade`), the InfluxDB Docker Hub image supports running custom initialization scripts. After the setup process completes, scripts are executed in lexical sort order by name. - -For the container to run scripts, they must: - -- Be mounted in the container's `/docker-entrypoint-initdb.d` directory -- Be named using the `.sh` file name extension -- Be executable by the user running the `docker run` command--for example, to allow the current use to execute a script with `docker run`: - - ```bash - chmod +x ./scripts/ - ``` - -> #### Grant permissions to mounted files -> -> By default, Docker runs containers using the user and group IDs of the user executing the `docker run` command. When files are bind-mounted into the container, Docker preserves the user and group ownership from the host system. - -The image exports a number of variables into the environment before executing scripts. The following variables are available for you to use in your scripts: - -- `INFLUX_CONFIGS_PATH`: Path to the `influx` CLI connection configurations file written by `setup`/`upgrade` -- `INFLUX_HOST`: URL to the `influxd` instance running `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_USER_ID`: ID of the initial admin user created by `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_ORG_ID`: ID of the initial organization created by `setup`/`upgrade` -- `DOCKER_INFLUXDB_INIT_BUCKET_ID`: ID of the initial bucket created by `setup`/`upgrade` - -For example, to grant an InfluxDB 1.x client *write* permission to your initial bucket, create a `$PWD/scripts/setup-v1.sh` file that contains the following: - -```bash -#!/bin/bash -set -e - -influx v1 dbrp create \ - --bucket-id ${DOCKER_INFLUXDB_INIT_BUCKET_ID} \ - --db ${V1_DB_NAME} \ - --rp ${V1_RP_NAME} \ - --default \ - --org ${DOCKER_INFLUXDB_INIT_ORG} - -influx v1 auth create \ - --username ${V1_AUTH_USERNAME} \ - --password ${V1_AUTH_PASSWORD} \ - --write-bucket ${DOCKER_INFLUXDB_INIT_BUCKET_ID} \ - --org ${DOCKER_INFLUXDB_INIT_ORG} -``` - -Then, run the following command to start and set up InfluxDB using custom scripts: - -```bash -docker run -p 8086:8086 \ - -v "$PWD/data:/var/lib/influxdb2" \ - -v "$PWD/config:/etc/influxdb2" \ - -v "$PWD/scripts:/docker-entrypoint-initdb.d" \ - -e DOCKER_INFLUXDB_INIT_MODE=setup \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e V1_DB_NAME=v1-db \ - -e V1_RP_NAME=v1-rp \ - -e V1_AUTH_USERNAME=v1-user \ - -e V1_AUTH_PASSWORD=v1-password \ - influxdb:2 -``` - -> #### Automated setup and upgrade ignored if already setup -> -> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. -> -> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. - -## Access InfluxDB v2 file system and ports - -When starting an InfluxDB container, we recommend the following for easy access to your data, configurations, and InfluxDB v2 instance: - -- Publish the container's `8086` port to make the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) accessible from the host system. -- Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) outside of containers. - -### Default file system and networking ports - -For InfluxDB v2, the InfluxDB Docker Hub image uses the following default ports and file system paths: - -- TCP port `8086`: the default port for the InfluxDB [UI](https://docs.influxdata.com/influxdb/v2/get-started/#influxdb-user-interface-ui) and [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/). To specify a different port or address, use the [`http-bind-address` configuration option](https://docs.influxdata.com/influxdb/v2/reference/config-options/#http-bind-address). -- `/var/lib/influxdb2/`: the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) - - - `/engine/`: Default InfluxDB [Storage engine path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#engine-path) - - `influxd.bolt`: Default [Bolt path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#bolt-path) - - `influxd.sqlite`: Default [SQLite path](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/#sqlite-path) - -- `/etc/influxdb2`: the [InfluxDB configuration directory](https://docs.influxdata.com/influxdb/v2/reference/internals/file-system-layout/?t=docker#file-system-layout) - - - `/etc/influxdb2/configs`: `influx` CLI connection configurations file - - `/etc/influxdb2/influx-configs`: `influx` CLI connection configurations file, *if you run setup from within the container* - - Optional: `/etc/influxdb2/config.[yml, json, toml]`: Your customized InfluxDB [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/) file - -### Configure InfluxDB v2 in a container - -To customize InfluxDB, specify [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options) in a configuration file, environment variables, or command line flags. - -#### Use a configuration file - -To customize and mount an InfluxDB configuration file, do the following: - -1. If you haven't already, [set up InfluxDB](https://docs.influxdata.com/influxdb/v2/get-started/setup/) to initialize an API [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). You'll need the Operator token in the next step. - -2. Run the `influx server-config` CLI command to output the current server configuration to a file in the mounted configuration directory--for example, enter the following command to use the container's `influx` CLI and default Operator token: - - ```bash - docker exec -it influxdb2 influx server-config > "$PWD/config/config.yml" - ``` - -Replace `$PWD/config/` with the host directory that you mounted at the container's `/etc/influxdb2` InfluxDB configuration directory path. - -1. Edit the `config.yml` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). -2. Restart the container. - - ```bash - docker restart influxdb2 - ``` - -#### Use environment variables and command line flags - -To override specific [configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options), use environment variables or command line flags. - -- Pass `INFLUXD_` environment variables to Docker to override the configuration file--for example: - - ```bash - docker run -p 8086:8086 \ - -e INFLUXD_STORAGE_WAL_FSYNC_DELAY=15m \ - influxdb:2 - ``` - -- Pass `influxd` command line flags to override environment variables and the configuration file--for example: - - ```bash - docker run -p 8086:8086 \ - influxdb:2 --storage-wal-fsync-delay=15m - ``` - -To learn more, see [InfluxDB configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options). - -### Upgrading from InfluxDB 1.x - -InfluxDB 2.x provides a [1.x-compatible API](https://docs.influxdata.com/influxdb/v2/reference/api/influxdb-1x/), but expects a different storage layout on disk. To account for these differences, the InfluxDB Docker Hub image provides an `upgrade` feature that migrates 1.x data and configuration to 2.x before starting the `influxd` server. - -The automated upgrade process creates the following in the InfluxDB v2 container: - -- an initial admin user -- an initial organization -- an initial bucket -- InfluxDB v2 data files (the default path is `/var/lib/influxdb2`) -- InfluxDB v2 configuration files (the default path is `/etc/influxdb2`) - -*Mount volumes at both paths to avoid losing data.* - -To run the automated upgrade, specify the following when you start the container: - -- InfluxDB v2 initialization environment variables: - - - `DOCKER_INFLUXDB_INIT_MODE=upgrade` - - `DOCKER_INFLUXDB_INIT_USERNAME`: A name for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) - - `DOCKER_INFLUXDB_INIT_PASSWORD`: A password for the initial admin [user](https://docs.influxdata.com/influxdb/v2/admin/users/) - - `DOCKER_INFLUXDB_INIT_ORG`: A name for the initial [organization](https://docs.influxdata.com/influxdb/v2/admin/organizations/) - - `DOCKER_INFLUXDB_INIT_BUCKET`: A name for the initial [bucket](https://docs.influxdata.com/influxdb/v2/admin/buckets/) - - Optional: `DOCKER_INFLUXDB_INIT_RETENTION`: A [duration](https://docs.influxdata.com/influxdb/v2/reference/glossary/#duration) for the bucket [retention period](https://docs.influxdata.com/influxdb/v2/reference/internals/data-retention/#bucket-retention-period). Default: `0` (infinite; doesn't delete data) - - Optional: `DOCKER_INFLUXDB_INIT_ADMIN_TOKEN`: A value to set for the [Operator token](https://docs.influxdata.com/influxdb/v2/admin/tokens/#operator-token). Default: generates a token. - -- 1.x data and configuration paths: - - - A 1.x data volume, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable or mounted at `/var/lib/influxdb` - - Optional: a 1.x custom configuration file, specified by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable or mounted at `/etc/influxdb/influxdb.conf` - -The upgrade process searches for mounted 1.x data and configuration paths in the following order of precedence: - -1. A configuration file referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG` environment variable -2. A data directory referenced by the `DOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR` environment variable -3. A configuration file mounted at `/etc/influxdb/influxdb.conf` -4. A data directory mounted at `/var/lib/influxdb` - -> #### Automated setup and upgrade ignored if already setup -> -> Automated `setup`, `upgrade`, and custom initialization scripts won't run if an existing `influxd.bolt` boltdb file from a previous setup is found in the configured data directory. -> -> This behavior allows for the InfluxDB container to reboot post-setup and avoid overwriting migrated data, `DB is already set up` errors, and errors from non-idempotent script commands. - -#### Upgrade InfluxDB 1.x: default data path and configuration - -Assume you've been running a minimal InfluxDB 1.x deployment: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - influxdb:1.8 -``` +## Quick Start -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: +Use InfluxDB 3 Core, the latest InfluxDB OSS: -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - influxdb:2 -``` - -#### Upgrade InfluxDB 1.x: custom configuration - -Assume you've been running an InfluxDB 1.x deployment with customized configuration (`/etc/influxdb/influxdb.conf`): - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ - influxdb:1.8 -``` - -To upgrade this deployment to InfluxDB 2.x, stop the running InfluxDB 1.x container, and then run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/var/lib/influxdb \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - influxdb:2 -``` - -#### Upgrade InfluxDB 1.x: custom data and configuration paths - -Assume you've been running an InfluxDB 1.x deployment with data and configuration mounted at custom paths: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - influxdb:1.8 -config /root/influxdb/influxdb.conf -``` - -Before you upgrade to InfluxDB v2, decide whether to keep using your custom paths or to use the InfluxDB v2 defaults. - -To use InfluxDB v2 defaults, stop the running InfluxDB 1.x container, and then run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/var/lib/influxdb2 \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - influxdb:2 -``` - -To use your custom paths instead of InfluxDB v2 default paths, run the following command: - -```bash -docker run -p 8086:8086 \ - -v influxdb:/root/influxdb/data \ - -v influxdb2:/root/influxdb2/data \ - -v influxdb2-config:/etc/influxdb2 \ - -v "$PWD/influxdb.conf:/root/influxdb/influxdb.conf" \ - -e DOCKER_INFLUXDB_INIT_MODE=upgrade \ - -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ - -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ - -e DOCKER_INFLUXDB_INIT_ORG=my-org \ - -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ - -e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \ - -e DOCKER_INFLUXDB_CONFIG_PATH=/root/influxdb2/config.toml \ - -e DOCKER_INFLUXDB_BOLT_PATH=/root/influxdb2/influxdb.bolt \ - -e DOCKER_INFLUXDB_ENGINE_PATH=/root/influxdb2/engine \ - influxdb:2 -``` - -To learn more about the upgrade process, see the [v1-to-v2 upgrade guide](https://docs.influxdata.com/influxdb/v2.0/upgrade/v1-to-v2/). - -### Upgrading from quay.io-hosted InfluxDB 2.x image - -Early Docker builds of InfluxDB 2.x were hosted at `quay.io/influxdb/influxdb` and contained the `influx` and `influxd` binaries without any default configuration or helper scripts. By default, the `influxd` process stored data in `/root/.influxdbv2`. - -Starting with `v2.0.4`, we restored the InfluxDB Docker Hub build, which defaults to storing data in `/var/lib/influxdb2`. If you upgrade directly from `quay.io/influxdb/influxdb` to `influxdb:2.0.4` using the default settings, InfluxDB won't be able to find your existing data files. - -To avoid this problem when migrating from `quay.io/influxdb/influxdb` to `influxdb:2.0`, choose one of the following: - -#### Update the mount to use the InfluxDB default - -To use the InfluxDB Docker Hub data path, start a container that mounts your data volume into `/var/lib/influxdb2`--for example, if you used the following command to start the InfluxDB quay.io container: - -```bash -# quay.io InfluxDB 2.x container -docker run -p 8086:8086 \ - -v "$PWD:/root/.influxdbv2" \ - quay.io/influxdb/influxdb:v2.0.3 -``` - -Use this command to start an InfluxDB v2 Docker Hub container: - -```bash -# Docker Hub InfluxDB 2.x container -docker run -p 8086:8086 \ - -v "$PWD:/var/lib/influxdb2" \ - influxdb:2 -``` - -#### Configure InfluxDB to use the container home directory - -To continue using the `/root/.influxdbv2` data path, customize storage path configuration options ([bolt-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#bolt-path), [engine-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#engine-path), [sqlite-path](https://docs.influxdata.com/influxdb/v2/reference/config-options/#sqlite-path)) configuration options for your InfluxDB Docker Hub container--for example, if you used the following command to start the InfluxDB quay.io container: - -```bash -# quay.io-hosted InfluxDB 2.x -docker run -p 8086:8086 \ - -v "$PWD:/root/.influxdbv2" \ - quay.io/influxdb/influxdb:v2.0.3 -``` - -Use this command to start an InfluxDB v2 Docker Hub container: - -```bash -docker run -p 8086:8086 \ - -e INFLUXD_BOLT_PATH=/root/.influxdbv2/influxd.bolt \ - -e INFLUXD_ENGINE_PATH=/root/.influxdbv2/engine \ - -v "$PWD:/root/.influxdbv2" \ - influxdb:2 +```console +docker run -d -p 8181:8181 influxdb:3-core ``` -# How to use this image for InfluxDB v1 - -Use the InfluxDB Docker Hub image to run and set up an [InfluxDB 1.x](https://docs.influxdata.com/influxdb/v1/) container. +Available OSS tags: -## Running the container +- `influxdb:3-core` - **Latest InfluxDB OSS** (InfluxDB 3 Core) +- `influxdb:2` - Previous generation OSS (InfluxDB v2) +- `influxdb:1.11` - InfluxDB v1 -To start an InfluxDB 1.x container, enter the following command: +## Available Versions -```bash -docker run -p 8086:8086 \ - -v "$PWD:/var/lib/influxdb" \ - influxdb:1.8 -``` - -The command passes the following arguments: - -- `-p 8086:8086`: Exposes the InfluxDB [HTTP API](https://docs.influxdata.com/influxdb/v2/reference/api/) on host port `8086`. -- `-v $PWD:/var/lib/influxdb`: Mounts the host's `$PWD` directory to the [InfluxDB data directory](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/) to persist data outside the container. +#### InfluxDB 3 Core (`influxdb:3-core`) - Latest OSS -Replace `$PWD` with the host directory where you want InfluxDB to store data. +- **Latest generation** with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL +- Sub-10ms queries and unlimited cardinality +- Supports SQL and InfluxQL queries +- Includes Python processing engine +- Designed for real-time monitoring and recent data +- Includes v1 compatibility API for writing and querying data +- Includes v2 compatibility API for writing data -*Use Docker [Volumes](https://docs.docker.com/storage/volumes/) or [Bind mounts](https://docs.docker.com/storage/bind-mounts/) to persist InfluxDB [data and configuration directories](https://docs.influxdata.com/influxdb/v1/concepts/file-system-layout/).* +#### InfluxDB v2 (`influxdb:2`) -## Networking ports +- Built on the TSM storage engine +- Supports Flux query language +- Integrated UI and dashboards +- Includes v1 compatibility API that supports InfluxQL -InfluxDB uses the following networking ports: +#### InfluxDB v1 (`influxdb:1.11`) -- TCP port `8086`: the default port for the [HTTP API](https://docs.influxdata.com/influxdb/v1/tools/api/) -- TCP port `2003`: the port for the Graphite protocol (if enabled) +- Built on the TSM storage engine +- Original version with InfluxQL query language +- Proven stability for existing deployments -Using the `docker run` [`-P, --publish-all` flag](https://docs.docker.com/reference/cli/docker/container/run/#publish-all) exposes the InfluxDB HTTP API to the host. +### Enterprise Editions (License Required) -## Configure InfluxDB v1 in a container +#### InfluxDB 3 Enterprise (`influxdb:3-enterprise`) -To configure InfluxDB v1 in a container, use a configuration file or environment variables. +- Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core -### Use a configuration file +For setup instructions, see the [InfluxDB 3 Enterprise installation documentation](https://docs.influxdata.com/influxdb3/enterprise/install/). -To customize and mount a configuration file, do the following: +#### InfluxDB v1 Enterprise -1. Output the current server configuration to a file in the mounted configuration directory--for example: +- `influxdb:1.11-data` - Data nodes for clustering +- `influxdb:1.11-meta` - Meta nodes for cluster coordination (port 8091) - ```bash - docker run --rm influxdb:1.8 influxd config > influxdb.conf - ``` +For setup instructions, see the [InfluxDB v1 Enterprise Docker documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). -2. Edit the `influxdb.conf` file to customize [server configuration options](https://docs.influxdata.com/influxdb/v2/reference/config-options/#configuration-options). +## Version Compatibility - ```bash - docker run -p 8086:8086 \ - -v "$PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro" \ - influxdb:1.8 -config /etc/influxdb/influxdb.conf - ``` +### Migration Paths - Replace `$PWD` with the host directory where you want to store the configuration file. +To migrate from v1 or v2 to InfluxDB 3: -### Use environment variables +1. Dual-write new data to v1/v2 and InfluxDB 3. +2. Query historical data from v1/v2 and write it to InfluxDB 3. *InfluxDB 3 Enterprise is recommended for historical query capability.* -Pass [`INFLUXDB_` environment variables](https://docs.influxdata.com/influxdb/v1/administration/config/#environment-variables) to override specific InfluxDB v1 configuration options. An environment variable overrides the equivalent option in the configuration file. - -```bash -docker run -p 8086:8086 \ - -e INFLUXDB_REPORTING_DISABLED=true \ - -e INFLUXDB_META_DIR=/path/to/metadir \ - -e INFLUXDB_DATA_QUERY_LOG_ENABLED=false \ - influxdb:1.8 -``` +## Using InfluxDB 3 Core (Latest OSS) -Learn more about [configuring InfluxDB v1](https://docs.influxdata.com/influxdb/v1.8/administration/config/). +### Start InfluxDB 3 Core -## Graphite +... via [`docker compose`](https://github.com/docker/compose) -InfluxDB supports the Graphite line protocol, but the service and ports are not exposed by default. To run InfluxDB with Graphite support enabled, you can either use a configuration file or set the appropriate environment variables. Run InfluxDB with the default Graphite configuration: +Example `compose.yaml` for `influxdb`: -```bash -docker run -p 8086:8086 -p 2003:2003 \ - -e INFLUXDB_GRAPHITE_ENABLED=true \ - influxdb:1.8 +```yaml +# compose.yaml +name: influxdb3 +services: + influxdb3-core: + container_name: influxdb3-core + image: influxdb:3-core + ports: + - 8181:8181 + command: + - influxdb3 + - serve + - --node-id=node0 + - --object-store=file + - --data-dir=/var/lib/influxdb3/data + - --plugin-dir=/var/lib/influxdb3/plugins + volumes: + - type: bind + source: ~/.influxdb3/core/data + target: /var/lib/influxdb3/data + - type: bind + source: ~/.influxdb3/core/plugins + target: /var/lib/influxdb3/plugins ``` -See the [README on GitHub](https://github.com/influxdata/influxdb/blob/master/services/graphite/README.md) for more detailed documentation to set up the Graphite service. In order to take advantage of graphite templates, you should use a configuration file by outputting a default configuration file using the steps above and modifying the `[[graphite]]` section. - -## InfluxDB v1 HTTP API +The example `compose.yaml` starts InfluxDB 3 Core on port 8181 with: -Creating a DB named mydb: +- Data persistence at `/var/lib/influxdb3` +- Plugin directory for Python processing engine +- Object storage configured (default: file) -```bash -curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" -``` +### Get Started Using InfluxDB 3 -Inserting into the DB: +After starting your InfluxDB 3 server: -```bash -curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' -``` +- Follow the [Get started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an auth token and database, and write, query, and process data. +- Use the [InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/) to write data, create dashboards, explore metrics, and manage databases -Read more about this in the [official documentation](https://docs.influxdata.com/influxdb/latest/guides/writing_data/). +### InfluxDB 3 Server Options -## CLI / SHELL - -Start the container: +Customize your deployment with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): ```bash -docker run --name=influxdb -d -p 8086:8086 influxdb:1.8 +# View all available options +docker run --rm influxdb:3-core influxdb3 serve --help ``` -Run the influx client in this container: +## Using InfluxDB v2 -```bash -docker exec -it influxdb influx -``` +*InfluxDB v2 is a previous version. Consider InfluxDB 3 Core for new deployments.* -Or run the influx client in a separate container: +### Start InfluxDB v2 ```bash -docker run --rm --link=influxdb -it influxdb:1.8 influx -host influxdb +docker run -d -p 8086:8086 \ + -v $PWD/data:/var/lib/influxdb2 \ + -v $PWD/config:/etc/influxdb2 \ + -e DOCKER_INFLUXDB_INIT_MODE=setup \ + -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \ + -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \ + -e DOCKER_INFLUXDB_INIT_ORG=my-org \ + -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \ + influxdb:2 ``` -## InfluxDB v1 database initialization - -### Not recommended for production - -We **don't** recommend using initialization options for InfluxDB v1 production scenarios, but they're useful when running standalone instances for testing. - -The InfluxDB Docker Hub image lets you set initialization options when creating an InfluxDB v1 container. - -The database initialization script is only called when running `influxd`; it isn't executed by any other program. - -### Environment variables - -During the InfluxDB v1 set up process, the InfluxDB image uses environment variables to automatically configure some server options. You can override the following environment variables to customize set up options. +After the container starts, visit [http://localhost:8086](http://localhost:8086) to view the UI. -#### INFLUXDB_DB +For detailed instructions, see the [InfluxDB v2 Docker Compose documentation](https://docs.influxdata.com/influxdb/v2/install/use-docker-compose/). -Automatically initializes a database with the name of this environment variable. +## Using InfluxDB v1 -#### INFLUXDB_HTTP_AUTH_ENABLED +*InfluxDB v1 is a previous version. Consider InfluxDB 3 Core for new deployments.* -Enables authentication. Either this must be set or `auth-enabled = true` must be set within the configuration file for any authentication-related options below to work. - -#### INFLUXDB_ADMIN_USER - -The name of the admin user to be created. If this is unset, no admin user is created. - -#### INFLUXDB_ADMIN_PASSWORD - -The password for the admin user configured with `INFLUXDB_ADMIN_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_USER - -The name of a user to be created with no privileges. If `INFLUXDB_DB` is set, this user will be granted read and write permissions for that database. - -#### INFLUXDB_USER_PASSWORD - -The password for the user configured with `INFLUXDB_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_READ_USER - -The name of a user to be created with read privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. - -#### INFLUXDB_READ_USER_PASSWORD - -The password for the user configured with `INFLUXDB_READ_USER`. If this is unset, a random password is generated and printed to standard out. - -#### INFLUXDB_WRITE_USER - -The name of a user to be created with write privileges on `INFLUXDB_DB`. If `INFLUXDB_DB` is not set, this user will have no granted permissions. - -#### INFLUXDB_WRITE_USER_PASSWORD - -The password for the user configured with `INFLUXDB_WRITE_USER`. If this is unset, a random password is generated and printed to standard out. - -### Initialization Files - -If the Docker image finds any files with the extensions `.sh` or `.iql` inside of the `/docker-entrypoint-initdb.d` folder, it will execute them. The order they are executed in is determined by the shell. This is usually alphabetical order. - -### Manually Initialize InfluxDB v1 - -To manually initialize an InfluxDB v1 database, use `docker run` to call the `/init-influxdb.sh` script directly. The script takes the same initialization options as the `influxd run` command--for example: - -```bash -docker run --rm \ - -e INFLUXDB_DB=db0 \ - -e INFLUXDB_ADMIN_USER=admin \ - -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \ - -e INFLUXDB_USER=telegraf -e \ - -e INFLUXDB_USER_PASSWORD=secretpassword \ - -v "$PWD:/var/lib/influxdb" \ - influxdb:1.8 /init-influxdb.sh +```console +docker run -d -p 8086:8086 \ + -v $PWD:/var/lib/influxdb \ + influxdb:1.11 ``` -The command creates the following: +This starts InfluxDB v1 with: -- a database named `db0` -- an admin user `admin` with the password `supersecretpassword` -- a `telegraf` user with the password `secretpassword` +- HTTP API on port 8086 +- Data persisted to current directory -The `--rm` flag causes Docker to exit and delete the container after the script runs. The data and configuration files created during initialization remain in the mounted volume (the host's `$PWD` directory). +For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). # Image Variants @@ -731,19 +250,19 @@ This variant is useful when final image size being as small as possible is your To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). -## `influxdb:data` +## `influxdb:1-data` *Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. -Refer to the `influxdb:meta` variant for directions on how to setup a cluster. +Refer to the `influxdb:1-meta` variant for directions on how to setup a cluster. -## `influxdb:meta` +## `influxdb:1-meta` *This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. -This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:data` package of the same version. +This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:1-data` package of the same version. ### Using this Image @@ -754,7 +273,7 @@ The license key can be specified using either an environment variable or by over ```console docker run -p 8089:8089 -p 8091:8091 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= - influxdb:meta + influxdb:1-meta ``` #### Running the container @@ -773,15 +292,15 @@ Start three meta nodes. This is the suggested number of meta nodes. We do not re docker run -d --name=influxdb-meta-0 --network=influxdb \ -h influxdb-meta-0 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:meta + influxdb:1-meta docker run -d --name=influxdb-meta-1 --network=influxdb \ -h influxdb-meta-1 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:meta + influxdb:1-meta docker run -d --name=influxdb-meta-2 --network=influxdb \ -h influxdb-meta-2 \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:meta + influxdb:1-meta ``` When setting the hostname, you can use `-h ` or you can directly set the environment variable using `-e INFLUXDB_HOSTNAME=`. @@ -801,7 +320,7 @@ Or you can just start a single meta node. If you setup a single meta node, you d docker run -d --name=influxdb-meta --network=influxdb \ -h influxdb-meta \ -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:meta -single-server + influxdb:1-meta -single-server ``` #### Connecting the data nodes @@ -812,7 +331,7 @@ Start the data nodes using `influxdb:data` with similar command line arguments t docker run -d --name=influxdb-data-0 --network=influxdb \ -h influxdb-data-0 \ -e INFLUXDB_LICENSE_KEY= \ - influxdb:data + influxdb:1-data ``` You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. @@ -843,7 +362,7 @@ Modify the default configuration, which will now be available under `$PWD`. Then ```console docker run \ -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ - influxdb -config /etc/influxdb/influxdb-meta.conf + influxdb:1-meta -config /etc/influxdb/influxdb-meta.conf ``` Modify `$PWD` to the directory where you want to store the configuration file. diff --git a/python/README.md b/python/README.md index 2e3bb5c3b219..bdb76e4ad74c 100644 --- a/python/README.md +++ b/python/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`3.14.0rc1-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/trixie/Dockerfile) +- [`3.14.0rc2-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/trixie/Dockerfile) -- [`3.14.0rc1-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc1-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/slim-trixie/Dockerfile) +- [`3.14.0rc2-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/slim-trixie/Dockerfile) -- [`3.14.0rc1-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/bookworm/Dockerfile) +- [`3.14.0rc2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/bookworm/Dockerfile) -- [`3.14.0rc1-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0rc2-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0rc1-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc1-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0rc2-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0rc1-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0rc2-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0rc1-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0rc2-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0rc1-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0rc2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.6-trixie`, `3.13-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/trixie/Dockerfile) +- [`3.13.7-trixie`, `3.13-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/trixie/Dockerfile) -- [`3.13.6-slim-trixie`, `3.13-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.13.6-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/slim-trixie/Dockerfile) +- [`3.13.7-slim-trixie`, `3.13-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.13.7-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/slim-trixie/Dockerfile) -- [`3.13.6-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/bookworm/Dockerfile) +- [`3.13.7-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/bookworm/Dockerfile) -- [`3.13.6-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/slim-bookworm/Dockerfile) +- [`3.13.7-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/slim-bookworm/Dockerfile) -- [`3.13.6-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.6-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/alpine3.22/Dockerfile) +- [`3.13.7-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/alpine3.22/Dockerfile) -- [`3.13.6-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/alpine3.21/Dockerfile) +- [`3.13.7-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/alpine3.21/Dockerfile) -- [`3.13.6-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.7-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.6-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.7-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.11-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) @@ -110,27 +110,27 @@ WARNING: ## Shared Tags -- `3.14.0rc1`, `3.14-rc`: +- `3.14.0rc2`, `3.14-rc`: - - [`3.14.0rc1-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.14-rc/trixie/Dockerfile) - - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc2-trixie`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/trixie/Dockerfile) + - [`3.14.0rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0rc1-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0rc2-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3e03c7f85109a1fa9c3e830d513e38980de80fbd/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.6`, `3.13`, `3`, `latest`: +- `3.13.7`, `3.13`, `3`, `latest`: - - [`3.13.6-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.13/trixie/Dockerfile) - - [`3.13.6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.7-trixie`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/trixie/Dockerfile) + - [`3.13.7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.6-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.7-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.13.6-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0ab3fcf3e8e0083138c80eea5b95a64324f35c4e/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - `3.12.11`, `3.12`: From 73ac31e32531ee6a1006e3ba15f87d47eca21044 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 15 Aug 2025 18:10:44 -0700 Subject: [PATCH 2441/2686] Run update.sh --- ghost/README.md | 4 ++-- php/README.md | 28 ++++++++++++++++++++++++++++ ubuntu/README.md | 4 ++-- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a15cb4936b79..f58157b76233 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.3`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/44adbd73a5aab86d7b650c8e4baff2eaa4bda1ee/6/debian/Dockerfile) +- [`6.0.4`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/93e6f0b2a07742f7e023ddf20115eab0099e7cd1/6/debian/Dockerfile) -- [`6.0.3-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/44adbd73a5aab86d7b650c8e4baff2eaa4bda1ee/6/alpine/Dockerfile) +- [`6.0.4-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/93e6f0b2a07742f7e023ddf20115eab0099e7cd1/6/alpine/Dockerfile) - [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) diff --git a/php/README.md b/php/README.md index ad258549fb14..dc4f4eed4fa8 100644 --- a/php/README.md +++ b/php/README.md @@ -108,6 +108,34 @@ WARNING: - [`8.4.11-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.25RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.25RC1-trixie`, `8.3-rc-trixie`, `8.3.25RC1-cli`, `8.3-rc-cli`, `8.3.25RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/cli/Dockerfile) + +- [`8.3.25RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.25RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/apache/Dockerfile) + +- [`8.3.25RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.25RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/fpm/Dockerfile) + +- [`8.3.25RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.25RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/zts/Dockerfile) + +- [`8.3.25RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.25RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.25RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.25RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.25RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.25RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.25RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.25RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.25RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.25RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.25RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.25RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.25RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.25RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.25RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.25RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.25RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.24-cli-trixie`, `8.3-cli-trixie`, `8.3.24-trixie`, `8.3-trixie`, `8.3.24-cli`, `8.3-cli`, `8.3.24`, `8.3`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/cli/Dockerfile) - [`8.3.24-apache-trixie`, `8.3-apache-trixie`, `8.3.24-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/apache/Dockerfile) diff --git a/ubuntu/README.md b/ubuntu/README.md index a80bc2a1e264..bd8a8415bc85 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -28,9 +28,9 @@ WARNING: - [`24.04`, `noble-20250716`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250716-0bed38f8&id=0bed38f848c1d36e629285d6aecc20f17083b469) -- [`25.04`, `plucky-20250714`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250714-583c18ff&id=583c18ffc4ba6a16e0c8f62dff0ddf62db29134a) +- [`25.04`, `plucky-20250730`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250730-64382f68&id=64382f68a9c78883c68e8fd9c1632107a6d24c9f) -- [`25.10`, `questing-20250721`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250721-737410c3&id=737410c343b462be131d9073d61f0602a766b9e5) +- [`25.10`, `questing-20250806`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250806-6021f9ff&id=6021f9fffdc92e1ad574db45a148cd2fb91f121d) # Quick reference (cont.) From 557944fbac1cb9c421c01df6abc1c74b394acc11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilius=20=C5=A0umskas?= Date: Mon, 18 Aug 2025 00:32:00 +0300 Subject: [PATCH 2442/2686] Remove not needed WiredTiger option Support for automatic container memory limit detection using cgroups was implemented since MongoDB 4.1.9, so there is no reason to set it manually. --- mongo/content.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/mongo/content.md b/mongo/content.md index 0bec7ae13aed..a22ad952897f 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -77,18 +77,6 @@ To see the full list of possible options, check the MongoDB manual on [`mongod`] $ docker run -it --rm %%IMAGE%% --help ``` -## Setting WiredTiger cache size limits - -By default Mongo will set the `wiredTigerCacheSizeGB` to a value proportional to the host's total memory regardless of memory limits you may have imposed on the container. In such an instance you will want to set the cache size to something appropriate, taking into account any other processes you may be running in the container which would also utilize memory. - -Taking the examples above you can configure the cache size to use 1.5GB as: - -```console -$ docker run --name some-%%REPO%% -d %%IMAGE%% --wiredTigerCacheSizeGB 1.5 -``` - -See [the upstream "WiredTiger Options" documentation](https://docs.mongodb.com/manual/reference/program/mongod/#wiredtiger-options) for more details. - ## Using a custom MongoDB configuration file For a more complicated configuration setup, you can still use the MongoDB configuration file. `mongod` does not read a configuration file by default, so the `--config` option with the path to the configuration file needs to be specified. Create a custom configuration file and put it in the container by either creating a custom Dockerfile `FROM %%IMAGE%%` or mounting it from the host machine to the container. See the MongoDB manual for a full list of [configuration file](https://docs.mongodb.com/manual/reference/configuration-options/) options. From 0514de09d0b0a7a162b89b482d73c1edb8c89772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilius=20=C5=A0umskas?= Date: Mon, 18 Aug 2025 01:51:48 +0300 Subject: [PATCH 2443/2686] Update documentation links Also, --serviceExecutor was removed in MongoDB 5.0 so change it to another useful example. --- mongo/content.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/mongo/content.md b/mongo/content.md index 0bec7ae13aed..01c5ca3c47f7 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -52,26 +52,26 @@ $ docker logs some-%%REPO%% # Configuration -See the [MongoDB manual](https://docs.mongodb.com/manual/) for information on using and configuring MongoDB for things like replica sets and sharding. +See the [MongoDB manual](https://www.mongodb.com/docs/manual/administration/configuration/) for information on using and configuring MongoDB for things like replica sets and sharding. ## Customize configuration without configuration file -Most MongoDB configuration can be set through flags to `mongod`. The entrypoint of the image is created to pass its arguments along to `mongod`. See below an example of setting MongoDB to use a different [threading and execution model](https://docs.mongodb.com/manual/reference/program/mongod/#cmdoption-mongod-serviceexecutor) via `docker run`. +Most MongoDB configuration options can be set through flags to `mongod`. The entrypoint of the image passes its arguments along to `mongod`. Example below enables MongoDB [query profiler](https://www.mongodb.com/docs/manual/reference/program/mongod/#profiler-options) via `docker run`. ```console -$ docker run --name some-%%REPO%% -d %%IMAGE%% --serviceExecutor adaptive +$ docker run --name some-%%REPO%% -d %%IMAGE%% --profile 1 ``` -And here is the same with a `compose.yaml` file +The same can be achieved with a `compose.yaml` file ```yaml services: mongo: image: %%IMAGE%% - command: --serviceExecutor adaptive + command: --profile 1 ``` -To see the full list of possible options, check the MongoDB manual on [`mongod`](https://docs.mongodb.com/manual/reference/program/mongod/) or check the `--help` output of `mongod`: +To see the full list of possible options, check the MongoDB manual on [`mongod`](https://www.mongodb.com/docs/manual/reference/program/mongod/) or check the `--help` output of `mongod`: ```console $ docker run -it --rm %%IMAGE%% --help @@ -91,7 +91,7 @@ See [the upstream "WiredTiger Options" documentation](https://docs.mongodb.com/m ## Using a custom MongoDB configuration file -For a more complicated configuration setup, you can still use the MongoDB configuration file. `mongod` does not read a configuration file by default, so the `--config` option with the path to the configuration file needs to be specified. Create a custom configuration file and put it in the container by either creating a custom Dockerfile `FROM %%IMAGE%%` or mounting it from the host machine to the container. See the MongoDB manual for a full list of [configuration file](https://docs.mongodb.com/manual/reference/configuration-options/) options. +For a more complicated configuration setup, you can still use the MongoDB configuration file. `mongod` does not read a configuration file by default, so the `--config` option with the path to the configuration file needs to be specified. Create a custom configuration file and put it in the container by either creating a custom Dockerfile `FROM %%IMAGE%%` or mounting it from the host machine to the container. See the MongoDB manual for a full list of [configuration file](https://www.mongodb.com/docs/manual/reference/configuration-options/) options. For example, `/my/custom/mongod.conf` is the path to the custom configuration file. Then start the MongoDB container like the following: @@ -105,7 +105,7 @@ When you start the `%%REPO%%` image, you can adjust the initialization of the Mo ### `MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD` -These variables, used in conjunction, create a new user and set that user's password. This user is created in the `admin` [authentication database](https://docs.mongodb.com/manual/core/security-users/#user-authentication-database) and given [the role of `root`](https://docs.mongodb.com/manual/reference/built-in-roles/#root), which is [a "superuser" role](https://docs.mongodb.com/manual/core/security-built-in-roles/#superuser-roles). +These variables, used in conjunction, create a new user and set that user's password. This user is created in the `admin` [authentication database](https://www.mongodb.com/docs/manual/core/security-users/#authentication-database) and given [the role of `root`](https://www.mongodb.com/docs/manual/reference/built-in-roles/#mongodb-authrole-root), which is [a "superuser" role](https://www.mongodb.com/docs/manual/reference/built-in-roles/#superuser-roles). The following is an example of using these two variables to create a MongoDB instance and then using the `mongosh` cli (use `mongo` with `4.x` versions) to connect against the `admin` authentication database. @@ -151,13 +151,13 @@ When a container is started for the first time it will execute files with extens As noted above, authentication in MongoDB is fairly complex (although disabled by default). For details about how MongoDB handles authentication, please see the relevant upstream documentation: -- [`mongod --auth`](https://docs.mongodb.com/manual/reference/program/mongod/#cmdoption-mongod-auth) -- [Security > Authentication](https://docs.mongodb.com/manual/core/authentication/) -- [Security > Role-Based Access Control](https://docs.mongodb.com/manual/core/authorization/) -- [Security > Role-Based Access Control > Built-In Roles](https://docs.mongodb.com/manual/core/security-built-in-roles/) -- [Security > Enable Auth (tutorial)](https://docs.mongodb.com/manual/tutorial/enable-authentication/) +- [`mongod --auth`](https://www.mongodb.com/docs/manual/reference/program/mongod/#std-option-mongod.--auth) +- [Security > Authentication](https://www.mongodb.com/docs/manual/core/authentication/) +- [Security > Role-Based Access Control](https://www.mongodb.com/docs/manual/core/authorization/) +- [Security > Role-Based Access Control > Built-In Roles](https://www.mongodb.com/docs/manual/reference/built-in-roles/) +- [Security > Enable Auth (tutorial)](https://www.mongodb.com/docs/manual/tutorial/enable-authentication/) -In addition to the `/docker-entrypoint-initdb.d` behavior documented above (which is a simple way to configure users for authentication for less complicated deployments), this image also supports `MONGO_INITDB_ROOT_USERNAME` and `MONGO_INITDB_ROOT_PASSWORD` for creating a simple user with [the role `root`](https://docs.mongodb.com/manual/reference/built-in-roles/#root) in the `admin` [authentication database](https://docs.mongodb.com/manual/core/security-users/#user-authentication-database), as described in the *Environment Variables* section above. +In addition to the `/docker-entrypoint-initdb.d` behavior documented above (which is a simple way to configure users for authentication for less complicated deployments), this image also supports `MONGO_INITDB_ROOT_USERNAME` and `MONGO_INITDB_ROOT_PASSWORD` for creating a simple user with [the role `root`](https://www.mongodb.com/docs/manual/reference/built-in-roles/#mongodb-authrole-root) in the `admin` [authentication database](https://www.mongodb.com/docs/manual/core/security-users/#authentication-database), as described in the *Environment Variables* section above. # Caveats @@ -168,7 +168,7 @@ Important note: There are several ways to store data used by applications that r - Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. - Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. -**WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB ([docs.mongodb.org](https://docs.mongodb.com/manual/administration/production-notes/#fsync---on-directories) and related [jira.mongodb.org](https://jira.mongodb.org/browse/SERVER-8600) bug). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. +**WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB (see [documenation note](https://www.mongodb.com/docs/manual/administration/production-notes/#fsync---on-directories) and related [bug](https://jira.mongodb.org/browse/SERVER-8600)). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: @@ -181,7 +181,7 @@ The Docker documentation is a good starting point for understanding the differen The `-v /my/own/datadir:/data/db` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/data/db` inside the container, where MongoDB by default will write its data files. -This image also defines a volume for `/data/configdb` [for use with `--configsvr` (see docs.mongodb.com for more details)](https://docs.mongodb.com/v3.4/reference/program/mongod/#cmdoption-configsvr). +This image also defines a volume for `/data/configdb` [for use with `--configsvr`](https://www.mongodb.com/docs/manual/reference/program/mongod/#std-option-mongod.--configsvr). ## Creating database dumps From 8b5a3a7faadd755f448d0dfd7f149978fa2fefbf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 10:10:31 -0700 Subject: [PATCH 2444/2686] Run update.sh --- archlinux/README.md | 6 +- clojure/README.md | 178 ++++++++++++++++++++++---------------------- 2 files changed, 92 insertions(+), 92 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index ef082ddf1dbe..ab3f889f6097 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.base) +- [`latest`, `base`, `base-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.base) -- [`base-devel`, `base-devel-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250810.0.398652`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/e8bde646cc506d354b218400f8a8dfa8253b1b9a/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/clojure/README.md b/clojure/README.md index 77dd040d585c..7173e2b5a00e 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1550-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1561-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1550-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1561-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1550-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1561-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1550-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1561-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1550`, `temurin-8-tools-deps-1.12.1.1550-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1561`, `temurin-8-tools-deps-1.12.1.1561-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1550-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1561-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1550-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.1.1561-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1550-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1561-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1550-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1561-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1550-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1561-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1550-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1561-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1550`, `temurin-11-tools-deps-1.12.1.1550-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1561`, `temurin-11-tools-deps-1.12.1.1561-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1550-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1561-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1550-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.1.1561-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1550-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1561-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1550-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1561-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1550-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1561-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1550-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1561-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1550`, `temurin-17-tools-deps-1.12.1.1550-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1561`, `temurin-17-tools-deps-1.12.1.1561-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1550-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1561-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1550-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.1.1561-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1550-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1561-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1550`, `temurin-21-tools-deps-1.12.1.1550-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1550`, `tools-deps-1.12.1.1550-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1561`, `temurin-21-tools-deps-1.12.1.1561-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1561`, `tools-deps-1.12.1.1561-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1550-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1561-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1550-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1550-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1561-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1561-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1550-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1561-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1550-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1561-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1550-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1561-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1550-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1550-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1561-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1561-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1550-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1550-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.1.1561-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1561-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1550-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1561-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1550`, `temurin-24-tools-deps-1.12.1.1550-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1561`, `temurin-24-tools-deps-1.12.1.1561-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1550-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1550-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1561-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1550-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1550-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1561-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1550-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1561-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1550-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/fd0e8957854e7772062fb4e8639d63644106d457/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.1.1561-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) From cd8e9a326949f61d5f13ecf8462938a0aba8bc38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 11:10:35 -0700 Subject: [PATCH 2445/2686] Run update.sh --- mageia/README.md | 4 +- perl/README.md | 100 +++++++++++++++++++++++++++++++---------------- photon/README.md | 2 +- 3 files changed, 69 insertions(+), 37 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index e8a9a666041b..0fd95741a6cf 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/f385344eecb3d3ba981cfd1682f2b8df8f0e4cc1/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/d2adaebad9a7d4db0e1ad2881141497e6f334652/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/f385344eecb3d3ba981cfd1682f2b8df8f0e4cc1/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/d2adaebad9a7d4db0e1ad2881141497e6f334652/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/perl/README.md b/perl/README.md index 6177fb48bd5a..bf29148b67f3 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,69 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main-bookworm/Dockerfile) +- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-trixie`, `5.42-trixie`, `5-trixie`, `trixie`, `stable-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-trixie/Dockerfile) -- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main-bullseye/Dockerfile) +- [`5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-bookworm/Dockerfile) -- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim-bookworm/Dockerfile) +- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-bullseye/Dockerfile) -- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim-bullseye/Dockerfile) +- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-trixie`, `5.42-slim-trixie`, `5-slim-trixie`, `slim-trixie`, `stable-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-trixie/Dockerfile) -- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main,threaded-bookworm/Dockerfile) +- [`5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-bookworm/Dockerfile) -- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-main,threaded-bullseye/Dockerfile) +- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-bullseye/Dockerfile) -- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim,threaded-bookworm/Dockerfile) +- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-trixie`, `5.42-threaded-trixie`, `5-threaded-trixie`, `threaded-trixie`, `stable-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-trixie/Dockerfile) -- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.042.000-slim,threaded-bullseye/Dockerfile) +- [`5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-bookworm/Dockerfile) -- [`5.40.2`, `5.40`, `5.40.2-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main-bookworm/Dockerfile) +- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-bullseye/Dockerfile) -- [`5.40.2-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main-bullseye/Dockerfile) +- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-trixie`, `5.42-slim-threaded-trixie`, `5-slim-threaded-trixie`, `slim-threaded-trixie`, `stable-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-trixie/Dockerfile) -- [`5.40.2-slim`, `5.40-slim`, `5.40.2-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim-bookworm/Dockerfile) +- [`5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-bookworm/Dockerfile) -- [`5.40.2-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim-bullseye/Dockerfile) +- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-bullseye/Dockerfile) -- [`5.40.2-threaded`, `5.40-threaded`, `5.40.2-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main,threaded-bookworm/Dockerfile) +- [`5.40.3`, `5.40`, `5.40.3-trixie`, `5.40-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-trixie/Dockerfile) -- [`5.40.2-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-main,threaded-bullseye/Dockerfile) +- [`5.40.3-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-bookworm/Dockerfile) -- [`5.40.2-slim-threaded`, `5.40-slim-threaded`, `5.40.2-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim,threaded-bookworm/Dockerfile) +- [`5.40.3-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-bullseye/Dockerfile) -- [`5.40.2-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.040.002-slim,threaded-bullseye/Dockerfile) +- [`5.40.3-slim`, `5.40-slim`, `5.40.3-slim-trixie`, `5.40-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-trixie/Dockerfile) -- [`5.38.4`, `5.38`, `5.38.4-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main-bookworm/Dockerfile) +- [`5.40.3-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-bookworm/Dockerfile) -- [`5.38.4-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main-bullseye/Dockerfile) +- [`5.40.3-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-bullseye/Dockerfile) -- [`5.38.4-slim`, `5.38-slim`, `5.38.4-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim-bookworm/Dockerfile) +- [`5.40.3-threaded`, `5.40-threaded`, `5.40.3-threaded-trixie`, `5.40-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-trixie/Dockerfile) -- [`5.38.4-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim-bullseye/Dockerfile) +- [`5.40.3-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-bookworm/Dockerfile) -- [`5.38.4-threaded`, `5.38-threaded`, `5.38.4-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main,threaded-bookworm/Dockerfile) +- [`5.40.3-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-bullseye/Dockerfile) -- [`5.38.4-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-main,threaded-bullseye/Dockerfile) +- [`5.40.3-slim-threaded`, `5.40-slim-threaded`, `5.40.3-slim-threaded-trixie`, `5.40-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-trixie/Dockerfile) -- [`5.38.4-slim-threaded`, `5.38-slim-threaded`, `5.38.4-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim,threaded-bookworm/Dockerfile) +- [`5.40.3-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-bookworm/Dockerfile) -- [`5.38.4-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.038.004-slim,threaded-bullseye/Dockerfile) +- [`5.40.3-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-bullseye/Dockerfile) -- [`5.41.13`, `5.41`, `devel`, `5.41.13-bookworm`, `5.41-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main-bookworm/Dockerfile) +- [`5.38.5`, `5.38`, `5.38.5-trixie`, `5.38-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-trixie/Dockerfile) -- [`5.41.13-bullseye`, `5.41-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main-bullseye/Dockerfile) +- [`5.38.5-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-bookworm/Dockerfile) -- [`5.41.13-slim`, `5.41-slim`, `devel-slim`, `5.41.13-slim-bookworm`, `5.41-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim-bookworm/Dockerfile) +- [`5.38.5-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-bullseye/Dockerfile) -- [`5.41.13-slim-bullseye`, `5.41-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim-bullseye/Dockerfile) +- [`5.38.5-slim`, `5.38-slim`, `5.38.5-slim-trixie`, `5.38-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-trixie/Dockerfile) -- [`5.41.13-threaded`, `5.41-threaded`, `devel-threaded`, `5.41.13-threaded-bookworm`, `5.41-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main,threaded-bookworm/Dockerfile) +- [`5.38.5-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-bookworm/Dockerfile) -- [`5.41.13-threaded-bullseye`, `5.41-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-main,threaded-bullseye/Dockerfile) +- [`5.38.5-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-bullseye/Dockerfile) -- [`5.41.13-slim-threaded`, `5.41-slim-threaded`, `devel-slim-threaded`, `5.41.13-slim-threaded-bookworm`, `5.41-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim,threaded-bookworm/Dockerfile) +- [`5.38.5-threaded`, `5.38-threaded`, `5.38.5-threaded-trixie`, `5.38-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-trixie/Dockerfile) -- [`5.41.13-slim-threaded-bullseye`, `5.41-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/48e62db61271f8c56271082a23a960adae235596/5.041.013-slim,threaded-bullseye/Dockerfile) +- [`5.38.5-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-bookworm/Dockerfile) + +- [`5.38.5-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-bullseye/Dockerfile) + +- [`5.38.5-slim-threaded`, `5.38-slim-threaded`, `5.38.5-slim-threaded-trixie`, `5.38-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-trixie/Dockerfile) + +- [`5.38.5-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-bookworm/Dockerfile) + +- [`5.38.5-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-bullseye/Dockerfile) + +- [`5.43.1`, `5.43`, `devel`, `5.43.1-trixie`, `5.43-trixie`, `devel-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-trixie/Dockerfile) + +- [`5.43.1-bookworm`, `5.43-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-bookworm/Dockerfile) + +- [`5.43.1-bullseye`, `5.43-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-bullseye/Dockerfile) + +- [`5.43.1-slim`, `5.43-slim`, `devel-slim`, `5.43.1-slim-trixie`, `5.43-slim-trixie`, `devel-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-trixie/Dockerfile) + +- [`5.43.1-slim-bookworm`, `5.43-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-bookworm/Dockerfile) + +- [`5.43.1-slim-bullseye`, `5.43-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-bullseye/Dockerfile) + +- [`5.43.1-threaded`, `5.43-threaded`, `devel-threaded`, `5.43.1-threaded-trixie`, `5.43-threaded-trixie`, `devel-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-trixie/Dockerfile) + +- [`5.43.1-threaded-bookworm`, `5.43-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-bookworm/Dockerfile) + +- [`5.43.1-threaded-bullseye`, `5.43-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-bullseye/Dockerfile) + +- [`5.43.1-slim-threaded`, `5.43-slim-threaded`, `devel-slim-threaded`, `5.43.1-slim-threaded-trixie`, `5.43-slim-threaded-trixie`, `devel-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-trixie/Dockerfile) + +- [`5.43.1-slim-threaded-bookworm`, `5.43-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-bookworm/Dockerfile) + +- [`5.43.1-slim-threaded-bullseye`, `5.43-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) @@ -94,7 +126,7 @@ WARNING: [https://github.com/Perl/docker-perl/issues](https://github.com/Perl/docker-perl/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/perl/), [`arm32v5`](https://hub.docker.com/r/arm32v5/perl/), [`arm32v7`](https://hub.docker.com/r/arm32v7/perl/), [`arm64v8`](https://hub.docker.com/r/arm64v8/perl/), [`i386`](https://hub.docker.com/r/i386/perl/), [`mips64le`](https://hub.docker.com/r/mips64le/perl/), [`ppc64le`](https://hub.docker.com/r/ppc64le/perl/), [`s390x`](https://hub.docker.com/r/s390x/perl/) + [`amd64`](https://hub.docker.com/r/amd64/perl/), [`arm32v5`](https://hub.docker.com/r/arm32v5/perl/), [`arm32v7`](https://hub.docker.com/r/arm32v7/perl/), [`arm64v8`](https://hub.docker.com/r/arm64v8/perl/), [`i386`](https://hub.docker.com/r/i386/perl/), [`mips64le`](https://hub.docker.com/r/mips64le/perl/), [`ppc64le`](https://hub.docker.com/r/ppc64le/perl/), [`riscv64`](https://hub.docker.com/r/riscv64/perl/), [`s390x`](https://hub.docker.com/r/s390x/perl/) - **Published image artifact details**: [repo-info repo's `repos/perl/` directory](https://github.com/docker-library/repo-info/blob/master/repos/perl) ([history](https://github.com/docker-library/repo-info/commits/master/repos/perl)) @@ -213,7 +245,7 @@ The `perl` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm, bullseye, or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. diff --git a/photon/README.md b/photon/README.md index addcae301d76..372606e5e566 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250810`, `latest`](https://github.com/vmware/photon-docker-image/blob/1b224bdf03710e2a9d79fb562e40c3cc990c4029/docker/Dockerfile) +- [`5.0`, `5.0-20250817`, `latest`](https://github.com/vmware/photon-docker-image/blob/6b2c9be82761660de7cab77d9fe4041611f9368d/docker/Dockerfile) - [`4.0`, `4.0-20250810`](https://github.com/vmware/photon-docker-image/blob/8e86c1fe4b1997c87a1376f197c394d92b93ac76/docker/Dockerfile) From 999ed8140040667526068a7f980e673f976c7b6c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 12:10:24 -0700 Subject: [PATCH 2446/2686] Run update.sh --- golang/README.md | 12 ++++----- openjdk/README.md | 66 +++++++++++++++++++++++------------------------ redis/README.md | 4 +-- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/golang/README.md b/golang/README.md index e6c8f89e5f67..f9b488c420d2 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250808-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/tip/trixie/Dockerfile) +- [`tip-20250815-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/trixie/Dockerfile) -- [`tip-20250808-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/bookworm/Dockerfile) +- [`tip-20250815-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/bookworm/Dockerfile) -- [`tip-20250808-alpine3.22`, `tip-alpine3.22`, `tip-20250808-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.22/Dockerfile) +- [`tip-20250815-alpine3.22`, `tip-alpine3.22`, `tip-20250815-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/alpine3.22/Dockerfile) -- [`tip-20250808-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/0bbea52410601f5d8c78c3e5029a5cf2c4bea8d0/tip/alpine3.21/Dockerfile) +- [`tip-20250815-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250808`, `tip`: +- `tip-20250815`, `tip`: - - [`tip-20250808-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/tip/trixie/Dockerfile) + - [`tip-20250815-trixie`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 30e41f5bb02b..d9dfb47305ea 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,41 +42,41 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-10-jdk-oraclelinux9`, `26-ea-10-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-10-jdk-oracle`, `26-ea-10-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-11-jdk-oraclelinux9`, `26-ea-11-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-11-jdk-oracle`, `26-ea-11-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-10-jdk-oraclelinux8`, `26-ea-10-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-11-jdk-oraclelinux8`, `26-ea-11-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-10-jdk-trixie`, `26-ea-10-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/26/jdk/trixie/Dockerfile) +- [`26-ea-11-jdk-trixie`, `26-ea-11-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/trixie/Dockerfile) -- [`26-ea-10-jdk-slim-trixie`, `26-ea-10-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-10-jdk-slim`, `26-ea-10-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-11-jdk-slim-trixie`, `26-ea-11-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-11-jdk-slim`, `26-ea-11-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-10-jdk-bookworm`, `26-ea-10-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/bookworm/Dockerfile) +- [`26-ea-11-jdk-bookworm`, `26-ea-11-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/bookworm/Dockerfile) -- [`26-ea-10-jdk-slim-bookworm`, `26-ea-10-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-11-jdk-slim-bookworm`, `26-ea-11-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-10-jdk-windowsservercore-ltsc2025`, `26-ea-10-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-11-jdk-windowsservercore-ltsc2025`, `26-ea-11-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-10-jdk-windowsservercore-ltsc2022`, `26-ea-10-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-11-jdk-windowsservercore-ltsc2022`, `26-ea-11-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-10-jdk-nanoserver-ltsc2025`, `26-ea-10-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-11-jdk-nanoserver-ltsc2025`, `26-ea-11-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-10-jdk-nanoserver-ltsc2022`, `26-ea-10-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-11-jdk-nanoserver-ltsc2022`, `26-ea-11-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux9/Dockerfile) +- [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) -- [`25-rc-jdk-oraclelinux8`, `25-rc-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux8/Dockerfile) +- [`25-rc-jdk-oraclelinux8`, `25-rc-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux8/Dockerfile) -- [`25-rc-jdk-trixie`, `25-rc-trixie`, `25-jdk-trixie`, `25-trixie`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/25/jdk/trixie/Dockerfile) +- [`25-rc-jdk-trixie`, `25-rc-trixie`, `25-jdk-trixie`, `25-trixie`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/trixie/Dockerfile) -- [`25-rc-jdk-slim-trixie`, `25-rc-slim-trixie`, `25-jdk-slim-trixie`, `25-slim-trixie`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/9fa18d4c199ab09c81ea596289a02fdcf0e684b1/25/jdk/slim-trixie/Dockerfile) +- [`25-rc-jdk-slim-trixie`, `25-rc-slim-trixie`, `25-jdk-slim-trixie`, `25-slim-trixie`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/slim-trixie/Dockerfile) -- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/bookworm/Dockerfile) +- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/bookworm/Dockerfile) -- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/slim-bookworm/Dockerfile) +- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/slim-bookworm/Dockerfile) -- [`25-rc-jdk-windowsservercore-ltsc2025`, `25-rc-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25-rc-jdk-windowsservercore-ltsc2025`, `25-rc-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25-rc-jdk-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25-rc-jdk-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - [`25-rc-jdk-nanoserver-ltsc2025`, `25-rc-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) @@ -84,32 +84,32 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `26-ea-10-jdk`, `26-ea-10`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-11-jdk`, `26-ea-11`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-10-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-10-jdk-windowsservercore`, `26-ea-10-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-11-jdk-windowsservercore`, `26-ea-11-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-10-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-10-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-10-jdk-nanoserver`, `26-ea-10-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-11-jdk-nanoserver`, `26-ea-11-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-10-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-10-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/e6ea4775388030187e24406f191f932fb707f7bd/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-11-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-11-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: - - [`25-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/oraclelinux9/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - `25-rc-jdk-windowsservercore`, `25-rc-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - `25-rc-jdk-nanoserver`, `25-rc-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: diff --git a/redis/README.md b/redis/README.md index f593c223dd7c..027681c3e348 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.0`, `8.2`, `8`, `8.2.0-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/e19e964037c9a47962beaf727fa623c7fe1bed6b/debian/Dockerfile) +- [`8.2.1`, `8.2`, `8`, `8.2.1-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/a13b78815d980881e57f15b9cf13cd2f26f3fab6/debian/Dockerfile) -- [`8.2.0-alpine`, `8.2-alpine`, `8-alpine`, `8.2.0-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/e19e964037c9a47962beaf727fa623c7fe1bed6b/alpine/Dockerfile) +- [`8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `8.2.1-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/a13b78815d980881e57f15b9cf13cd2f26f3fab6/alpine/Dockerfile) - [`8.0.3`, `8.0`, `8.0.3-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) From dae202abbbe5181f2d0dc8ced64371a162b4c1d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 15:11:07 -0700 Subject: [PATCH 2447/2686] Run update.sh --- mongo/README.md | 44 ++++++++++++++++---------------------------- 1 file changed, 16 insertions(+), 28 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index 68bf7cbcca55..a30791621b8e 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -244,46 +244,34 @@ $ docker logs some-mongo # Configuration -See the [MongoDB manual](https://docs.mongodb.com/manual/) for information on using and configuring MongoDB for things like replica sets and sharding. +See the [MongoDB manual](https://www.mongodb.com/docs/manual/administration/configuration/) for information on using and configuring MongoDB for things like replica sets and sharding. ## Customize configuration without configuration file -Most MongoDB configuration can be set through flags to `mongod`. The entrypoint of the image is created to pass its arguments along to `mongod`. See below an example of setting MongoDB to use a different [threading and execution model](https://docs.mongodb.com/manual/reference/program/mongod/#cmdoption-mongod-serviceexecutor) via `docker run`. +Most MongoDB configuration options can be set through flags to `mongod`. The entrypoint of the image passes its arguments along to `mongod`. Example below enables MongoDB [query profiler](https://www.mongodb.com/docs/manual/reference/program/mongod/#profiler-options) via `docker run`. ```console -$ docker run --name some-mongo -d mongo --serviceExecutor adaptive +$ docker run --name some-mongo -d mongo --profile 1 ``` -And here is the same with a `compose.yaml` file +The same can be achieved with a `compose.yaml` file ```yaml services: mongo: image: mongo - command: --serviceExecutor adaptive + command: --profile 1 ``` -To see the full list of possible options, check the MongoDB manual on [`mongod`](https://docs.mongodb.com/manual/reference/program/mongod/) or check the `--help` output of `mongod`: +To see the full list of possible options, check the MongoDB manual on [`mongod`](https://www.mongodb.com/docs/manual/reference/program/mongod/) or check the `--help` output of `mongod`: ```console $ docker run -it --rm mongo --help ``` -## Setting WiredTiger cache size limits - -By default Mongo will set the `wiredTigerCacheSizeGB` to a value proportional to the host's total memory regardless of memory limits you may have imposed on the container. In such an instance you will want to set the cache size to something appropriate, taking into account any other processes you may be running in the container which would also utilize memory. - -Taking the examples above you can configure the cache size to use 1.5GB as: - -```console -$ docker run --name some-mongo -d mongo --wiredTigerCacheSizeGB 1.5 -``` - -See [the upstream "WiredTiger Options" documentation](https://docs.mongodb.com/manual/reference/program/mongod/#wiredtiger-options) for more details. - ## Using a custom MongoDB configuration file -For a more complicated configuration setup, you can still use the MongoDB configuration file. `mongod` does not read a configuration file by default, so the `--config` option with the path to the configuration file needs to be specified. Create a custom configuration file and put it in the container by either creating a custom Dockerfile `FROM mongo` or mounting it from the host machine to the container. See the MongoDB manual for a full list of [configuration file](https://docs.mongodb.com/manual/reference/configuration-options/) options. +For a more complicated configuration setup, you can still use the MongoDB configuration file. `mongod` does not read a configuration file by default, so the `--config` option with the path to the configuration file needs to be specified. Create a custom configuration file and put it in the container by either creating a custom Dockerfile `FROM mongo` or mounting it from the host machine to the container. See the MongoDB manual for a full list of [configuration file](https://www.mongodb.com/docs/manual/reference/configuration-options/) options. For example, `/my/custom/mongod.conf` is the path to the custom configuration file. Then start the MongoDB container like the following: @@ -297,7 +285,7 @@ When you start the `mongo` image, you can adjust the initialization of the Mongo ### `MONGO_INITDB_ROOT_USERNAME`, `MONGO_INITDB_ROOT_PASSWORD` -These variables, used in conjunction, create a new user and set that user's password. This user is created in the `admin` [authentication database](https://docs.mongodb.com/manual/core/security-users/#user-authentication-database) and given [the role of `root`](https://docs.mongodb.com/manual/reference/built-in-roles/#root), which is [a "superuser" role](https://docs.mongodb.com/manual/core/security-built-in-roles/#superuser-roles). +These variables, used in conjunction, create a new user and set that user's password. This user is created in the `admin` [authentication database](https://www.mongodb.com/docs/manual/core/security-users/#authentication-database) and given [the role of `root`](https://www.mongodb.com/docs/manual/reference/built-in-roles/#mongodb-authrole-root), which is [a "superuser" role](https://www.mongodb.com/docs/manual/reference/built-in-roles/#superuser-roles). The following is an example of using these two variables to create a MongoDB instance and then using the `mongosh` cli (use `mongo` with `4.x` versions) to connect against the `admin` authentication database. @@ -343,13 +331,13 @@ When a container is started for the first time it will execute files with extens As noted above, authentication in MongoDB is fairly complex (although disabled by default). For details about how MongoDB handles authentication, please see the relevant upstream documentation: -- [`mongod --auth`](https://docs.mongodb.com/manual/reference/program/mongod/#cmdoption-mongod-auth) -- [Security > Authentication](https://docs.mongodb.com/manual/core/authentication/) -- [Security > Role-Based Access Control](https://docs.mongodb.com/manual/core/authorization/) -- [Security > Role-Based Access Control > Built-In Roles](https://docs.mongodb.com/manual/core/security-built-in-roles/) -- [Security > Enable Auth (tutorial)](https://docs.mongodb.com/manual/tutorial/enable-authentication/) +- [`mongod --auth`](https://www.mongodb.com/docs/manual/reference/program/mongod/#std-option-mongod.--auth) +- [Security > Authentication](https://www.mongodb.com/docs/manual/core/authentication/) +- [Security > Role-Based Access Control](https://www.mongodb.com/docs/manual/core/authorization/) +- [Security > Role-Based Access Control > Built-In Roles](https://www.mongodb.com/docs/manual/reference/built-in-roles/) +- [Security > Enable Auth (tutorial)](https://www.mongodb.com/docs/manual/tutorial/enable-authentication/) -In addition to the `/docker-entrypoint-initdb.d` behavior documented above (which is a simple way to configure users for authentication for less complicated deployments), this image also supports `MONGO_INITDB_ROOT_USERNAME` and `MONGO_INITDB_ROOT_PASSWORD` for creating a simple user with [the role `root`](https://docs.mongodb.com/manual/reference/built-in-roles/#root) in the `admin` [authentication database](https://docs.mongodb.com/manual/core/security-users/#user-authentication-database), as described in the *Environment Variables* section above. +In addition to the `/docker-entrypoint-initdb.d` behavior documented above (which is a simple way to configure users for authentication for less complicated deployments), this image also supports `MONGO_INITDB_ROOT_USERNAME` and `MONGO_INITDB_ROOT_PASSWORD` for creating a simple user with [the role `root`](https://www.mongodb.com/docs/manual/reference/built-in-roles/#mongodb-authrole-root) in the `admin` [authentication database](https://www.mongodb.com/docs/manual/core/security-users/#authentication-database), as described in the *Environment Variables* section above. # Caveats @@ -360,7 +348,7 @@ Important note: There are several ways to store data used by applications that r - Let Docker manage the storage of your database data [by writing the database files to disk on the host system using its own internal volume management](https://docs.docker.com/storage/volumes/). This is the default and is easy and fairly transparent to the user. The downside is that the files may be hard to locate for tools and applications that run directly on the host system, i.e. outside containers. - Create a data directory on the host system (outside the container) and [mount this to a directory visible from inside the container](https://docs.docker.com/storage/bind-mounts/). This places the database files in a known location on the host system, and makes it easy for tools and applications on the host system to access the files. The downside is that the user needs to make sure that the directory exists, and that e.g. directory permissions and other security mechanisms on the host system are set up correctly. -**WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB ([docs.mongodb.org](https://docs.mongodb.com/manual/administration/production-notes/#fsync---on-directories) and related [jira.mongodb.org](https://jira.mongodb.org/browse/SERVER-8600) bug). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. +**WARNING (Windows & OS X)**: When running the Linux-based MongoDB images on Windows and OS X, the file systems used to share between the host system and the Docker container is not compatible with the memory mapped files used by MongoDB (see [documenation note](https://www.mongodb.com/docs/manual/administration/production-notes/#fsync---on-directories) and related [bug](https://jira.mongodb.org/browse/SERVER-8600)). This means that it is not possible to run a MongoDB container with the data directory mapped to the host. To persist data between container restarts, we recommend using a local named volume instead (see `docker volume create`). Alternatively you can use the Windows-based images on Windows. The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above: @@ -373,7 +361,7 @@ The Docker documentation is a good starting point for understanding the differen The `-v /my/own/datadir:/data/db` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/data/db` inside the container, where MongoDB by default will write its data files. -This image also defines a volume for `/data/configdb` [for use with `--configsvr` (see docs.mongodb.com for more details)](https://docs.mongodb.com/v3.4/reference/program/mongod/#cmdoption-configsvr). +This image also defines a volume for `/data/configdb` [for use with `--configsvr`](https://www.mongodb.com/docs/manual/reference/program/mongod/#std-option-mongod.--configsvr). ## Creating database dumps From e279d9093c7cb438177e848a9413c56dccf61671 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 18 Aug 2025 15:39:15 -0700 Subject: [PATCH 2448/2686] Remove long-deprecated "mono" directory --- mono/README-short.txt | 1 - mono/README.md | 111 ------------------------------------------ mono/content.md | 32 ------------ mono/deprecated.md | 1 - mono/github-repo | 1 - mono/license.md | 1 - mono/logo.png | Bin 5869 -> 0 bytes mono/maintainer.md | 1 - mono/metadata.json | 7 --- 9 files changed, 155 deletions(-) delete mode 100644 mono/README-short.txt delete mode 100644 mono/README.md delete mode 100644 mono/content.md delete mode 100644 mono/deprecated.md delete mode 100644 mono/github-repo delete mode 100644 mono/license.md delete mode 100644 mono/logo.png delete mode 100644 mono/maintainer.md delete mode 100644 mono/metadata.json diff --git a/mono/README-short.txt b/mono/README-short.txt deleted file mode 100644 index 8b4e69d86aea..000000000000 --- a/mono/README-short.txt +++ /dev/null @@ -1 +0,0 @@ -DEPRECATED; Mono is an open source implementation of Microsoft's .NET Framework diff --git a/mono/README.md b/mono/README.md deleted file mode 100644 index c56ffd3cecd3..000000000000 --- a/mono/README.md +++ /dev/null @@ -1,111 +0,0 @@ - - -# **DEPRECATION NOTICE** - -This image is deprecated due to maintainer inactivity (last updated Jun 2022; [docker-library/official-images#12682](https://github.com/docker-library/official-images/pull/12682)). - -# Quick reference - -- **Maintained by**: - [the Mono Project](https://github.com/mono/docker) - -- **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) - -# Supported tags and respective `Dockerfile` links - -- [`6.12.0.182`, `latest`, `6.12.0`, `6.12`, `6`](https://github.com/mono/docker/blob/9293c0cddf31a3dc829fccc6f8e1eb507a91cd34/6.12.0.182/Dockerfile) - -- [`6.12.0.182-slim`, `slim`, `6.12.0-slim`, `6.12-slim`, `6-slim`](https://github.com/mono/docker/blob/9293c0cddf31a3dc829fccc6f8e1eb507a91cd34/6.12.0.182/slim/Dockerfile) - -- [`6.10.0.104`, `6.10.0`, `6.10`](https://github.com/mono/docker/blob/0403aaf506b8f6859332a5035f660a7a228d3a97/6.10.0.104/Dockerfile) - -- [`6.10.0.104-slim`, `6.10.0-slim`, `6.10-slim`](https://github.com/mono/docker/blob/0403aaf506b8f6859332a5035f660a7a228d3a97/6.10.0.104/slim/Dockerfile) - -# Quick reference (cont.) - -- **Where to file issues**: - [https://github.com/mono/docker/issues](https://github.com/mono/docker/issues?q=) - -- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/mono/), [`arm32v5`](https://hub.docker.com/r/arm32v5/mono/), [`arm32v7`](https://hub.docker.com/r/arm32v7/mono/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mono/), [`i386`](https://hub.docker.com/r/i386/mono/), [`ppc64le`](https://hub.docker.com/r/ppc64le/mono/) - -- **Published image artifact details**: - [repo-info repo's `repos/mono/` directory](https://github.com/docker-library/repo-info/blob/master/repos/mono) ([history](https://github.com/docker-library/repo-info/commits/master/repos/mono)) - (image metadata, transfer size, etc) - -- **Image updates**: - [official-images repo's `library/mono` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fmono) - [official-images repo's `library/mono` file](https://github.com/docker-library/official-images/blob/master/library/mono) ([history](https://github.com/docker-library/official-images/commits/master/library/mono)) - -- **Source of this description**: - [docs repo's `mono/` directory](https://github.com/docker-library/docs/tree/master/mono) ([history](https://github.com/docker-library/docs/commits/master/mono)) - -# What is Mono - -Sponsored by Xamarin, Mono is an open source implementation of Microsoft's .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of cross platform applications. - -- [Mono Project homepage](http://www.mono-project.com/) -- [http://en.wikipedia.org/wiki/Mono_(software)](http://en.wikipedia.org/wiki/Mono_%28software%29) - -![logo](https://raw.githubusercontent.com/docker-library/docs/7413e5cdbaae1016411b9fc20950dd913a799e2c/mono/logo.png) - -# How to use this image - -To run a pre-built .exe file with the Mono image, use the following commands: - -```dockerfile -FROM mono:latest -RUN mkdir /opt/app -COPY HelloWorld.exe /opt/app -CMD ["mono", "/opt/app/HelloWorld.exe"] -``` - -You can build and run the Docker Image as shown in the following example: - -```console -docker build -t monoapp . -docker run -it --rm monoapp -``` - -# Credits - -This Docker image is provided by Xamarin, for users of the Mono Project. - -Thanks to [Michael Friis](http://friism.com/) for his preliminary work. - -# Image Variants - -The `mono` images come in many flavors, each designed for a specific use case. - -## `mono:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -## `mono:-slim` - -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `mono`. Unless you are working in an environment where *only* the `mono` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. - -# License - -This Docker Image is licensed with the Expat License. See the [Mono Project licensing FAQ](http://www.mono-project.com/docs/faq/licensing/) for details on how Mono and associated libraries are licensed. - -As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). - -Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `mono/` directory](https://github.com/docker-library/repo-info/tree/master/repos/mono). - -As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. diff --git a/mono/content.md b/mono/content.md deleted file mode 100644 index 99510debf0df..000000000000 --- a/mono/content.md +++ /dev/null @@ -1,32 +0,0 @@ -# What is Mono - -Sponsored by Xamarin, Mono is an open source implementation of Microsoft's .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of cross platform applications. - -- [Mono Project homepage](http://www.mono-project.com/) -- [http://en.wikipedia.org/wiki/Mono_(software)](http://en.wikipedia.org/wiki/Mono_%28software%29) - -%%LOGO%% - -# How to use this image - -To run a pre-built .exe file with the Mono image, use the following commands: - -```dockerfile -FROM %%IMAGE%%:latest -RUN mkdir /opt/app -COPY HelloWorld.exe /opt/app -CMD ["mono", "/opt/app/HelloWorld.exe"] -``` - -You can build and run the Docker Image as shown in the following example: - -```console -docker build -t monoapp . -docker run -it --rm monoapp -``` - -# Credits - -This Docker image is provided by Xamarin, for users of the Mono Project. - -Thanks to [Michael Friis](http://friism.com/) for his preliminary work. diff --git a/mono/deprecated.md b/mono/deprecated.md deleted file mode 100644 index bf91fc036570..000000000000 --- a/mono/deprecated.md +++ /dev/null @@ -1 +0,0 @@ -This image is deprecated due to maintainer inactivity (last updated Jun 2022; [docker-library/official-images#12682](https://github.com/docker-library/official-images/pull/12682)). diff --git a/mono/github-repo b/mono/github-repo deleted file mode 100644 index e4a96d7acea3..000000000000 --- a/mono/github-repo +++ /dev/null @@ -1 +0,0 @@ -https://github.com/mono/docker diff --git a/mono/license.md b/mono/license.md deleted file mode 100644 index a9651a980813..000000000000 --- a/mono/license.md +++ /dev/null @@ -1 +0,0 @@ -This Docker Image is licensed with the Expat License. See the [Mono Project licensing FAQ](http://www.mono-project.com/docs/faq/licensing/) for details on how Mono and associated libraries are licensed. diff --git a/mono/logo.png b/mono/logo.png deleted file mode 100644 index 63a918e300833ecc31d3ea5ce36d93fd6bd232a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5869 zcmY*dby!nTA7)cv4w2C*B?3~?T^k+J;y{oF>28o34T2~o4H8O&fOMCX2m&JADqRu^ z-`V&5^*y`WeV)7Bv)?`E{k?IbwKS9n;WTg@92`OwWqBQN9>Bg~c;K@fU6Bn=c;;$K z@;KMnS8i+ZYjEY3i?V?`xMLdohM?Fpe85F~50ys>_zQ3Z0!GwytBf57hr&-q9;xRu zyEE^vrMG^KzyGJJi#dV(UOJb1tU-prk>;dlLO|wygYQh z1GR&L!|k>XXb4V9N(x>OgPNKe+Q5MN1^)hdRek-2$31&{dpQ%6#lUtAe}4%-fB(Gk z=U--L;W%5{+w$JtA~;K*lQ~Pu%X`NQl*VUfN>Z&h=f~c&dU<)F>+Hx^R#rMz54Kh# zctZ`#6@7ih+}zx>9zPc1hotkGL4}>>V6T+r{V}{#L^6Ma32B9MTU+OSED}{-voc9Y zWON~^9tsOnS}@R!{;-QbWvAkN8_&agQ$fYE9>hDPg7h%d6Y~e?;gv*2P*5

CvyRtpvL^4kctierih=_=M zYHU2Y-dyXh*4EZcudn_+cXG0xuUTyIB^7aAkhij0&m|Jl z)YLpXKkr;zWPm^*Fc^&YoD)SzlK5(Bb~eVi*(Cc7N7Mn zRUEYd-stG4i@W%7Mp@$6l@U;XtxK0S4-*OWHvx`_!7M>4-+WMRQf;N!i#D-rSL z4cR}ucV%S`@)xzn#>PI&;gnjsx&_nI|Ga~DF2a73Y4|HwsuoVNeLE?5)~6eG9s2%dSgZ1H*Wv>{afsbaaUJYmE|Cbyu5ss*IkWl z$!M#glxqLPg{i5CxVYPjM8UK)G+(}aG1XBD=HTGa($;%xZJ&aSNYK+E8{0RsrADH z@TBBq+;~Mf?nK<#A3v&J{PP>FU|8iCI9Tm>{d?wW=gXyIU=UrPl&DuQw%qMzP`Q=0A4iJhXSnxNT?8Qu51$YPpD3i;__E%B|BrpR{*G_BoaF-E`2?{ z$)Iuq&+6mto@mlcDe5nJ9$sE6sU|P-;N~ULTxRWET_|`IlZ$JxO^imCc=+$>%8X~S zyPJmF%S&Gsg{)}e@gj*BtdIF=)-pWg@G(Wb%P#@=CQ2D2q)+Y%3cfL+4sB(*?jN-anraR;*Gc{&xG&X@Kn@Kl;}%fNEpcw$@uHA=1`=?4knKNV-R4-{o~_zQ;Ou6 zMhNwwtxu0RpV#hOG(c;jA>EKst6wso2=j_1Zew?EFK)BfPM7y{hl7EF24B!sKu=GPEF+?0aPXFM`#)g{E_Cqrw!_<~m&mto-!5%z^vwrT{U*(=ttDmC z%$B#ceE?Ww&oFx|TPn8JX3YFYy<=2tY`3na6fO}F(b?st1-K#_cp+F*TWeeI1CLt1 zVLnjHpR8&Xlw49)26VGw^nL)id#2g@A^nRpv*8>W1|q3rL}+MeVsdi$hYuWG$ZRh63^_Zp>My|%|ASdmF$l$o3d;q+NiDFIKzgH`d9zB|A z^%pta`4O3xM%B~be~*RbriAxy&vJL!O{vCUE=F`*H$IQx#=j-b`FgUn8Os8>e?d+VumJ>ii5`FW3nxw@} z2J}O*9r-Jb&tispdwGFPN=S&@ePg)MUasuJ2Nduhpg`(>JMY88ar5)@5ey6oxw(wn zKN^Vq|LiK*+jH8;wBERJgZS><_>vO#vx^HJ^AL@Wqa$~A;Hkks{Y2n%kn=@Hn`5hh2iUo}6&^oMe%AjWVsc_4EI*%_jGVl4 ze*UhjtLwn$&t08i_y_aei_|TbHV%LQY(_IX(*+vz%f4Ite0_Y}8=(7UB2)2Lo^I_ZEJ z%iYJ!WN<#mSwVRP1tv*JI%tS##~v*$?WLUiau+U;2;cy=j+v6)yusX8OX0Q7@_f(O zeFwHI4MtN>=f~C7)=m@m{4ga30cdym`St$fw{Lksm9O_ME-sL*QBhH_fc;MVuuzdC zAU=^c*}f4_)NU3qB>*FQffpX~N=n_|zMTX~E0yc7&equjPI3J8CPmn@Lpu=*E{5t&p3`qd zV=gz%meyA4I!Qrgwz#Cs%s3#|Ir4Uyq^tc2Ha&-eA|jwRcRC5L+nZxK z{gDhWU?L(7#3tGG^}>oT43r^!W&S} zISN|aL8p6G!)hI8Ki&$u{^xx?2KiX3zME3hDwlarA7tatBNxQv@7m-eKR zBGcZ7CYnij{vrd!C9+ga&Z#fUk*q@*3q|3WUY_pU*j?;gJz#u22o8^?OU?{Vm}hmA zKHwl*TiY-Vxm49cbhB4EvQ7OR9EDy7vW*ohAffn@^nh^gN_ch5&Kg$kiTE8q|Gci@n&E;lFQcsV(!%P+A&Ye4kCf%Pu!z(H( z09qdP_V%LN0ve~j6Epa(5pOTHGrW5BO72RUm)E7IA`GMuz8D}dtKV&M6ciMC6WhJr z+`6X9pB_v-b?#hPc+s&}q@Lb2;F%BS&m6f7){{H@H85tI*+uzGfytCz*$J1u-Y##V1tEtI3IB*4DKWoSW-ePXf z2igGec>G9lo3gFoP%rXk_JQagL&ok0|grt_Ld$`kFs0HNkVU^YHY6zPp{L z6$RL~hIvLV%iFpJa&U5@U~SE+7*FGAQhARgn%AQ5Hr5FhjOVtsWxLkmy(9xU35X(a zkQ7*dQdU+*WsHoVMT|0Rki)}g+5(%O;m1o$OZ$N5&_<(S>FPzERdz9Uc6L-Uta*FL ztAym_{~AD$B@?F`>gvMvI23?QJKdd+1@T;e3{psRaBz@0i!^6Y@GgA-LV#-K%{LR*-Bbt|76p1VtKIpJS|qz9XB^Tz!Cg zsQshHfnfkn9J{pq{QL-d`q6a9c9&(;)a}tnHL+Iq_Oazp8*0p59L&td7yo^D|Gu+f z@kK1i8&la|nGrDHZ^lM$5E-Fwxx2etT3U7h@8CJKySJB6XFt8N)ETC%s%qZL_-E02 zQI{p0dZ+o%X$2-A_H={E9RBGz z_PGH4^5x5!8Y=>@w`8h1JUon`rj8yMP@bHgz9%9=d47H_r!iu28&qaKBE-n5iv(LI zRkjnXVOhZg6aY+#gO=E-wB%18Z-@lx-=58C$wOAZ@>x7+&BT!T%9a+%GLv@t&dyFn z-$mb}jr5-Mp)$kn-dIZaT?g&f9c5_-0h`etkfB_GBMJc6#8xUUE`EIV46qpblM9o5 z134S#z}n#JYV%&WY8NlCb4b?L%V4t6jc$bt?EywrrXdS^76UV`473z(fHr47xfTqX z#Cbf-IaW*MQ2?&jYiBl`TEKelkFbY}%hKc@jj}y+F%aR_h&clZZrwsEE5ks1(9+U! z8GF5^Qm8ZaglN>G8q7zP)4aHkkB=6?G^vfv=9RADg8!aW)*YXj+1VPu?aoH{AxN)o zSFt6p%t4m>UTcG;J1o;29v!(ZbwEn=ILgNis?Bj%cYU2|$kz_~86x#K3R4_zW@l$B zYiRU^+`vzK`!=SkstRd>1B{^CMhtSwgouQUtmjiH^ifEBJmJQ0dYG8|#uBi6K-po~ zybnZebv@NYcrc75?x{sJIu4-rEB7tM8PG7i&I^*m86pYpzx!r+Qo#N74&Tj_bT<&z z=IXLOlJuZg`(ql7Z{hZArEouu*xGtNdk@ouz81EhDkIM6k3lHnS$1J=VT1p=CoYB~ z3fcJS(^43bwCSM`*6M>m*(cE3`7?o3?J6nH5Nwhq(o zCW4Y(4hh)10gN7se~B87UaxFTT;T$(c?mb zf=eSJix|UlYin$=;E$LnVr{VlyDUQie~eE~zB_V{r$_{u6u9c}QwlyBkgNXw4Paqm z$*rzF$bQz%ZgX^Tes1=?#_D5#l=kuQ@zUAB>P)Q-5eFydUghS!SIUAB&z7pHczyi* zx@Ko-0;Czh#^A5(A6;GMrYeBD4u!k)_4UK9_Oe{#tLF@y+?)*!4L@F0R90ej!Q1f| z5cSsXF8#i@v-3j`U%}xt-xS{0r)bpTLmU_wctK4=b&nBKl}zmj{l5*}|J&(R9}B|a Yf2hNuTD|rWY)s>*C}_x6piD#m1K)ruo&W#< diff --git a/mono/maintainer.md b/mono/maintainer.md deleted file mode 100644 index be6d91ba117c..000000000000 --- a/mono/maintainer.md +++ /dev/null @@ -1 +0,0 @@ -[the Mono Project](%%GITHUB-REPO%%) diff --git a/mono/metadata.json b/mono/metadata.json deleted file mode 100644 index 39ac749c7f11..000000000000 --- a/mono/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "hub": { - "categories": [ - "languages-and-frameworks" - ] - } -} From b9c83cbbc19857b05d0c6be2a080e67ada55879d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 16:10:49 -0700 Subject: [PATCH 2449/2686] Run update.sh --- varnish/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index ecd6972b6ad5..144aa4032cce 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/fresh/debian/Dockerfile) +- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/22149a31ff7ca2f96d624175ee06419b42eafaa9/fresh/debian/Dockerfile) - [`fresh-alpine`, `7.7.2-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/fresh/alpine/Dockerfile) -- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/old/debian/Dockerfile) +- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/22149a31ff7ca2f96d624175ee06419b42eafaa9/old/debian/Dockerfile) - [`old-alpine`, `7.6.4-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/old/alpine/Dockerfile) From 915030304cbd5ac4ea584225eb3696dd7752e127 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 18 Aug 2025 17:10:23 -0700 Subject: [PATCH 2450/2686] Run update.sh --- unit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit/README.md b/unit/README.md index b407c4f38273..78904cfb3483 100644 --- a/unit/README.md +++ b/unit/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34.2-go1.24`, `go1.24`, `go1`, `go`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.go1.24) +- [`1.34.2-go1.25`, `go1.25`, `go1`, `go`](https://github.com/nginx/unit/blob/e89c9e743ec1585fa64206f8757e077e7dd5dbc9/pkg/docker/Dockerfile.go1.25) -- [`1.34.2-go1.23`, `go1.23`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.go1.23) +- [`1.34.2-go1.24`, `go1.24`](https://github.com/nginx/unit/blob/e89c9e743ec1585fa64206f8757e077e7dd5dbc9/pkg/docker/Dockerfile.go1.24) - [`1.34.2-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.jsc11) From 3305077e2708d93a016a1b5b33b3fc1ec7863604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilius=20=C5=A0umskas?= Date: Tue, 19 Aug 2025 08:37:01 +0300 Subject: [PATCH 2451/2686] Remove not used mongo-express env. variables --- mongo/compose.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/mongo/compose.yaml b/mongo/compose.yaml index a49a3d6ff44f..6e300e42a996 100644 --- a/mongo/compose.yaml +++ b/mongo/compose.yaml @@ -1,7 +1,4 @@ -# Use root/example as user/password credentials - services: - mongo: image: mongo restart: always @@ -15,7 +12,7 @@ services: ports: - 8081:8081 environment: - ME_CONFIG_MONGODB_ADMINUSERNAME: root - ME_CONFIG_MONGODB_ADMINPASSWORD: example ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/ - ME_CONFIG_BASICAUTH: false + ME_CONFIG_BASICAUTH_ENABLED: true + ME_CONFIG_BASICAUTH_USERNAME: mongoexpressuser + ME_CONFIG_BASICAUTH_PASSWORD: mongoexpresspass From ab1a03b5c636e1a0a1e959d3a2d588f46115f88c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilius=20=C5=A0umskas?= Date: Tue, 19 Aug 2025 08:48:19 +0300 Subject: [PATCH 2452/2686] Fix broken Windows Server links in helper --- .template-helpers/variant-windowsservercore.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.template-helpers/variant-windowsservercore.md b/.template-helpers/variant-windowsservercore.md index 229eff77dacd..fa5e3498238b 100644 --- a/.template-helpers/variant-windowsservercore.md +++ b/.template-helpers/variant-windowsservercore.md @@ -1,8 +1,7 @@ ## `%%IMAGE%%:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) From 6790faf59fd62599578e2722765546bd885a3f68 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Aug 2025 10:11:00 -0700 Subject: [PATCH 2453/2686] Run update.sh --- api-firewall/README.md | 2 +- bash/README.md | 2 +- caddy/README.md | 5 ++--- chronograf/README.md | 16 ++++++++-------- eclipse-temurin/README.md | 5 ++--- golang/README.md | 5 ++--- haxe/README.md | 5 ++--- hylang/README.md | 5 ++--- julia/README.md | 5 ++--- mongo/README.md | 14 +++++--------- nats/README.md | 5 ++--- odoo/README.md | 6 +++--- openjdk/README.md | 5 ++--- pypy/README.md | 5 ++--- python/README.md | 5 ++--- redmine/README.md | 12 ++++++------ rust/README.md | 8 ++++---- swift/README.md | 5 ++--- telegraf/README.md | 12 ++++++------ traefik/README.md | 5 ++--- yourls/README.md | 8 ++++---- 21 files changed, 62 insertions(+), 78 deletions(-) diff --git a/api-firewall/README.md b/api-firewall/README.md index b36fe8ebe30a..3deed51199b1 100644 --- a/api-firewall/README.md +++ b/api-firewall/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.9.2`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/5d6718573955995c3f39a859f58655eed323b3b8/0.9.2/Dockerfile) +- [`0.9.3`, `latest`](https://github.com/wallarm/api-firewall-docker/blob/fa9dcae65a51f3649b60a970add65a6553274f36/0.9.3/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index a89ba0f1523d..f16707713e8d 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250808`, `devel`, `devel-20250808-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/ba83c44b09aeae11e6886e86487d394aa23fcea5/devel/Dockerfile) +- [`devel-20250814`, `devel`, `devel-20250814-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4b911213676104bfb49511d23f449b23781a2bed/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/caddy/README.md b/caddy/README.md index a232179b787c..15e84b7ccff9 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -247,12 +247,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `caddy:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/chronograf/README.md b/chronograf/README.md index 3861859187ac..188e0e3ce17f 100644 --- a/chronograf/README.md +++ b/chronograf/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.7/Dockerfile) +- [`1.7`, `1.7.17`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.17-alpine`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.8/Dockerfile) +- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.8/alpine/Dockerfile) -- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.9/Dockerfile) +- [`1.9`, `1.9.4`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.9/Dockerfile) -- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.9/alpine/Dockerfile) +- [`1.9-alpine`, `1.9.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.9/alpine/Dockerfile) -- [`1.10`, `1.10.7`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.10/Dockerfile) +- [`1.10`, `1.10.8`, `latest`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.10/Dockerfile) -- [`1.10-alpine`, `1.10.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9b7081d7e554666a4f6bb8f93f5dac5e0b3b6722/chronograf/1.10/alpine/Dockerfile) +- [`1.10-alpine`, `1.10.8-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/1bf4846c3b7df2b7fc4369af5989442ec3d5b899/chronograf/1.10/alpine/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index b1e56fad13c6..4c5d31fc4b5a 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -548,12 +548,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `eclipse-temurin:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/golang/README.md b/golang/README.md index f9b488c420d2..3d7734d0277e 100644 --- a/golang/README.md +++ b/golang/README.md @@ -223,12 +223,11 @@ To minimize image size, additional related tools (such as `git`, `gcc`, or `bash ## `golang:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) ## `golang:-tip` diff --git a/haxe/README.md b/haxe/README.md index c42f89a90c6c..690c1f39bddd 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -244,12 +244,11 @@ Some of these tags may have names like bookworm or bullseye in them. These are t ## `haxe:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) ## `haxe:-alpine` diff --git a/hylang/README.md b/hylang/README.md index 08c8d3eada2f..912aa24adaf1 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -201,12 +201,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `hylang:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/julia/README.md b/julia/README.md index f741c340bd0a..9e3c372c2781 100644 --- a/julia/README.md +++ b/julia/README.md @@ -168,12 +168,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `julia:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/mongo/README.md b/mongo/README.md index a30791621b8e..e0fa20a94a3f 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -203,10 +203,7 @@ $ docker run -it --network some-network --rm mongo mongosh --host some-mongo tes Example `compose.yaml` for `mongo`: ```yaml -# Use root/example as user/password credentials - services: - mongo: image: mongo restart: always @@ -220,10 +217,10 @@ services: ports: - 8081:8081 environment: - ME_CONFIG_MONGODB_ADMINUSERNAME: root - ME_CONFIG_MONGODB_ADMINPASSWORD: example ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/ - ME_CONFIG_BASICAUTH: false + ME_CONFIG_BASICAUTH_ENABLED: true + ME_CONFIG_BASICAUTH_USERNAME: mongoexpressuser + ME_CONFIG_BASICAUTH_PASSWORD: mongoexpresspass ``` Run `docker compose up`, wait for it to initialize completely, and visit `http://localhost:8081` or `http://host-ip:8081` (as appropriate). @@ -383,12 +380,11 @@ Some of these tags may have names like jammy or noble in them. These are the sui ## `mongo:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/nats/README.md b/nats/README.md index 864cb1d5879c..2b8f7e408365 100644 --- a/nats/README.md +++ b/nats/README.md @@ -295,12 +295,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `nats:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/odoo/README.md b/odoo/README.md index 0e283c6e0f52..b9cbece3cc60 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250807`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/18.0/Dockerfile) +- [`18.0-20250819`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/18.0/Dockerfile) -- [`17.0-20250807`, `17.0`, `17`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/17.0/Dockerfile) +- [`17.0-20250819`, `17.0`, `17`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/17.0/Dockerfile) -- [`16.0-20250807`, `16.0`, `16`](https://github.com/odoo/docker/blob/e35962374be54c7797b1f28bf7a2e046f145fd82/16.0/Dockerfile) +- [`16.0-20250819`, `16.0`, `16`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/16.0/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index d9dfb47305ea..c4e50ee2705a 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -216,12 +216,11 @@ The OpenJDK binaries are built by Oracle and are sourced from the [OpenJDK commu ## `openjdk:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/pypy/README.md b/pypy/README.md index 6602102a8ec4..915bd5ec64a6 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -176,12 +176,11 @@ This image does not contain the common packages contained in the default tag and ## `pypy:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/python/README.md b/python/README.md index bdb76e4ad74c..c294f04290a6 100644 --- a/python/README.md +++ b/python/README.md @@ -263,12 +263,11 @@ To minimize image size, it's uncommon for additional related tools (such as `git ## `python:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/redmine/README.md b/redmine/README.md index 7b5815a3553c..5f92867e9687 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/bookworm/Dockerfile) +- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/bookworm/Dockerfile) -- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/alpine3.22/Dockerfile) +- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/alpine3.22/Dockerfile) -- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/eb65a44159d78630ba670a5c65e03f243a0a2193/6.0/alpine3.21/Dockerfile) +- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/alpine3.21/Dockerfile) -- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/bookworm/Dockerfile) +- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/bookworm/Dockerfile) -- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/alpine3.22/Dockerfile) +- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/alpine3.22/Dockerfile) -- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/27b1f730e93b863df6340fdb6bc08adc2a314e47/5.1/alpine3.21/Dockerfile) +- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index b1e243afd7dc..f004c0cf6d78 100644 --- a/rust/README.md +++ b/rust/README.md @@ -28,13 +28,13 @@ WARNING: - [`1-slim-bullseye`, `1.89-slim-bullseye`, `1.89.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.89-bookworm`, `1.89.0-bookworm`, `bookworm`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.89-bookworm`, `1.89.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.89-slim-bookworm`, `1.89.0-slim-bookworm`, `slim-bookworm`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.89-slim-bookworm`, `1.89.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/Dockerfile) +- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/slim/Dockerfile) - [`1-alpine3.20`, `1.89-alpine3.20`, `1.89.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.20/Dockerfile) diff --git a/swift/README.md b/swift/README.md index d0224e2f7c38..ec342c2fbd54 100644 --- a/swift/README.md +++ b/swift/README.md @@ -184,12 +184,11 @@ This image does not contain the common packages contained in the default tag and ## `swift:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/telegraf/README.md b/telegraf/README.md index 901b0df94d19..5727935f3dad 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.33/Dockerfile) +- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.33/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.33/alpine/Dockerfile) +- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.33/alpine/Dockerfile) -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/629014f09307a0b565e74b5be22d2da5094f5fa3/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.35/alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index e459ea3dfd1d..bda1f658e5a2 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -206,12 +206,11 @@ This is the defacto image. If you are unsure about what your needs are, you prob ## `traefik:-windowsservercore` -This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. +This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: -- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) -- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) +- [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) # License diff --git a/yourls/README.md b/yourls/README.md index ae3d60037bb4..712f2dd1c438 100644 --- a/yourls/README.md +++ b/yourls/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/apache/Dockerfile) +- [`1.10.2-apache`, `1.10-apache`, `1-apache`, `apache`, `1.10.2`, `1.10`, `1`, `latest`](https://github.com/YOURLS/containers/blob/b3463cd1fe9b9de202a2a220d1ffa502e791ede8/apache/Dockerfile) -- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/fpm/Dockerfile) +- [`1.10.2-fpm`, `1.10-fpm`, `1-fpm`, `fpm`](https://github.com/YOURLS/containers/blob/b3463cd1fe9b9de202a2a220d1ffa502e791ede8/fpm/Dockerfile) -- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/75242585dab16fd510424ed4dadea08781919df2/fpm-alpine/Dockerfile) +- [`1.10.2-fpm-alpine`, `1.10-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine`](https://github.com/YOURLS/containers/blob/b3463cd1fe9b9de202a2a220d1ffa502e791ede8/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/YOURLS/containers/issues](https://github.com/YOURLS/containers/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`mips64le`](https://hub.docker.com/r/mips64le/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`riscv64`](https://hub.docker.com/r/riscv64/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) + [`amd64`](https://hub.docker.com/r/amd64/yourls/), [`arm32v5`](https://hub.docker.com/r/arm32v5/yourls/), [`arm32v6`](https://hub.docker.com/r/arm32v6/yourls/), [`arm32v7`](https://hub.docker.com/r/arm32v7/yourls/), [`arm64v8`](https://hub.docker.com/r/arm64v8/yourls/), [`i386`](https://hub.docker.com/r/i386/yourls/), [`ppc64le`](https://hub.docker.com/r/ppc64le/yourls/), [`riscv64`](https://hub.docker.com/r/riscv64/yourls/), [`s390x`](https://hub.docker.com/r/s390x/yourls/) - **Published image artifact details**: [repo-info repo's `repos/yourls/` directory](https://github.com/docker-library/repo-info/blob/master/repos/yourls) ([history](https://github.com/docker-library/repo-info/commits/master/repos/yourls)) From 0dca691f85216487c7f31cb9cc8fc938a5a046de Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Aug 2025 12:10:28 -0700 Subject: [PATCH 2454/2686] Run update.sh --- tomee/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tomee/README.md b/tomee/README.md index 8812f36bb39a..8e96a09bae31 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.0-jre21-Temurin-ubuntu-microprofile`, `10.1.0-Temurin-ubuntu-microprofile`, `10.1.0-jre21-ubuntu-microprofile`, `10.1.0-ubuntu-microprofile`, `10.1.0-jre21-Temurin-microprofile`, `10.1.0-Temurin-microprofile`, `10.1.0-jre21-microprofile`, `10.1.0-microprofile`, `10.1.0-jre21-Temurin-ubuntu`, `10.1.0-Temurin-ubuntu`, `10.1.0-jre21-ubuntu`, `10.1.0-ubuntu`, `10.1.0-jre21-Temurin`, `10.1.0-Temurin`, `10.1.0-jre21`, `10.1.0`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.1-jre21-Temurin-ubuntu-microprofile`, `10.1.1-Temurin-ubuntu-microprofile`, `10.1.1-jre21-ubuntu-microprofile`, `10.1.1-ubuntu-microprofile`, `10.1.1-jre21-Temurin-microprofile`, `10.1.1-Temurin-microprofile`, `10.1.1-jre21-microprofile`, `10.1.1-microprofile`, `10.1.1-jre21-Temurin-ubuntu`, `10.1.1-Temurin-ubuntu`, `10.1.1-jre21-ubuntu`, `10.1.1-ubuntu`, `10.1.1-jre21-Temurin`, `10.1.1-Temurin`, `10.1.1-jre21`, `10.1.1`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.0-jre21-Temurin-ubuntu-plume`, `10.1.0-Temurin-ubuntu-plume`, `10.1.0-jre21-ubuntu-plume`, `10.1.0-ubuntu-plume`, `10.1.0-jre21-Temurin-plume`, `10.1.0-Temurin-plume`, `10.1.0-jre21-plume`, `10.1.0-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.1-jre21-Temurin-ubuntu-plume`, `10.1.1-Temurin-ubuntu-plume`, `10.1.1-jre21-ubuntu-plume`, `10.1.1-ubuntu-plume`, `10.1.1-jre21-Temurin-plume`, `10.1.1-Temurin-plume`, `10.1.1-jre21-plume`, `10.1.1-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.0-jre21-Temurin-ubuntu-plus`, `10.1.0-Temurin-ubuntu-plus`, `10.1.0-jre21-ubuntu-plus`, `10.1.0-ubuntu-plus`, `10.1.0-jre21-Temurin-plus`, `10.1.0-Temurin-plus`, `10.1.0-jre21-plus`, `10.1.0-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.1-jre21-Temurin-ubuntu-plus`, `10.1.1-Temurin-ubuntu-plus`, `10.1.1-jre21-ubuntu-plus`, `10.1.1-ubuntu-plus`, `10.1.1-jre21-Temurin-plus`, `10.1.1-Temurin-plus`, `10.1.1-jre21-plus`, `10.1.1-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.0-jre21-Temurin-ubuntu-webprofile`, `10.1.0-Temurin-ubuntu-webprofile`, `10.1.0-jre21-ubuntu-webprofile`, `10.1.0-ubuntu-webprofile`, `10.1.0-jre21-Temurin-webprofile`, `10.1.0-Temurin-webprofile`, `10.1.0-jre21-webprofile`, `10.1.0-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.1-jre21-Temurin-ubuntu-webprofile`, `10.1.1-Temurin-ubuntu-webprofile`, `10.1.1-jre21-ubuntu-webprofile`, `10.1.1-ubuntu-webprofile`, `10.1.1-jre21-Temurin-webprofile`, `10.1.1-Temurin-webprofile`, `10.1.1-jre21-webprofile`, `10.1.1-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.0-jre21-Temurin-alpine-microprofile`, `10.1.0-Temurin-alpine-microprofile`, `10.1.0-jre21-alpine-microprofile`, `10.1.0-alpine-microprofile`, `10.1.0-jre21-Temurin-alpine`, `10.1.0-Temurin-alpine`, `10.1.0-jre21-alpine`, `10.1.0-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.1-jre21-Temurin-alpine-microprofile`, `10.1.1-Temurin-alpine-microprofile`, `10.1.1-jre21-alpine-microprofile`, `10.1.1-alpine-microprofile`, `10.1.1-jre21-Temurin-alpine`, `10.1.1-Temurin-alpine`, `10.1.1-jre21-alpine`, `10.1.1-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.0-jre21-Temurin-alpine-plume`, `10.1.0-Temurin-alpine-plume`, `10.1.0-jre21-alpine-plume`, `10.1.0-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) +- [`10.1.1-jre21-Temurin-alpine-plume`, `10.1.1-Temurin-alpine-plume`, `10.1.1-jre21-alpine-plume`, `10.1.1-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) -- [`10.1.0-jre21-Temurin-alpine-plus`, `10.1.0-Temurin-alpine-plus`, `10.1.0-jre21-alpine-plus`, `10.1.0-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) +- [`10.1.1-jre21-Temurin-alpine-plus`, `10.1.1-Temurin-alpine-plus`, `10.1.1-jre21-alpine-plus`, `10.1.1-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) -- [`10.1.0-jre21-Temurin-alpine-webprofile`, `10.1.0-Temurin-alpine-webprofile`, `10.1.0-jre21-alpine-webprofile`, `10.1.0-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.1-jre21-Temurin-alpine-webprofile`, `10.1.1-Temurin-alpine-webprofile`, `10.1.1-jre21-alpine-webprofile`, `10.1.1-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.0-jre21-Semeru-ubuntu-microprofile`, `10.1.0-Semeru-ubuntu-microprofile`, `10.1.0-jre21-Semeru-microprofile`, `10.1.0-Semeru-microprofile`, `10.1.0-jre21-Semeru-ubuntu`, `10.1.0-Semeru-ubuntu`, `10.1.0-jre21-Semeru`, `10.1.0-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.1-jre21-Semeru-ubuntu-microprofile`, `10.1.1-Semeru-ubuntu-microprofile`, `10.1.1-jre21-Semeru-microprofile`, `10.1.1-Semeru-microprofile`, `10.1.1-jre21-Semeru-ubuntu`, `10.1.1-Semeru-ubuntu`, `10.1.1-jre21-Semeru`, `10.1.1-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.0-jre21-Semeru-ubuntu-plume`, `10.1.0-Semeru-ubuntu-plume`, `10.1.0-jre21-Semeru-plume`, `10.1.0-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.1-jre21-Semeru-ubuntu-plume`, `10.1.1-Semeru-ubuntu-plume`, `10.1.1-jre21-Semeru-plume`, `10.1.1-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.0-jre21-Semeru-ubuntu-plus`, `10.1.0-Semeru-ubuntu-plus`, `10.1.0-jre21-Semeru-plus`, `10.1.0-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.1-jre21-Semeru-ubuntu-plus`, `10.1.1-Semeru-ubuntu-plus`, `10.1.1-jre21-Semeru-plus`, `10.1.1-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.0-jre21-Semeru-ubuntu-webprofile`, `10.1.0-Semeru-ubuntu-webprofile`, `10.1.0-jre21-Semeru-webprofile`, `10.1.0-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.1-jre21-Semeru-ubuntu-webprofile`, `10.1.1-Semeru-ubuntu-webprofile`, `10.1.1-jre21-Semeru-webprofile`, `10.1.1-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.1.0-jre17-Temurin-ubuntu-microprofile`, `10.1.0-jre17-ubuntu-microprofile`, `10.1.0-jre17-Temurin-microprofile`, `10.1.0-jre17-microprofile`, `10.1.0-jre17-Temurin-ubuntu`, `10.1.0-jre17-ubuntu`, `10.1.0-jre17-Temurin`, `10.1.0-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.1-jre17-Temurin-ubuntu-microprofile`, `10.1.1-jre17-ubuntu-microprofile`, `10.1.1-jre17-Temurin-microprofile`, `10.1.1-jre17-microprofile`, `10.1.1-jre17-Temurin-ubuntu`, `10.1.1-jre17-ubuntu`, `10.1.1-jre17-Temurin`, `10.1.1-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.0-jre17-Temurin-ubuntu-plume`, `10.1.0-jre17-ubuntu-plume`, `10.1.0-jre17-Temurin-plume`, `10.1.0-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.1-jre17-Temurin-ubuntu-plume`, `10.1.1-jre17-ubuntu-plume`, `10.1.1-jre17-Temurin-plume`, `10.1.1-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.0-jre17-Temurin-ubuntu-plus`, `10.1.0-jre17-ubuntu-plus`, `10.1.0-jre17-Temurin-plus`, `10.1.0-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.1-jre17-Temurin-ubuntu-plus`, `10.1.1-jre17-ubuntu-plus`, `10.1.1-jre17-Temurin-plus`, `10.1.1-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.0-jre17-Temurin-ubuntu-webprofile`, `10.1.0-jre17-ubuntu-webprofile`, `10.1.0-jre17-Temurin-webprofile`, `10.1.0-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.1-jre17-Temurin-ubuntu-webprofile`, `10.1.1-jre17-ubuntu-webprofile`, `10.1.1-jre17-Temurin-webprofile`, `10.1.1-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.0-jre17-Temurin-alpine-microprofile`, `10.1.0-jre17-alpine-microprofile`, `10.1.0-jre17-Temurin-alpine`, `10.1.0-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.1-jre17-Temurin-alpine-microprofile`, `10.1.1-jre17-alpine-microprofile`, `10.1.1-jre17-Temurin-alpine`, `10.1.1-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.0-jre17-Temurin-alpine-plume`, `10.1.0-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.1.1-jre17-Temurin-alpine-plume`, `10.1.1-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.1.0-jre17-Temurin-alpine-plus`, `10.1.0-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.1.1-jre17-Temurin-alpine-plus`, `10.1.1-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.1.0-jre17-Temurin-alpine-webprofile`, `10.1.0-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.1-jre17-Temurin-alpine-webprofile`, `10.1.1-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.0-jre17-Semeru-ubuntu-microprofile`, `10.1.0-jre17-Semeru-microprofile`, `10.1.0-jre17-Semeru-ubuntu`, `10.1.0-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.1-jre17-Semeru-ubuntu-microprofile`, `10.1.1-jre17-Semeru-microprofile`, `10.1.1-jre17-Semeru-ubuntu`, `10.1.1-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.0-jre17-Semeru-ubuntu-plume`, `10.1.0-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.1-jre17-Semeru-ubuntu-plume`, `10.1.1-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.0-jre17-Semeru-ubuntu-plus`, `10.1.0-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.1-jre17-Semeru-ubuntu-plus`, `10.1.1-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.0-jre17-Semeru-ubuntu-webprofile`, `10.1.0-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/741cbea5652fe7db09d8e4916fb368646cbd6382/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.1-jre17-Semeru-ubuntu-webprofile`, `10.1.1-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 9086986832a6f5456f21357bce6afa42d8c62490 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Aug 2025 15:10:21 -0700 Subject: [PATCH 2455/2686] Run update.sh --- monica/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/monica/README.md b/monica/README.md index 65ebbdfee8f5..d0890f1afc59 100644 --- a/monica/README.md +++ b/monica/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/apache/Dockerfile) +- [`4.1.2-apache`, `4.1-apache`, `4-apache`, `apache`, `4.1.2`, `4.1`, `4`, `latest`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/4/apache/Dockerfile) -- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/fpm-alpine/Dockerfile) +- [`4.1.2-fpm-alpine`, `4.1-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/4/fpm-alpine/Dockerfile) -- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/4/fpm/Dockerfile) +- [`4.1.2-fpm`, `4.1-fpm`, `4-fpm`, `fpm`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/4/fpm/Dockerfile) -- [`5.0.0-beta.5-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/apache/Dockerfile) +- [`5.0.0-beta.5-apache`, `5.0.0-beta-apache`, `5.0-apache`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/5/apache/Dockerfile) -- [`5.0.0-beta.5-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/fpm-alpine/Dockerfile) +- [`5.0.0-beta.5-fpm-alpine`, `5.0.0-beta-fpm-alpine`, `5.0-fpm-alpine`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/5/fpm-alpine/Dockerfile) -- [`5.0.0-beta.5-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/8c3bcc8d3ab01315ca762c995338083d71c5611e/5/fpm/Dockerfile) +- [`5.0.0-beta.5-fpm`, `5.0.0-beta-fpm`, `5.0-fpm`](https://github.com/monicahq/docker/blob/7ffc74385e243e2dac4d7013a3240c0ae1229f05/5/fpm/Dockerfile) # Quick reference (cont.) @@ -42,7 +42,7 @@ WARNING: [https://github.com/monicahq/docker/issues](https://github.com/monicahq/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/monica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/monica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/monica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/monica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/monica/), [`i386`](https://hub.docker.com/r/i386/monica/), [`mips64le`](https://hub.docker.com/r/mips64le/monica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/monica/), [`riscv64`](https://hub.docker.com/r/riscv64/monica/), [`s390x`](https://hub.docker.com/r/s390x/monica/) + [`amd64`](https://hub.docker.com/r/amd64/monica/), [`arm32v5`](https://hub.docker.com/r/arm32v5/monica/), [`arm32v6`](https://hub.docker.com/r/arm32v6/monica/), [`arm32v7`](https://hub.docker.com/r/arm32v7/monica/), [`arm64v8`](https://hub.docker.com/r/arm64v8/monica/), [`i386`](https://hub.docker.com/r/i386/monica/), [`ppc64le`](https://hub.docker.com/r/ppc64le/monica/), [`riscv64`](https://hub.docker.com/r/riscv64/monica/), [`s390x`](https://hub.docker.com/r/s390x/monica/) - **Published image artifact details**: [repo-info repo's `repos/monica/` directory](https://github.com/docker-library/repo-info/blob/master/repos/monica) ([history](https://github.com/docker-library/repo-info/commits/master/repos/monica)) From 47491bed26605c0940125e3e6433c62cd555ee98 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 19 Aug 2025 16:10:33 -0700 Subject: [PATCH 2456/2686] Run update.sh --- joomla/README.md | 50 ++++++++++++++++++------------------------------ 1 file changed, 19 insertions(+), 31 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index d74f396d6a24..a90dcd9ffd88 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,41 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-alpha3`, `6.0`, `6.0.alpha`, `6.0.0-alpha`, `6.0.0-alpha3-apache`, `6.0-apache`, `6.0.alpha-apache`, `6.0.0-alpha-apache`, `6.0.0-alpha3-php8.3`, `6.0-php8.3`, `6.0.alpha-php8.3`, `6.0.0-alpha-php8.3`, `6.0.0-alpha3-php8.3-apache`, `6.0-php8.3-apache`, `6.0.alpha-php8.3-apache`, `6.0.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/apache/Dockerfile) +- [`6.0.0-beta1`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta1-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta1-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/apache/Dockerfile) -- [`6.0.0-alpha3-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.alpha-php8.3-fpm-alpine`, `6.0.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-beta1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-alpha3-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.alpha-php8.3-fpm`, `6.0.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/6.0.alpha/php8.3/fpm/Dockerfile) +- [`6.0.0-beta1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/fpm/Dockerfile) -- [`5.4.0-alpha3-php8.2-apache`, `5.4-php8.2-apache`, `5.4.alpha-php8.2-apache`, `5.4.0-alpha-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/apache/Dockerfile) +- [`5.4.0-beta1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/apache/Dockerfile) -- [`5.4.0-alpha3-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.alpha-php8.2-fpm-alpine`, `5.4.0-alpha-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-beta1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-alpha3-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.alpha-php8.2-fpm`, `5.4.0-alpha-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.2/fpm/Dockerfile) +- [`5.4.0-beta1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/fpm/Dockerfile) -- [`5.4.0-alpha3`, `5.4`, `5.4.alpha`, `5.4.0-alpha`, `5.4.0-alpha3-apache`, `5.4-apache`, `5.4.alpha-apache`, `5.4.0-alpha-apache`, `5.4.0-alpha3-php8.3`, `5.4-php8.3`, `5.4.alpha-php8.3`, `5.4.0-alpha-php8.3`, `5.4.0-alpha3-php8.3-apache`, `5.4-php8.3-apache`, `5.4.alpha-php8.3-apache`, `5.4.0-alpha-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/apache/Dockerfile) +- [`5.4.0-beta1`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta1-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta1-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/apache/Dockerfile) -- [`5.4.0-alpha3-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.alpha-php8.3-fpm-alpine`, `5.4.0-alpha-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-beta1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-alpha3-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.alpha-php8.3-fpm`, `5.4.0-alpha-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/f2936260e5f398854939c429f5468f2d5b43df8d/5.4.alpha/php8.3/fpm/Dockerfile) +- [`5.4.0-beta1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/fpm/Dockerfile) -- [`5.3.2-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/apache/Dockerfile) +- [`5.3.3-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/apache/Dockerfile) -- [`5.3.2-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/fpm-alpine/Dockerfile) +- [`5.3.3-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/fpm-alpine/Dockerfile) -- [`5.3.2-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.1/fpm/Dockerfile) +- [`5.3.3-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/fpm/Dockerfile) -- [`5.3.2-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/apache/Dockerfile) +- [`5.3.3-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/apache/Dockerfile) -- [`5.3.2-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/fpm-alpine/Dockerfile) +- [`5.3.3-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/fpm-alpine/Dockerfile) -- [`5.3.2-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.2/fpm/Dockerfile) +- [`5.3.3-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/fpm/Dockerfile) -- [`5.3.2`, `5.3`, `5`, `latest`, `5.3.2-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.2-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.2-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/apache/Dockerfile) +- [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.3-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.3-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/apache/Dockerfile) -- [`5.3.2-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/fpm-alpine/Dockerfile) +- [`5.3.3-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/fpm-alpine/Dockerfile) -- [`5.3.2-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/029a7a61c78666ccf23b6cee64b8c79fbc537248/5.3/php8.3/fpm/Dockerfile) - -- [`4.4.13-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/apache/Dockerfile) - -- [`4.4.13-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/fpm-alpine/Dockerfile) - -- [`4.4.13-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.1/fpm/Dockerfile) - -- [`4.4.13`, `4.4`, `4`, `4.4.13-apache`, `4.4-apache`, `4-apache`, `4.4.13-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.13-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/apache/Dockerfile) - -- [`4.4.13-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/fpm-alpine/Dockerfile) - -- [`4.4.13-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/2b32f0a2ba4ad99f15c0acd26b2f862c038ff3f5/4.4/php8.2/fpm/Dockerfile) +- [`5.3.3-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/fpm/Dockerfile) # Quick reference (cont.) @@ -78,7 +66,7 @@ WARNING: [https://github.com/joomla-docker/docker-joomla/issues](https://github.com/joomla-docker/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) + [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) - **Published image artifact details**: [repo-info repo's `repos/joomla/` directory](https://github.com/docker-library/repo-info/blob/master/repos/joomla) ([history](https://github.com/docker-library/repo-info/commits/master/repos/joomla)) From 8b61d34a69236d4b683086f951ec60c790126523 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Wed, 20 Aug 2025 10:16:53 -0500 Subject: [PATCH 2457/2686] refactor(influxdb): streamline documentation structure - Reorganize content to prioritize InfluxDB 3 Core as the latest OSS version - Consolidate v1 Enterprise documentation by removing separate variant files - Improve clarity with structured sections for each InfluxDB version - Add recommended tools section for InfluxDB 3 Core ecosystem - Enhance Docker command examples with better formatting --- influxdb/content.md | 104 ++++++++++++++++----------------- influxdb/variant-data.md | 7 --- influxdb/variant-meta.md | 120 --------------------------------------- 3 files changed, 53 insertions(+), 178 deletions(-) delete mode 100644 influxdb/variant-data.md delete mode 100644 influxdb/variant-meta.md diff --git a/influxdb/content.md b/influxdb/content.md index c44a496aee5a..1b5eb1e559bb 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -4,102 +4,104 @@ InfluxDB is the time series database platform designed to collect, store, and process large amounts of event and time series data. Ideal for monitoring (sensors, servers, applications, networks), financial analytics, and behavioral tracking. -## Quick Start +## Start InfluxDB 3 Core -Use InfluxDB 3 Core, the latest InfluxDB OSS: +%%COMPOSE%% + +Alternatively, you can use the following command to start InfluxDB 3 Core: + +```bash +docker run --rm -p 8181:8181 \ + -v $PWD/data:/var/lib/influxdb3/data \ + -v $PWD/plugins:/var/lib/influxdb3/plugins \ + %%IMAGE%%:3-core influxdb3 serve \ + --node-id=my-node-0 \ + --object-store=file \ + --data-dir=/var/lib/influxdb3/data \ + --plugin-dir=/var/lib/influxdb3/plugins +``` + +InfluxDB 3 Core starts with: + +- Data persistence at `/var/lib/influxdb3/data` +- Python processing engine enabled with plugin directory +- HTTP API listening on port `8181` + +### Using InfluxDB 3 Core -```console -docker run -d -p 8181:8181 %%IMAGE%%:3-core +After starting your InfluxDB 3 server, follow the [Get Started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an authorization token and start writing, querying, and processing data via the built-in `influxdb3` CLI or the HTTP API. + +### Recommended tools for InfluxDB 3 Core + +Use the following tools with InfluxDB 3 Core: + +- **[InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/)**: Visualize, query, and manage your data with the standalone web interface designed for InfluxDB 3. [View on Docker Hub](https://hub.docker.com/r/influxdata/influxdb3-ui) +- **[Telegraf](https://docs.influxdata.com/telegraf/v1/)**: Collect, transform, and send metrics from hundreds of sources directly to InfluxDB 3. [View on Docker Hub](https://hub.docker.com/_/telegraf) +- **[Official Client Libraries](https://docs.influxdata.com/influxdb3/core/reference/client-libraries/)**: Integrate InfluxDB 3 into your applications using supported libraries for Python, Go, JavaScript, and more. + +### Customize server options + +Customize your instance with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): + +```bash + docker run --rm %%IMAGE%%:3-core influxdb3 serve --help ``` -Available OSS tags: +## Available InfluxDB variants - `%%IMAGE%%:3-core` - **Latest InfluxDB OSS** (InfluxDB 3 Core) - `%%IMAGE%%:2` - Previous generation OSS (InfluxDB v2) - `%%IMAGE%%:1.11` - InfluxDB v1 -## Available Versions - -#### InfluxDB 3 Core (`%%IMAGE%%:3-core`) - Latest OSS +### InfluxDB 3 Core (`%%IMAGE%%:3-core`) - Latest OSS -- **Latest generation** with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL +- **Latest generation** using object storage with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL - Sub-10ms queries and unlimited cardinality - Supports SQL and InfluxQL queries - Includes Python processing engine - Designed for real-time monitoring and recent data -- Includes v1 compatibility API for writing and querying data -- Includes v2 compatibility API for writing data +- Includes InfluxDB v1 and v2 compatibility APIs -#### InfluxDB v2 (`%%IMAGE%%:2`) +### InfluxDB v2 (`%%IMAGE%%:2`) - Built on the TSM storage engine - Supports Flux query language - Integrated UI and dashboards - Includes v1 compatibility API that supports InfluxQL -#### InfluxDB v1 (`%%IMAGE%%:1.11`) +### InfluxDB v1 (`%%IMAGE%%:1.11`) - Built on the TSM storage engine - Original version with InfluxQL query language - Proven stability for existing deployments -### Enterprise Editions (License Required) +### InfluxDB 3 Enterprise (license required) (`%%IMAGE%%:3-enterprise`) -#### InfluxDB 3 Enterprise (`%%IMAGE%%:3-enterprise`) - -- Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core +Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core. For setup instructions, see the [InfluxDB 3 Enterprise installation documentation](https://docs.influxdata.com/influxdb3/enterprise/install/). -#### InfluxDB v1 Enterprise +### InfluxDB v1 Enterprise (license required) - `%%IMAGE%%:1.11-data` - Data nodes for clustering - `%%IMAGE%%:1.11-meta` - Meta nodes for cluster coordination (port 8091) For setup instructions, see the [InfluxDB v1 Enterprise Docker documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). -## Version Compatibility +## Version compatibility -### Migration Paths +### Migration paths To migrate from v1 or v2 to InfluxDB 3: 1. Dual-write new data to v1/v2 and InfluxDB 3. 2. Query historical data from v1/v2 and write it to InfluxDB 3. *InfluxDB 3 Enterprise is recommended for historical query capability.* -## Using InfluxDB 3 Core (Latest OSS) - -### Start InfluxDB 3 Core - -%%COMPOSE%% - -The example `compose.yaml` starts InfluxDB 3 Core on port 8181 with: - -- Data persistence at `/var/lib/influxdb3` -- Plugin directory for Python processing engine -- Object storage configured (default: file) - -### Get Started Using InfluxDB 3 - -After starting your InfluxDB 3 server: - -- Follow the [Get started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an auth token and database, and write, query, and process data. -- Use the [InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/) to write data, create dashboards, explore metrics, and manage databases - -### InfluxDB 3 Server Options - -Customize your deployment with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): - -```bash -# View all available options -docker run --rm %%IMAGE%%:3-core influxdb3 serve --help -``` - ## Using InfluxDB v2 *InfluxDB v2 is a previous version. Consider InfluxDB 3 Core for new deployments.* -### Start InfluxDB v2 +Enter the following command to start InfluxDB v2 initialized with custom configuration: ```bash docker run -d -p 8086:8086 \ @@ -121,7 +123,7 @@ For detailed instructions, see the [InfluxDB v2 Docker Compose documentation](ht *InfluxDB v1 is a previous version. Consider InfluxDB 3 Core for new deployments.* -```console +```bash docker run -d -p 8086:8086 \ -v $PWD:/var/lib/influxdb \ %%IMAGE%%:1.11 @@ -132,4 +134,4 @@ This starts InfluxDB v1 with: - HTTP API on port 8086 - Data persisted to current directory -For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). +For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). For v1 Enterprise installation, see the [InfluxDB Enterprise v1 documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). diff --git a/influxdb/variant-data.md b/influxdb/variant-data.md deleted file mode 100644 index f805ebf38b1c..000000000000 --- a/influxdb/variant-data.md +++ /dev/null @@ -1,7 +0,0 @@ -## `%%IMAGE%%:1-data` - -*Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* - -This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. - -Refer to the `influxdb:1-meta` variant for directions on how to setup a cluster. diff --git a/influxdb/variant-meta.md b/influxdb/variant-meta.md deleted file mode 100644 index 0bbdcd7d1a42..000000000000 --- a/influxdb/variant-meta.md +++ /dev/null @@ -1,120 +0,0 @@ -## `%%IMAGE%%:1-meta` - -*This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. - -This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:1-data` package of the same version. - -### Using this Image - -#### Specifying the license key - -The license key can be specified using either an environment variable or by overriding the configuration file. If you specify the license key directly, the container needs to be able to access the InfluxData portal. - -```console -docker run -p 8089:8089 -p 8091:8091 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= - %%IMAGE%%:1-meta -``` - -#### Running the container - -The examples below will use docker's built-in networking capability. If you use the port exposing feature, the host port and the container port need to be the same. - -First, create a docker network: - -```console -docker network create influxdb -``` - -Start three meta nodes. This is the suggested number of meta nodes. We do not recommend running more or less. If you choose to run more or less, be sure that the number of meta nodes is odd. The hostname must be set on each container to the address that will be used to access the meta node. When using docker networks, the hostname should be made the same as the name of the container. - -```console -docker run -d --name=influxdb-meta-0 --network=influxdb \ - -h influxdb-meta-0 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:1-meta -docker run -d --name=influxdb-meta-1 --network=influxdb \ - -h influxdb-meta-1 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:1-meta -docker run -d --name=influxdb-meta-2 --network=influxdb \ - -h influxdb-meta-2 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:1-meta -``` - -When setting the hostname, you can use `-h ` or you can directly set the environment variable using `-e INFLUXDB_HOSTNAME=`. - -After starting the meta nodes, you need to tell them about each other. Choose one of the meta nodes and run `influxd-ctl` in the container. - -```console -docker exec influxdb-meta-0 \ - influxd-ctl add-meta influxdb-meta-1:8091 -docker exec influxdb-meta-0 \ - influxd-ctl add-meta influxdb-meta-2:8091 -``` - -Or you can just start a single meta node. If you setup a single meta node, you do not need to use `influxd-ctl add-meta`. - -```console -docker run -d --name=influxdb-meta --network=influxdb \ - -h influxdb-meta \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - %%IMAGE%%:1-meta -single-server -``` - -#### Connecting the data nodes - -Start the data nodes using `%%IMAGE%%:data` with similar command line arguments to the meta nodes. You can start as many data nodes as are allowed by your license. - -```console -docker run -d --name=influxdb-data-0 --network=influxdb \ - -h influxdb-data-0 \ - -e INFLUXDB_LICENSE_KEY= \ - %%IMAGE%%:1-data -``` - -You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. - -```console -docker exec influxdb-meta-0 \ - influxd-ctl add-data influxdb-data-0:8088 -``` - -Perform these same steps for any other data nodes that you want to add. - -You can now connect to any of the running data nodes to use your cluster. - -See the [influxdb](https://hub.docker.com/_/influxdb/) image documentation for more details on how to use the data node images. - -#### Configuration - -InfluxDB Meta can be either configured from a config file or using environment variables. To mount a configuration file and use it with the server, you can use this command: - -Generate the default configuration file: - -```console -docker run --rm %%IMAGE%%:meta influxd-meta config > influxdb-meta.conf -``` - -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB Meta container. - -```console -docker run \ - -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ - %%IMAGE%%:1-meta -config /etc/influxdb/influxdb-meta.conf -``` - -Modify `$PWD` to the directory where you want to store the configuration file. - -For environment variables, the format is `INFLUXDB_$SECTION_$NAME`. All dashes (`-`) are replaced with underscores (`_`). If the variable isn't in a section, then omit that part. - -Examples: - -```console -INFLUXDB_REPORTING_DISABLED=true -INFLUXDB_META_DIR=/path/to/metadir -INFLUXDB_ENTERPRISE_REGISTRATION_ENABLED=true -``` - -For more information, see how to [Install InfluxDB Enterprise meta nodes](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/). From 61f2f205e2862b1935fc7741f267cf79a672c229 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Aug 2025 11:10:48 -0700 Subject: [PATCH 2458/2686] Run update.sh --- jetty/README.md | 122 +++++++++++++++++++++++++++--------------------- 1 file changed, 69 insertions(+), 53 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 159d9cfcbc56..014ab6e0db2f 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,73 +54,81 @@ WARNING: - [`9.4.58-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.58-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.0.25-jre21-alpine`, `12.0-jre21-alpine`, `12-jre21-alpine`, `12.0.25-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`, `12-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.1.0-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.0-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) -- [`12.0.25-jre21`, `12.0-jre21`, `12-jre21`, `12.0.25-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`, `12-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.1.0`, `12.1`, `12`, `12.1.0-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.0-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.0-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk21/Dockerfile) -- [`12.0.25-jre17-alpine`, `12.0-jre17-alpine`, `12-jre17-alpine`, `12.0.25-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`, `12-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.1.0-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.0-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) -- [`12.0.25-jre17`, `12.0-jre17`, `12-jre17`, `12.0.25-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`, `12-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.1.0-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.0-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk17/Dockerfile) -- [`12.0.25-jdk24-alpine`, `12.0-jdk24-alpine`, `12-jdk24-alpine`, `12.0.25-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`, `12-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.25-jre21-alpine`, `12.0-jre21-alpine`, `12.0.25-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.25-jdk24`, `12.0-jdk24`, `12-jdk24`, `12.0.25-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`, `12-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.25-jre21`, `12.0-jre21`, `12.0.25-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.25-jdk21-alpine`, `12.0-jdk21-alpine`, `12-jdk21-alpine`, `12.0.25-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.25-jre17-alpine`, `12.0-jre17-alpine`, `12.0.25-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.25`, `12.0`, `12`, `12.0.25-jdk21`, `12.0-jdk21`, `12-jdk21`, `12.0.25-eclipse-temurin`, `12.0-eclipse-temurin`, `12-eclipse-temurin`, `12.0.25-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.25-jre17`, `12.0-jre17`, `12.0.25-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.25-jdk17-alpine`, `12.0-jdk17-alpine`, `12-jdk17-alpine`, `12.0.25-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.25-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.25-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.25-jdk17`, `12.0-jdk17`, `12-jdk17`, `12.0.25-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.25-jdk24`, `12.0-jdk24`, `12.0.25-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`11.0.25-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.25-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre21-alpine/Dockerfile) +- [`12.0.25-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.25-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`11.0.25-jre21`, `11.0-jre21`, `11-jre21`, `11.0.25-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre21/Dockerfile) +- [`12.0.25`, `12.0`, `12.0.25-jdk21`, `12.0-jdk21`, `12.0.25-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.25-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`11.0.25-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.25-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre17-alpine/Dockerfile) +- [`12.0.25-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.25-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`11.0.25-jre17`, `11.0-jre17`, `11-jre17`, `11.0.25-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre17/Dockerfile) +- [`12.0.25-jdk17`, `12.0-jdk17`, `12.0.25-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17/Dockerfile) -- [`11.0.25-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.25-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre11-alpine/Dockerfile) +- [`11.0.26-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.26-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21-alpine/Dockerfile) -- [`11.0.25-jre11`, `11.0-jre11`, `11-jre11`, `11.0.25-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jre11/Dockerfile) +- [`11.0.26-jre21`, `11.0-jre21`, `11-jre21`, `11.0.26-jre21-eclipse-temurin`, `11.0-jre21-eclipse-temurin`, `11-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21/Dockerfile) -- [`11.0.25-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.25-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) +- [`11.0.26-jre17-alpine`, `11.0-jre17-alpine`, `11-jre17-alpine`, `11.0.26-jre17-alpine-eclipse-temurin`, `11.0-jre17-alpine-eclipse-temurin`, `11-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre17-alpine/Dockerfile) -- [`11.0.25`, `11.0`, `11`, `11.0.25-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.25-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.25-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk21/Dockerfile) +- [`11.0.26-jre17`, `11.0-jre17`, `11-jre17`, `11.0.26-jre17-eclipse-temurin`, `11.0-jre17-eclipse-temurin`, `11-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre17/Dockerfile) -- [`11.0.25-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.25-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) +- [`11.0.26-jre11-alpine`, `11.0-jre11-alpine`, `11-jre11-alpine`, `11.0.26-jre11-alpine-eclipse-temurin`, `11.0-jre11-alpine-eclipse-temurin`, `11-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre11-alpine/Dockerfile) -- [`11.0.25-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.25-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk17/Dockerfile) +- [`11.0.26-jre11`, `11.0-jre11`, `11-jre11`, `11.0.26-jre11-eclipse-temurin`, `11.0-jre11-eclipse-temurin`, `11-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre11/Dockerfile) -- [`11.0.25-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.25-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) +- [`11.0.26-jdk21-alpine`, `11.0-jdk21-alpine`, `11-jdk21-alpine`, `11.0.26-jdk21-alpine-eclipse-temurin`, `11.0-jdk21-alpine-eclipse-temurin`, `11-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk21-alpine/Dockerfile) -- [`11.0.25-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.25-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/11.0/jdk11/Dockerfile) +- [`11.0.26`, `11.0`, `11`, `11.0.26-jdk21`, `11.0-jdk21`, `11-jdk21`, `11.0.26-eclipse-temurin`, `11.0-eclipse-temurin`, `11-eclipse-temurin`, `11.0.26-jdk21-eclipse-temurin`, `11.0-jdk21-eclipse-temurin`, `11-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk21/Dockerfile) -- [`10.0.25-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.25-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre21-alpine/Dockerfile) +- [`11.0.26-jdk17-alpine`, `11.0-jdk17-alpine`, `11-jdk17-alpine`, `11.0.26-jdk17-alpine-eclipse-temurin`, `11.0-jdk17-alpine-eclipse-temurin`, `11-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk17-alpine/Dockerfile) -- [`10.0.25-jre21`, `10.0-jre21`, `10-jre21`, `10.0.25-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre21/Dockerfile) +- [`11.0.26-jdk17`, `11.0-jdk17`, `11-jdk17`, `11.0.26-jdk17-eclipse-temurin`, `11.0-jdk17-eclipse-temurin`, `11-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk17/Dockerfile) -- [`10.0.25-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.25-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre17-alpine/Dockerfile) +- [`11.0.26-jdk11-alpine`, `11.0-jdk11-alpine`, `11-jdk11-alpine`, `11.0.26-jdk11-alpine-eclipse-temurin`, `11.0-jdk11-alpine-eclipse-temurin`, `11-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk11-alpine/Dockerfile) -- [`10.0.25-jre17`, `10.0-jre17`, `10-jre17`, `10.0.25-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre17/Dockerfile) +- [`11.0.26-jdk11`, `11.0-jdk11`, `11-jdk11`, `11.0.26-jdk11-eclipse-temurin`, `11.0-jdk11-eclipse-temurin`, `11-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jdk11/Dockerfile) -- [`10.0.25-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.25-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre11-alpine/Dockerfile) +- [`10.0.26-jre21-alpine`, `10.0-jre21-alpine`, `10-jre21-alpine`, `10.0.26-jre21-alpine-eclipse-temurin`, `10.0-jre21-alpine-eclipse-temurin`, `10-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre21-alpine/Dockerfile) -- [`10.0.25-jre11`, `10.0-jre11`, `10-jre11`, `10.0.25-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jre11/Dockerfile) +- [`10.0.26-jre21`, `10.0-jre21`, `10-jre21`, `10.0.26-jre21-eclipse-temurin`, `10.0-jre21-eclipse-temurin`, `10-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre21/Dockerfile) -- [`10.0.25-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.25-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) +- [`10.0.26-jre17-alpine`, `10.0-jre17-alpine`, `10-jre17-alpine`, `10.0.26-jre17-alpine-eclipse-temurin`, `10.0-jre17-alpine-eclipse-temurin`, `10-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre17-alpine/Dockerfile) -- [`10.0.25`, `10.0`, `10`, `10.0.25-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.25-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.25-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk21/Dockerfile) +- [`10.0.26-jre17`, `10.0-jre17`, `10-jre17`, `10.0.26-jre17-eclipse-temurin`, `10.0-jre17-eclipse-temurin`, `10-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre17/Dockerfile) -- [`10.0.25-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.25-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) +- [`10.0.26-jre11-alpine`, `10.0-jre11-alpine`, `10-jre11-alpine`, `10.0.26-jre11-alpine-eclipse-temurin`, `10.0-jre11-alpine-eclipse-temurin`, `10-jre11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre11-alpine/Dockerfile) -- [`10.0.25-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.25-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk17/Dockerfile) +- [`10.0.26-jre11`, `10.0-jre11`, `10-jre11`, `10.0.26-jre11-eclipse-temurin`, `10.0-jre11-eclipse-temurin`, `10-jre11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jre11/Dockerfile) -- [`10.0.25-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.25-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) +- [`10.0.26-jdk21-alpine`, `10.0-jdk21-alpine`, `10-jdk21-alpine`, `10.0.26-jdk21-alpine-eclipse-temurin`, `10.0-jdk21-alpine-eclipse-temurin`, `10-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk21-alpine/Dockerfile) -- [`10.0.25-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.25-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/eclipse-temurin/10.0/jdk11/Dockerfile) +- [`10.0.26`, `10.0`, `10`, `10.0.26-jdk21`, `10.0-jdk21`, `10-jdk21`, `10.0.26-eclipse-temurin`, `10.0-eclipse-temurin`, `10-eclipse-temurin`, `10.0.26-jdk21-eclipse-temurin`, `10.0-jdk21-eclipse-temurin`, `10-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk21/Dockerfile) + +- [`10.0.26-jdk17-alpine`, `10.0-jdk17-alpine`, `10-jdk17-alpine`, `10.0.26-jdk17-alpine-eclipse-temurin`, `10.0-jdk17-alpine-eclipse-temurin`, `10-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk17-alpine/Dockerfile) + +- [`10.0.26-jdk17`, `10.0-jdk17`, `10-jdk17`, `10.0.26-jdk17-eclipse-temurin`, `10.0-jdk17-eclipse-temurin`, `10-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk17/Dockerfile) + +- [`10.0.26-jdk11-alpine`, `10.0-jdk11-alpine`, `10-jdk11-alpine`, `10.0.26-jdk11-alpine-eclipse-temurin`, `10.0-jdk11-alpine-eclipse-temurin`, `10-jdk11-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk11-alpine/Dockerfile) + +- [`10.0.26-jdk11`, `10.0-jdk11`, `10-jdk11`, `10.0.26-jdk11-eclipse-temurin`, `10.0-jdk11-eclipse-temurin`, `10-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/10.0/jdk11/Dockerfile) - [`9.4.58-jdk8-alpine-amazoncorretto`, `9.4-jdk8-alpine-amazoncorretto`, `9-jdk8-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk8-alpine/Dockerfile) @@ -138,43 +146,51 @@ WARNING: - [`9.4.58-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.0.25-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`, `12-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.1.0-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk21-alpine/Dockerfile) + +- [`12.1.0-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.0-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk21/Dockerfile) + +- [`12.1.0-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk17-alpine/Dockerfile) + +- [`12.1.0-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk17/Dockerfile) + +- [`12.0.25-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.25-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.25-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.25-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`, `12-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.25-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.25-amazoncorretto`, `12.0-amazoncorretto`, `12-amazoncorretto`, `12.0.25-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.25-amazoncorretto`, `12.0-amazoncorretto`, `12.0.25-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.25-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.25-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.25-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`, `12-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.25-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.25-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.25-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17/Dockerfile) -- [`11.0.25-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk21-alpine/Dockerfile) +- [`11.0.26-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21-alpine/Dockerfile) -- [`11.0.25-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.25-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk21/Dockerfile) +- [`11.0.26-amazoncorretto`, `11.0-amazoncorretto`, `11-amazoncorretto`, `11.0.26-jdk21-amazoncorretto`, `11.0-jdk21-amazoncorretto`, `11-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21/Dockerfile) -- [`11.0.25-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk17-alpine/Dockerfile) +- [`11.0.26-jdk17-alpine-amazoncorretto`, `11.0-jdk17-alpine-amazoncorretto`, `11-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk17-alpine/Dockerfile) -- [`11.0.25-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk17/Dockerfile) +- [`11.0.26-jdk17-amazoncorretto`, `11.0-jdk17-amazoncorretto`, `11-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk17/Dockerfile) -- [`11.0.25-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk11-alpine/Dockerfile) +- [`11.0.26-jdk11-alpine-amazoncorretto`, `11.0-jdk11-alpine-amazoncorretto`, `11-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk11-alpine/Dockerfile) -- [`11.0.25-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/11.0/jdk11/Dockerfile) +- [`11.0.26-jdk11-amazoncorretto`, `11.0-jdk11-amazoncorretto`, `11-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk11/Dockerfile) -- [`10.0.25-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk21-alpine/Dockerfile) +- [`10.0.26-jdk21-alpine-amazoncorretto`, `10.0-jdk21-alpine-amazoncorretto`, `10-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk21-alpine/Dockerfile) -- [`10.0.25-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.25-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk21/Dockerfile) +- [`10.0.26-amazoncorretto`, `10.0-amazoncorretto`, `10-amazoncorretto`, `10.0.26-jdk21-amazoncorretto`, `10.0-jdk21-amazoncorretto`, `10-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk21/Dockerfile) -- [`10.0.25-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk17-alpine/Dockerfile) +- [`10.0.26-jdk17-alpine-amazoncorretto`, `10.0-jdk17-alpine-amazoncorretto`, `10-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk17-alpine/Dockerfile) -- [`10.0.25-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk17/Dockerfile) +- [`10.0.26-jdk17-amazoncorretto`, `10.0-jdk17-amazoncorretto`, `10-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk17/Dockerfile) -- [`10.0.25-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk11-alpine/Dockerfile) +- [`10.0.26-jdk11-alpine-amazoncorretto`, `10.0-jdk11-alpine-amazoncorretto`, `10-jdk11-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk11-alpine/Dockerfile) -- [`10.0.25-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/68752e005359f51f5ba72091fb4daf006db482e0/amazoncorretto/10.0/jdk11/Dockerfile) +- [`10.0.26-jdk11-amazoncorretto`, `10.0-jdk11-amazoncorretto`, `10-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/10.0/jdk11/Dockerfile) # Quick reference (cont.) From fa80e5a7d4460f80dd2b7885755e82dfd0ab7326 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Aug 2025 12:10:30 -0700 Subject: [PATCH 2459/2686] Run update.sh --- dart/README.md | 4 ++-- haskell/README.md | 16 ++++++++-------- maven/README.md | 12 ++++++------ 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/dart/README.md b/dart/README.md index ed5987d0bc55..7dafdd6ff1bd 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.0-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.0`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6c30628c249e3915b95da3876f0c8f607e286bee/stable/trixie/Dockerfile) +- [`3.9.1-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.1`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/691b6999e375ae8c0c1f1c9b4a379923ee861716/stable/trixie/Dockerfile) -- [`3.10.0-75.1.beta-sdk`, `beta-sdk`, `3.10.0-75.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6c30628c249e3915b95da3876f0c8f607e286bee/beta/trixie/Dockerfile) +- [`3.10.0-75.2.beta-sdk`, `beta-sdk`, `3.10.0-75.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/691b6999e375ae8c0c1f1c9b4a379923ee861716/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index 7ac23e9d7dd8..c0f740880ed7 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.12/bookworm/Dockerfile) +- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.12/bookworm/Dockerfile) -- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.12/slim-bookworm/Dockerfile) +- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.12/slim-bookworm/Dockerfile) -- [`9.10.1-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.1`, `9.10`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.10/bullseye/Dockerfile) +- [`9.10.2-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.2`, `9.10`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.10/bullseye/Dockerfile) -- [`9.10.1-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.10/slim-bullseye/Dockerfile) +- [`9.10.2-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.10/slim-bullseye/Dockerfile) -- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.8/bullseye/Dockerfile) +- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.8/bullseye/Dockerfile) -- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.8/slim-bullseye/Dockerfile) +- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.8/slim-bullseye/Dockerfile) -- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.6/bullseye/Dockerfile) +- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.6/bullseye/Dockerfile) -- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/9f6ddaa037edbbf26bf162c0285264aa3ffda638/9.6/slim-bullseye/Dockerfile) +- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 11f27a6fc85f..f97ef3136832 100644 --- a/maven/README.md +++ b/maven/README.md @@ -58,7 +58,7 @@ WARNING: - [`3.9.11-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-bookworm`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-bookworm`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-11-debian/Dockerfile) +- [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-trixie`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-trixie`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-11-debian/Dockerfile) - [`3.9.11-amazoncorretto-17`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17/Dockerfile) @@ -66,7 +66,7 @@ WARNING: - [`3.9.11-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-bookworm`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-bookworm`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-17-debian/Dockerfile) +- [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-trixie`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-trixie`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-17-debian/Dockerfile) - [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21/Dockerfile) @@ -74,7 +74,7 @@ WARNING: - [`3.9.11-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-bookworm`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-bookworm`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-21-debian/Dockerfile) +- [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-trixie`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-trixie`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-21-debian/Dockerfile) - [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) @@ -82,7 +82,7 @@ WARNING: - [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-bookworm`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-bookworm`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-24-debian/Dockerfile) +- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-trixie`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-trixie`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-24-debian/Dockerfile) - [`3.9.11-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8/Dockerfile) @@ -90,7 +90,7 @@ WARNING: - [`3.9.11-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-8-debian`, `3.9.11-amazoncorretto-8-debian-bookworm`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-bookworm`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-bookworm`](https://github.com/carlossg/docker-maven/blob/1cf6b7ffa65a315aeb46b6067b700e53d8c23c99/amazoncorretto-8-debian/Dockerfile) +- [`3.9.11-amazoncorretto-8-debian`, `3.9.11-amazoncorretto-8-debian-trixie`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-trixie`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-8-debian/Dockerfile) - [`3.9.11-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-11/Dockerfile) @@ -194,7 +194,7 @@ The `maven` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. Some of these tags may have names like noble in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu. From 9049b44d00854541f38394ed70168da0003ba6f9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 20 Aug 2025 15:10:44 -0700 Subject: [PATCH 2460/2686] Run update.sh --- influxdb/README.md | 287 +++++++++++++-------------------------------- 1 file changed, 80 insertions(+), 207 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index d9a7ed8dc4f6..7362bf8b2ec6 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -77,129 +77,131 @@ WARNING: InfluxDB is the time series database platform designed to collect, store, and process large amounts of event and time series data. Ideal for monitoring (sensors, servers, applications, networks), financial analytics, and behavioral tracking. -## Quick Start +## Start InfluxDB 3 Core -Use InfluxDB 3 Core, the latest InfluxDB OSS: +... via [`docker compose`](https://github.com/docker/compose) + +Example `compose.yaml` for `influxdb`: + +```yaml +# compose.yaml +name: influxdb3 +services: + influxdb3-core: + container_name: influxdb3-core + image: influxdb:3-core + ports: + - 8181:8181 + command: + - influxdb3 + - serve + - --node-id=node0 + - --object-store=file + - --data-dir=/var/lib/influxdb3/data + - --plugin-dir=/var/lib/influxdb3/plugins + volumes: + - type: bind + source: ~/.influxdb3/core/data + target: /var/lib/influxdb3/data + - type: bind + source: ~/.influxdb3/core/plugins + target: /var/lib/influxdb3/plugins +``` + +Alternatively, you can use the following command to start InfluxDB 3 Core: + +```bash +docker run --rm -p 8181:8181 \ + -v $PWD/data:/var/lib/influxdb3/data \ + -v $PWD/plugins:/var/lib/influxdb3/plugins \ + influxdb:3-core influxdb3 serve \ + --node-id=my-node-0 \ + --object-store=file \ + --data-dir=/var/lib/influxdb3/data \ + --plugin-dir=/var/lib/influxdb3/plugins +``` + +InfluxDB 3 Core starts with: + +- Data persistence at `/var/lib/influxdb3/data` +- Python processing engine enabled with plugin directory +- HTTP API listening on port `8181` -```console -docker run -d -p 8181:8181 influxdb:3-core +### Using InfluxDB 3 Core + +After starting your InfluxDB 3 server, follow the [Get Started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an authorization token and start writing, querying, and processing data via the built-in `influxdb3` CLI or the HTTP API. + +### Recommended tools for InfluxDB 3 Core + +Use the following tools with InfluxDB 3 Core: + +- **[InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/)**: Visualize, query, and manage your data with the standalone web interface designed for InfluxDB 3. [View on Docker Hub](https://hub.docker.com/r/influxdata/influxdb3-ui) +- **[Telegraf](https://docs.influxdata.com/telegraf/v1/)**: Collect, transform, and send metrics from hundreds of sources directly to InfluxDB 3. [View on Docker Hub](https://hub.docker.com/_/telegraf) +- **[Official Client Libraries](https://docs.influxdata.com/influxdb3/core/reference/client-libraries/)**: Integrate InfluxDB 3 into your applications using supported libraries for Python, Go, JavaScript, and more. + +### Customize server options + +Customize your instance with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): + +```bash + docker run --rm influxdb:3-core influxdb3 serve --help ``` -Available OSS tags: +## Available InfluxDB variants - `influxdb:3-core` - **Latest InfluxDB OSS** (InfluxDB 3 Core) - `influxdb:2` - Previous generation OSS (InfluxDB v2) - `influxdb:1.11` - InfluxDB v1 -## Available Versions - -#### InfluxDB 3 Core (`influxdb:3-core`) - Latest OSS +### InfluxDB 3 Core (`influxdb:3-core`) - Latest OSS -- **Latest generation** with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL +- **Latest generation** using object storage with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL - Sub-10ms queries and unlimited cardinality - Supports SQL and InfluxQL queries - Includes Python processing engine - Designed for real-time monitoring and recent data -- Includes v1 compatibility API for writing and querying data -- Includes v2 compatibility API for writing data +- Includes InfluxDB v1 and v2 compatibility APIs -#### InfluxDB v2 (`influxdb:2`) +### InfluxDB v2 (`influxdb:2`) - Built on the TSM storage engine - Supports Flux query language - Integrated UI and dashboards - Includes v1 compatibility API that supports InfluxQL -#### InfluxDB v1 (`influxdb:1.11`) +### InfluxDB v1 (`influxdb:1.11`) - Built on the TSM storage engine - Original version with InfluxQL query language - Proven stability for existing deployments -### Enterprise Editions (License Required) +### InfluxDB 3 Enterprise (license required) (`influxdb:3-enterprise`) -#### InfluxDB 3 Enterprise (`influxdb:3-enterprise`) - -- Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core +Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core. For setup instructions, see the [InfluxDB 3 Enterprise installation documentation](https://docs.influxdata.com/influxdb3/enterprise/install/). -#### InfluxDB v1 Enterprise +### InfluxDB v1 Enterprise (license required) - `influxdb:1.11-data` - Data nodes for clustering - `influxdb:1.11-meta` - Meta nodes for cluster coordination (port 8091) For setup instructions, see the [InfluxDB v1 Enterprise Docker documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). -## Version Compatibility +## Version compatibility -### Migration Paths +### Migration paths To migrate from v1 or v2 to InfluxDB 3: 1. Dual-write new data to v1/v2 and InfluxDB 3. 2. Query historical data from v1/v2 and write it to InfluxDB 3. *InfluxDB 3 Enterprise is recommended for historical query capability.* -## Using InfluxDB 3 Core (Latest OSS) - -### Start InfluxDB 3 Core - -... via [`docker compose`](https://github.com/docker/compose) - -Example `compose.yaml` for `influxdb`: - -```yaml -# compose.yaml -name: influxdb3 -services: - influxdb3-core: - container_name: influxdb3-core - image: influxdb:3-core - ports: - - 8181:8181 - command: - - influxdb3 - - serve - - --node-id=node0 - - --object-store=file - - --data-dir=/var/lib/influxdb3/data - - --plugin-dir=/var/lib/influxdb3/plugins - volumes: - - type: bind - source: ~/.influxdb3/core/data - target: /var/lib/influxdb3/data - - type: bind - source: ~/.influxdb3/core/plugins - target: /var/lib/influxdb3/plugins -``` - -The example `compose.yaml` starts InfluxDB 3 Core on port 8181 with: - -- Data persistence at `/var/lib/influxdb3` -- Plugin directory for Python processing engine -- Object storage configured (default: file) - -### Get Started Using InfluxDB 3 - -After starting your InfluxDB 3 server: - -- Follow the [Get started guide](https://docs.influxdata.com/influxdb3/core/get-started/) to create an auth token and database, and write, query, and process data. -- Use the [InfluxDB 3 Explorer UI](https://docs.influxdata.com/influxdb3/explorer/) to write data, create dashboards, explore metrics, and manage databases - -### InfluxDB 3 Server Options - -Customize your deployment with available [server options](https://docs.influxdata.com/influxdb3/core/reference/clis/influxdb3/serve/): - -```bash -# View all available options -docker run --rm influxdb:3-core influxdb3 serve --help -``` - ## Using InfluxDB v2 *InfluxDB v2 is a previous version. Consider InfluxDB 3 Core for new deployments.* -### Start InfluxDB v2 +Enter the following command to start InfluxDB v2 initialized with custom configuration: ```bash docker run -d -p 8086:8086 \ @@ -221,7 +223,7 @@ For detailed instructions, see the [InfluxDB v2 Docker Compose documentation](ht *InfluxDB v1 is a previous version. Consider InfluxDB 3 Core for new deployments.* -```console +```bash docker run -d -p 8086:8086 \ -v $PWD:/var/lib/influxdb \ influxdb:1.11 @@ -232,7 +234,7 @@ This starts InfluxDB v1 with: - HTTP API on port 8086 - Data persisted to current directory -For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). +For more information, see the [InfluxDB v1 Docker documentation](https://docs.influxdata.com/influxdb/v1/introduction/install/docker/). For v1 Enterprise installation, see the [InfluxDB Enterprise v1 documentation](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/docker/). # Image Variants @@ -250,135 +252,6 @@ This variant is useful when final image size being as small as possible is your To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). -## `influxdb:1-data` - -*Using this image for [InfluxDB Enterprise](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file) requires a valid InfluxData [license key](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/#license-key-or-file).* - -This image contains the enterprise data node package for clustering. It supports all of the same options as the InfluxDB 1.x OSS image, but it needs port 8088 to be exposed to the meta nodes. - -Refer to the `influxdb:1-meta` variant for directions on how to setup a cluster. - -## `influxdb:1-meta` - -*This image requires a valid license key from InfluxData.* Please visit our [products page](https://www.influxdata.com/products/) to learn more. - -This image contains the enterprise meta node package for clustering. It is meant to be used in conjunction with the `influxdb:1-data` package of the same version. - -### Using this Image - -#### Specifying the license key - -The license key can be specified using either an environment variable or by overriding the configuration file. If you specify the license key directly, the container needs to be able to access the InfluxData portal. - -```console -docker run -p 8089:8089 -p 8091:8091 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= - influxdb:1-meta -``` - -#### Running the container - -The examples below will use docker's built-in networking capability. If you use the port exposing feature, the host port and the container port need to be the same. - -First, create a docker network: - -```console -docker network create influxdb -``` - -Start three meta nodes. This is the suggested number of meta nodes. We do not recommend running more or less. If you choose to run more or less, be sure that the number of meta nodes is odd. The hostname must be set on each container to the address that will be used to access the meta node. When using docker networks, the hostname should be made the same as the name of the container. - -```console -docker run -d --name=influxdb-meta-0 --network=influxdb \ - -h influxdb-meta-0 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:1-meta -docker run -d --name=influxdb-meta-1 --network=influxdb \ - -h influxdb-meta-1 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:1-meta -docker run -d --name=influxdb-meta-2 --network=influxdb \ - -h influxdb-meta-2 \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:1-meta -``` - -When setting the hostname, you can use `-h ` or you can directly set the environment variable using `-e INFLUXDB_HOSTNAME=`. - -After starting the meta nodes, you need to tell them about each other. Choose one of the meta nodes and run `influxd-ctl` in the container. - -```console -docker exec influxdb-meta-0 \ - influxd-ctl add-meta influxdb-meta-1:8091 -docker exec influxdb-meta-0 \ - influxd-ctl add-meta influxdb-meta-2:8091 -``` - -Or you can just start a single meta node. If you setup a single meta node, you do not need to use `influxd-ctl add-meta`. - -```console -docker run -d --name=influxdb-meta --network=influxdb \ - -h influxdb-meta \ - -e INFLUXDB_ENTERPRISE_LICENSE_KEY= \ - influxdb:1-meta -single-server -``` - -#### Connecting the data nodes - -Start the data nodes using `influxdb:data` with similar command line arguments to the meta nodes. You can start as many data nodes as are allowed by your license. - -```console -docker run -d --name=influxdb-data-0 --network=influxdb \ - -h influxdb-data-0 \ - -e INFLUXDB_LICENSE_KEY= \ - influxdb:1-data -``` - -You can add `-p 8086:8086` to expose the http port to the host machine. After starting the container, choose one of the meta nodes and add the data node to it. - -```console -docker exec influxdb-meta-0 \ - influxd-ctl add-data influxdb-data-0:8088 -``` - -Perform these same steps for any other data nodes that you want to add. - -You can now connect to any of the running data nodes to use your cluster. - -See the [influxdb](https://hub.docker.com/_/influxdb/) image documentation for more details on how to use the data node images. - -#### Configuration - -InfluxDB Meta can be either configured from a config file or using environment variables. To mount a configuration file and use it with the server, you can use this command: - -Generate the default configuration file: - -```console -docker run --rm influxdb:meta influxd-meta config > influxdb-meta.conf -``` - -Modify the default configuration, which will now be available under `$PWD`. Then start the InfluxDB Meta container. - -```console -docker run \ - -v $PWD/influxdb-meta.conf:/etc/influxdb/influxdb-meta.conf:ro \ - influxdb:1-meta -config /etc/influxdb/influxdb-meta.conf -``` - -Modify `$PWD` to the directory where you want to store the configuration file. - -For environment variables, the format is `INFLUXDB_$SECTION_$NAME`. All dashes (`-`) are replaced with underscores (`_`). If the variable isn't in a section, then omit that part. - -Examples: - -```console -INFLUXDB_REPORTING_DISABLED=true -INFLUXDB_META_DIR=/path/to/metadir -INFLUXDB_ENTERPRISE_REGISTRATION_ENABLED=true -``` - -For more information, see how to [Install InfluxDB Enterprise meta nodes](https://docs.influxdata.com/enterprise_influxdb/v1/introduction/installation/meta_node_installation/). - # License View [license information](https://github.com/influxdata/influxdb/blob/master/LICENSE) for the software contained in this image. From c826c7795b0288af789d341340ba8a2b653d299c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Aug 2025 10:10:32 -0700 Subject: [PATCH 2461/2686] Run update.sh --- composer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/README.md b/composer/README.md index cdfa267bfe12..bab40bdf049b 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.10`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/1992e740d9584be61ea3130e18193276cf989cf5/latest/Dockerfile) +- [`2.8.11`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/f6200de569370dd62b4b142b74fd6473e9d7e1f6/latest/Dockerfile) - [`2.2.25`, `2.2`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/2.2/Dockerfile) From 691d12ed5b3a5e36e917a52fc24fd177b94d9c1a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Aug 2025 12:10:29 -0700 Subject: [PATCH 2462/2686] Run update.sh --- mongo/README.md | 49 ++++++++++++------------------------------- oraclelinux/README.md | 22 +++++++++---------- 2 files changed, 24 insertions(+), 47 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index e0fa20a94a3f..f312ed76ebec 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.13-rc2-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/Dockerfile) +- [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) -- [`8.0.13-rc2-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.13-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.13-rc2-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.13-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.13-rc2-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8.0.12-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) - -- [`8.0.12-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`8.0.12-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`8.0.12-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.13-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) @@ -70,35 +62,20 @@ WARNING: ## Shared Tags -- `8.0.13-rc2`, `8.0-rc`: - - - [`8.0.13-rc2-noble`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/Dockerfile) - - [`8.0.13-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.13-rc2-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.13-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.13-rc2-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.13-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c84b5fe05b138e5c57c04ca94bc166e77b31af08/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `8.0.12`, `8.0`, `8`, `latest`: +- `8.0.13`, `8.0`, `8`, `latest`: - - [`8.0.12-noble`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/Dockerfile) - - [`8.0.12-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.13-noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) + - [`8.0.13-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.12-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.13-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.12-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.12-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.13-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.12-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.13-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/186b7e49c6c1cacceffcefd17b6d411d233e72ac/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) - `7.0.23`, `7.0`, `7`: diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c5c9f158a93e..4d138dca3398 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/84e7de0a91a548c336ae3e8b1e37dd432ba58ba7/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7-slim-fips/Dockerfile) # Quick reference (cont.) From d2620590b1ff495b00cedb1675256b78ba1cd1c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 21 Aug 2025 13:10:28 -0700 Subject: [PATCH 2463/2686] Run update.sh --- haproxy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index a4bd9d652706..fec365f97bab 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev6`, `3.3-dev`, `3.3-dev6-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.3/Dockerfile) +- [`3.3-dev7`, `3.3-dev`, `3.3-dev7-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/8f63da4a118ce01253d4a1bc4a88a897989e8ee6/3.3/Dockerfile) -- [`3.3-dev6-alpine`, `3.3-dev-alpine`, `3.3-dev6-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/65c563d1acf447e3db0f03f531302fdd1a39c738/3.3/alpine/Dockerfile) +- [`3.3-dev7-alpine`, `3.3-dev-alpine`, `3.3-dev7-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/8f63da4a118ce01253d4a1bc4a88a897989e8ee6/3.3/alpine/Dockerfile) - [`3.2.4`, `3.2`, `latest`, `lts`, `3.2.4-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/Dockerfile) From c07f91121bb1d5d6cb251b57422205566f9b25af Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Aug 2025 10:10:32 -0700 Subject: [PATCH 2464/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 88ff96d846f3..e761186f4116 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.6-mariadb-tomcat`, `17.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.3`, `17.4-mysql-tomcat`, `17.4.3-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.3-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.3-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/3124f5461041a31df19126df2da33843b82ff30a/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.10`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mysql-tomcat/Dockerfile) From 72c1187b4213ce336fddfbcb52f2435164f8f664 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Aug 2025 11:10:29 -0700 Subject: [PATCH 2465/2686] Run update.sh --- golang/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/golang/README.md b/golang/README.md index 3d7734d0277e..c9b1150627d9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,9 +28,9 @@ WARNING: ## Simple Tags -- [`1.25.0-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/trixie/Dockerfile) +- [`1.25.0-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/trixie/Dockerfile) -- [`1.25.0-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/bookworm/Dockerfile) +- [`1.25.0-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/bookworm/Dockerfile) - [`1.25.0-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.0-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/alpine3.22/Dockerfile) @@ -44,9 +44,9 @@ WARNING: - [`1.25.0-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.6-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/1.24/trixie/Dockerfile) +- [`1.24.6-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/trixie/Dockerfile) -- [`1.24.6-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/bookworm/Dockerfile) +- [`1.24.6-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/bookworm/Dockerfile) - [`1.24.6-alpine3.22`, `1.24-alpine3.22`, `1.24.6-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.22/Dockerfile) @@ -60,9 +60,9 @@ WARNING: - [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250815-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/trixie/Dockerfile) +- [`tip-20250815-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/trixie/Dockerfile) -- [`tip-20250815-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/bookworm/Dockerfile) +- [`tip-20250815-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/bookworm/Dockerfile) - [`tip-20250815-alpine3.22`, `tip-alpine3.22`, `tip-20250815-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/alpine3.22/Dockerfile) @@ -72,7 +72,7 @@ WARNING: - `1.25.0`, `1.25`, `1`, `latest`: - - [`1.25.0-trixie`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/trixie/Dockerfile) + - [`1.25.0-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/trixie/Dockerfile) - [`1.25.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.25.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) @@ -88,7 +88,7 @@ WARNING: - `1.24.6`, `1.24`: - - [`1.24.6-trixie`](https://github.com/docker-library/golang/blob/86aa8cede992eb96d9aea9038208be9384af71be/1.24/trixie/Dockerfile) + - [`1.24.6-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/trixie/Dockerfile) - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) @@ -104,7 +104,7 @@ WARNING: - `tip-20250815`, `tip`: - - [`tip-20250815-trixie`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/trixie/Dockerfile) + - [`tip-20250815-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/trixie/Dockerfile) # Quick reference (cont.) From 6dd9d0efa1ba13931c184720ad2f63779772378a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 22 Aug 2025 17:10:51 -0700 Subject: [PATCH 2466/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index f58157b76233..13a8830ab4a3 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.4`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/93e6f0b2a07742f7e023ddf20115eab0099e7cd1/6/debian/Dockerfile) +- [`6.0.5`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/268610fc7ea18f293eb51c4533fef9c1cbb802be/6/debian/Dockerfile) -- [`6.0.4-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/93e6f0b2a07742f7e023ddf20115eab0099e7cd1/6/alpine/Dockerfile) +- [`6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/268610fc7ea18f293eb51c4533fef9c1cbb802be/6/alpine/Dockerfile) - [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) From 533f28f951ee219ee1c899c747eb829a14ac6400 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 22 Aug 2025 16:47:59 -0700 Subject: [PATCH 2467/2686] Deprecate the Notary image --- notary/README-short.txt | 2 +- notary/deprecated.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 notary/deprecated.md diff --git a/notary/README-short.txt b/notary/README-short.txt index 99f135d97a13..c73b1569f901 100644 --- a/notary/README-short.txt +++ b/notary/README-short.txt @@ -1 +1 @@ -Notary server and signer cooperatively handle signing and distribution of notary repositories. +DEPRECATED; Notary server and signer cooperatively handle signing and distribution diff --git a/notary/deprecated.md b/notary/deprecated.md new file mode 100644 index 000000000000..f3bc92d7224b --- /dev/null +++ b/notary/deprecated.md @@ -0,0 +1 @@ +The [upstream Notary project](https://github.com/notaryproject/notary) was archived as of July 30, 2025. For more information, see [notaryproject/.github#70](https://github.com/notaryproject/.github/issues/70). From 4ffa54112c232512b2e5bc9d41b4ca29d748927f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 25 Aug 2025 14:10:27 -0700 Subject: [PATCH 2468/2686] Run update.sh --- amazonlinux/README.md | 4 +- archlinux/README.md | 6 +-- caddy/README.md | 34 +++++++-------- gazebo/README.md | 6 +-- golang/README.md | 12 +++--- notary/README.md | 4 ++ openjdk/README.md | 40 +++++++++--------- perl/README.md | 96 +++++++++++++++++++++---------------------- varnish/README.md | 4 +- 9 files changed, 104 insertions(+), 102 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index a54a443cb053..6cf05019b3c4 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.8.20250808.1`](https://github.com/amazonlinux/container-images/blob/94f86e7a853963227c332a030c651668c70850b9/Dockerfile) +- [`2023`, `latest`, `2023.8.20250818.0`](https://github.com/amazonlinux/container-images/blob/749d179d33ea914415e7c369f39f6329a01852d0/Dockerfile) -- [`2`, `2.0.20250808.1`](https://github.com/amazonlinux/container-images/blob/0a084d30ee45ac3299f958e7b37088a12f87b250/Dockerfile) +- [`2`, `2.0.20250818.2`](https://github.com/amazonlinux/container-images/blob/768f7e30b46c745fc4ec82b0f8362ecd7cded497/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/archlinux/README.md b/archlinux/README.md index ab3f889f6097..09c43955a2e3 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.base) +- [`latest`, `base`, `base-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.base) -- [`base-devel`, `base-devel-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250817.0.405639`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/5f7a18761cc5a8e2469416aca9e41a9e87bcb038/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/caddy/README.md b/caddy/README.md index 15e84b7ccff9..5e8276ca166f 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -28,36 +28,36 @@ WARNING: ## Simple Tags -- [`2.10.0-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/alpine/Dockerfile) +- [`2.10.2-alpine`, `2.10-alpine`, `2-alpine`, `alpine`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/alpine/Dockerfile) -- [`2.10.0-builder-alpine`, `2.10-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) +- [`2.10.2-builder-alpine`, `2.10-builder-alpine`, `2-builder-alpine`, `builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/builder/Dockerfile) -- [`2.10.0-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) +- [`2.10.2-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2022/Dockerfile) -- [`2.10.0-windowsservercore-ltsc2025`, `2.10-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) +- [`2.10.2-windowsservercore-ltsc2025`, `2.10-windowsservercore-ltsc2025`, `2-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2025/Dockerfile) -- [`2.10.0-builder-windowsservercore-ltsc2022`, `2.10-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) +- [`2.10.2-builder-windowsservercore-ltsc2022`, `2.10-builder-windowsservercore-ltsc2022`, `2-builder-windowsservercore-ltsc2022`, `builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows-builder/ltsc2022/Dockerfile) -- [`2.10.0-builder-windowsservercore-ltsc2025`, `2.10-builder-windowsservercore-ltsc2025`, `2-builder-windowsservercore-ltsc2025`, `builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows-builder/ltsc2025/Dockerfile) +- [`2.10.2-builder-windowsservercore-ltsc2025`, `2.10-builder-windowsservercore-ltsc2025`, `2-builder-windowsservercore-ltsc2025`, `builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows-builder/ltsc2025/Dockerfile) ## Shared Tags -- `2.10.0`, `2.10`, `2`, `latest`: +- `2.10.2`, `2.10`, `2`, `latest`: - - [`2.10.0-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/alpine/Dockerfile) - - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) - - [`2.10.0-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) + - [`2.10.2-alpine`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/alpine/Dockerfile) + - [`2.10.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2022/Dockerfile) + - [`2.10.2-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2025/Dockerfile) -- `2.10.0-builder`, `2.10-builder`, `2-builder`, `builder`: +- `2.10.2-builder`, `2.10-builder`, `2-builder`, `builder`: - - [`2.10.0-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/builder/Dockerfile) - - [`2.10.0-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows-builder/ltsc2022/Dockerfile) - - [`2.10.0-builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows-builder/ltsc2025/Dockerfile) + - [`2.10.2-builder-alpine`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/builder/Dockerfile) + - [`2.10.2-builder-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows-builder/ltsc2022/Dockerfile) + - [`2.10.2-builder-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows-builder/ltsc2025/Dockerfile) -- `2.10.0-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.10.2-windowsservercore`, `2.10-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.10.0-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/aa3e73e0731fbca665be75edef9fbb60d3169278/2.10/windows/ltsc2022/Dockerfile) - - [`2.10.0-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/b4226f27405e98d9330ca807a80807d5d523ebba/2.10/windows/ltsc2025/Dockerfile) + - [`2.10.2-windowsservercore-ltsc2022`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2022/Dockerfile) + - [`2.10.2-windowsservercore-ltsc2025`](https://github.com/caddyserver/caddy-docker/blob/5572371a83e48fd0368a4917d0fc48e44ef30582/2.10/windows/ltsc2025/Dockerfile) # Quick reference (cont.) diff --git a/gazebo/README.md b/gazebo/README.md index 81d832c172f0..bb0c4286014a 100644 --- a/gazebo/README.md +++ b/gazebo/README.md @@ -24,9 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`gzserver11`, `gzserver11-focal`](https://github.com/osrf/docker_images/blob/f7bb3258d4814deec1eca7e46cbb8d7f4b054431/gazebo/11/ubuntu/focal/gzserver11/Dockerfile) - -- [`libgazebo11`, `libgazebo11-focal`, `latest`](https://github.com/osrf/docker_images/blob/f7bb3258d4814deec1eca7e46cbb8d7f4b054431/gazebo/11/ubuntu/focal/libgazebo11/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -34,7 +32,7 @@ WARNING: [https://github.com/osrf/docker_images/issues](https://github.com/osrf/docker_images/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/gazebo/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/gazebo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/gazebo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/gazebo)) diff --git a/golang/README.md b/golang/README.md index c9b1150627d9..29555e00d5d8 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250815-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/trixie/Dockerfile) +- [`tip-20250823-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/trixie/Dockerfile) -- [`tip-20250815-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/bookworm/Dockerfile) +- [`tip-20250823-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/bookworm/Dockerfile) -- [`tip-20250815-alpine3.22`, `tip-alpine3.22`, `tip-20250815-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/alpine3.22/Dockerfile) +- [`tip-20250823-alpine3.22`, `tip-alpine3.22`, `tip-20250823-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/alpine3.22/Dockerfile) -- [`tip-20250815-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b5b0e8d0c9bd602ed49202e3b1471fb77f896231/tip/alpine3.21/Dockerfile) +- [`tip-20250823-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250815`, `tip`: +- `tip-20250823`, `tip`: - - [`tip-20250815-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/tip/trixie/Dockerfile) + - [`tip-20250823-trixie`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/notary/README.md b/notary/README.md index 832df259bae0..9fea159ddefd 100644 --- a/notary/README.md +++ b/notary/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +The [upstream Notary project](https://github.com/notaryproject/notary) was archived as of July 30, 2025. For more information, see [notaryproject/.github#70](https://github.com/notaryproject/.github/issues/70). + # Quick reference - **Maintained by**: diff --git a/openjdk/README.md b/openjdk/README.md index c4e50ee2705a..e6d134fdf7c7 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,25 +42,25 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-11-jdk-oraclelinux9`, `26-ea-11-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-11-jdk-oracle`, `26-ea-11-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-12-jdk-oraclelinux9`, `26-ea-12-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-12-jdk-oracle`, `26-ea-12-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-11-jdk-oraclelinux8`, `26-ea-11-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-12-jdk-oraclelinux8`, `26-ea-12-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-11-jdk-trixie`, `26-ea-11-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/trixie/Dockerfile) +- [`26-ea-12-jdk-trixie`, `26-ea-12-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/trixie/Dockerfile) -- [`26-ea-11-jdk-slim-trixie`, `26-ea-11-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-11-jdk-slim`, `26-ea-11-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-12-jdk-slim-trixie`, `26-ea-12-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-12-jdk-slim`, `26-ea-12-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-11-jdk-bookworm`, `26-ea-11-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/bookworm/Dockerfile) +- [`26-ea-12-jdk-bookworm`, `26-ea-12-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/bookworm/Dockerfile) -- [`26-ea-11-jdk-slim-bookworm`, `26-ea-11-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-12-jdk-slim-bookworm`, `26-ea-12-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-11-jdk-windowsservercore-ltsc2025`, `26-ea-11-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-12-jdk-windowsservercore-ltsc2025`, `26-ea-12-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-11-jdk-windowsservercore-ltsc2022`, `26-ea-11-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-12-jdk-windowsservercore-ltsc2022`, `26-ea-12-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-11-jdk-nanoserver-ltsc2025`, `26-ea-11-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-12-jdk-nanoserver-ltsc2025`, `26-ea-12-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-11-jdk-nanoserver-ltsc2022`, `26-ea-11-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-12-jdk-nanoserver-ltsc2022`, `26-ea-12-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) @@ -84,21 +84,21 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `26-ea-11-jdk`, `26-ea-11`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-12-jdk`, `26-ea-12`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-11-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-11-jdk-windowsservercore`, `26-ea-11-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-12-jdk-windowsservercore`, `26-ea-12-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-11-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-11-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-11-jdk-nanoserver`, `26-ea-11-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-12-jdk-nanoserver`, `26-ea-12-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-11-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-11-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/1b99f7d31a3315819afc6730b3eb350a0b078a25/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-12-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-12-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: diff --git a/perl/README.md b/perl/README.md index bf29148b67f3..421a71e2c694 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-trixie`, `5.42-trixie`, `5-trixie`, `trixie`, `stable-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-trixie/Dockerfile) +- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-trixie`, `5.42-trixie`, `5-trixie`, `trixie`, `stable-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-trixie/Dockerfile) -- [`5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-bookworm/Dockerfile) +- [`5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-bookworm/Dockerfile) -- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main-bullseye/Dockerfile) +- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-bullseye/Dockerfile) -- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-trixie`, `5.42-slim-trixie`, `5-slim-trixie`, `slim-trixie`, `stable-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-trixie/Dockerfile) +- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-trixie`, `5.42-slim-trixie`, `5-slim-trixie`, `slim-trixie`, `stable-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-trixie/Dockerfile) -- [`5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-bookworm/Dockerfile) +- [`5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-bookworm/Dockerfile) -- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim-bullseye/Dockerfile) +- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-bullseye/Dockerfile) -- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-trixie`, `5.42-threaded-trixie`, `5-threaded-trixie`, `threaded-trixie`, `stable-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-trixie/Dockerfile) +- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-trixie`, `5.42-threaded-trixie`, `5-threaded-trixie`, `threaded-trixie`, `stable-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-trixie/Dockerfile) -- [`5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-bookworm/Dockerfile) +- [`5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-bookworm/Dockerfile) -- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-main,threaded-bullseye/Dockerfile) +- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-bullseye/Dockerfile) -- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-trixie`, `5.42-slim-threaded-trixie`, `5-slim-threaded-trixie`, `slim-threaded-trixie`, `stable-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-trixie/Dockerfile) +- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-trixie`, `5.42-slim-threaded-trixie`, `5-slim-threaded-trixie`, `slim-threaded-trixie`, `stable-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-trixie/Dockerfile) -- [`5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-bookworm/Dockerfile) +- [`5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-bookworm/Dockerfile) -- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.042.000-slim,threaded-bullseye/Dockerfile) +- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-bullseye/Dockerfile) -- [`5.40.3`, `5.40`, `5.40.3-trixie`, `5.40-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-trixie/Dockerfile) +- [`5.40.3`, `5.40`, `5.40.3-trixie`, `5.40-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-trixie/Dockerfile) -- [`5.40.3-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-bookworm/Dockerfile) +- [`5.40.3-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-bookworm/Dockerfile) -- [`5.40.3-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main-bullseye/Dockerfile) +- [`5.40.3-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-bullseye/Dockerfile) -- [`5.40.3-slim`, `5.40-slim`, `5.40.3-slim-trixie`, `5.40-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-trixie/Dockerfile) +- [`5.40.3-slim`, `5.40-slim`, `5.40.3-slim-trixie`, `5.40-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-trixie/Dockerfile) -- [`5.40.3-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-bookworm/Dockerfile) +- [`5.40.3-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-bookworm/Dockerfile) -- [`5.40.3-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim-bullseye/Dockerfile) +- [`5.40.3-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-bullseye/Dockerfile) -- [`5.40.3-threaded`, `5.40-threaded`, `5.40.3-threaded-trixie`, `5.40-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-trixie/Dockerfile) +- [`5.40.3-threaded`, `5.40-threaded`, `5.40.3-threaded-trixie`, `5.40-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-trixie/Dockerfile) -- [`5.40.3-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-bookworm/Dockerfile) +- [`5.40.3-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-bookworm/Dockerfile) -- [`5.40.3-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-main,threaded-bullseye/Dockerfile) +- [`5.40.3-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-bullseye/Dockerfile) -- [`5.40.3-slim-threaded`, `5.40-slim-threaded`, `5.40.3-slim-threaded-trixie`, `5.40-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-trixie/Dockerfile) +- [`5.40.3-slim-threaded`, `5.40-slim-threaded`, `5.40.3-slim-threaded-trixie`, `5.40-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-trixie/Dockerfile) -- [`5.40.3-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-bookworm/Dockerfile) +- [`5.40.3-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-bookworm/Dockerfile) -- [`5.40.3-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.040.003-slim,threaded-bullseye/Dockerfile) +- [`5.40.3-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-bullseye/Dockerfile) -- [`5.38.5`, `5.38`, `5.38.5-trixie`, `5.38-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-trixie/Dockerfile) +- [`5.38.5`, `5.38`, `5.38.5-trixie`, `5.38-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-trixie/Dockerfile) -- [`5.38.5-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-bookworm/Dockerfile) +- [`5.38.5-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-bookworm/Dockerfile) -- [`5.38.5-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main-bullseye/Dockerfile) +- [`5.38.5-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-bullseye/Dockerfile) -- [`5.38.5-slim`, `5.38-slim`, `5.38.5-slim-trixie`, `5.38-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-trixie/Dockerfile) +- [`5.38.5-slim`, `5.38-slim`, `5.38.5-slim-trixie`, `5.38-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-trixie/Dockerfile) -- [`5.38.5-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-bookworm/Dockerfile) +- [`5.38.5-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-bookworm/Dockerfile) -- [`5.38.5-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim-bullseye/Dockerfile) +- [`5.38.5-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-bullseye/Dockerfile) -- [`5.38.5-threaded`, `5.38-threaded`, `5.38.5-threaded-trixie`, `5.38-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-trixie/Dockerfile) +- [`5.38.5-threaded`, `5.38-threaded`, `5.38.5-threaded-trixie`, `5.38-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-trixie/Dockerfile) -- [`5.38.5-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-bookworm/Dockerfile) +- [`5.38.5-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-bookworm/Dockerfile) -- [`5.38.5-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-main,threaded-bullseye/Dockerfile) +- [`5.38.5-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-bullseye/Dockerfile) -- [`5.38.5-slim-threaded`, `5.38-slim-threaded`, `5.38.5-slim-threaded-trixie`, `5.38-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-trixie/Dockerfile) +- [`5.38.5-slim-threaded`, `5.38-slim-threaded`, `5.38.5-slim-threaded-trixie`, `5.38-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-trixie/Dockerfile) -- [`5.38.5-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-bookworm/Dockerfile) +- [`5.38.5-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-bookworm/Dockerfile) -- [`5.38.5-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.038.005-slim,threaded-bullseye/Dockerfile) +- [`5.38.5-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-bullseye/Dockerfile) -- [`5.43.1`, `5.43`, `devel`, `5.43.1-trixie`, `5.43-trixie`, `devel-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-trixie/Dockerfile) +- [`5.43.2`, `5.43`, `devel`, `5.43.2-trixie`, `5.43-trixie`, `devel-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-trixie/Dockerfile) -- [`5.43.1-bookworm`, `5.43-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-bookworm/Dockerfile) +- [`5.43.2-bookworm`, `5.43-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-bookworm/Dockerfile) -- [`5.43.1-bullseye`, `5.43-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main-bullseye/Dockerfile) +- [`5.43.2-bullseye`, `5.43-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-bullseye/Dockerfile) -- [`5.43.1-slim`, `5.43-slim`, `devel-slim`, `5.43.1-slim-trixie`, `5.43-slim-trixie`, `devel-slim-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-trixie/Dockerfile) +- [`5.43.2-slim`, `5.43-slim`, `devel-slim`, `5.43.2-slim-trixie`, `5.43-slim-trixie`, `devel-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-trixie/Dockerfile) -- [`5.43.1-slim-bookworm`, `5.43-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-bookworm/Dockerfile) +- [`5.43.2-slim-bookworm`, `5.43-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-bookworm/Dockerfile) -- [`5.43.1-slim-bullseye`, `5.43-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim-bullseye/Dockerfile) +- [`5.43.2-slim-bullseye`, `5.43-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-bullseye/Dockerfile) -- [`5.43.1-threaded`, `5.43-threaded`, `devel-threaded`, `5.43.1-threaded-trixie`, `5.43-threaded-trixie`, `devel-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-trixie/Dockerfile) +- [`5.43.2-threaded`, `5.43-threaded`, `devel-threaded`, `5.43.2-threaded-trixie`, `5.43-threaded-trixie`, `devel-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-trixie/Dockerfile) -- [`5.43.1-threaded-bookworm`, `5.43-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-bookworm/Dockerfile) +- [`5.43.2-threaded-bookworm`, `5.43-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-bookworm/Dockerfile) -- [`5.43.1-threaded-bullseye`, `5.43-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-main,threaded-bullseye/Dockerfile) +- [`5.43.2-threaded-bullseye`, `5.43-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-bullseye/Dockerfile) -- [`5.43.1-slim-threaded`, `5.43-slim-threaded`, `devel-slim-threaded`, `5.43.1-slim-threaded-trixie`, `5.43-slim-threaded-trixie`, `devel-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-trixie/Dockerfile) +- [`5.43.2-slim-threaded`, `5.43-slim-threaded`, `devel-slim-threaded`, `5.43.2-slim-threaded-trixie`, `5.43-slim-threaded-trixie`, `devel-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-trixie/Dockerfile) -- [`5.43.1-slim-threaded-bookworm`, `5.43-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-bookworm/Dockerfile) +- [`5.43.2-slim-threaded-bookworm`, `5.43-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-bookworm/Dockerfile) -- [`5.43.1-slim-threaded-bullseye`, `5.43-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/a486bd459db06ccb6862b3a4b8831a5872d7b500/5.043.001-slim,threaded-bullseye/Dockerfile) +- [`5.43.2-slim-threaded-bullseye`, `5.43-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/varnish/README.md b/varnish/README.md index 144aa4032cce..dae0fa46a73c 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/22149a31ff7ca2f96d624175ee06419b42eafaa9/fresh/debian/Dockerfile) +- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/fb0aadb7c3eb09473d2e636db882929a108dd7ec/fresh/debian/Dockerfile) - [`fresh-alpine`, `7.7.2-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/fresh/alpine/Dockerfile) -- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/22149a31ff7ca2f96d624175ee06419b42eafaa9/old/debian/Dockerfile) +- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/fb0aadb7c3eb09473d2e636db882929a108dd7ec/old/debian/Dockerfile) - [`old-alpine`, `7.6.4-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/old/alpine/Dockerfile) From 549aa776e663689823599dbff9cdfd3940aea01c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Aug 2025 10:10:28 -0700 Subject: [PATCH 2469/2686] Run update.sh --- varnish/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index dae0fa46a73c..1b4ac6989479 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.2`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/fb0aadb7c3eb09473d2e636db882929a108dd7ec/fresh/debian/Dockerfile) +- [`fresh`, `7.7.3`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.7.2-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `7.7.3-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/fresh/alpine/Dockerfile) -- [`old`, `7.6.4`, `7.6`](https://github.com/varnish/docker-varnish/blob/fb0aadb7c3eb09473d2e636db882929a108dd7ec/old/debian/Dockerfile) +- [`old`, `7.6.5`, `7.6`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/old/debian/Dockerfile) -- [`old-alpine`, `7.6.4-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/8088573d7968abf4d69905cb76dd64b603f0d0f0/old/alpine/Dockerfile) +- [`old-alpine`, `7.6.5-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/old/alpine/Dockerfile) -- [`stable`, `6.0.15`, `6.0`](https://github.com/varnish/docker-varnish/blob/7489d188a63e4b649b3d57ff9fe50acea1de4c7f/stable/debian/Dockerfile) +- [`stable`, `6.0.16`, `6.0`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/stable/debian/Dockerfile) # Quick reference (cont.) From d439701a89c6e03a7a11b09b53571b02b1cce61d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Aug 2025 11:10:33 -0700 Subject: [PATCH 2470/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++++----------------------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 7173e2b5a00e..24fa002b104e 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.1.1561-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.1.1561-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.1.1561-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.1.1561-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.1.1561`, `temurin-8-tools-deps-1.12.1.1561-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1561-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.1.1561-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.1.1561-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.1.1561-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.1.1561-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.1.1561-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.1.1561`, `temurin-11-tools-deps-1.12.1.1561-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1561-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.1.1561-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.1.1561-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.1.1561-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.1.1561-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.1.1561-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.1.1561`, `temurin-17-tools-deps-1.12.1.1561-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1561-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.1.1561-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.1.1561-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.1.1561`, `temurin-21-tools-deps-1.12.1.1561-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.1.1561`, `tools-deps-1.12.1.1561-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.1.1561-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.1.1561-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.1.1561-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.1.1561-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.1.1561-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.1.1561-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1561-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.1.1561-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.1.1561-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.1.1561-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.1.1561-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.1.1561`, `temurin-24-tools-deps-1.12.1.1561-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.1.1561-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.1.1561-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.1.1561-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.1.1561-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1561-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.1.1561-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/d2d2ae64fa09bb42a4d323839eddfd85a77c1ede/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) From c28d0b53fcd3c7c0110ff9abeb37f558ede4fa4d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Aug 2025 15:10:49 -0700 Subject: [PATCH 2471/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- photon/README.md | 2 +- rust/README.md | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 4d138dca3398..2017e3d2e020 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d9d0a86768453a503dbf103d9e6485c456acffd3/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 372606e5e566..c813a8c66783 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250817`, `latest`](https://github.com/vmware/photon-docker-image/blob/6b2c9be82761660de7cab77d9fe4041611f9368d/docker/Dockerfile) +- [`5.0`, `5.0-20250826`, `latest`](https://github.com/vmware/photon-docker-image/blob/ac166b1929c73ab9303cc06036279fbfaf713c8d/docker/Dockerfile) - [`4.0`, `4.0-20250810`](https://github.com/vmware/photon-docker-image/blob/8e86c1fe4b1997c87a1376f197c394d92b93ac76/docker/Dockerfile) diff --git a/rust/README.md b/rust/README.md index f004c0cf6d78..2d8151747da9 100644 --- a/rust/README.md +++ b/rust/README.md @@ -32,9 +32,9 @@ WARNING: - [`1-slim-bookworm`, `1.89-slim-bookworm`, `1.89.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/Dockerfile) +- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/4a8b913f00f3a52547c2c6e9487e0b5d5aecabbf/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/4a8b913f00f3a52547c2c6e9487e0b5d5aecabbf/stable/trixie/slim/Dockerfile) - [`1-alpine3.20`, `1.89-alpine3.20`, `1.89.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.20/Dockerfile) @@ -48,7 +48,7 @@ WARNING: [https://github.com/rust-lang/docker-rust/issues](https://github.com/rust-lang/docker-rust/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rust/), [`s390x`](https://hub.docker.com/r/s390x/rust/) + [`amd64`](https://hub.docker.com/r/amd64/rust/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rust/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rust/), [`i386`](https://hub.docker.com/r/i386/rust/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rust/), [`riscv64`](https://hub.docker.com/r/riscv64/rust/), [`s390x`](https://hub.docker.com/r/s390x/rust/) - **Published image artifact details**: [repo-info repo's `repos/rust/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rust) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rust)) From 1bfbd659122a926e865c08b32d53dcbb33ef8a4b Mon Sep 17 00:00:00 2001 From: Alin Voinea Date: Wed, 27 Aug 2025 19:41:26 +0300 Subject: [PATCH 2472/2686] Plone: Add deprecation notice with info about Plone 6 Docker images (#2479) --- plone/README-short.txt | 2 +- plone/content.md | 136 ++++++++++++++++++++--------------------- plone/deprecated.md | 13 ++++ 3 files changed, 82 insertions(+), 69 deletions(-) create mode 100644 plone/deprecated.md diff --git a/plone/README-short.txt b/plone/README-short.txt index fb0da8a942ff..6f842ce50b45 100644 --- a/plone/README-short.txt +++ b/plone/README-short.txt @@ -1 +1 @@ -Plone is a free and open source content management system built on top of Zope. +DEPRECATED. Plone is a free and open source content management system built on top of Zope. diff --git a/plone/content.md b/plone/content.md index 730d861443bb..3e77bd91ae35 100644 --- a/plone/content.md +++ b/plone/content.md @@ -6,11 +6,10 @@ ## Features -- Images for Plone 5.x and Plone 4.x -- Enable add-ons via environment variables +- Enable add-ons via environment variables. - Choose between [Debian](https://www.debian.org/) or [Alpine](http://www.alpinelinux.org/) based images. -- Built-in RelStorage support, configurable via environment variables (requires Plone 5.2.4+) -- Built-in LDAP/AD support via pas.plugins.ldap (requires Plone 5.2.4+) +- Built-in RelStorage support, configurable via environment variables (requires Plone 5.2.4+). +- Built-in LDAP/AD support via `pas.plugins.ldap` (requires Plone 5.2.4+). ## Usage @@ -18,124 +17,125 @@ This will download and start the latest Plone 5 container, based on [Debian](https://www.debian.org/). -```console -$ docker run -p 8080:8080 %%IMAGE%% +```shell +docker run -p 8080:8080 %%IMAGE%% ``` -This image includes `EXPOSE 8080` (the Plone port), so standard container linking will make it automatically available to the linked containers. Now you can add a Plone Site at http://localhost:8080 - default Zope user and password are `admin/admin`. +This image includes `EXPOSE 8080` (the Plone port), so standard container linking will make it automatically available to the linked containers. Now you can add a Plone Site at http://localhost:8080. The default Zope user and password are `admin/admin`. ### Start Plone within a ZEO cluster -ZEO cluster are best suited for production setups, you will **need** a loadbalancer. +A ZEO cluster is best suited for production setups. You will **need** a load balancer. -Start ZEO server in the background +Start ZEO server in the background. -```console -$ docker run --name=zeo %%IMAGE%% zeo +```shell +docker run --name=zeo %%IMAGE%% zeo ``` -Start 2 Plone clients (also in the background) +Start two Plone clients, also in the background. -```console -$ docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8081:8080 %%IMAGE%% -$ docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8082:8080 %%IMAGE%% +```shell +docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8081:8080 %%IMAGE%% +docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8082:8080 %%IMAGE%% ``` ### Start Plone in debug mode -You can also start Plone in debug mode (`fg`) by running +You can also start Plone in debug mode (`fg`) by running the following command. -```console -$ docker run -p 8080:8080 %%IMAGE%% fg +```shell +docker run -p 8080:8080 %%IMAGE%% fg ``` ### Add-ons -You can enable Plone add-ons via the `ADDONS` environment variable +You can enable Plone add-ons via the `ADDONS` environment variable. -```console -$ docker run -p 8080:8080 -e PLONE_ADDONS="eea.facetednavigation Products.PloneFormGen" %%IMAGE%% +```shell +docker run -p 8080:8080 -e PLONE_ADDONS="eea.facetednavigation Products.PloneFormGen" %%IMAGE%% ``` -For more information on how to extend this image with your own custom settings, adding more add-ons, building it or mounting volumes, please refer to our [documentation](https://docs.plone.org/manage/docker/docs/index.html) +For more information on how to extend this image with your own custom settings, adding more add-ons, building it, or mounting volumes, please refer to the [Plone 5 documentation](https://5.docs.plone.org/manage/docker/docs/index.html). -## Supported Environment Variables +## Supported environment variables -The Plone image uses several environment variable that allow to specify a more specific setup. +The Plone image uses several environment variables. -### For Basic Usage +### Basic usage -- `ADDONS` - Customize Plone via Plone add-ons using this environment variable -- `SITE` - Add Plone instance with this id to `Data.fs` on first run. If NOT provided, you'll have to manually add a Plone Site via web UI -- `ZEO_ADDRESS` - This environment variable allows you to run Plone image as a ZEO client. -- `VERSIONS` - Use specific versions of Plone Add-on or python libraries +- `ADDONS` - Customize Plone via Plone add-ons using this environment variable. +- `SITE` - Add a Plone instance with this ID to `Data.fs` on first run. If *not* provided, you'll have to manually add a Plone site via the web UI. +- `ZEO_ADDRESS` - This environment variable allows you to run the Plone image as a ZEO client. +- `VERSIONS` - Use specific versions of Plone add-on or Python libraries. -Run Plone and install two addons (eea.facetednavigation and collective.easyform) +Run Plone and install two add-ons (`eea.facetednavigation` and `collective.easyform`). -```console -$ docker run -p 8080:8080 -e SITE="mysite" -e ADDONS="eea.facetednavigation collective.easyform" %%IMAGE%% +```shell +docker run -p 8080:8080 -e SITE="mysite" -e ADDONS="eea.facetednavigation collective.easyform" %%IMAGE%% ``` -To use specific add-ons versions: +To use specific add-on versions, change the environment variable arguments as shown. -```console - -e ADDONS="eea.facetednavigation collective.easyform" \ - -e VERSIONS="eea.facetednavigation=13.3 collective.easyform=2.1.0" +```shell +-e ADDONS="eea.facetednavigation collective.easyform" \ +-e VERSIONS="eea.facetednavigation=13.3 collective.easyform=2.1.0" ``` -RestAPI: +To use Plone REST API, start the Plone Docker image, then issue a command to `curl`. -```console -$ docker run -p 8080:8080 -e SITE=plone %%IMAGE%% - -$ curl -H 'Accept: application/json' http://localhost:8080/plone +```shell +docker run -p 8080:8080 -e SITE=plone %%IMAGE%% +curl -H 'Accept: application/json' http://localhost:8080/plone ``` -### For Advanced Usage +### Advanced usage + +For advanced usage, the images support the following environment variables. -**Plone:** +#### Plone -- `PLONE_ADDONS`, `ADDONS` - Customize Plone via Plone add-ons using this environment variable -- `PLONE_SITE`, `SITE` - Add Plone with this id to `Data.fs` on first run. If NOT provided, you'll have to manually add a Plone Site via web UI -- `PLONE_VERSIONS`, `VERSIONS` - Use specific versions of Plone Add-on or python libraries -- `PLONE_PROFILES, PROFILES` - GenericSetup profiles to include when `SITE` environment provided. -- `PLONE_ZCML`, `ZCML` - Include custom Plone add-ons ZCML files (former `BUILDOUT_ZCML`) -- `PLONE_DEVELOP`, `DEVELOP` - Develop new or existing Plone add-ons (former `BUILDOUT_DEVELOP`) +- `PLONE_ADDONS`, `ADDONS` - Customize Plone via Plone add-ons using these environment variables. +- `PLONE_SITE`, `SITE` - Add a Plone instance with this ID to `Data.fs` on first run. If *not* provided, you'll have to manually add a Plone site via the web UI. +- `PLONE_VERSIONS`, `VERSIONS` - Use specific versions of Plone add-on or Python libraries. +- `PLONE_PROFILES, PROFILES` - GenericSetup profiles to include when the `SITE` environment is provided. +- `PLONE_ZCML`, `ZCML` - Include custom Plone add-on ZCML files (formerly `BUILDOUT_ZCML`). +- `PLONE_DEVELOP`, `DEVELOP` - Develop new or existing Plone add-ons (formerly `BUILDOUT_DEVELOP`). -**ZEO:** +#### ZEO -- `ZEO_ADDRESS` - This environment variable allows you to run Plone image as a ZEO client. +- `ZEO_ADDRESS` - This environment variable allows you to run the Plone image as a ZEO client. - `ZEO_READ_ONLY` - Run Plone as a read-only ZEO client. Defaults to `off`. - `ZEO_CLIENT_READ_ONLY_FALLBACK` - A flag indicating whether a read-only remote storage should be acceptable as a fallback when no writable storages are available. Defaults to `false`. -- `ZEO_SHARED_BLOB_DIR` - Set this to on if the ZEO server and the instance have access to the same directory. Defaults to `off`. +- `ZEO_SHARED_BLOB_DIR` - Set this to `on` if the ZEO server and the instance have access to the same directory. Defaults to `off`. - `ZEO_STORAGE` - Set the storage number of the ZEO storage. Defaults to `1`. - `ZEO_CLIENT_CACHE_SIZE` - Set the size of the ZEO client cache. Defaults to `128MB`. -- `ZEO_PACK_KEEP_OLD` - Can be set to false to disable the creation of `*.fs.old` files before the pack is run. Defaults to true. +- `ZEO_PACK_KEEP_OLD` - Can be set to `false` to disable the creation of `*.fs.old` files before the pack is run. Defaults to `true`. - `HEALTH_CHECK_TIMEOUT` - Time in seconds to wait until health check starts. Defaults to `1` second. - `HEALTH_CHECK_INTERVAL` - Interval in seconds to check that the Zope application is still healthy. Defaults to `1` second. -**CORS:** +#### CORS -- `CORS_ALLOW_ORIGIN` - Origins that are allowed access to the resource. Either a comma separated list of origins, e.g. `http://example.net,http://mydomain.com` or `*`. Defaults to `http://localhost:3000,http://127.0.0.1:3000` -- `CORS_ALLOW_METHODS` - A comma separated list of HTTP method names that are allowed by this CORS policy, e.g. `DELETE,GET,OPTIONS,PATCH,POST,PUT`. Defaults to `DELETE,GET,OPTIONS,PATCH,POST,PUT` -- `CORS_ALLOW_CREDENTIALS` - Indicates whether the resource supports user credentials in the request. Defaults to `true` -- `CORS_EXPOSE_HEADERS` - A comma separated list of response headers clients can access, e.g. `Content-Length,X-My-Header`. Defaults to `Content-Length,X-My-Header` -- `CORS_ALLOW_HEADERS` - A comma separated list of request headers allowed to be sent by the client, e.g. `X-My-Header`. Defaults to `Accept,Authorization,Content-Type,X-Custom-Header` -- `CORS_MAX_AGE` - Indicates how long the results of a preflight request can be cached. Defaults to `3600` +- `CORS_ALLOW_ORIGIN` - Origins that are allowed access to the resource. Either a comma separated list of origins, for example, `https://example.net,https://mydomain.com`, or `*`. Defaults to `http://localhost:3000,http://127.0.0.1:3000`. +- `CORS_ALLOW_METHODS` - A comma separated list of HTTP method names that are allowed by this CORS policy, for example, `DELETE,GET,OPTIONS,PATCH,POST,PUT`. Defaults to `DELETE,GET,OPTIONS,PATCH,POST,PUT`. +- `CORS_ALLOW_CREDENTIALS` - Indicates whether the resource supports user credentials in the request. Defaults to `true`. +- `CORS_EXPOSE_HEADERS` - A comma separated list of response headers clients can access, for example, `Content-Length,X-My-Header`. Defaults to `Content-Length,X-My-Header`. +- `CORS_ALLOW_HEADERS` - A comma separated list of request headers allowed to be sent by the client, for example, `X-My-Header`. Defaults to `Accept,Authorization,Content-Type,X-Custom-Header`. +- `CORS_MAX_AGE` - Indicates how long the results of a preflight request can be cached. Defaults to `3600`. -**RELSTORAGE:** +#### RelStorage -- `RELSTORAGE_ADAPTER_OPTIONS` - A comma separated list of RelStorage adapter options to set for the plone instance (using [plone.recipe.zope2instance](https://relstorage.readthedocs.io/en/latest/configure-application.html#configuring-plone)). This is required in order to use RelStorage. +- `RELSTORAGE_ADAPTER_OPTIONS` - A comma separated list of RelStorage adapter options to set for the plone instance using [`plone.recipe.zope2instance`](https://relstorage.readthedocs.io/en/latest/configure-application.html#configuring-plone). This is required to use RelStorage. All other available environment variables match exactly with RelStorage settings, according to the [settings specification available on the docs](https://relstorage.readthedocs.io/en/latest/relstorage-options.html). -- `RELSTORAGE_NAME` - **name** - The name of the storage. -- `RELSTORAGE_READ_ONLY` - **read-only** - If true, only reads may be executed against the storage. -- `RELSTORAGE_KEEP_HISTORY` - **keep-history** - If this option is set to true (the default), the adapter will create and use a history-preserving database schema (like FileStorage). -- `RELSTORAGE_BLOB_DIR` - **blob-dir** - If supplied, the storage will provide ZODB blob support; this option specifies the name of the directory to hold blob data. The directory will be created if it does not exist. If no value (or an empty value) is provided, then no blob support will be provided. Default: `/plone/instance/var/blobstorage` +- `RELSTORAGE_NAME` - `name` - The name of the storage. +- `RELSTORAGE_READ_ONLY` - `read-only` - If `true`, only reads may be executed against the storage. +- `RELSTORAGE_KEEP_HISTORY` - `keep-history` - If this option is set to `true`, the default value, then the adapter will create and use a history-preserving database schema, such as FileStorage. +- `RELSTORAGE_BLOB_DIR` - `blob-dir` - If supplied, the storage will provide ZODB BLOB support. This option specifies the name of the directory to hold BLOB data. The directory will be created if it doesn't exist. If no value, or an empty value, is provided, then no BLOB support will be provided. Defaults to `/plone/instance/var/blobstorage`. - [See more](https://relstorage.readthedocs.io/en/latest/relstorage-options.html) + [See more RelStorage options](https://relstorage.readthedocs.io/en/latest/relstorage-options.html). ## Documentation -Full documentation for end users can be found online at [docs.plone.org](https://docs.plone.org/manage/docker/docs/usage/index.html) +Full documentation for end users can be found at [5.docs.plone.org](https://5.docs.plone.org/manage/docker/docs/index.html). diff --git a/plone/deprecated.md b/plone/deprecated.md new file mode 100644 index 000000000000..fd6ead9fae68 --- /dev/null +++ b/plone/deprecated.md @@ -0,0 +1,13 @@ +# ⚠️ DEPRECATION NOTICE ⚠️ + +- Plone 4.x is no longer supported. +- Plone 5.x is no longer supported. +- It is strongly recommended to migrate to the latest available Plone version. See https://plone.org/download/release-schedule for details. + +Beginning with Plone 6.x, the frontend and backend run in separate Docker images. There's also a a ZEO server Docker image. All Plone 6.0 and later images are supported by the Plone Foundation and are maintained by community volunteers. + +- [Plone Backend](https://github.com/plone/plone-backend) +- [Plone Frontend](https://github.com/plone/plone-frontend) +- [ZEO Server](https://github.com/plone/plone-zeo/) + +For Docker image usage, see [Plone 6 Documentation](https://6.docs.plone.org/install/containers/images/index.html). From f7aab00c68984a40e27b5564709c43db1cb7bb01 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 27 Aug 2025 10:10:24 -0700 Subject: [PATCH 2473/2686] Run update.sh --- almalinux/README.md | 16 ++--- bash/README.md | 2 +- dart/README.md | 4 +- influxdb/README.md | 28 ++++----- mongo/README.md | 49 ++++----------- neo4j/README.md | 8 +-- plone/README.md | 150 ++++++++++++++++++++++++-------------------- traefik/README.md | 18 ++---- 8 files changed, 130 insertions(+), 145 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 39007546a535..5392140cd70e 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250803`](https://github.com/AlmaLinux/container-images/blob/67b5f61aa97e2b67a336dbb8d5bf259c21d766fc/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250825`](https://github.com/AlmaLinux/container-images/blob/1a12ae7d9d6988a916b02cb40e7ebc4ac838a07f/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/67b5f61aa97e2b67a336dbb8d5bf259c21d766fc/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/1a12ae7d9d6988a916b02cb40e7ebc4ac838a07f/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250803`](https://github.com/AlmaLinux/container-images/blob/134e01c926e064d501ec8f78bc885201de5c9f3d/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250825`](https://github.com/AlmaLinux/container-images/blob/2329fb843dd96f1be74261cb99babdf8a1af0c62/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/134e01c926e064d501ec8f78bc885201de5c9f3d/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/2329fb843dd96f1be74261cb99babdf8a1af0c62/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250803`](https://github.com/AlmaLinux/container-images/blob/4c66ec9c37e6790d3adeba56bbb86aed3eef86c6/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250825`](https://github.com/AlmaLinux/container-images/blob/ca844ff771fb01ffaeeed9ed68b0876db5cea2c4/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/4c66ec9c37e6790d3adeba56bbb86aed3eef86c6/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/ca844ff771fb01ffaeeed9ed68b0876db5cea2c4/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250803`](https://github.com/AlmaLinux/container-images/blob/4467954b1a3e5c74fa854632cecd3f9d26fe378f/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250825`](https://github.com/AlmaLinux/container-images/blob/be04b15e73a2a5d4059c1c3dbdeecced91be21ab/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250803`](https://github.com/AlmaLinux/container-images/blob/4467954b1a3e5c74fa854632cecd3f9d26fe378f/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/be04b15e73a2a5d4059c1c3dbdeecced91be21ab/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/bash/README.md b/bash/README.md index f16707713e8d..8fde457ed5dd 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250814`, `devel`, `devel-20250814-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4b911213676104bfb49511d23f449b23781a2bed/devel/Dockerfile) +- [`devel-20250822`, `devel`, `devel-20250822-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4a835c8f4fa1dff656a10a8623499c5544fe6cb6/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 7dafdd6ff1bd..284adf161ba0 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.1-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.1`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/691b6999e375ae8c0c1f1c9b4a379923ee861716/stable/trixie/Dockerfile) +- [`3.9.2-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.2`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/da0b319059580bd505f8342bf396804777ed115b/stable/trixie/Dockerfile) -- [`3.10.0-75.2.beta-sdk`, `beta-sdk`, `3.10.0-75.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/691b6999e375ae8c0c1f1c9b4a379923ee861716/beta/trixie/Dockerfile) +- [`3.10.0-75.2.beta-sdk`, `beta-sdk`, `3.10.0-75.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/da0b319059580bd505f8342bf396804777ed115b/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 7362bf8b2ec6..99bbad92183b 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.3-core`, `3.3.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/3.3-core/Dockerfile) +- [`3-core`, `3.4-core`, `3.4.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/3.4-core/Dockerfile) -- [`3-enterprise`, `3.3-enterprise`, `3.3.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/083e6d5844e467459ffa5f4927cd114342a727ea/influxdb/3.3-enterprise/Dockerfile) +- [`3-enterprise`, `3.4-enterprise`, `3.4.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index f312ed76ebec..fbd768b5e6c5 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -44,21 +44,13 @@ WARNING: - [`7.0.23-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.26-rc0-jammy`, `6.0-rc-jammy`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/Dockerfile) +- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/Dockerfile) -- [`6.0.26-rc0-windowsservercore-ltsc2025`, `6.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`6.0.26-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`6.0.26-rc0-windowsservercore-ltsc2022`, `6.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`6.0.26-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.26-rc0-nanoserver-ltsc2022`, `6.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`6.0.25-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) - -- [`6.0.25-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`6.0.25-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`6.0.25-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`6.0.26-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags @@ -92,35 +84,20 @@ WARNING: - [`7.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- `6.0.26-rc0`, `6.0-rc`: - - - [`6.0.26-rc0-jammy`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/Dockerfile) - - [`6.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `6.0.26-rc0-windowsservercore`, `6.0-rc-windowsservercore`: - - - [`6.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `6.0.26-rc0-nanoserver`, `6.0-rc-nanoserver`: - - - [`6.0.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/a1ad68b0730302fd43ba1318bc0e493f7de49427/6.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `6.0.25`, `6.0`, `6`: +- `6.0.26`, `6.0`, `6`: - - [`6.0.25-jammy`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/Dockerfile) - - [`6.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/Dockerfile) + - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.25-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: +- `6.0.26-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - [`6.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `6.0.25-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: +- `6.0.26-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - [`6.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/9901b8fcec5335b12c2658ca4c9aa73a645d5360/6.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`6.0.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 25c34b6c4c0b..bd5379cc96d0 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.07.1-enterprise-ubi9`, `2025.07-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/ubi9/enterprise/Dockerfile) -- [`5.26.10-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.10-community`, `5.26-community`, `5-community`, `5.26.10-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.10`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/bullseye/community/Dockerfile) +- [`5.26.11-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.11-community`, `5.26-community`, `5-community`, `5.26.11-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.11`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/bullseye/community/Dockerfile) -- [`5.26.10-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.10-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/bullseye/enterprise/Dockerfile) +- [`5.26.11-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.11-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/bullseye/enterprise/Dockerfile) -- [`5.26.10-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.10-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/ubi9/community/Dockerfile) +- [`5.26.11-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.11-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/ubi9/community/Dockerfile) -- [`5.26.10-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/26ed3b6bcf5b8141ec4641a6822688142d3e7f80/5.26.10/ubi9/enterprise/Dockerfile) +- [`5.26.11-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/ubi9/enterprise/Dockerfile) - [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) diff --git a/plone/README.md b/plone/README.md index dd7c00c0cdbd..b58959f0dbb1 100644 --- a/plone/README.md +++ b/plone/README.md @@ -14,6 +14,20 @@ WARNING: --> +# ⚠️ DEPRECATION NOTICE ⚠️ + +- Plone 4.x is no longer supported. +- Plone 5.x is no longer supported. +- It is strongly recommended to migrate to the latest available Plone version. See https://plone.org/download/release-schedule for details. + +Beginning with Plone 6.x, the frontend and backend run in separate Docker images. There's also a a ZEO server Docker image. All Plone 6.0 and later images are supported by the Plone Foundation and are maintained by community volunteers. + +- [Plone Backend](https://github.com/plone/plone-backend) +- [Plone Frontend](https://github.com/plone/plone-frontend) +- [ZEO Server](https://github.com/plone/plone-zeo/) + +For Docker image usage, see [Plone 6 Documentation](https://6.docs.plone.org/install/containers/images/index.html). + # Quick reference - **Maintained by**: @@ -53,11 +67,10 @@ WARNING: ## Features -- Images for Plone 5.x and Plone 4.x -- Enable add-ons via environment variables +- Enable add-ons via environment variables. - Choose between [Debian](https://www.debian.org/) or [Alpine](http://www.alpinelinux.org/) based images. -- Built-in RelStorage support, configurable via environment variables (requires Plone 5.2.4+) -- Built-in LDAP/AD support via pas.plugins.ldap (requires Plone 5.2.4+) +- Built-in RelStorage support, configurable via environment variables (requires Plone 5.2.4+). +- Built-in LDAP/AD support via `pas.plugins.ldap` (requires Plone 5.2.4+). ## Usage @@ -65,127 +78,128 @@ WARNING: This will download and start the latest Plone 5 container, based on [Debian](https://www.debian.org/). -```console -$ docker run -p 8080:8080 plone +```shell +docker run -p 8080:8080 plone ``` -This image includes `EXPOSE 8080` (the Plone port), so standard container linking will make it automatically available to the linked containers. Now you can add a Plone Site at http://localhost:8080 - default Zope user and password are `admin/admin`. +This image includes `EXPOSE 8080` (the Plone port), so standard container linking will make it automatically available to the linked containers. Now you can add a Plone Site at http://localhost:8080. The default Zope user and password are `admin/admin`. ### Start Plone within a ZEO cluster -ZEO cluster are best suited for production setups, you will **need** a loadbalancer. +A ZEO cluster is best suited for production setups. You will **need** a load balancer. -Start ZEO server in the background +Start ZEO server in the background. -```console -$ docker run --name=zeo plone zeo +```shell +docker run --name=zeo plone zeo ``` -Start 2 Plone clients (also in the background) +Start two Plone clients, also in the background. -```console -$ docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8081:8080 plone -$ docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8082:8080 plone +```shell +docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8081:8080 plone +docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8082:8080 plone ``` ### Start Plone in debug mode -You can also start Plone in debug mode (`fg`) by running +You can also start Plone in debug mode (`fg`) by running the following command. -```console -$ docker run -p 8080:8080 plone fg +```shell +docker run -p 8080:8080 plone fg ``` ### Add-ons -You can enable Plone add-ons via the `ADDONS` environment variable +You can enable Plone add-ons via the `ADDONS` environment variable. -```console -$ docker run -p 8080:8080 -e PLONE_ADDONS="eea.facetednavigation Products.PloneFormGen" plone +```shell +docker run -p 8080:8080 -e PLONE_ADDONS="eea.facetednavigation Products.PloneFormGen" plone ``` -For more information on how to extend this image with your own custom settings, adding more add-ons, building it or mounting volumes, please refer to our [documentation](https://docs.plone.org/manage/docker/docs/index.html) +For more information on how to extend this image with your own custom settings, adding more add-ons, building it, or mounting volumes, please refer to the [Plone 5 documentation](https://5.docs.plone.org/manage/docker/docs/index.html). -## Supported Environment Variables +## Supported environment variables -The Plone image uses several environment variable that allow to specify a more specific setup. +The Plone image uses several environment variables. -### For Basic Usage +### Basic usage -- `ADDONS` - Customize Plone via Plone add-ons using this environment variable -- `SITE` - Add Plone instance with this id to `Data.fs` on first run. If NOT provided, you'll have to manually add a Plone Site via web UI -- `ZEO_ADDRESS` - This environment variable allows you to run Plone image as a ZEO client. -- `VERSIONS` - Use specific versions of Plone Add-on or python libraries +- `ADDONS` - Customize Plone via Plone add-ons using this environment variable. +- `SITE` - Add a Plone instance with this ID to `Data.fs` on first run. If *not* provided, you'll have to manually add a Plone site via the web UI. +- `ZEO_ADDRESS` - This environment variable allows you to run the Plone image as a ZEO client. +- `VERSIONS` - Use specific versions of Plone add-on or Python libraries. -Run Plone and install two addons (eea.facetednavigation and collective.easyform) +Run Plone and install two add-ons (`eea.facetednavigation` and `collective.easyform`). -```console -$ docker run -p 8080:8080 -e SITE="mysite" -e ADDONS="eea.facetednavigation collective.easyform" plone +```shell +docker run -p 8080:8080 -e SITE="mysite" -e ADDONS="eea.facetednavigation collective.easyform" plone ``` -To use specific add-ons versions: +To use specific add-on versions, change the environment variable arguments as shown. -```console - -e ADDONS="eea.facetednavigation collective.easyform" \ - -e VERSIONS="eea.facetednavigation=13.3 collective.easyform=2.1.0" +```shell +-e ADDONS="eea.facetednavigation collective.easyform" \ +-e VERSIONS="eea.facetednavigation=13.3 collective.easyform=2.1.0" ``` -RestAPI: - -```console -$ docker run -p 8080:8080 -e SITE=plone plone +To use Plone REST API, start the Plone Docker image, then issue a command to `curl`. -$ curl -H 'Accept: application/json' http://localhost:8080/plone +```shell +docker run -p 8080:8080 -e SITE=plone plone +curl -H 'Accept: application/json' http://localhost:8080/plone ``` -### For Advanced Usage +### Advanced usage + +For advanced usage, the images support the following environment variables. -**Plone:** +#### Plone -- `PLONE_ADDONS`, `ADDONS` - Customize Plone via Plone add-ons using this environment variable -- `PLONE_SITE`, `SITE` - Add Plone with this id to `Data.fs` on first run. If NOT provided, you'll have to manually add a Plone Site via web UI -- `PLONE_VERSIONS`, `VERSIONS` - Use specific versions of Plone Add-on or python libraries -- `PLONE_PROFILES, PROFILES` - GenericSetup profiles to include when `SITE` environment provided. -- `PLONE_ZCML`, `ZCML` - Include custom Plone add-ons ZCML files (former `BUILDOUT_ZCML`) -- `PLONE_DEVELOP`, `DEVELOP` - Develop new or existing Plone add-ons (former `BUILDOUT_DEVELOP`) +- `PLONE_ADDONS`, `ADDONS` - Customize Plone via Plone add-ons using these environment variables. +- `PLONE_SITE`, `SITE` - Add a Plone instance with this ID to `Data.fs` on first run. If *not* provided, you'll have to manually add a Plone site via the web UI. +- `PLONE_VERSIONS`, `VERSIONS` - Use specific versions of Plone add-on or Python libraries. +- `PLONE_PROFILES, PROFILES` - GenericSetup profiles to include when the `SITE` environment is provided. +- `PLONE_ZCML`, `ZCML` - Include custom Plone add-on ZCML files (formerly `BUILDOUT_ZCML`). +- `PLONE_DEVELOP`, `DEVELOP` - Develop new or existing Plone add-ons (formerly `BUILDOUT_DEVELOP`). -**ZEO:** +#### ZEO -- `ZEO_ADDRESS` - This environment variable allows you to run Plone image as a ZEO client. +- `ZEO_ADDRESS` - This environment variable allows you to run the Plone image as a ZEO client. - `ZEO_READ_ONLY` - Run Plone as a read-only ZEO client. Defaults to `off`. - `ZEO_CLIENT_READ_ONLY_FALLBACK` - A flag indicating whether a read-only remote storage should be acceptable as a fallback when no writable storages are available. Defaults to `false`. -- `ZEO_SHARED_BLOB_DIR` - Set this to on if the ZEO server and the instance have access to the same directory. Defaults to `off`. +- `ZEO_SHARED_BLOB_DIR` - Set this to `on` if the ZEO server and the instance have access to the same directory. Defaults to `off`. - `ZEO_STORAGE` - Set the storage number of the ZEO storage. Defaults to `1`. - `ZEO_CLIENT_CACHE_SIZE` - Set the size of the ZEO client cache. Defaults to `128MB`. -- `ZEO_PACK_KEEP_OLD` - Can be set to false to disable the creation of `*.fs.old` files before the pack is run. Defaults to true. +- `ZEO_PACK_KEEP_OLD` - Can be set to `false` to disable the creation of `*.fs.old` files before the pack is run. Defaults to `true`. - `HEALTH_CHECK_TIMEOUT` - Time in seconds to wait until health check starts. Defaults to `1` second. - `HEALTH_CHECK_INTERVAL` - Interval in seconds to check that the Zope application is still healthy. Defaults to `1` second. -**CORS:** +#### CORS -- `CORS_ALLOW_ORIGIN` - Origins that are allowed access to the resource. Either a comma separated list of origins, e.g. `http://example.net,http://mydomain.com` or `*`. Defaults to `http://localhost:3000,http://127.0.0.1:3000` -- `CORS_ALLOW_METHODS` - A comma separated list of HTTP method names that are allowed by this CORS policy, e.g. `DELETE,GET,OPTIONS,PATCH,POST,PUT`. Defaults to `DELETE,GET,OPTIONS,PATCH,POST,PUT` -- `CORS_ALLOW_CREDENTIALS` - Indicates whether the resource supports user credentials in the request. Defaults to `true` -- `CORS_EXPOSE_HEADERS` - A comma separated list of response headers clients can access, e.g. `Content-Length,X-My-Header`. Defaults to `Content-Length,X-My-Header` -- `CORS_ALLOW_HEADERS` - A comma separated list of request headers allowed to be sent by the client, e.g. `X-My-Header`. Defaults to `Accept,Authorization,Content-Type,X-Custom-Header` -- `CORS_MAX_AGE` - Indicates how long the results of a preflight request can be cached. Defaults to `3600` +- `CORS_ALLOW_ORIGIN` - Origins that are allowed access to the resource. Either a comma separated list of origins, for example, `https://example.net,https://mydomain.com`, or `*`. Defaults to `http://localhost:3000,http://127.0.0.1:3000`. +- `CORS_ALLOW_METHODS` - A comma separated list of HTTP method names that are allowed by this CORS policy, for example, `DELETE,GET,OPTIONS,PATCH,POST,PUT`. Defaults to `DELETE,GET,OPTIONS,PATCH,POST,PUT`. +- `CORS_ALLOW_CREDENTIALS` - Indicates whether the resource supports user credentials in the request. Defaults to `true`. +- `CORS_EXPOSE_HEADERS` - A comma separated list of response headers clients can access, for example, `Content-Length,X-My-Header`. Defaults to `Content-Length,X-My-Header`. +- `CORS_ALLOW_HEADERS` - A comma separated list of request headers allowed to be sent by the client, for example, `X-My-Header`. Defaults to `Accept,Authorization,Content-Type,X-Custom-Header`. +- `CORS_MAX_AGE` - Indicates how long the results of a preflight request can be cached. Defaults to `3600`. -**RELSTORAGE:** +#### RelStorage -- `RELSTORAGE_ADAPTER_OPTIONS` - A comma separated list of RelStorage adapter options to set for the plone instance (using [plone.recipe.zope2instance](https://relstorage.readthedocs.io/en/latest/configure-application.html#configuring-plone)). This is required in order to use RelStorage. +- `RELSTORAGE_ADAPTER_OPTIONS` - A comma separated list of RelStorage adapter options to set for the plone instance using [`plone.recipe.zope2instance`](https://relstorage.readthedocs.io/en/latest/configure-application.html#configuring-plone). This is required to use RelStorage. All other available environment variables match exactly with RelStorage settings, according to the [settings specification available on the docs](https://relstorage.readthedocs.io/en/latest/relstorage-options.html). -- `RELSTORAGE_NAME` - **name** - The name of the storage. -- `RELSTORAGE_READ_ONLY` - **read-only** - If true, only reads may be executed against the storage. -- `RELSTORAGE_KEEP_HISTORY` - **keep-history** - If this option is set to true (the default), the adapter will create and use a history-preserving database schema (like FileStorage). -- `RELSTORAGE_BLOB_DIR` - **blob-dir** - If supplied, the storage will provide ZODB blob support; this option specifies the name of the directory to hold blob data. The directory will be created if it does not exist. If no value (or an empty value) is provided, then no blob support will be provided. Default: `/plone/instance/var/blobstorage` +- `RELSTORAGE_NAME` - `name` - The name of the storage. +- `RELSTORAGE_READ_ONLY` - `read-only` - If `true`, only reads may be executed against the storage. +- `RELSTORAGE_KEEP_HISTORY` - `keep-history` - If this option is set to `true`, the default value, then the adapter will create and use a history-preserving database schema, such as FileStorage. +- `RELSTORAGE_BLOB_DIR` - `blob-dir` - If supplied, the storage will provide ZODB BLOB support. This option specifies the name of the directory to hold BLOB data. The directory will be created if it doesn't exist. If no value, or an empty value, is provided, then no BLOB support will be provided. Defaults to `/plone/instance/var/blobstorage`. - [See more](https://relstorage.readthedocs.io/en/latest/relstorage-options.html) + [See more RelStorage options](https://relstorage.readthedocs.io/en/latest/relstorage-options.html). ## Documentation -Full documentation for end users can be found online at [docs.plone.org](https://docs.plone.org/manage/docker/docs/usage/index.html) +Full documentation for end users can be found at [5.docs.plone.org](https://5.docs.plone.org/manage/docker/docs/index.html). # License diff --git a/traefik/README.md b/traefik/README.md index bda1f658e5a2..8c33cd09ebce 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,23 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.0-windowsservercore-ltsc2022`, `3.5.0-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.1-windowsservercore-ltsc2022`, `3.5.1-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.0-nanoserver-ltsc2022`, `3.5.0-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.1-nanoserver-ltsc2022`, `3.5.1-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.0`, `3.5.0`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/10c579a8e3c43ef2a7d438aed4911091967b9fbc/v3.5/alpine/Dockerfile) +- [`v3.5.1`, `3.5.1`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/alpine/Dockerfile) -- [`v3.4.5-windowsservercore-ltsc2022`, `3.4.5-windowsservercore-ltsc2022`, `v3.4-windowsservercore-ltsc2022`, `3.4-windowsservercore-ltsc2022`, `chaource-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/windows/servercore-ltsc2022/Dockerfile) +- [`v2.11.29-windowsservercore-ltsc2022`, `2.11.29-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/servercore-ltsc2022/Dockerfile) -- [`v3.4.5-nanoserver-ltsc2022`, `3.4.5-nanoserver-ltsc2022`, `v3.4-nanoserver-ltsc2022`, `3.4-nanoserver-ltsc2022`, `chaource-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/windows/nanoserver-ltsc2022/Dockerfile) +- [`v2.11.29-nanoserver-ltsc2022`, `2.11.29-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.4.5`, `3.4.5`, `v3.4`, `3.4`, `chaource`](https://github.com/traefik/traefik-library-image/blob/5001c678e01099e5f40f21e926c5cb9382cbc26d/v3.4/alpine/Dockerfile) - -- [`v2.11.28-windowsservercore-ltsc2022`, `2.11.28-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/windows/servercore-ltsc2022/Dockerfile) - -- [`v2.11.28-nanoserver-ltsc2022`, `2.11.28-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/windows/nanoserver-ltsc2022/Dockerfile) - -- [`v2.11.28`, `2.11.28`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/6056d5aff8500ad756a785ac6dec09e3907e4298/v2.11/alpine/Dockerfile) +- [`v2.11.29`, `2.11.29`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/alpine/Dockerfile) # Quick reference (cont.) From f98688e03a8a1021b4d6d81461c3516a46e95f4f Mon Sep 17 00:00:00 2001 From: jbleduigou Date: Thu, 28 Aug 2025 15:01:13 +0200 Subject: [PATCH 2474/2686] update to golang 1.25 --- golang/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/golang/content.md b/golang/content.md index 7797caf5a0f7..c63a9397ffa0 100644 --- a/golang/content.md +++ b/golang/content.md @@ -15,7 +15,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM %%IMAGE%%:1.24 +FROM %%IMAGE%%:1.25 WORKDIR /usr/src/app @@ -41,13 +41,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.25 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.25 make ``` ## Cross-compile your app inside the Docker container @@ -55,13 +55,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.24 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 %%IMAGE%%:1.25 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.24 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.25 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH From a0f10742906e31ea7bdfb2a2ab5bf0c141a189cc Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 06:12:04 -0700 Subject: [PATCH 2475/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 07c49d4ab951..45c1a499e0a3 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.6-alpine3.21`, `24.6.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.7-alpine3.21`, `24.7.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.6-alpine`, `24.6-alpine3.22`, `24.6.0-alpine`, `24.6.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.7-alpine`, `24.7-alpine3.22`, `24.7.0-alpine`, `24.7.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.6`, `24.6-bookworm`, `24.6.0`, `24.6.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.7`, `24.7-bookworm`, `24.7.0`, `24.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.6-bookworm-slim`, `24.6-slim`, `24.6.0-bookworm-slim`, `24.6.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.7-bookworm-slim`, `24.7-slim`, `24.7.0-bookworm-slim`, `24.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.6-bullseye`, `24.6.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.7-bullseye`, `24.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.6-bullseye-slim`, `24.6.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.7-bullseye-slim`, `24.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.6-trixie`, `24.6.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/trixie/Dockerfile) +- [`24-trixie`, `24.7-trixie`, `24.7.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.6-trixie-slim`, `24.6.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/dea02d37e9858fd72c5f63b493e9eea74a672c1b/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.7-trixie-slim`, `24.7.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.18-alpine3.21`, `22.18.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.21/Dockerfile) From 7dbc5d676e17f8da1ba5181b448d7b89ddeffc17 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 10:10:30 -0700 Subject: [PATCH 2476/2686] Run update.sh --- neo4j/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index bd5379cc96d0..c3f2b046d69f 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.07.1-community-bullseye`, `2025.07-community-bullseye`, `2025-community-bullseye`, `2025.07.1-community`, `2025.07-community`, `2025-community`, `2025.07.1-bullseye`, `2025.07-bullseye`, `2025-bullseye`, `2025.07.1`, `2025.07`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/bullseye/community/Dockerfile) +- [`2025.08.0-community-bullseye`, `2025.08-community-bullseye`, `2025-community-bullseye`, `2025.08.0-community`, `2025.08-community`, `2025-community`, `2025.08.0-bullseye`, `2025.08-bullseye`, `2025-bullseye`, `2025.08.0`, `2025.08`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/bullseye/community/Dockerfile) -- [`2025.07.1-enterprise-bullseye`, `2025.07-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.07.1-enterprise`, `2025.07-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/bullseye/enterprise/Dockerfile) +- [`2025.08.0-enterprise-bullseye`, `2025.08-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.08.0-enterprise`, `2025.08-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/bullseye/enterprise/Dockerfile) -- [`2025.07.1-community-ubi9`, `2025.07-community-ubi9`, `2025-community-ubi9`, `2025.07.1-ubi9`, `2025.07-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/ubi9/community/Dockerfile) +- [`2025.08.0-community-ubi9`, `2025.08-community-ubi9`, `2025-community-ubi9`, `2025.08.0-ubi9`, `2025.08-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/ubi9/community/Dockerfile) -- [`2025.07.1-enterprise-ubi9`, `2025.07-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/b9617865dd142ab65f5d8199a670f4e63b56fdc8/2025.07.1/ubi9/enterprise/Dockerfile) +- [`2025.08.0-enterprise-ubi9`, `2025.08-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/ubi9/enterprise/Dockerfile) - [`5.26.11-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.11-community`, `5.26-community`, `5-community`, `5.26.11-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.11`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/bullseye/community/Dockerfile) @@ -40,9 +40,9 @@ WARNING: - [`5.26.11-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/ubi9/enterprise/Dockerfile) -- [`4.4.44`, `4.4.44-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/community/Dockerfile) +- [`4.4.45`, `4.4.45-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ad97122c1c0883832851bf30d1cddc51ee5bafb3/4.4.45/bullseye/community/Dockerfile) -- [`4.4.44-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a0fc315f717639f19237bffd1ef1b9b4ecab4182/4.4.44/bullseye/enterprise/Dockerfile) +- [`4.4.45-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ad97122c1c0883832851bf30d1cddc51ee5bafb3/4.4.45/bullseye/enterprise/Dockerfile) # Quick reference (cont.) From c9cb457488afe2ce19c15a0c0af4ec226eaa7832 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 11:10:27 -0700 Subject: [PATCH 2477/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- fedora/README.md | 6 +++--- golang/README.md | 10 +++++----- percona/README.md | 2 +- rabbitmq/README.md | 8 ++++---- xwiki/README.md | 12 ++++++------ 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 708feaf895c3..19e0abfef62e 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.4`, `25.7.4-jammy`, `25.7.4.11`, `25.7.4.11-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.7.4.11/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.5`, `25.7.5-jammy`, `25.7.5.34`, `25.7.5.34-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.7.5.34/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.6.8.10/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.6.8.10/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.9`, `25.5.9-jammy`, `25.5.9.14`, `25.5.9.14-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.5.9.14/Dockerfile.ubuntu) +- [`25.5`, `25.5-jammy`, `25.5.10`, `25.5.10-jammy`, `25.5.10.95`, `25.5.10.95-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.5.10.95/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/4168f9e95770cb38d5251f04dd2df51f088b2067/server/25.3.6.56/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 7ca1efaee786..284e4586def9 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ff23717c9acc1ab32ef37417b4fee194a1af1a65/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9fe9c60f8e2039097a47f8cb24586cdfd049382/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/53fba86f68cfa54ec3bf62495b871c13128ce38a/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9b4abb66480fc5fa0b6353bb3eaf163371e3ab0/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e39e58d83994f1e4535f6f7748bd634ac9beb558/x86_64/Dockerfile) +- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ec7803f6ed24683e124c16e8199c0f7c8199752a/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index 29555e00d5d8..d7e3b611d634 100644 --- a/golang/README.md +++ b/golang/README.md @@ -142,7 +142,7 @@ Go (a.k.a., Golang) is a programming language first developed at Google. It is a The most straightforward way to use this image is to use a Go container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project (assuming it uses `go.mod` for dependency management): ```dockerfile -FROM golang:1.24 +FROM golang:1.25 WORKDIR /usr/src/app @@ -168,13 +168,13 @@ $ docker run -it --rm --name my-running-app my-golang-app There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like: ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 go build -v ``` This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to `myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command inside your container. ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 make +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 make ``` ## Cross-compile your app inside the Docker container @@ -182,13 +182,13 @@ $ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 make If you need to compile your application for a platform other than `linux/amd64` (such as `windows/386`): ```console -$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.24 go build -v +$ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.25 go build -v ``` Alternatively, you can build for multiple platforms at once: ```console -$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.24 bash +$ docker run --rm -it -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.25 bash $ for GOOS in darwin linux; do > for GOARCH in 386 amd64; do > export GOOS GOARCH diff --git a/percona/README.md b/percona/README.md index 0c766719f92c..7c11683252d3 100644 --- a/percona/README.md +++ b/percona/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.0.42-33-centos`, `8.0-centos`, `8-centos`, `8.0.42-33`, `8.0`, `8`, `ps-8.0.42-33`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/9cd781adb27010da39faab5daca25c1e72db0af4/percona-server-8.0/Dockerfile-dockerhub) +- [`8.0.43-34-centos`, `8.0-centos`, `8-centos`, `8.0.43-34`, `8.0`, `8`, `ps-8.0.43-34`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/1a5a6f51cda0ad561e5afcbd9b1ec9e2dd3564d1/percona-server-8.0/Dockerfile-dockerhub) - [`psmdb-8.0.8`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-8.0/Dockerfile-dockerhub) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index f069b9b505de..426731d9a196 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.1`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-beta.2`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/ubuntu/Dockerfile) -- [`4.2.0-beta.1-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) +- [`4.2.0-beta.2-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.1-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/Dockerfile) +- [`4.2.0-beta.2-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/alpine/Dockerfile) -- [`4.2.0-beta.1-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) +- [`4.2.0-beta.2-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) - [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/ubuntu/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index e761186f4116..b7f7655e5bef 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.6`, `17.6.0`, `17-mysql-tomcat`, `17.6-mysql-tomcat`, `17.6.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mysql-tomcat/Dockerfile) +- [`17`, `17.7`, `17.7.0`, `17-mysql-tomcat`, `17.7-mysql-tomcat`, `17.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.6-postgres-tomcat`, `17.6.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.7-postgres-tomcat`, `17.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.6-mariadb-tomcat`, `17.6.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/86822213c6df9f780302fb62c6d5320ce202bd82/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.7-mariadb-tomcat`, `17.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mariadb-tomcat/Dockerfile) - [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mysql-tomcat/Dockerfile) @@ -36,11 +36,11 @@ WARNING: - [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.10`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.10-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.11`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.10-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.10-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0734bdee65bbf874deba610c9b775fa0d0eb9b44/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From cf95090d75f3ff695e58197dcea62fa1705b65f2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 12:10:23 -0700 Subject: [PATCH 2478/2686] Run update.sh --- gcc/README.md | 2 +- influxdb/README.md | 28 +++++------ php/README.md | 112 +++++++++++-------------------------------- phpmyadmin/README.md | 8 ++-- 4 files changed, 47 insertions(+), 103 deletions(-) diff --git a/gcc/README.md b/gcc/README.md index 3a57ea5af6b5..7f3e3fc8d9c1 100644 --- a/gcc/README.md +++ b/gcc/README.md @@ -38,7 +38,7 @@ WARNING: [https://github.com/docker-library/gcc/issues](https://github.com/docker-library/gcc/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`riscv64`](https://hub.docker.com/r/riscv64/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/) + [`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/) - **Published image artifact details**: [repo-info repo's `repos/gcc/` directory](https://github.com/docker-library/repo-info/blob/master/repos/gcc) ([history](https://github.com/docker-library/repo-info/commits/master/repos/gcc)) diff --git a/influxdb/README.md b/influxdb/README.md index 99bbad92183b..d95af908e356 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/3.4-core/Dockerfile) +- [`3-core`, `3.4-core`, `3.4.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/3.4-core/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/d78cac225beb930733294f22aefb4e004641dcf4/influxdb/3.4-enterprise/Dockerfile) +- [`3-enterprise`, `3.4-enterprise`, `3.4.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index dc4f4eed4fa8..f9066d627fa9 100644 --- a/php/README.md +++ b/php/README.md @@ -52,117 +52,61 @@ WARNING: - [`8.5.0beta1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/zts/Dockerfile) -- [`8.4.12RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.12RC1-trixie`, `8.4-rc-trixie`, `8.4.12RC1-cli`, `8.4-rc-cli`, `8.4.12RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/cli/Dockerfile) +- [`8.4.12-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.12-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.12-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.12`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/cli/Dockerfile) -- [`8.4.12RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.12RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/apache/Dockerfile) +- [`8.4.12-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.12-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/apache/Dockerfile) -- [`8.4.12RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.12RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/fpm/Dockerfile) +- [`8.4.12-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.12-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/fpm/Dockerfile) -- [`8.4.12RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.12RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/trixie/zts/Dockerfile) +- [`8.4.12-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.12-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/zts/Dockerfile) -- [`8.4.12RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.12RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.12-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.12-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/cli/Dockerfile) -- [`8.4.12RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.12-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/apache/Dockerfile) -- [`8.4.12RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.12-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/fpm/Dockerfile) -- [`8.4.12RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.12-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/zts/Dockerfile) -- [`8.4.12RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.12RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.12RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.12RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.12-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.12-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.12-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.12-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.12RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.12RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.12-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.12-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.12RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.12RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.12-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.12-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.12RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.12RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.12-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.12-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.12RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.12-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.12RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/2cbbf786b2546506c91948988145eb1b1d3ff2e6/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.12-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.11-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.11-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.11-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.11`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/cli/Dockerfile) +- [`8.3.25-cli-trixie`, `8.3-cli-trixie`, `8.3.25-trixie`, `8.3-trixie`, `8.3.25-cli`, `8.3-cli`, `8.3.25`, `8.3`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/cli/Dockerfile) -- [`8.4.11-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.11-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/apache/Dockerfile) +- [`8.3.25-apache-trixie`, `8.3-apache-trixie`, `8.3.25-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/apache/Dockerfile) -- [`8.4.11-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.11-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/fpm/Dockerfile) +- [`8.3.25-fpm-trixie`, `8.3-fpm-trixie`, `8.3.25-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/fpm/Dockerfile) -- [`8.4.11-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.11-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/trixie/zts/Dockerfile) +- [`8.3.25-zts-trixie`, `8.3-zts-trixie`, `8.3.25-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/zts/Dockerfile) -- [`8.4.11-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.11-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/cli/Dockerfile) +- [`8.3.25-cli-bookworm`, `8.3-cli-bookworm`, `8.3.25-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/cli/Dockerfile) -- [`8.4.11-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/apache/Dockerfile) +- [`8.3.25-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/apache/Dockerfile) -- [`8.4.11-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/fpm/Dockerfile) +- [`8.3.25-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/fpm/Dockerfile) -- [`8.4.11-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.4/bookworm/zts/Dockerfile) +- [`8.3.25-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/zts/Dockerfile) -- [`8.4.11-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.11-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.11-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.11-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/cli/Dockerfile) +- [`8.3.25-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.25-alpine3.22`, `8.3-alpine3.22`, `8.3.25-cli-alpine`, `8.3-cli-alpine`, `8.3.25-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/cli/Dockerfile) -- [`8.4.11-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.11-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/fpm/Dockerfile) +- [`8.3.25-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.25-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/fpm/Dockerfile) -- [`8.4.11-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.11-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.22/zts/Dockerfile) +- [`8.3.25-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.25-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/zts/Dockerfile) -- [`8.4.11-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.11-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.25-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.25-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.11-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.25-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.11-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/160b04773958930fac297f64be7c2f8e682902d8/8.4/alpine3.21/zts/Dockerfile) - -- [`8.3.25RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.25RC1-trixie`, `8.3-rc-trixie`, `8.3.25RC1-cli`, `8.3-rc-cli`, `8.3.25RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/cli/Dockerfile) - -- [`8.3.25RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.25RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/apache/Dockerfile) - -- [`8.3.25RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.25RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/fpm/Dockerfile) - -- [`8.3.25RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.25RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/trixie/zts/Dockerfile) - -- [`8.3.25RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.25RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/cli/Dockerfile) - -- [`8.3.25RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/apache/Dockerfile) - -- [`8.3.25RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/fpm/Dockerfile) - -- [`8.3.25RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/bookworm/zts/Dockerfile) - -- [`8.3.25RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.25RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.25RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.25RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/cli/Dockerfile) - -- [`8.3.25RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.25RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/fpm/Dockerfile) - -- [`8.3.25RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.25RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.22/zts/Dockerfile) - -- [`8.3.25RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.25RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/cli/Dockerfile) - -- [`8.3.25RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/fpm/Dockerfile) - -- [`8.3.25RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/5557f4187fca968486a08fe1061bf19d39961528/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.24-cli-trixie`, `8.3-cli-trixie`, `8.3.24-trixie`, `8.3-trixie`, `8.3.24-cli`, `8.3-cli`, `8.3.24`, `8.3`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/cli/Dockerfile) - -- [`8.3.24-apache-trixie`, `8.3-apache-trixie`, `8.3.24-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/apache/Dockerfile) - -- [`8.3.24-fpm-trixie`, `8.3-fpm-trixie`, `8.3.24-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/fpm/Dockerfile) - -- [`8.3.24-zts-trixie`, `8.3-zts-trixie`, `8.3.24-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/trixie/zts/Dockerfile) - -- [`8.3.24-cli-bookworm`, `8.3-cli-bookworm`, `8.3.24-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/cli/Dockerfile) - -- [`8.3.24-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/apache/Dockerfile) - -- [`8.3.24-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.24-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.3/bookworm/zts/Dockerfile) - -- [`8.3.24-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.24-alpine3.22`, `8.3-alpine3.22`, `8.3.24-cli-alpine`, `8.3-cli-alpine`, `8.3.24-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/cli/Dockerfile) - -- [`8.3.24-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.24-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/fpm/Dockerfile) - -- [`8.3.24-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.24-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.22/zts/Dockerfile) - -- [`8.3.24-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.24-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.24-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.24-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/092d7bdebba2a4e204a349280e54a59f78cfc327/8.3/alpine3.21/zts/Dockerfile) +- [`8.3.25-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/zts/Dockerfile) - [`8.2.29-cli-trixie`, `8.2-cli-trixie`, `8.2.29-trixie`, `8.2-trixie`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/cli/Dockerfile) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index d3bd45e74094..5ac1a4e652e1 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/188a0e35423fb615db47e6a0a8209fe7288eb2ed/apache/Dockerfile) +- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/apache/Dockerfile) -- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/188a0e35423fb615db47e6a0a8209fe7288eb2ed/fpm/Dockerfile) +- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/fpm/Dockerfile) -- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/216be795f7a1a60c2c27ff5d00b5c8476771e1d1/fpm-alpine/Dockerfile) +- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/phpmyadmin/docker/issues](https://github.com/phpmyadmin/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/phpmyadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/phpmyadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/phpmyadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/phpmyadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/phpmyadmin/), [`i386`](https://hub.docker.com/r/i386/phpmyadmin/), [`mips64le`](https://hub.docker.com/r/mips64le/phpmyadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/phpmyadmin/), [`riscv64`](https://hub.docker.com/r/riscv64/phpmyadmin/), [`s390x`](https://hub.docker.com/r/s390x/phpmyadmin/) + [`amd64`](https://hub.docker.com/r/amd64/phpmyadmin/), [`arm32v5`](https://hub.docker.com/r/arm32v5/phpmyadmin/), [`arm32v6`](https://hub.docker.com/r/arm32v6/phpmyadmin/), [`arm32v7`](https://hub.docker.com/r/arm32v7/phpmyadmin/), [`arm64v8`](https://hub.docker.com/r/arm64v8/phpmyadmin/), [`i386`](https://hub.docker.com/r/i386/phpmyadmin/), [`ppc64le`](https://hub.docker.com/r/ppc64le/phpmyadmin/), [`riscv64`](https://hub.docker.com/r/riscv64/phpmyadmin/), [`s390x`](https://hub.docker.com/r/s390x/phpmyadmin/) - **Published image artifact details**: [repo-info repo's `repos/phpmyadmin/` directory](https://github.com/docker-library/repo-info/blob/master/repos/phpmyadmin) ([history](https://github.com/docker-library/repo-info/commits/master/repos/phpmyadmin)) From 1553a3fe5fc08c4619fcacb51e61e33f3495e26d Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 28 Aug 2025 23:21:32 +0200 Subject: [PATCH 2479/2686] Update Matomo logo --- matomo/logo.png | Bin 20820 -> 0 bytes matomo/logo.svg | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) delete mode 100644 matomo/logo.png create mode 100644 matomo/logo.svg diff --git a/matomo/logo.png b/matomo/logo.png deleted file mode 100644 index 79315acbd3c600447ca91a9b5c8f760eb20407be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20820 zcmeFY_dna+{|Bs>t9rGHt4nKlpla5x5Q>&sReRIgJ0&5uwu;iC_G;`=yTlICVH6=T zQzg>cGipSdM7ZDj`F!sCkGQ{mw7;Bk-sil|Yd)W^SKOnA+H7aI&oD7DvFSXxXUxRJ zyu!qEV(%XoV5L^%lmrvgRVJN#>ZU>OHVDCw-?;^EF^FW$1N-?q%7T9|W7rOaxgOq&}Mg>pR^!rt0CkrLY(jpFZy@N^l&eT!pP^S)XivRobe-ijV3H<*- z0(Vmza3_|EvLKPE3sR>M#r&86r>@AA*M-pTf-K0-`iD>nq{)>TKVxQw)X8F8E2*Obhm1u(1hsEEW(IG~eDI9YbBi7R zbE77$sM)Kwvz_#Y#7l+HahtUbwNt<+KitL@D4wxs4!hGS1A7yq7yhL7_#{jpegW%m zVb3=;DH1j^OV&>zy2s0wS?)NVfzQ^Y&Z@@E^O^blpyN%L#+lhdZuk+uMXu728h!6G zrAt}Y*iIk+4=WE_2(#aNz^c2~=D7qUJKN%Jl3J@ObYA z>-J`6dyhhSRcWKRbI0pfOO7vc6VIg#`Hc}uA)V%Pu{W-@_%g$0+eK;|FmZBoUUVy2 zax3vjN%jyFODKtpNq6to4tMs``m*_YIP7z?4-YGX%bf*PN3tBJeG$@&O-(MX7#JM& zZtdJyS2?VE+kuh^l*Mr^iaQ^iE!$_v(nYg`h;Ng`iVl$W+sHCy&WA zm1Jj`Bq{sA;rYw6etjc2B_q4>tswb@(?5E`NEb+li8v+4Fm+N=c1x#3X+a)EBV*k zX6mfENOp>R%T*}*vc&zif~XG{No71-4iAl&+mu@ws>#S>amLlRUdta+c_k=1M`<;1QM_*#obuRVm$`IyV z;f>QhBy z5vZLAx^sz)Y6JYk30b}YDJ42a%dUCa;%n#q3J04lKZ8olBH@d*^#eBA@slU9C3TIK z45qEg=;V4*nG_scLo^zu1&K-7YRc-sEaRhY18CS)pwON79PA1AwJ9(~q#4e;vq#+2{~(Kkk+47KSN zcD7T4GOVQuRj3Z*2&6H?cqI}mJiQnf9_S}bz1O$jne-Af`sO`x2na0J`f6$G!G$qc z;VH4n%amDu&jaepIwstDM-d5g z8z8TybXMMx3lJD(*;Lj>K5N4x(;?rW0pI)kU6b4V8Z=fc z-9ZMQOJL05f*-mzoXb9p%vLoPVJGl_3~v-iNb#~!FY~xX`6>=F%3mbp3vR88vL9M~ z*j_G_BJSVKQdHa^3Px%&`Vh8Ag%#%9Nkl$72YRBkrEQ!aWZ0BF)w#4^pJBU%^zxmN zJrBb6$5Ur0c3rjHbuJCwZy?oK-rYm%4KIgFh@!w7=z)7HW5Vq=m-zxBtBfNNdW6DV z)7)&rR&6BKb;D$x&e9S)Y@!!VwMEb1V~73zLO!n@#Z?nG_#p~fsy|3|b@!{SZzFTX zbE#hr_B+E1kt!d8cT=Ja!FzPy)lfo{3M?=CHgZcaF48%Cx%B8$%5rvLgcRV&%^Y3v zZH-o>%PePpZPt!H`hs|Azh>JcY*tD_Cb@zHg(8>p4k;l?;B;3{T=-yyegzC0=|^eF zrDMCB5e32+e(BZun%4~i4!cp{q?kmgei{dv4U@8fh@ShQ7Bei3IAp6*C`sRgFNQc_ zrnM{k^@+Ff#K4RgU+-So8$|~#DuXQHzvgBJZWJG?35LSoK=uv#O2$hgbuuKw9U^Rw zlGedpD4Y5!2HO(t8A=U3J8u!~QFm*1Si^&;sHq(X7!7re;w^W`nA)~<9;Ilq`PL3a zf!lftd-KH%4_uyTH49{g?kc`Hq4JH;*_egxM32MqjJ&d=YZNcedr(Oo(sFy~*2+`r zp|Kl@nK`pgSpp^~E>80837eh({^7+I2Lj=d>l(qWse*-y_;*FW{(fjZ}LdIp^ z9!8;TfcHfuz4^@#XQXCb-oHEEV-_qkBh(oRpsL1+3+?LhJ+e~2F?#(@RB>6H@0st@+Udp=i+X)K>kpoR0UDYAu-gS;F$y;;I-zdzEO zArNLRIkONjTN&KD1p1ZD4)@KI;nZfHQQgHsNo@4+1y*=uqA|MJ)cwf*=zdiZ=-cU` z;;b!^i^@=kP}d$^(^C#HOQTaHT7GG9(q%fzoZ-Eq!fFP*{ZIlVqX~aG+BErW;k{+z9h7shjqOtrrLZZ=dyHqR?GJ{|LubV8!$^; z&d)u34Lakmrr7;$s)Q^l9i*sqnl)eA-GrP$oE$2) z6nSTbX$c>f53Cz>-~t(9X2K0hjj7nKFjASFosY`j_>mtyZR!5uBCtej|5fkc#U((8 zz!MRhgv@~I2ZK&{`CVhT%=45zN}|d}%O>$dp(~}S?Dvpuo)`otE z_}@w$P_qPXH5nROwI2o!`Ea1qW^S=gc3d*16z)8STx5-w)pV;6TBGnv6wnN!?1dyF z%chXZU!s3;QVTQx=82sAyrBjkqvTPg;^%lby4szLfP*}+mLyKRv4|MYK^+ZT(B`Mp zjzv?5EZE-Iv=0aYe!{kLFO}rE7W*y7&&7ng#UEh_mrR?=dPGyKCMlGnIYHXsw)IS1 zyd8bpv%|asx6ecBD&?-55V38)7twkv7q$k!B>wi#iCh(CH-y^7o~FfoizV4KJKG+P z{_B(rixq6+VWWv}&W`&Hf5m-knPCtfGP05`3-C`&f_W?y8P(@2%NwOBML%z>b|%0e zu$i!V_sURR#3qClQNk4rfuxv=3OKw{6PsZm0OLG@tJWEP|K=B0zOOhjF#cdB+yp7V zI=#GZWF4wO8qHWR~V-SC+*6@}mJAK@@*+g6n#I zoc`w`sl-b6O7XN>o(%Ul1bk(fH7Y=$MCBDZ*ogx3FY1|00m5XM`%h|$=+=ST@6SUX+xOKo9n^a_Z zrrT#o(zn>M7Us0>Jibx$@_S^h?)||n{v(Jh&aKkYGJL|_lNe9|hGn?Uk-S8|d~t9z z1PSjRmwdX>`%^~fhuGNUhth}AAC$xm4=%Ki!utICqZ?H89ry5b7&X&WTKkm z5g*v{umlD2JXew2O7F?zKP<;7EydI91cofp9=NJ*pD?xE9AygcTaT-j?6;t;VYk1I zZcm+VI+~%K>6t6sK6=7I(+3KfI#cVzhM6f@J7&oMHNS=J$i-UNJMZI|z-*}YTONMY zhO^@Q3m)*sObbG^az~56GPEpIK{WOKZ>msyi^ZXzg9SZUmLbdPN2HD)$R`9bpCO~V za%zq(tUnG}e}W@Eb%C>tinz5!@=aF3JPGt|Ia*N5R?i>4i?6)gdN3#{aT-zDM)jiY zwy6R2+qOsmT$S?cm9HQEQXx`YkaYOYf34;CsAmzSMr3$RMEwkr8>B5h6R?yVk6ppF zMt5w5iAo-=48NYV{}i#W48J75Z@bk1l_2*q(z%U)Je0xaE-XpI5NODun9j342FL zUUF3B`!2Tl7;@FQp$4n4B3Z1S-<_9Gg(cVT7#s(I!52RV2KrRbgIGSVq1`8}DFZ(5 zDF0>*ULIuZmTHjL3XyUt#@i%fTBwP*bPb4-l(03F|83>dj#@o%`@>4W_u)0mv(Au} z*@qte`S?&C!#Z%b1(Mm%&z5n&VWeKS5xL^~r1piZ$5TQ$Dq?TrNSSzaVS9Gg*|~bh zDwEq)$qM-tFGfRsx4!^7_4ympkKC4CKak*`za3#Vo~XwK4{t|{;V*#nZisODW0Tjh z8q2TJ2eB2rT-m>Vbhzy!po~d5<6Sff4GT}ZaB6(3RW5{4re1M=H#I{q*EfGbbN#yM z1r@}nycx%~lWk>#E-iV#SbNV?;?io-`$v9MpsKQbKN=q%^xBfv(`G~lg;^`VnbN~UoD!!@=5nG+ zB@peN(*UU~^cN=``Ohg`$vkbCdz3JR)d`#*IsQm4DTlJ(C+5CE|aj7Vr{gs_{A5zPq`H# zIwnVS+%4{CJ+#78YWtYrJ^~w!QtJ!&jgA@iJ4;rMNU%f)|67-Lp(}$bN*)YvVC7eWj6X=mD6TG#Cg zp^rmIUHxNUjxK_E$s;HWjjz^$q3x8~Cl5#H&VV9-ZO|2zQ$3 zcIv+DbhD2W|8G@TsUIO$^>8@-r1f90wTvi}VK&Q;fV=nckA$r7{yq&4_0b>v{V1Gq zdD%Z>ZA)YMqxWx~c&ZutBIqP{E~*n>ie^I;KWTF?JX0k zQG@!S7?=pGTM6or{cXe|I`R4UU$e7bK;svZRLFxiW;6{{`8Y z1=A?r>J{h4&SkSb*q4_@&FT|Vyiq!8GRP6!c4aSP#(G0pvEup|hfp~DVBO6@9*NTD zmYe$InRGcNl(zra$pp<~5jDOAKqf<<4V45Ro(X^S4%MUm#DMflkdG(SXN6bxNyC%OE+tKwgEk8=;%VBAYk z&VO87e~4thaoKdBe|KhdP$<%*nA90SUCk)V2Q)t4vQPwqZZ9n@0%08&fE;4-aw}aHuG;PN0Jv^@>YpN!C z6qiosMOwPk-;~o9LlTv|=8>WTgW@&^g%$ii%8)Ig6RX;>V-D$b6!%Zi#Z*4`As4J2 zbUrVc+VRjq6)#00PYg8StWr9Vk9ZII+779XT|TMKM6brB&n3k&bi-^0#ADSU+R@Km zHU~h6WcrDMEe_S0m$z<_71(J_OS3rxgCl4;pZF8MdqaFAmnF^uV`9Kttu7o z6o#vSN7(~zu~q;Ky12{1ElclC>7GSbLVo@91axjHWpxX+oMf^~iT)laZ4$RJ0UTdy zcv+q$)c^HmK9wrbqy0SIh&ckj!X`DL!KFX$b;}Q`3XQPtL(`2l+R{QtW6oL}U_ghG_=9~DsOR_vZ1`X7ZTI1K- z%ah&!CLk1|S$GF#(qs?C_D(D(rimSClF*B6G+Sk!jBnaI%L|8(Yvos*v2tsW^z|r7 zwNCE3V^J&aFf@-I)os5gmKR0fS@dSAz5@1;nyDv9YAH4Tz(QD%Vw2zBW;bKE=kgVL zp5NYKm(rG^gV&P!S5@U8cSK>?)hTYeZdott$d;VR?_jXK3?%r(Ec1aQPO5PYUN6TY zYPKuD-IBXfH_NdQJP=+G=kfc%XF3tEC&b~p8ly}rq&3ysYqYW@a8~(_De7EvhEVtu zAax}20$G_2{Aj{D!OVa(3(83hzdM?Nv*Lcf5M&SqniHRTcD)Q^-xJ*)&L=(9uQ`KNV{dK+5w_ttOb15Pl=(9qn2HjGmecHTD? z9;w=4OhAT{@NG_8&EA7W{HZKnO2c8TRQW&kI`r}3@#C9N)Ho1MTD=^P4>mPCepL>K z#>T8kFC1r*B55(R8U4<+(nuwV=^90NXKkeB^b!yV-CPwV>~n0*H@wZG~=+F38BD>dl=@bM*ppUlv6eCeZBc03^gTWN*Zz zD^Jpg?cYVgb2G7dF>OaP`mvJ|_Q7~(v>pC-@-49ck)9n$8K6M27lb37+=#fzkT)&I z6`W_kWXSz$wMR2eVS6Lank&3n=o?9E@P&vcE4*XUtMoWGNy)UBL*GixD_*5Y2r)Bt z@ihvwp-1Kql^ksdzXOZO%HBu}`x&i<3YqRI_X3+QCx$CGSlJOwZyM&ZyIH4Ho$2}1 zpXXBPN^TA}lmc7SB~KBW_^U)`u+weVEHWho# z4bHptTXhd8fAYnGEwV;7m79I0zr94yv!c{9Mb!jApI(Ynt28_!?TDWoP)>MNC?f>i z_bx&Adu!-JX+?s&kDLtqJ7r;iV+hC9v1DZE3a^Ru)N}6?Te~_& zylm6qKH`)MEqjG>31yziKXsIYlXe6kI=nx250-&&ihMGfq>-Qoape%lR{s;|WYiV; zOIea``+nQ4w%MZF2)&$01H%DjPU8zE0cWG{*y!utq;-PMv|tF#n`)Whb|8Z9-%@ja z-Y{;@1^UvjAE;N@Dz#D=??vCI3$?Cu4+UpH;#ze|5h2{)-n`U&l+WGzJ!dVFe z@F+NKXw6d=d=4}?K1w`;xXNAjrGKYKy@jm_!pEI4l^>0{Eg;M=pHAd6jKRG1FqoAx zF{_1ET}t%?P2FYW39M0Oa0M1dt}xhVKtaV-uOUAkJr#eD+EMOBj+S)barDma;+uQ+ zM(fAY<=Ek;GJ}>E2hR;%^6qsz!&fhX{)`ENK;~+RXAw@G`=_EuyKXfzN4NO);qE%_ z0|{~2T&-9;MMa?g{?wI>?@QPr22$T>7OHYdcC-KTsVGR>S_gzEi4=(xRvjGs z&NrjQsAXTHY>WV>l2K6Tc~c!th$XdO?`A%97uu|#WMO4;8y=sWzASJev*?yaigQC@ z81XT0Y+R$WFB{*_izEqV!&$T_>?~&XBU?U|t8I>fl3mAMw*R$_lXfja-hm-?98Lqr z<(v@L7s(h36Nj;Q93(DvZx$CqF?r!~8K+qWosTS5&YDPD4fz%WCd@$&4Fn?Y%C@e{ zXbko|JrIn1hglS((4@f8dz}wK?BE#rmKm7>$tZM4S#vzTmE9*rb7~fheioo&$9>&G|Vc3Ir zfR8+Qfc4iPm~@5!YLii4eIl*-kc^%AtTQqoMa>&R1{Qb%>dao;H*-~ zwJtwRIlz@FYb<9;kCjgnyLKP1T)BCh5xVkEs^8dvb%!JwMSD+_)sC{ipS`mnyRr@; z2IFQ(6>fQ_$D6EXo1Sb|KD!x>bygdG;f*u!s|+lCFpnv>qMx*65A}(hB}DOe)6~b>c<@fK$^G91ZuZB_S7``?pURKBNxhI zvRsNnqBK)vbatpXF5$%i_GA9B5-mwO3aG%-mfWD%T1dE4# zpAo!ji;QJ8>ieAKS8v4<9I3;GK}2XXM2#2J6DQt2rUkyl7BWwb#+?vOUpeLg%G(#O zTk}m*RIl%H0C@mcrsOS7bBV8)q+HvTdWBj@Q+I~%WG7DDEo_Aw0>ZIraoSQy<@*N^ zW_o$A=k{(g&5rpvNC2LzL?$50H}9pYh_44VcJcCr&mE4IqcE-5ootD(EOz!NX0s*1 z`W1eylHaw=I)HP15NO}H|5qFOHY~BfQSkMl3@nCvM=X@4?Hs?6(3$^1E<9l6ta?y` zJnUuM0&6adz5*|(4<`QW-mr6?(udkBpgw1DC$UOu$oSTGAmS#mbjGI)c$g@JmDi|j z?c-t%OVisWp&S5k-J{{RQn;!rIa#U~@YH;T>E_edTW5HYKk&>5arudjtGuQTr7AnS zBa>HbaqY2gwa&j+*;5xHD~b48SlE=K)XMpt5T7@AWEo#` zmR_Zy=5o|6xE-Qu<=VMmZIxYp>`n6(_faaN3;C>wLhkds>%iyUIh-5x_(*mfeXLEK zJq3JKe=Y*Da(2urEdhG+gI9Awh6DEVw!hANg;b{1b zpIrAhcYYEl;Z}FbeTt;4u=)0YOQEcOZ%LUYfAG63x74*j5wEi;-sg#)@8<=VlA?!i zr_0q(Yr16(q?DZB#A7=`jz3xp@COCzb+YT5212?0mmbTfTKjN7#OxwBwKxL)wUR+D zZhkbyjQ-|^xv_K_S$Z0&{>WbFpSzy`71%r5*z5v{C(~}i1NI!+Rckesyt+%|B&4_i zm!_L>5B__3+d8c~sJI{b{W5}!I31BjokEMZ?xc8Va)y;#0orSqD_JcfZa4!o@ZYDJev+2T?$j+yqu>mVK-DWCE%}-@KkTcL0!WCV z5E!;MisM>a=!;r>GGir(Lm z*?lW$6luR5p=O#a|FORsD1pcIV*!jjezbrYT4fHx|#4?BJTCV9LYydh+jGsO?mln4?+YQ{rG2Jbjr)tgCW6kfo*ns!Rj zhW{v2{K&(b;ymg!(itkzUs9>x`Ut(AL<39n|Ng6Au)QK>4X%*@*dMKKp^px5VP9(R|GTFt5jQ-)2gKA?{c#K}Q ziT%eU2Gg(k!%#%#p7?;*`YjJ+O(i8v^}%sk3KYHQ-)t>9OV8 zx&5iooB5RU0Ps44`$-)APNc1|BrHBPTYlinYi*^dT2TqV@(8>DIn+^Z<+-@3b_;K? zrM8{*dB?EKY892q8>=y*X#XtcIensPf^%6xIDEFL(!{h&8&S-J9BQNH`X{nTC-KQS-WoO@3U&}QUaVGFtXU;km==D;Tz z?NBPJuyWkIBL|WT3~sWAC}0i-ul4rK1jFHjAHSMN>5mPtVghtTeYmF_NNJ&irv)w( zk#}!v^V?|+CFZHA!Cu5=Wr7_Ru8%G=QSbwv*Q zCfTO<#A}bxhCN^GEfsan;0wwp>=IQKOxwiAlS;Dyxv*2U>o0h3Sb*^IZe-i)GRP}iu9IC z^oG+!2T}!dxa-`EuPV$qCLt=S80i2I<)9Tiz)^mQfkL6TEuo2RJbKnaCi0Fh6x)@v zsr_GzY;&w7ICqzqhlmB4hJyz%Zt?L07 zX2I;@BK(UdG*cGRy&F01PWS2 z{jR#L4?5EPIEl6*M%Q~5MfnHNTRrXFogJ;x`@i~V*>#!llKtv>gl=TYWbnCn!$&e?oG4tn*EHY(h3)O%+s>`M1@qx57uVXVWr(^#O2y zUVVMCUEW%zouh!kZOJ#Y_ldr2j=uan;NK2j9N91`ypD{g3%m*D?5iROn zF@6z@%9k|0f64TFfG-lcNFhLs9o}!-wLgCBL~mC*qUr`be34(%t<>2$d7S6Im`kOcJOo^=1) zmvb@Kl5;!CP(J(O^4T{f=WH%6Qdpk(jcU`ZL8MUxgz1VlgZ(uv{5tpEgKv{HF4J?#Gm)7V;3t?KrDvTFzx60>5mn=fL18oRX*1?5U|lA?)j&Q09+!*5K~r zTl0X1b$^zG8iunE?ek{#VlAp%j`8QCQL>v^-j&1V&=2&D=e^5*sy}o_8A)pVn_mnk zEK6i>yE-)ocqzfoGMN-a#NKD9o?r{H^_7WMW|K#_KovfC5UBnR4pl0t(o?na;i3DJ zp);;c^tHtMtA)i5uv=g4_U|HZQvj7>&*bQ#{xT7oozDGwY55jr^e65FlYRn?kDW|6 z1r+Gk#aRB7J;t+h_H#DPnBS_q11nDr*^v6fD&NeXxyrRiZlnVE0gSz1B>4Q+**DfH zfPPLv=iM@6?{K&XJ4XCEbvyBYo7GFxbwAV-EJ&h0C}+;d>lm`%g+{(Fd6v<~ktWZD#M1P@5CHu{6H3z+qT_;GW0qn(1t@%Ky$9tr8@Fi#Z;y z6AOUEd~p=ntV>@9!^T#n8XZh@#sFHocv2s<=6Xsjy*RUl37dP}LVwdan@yk3=e z_QIfT&bH|JA3;kYqTl#SSA&FRPZfxM7k0aYU>pLlr1Wopc&=}*>s;c+n`S$&tZ%;${&LcjSZoNbM@F36aHXgGcU$jM!99DQI9ygp* zWXm#58^4JxN=wUVHsv3z3I3^$I;0JF+e0W5e6M?BMC%OGBg(XrM>>kamv0BW-aql4 zyH`cYAbyA2DO=_H7Aq4rexG=Yto-f~K*WJ%CZ}^bcYPFZjW;;$4tAnYJpksHyY@wN zF*y$;1Treheeq`6Su4@>@O$YlfMT+yipqrBWZ33A`>fNN2%$H9K5y~mkk{*g1o}Zm z)#h8*iAm;^o80kxT$)S#O9n(xy&PEi`;?T22+&Ud|HBRwX+Lx0p~ zEbQ@H#EzsgwFgves0Vsk7dZ{>V=I*>BsGNdAN7X=RBtC=XFx= zQ(w9*@c=o6P}1++!L0iz80WFQ9j6x~1={ZcB<^R~)=AdeLq8#m%Qe>PqbJGnyW+^) zbye5YTXsjQ_?NAy2w!h6;Z$1y1!QRbY59D}jCqtcl%+SK%48NbSj0F`sV~HFF=77s zlk@`-?}p2Kd0XsG(J@LTGX*JglFfQj$F`r3wa7U%TKQ*8CiG*9v!2BfZg7&q=F7o% zDvPb<0fh%uH#62m`;3$J{1h6}ARGX+5pvau^PfSS__+6;Nd8YUSdDohzar@X`>`79 zpwbgNeiR~)G@5FF9NV?=nl1TEW;^iQDIUZk@BN-*PN1-u3HqeL4yXuS8;uhKGaOZQ zlMbFDP%Xgr=TakVML0R4hfh2PAPQP>gy9<&uramk6J0;#w(W~Jj^|KdR-t_O$-?NS z$^ypFb5-CaP)ntKid^D>kAvq*=gMoa6PBinnU0M{q>Bi zI0Dc0C%aCTk+t}GVK97-B^+pom(0vJ*}4yN_tZDZ?_wL@x(D&F;fuL5oHai8H^ykeMo2W_5}7R)QVf}pUo^^1>c zvH@+dr#)}XV#RKhtDoZjo2>jYNUiSev4J^C3|e>HLe^i6LN%;j_#&mWm|1g3$GYs_ zJ!UA@RDCZ<E1kx#6UtbMd@!^=cJ8AZfp5VPy86o8LU3+h0Y6?;$tSk5$c{g=F? zLCE@p$E5%tsB#7L_p@x^831tAUv6caHHh#%j*f%xL#7vY#?}$njba$fyH6kgt{-%i zcqUBWIPSdzAkZ^oZG|@;2VMsWJ{%AnAvvXun{otYc!b)jfUeHLDOLW=h8owhBb0Ps{SVE;cTz1$T? z@67W^O{}DcA@hcs;uK$1%Vuc%u|F_W8NMJhlm}qk4r%bjoHxglDIN`Suo$OdV)N!J z%yr*kQ3GjKlVH!^+?ha*=5$?{r~lo^z?xLSC!l7HqJe=y9G1r?GTTByvuT%Eqs{y4 z{(1XsY1|6M*LV+(ZQ3Bfi^ZeL~>AsDrR+?=p;OAatmvXv9<>_MCfQGW{$w?k((PK}N z83_=JZC7~2j)JQ#v;k0b2XY)+1lHg_kI-&0ES>6&!V;hM9Z`F)$@cM%#yw5qb0%^; znnGrcvMVWh7eF8TwfY9OcCtugiEnRuq_MSU`xnZ-^FD6f5?oaS#FMtZb6DGqf0-!F z10*eunMeLByg-Kad}Ck|`x5Y`5$}l;fWHQiEtdMgzS?jZo_}Oo#Xjnn6YNAd^WPt} z4)vr2x#2ENy;&w1@GZCAnsu>AeiguC7hk8IS)$*o3Sfe!qox9TBvJ-W$rZz>124H< z9&0KzJUaP^Z+uI%I09?g;UM_#v-34WXkFdQvFWNJ8A~aI|gN+|)0ZecGc$5@c(U3iM z`1UzCM8b|Tb*C;*XTu37M|;u_&FbI2rtQBN?VYgmSUUm;k2H)g31FjuxhN*nbL7z3 z_e7*N0JeMg*9gCE{aMML3eF+!WQ1xgyPsLwjzG6Il-*F{QPDCqY*tb5uNk}?J1m3n zZWg)#in1Qn1in#we)05yo6AEwQ6^Lrfa%&A{Lx*JU)Dr89?S%fd}kf?U#yZ$qUy6{ zhmH?EIf3CPhXM}-)r^|G3v^_@FM$9}*3hy#8wi9Oq$TU#4xhoHBwl?PIWOpVCM6p{Uqv4MIE@lwblZyrSqG>&{@y7Zz~qZ z47j)nauZQ{t=aX2K@31oj&HRA<2tu9#9z9QI49Inv@(V=1UL{+L`e}=6}UsO!d|H* z=oSo*0+>#lDSe^e6EIhabJ&9EON`7~H8EIxoU?`G;ai}k5CBz4%Vxb=zVVA*D+Gc> z@u>mDuZ$vq>P_wcCXi#*=oZ10r3|op05KX1xWYzf8G}y6>5|3(qa~niAm={4Q`4}2 zBl(y)96fc6(D-)tNi0pbv|gM@DO)uaztEwMt>oQ2+m31}i;X=J2P)WVbojEm;fCQc zBR+^PJC!usfvR!}_{!U(@e?yT(pLuuS_qf2xaihy#H;uhe;LHnz{&t&e0=3&F1Zjx z0w(0lZE1%9RvJgQ8(?uV&RVCs4lrht>jxCq$hCEpec{sKnNu@k>kG4Y@Tm`U#eTZs zGQF%Cf!DZ2J{~E2t=X6L;ODz$!z}R}O?TmWW6A?ipu=%L+_hdQPJgwUJsdmyi2Cn5 zHb%!o!71_z5N8461$&l^0s%hxtob8WndeJsm}3+wcGzELy1mJp>!=v8&F&`g z^vI4nS@`a86YQg;YXaX}{jBQW(p$?TiuFbq41=#5V}C|j5>FH~1IT`HgvDiG&T_zV zNeq~C)a`B9P^(jTO<~8*x6y$pZY_H0JJEI%AMtp1NeI9dw%PWsX{f3Lv}fKjZ10IFWs&9T%% zC@_wbXGsk12l5-ad`yeR&8%B+M0VL~Ien)M0u0fqEd#}%SMTrVL%Eq3ciZ3sL9{-) z%0w)X?R1hR(#&P_G~KSa8NPgYTLQm3kT+{C-Wcxwr@OjO$$m5?IQM#F>ipj%F_Y4K zm7Nd#qMYAVr- z5|FjqPUd6j!JHx+eBanM(uh)kCVT+2pJA=vr z{4`y$X11OFmUXr%$E`MT z6s%VCE|NGakY{mSYw5;L*w;~TGwJNPb4HHvdwai|Z*f4t7lb6ixbPLbn);DC?Ikla z^Lfod|FEIRt@gTF+jR&52`y^d8TE}z!l(aykS5Znttd&l*VZ~=8xZQ{y~mn7VR2*b zl#^awsD{cTwnJ;;U3W%8z(!O>D&mkkt*;zPeLKx`;K6`zo?{0Q`LjD~3AU^YVtZ zr)3R@$R;b<=&HQsLMCrNO0%@p6(4$&EaKwPZ<`~em6N)OOfoO4pWM4??Np35(+wt! zgbW3n4R{F6fsH_0aj&wn7)CAf3L%EK785ZYve!ui=le3>m=vd(-0U?+7#E4xDv^zn zlPQUEJ9F(&Ch{XR-2y!h0j_5)XB$3W$V~9%dh2n9%gEpPUX-eKWp&r+Ekw&CVtz`r z^d0}Xal4dAbb#9SI9S3S$TX&qo)=2G6Ok^W8-86rE>$y9L zvuMHwPP~v!tW)kAF_vjb^vUa}BJoC5^4vI@U8fg9-3k0{FY=O6>%+JI=~XbCH8V?q zPa>ke>?94v?N0>6GOd+HP)fThh}?S-8Bs`rwU%XPIJ>+}4I_II8L<3gs-NEjC%`o~ zZ1kb4X_+Xq8wD(KwLO{Ap}GOT9TG(&SkNjXyl`~O8&%JN*@hVEGE@SU5cytN6a5v# z$X2q0C*Bk()#l!F;od8Dua+lwVGbM#N5Ke)xEcX@qy@w6KCEvIa&N|}Ex z^3dscJNO6EzpS4gn01QDP$m(@c(a6^`d2G$Ro$h|*o}Gn`?hBA81;sw96Juau{--M zH=v;etKZRYg09BSzmT6tRil_xZjn)nWT3sifYO#SMfozLm%fybO_l8}CnaLgwaVI3 zgRg8RA-P@kHx24(Elf1RtNsI+Dm; zhzUAWKOcXrZ#M1kZF#uD!^y!q=25rL6hPz@4}ad2b%YX>Ld=)?u3v931>+0c_5f=6 z-M5K>jZPyLhA&}~&xC72OxE9xV8z+^W(w2#*t=o#-o;Tu(FrO@k;I;!|$cY}wC z)Wl{NV-Y{tD_mZ7S%M36^M-GQ@}NcLbsZor zOKZV=lg;~KYBFkO@Wi~-?bR{gj_v2KUNyCNqs3%g*Aw?Fg^KFe*Rc7I;ECGumAx(j zZdXjb4&Csb35$BeufMLZ4L7`1QBeu_Jrlvld3xNCQQLQQ0>VaPayMmk5OS!?0ZL_l z8==_%|yG+B-^97I(B2bf`8q=Yq*)SMyA* zrRVLtXDb0qaH7s-CK^060QB?9*)__+m2N;k1^(q?C}KMAMWCiUHv!YuXbuUZY$p8d zLGyFL#}TEz32&0rehycjvhYv3(?()Sl2=fYM;IM812+^rp#`W}Uvoppz(VbJ7v}|jYmSM?|s*;{PscfU$5hO&ERzj%TNP?n~G0s+8 zTbG20L|f|?m1``f(#!1F$z&-;8n&w0*yp9N|B zyw8ODX8sIez)h4ApaPr4?tR)c7c~znBVSj=1c;h8FN}Sg$5vid_BWQEUS|khzxmsw zY@;H&LDK@vaBTHB4|m_htR9RLyM!@gA)jq0lf|R4B=O@_sdq-sE;5X5<^D0p1*b>9bygVE8$62K-RmZ0T`otB~%$PwC^{zh$4_-0NH^(P zl{TAYFj#^+&_G^c3f&RF6Lwc!2_yXzw>OZpEaO!NlX~H>N5QT4MEc@7VI;xzL`mZ6 zPCou0UkK^$*F~!pNz2&Q_^5d^; zMWInL5=nhdkH@m$5g*lk``p*Zt&01{H!ComlL_t_PhM4L9rBjMpCdt`tl+1N+S!bI zCjb%LHyC)`pv~ zW}DW#_KZQG4xO;Pa59weWkA=cgV%2E@p<2oCj$M$;HD_lCVN&5Pfgzfk5cn)tqi(7?S(`%heVwpN4<4kn_@Vl#=f;Kp8rX^&# z6$TLgSlAXeab6zN&%auQE}E|{-|0{T=C|^~y!>d(t2fqT>8;dQb3-DReNXH@KtvY*hpBHd}^y(cy>PWu^MA!B|^-s}AUAd>% zb&Y}d2!JXp835tNd2?R!=BjShS(mvz z&UhvLxN!_c8LQGx?tW%TGFO73!XNC1F546CRzPCHeRB=Dl43m?Xk9*_~DK&dX=JdUnVm|b^r7RVV76H2zZ_&=dD17lw9z!qxT|6 zYFgfY&`=&UD73=Qbm9~%!Yn3XRT^jAmZVE#?tT(`${FX)%Jg2ed1EwE&Wn8JKRu<> zGh1uMug!lh;3bmaaJF@%MjGD~y3h$(6qrgGKTJ;@1tF15$@jy)eR~hnea6{n|5rRE ziA}j#M8Ra5);iq+^e5G_G0<6b;iW_F^F)?6DxG!@}?Cmf?-sB!WnAhK7fo}2?)54l825AdkZxmDd`gV$> z8SuO2`K*zcW!jLUQf%Wmzvewy+P+0v=**8Jl9VN?jyV_4;@P#`Qx7hDN%<5$npPo< zQcg~G>Dgxz+IiFpsG3ytp+6Aw{Kb{Bl{1jNy91NOmfB2Pf`#BmJjIi^GRkh|CLV>` zAwa9t>1lV<7k9OQNiYQc3CEq)9-jX zA7&YH5zQI6OcoKe8r=9gR!pN+oCA+(;AQa{a|yRdaQ-NI+zAGm`2 zNG$;vk?n~0wjWk85&hi;RNLESns>0h5!|tXmz*O%1^AuNOxUg}C;Vj!*PqThG=^h{ z;no#vh>L7V8BJ5)$WaioLEk+AKppQ|h4r}=Wfv!yUu$@QVO6SLuvxe90irjyFb_w; zN!7BH1SeB#N+XKW8$oDdSopx`+B;Cj2KC{|VZ;~c*KIeypWhMqe<4r;I|iBdoN^{) S$25P9ar4G)r10-|fBPS?#6t`K diff --git a/matomo/logo.svg b/matomo/logo.svg new file mode 100644 index 000000000000..14d9f510b02b --- /dev/null +++ b/matomo/logo.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From bc13ef0c46a188ff4f522ce5fda192389207f248 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 15:10:14 -0700 Subject: [PATCH 2480/2686] Run update.sh --- jruby/README.md | 64 ++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/jruby/README.md b/jruby/README.md index 29cbb5934f15..d7edc4617e9a 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.2`, `10.0-jre`, `10.0-jre21`, `10.0.2-jre`, `10.0.2-jre21`, `10.0.2.0`, `10.0.2.0-jre`, `10.0.2.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.2`, `10.0-jre`, `10.0-jre21`, `10.0.2-jre`, `10.0.2-jre21`, `10.0.2.0`, `10.0.2.0-jre`, `10.0.2.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.2-jdk`, `10.0.2-jdk21`, `10.0.2.0-jdk`, `10.0.2.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.2-jdk`, `10.0.2-jdk21`, `10.0.2.0-jdk`, `10.0.2.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.2-jre24`, `10.0.2.0-jre24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jre24/Dockerfile) +- [`10.0-jre24`, `10.0.2-jre24`, `10.0.2.0-jre24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jre24/Dockerfile) -- [`10.0-jdk24`, `10.0.2-jdk24`, `10.0.2.0-jdk24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0/jdk24/Dockerfile) +- [`10.0-jdk24`, `10.0.2-jdk24`, `10.0.2.0-jdk24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jdk24/Dockerfile) -- [`9`, `9.4`, `9.4.13`, `9.4-jre`, `9.4-jre8`, `9.4.13-jre`, `9.4.13-jre8`, `9.4.13.0`, `9.4.13.0-jre`, `9.4.13.0-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.14`, `9.4-jre`, `9.4-jre8`, `9.4.14-jre`, `9.4.14-jre8`, `9.4.14.0`, `9.4.14.0-jre`, `9.4.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.13-jdk`, `9.4.13-jdk8`, `9.4.13.0-jdk`, `9.4.13.0-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.14-jdk`, `9.4.14-jdk8`, `9.4.14.0-jdk`, `9.4.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.13-jre11`, `9.4.13.0-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.14-jre11`, `9.4.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.13-jdk11`, `9.4.13.0-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.14-jdk11`, `9.4.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.13-jdk17`, `9.4.13.0-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.14-jdk17`, `9.4.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.13-jre17`, `9.4.13.0-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.14-jre17`, `9.4.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.13-jdk21`, `9.4.13.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.14-jdk21`, `9.4.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.13-jre21`, `9.4.13.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.14-jre21`, `9.4.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre8/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre8/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk8/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk8/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre11/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre11/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk11/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk11/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk17/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk17/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre17/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre17/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jdk21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk21/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.3/jre21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre21/Dockerfile) -- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jre21/Dockerfile) +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jre21/Dockerfile) -- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jdk21/Dockerfile) +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jdk21/Dockerfile) -- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jre24/Dockerfile) +- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jre24/Dockerfile) -- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/10.0-dev/jdk24/Dockerfile) +- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jdk24/Dockerfile) -- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre8/Dockerfile) +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre8/Dockerfile) -- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk8/Dockerfile) +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk8/Dockerfile) -- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre11/Dockerfile) +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre11/Dockerfile) -- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk11/Dockerfile) +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk11/Dockerfile) -- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk17/Dockerfile) +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk17/Dockerfile) -- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre17/Dockerfile) +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre17/Dockerfile) -- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jdk21/Dockerfile) +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk21/Dockerfile) -- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/8f91e91e4bed2e9c834ef518d1f557db6b4bb899/9.4-dev/jre21/Dockerfile) +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre21/Dockerfile) # Quick reference (cont.) From 63242401381ec8fd7458cef3a1243512357841bf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 16:10:41 -0700 Subject: [PATCH 2481/2686] Run update.sh --- matomo/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index d30c45357a91..cc6f876a4531 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.2-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.2`, `5.3`, `5`, `latest`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/apache/Dockerfile) +- [`5.4.0-apache`, `5.4-apache`, `5-apache`, `apache`, `5.4.0`, `5.4`, `5`, `latest`](https://github.com/matomo-org/docker/blob/46b01bfa1022b82747b1dabe83ecf2d559fb9829/apache/Dockerfile) -- [`5.3.2-fpm`, `5.3-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/fpm/Dockerfile) +- [`5.4.0-fpm`, `5.4-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/46b01bfa1022b82747b1dabe83ecf2d559fb9829/fpm/Dockerfile) -- [`5.3.2-fpm-alpine`, `5.3-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/82fa89f13413cae2cc185416dce5ce4a6baeb618/fpm-alpine/Dockerfile) +- [`5.4.0-fpm-alpine`, `5.4-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1a3faf94ab6b22ca27b3dcce0026744dbb9969f3/fpm-alpine/Dockerfile) # Quick reference (cont.) @@ -36,7 +36,7 @@ WARNING: [https://github.com/matomo-org/docker/issues](https://github.com/matomo-org/docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/matomo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/matomo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/matomo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/matomo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/matomo/), [`i386`](https://hub.docker.com/r/i386/matomo/), [`mips64le`](https://hub.docker.com/r/mips64le/matomo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/matomo/), [`riscv64`](https://hub.docker.com/r/riscv64/matomo/), [`s390x`](https://hub.docker.com/r/s390x/matomo/) + [`amd64`](https://hub.docker.com/r/amd64/matomo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/matomo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/matomo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/matomo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/matomo/), [`i386`](https://hub.docker.com/r/i386/matomo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/matomo/), [`riscv64`](https://hub.docker.com/r/riscv64/matomo/), [`s390x`](https://hub.docker.com/r/s390x/matomo/) - **Published image artifact details**: [repo-info repo's `repos/matomo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/matomo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/matomo)) From 26eef5db9c01dc50c886be05999c39062fa358fb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 28 Aug 2025 17:10:09 -0700 Subject: [PATCH 2482/2686] Run update.sh --- node/README.md | 16 ++++++++-------- php/README.md | 28 ++++++++++++++-------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/node/README.md b/node/README.md index 45c1a499e0a3..0ad807dcc2da 100644 --- a/node/README.md +++ b/node/README.md @@ -40,21 +40,21 @@ WARNING: - [`24-trixie-slim`, `24.7-trixie-slim`, `24.7.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/trixie-slim/Dockerfile) -- [`22-alpine3.21`, `22.18-alpine3.21`, `22.18.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.19-alpine3.21`, `22.19.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.18-alpine`, `22.18-alpine3.22`, `22.18.0-alpine`, `22.18.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.19-alpine`, `22.19-alpine3.22`, `22.19.0-alpine`, `22.19.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.18`, `22.18-bookworm`, `22.18.0`, `22.18.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.19`, `22.19-bookworm`, `22.19.0`, `22.19.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.18-bookworm-slim`, `22.18-slim`, `22.18.0-bookworm-slim`, `22.18.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.19-bookworm-slim`, `22.19-slim`, `22.19.0-bookworm-slim`, `22.19.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.18-bullseye`, `22.18.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.19-bullseye`, `22.19.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.18-bullseye-slim`, `22.18.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/de1c8c994e1bf8a5843ff7d4d987eee0cad69243/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.19-bullseye-slim`, `22.19.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bullseye-slim/Dockerfile) -- [`22-trixie`, `22.18-trixie`, `22.18.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/22/trixie/Dockerfile) +- [`22-trixie`, `22.19-trixie`, `22.19.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/trixie/Dockerfile) -- [`22-trixie-slim`, `22.18-trixie-slim`, `22.18.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/22/trixie-slim/Dockerfile) +- [`22-trixie-slim`, `22.19-trixie-slim`, `22.19.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/trixie-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) diff --git a/php/README.md b/php/README.md index f9066d627fa9..64434c7a1f43 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0beta1-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta1-trixie`, `8.5-rc-trixie`, `8.5.0beta1-cli`, `8.5-rc-cli`, `8.5.0beta1`, `8.5-rc`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0beta2-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta2-trixie`, `8.5-rc-trixie`, `8.5.0beta2-cli`, `8.5-rc-cli`, `8.5.0beta2`, `8.5-rc`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0beta1-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0beta2-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0beta1-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0beta2-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0beta1-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0beta2-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0beta1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta1-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0beta2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta2-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0beta1-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0beta2-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0beta1-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0beta2-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0beta1-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0beta2-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0beta1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0beta2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0beta1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0beta2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0beta1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0beta2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0beta1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0beta2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0beta1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0beta2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0beta1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/e126b4ecd291f6e03faa9bb688f012a51ff69149/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0beta2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/zts/Dockerfile) - [`8.4.12-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.12-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.12-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.12`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/cli/Dockerfile) From 29b2d42ee33f189bef26b6662cdf8f5c690e1ef5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Aug 2025 11:10:17 -0700 Subject: [PATCH 2483/2686] Run update.sh --- spiped/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiped/README.md b/spiped/README.md index 73f0c0dbee59..629a01481a03 100644 --- a/spiped/README.md +++ b/spiped/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/6df25f7ecdd98bd0de7726944ed64165699d2edb/1.6/Dockerfile) +- [`1.6.4`, `1.6`, `1`, `latest`](https://github.com/TimWolla/docker-spiped/blob/f7100845a437d5e72c79d384113cd657ca6f93de/1.6/Dockerfile) - [`1.6.4-alpine`, `1.6-alpine`, `1-alpine`, `alpine`](https://github.com/TimWolla/docker-spiped/blob/2a6429d25e5ebccc2a8075cb8ec85d5dd951579e/1.6/alpine/Dockerfile) From b4a78610bcef5eb74c28a086412198bfef974128 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 29 Aug 2025 12:10:07 -0700 Subject: [PATCH 2484/2686] Run update.sh --- varnish/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index 1b4ac6989479..4cb745b6641f 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.3`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/fresh/debian/Dockerfile) +- [`fresh`, `7.7.3`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/db0ebcb17d6d719c1f3fb665b818de6d09c05c0f/fresh/debian/Dockerfile) - [`fresh-alpine`, `7.7.3-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/fresh/alpine/Dockerfile) -- [`old`, `7.6.5`, `7.6`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/old/debian/Dockerfile) +- [`old`, `7.6.5`, `7.6`](https://github.com/varnish/docker-varnish/blob/db0ebcb17d6d719c1f3fb665b818de6d09c05c0f/old/debian/Dockerfile) - [`old-alpine`, `7.6.5-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/old/alpine/Dockerfile) From 6e07544ea35195d16f8febf9993175776dbc7b4c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 1 Sep 2025 16:10:48 -0700 Subject: [PATCH 2485/2686] Run update.sh --- docker/README.md | 25 ++++++++++++++++++++----- friendica/README.md | 18 +++++++++--------- ghost/README.md | 4 ++-- matomo/README.md | 2 +- mediawiki/README.md | 18 +++++++++--------- mongo/README.md | 23 +++++++++++++++++++++++ sonarqube/README.md | 20 ++++++++++---------- swipl/README.md | 4 ++-- ubuntu/README.md | 6 +++--- 9 files changed, 79 insertions(+), 41 deletions(-) diff --git a/docker/README.md b/docker/README.md index 9a1e159ba79a..7b365cd183ef 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,37 @@ WARNING: ## Simple Tags -- [`28.3.3-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/cli/Dockerfile) +- [`28.4.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.4.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/cli/Dockerfile) + +- [`28.4.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.4.0-rc.1-dind-alpine3.22`, `28.4.0-rc.1`, `28-rc`, `rc`, `28.4.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/dind/Dockerfile) + +- [`28.4.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/dind-rootless/Dockerfile) + +- [`28.4.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.4.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`28.3.3-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/cli/Dockerfile) - [`28.3.3-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.3-dind-alpine3.22`, `28.3.3`, `28.3`, `28`, `latest`, `28.3.3-alpine3.22`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind/Dockerfile) - [`28.3.3-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind-rootless/Dockerfile) -- [`28.3.3-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.3.3-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.3.3-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.3.3-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags +- `28.4.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.4.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.4.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `28.3.3-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.3.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.3.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index a7c1d9baa6ee..0c197eaef721 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2024.12-apache`, `apache`, `stable-apache`, `2024.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/e56a5124cbf9b88e01f0ebeab0b20d6dfeb25f10/2024.12/apache/Dockerfile) +- [`2024.12-apache`, `apache`, `stable-apache`, `2024.12`, `latest`, `stable`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2024.12/apache/Dockerfile) -- [`2024.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2024.12/fpm/Dockerfile) +- [`2024.12-fpm`, `fpm`, `stable-fpm`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2024.12/fpm/Dockerfile) -- [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2024.12/fpm-alpine/Dockerfile) +- [`2024.12-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2024.12/fpm-alpine/Dockerfile) -- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/e56a5124cbf9b88e01f0ebeab0b20d6dfeb25f10/2025.02-dev/apache/Dockerfile) +- [`2025.02-dev-apache`, `dev-apache`, `2025.02-dev`, `dev`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2025.02-dev/apache/Dockerfile) -- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2025.02-dev/fpm/Dockerfile) +- [`2025.02-dev-fpm`, `dev-fpm`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2025.02-dev/fpm/Dockerfile) -- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/ae4df4f198515a27ab160bd3679cf91183a17cce/2025.02-dev/fpm-alpine/Dockerfile) +- [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2025.02-dev/fpm-alpine/Dockerfile) -- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/apache/Dockerfile) +- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/apache/Dockerfile) -- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/fpm/Dockerfile) +- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/fpm/Dockerfile) -- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/4ae908d4f5d7f9772efc673f9253194872d1cf29/2025.07-rc/fpm-alpine/Dockerfile) +- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index 13a8830ab4a3..a5f834d239a6 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.5`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/268610fc7ea18f293eb51c4533fef9c1cbb802be/6/debian/Dockerfile) +- [`6.0.6`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/6290e8d21bdd45e71987936e4914ee3d3e15b9b2/6/debian/Dockerfile) -- [`6.0.5-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/268610fc7ea18f293eb51c4533fef9c1cbb802be/6/alpine/Dockerfile) +- [`6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6290e8d21bdd45e71987936e4914ee3d3e15b9b2/6/alpine/Dockerfile) - [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index cc6f876a4531..82dcee7ab9e9 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -59,7 +59,7 @@ WARNING: - User-centric insights - Customisable and extensible -![logo](https://raw.githubusercontent.com/docker-library/docs/955ef68222b4466509ca877daab484bc0095afcf/matomo/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/1553a3fe5fc08c4619fcacb51e61e33f3495e26d/matomo/logo.svg?sanitize=true) # How to use this image diff --git a/mediawiki/README.md b/mediawiki/README.md index 6e656a4553d7..9b2f60277add 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.44.0`, `1.44`, `latest`, `stable`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/apache/Dockerfile) +- [`1.44.0`, `1.44`, `latest`, `stable`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/apache/Dockerfile) -- [`1.44.0-fpm`, `1.44-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/fpm/Dockerfile) +- [`1.44.0-fpm`, `1.44-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/fpm/Dockerfile) -- [`1.44.0-fpm-alpine`, `1.44-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.44/fpm-alpine/Dockerfile) +- [`1.44.0-fpm-alpine`, `1.44-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/fpm-alpine/Dockerfile) -- [`1.43.3`, `1.43`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/apache/Dockerfile) +- [`1.43.3`, `1.43`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/apache/Dockerfile) -- [`1.43.3-fpm`, `1.43-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/fpm/Dockerfile) +- [`1.43.3-fpm`, `1.43-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/fpm/Dockerfile) -- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.43/fpm-alpine/Dockerfile) +- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/fpm-alpine/Dockerfile) -- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/apache/Dockerfile) +- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/apache/Dockerfile) -- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/fpm/Dockerfile) +- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/fpm/Dockerfile) -- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/cab2f393566610279ba8ed3288d25b72db90c735/1.39/fpm-alpine/Dockerfile) +- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index fbd768b5e6c5..ad3a168d75fb 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -36,6 +36,14 @@ WARNING: - [`8.0.13-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.24-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/Dockerfile) + +- [`7.0.24-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.24-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.24-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) - [`7.0.23-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -69,6 +77,21 @@ WARNING: - [`8.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- `7.0.24-rc0`, `7.0-rc`: + + - [`7.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/Dockerfile) + - [`7.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.24-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.24-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `7.0.23`, `7.0`, `7`: - [`7.0.23-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 319a9c085aa0..3348c0025902 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.4.2-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/developer/Dockerfile) +- [`2025.4.2-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/developer/Dockerfile) -- [`2025.4.2-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/enterprise/Dockerfile) +- [`2025.4.2-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/enterprise/Dockerfile) -- [`2025.4.2-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.2-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/datacenter/app/Dockerfile) -- [`2025.4.2-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.2-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/datacenter/search/Dockerfile) - [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) @@ -40,17 +40,17 @@ WARNING: - [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) -- [`25.8.0.112029-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/community-build/Dockerfile) +- [`25.9.0.112764-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/community-build/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/community/Dockerfile) +- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/community/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/developer/Dockerfile) +- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/developer/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/enterprise/Dockerfile) +- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/enterprise/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/datacenter/app/Dockerfile) +- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/datacenter/app/Dockerfile) -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/d0232e04203b6d79306b2e5c403c6b41d4d65741/9/datacenter/search/Dockerfile) +- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/datacenter/search/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index d515c11a85a4..099a29d1b700 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.25`](https://github.com/SWI-Prolog/docker-swipl/blob/c074ca594a29bc53c06fac914f1f0217bb593352/9.3.25/bookworm/Dockerfile) +- [`latest`, `9.3.29`](https://github.com/SWI-Prolog/docker-swipl/blob/a62d9e3814bdc1d431ba7830a1e736c137b90e0a/9.3.29/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/c074ca594a29bc53c06fac914f1f0217bb593352/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/a62d9e3814bdc1d431ba7830a1e736c137b90e0a/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index bd8a8415bc85..08641ce5bdec 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.04`, `jammy-20250730`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250730-ff6f2cbe&id=ff6f2cbe85556208c97af5df1e3a129995b0421d) +- [`22.04`, `jammy-20250819`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250819-3f1e6c43&id=3f1e6c43e88f6d1d68c1393c04b3733060952321) -- [`24.04`, `noble-20250716`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250716-0bed38f8&id=0bed38f848c1d36e629285d6aecc20f17083b469) +- [`24.04`, `noble-20250805`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250805-779a91e8&id=779a91e80d8ca0c4e26bf1639ade02c8dc9bb537) - [`25.04`, `plucky-20250730`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250730-64382f68&id=64382f68a9c78883c68e8fd9c1632107a6d24c9f) -- [`25.10`, `questing-20250806`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250806-6021f9ff&id=6021f9fffdc92e1ad574db45a148cd2fb91f121d) +- [`25.10`, `questing-20250830`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250830-c245f382&id=c245f3826f2631032e862a48f183fb528158d08a) # Quick reference (cont.) From d32ff7983a6b28801b02c5d576402c1ded871223 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Sep 2025 11:10:21 -0700 Subject: [PATCH 2486/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- elasticsearch/README.md | 8 ++++---- golang/README.md | 12 ++++++------ kibana/README.md | 8 ++++---- logstash/README.md | 8 ++++---- openjdk/README.md | 40 ++++++++++++++++++++-------------------- 6 files changed, 46 insertions(+), 46 deletions(-) diff --git a/docker/README.md b/docker/README.md index 7b365cd183ef..29299aea10b5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`28.4.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.4.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/cli/Dockerfile) +- [`28.4.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.4.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/cli/Dockerfile) -- [`28.4.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.4.0-rc.1-dind-alpine3.22`, `28.4.0-rc.1`, `28-rc`, `rc`, `28.4.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/dind/Dockerfile) +- [`28.4.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.4.0-rc.2-dind-alpine3.22`, `28.4.0-rc.2`, `28-rc`, `rc`, `28.4.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/dind/Dockerfile) -- [`28.4.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/dind-rootless/Dockerfile) +- [`28.4.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/dind-rootless/Dockerfile) -- [`28.4.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.4.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.4.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.4.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`28.3.3-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `28.4.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: +- `28.4.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - [`28.4.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.4.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/4b77502f6afedb9868ed55d0d1db2a75bcf934a8/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.4.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.4.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.3.3-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: diff --git a/elasticsearch/README.md b/elasticsearch/README.md index bfbfa65efbcc..490977de89b3 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,13 +26,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/elasticsearch/Dockerfile) -- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/elasticsearch/Dockerfile) +- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/elasticsearch/Dockerfile) -- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/elasticsearch/Dockerfile) +- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/elasticsearch/Dockerfile) -- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/elasticsearch/Dockerfile) +- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/elasticsearch/Dockerfile) -- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/elasticsearch/Dockerfile) +- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index d7e3b611d634..d1a21fbde5ae 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250823-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/trixie/Dockerfile) +- [`tip-20250831-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/trixie/Dockerfile) -- [`tip-20250823-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/bookworm/Dockerfile) +- [`tip-20250831-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/bookworm/Dockerfile) -- [`tip-20250823-alpine3.22`, `tip-alpine3.22`, `tip-20250823-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/alpine3.22/Dockerfile) +- [`tip-20250831-alpine3.22`, `tip-alpine3.22`, `tip-20250831-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/alpine3.22/Dockerfile) -- [`tip-20250823-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/alpine3.21/Dockerfile) +- [`tip-20250831-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250823`, `tip`: +- `tip-20250831`, `tip`: - - [`tip-20250823-trixie`](https://github.com/docker-library/golang/blob/5d89c73aabe47eb04f13cb8b029271d443e5e0b7/tip/trixie/Dockerfile) + - [`tip-20250831-trixie`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 0274f492aff6..3cdba8dce8d2 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,13 +28,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) -- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/kibana/Dockerfile) +- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/kibana/Dockerfile) -- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/kibana/Dockerfile) +- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/kibana/Dockerfile) -- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/kibana/Dockerfile) +- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/kibana/Dockerfile) -- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/kibana/Dockerfile) +- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index da491ef6b21c..ec2c72f95022 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,13 +26,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/logstash/Dockerfile) -- [`8.18.5`](https://github.com/elastic/dockerfiles/blob/0b55e4071466454c4a0241f6cf41198d5a88df1d/logstash/Dockerfile) +- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/logstash/Dockerfile) -- [`8.19.2`](https://github.com/elastic/dockerfiles/blob/2ed23b0bc3f4c094097cc7ec75bcd359abd0018f/logstash/Dockerfile) +- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/logstash/Dockerfile) -- [`9.0.5`](https://github.com/elastic/dockerfiles/blob/e69a6a63c299a6ac53e838174d1f451392ff2bdc/logstash/Dockerfile) +- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/logstash/Dockerfile) -- [`9.1.2`](https://github.com/elastic/dockerfiles/blob/b39c617bff558b7359b49ceeabb88c31949a670f/logstash/Dockerfile) +- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/logstash/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index e6d134fdf7c7..73c8762a49a1 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,25 +42,25 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-12-jdk-oraclelinux9`, `26-ea-12-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-12-jdk-oracle`, `26-ea-12-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-13-jdk-oraclelinux9`, `26-ea-13-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-13-jdk-oracle`, `26-ea-13-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-12-jdk-oraclelinux8`, `26-ea-12-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-13-jdk-oraclelinux8`, `26-ea-13-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-12-jdk-trixie`, `26-ea-12-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/trixie/Dockerfile) +- [`26-ea-13-jdk-trixie`, `26-ea-13-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/trixie/Dockerfile) -- [`26-ea-12-jdk-slim-trixie`, `26-ea-12-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-12-jdk-slim`, `26-ea-12-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-13-jdk-slim-trixie`, `26-ea-13-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-13-jdk-slim`, `26-ea-13-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-12-jdk-bookworm`, `26-ea-12-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/bookworm/Dockerfile) +- [`26-ea-13-jdk-bookworm`, `26-ea-13-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/bookworm/Dockerfile) -- [`26-ea-12-jdk-slim-bookworm`, `26-ea-12-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-13-jdk-slim-bookworm`, `26-ea-13-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-12-jdk-windowsservercore-ltsc2025`, `26-ea-12-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-13-jdk-windowsservercore-ltsc2025`, `26-ea-13-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-12-jdk-windowsservercore-ltsc2022`, `26-ea-12-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-13-jdk-windowsservercore-ltsc2022`, `26-ea-13-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-12-jdk-nanoserver-ltsc2025`, `26-ea-12-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-13-jdk-nanoserver-ltsc2025`, `26-ea-13-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-12-jdk-nanoserver-ltsc2022`, `26-ea-12-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-13-jdk-nanoserver-ltsc2022`, `26-ea-13-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) @@ -84,21 +84,21 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `26-ea-12-jdk`, `26-ea-12`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-13-jdk`, `26-ea-13`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-12-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-12-jdk-windowsservercore`, `26-ea-12-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-13-jdk-windowsservercore`, `26-ea-13-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-12-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-12-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-12-jdk-nanoserver`, `26-ea-12-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-13-jdk-nanoserver`, `26-ea-13-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-12-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-12-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b37a81c3623cc7607bd4728486dca656ae0f0a1c/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-13-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-13-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: From dbb5453d50743936910d0dcfe79bac875cf410fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Sep 2025 12:10:16 -0700 Subject: [PATCH 2487/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 426731d9a196..08047c9bb297 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -32,13 +32,13 @@ WARNING: - [`4.2.0-beta.2-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) -- [`4.1.3`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/ubuntu/Dockerfile) +- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/017aeffeb708a83074972a80e283e011032f8b5b/4.1/ubuntu/Dockerfile) -- [`4.1.3-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) +- [`4.1.4-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.3-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b499e6df24978959d526acddcdc4a4842091533b/4.1/alpine/Dockerfile) +- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/017aeffeb708a83074972a80e283e011032f8b5b/4.1/alpine/Dockerfile) -- [`4.1.3-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) +- [`4.1.4-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/ubuntu/Dockerfile) From f4b637600193e6b28c04ef786318b38f4758412c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Sep 2025 10:10:18 -0700 Subject: [PATCH 2488/2686] Run update.sh --- cassandra/README.md | 2 +- dart/README.md | 4 ++-- mongo/README.md | 23 +++++++++++++++++++++++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 1e9cf4a482bc..c4747d8c1f1c 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/da543c94df2e77fbbc83023c3259527aec45ec12/5.0/Dockerfile) -- [`4.1.9`, `4.1`, `4`, `4.1.9-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/8b125f8e4cb082768e6d299130722ed3547e2206/4.1/Dockerfile) +- [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/efc59fdd09c2ed4dcde420064eb0223898d77fb2/4.1/Dockerfile) - [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b4b0579f68b8dfbffb61a438c8aaad14fccf44c4/4.0/Dockerfile) diff --git a/dart/README.md b/dart/README.md index 284adf161ba0..702e29b9e348 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.2-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.2`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/da0b319059580bd505f8342bf396804777ed115b/stable/trixie/Dockerfile) +- [`3.9.2-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.2`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6f93b5f8665f78d29183f153e05b01b2eed7e0c2/stable/trixie/Dockerfile) -- [`3.10.0-75.2.beta-sdk`, `beta-sdk`, `3.10.0-75.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/da0b319059580bd505f8342bf396804777ed115b/beta/trixie/Dockerfile) +- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6f93b5f8665f78d29183f153e05b01b2eed7e0c2/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index ad3a168d75fb..4be214e03704 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,6 +28,14 @@ WARNING: ## Simple Tags +- [`8.0.14-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/Dockerfile) + +- [`8.0.14-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.14-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.14-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) - [`8.0.13-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -62,6 +70,21 @@ WARNING: ## Shared Tags +- `8.0.14-rc0`, `8.0-rc`: + + - [`8.0.14-rc0-noble`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/Dockerfile) + - [`8.0.14-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.14-rc0-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.14-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.14-rc0-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.14-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `8.0.13`, `8.0`, `8`, `latest`: - [`8.0.13-noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) From 6ca04312a092e397603cd574735fbf4a2d2aabfd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Sep 2025 12:10:17 -0700 Subject: [PATCH 2489/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index d1a21fbde5ae..ecae1c272130 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`1.25.0-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/trixie/Dockerfile) +- [`1.25.1-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/trixie/Dockerfile) -- [`1.25.0-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/bookworm/Dockerfile) +- [`1.25.1-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/bookworm/Dockerfile) -- [`1.25.0-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.0-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/alpine3.22/Dockerfile) +- [`1.25.1-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.1-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/alpine3.22/Dockerfile) -- [`1.25.0-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/alpine3.21/Dockerfile) +- [`1.25.1-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/alpine3.21/Dockerfile) -- [`1.25.0-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25.1-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25.0-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25.1-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25.0-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25.1-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25.0-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25.1-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.6-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/trixie/Dockerfile) +- [`1.24.7-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/trixie/Dockerfile) -- [`1.24.6-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/bookworm/Dockerfile) +- [`1.24.7-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/bookworm/Dockerfile) -- [`1.24.6-alpine3.22`, `1.24-alpine3.22`, `1.24.6-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.22/Dockerfile) +- [`1.24.7-alpine3.22`, `1.24-alpine3.22`, `1.24.7-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/alpine3.22/Dockerfile) -- [`1.24.6-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/alpine3.21/Dockerfile) +- [`1.24.7-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/alpine3.21/Dockerfile) -- [`1.24.6-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.7-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.6-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.7-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.6-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.7-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.6-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20250831-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/trixie/Dockerfile) @@ -70,37 +70,37 @@ WARNING: ## Shared Tags -- `1.25.0`, `1.25`, `1`, `latest`: +- `1.25.1`, `1.25`, `1`, `latest`: - - [`1.25.0-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.25/trixie/Dockerfile) - - [`1.25.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.1-trixie`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/trixie/Dockerfile) + - [`1.25.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.0-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.25.1-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.25.0-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.0-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.0-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.25.1-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.25.0-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25.0-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/87f680b3862188425a9ad4a0a544f3c94f903b15/1.25/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25.1-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.6`, `1.24`: +- `1.24.7`, `1.24`: - - [`1.24.6-trixie`](https://github.com/docker-library/golang/blob/8426bbb144ff4507d189ca12ee7e09c3545717ac/1.24/trixie/Dockerfile) - - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.7-trixie`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/trixie/Dockerfile) + - [`1.24.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.6-windowsservercore`, `1.24-windowsservercore`: +- `1.24.7-windowsservercore`, `1.24-windowsservercore`: - - [`1.24.6-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.6-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.6-nanoserver`, `1.24-nanoserver`: +- `1.24.7-nanoserver`, `1.24-nanoserver`: - - [`1.24.6-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.6-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/c057a3a509ebb027cbba79248252dc6d6cde799c/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20250831`, `tip`: From 99a7fc0d0f37bfa75b2a2c8825a6f5cc9d53aa30 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 3 Sep 2025 14:10:36 -0700 Subject: [PATCH 2490/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 0ad807dcc2da..676aeeefd734 100644 --- a/node/README.md +++ b/node/README.md @@ -56,21 +56,21 @@ WARNING: - [`22-trixie-slim`, `22.19-trixie-slim`, `22.19.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/trixie-slim/Dockerfile) -- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.4-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.21/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.4-alpine`, `20.19.4-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/alpine3.22/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.5-alpine`, `20.19.5-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/alpine3.22/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.4`, `20.19.4-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.5`, `20.19.5-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.4-bookworm-slim`, `20.19.4-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.5-bookworm-slim`, `20.19.5-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.4-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/c33478265e946cb3c22fd6b404137588fc18c12a/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.5-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.4-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/c3973687f2e3de90dd0ffac1199ab8d7221ac27a/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.5-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bullseye-slim/Dockerfile) -- [`20-trixie`, `20.19-trixie`, `20.19.4-trixie`, `iron-trixie`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/20/trixie/Dockerfile) +- [`20-trixie`, `20.19-trixie`, `20.19.5-trixie`, `iron-trixie`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/trixie/Dockerfile) -- [`20-trixie-slim`, `20.19-trixie-slim`, `20.19.4-trixie-slim`, `iron-trixie-slim`](https://github.com/nodejs/docker-node/blob/f9e105af51a35a84638d79cf717c507075f33985/20/trixie-slim/Dockerfile) +- [`20-trixie-slim`, `20.19-trixie-slim`, `20.19.5-trixie-slim`, `iron-trixie-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/trixie-slim/Dockerfile) # Quick reference (cont.) From 2e7613b2c57dada8430afdb19384413617984efb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Sep 2025 10:10:22 -0700 Subject: [PATCH 2491/2686] Run update.sh --- docker/README.md | 31 ++++++++----------------------- emqx/README.md | 2 +- neo4j/README.md | 8 ++++---- orientdb/README.md | 4 ++-- 4 files changed, 15 insertions(+), 30 deletions(-) diff --git a/docker/README.md b/docker/README.md index 29299aea10b5..8acef129a421 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`28.4.0-rc.2-cli`, `28-rc-cli`, `rc-cli`, `28.4.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/cli/Dockerfile) +- [`28.4.0-cli`, `28.4-cli`, `28-cli`, `cli`, `28.4.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/cli/Dockerfile) -- [`28.4.0-rc.2-dind`, `28-rc-dind`, `rc-dind`, `28.4.0-rc.2-dind-alpine3.22`, `28.4.0-rc.2`, `28-rc`, `rc`, `28.4.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/dind/Dockerfile) +- [`28.4.0-dind`, `28.4-dind`, `28-dind`, `dind`, `28.4.0-dind-alpine3.22`, `28.4.0`, `28.4`, `28`, `latest`, `28.4.0-alpine3.22`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind/Dockerfile) -- [`28.4.0-rc.2-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/dind-rootless/Dockerfile) +- [`28.4.0-dind-rootless`, `28.4-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind-rootless/Dockerfile) -- [`28.4.0-rc.2-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.4.0-windowsservercore-ltsc2025`, `28.4-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.4.0-rc.2-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.3.3-cli`, `28.3-cli`, `28-cli`, `cli`, `28.3.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/cli/Dockerfile) - -- [`28.3.3-dind`, `28.3-dind`, `28-dind`, `dind`, `28.3.3-dind-alpine3.22`, `28.3.3`, `28.3`, `28`, `latest`, `28.3.3-alpine3.22`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind/Dockerfile) - -- [`28.3.3-dind-rootless`, `28.3-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/7d789f6d3ca9d6cef6c7cbcbbefbd6483ee3d2cd/28/dind-rootless/Dockerfile) - -- [`28.3.3-windowsservercore-ltsc2025`, `28.3-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.3.3-windowsservercore-ltsc2022`, `28.3-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.4.0-windowsservercore-ltsc2022`, `28.4-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.4.0-rc.2-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.4.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.4.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8dc1ba2d4332b949c82582e1c6cde1cdfab9fdbf/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `28.3.3-windowsservercore`, `28.3-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.4.0-windowsservercore`, `28.4-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.3.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.3.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/bce646b7ffd6d126d920a3e06dd59d9192be8d9c/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.4.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/emqx/README.md b/emqx/README.md index 20227d4cb22a..306c64d7bb3f 100644 --- a/emqx/README.md +++ b/emqx/README.md @@ -34,7 +34,7 @@ Consequently, we stopped publishing the `emqx` Docker Official Image. EMQX v5.9. - [`5.7.2`, `5.7`](https://github.com/emqx/emqx-docker/blob/35e70c8e602687db5a447c9573bde8ab77335fdc/5.7/Dockerfile) -- [`5.8.7`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/18bad90efc25023480d0a11978f7d90e085116b5/5.8/Dockerfile) +- [`5.8.8`, `5.8`, `5`, `latest`](https://github.com/emqx/emqx-docker/blob/cddc2e939a0ec978fb381aaed4bf2cd172c625f6/5.8/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index c3f2b046d69f..48fcef753326 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.08.0-enterprise-ubi9`, `2025.08-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/ubi9/enterprise/Dockerfile) -- [`5.26.11-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.11-community`, `5.26-community`, `5-community`, `5.26.11-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.11`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/bullseye/community/Dockerfile) +- [`5.26.12-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.12-community`, `5.26-community`, `5-community`, `5.26.12-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.12`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/community/Dockerfile) -- [`5.26.11-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.11-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/bullseye/enterprise/Dockerfile) +- [`5.26.12-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.12-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/enterprise/Dockerfile) -- [`5.26.11-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.11-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/ubi9/community/Dockerfile) +- [`5.26.12-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.12-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/ubi9/community/Dockerfile) -- [`5.26.11-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/235ccdb26ebbae0520ee5dd157b6055b34b88661/5.26.11/ubi9/enterprise/Dockerfile) +- [`5.26.12-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/ubi9/enterprise/Dockerfile) - [`4.4.45`, `4.4.45-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ad97122c1c0883832851bf30d1cddc51ee5bafb3/4.4.45/bullseye/community/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index f5833518d9aa..7832e0772597 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.43`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/5c99861048806e75095f1ecf85bad22275694a7f/release/3.2.x/3.2.43/Dockerfile) +- [`3.2.44`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/0bb558c4efb3735b31003bd90fc094dc17b7ef5b/release/3.2.x/3.2.44/Dockerfile) -- [`3.2.43-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/5c99861048806e75095f1ecf85bad22275694a7f/release/3.2.x/3.2.43-tp3/Dockerfile) +- [`3.2.44-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/0bb558c4efb3735b31003bd90fc094dc17b7ef5b/release/3.2.x/3.2.44-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) From a699a4b975a6b15d3f2a198221dfc93d792ff457 Mon Sep 17 00:00:00 2001 From: Laura Kassovic Date: Thu, 4 Sep 2025 19:25:10 +0200 Subject: [PATCH 2492/2686] Update Gradle metadata (#2619) --- gradle/README-short.txt | 2 +- gradle/content.md | 21 ++++++++++----------- gradle/get-help.md | 1 + gradle/logo.png | Bin 12818 -> 31820 bytes gradle/metadata.json | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 gradle/get-help.md diff --git a/gradle/README-short.txt b/gradle/README-short.txt index 906defe3ade1..1326f0870772 100644 --- a/gradle/README-short.txt +++ b/gradle/README-short.txt @@ -1 +1 @@ -Gradle is a build tool with a focus on build automation and support for multi-language development. +Gradle is a fast, reliable, and flexible open-source build tool with an elegant, extensible DSL. \ No newline at end of file diff --git a/gradle/content.md b/gradle/content.md index 14edc0e23c96..9438d5e1448f 100644 --- a/gradle/content.md +++ b/gradle/content.md @@ -1,21 +1,20 @@ # What is Gradle? -[Gradle](https://gradle.org/) is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins. +[Gradle](https://gradle.org/) is a fast, dependable, and adaptable open-source build automation tool with an elegant and extensible declarative build language. %%LOGO%% # How to use this image -## Building a Gradle project +## Run a Gradle task -Run this from the directory of the Gradle project you want to build. +From your project directory: -`docker run --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project %%IMAGE%% gradle ` +```bash +docker run --rm -u gradle \ + -v "$PWD":/home/gradle/project \ + -w /home/gradle/project \ + %%IMAGE%% gradle +``` -Note the above command runs using uid/gid 1000 (user *gradle*) to avoid running as root. - -If you are mounting a volume and the uid/gid running Docker is not *1000*, you should run as user *root* (`-u root`). *root* is also the default, so you can also simply not specify a user. - -## Java 21 support - -Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. +Replace `` with your desired Gradle task, e.g., `build`. diff --git a/gradle/get-help.md b/gradle/get-help.md new file mode 100644 index 000000000000..dc338894215d --- /dev/null +++ b/gradle/get-help.md @@ -0,0 +1 @@ +[Gradle Community Slack](https://gradle.org/slack-invite), [Gradle Community Forum](https://discuss.gradle.org), [Docker Community Slack](https://dockr.ly/comm-slack)⁠, [Server Fault](https://serverfault.com/help/on-topic)⁠, [Unix & Linux](https://unix.stackexchange.com/help/on-topic)⁠, [Stack Overflow⁠](https://stackoverflow.com/help/on-topic) diff --git a/gradle/logo.png b/gradle/logo.png index 447fda8cf6f9365fe1821936cff47645e0514ca8..022a09d95a1032ca150b9a9c04e9ba48fe4cc2e3 100644 GIT binary patch literal 31820 zcmX6@b6BO_*FM>H6DQktQb!b+5J8 zMx?T$6bd3CA^-qDk&%{A1puIYKEI#gVF3ULhiUud&jEp}q?W6igN3Vyv9mcq%*?^W zoJ_{f*wS3p+}O;^Y0O*@0Pwk#kr4agxpuB=<-8z`ZQt$;ID#ERYcW=Xrv!SU*pRUX z5k?i{StNehhu?u7K_kH15Ifw+H!(KH|FXZF|c!96HEKXi&Va+Ynb5Cl-0% z@p=L4W%6dvrfJ^F?n10|0$Ytn^9d2NxKlDcGw(Fin;(CPel;Jk_$8>2;wYl*^X`38i>MgJE>5I7T)(f ztOJ;>GevvOEKe7Gt1opHEPQ*k#Su;0!)zkp&HBA_O7?5jbEtqws~HV%{@X>Nd^Bb( zzY*rVrwhN9Xrd0g)zh)H;~zhJS zlTvt*Ww>XkcMxt!@j)^G>*AauIyo6cOdoKUPyzY!t%69To%;a6AgB-qOx> z%hM8>iMe^35$<}Lsk~UCF)(_n6#BMB&jHrvg^4Y&^AgHYPn$7tEDLe|%4m+3h;gi5 zi6ZhVC%86pb?aLF{%wV6)Jq$j_!X?|zR_|ja8=cfi`&KOOiSt6_4ReF72YU!WNunD^+fk>VE;z&6ON(o^wze`gzE#?;2%2` zwAYPj=F*~C^>dSq1xuu6(FIytpzo$j8pwgH{|8X}<(&@nq*{3v{EnA@puT|xNe$T( z2Z0~C%Ng7!J9F-J%^t|cfz081IL{BCN64z#`;fEZM_B-g{&kA71_?sWROoB3yZ`VE z@=MkX($ai;E>Z;}BwCIGHX%%);!+p!j>QU>>R-6;gbRR}8l{!BZrSS$J@?^oAMs>RQlwN5e`<3++U>iO9le>n&sYI zss)HiS;&}0qm*;(%Rhc2+{nKp|AkL!4jtORnL7_|6$xIBQu$dhGC}2EnOD;v+F{-x zwmQlY^AXBDK+kpdgU-6ihx!QLZ06fT0LJL4|MYlhZ|#7ce-+EE+fVkl=eQ5;{+k)1 zUPJ8l!nv%H*?kp+Mmh5edS7N-PN};u3niE#RGkFcACHTOf}W@%hr5Q7w^QCW@em`& zh`Cl8cR|kq5G$Q6i`2oaU0-eh_b9u?Qo;NE!S&y<*P`&~jM%T2OE#!Oqahuyyo{A)-f`t8@ z1xvvL)E;z;L?U(k>eJ;OP@%wDxw9ON{(=+FKVV4=T)an}0r3W5jrM%Jb4GG_StO?N zv1f7(W_00Y>|TGB0bowfMOhw9%h&We4?u+m22FezeC%g>nwtzjWo-nK;qyEyI>@3! z`xILKD=B9R97fR?w$)?tnxuXV*wDdw^~$fA)!e>U8epxcbNRh|myO2i5SQ`?6ma5_ zHFk1G!t%sB^5YiYX(8!Fiu01bw`Y;|;VL5dMJn*@X6-wdSIFxfC_T^;DT`Jl6Tzs= zpzcCUxjWvofJt~nmaBCypPe())^CCB4|T&MIYfMQtk(7~(*_)u4VcrFfj0+?aYYjP z0p2(dSv^GYpq)RwDK>@AqGK6kmhKYMxgJ`Kq4mFKg#-4QJ0c&ZJHMH?)jiHJ9>eON zCmg+`Tag?*#{%nOb&tMLIjT(VsR8gbk5C$@dEadYGUe^Sz#1wRyCa@fV(G}P9$g1Y z!QM@1Y<1eeoU|Q!wqz=yd-S!#gcnZ3!97Up!PcIc2p2Z}qT&Mvo_&I}F&oU3IlG|k zh$zv?s!bu+tpVe4kJ+7v{IK1IAkD)-fiT!H{O>CWkgq+1k&!V_4p<=hwF49qq6_5I zMnoaJuAWyyj{=T8mgGYW5NeeB7{SjL!cuE1kJS`bO;ovGC`bKy+LVsQMl+1_Y+?Ip z34nKqw;vK0(&@A`)PykxikFY6d|WLVUKg1#iELJdmnl0?-5#RDKQO6rP-oMtZ;NcW z)lIR7DG6=#`l+qIpJHaU^bVh03APlw2jSv5n$vDSQYTNVnEjM3Tm7yX~Ik2 zIX~A@48716!XxNpFAfOb>Zj5x;ZsW08q-+30W{bM&+ zSwq?lNuCxqiZ;i!Sun!X>IZDnrq(l$9r}XGBMBtE2?iqe0@Z_t48Oln+H791*SvZ()FZ%5hKB-WNHn?o7Qs-bRTu4B## zHy0qnA@;276@_({Iec9?V89vOf;b*9V8-7J(B-mE+QoM>Q^drOf5eKdx2AV`ylXuwj zUy{_YrzV%PsWldn7Nb*FEdbJxH7PNBK~iAPaP3wRB^JIlTj3&Q)zP>dHL?DPObmnG zt`tE|bz?Wj{ngwQ{}}y|UbC3%w<<{QyrH7;8V!9MDQ1%eHN7Ej;Hh;<@UPRm! zDABU~(Y_WVuh;b!?NdYWF#GZ`=t6*LDGB)Z%a+e!q#7C5wU7c)}g~lD3;Ib ztdB_YcZO$+L#B`C46fQl&Lq1Ff&&{Tc8EeAILUgC=GhQD!@NCKJ{#c{q05kew{7xn8!UQ~A1i(+Anl{&U^b!i`=b@3ZBk6IFao z;{+^~X`w!5a_SQZQNd^n8|}=c?Mq=V4mu?-!i6xoZnt5&YSu&0jbZsR9tT1q`BTMU zQ9tRv4JF^HLA3FPXNfT3O-cz&^V|1fwGBih()5e8z_uabx9Z47ViJG~^C*}JW>cqT zW4fOf>Pp14gOG?`o-}tQ+u3dj+`;48uTu%jq0jk0~ip6 z#~Tq5A9l|ys5bGTc|A}nda-Mkd5VIkW8EC8V|L7@jf7 z3(tImuAwj2>n2Gr52m?ACXazImlFKrfTvxH)10L zNM&E7q%*%#`?pKaM0yaxki%~4il8x_+6eV-Y?L8_e`3;F%4s5cBor!x#aX`%3w(cR z)s7zNMEf1~i0UVN$R;C2>ltz}ACH5LDY`6Xx`ykg(&q)zW=hzeq^}+qIYRC#n!lR5 zQAngwX($5XZsuxP&-tAZ0s42N3{r{^ULLvtqi2KUtR?l8){RLWaz79d9@o?XBnlNt z7@kxuz%O6xjdegcWX67gxCXF~2{@aqm8;`#Q(R~8oN(~NbOsWX;AuD|ui2zZ_`KG> z=~tsM9*!UuIho0FLt^FN0U$f)!NeWc~ zQXpN1>(10RPW3Aebf#k!&HXE9?#vCSU}YR@l7aLW#;Umby@O2ozrctbopR9AfH1}S z9BH)%V*s_?h10{NZ?!?_yhR3nT&8&Z!CEn2&fPBe-fuc*TN&!rTgQk}lb(kbqFb4f zI!RGDHOx3+p0Cw2>7A%Q+uiO-hb%7JM{2h!n#Z}igISPo&UGZ0p6K#r*PU!DDu!Ct)LFaJEJ5E5Tr`s;$t85P+ zLWsP;gXlAz%Z{*e{u3871XXrXbBMbzn)(fLXC|9`o{COe>u6}v#842u*Jzw%#xE_E z?q_FQ0dg%HGh2(`0dJKV%2Vwr3UZuvU@Q z3kDIE`DQg2Nv9E3EHHIS4}L*f?Zce#)i_V zMn1sQRGg3BXZcGLzhxw_ZLJ|dc=2|qedT*J+R$COId}Pb-#Iz?fMC3T+(92*Nk*9t zXB%#Q7>?*=K>v+!zQbtzCOUd&UI!lIE9lQ1&cFB`leK2r!{d+B8D?x;$=1)`NU%8; z5Zaaxg*%hWBRuNTDeKMi;kG2or2-{x_TVvXb<6D$>@)a6e z7p*q(TCxKye^iFqF{#Aq!_R<;JC<~Y9OP`R*v3K#q~BZb2h5KMFI6VSnAFsCs^vH< zmJlC99bvZ50;rOsU%zp8^tvfiwm!)8;5|qdyb5T2RX5pjsnlbT_>~+p;-uW6*90X< z{JOq7F>|gkIk2o-2W{-eiermCemU7%@h(Rq-dP(acd{}z7L%;LdHt23Zz zv-6Sc-?KZD`f}aS^P%kh>m;DbsMse!?>BwFvzcGrxNvKy^0DM3316H=vmF`K zm7we=o){W;>dJu6&y1VdLyMPkjil4u5A8|lu&u%MdILwEXg$pKmm_8IrwAShK?Ym6 z>YrKRf-$(F%a6_0S|isGi2l_oj3fsDZ`u0e!Ym-Tsd4E=^N(V3TBFyaJik`4c&NnH ztu__yu1Zce3os;~-$ys>p)!fPDyySV1D=Z^ZsznQD80OPv(QiI*H7-FDx11!V_5Qh z69ln?*=F3xCh2h&&71PH)i^GLFm5UZPtGxFqz6LS8F!7T&N$fBW*0QMp`2q?ag&HR zNF|Zc8O?dksgw+SyY{S6yJ19_oX|e3XC>(_i=(q;9oCt80W;^XekM)#H;t|k`0jM^ ztbAdVu%xiHQPMJ$kOpYIO5n$#x;V?pkx8MaJoI)x&u5iJi$I#DoOrTbzO~4yNp2_u z)XWS%{q+Pw_}({Nh986%6g+L&A9$2li>;%`d)vh=|Zn!-@yB+0+EMXHd zM6KcXNoX`l`0Puyk(F0|SVuNpV*VjvLoKjqPj6A&o0~0gq8Pp_7CQv4fe~RxW0-03 zJD$UA=DA;DuIz0X1ZiAOHx`wrL|5REHNVL(9!d(7_hT%*v}~e@_(Pw)v!y(e%?YL3 zbmHOQvJwcACmC6YBq56` z;dc)0`+#7bn*dtHhswFz7CCewfUM0R^Hfwl+VOsz`-*OkQsCyBQ+NSuFl!porML+= zI&IJhuX);f9iHq>rxF|0%f5_w#o*jP`=NDBVI2%#?boMRu|`o8MK%jcg6=a?L>v=4V%ACYpCE2){SqeBY#lLGYgO! zkgyAsBm9;94y;t&7AV&yvy!K))v~h8j9h2PtP{*liY)se_Ph?yMUcsqc?RNGOaVJfBQ*l&R!OdrK`6_^c3@v_uwo0 ziOM`fu72*xu^&`@$k?gdc&;S0ZrR_>&cXkdBvKfs+bvuoA<>F&cZ^Br(FnpHph<2A zbFb@iO>Tw8g`2jJBU%fvTt&13_=YJZ$Ai~&rwZcEFiN^Zm7ZWm>;$N`7KO5Mqac5z1p!R(>A2W`B z0}&E-ET!@08M6F9w-YqgZllJ~Hf$rMCPp+&h_xIokPR`m6AP$tF2griW9r3T;#0|UHd47lyhRZ$l+9s?H_p4ghtCU zp{Vm})NT6mTUaX`q~)x_ttU$V^Vpti1)Rvui*AL5`YPN!^Q3(_&Q0&eAD6yUN~7cO zk}kF*Z?}%QP`hk6=Q*`OD}O1ga}Q&zQZ~}p55z445i*cnL&!9_u~5A5URtOEn+VcR zHdi|a@GLDE*(O=}8iXJv8w{`Z=*!igVNN!WKWd45t<^Sk5HmH|Le}?V{SbSUDPuG} zzQV}FMemtOlQVyFb4a<^l(yJhT!On?los6&yQvh|fgEdh$4&o4AASBt-SQ#lrQ#q6 z#$2@j6k&oP|A?A;;IFGRHcAXsuVXxaBfN#!Dncch6Q7yJi^uUKTlrfhEUYP7azCH9 zaZ^D9mS^HIg(HEdQ)Vw~6)xqs5gqqc=WWaF4#5UW?*{Fd%TL)|(|cIZuv=78EQ<~? zn34i!Ci-5=*WlC*Q}uvns(}E{8V$YugIL^w4 z*cuxEIrjbY+g2Pz9&2=_RBm^cmuz=K&Vri5hV-Tge*%stvx-$_^;#5O+L$w$mkTFf zYvrfeFmB&Y+nOqk8!vFIawiRH>o>#1M`BV|Nc`dt-%cXJet%?guu@GZz5vJ+OG@4> zn_*a5I2>;Ipwet`3Lx6_%w#oMzcHsS#-oMfMA&_q46zLP^Fp;QZ=2h+5W3eiyz zMuOc@#2rfVOA6Cn>t*h{S0^0@hTNkImpmnANz~L8?eq1tum<&IPNGj&$OyC%kknuo zV9x?c-I(p5o^noFS4W?JQNNkD86v+Kj4#0y^inM8m^IJ4z?TniF@P(GZM##>ugQqh z3a2s&3q>N}iyq@}i@)ijggvq6j7+Atd;qU7N=L&%XQu1ZmMtV=L6V$BH?5dMVOL4z z*xL_i`+n*1VckXh2Y@JGKN3^>_7Wlv3M+;G>RU+YaIA+W*SEZEY!|WOB!&cT%aIhX zel{27}Ty zJV$7GW{)q5r-M2?z|+LY_H7_Kzw_a^i9bg3|0VSWUeP1fn)Z%|8Cn#2h!eah76K*_ z$)%GHBGgU=4cPuC$*nj9APgs0S;w^yylq2e2a_{_WH16H``1V#z*FuYQLgQIiH0>v z;h}Kc_vgOKaPfR}-?Ey!(^egZ#CV=~881iYnF}G|J-d^e(dywI3agK*omjOUrrrW& zTI^s4QD_bQF91n0Qzv;#e?gk?nVm0$Z!wrVDNIi@-mV>u|J?7~ZJriTMg3e&=M67W zK5Y^Q=br=g%oAQNG=<+5_!c#bBI>UQbF#$YG0hKml1>S6-Co@p%GEh?*vt6S`?w?j zGfC{^NvV1yft66a>vQmh@ayDg zXtpy;=A{{dYV|vN=2Lf^6zNSI&)AXnUKV*udr|1oxuB1N zLMjGfVdcjYy?`QU!d^AD8VZMYFQ*@4vv-40LP(Xy6}>?d*`KLkjJwT|%43xGHv$?r zu)MhUL#Un?9?!&PY4pZsqT^XdMi&m3Hd%qF6rO?pIrT?PK5rRd#++n=vj~TuOCQrh!e4~p z*9AFNi7zCEGY3#rgfRi=eG%gM{TXEs$iDn=f-r#*a=MuOzWRkr;9&G%RJp=9MYvW@ zL}1}>DZ04_YfOXmb~qgUS=t4g5e|5fPtC|+p$8eR$}}q*MyjV5$l%&9Z@1qW2%|>w z7JM9A>sHCf5#c&5265p=nKdbAK9#Jm$Mq>>3 zI>?I|Z9xtpt@tGoE`WhfOU#J8O(5gIbQM4b$1&^Ano$&x?HJvd};@qvZ`OOu)=D@59m4 zKC$+(X6!cGZ!AXF@vb~hB1OctNTd5LfUn)l=P(fM;r=tqzI_iHrRs#;X6rcaQQ-Jz zb|Bgw7xj;kW%`ce$ALE@W~Tz>vb12dDuIqrt_#Snr&3Zy{G%m<$F4Qr!L9d-v{Z&)=5Tii}qhQu)+`u_;ek(J0ms0l4pPM5}A2UpR z2-VkaBHcay0^*#A!;SQ@zv0S~U?U(v#Jdy^U_cR6Ne1K$WVyMC+58)7dC=BbnW^^n zWg9DSISb_Y5(Y1Xjff)xb^{n-1Rhx-oB>nSyQ_`BpofS42vXqhlz>dQ+G3&urb}h7 zP>{`j_Zi5s!Atf+ZUj9r2O}}IskP&)C|W9y%BTN8IAEjCp;JhPCP@3=Zt5a&m=}qT z$YpCh=*VKTo@O4<)#KcTUJS8zY# z*N4uPOH{Aj6jQ>}^7!!?+m6f`|C7qo0+UEtlc(2>+AH^~YlJ!*?J|=ydo&}S82y>v zEv?$wH|b2%KYVPEpaf6%G{0|E`qMCv^=@rUeIV6AjSzA0Ke|VNCkidX@2`SFq*?0s z^UGOMKarH>l(rJk46=JFF3{!dMI!Y42LOVCQY%b%&wFFVWxSr-;mqw0rH|j!7yIqFO|P340kZ|oCdMvz{X2upSPtFB zQ+oGC(Ll?%ZL9KQ|JEBL*1SIj*}}{w1h9ETE$pANSj53^dmNq1#ZQMKGZ9ywH{(3& zo5nJUK8l)M-HKxn=i@8QkWeI>4wG0;m9kKG)(8Z8&yp~Dgpy$LM{(%SM(#R`Sd@jG z=k9O7`N7Y(xgp0!ks7GuS#x1=&>Yl>$BV1>pNqwd;qLc8++?36UZu=bSU8a6U(E)_ z>nT;>mPt}rb+_Fhm@_J|N1VKD0V&maRKtJo4r{{LyXM&j(B&!)i>0K1 zWuMxmWdz=IB}nrY52#XBGWqB?SHh-8j=l<;f$)CKfr~b{8G*x+tm+AZ&bc(&oC}EZ zSbTTWgE*dzRBf4vLqOqG7UoaTgLk%w6OTq?684IAh=3x&5qAI^SrVOlKo~#-YRb<7 z<}K#LM$k5c!>;l`x=l%5sjY}kR#;((7`{dqCy*W=U&S5r0$b%6;a>PwR8XM6&s&Q< zNXL?pf_Uh=e5%;=^x$r=q?=})Wy{0J3l_c({ZrkfMXZ z@xI7&gEz9&W9sYxT{@HeziTnb76 z=h-fl%N3!xbiD28>FiMFce0#fK)hqWiqG@K(0f9@-y^X5>gPZt(K`W>96^aVc1i-c ztjzU7x6_}-n!BmQqh!NI43|+OEMy);Imr+8b)5NF;-Ia4KX&61y`bMDZgqU#Fn~s4 zCC6XMVe-up`l7(ABctpS_1v+L3_x5FnlpIvx1Ys=2^;>lEfZo;Y@*xJaDFtj)Q=?U zW=n8me~C(uB)pt5R4gSs2ho;^peXu}L;9k8StTJ{i@;V&D8qdx+ED$L(^;7Oew4=O zVka=3@%V)L?%0jHfeMHcD3u5))ROhJlCuT%n;7ybP7qi3=W&W_Z*<${tNi2}>aeZI zxYApaz#Hns6&+0xT8Z!9#v^YNH>yVLuIZXwV&6f|%2m-(z%PTWv5*`SMaM}3)G&j7 z|B5>jNbhC0mS0q`#geJsC3e+^*8+$nHM*PZ=;5#;hZ}#As~U|pTCyYrCZC>!{CKaE zR;|-gt7$YeCCA2;mRx~r4s_N3;_?l*hd6v><`58twt~WF|6S3rwZ3o#SeQKysll6rR~Cl|kk;tMs_H2C6N{ajatv$(Snt_+RsjR%D|BMJ)`_ z{QRRn!T_RzNX;jqQCm$sBE1`(zdLq+)8i#pp7xP){E#7Tm~^t@d)2q9r5B*zdUAb zUhia=3FJt@yNt0sgHnZQz-rBBMH;yGi&|kP-f^#onk+E|bBudZ?U8HND*ni-7V_&8 zuA?2lxIPCC>K4xt`nFY_8S_)KKD-8}IwJ#)W!ZuV=!xcJKmk5%jr<$Vaf%Pzjo$bE6jJ()TGI#W(6!}4qhTIezRrb$7vS!Y z5--Vl3KrW(ls0udcV9(or{eyWt<7+lu5nd>&UyKe6eAF+as=u)gFIRgsDM!<$$mx1 zMjf{?KUu0ls#u-?JqNqOwRhWIba8#77iGcTiaPtym`;`*DO>a=j;d#d$=?{#cb|10 z7z##$@%FFQ8i~O`-EOQQ3-m5-kl385kF>f1F2i;KIt2kU@a|`j?6+*hk1Qg>h1`Yw zp9}NxB-4z^FI2uj=jUU)spB7+rGJ%S82~w#(Cl)2KigB6ew(lHpIrY#>>fpuxcfpF z$I_!+t~_COWl-{>=Mmbp-RnlF`(-dkS_u0MIovjnxiG?XfA-AkW}6w#g@U>qxeRM% z*)_65=R_Tm+Eh!>Q+>fp&c>!i;1>X_f#0-73lVTnlB@2A29|QLI=h1pU-AC?z)c+@ zlVlBL(7D*s)QxsA^3ECNA zPe!RCDr#onJHh{#p~RGTb<0_w(5wMfBa(hK?Iom$p^<51`E-M6&K#N!T#+f!w2XZ? z^=&RQ`4m-Bas&Km-7O zDVXI5;l-LL0@x3njc^owIaUcW=RxFw%+)8;DVk6{w; z0GDe*^4Kh8f1S(-c7*b_JAxztLvq>hD3&+J%0LCWnLscmufe>6DBP=AO*|%SP(U!= zJqd^1g<=Jn>1>SOZq1s{k9f@NfYeh5ggN@=YPDE#^+JPO}0kNhGlM9U+hyaEVIw#kZgC&g>xH%9Bee0xEC;- z013fcD0Z1}ByVtmc&F^TZu9WH&9c}&6~zB)1Ye!e=v&MU@3kcX24y}%7MwV@dF@{J z_RfWj%U)~MQU`}xxP6vaY356OAO$HPLMoi8#O}i`bI!URWxa}(Nb4my-7`JZ7QHXeTneXIC~VA4=HTL4 zfx_<%tv`g)(|7XaCKB2;uV23ayuCam9Kg$YUKShxF9b4hrs>Crz!BU-tEessMf- z8G%W-&Dg?;6sma$v&gP(OKz49#X*XL@61vDjB}YB!H$Oz_pbu^;I?XGQ!JVJl&F1m zsY&89PGu`?OaXsty*|bY4-;`m&0P8_V*RCvXIvHg$8poz?Ih~z3yzNasVgfbfp(Zd zycfWrd%4&6G~bESxR34`5ko|3yU}~k(fzwvSX+nD`8U7G6ysoY;tggeCBI(Vy(^oKR( zcNTz;W#`s+r~7Md!>4y?Dex$%&a=2!aFQsd41?@9gTNIC#IPP|DfAb3ThgFxiaIq} zIXa_1qFaH|I(!HSl$gb$FJs=nMNbia%uHHq7+g%(-0Q#Gd>AepL}A--2?z-EwqK>U zJHR(AE|Ai(3q_S7zz5H>{S0HTEfxNeKYWOua^63LAiSQ>QfbJf&e|VL20t6JTRD&K zsvvWv>If&eXIXJ}Qh5s?gBA-U!Nyzh%lmtxzkLtQGgh#Zw%55t(xqyZ-$D)#d6(za zr)ZIqjk7@+owCE_0vj;49RQO;`oDQh;9(zgO1N1}U3-JT(r&BGfc9WpSafIzZ{?M` zGi(F`w+lv|Z%{@)+$=(RH7m^79|t29i=!=SqbbUquisa8PRQVc0o}GxwTeNlc9!ke zsnrp9^gUl^1zjYKov2cY+Qj9av!c-drwkfQd;a|&0rMy z_5mRLDMyGFA5>0o0>_P{aZh_L9=qavUg2yMLuE}Xb+W}5h!&i8+#E#@i4 zR2MYj`f-35P0_*F^f>I$F(RVw+@}7Y@$rW1`rJX`r*mOZ5^x2Bn zAPX^cY(G4NVp%1>vX~f;)NW;@nHvMrO|`$kE>!N4D?!iVUH+&ymt2yRF?3NM&j(wo zxK3Cx^gKAPur1z(E+a)Hw4TCF#7q|fbZ%(NmpkhRLw6FlgEm-Um*2ox0ZWFnHWzeg zN%A%xwGydXRk_Kuz4(QLlT9{HS}?3QNM_L8C#3JxhNQEi%}IqhqhT=aqdxpU4U9sg zjh^&*HF6UQj|OHii0{*L@11+g*cNlu2>vc@0kHOp|A91$_E^OB7>vwl2Q@z2ooaFQ zBH%Q|PPw-Gej-ciff`IEigp9rqhCyGg}Z%@j1UWVRGsg3UZGmbvd&@Rzl?U-rT zUJM=jSh6g)dp)6fZH|BMYK#6sg##AsH{K^DUo#%t$`K?gHzYqCYXXAbvb z(?%J50h$Z_Ocob7Uf7msiHRo*2zK%-N+%}1Rbcf?4AV~UT^!Fmia1wz33(BIZOGzh zz;rqCJVZa*jBH~NtAzgZ%}3~-W|690Cayqj!p>sYu{4)&LUgOpL8I5JdqbA^v4+mJ z(5J7B@OGNO$EMb|QD{}E?4!mRaW>>rGggp&Sjcqq0WLi_ODjB-)4R5G0I_IxLMBw# zrz1KGMhLYh!RU)bj~`+s?|=C@8pq;s8hU{jO=vdQzP|9YeXPXny)ljVwlTw4G zhK{1IdHG&x-65iEBP(ZlkL3%t_nD_4IXt3{6eeT`B*7I5!(;u1>$WMeQ)ajSM+=X~ z9?ScZaSdO3PJ`?)l4%yi%-!lQrm|Hgzp}a+oj8N)zn|w>r&x{AYKLxi4?^5mttMqW z+;~XGV(3Xs$0{od?JUGoi|Hb!*{8*%{&?ppAr9NLjbZdc{_l}FzJ@S&k~)Dna6k@! z>dNw<;e%SCE|BknC$ejLiq{3$AnxLH>}pzK1OJ<)u637=Bq1NvnDg+;sgTp zjpya7@yc8J7oJ{~osMxd)mI;y(qLUeDYANq9E_EzQW4daGuSZ0^XeR{p9qcc2*p_y z_Z6*cD{P2j%J+E>h1q^?2%Qq&?;SH+_E&-vA{RGYn^tnTlu zE%#aek$S8~+E7MmHnf8{`#dMab?kC>R;)GsBE$zHh_;_7`pJ-aR3XGJ=8OHP?`PAH zo&q25e(eb<;{kWpl5Qcw{}MX(b1yU*v~>I;a>sf%)b=#)dvz)XX%!EC$^fdl1K~co z?E&9qhXICmahv#f|K`O~&9gHH!^IGUSXb&X6sZA&&M0_WkJ!5va+^HgRoe%tBOu&^ z^jWwJ3~~6t%vT(hhd@|QdU)D%_I8=4PcL^vxvPO>b&$Gf2I+C@jlPBYpV|IhQ~-sB zI$(>0fTi>avYu77X|qkOSc_hr{iWT1sa0k3Fm5aS%NzPG9}|jDdPa zf|eK0dZzeKnL#d3DgzXHLW={gh`)izLy7Q8V%W`Lb_#(w!p@O-f4Cq^r|{1ko& zp5(Y6|6Ytj#4S}mtEj!JCX-11`X4QwV5aAW`ha1g{SMy{9rrz)48F?S>wu2w5Y3nV zETy>Yqx;*@QaCYX@4QlrHSWP#Tb1KQN4elRm)zf*If=0J7~m@X{LnD$Ok<{JSdxWX zZ13R)6;R)O1Q{*%l%=B5*Dsjl-kif<S#e&3E4+LDi~q zXb;4}dHdos`_ow{g6i1b_#dS|dONC_jmp1>MA%>j=hfj<`22yKNg`OPWAjUQ_ZRA^ zwM7gT`H(Ap+SI*X=?DLfkPQlYnXB9?OoJ{y(qdFNaV%!g&2oOwGZ!-cR^4HAx7fc2 zFQ)vJse5G0SQ~pd8oR2hoz&ms=h)l1eviY<;B-kZD|e#qh72CjFvvmsam*HUaS}9g_qHzB8N7PI*UE&9?aoI5 zUYYpp1^@BkSQ+7IJwI|$(X9)~0}D_0R6@yUon}pe6!$i*Z8c^FvfB{aUYA8vNU{7^m*516zuH>Ygg84~`%Q!8T(W%op zYY5eRgYJM6oCk0B%c!a=A!e01Pb zjzFFmByiegPBr6Aa)#eGFCQmcqseMIXc9j(kXU@SWW#LH$mq$=%|>C}bhh=e3WyjQ zL2$EOr$mwolTPruRgw9#qTD!~O*lMm5+io`5;<%TBlZed{w16DV{f^UWpkr)Rd9*l zdw9ZjQ)Cxf@}i+SErWf%wezl;E&Rny9DGPIles_#UZL$KgUs1(uMOzYu2Gq=r>yIN zr39qfo_sUsM=kSwuaO8^j($NYs*AoDAHmC5Xuokq(rOW|q~?%egjvEgzU>iI|MRWB zFT<8M?)?H)NJDDBS2_zx%&F<_QC7jNFTxDg;3T3IYE`+1(V0j1+Q0M?%Tr&bm0u0I z>$C4x#SFx=?4GsuU<%|Z0_rNvH#?rmyWF04K<8l9a|?lbokZgxbIEV>S8lCI1 zR^@WHh=berPg0TP%OMN26C*%u1;*%~+_tnW0Yu;tpP$^}1k?Qs>Bi&HH8etL-b=(= zXzLzjx4Y~e)KypNV=r!EVo<+XZywBHLqg=RvN0}eY;0y=GuyH@WAA-s{yiG-^3zKD zBn$8F`^3riLJN62Z)+t^y8U!Ey_`}5fCRybYD;8`HdUf`?C>Be08iJq7%k~yp4a}6 z5yS-LnEfb5R8-GS4x1K`t<&@ z1Tr1hzqb6Fohpms)NSfJ=6* zPhEB;lh6N+^?Gz9IxTJ_9dKjnx>$giR6+lo&OS5c`>=a{B&1T5!(Lpsz=DRAGoM)h zJ;H+pyz}XnU>d;ud7k2no&T+Ox;9cbLf-~dZN9xE01OG2lOzvv`-3d#kHW4)1`T6- zqQX#{Cq5%c+9Flmbx?++_nJ4rU$IFC(jJ`Hzw)3xCTv>_8c=M0XPPHU(7lE;m@h0q z-q{T;hLd9?;y9L_c&>nSM{Rlgle;4l1sn;~_hn2^%(3l?L5@Lu z54a^Le*KW(5x1AZ?Nw6)O#O5%uMOs+RZ+Q6vf8)6SpR!_OUma@z?0d6auh)2#7#fn znJ<|YP}9f?hL&mDbjXupwP$QEeJzyT7>&kckB}cM@OA1Sa!z*koVa(GC#k_LR16@Q zNWd2Gh|aw&x&i0=lUAM8WkXhTGOWD<{0+IlLkTNVpNB)ay(FzJ(Dc@W56OeNT|H6= ze5%Mu`=$P=LmD#v_7?*tnox_y;}tABo2atqECYU!6l-d{Bq-MQ@G2bJQ>ISv)mC_B z28#2Jhv06h*$%;2JMD9ygR$7$PWNBwT~aYm58AAPVfgG7SK#7HX2E~R$weF{5bHwn zjLf-8TfeRx$G$qRLTuF_3XWlVevtue6*2j!A=F5~kN+yR)Tv_ik82WG1?0?Tm)qb` zA$Cb12R`cM;58Ry49Hcqt*dkY)n+K#Ho2{rG%*-kDV1Wme2`Vv%wN(RUrRISCW9>~ zskt}`IH`Mz>v(5bA$_}TT`7roURibERRRX%^nKg2iWXmMfd&^}X_ycr>87taI_45dAfIv}8dYsC@;WwOma-nmpP3Z!S z5S?HQX6rbt?Usy=e&tIXN>tAqXNl74KXXllSmGE{8Q*${(OP?GArArm?q)9_UXzqI znJ=6u9Q)3gB&!994e!7T*0-~@Mfcb8y+!6kUG!98ej0t9yp?(WXu?z)rb z{dRZ$&2@EGmvvY5UFX!<`yp-c*b<2FA$)_+#RLFX)S$F!J;tNpD>>64IQz@x5<4 zW}>RGUdC_ttzGGNkRv^xvymGi43wHO+cda7Cq+BOU_vz_Z63&rl)>nMLAKmO=yb&p zsA9hC?6hiy;K-d_bbOnmnaume*Gihd zd$_G!j$VHY82Sf6^qjBLdV$)+@LJXA(VNF)W&6xs5?sPVT?oBFQn5>Tl?%+}IuIN8 z&&VljS1U_y+l;9Y)VZ71u8*G>wpwJn&7UsmJ8aA$Tq)kU!K=r{xUfDN9Ao_&JpdjJ z&6-lRcXL5*iSXsGr`ur8Rq3$KrPBi-W^fq1TCwwK1027hM);h?GkO*OGLp1??PR-R ziZYwNOFV8cpO8WFJIr~g3^I_k<~8_Zs!avl95QNonns7t!GXsrg34DC z$mH-Afo`@$j(hJ))eD+7=mD^#wx;laf8SB6-3vC%vTc}`P|?B$1GrIcRN#|4QTuQ@ zDT>hL(ODwmqe3I8C7jF&UCF@|={#)2Jq_!l7 zuu#%J>S76fM_C0+!}w5~b(k%A*#RXjdYxzsI4)8r0@o>Krcz_;_k^AJjqd2G}rX^H2K-AI91Py}(eJ;kj0H^75uK7{o z)EX`zwu$?xIE$gH4MhJ3U3*{?vzv6M?doR`)xO|`pA^EmY8l>OqKwI(5L=jQfS?p< z?eQg}!%UJ{#b{Z%6ty5J4J(TV`XrhF6!E9Z03_aE%$KZW^9(0vXC?*#RTM<8e1Id@ z-;eqfy)B3W(oitggKv_FepY`0W&Ln{kyx$PTzz)_+wf66L3ILt^BsPwx6MS6^Vpvjq? zxKbfDBauh!lTwbSd<2+cg7oWvyBXZ)0Pg4s934;A>nTJ5>mt$Bvi?phq&ABrmhvQu zg<1EXj6ab@RrbR_cuHernrE#!Rb=p|j#Lb}3Rd;=nV2ib!hN$3U=vX=*ClqnSEwiR z*bZN8j>7lsucZI9)g>{TWc+FPo=ou3Ezsz7X4NuGyKvFR2gfg^lf=5v($@Hn7_}% z{|IpX>!L4AVP)$N9ImD%%sb{iPPBkS!$9{mz+NlWJ;{bqy&@(rr^)?^s@A!EVAX93 z3?>zn1e2aqiymtxvX>p+{~FrA=dy4G;z^p!7xYWR3CN%cOj<3oa4zQ)=$?3alA?8G zX7iL)M7%O4cOE5F%h^ww3jM(sz5i1`Y&Y`hYXYaT{s%pe{0V|;Lzv=Shxlbc9&VK>!X>MgC-fZ-58j-P|BsIPTs zqKO?sTKlm@Q!}w*R`!@e`Yr9ry+trjiX!eWbv(`VnQWTj$Fsr&ebeFnNiKNW217!o zgvZwD>*J>9C*dtk{<#(XTzl6?f9j|he!xa`jM+w~i&@s?WeST1^|zI6L_#a_HI8OM z_@9eHAOmEY6r7wEz3RZ^TTE`Nde5ha(%u-B1(mY&Dib2f$8ik$`=EX6H|s}qQK7Nl zbr3EmV}ch|aw@NeaSNdz=D&fk?nyOSX@?S#H{phD9f7 zK3?udT1c$&YuR84eev}<{wt8G{bSE{R%uQ7)#=UcYn1+ zN`IgHEc`j(rz7qVP*T`c!VXKvx1{=`0rRF4;<fZxCZhu-NJrU3a6rO%D+-u{*aQqZ#`3(A=6lC3n0&mE$Z`Y{7 z`{T|5FjLu)q4?XOYbCHcVA&7yBXyPs$;+Ki@4RbU+0uP>{{av{kTPLuX9zP=>+6Q| z`~w7P#|R?&{W~z3Ir|7Z>`)r54G`dQjIz#Wob9TIQ3k$Ka<%^8SL@z`<$2GT`Y&3sVWX_E;TR2hj>vyFd^Xm%7@dJQbeghPN z!~4~)>m2=gnW6C}3V3AKCq+DAJpbqZt&8&-&U-KBl)(_V<1lH+WxIP4qT4sM=|{B6 zg)5NF_)D0eBQ%RON~xkPdF|b#h4j}OKxW%A7)C%U%Q=p#mv2Spm4_5*(dy`VVGa^L z9q0(}VODCkbaS3%xsV(m`#B!5)hDgy@qLf(Bxr!>ma&|hJem^J{HZCVV-5GZQ04gif?VcL!ckSO9WviUDuH27ay)jg_@}C z$(XxDk-P`~kprFJ*x1+ZRIzD37DBEQ*-!K$(=wmggq-kq5g??obB*?HRTeuBy4TLD z3I;3sf5~5b&femxmuohveevoz8loq_`Z1!h2Babyzj9*s(kh7+ zO`^u6Y=lccnk(-LQpR4R_W_lAYb&V6if4J`V%>)3vyAbfol|c7k>kjD9pZ}%9`Y05 zqG>qZz-;Fnp!srIb)SsPD1FZN5kkXY5r`+<{7%0v+9!x^ZwHV3eeG;)G(`g^zkEBpFd3;RDU_eDpSnq;Ix8Kx;A`*w580jnqm=oi#Bq#y<@QrSozFwH+I}0 zzx&y{fy>3MVvDy;==WZ^D^M$?Iq1`v3K#cYTEMgvgtV_!GXkPwPFQnf0z#k!Oe!}F z-DAs0XEzgWn2panl4KLV2(`7t+KpYOsRf9Ox8=ej@hKsT?*Y)P$X#DO){^zCmJYYe z_&rQDIhjVsyhO|DaW8!n{;+DBjCVMbql>kUKRR&fF@P!;)V2H+g>&YGc^-YeXmH>% zMU>fJnr>r3ZuL=`toU7~nzBDxY-js;^?PdY2B^27AnfhptQq?!K_^U`;2x*7;LzyQ zg2fBHoVK{m2Cmqj8zk~yFn{1j-|;HIG%nVOKg)C7*K%lt;q3dmw|ATBFyrvc4Ip@i zviv#CLSh4DN#sZiM%^>w54U$b=OfMhj(M$hq;XKK}M#2s66sBS9Ei+X5z zM>x(^uDWsZo}TmKtBSpa!}}JWxk{J|?4)&eof$W|urK!xtPH~hHg*es<8$*v};8KvE^6$;-hd>&@moA~s z^86$#k;0I4_F28jylFXeU!6a&E8b2wS~SzdGrqIiZ>SS%X_XBQnchAd{p*qmN+#dt%3H>}ow7V^v;)KN3U2w`A5WI3LDsFC30)HIT^v4Fi~C z0yYx)WjD0Zh(T&3eW(rVlLYAP75=xT$aZ2d|3--10tTX1Zcu)pGvq4?CU(+LfF^zL zM`85euKQF`t;qh30n{LNlAr*Y5I>iXQ>uc&^Yfp&Tr9&6Gp5|1v-1}AY4}S}El3!p zBMR}iBnuV7jkc!=WF2Pyb@l@Q27myaWC7XosU5IZs^+Est0SEZTYGDPU+PZ2RxG$j z{hZN?Ga+nG`W;6)x%H=NkI}kUYoO`u zP0JAaQ^6U=0qj5C{w=~csfW{z!yRcgX7+SAHi;# zu;|^wkH)~ouYW!VX_5zaSV}(APc?B$&?;@`M-`&j;{T&c?hOd&wNP?d{63eGA{(u9 zcPHHIKpm~wl*aLDe^x0we5D&bzlwo zA04RX$SHt+E#AT+^?z*!s0~5p4RTQxO0;4o9G{v`ne{k*zy-EP(*$y`7E>NC+K<%W zhJ_FM_wRTAKjFfU51#wiaHDc~+RI7h$Wr*LX~_ukJPCw7p2UU|I|%ZUI_Ro0)}3Qj z#8pw9x2G4jR#6YdasRCjH9FucL3>9!wyTj@!qH@t!KfKQeHV{lVyXgJU&fv0uq_EY#wggfAXjSMaZaVf`6)x*4WMSXj znv$|8w7cxDtMkwO6Oj(>`1n6@2@jS9liQ1_oW{zNe2!RUTl1>BtXLFj4M4|Pm06u3 ze#s9{*PR9fq*~kC;RR>c=+$l^tv>a)ERFFP<36c#{j3lkg`F`ET64(Dk27)lUl={^y^zv@}(R9*5kNcIzkEi$PalO69CA=0aoZTqI z2d6;^LdEIkNhr^5nq@%QGy^{wY;=e5{kQuDfZ;h|Yn;2$^=ezcP6c|{Rf|H3nZRJ4 zC%+2eDW3|Vw;SNg^W!catd&o@=cSiN%3Cpl2GRu`N4JN^U!?V+3XBsct)iMs;kp*c z5LYI{|I{Q>;PdA14Nu`z_H3V~`b#EzR+^fnU}LbAXJ{N-`8tj|j$MlA&aa7GWOOj~ ze36hNxb*vn7_U1~8|OLS%GUYZmkOEH4_ul@*?nIX|3|XZO;n33WDL7S)S3a6!jd6o zOM)snp9QFDE*Wmz@`fGy!}81hpAG(5K7#hNgkN7b^EWdk$g2MwxGw7b)%ic|H(nZP zdCe4;+Y)(a@z&5PGD%ZN$ZB4y0{b%jzMKyV*FRKg9YDHR$OCOQuA`YPa4WpC#36D| z1hO3K9gW8tT#&DdZ!dFv;ivy+j>d(9XG9rNiQ{rO-1HSf8Tv>_l60RR=4ci_TJdMi zt(3`^WK#cmF&V>q`Zcs}&%`9>&Nt7HH+#}&j~X3D*N@)n{y@03;&OtyyYX@0Dr4I` z?|ZR=m$H<ON_#o#z*mrbJO>gd>C`2{h3IM^T$)d;Y#&*qJB0ZLi4{?N8P7zBUv#j16!Nt{*-&`Q~=|#DB@IQl?v$VKK zxlC}wH=WjI0t>rSgzuk|bfQ7`R-v}7@mVCA;8=o~(Lc>+X=j7w^jWLX~>ZQK5 z+(uEq*E3R=Ll_(4%;UKhBGBD=I%b7DCK|R(O78vq&wWI0*~vZODLiM*7>E%XFn9Ak zVI^JL8&{mGiGTJcY;F)(_Bu$}O9?!GOBs7AjjN+i@goOKklA=-iG6Jl3VViU)xU{n zqEj)H3kD4ScLEQPG&y!74d$D_m#YEOVfE$P$54N(@P9=(c&;59e_f(c@y=@c1p70j z5&UjVj!?NlNUyI|ID?~s4;QqW^kZw*3zDaUlKbozHg=ai;umc-q%8bDL#i@+xxb!d zum=&4gJzW1A0cn#raWf?HOn*?-od;$-PXDA<7a{hvxVb^BThR`yP9Fi2J~>NS@gPV zf?9?@Y&)9c1S4K*1fd}Y`ePSm4s(8mB>B2-?lDlues_#=a$xodU)ue_VrvOk=}zr` z;ux=^Lv_RV9S=#Ywi}1CTg8Y}F0BTYs zUyo#Cqt<={RnKkpPalh!jm2L}_eeTJ7Z%2s4I-s0*dkwT`iEUcSdXU@JNnm7mfq@j z&O#o*9Z7e5>Y9inRMUmS&rO+@0YU#7KVJyrB{-%juI2lN!-=55n)u0op~9TS zw??X`HxedDYU2H<1llZI{Lngo{v{nFDE--6`jOfH*@xjq4is*kokSw@+VT-gFz@n< z)dx2zT>ny^d$&aqhySBvkoSv23XX!j%rYbjNaQBM5ZksbbUb~tH6yCu8bkkKz4F`v zvK>{Z?xz2Bkg93fVmphu%cy)*qN+&z`c#`x#KJL7|C+TJ=Rf({IER1)t%7OT4-hBK ziJ!0+!|N>uk+%}u$J11@l0D#2E;3;+W*`i%N-H`={WOw8g=>BJC*47daguHZXZ;h* z9962!f0O`mZG`u)Z!wa$E3)0pKm0{*MW7%{db3H6nLp)$-Ic%ou5fe4>gOl)+|i{1ciwvhE+ zIi+^Sk4)!8^{>Ble{SCC45;4h=so+zdGtAQ1enawV)W*#dR^Tup#<8A9|kgQ7$(s- zz!0=a%!vNuP~>)s(R=UFO9;#}g|X9Z^)oVHW@z2rb%8EoNV2zP_p+N6qq^Xz0zYgA zONke92=5>EH|y67%iX`p0Kj5~=Iz?C%JzMreaSglbjKSJmQWmNcI)J98kbLvP>6lg zv+oDlmF|I`W=IEK5c_A!K8v$JJ=4tiZJaBTGxee2VuOEl0*(vg!q$%Q((2l?nJGNC z?VUH5#Wi4bcCVuyleFxyI}b;|1PZt;Y+d}=ZJ7KDdf^6`pzDQ{rel*fg?|K~as-8M zIka%?Q`3w;WZ$kE>3zW$V&%zfT4Z8Be4bc1tcH_hRiA$Gg&iFNEJfOdTL$b;3g$9U zfO;_q+T3S8{Ev!irtIz*AQNhD&Mq8dGjjlHMp?>N5EEnOJGNoNi zofJ?5PaufB@PrMvs_nGEoag(uGPyUhjG+NBaST^T=VY@Ee5A4UB~AVFYLzBy7^3u5 zFPH1W4tABWTue;xYd?V;f~=IF66$0^({@C|C;tGD*FPEo$9>~a?)4KGzvBuF{Q=F` zz4ff$aHl18uU%dJ6)L-JFsd*Pv>5Ag@^H75@t9OGgneDVsbWrY(UCM&5crr-swF|< zeGu0%alhY$eW*T@*FYz(v}b9ZmG~EtFInf`8US+^#jgCn9HVt<-->AmrJ_-@t(*i2 z+WA~1QG&yK9ies`soqhLZQ#Brz_%=d!-s6x$04+0v|&P*Ze-&+^22GSbYR&=yAPYuLxC}d+Y{Z@5wUK|d=b)C%5 z4eIMeRWQXmYZ*@>C#{WGyU06mv=9JckpG_&3MDUFshn^nO7A5up6@5mMt!G$R|RR= zM4!~Yos==UX4S>Y8D>RW@y-@7PO+!7HRZfr_ueogpZw(nLvGt!2xObI5!K@NK{=>* zsv-OTOGHxe2d_S#x5u?ghoZS0@EdEYqNlyf=hcc@Z)X=yp=jF=*y^$I;px>HKZBlXXd zdwI1lODUiSFFM4X8N{To$$aUNFGq@ye+kKHErg~O77Q$2dt4tGK;k)aKzw;b0Dx6u z`vI;l2_;gfUD*81qj)0~^%MPDAKJMYw=xI0wu8fA4ms9UOCV zkEyrbnt3XpRoTO7&`uI+D>;6UVR?Nm{YqkCKgP407sj==Lmhj_N~8W!7CoiTZxPg? zZzy#D)q1LGreqPSxV%Kj=L@sBG^KBcNamRN@#Nk(c|4$8I61={IYZO73*iT|Sfaf< z3t83Y+MAo_N|V%GftnE%#@6O@_E(6-m53{u|)r!+q}2|r9< zc*Ngh>~(J$y|EkW7~o?GFl~&;jr37~K zsC0Oy$$qpe->g(_gaHlQ3iY>)MsX2Y>R7m{1D!&y@lam$W$}E0^ia_+D`#uQhuApg zSclTuVb3st#o*&WeQ3lKOjoO=r69P)T!KL=cRKpZqPO7&j!-fs|; zwNyo`mNYob2UT|8LAF8R;2H~NwTT?j$K>@x)%+;9=8qJ~>~!fwG|?<9U(Q8JsjJ8< zOA6z_^Lt<|G32os@}FZ(=%M?oKNU~^9{uC ziw{IpdXb%g!b+1JkpC974f54LM%l6yjleim&0!$u%m0+F_g)}Qb&@zO<(G_sxM|=u zJHB*I4VH*%+wl7?HTcr5L2<2U(_83NGbYdzi%sAyA74=6P>i5yAN^8&LeA+1Wl4JJGEPO{?(R=2 z*PUZPDH=PaCsj8VWu(*x{mYN^eI?>b7A${0TDx`U-aj}EzCjY*{kb4Oe6`0mBI%`f zfYTBo@*2b`8tm5uj?cI9* z-&3s=+0+fp8hVg=RYqR6+`2Dk%Vbsc&hHy$maxJhH9#|_bNud8}#NrD% zNKJ5tt`?RKl}o=~ozs}|Q!Qn!q~Q!+;&On$hrk;&;(oamIhGf+It%MKg12(!2Tt+c z6N_U82*>~>66T7aT9k|b+STJzbU?Om6TXM8{TH8r0IR{hda+v`xqr^`+1h*^n%l)O z{j>7{gI7X?4m6DIh@HpmZ7X2)QPnr@IOI`VVYg93_Eg~N<7v83<2riS9?DQ6m_zSV zms%5{Cv!mN0Ce|(ThWmRgZE+LFbDI!MX&ZBF$wyptcxvCX?PQMXn5@t_OP_RlZ-Nn zE-mG?Ms4wGdw`AtEIyU~L%M3Lq6{Y;XC9EUqnn-qkskt@a9by!opuQe5S*jsfY=xo zTGuWVAmEnNO#=ltbb_&vdF&z%fAIW7zOd%&?Z+C&cdS-m4^A@sq1<$)_6n*4*@C<~ z^1aomCcTmToqsXZmC;-Hxh*ZOuvn(o_tY-9<&O>!lps z(#?opW__eLs!>I_X=0rapXU+NrJM6?z?-=(y|hZ}y1o@f*w57^(0p{+8z z6Pp|4YDZ7w@^=%9CqY*qVqgDuz`sCT8(KN9M(!m)pg8U9<4xJk<#ESd>K)@cAun>B z`uXhES>XK?@?HU~NqNjF!T7XkP?!du`%B<9krN75^!EgqJS_oRb$Q7PS})OdU-v!{ zjd$dF;QmY7@o*pXlwqL#j3oMk=&O}3pI1-6V_cCF%At@?;d zHa%q=Ar@ATZ)_2&d3cam4I6=A+f7tSMMVn(5BzuK+ebr^6}q?CP;=ONZz zodr$_Iu}E4OLg| zaqT@5HFsu=rN5q#vJ;q~eN9xEL0K_l@4R*llC`W|2g`D=ReO%uP7tZM0v1!>_v991 zIp@$24}Os5e#FL`O8hdYNN=K;Cs%ZCwqWkp1q&#u(xdhq%_M+z|EXNy6lMfD$~AY| z>Ap@DxI%ayWz<%~3`mU1c1rgn8045&-_GL^IVjxAt?%7B!0Y!?>y#0sL3c0VlR*xl zFQcukS%!hWoqF{Xto{mf_le`O6FlmIw08y4#&u_mz@U#Tn5?^Y+7tSdo8dq@ z@VgxO!N4u*Qej{%_RZLGW2R)2j?D;DMG!E>Cyde_ClhW(XMW?Js63FfMaP9PuVb#b+`e*a?!J3qV6 zysxoNhK7^MHvs9voixE_`*MifRqG|zsN4fAbMmH*jy^5{b@pc(4E!F+Og!=AeV|Mh zMMZJ`I-4bmfpV57!(Og?SRPw@{{54Et!KWpw)*PJJ*H{g*HWbnww2n0_5yaZeQ8p@ zgDn?#;V#!_oPR~A^mCym5|sER z@O8-ON@P*e{e3-uRN0=0PnF29XCZ=K^q}HO&6nZRdmTal zbfPKq2ZSOp7ie6IQ(eaqxy^h)Ur@aeq@P4fkeB6vk01BI#*&%MvkJeOR_c1NVg2zv z95pHaR8lvY4vUmE3d_HIb+AwIhe7p?^Waru4S%sepdhR^OYuuSm)0NS!Th`Piom+7 zPERuw2>>-A(x6_98NGpG3H{>=O}q$=tU6tf4KfS@uc)|kRB2_EO;|W1ZhK(RQFgL% z32<;t>2+q>cR3>8zc;7_P;gW!9aZ>r>xVo@MRZn?s7KGqYK0!GKy;d3$doUk&_hB% z0jlPFR$u*9hGppCUc_w^Nzw&ah$Kh|t4XYpR5paCTtYTH*#4Xgn5a3FftB9K5})VJL*Dhj#- znQA|<9q0crMF19jTfmV{oX6wwVyhy#`8WkBKD1D$q@Gg5aLsDVd2P}X_{OU>`Yq_6 zEWrkPm+wA&o$SdBvlqKFFt`wM!{s=)Ca+UQGybDvO$$=t)xvbgxcPW#r5_5B9q&cn zbdiXqUlT7lTa#l%D5U}nx>U|DLNoVk9KmSx3I$@yD4p8~8rT}`FleR{RQ&PvnUUUf zhVeZ*ox?IIRx8`OYd|p&Fc@VR|E7JFAkZJu;&=2zNTkGqIGwSu8prwg5Iq#M2pIXH zjh0S{d#lt9{CMKSRF{bAN+&4=QAo4ErjF2xyAj_tw6IC_JPem~f zV@sE+m|>3uhSkYMitqu0#B|<#KpYj2s$~5~ZhPnZj>7B50j>I}e^4;bTYSV!I#;4Q z`77J~&chVIox$s)2cLxHP3cmG-m1XP+fVEM%`l}Th;U?K+91a>-1uvu`xPg+W`v3} zC5A`Y2Dq2LWiaXM6zeoh@6L)Cq=ly%hJgl{iXN($qp6DUSA3LPivtZBCxfoDm#I74#)~=iOtIXZ)&DTn}*kOaLw*_NLQR?ciK0o#E@nbDd!)|r_ zw;sdM>hJ4sCi|WxV4GGBwn+9XccDNv`x(C2X!zk(boN!!j&OytT~$D z(MAxF>x~Nlc_H{SvjGxWz>Y)^FN(zTbHny}n5j_Zvd7|Z*}XEDq{;=xbv@#D?tbks zh-oH)9h}0ozU?B#<4shff*w~>vLl*MgFQda4u3vKTm+a>@O#OJ$X0+V^!3lVSDBY| z@;xj4!NmpXOaVl8LS}C1F~oA)ux**&VEhegj(@**z}SfXDYo{ZG+fewq+80gN%~3R zAQ%_5n>or~#j=^!8V>n}o`}$(-kgXpQo=35!~r58w2bCQikX_eBkg6#kEIxz*!m{j zw4(ys4%|nYl)Nay!&8%1T4#+-1LD^~fw&*M?*%^k&(A<2^F61B$UE*AU#y}r+QNVf z(RahU>Ri?=$HdKXGa`=JbCCKgK%)?@4Jg_YttJ2H0p=u@-7xR^%Mf)eQ7EGPOQwMB zch#^Z3_hVmNn@nLjovoe9DNn-hJ9B%5Tmm9*qStEbnHxl<1s&h0AG=T6-y^tJWtiz zD1(VaRj7xx3a?)m$v2nBBEk#1)i&j!l}Bs+OImR~)q3-t1>h+=Gf2)5^G?|m^b9=2 zsuWs2m}vi~|2Q@Il>cy-ZQI`;`;hy9)1GWeqv81XkKE9dOhnK}>*FBYh&A7kmY)z2 zCMhibMeo>L5Vc!usm>QM7w4Qo8h#XuaedwJ`7-^w6h&F2>>nM}G$8M>zpsh$4MP5b z*t&m&LG7H=3cG_xs~_LWH7L+S7z#oSOLLlR#@OsntVAALsaec%V}W^E^iexuN~1!V zmuYP=zQ7`|lJhCX7|KCQR_k>I^jI0y5TJ5l^nt}6k5ddfZNuHo=Q<(!3`=f;fh!B- z;|e0){m22U7VJ;jm)T;ql)F_vJ>xi~H3~}< z2zCVKv?{Bv1^8cvg39fDI-E!bjrL7)pf$sXYZ{zQuoS`OZ6ereOzZjlz_WdxL-JR# z4rcUYVvo>h*z1Yva}Phu3fIV{D-0CR{<Hajaux}60nc$ z5XE9$+AawA+SY)_g`}qP3vaGXdW>PzUzL8Dd)Ow^tnf1^22Aq~cb$&1C5JcWF0dQ2 z7(jMrx@JD!Y`hDuQExmalp!e}C|yLO^4zj;{eVEw`UM=~`)KJQ9`_vPi_st3F~y(r ztj}I;-Yp%>{(Xb1af4t>WjYt!+h^QmoD!vwSnva-@BVjBH^ zoo}Fg)6qAP&YY#lHQy9wV}|qHG_&{C2MxNu+!YlUMI5Y9VR6N{g?~Ku5ndf1aif|?#77^!4aDXV`2*sAnT5y7cDI(2^fk1efD{Ig4EB78bBcmO z$q&gxhEOoHVmbNR0bY7dTIK6z3)!|w@(Z(EKW}506zo?4>gBu?t`bGSDuv%Q>#Dq% z8IyQ^C3(yPOwYSJEjKYUc+)eYz?7l_%tPS|X}ZpWO!Y6s z?6H6p(+g8WV#Q3ah429Hg6XLz)F#FbklyrntuVuHEI;Kn^|R%ylD+2lP(2{kPH zd%ipg`-tt`u82$9F6evP3W7UWVSVLl(GO10G{ zJlX&Dq`Y6Id}sKX?KX@N#>FK6P5(rB4Be>dgJ6A=?s^0&+0EXuC;9;iW31Q1OAPo* zxoJ8#QXBpKNj@SoL0i)h!eB^MSI0I*!oc?fyucX1s@(aXL3aQQ($mDBFpsG@(TD)F zxy_yr%K&PG7B$XujPKf?c6Tz-Qq3>~0Fj4;?wXp)*s59NEmSpk5*0HTaRQJicMYkc zv^E>n_=+2)Y?e`jaksln-mq8@->EgIm=99}d6E{RY2RV&K%(Z9#?wqjH8J)GQ~CpJ zr#!kPQR!azZSIu_)AdMcFWU|S-AxML$9flKtD0|0xk&3{Bsn_JXzfKIn;| zjMtxxeo`#sU}i`ytvZZWT$Db%PG3n3@&+WZ*r>iOclW!}dy5}@3!B3&M~iZ)oE#v@v69qZ;{8IHJv1jV>FwK3CEDsh*W02ezZuKF zK5ljeV^Aw^BBzAzCq*Qe>^&%r6Zo$GdT8Cb(lKMV9x2<8&O~e~#7I@ARl>_D9KCz@ zhclL|H}5DAOt4qWDMPrktg*5j5QNCXg_P0HrWULVQn7xd2wp?hyg3&8(cvFq*lMer|@rgu@e4@NRJ;bF%YWT$23glAI+z^ zOen;2OS0MbgR^(^ThV8_VZ-^F{oXG3?Dl3$4|UDG`{!%YJM?voJ{(6Dzjj;ZvfuJi ziD6g`6YTU)I{9Z@LhahR8_O$J@kau77_ppWx*Xzb3nSg1A9U1jhxMu@px@`#ELIGD4#F>rB2t5oY`E-A9r+S1kJDn0hR<~t2t z?7$}6yBLdpK`MoHtBv=q@DvN|_M4@04!#_{H(Z!miNV#7v6|!X_)glre65zbt%h_t zOOZjPnIaHoMqJb|H0!?7HMzOthc^U%D>XjL182q3U9}J1O-R&?(XcceEalYBwdb>K z_SuXDs;v|-E05lo8bQGGmH=}=d}Vg>QAv$Glm4lGLmBBeg~HU~)Kj^p>{>b%$=juG zPQT6fVkfVzWN~{yRN6+Y?hy6z$%d{Onyf2Zf$7AwES)MRT~jgrV3irBk;SO0H5Fey zi^=hp%%t|>j1zi3tax;2aajb6sb@>ggpBnm>MwYxfYq16g>-U(*jUKG@yPHC=cTo? zgJ6)?Jb~UJKN7o}(}aYXevX9W$rU!GF5;!Z-SN|x#S5RvngkQ_Q=C0P*!=&V6@kL> efbV;6FnPmQQ=rCY==Z__02v8I@k&wSp#KMrc*#lt literal 12818 zcmXY1by!s2(_ciCPM4O>r5mJ6I$W2fyQEWCx@+lfkOo1zQ>3I*Y6)qS?uHk?zxR*5 zd!Kt}&YYQh<}>rmOoY0s92Pn$IsgE`QjnJc0|3Y@&-YcRub!_DIg&Wfe`t>K+AaV9 z2Eo4{5+Eas`1v7;tE`smM+Xa6cVlOBfTWp&i8+;mow21k*xcC6!)ef51OVX5RgjT{ zz!vwjF_QE(Jyx422vb-mB&gQ2-#arqCZbp@L-I$zZxa3R>&vEPVQ^f5SP-3PD_Mn<8p``!?X~%hSKZfV~t_s!2zn; zGmk`tgo*28`va`p?rEe^bN=!LV)nhWSA@S+8Wijvgm(okr3+6jikf)&Ox&x;g*94! zFo3YVLqV`}E`-_N^glHEOg5^;FNq%Cx6p1Fy7V_*Eu6H3P`v&heea-+omb5{N5?5| z?Bb=k?VYIGsaJ*)KK8Xy%!?~&H$D6O9i(T{8vIyEW@G&$zHi=%xw2X3QFI4>V~u1d z&8}IxVfzDGV_i^1a<#;P7tgfe$&S(TCpq_I2m@2Zdrz}ZbdY_h4b>C1zSFFT*HHYm zsI86%D=OhLsYJy~6G2r(EHlEu3ZCkoKopw^^&J+Dv}Z!xxTQZ_XY?qgHQ6ONivCA? z&8EI$hkE4P-O>1v!k6--8L+eZF=j`9PSIGGvboSqr>HTJVXG0*GrKw7k%PvAxZHV< z*!dA3c_hvGtOONQ0!s$%5fWEG51b^My4N<7A2ha+GUXx z^`Cq6D#k}im9_GkBFM0Wn8FF4UJhHT#8{qGh&oJW-JO2iUec5ow&Rb=xva5~k>Rr~ zFNay3hCee>K}~pG(sO*VKs`f8L&LfIMYC03n)cXgw_|xBJlnO)T=$2MakN-7R}UW) z0N3_N*+V7zPu^~S?q>cz_cvlMRGh)B>sV+t1fAdEspA2bsxUa5fSNSA#prX9g9+d4 znyL6yc2WwEz^vaw-R{oP7bgNYZ*O@-rJGc>bSq0%P=UV-{8-FZ-V2~{=<61#T`>y1ZwET5C<7to^#qisM;RVC1 zWepE;7E&!#+!_8mIqS*lEecUUyc^8V^|o~f18x=Wgj=ECjLOneydE5zjuO?Yh&uP0 zZ_+zrb!wb{R4ha0O-Mh6|2rPNa0jWaIICppem-LHJ=;5(?sircgiQ7R9v#@=wrpTz z`-Cz5tz~425L(#;%=(!_qGFRBOt-&>muPB21Pg*``BE!ts$W_6#O1zVt86%1lixQsP6#sA-SBV_I-x*&3hay@vR3(j%8C$p z)}`oJoD`Y!@0}hu`*wD49?e$sPTG|;ZJzPEd3xS6RtIiy>icVU2B% z$k3R}v@;iL#CTyyXORlqc8%c?z5?LB!Ei+~>GP_f_DrW%LwQFFTzi}uOVp*s1)1MX z^1?pWO2K*MwTMyPJ#Q12rR;+-Q{L;!y1=b26jlh`zLM(8{>%insV*$UYQ?`85uOZb z4$ljw@F)PX;=E#lSQi5?QEt#uI{tIcUPV${Q>Hvhg!r58{2S&38S%bqA*AkS7k`FQ zM;fipBNr=Em2-Qle!TygrTPX<8V&h4R=K?Xq%=%Q7QcN57xe#2UEllX1tY~z^{-wi zRF|q-rOh($`5QeSkY@-Odop7(mhV0lrNoZ4B>+M0Pc^F@7ytRZNfC$GsQQmMTikdf zl;L04A@I%88C=lH#|`rT&WGZ7mXPaF``XKo@;e^Q%jhZDF~N#GaRvAqFGB>{2@(TRWPBDE{;KA?u&a zt2pUUCL9UU_C@rRg3B{}79H?tB$(ERVROvmzDgjCvC}0+XhF|1=lW7;&~VlK?(5>- z_^#P5;t_8R+^F)^;bz|>;Xawmi*j@HKahJD2#ICz*m(eR04o>mMnQeP1S@{md6d0Rr`2vH~E;_y ziT-J{bMr<+d3I!p3fI?1=$qevftg1deWi20_HTeR*G2Kvh6)+!D_4K-kW1}-{m?LrbaiTvFc75_jhoE;p zsh_VG#X?D)`5|O(V!nFra~)hdYNG9j!7zvk`kjt!H6*I7(5v^K=n<15x%jCuIq2>1 zbBfln@@(q++;6LoZQ`)Q2arKl9n5;vo$@A|jVzJ|vWVNgzJC0ZEu;KjGQ$-CRLK(m z6(+CHtS7?twlnlu;hhr)+iR;6GnhK|^)Zfn)KYSy`iZrv#Mj`3SOvK*--ME9Mk@T8 zd}>4Rf)f7DYqV0sX@#WU`be50C)q9|Jx63*Psc?r*=Wh8hVz0>w*xk->C;EThX~?b zAy#(P*4!^qT+iEnY0?Kz%2a0A+`Fgto7vKT7Tzb_Z`iP`tmou0bH!vHNV)8un5bYqlNhk<8qte7RA4VB2j80+rf;pDDFFPPIUS!f)Bh1E8-}1HxDqr ziu}`LXxDihkvURec&Ai%b>$~uy|(^+7;OKzsP+*5koEI~zw6-4Rl4GzI#5p_$eDl0 zU1hH#i8uZ4X~QyRn_;-6?0l_9oyUN#FTLkl!gHKEuH4CF?DSDh>9Q^Xf{q$<=eE5g zac&o{{-KcZX%#mASo%NA4~PI>_%7Ka`Z0a)Z`oIpN$#AI@~(oWl-RZKnTMGJ9kt)3 zIbEHlNcC_Fo^ARAK{Sh1E{-;j?+b=oK!z>{j25;vDcl?d-@B5t2^-nFYZB*VMEjU&JT^*;pnMl^Qis>H6R!S@KUw?QmF) zEh0swO3Z3Dr)hp}JWeld;Bnexhb_m6|F!DNsbwCa$mE(pGC%W!ATGXZPi-&voA#74 zNrbN3GGIvaJrC^|NdKgb!#B7~kCY`+4$Sq$orcW0KCKFNwZEYqy1J@$*uv=P6L{}iGq zylxfW=r+BcV1%a@S%1OdY29~}id(x8y^}WZ8v3@EUcSWCTu zd<*+9N4#sA{Bb3ySYDpScim0_w`$ngc!MO`zg4T9#mmJTFB;3Llzji>3ezRM?viv^ zddalU7otpOV8chzTbe!gVZPX$Rm}=vb0iH{oQY)BgV?I>-7l?Mi$Izoc=2)VM6RmE z%&M>SSr$VYM${anQeE&^o+JN{hRdr}rgbxvZs(wf4CRC~@M<$kDcxaCMZF$%k4=Aq+<6zJ{dW@b+q@Xpmpi ze3ARSoL)1>U$7%Cc@pf>H_cb4uSGfS?m5~Z$9ZOL6cYlUIDvS{CL9nU=UmZ13>*-Q zQtj8!9&iQo!CP@f3Ia(z^<$~q~fAJ>&pw~RW)VCR_cH? z+f3U8(KkOcm|a}MD#9*Xcl0WW(&0dyXH#rBUvDZJs&D)~l-PN!=y;4&W-$i+9J1&L zPrjk(EFsDf@tA6FxPNz+zT9Q%>wINMqc^o9jAY<~T*Ez~-O-=B6m5K1ve{ys ziQ=5=rBRZF5<9ByNJ#41CJ;AN}%YtDI;!{Y~>XY06#dXH0uJH}g7z*@>r_&$om znuLrp>CSp2mdJne&Cvkgr+30sSXLQd#U}(;AApWsSYACyj@pz3XUQ2KN%q&0?k>Hd zbsHRB7nF&80r)dIP+OUdplSW~0mycmrE#D)y7e|A!pRx4jw zxoW7}q|Qy@(DB9nX)@6?gzk#Q#&TIE!7?$wM(>2Vrg5N#^-sU_u0ahOh}?aV%hA~Y zsPI%aIzU38K;Nq&qtxfCYMDKq;7Odu_ob?llJdCTMSS%SMnIM=M^OZaW**Ihw>~D1 z?lv1S?pIDFP^rzMP!Tj%c zl=arUns)mE!A*^j&tj@?HdD4*gp)2Z;=gK5w&O+^U-J2_dwWGs>vtZy)OOHKbt&W2 zzsYmR5pA6+M{}DYh+)Hu?_?k1Ah=I37K%ca4NTV1B8jzNeUQ)yOh+Ge4ZcRYGCY)d$~VX|y|UmwwVO;ech> za;z(yeq^7jGxjD5_Mug{^tkE&7^{F3YH<_?-E`Au(QJdSZqZLaE(3fUVdhW*;W_VXTA0SGojO;^ zdJbc*BnFyRqF}|Re!0;)C-O;aLs=4~mT{}%{H8s4A#U&AWwMul!aA%X_aVJ-x=KW> z4f5ZS2-Tt}0>rN%o21&_%!EJy7Y0zWouy5DSv2AiqiJc056`c!#Nuqb$Zu}6-1(p~ zHeQ$T}?36Q+z8tQZ(<{2AjlLHEfoUGZNafhFYi zh@0)~hN7%gdnxl(eM1XvlB_m*k$C&?Ls>oUZ`S-=OG>~zZeC##p=R}{9y`p}R2e}M zw~Wc^Q+a*xP)G=DY+%-Y@RHOs*|Ot=PGIZi;N(db4}^vv(~w~l-$UMYTawFr1RJhm z^-x`meERPJt@WeiXYM$c~% zXe^@Enq_6jHn>;B`V*$yJh)O~*H(%ctL_+h-;Ys<=}&i|#?}>+kCyD_*8X697P0E< zz#y*cY+AW=BPrDtx)c7!_Y0Y`m%{dkGDm0#oak3=jGp&u2KB9yL5zwts!GOwohjIf z^Qv!Ht~q*Vd%dC$!V#N2MZtn2B!(Lg16&tR2Hc zLVu(+u^v;GDN3I6=MN!pDr#fh)q9T7{nbJire2$~I)_^#)MVGv36x1{jty(NEAAk5 zg=}UlypfNk&)@MkY4FelrbdOS(R1nv(WTv$5c1lZ00qiQ{n(6);Z=1L&0DvWjh~ur zY9i7orIVj};Lv}vKT~?TU6zg{ytz7cDZNc5l}lL1!Cl6nPdVl|h1BL{YzW4r%R84) z!K_h}^GKSt2EH2`&3^G62~IDcia;dbcZ-JCyI(QS$b4CHK#Z1W%jF44B#!*Cq`hHu zt}aO8IxGUsuN{dtyV7)!Uo!o84c_`3p1g#0+?T(6_Jx|+Q;_TiYr#=DWka$@=$2U8 ztrppH`<*SZ4Bo5v#3q0BOb5zSTC^s4G%6#jk-hL)hl3+gF%}|N8xVuH%r&cbUS%nT zH_Z46ZenN60{@cZD3PlcON~4H4>SkQ@cvtJ@Yv^lCAvwUW)HI^trhO3&%}(lz&md> z6Ie8fxTwAl85wbScrtDu9NLW-ACU(x923`>&hB4OR!|-j_5C&I8iR*ASB0iMh-oW_ zxqU#adL%wv`$z0TZuOvyqryUt$M)}N4MDC*Fy&u$sm{`fEFU3(SDY#DA@$*0455iQ zIj>q`Mtb3-t*Agp__pP*-H4fm{D;N5@B6wHrJCkGBWE9_msS!!r$tf}Gh5C?ak^9E z{?tHPjmDt-(RH~1ZCWoBJ4c>FZ&G}zrg8M)W%{s6k8`N0U|;}hjyjL8Cx4%?@Z4-d zobm#$_5@#kp;0@1z!*7IffE>iHoZ z01~yad{qhAchh1~T;^ZCKgeF;a-7z&c+MBK@9L8)H_0Zf9yE-Y^M)2En>$8`8H#On zyoI*abS~cJ8#=f(bKtQ8?J7eeZ98YYv^nnZSx}C@*3(jJCtl{L4Pun$>ZPzhFm8p5 z!{q}cguYu{{1&Q&C;oK#KteZSBR|PqR^)T_u6ZXx;pVs5G9LCH-0_7*@sAVK6nS9o zLjf^-@G@W$>s3pWmA>#-Y=PG@tfS|(_E#(-a4mH3t-Q1L=1P~jXX$Q3poB-JodYil zhb*R~3k?Pbtpxm4e_BE6ArcUT!G5TVzkJX^_Bv4Zwk_v$yu$NchnZ%Zan7Kqb*0HJ zgV6h_QVT)~zKxZ=xUf{{;m6rnE1yffrMe^@_NvCo={l{+A8M0&r6?Y=lBCo%vsGPb(ovYz@5@i6 z-f|Hmq#Xa+t;=rztY3=*A5D4)9>P|(4vMnl9a*!F*bh6bp@Ttta^BwlR`jS}Ntdb@0@$DJD7Z z>tSl6Yey;7KNN@zbh1m#h1G1Z`LX&n&nnO9puE&sXW{_(fK?B5QCuZ;b31%gPmyD% zhWtocWN%EW>m4x}hV`eHnx}I?%lpBiAP8YCaW4NP%?59`^Y3MmH#J8fzaAnEJJ}w^ zGeXu{?GF@+6q5uU*jdV&k~Yqj<;Y1E;0Z%Q4^G%UwY(BP!h>m*ciV4`f6F9?nVSy+A`tjX2RtQs_>F;KlMC{M8^R(Ae zvc#r>DQTOYUOeI6JZ~<97JJ^X_ljht)~USsn`<4@Ws|u*bWRWT4SMDyj&W2JJrCb3 zPI?>a)6G3o&P_0X(aN;iHb4-tJjhgdYtnh99;~>s(xIpxD#_w~Q>}C|&xNTh{hgmX z83~;h!k$m|g(z>`_<|H|<0s3@p|%OE=$5L?YG(>Pn8tRrc$iwH*_$D4A!i>itloDx zmdK;}S%Xdn(2?5cRC^(oV1J}HK?JBkRISo9T$3&yd}dnEjMT_$7i#ENF-G1!y~;8p z59{iw~$hu7rQ<-T!fDh6! z=;zXXSI6n7eS_hh)x*}1zBh!Bv74)q<^r}krIxFePp`OfYyz(8!js!ip->{06hn(c zWSL>|l4)tmeRgYA`LXrqt`U72K|n3rI${(dk6A-5Y(g(xlb?y?A!d4(S5=?`kP`9r zu+54Z%1DD`?bAUG2A5ukCm<@+TXO9EDTD}1^LE-eNvsGMOc&o{xE^_6)adw!=4Da% z3OY~zO=ust_$oK$fHjRSIU3}Ax-X_wQGxLNV{Vb0cz{Ip-1@rAgqAKTXi88j6FlbU8)As>kphP2j9s$$%>nc5- zZ&s)hm9+TS9wzcTaX`YWes&G*=q3y`^eos_O9zaD#Xea!=?3|N|uN_p5 zo><$hyWSQ*kJ?bMc`PA3m&UcAK6G<+P%?aH(VnU0f%brmD`H~S*@vF&wTn&+shB`f zi%d-LU^wZB;zWC2F~W$}iX^?F$UjkHT+v|)PW#PTQ)_=$R10t@^a2FRwln8aM^Jz{ zPto;}lnoM!frR?~)e6ZXAqKR8j~S+q=BKvO#7UbZT8G-ydM~N;EbKCA1W>?V;#xp| zCDZv&vTeW+S}wvG?!JA6WV}`?Vzbdw4kDJsa|{Vb@|tf_KZ%Ssv20~Dm4_p_$0p>= z>G)~!SmHX7Fpbp{o>+-k#O1mGRA4|2m?|F32m5fEpSAbGLMqFKV=HW9l78HFcFIkJXkPV`WdsPrm+AQ4uo_~a}aCiw#P zvxP(4oIf>J&svG)KqJzDGRZ`gR^iV`hko3{Ex2<`7fbOmGoC@#Tw*N}ret*= zD*+?j95SpobaGm0-E7)MHRE5wrYO}n$RH3i+}S`o58Oc6Mr?o@C-jp44UpM;iX95W z1>6%d9msPvEWSg4_ZQ|aKr(5ZBK zr`kMMPrjo;Yvl|HRg$@ng_${|^~xitlXSNo=PzX>dT<{S7&a?{Wn1(ss?T1=;p30d z8zi_GQU`91BuL;nC2)6#15v|>hdO8=fG-&HZ2^<)(AkN%03TW>U2)Quzr8o>eA-Xb zmZ29Z=RGn;c}4)#WZU?!A5^4$u>mr@Iyd9b-F($)AixLhO~jrbB3=5bvf&^wzMLXA zd7_d$MDYh*57KeHItfdudOY{`TpCo+Jv$u$z&mjbe2Dym;h!Tjgv6o>1)VK(+MB@5 z3-bCWBotqI#pS?ARBDDiC_fs5ZE%)pUt@eJu?$nM2J{VaOc4R}g{%=aZCRuo{eh7@ zIl--Z!T|GQBhSZUTbC3LJRd~F3A4X zRAqz8mq|}5A;b(!AkW{XQT+p4Kt`o#m55H_JPg1(J`3Fj5+>7gSv$z&M>n6Uwy9l) zj2Ba>I&+y(Y=HLk;)T9-I6*HQY$AwM^8&!)^rLa^>g3_GoJn744b=SS7yps8;~!mg zS>;wbWaKKr3JksVXpvfInb{2aJ#HW0^8=w63$_d zL@W@C+nd*?;ChY$Kehq5Y=Of&Snt|_qmdL0MhP&nqB22n@NnSG|ktCzWDKFHgS>(wmFqNz~rt_Ndt-%j_uHb_+15@7H{PeS< zNMkluE<5mmENq)@IYtXfK5-o9=18B6lh4hG%6YTzh=%uld$FcgJeZ!69<_#>v|C5M zQ+i17G>`@w`i8}o>idGX)z6S>V;v2DJ!-BsjZi$A;(htjq_V#RNm>!z@~k{|+{R)% zs{-8&>y9QUfE>wFjYEaCo#wH(3zCAwGEo@Ft_kf)RDFuodtXSK$QQG*V4AorfbIlE z=l1?uN*8aA&u-3C{PpNs&jIu9xYUTs`Cz1vx@_to9O%z`tpFDvZg7{ye22*zjzz?E zPfbE%Zpfj0=6#CYwP1o`U;5rJeL$2)uboUT0!FM?(Vk=vfMrk?vO@K|Gz-m4qK#2{ zhraJ`?B_$ACR4j3fHPWjE6( z;V)nAfV*Bekn2`j_o>+9JU=T^ij5|ZCg1Z%BQt^mJehFY4=_QYk`_6wMD@aB#YNf> z67Qkb0ANtt{?zb$WqQ9iCam#&9mrC^B_mwQq|M$gQ_s8gIQ53@*&O>PeQkk8Na18h zxprY|0tHCld^C!k*OAOZyJ^;c zSIb=q6)8A{h=ql?e4+{!%AeE1D%I7G0OGk!=foBaSFhc?5L;*OVBw}DL#m8e$7?Mb zze`e?YLSe@pn}5t^6lj8G8+yo5N?ePi1Q<&^E>pxXLMUhUyHpupl4QaibmC&3}SEQ zrcg;i(F(!MiT#Q;P@b@f)WRL*gWcsM8WW<6BP#e^sB{CRetquC3#HR)?8V&4UCsK6 z9Z^Ws&Sc}buJnDV!Bh7$guiV|(G^wWm&nQ(R~?grjc=+E*4Sv9(g0c zqE$?gCH8MDt6^2m;~91FpTFIBQKki%#ntb}`-{DkPZf`CLJJY`bB{?I^8h_?R_2@M zqMjR!)%>W#7g(3|$ObYKUC=^a-aYU%+BK&9SW;UR4HM=}S|;SPB6y%$F(*JFqGeZF^$)+#>r_!)8?%_P^nL!D-h%mtB`yXiyP&}7CQ8=cceI+Sm$EpBk+lKTp>QE?}k*( zeo7T#%?U4lWFK#nDCH#5lyFYLzFfEaX%#bc=EM{xv}kbH41QVTtYc__-&!vc;62uR zKoYlRtb00j z!`(VrNa1C+fA9uX2KQ3Ss9L{YZhgBv(~-u1qzXQ+ z#h;|1M>n_B7P02(%-;RBgP)|rg10yammioZc(n%aEF|tT<3P(}9zQAMtx-dpm##v_ zCoETJ{1|g&uGm4I9{a7t6phVH&-+x1A=FDFmYVmaif`^-bZ4ESVwJY=r5Yv1 z(x=qw5}XSf@VoGoSUIZ27)4)rxuN~t3HRN}svUy(R?+;9OLMX)^z!k0tCay!LI%cK zex%iu6xz{Z!AiaHp>XWPu(nsW`Ks_oQOio1PS~5`&y4(gcdY5q!83SRCTZCSuwx+1 zdjZ1v&GCzJl+-ePF4v>IdeP1rZb3m>pxkMjekYkWzBj)n~5yuK&47&lbfx3c6+F@ zDAnYCjDGa1*7uenrzCY%`e#luqEJyoM|^~IF-(~_%&&n~_*-hphZB}Q-=ym5Jt_U7 z)60r_HX1%PgITNiq*S|%L!no+!#QowEv0iGtC{hEI%lY%yx%Q;C3Rp&rCsIfvg!pZ zU7$BNm1NE~d;58}bk52S5^x~eKy=Vk-2Cl08Uc35RmESr^(j zg}QwrI5!nT10D?Q*@-`PJZ!wi^kDTlpewDxAHJd77#53EPG*Q8#~sZGpQw@@y~Td#q|q?;D^Okz{RlV?H{GxPMZ znUel|BHW7j_;-NJR(wdx*XvWD>}lGoK|jSc^NugVAFz4?Lbz&#kIeQ1iJLGe$eMI< z_mHW{_!Ik|{%S?parL@)NMX!dCuTbKq)g(I2y* zz_U}1qP^RN_Krt8w&o65!- zBDmI#)=JLHi}h>R;=|#D1$CggQ8x|RRdZgCsUd}>BVZ*t9IMyL^My!yEO^8eM>IZL z1u+~jNF5GLjo3UotL6xd3XrSDyq{vH)e0m40b8jx3%eE~Vr>oxYPw?oDOV7_gM2RY zmwdNjvpzhzbw|J@SsGb4xch}qfRR(PJcAG`Ytkcae!^R0f&5NIwN2I8odgv!e(Ud) zppk)@)zoBzt_An;Av~NhyqkJPAE%in9*t03R>}>b1GVaThC$2b{0G@yv-Dt3%W>3* zg_}D14X&bjRM-Utzs$SBKJTt0rPV&gz6+F3s2MmdER)37izQ7b?Ux-|L#i8m?d=`X zQe6yqpt1CsRH|M}s@iR&Kzi&Hkl)2!=bM^SEW@1;xt!pq_3JB+;EeJq*=l)Np0D&5 zU0SnRtQ{tdLLdVY{3Oz72feZwRMZq$u%bttV!DkeHrweS;F@-z>xsi8tHJHiu8C64 z!}qnX2La)>+hj*Rf*R^?OeXwqqI9HryLMLH_PbiQ6uT9+l(|9$%=06LSOilCq2~Jw z6ZxI5nEqM0E`dAEPkrE?ACin zPGoJHRyTlOvz}SATfn%shy7Ye=lniPfEW~v)oL{R%gAVljk0G=@$@4uYv-6sqMt^6 zZIBb&(9K8b0~u+1mju13!;!xt6pD_FCR+-z_9L2Vf#vGeSG{71zg%QPs=JAXQARVH zf8fex0&BgXU?*(qKg`82s1b4h9agt9gb?y5{ZYtf`=#rpsd@h^6^9 zNxI%g2NXZ*uk;_Je8bUuZogCxz8W1voomgLw)j4(Q*gApeBM9(0kte!I3+y!PPBD! z+)D(o`dn@BX_T)+pc8U|^vHrY@K`hWrqQtw(Vs{Z3*}$^Stdp`-(nmtheJTCv3(MsduG% zx|XkP(>qKvE~89F*DqkG#q?izt2ma(S%>i z!jk7gFTxz+LBY7qFD9(*z~RNC^c=hqiqyD zXN9#F&fz`iBCT^ONBAdlTBf2XmXKY!wa%2R2&K0()C+?a$f*?b4mR zG9etIzaqy@a=z+#2U51N|0Wf`GVbZo<8py)CX%%eWP&vJRM?&qZQFcEov&Y|=7yui z@}-i)$?tv}B+QuhnfK1uq5_2XHz^>V)do9SCH=n`B{1;bY%`OU`0%igE|R@|R9BG~ zqX!Uw(nOpt*Ib97Z_6XiQACdHlpWJC=CIahx38{fL+1mM#w7pWc=T_oI~dQJgTo7^MVDMlkns|k5uyQ)4PGI548`jKkL_X>SVC{ynQDr zZ4q;th*)9g$A-F$T|*`sAbZ4G(~Q(r)@Bk>wYn>{<()Qv!H^x>@Q$Rxy$dLx%xb?H zv6p%^9bRx~bNiRR`hmO5Caazeo834UKGE;L=fYgLW0+e|lRw@@am$pRNRVTAh?L!> zI`w|BZ^#szNKn$5mmT%H|B6Fx6`Ns`j}!eJuF?Y=hF1=-6`dJMPHJO?o>)xk%Wb)h zx)+!fU0F*SrLbpN;%l&DIYpXBsudsg#|(Q9Q6m$aks^?Kf$E9JZXOosd6V&rbKJI2 zFuO}F5(x08h-%>Co6$o}+j^CYnuzk%Er4-+z!{fz4L(^T7TtH#$Y)iCXN@jBHVj4x zYwDzAHV!QAR6dV*M`|Gf3<;+%EnGjm?Ul|%jSHryPPk9kR{$K#hqHITM}r-YvEf|j ksI1gTwi`Zm0gwT5Si22>wG1Pkr?LPFvZ^wbQbvLQ2f!njbN~PV diff --git a/gradle/metadata.json b/gradle/metadata.json index 67e782480585..39ac749c7f11 100644 --- a/gradle/metadata.json +++ b/gradle/metadata.json @@ -1,7 +1,7 @@ { "hub": { "categories": [ - "developer-tools" + "languages-and-frameworks" ] } } From 83f438cdf78bb56056116507af7a3f7be9c9eba9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Sep 2025 11:10:19 -0700 Subject: [PATCH 2493/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- gradle/README.md | 25 ++++++++++++------------- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 19e0abfef62e..1efcf3a9cc32 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.7`, `25.7-jammy`, `25.7.5`, `25.7.5-jammy`, `25.7.5.34`, `25.7.5.34-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.7.5.34/Dockerfile.ubuntu) +- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.2`, `25.8.2-jammy`, `25.8.2.29`, `25.8.2.29-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.8.2.29/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.8`, `25.6.8-jammy`, `25.6.8.10`, `25.6.8.10-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.6.8.10/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.7.6.21/Dockerfile.ubuntu) -- [`25.5`, `25.5-jammy`, `25.5.10`, `25.5.10-jammy`, `25.5.10.95`, `25.5.10.95-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.5.10.95/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.9`, `25.6.9-jammy`, `25.6.9.98`, `25.6.9.98-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.6.9.98/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/f915a6aed3a08c98658c1f43a7a5339c848313bd/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index ac707ab73cf6..bf45d16d414c 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -20,7 +20,7 @@ WARNING: [Gradle, Inc.](https://github.com/gradle/docker-gradle) - **Where to get help**: - [the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic) + [Gradle Community Slack](https://gradle.org/slack-invite), [Gradle Community Forum](https://discuss.gradle.org), [Docker Community Slack](https://dockr.ly/comm-slack)⁠, [Server Fault](https://serverfault.com/help/on-topic)⁠, [Unix & Linux](https://unix.stackexchange.com/help/on-topic)⁠, [Stack Overflow⁠](https://stackoverflow.com/help/on-topic) # Supported tags and respective `Dockerfile` links @@ -193,25 +193,24 @@ WARNING: # What is Gradle? -[Gradle](https://gradle.org/) is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins. +[Gradle](https://gradle.org/) is a fast, dependable, and adaptable open-source build automation tool with an elegant and extensible declarative build language. -![logo](https://raw.githubusercontent.com/docker-library/docs/c3d3ca6beed000f9ba6eabc98f3399158f520256/gradle/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/a699a4b975a6b15d3f2a198221dfc93d792ff457/gradle/logo.png) # How to use this image -## Building a Gradle project +## Run a Gradle task -Run this from the directory of the Gradle project you want to build. +From your project directory: -`docker run --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project gradle gradle ` +```bash +docker run --rm -u gradle \ + -v "$PWD":/home/gradle/project \ + -w /home/gradle/project \ + gradle gradle +``` -Note the above command runs using uid/gid 1000 (user *gradle*) to avoid running as root. - -If you are mounting a volume and the uid/gid running Docker is not *1000*, you should run as user *root* (`-u root`). *root* is also the default, so you can also simply not specify a user. - -## Java 21 support - -Java 21 does not currently support build customizations using Kotlin (such as using the `kotlin-dsl` plugin in a buildSrc script). Full support for Java 21 will come in a future Gradle release. +Replace `` with your desired Gradle task, e.g., `build`. # Image Variants From 10e0660de4961778a4479d3b957b7d1c6a5de105 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Sep 2025 12:10:17 -0700 Subject: [PATCH 2494/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 38f4905cbd25..6677f3ded650 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.3-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.3-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.3-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.3-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.3-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.3`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/apache-trixie/Dockerfile) +- [`11.2.4-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.4-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.4-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.4-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.4-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.4`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/apache-trixie/Dockerfile) -- [`11.2.3-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.3-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.3-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.3-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-trixie/Dockerfile) +- [`11.2.4-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.4-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.4-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.4-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-trixie/Dockerfile) -- [`11.2.3-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.3-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.4-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.4-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.3-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.3-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.4-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.4-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.3-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.3-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.3-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.3-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.4-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.4-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.4-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.4-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.3-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.3-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.4-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.4-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.3-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.3-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.3-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/apache-trixie/Dockerfile) +- [`11.2.4-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.4-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.4-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/apache-trixie/Dockerfile) -- [`11.2.3-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.3-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-trixie/Dockerfile) +- [`11.2.4-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.4-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-trixie/Dockerfile) -- [`11.2.3-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.4-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.3-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.4-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.3-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.3-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.4-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.4-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.3-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.4-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-trixie`, `11.1-php8.4-apache-trixie`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-trixie/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.2-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.2-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.2-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.2-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.2-apache`, `10.5-apache`, `10-apache`, `10.5.2`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/apache-trixie/Dockerfile) +- [`10.5.3-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.3-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.3-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.3-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.3-apache`, `10.5-apache`, `10-apache`, `10.5.3`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/apache-trixie/Dockerfile) -- [`10.5.2-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.2-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.2-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.2-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-trixie/Dockerfile) +- [`10.5.3-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.3-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.3-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.3-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-trixie/Dockerfile) -- [`10.5.2-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.2-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.3-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.3-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.2-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.2-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.3-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.3-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.2-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.2-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.2-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.2-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.3-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.3-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.3-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.3-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.2-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.2-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.3-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.3-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.2-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.2-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.2-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/apache-trixie/Dockerfile) +- [`10.5.3-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.3-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.3-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/apache-trixie/Dockerfile) -- [`10.5.2-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.2-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-trixie/Dockerfile) +- [`10.5.3-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.3-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-trixie/Dockerfile) -- [`10.5.2-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.3-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.2-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.3-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.2-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.2-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.3-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.3-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.2-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.3-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-alpine3.21/Dockerfile) - [`10.4.8-php8.4-apache-trixie`, `10.4-php8.4-apache-trixie`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/apache-trixie/Dockerfile) From d6d05b267ce6493a8381c28c266be9311ae103a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 4 Sep 2025 17:10:19 -0700 Subject: [PATCH 2495/2686] Run update.sh --- aerospike/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index e563fa4de57a..c99f3817f34e 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.1.0.0`, `ee-8.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/d2d1e58437ea00ef3811529920a1cbfc0018a751/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.1.0.0`, `ee-8.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/9da77c0afc4fd756786dd36ba46211632c1911bd/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.1.0.0`, `ce-8.1.0.0_1`](https://github.com/aerospike/aerospike-server.docker/blob/d2d1e58437ea00ef3811529920a1cbfc0018a751/community/ubuntu24.04/Dockerfile) +- [`ce-8.1.0.0`, `ce-8.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/9da77c0afc4fd756786dd36ba46211632c1911bd/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) From da6249150c2adbc4851ae3175c32437c8996ac19 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Sep 2025 10:10:25 -0700 Subject: [PATCH 2496/2686] Run update.sh --- convertigo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertigo/README.md b/convertigo/README.md index d4997579dd87..d8f36b749de9 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.7`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/3445d12dfad08b98ad476a57ce7d3c4047652832/docker/default/Dockerfile) +- [`8.3.8`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/bc71ce4b622dd2994adb03730375d0c744b0d004/docker/default/Dockerfile) # Quick reference (cont.) From 5c36f08b732653121d4104d1299e505aafd187b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Sep 2025 15:10:36 -0700 Subject: [PATCH 2497/2686] Run update.sh --- ghost/README.md | 4 ++-- haproxy/README.md | 4 ++-- postgres/README.md | 28 +++++++++++----------- rocket.chat/README.md | 4 +++- tomcat/README.md | 56 +++++++++++++++++++++---------------------- 5 files changed, 49 insertions(+), 47 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index a5f834d239a6..97562c17ffc8 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.6`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/6290e8d21bdd45e71987936e4914ee3d3e15b9b2/6/debian/Dockerfile) +- [`6.0.7`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/07fb1d525e27f6ac95daf65eb00fc91f380e92c5/6/debian/Dockerfile) -- [`6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6290e8d21bdd45e71987936e4914ee3d3e15b9b2/6/alpine/Dockerfile) +- [`6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/07fb1d525e27f6ac95daf65eb00fc91f380e92c5/6/alpine/Dockerfile) - [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index fec365f97bab..477ca4549006 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev7`, `3.3-dev`, `3.3-dev7-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/8f63da4a118ce01253d4a1bc4a88a897989e8ee6/3.3/Dockerfile) +- [`3.3-dev8`, `3.3-dev`, `3.3-dev8-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/4c74fa19391cdc46521acb0dcb7c9e61dbf4db3e/3.3/Dockerfile) -- [`3.3-dev7-alpine`, `3.3-dev-alpine`, `3.3-dev7-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/8f63da4a118ce01253d4a1bc4a88a897989e8ee6/3.3/alpine/Dockerfile) +- [`3.3-dev8-alpine`, `3.3-dev-alpine`, `3.3-dev8-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/4c74fa19391cdc46521acb0dcb7c9e61dbf4db3e/3.3/alpine/Dockerfile) - [`3.2.4`, `3.2`, `latest`, `lts`, `3.2.4-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index b03c5562fcef..e7b289df7ade 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,49 +24,49 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18beta3`, `18beta3-trixie`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/trixie/Dockerfile) +- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/trixie/Dockerfile) -- [`18beta3-bookworm`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/bookworm/Dockerfile) +- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/bookworm/Dockerfile) -- [`18beta3-alpine3.22`, `18beta3-alpine`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/alpine3.22/Dockerfile) +- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/alpine3.22/Dockerfile) -- [`18beta3-alpine3.21`](https://github.com/docker-library/postgres/blob/8d2eba60404809503b5a04c3e0c4ad7f0572b9bb/18/alpine3.21/Dockerfile) +- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/alpine3.21/Dockerfile) -- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/trixie/Dockerfile) +- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/17/trixie/Dockerfile) -- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/17/bookworm/Dockerfile) - [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.22/Dockerfile) - [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.21/Dockerfile) -- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/trixie/Dockerfile) +- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/16/trixie/Dockerfile) -- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/bookworm/Dockerfile) +- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/16/bookworm/Dockerfile) - [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.22/Dockerfile) - [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.21/Dockerfile) -- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/trixie/Dockerfile) +- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/15/trixie/Dockerfile) -- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/bookworm/Dockerfile) +- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/15/bookworm/Dockerfile) - [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.22/Dockerfile) - [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.21/Dockerfile) -- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/trixie/Dockerfile) +- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/14/trixie/Dockerfile) -- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/bookworm/Dockerfile) +- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/14/bookworm/Dockerfile) - [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.22/Dockerfile) - [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.21/Dockerfile) -- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/trixie/Dockerfile) +- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/13/trixie/Dockerfile) -- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/bookworm/Dockerfile) +- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/13/bookworm/Dockerfile) - [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/alpine3.22/Dockerfile) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 50363affb981..84db6b9de6df 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.9.3`, `7.9`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/75c516a89b6e98d44085fa9cd33f9bc5f2b5986c/7.9/Dockerfile) +- [`7.10.0`, `7.10`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9006d708f0185bafdae764924be1f553ec55bfed/7.10/Dockerfile) + +- [`7.9.3`, `7.9`](https://github.com/RocketChat/Docker.Official.Image/blob/75c516a89b6e98d44085fa9cd33f9bc5f2b5986c/7.9/Dockerfile) - [`7.8.4`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.8/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 802c4c2c2b8e..fc604b8c0d54 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.10-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.10-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.10-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.10`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.11-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.11-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.11-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.11`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.10-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.10-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.10-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.11-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.11-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.11-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.10-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.11-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.10-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.11-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.10-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.10-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.10-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.11-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.11-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.11-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.10-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.10-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.10-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.11-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.11-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.11-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.10-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.11-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.10-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/67ef06d6f9bd429fd227362daea64bf640488948/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.11-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.44-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.44-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.44-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.44`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk21/temurin-noble/Dockerfile) @@ -64,45 +64,45 @@ WARNING: - [`10.1.44-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.108-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.108-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.108-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.108`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.108-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.108-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.108-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.109-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.109-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.109-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.108-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.109-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.108-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.109-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.108-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.108-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.109-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.109-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.108-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.108-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.108-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.109-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.109-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.109-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.108-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.108-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.108-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.109-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.109-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.109-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.108-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.109-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.108-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.109-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.108-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.108-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.109-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.109-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.108-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.108-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.108-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.109-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.109-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.109-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.108-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.108-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.108-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.109-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.109-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.109-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.108-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.109-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.108-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.109-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.108-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.108-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.109-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.109-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.108-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.108-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.108-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.109-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.109-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.109-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.108-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.108-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.108-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.109-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.109-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.109-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.108-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.109-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.108-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.109-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.108-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.108-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/8a4801e7747ab025c37f76b8521e450089610dcc/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.109-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.109-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From dec360b0c9d570427d22f98a0d7c30969b62af6f Mon Sep 17 00:00:00 2001 From: Laura Kassovic Date: Sun, 7 Sep 2025 10:04:22 +0200 Subject: [PATCH 2498/2686] update gradle logo for dark/light mode --- gradle/logo.png | Bin 31820 -> 11423 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/gradle/logo.png b/gradle/logo.png index 022a09d95a1032ca150b9a9c04e9ba48fe4cc2e3..ce4fa0e7e73ae7ae15c21ada21bcaf5bbfcc5eb5 100644 GIT binary patch literal 11423 zcmV;QEMU`#P)e?YCN+FDO#b_Lo=Mz%!~aBPnq+Yy=-baW+3AdUog5>ij(mj3oe_iY@`;^diXz+ zMO^8$)7MwH{Nj@ySXfweB`iTl2t>@xfhi_slBkzKz`OKdikyK}T{OmUfz-A%QzQWS*2DL+zkOxsG+0;DWad`n^v5d8*EiAeNmY_R`$A7sxh0K}N zx-wL0%L)ZxVhKrjp*WUW54+EAE?!J9UYf*xjT>UFs3KYt@xbYO#*(y!Mf70_xEv1!w?A7V|DRJPSnB24((d;4$#WK7A=w1Pcp`$ifnI z2SA!L7p1j8J0>ViS;|?#{porv=2}oh-N*CD{%(1p`b_CbE>f3Yv>|yG7EuKUi?$;s z#bM>n3x-Dy*O8nvpa0eHsolsqxp*ah1j!xh0L4W2Z;C2t zP4D!%Bx&5;&#&MPTmTa{E#-~AJK|8GiQ2b?g+=4A8gz&7`CpA>kx<{PB$FsB`Vi9Z zWHtG2A!iDalj0iw{W@9ECT6-q&a_O5EJ_(OJAJMq;g}fP@)4ZH{fC?>u&}U*6s!f^ zVSEEEX|#GZIqF#GvW2W_a4u}9 z(@54+NbRm#V6wo$;X7)}Bz2SqoHcxT0E|k)rF?Vc#gQynSXe{?mY^d7vWNwbr3IO? z0+v4;t1nUI$oag>1kd9ob;}j+Pzu?{`W`Rr5aBU=emN_cvcOg0Qru+Sxn;Fz3yY|r zs|ng&yb^!-)-4ynPYA&dASoqOOoWs!l1-d(8HaLZ3l!WXTgTUme2|Vjq@`<&5;pL4 ztpAZ>acr=wiAj^Ra|K@>&}Bzelt$s=cZO5jt)I;2wKU8 zr-hW2IV>zXjmTvZKK9eqBwENLQu=8LC0AR)Qd4lnfu^g!(F@MXjYWcZVD)#d-&NO0 z*0QXsm0VuGsu;ehp{#2un@9?&viKMqVN9^ZFD`hv+a=+%g(#D?kn)_vm`ZX{-%COg z7jH|@7hX&ihCf(Y$1nY;)}iI2P=W+dH9ZRpi;f}^1ntgWiSLVjbrNYYDHWNZt4zn7 z8R|6_azLV7k+Wt~A#MOCUD+uL)RU1_*O~CIaYf6pF6q7b9NaXHyQXw$7s==VrBCC> z#Bp6^oma^pP${Bp_?#SXAYJ^}Nz}F{2Y<0zz2d0qvM)bi160xkdY|9!3mvBR<`V*`e zlj5p>x3BO;ra9!8_!(7wa}q+r2nR-lmJCeu>NIQho&_?99zgK@0&a8q_hZqqs*k?E zavjfIJV@tuq`zZ~^U#MYlXz}tfRzRL-14(K$52~XShNQnv7rCc{7RZ}{v)K`l&r2t z0af}kC}o2L4eD5ZP6}AMRVo#|Ol!2!;;V|h=&=+mqaJ~H5aW29NlFF@+DrjJSq@PN zA|TT~W8+UOt}f%c3!jg5J_-VlYaNgG0NkU`ZwE)sG=d3(x)ip;orOgN&{l#r#5~2Q zEt4vLZ2q8LGf)-QG*1-hAxnJWi_B3EI)tJwnokc%P^S{%kK^%;QmipEaUaYG*+zpw zB8TKR7gwfy)O#4=pPc*RhmCa;X*IrqmbHknaVAB&ypZdzC`OJUVL|H7C2ab4$Br&Q z8$t2Sr91q3peZYP=$8NJP6;T<^C<7c_*xL2h>O+=&yM^lSXfwe6m2P%w9mOkO;OWE zv@p&-V}3H~y$6%G{YMV{^N)_6iaI$Hs2$bkV@ESS^AF)S$>7)WSkP^|D$E+c=OGCq z_pNgm*1q-Y3**ox_@#X#

ph!o6Ly1N-&S22qI6Vc&#>g@s1TC652R@aah*{ZV#r znM_cT1Jm6=$UC7prgZBZJy6z2oBn?zDr+%N)m8F`ILLfJqF%{TpTOU}++vH`_eX;` zZmETs!mjIY;JW*?LslQMqa~oO4wLP7Q-oBvA9U7tRGVSG2T zPA*=F51n60`w#OqMvY*l3^Zi=$78-oK`6+>tWqUPaxMyBVPVm6v^0uC)m#pW$1C}j zJ@7?%F6+pT^pW%VtP~C7e3=G$mBIDN>E(Oat3td^;LcZW7fM{3u#P*ZiY*URZJ_aN#6% zaE(drWKdkPrA93*B7v4l95`2wtMEF-&_pG7kua^Z4^4`8 zB|NXX3@T`ctJDt1paiR?^3&|57_6u9E8}oXy^tntUBEI}SXe{?Em4M5_mi8H+Ko;t z24#!TeBk=Nhf9Zww(s4Jpd$K`Ipe0bhfB*UH9w@Xn3-uhpldj@0t0`#@LZ};$Hypn z!;ySV2K!eeEmI$*>f4Wng+*)7bcy5Z?_Ny!H*YTD%Y&flqtfw2W!1^}=Iy>Ie0K^g zwgnZ@2cy+L^+7)2NJ?6YO1d`JKDOj+ zVG$WL)q?)BpOSpxXVD^y-xsyPwh}e|_xK-w&>bzLdKJ%nQdmRl+XdqxM5pB6e3DA# zz{0{J5@?zQ{n$@er|<@!3aY17>RU?BaaabOTJvbEx#ilIOwQnokYQkrBZ0C@48BS{ z0*@36ZD<5bA#iv1eRUG8(u4_OIrr&H(dm}`%*S~u{d$n;G$J*6?vu8QiiJg#&=e=( zV}EyH9`EsNr8s;!#NhPphrc%XhgXLR+?N@%EO2;@{Q1vTlh6hv7V`-%zPuu&%zr7r zyn^prT9E$8`MkTa@5|4n6j@b2TFOx*>G`MLTm1<{1dQ=1Q&rH+qvXQ-sRtv=)54-# z&@e$i_IE4uy3VtXcQ$1w)}`Q?|Nn!bNzYiTf1vssszbJkM$lyblU9@E6aR2woXc1q zU%JM&cl%)9D6|kvIy2T?9Cj39H?dbY5L9`;PoTGoJZRl*@K z#TfIXvzhwi4^rDY|BA0ZNu@@ow>S_PoJ{F_!zg%4eA+v!=Z$3+M&L%$_ zYk4)jTu`q_le7s1R|`7Z?{5>FDfOa!4bVqmt!E31NMcU}{n)z~r|Bp z!}`c!=zy-d!N^*L@M+l11W6m4z^-t{;<|K)9xOggCJ#Xu;jOpca)Z|s6B8a-^aS3T zn_B~ul(i$I%uJj(k=u1YXU-5e?QZZfR>0p*3c3Jwh1os!)72!CS~ieXVRVwC=KN~- z?%V(O)#2Qq|9o{E>2ritLO={%~}p4J73x{s@i<-zVuTu8KDa5q5JIw{fZ16MiuYYlOKoXV$sn6r}H;t7Uar zSVR@!Eok5W3Ec!xl-yJ=lmWf`HCcN6GfU3s z6kHxha-Ispv9)8Cc>})e_^jgW*|R5a-@3Ji7cNU=3ay1}oZ4%1b8|B^Fo1g$6;EGS@M=LA81`@x){T33$8pAOGb_`iA&&4Ob$I=zubo zgFb&u-oVXIAu*>4wo)EEm(M5gy3K;ACaB~5;2IYq)yaC#XU?2SoSmDyg4XS98;JQn z;5nGwxPAKyNh)Ar5pmR%IG8BS1Z6Ju&CWc@HZ#y96u&=oI`Q|bX{ig+YnP#bY~mLy zX(Zts`0^Te_+k7zC4aa&TFp#_wX;$=0tNV)&&O=I7=g$cc*Q9wO-EQEMCOAIhSZVO zj2g2lrUjh^S=4zX=`2bfHU``xve=cNzy9vUw2)#{D;qkZmrF7I$5)$tlb1?k=y}iM zXB>ob>>YE}^jF#VTb)Hg3oT?Fj|0nCIims!r}G)3a<6fv`*0P>LN6yfS?Brfx89n< z0V3Nhjkzhn-xo!U^!N9l%49OOKDkBYu&cx&q?`hyJDWb#SO55f=2v7Z65;!P3dewJ zI?6zIVbPze*U|Or^|2r|uOsbDe?B&R$dYpfWI0nf9q1CGWrrJ+;>{07Mp~Mnvm1~E z=LLmlMiEjbEje366+2qcWIZDhy0R+p)aRRH&>|GIRelKNjw~|Dcu<;D`L_Zc6?JAV z<>?X=v!8#@>de(3a+Z}?=W;A0wbA-;B-OELyt15CF|ECWQ4?Fnil|#(yYFwDAH*jY zt@FfQG;MAhM_5D{I})@2Ns$}nQWoeK%zg1{>-EdxUn}Qh7Ku9P#NaUAl#ilOz0Nr+ zel|8-0E_!T(Hcm^=ya=SyEF?CjAcI>9_chWXQ56=DRm4p4#p@y6vJA$*Kn)*C!?#ibS%oXeG8K=&!%KqO9lg0_C^cZ0n7VL|uSAW)?n3cy4+5Br=+b zX*OkCb&-?oM?;+>XVP}}Bx^8sdSGB6yBFEv#EBD>%1@73B5NdSs+2gs!|EQMEbAb& zh%~k(XaRgm3BeQ~!Ikd2&<^X_qCPyoygY*>IH}9zse;@})esD2jSiBtf|U9CHUJO5 z%h-wI$D2|w#gKJ+ZfH6E(3=3|XblqV=FKx|@vU@zS^uv`tr`baGw#;+YRq z?XTEZje4aGasa;3hRR|Snvio~VbMj{5@tt*^Kn74x~v7>_zPeW36S1gV*Cn)(P^<6 zlmx}3xW;|)c&EwPV5*LFz5N3NEhlFSi*Cgh3wl$Cq?#{tlQsx&?GLXWEr3PGK^5un zqMS5!H6$-r?vu+82|3ou^z8sMGc%MNlMKB9W2s(`L8iJNcW>WL;;bSOETbqD<~U1@ zXy7zc!QVi_7s9v zueiA`9)9n27K?eWz4lt&2GmxGgUKJ6szo}98a?V@(NU1ze3Oz-BqV~0Qc`N;Sx7Pc z(MT!_5kdbx)r{8-wKD#;y5&YS#pLe;mD|O~^y^yZ-h!Y~-|btsCe@8vl|iXnpvf7$ zp>uc+G7ti^zuQRk6hbJdN*@vc<<~NPf3BI?KWyB-O{7r(Ar@L)a@Eu}nZoa@iP;>N zDj93OyUGW~<7(G2wF9b5F2H#8HPJ=eD%V>rE0uKpa;mC`-yJwFg!%oK37X`M68I?@ zl!wDp*(Wz`jA#c@CTBqFi?N^$3dPr~133eSQ<1tpcvFtcs)G8vz{5w!%bnH%ce{n= zn<9747pg5)3h_gt$}6JUCAA%$mNcO4O3?QbecdHlX-30X(v)1yG`o>OK+M6+Db%rT zJ*HGQTGaTxr^;n=0m5Gs^WDurm4g~3aLdE*rr1m>&6&dL7zNm|V$p`ybqt!ESsv$w zhXZm})lj4?IzkM75HWHlc|(SjH<)fYKN)si?l?Uqos~)@m!3(3 z^rf5+d*f1zuI-i+2~bJYmek7D1)>@vX)}1_@mJXtV%;`QJ%XU{Q4`R-$r8-e6;#W_ zqlhWwFM-w6-d&JSgm(%-)_We?n=;Xp```Cb{IGnL4W<-iwTvSVjP5I zLpR!C+hT8^IA=+glj_sRgU;z*l*yTZ`t#vX>*>~0Jq4z#2hz>uLVfV6-yms@QX>Os z1ITK9=bd*F^=?N*g=RzD+jTR@a&FdaVOQXN|MuH&Zz)ZnorK&^1fD_luVl+$(GmEZ z<&~mgN^s*v^SF@DM46lkrkY&s^`txpy@$hlvM7bva!v2txl`!hzu$xUh~A?%W|dur zuj=RfK1mCqb6uD+r0>t7CA}Q@XcR$n#z!hTCy}&&6)f70=T?_bGJzM9<~8K4r%TS{ zbQCq`YLJ64EGfidF%NnTdz|i*Bfk3msZ*!c@#f6bs$-&v0KNY^#W_=2J5Vk6T11b> zO?r3e$PUIrY1b+a8{qW7Ll4dF6o+jjp)7z7KQ*6r)-^WXu2k#nx1Ri%g+2|3QS971x?)roCNof281rFt4SKDpig zh?w7~L8z40u40YDY1tI&SE#WLMW;-PaF)G?R&veIIrH~49VecjnNIYl41uW-$ECh6 zlCxK1z2G|!qLh_myA4cI(s@zgcQO55C`J!jNjc2-z@n`XF+L7xJ*(cix{BZ$EBVvV z1;D9t=$q>S>0aVd%<&t0j5(e-abgll8Um80dL>Bir|Q`s-P~cUas2x+2q9Y_IiG|u zs57qF3??4bU;VJ9FcyBg=8AiW<3=fK5~VCuEp{I8P*zFfQorjig)5@lr z{WP>Myq_1KhV?6Toe*!weK^iBm9oA2=d5$ibI=1YHD%JZ)@!8U1I--f&Yam%+955P zqHJQKoD88x1PbfA0Tyiqp7kl!7(r^UAd|w9a~Lp|L~?1|$s}cSqL!lB1fZtDMbQCcoW^*1i;t*h8l7i!O5*cB;FxF;QjH8jO;1<4<^quT)n1_lby zBfuF&qGri2lzeJw_ccF_Vx#2cr6q<`1X z4|Sis5rEM&H{8_Ft*idSE>Hpg0AstYbC&8BcWG(NhP$aW0kVo8EZU9*UCoYF#{_+ zb7#)1hYHD}=ETsmp@dBVRZ&A?&em$1Wziu>nSoYjcZb`m!6uQAL429UQ*aE=L*j<`@&Mb% zRY(g3wLJ65G7%1Ht8i`~_nR92CUtKzSx&GAXil<32N5P~jX-IvXdTWzAayzFf{`=k zDS;sh#7r~0TJs|O`=ih!2py3WvgvE1h*kdtWD~uYM9jE9Ds(-fivKVj_g9$)OH+E9 zk$!j>97sR;n-!07mJ?7~xcp-4Vu6z%=8+toDG>iYqT(l%_Rb(U&cLe0`-AlP5tRFq zo4{wjonI;RfuCsxQR9h71hE?`xQ>egbUQd-!s}a;plRBC3#aY)G7A=E5IIw~5>`j8 zWK(n5Q$~&u6e8=9^#vyE5BD`GLtK*`LHpWWnZtuU;s|ap9cNykg{UgC5fxQptXY|of(?kYg<{UphyYT&n+>w_Wa7q>_fgk-AECAeG?kzAU^hQ zbbsg>P07wu`N$BOFImyl)woyEgPQ@g-l%|nO>$PG%=rTTc$NkR28z4QMBYNOX(ZAG zNxx=<2Jf*9QBDy_HGadUen|mZeJnurOcj4>B83J(RK-uTDXefaL6g&-0APS$_=Z0mK|$FhVivP@x`Giwu}aB@uG+ z7Ux%}hBNE|)Ug|__5+HX_06*$^^PfF5w?H~S#ZS-FRk~ftsQ8 zRq1CSw(roTmxtNqmxur4(#s=k|6Tu2gz!^1OyqDSnpOZx9Ll04xrKww4!yrJ4-KMB z&Safv=9Pg_AyrXzF)d1B@RMgo7(NbtoKg=~0x>8+Wbnik^)_0Y=6c{cC^*kkGzQd( zQVfqn4@^q(!QJ*upg)mD*uI05v1P2r2Of;`@mlMca-Ngz)b7J3p->ng^a@C-s{u*} zZ^xj-RqJ<^Bf%6?lpy9po%rT&E+&`|xr(>ZSf&gL4Ez)la_aJTQ@P78KIv6&R~SpJ zUw$Q3`1Hl$j9_9A7tL0zS#4D#QKygoau7$=?*)kwIw@Q6wJYwjyt0VvfZ*T;vCnEC<9rQz2)+=f zLa(g5M>ISLcQdHGWldQK2fY&~PGq6YU?B+_*Goc=0F8!XtvcFOew3DiLol5;^L|D; za2+_Zc*$kH{|}07f-p@@gwvN_L1KO-Tx>5n1uuSQ_>^$`K}vZJ7@o{k+}%|2y_MQY z5Zi!@FK38ImHr*HC7{+pI3RqS3LiD{aVoX6DdnJ~LBwQgDWc}=;O!V&g!Cw0ao z_x*o^9s&{x#YBgaIuwwk&(6(VX|(uEx1ztlKaB3&kt8PLBk*dihZg1dUM)(Bi-!p5 z*yJd59H&rgJrj-8QY)GZiB15i9aY9FR@VngXLAZSI}~J>YND2JUVddH3wyw)Xvy}0 zNZ~#_J!WW~#CPC-QVexH`$~SCPfP0kWjuan;8-H7c`q@}w9Q8&BV--UR!tV@ODA7k z$%h|6kko_otz`Hfv!DqRXzhiSItV0p;5EN8H#gTbt3=&AAu{1Q4H+g|uXbmY?ZNp$ zXcQp^hrL>qXU?2S;Ow+s1E=LcIq7t*b?7^zwcYTslVLLVw|`4*&a(F!DcoV29CSfD zS^}XjC|S?=lnx{fssGzEIR_}9H7%9)3xQlh)PG1k#OwM2FrbKyO5_MWUlY9X0P_!q zk))X{m}&lREp~Gx)V+eyw#rNM2 zldi3tgC_KFOKf;=!89&Sh3qa}4U(j?_?%T$@<@{M{j1DzNDuXB1(XHW(RxuoWR4CS z)V*CQ9u(B7=tNrdUJ;AMyjoq+k^IKPCieu%E@%brNfx{ps?&JLYK3&IaTavy`0?Yj zJFQ|!dToNI0u z7L=^=!i7Q(KS6unb@a((m}8SdDoIEk8d~_mfu;-^QA7hI9e~K1dJjVNK(=xFcKJ0W z%m>ATx-l*K=FOX4i0n1@&Ye5+crH)v6gz%z?G9)r=-!qxl%;59K_|-tD+MCZa$S9o zBAAlU1yBRinKP$@?&>u_ztcSWQi_yi$b?uH=6frk0a5+^sZjrpzg7Ib;~;mH2D#WK z-1TD2QOmWSDqPZfYgwrj^Q=mhvLKm5dY4}s$w3oAn(xR5D@#cHX)y9OeiB&)g<9L< z@g!L##2HV9UsF@68&WRdIZmsohav|)9A-1^NM$mRU-tREOVETSkaSOjoKj&Dd`$nk z#9Op(74ZQ{W_a@>F(+G9yMx+!A^DuFLo%uitWZ9F=r(NJy_+4_zkej`_g3o(K^<8p zx6F*m%U8$ur$O$Wcit&*DvreTv@r;^lXt`1L>xxU5h?qW*WnPV2P%fz=qOCbR*%%$ z=7szvmj&O!{8qo#f~+5sGZ@t>FmctSp?>Fg`I;9}Y0$I@*XJ7^01!z}96x>tLO5UA z38gcl#RDCN2!CDz;+s)jJ@jMB)b7~6L-bx9jQ7BAQGpObuN7nZ4J(@PI>j|59-IG*U#+f}6P^R187ht~{6Qp4$Qo$zx}8fXA4+bN4REJbTV}XeHV{17z&<@rel)5TR>vNI}!3Q79KMg2Spd zwDEo!%e7+csVO?AaJuq7r6|=*kK79=qGRO4mFq~xx?+|JNs=iRNGq)3;4ByBqkoO# zQy077trB(1-cSp_1p;MLAa|$Md0WQd(N6o$}qC^*GBFE~|U~i;(hlS~Wox>k} zy4^%ggn*ZT(xoF;P0vKVG>Zg0a$4byUZ6x6B)^6Un(#X6qNvNpRm4H#KtqP7jvGxq zv?HIfPodUnE+qoVB1=hg7j8tqCV6* zs6W5bJO|vpz>j@%%X=kvu(FY?4y~G;K|9~ffv@}0Z`t&zzeF+7?0R{S&{~W+k4kw8 z4mYUi2i2z%=e7&*fP#ox$sR}~(Bdg%FpZ`<78Ii$#Zsrr`Nvoa8ax;H8_V?%3=9Sl z1vE`(O_U(%{LwXQNIF3)(Hx^!wR9OG3_6eadrdd{_gekiyf^wq5wt4OPc<>5yk^+M zq}_2DkVy~`Vg4SF5XAr&Bo`@YAqvk8&r-b%^_jeEx10DjfU=2NwoZeC1&>Srdxcc% zN|%y!BDi>5nhU1SlVoN2B{&v+h}Gp*X%LzI)sv|#Jm3h38ghso25mYH6DQktQb!b+5J8 zMx?T$6bd3CA^-qDk&%{A1puIYKEI#gVF3ULhiUud&jEp}q?W6igN3Vyv9mcq%*?^W zoJ_{f*wS3p+}O;^Y0O*@0Pwk#kr4agxpuB=<-8z`ZQt$;ID#ERYcW=Xrv!SU*pRUX z5k?i{StNehhu?u7K_kH15Ifw+H!(KH|FXZF|c!96HEKXi&Va+Ynb5Cl-0% z@p=L4W%6dvrfJ^F?n10|0$Ytn^9d2NxKlDcGw(Fin;(CPel;Jk_$8>2;wYl*^X`38i>MgJE>5I7T)(f ztOJ;>GevvOEKe7Gt1opHEPQ*k#Su;0!)zkp&HBA_O7?5jbEtqws~HV%{@X>Nd^Bb( zzY*rVrwhN9Xrd0g)zh)H;~zhJS zlTvt*Ww>XkcMxt!@j)^G>*AauIyo6cOdoKUPyzY!t%69To%;a6AgB-qOx> z%hM8>iMe^35$<}Lsk~UCF)(_n6#BMB&jHrvg^4Y&^AgHYPn$7tEDLe|%4m+3h;gi5 zi6ZhVC%86pb?aLF{%wV6)Jq$j_!X?|zR_|ja8=cfi`&KOOiSt6_4ReF72YU!WNunD^+fk>VE;z&6ON(o^wze`gzE#?;2%2` zwAYPj=F*~C^>dSq1xuu6(FIytpzo$j8pwgH{|8X}<(&@nq*{3v{EnA@puT|xNe$T( z2Z0~C%Ng7!J9F-J%^t|cfz081IL{BCN64z#`;fEZM_B-g{&kA71_?sWROoB3yZ`VE z@=MkX($ai;E>Z;}BwCIGHX%%);!+p!j>QU>>R-6;gbRR}8l{!BZrSS$J@?^oAMs>RQlwN5e`<3++U>iO9le>n&sYI zss)HiS;&}0qm*;(%Rhc2+{nKp|AkL!4jtORnL7_|6$xIBQu$dhGC}2EnOD;v+F{-x zwmQlY^AXBDK+kpdgU-6ihx!QLZ06fT0LJL4|MYlhZ|#7ce-+EE+fVkl=eQ5;{+k)1 zUPJ8l!nv%H*?kp+Mmh5edS7N-PN};u3niE#RGkFcACHTOf}W@%hr5Q7w^QCW@em`& zh`Cl8cR|kq5G$Q6i`2oaU0-eh_b9u?Qo;NE!S&y<*P`&~jM%T2OE#!Oqahuyyo{A)-f`t8@ z1xvvL)E;z;L?U(k>eJ;OP@%wDxw9ON{(=+FKVV4=T)an}0r3W5jrM%Jb4GG_StO?N zv1f7(W_00Y>|TGB0bowfMOhw9%h&We4?u+m22FezeC%g>nwtzjWo-nK;qyEyI>@3! z`xILKD=B9R97fR?w$)?tnxuXV*wDdw^~$fA)!e>U8epxcbNRh|myO2i5SQ`?6ma5_ zHFk1G!t%sB^5YiYX(8!Fiu01bw`Y;|;VL5dMJn*@X6-wdSIFxfC_T^;DT`Jl6Tzs= zpzcCUxjWvofJt~nmaBCypPe())^CCB4|T&MIYfMQtk(7~(*_)u4VcrFfj0+?aYYjP z0p2(dSv^GYpq)RwDK>@AqGK6kmhKYMxgJ`Kq4mFKg#-4QJ0c&ZJHMH?)jiHJ9>eON zCmg+`Tag?*#{%nOb&tMLIjT(VsR8gbk5C$@dEadYGUe^Sz#1wRyCa@fV(G}P9$g1Y z!QM@1Y<1eeoU|Q!wqz=yd-S!#gcnZ3!97Up!PcIc2p2Z}qT&Mvo_&I}F&oU3IlG|k zh$zv?s!bu+tpVe4kJ+7v{IK1IAkD)-fiT!H{O>CWkgq+1k&!V_4p<=hwF49qq6_5I zMnoaJuAWyyj{=T8mgGYW5NeeB7{SjL!cuE1kJS`bO;ovGC`bKy+LVsQMl+1_Y+?Ip z34nKqw;vK0(&@A`)PykxikFY6d|WLVUKg1#iELJdmnl0?-5#RDKQO6rP-oMtZ;NcW z)lIR7DG6=#`l+qIpJHaU^bVh03APlw2jSv5n$vDSQYTNVnEjM3Tm7yX~Ik2 zIX~A@48716!XxNpFAfOb>Zj5x;ZsW08q-+30W{bM&+ zSwq?lNuCxqiZ;i!Sun!X>IZDnrq(l$9r}XGBMBtE2?iqe0@Z_t48Oln+H791*SvZ()FZ%5hKB-WNHn?o7Qs-bRTu4B## zHy0qnA@;276@_({Iec9?V89vOf;b*9V8-7J(B-mE+QoM>Q^drOf5eKdx2AV`ylXuwj zUy{_YrzV%PsWldn7Nb*FEdbJxH7PNBK~iAPaP3wRB^JIlTj3&Q)zP>dHL?DPObmnG zt`tE|bz?Wj{ngwQ{}}y|UbC3%w<<{QyrH7;8V!9MDQ1%eHN7Ej;Hh;<@UPRm! zDABU~(Y_WVuh;b!?NdYWF#GZ`=t6*LDGB)Z%a+e!q#7C5wU7c)}g~lD3;Ib ztdB_YcZO$+L#B`C46fQl&Lq1Ff&&{Tc8EeAILUgC=GhQD!@NCKJ{#c{q05kew{7xn8!UQ~A1i(+Anl{&U^b!i`=b@3ZBk6IFao z;{+^~X`w!5a_SQZQNd^n8|}=c?Mq=V4mu?-!i6xoZnt5&YSu&0jbZsR9tT1q`BTMU zQ9tRv4JF^HLA3FPXNfT3O-cz&^V|1fwGBih()5e8z_uabx9Z47ViJG~^C*}JW>cqT zW4fOf>Pp14gOG?`o-}tQ+u3dj+`;48uTu%jq0jk0~ip6 z#~Tq5A9l|ys5bGTc|A}nda-Mkd5VIkW8EC8V|L7@jf7 z3(tImuAwj2>n2Gr52m?ACXazImlFKrfTvxH)10L zNM&E7q%*%#`?pKaM0yaxki%~4il8x_+6eV-Y?L8_e`3;F%4s5cBor!x#aX`%3w(cR z)s7zNMEf1~i0UVN$R;C2>ltz}ACH5LDY`6Xx`ykg(&q)zW=hzeq^}+qIYRC#n!lR5 zQAngwX($5XZsuxP&-tAZ0s42N3{r{^ULLvtqi2KUtR?l8){RLWaz79d9@o?XBnlNt z7@kxuz%O6xjdegcWX67gxCXF~2{@aqm8;`#Q(R~8oN(~NbOsWX;AuD|ui2zZ_`KG> z=~tsM9*!UuIho0FLt^FN0U$f)!NeWc~ zQXpN1>(10RPW3Aebf#k!&HXE9?#vCSU}YR@l7aLW#;Umby@O2ozrctbopR9AfH1}S z9BH)%V*s_?h10{NZ?!?_yhR3nT&8&Z!CEn2&fPBe-fuc*TN&!rTgQk}lb(kbqFb4f zI!RGDHOx3+p0Cw2>7A%Q+uiO-hb%7JM{2h!n#Z}igISPo&UGZ0p6K#r*PU!DDu!Ct)LFaJEJ5E5Tr`s;$t85P+ zLWsP;gXlAz%Z{*e{u3871XXrXbBMbzn)(fLXC|9`o{COe>u6}v#842u*Jzw%#xE_E z?q_FQ0dg%HGh2(`0dJKV%2Vwr3UZuvU@Q z3kDIE`DQg2Nv9E3EHHIS4}L*f?Zce#)i_V zMn1sQRGg3BXZcGLzhxw_ZLJ|dc=2|qedT*J+R$COId}Pb-#Iz?fMC3T+(92*Nk*9t zXB%#Q7>?*=K>v+!zQbtzCOUd&UI!lIE9lQ1&cFB`leK2r!{d+B8D?x;$=1)`NU%8; z5Zaaxg*%hWBRuNTDeKMi;kG2or2-{x_TVvXb<6D$>@)a6e z7p*q(TCxKye^iFqF{#Aq!_R<;JC<~Y9OP`R*v3K#q~BZb2h5KMFI6VSnAFsCs^vH< zmJlC99bvZ50;rOsU%zp8^tvfiwm!)8;5|qdyb5T2RX5pjsnlbT_>~+p;-uW6*90X< z{JOq7F>|gkIk2o-2W{-eiermCemU7%@h(Rq-dP(acd{}z7L%;LdHt23Zz zv-6Sc-?KZD`f}aS^P%kh>m;DbsMse!?>BwFvzcGrxNvKy^0DM3316H=vmF`K zm7we=o){W;>dJu6&y1VdLyMPkjil4u5A8|lu&u%MdILwEXg$pKmm_8IrwAShK?Ym6 z>YrKRf-$(F%a6_0S|isGi2l_oj3fsDZ`u0e!Ym-Tsd4E=^N(V3TBFyaJik`4c&NnH ztu__yu1Zce3os;~-$ys>p)!fPDyySV1D=Z^ZsznQD80OPv(QiI*H7-FDx11!V_5Qh z69ln?*=F3xCh2h&&71PH)i^GLFm5UZPtGxFqz6LS8F!7T&N$fBW*0QMp`2q?ag&HR zNF|Zc8O?dksgw+SyY{S6yJ19_oX|e3XC>(_i=(q;9oCt80W;^XekM)#H;t|k`0jM^ ztbAdVu%xiHQPMJ$kOpYIO5n$#x;V?pkx8MaJoI)x&u5iJi$I#DoOrTbzO~4yNp2_u z)XWS%{q+Pw_}({Nh986%6g+L&A9$2li>;%`d)vh=|Zn!-@yB+0+EMXHd zM6KcXNoX`l`0Puyk(F0|SVuNpV*VjvLoKjqPj6A&o0~0gq8Pp_7CQv4fe~RxW0-03 zJD$UA=DA;DuIz0X1ZiAOHx`wrL|5REHNVL(9!d(7_hT%*v}~e@_(Pw)v!y(e%?YL3 zbmHOQvJwcACmC6YBq56` z;dc)0`+#7bn*dtHhswFz7CCewfUM0R^Hfwl+VOsz`-*OkQsCyBQ+NSuFl!porML+= zI&IJhuX);f9iHq>rxF|0%f5_w#o*jP`=NDBVI2%#?boMRu|`o8MK%jcg6=a?L>v=4V%ACYpCE2){SqeBY#lLGYgO! zkgyAsBm9;94y;t&7AV&yvy!K))v~h8j9h2PtP{*liY)se_Ph?yMUcsqc?RNGOaVJfBQ*l&R!OdrK`6_^c3@v_uwo0 ziOM`fu72*xu^&`@$k?gdc&;S0ZrR_>&cXkdBvKfs+bvuoA<>F&cZ^Br(FnpHph<2A zbFb@iO>Tw8g`2jJBU%fvTt&13_=YJZ$Ai~&rwZcEFiN^Zm7ZWm>;$N`7KO5Mqac5z1p!R(>A2W`B z0}&E-ET!@08M6F9w-YqgZllJ~Hf$rMCPp+&h_xIokPR`m6AP$tF2griW9r3T;#0|UHd47lyhRZ$l+9s?H_p4ghtCU zp{Vm})NT6mTUaX`q~)x_ttU$V^Vpti1)Rvui*AL5`YPN!^Q3(_&Q0&eAD6yUN~7cO zk}kF*Z?}%QP`hk6=Q*`OD}O1ga}Q&zQZ~}p55z445i*cnL&!9_u~5A5URtOEn+VcR zHdi|a@GLDE*(O=}8iXJv8w{`Z=*!igVNN!WKWd45t<^Sk5HmH|Le}?V{SbSUDPuG} zzQV}FMemtOlQVyFb4a<^l(yJhT!On?los6&yQvh|fgEdh$4&o4AASBt-SQ#lrQ#q6 z#$2@j6k&oP|A?A;;IFGRHcAXsuVXxaBfN#!Dncch6Q7yJi^uUKTlrfhEUYP7azCH9 zaZ^D9mS^HIg(HEdQ)Vw~6)xqs5gqqc=WWaF4#5UW?*{Fd%TL)|(|cIZuv=78EQ<~? zn34i!Ci-5=*WlC*Q}uvns(}E{8V$YugIL^w4 z*cuxEIrjbY+g2Pz9&2=_RBm^cmuz=K&Vri5hV-Tge*%stvx-$_^;#5O+L$w$mkTFf zYvrfeFmB&Y+nOqk8!vFIawiRH>o>#1M`BV|Nc`dt-%cXJet%?guu@GZz5vJ+OG@4> zn_*a5I2>;Ipwet`3Lx6_%w#oMzcHsS#-oMfMA&_q46zLP^Fp;QZ=2h+5W3eiyz zMuOc@#2rfVOA6Cn>t*h{S0^0@hTNkImpmnANz~L8?eq1tum<&IPNGj&$OyC%kknuo zV9x?c-I(p5o^noFS4W?JQNNkD86v+Kj4#0y^inM8m^IJ4z?TniF@P(GZM##>ugQqh z3a2s&3q>N}iyq@}i@)ijggvq6j7+Atd;qU7N=L&%XQu1ZmMtV=L6V$BH?5dMVOL4z z*xL_i`+n*1VckXh2Y@JGKN3^>_7Wlv3M+;G>RU+YaIA+W*SEZEY!|WOB!&cT%aIhX zel{27}Ty zJV$7GW{)q5r-M2?z|+LY_H7_Kzw_a^i9bg3|0VSWUeP1fn)Z%|8Cn#2h!eah76K*_ z$)%GHBGgU=4cPuC$*nj9APgs0S;w^yylq2e2a_{_WH16H``1V#z*FuYQLgQIiH0>v z;h}Kc_vgOKaPfR}-?Ey!(^egZ#CV=~881iYnF}G|J-d^e(dywI3agK*omjOUrrrW& zTI^s4QD_bQF91n0Qzv;#e?gk?nVm0$Z!wrVDNIi@-mV>u|J?7~ZJriTMg3e&=M67W zK5Y^Q=br=g%oAQNG=<+5_!c#bBI>UQbF#$YG0hKml1>S6-Co@p%GEh?*vt6S`?w?j zGfC{^NvV1yft66a>vQmh@ayDg zXtpy;=A{{dYV|vN=2Lf^6zNSI&)AXnUKV*udr|1oxuB1N zLMjGfVdcjYy?`QU!d^AD8VZMYFQ*@4vv-40LP(Xy6}>?d*`KLkjJwT|%43xGHv$?r zu)MhUL#Un?9?!&PY4pZsqT^XdMi&m3Hd%qF6rO?pIrT?PK5rRd#++n=vj~TuOCQrh!e4~p z*9AFNi7zCEGY3#rgfRi=eG%gM{TXEs$iDn=f-r#*a=MuOzWRkr;9&G%RJp=9MYvW@ zL}1}>DZ04_YfOXmb~qgUS=t4g5e|5fPtC|+p$8eR$}}q*MyjV5$l%&9Z@1qW2%|>w z7JM9A>sHCf5#c&5265p=nKdbAK9#Jm$Mq>>3 zI>?I|Z9xtpt@tGoE`WhfOU#J8O(5gIbQM4b$1&^Ano$&x?HJvd};@qvZ`OOu)=D@59m4 zKC$+(X6!cGZ!AXF@vb~hB1OctNTd5LfUn)l=P(fM;r=tqzI_iHrRs#;X6rcaQQ-Jz zb|Bgw7xj;kW%`ce$ALE@W~Tz>vb12dDuIqrt_#Snr&3Zy{G%m<$F4Qr!L9d-v{Z&)=5Tii}qhQu)+`u_;ek(J0ms0l4pPM5}A2UpR z2-VkaBHcay0^*#A!;SQ@zv0S~U?U(v#Jdy^U_cR6Ne1K$WVyMC+58)7dC=BbnW^^n zWg9DSISb_Y5(Y1Xjff)xb^{n-1Rhx-oB>nSyQ_`BpofS42vXqhlz>dQ+G3&urb}h7 zP>{`j_Zi5s!Atf+ZUj9r2O}}IskP&)C|W9y%BTN8IAEjCp;JhPCP@3=Zt5a&m=}qT z$YpCh=*VKTo@O4<)#KcTUJS8zY# z*N4uPOH{Aj6jQ>}^7!!?+m6f`|C7qo0+UEtlc(2>+AH^~YlJ!*?J|=ydo&}S82y>v zEv?$wH|b2%KYVPEpaf6%G{0|E`qMCv^=@rUeIV6AjSzA0Ke|VNCkidX@2`SFq*?0s z^UGOMKarH>l(rJk46=JFF3{!dMI!Y42LOVCQY%b%&wFFVWxSr-;mqw0rH|j!7yIqFO|P340kZ|oCdMvz{X2upSPtFB zQ+oGC(Ll?%ZL9KQ|JEBL*1SIj*}}{w1h9ETE$pANSj53^dmNq1#ZQMKGZ9ywH{(3& zo5nJUK8l)M-HKxn=i@8QkWeI>4wG0;m9kKG)(8Z8&yp~Dgpy$LM{(%SM(#R`Sd@jG z=k9O7`N7Y(xgp0!ks7GuS#x1=&>Yl>$BV1>pNqwd;qLc8++?36UZu=bSU8a6U(E)_ z>nT;>mPt}rb+_Fhm@_J|N1VKD0V&maRKtJo4r{{LyXM&j(B&!)i>0K1 zWuMxmWdz=IB}nrY52#XBGWqB?SHh-8j=l<;f$)CKfr~b{8G*x+tm+AZ&bc(&oC}EZ zSbTTWgE*dzRBf4vLqOqG7UoaTgLk%w6OTq?684IAh=3x&5qAI^SrVOlKo~#-YRb<7 z<}K#LM$k5c!>;l`x=l%5sjY}kR#;((7`{dqCy*W=U&S5r0$b%6;a>PwR8XM6&s&Q< zNXL?pf_Uh=e5%;=^x$r=q?=})Wy{0J3l_c({ZrkfMXZ z@xI7&gEz9&W9sYxT{@HeziTnb76 z=h-fl%N3!xbiD28>FiMFce0#fK)hqWiqG@K(0f9@-y^X5>gPZt(K`W>96^aVc1i-c ztjzU7x6_}-n!BmQqh!NI43|+OEMy);Imr+8b)5NF;-Ia4KX&61y`bMDZgqU#Fn~s4 zCC6XMVe-up`l7(ABctpS_1v+L3_x5FnlpIvx1Ys=2^;>lEfZo;Y@*xJaDFtj)Q=?U zW=n8me~C(uB)pt5R4gSs2ho;^peXu}L;9k8StTJ{i@;V&D8qdx+ED$L(^;7Oew4=O zVka=3@%V)L?%0jHfeMHcD3u5))ROhJlCuT%n;7ybP7qi3=W&W_Z*<${tNi2}>aeZI zxYApaz#Hns6&+0xT8Z!9#v^YNH>yVLuIZXwV&6f|%2m-(z%PTWv5*`SMaM}3)G&j7 z|B5>jNbhC0mS0q`#geJsC3e+^*8+$nHM*PZ=;5#;hZ}#As~U|pTCyYrCZC>!{CKaE zR;|-gt7$YeCCA2;mRx~r4s_N3;_?l*hd6v><`58twt~WF|6S3rwZ3o#SeQKysll6rR~Cl|kk;tMs_H2C6N{ajatv$(Snt_+RsjR%D|BMJ)`_ z{QRRn!T_RzNX;jqQCm$sBE1`(zdLq+)8i#pp7xP){E#7Tm~^t@d)2q9r5B*zdUAb zUhia=3FJt@yNt0sgHnZQz-rBBMH;yGi&|kP-f^#onk+E|bBudZ?U8HND*ni-7V_&8 zuA?2lxIPCC>K4xt`nFY_8S_)KKD-8}IwJ#)W!ZuV=!xcJKmk5%jr<$Vaf%Pzjo$bE6jJ()TGI#W(6!}4qhTIezRrb$7vS!Y z5--Vl3KrW(ls0udcV9(or{eyWt<7+lu5nd>&UyKe6eAF+as=u)gFIRgsDM!<$$mx1 zMjf{?KUu0ls#u-?JqNqOwRhWIba8#77iGcTiaPtym`;`*DO>a=j;d#d$=?{#cb|10 z7z##$@%FFQ8i~O`-EOQQ3-m5-kl385kF>f1F2i;KIt2kU@a|`j?6+*hk1Qg>h1`Yw zp9}NxB-4z^FI2uj=jUU)spB7+rGJ%S82~w#(Cl)2KigB6ew(lHpIrY#>>fpuxcfpF z$I_!+t~_COWl-{>=Mmbp-RnlF`(-dkS_u0MIovjnxiG?XfA-AkW}6w#g@U>qxeRM% z*)_65=R_Tm+Eh!>Q+>fp&c>!i;1>X_f#0-73lVTnlB@2A29|QLI=h1pU-AC?z)c+@ zlVlBL(7D*s)QxsA^3ECNA zPe!RCDr#onJHh{#p~RGTb<0_w(5wMfBa(hK?Iom$p^<51`E-M6&K#N!T#+f!w2XZ? z^=&RQ`4m-Bas&Km-7O zDVXI5;l-LL0@x3njc^owIaUcW=RxFw%+)8;DVk6{w; z0GDe*^4Kh8f1S(-c7*b_JAxztLvq>hD3&+J%0LCWnLscmufe>6DBP=AO*|%SP(U!= zJqd^1g<=Jn>1>SOZq1s{k9f@NfYeh5ggN@=YPDE#^+JPO}0kNhGlM9U+hyaEVIw#kZgC&g>xH%9Bee0xEC;- z013fcD0Z1}ByVtmc&F^TZu9WH&9c}&6~zB)1Ye!e=v&MU@3kcX24y}%7MwV@dF@{J z_RfWj%U)~MQU`}xxP6vaY356OAO$HPLMoi8#O}i`bI!URWxa}(Nb4my-7`JZ7QHXeTneXIC~VA4=HTL4 zfx_<%tv`g)(|7XaCKB2;uV23ayuCam9Kg$YUKShxF9b4hrs>Crz!BU-tEessMf- z8G%W-&Dg?;6sma$v&gP(OKz49#X*XL@61vDjB}YB!H$Oz_pbu^;I?XGQ!JVJl&F1m zsY&89PGu`?OaXsty*|bY4-;`m&0P8_V*RCvXIvHg$8poz?Ih~z3yzNasVgfbfp(Zd zycfWrd%4&6G~bESxR34`5ko|3yU}~k(fzwvSX+nD`8U7G6ysoY;tggeCBI(Vy(^oKR( zcNTz;W#`s+r~7Md!>4y?Dex$%&a=2!aFQsd41?@9gTNIC#IPP|DfAb3ThgFxiaIq} zIXa_1qFaH|I(!HSl$gb$FJs=nMNbia%uHHq7+g%(-0Q#Gd>AepL}A--2?z-EwqK>U zJHR(AE|Ai(3q_S7zz5H>{S0HTEfxNeKYWOua^63LAiSQ>QfbJf&e|VL20t6JTRD&K zsvvWv>If&eXIXJ}Qh5s?gBA-U!Nyzh%lmtxzkLtQGgh#Zw%55t(xqyZ-$D)#d6(za zr)ZIqjk7@+owCE_0vj;49RQO;`oDQh;9(zgO1N1}U3-JT(r&BGfc9WpSafIzZ{?M` zGi(F`w+lv|Z%{@)+$=(RH7m^79|t29i=!=SqbbUquisa8PRQVc0o}GxwTeNlc9!ke zsnrp9^gUl^1zjYKov2cY+Qj9av!c-drwkfQd;a|&0rMy z_5mRLDMyGFA5>0o0>_P{aZh_L9=qavUg2yMLuE}Xb+W}5h!&i8+#E#@i4 zR2MYj`f-35P0_*F^f>I$F(RVw+@}7Y@$rW1`rJX`r*mOZ5^x2Bn zAPX^cY(G4NVp%1>vX~f;)NW;@nHvMrO|`$kE>!N4D?!iVUH+&ymt2yRF?3NM&j(wo zxK3Cx^gKAPur1z(E+a)Hw4TCF#7q|fbZ%(NmpkhRLw6FlgEm-Um*2ox0ZWFnHWzeg zN%A%xwGydXRk_Kuz4(QLlT9{HS}?3QNM_L8C#3JxhNQEi%}IqhqhT=aqdxpU4U9sg zjh^&*HF6UQj|OHii0{*L@11+g*cNlu2>vc@0kHOp|A91$_E^OB7>vwl2Q@z2ooaFQ zBH%Q|PPw-Gej-ciff`IEigp9rqhCyGg}Z%@j1UWVRGsg3UZGmbvd&@Rzl?U-rT zUJM=jSh6g)dp)6fZH|BMYK#6sg##AsH{K^DUo#%t$`K?gHzYqCYXXAbvb z(?%J50h$Z_Ocob7Uf7msiHRo*2zK%-N+%}1Rbcf?4AV~UT^!Fmia1wz33(BIZOGzh zz;rqCJVZa*jBH~NtAzgZ%}3~-W|690Cayqj!p>sYu{4)&LUgOpL8I5JdqbA^v4+mJ z(5J7B@OGNO$EMb|QD{}E?4!mRaW>>rGggp&Sjcqq0WLi_ODjB-)4R5G0I_IxLMBw# zrz1KGMhLYh!RU)bj~`+s?|=C@8pq;s8hU{jO=vdQzP|9YeXPXny)ljVwlTw4G zhK{1IdHG&x-65iEBP(ZlkL3%t_nD_4IXt3{6eeT`B*7I5!(;u1>$WMeQ)ajSM+=X~ z9?ScZaSdO3PJ`?)l4%yi%-!lQrm|Hgzp}a+oj8N)zn|w>r&x{AYKLxi4?^5mttMqW z+;~XGV(3Xs$0{od?JUGoi|Hb!*{8*%{&?ppAr9NLjbZdc{_l}FzJ@S&k~)Dna6k@! z>dNw<;e%SCE|BknC$ejLiq{3$AnxLH>}pzK1OJ<)u637=Bq1NvnDg+;sgTp zjpya7@yc8J7oJ{~osMxd)mI;y(qLUeDYANq9E_EzQW4daGuSZ0^XeR{p9qcc2*p_y z_Z6*cD{P2j%J+E>h1q^?2%Qq&?;SH+_E&-vA{RGYn^tnTlu zE%#aek$S8~+E7MmHnf8{`#dMab?kC>R;)GsBE$zHh_;_7`pJ-aR3XGJ=8OHP?`PAH zo&q25e(eb<;{kWpl5Qcw{}MX(b1yU*v~>I;a>sf%)b=#)dvz)XX%!EC$^fdl1K~co z?E&9qhXICmahv#f|K`O~&9gHH!^IGUSXb&X6sZA&&M0_WkJ!5va+^HgRoe%tBOu&^ z^jWwJ3~~6t%vT(hhd@|QdU)D%_I8=4PcL^vxvPO>b&$Gf2I+C@jlPBYpV|IhQ~-sB zI$(>0fTi>avYu77X|qkOSc_hr{iWT1sa0k3Fm5aS%NzPG9}|jDdPa zf|eK0dZzeKnL#d3DgzXHLW={gh`)izLy7Q8V%W`Lb_#(w!p@O-f4Cq^r|{1ko& zp5(Y6|6Ytj#4S}mtEj!JCX-11`X4QwV5aAW`ha1g{SMy{9rrz)48F?S>wu2w5Y3nV zETy>Yqx;*@QaCYX@4QlrHSWP#Tb1KQN4elRm)zf*If=0J7~m@X{LnD$Ok<{JSdxWX zZ13R)6;R)O1Q{*%l%=B5*Dsjl-kif<S#e&3E4+LDi~q zXb;4}dHdos`_ow{g6i1b_#dS|dONC_jmp1>MA%>j=hfj<`22yKNg`OPWAjUQ_ZRA^ zwM7gT`H(Ap+SI*X=?DLfkPQlYnXB9?OoJ{y(qdFNaV%!g&2oOwGZ!-cR^4HAx7fc2 zFQ)vJse5G0SQ~pd8oR2hoz&ms=h)l1eviY<;B-kZD|e#qh72CjFvvmsam*HUaS}9g_qHzB8N7PI*UE&9?aoI5 zUYYpp1^@BkSQ+7IJwI|$(X9)~0}D_0R6@yUon}pe6!$i*Z8c^FvfB{aUYA8vNU{7^m*516zuH>Ygg84~`%Q!8T(W%op zYY5eRgYJM6oCk0B%c!a=A!e01Pb zjzFFmByiegPBr6Aa)#eGFCQmcqseMIXc9j(kXU@SWW#LH$mq$=%|>C}bhh=e3WyjQ zL2$EOr$mwolTPruRgw9#qTD!~O*lMm5+io`5;<%TBlZed{w16DV{f^UWpkr)Rd9*l zdw9ZjQ)Cxf@}i+SErWf%wezl;E&Rny9DGPIles_#UZL$KgUs1(uMOzYu2Gq=r>yIN zr39qfo_sUsM=kSwuaO8^j($NYs*AoDAHmC5Xuokq(rOW|q~?%egjvEgzU>iI|MRWB zFT<8M?)?H)NJDDBS2_zx%&F<_QC7jNFTxDg;3T3IYE`+1(V0j1+Q0M?%Tr&bm0u0I z>$C4x#SFx=?4GsuU<%|Z0_rNvH#?rmyWF04K<8l9a|?lbokZgxbIEV>S8lCI1 zR^@WHh=berPg0TP%OMN26C*%u1;*%~+_tnW0Yu;tpP$^}1k?Qs>Bi&HH8etL-b=(= zXzLzjx4Y~e)KypNV=r!EVo<+XZywBHLqg=RvN0}eY;0y=GuyH@WAA-s{yiG-^3zKD zBn$8F`^3riLJN62Z)+t^y8U!Ey_`}5fCRybYD;8`HdUf`?C>Be08iJq7%k~yp4a}6 z5yS-LnEfb5R8-GS4x1K`t<&@ z1Tr1hzqb6Fohpms)NSfJ=6* zPhEB;lh6N+^?Gz9IxTJ_9dKjnx>$giR6+lo&OS5c`>=a{B&1T5!(Lpsz=DRAGoM)h zJ;H+pyz}XnU>d;ud7k2no&T+Ox;9cbLf-~dZN9xE01OG2lOzvv`-3d#kHW4)1`T6- zqQX#{Cq5%c+9Flmbx?++_nJ4rU$IFC(jJ`Hzw)3xCTv>_8c=M0XPPHU(7lE;m@h0q z-q{T;hLd9?;y9L_c&>nSM{Rlgle;4l1sn;~_hn2^%(3l?L5@Lu z54a^Le*KW(5x1AZ?Nw6)O#O5%uMOs+RZ+Q6vf8)6SpR!_OUma@z?0d6auh)2#7#fn znJ<|YP}9f?hL&mDbjXupwP$QEeJzyT7>&kckB}cM@OA1Sa!z*koVa(GC#k_LR16@Q zNWd2Gh|aw&x&i0=lUAM8WkXhTGOWD<{0+IlLkTNVpNB)ay(FzJ(Dc@W56OeNT|H6= ze5%Mu`=$P=LmD#v_7?*tnox_y;}tABo2atqECYU!6l-d{Bq-MQ@G2bJQ>ISv)mC_B z28#2Jhv06h*$%;2JMD9ygR$7$PWNBwT~aYm58AAPVfgG7SK#7HX2E~R$weF{5bHwn zjLf-8TfeRx$G$qRLTuF_3XWlVevtue6*2j!A=F5~kN+yR)Tv_ik82WG1?0?Tm)qb` zA$Cb12R`cM;58Ry49Hcqt*dkY)n+K#Ho2{rG%*-kDV1Wme2`Vv%wN(RUrRISCW9>~ zskt}`IH`Mz>v(5bA$_}TT`7roURibERRRX%^nKg2iWXmMfd&^}X_ycr>87taI_45dAfIv}8dYsC@;WwOma-nmpP3Z!S z5S?HQX6rbt?Usy=e&tIXN>tAqXNl74KXXllSmGE{8Q*${(OP?GArArm?q)9_UXzqI znJ=6u9Q)3gB&!994e!7T*0-~@Mfcb8y+!6kUG!98ej0t9yp?(WXu?z)rb z{dRZ$&2@EGmvvY5UFX!<`yp-c*b<2FA$)_+#RLFX)S$F!J;tNpD>>64IQz@x5<4 zW}>RGUdC_ttzGGNkRv^xvymGi43wHO+cda7Cq+BOU_vz_Z63&rl)>nMLAKmO=yb&p zsA9hC?6hiy;K-d_bbOnmnaume*Gihd zd$_G!j$VHY82Sf6^qjBLdV$)+@LJXA(VNF)W&6xs5?sPVT?oBFQn5>Tl?%+}IuIN8 z&&VljS1U_y+l;9Y)VZ71u8*G>wpwJn&7UsmJ8aA$Tq)kU!K=r{xUfDN9Ao_&JpdjJ z&6-lRcXL5*iSXsGr`ur8Rq3$KrPBi-W^fq1TCwwK1027hM);h?GkO*OGLp1??PR-R ziZYwNOFV8cpO8WFJIr~g3^I_k<~8_Zs!avl95QNonns7t!GXsrg34DC z$mH-Afo`@$j(hJ))eD+7=mD^#wx;laf8SB6-3vC%vTc}`P|?B$1GrIcRN#|4QTuQ@ zDT>hL(ODwmqe3I8C7jF&UCF@|={#)2Jq_!l7 zuu#%J>S76fM_C0+!}w5~b(k%A*#RXjdYxzsI4)8r0@o>Krcz_;_k^AJjqd2G}rX^H2K-AI91Py}(eJ;kj0H^75uK7{o z)EX`zwu$?xIE$gH4MhJ3U3*{?vzv6M?doR`)xO|`pA^EmY8l>OqKwI(5L=jQfS?p< z?eQg}!%UJ{#b{Z%6ty5J4J(TV`XrhF6!E9Z03_aE%$KZW^9(0vXC?*#RTM<8e1Id@ z-;eqfy)B3W(oitggKv_FepY`0W&Ln{kyx$PTzz)_+wf66L3ILt^BsPwx6MS6^Vpvjq? zxKbfDBauh!lTwbSd<2+cg7oWvyBXZ)0Pg4s934;A>nTJ5>mt$Bvi?phq&ABrmhvQu zg<1EXj6ab@RrbR_cuHernrE#!Rb=p|j#Lb}3Rd;=nV2ib!hN$3U=vX=*ClqnSEwiR z*bZN8j>7lsucZI9)g>{TWc+FPo=ou3Ezsz7X4NuGyKvFR2gfg^lf=5v($@Hn7_}% z{|IpX>!L4AVP)$N9ImD%%sb{iPPBkS!$9{mz+NlWJ;{bqy&@(rr^)?^s@A!EVAX93 z3?>zn1e2aqiymtxvX>p+{~FrA=dy4G;z^p!7xYWR3CN%cOj<3oa4zQ)=$?3alA?8G zX7iL)M7%O4cOE5F%h^ww3jM(sz5i1`Y&Y`hYXYaT{s%pe{0V|;Lzv=Shxlbc9&VK>!X>MgC-fZ-58j-P|BsIPTs zqKO?sTKlm@Q!}w*R`!@e`Yr9ry+trjiX!eWbv(`VnQWTj$Fsr&ebeFnNiKNW217!o zgvZwD>*J>9C*dtk{<#(XTzl6?f9j|he!xa`jM+w~i&@s?WeST1^|zI6L_#a_HI8OM z_@9eHAOmEY6r7wEz3RZ^TTE`Nde5ha(%u-B1(mY&Dib2f$8ik$`=EX6H|s}qQK7Nl zbr3EmV}ch|aw@NeaSNdz=D&fk?nyOSX@?S#H{phD9f7 zK3?udT1c$&YuR84eev}<{wt8G{bSE{R%uQ7)#=UcYn1+ zN`IgHEc`j(rz7qVP*T`c!VXKvx1{=`0rRF4;<fZxCZhu-NJrU3a6rO%D+-u{*aQqZ#`3(A=6lC3n0&mE$Z`Y{7 z`{T|5FjLu)q4?XOYbCHcVA&7yBXyPs$;+Ki@4RbU+0uP>{{av{kTPLuX9zP=>+6Q| z`~w7P#|R?&{W~z3Ir|7Z>`)r54G`dQjIz#Wob9TIQ3k$Ka<%^8SL@z`<$2GT`Y&3sVWX_E;TR2hj>vyFd^Xm%7@dJQbeghPN z!~4~)>m2=gnW6C}3V3AKCq+DAJpbqZt&8&-&U-KBl)(_V<1lH+WxIP4qT4sM=|{B6 zg)5NF_)D0eBQ%RON~xkPdF|b#h4j}OKxW%A7)C%U%Q=p#mv2Spm4_5*(dy`VVGa^L z9q0(}VODCkbaS3%xsV(m`#B!5)hDgy@qLf(Bxr!>ma&|hJem^J{HZCVV-5GZQ04gif?VcL!ckSO9WviUDuH27ay)jg_@}C z$(XxDk-P`~kprFJ*x1+ZRIzD37DBEQ*-!K$(=wmggq-kq5g??obB*?HRTeuBy4TLD z3I;3sf5~5b&femxmuohveevoz8loq_`Z1!h2Babyzj9*s(kh7+ zO`^u6Y=lccnk(-LQpR4R_W_lAYb&V6if4J`V%>)3vyAbfol|c7k>kjD9pZ}%9`Y05 zqG>qZz-;Fnp!srIb)SsPD1FZN5kkXY5r`+<{7%0v+9!x^ZwHV3eeG;)G(`g^zkEBpFd3;RDU_eDpSnq;Ix8Kx;A`*w580jnqm=oi#Bq#y<@QrSozFwH+I}0 zzx&y{fy>3MVvDy;==WZ^D^M$?Iq1`v3K#cYTEMgvgtV_!GXkPwPFQnf0z#k!Oe!}F z-DAs0XEzgWn2panl4KLV2(`7t+KpYOsRf9Ox8=ej@hKsT?*Y)P$X#DO){^zCmJYYe z_&rQDIhjVsyhO|DaW8!n{;+DBjCVMbql>kUKRR&fF@P!;)V2H+g>&YGc^-YeXmH>% zMU>fJnr>r3ZuL=`toU7~nzBDxY-js;^?PdY2B^27AnfhptQq?!K_^U`;2x*7;LzyQ zg2fBHoVK{m2Cmqj8zk~yFn{1j-|;HIG%nVOKg)C7*K%lt;q3dmw|ATBFyrvc4Ip@i zviv#CLSh4DN#sZiM%^>w54U$b=OfMhj(M$hq;XKK}M#2s66sBS9Ei+X5z zM>x(^uDWsZo}TmKtBSpa!}}JWxk{J|?4)&eof$W|urK!xtPH~hHg*es<8$*v};8KvE^6$;-hd>&@moA~s z^86$#k;0I4_F28jylFXeU!6a&E8b2wS~SzdGrqIiZ>SS%X_XBQnchAd{p*qmN+#dt%3H>}ow7V^v;)KN3U2w`A5WI3LDsFC30)HIT^v4Fi~C z0yYx)WjD0Zh(T&3eW(rVlLYAP75=xT$aZ2d|3--10tTX1Zcu)pGvq4?CU(+LfF^zL zM`85euKQF`t;qh30n{LNlAr*Y5I>iXQ>uc&^Yfp&Tr9&6Gp5|1v-1}AY4}S}El3!p zBMR}iBnuV7jkc!=WF2Pyb@l@Q27myaWC7XosU5IZs^+Est0SEZTYGDPU+PZ2RxG$j z{hZN?Ga+nG`W;6)x%H=NkI}kUYoO`u zP0JAaQ^6U=0qj5C{w=~csfW{z!yRcgX7+SAHi;# zu;|^wkH)~ouYW!VX_5zaSV}(APc?B$&?;@`M-`&j;{T&c?hOd&wNP?d{63eGA{(u9 zcPHHIKpm~wl*aLDe^x0we5D&bzlwo zA04RX$SHt+E#AT+^?z*!s0~5p4RTQxO0;4o9G{v`ne{k*zy-EP(*$y`7E>NC+K<%W zhJ_FM_wRTAKjFfU51#wiaHDc~+RI7h$Wr*LX~_ukJPCw7p2UU|I|%ZUI_Ro0)}3Qj z#8pw9x2G4jR#6YdasRCjH9FucL3>9!wyTj@!qH@t!KfKQeHV{lVyXgJU&fv0uq_EY#wggfAXjSMaZaVf`6)x*4WMSXj znv$|8w7cxDtMkwO6Oj(>`1n6@2@jS9liQ1_oW{zNe2!RUTl1>BtXLFj4M4|Pm06u3 ze#s9{*PR9fq*~kC;RR>c=+$l^tv>a)ERFFP<36c#{j3lkg`F`ET64(Dk27)lUl={^y^zv@}(R9*5kNcIzkEi$PalO69CA=0aoZTqI z2d6;^LdEIkNhr^5nq@%QGy^{wY;=e5{kQuDfZ;h|Yn;2$^=ezcP6c|{Rf|H3nZRJ4 zC%+2eDW3|Vw;SNg^W!catd&o@=cSiN%3Cpl2GRu`N4JN^U!?V+3XBsct)iMs;kp*c z5LYI{|I{Q>;PdA14Nu`z_H3V~`b#EzR+^fnU}LbAXJ{N-`8tj|j$MlA&aa7GWOOj~ ze36hNxb*vn7_U1~8|OLS%GUYZmkOEH4_ul@*?nIX|3|XZO;n33WDL7S)S3a6!jd6o zOM)snp9QFDE*Wmz@`fGy!}81hpAG(5K7#hNgkN7b^EWdk$g2MwxGw7b)%ic|H(nZP zdCe4;+Y)(a@z&5PGD%ZN$ZB4y0{b%jzMKyV*FRKg9YDHR$OCOQuA`YPa4WpC#36D| z1hO3K9gW8tT#&DdZ!dFv;ivy+j>d(9XG9rNiQ{rO-1HSf8Tv>_l60RR=4ci_TJdMi zt(3`^WK#cmF&V>q`Zcs}&%`9>&Nt7HH+#}&j~X3D*N@)n{y@03;&OtyyYX@0Dr4I` z?|ZR=m$H<ON_#o#z*mrbJO>gd>C`2{h3IM^T$)d;Y#&*qJB0ZLi4{?N8P7zBUv#j16!Nt{*-&`Q~=|#DB@IQl?v$VKK zxlC}wH=WjI0t>rSgzuk|bfQ7`R-v}7@mVCA;8=o~(Lc>+X=j7w^jWLX~>ZQK5 z+(uEq*E3R=Ll_(4%;UKhBGBD=I%b7DCK|R(O78vq&wWI0*~vZODLiM*7>E%XFn9Ak zVI^JL8&{mGiGTJcY;F)(_Bu$}O9?!GOBs7AjjN+i@goOKklA=-iG6Jl3VViU)xU{n zqEj)H3kD4ScLEQPG&y!74d$D_m#YEOVfE$P$54N(@P9=(c&;59e_f(c@y=@c1p70j z5&UjVj!?NlNUyI|ID?~s4;QqW^kZw*3zDaUlKbozHg=ai;umc-q%8bDL#i@+xxb!d zum=&4gJzW1A0cn#raWf?HOn*?-od;$-PXDA<7a{hvxVb^BThR`yP9Fi2J~>NS@gPV zf?9?@Y&)9c1S4K*1fd}Y`ePSm4s(8mB>B2-?lDlues_#=a$xodU)ue_VrvOk=}zr` z;ux=^Lv_RV9S=#Ywi}1CTg8Y}F0BTYs zUyo#Cqt<={RnKkpPalh!jm2L}_eeTJ7Z%2s4I-s0*dkwT`iEUcSdXU@JNnm7mfq@j z&O#o*9Z7e5>Y9inRMUmS&rO+@0YU#7KVJyrB{-%juI2lN!-=55n)u0op~9TS zw??X`HxedDYU2H<1llZI{Lngo{v{nFDE--6`jOfH*@xjq4is*kokSw@+VT-gFz@n< z)dx2zT>ny^d$&aqhySBvkoSv23XX!j%rYbjNaQBM5ZksbbUb~tH6yCu8bkkKz4F`v zvK>{Z?xz2Bkg93fVmphu%cy)*qN+&z`c#`x#KJL7|C+TJ=Rf({IER1)t%7OT4-hBK ziJ!0+!|N>uk+%}u$J11@l0D#2E;3;+W*`i%N-H`={WOw8g=>BJC*47daguHZXZ;h* z9962!f0O`mZG`u)Z!wa$E3)0pKm0{*MW7%{db3H6nLp)$-Ic%ou5fe4>gOl)+|i{1ciwvhE+ zIi+^Sk4)!8^{>Ble{SCC45;4h=so+zdGtAQ1enawV)W*#dR^Tup#<8A9|kgQ7$(s- zz!0=a%!vNuP~>)s(R=UFO9;#}g|X9Z^)oVHW@z2rb%8EoNV2zP_p+N6qq^Xz0zYgA zONke92=5>EH|y67%iX`p0Kj5~=Iz?C%JzMreaSglbjKSJmQWmNcI)J98kbLvP>6lg zv+oDlmF|I`W=IEK5c_A!K8v$JJ=4tiZJaBTGxee2VuOEl0*(vg!q$%Q((2l?nJGNC z?VUH5#Wi4bcCVuyleFxyI}b;|1PZt;Y+d}=ZJ7KDdf^6`pzDQ{rel*fg?|K~as-8M zIka%?Q`3w;WZ$kE>3zW$V&%zfT4Z8Be4bc1tcH_hRiA$Gg&iFNEJfOdTL$b;3g$9U zfO;_q+T3S8{Ev!irtIz*AQNhD&Mq8dGjjlHMp?>N5EEnOJGNoNi zofJ?5PaufB@PrMvs_nGEoag(uGPyUhjG+NBaST^T=VY@Ee5A4UB~AVFYLzBy7^3u5 zFPH1W4tABWTue;xYd?V;f~=IF66$0^({@C|C;tGD*FPEo$9>~a?)4KGzvBuF{Q=F` zz4ff$aHl18uU%dJ6)L-JFsd*Pv>5Ag@^H75@t9OGgneDVsbWrY(UCM&5crr-swF|< zeGu0%alhY$eW*T@*FYz(v}b9ZmG~EtFInf`8US+^#jgCn9HVt<-->AmrJ_-@t(*i2 z+WA~1QG&yK9ies`soqhLZQ#Brz_%=d!-s6x$04+0v|&P*Ze-&+^22GSbYR&=yAPYuLxC}d+Y{Z@5wUK|d=b)C%5 z4eIMeRWQXmYZ*@>C#{WGyU06mv=9JckpG_&3MDUFshn^nO7A5up6@5mMt!G$R|RR= zM4!~Yos==UX4S>Y8D>RW@y-@7PO+!7HRZfr_ueogpZw(nLvGt!2xObI5!K@NK{=>* zsv-OTOGHxe2d_S#x5u?ghoZS0@EdEYqNlyf=hcc@Z)X=yp=jF=*y^$I;px>HKZBlXXd zdwI1lODUiSFFM4X8N{To$$aUNFGq@ye+kKHErg~O77Q$2dt4tGK;k)aKzw;b0Dx6u z`vI;l2_;gfUD*81qj)0~^%MPDAKJMYw=xI0wu8fA4ms9UOCV zkEyrbnt3XpRoTO7&`uI+D>;6UVR?Nm{YqkCKgP407sj==Lmhj_N~8W!7CoiTZxPg? zZzy#D)q1LGreqPSxV%Kj=L@sBG^KBcNamRN@#Nk(c|4$8I61={IYZO73*iT|Sfaf< z3t83Y+MAo_N|V%GftnE%#@6O@_E(6-m53{u|)r!+q}2|r9< zc*Ngh>~(J$y|EkW7~o?GFl~&;jr37~K zsC0Oy$$qpe->g(_gaHlQ3iY>)MsX2Y>R7m{1D!&y@lam$W$}E0^ia_+D`#uQhuApg zSclTuVb3st#o*&WeQ3lKOjoO=r69P)T!KL=cRKpZqPO7&j!-fs|; zwNyo`mNYob2UT|8LAF8R;2H~NwTT?j$K>@x)%+;9=8qJ~>~!fwG|?<9U(Q8JsjJ8< zOA6z_^Lt<|G32os@}FZ(=%M?oKNU~^9{uC ziw{IpdXb%g!b+1JkpC974f54LM%l6yjleim&0!$u%m0+F_g)}Qb&@zO<(G_sxM|=u zJHB*I4VH*%+wl7?HTcr5L2<2U(_83NGbYdzi%sAyA74=6P>i5yAN^8&LeA+1Wl4JJGEPO{?(R=2 z*PUZPDH=PaCsj8VWu(*x{mYN^eI?>b7A${0TDx`U-aj}EzCjY*{kb4Oe6`0mBI%`f zfYTBo@*2b`8tm5uj?cI9* z-&3s=+0+fp8hVg=RYqR6+`2Dk%Vbsc&hHy$maxJhH9#|_bNud8}#NrD% zNKJ5tt`?RKl}o=~ozs}|Q!Qn!q~Q!+;&On$hrk;&;(oamIhGf+It%MKg12(!2Tt+c z6N_U82*>~>66T7aT9k|b+STJzbU?Om6TXM8{TH8r0IR{hda+v`xqr^`+1h*^n%l)O z{j>7{gI7X?4m6DIh@HpmZ7X2)QPnr@IOI`VVYg93_Eg~N<7v83<2riS9?DQ6m_zSV zms%5{Cv!mN0Ce|(ThWmRgZE+LFbDI!MX&ZBF$wyptcxvCX?PQMXn5@t_OP_RlZ-Nn zE-mG?Ms4wGdw`AtEIyU~L%M3Lq6{Y;XC9EUqnn-qkskt@a9by!opuQe5S*jsfY=xo zTGuWVAmEnNO#=ltbb_&vdF&z%fAIW7zOd%&?Z+C&cdS-m4^A@sq1<$)_6n*4*@C<~ z^1aomCcTmToqsXZmC;-Hxh*ZOuvn(o_tY-9<&O>!lps z(#?opW__eLs!>I_X=0rapXU+NrJM6?z?-=(y|hZ}y1o@f*w57^(0p{+8z z6Pp|4YDZ7w@^=%9CqY*qVqgDuz`sCT8(KN9M(!m)pg8U9<4xJk<#ESd>K)@cAun>B z`uXhES>XK?@?HU~NqNjF!T7XkP?!du`%B<9krN75^!EgqJS_oRb$Q7PS})OdU-v!{ zjd$dF;QmY7@o*pXlwqL#j3oMk=&O}3pI1-6V_cCF%At@?;d zHa%q=Ar@ATZ)_2&d3cam4I6=A+f7tSMMVn(5BzuK+ebr^6}q?CP;=ONZz zodr$_Iu}E4OLg| zaqT@5HFsu=rN5q#vJ;q~eN9xEL0K_l@4R*llC`W|2g`D=ReO%uP7tZM0v1!>_v991 zIp@$24}Os5e#FL`O8hdYNN=K;Cs%ZCwqWkp1q&#u(xdhq%_M+z|EXNy6lMfD$~AY| z>Ap@DxI%ayWz<%~3`mU1c1rgn8045&-_GL^IVjxAt?%7B!0Y!?>y#0sL3c0VlR*xl zFQcukS%!hWoqF{Xto{mf_le`O6FlmIw08y4#&u_mz@U#Tn5?^Y+7tSdo8dq@ z@VgxO!N4u*Qej{%_RZLGW2R)2j?D;DMG!E>Cyde_ClhW(XMW?Js63FfMaP9PuVb#b+`e*a?!J3qV6 zysxoNhK7^MHvs9voixE_`*MifRqG|zsN4fAbMmH*jy^5{b@pc(4E!F+Og!=AeV|Mh zMMZJ`I-4bmfpV57!(Og?SRPw@{{54Et!KWpw)*PJJ*H{g*HWbnww2n0_5yaZeQ8p@ zgDn?#;V#!_oPR~A^mCym5|sER z@O8-ON@P*e{e3-uRN0=0PnF29XCZ=K^q}HO&6nZRdmTal zbfPKq2ZSOp7ie6IQ(eaqxy^h)Ur@aeq@P4fkeB6vk01BI#*&%MvkJeOR_c1NVg2zv z95pHaR8lvY4vUmE3d_HIb+AwIhe7p?^Waru4S%sepdhR^OYuuSm)0NS!Th`Piom+7 zPERuw2>>-A(x6_98NGpG3H{>=O}q$=tU6tf4KfS@uc)|kRB2_EO;|W1ZhK(RQFgL% z32<;t>2+q>cR3>8zc;7_P;gW!9aZ>r>xVo@MRZn?s7KGqYK0!GKy;d3$doUk&_hB% z0jlPFR$u*9hGppCUc_w^Nzw&ah$Kh|t4XYpR5paCTtYTH*#4Xgn5a3FftB9K5})VJL*Dhj#- znQA|<9q0crMF19jTfmV{oX6wwVyhy#`8WkBKD1D$q@Gg5aLsDVd2P}X_{OU>`Yq_6 zEWrkPm+wA&o$SdBvlqKFFt`wM!{s=)Ca+UQGybDvO$$=t)xvbgxcPW#r5_5B9q&cn zbdiXqUlT7lTa#l%D5U}nx>U|DLNoVk9KmSx3I$@yD4p8~8rT}`FleR{RQ&PvnUUUf zhVeZ*ox?IIRx8`OYd|p&Fc@VR|E7JFAkZJu;&=2zNTkGqIGwSu8prwg5Iq#M2pIXH zjh0S{d#lt9{CMKSRF{bAN+&4=QAo4ErjF2xyAj_tw6IC_JPem~f zV@sE+m|>3uhSkYMitqu0#B|<#KpYj2s$~5~ZhPnZj>7B50j>I}e^4;bTYSV!I#;4Q z`77J~&chVIox$s)2cLxHP3cmG-m1XP+fVEM%`l}Th;U?K+91a>-1uvu`xPg+W`v3} zC5A`Y2Dq2LWiaXM6zeoh@6L)Cq=ly%hJgl{iXN($qp6DUSA3LPivtZBCxfoDm#I74#)~=iOtIXZ)&DTn}*kOaLw*_NLQR?ciK0o#E@nbDd!)|r_ zw;sdM>hJ4sCi|WxV4GGBwn+9XccDNv`x(C2X!zk(boN!!j&OytT~$D z(MAxF>x~Nlc_H{SvjGxWz>Y)^FN(zTbHny}n5j_Zvd7|Z*}XEDq{;=xbv@#D?tbks zh-oH)9h}0ozU?B#<4shff*w~>vLl*MgFQda4u3vKTm+a>@O#OJ$X0+V^!3lVSDBY| z@;xj4!NmpXOaVl8LS}C1F~oA)ux**&VEhegj(@**z}SfXDYo{ZG+fewq+80gN%~3R zAQ%_5n>or~#j=^!8V>n}o`}$(-kgXpQo=35!~r58w2bCQikX_eBkg6#kEIxz*!m{j zw4(ys4%|nYl)Nay!&8%1T4#+-1LD^~fw&*M?*%^k&(A<2^F61B$UE*AU#y}r+QNVf z(RahU>Ri?=$HdKXGa`=JbCCKgK%)?@4Jg_YttJ2H0p=u@-7xR^%Mf)eQ7EGPOQwMB zch#^Z3_hVmNn@nLjovoe9DNn-hJ9B%5Tmm9*qStEbnHxl<1s&h0AG=T6-y^tJWtiz zD1(VaRj7xx3a?)m$v2nBBEk#1)i&j!l}Bs+OImR~)q3-t1>h+=Gf2)5^G?|m^b9=2 zsuWs2m}vi~|2Q@Il>cy-ZQI`;`;hy9)1GWeqv81XkKE9dOhnK}>*FBYh&A7kmY)z2 zCMhibMeo>L5Vc!usm>QM7w4Qo8h#XuaedwJ`7-^w6h&F2>>nM}G$8M>zpsh$4MP5b z*t&m&LG7H=3cG_xs~_LWH7L+S7z#oSOLLlR#@OsntVAALsaec%V}W^E^iexuN~1!V zmuYP=zQ7`|lJhCX7|KCQR_k>I^jI0y5TJ5l^nt}6k5ddfZNuHo=Q<(!3`=f;fh!B- z;|e0){m22U7VJ;jm)T;ql)F_vJ>xi~H3~}< z2zCVKv?{Bv1^8cvg39fDI-E!bjrL7)pf$sXYZ{zQuoS`OZ6ereOzZjlz_WdxL-JR# z4rcUYVvo>h*z1Yva}Phu3fIV{D-0CR{<Hajaux}60nc$ z5XE9$+AawA+SY)_g`}qP3vaGXdW>PzUzL8Dd)Ow^tnf1^22Aq~cb$&1C5JcWF0dQ2 z7(jMrx@JD!Y`hDuQExmalp!e}C|yLO^4zj;{eVEw`UM=~`)KJQ9`_vPi_st3F~y(r ztj}I;-Yp%>{(Xb1af4t>WjYt!+h^QmoD!vwSnva-@BVjBH^ zoo}Fg)6qAP&YY#lHQy9wV}|qHG_&{C2MxNu+!YlUMI5Y9VR6N{g?~Ku5ndf1aif|?#77^!4aDXV`2*sAnT5y7cDI(2^fk1efD{Ig4EB78bBcmO z$q&gxhEOoHVmbNR0bY7dTIK6z3)!|w@(Z(EKW}506zo?4>gBu?t`bGSDuv%Q>#Dq% z8IyQ^C3(yPOwYSJEjKYUc+)eYz?7l_%tPS|X}ZpWO!Y6s z?6H6p(+g8WV#Q3ah429Hg6XLz)F#FbklyrntuVuHEI;Kn^|R%ylD+2lP(2{kPH zd%ipg`-tt`u82$9F6evP3W7UWVSVLl(GO10G{ zJlX&Dq`Y6Id}sKX?KX@N#>FK6P5(rB4Be>dgJ6A=?s^0&+0EXuC;9;iW31Q1OAPo* zxoJ8#QXBpKNj@SoL0i)h!eB^MSI0I*!oc?fyucX1s@(aXL3aQQ($mDBFpsG@(TD)F zxy_yr%K&PG7B$XujPKf?c6Tz-Qq3>~0Fj4;?wXp)*s59NEmSpk5*0HTaRQJicMYkc zv^E>n_=+2)Y?e`jaksln-mq8@->EgIm=99}d6E{RY2RV&K%(Z9#?wqjH8J)GQ~CpJ zr#!kPQR!azZSIu_)AdMcFWU|S-AxML$9flKtD0|0xk&3{Bsn_JXzfKIn;| zjMtxxeo`#sU}i`ytvZZWT$Db%PG3n3@&+WZ*r>iOclW!}dy5}@3!B3&M~iZ)oE#v@v69qZ;{8IHJv1jV>FwK3CEDsh*W02ezZuKF zK5ljeV^Aw^BBzAzCq*Qe>^&%r6Zo$GdT8Cb(lKMV9x2<8&O~e~#7I@ARl>_D9KCz@ zhclL|H}5DAOt4qWDMPrktg*5j5QNCXg_P0HrWULVQn7xd2wp?hyg3&8(cvFq*lMer|@rgu@e4@NRJ;bF%YWT$23glAI+z^ zOen;2OS0MbgR^(^ThV8_VZ-^F{oXG3?Dl3$4|UDG`{!%YJM?voJ{(6Dzjj;ZvfuJi ziD6g`6YTU)I{9Z@LhahR8_O$J@kau77_ppWx*Xzb3nSg1A9U1jhxMu@px@`#ELIGD4#F>rB2t5oY`E-A9r+S1kJDn0hR<~t2t z?7$}6yBLdpK`MoHtBv=q@DvN|_M4@04!#_{H(Z!miNV#7v6|!X_)glre65zbt%h_t zOOZjPnIaHoMqJb|H0!?7HMzOthc^U%D>XjL182q3U9}J1O-R&?(XcceEalYBwdb>K z_SuXDs;v|-E05lo8bQGGmH=}=d}Vg>QAv$Glm4lGLmBBeg~HU~)Kj^p>{>b%$=juG zPQT6fVkfVzWN~{yRN6+Y?hy6z$%d{Onyf2Zf$7AwES)MRT~jgrV3irBk;SO0H5Fey zi^=hp%%t|>j1zi3tax;2aajb6sb@>ggpBnm>MwYxfYq16g>-U(*jUKG@yPHC=cTo? zgJ6)?Jb~UJKN7o}(}aYXevX9W$rU!GF5;!Z-SN|x#S5RvngkQ_Q=C0P*!=&V6@kL> efbV;6FnPmQQ=rCY==Z__02v8I@k&wSp#KMrc*#lt From 294422d8646b4bcc3f7c18840af45972d33a1546 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Sep 2025 10:10:19 -0700 Subject: [PATCH 2499/2686] Run update.sh --- swift/README.md | 20 ++++++++++---------- zookeeper/README.md | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/swift/README.md b/swift/README.md index ec342c2fbd54..e3f0c0aac363 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.2`, `6.1`, `6.1.2-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/24.04/Dockerfile) +- [`6.1.3`, `6.1`, `6.1.3-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/Dockerfile) -- [`6.1.2-slim`, `6.1-slim`, `6.1.2-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/24.04/slim/Dockerfile) +- [`6.1.3-slim`, `6.1-slim`, `6.1.3-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/slim/Dockerfile) -- [`6.1.2-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/22.04/Dockerfile) +- [`6.1.3-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/Dockerfile) -- [`6.1.2-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/ubuntu/22.04/slim/Dockerfile) +- [`6.1.3-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/slim/Dockerfile) -- [`6.1.2-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/debian/12/Dockerfile) +- [`6.1.3-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/debian/12/Dockerfile) -- [`6.1.2-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/amazonlinux/2/Dockerfile) +- [`6.1.3-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/Dockerfile) -- [`6.1.2-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/amazonlinux/2/slim/Dockerfile) +- [`6.1.3-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/slim/Dockerfile) -- [`6.1.2-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/rhel-ubi/9/Dockerfile) +- [`6.1.3-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/Dockerfile) -- [`6.1.2-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/rhel-ubi/9/slim/Dockerfile) +- [`6.1.3-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/slim/Dockerfile) -- [`6.1.2-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/28756f801d3772456301075fcb70b1ef5cda0b6b/6.1/windows/LTSC2022/Dockerfile) +- [`6.1.3-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/windows/LTSC2022/Dockerfile) - [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) diff --git a/zookeeper/README.md b/zookeeper/README.md index c6c4ec56e884..bc0846ed9a71 100644 --- a/zookeeper/README.md +++ b/zookeeper/README.md @@ -26,7 +26,7 @@ WARNING: - [`3.8.4`, `3.8`, `3.8.4-jre-17`, `3.8-jre-17`](https://github.com/31z4/zookeeper-docker/blob/ec1050affd761a7886c1f1f5d18165c19d3143e8/3.8.4/Dockerfile) -- [`3.9.3`, `3.9`, `3.9.3-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/268d33caa089426f4f173ba0bac9277919f88dc7/3.9.3/Dockerfile) +- [`3.9.4`, `3.9`, `3.9.4-jre-17`, `3.9-jre-17`, `latest`](https://github.com/31z4/zookeeper-docker/blob/c56b077b4858f22bfc5014cfb3c570d78c56a71d/3.9.4/Dockerfile) # Quick reference (cont.) From c89858e558e7b5ec5b714eedb9b91c9e0fc337df Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Sep 2025 11:10:17 -0700 Subject: [PATCH 2500/2686] Run update.sh --- archlinux/README.md | 6 +++--- friendica/README.md | 6 +++--- gradle/README.md | 2 +- photon/README.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 09c43955a2e3..2dbb07312ed7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.base) +- [`latest`, `base`, `base-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.base) -- [`base-devel`, `base-devel-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250824.0.410029`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bdad294c7e0bafdc01f6bbd01c0e79c046369093/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/friendica/README.md b/friendica/README.md index 0c197eaef721..f04cf76595c2 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2025.02-dev/fpm-alpine/Dockerfile) -- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/apache/Dockerfile) +- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/apache/Dockerfile) -- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/fpm/Dockerfile) +- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/fpm/Dockerfile) -- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/a78ba574557f23b522d0379c3af05bddfb57b4fc/2025.07-rc/fpm-alpine/Dockerfile) +- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/gradle/README.md b/gradle/README.md index bf45d16d414c..df2aabd671f5 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -195,7 +195,7 @@ WARNING: [Gradle](https://gradle.org/) is a fast, dependable, and adaptable open-source build automation tool with an elegant and extensible declarative build language. -![logo](https://raw.githubusercontent.com/docker-library/docs/a699a4b975a6b15d3f2a198221dfc93d792ff457/gradle/logo.png) +![logo](https://raw.githubusercontent.com/docker-library/docs/dec360b0c9d570427d22f98a0d7c30969b62af6f/gradle/logo.png) # How to use this image diff --git a/photon/README.md b/photon/README.md index c813a8c66783..770264d0f9c2 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250826`, `latest`](https://github.com/vmware/photon-docker-image/blob/ac166b1929c73ab9303cc06036279fbfaf713c8d/docker/Dockerfile) +- [`5.0`, `5.0-20250907`, `latest`](https://github.com/vmware/photon-docker-image/blob/ac38eceea3894efd2ac367b1c50172c546eef650/docker/Dockerfile) - [`4.0`, `4.0-20250810`](https://github.com/vmware/photon-docker-image/blob/8e86c1fe4b1997c87a1376f197c394d92b93ac76/docker/Dockerfile) From b134e001920a129966a6a64f053528f0ee145a5b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Sep 2025 14:10:09 -0700 Subject: [PATCH 2501/2686] Run update.sh --- debian/README.md | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/debian/README.md b/debian/README.md index fc4c517064d1..e6c0c0ffb174 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250811`, `12.11`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250908`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250811-slim`, `12.11-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250908-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250811`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250908`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bullseye/oci/index.json) -- [`bullseye-slim`, `bullseye-20250811-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250908-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/experimental/Dockerfile) +- [`experimental`, `experimental-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/experimental/Dockerfile) -- [`forky`, `forky-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/oci/index.json) +- [`forky`, `forky-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/oci/index.json) -- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/backports/Dockerfile) +- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/backports/Dockerfile) -- [`forky-slim`, `forky-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/forky/slim/oci/index.json) +- [`forky-slim`, `forky-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/slim/oci/index.json) -- [`oldoldstable`, `oldoldstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldoldstable/oci/index.json) +- [`oldoldstable`, `oldoldstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldoldstable/oci/index.json) -- [`oldoldstable-slim`, `oldoldstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldoldstable/slim/oci/index.json) +- [`oldoldstable-slim`, `oldoldstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldoldstable/slim/oci/index.json) -- [`oldstable`, `oldstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/rc-buggy/Dockerfile) -- [`sid`, `sid-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/sid/oci/index.json) +- [`sid`, `sid-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/sid/oci/index.json) -- [`sid-slim`, `sid-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/sid/slim/oci/index.json) -- [`stable`, `stable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/oci/index.json) +- [`stable`, `stable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/slim/oci/index.json) -- [`testing`, `testing-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/oci/index.json) +- [`testing`, `testing-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250811`, `13.0`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/oci/index.json) +- [`trixie`, `trixie-20250908`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250811-slim`, `13.0-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250908-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250811`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/unstable/oci/index.json) +- [`unstable`, `unstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250811-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/abafad7e06a0b9b4d694544168ea5d73c5f3b3a0/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/unstable/slim/oci/index.json) # Quick reference (cont.) From b4545d22bf5b6449eea1f6cfcca9ba24b5edb163 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Sep 2025 15:11:01 -0700 Subject: [PATCH 2502/2686] Run update.sh --- adminer/README.md | 4 ++-- cassandra/README.md | 10 +++++----- golang/README.md | 12 ++++++------ kapacitor/README.md | 8 ++++---- mongo/README.md | 20 +++++++++---------- mysql/README.md | 8 ++++---- openjdk/README.md | 40 ++++++++++++++++++------------------- postgres/README.md | 48 ++++++++++++++++++++++----------------------- redmine/README.md | 12 ++++++------ tomcat/README.md | 24 +++++++++++------------ 10 files changed, 93 insertions(+), 93 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 64c1197cc231..9e4c278674da 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.3.0`, `5`, `latest`, `5.3.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/51202fad34e0f5ec140451e9b6bdba9d1068e329/5/Dockerfile) +- [`5.4.0`, `5`, `latest`, `5.4.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/46293bca9216a1d392c9a6c62371d1548cd922cc/5/Dockerfile) -- [`5.3.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/51202fad34e0f5ec140451e9b6bdba9d1068e329/5/fastcgi/Dockerfile) +- [`5.4.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/46293bca9216a1d392c9a6c62371d1548cd922cc/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) diff --git a/cassandra/README.md b/cassandra/README.md index c4747d8c1f1c..b8697a7a1b80 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/da543c94df2e77fbbc83023c3259527aec45ec12/5.0/Dockerfile) +- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/5.0/Dockerfile) -- [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/efc59fdd09c2ed4dcde420064eb0223898d77fb2/4.1/Dockerfile) +- [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/4.1/Dockerfile) -- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/b4b0579f68b8dfbffb61a438c8aaad14fccf44c4/4.0/Dockerfile) +- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/4.0/Dockerfile) -- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/3.11/Dockerfile) +- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/3.11/Dockerfile) -- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/4acdd8cbbc6f21083e9b8176452a2728fa08f2c7/3.0/Dockerfile) +- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/3.0/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index ecae1c272130..bb6f332f1550 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250831-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/trixie/Dockerfile) +- [`tip-20250906-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/trixie/Dockerfile) -- [`tip-20250831-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/bookworm/Dockerfile) +- [`tip-20250906-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/bookworm/Dockerfile) -- [`tip-20250831-alpine3.22`, `tip-alpine3.22`, `tip-20250831-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/alpine3.22/Dockerfile) +- [`tip-20250906-alpine3.22`, `tip-alpine3.22`, `tip-20250906-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/alpine3.22/Dockerfile) -- [`tip-20250831-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/alpine3.21/Dockerfile) +- [`tip-20250906-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250831`, `tip`: +- `tip-20250906`, `tip`: - - [`tip-20250831-trixie`](https://github.com/docker-library/golang/blob/87df90bd18726ff6c83adef1e3438bbc3aa92b5c/tip/trixie/Dockerfile) + - [`tip-20250906-trixie`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index c893332ac212..5bb2fe42f913 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.7`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/Dockerfile) +- [`1.7`, `1.7.7`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/Dockerfile) +- [`1.8`, `1.8.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.0-alpine`](https://github.com/influxdata/influxdata-docker/blob/98c1460c26ffb6d62d5cc659b1ead23c67437e5d/kapacitor/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.8/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 4be214e03704..4aa7978e9f2c 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.14-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/Dockerfile) +- [`8.0.14-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0-rc/Dockerfile) - [`8.0.14-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -36,7 +36,7 @@ WARNING: - [`8.0.14-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) +- [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0/Dockerfile) - [`8.0.13-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`8.0.13-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.24-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/Dockerfile) +- [`7.0.24-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0-rc/Dockerfile) - [`7.0.24-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,7 +52,7 @@ WARNING: - [`7.0.24-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) +- [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0/Dockerfile) - [`7.0.23-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -60,7 +60,7 @@ WARNING: - [`7.0.23-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/Dockerfile) +- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -72,7 +72,7 @@ WARNING: - `8.0.14-rc0`, `8.0-rc`: - - [`8.0.14-rc0-noble`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/Dockerfile) + - [`8.0.14-rc0-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0-rc/Dockerfile) - [`8.0.14-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -87,7 +87,7 @@ WARNING: - `8.0.13`, `8.0`, `8`, `latest`: - - [`8.0.13-noble`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/Dockerfile) + - [`8.0.13-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0/Dockerfile) - [`8.0.13-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -102,7 +102,7 @@ WARNING: - `7.0.24-rc0`, `7.0-rc`: - - [`7.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/Dockerfile) + - [`7.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0-rc/Dockerfile) - [`7.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) @@ -117,7 +117,7 @@ WARNING: - `7.0.23`, `7.0`, `7`: - - [`7.0.23-jammy`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/Dockerfile) + - [`7.0.23-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0/Dockerfile) - [`7.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -132,7 +132,7 @@ WARNING: - `6.0.26`, `6.0`, `6`: - - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/Dockerfile) + - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index ecda58bad114..6b797b6f6dfa 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/cfdf0f31c85e777afa46157194ea8363dccc0260/innovation/Dockerfile.oracle) +- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/innovation/Dockerfile.oracle) -- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/516237cdb5e0991abc0c6dcbbc7a66cc6444d3a3/8.4/Dockerfile.oracle) +- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.4/Dockerfile.oracle) -- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/4ea634473f3ca9b1dcd476236e6d617258e2d63b/8.0/Dockerfile.oracle) +- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.0/Dockerfile.oracle) -- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/4ea634473f3ca9b1dcd476236e6d617258e2d63b/8.0/Dockerfile.debian) +- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 73c8762a49a1..f72788f19bfd 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,25 +42,25 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-13-jdk-oraclelinux9`, `26-ea-13-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-13-jdk-oracle`, `26-ea-13-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-14-jdk-oraclelinux9`, `26-ea-14-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-14-jdk-oracle`, `26-ea-14-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-13-jdk-oraclelinux8`, `26-ea-13-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-14-jdk-oraclelinux8`, `26-ea-14-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-13-jdk-trixie`, `26-ea-13-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/trixie/Dockerfile) +- [`26-ea-14-jdk-trixie`, `26-ea-14-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/trixie/Dockerfile) -- [`26-ea-13-jdk-slim-trixie`, `26-ea-13-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-13-jdk-slim`, `26-ea-13-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-14-jdk-slim-trixie`, `26-ea-14-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-14-jdk-slim`, `26-ea-14-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-13-jdk-bookworm`, `26-ea-13-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/bookworm/Dockerfile) +- [`26-ea-14-jdk-bookworm`, `26-ea-14-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/bookworm/Dockerfile) -- [`26-ea-13-jdk-slim-bookworm`, `26-ea-13-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-14-jdk-slim-bookworm`, `26-ea-14-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-13-jdk-windowsservercore-ltsc2025`, `26-ea-13-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-14-jdk-windowsservercore-ltsc2025`, `26-ea-14-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-13-jdk-windowsservercore-ltsc2022`, `26-ea-13-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-14-jdk-windowsservercore-ltsc2022`, `26-ea-14-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-13-jdk-nanoserver-ltsc2025`, `26-ea-13-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-14-jdk-nanoserver-ltsc2025`, `26-ea-14-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-13-jdk-nanoserver-ltsc2022`, `26-ea-13-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-14-jdk-nanoserver-ltsc2022`, `26-ea-14-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) @@ -84,21 +84,21 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `26-ea-13-jdk`, `26-ea-13`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-14-jdk`, `26-ea-14`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-13-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-13-jdk-windowsservercore`, `26-ea-13-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-14-jdk-windowsservercore`, `26-ea-14-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-13-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-13-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-13-jdk-nanoserver`, `26-ea-13-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-14-jdk-nanoserver`, `26-ea-14-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-13-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-13-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/a63a3e8e02e8c11b23be1fcd09afd071c44dd53e/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-14-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-14-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: diff --git a/postgres/README.md b/postgres/README.md index e7b289df7ade..d8631ed0a62e 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/trixie/Dockerfile) +- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/trixie/Dockerfile) -- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/bookworm/Dockerfile) +- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/bookworm/Dockerfile) -- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/alpine3.22/Dockerfile) +- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/alpine3.22/Dockerfile) -- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/5ab2c9dd1d1ae5f2e8646ccf3ce9294d26b0ca5f/18/alpine3.21/Dockerfile) +- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/alpine3.21/Dockerfile) -- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/17/trixie/Dockerfile) +- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/trixie/Dockerfile) -- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/bookworm/Dockerfile) -- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/alpine3.22/Dockerfile) -- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/e34fc9d23c4eab656e9037701d71962c9b46a2e7/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/alpine3.21/Dockerfile) -- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/16/trixie/Dockerfile) +- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/trixie/Dockerfile) -- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/16/bookworm/Dockerfile) +- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/bookworm/Dockerfile) -- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.22/Dockerfile) +- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/alpine3.22/Dockerfile) -- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/1cb68aee8fbbd39106c8a8eb41f45721941d11a8/16/alpine3.21/Dockerfile) +- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/alpine3.21/Dockerfile) -- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/15/trixie/Dockerfile) +- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/trixie/Dockerfile) -- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/15/bookworm/Dockerfile) +- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/bookworm/Dockerfile) -- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.22/Dockerfile) +- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/alpine3.22/Dockerfile) -- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/b8ab4185a3d61f301db60806a4cf8ae479ac507e/15/alpine3.21/Dockerfile) +- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/alpine3.21/Dockerfile) -- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/14/trixie/Dockerfile) +- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/trixie/Dockerfile) -- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/14/bookworm/Dockerfile) +- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/bookworm/Dockerfile) -- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.22/Dockerfile) +- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/alpine3.22/Dockerfile) -- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/836ebeb884c0e4c7d4f674a2fc19bf47fcd63c96/14/alpine3.21/Dockerfile) +- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/alpine3.21/Dockerfile) -- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/13/trixie/Dockerfile) +- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/trixie/Dockerfile) -- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/abab72cc7333e86db1fa667d8b6f78d55e3aa62d/13/bookworm/Dockerfile) +- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/bookworm/Dockerfile) -- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/alpine3.22/Dockerfile) +- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/alpine3.22/Dockerfile) -- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/1984f1787ad448db351da121bfe8708769d0f8a7/13/alpine3.21/Dockerfile) +- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 5f92867e9687..39ba3af85f16 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/bookworm/Dockerfile) +- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/bookworm/Dockerfile) -- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/alpine3.22/Dockerfile) +- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/alpine3.22/Dockerfile) -- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/6.0/alpine3.21/Dockerfile) +- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/alpine3.21/Dockerfile) -- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/bookworm/Dockerfile) +- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/bookworm/Dockerfile) -- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/alpine3.22/Dockerfile) +- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/alpine3.22/Dockerfile) -- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/6c258a25ea57c7784208e0715a71f911e473449c/5.1/alpine3.21/Dockerfile) +- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index fc604b8c0d54..46f331084840 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,29 +40,29 @@ WARNING: - [`11.0.11-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.44-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.44-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.44-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.44`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.45-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.45-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.45-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.45`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.44-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.44-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.44-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.45-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.45-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.45-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.44-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.45-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.44-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.45-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.44-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.44-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.44-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.45-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.45-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.45-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.44-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.44-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.44-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.45-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.45-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.45-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.44-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.45-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.44-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.45-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.44-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.44-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.44-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.45-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.45-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.45-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.44-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.44-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.44-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.45-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.45-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.45-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.44-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.45-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.44-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ff18e55221f67428cea3a9999fee48a22f3f4588/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.45-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) From 85e1e672806dc2b18abe6e584b118df14a081851 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 8 Sep 2025 16:10:55 -0700 Subject: [PATCH 2503/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 5727935f3dad..6eb283cce1c0 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.33`, `1.33.3`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.33/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.34/Dockerfile) -- [`1.33-alpine`, `1.33.3-alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.33/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.34/alpine/Dockerfile) -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.34/Dockerfile) +- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.35/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.34/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.35/alpine/Dockerfile) -- [`1.35`, `1.35.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.35/Dockerfile) +- [`1.36`, `1.36.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.36/Dockerfile) -- [`1.35-alpine`, `1.35.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/3fac8171e912cd1853b80f0d839c46da83875e70/telegraf/1.35/alpine/Dockerfile) +- [`1.36-alpine`, `1.36.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.36/alpine/Dockerfile) # Quick reference (cont.) From c085a0f9b9f79dda3a65d71dc148996a20d020e9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Sep 2025 11:10:21 -0700 Subject: [PATCH 2504/2686] Run update.sh --- ghost/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 97562c17ffc8..e0aa594b2654 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.7`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/07fb1d525e27f6ac95daf65eb00fc91f380e92c5/6/debian/Dockerfile) +- [`6.0.7`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/6/debian/Dockerfile) -- [`6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/07fb1d525e27f6ac95daf65eb00fc91f380e92c5/6/alpine/Dockerfile) +- [`6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/6/alpine/Dockerfile) -- [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/debian/Dockerfile) +- [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/5/debian/Dockerfile) -- [`5.130.4-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/75d682ae014b696d78e0300a6bada92668ea479a/5/alpine/Dockerfile) +- [`5.130.4-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/5/alpine/Dockerfile) # Quick reference (cont.) From ea3ba627ab305abca1eb6c5a5fc3ff46f15c2d1b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Sep 2025 12:10:11 -0700 Subject: [PATCH 2505/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index 6eb283cce1c0..c46d6c9a2c85 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.35/alpine/Dockerfile) -- [`1.36`, `1.36.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.36/Dockerfile) +- [`1.36`, `1.36.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.36/Dockerfile) -- [`1.36-alpine`, `1.36.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b22997f6afd3cbf4ed4a9fd31360f3591503a5f8/telegraf/1.36/alpine/Dockerfile) +- [`1.36-alpine`, `1.36.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.36/alpine/Dockerfile) # Quick reference (cont.) From 5bdcce198dbe7a9313f244a0d841f8953746b87f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Sep 2025 14:10:38 -0700 Subject: [PATCH 2506/2686] Run update.sh --- almalinux/README.md | 16 ++++++++-------- krakend/README.md | 2 +- traefik/README.md | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/almalinux/README.md b/almalinux/README.md index 5392140cd70e..44a290a14cde 100644 --- a/almalinux/README.md +++ b/almalinux/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10-kitten`, `10-kitten-20250825`](https://github.com/AlmaLinux/container-images/blob/1a12ae7d9d6988a916b02cb40e7ebc4ac838a07f/default/amd64/Dockerfile) +- [`10-kitten`, `10-kitten-20250909`](https://github.com/AlmaLinux/container-images/blob/571a3caca09a9dd0f8c81c7834af79b8f9ad8ab2/default/amd64/Dockerfile) -- [`10-kitten-minimal`, `10-kitten-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/1a12ae7d9d6988a916b02cb40e7ebc4ac838a07f/minimal/amd64/Dockerfile) +- [`10-kitten-minimal`, `10-kitten-minimal-20250909`](https://github.com/AlmaLinux/container-images/blob/571a3caca09a9dd0f8c81c7834af79b8f9ad8ab2/minimal/amd64/Dockerfile) -- [`10`, `10.0`, `10.0-20250825`](https://github.com/AlmaLinux/container-images/blob/2329fb843dd96f1be74261cb99babdf8a1af0c62/default/amd64/Dockerfile) +- [`10`, `10.0`, `10.0-20250909`](https://github.com/AlmaLinux/container-images/blob/2f239bc800a366ea4dc42378905c237ae6e4e03a/default/amd64/Dockerfile) -- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/2329fb843dd96f1be74261cb99babdf8a1af0c62/minimal/amd64/Dockerfile) +- [`10-minimal`, `10.0-minimal`, `10.0-minimal-20250909`](https://github.com/AlmaLinux/container-images/blob/2f239bc800a366ea4dc42378905c237ae6e4e03a/minimal/amd64/Dockerfile) -- [`8`, `8.10`, `8.10-20250825`](https://github.com/AlmaLinux/container-images/blob/ca844ff771fb01ffaeeed9ed68b0876db5cea2c4/default/amd64/Dockerfile) +- [`8`, `8.10`, `8.10-20250909`](https://github.com/AlmaLinux/container-images/blob/1bee999abd112c603a3044f96282a2c1b66cb57f/default/amd64/Dockerfile) -- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/ca844ff771fb01ffaeeed9ed68b0876db5cea2c4/minimal/amd64/Dockerfile) +- [`8-minimal`, `8.10-minimal`, `8.10-minimal-20250909`](https://github.com/AlmaLinux/container-images/blob/1bee999abd112c603a3044f96282a2c1b66cb57f/minimal/amd64/Dockerfile) -- [`latest`, `9`, `9.6`, `9.6-20250825`](https://github.com/AlmaLinux/container-images/blob/be04b15e73a2a5d4059c1c3dbdeecced91be21ab/default/amd64/Dockerfile) +- [`latest`, `9`, `9.6`, `9.6-20250909`](https://github.com/AlmaLinux/container-images/blob/17f5f89c183962069c90892cd92c8b83598b8807/default/amd64/Dockerfile) -- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250825`](https://github.com/AlmaLinux/container-images/blob/be04b15e73a2a5d4059c1c3dbdeecced91be21ab/minimal/amd64/Dockerfile) +- [`minimal`, `9-minimal`, `9.6-minimal`, `9.6-minimal-20250909`](https://github.com/AlmaLinux/container-images/blob/17f5f89c183962069c90892cd92c8b83598b8807/minimal/amd64/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index 9ae7e15700a7..54ec7122e732 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.10.2`, `2.10`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/3017b6a9345534b54243c35b76f865121e8d50bf/2.10.2/Dockerfile) +- [`2.11.0`, `2.11`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/f7b7d2505b87be94f8aaab83bc1049a515e2dbf1/2.11.0/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 8c33cd09ebce..411406ef2c37 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.1-windowsservercore-ltsc2022`, `3.5.1-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.2-windowsservercore-ltsc2022`, `3.5.2-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.1-nanoserver-ltsc2022`, `3.5.1-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.2-nanoserver-ltsc2022`, `3.5.2-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.1`, `3.5.1`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/263eee8e2738fe8cbbbc05b5188903b7868b898c/v3.5/alpine/Dockerfile) +- [`v3.5.2`, `3.5.2`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/alpine/Dockerfile) - [`v2.11.29-windowsservercore-ltsc2022`, `2.11.29-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/servercore-ltsc2022/Dockerfile) From 266e85b3f1f6162400f1c8357a5a3a1a327b76dd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Sep 2025 15:10:10 -0700 Subject: [PATCH 2507/2686] Run update.sh --- nats/README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/nats/README.md b/nats/README.md index 2b8f7e408365..603a046bf4f5 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,49 @@ WARNING: ## Simple Tags -- [`2.11.8-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.8-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/alpine3.22/Dockerfile) +- [`2.11.9-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.9-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/alpine3.22/Dockerfile) -- [`2.11.8-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.8-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/scratch/Dockerfile) +- [`2.11.9-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.9-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/scratch/Dockerfile) -- [`2.11.8-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.9-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.8-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.9-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.8`, `2.11`, `2`, `latest`: +- `2.11.9`, `2.11`, `2`, `latest`: - - [`2.11.8-scratch`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/scratch/Dockerfile) - - [`2.11.8-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.9-scratch`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/scratch/Dockerfile) + - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.8-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.9-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.11.8-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.9-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.8-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.9-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.11.8-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/a8cccfe32e277ef2b3ceec385b959349d8aca46d/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From d25244f2336f6a27818f6594c176b25bc9cd1878 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 9 Sep 2025 17:10:40 -0700 Subject: [PATCH 2508/2686] Run update.sh --- odoo/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo/README.md b/odoo/README.md index b9cbece3cc60..7b65b4a77c8d 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250819`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/18.0/Dockerfile) +- [`18.0-20250909`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/18.0/Dockerfile) -- [`17.0-20250819`, `17.0`, `17`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/17.0/Dockerfile) +- [`17.0-20250909`, `17.0`, `17`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/17.0/Dockerfile) -- [`16.0-20250819`, `16.0`, `16`](https://github.com/odoo/docker/blob/0461e8225b4aee856cc74d893c89cb4e3c6d43f1/16.0/Dockerfile) +- [`16.0-20250909`, `16.0`, `16`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/16.0/Dockerfile) # Quick reference (cont.) From c5f9b1561de980b928601a1686ed88f7ad912842 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Sep 2025 10:11:36 -0700 Subject: [PATCH 2509/2686] Run update.sh --- jetty/README.md | 50 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 +++++++++---------- xwiki/README.md | 18 ++++++++-------- 3 files changed, 45 insertions(+), 45 deletions(-) diff --git a/jetty/README.md b/jetty/README.md index 014ab6e0db2f..5976103f3ad1 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,33 +54,33 @@ WARNING: - [`9.4.58-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.58-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.1.0-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.0-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) +- [`12.1.1-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.1-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) -- [`12.1.0`, `12.1`, `12`, `12.1.0-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.0-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.0-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk21/Dockerfile) +- [`12.1.1`, `12.1`, `12`, `12.1.1-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.1-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.1-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk21/Dockerfile) -- [`12.1.0-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.0-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) +- [`12.1.1-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.1-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) -- [`12.1.0-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.0-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/eclipse-temurin/12.1/jdk17/Dockerfile) +- [`12.1.1-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.1-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk17/Dockerfile) -- [`12.0.25-jre21-alpine`, `12.0-jre21-alpine`, `12.0.25-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.26-jre21-alpine`, `12.0-jre21-alpine`, `12.0.26-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.25-jre21`, `12.0-jre21`, `12.0.25-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.26-jre21`, `12.0-jre21`, `12.0.26-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.25-jre17-alpine`, `12.0-jre17-alpine`, `12.0.25-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.26-jre17-alpine`, `12.0-jre17-alpine`, `12.0.26-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.25-jre17`, `12.0-jre17`, `12.0.25-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.26-jre17`, `12.0-jre17`, `12.0.26-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.25-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.25-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.26-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.26-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.25-jdk24`, `12.0-jdk24`, `12.0.25-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.26-jdk24`, `12.0-jdk24`, `12.0.26-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.25-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.25-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.26-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.26-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.25`, `12.0`, `12.0.25-jdk21`, `12.0-jdk21`, `12.0.25-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.25-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.26`, `12.0`, `12.0.26-jdk21`, `12.0-jdk21`, `12.0.26-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.26-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.25-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.25-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.26-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.26-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.25-jdk17`, `12.0-jdk17`, `12.0.25-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.26-jdk17`, `12.0-jdk17`, `12.0.26-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.26-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.26-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -146,27 +146,27 @@ WARNING: - [`9.4.58-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.1.0-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk21-alpine/Dockerfile) +- [`12.1.1-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk21-alpine/Dockerfile) -- [`12.1.0-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.0-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk21/Dockerfile) +- [`12.1.1-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.1-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk21/Dockerfile) -- [`12.1.0-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk17-alpine/Dockerfile) +- [`12.1.1-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk17-alpine/Dockerfile) -- [`12.1.0-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/36c91c23fef339df187fbf73e56a0376688dbc32/amazoncorretto/12.1/jdk17/Dockerfile) +- [`12.1.1-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk17/Dockerfile) -- [`12.0.25-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.26-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.25-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.26-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.25-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.26-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.25-amazoncorretto`, `12.0-amazoncorretto`, `12.0.25-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.26-amazoncorretto`, `12.0-amazoncorretto`, `12.0.26-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.25-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.26-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.25-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.26-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.25-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.26-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.26-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2017e3d2e020..3f7a94264035 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fec6de9e14b525e3738f9b622d4f6f5093c2b123/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index b7f7655e5bef..3b99d1fb2bd0 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.7`, `17.7.0`, `17-mysql-tomcat`, `17.7-mysql-tomcat`, `17.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mysql-tomcat/Dockerfile) +- [`17`, `17.7`, `17.7.0`, `17-mysql-tomcat`, `17.7-mysql-tomcat`, `17.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.7-postgres-tomcat`, `17.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.7-postgres-tomcat`, `17.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.7-mariadb-tomcat`, `17.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/68233690e35f0d12235809370bb6d39f276393e8/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.7-mariadb-tomcat`, `17.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/b8c56b076f41e03a40b8b3343c6e3bf1252af0cf/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.11`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.11`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/49e7ef8c989cabfe2dca658c8819c3cc33c7b520/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 2479d94eba440735c9ca70b2fc66fa61af7c77ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Sep 2025 16:10:19 -0700 Subject: [PATCH 2510/2686] Run update.sh --- dart/README.md | 4 ++-- node/README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dart/README.md b/dart/README.md index 702e29b9e348..0e8412a20d6c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.2-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.2`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6f93b5f8665f78d29183f153e05b01b2eed7e0c2/stable/trixie/Dockerfile) +- [`3.9.3-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.3`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/1dfd9d9d5edd76682443355ca989acb8f9508e69/stable/trixie/Dockerfile) -- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6f93b5f8665f78d29183f153e05b01b2eed7e0c2/beta/trixie/Dockerfile) +- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/1dfd9d9d5edd76682443355ca989acb8f9508e69/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/node/README.md b/node/README.md index 676aeeefd734..92876257efd3 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.7-alpine3.21`, `24.7.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.8-alpine3.21`, `24.8.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.7-alpine`, `24.7-alpine3.22`, `24.7.0-alpine`, `24.7.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.8-alpine`, `24.8-alpine3.22`, `24.8.0-alpine`, `24.8.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.7`, `24.7-bookworm`, `24.7.0`, `24.7.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.8`, `24.8-bookworm`, `24.8.0`, `24.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.7-bookworm-slim`, `24.7-slim`, `24.7.0-bookworm-slim`, `24.7.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.8-bookworm-slim`, `24.8-slim`, `24.8.0-bookworm-slim`, `24.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.7-bullseye`, `24.7.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.8-bullseye`, `24.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.7-bullseye-slim`, `24.7.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.8-bullseye-slim`, `24.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.7-trixie`, `24.7.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/trixie/Dockerfile) +- [`24-trixie`, `24.8-trixie`, `24.8.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.7-trixie-slim`, `24.7.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/22fe25038bac4949d8c1dc00f426dd4e9c859c61/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.8-trixie-slim`, `24.8.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.19-alpine3.21`, `22.19.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/alpine3.21/Dockerfile) From 0fd521c4502d56cdca964abbd686723c98124724 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 10 Sep 2025 17:10:19 -0700 Subject: [PATCH 2511/2686] Run update.sh --- bash/README.md | 2 +- julia/README.md | 42 ++++++++++++-------------- mongo/README.md | 75 ++++++++++++++++------------------------------ rabbitmq/README.md | 16 +++++----- 4 files changed, 54 insertions(+), 81 deletions(-) diff --git a/bash/README.md b/bash/README.md index 8fde457ed5dd..bf04a052a056 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250822`, `devel`, `devel-20250822-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4a835c8f4fa1dff656a10a8623499c5544fe6cb6/devel/Dockerfile) +- [`devel-20250904`, `devel`, `devel-20250904-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/327036eadc5c26756b8b6f19cec5af9dcf8092ad/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 9e3c372c2781..27376dd6e264 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,17 +28,13 @@ WARNING: ## Simple Tags -- [`1.12.0-rc1-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.12-rc/trixie/Dockerfile) +- [`1.12.0-rc2-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/trixie/Dockerfile) -- [`1.12.0-rc1-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-rc2-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-rc1-alpine3.22`, `1.12-rc-alpine3.22`, `rc-alpine3.22`, `1.12.0-rc1-alpine`, `1.12-rc-alpine`, `rc-alpine`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/alpine3.22/Dockerfile) +- [`1.12.0-rc2-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-rc1-alpine3.21`, `1.12-rc-alpine3.21`, `rc-alpine3.21`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/alpine3.21/Dockerfile) - -- [`1.12.0-rc1-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`1.12.0-rc1-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-rc2-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.6-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.11/trixie/Dockerfile) @@ -66,16 +62,16 @@ WARNING: ## Shared Tags -- `1.12.0-rc1`, `1.12-rc`, `rc`: +- `1.12.0-rc2`, `1.12-rc`, `rc`: - - [`1.12.0-rc1-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.12-rc/trixie/Dockerfile) - - [`1.12.0-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc2-trixie`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/trixie/Dockerfile) + - [`1.12.0-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-rc1-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-rc2-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/ae32a8143b0792d4b9859822e8c8b2f8cf29455a/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `1.11.6`, `1.11`, `1`, `latest`: @@ -158,14 +154,6 @@ This is the defacto image. If you are unsure about what your needs are, you prob Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. -## `julia:-alpine` - -This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. - -This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. - -To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). - ## `julia:-windowsservercore` This image is based on [Windows Server Core (`mcr.microsoft.com/windows/servercore`)](https://hub.docker.com/r/microsoft/windows-servercore). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. @@ -174,6 +162,14 @@ For information about how to get Docker running on Windows, please see the relev - [Windows Containers Quick Start](https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce) +## `julia:-alpine` + +This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. + +This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use [musl libc](https://musl.libc.org) instead of [glibc and friends](https://www.etalabs.net/compare_libcs.html), so software will often run into issues depending on the depth of their libc requirements/assumptions. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. + +To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). + # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/mongo/README.md b/mongo/README.md index 4aa7978e9f2c..2b86ffa0c4d4 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.14-rc0-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0-rc/Dockerfile) +- [`8.0.14-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/Dockerfile) -- [`8.0.14-rc0-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.14-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.14-rc0-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.14-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.14-rc0-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.14-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0/Dockerfile) @@ -44,21 +44,13 @@ WARNING: - [`8.0.13-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.24-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0-rc/Dockerfile) +- [`7.0.24-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/Dockerfile) -- [`7.0.24-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.24-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.24-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.24-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.24-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`7.0.23-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0/Dockerfile) - -- [`7.0.23-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`7.0.23-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`7.0.23-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.24-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/6.0/Dockerfile) @@ -70,20 +62,20 @@ WARNING: ## Shared Tags -- `8.0.14-rc0`, `8.0-rc`: +- `8.0.14-rc1`, `8.0-rc`: - - [`8.0.14-rc0-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0-rc/Dockerfile) - - [`8.0.14-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.14-rc1-noble`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/Dockerfile) + - [`8.0.14-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.14-rc0-windowsservercore`, `8.0-rc-windowsservercore`: +- `8.0.14-rc1-windowsservercore`, `8.0-rc-windowsservercore`: - - [`8.0.14-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.14-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.14-rc0-nanoserver`, `8.0-rc-nanoserver`: +- `8.0.14-rc1-nanoserver`, `8.0-rc-nanoserver`: - - [`8.0.14-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d7449d00d3fef80b321a9c0055940be78056a872/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.14-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - `8.0.13`, `8.0`, `8`, `latest`: @@ -100,35 +92,20 @@ WARNING: - [`8.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- `7.0.24-rc0`, `7.0-rc`: - - - [`7.0.24-rc0-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0-rc/Dockerfile) - - [`7.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.24-rc0-windowsservercore`, `7.0-rc-windowsservercore`: - - - [`7.0.24-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.24-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `7.0.24-rc0-nanoserver`, `7.0-rc-nanoserver`: - - - [`7.0.24-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/53c523ec930399ddabdfbeb23b45856278d2ba55/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `7.0.23`, `7.0`, `7`: +- `7.0.24`, `7.0`, `7`: - - [`7.0.23-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/7.0/Dockerfile) - - [`7.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.24-jammy`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/Dockerfile) + - [`7.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.23-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.24-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.23-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.23-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.23-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.24-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.23-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/19c4af6e86ce71256a109be63e4ca3122108e61d/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/nanoserver-ltsc2022/Dockerfile) - `6.0.26`, `6.0`, `6`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 08047c9bb297..e1885d187c0b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.2`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-beta.2`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/15586d8e781c0e58bab0ba91d0d87a0b36ff5229/4.2-rc/ubuntu/Dockerfile) - [`4.2.0-beta.2-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.2-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/9fec503f1e0f36c21a3d765828a55f2831140031/4.2-rc/alpine/Dockerfile) +- [`4.2.0-beta.2-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/15586d8e781c0e58bab0ba91d0d87a0b36ff5229/4.2-rc/alpine/Dockerfile) - [`4.2.0-beta.2-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) -- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/017aeffeb708a83074972a80e283e011032f8b5b/4.1/ubuntu/Dockerfile) +- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/ubuntu/Dockerfile) - [`4.1.4-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/017aeffeb708a83074972a80e283e011032f8b5b/4.1/alpine/Dockerfile) +- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/alpine/Dockerfile) - [`4.1.4-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/3b417e35b15f8e491b0ab4dcded09dd13366b50c/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/ec8a0f9ca93cfa27d26d9c9f619c7ef863c40bf4/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/3b417e35b15f8e491b0ab4dcded09dd13366b50c/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/4fe4142e5f9df0b54da6f226b4747f718c8f221b/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/f60bd8e290f826c6021cbd66e89de6a7ba3a9174/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/4fe4142e5f9df0b54da6f226b4747f718c8f221b/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/f60bd8e290f826c6021cbd66e89de6a7ba3a9174/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) From 7e8fe4e6481fca07fc5b467d5bdce5416b6cb6e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Sep 2025 10:10:42 -0700 Subject: [PATCH 2512/2686] Run update.sh --- clickhouse/README.md | 8 +++--- ibmjava/README.md | 6 ++--- joomla/README.md | 18 ++++++------- open-liberty/README.md | 54 ++++++++++++++++++------------------- postfixadmin/README.md | 6 ++--- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 6 files changed, 70 insertions(+), 70 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 1efcf3a9cc32..fa86ddd84a8d 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.2`, `25.8.2-jammy`, `25.8.2.29`, `25.8.2.29-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.8.2.29/Dockerfile.ubuntu) +- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.2`, `25.8.2-jammy`, `25.8.2.29`, `25.8.2.29-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.8.2.29/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.7.6.21/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.7.6.21/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.9`, `25.6.9-jammy`, `25.6.9.98`, `25.6.9.98-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.6.9.98/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.11`, `25.6.11-jammy`, `25.6.11.18`, `25.6.11.18-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.6.11.18/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/223b9acaf50a551e20e5450e822db8a7532a7a53/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index 91f06d6790ac..ef230f86f145 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/24411852977c8ab80019e26b674768da17e70082/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index a90dcd9ffd88..c254ad90db57 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-beta1`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta1-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta1-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/apache/Dockerfile) +- [`6.0.0-beta2`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta2-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta2-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta2-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/apache/Dockerfile) -- [`6.0.0-beta1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-beta2-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-beta1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/6.0.beta/php8.3/fpm/Dockerfile) +- [`6.0.0-beta2-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/fpm/Dockerfile) -- [`5.4.0-beta1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/apache/Dockerfile) +- [`5.4.0-beta2-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/apache/Dockerfile) -- [`5.4.0-beta1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-beta2-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-beta1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.2/fpm/Dockerfile) +- [`5.4.0-beta2-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/fpm/Dockerfile) -- [`5.4.0-beta1`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta1-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta1-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/apache/Dockerfile) +- [`5.4.0-beta2`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta2-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta2-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta2-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/apache/Dockerfile) -- [`5.4.0-beta1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-beta2-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-beta1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.4.beta/php8.3/fpm/Dockerfile) +- [`5.4.0-beta2-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/fpm/Dockerfile) - [`5.3.3-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/apache/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index a4caa82c53dd..94753155c472 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.8-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.8-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.8-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.8-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.8-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.8-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/1455cc047786d131679206da80a719b541813dae/releases/25.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/postfixadmin/README.md b/postfixadmin/README.md index 432721c80046..7be0c16cbfbf 100644 --- a/postfixadmin/README.md +++ b/postfixadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3.15-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.15`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/apache/Dockerfile) +- [`3.3.16-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.16`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/3253e7ee2122be4101486bd80b6356ff7e0a367a/apache/Dockerfile) -- [`3.3.15-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/fpm/Dockerfile) +- [`3.3.16-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/3253e7ee2122be4101486bd80b6356ff7e0a367a/fpm/Dockerfile) -- [`3.3.15-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/8fbed5d8d6b140e7c3c417a9dc45aafd5bdff774/fpm-alpine/Dockerfile) +- [`3.3.16-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/3253e7ee2122be4101486bd80b6356ff7e0a367a/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index 24240fc08d6c..fe49c28a82d9 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.8-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.8-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.8-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.8-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.8-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.8-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/10713204f717390a4029966e563edaa7279c9953/ga/25.0.0.8/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 309fea957345dd909069b43937ae5a07b11a9999 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Sep 2025 14:10:16 -0700 Subject: [PATCH 2513/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 3f7a94264035..f09d1b19226b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b20ed0327b3c0ec59da250f978fa76d37379cd83/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7-slim-fips/Dockerfile) # Quick reference (cont.) From 8bc851faac114a7dee483015a9b78b50908fc311 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 11 Sep 2025 18:10:17 -0700 Subject: [PATCH 2514/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 6cf05019b3c4..8011203226df 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.8.20250818.0`](https://github.com/amazonlinux/container-images/blob/749d179d33ea914415e7c369f39f6329a01852d0/Dockerfile) +- [`2023`, `latest`, `2023.8.20250908.0`](https://github.com/amazonlinux/container-images/blob/31bea68f5849c5dd4d4d26a069c2c8cbe55e7c8c/Dockerfile) -- [`2`, `2.0.20250818.2`](https://github.com/amazonlinux/container-images/blob/768f7e30b46c745fc4ec82b0f8362ecd7cded497/Dockerfile) +- [`2`, `2.0.20250902.3`](https://github.com/amazonlinux/container-images/blob/81757e0aa88c134de580b4e8847288e0ab819b77/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From 85a414b7840c270e73426c9519792bc9cfb4cf79 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Sep 2025 11:10:32 -0700 Subject: [PATCH 2515/2686] Run update.sh --- fedora/README.md | 8 +++++--- influxdb/README.md | 28 ++++++++++++++-------------- solr/README.md | 8 -------- 3 files changed, 19 insertions(+), 25 deletions(-) diff --git a/fedora/README.md b/fedora/README.md index 284e4586def9..14d23bf5328f 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,11 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9fe9c60f8e2039097a47f8cb24586cdfd049382/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a9a4036fcc1c7b2e5233133bc820e16e1c83b045/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e9b4abb66480fc5fa0b6353bb3eaf163371e3ab0/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/cbe5182ce93fd79b89f4755692d5580e2d7f0555/x86_64/Dockerfile) -- [`43`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ec7803f6ed24683e124c16e8199c0f7c8199752a/x86_64/Dockerfile) +- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c97da431e82cd76583b3b81135d696f735455341/x86_64/Dockerfile) + +- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/007d94d9e9a5249a715326af844e0bd220161287/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index d95af908e356..4f5cf537bef2 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.1-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/3.4-core/Dockerfile) +- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/3.4-core/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.1-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/8b6cd22ddb8c62aeafc7888e74e09b2e08fbf6db/influxdb/3.4-enterprise/Dockerfile) +- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/solr/README.md b/solr/README.md index a978d52e31a5..793ae0e13c56 100644 --- a/solr/README.md +++ b/solr/README.md @@ -28,14 +28,6 @@ WARNING: - [`9.9.0-slim`, `9.9-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9-slim/Dockerfile) -- [`9.8.1`, `9.8`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8/Dockerfile) - -- [`9.8.1-slim`, `9.8-slim`](https://github.com/apache/solr-docker/blob/fd6589c6455c184356b93880265f17c645840405/9.8-slim/Dockerfile) - -- [`8.11.4`, `8.11`, `8`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11/Dockerfile) - -- [`8.11.4-slim`, `8.11-slim`, `8-slim`](https://github.com/apache/solr-docker/blob/f11dfe66709370492d5b7b251d5eba5d70b8301d/8.11-slim/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 0668ce1c186d590e65187aa6b46ef2ffac07293d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Sep 2025 12:10:07 -0700 Subject: [PATCH 2516/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++++----------------------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 24fa002b104e..24cb7f3dab7f 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.11.2-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.11.2`, `temurin-8-lein-2.11.2-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.11.2-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.11.2-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.11.2`, `temurin-11-lein-2.11.2-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.11.2-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.11.2-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.11.2`, `temurin-17-lein-2.11.2-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.11.2-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.11.2-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.11.2`, `lein-2.11.2-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.11.2`, `temurin-21-lein-2.11.2-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.11.2-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.11.2-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye`, `lein-bullseye`, `temurin-21-lein-2.11.2-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.11.2-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.11.2-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.11.2-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.11.2-trixie`, `lein-trixie`, `temurin-21-lein-2.11.2-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.11.2-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.11.2-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.11.2-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.11.2`, `temurin-24-lein-2.11.2-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.11.2-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/64a4e10768b978669fbe7420aee465ec90000e35/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) From 30c80892cac47508d703a06d2294ba295199c8ca Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Sep 2025 17:11:05 -0700 Subject: [PATCH 2517/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++++----------------------- php/README.md | 84 ++++++++++++++++++---- tomcat/README.md | 24 +++---- 3 files changed, 171 insertions(+), 115 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 24cb7f3dab7f..ab639fb712c9 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/31ec9d8356409b27b68fb1dde7016f09d6776c89/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 64434c7a1f43..aefb60fec288 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0beta2-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta2-trixie`, `8.5-rc-trixie`, `8.5.0beta2-cli`, `8.5-rc-cli`, `8.5.0beta2`, `8.5-rc`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0beta3-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta3-trixie`, `8.5-rc-trixie`, `8.5.0beta3-cli`, `8.5-rc-cli`, `8.5.0beta3`, `8.5-rc`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0beta2-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0beta3-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta3-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0beta2-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0beta3-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta3-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0beta2-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0beta3-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta3-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0beta2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta2-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0beta3-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta3-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0beta2-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0beta3-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0beta2-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0beta3-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0beta2-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0beta3-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0beta2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0beta3-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta3-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta3-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta3-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0beta2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0beta3-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta3-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0beta2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0beta3-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta3-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0beta2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0beta3-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta3-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0beta2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0beta3-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0beta2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/28d20bc9c45e6ce6342e01ada7743e4b24d3c399/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0beta3-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.13RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.13RC1-trixie`, `8.4-rc-trixie`, `8.4.13RC1-cli`, `8.4-rc-cli`, `8.4.13RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/cli/Dockerfile) + +- [`8.4.13RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.13RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/apache/Dockerfile) + +- [`8.4.13RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.13RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/fpm/Dockerfile) + +- [`8.4.13RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.13RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/zts/Dockerfile) + +- [`8.4.13RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.13RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.13RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.13RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.13RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.13RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.13RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.13RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.13RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.13RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.13RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.13RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.13RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.13RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.13RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.13RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.13RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/zts/Dockerfile) - [`8.4.12-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.12-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.12-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.12`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/cli/Dockerfile) @@ -80,6 +108,34 @@ WARNING: - [`8.4.12-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.26RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.26RC1-trixie`, `8.3-rc-trixie`, `8.3.26RC1-cli`, `8.3-rc-cli`, `8.3.26RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/cli/Dockerfile) + +- [`8.3.26RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.26RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/apache/Dockerfile) + +- [`8.3.26RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.26RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/fpm/Dockerfile) + +- [`8.3.26RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.26RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/zts/Dockerfile) + +- [`8.3.26RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.26RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.26RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.26RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.26RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.26RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.26RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.26RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.26RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.26RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.26RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.26RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.26RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.26RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.26RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.26RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.26RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.25-cli-trixie`, `8.3-cli-trixie`, `8.3.25-trixie`, `8.3-trixie`, `8.3.25-cli`, `8.3-cli`, `8.3.25`, `8.3`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/cli/Dockerfile) - [`8.3.25-apache-trixie`, `8.3-apache-trixie`, `8.3.25-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/apache/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index 46f331084840..da7c3bea74ef 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -40,29 +40,29 @@ WARNING: - [`11.0.11-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.45-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.45-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.45-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.45`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.46-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.46-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.46-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.46`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.45-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.45-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.45-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.46-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.46-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.46-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.45-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.46-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.45-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.46-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.45-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.45-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.45-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.46-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.46-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.46-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.45-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.45-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.45-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.46-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.46-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.46-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.45-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.46-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.45-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.46-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.45-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.45-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.45-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.46-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.46-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.46-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.45-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.45-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.45-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.46-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.46-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.46-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.45-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.46-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.45-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/ea323b33f5c3f8e913b6c0827dd70926131deaff/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.46-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) From 85d02992cfe9c1f0272c5cd4c83433b2335af216 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Sep 2025 10:11:49 -0700 Subject: [PATCH 2518/2686] Run update.sh --- archlinux/README.md | 6 +++--- erlang/README.md | 18 +++++++++--------- fedora/README.md | 8 ++++---- nextcloud/README.md | 12 ++++++------ openjdk/README.md | 40 ++++++++++++++++++++-------------------- 5 files changed, 42 insertions(+), 42 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 2dbb07312ed7..d78bd6c2379f 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.base) +- [`latest`, `base`, `base-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.base) -- [`base-devel`, `base-devel-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250907.0.417472`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/0839d1f828eda0827f1174e222caf0c785dbb2c6/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index 9fde00b85a9e..d4c68b633f5c 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.2.0`, `28.0.2`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/Dockerfile) +- [`28.0.4.0`, `28.0.4`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/Dockerfile) -- [`28.0.2.0-slim`, `28.0.2-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/slim/Dockerfile) +- [`28.0.4.0-slim`, `28.0.4-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/slim/Dockerfile) -- [`28.0.2.0-alpine`, `28.0.2-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/28/alpine/Dockerfile) +- [`28.0.4.0-alpine`, `28.0.4-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/alpine/Dockerfile) -- [`27.3.4.2`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/Dockerfile) +- [`27.3.4.3`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/27/Dockerfile) -- [`27.3.4.2-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/slim/Dockerfile) +- [`27.3.4.3-slim`, `27.3.4-slim`, `27.3-slim`, `27-slim`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/27/slim/Dockerfile) -- [`27.3.4.2-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/a46175aaaa1c300488684f970e17000be6850fdd/27/alpine/Dockerfile) +- [`27.3.4.3-alpine`, `27.3.4-alpine`, `27.3-alpine`, `27-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/27/alpine/Dockerfile) -- [`26.2.5.13`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/Dockerfile) +- [`26.2.5.15`, `26.2.5`, `26.2`, `26`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/26/Dockerfile) -- [`26.2.5.13-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/slim/Dockerfile) +- [`26.2.5.15-slim`, `26.2.5-slim`, `26.2-slim`, `26-slim`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/26/slim/Dockerfile) -- [`26.2.5.13-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/26/alpine/Dockerfile) +- [`26.2.5.15-alpine`, `26.2.5-alpine`, `26.2-alpine`, `26-alpine`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/26/alpine/Dockerfile) - [`25.3.2.21`, `25.3.2`, `25.3`, `25`](https://github.com/erlang/docker-erlang-otp/blob/ed3c77d4426badd6646abb7aff04d38612918848/25/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index 14d23bf5328f..bc34f1029d95 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a9a4036fcc1c7b2e5233133bc820e16e1c83b045/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/329bfefe2076a68058a801d302d52c6bd8ff82a9/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/cbe5182ce93fd79b89f4755692d5580e2d7f0555/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/83a2c0273cd8d9547c49ccfe78962cef90661081/x86_64/Dockerfile) -- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/c97da431e82cd76583b3b81135d696f735455341/x86_64/Dockerfile) +- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/af71a777fb06af9e191633ed37aaf1bda48fd844/x86_64/Dockerfile) -- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/007d94d9e9a5249a715326af844e0bd220161287/x86_64/Dockerfile) +- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/bf6e259070945891640c927fcbcdb98b56ec711d/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 8beb5779aa5a..c6a2d079a6aa 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.14-apache`, `30.0-apache`, `30-apache`, `30.0.14`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/apache/Dockerfile) +- [`30.0.15-apache`, `30.0-apache`, `30-apache`, `30.0.15`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/apache/Dockerfile) -- [`30.0.14-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/fpm/Dockerfile) +- [`30.0.15-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/fpm/Dockerfile) -- [`30.0.14-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/30/fpm-alpine/Dockerfile) +- [`30.0.15-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/fpm-alpine/Dockerfile) -- [`31.0.8-apache`, `31.0-apache`, `31-apache`, `apache`, `31.0.8`, `31.0`, `31`, `latest`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/apache/Dockerfile) +- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/apache/Dockerfile) -- [`31.0.8-fpm`, `31.0-fpm`, `31-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/fpm/Dockerfile) +- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/fpm/Dockerfile) -- [`31.0.8-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/943e55d314b4540c322fc9ac42e04dbda8ac01c1/31/fpm-alpine/Dockerfile) +- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index f72788f19bfd..ef75cc081562 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,25 +42,25 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-14-jdk-oraclelinux9`, `26-ea-14-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-14-jdk-oracle`, `26-ea-14-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-15-jdk-oraclelinux9`, `26-ea-15-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-15-jdk-oracle`, `26-ea-15-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-14-jdk-oraclelinux8`, `26-ea-14-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-15-jdk-oraclelinux8`, `26-ea-15-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-14-jdk-trixie`, `26-ea-14-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/trixie/Dockerfile) +- [`26-ea-15-jdk-trixie`, `26-ea-15-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/trixie/Dockerfile) -- [`26-ea-14-jdk-slim-trixie`, `26-ea-14-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-14-jdk-slim`, `26-ea-14-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-15-jdk-slim-trixie`, `26-ea-15-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-15-jdk-slim`, `26-ea-15-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-14-jdk-bookworm`, `26-ea-14-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/bookworm/Dockerfile) +- [`26-ea-15-jdk-bookworm`, `26-ea-15-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/bookworm/Dockerfile) -- [`26-ea-14-jdk-slim-bookworm`, `26-ea-14-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-15-jdk-slim-bookworm`, `26-ea-15-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-14-jdk-windowsservercore-ltsc2025`, `26-ea-14-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-15-jdk-windowsservercore-ltsc2025`, `26-ea-15-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-14-jdk-windowsservercore-ltsc2022`, `26-ea-14-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-15-jdk-windowsservercore-ltsc2022`, `26-ea-15-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-14-jdk-nanoserver-ltsc2025`, `26-ea-14-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-15-jdk-nanoserver-ltsc2025`, `26-ea-15-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-14-jdk-nanoserver-ltsc2022`, `26-ea-14-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-15-jdk-nanoserver-ltsc2022`, `26-ea-15-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) @@ -84,21 +84,21 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Shared Tags -- `26-ea-14-jdk`, `26-ea-14`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-15-jdk`, `26-ea-15`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-14-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-14-jdk-windowsservercore`, `26-ea-14-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-15-jdk-windowsservercore`, `26-ea-15-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-14-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-14-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-14-jdk-nanoserver`, `26-ea-14-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-15-jdk-nanoserver`, `26-ea-15-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-14-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-14-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/9d7ab64db9648df76f4ad9c2ab138696f4a72dd1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-15-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-15-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) - `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: From 4edfde6c9a80838256c315e4f5a93acec1324bab Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Sep 2025 11:10:39 -0700 Subject: [PATCH 2519/2686] Run update.sh --- mageia/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index 0fd95741a6cf..c54157a7e12e 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/d2adaebad9a7d4db0e1ad2881141497e6f334652/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/56f63e76f2588a3ad69ee13bacedb979bcfc2542/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/d2adaebad9a7d4db0e1ad2881141497e6f334652/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/56f63e76f2588a3ad69ee13bacedb979bcfc2542/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) From b0ac09c1306f1b556816a39d26390eee9e360ffa Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 15 Sep 2025 14:10:28 -0700 Subject: [PATCH 2520/2686] Run update.sh --- ghost/README.md | 8 ++++---- golang/README.md | 12 ++++++------ ubuntu/README.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index e0aa594b2654..5b68b88cfaa1 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.7`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/6/debian/Dockerfile) +- [`6.0.9`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/f2d920fb0f79d8ea79950da700178d3070812923/6/debian/Dockerfile) -- [`6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/6/alpine/Dockerfile) +- [`6.0.9-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f2d920fb0f79d8ea79950da700178d3070812923/6/alpine/Dockerfile) -- [`5.130.4`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/5/debian/Dockerfile) +- [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/80812d80f7ac88de34e1ddfe8c9601a572a63638/5/debian/Dockerfile) -- [`5.130.4-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/5d6813c52f8b6117d3bb694854ec3a92c0b23b56/5/alpine/Dockerfile) +- [`5.130.5-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/80812d80f7ac88de34e1ddfe8c9601a572a63638/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index bb6f332f1550..e64a0b41670a 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250906-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/trixie/Dockerfile) +- [`tip-20250912-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/trixie/Dockerfile) -- [`tip-20250906-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/bookworm/Dockerfile) +- [`tip-20250912-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/bookworm/Dockerfile) -- [`tip-20250906-alpine3.22`, `tip-alpine3.22`, `tip-20250906-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/alpine3.22/Dockerfile) +- [`tip-20250912-alpine3.22`, `tip-alpine3.22`, `tip-20250912-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/alpine3.22/Dockerfile) -- [`tip-20250906-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/alpine3.21/Dockerfile) +- [`tip-20250912-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250906`, `tip`: +- `tip-20250912`, `tip`: - - [`tip-20250906-trixie`](https://github.com/docker-library/golang/blob/7f84efabf8fdb8d62c683cbac739faa4a2b7aa3e/tip/trixie/Dockerfile) + - [`tip-20250912-trixie`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/ubuntu/README.md b/ubuntu/README.md index 08641ce5bdec..a667105d18ff 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,9 +26,9 @@ WARNING: - [`22.04`, `jammy-20250819`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250819-3f1e6c43&id=3f1e6c43e88f6d1d68c1393c04b3733060952321) -- [`24.04`, `noble-20250805`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250805-779a91e8&id=779a91e80d8ca0c4e26bf1639ade02c8dc9bb537) +- [`24.04`, `noble-20250910`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250910-0677e77f&id=0677e77f911c0f4af2e4cc2aad1c331804f1f08f) -- [`25.04`, `plucky-20250730`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250730-64382f68&id=64382f68a9c78883c68e8fd9c1632107a6d24c9f) +- [`25.04`, `plucky-20250910`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250910-53e52ebb&id=53e52ebbe5b75ff498faa31777d68374e27fd65a) - [`25.10`, `questing-20250830`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250830-c245f382&id=c245f3826f2631032e862a48f183fb528158d08a) From e63a91b841e441a0a47340e3c5afe812de26083b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Sep 2025 10:10:42 -0700 Subject: [PATCH 2521/2686] Run update.sh --- aerospike/README.md | 4 ++-- busybox/README.md | 16 ++++++------- jetty/README.md | 34 +++++++++++++-------------- julia/README.md | 26 +++++++++------------ rabbitmq/README.md | 8 +++---- ruby/README.md | 12 +++++----- swift/README.md | 56 ++++++++++++++++++++++++++------------------- 7 files changed, 80 insertions(+), 76 deletions(-) diff --git a/aerospike/README.md b/aerospike/README.md index c99f3817f34e..1f3a41c759b0 100644 --- a/aerospike/README.md +++ b/aerospike/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`ee-8.1.0.0`, `ee-8.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/9da77c0afc4fd756786dd36ba46211632c1911bd/enterprise/ubuntu24.04/Dockerfile) +- [`ee-8.1.0.1`, `ee-8.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/aca2fba6072cf602c24fb500e9f0d71ff404b135/enterprise/ubuntu24.04/Dockerfile) -- [`ce-8.1.0.0`, `ce-8.1.0.0_2`](https://github.com/aerospike/aerospike-server.docker/blob/9da77c0afc4fd756786dd36ba46211632c1911bd/community/ubuntu24.04/Dockerfile) +- [`ce-8.1.0.1`, `ce-8.1.0.1_1`](https://github.com/aerospike/aerospike-server.docker/blob/aca2fba6072cf602c24fb500e9f0d71ff404b135/community/ubuntu24.04/Dockerfile) # Quick reference (cont.) diff --git a/busybox/README.md b/busybox/README.md index 58a350a9e5a8..2ac00dffaed4 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/3fe52725c149a6966493eefe94d32a2704b6b7bf/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/jetty/README.md b/jetty/README.md index 5976103f3ad1..2e36e075662a 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -62,25 +62,25 @@ WARNING: - [`12.1.1-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.1-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk17/Dockerfile) -- [`12.0.26-jre21-alpine`, `12.0-jre21-alpine`, `12.0.26-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.27-jre21-alpine`, `12.0-jre21-alpine`, `12.0.27-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.26-jre21`, `12.0-jre21`, `12.0.26-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.27-jre21`, `12.0-jre21`, `12.0.27-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.26-jre17-alpine`, `12.0-jre17-alpine`, `12.0.26-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.27-jre17-alpine`, `12.0-jre17-alpine`, `12.0.27-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.26-jre17`, `12.0-jre17`, `12.0.26-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.27-jre17`, `12.0-jre17`, `12.0.27-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.26-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.26-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.27-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.27-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) -- [`12.0.26-jdk24`, `12.0-jdk24`, `12.0.26-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.27-jdk24`, `12.0-jdk24`, `12.0.27-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk24/Dockerfile) -- [`12.0.26-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.26-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.27-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.27-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.26`, `12.0`, `12.0.26-jdk21`, `12.0-jdk21`, `12.0.26-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.26-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.27`, `12.0`, `12.0.27-jdk21`, `12.0-jdk21`, `12.0.27-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.27-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.26-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.26-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.27-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.27-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.26-jdk17`, `12.0-jdk17`, `12.0.26-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.27-jdk17`, `12.0-jdk17`, `12.0.27-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.26-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.26-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -154,19 +154,19 @@ WARNING: - [`12.1.1-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk17/Dockerfile) -- [`12.0.26-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.27-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk24-al2023/Dockerfile) -- [`12.0.26-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.27-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.26-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.27-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.26-amazoncorretto`, `12.0-amazoncorretto`, `12.0.26-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.27-amazoncorretto`, `12.0-amazoncorretto`, `12.0.27-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.26-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.27-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.26-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.27-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.26-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.27-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.26-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 27376dd6e264..7ce7aa78dad7 100644 --- a/julia/README.md +++ b/julia/README.md @@ -36,17 +36,13 @@ WARNING: - [`1.12.0-rc2-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.6-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.11/trixie/Dockerfile) +- [`1.11.7-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) -- [`1.11.6-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/bookworm/Dockerfile) +- [`1.11.7-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/bookworm/Dockerfile) -- [`1.11.6-alpine3.22`, `1.11-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.11.6-alpine`, `1.11-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/alpine3.22/Dockerfile) +- [`1.11.7-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.11.6-alpine3.21`, `1.11-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/alpine3.21/Dockerfile) - -- [`1.11.6-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`1.11.6-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.7-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.10-trixie`, `1.10-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.10/trixie/Dockerfile) @@ -73,16 +69,16 @@ WARNING: - [`1.12.0-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.12.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.6`, `1.11`, `1`, `latest`: +- `1.11.7`, `1.11`, `1`, `latest`: - - [`1.11.6-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.11/trixie/Dockerfile) - - [`1.11.6-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.7-trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) + - [`1.11.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.6-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.7-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.11.6-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.11.6-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/7237d625608943c4717366d9bde4e014771ffefc/1.11/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.11.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - `1.10.10`, `1.10`: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index e1885d187c0b..29f2dc365f6c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.2`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/15586d8e781c0e58bab0ba91d0d87a0b36ff5229/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-beta.3`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/32e64e501148ddd350f89047589da9c175238262/4.2-rc/ubuntu/Dockerfile) -- [`4.2.0-beta.2-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) +- [`4.2.0-beta.3-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.2-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/15586d8e781c0e58bab0ba91d0d87a0b36ff5229/4.2-rc/alpine/Dockerfile) +- [`4.2.0-beta.3-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/32e64e501148ddd350f89047589da9c175238262/4.2-rc/alpine/Dockerfile) -- [`4.2.0-beta.2-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) +- [`4.2.0-beta.3-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) - [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/ubuntu/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index 52d0a86b4a83..4ec81edc0a91 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) -- [`3.4.5-trixie`, `3.4-trixie`, `3-trixie`, `trixie`, `3.4.5`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/trixie/Dockerfile) +- [`3.4.6-trixie`, `3.4-trixie`, `3-trixie`, `trixie`, `3.4.6`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/trixie/Dockerfile) -- [`3.4.5-slim-trixie`, `3.4-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.4.5-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/slim-trixie/Dockerfile) +- [`3.4.6-slim-trixie`, `3.4-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.4.6-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/slim-trixie/Dockerfile) -- [`3.4.5-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/bookworm/Dockerfile) +- [`3.4.6-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/bookworm/Dockerfile) -- [`3.4.5-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.4/slim-bookworm/Dockerfile) +- [`3.4.6-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/slim-bookworm/Dockerfile) -- [`3.4.5-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.5-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.22/Dockerfile) +- [`3.4.6-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.6-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/alpine3.22/Dockerfile) -- [`3.4.5-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/3c44d7ea4e3913a0792bc55cd4509150acd6ebcf/3.4/alpine3.21/Dockerfile) +- [`3.4.6-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/alpine3.21/Dockerfile) - [`3.3.9-trixie`, `3.3-trixie`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/trixie/Dockerfile) diff --git a/swift/README.md b/swift/README.md index e3f0c0aac363..a0a89838485d 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,25 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.3`, `6.1`, `6.1.3-noble`, `6.1-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/Dockerfile) +- [`6.2.0`, `6.2`, `6.2.0-noble`, `6.2-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/24.04/Dockerfile) -- [`6.1.3-slim`, `6.1-slim`, `6.1.3-noble-slim`, `6.1-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/slim/Dockerfile) +- [`6.2.0-slim`, `6.2-slim`, `6.2.0-noble-slim`, `6.2-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/24.04/slim/Dockerfile) -- [`6.1.3-jammy`, `6.1-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/Dockerfile) +- [`6.2.0-jammy`, `6.2-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/22.04/Dockerfile) -- [`6.1.3-jammy-slim`, `6.1-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/slim/Dockerfile) +- [`6.2.0-jammy-slim`, `6.2-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/22.04/slim/Dockerfile) -- [`6.1.3-bookworm`, `6.1-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/debian/12/Dockerfile) +- [`6.2.0-bookworm`, `6.2-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/debian/12/Dockerfile) -- [`6.1.3-amazonlinux2`, `6.1-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/Dockerfile) +- [`6.2.0-bookworm-slim`, `6.2-bookworm-slim`, `bookworm-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/debian/12/slim/Dockerfile) -- [`6.1.3-amazonlinux2-slim`, `6.1-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/slim/Dockerfile) +- [`6.2.0-amazonlinux2`, `6.2-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/amazonlinux/2/Dockerfile) -- [`6.1.3-rhel-ubi9`, `6.1-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/Dockerfile) +- [`6.2.0-amazonlinux2-slim`, `6.2-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/amazonlinux/2/slim/Dockerfile) -- [`6.1.3-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/slim/Dockerfile) +- [`6.2.0-rhel-ubi9`, `6.2-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/rhel-ubi/9/Dockerfile) -- [`6.1.3-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/windows/LTSC2022/Dockerfile) +- [`6.2.0-rhel-ubi9-slim`, `6.2-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/rhel-ubi/9/slim/Dockerfile) + +- [`6.2.0-windowsservercore-ltsc2022`, `6.2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/windows/LTSC2022/Dockerfile) + +- [`6.1.3`, `6.1`, `6.1.3-noble`, `6.1-noble`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/Dockerfile) + +- [`6.1.3-slim`, `6.1-slim`, `6.1.3-noble-slim`, `6.1-noble-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/slim/Dockerfile) + +- [`6.1.3-jammy`, `6.1-jammy`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/Dockerfile) + +- [`6.1.3-jammy-slim`, `6.1-jammy-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/22.04/slim/Dockerfile) + +- [`6.1.3-bookworm`, `6.1-bookworm`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/debian/12/Dockerfile) + +- [`6.1.3-amazonlinux2`, `6.1-amazonlinux2`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/Dockerfile) + +- [`6.1.3-amazonlinux2-slim`, `6.1-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/amazonlinux/2/slim/Dockerfile) + +- [`6.1.3-rhel-ubi9`, `6.1-rhel-ubi9`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/Dockerfile) + +- [`6.1.3-rhel-ubi9-slim`, `6.1-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/rhel-ubi/9/slim/Dockerfile) + +- [`6.1.3-windowsservercore-ltsc2022`, `6.1-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/windows/LTSC2022/Dockerfile) - [`6.0.3`, `6.0`, `6.0.3-noble`, `6.0-noble`](https://github.com/apple/swift-docker/blob/f44060cdf224436060d2df98a5c3f63f2600de63/6.0/ubuntu/24.04/Dockerfile) @@ -84,20 +106,6 @@ WARNING: - [`5.10.1-windowsservercore-ltsc2022`, `5.10-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/90888735fac23a3a5cd8f798d1d7de89bb5d47bb/5.10/windows/LTSC2022/Dockerfile) -- [`5.9.2`, `5.9`, `5.9.2-jammy`, `5.9-jammy`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/Dockerfile) - -- [`5.9.2-slim`, `5.9-slim`, `5.9.2-jammy-slim`, `5.9-jammy-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/ubuntu/22.04/slim/Dockerfile) - -- [`5.9.2-amazonlinux2`, `5.9-amazonlinux2`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/Dockerfile) - -- [`5.9.2-amazonlinux2-slim`, `5.9-amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/amazonlinux/2/slim/Dockerfile) - -- [`5.9.2-rhel-ubi9`, `5.9-rhel-ubi9`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/Dockerfile) - -- [`5.9.2-rhel-ubi9-slim`, `5.9-rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/51f0941d5f6d92af9df8aa89fa75841f5036c127/5.9/rhel-ubi/9/slim/Dockerfile) - -- [`5.9.2-windowsservercore-ltsc2022`, `5.9-windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/90888735fac23a3a5cd8f798d1d7de89bb5d47bb/5.9/windows/LTSC2022/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From f35a6035a26ebc06f4788765070d5cdf93ee6a5f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Sep 2025 11:10:55 -0700 Subject: [PATCH 2522/2686] Run update.sh --- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 490977de89b3..b31dce8c5d4d 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,11 +26,11 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/elasticsearch/Dockerfile) -- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/elasticsearch/Dockerfile) +- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/elasticsearch/Dockerfile) - [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/elasticsearch/Dockerfile) -- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/elasticsearch/Dockerfile) +- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/elasticsearch/Dockerfile) - [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/elasticsearch/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 3cdba8dce8d2..6f6549014f04 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,11 +28,11 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) -- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/kibana/Dockerfile) +- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/kibana/Dockerfile) - [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/kibana/Dockerfile) -- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/kibana/Dockerfile) +- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/kibana/Dockerfile) - [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/kibana/Dockerfile) diff --git a/logstash/README.md b/logstash/README.md index ec2c72f95022..ea42d0dc8386 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,11 +26,11 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/logstash/Dockerfile) -- [`8.18.6`](https://github.com/elastic/dockerfiles/blob/7836641e57ee2a2bc47adeaadc734373ddf49daf/logstash/Dockerfile) +- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/logstash/Dockerfile) - [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/logstash/Dockerfile) -- [`9.0.6`](https://github.com/elastic/dockerfiles/blob/ed9458305f1da1d4673e65c5354e5b34f1c8b8ca/logstash/Dockerfile) +- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/logstash/Dockerfile) - [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/logstash/Dockerfile) From 714ba0435043b5ed87dc94874a8ba0391f688402 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Sep 2025 16:10:45 -0700 Subject: [PATCH 2523/2686] Run update.sh --- joomla/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index c254ad90db57..6cc904b2e9c3 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-beta2`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta2-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta2-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta2-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/apache/Dockerfile) +- [`6.0.0-beta3`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta3-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta3-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta3-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/apache/Dockerfile) -- [`6.0.0-beta2-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-beta3-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-beta2-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/6.0.beta/php8.3/fpm/Dockerfile) +- [`6.0.0-beta3-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/fpm/Dockerfile) -- [`5.4.0-beta2-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/apache/Dockerfile) +- [`5.4.0-beta3-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/apache/Dockerfile) -- [`5.4.0-beta2-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-beta3-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-beta2-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.2/fpm/Dockerfile) +- [`5.4.0-beta3-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/fpm/Dockerfile) -- [`5.4.0-beta2`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta2-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta2-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta2-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/apache/Dockerfile) +- [`5.4.0-beta3`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta3-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta3-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta3-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/apache/Dockerfile) -- [`5.4.0-beta2-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-beta3-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-beta2-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/bcd2a5e3ad4f979e1e39149bf94e986f63fce1ac/5.4.beta/php8.3/fpm/Dockerfile) +- [`5.4.0-beta3-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/fpm/Dockerfile) - [`5.3.3-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/apache/Dockerfile) From e06d35bfb5dcbfd92b6b89a60e4efbaf8dd11d4b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 16 Sep 2025 17:11:00 -0700 Subject: [PATCH 2524/2686] Run update.sh --- varnish/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/varnish/README.md b/varnish/README.md index 4cb745b6641f..570709dc879d 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`fresh`, `7.7.3`, `7`, `7.7`, `latest`](https://github.com/varnish/docker-varnish/blob/db0ebcb17d6d719c1f3fb665b818de6d09c05c0f/fresh/debian/Dockerfile) +- [`fresh`, `8.0.0`, `8`, `8.0`, `latest`](https://github.com/varnish/docker-varnish/blob/ec128addad8eb92680ac7adb2f00f6a679a48be5/fresh/debian/Dockerfile) -- [`fresh-alpine`, `7.7.3-alpine`, `7-alpine`, `7.7-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/fresh/alpine/Dockerfile) +- [`fresh-alpine`, `8.0.0-alpine`, `8-alpine`, `8.0-alpine`, `alpine`](https://github.com/varnish/docker-varnish/blob/ec128addad8eb92680ac7adb2f00f6a679a48be5/fresh/alpine/Dockerfile) -- [`old`, `7.6.5`, `7.6`](https://github.com/varnish/docker-varnish/blob/db0ebcb17d6d719c1f3fb665b818de6d09c05c0f/old/debian/Dockerfile) +- [`old`, `7.7.3`, `7.7`](https://github.com/varnish/docker-varnish/blob/ec128addad8eb92680ac7adb2f00f6a679a48be5/old/debian/Dockerfile) -- [`old-alpine`, `7.6.5-alpine`, `7.6-alpine`](https://github.com/varnish/docker-varnish/blob/047117647276c4e83847b69899ce81283a2a4270/old/alpine/Dockerfile) +- [`old-alpine`, `7.7.3-alpine`, `7.7-alpine`](https://github.com/varnish/docker-varnish/blob/ec128addad8eb92680ac7adb2f00f6a679a48be5/old/alpine/Dockerfile) - [`stable`, `6.0.16`, `6.0`](https://github.com/varnish/docker-varnish/blob/2c2b9d92008b7623bd837cbb542ae02061d9a598/stable/debian/Dockerfile) From bf55c5de30cbf13ecd35be7adc5fcc4005198f2b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Sep 2025 11:11:16 -0700 Subject: [PATCH 2525/2686] Run update.sh --- amazoncorretto/README.md | 110 ++++++++++++++++++++++----------------- erlang/README.md | 6 +-- sapmachine/README.md | 72 ++++++++++++------------- 3 files changed, 101 insertions(+), 87 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 484cd21487b2..971cc8efe54e 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,115 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.21/Dockerfile) -- [`8-alpine3.22`, `8u462-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jdk/alpine/3.22/Dockerfile) +- [`8-alpine3.22`, `8u462-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.22/Dockerfile) -- [`8-alpine3.22-jre`, `8u462-alpine3.22-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/8/jre/alpine/3.22/Dockerfile) +- [`8-alpine3.22-jre`, `8u462-alpine3.22-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.22/Dockerfile) -- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2/Dockerfile) -- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.21/Dockerfile) -- [`11-alpine3.22`, `11.0.28-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/11/jdk/alpine/3.22/Dockerfile) +- [`11-alpine3.22`, `11.0.28-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.22/Dockerfile) -- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2/Dockerfile) -- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.21/Dockerfile) -- [`17-alpine3.22`, `17.0.16-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/17/jdk/alpine/3.22/Dockerfile) +- [`17-alpine3.22`, `17.0.16-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.22/Dockerfile) -- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/headful/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.21/Dockerfile) -- [`21-alpine3.22`, `21.0.8-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/21/jdk/alpine/3.22/Dockerfile) +- [`21-alpine3.22`, `21.0.8-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.22/Dockerfile) -- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/al2023/Dockerfile) +- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/al2023/Dockerfile) -- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/headless/al2023/Dockerfile) +- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/headless/al2023/Dockerfile) -- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/headful/al2023/Dockerfile) +- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/headful/al2023/Dockerfile) -- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.19/Dockerfile) +- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.19/Dockerfile) -- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.20/Dockerfile) +- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.20/Dockerfile) -- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.21/Dockerfile) +- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.21/Dockerfile) -- [`24-alpine3.22`, `24.0.2-alpine3.22`, `24-alpine3.22-full`, `24-alpine3.22-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/6535c12e178b5e884d6de047dad2af85613c4911/24/jdk/alpine/3.22/Dockerfile) +- [`24-alpine3.22`, `24.0.2-alpine3.22`, `24-alpine3.22-full`, `24-alpine3.22-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.22/Dockerfile) + +- [`25-al2023`, `25.0.0-al2023`, `25-al2023-jdk`, `25`, `25-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/al2023/Dockerfile) + +- [`25-al2023-headless`, `25.0.0-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/headless/al2023/Dockerfile) + +- [`25-al2023-headful`, `25.0.0-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/headful/al2023/Dockerfile) + +- [`25-alpine3.19`, `25.0.0-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.19/Dockerfile) + +- [`25-alpine3.20`, `25.0.0-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.20/Dockerfile) + +- [`25-alpine3.21`, `25.0.0-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.21/Dockerfile) + +- [`25-alpine3.22`, `25.0.0-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.0-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.22/Dockerfile) # Quick reference (cont.) diff --git a/erlang/README.md b/erlang/README.md index d4c68b633f5c..2e79be21530d 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`28.0.4.0`, `28.0.4`, `28.0`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/Dockerfile) +- [`28.1.0.0`, `28.1.0`, `28.1`, `28`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/6d241956bbead4df3fefca19c84c5b4908a5d353/28/Dockerfile) -- [`28.0.4.0-slim`, `28.0.4-slim`, `28.0-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/slim/Dockerfile) +- [`28.1.0.0-slim`, `28.1.0-slim`, `28.1-slim`, `28-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/6d241956bbead4df3fefca19c84c5b4908a5d353/28/slim/Dockerfile) -- [`28.0.4.0-alpine`, `28.0.4-alpine`, `28.0-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/28/alpine/Dockerfile) +- [`28.1.0.0-alpine`, `28.1.0-alpine`, `28.1-alpine`, `28-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/6d241956bbead4df3fefca19c84c5b4908a5d353/28/alpine/Dockerfile) - [`27.3.4.3`, `27.3.4`, `27.3`, `27`](https://github.com/erlang/docker-erlang-otp/blob/c57e3a8731074ddd85f016d48104e4f08cb2a90a/27/Dockerfile) diff --git a/sapmachine/README.md b/sapmachine/README.md index 57b4ceeb6d58..7e9285a621d6 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,93 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `24`, `24-ubuntu`, `24.0.2`, `24.0.2-ubuntu`, `24-jdk`, `24-jdk-ubuntu`, `24.0.2-jdk`, `24.0.2-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `24-ubuntu-noble`, `24-ubuntu-24.04`, `24-jdk-ubuntu-noble`, `24-jdk-ubuntu-24.04`, `24.0.2-ubuntu-noble`, `24.0.2-ubuntu-24.04`, `24.0.2-jdk-ubuntu-noble`, `24.0.2-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `lts`, `lts-ubuntu`, `25`, `25-ubuntu`, `25-jdk`, `25-jdk-ubuntu`, `lts-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `25-ubuntu-noble`, `25-ubuntu-24.04`, `25-jdk-ubuntu-noble`, `25-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless`, `jdk-headless-ubuntu`, `24-jdk-headless`, `24-jdk-headless-ubuntu`, `24.0.2-jdk-headless`, `24.0.2-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `24-jdk-headless-ubuntu-noble`, `24-jdk-headless-ubuntu-24.04`, `24.0.2-jdk-headless-ubuntu-noble`, `24.0.2-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless`, `jdk-headless-ubuntu`, `25-jdk-headless`, `25-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `25-jdk-headless-ubuntu-noble`, `25-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre`, `jre-ubuntu`, `24-jre`, `24-jre-ubuntu`, `24.0.2-jre`, `24.0.2-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `24-jre-ubuntu-noble`, `24-jre-ubuntu-24.04`, `24.0.2-jre-ubuntu-noble`, `24.0.2-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jre/Dockerfile) +- [`jre`, `jre-ubuntu`, `25-jre`, `25-jre-ubuntu`, `lts-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `25-jre-ubuntu-noble`, `25-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless`, `jre-headless-ubuntu`, `24-jre-headless`, `24-jre-headless-ubuntu`, `24.0.2-jre-headless`, `24.0.2-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `24-jre-headless-ubuntu-noble`, `24-jre-headless-ubuntu-24.04`, `24.0.2-jre-headless-ubuntu-noble`, `24.0.2-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless`, `jre-headless-ubuntu`, `25-jre-headless`, `25-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `25-jre-headless-ubuntu-noble`, `25-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `24-ubuntu-jammy`, `24-ubuntu-22.04`, `24-jdk-ubuntu-jammy`, `24-jdk-ubuntu-22.04`, `24.0.2-ubuntu-jammy`, `24.0.2-ubuntu-22.04`, `24.0.2-jdk-ubuntu-jammy`, `24.0.2-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `25-ubuntu-jammy`, `25-ubuntu-22.04`, `25-jdk-ubuntu-jammy`, `25-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `24-jdk-headless-ubuntu-jammy`, `24-jdk-headless-ubuntu-22.04`, `24.0.2-jdk-headless-ubuntu-jammy`, `24.0.2-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `25-jdk-headless-ubuntu-jammy`, `25-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jdk-headless/Dockerfile) -- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `24-jre-ubuntu-jammy`, `24-jre-ubuntu-22.04`, `24.0.2-jre-ubuntu-jammy`, `24.0.2-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jre/Dockerfile) +- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `25-jre-ubuntu-jammy`, `25-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jre/Dockerfile) -- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `24-jre-headless-ubuntu-jammy`, `24-jre-headless-ubuntu-22.04`, `24.0.2-jre-headless-ubuntu-jammy`, `24.0.2-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/ubuntu/22_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `25-jre-headless-ubuntu-jammy`, `25-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jre-headless/Dockerfile) -- [`alpine`, `jdk-alpine`, `24-alpine`, `24.0.2-alpine`, `24-jdk-alpine`, `24.0.2-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `24-alpine-3.22`, `24-jdk-alpine-3.22`, `24.0.2-alpine-3.22`, `24.0.2-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_22/jdk/Dockerfile) +- [`alpine`, `jdk-alpine`, `lts-alpine`, `25-alpine`, `lts-jdk-alpine`, `25-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `25-alpine-3.22`, `25-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_22/jdk/Dockerfile) -- [`jre-alpine`, `24-jre-alpine`, `24.0.2-jre-alpine`, `jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.2-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_22/jre/Dockerfile) +- [`jre-alpine`, `lts-jre-alpine`, `25-jre-alpine`, `jre-alpine-3.22`, `lts-jre-alpine-3.22`, `25-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_22/jre/Dockerfile) -- [`alpine-3.21`, `jdk-alpine-3.21`, `24-alpine-3.21`, `24-jdk-alpine-3.21`, `24.0.2-alpine-3.21`, `24.0.2-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_21/jdk/Dockerfile) +- [`alpine-3.21`, `jdk-alpine-3.21`, `lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `25-alpine-3.21`, `25-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_21/jdk/Dockerfile) -- [`jre-alpine-3.21`, `24-jre-alpine-3.21`, `24.0.2-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/7c561e5b3845d2d64659cef30adf35abfe9b1407/dockerfiles/24/alpine/3_21/jre/Dockerfile) +- [`jre-alpine-3.21`, `lts-jre-alpine-3.21`, `25-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_21/jre/Dockerfile) -- [`lts`, `lts-ubuntu`, `21`, `21-ubuntu`, `21.0.8`, `21.0.8-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.8-jdk`, `21.0.8-jdk-ubuntu`, `lts-jdk-ubuntu`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.8-ubuntu-noble`, `21.0.8-ubuntu-24.04`, `21.0.8-jdk-ubuntu-noble`, `21.0.8-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`21`, `21-ubuntu`, `21.0.8`, `21.0.8-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.8-jdk`, `21.0.8-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.8-ubuntu-noble`, `21.0.8-ubuntu-24.04`, `21.0.8-jdk-ubuntu-noble`, `21.0.8-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.8-jdk-headless`, `21.0.8-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.8-jdk-headless-ubuntu-noble`, `21.0.8-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.8-jdk-headless`, `21.0.8-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.8-jdk-headless-ubuntu-noble`, `21.0.8-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre`, `21-jre-ubuntu`, `21.0.8-jre`, `21.0.8-jre-ubuntu`, `lts-jre-ubuntu`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.8-jre-ubuntu-noble`, `21.0.8-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre`, `21-jre-ubuntu`, `21.0.8-jre`, `21.0.8-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.8-jre-ubuntu-noble`, `21.0.8-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.8-jre-headless`, `21.0.8-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.8-jre-headless-ubuntu-noble`, `21.0.8-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.8-jre-headless`, `21.0.8-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.8-jre-headless-ubuntu-noble`, `21.0.8-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.8-ubuntu-jammy`, `21.0.8-ubuntu-22.04`, `21.0.8-jdk-ubuntu-jammy`, `21.0.8-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.8-ubuntu-jammy`, `21.0.8-ubuntu-22.04`, `21.0.8-jdk-ubuntu-jammy`, `21.0.8-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.8-jdk-headless-ubuntu-jammy`, `21.0.8-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.8-jdk-headless-ubuntu-jammy`, `21.0.8-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.8-jre-ubuntu-jammy`, `21.0.8-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.8-jre-ubuntu-jammy`, `21.0.8-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.8-jre-headless-ubuntu-jammy`, `21.0.8-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.8-jre-headless-ubuntu-jammy`, `21.0.8-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`lts-alpine`, `21-alpine`, `21.0.8-alpine`, `lts-jdk-alpine`, `21-jdk-alpine`, `21.0.8-jdk-alpine`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.8-alpine-3.22`, `21.0.8-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_22/jdk/Dockerfile) +- [`21-alpine`, `21.0.8-alpine`, `21-jdk-alpine`, `21.0.8-jdk-alpine`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.8-alpine-3.22`, `21.0.8-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_22/jdk/Dockerfile) -- [`lts-jre-alpine`, `21-jre-alpine`, `21.0.8-jre-alpine`, `lts-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.8-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_22/jre/Dockerfile) +- [`21-jre-alpine`, `21.0.8-jre-alpine`, `21-jre-alpine-3.22`, `21.0.8-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_22/jre/Dockerfile) -- [`lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.8-alpine-3.21`, `21.0.8-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_21/jdk/Dockerfile) +- [`21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.8-alpine-3.21`, `21.0.8-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`lts-jre-alpine-3.21`, `21-jre-alpine-3.21`, `21.0.8-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/alpine/3_21/jre/Dockerfile) +- [`21-jre-alpine-3.21`, `21.0.8-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_21/jre/Dockerfile) - [`17`, `17-ubuntu`, `17.0.16`, `17.0.16-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.16-jdk`, `17.0.16-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.16-ubuntu-noble`, `17.0.16-ubuntu-24.04`, `17.0.16-jdk-ubuntu-noble`, `17.0.16-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) - [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.16-jdk-headless`, `17.0.16-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.16-jdk-headless-ubuntu-noble`, `17.0.16-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre`, `17-jre-ubuntu`, `17.0.16-jre`, `17.0.16-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.16-jre-ubuntu-noble`, `17.0.16-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre`, `17-jre-ubuntu`, `17.0.16-jre`, `17.0.16-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.16-jre-ubuntu-noble`, `17.0.16-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.16-jre-headless`, `17.0.16-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.16-jre-headless-ubuntu-noble`, `17.0.16-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.16-jre-headless`, `17.0.16-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.16-jre-headless-ubuntu-noble`, `17.0.16-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) - [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.16-ubuntu-jammy`, `17.0.16-ubuntu-22.04`, `17.0.16-jdk-ubuntu-jammy`, `17.0.16-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) - [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.16-jdk-headless-ubuntu-jammy`, `17.0.16-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.16-jre-ubuntu-jammy`, `17.0.16-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.16-jre-ubuntu-jammy`, `17.0.16-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.16-jre-headless-ubuntu-jammy`, `17.0.16-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.16-jre-headless-ubuntu-jammy`, `17.0.16-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-alpine`, `17.0.16-alpine`, `17-jdk-alpine`, `17.0.16-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.16-alpine-3.22`, `17.0.16-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_22/jdk/Dockerfile) +- [`17-alpine`, `17.0.16-alpine`, `17-jdk-alpine`, `17.0.16-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.16-alpine-3.22`, `17.0.16-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_22/jdk/Dockerfile) -- [`17-jre-alpine`, `17.0.16-jre-alpine`, `17-jre-alpine-3.22`, `17.0.16-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_22/jre/Dockerfile) +- [`17-jre-alpine`, `17.0.16-jre-alpine`, `17-jre-alpine-3.22`, `17.0.16-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_22/jre/Dockerfile) -- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.16-alpine-3.21`, `17.0.16-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_21/jdk/Dockerfile) +- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.16-alpine-3.21`, `17.0.16-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`17-jre-alpine-3.21`, `17.0.16-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/alpine/3_21/jre/Dockerfile) +- [`17-jre-alpine-3.21`, `17.0.16-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_21/jre/Dockerfile) - [`11`, `11-ubuntu`, `11.0.28`, `11.0.28-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.28-jdk`, `11.0.28-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.28-ubuntu-noble`, `11.0.28-ubuntu-24.04`, `11.0.28-jdk-ubuntu-noble`, `11.0.28-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) - [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.28-jdk-headless`, `11.0.28-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.28-jdk-headless-ubuntu-noble`, `11.0.28-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre`, `11-jre-ubuntu`, `11.0.28-jre`, `11.0.28-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.28-jre-ubuntu-noble`, `11.0.28-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre`, `11-jre-ubuntu`, `11.0.28-jre`, `11.0.28-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.28-jre-ubuntu-noble`, `11.0.28-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.28-jre-headless`, `11.0.28-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.28-jre-headless-ubuntu-noble`, `11.0.28-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.28-jre-headless`, `11.0.28-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.28-jre-headless-ubuntu-noble`, `11.0.28-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) - [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.28-ubuntu-jammy`, `11.0.28-ubuntu-22.04`, `11.0.28-jdk-ubuntu-jammy`, `11.0.28-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) - [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.28-jdk-headless-ubuntu-jammy`, `11.0.28-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.28-jre-ubuntu-jammy`, `11.0.28-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.28-jre-ubuntu-jammy`, `11.0.28-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.28-jre-headless-ubuntu-jammy`, `11.0.28-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.28-jre-headless-ubuntu-jammy`, `11.0.28-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) # Quick reference (cont.) From e84e2cc91fbd254190548cac958d3d51a46f6fad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Sep 2025 12:10:45 -0700 Subject: [PATCH 2526/2686] Run update.sh --- openjdk/README.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/openjdk/README.md b/openjdk/README.md index ef75cc081562..852bbaaa908e 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -62,26 +62,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`26-ea-15-jdk-nanoserver-ltsc2022`, `26-ea-15-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25-rc-jdk-oraclelinux9`, `25-rc-oraclelinux9`, `25-jdk-oraclelinux9`, `25-oraclelinux9`, `25-rc-jdk-oracle`, `25-rc-oracle`, `25-jdk-oracle`, `25-oracle`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) - -- [`25-rc-jdk-oraclelinux8`, `25-rc-oraclelinux8`, `25-jdk-oraclelinux8`, `25-oraclelinux8`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux8/Dockerfile) - -- [`25-rc-jdk-trixie`, `25-rc-trixie`, `25-jdk-trixie`, `25-trixie`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/trixie/Dockerfile) - -- [`25-rc-jdk-slim-trixie`, `25-rc-slim-trixie`, `25-jdk-slim-trixie`, `25-slim-trixie`, `25-rc-jdk-slim`, `25-rc-slim`, `25-jdk-slim`, `25-slim`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/slim-trixie/Dockerfile) - -- [`25-rc-jdk-bookworm`, `25-rc-bookworm`, `25-jdk-bookworm`, `25-bookworm`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/bookworm/Dockerfile) - -- [`25-rc-jdk-slim-bookworm`, `25-rc-slim-bookworm`, `25-jdk-slim-bookworm`, `25-slim-bookworm`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/slim-bookworm/Dockerfile) - -- [`25-rc-jdk-windowsservercore-ltsc2025`, `25-rc-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`25-rc-jdk-windowsservercore-ltsc2022`, `25-rc-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`25-rc-jdk-nanoserver-ltsc2025`, `25-rc-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - -- [`25-rc-jdk-nanoserver-ltsc2022`, `25-rc-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - ## Shared Tags - `26-ea-15-jdk`, `26-ea-15`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: @@ -100,22 +80,6 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea - [`26-ea-15-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - [`26-ea-15-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25-rc-jdk`, `25-rc`, `25-jdk`, `25`: - - - [`25-rc-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/oraclelinux9/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- `25-rc-jdk-windowsservercore`, `25-rc-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - - [`25-rc-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25-rc-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/86aa1e4688f5a8a814aa56a023223847f9a907f3/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) - -- `25-rc-jdk-nanoserver`, `25-rc-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - - [`25-rc-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25-rc-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/0ef4c9faaa4fc9072be73522f4bbd5298a098505/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 3aad4eaf2e309e51295d1875a90256cc934d7391 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 17 Sep 2025 13:10:34 -0700 Subject: [PATCH 2527/2686] Run update.sh --- influxdb/README.md | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index 4f5cf537bef2..ea5cbdab1c92 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,33 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/Dockerfile) +- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/alpine/Dockerfile) +- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/data/Dockerfile) +- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/data/alpine/Dockerfile) +- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/meta/Dockerfile) +- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/meta/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/data/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/meta/Dockerfile) +- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/data/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/data/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/2.7/Dockerfile) +- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/meta/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/2.7/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/meta/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/3.4-core/Dockerfile) +- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/ae3563eebd7fcb47f8df8bd62a937e7669a3440a/influxdb/3.4-enterprise/Dockerfile) +- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/alpine/Dockerfile) + +- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/meta/Dockerfile) + +- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/meta/alpine/Dockerfile) + +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/2.7/Dockerfile) + +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/2.7/alpine/Dockerfile) + +- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/3.4-core/Dockerfile) + +- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) From 6835cb40a75205f654f79a109f8dba696be19ae8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Sep 2025 12:10:58 -0700 Subject: [PATCH 2528/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- elasticsearch/README.md | 4 ++-- kibana/README.md | 4 ++-- logstash/README.md | 4 ++-- odoo/README.md | 6 +++--- rust/README.md | 18 +++++++++--------- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index fa86ddd84a8d..1170b9d98508 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.2`, `25.8.2-jammy`, `25.8.2.29`, `25.8.2.29-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.8.2.29/Dockerfile.ubuntu) +- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.4`, `25.8.4-jammy`, `25.8.4.13`, `25.8.4.13-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.8.4.13/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.7.6.21/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.7.6.21/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.11`, `25.6.11-jammy`, `25.6.11.18`, `25.6.11.18-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.6.11.18/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.12`, `25.6.12-jammy`, `25.6.12.10`, `25.6.12.10-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.6.12.10/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/148f10dce5100e5fbb56a9b040afb59b9d56e8f7/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index b31dce8c5d4d..6ab6cec8f24a 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,11 +28,11 @@ WARNING: - [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/elasticsearch/Dockerfile) -- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/elasticsearch/Dockerfile) +- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/elasticsearch/Dockerfile) - [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/elasticsearch/Dockerfile) -- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/elasticsearch/Dockerfile) +- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 6f6549014f04..384ae21f0340 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -30,11 +30,11 @@ WARNING: - [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/kibana/Dockerfile) -- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/kibana/Dockerfile) +- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/kibana/Dockerfile) - [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/kibana/Dockerfile) -- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/kibana/Dockerfile) +- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index ea42d0dc8386..5525217521ab 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,11 +28,11 @@ WARNING: - [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/logstash/Dockerfile) -- [`8.19.3`](https://github.com/elastic/dockerfiles/blob/bb9cae645a6e1ab42b03eb2ca3ec6bc51f9cf1aa/logstash/Dockerfile) +- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/logstash/Dockerfile) - [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/logstash/Dockerfile) -- [`9.1.3`](https://github.com/elastic/dockerfiles/blob/0cb7c2f8b7a514cbb15b94350f8254be692e352e/logstash/Dockerfile) +- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/logstash/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 7b65b4a77c8d..9e1feee4bea5 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0-20250909`, `18.0`, `18`, `latest`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/18.0/Dockerfile) +- [`19.0-20250918`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/19.0/Dockerfile) -- [`17.0-20250909`, `17.0`, `17`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/17.0/Dockerfile) +- [`18.0-20250918`, `18.0`, `18`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/18.0/Dockerfile) -- [`16.0-20250909`, `16.0`, `16`](https://github.com/odoo/docker/blob/5229f719d751ea7f375f48b8ba8483894d04ab63/16.0/Dockerfile) +- [`17.0-20250918`, `17.0`, `17`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/17.0/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index 2d8151747da9..d80a7269b59f 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.89-bullseye`, `1.89.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.90-bullseye`, `1.90.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.89-slim-bullseye`, `1.89.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.90-slim-bullseye`, `1.90.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.89-bookworm`, `1.89.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.90-bookworm`, `1.90.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.89-slim-bookworm`, `1.89.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.90-slim-bookworm`, `1.90.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.89-trixie`, `1.89.0-trixie`, `trixie`, `1`, `1.89`, `1.89.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/4a8b913f00f3a52547c2c6e9487e0b5d5aecabbf/stable/trixie/Dockerfile) +- [`1-trixie`, `1.90-trixie`, `1.90.0-trixie`, `trixie`, `1`, `1.90`, `1.90.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.89-slim-trixie`, `1.89.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.89-slim`, `1.89.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/4a8b913f00f3a52547c2c6e9487e0b5d5aecabbf/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.90-slim-trixie`, `1.90.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.90-slim`, `1.90.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/trixie/slim/Dockerfile) -- [`1-alpine3.20`, `1.89-alpine3.20`, `1.89.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.90-alpine3.20`, `1.90.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.89-alpine3.21`, `1.89.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.90-alpine3.21`, `1.90.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.89-alpine3.22`, `1.89.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.89-alpine`, `1.89.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/97d440079ab3d6dc6895557f7a2a13c7280c5521/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.90-alpine3.22`, `1.90.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.90-alpine`, `1.90.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.22/Dockerfile) # Quick reference (cont.) From 9b356ebfe7492153de899aceecec55ae4abe832c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Sep 2025 14:10:43 -0700 Subject: [PATCH 2529/2686] Run update.sh --- python/README.md | 30 +++++++++++++++--------------- wordpress/README.md | 16 ++++++++-------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/python/README.md b/python/README.md index c294f04290a6..bd097288b814 100644 --- a/python/README.md +++ b/python/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`3.14.0rc2-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/trixie/Dockerfile) +- [`3.14.0rc3-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/trixie/Dockerfile) -- [`3.14.0rc2-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc2-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/slim-trixie/Dockerfile) +- [`3.14.0rc3-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/slim-trixie/Dockerfile) -- [`3.14.0rc2-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/bookworm/Dockerfile) +- [`3.14.0rc3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/bookworm/Dockerfile) -- [`3.14.0rc2-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0rc3-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/slim-bookworm/Dockerfile) -- [`3.14.0rc2-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc2-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0rc3-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/alpine3.22/Dockerfile) -- [`3.14.0rc2-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0rc3-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/alpine3.21/Dockerfile) -- [`3.14.0rc2-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0rc3-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0rc2-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0rc3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.13.7-trixie`, `3.13-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/trixie/Dockerfile) @@ -110,16 +110,16 @@ WARNING: ## Shared Tags -- `3.14.0rc2`, `3.14-rc`: +- `3.14.0rc3`, `3.14-rc`: - - [`3.14.0rc2-trixie`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/trixie/Dockerfile) - - [`3.14.0rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc3-trixie`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/trixie/Dockerfile) + - [`3.14.0rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0rc2-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0rc3-windowsservercore`, `3.14-rc-windowsservercore`: - - [`3.14.0rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/19c93d12094b07ecc21f67144a309c2fa0a10ef0/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `3.13.7`, `3.13`, `3`, `latest`: diff --git a/wordpress/README.md b/wordpress/README.md index c1228b2396d1..73cc26aa8a1d 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -30,17 +30,17 @@ WARNING: - [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/apache/Dockerfile) +- [`6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/apache/Dockerfile) -- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm/Dockerfile) +- [`6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm/Dockerfile) -- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/apache/Dockerfile) +- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/apache/Dockerfile) -- [`6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm/Dockerfile) +- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm/Dockerfile) -- [`6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm-alpine/Dockerfile) - [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/apache/Dockerfile) @@ -50,9 +50,9 @@ WARNING: - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) -- [`cli-2.12.0`, `cli-2.12`, `cli-2`, `cli`, `cli-2.12.0-php8.2`, `cli-2.12-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.2/alpine/Dockerfile) +- [`cli-2.12.0-php8.2`, `cli-2.12-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.2/alpine/Dockerfile) -- [`cli-2.12.0-php8.3`, `cli-2.12-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.3/alpine/Dockerfile) +- [`cli-2.12.0`, `cli-2.12`, `cli-2`, `cli`, `cli-2.12.0-php8.3`, `cli-2.12-php8.3`, `cli-2-php8.3`, `cli-php8.3`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.3/alpine/Dockerfile) - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) From 55fd72da1e9587be4967c4354bc35ce5e4f8320d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Sep 2025 15:11:19 -0700 Subject: [PATCH 2530/2686] Run update.sh --- maven/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/maven/README.md b/maven/README.md index f97ef3136832..abb5488b6192 100644 --- a/maven/README.md +++ b/maven/README.md @@ -32,6 +32,8 @@ WARNING: - [`3.9.11-eclipse-temurin-17-noble`, `3.9.11-eclipse-temurin-17`, `3.9-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17-noble`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-17-noble/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-17-noble`, `4.0.0-rc-4-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-17-noble-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-alpine/Dockerfile) - [`3.9.11-eclipse-temurin-21-noble`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9.11-eclipse-temurin-21`, `3.9-eclipse-temurin-21-noble`, `3.9`, `3.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3-eclipse-temurin-21-noble`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`, `3-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-21-noble/Dockerfile) @@ -58,7 +60,7 @@ WARNING: - [`3.9.11-amazoncorretto-11-alpine`, `3.9-amazoncorretto-11-alpine`, `3-amazoncorretto-11-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-trixie`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-trixie`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-11-debian/Dockerfile) +- [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-trixie`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-trixie`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-11-debian/Dockerfile) - [`3.9.11-amazoncorretto-17`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17/Dockerfile) @@ -66,7 +68,7 @@ WARNING: - [`3.9.11-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-trixie`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-trixie`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-17-debian/Dockerfile) +- [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-trixie`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-trixie`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-17-debian/Dockerfile) - [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21/Dockerfile) @@ -74,7 +76,7 @@ WARNING: - [`3.9.11-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-trixie`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-trixie`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-21-debian/Dockerfile) +- [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-trixie`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-trixie`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-21-debian/Dockerfile) - [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) @@ -82,7 +84,7 @@ WARNING: - [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-trixie`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-trixie`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-24-debian/Dockerfile) +- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-trixie`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-trixie`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-24-debian/Dockerfile) - [`3.9.11-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8/Dockerfile) @@ -90,7 +92,7 @@ WARNING: - [`3.9.11-amazoncorretto-8-alpine`, `3.9-amazoncorretto-8-alpine`, `3-amazoncorretto-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8-alpine/Dockerfile) -- [`3.9.11-amazoncorretto-8-debian`, `3.9.11-amazoncorretto-8-debian-trixie`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-trixie`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-trixie`](https://github.com/carlossg/docker-maven/blob/c88438835c10762bc0724dc5d0a53503cce58757/amazoncorretto-8-debian/Dockerfile) +- [`3.9.11-amazoncorretto-8-debian`, `3.9.11-amazoncorretto-8-debian-trixie`, `3.9-amazoncorretto-8-debian`, `3.9-amazoncorretto-8-debian-trixie`, `3-amazoncorretto-8-debian`, `3-amazoncorretto-8-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-8-debian/Dockerfile) - [`3.9.11-sapmachine-11`, `3.9-sapmachine-11`, `3-sapmachine-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-11/Dockerfile) @@ -98,8 +100,6 @@ WARNING: - [`3.9.11-sapmachine-21`, `3.9.11-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-21/Dockerfile) -- [`3.9.11-sapmachine-24`, `3.9-sapmachine-24`, `3-sapmachine-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-24/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From dd593c264577106cbdebcd7f4f33d59ffe6fd5ac Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Sep 2025 10:10:58 -0700 Subject: [PATCH 2531/2686] Run update.sh --- backdrop/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backdrop/README.md b/backdrop/README.md index 4821ee51609b..3bed76afd3cb 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.31.0`, `1.31`, `1`, `1.31.0-apache`, `1.31-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/82f5f08f12c2e861cde61b7b4dac8ebd76f3ee1f/1/apache/Dockerfile) +- [`1.32.0`, `1.32`, `1`, `1.32.0-apache`, `1.32-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/c7b2ec4e51f6cd53fce2d04198130959b67cd0ec/1/apache/Dockerfile) -- [`1.31.0-fpm`, `1.31-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/82f5f08f12c2e861cde61b7b4dac8ebd76f3ee1f/1/fpm/Dockerfile) +- [`1.32.0-fpm`, `1.32-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/c7b2ec4e51f6cd53fce2d04198130959b67cd0ec/1/fpm/Dockerfile) # Quick reference (cont.) From da289a05bc1462b066390da6d8776274b702f971 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Sep 2025 11:10:58 -0700 Subject: [PATCH 2532/2686] Run update.sh --- gradle/README.md | 148 +++++++++++++++++++++++------------------------ 1 file changed, 74 insertions(+), 74 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index df2aabd671f5..8cf8d0be64f8 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,153 +24,153 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.0.0-jdk21`, `9.0-jdk21`, `9-jdk21`, `jdk21`, `9.0.0-jdk21-noble`, `9.0-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.0.0-jdk`, `9.0-jdk`, `9-jdk`, `jdk`, `9.0.0`, `9.0`, `9`, `9.0.0-jdk-noble`, `9.0-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.0.0-noble`, `9.0-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble/Dockerfile) +- [`9.1.0-jdk21`, `9.1-jdk21`, `9-jdk21`, `jdk21`, `9.1.0-jdk21-noble`, `9.1-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.1.0-jdk`, `9.1-jdk`, `9-jdk`, `jdk`, `9.1.0`, `9.1`, `9`, `9.1.0-jdk-noble`, `9.1-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.1.0-noble`, `9.1-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-noble/Dockerfile) -- [`9.0.0-jdk21-jammy`, `9.0-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.0.0-jdk-jammy`, `9.0-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.0.0-jammy`, `9.0-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy/Dockerfile) +- [`9.1.0-jdk21-jammy`, `9.1-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.1.0-jdk-jammy`, `9.1-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.1.0-jammy`, `9.1-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-jammy/Dockerfile) -- [`9.0.0-jdk21-alpine`, `9.0-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.0.0-jdk-alpine`, `9.0-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.0.0-alpine`, `9.0-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-alpine/Dockerfile) +- [`9.1.0-jdk21-alpine`, `9.1-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.1.0-jdk-alpine`, `9.1-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.1.0-alpine`, `9.1-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-alpine/Dockerfile) -- [`9.0.0-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.0.0-jdk21-corretto-al2023`, `9.0-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-corretto/Dockerfile) +- [`9.1.0-jdk21-corretto`, `9.1-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.1.0-jdk21-corretto-al2023`, `9.1-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-corretto/Dockerfile) -- [`9.0.0-jdk21-ubi`, `9.0-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.0.0-jdk21-ubi-minimal`, `9.0-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-ubi9/Dockerfile) +- [`9.1.0-jdk21-ubi`, `9.1-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.1.0-jdk21-ubi-minimal`, `9.1-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-ubi9/Dockerfile) -- [`9.0.0-jdk21-graal`, `9.0-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.0.0-jdk-graal`, `9.0-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.0.0-graal`, `9.0-graal`, `9-graal`, `graal`, `9.0.0-jdk21-graal-noble`, `9.0-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.0.0-jdk-graal-noble`, `9.0-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.0.0-graal-noble`, `9.0-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-noble-graal/Dockerfile) +- [`9.1.0-jdk21-graal`, `9.1-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.1.0-jdk-graal`, `9.1-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.1.0-graal`, `9.1-graal`, `9-graal`, `graal`, `9.1.0-jdk21-graal-noble`, `9.1-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.1.0-jdk-graal-noble`, `9.1-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.1.0-graal-noble`, `9.1-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-noble-graal/Dockerfile) -- [`9.0.0-jdk21-graal-jammy`, `9.0-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.0.0-jdk-graal-jammy`, `9.0-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.0.0-graal-jammy`, `9.0-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk21-jammy-graal/Dockerfile) +- [`9.1.0-jdk21-graal-jammy`, `9.1-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.1.0-jdk-graal-jammy`, `9.1-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.1.0-graal-jammy`, `9.1-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-jammy-graal/Dockerfile) -- [`9.0.0-jdk17`, `9.0-jdk17`, `9-jdk17`, `jdk17`, `9.0.0-jdk17-noble`, `9.0-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble/Dockerfile) +- [`9.1.0-jdk17`, `9.1-jdk17`, `9-jdk17`, `jdk17`, `9.1.0-jdk17-noble`, `9.1-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-noble/Dockerfile) -- [`9.0.0-jdk17-jammy`, `9.0-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy/Dockerfile) +- [`9.1.0-jdk17-jammy`, `9.1-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-jammy/Dockerfile) -- [`9.0.0-jdk17-alpine`, `9.0-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-alpine/Dockerfile) +- [`9.1.0-jdk17-alpine`, `9.1-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-alpine/Dockerfile) -- [`9.0.0-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.0.0-jdk17-corretto-al2023`, `9.0-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-corretto/Dockerfile) +- [`9.1.0-jdk17-corretto`, `9.1-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.1.0-jdk17-corretto-al2023`, `9.1-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-corretto/Dockerfile) -- [`9.0.0-jdk17-ubi`, `9.0-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.0.0-jdk17-ubi-minimal`, `9.0-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-ubi9/Dockerfile) +- [`9.1.0-jdk17-ubi`, `9.1-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.1.0-jdk17-ubi-minimal`, `9.1-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-ubi9/Dockerfile) -- [`9.0.0-jdk17-graal`, `9.0-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.0.0-jdk17-graal-noble`, `9.0-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-noble-graal/Dockerfile) +- [`9.1.0-jdk17-graal`, `9.1-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.1.0-jdk17-graal-noble`, `9.1-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-noble-graal/Dockerfile) -- [`9.0.0-jdk17-graal-jammy`, `9.0-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk17-jammy-graal/Dockerfile) +- [`9.1.0-jdk17-graal-jammy`, `9.1-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-jammy-graal/Dockerfile) -- [`9.0.0-jdk24`, `9.0-jdk24`, `9-jdk24`, `jdk24`, `9.0.0-jdk24-noble`, `9.0-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble/Dockerfile) +- [`9.1.0-jdk24`, `9.1-jdk24`, `9-jdk24`, `jdk24`, `9.1.0-jdk24-noble`, `9.1-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-noble/Dockerfile) -- [`9.0.0-jdk24-alpine`, `9.0-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-alpine/Dockerfile) +- [`9.1.0-jdk24-alpine`, `9.1-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-alpine/Dockerfile) -- [`9.0.0-jdk24-corretto`, `9.0-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.0.0-jdk24-corretto-al2023`, `9.0-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-corretto/Dockerfile) +- [`9.1.0-jdk24-corretto`, `9.1-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.1.0-jdk24-corretto-al2023`, `9.1-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-corretto/Dockerfile) -- [`9.0.0-jdk24-ubi`, `9.0-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.0.0-jdk24-ubi-minimal`, `9.0-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-ubi9/Dockerfile) +- [`9.1.0-jdk24-ubi`, `9.1-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.1.0-jdk24-ubi-minimal`, `9.1-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-ubi9/Dockerfile) -- [`9.0.0-jdk24-graal`, `9.0-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.0.0-jdk24-graal-noble`, `9.0-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk24-noble-graal/Dockerfile) +- [`9.1.0-jdk24-graal`, `9.1-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.1.0-jdk24-graal-noble`, `9.1-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-noble-graal/Dockerfile) -- [`9.0.0-jdk-lts-and-current`, `9.0-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.0.0-jdk-lts-and-current-noble`, `9.0-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.0.0-jdk-21-and-24`, `9.0-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.0.0-jdk-21-and-24-noble`, `9.0-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current/Dockerfile) +- [`9.1.0-jdk-lts-and-current`, `9.1-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.1.0-jdk-lts-and-current-noble`, `9.1-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.1.0-jdk-21-and-24`, `9.1-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.1.0-jdk-21-and-24-noble`, `9.1-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current/Dockerfile) -- [`9.0.0-jdk-lts-and-current-alpine`, `9.0-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.0.0-jdk-21-and-24-alpine`, `9.0-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-alpine/Dockerfile) +- [`9.1.0-jdk-lts-and-current-alpine`, `9.1-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.1.0-jdk-21-and-24-alpine`, `9.1-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-alpine/Dockerfile) -- [`9.0.0-jdk-lts-and-current-corretto`, `9.0-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.0.0-jdk-lts-and-current-corretto-al2023`, `9.0-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.0.0-jdk-21-and-24-corretto`, `9.0-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.0.0-jdk-21-and-24-corretto-al2023`, `9.0-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-corretto/Dockerfile) +- [`9.1.0-jdk-lts-and-current-corretto`, `9.1-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.1.0-jdk-lts-and-current-corretto-al2023`, `9.1-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.1.0-jdk-21-and-24-corretto`, `9.1-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.1.0-jdk-21-and-24-corretto-al2023`, `9.1-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-corretto/Dockerfile) -- [`9.0.0-jdk-lts-and-current-graal`, `9.0-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.0.0-jdk-lts-and-current-graal-noble`, `9.0-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.0.0-jdk-21-and-24-graal`, `9.0-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.0.0-jdk-21-and-24-graal-noble`, `9.0-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/ac1b55bedba711e7ff9396a91cec0f3551f479fc/jdk-lts-and-current-graal/Dockerfile) +- [`9.1.0-jdk-lts-and-current-graal`, `9.1-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.1.0-jdk-lts-and-current-graal-noble`, `9.1-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.1.0-jdk-21-and-24-graal`, `9.1-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.1.0-jdk-21-and-24-graal-noble`, `9.1-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-graal/Dockerfile) -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-jammy-graal/Dockerfile) -- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-jammy/Dockerfile) -- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-alpine/Dockerfile) -- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-corretto/Dockerfile) -- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-ubi9/Dockerfile) -- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-jammy/Dockerfile) -- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-corretto/Dockerfile) -- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-noble/Dockerfile) -- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-alpine/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-corretto/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-corretto/Dockerfile) -- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-ubi9/Dockerfile) +- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-ubi9/Dockerfile) -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-noble-graal/Dockerfile) -- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current/Dockerfile) +- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current/Dockerfile) -- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-alpine/Dockerfile) +- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-alpine/Dockerfile) -- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-corretto/Dockerfile) +- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-corretto/Dockerfile) -- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/e965f0b390a0dbee9538aaa9dc31f66ac9f4b597/jdk-lts-and-current-graal/Dockerfile) +- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-graal/Dockerfile) -- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble/Dockerfile) +- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-noble/Dockerfile) -- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy/Dockerfile) +- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-jammy/Dockerfile) -- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-alpine/Dockerfile) +- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-alpine/Dockerfile) -- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-corretto/Dockerfile) +- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-corretto/Dockerfile) -- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-ubi9/Dockerfile) +- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-ubi9/Dockerfile) -- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-noble-graal/Dockerfile) +- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-noble-graal/Dockerfile) -- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk17-jammy-graal/Dockerfile) +- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-jammy-graal/Dockerfile) -- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-jammy/Dockerfile) +- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-jammy/Dockerfile) -- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-alpine/Dockerfile) +- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-alpine/Dockerfile) -- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-corretto/Dockerfile) +- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-corretto/Dockerfile) -- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk11-ubi9/Dockerfile) +- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-ubi9/Dockerfile) -- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-jammy/Dockerfile) +- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-jammy/Dockerfile) -- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-corretto/Dockerfile) +- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-corretto/Dockerfile) -- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/c84c2e75e70cd506df4a96c210f3f32976a38058/jdk8-ubi9/Dockerfile) +- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-ubi9/Dockerfile) -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-jammy/Dockerfile) -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-alpine/Dockerfile) -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-corretto/Dockerfile) -- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk11-ubi9/Dockerfile) +- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-ubi9/Dockerfile) -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-jammy/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-jammy/Dockerfile) -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-corretto/Dockerfile) -- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/4c95a8c5f6a7e726b47ad3f8068d66c5b552e281/jdk8-ubi9/Dockerfile) +- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-ubi9/Dockerfile) # Quick reference (cont.) From 873d0ee2adae426f77848b93baa9e6f3bc4ecdce Mon Sep 17 00:00:00 2001 From: Guillaume Quintard Date: Fri, 19 Sep 2025 12:04:59 -0700 Subject: [PATCH 2533/2686] document VARNISH_VCL_FILE --- varnish/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/varnish/content.md b/varnish/content.md index 064acd3e36af..1548654f89d8 100644 --- a/varnish/content.md +++ b/varnish/content.md @@ -92,6 +92,10 @@ Varnish will listen to HTTP traffic on port `80`, and this can be overridden by $ docker run --tmpfs /var/lib/varnish/varnishd:exec -p 8080:7777 -e VARNISH_HTTP_PORT=7777 %%IMAGE%% ``` +### VCL file path + +The default Varnish configuration file is `/etc/varnish/default.vcl`, but this can be overridden with the `VARNISH_VCL_FILE` environment variable. This is useful if you want a single image that can be deployed with different configurations baked in it. + ### Extra arguments Additionally, you can add arguments to `docker run` after `%%IMAGE%%`, if the first argument starts with a `-`, the whole list will be appendend to the [default command](https://github.com/varnish/docker-varnish/blob/master/fresh/debian/scripts/docker-varnish-entrypoint): From 8dbc7967ba1e89284bd8e47723d4be6ef574b635 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 19 Sep 2025 14:11:06 -0700 Subject: [PATCH 2534/2686] Run update.sh --- composer/README.md | 2 +- varnish/README.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/composer/README.md b/composer/README.md index bab40bdf049b..4697b2b96ba1 100644 --- a/composer/README.md +++ b/composer/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.11`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/f6200de569370dd62b4b142b74fd6473e9d7e1f6/latest/Dockerfile) +- [`2.8.12`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/517441df1032e9914b7b7ab43e8ad0ce0d05a14e/latest/Dockerfile) - [`2.2.25`, `2.2`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/2.2/Dockerfile) diff --git a/varnish/README.md b/varnish/README.md index 570709dc879d..1b98a2e873d7 100644 --- a/varnish/README.md +++ b/varnish/README.md @@ -147,6 +147,10 @@ Varnish will listen to HTTP traffic on port `80`, and this can be overridden by $ docker run --tmpfs /var/lib/varnish/varnishd:exec -p 8080:7777 -e VARNISH_HTTP_PORT=7777 varnish ``` +### VCL file path + +The default Varnish configuration file is `/etc/varnish/default.vcl`, but this can be overridden with the `VARNISH_VCL_FILE` environment variable. This is useful if you want a single image that can be deployed with different configurations baked in it. + ### Extra arguments Additionally, you can add arguments to `docker run` after `varnish`, if the first argument starts with a `-`, the whole list will be appendend to the [default command](https://github.com/varnish/docker-varnish/blob/master/fresh/debian/scripts/docker-varnish-entrypoint): From 57e31ef0bf0127c03c9d0e670c697f02c0517182 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Sep 2025 10:10:56 -0700 Subject: [PATCH 2535/2686] Run update.sh --- archlinux/README.md | 6 ++--- maven/README.md | 54 +++++++++++++++++++++++++++++++++++++++++++++ tomee/README.md | 48 ++++++++++++++++++++-------------------- 3 files changed, 81 insertions(+), 27 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index d78bd6c2379f..4036db56df5c 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.base) +- [`latest`, `base`, `base-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.base) -- [`base-devel`, `base-devel-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250914.0.420821`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/c2ce6ada2ff5025a64770a0697cbc55da0ae9042/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index abb5488b6192..cee6139f0fb9 100644 --- a/maven/README.md +++ b/maven/README.md @@ -30,18 +30,28 @@ WARNING: - [`3.9.11-eclipse-temurin-17-alpine`, `3.9-eclipse-temurin-17-alpine`, `3-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-17-alpine/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-17-alpine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-17-alpine-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-17-noble`, `3.9.11-eclipse-temurin-17`, `3.9-eclipse-temurin-17-noble`, `3.9-eclipse-temurin-17`, `3-eclipse-temurin-17-noble`, `3-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-17-noble/Dockerfile) - [`4.0.0-rc-4-eclipse-temurin-17-noble`, `4.0.0-rc-4-eclipse-temurin-17`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-17-noble-maven-4/Dockerfile) - [`3.9.11-eclipse-temurin-21-alpine`, `3.9-eclipse-temurin-21-alpine`, `3-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-21-alpine/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-21-alpine-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-21-noble`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9.11-eclipse-temurin-21`, `3.9-eclipse-temurin-21-noble`, `3.9`, `3.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3-eclipse-temurin-21-noble`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`, `3-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-21-noble/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-21-noble`, `4.0.0-rc-4`, `4.0.0-rc-4-eclipse-temurin`, `4.0.0-rc-4-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-21-noble-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-alpine/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-24-alpine-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-24-noble`, `3.9.11-eclipse-temurin-24`, `3.9-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24-noble`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-24-noble/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-24-noble`, `4.0.0-rc-4-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-24-noble-maven-4/Dockerfile) + - [`3.9.11-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-alpine/Dockerfile) - [`3.9.11-eclipse-temurin-8-noble`, `3.9.11-eclipse-temurin-8`, `3.9-eclipse-temurin-8-noble`, `3.9-eclipse-temurin-8`, `3-eclipse-temurin-8-noble`, `3-eclipse-temurin-8`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-8-noble/Dockerfile) @@ -52,8 +62,12 @@ WARNING: - [`3.9.11-ibm-semeru-17-noble`, `3.9-ibm-semeru-17-noble`, `3-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibm-semeru-17-noble/Dockerfile) +- [`4.0.0-rc-4-ibm-semeru-17-noble`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/ibm-semeru-17-noble-maven-4/Dockerfile) + - [`3.9.11-ibm-semeru-21-noble`, `3.9-ibm-semeru-21-noble`, `3-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/ibm-semeru-21-noble/Dockerfile) +- [`4.0.0-rc-4-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/ibm-semeru-21-noble-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11/Dockerfile) - [`3.9.11-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-al2023/Dockerfile) @@ -66,26 +80,58 @@ WARNING: - [`3.9.11-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-al2023/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-al2023-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-17-alpine`, `3.9-amazoncorretto-17-alpine`, `3-amazoncorretto-17-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-alpine/Dockerfile) - [`3.9.11-amazoncorretto-17-debian`, `3.9.11-amazoncorretto-17-debian-trixie`, `3.9-amazoncorretto-17-debian`, `3.9-amazoncorretto-17-debian-trixie`, `3-amazoncorretto-17-debian`, `3-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-17-debian/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-17-debian`, `4.0.0-rc-4-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-debian-maven-4/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-17`, `4.0.0-rc-4-amazoncorretto`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21/Dockerfile) - [`3.9.11-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-al2023/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-21-al2023-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-21-alpine`, `3.9-amazoncorretto-21-alpine`, `3-amazoncorretto-21-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-alpine/Dockerfile) - [`3.9.11-amazoncorretto-21-debian`, `3.9.11-amazoncorretto-21-debian-trixie`, `3.9-amazoncorretto-21-debian`, `3.9-amazoncorretto-21-debian-trixie`, `3-amazoncorretto-21-debian`, `3-amazoncorretto-21-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-21-debian/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-21-debian`, `4.0.0-rc-4-amazoncorretto-21-debian-trixie`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-21-debian-maven-4/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-21-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) - [`3.9.11-amazoncorretto-24-al2023`, `3.9-amazoncorretto-24-al2023`, `3-amazoncorretto-24-al2023`](https://github.com/carlossg/docker-maven/blob/91a4014542b7460b411512805153b5876783fc70/amazoncorretto-24-al2023/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-24-al2023`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-24-al2023-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) - [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-trixie`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-trixie`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-24-debian/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-24-debian`, `4.0.0-rc-4-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-24-debian-maven-4/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-24-maven-4/Dockerfile) + +- [`3.9.11-amazoncorretto-25`, `3.9-amazoncorretto-25`, `3-amazoncorretto-25`](https://github.com/carlossg/docker-maven/blob/ea19ceba8f7f27dfca5db9a557c2c7104b9bbcf0/amazoncorretto-25/Dockerfile) + +- [`3.9.11-amazoncorretto-25-al2023`, `3.9-amazoncorretto-25-al2023`, `3-amazoncorretto-25-al2023`](https://github.com/carlossg/docker-maven/blob/8e4c2c5d8d70b078a60c23f1dea90edcde4bf0d2/amazoncorretto-25-al2023/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-25-al2023`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-25-al2023-maven-4/Dockerfile) + +- [`3.9.11-amazoncorretto-25-alpine`, `3.9-amazoncorretto-25-alpine`, `3-amazoncorretto-25-alpine`](https://github.com/carlossg/docker-maven/blob/ea19ceba8f7f27dfca5db9a557c2c7104b9bbcf0/amazoncorretto-25-alpine/Dockerfile) + +- [`3.9.11-amazoncorretto-25-debian`, `3.9.11-amazoncorretto-25-debian-trixie`, `3.9-amazoncorretto-25-debian`, `3.9-amazoncorretto-25-debian-trixie`, `3-amazoncorretto-25-debian`, `3-amazoncorretto-25-debian-trixie`](https://github.com/carlossg/docker-maven/blob/911dda48cffcacf6dffb543157e37a7628f0e6e7/amazoncorretto-25-debian/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-25-debian`, `4.0.0-rc-4-amazoncorretto-25-debian-trixie`](https://github.com/carlossg/docker-maven/blob/911dda48cffcacf6dffb543157e37a7628f0e6e7/amazoncorretto-25-debian-maven-4/Dockerfile) + +- [`4.0.0-rc-4-amazoncorretto-25`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-25-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8/Dockerfile) - [`3.9.11-amazoncorretto-8-al2023`, `3.9-amazoncorretto-8-al2023`, `3-amazoncorretto-8-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8-al2023/Dockerfile) @@ -98,8 +144,16 @@ WARNING: - [`3.9.11-sapmachine-17`, `3.9-sapmachine-17`, `3-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-17/Dockerfile) +- [`4.0.0-rc-4-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/sapmachine-17-maven-4/Dockerfile) + - [`3.9.11-sapmachine-21`, `3.9.11-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-21/Dockerfile) +- [`4.0.0-rc-4-sapmachine-21`, `4.0.0-rc-4-sapmachine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/sapmachine-21-maven-4/Dockerfile) + +- [`3.9.11-sapmachine-25`, `3.9-sapmachine-25`, `3-sapmachine-25`](https://github.com/carlossg/docker-maven/blob/31123f677b641c82496f8935f5f3c3e3885fa3f5/sapmachine-25/Dockerfile) + +- [`4.0.0-rc-4-sapmachine-25`](https://github.com/carlossg/docker-maven/blob/2f044045740088673c3a00388056cbbd747f2fea/sapmachine-25-maven-4/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/tomee/README.md b/tomee/README.md index 8e96a09bae31..1921e35b21ab 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.1-jre21-Temurin-ubuntu-microprofile`, `10.1.1-Temurin-ubuntu-microprofile`, `10.1.1-jre21-ubuntu-microprofile`, `10.1.1-ubuntu-microprofile`, `10.1.1-jre21-Temurin-microprofile`, `10.1.1-Temurin-microprofile`, `10.1.1-jre21-microprofile`, `10.1.1-microprofile`, `10.1.1-jre21-Temurin-ubuntu`, `10.1.1-Temurin-ubuntu`, `10.1.1-jre21-ubuntu`, `10.1.1-ubuntu`, `10.1.1-jre21-Temurin`, `10.1.1-Temurin`, `10.1.1-jre21`, `10.1.1`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-microprofile`, `10.1.2-Temurin-ubuntu-microprofile`, `10.1.2-jre21-ubuntu-microprofile`, `10.1.2-ubuntu-microprofile`, `10.1.2-jre21-Temurin-microprofile`, `10.1.2-Temurin-microprofile`, `10.1.2-jre21-microprofile`, `10.1.2-microprofile`, `10.1.2-jre21-Temurin-ubuntu`, `10.1.2-Temurin-ubuntu`, `10.1.2-jre21-ubuntu`, `10.1.2-ubuntu`, `10.1.2-jre21-Temurin`, `10.1.2-Temurin`, `10.1.2-jre21`, `10.1.2`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.1-jre21-Temurin-ubuntu-plume`, `10.1.1-Temurin-ubuntu-plume`, `10.1.1-jre21-ubuntu-plume`, `10.1.1-ubuntu-plume`, `10.1.1-jre21-Temurin-plume`, `10.1.1-Temurin-plume`, `10.1.1-jre21-plume`, `10.1.1-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-plume`, `10.1.2-Temurin-ubuntu-plume`, `10.1.2-jre21-ubuntu-plume`, `10.1.2-ubuntu-plume`, `10.1.2-jre21-Temurin-plume`, `10.1.2-Temurin-plume`, `10.1.2-jre21-plume`, `10.1.2-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.1-jre21-Temurin-ubuntu-plus`, `10.1.1-Temurin-ubuntu-plus`, `10.1.1-jre21-ubuntu-plus`, `10.1.1-ubuntu-plus`, `10.1.1-jre21-Temurin-plus`, `10.1.1-Temurin-plus`, `10.1.1-jre21-plus`, `10.1.1-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-plus`, `10.1.2-Temurin-ubuntu-plus`, `10.1.2-jre21-ubuntu-plus`, `10.1.2-ubuntu-plus`, `10.1.2-jre21-Temurin-plus`, `10.1.2-Temurin-plus`, `10.1.2-jre21-plus`, `10.1.2-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.1-jre21-Temurin-ubuntu-webprofile`, `10.1.1-Temurin-ubuntu-webprofile`, `10.1.1-jre21-ubuntu-webprofile`, `10.1.1-ubuntu-webprofile`, `10.1.1-jre21-Temurin-webprofile`, `10.1.1-Temurin-webprofile`, `10.1.1-jre21-webprofile`, `10.1.1-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-webprofile`, `10.1.2-Temurin-ubuntu-webprofile`, `10.1.2-jre21-ubuntu-webprofile`, `10.1.2-ubuntu-webprofile`, `10.1.2-jre21-Temurin-webprofile`, `10.1.2-Temurin-webprofile`, `10.1.2-jre21-webprofile`, `10.1.2-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.1-jre21-Temurin-alpine-microprofile`, `10.1.1-Temurin-alpine-microprofile`, `10.1.1-jre21-alpine-microprofile`, `10.1.1-alpine-microprofile`, `10.1.1-jre21-Temurin-alpine`, `10.1.1-Temurin-alpine`, `10.1.1-jre21-alpine`, `10.1.1-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-microprofile`, `10.1.2-Temurin-alpine-microprofile`, `10.1.2-jre21-alpine-microprofile`, `10.1.2-alpine-microprofile`, `10.1.2-jre21-Temurin-alpine`, `10.1.2-Temurin-alpine`, `10.1.2-jre21-alpine`, `10.1.2-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.1-jre21-Temurin-alpine-plume`, `10.1.1-Temurin-alpine-plume`, `10.1.1-jre21-alpine-plume`, `10.1.1-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-plume`, `10.1.2-Temurin-alpine-plume`, `10.1.2-jre21-alpine-plume`, `10.1.2-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) -- [`10.1.1-jre21-Temurin-alpine-plus`, `10.1.1-Temurin-alpine-plus`, `10.1.1-jre21-alpine-plus`, `10.1.1-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-plus`, `10.1.2-Temurin-alpine-plus`, `10.1.2-jre21-alpine-plus`, `10.1.2-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) -- [`10.1.1-jre21-Temurin-alpine-webprofile`, `10.1.1-Temurin-alpine-webprofile`, `10.1.1-jre21-alpine-webprofile`, `10.1.1-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-webprofile`, `10.1.2-Temurin-alpine-webprofile`, `10.1.2-jre21-alpine-webprofile`, `10.1.2-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.1-jre21-Semeru-ubuntu-microprofile`, `10.1.1-Semeru-ubuntu-microprofile`, `10.1.1-jre21-Semeru-microprofile`, `10.1.1-Semeru-microprofile`, `10.1.1-jre21-Semeru-ubuntu`, `10.1.1-Semeru-ubuntu`, `10.1.1-jre21-Semeru`, `10.1.1-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-microprofile`, `10.1.2-Semeru-ubuntu-microprofile`, `10.1.2-jre21-Semeru-microprofile`, `10.1.2-Semeru-microprofile`, `10.1.2-jre21-Semeru-ubuntu`, `10.1.2-Semeru-ubuntu`, `10.1.2-jre21-Semeru`, `10.1.2-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.1-jre21-Semeru-ubuntu-plume`, `10.1.1-Semeru-ubuntu-plume`, `10.1.1-jre21-Semeru-plume`, `10.1.1-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-plume`, `10.1.2-Semeru-ubuntu-plume`, `10.1.2-jre21-Semeru-plume`, `10.1.2-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.1-jre21-Semeru-ubuntu-plus`, `10.1.1-Semeru-ubuntu-plus`, `10.1.1-jre21-Semeru-plus`, `10.1.1-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-plus`, `10.1.2-Semeru-ubuntu-plus`, `10.1.2-jre21-Semeru-plus`, `10.1.2-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.1-jre21-Semeru-ubuntu-webprofile`, `10.1.1-Semeru-ubuntu-webprofile`, `10.1.1-jre21-Semeru-webprofile`, `10.1.1-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-webprofile`, `10.1.2-Semeru-ubuntu-webprofile`, `10.1.2-jre21-Semeru-webprofile`, `10.1.2-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.1.1-jre17-Temurin-ubuntu-microprofile`, `10.1.1-jre17-ubuntu-microprofile`, `10.1.1-jre17-Temurin-microprofile`, `10.1.1-jre17-microprofile`, `10.1.1-jre17-Temurin-ubuntu`, `10.1.1-jre17-ubuntu`, `10.1.1-jre17-Temurin`, `10.1.1-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre17-Temurin-ubuntu-microprofile`, `10.1.2-jre17-ubuntu-microprofile`, `10.1.2-jre17-Temurin-microprofile`, `10.1.2-jre17-microprofile`, `10.1.2-jre17-Temurin-ubuntu`, `10.1.2-jre17-ubuntu`, `10.1.2-jre17-Temurin`, `10.1.2-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.1-jre17-Temurin-ubuntu-plume`, `10.1.1-jre17-ubuntu-plume`, `10.1.1-jre17-Temurin-plume`, `10.1.1-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.2-jre17-Temurin-ubuntu-plume`, `10.1.2-jre17-ubuntu-plume`, `10.1.2-jre17-Temurin-plume`, `10.1.2-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.1-jre17-Temurin-ubuntu-plus`, `10.1.1-jre17-ubuntu-plus`, `10.1.1-jre17-Temurin-plus`, `10.1.1-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.2-jre17-Temurin-ubuntu-plus`, `10.1.2-jre17-ubuntu-plus`, `10.1.2-jre17-Temurin-plus`, `10.1.2-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.1-jre17-Temurin-ubuntu-webprofile`, `10.1.1-jre17-ubuntu-webprofile`, `10.1.1-jre17-Temurin-webprofile`, `10.1.1-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre17-Temurin-ubuntu-webprofile`, `10.1.2-jre17-ubuntu-webprofile`, `10.1.2-jre17-Temurin-webprofile`, `10.1.2-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.1-jre17-Temurin-alpine-microprofile`, `10.1.1-jre17-alpine-microprofile`, `10.1.1-jre17-Temurin-alpine`, `10.1.1-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.2-jre17-Temurin-alpine-microprofile`, `10.1.2-jre17-alpine-microprofile`, `10.1.2-jre17-Temurin-alpine`, `10.1.2-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.1-jre17-Temurin-alpine-plume`, `10.1.1-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.1.2-jre17-Temurin-alpine-plume`, `10.1.2-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) -- [`10.1.1-jre17-Temurin-alpine-plus`, `10.1.1-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.1.2-jre17-Temurin-alpine-plus`, `10.1.2-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) -- [`10.1.1-jre17-Temurin-alpine-webprofile`, `10.1.1-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.2-jre17-Temurin-alpine-webprofile`, `10.1.2-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.1-jre17-Semeru-ubuntu-microprofile`, `10.1.1-jre17-Semeru-microprofile`, `10.1.1-jre17-Semeru-ubuntu`, `10.1.1-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre17-Semeru-ubuntu-microprofile`, `10.1.2-jre17-Semeru-microprofile`, `10.1.2-jre17-Semeru-ubuntu`, `10.1.2-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.1-jre17-Semeru-ubuntu-plume`, `10.1.1-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.2-jre17-Semeru-ubuntu-plume`, `10.1.2-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.1-jre17-Semeru-ubuntu-plus`, `10.1.1-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.2-jre17-Semeru-ubuntu-plus`, `10.1.2-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.1-jre17-Semeru-ubuntu-webprofile`, `10.1.1-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a600578e7e3c57b789f371f17b16e86f02c8a68f/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre17-Semeru-ubuntu-webprofile`, `10.1.2-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) From 51d1cc9ff023ecf1a193054155096db62ff346d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Sep 2025 14:10:53 -0700 Subject: [PATCH 2536/2686] Run update.sh --- influxdb/README.md | 8 ------ nats/README.md | 59 +++++++++++++++++++++++++++++-------------- oraclelinux/README.md | 22 ++++++++-------- swipl/README.md | 4 +-- 4 files changed, 53 insertions(+), 40 deletions(-) diff --git a/influxdb/README.md b/influxdb/README.md index ea5cbdab1c92..25827e91ebcd 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -40,14 +40,6 @@ WARNING: - [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/alpine/Dockerfile) -- [`1.10-data`, `1.10.8-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/data/Dockerfile) - -- [`1.10-data-alpine`, `1.10.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/data/alpine/Dockerfile) - -- [`1.10-meta`, `1.10.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/meta/Dockerfile) - -- [`1.10-meta-alpine`, `1.10.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.10/meta/alpine/Dockerfile) - - [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/Dockerfile) - [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/alpine/Dockerfile) diff --git a/nats/README.md b/nats/README.md index 603a046bf4f5..b36289303ed4 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,49 +28,70 @@ WARNING: ## Simple Tags -- [`2.11.9-alpine3.22`, `2.11-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.11.9-alpine`, `2.11-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/alpine3.22/Dockerfile) +- [`2.12.0-alpine3.22`, `2.12-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.12.0-alpine`, `2.12-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/alpine3.22/Dockerfile) -- [`2.11.9-scratch`, `2.11-scratch`, `2-scratch`, `scratch`, `2.11.9-linux`, `2.11-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/scratch/Dockerfile) +- [`2.12.0-scratch`, `2.12-scratch`, `2-scratch`, `scratch`, `2.12.0-linux`, `2.12-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/scratch/Dockerfile) -- [`2.11.9-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.12.0-windowsservercore-ltsc2022`, `2.12-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.9-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.12.0-nanoserver-ltsc2022`, `2.12-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/alpine3.22/Dockerfile) +- [`2.11.9-alpine3.22`, `2.11-alpine3.22`, `2.11.9-alpine`, `2.11-alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/scratch/Dockerfile) +- [`2.11.9-scratch`, `2.11-scratch`, `2.11.9-linux`, `2.11-linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.9-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.9-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) + +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/alpine3.22/Dockerfile) + +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/scratch/Dockerfile) + +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/windowsservercore-ltsc2022/Dockerfile) + +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.11.9`, `2.11`, `2`, `latest`: +- `2.12.0`, `2.12`, `2`, `latest`: + + - [`2.12.0-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/scratch/Dockerfile) + - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) + +- `2.12.0-windowsservercore`, `2.12-windowsservercore`, `2-windowsservercore`, `windowsservercore`: + + - [`2.12.0-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/windowsservercore-ltsc2022/Dockerfile) + +- `2.12.0-nanoserver`, `2.12-nanoserver`, `2-nanoserver`, `nanoserver`: + + - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) + +- `2.11.9`, `2.11`: - - [`2.11.9-scratch`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/scratch/Dockerfile) - - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.9-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/scratch/Dockerfile) + - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.9-windowsservercore`, `2.11-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.11.9-windowsservercore`, `2.11-windowsservercore`: - - [`2.11.9-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.9-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.9-nanoserver`, `2.11-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.11.9-nanoserver`, `2.11-nanoserver`: - - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/b486da9a110f9bffb40d23ec80238acc8b022fdd/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index f09d1b19226b..7e9ca8acce9a 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d357fef6b2db2125c23debd3f32930acf21924c2/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 099a29d1b700..9cff4aea9fa7 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.29`](https://github.com/SWI-Prolog/docker-swipl/blob/a62d9e3814bdc1d431ba7830a1e736c137b90e0a/9.3.29/bookworm/Dockerfile) +- [`latest`, `9.3.31`](https://github.com/SWI-Prolog/docker-swipl/blob/51e839d7ea84489bbbcfb48c51e13ee9d5621340/9.3.31/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/a62d9e3814bdc1d431ba7830a1e736c137b90e0a/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/51e839d7ea84489bbbcfb48c51e13ee9d5621340/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 6d6f5003a9b7e4fcb3230ea3d3b7ead5032bfa8a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Sep 2025 15:11:53 -0700 Subject: [PATCH 2537/2686] Run update.sh --- ghost/README.md | 4 ++-- golang/README.md | 12 +++++------ mongo/README.md | 49 ++++++++++++------------------------------- openjdk/README.md | 40 +++++++++++++++++------------------ oraclelinux/README.md | 22 +++++++++---------- redmine/README.md | 12 +++++------ 6 files changed, 58 insertions(+), 81 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 5b68b88cfaa1..ecfa21906fad 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.9`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/f2d920fb0f79d8ea79950da700178d3070812923/6/debian/Dockerfile) +- [`6.0.10`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/28bbafd7a89f343e65e27ab07e1857db96731d73/6/debian/Dockerfile) -- [`6.0.9-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f2d920fb0f79d8ea79950da700178d3070812923/6/alpine/Dockerfile) +- [`6.0.10-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/28bbafd7a89f343e65e27ab07e1857db96731d73/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/80812d80f7ac88de34e1ddfe8c9601a572a63638/5/debian/Dockerfile) diff --git a/golang/README.md b/golang/README.md index e64a0b41670a..a2b2eb22c502 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250912-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/trixie/Dockerfile) +- [`tip-20250919-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/trixie/Dockerfile) -- [`tip-20250912-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/bookworm/Dockerfile) +- [`tip-20250919-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/bookworm/Dockerfile) -- [`tip-20250912-alpine3.22`, `tip-alpine3.22`, `tip-20250912-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/alpine3.22/Dockerfile) +- [`tip-20250919-alpine3.22`, `tip-alpine3.22`, `tip-20250919-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/alpine3.22/Dockerfile) -- [`tip-20250912-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/alpine3.21/Dockerfile) +- [`tip-20250919-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250912`, `tip`: +- `tip-20250919`, `tip`: - - [`tip-20250912-trixie`](https://github.com/docker-library/golang/blob/b0550077642071c5f9cdb5d34d41bb005dfda2e3/tip/trixie/Dockerfile) + - [`tip-20250919-trixie`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 2b86ffa0c4d4..1ff3c8af50e5 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,13 @@ WARNING: ## Simple Tags -- [`8.0.14-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/Dockerfile) +- [`8.0.14-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/Dockerfile) -- [`8.0.14-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.14-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.14-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.14-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.14-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- [`8.0.13-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0/Dockerfile) - -- [`8.0.13-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`8.0.13-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`8.0.13-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.14-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.24-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/Dockerfile) @@ -62,35 +54,20 @@ WARNING: ## Shared Tags -- `8.0.14-rc1`, `8.0-rc`: - - - [`8.0.14-rc1-noble`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/Dockerfile) - - [`8.0.14-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.14-rc1-windowsservercore`, `8.0-rc-windowsservercore`: - - - [`8.0.14-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `8.0.14-rc1-nanoserver`, `8.0-rc-nanoserver`: - - - [`8.0.14-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d3f65556b49b5edbfccfd51f42ba2b2413430e78/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - -- `8.0.13`, `8.0`, `8`, `latest`: +- `8.0.14`, `8.0`, `8`, `latest`: - - [`8.0.13-noble`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/8.0/Dockerfile) - - [`8.0.13-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.14-noble`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/Dockerfile) + - [`8.0.14-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.13-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.14-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.13-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.13-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.14-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.13-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.14-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.13-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/6f2dda34ccd9d11a1269f3307b02d232f09a3d3d/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/nanoserver-ltsc2022/Dockerfile) - `7.0.24`, `7.0`, `7`: diff --git a/openjdk/README.md b/openjdk/README.md index 852bbaaa908e..700cb86243e2 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-15-jdk-oraclelinux9`, `26-ea-15-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-15-jdk-oracle`, `26-ea-15-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-16-jdk-oraclelinux9`, `26-ea-16-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-16-jdk-oracle`, `26-ea-16-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-15-jdk-oraclelinux8`, `26-ea-15-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-16-jdk-oraclelinux8`, `26-ea-16-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-15-jdk-trixie`, `26-ea-15-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/trixie/Dockerfile) +- [`26-ea-16-jdk-trixie`, `26-ea-16-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/trixie/Dockerfile) -- [`26-ea-15-jdk-slim-trixie`, `26-ea-15-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-15-jdk-slim`, `26-ea-15-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-16-jdk-slim-trixie`, `26-ea-16-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-16-jdk-slim`, `26-ea-16-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-15-jdk-bookworm`, `26-ea-15-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/bookworm/Dockerfile) +- [`26-ea-16-jdk-bookworm`, `26-ea-16-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/bookworm/Dockerfile) -- [`26-ea-15-jdk-slim-bookworm`, `26-ea-15-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-16-jdk-slim-bookworm`, `26-ea-16-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-15-jdk-windowsservercore-ltsc2025`, `26-ea-15-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-16-jdk-windowsservercore-ltsc2025`, `26-ea-16-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-15-jdk-windowsservercore-ltsc2022`, `26-ea-15-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-16-jdk-windowsservercore-ltsc2022`, `26-ea-16-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-15-jdk-nanoserver-ltsc2025`, `26-ea-15-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-16-jdk-nanoserver-ltsc2025`, `26-ea-16-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-15-jdk-nanoserver-ltsc2022`, `26-ea-15-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-16-jdk-nanoserver-ltsc2022`, `26-ea-16-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-15-jdk`, `26-ea-15`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-16-jdk`, `26-ea-16`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-15-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-15-jdk-windowsservercore`, `26-ea-15-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-16-jdk-windowsservercore`, `26-ea-16-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-15-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-15-jdk-nanoserver`, `26-ea-15-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-16-jdk-nanoserver`, `26-ea-16-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-15-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-15-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/d2503db56c29492e4cd034ad0abd93101063d6f8/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-16-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-16-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 7e9ca8acce9a..5e9bf47ff4e5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/ceaac006871c6de92428452d9279dbe09bb9de26/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 39ba3af85f16..3545d37e31a2 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.6`, `6.0`, `6`, `latest`, `6.0.6-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/bookworm/Dockerfile) +- [`6.0.7`, `6.0`, `6`, `latest`, `6.0.7-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/bookworm/Dockerfile) -- [`6.0.6-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.6-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/alpine3.22/Dockerfile) +- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/alpine3.22/Dockerfile) -- [`6.0.6-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/6.0/alpine3.21/Dockerfile) +- [`6.0.7-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/alpine3.21/Dockerfile) -- [`5.1.9`, `5.1`, `5`, `5.1.9-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/bookworm/Dockerfile) +- [`5.1.10`, `5.1`, `5`, `5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/bookworm/Dockerfile) -- [`5.1.9-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.9-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/alpine3.22/Dockerfile) +- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/alpine3.22/Dockerfile) -- [`5.1.9-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/30498eb1d53acbfed895f61b56f21293a11333ba/5.1/alpine3.21/Dockerfile) +- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) From 02069932cab2458fcd4e031bd919472fa569288d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Sep 2025 16:11:33 -0700 Subject: [PATCH 2538/2686] Run update.sh --- clojure/README.md | 178 +++++++++++++++++++++++----------------------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index ab639fb712c9..668e94e36c0d 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/latest/Dockerfile) -- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1565-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1571-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1565-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1571-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1565-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1571-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1565-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1571-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1565`, `temurin-8-tools-deps-1.12.2.1565-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1571`, `temurin-8-tools-deps-1.12.2.1571-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1571-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1565-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.2.1571-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1565-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1571-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1565-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1571-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1565-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1571-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1565-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1571-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1565`, `temurin-11-tools-deps-1.12.2.1565-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1571`, `temurin-11-tools-deps-1.12.2.1571-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1571-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1565-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.2.1571-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1565-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1571-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1565-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1571-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1565-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1571-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1565-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1571-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1565`, `temurin-17-tools-deps-1.12.2.1565-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1571`, `temurin-17-tools-deps-1.12.2.1571-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1571-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1565-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.2.1571-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/lein/Dockerfile) +- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-21/lein/Dockerfile) +- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-21/lein/Dockerfile) +- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1565-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1571-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1565`, `temurin-21-tools-deps-1.12.2.1565-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1565`, `tools-deps-1.12.2.1565-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1571`, `temurin-21-tools-deps-1.12.2.1571-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1571`, `tools-deps-1.12.2.1571-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1565-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1571-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1565-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1565-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1571-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1571-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1565-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1571-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1565-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1571-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1565-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1571-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1565-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1571-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1571-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1565-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1565-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.2.1571-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1571-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-24/lein/Dockerfile) +- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-24/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-24/lein/Dockerfile) +- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-24/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1565-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1571-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1565`, `temurin-24-tools-deps-1.12.2.1565-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1571`, `temurin-24-tools-deps-1.12.2.1571-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-24/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1565-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1565-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1571-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-24/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1565-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-24/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1565-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1571-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1571-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-24/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1565-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/65ac72665e7d872a3adeb476f04ae9c759298a22/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-24-tools-deps-1.12.2.1571-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-24/tools-deps/Dockerfile) # Quick reference (cont.) From 23e492278c2f96fc91904ad36e087e8c1a628b95 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Sep 2025 11:10:51 -0700 Subject: [PATCH 2539/2686] Run update.sh --- bash/README.md | 2 +- haproxy/README.md | 4 ++-- neurodebian/README.md | 32 ++++++++++++++++++++++++++------ sonarqube/README.md | 28 +++++++++++++--------------- 4 files changed, 42 insertions(+), 24 deletions(-) diff --git a/bash/README.md b/bash/README.md index bf04a052a056..fbd8bef79f65 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250904`, `devel`, `devel-20250904-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/327036eadc5c26756b8b6f19cec5af9dcf8092ad/devel/Dockerfile) +- [`devel-20250918`, `devel`, `devel-20250918-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4692ca63168aa1f5af2bea3e4c6857851e81f51c/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index 477ca4549006..ee861535df32 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.3-dev8-alpine`, `3.3-dev-alpine`, `3.3-dev8-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/4c74fa19391cdc46521acb0dcb7c9e61dbf4db3e/3.3/alpine/Dockerfile) -- [`3.2.4`, `3.2`, `latest`, `lts`, `3.2.4-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/Dockerfile) +- [`3.2.5`, `3.2`, `latest`, `lts`, `3.2.5-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/e9703bec7c7ba6ef31d7d152604d1f6b7135f861/3.2/Dockerfile) -- [`3.2.4-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.4-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/ef134ca68778a0e16bd235fd6a902b682148b3ea/3.2/alpine/Dockerfile) +- [`3.2.5-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.5-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e9703bec7c7ba6ef31d7d152604d1f6b7135f861/3.2/alpine/Dockerfile) - [`3.1.8`, `3.1`, `3.1.8-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.1/Dockerfile) diff --git a/neurodebian/README.md b/neurodebian/README.md index c7bb7b6d3081..390c9265eb2b 100644 --- a/neurodebian/README.md +++ b/neurodebian/README.md @@ -24,17 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy/Dockerfile) +- [`jammy`, `nd22.04`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/jammy/Dockerfile) -- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/jammy-non-free/Dockerfile) +- [`jammy-non-free`, `nd22.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/jammy-non-free/Dockerfile) -- [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye/Dockerfile) +- [`noble`, `nd24.04`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/noble/Dockerfile) -- [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bullseye-non-free/Dockerfile) +- [`noble-non-free`, `nd24.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/noble-non-free/Dockerfile) -- [`bookworm`, `nd120`, `latest`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bookworm/Dockerfile) +- [`plucky`, `nd25.04`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/plucky/Dockerfile) -- [`bookworm-non-free`, `nd120-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/89ca52860d80889fd878392a29150e46d9d91a71/dockerfiles/bookworm-non-free/Dockerfile) +- [`plucky-non-free`, `nd25.04-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/plucky-non-free/Dockerfile) + +- [`bullseye`, `nd110`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/bullseye/Dockerfile) + +- [`bullseye-non-free`, `nd110-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/bullseye-non-free/Dockerfile) + +- [`bookworm`, `nd120`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/bookworm/Dockerfile) + +- [`bookworm-non-free`, `nd120-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/bookworm-non-free/Dockerfile) + +- [`trixie`, `nd130`, `latest`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/trixie/Dockerfile) + +- [`trixie-non-free`, `nd130-non-free`, `non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/trixie-non-free/Dockerfile) + +- [`forky`, `nd140`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/forky/Dockerfile) + +- [`forky-non-free`, `nd140-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/forky-non-free/Dockerfile) + +- [`sid`, `nd`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/sid/Dockerfile) + +- [`sid-non-free`, `nd-non-free`](https://github.com/neurodebian/dockerfiles/blob/763e5953e63f2e0f46d2304dfd6c2f051ca378ca/dockerfiles/sid-non-free/Dockerfile) # Quick reference (cont.) diff --git a/sonarqube/README.md b/sonarqube/README.md index 3348c0025902..06c2baeae9dd 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,33 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.4.2-developer`, `2025.4-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/developer/Dockerfile) +- [`2025.5.0-developer`, `2025.5-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/developer/Dockerfile) -- [`2025.4.2-enterprise`, `2025.4-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/enterprise/Dockerfile) +- [`2025.5.0-enterprise`, `2025.5-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/enterprise/Dockerfile) -- [`2025.4.2-datacenter-app`, `2025.4-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/datacenter/app/Dockerfile) +- [`2025.5.0-datacenter-app`, `2025.5-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/datacenter/app/Dockerfile) -- [`2025.4.2-datacenter-search`, `2025.4-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/commercial-editions/datacenter/search/Dockerfile) +- [`2025.5.0-datacenter-search`, `2025.5-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/datacenter/search/Dockerfile) -- [`2025.1.3-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/developer/Dockerfile) +- [`2025.4.3-developer`, `2025.4-developer`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/developer/Dockerfile) -- [`2025.1.3-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/enterprise/Dockerfile) +- [`2025.4.3-enterprise`, `2025.4-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/enterprise/Dockerfile) -- [`2025.1.3-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.3-datacenter-app`, `2025.4-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/datacenter/app/Dockerfile) -- [`2025.1.3-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2a5b137d0669b87f7dfe6c295a5078d7d7c1aaaf/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.3-datacenter-search`, `2025.4-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/datacenter/search/Dockerfile) -- [`25.9.0.112764-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/community-build/Dockerfile) +- [`2025.1.4-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/developer/Dockerfile) -- [`9.9.8-community`, `9.9-community`, `9-community`, `lts`, `lts-community`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/community/Dockerfile) +- [`2025.1.4-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/enterprise/Dockerfile) -- [`9.9.8-developer`, `9.9-developer`, `9-developer`, `lts-developer`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/developer/Dockerfile) +- [`2025.1.4-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/datacenter/app/Dockerfile) -- [`9.9.9-enterprise`, `9.9-enterprise`, `9-enterprise`, `lts-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/enterprise/Dockerfile) +- [`2025.1.4-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/datacenter/search/Dockerfile) -- [`9.9.9-datacenter-app`, `9.9-datacenter-app`, `9-datacenter-app`, `lts-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/datacenter/app/Dockerfile) - -- [`9.9.9-datacenter-search`, `9.9-datacenter-search`, `9-datacenter-search`, `lts-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/7d0a5314a4c301f1bd3ce713ad5f0d0e212883cf/9/datacenter/search/Dockerfile) +- [`25.9.0.112764-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/community-build/Dockerfile) # Quick reference (cont.) From 3bf44e2e3cf2e63d0316a5fc6f37c715f92c1e1d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Sep 2025 15:10:46 -0700 Subject: [PATCH 2540/2686] Run update.sh --- cassandra/README.md | 10 +++++----- ghost/README.md | 8 ++++---- mongo/README.md | 12 ++++++------ mysql/README.md | 8 ++++---- postgres/README.md | 48 ++++++++++++++++++++++----------------------- redmine/README.md | 12 ++++++------ 6 files changed, 49 insertions(+), 49 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index b8697a7a1b80..93b5996641f0 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,15 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/5.0/Dockerfile) +- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/5.0/Dockerfile) -- [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/4.1/Dockerfile) +- [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.1/Dockerfile) -- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/4.0/Dockerfile) +- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.0/Dockerfile) -- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/3.11/Dockerfile) +- [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/3.11/Dockerfile) -- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/e91994ea673c47d987bfc08c5eeee8d8fdc1ab82/3.0/Dockerfile) +- [`3.0.32`, `3.0`, `3.0.32-jammy`, `3.0-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/3.0/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ecfa21906fad..07d6343ccfd9 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.10`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/28bbafd7a89f343e65e27ab07e1857db96731d73/6/debian/Dockerfile) +- [`6.0.10`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/6/debian/Dockerfile) -- [`6.0.10-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/28bbafd7a89f343e65e27ab07e1857db96731d73/6/alpine/Dockerfile) +- [`6.0.10-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/6/alpine/Dockerfile) -- [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/80812d80f7ac88de34e1ddfe8c9601a572a63638/5/debian/Dockerfile) +- [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) -- [`5.130.5-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/80812d80f7ac88de34e1ddfe8c9601a572a63638/5/alpine/Dockerfile) +- [`5.130.5-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/alpine/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 1ff3c8af50e5..d04ced40c507 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.14-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/Dockerfile) +- [`8.0.14-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/8.0/Dockerfile) - [`8.0.14-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -36,7 +36,7 @@ WARNING: - [`8.0.14-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.24-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/Dockerfile) +- [`7.0.24-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/7.0/Dockerfile) - [`7.0.24-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`7.0.24-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/6.0/Dockerfile) +- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -56,7 +56,7 @@ WARNING: - `8.0.14`, `8.0`, `8`, `latest`: - - [`8.0.14-noble`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/Dockerfile) + - [`8.0.14-noble`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/8.0/Dockerfile) - [`8.0.14-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -71,7 +71,7 @@ WARNING: - `7.0.24`, `7.0`, `7`: - - [`7.0.24-jammy`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/Dockerfile) + - [`7.0.24-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/7.0/Dockerfile) - [`7.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,7 +86,7 @@ WARNING: - `6.0.26`, `6.0`, `6`: - - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/ddd62bba929d28871964af0be8933c9a1744e6c5/6.0/Dockerfile) + - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 6b797b6f6dfa..bf9c0cbb56d5 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/innovation/Dockerfile.oracle) +- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/innovation/Dockerfile.oracle) -- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.4/Dockerfile.oracle) +- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.4/Dockerfile.oracle) -- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.0/Dockerfile.oracle) +- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.0/Dockerfile.oracle) -- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/9637f3b86a8bcdf852311299893a644f027d66ef/8.0/Dockerfile.debian) +- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/postgres/README.md b/postgres/README.md index d8631ed0a62e..73311f1c325e 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/trixie/Dockerfile) +- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/trixie/Dockerfile) -- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/bookworm/Dockerfile) +- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/bookworm/Dockerfile) -- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/alpine3.22/Dockerfile) +- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/alpine3.22/Dockerfile) -- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/18/alpine3.21/Dockerfile) +- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/alpine3.21/Dockerfile) -- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/trixie/Dockerfile) +- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/trixie/Dockerfile) -- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/bookworm/Dockerfile) -- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.22/Dockerfile) -- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.21/Dockerfile) -- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/trixie/Dockerfile) +- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/trixie/Dockerfile) -- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/bookworm/Dockerfile) +- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/bookworm/Dockerfile) -- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/alpine3.22/Dockerfile) +- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/alpine3.22/Dockerfile) -- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/16/alpine3.21/Dockerfile) +- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/alpine3.21/Dockerfile) -- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/trixie/Dockerfile) +- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/trixie/Dockerfile) -- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/bookworm/Dockerfile) +- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/bookworm/Dockerfile) -- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/alpine3.22/Dockerfile) +- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/alpine3.22/Dockerfile) -- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/15/alpine3.21/Dockerfile) +- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/alpine3.21/Dockerfile) -- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/trixie/Dockerfile) +- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/trixie/Dockerfile) -- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/bookworm/Dockerfile) +- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/bookworm/Dockerfile) -- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/alpine3.22/Dockerfile) +- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/alpine3.22/Dockerfile) -- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/14/alpine3.21/Dockerfile) +- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/alpine3.21/Dockerfile) -- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/trixie/Dockerfile) +- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/trixie/Dockerfile) -- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/bookworm/Dockerfile) +- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/bookworm/Dockerfile) -- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/alpine3.22/Dockerfile) +- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/alpine3.22/Dockerfile) -- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/a3b3bfabd35fd86b7a8e6a426afcafa16ebb5c18/13/alpine3.21/Dockerfile) +- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/alpine3.21/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 3545d37e31a2..0ced36d65692 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.7`, `6.0`, `6`, `latest`, `6.0.7-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/bookworm/Dockerfile) +- [`6.0.7`, `6.0`, `6`, `latest`, `6.0.7-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/bookworm/Dockerfile) -- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/alpine3.22/Dockerfile) +- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/alpine3.22/Dockerfile) -- [`6.0.7-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/fbcfabeed6d6708bc2d07b7f3901dc950b1593e0/6.0/alpine3.21/Dockerfile) +- [`6.0.7-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/alpine3.21/Dockerfile) -- [`5.1.10`, `5.1`, `5`, `5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/bookworm/Dockerfile) +- [`5.1.10`, `5.1`, `5`, `5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/bookworm/Dockerfile) -- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/alpine3.22/Dockerfile) +- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/alpine3.22/Dockerfile) -- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/7934fd145ba2201fd9ed94e69433ab8fb90d5053/5.1/alpine3.21/Dockerfile) +- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) From ba96df200076aa31394502f8b0a320a094d5be4e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 23 Sep 2025 17:11:17 -0700 Subject: [PATCH 2541/2686] Run update.sh --- photon/README.md | 4 ++-- rakudo-star/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/photon/README.md b/photon/README.md index 770264d0f9c2..e128def01c8b 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250907`, `latest`](https://github.com/vmware/photon-docker-image/blob/ac38eceea3894efd2ac367b1c50172c546eef650/docker/Dockerfile) +- [`5.0`, `5.0-20250920`, `latest`](https://github.com/vmware/photon-docker-image/blob/561412a9759919b9fb52b1852369de116d210f2b/docker/Dockerfile) -- [`4.0`, `4.0-20250810`](https://github.com/vmware/photon-docker-image/blob/8e86c1fe4b1997c87a1376f197c394d92b93ac76/docker/Dockerfile) +- [`4.0`, `4.0-20250923`](https://github.com/vmware/photon-docker-image/blob/da6495f4a071346b5f8af706f99a80eba540bb14/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 174f90e08544..284c8ad2cce6 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2025.04`, `bookworm`](https://github.com/rakudo/docker/blob/9687c880204b2dad5b7d816f268dc0257c39abc0/2025.04/bookworm/Dockerfile) +- [`latest`, `2025.08.1`, `bookworm`](https://github.com/rakudo/docker/blob/8c213b2fb89d60eb631068eecba27dab9a0989bc/2025.08.1/bookworm/Dockerfile) -- [`alpine`, `2025.02-alpine`](https://github.com/rakudo/docker/blob/02696336f52874a3440ae2fa8f2cbf2a7c6176dd/2025.02/alpine/Dockerfile) +- [`alpine`, `2025.08.1-alpine`](https://github.com/rakudo/docker/blob/8c213b2fb89d60eb631068eecba27dab9a0989bc/2025.08.1/alpine/Dockerfile) # Quick reference (cont.) From 2a3ae164058314385210bc13bf1bcbf5f12929f5 Mon Sep 17 00:00:00 2001 From: akantcheff Date: Wed, 24 Sep 2025 10:20:22 +0200 Subject: [PATCH 2542/2686] update Bonita Platform and Update Tool versions --- bonita/content.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bonita/content.md b/bonita/content.md index a904c550af14..05f57eb1e53b 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -28,7 +28,7 @@ As PostgreSQL is the recommended database for qualification and production envir From Bonita 2022.1 onwards, the Bonita docker image does not include configuration scripts to automatically create databases and users anymore. -Therefore the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: +Therefore, the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: ```bash docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 @@ -190,7 +190,7 @@ These variables are used in conjunction to define how Bonita should access the [ The logger can be configured by mounting a volume on folder `/opt/bonita/conf/logs` containing the configuration files. -the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/docker/files/log4j2/log4j2-appenders.xml) +the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.3.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.3.0/docker/files/log4j2/log4j2-appenders.xml) Any change made to one of this 2 files is automatically hot-reloaded and taken into account immediately. @@ -249,13 +249,13 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool archive from https://www.bonitasoft.com/downloads ```console - unzip bonita-update-tool-3.6.0.zip + unzip bonita-update-tool-3.7.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.6.0 + $ cd bonita-update-tool-3.7.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -284,7 +284,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2024.3-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:2025.1-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). From 760364238e354c572e9d2809d0d40e96f72bb81f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Sep 2025 08:11:11 -0700 Subject: [PATCH 2543/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 92876257efd3..929a4c3e6426 100644 --- a/node/README.md +++ b/node/README.md @@ -40,21 +40,21 @@ WARNING: - [`24-trixie-slim`, `24.8-trixie-slim`, `24.8.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/trixie-slim/Dockerfile) -- [`22-alpine3.21`, `22.19-alpine3.21`, `22.19.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.20-alpine3.21`, `22.20.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.19-alpine`, `22.19-alpine3.22`, `22.19.0-alpine`, `22.19.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.20-alpine`, `22.20-alpine3.22`, `22.20.0-alpine`, `22.20.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.19`, `22.19-bookworm`, `22.19.0`, `22.19.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.20`, `22.20-bookworm`, `22.20.0`, `22.20.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.19-bookworm-slim`, `22.19-slim`, `22.19.0-bookworm-slim`, `22.19.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.20-bookworm-slim`, `22.20-slim`, `22.20.0-bookworm-slim`, `22.20.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.19-bullseye`, `22.19.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.20-bullseye`, `22.20.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.19-bullseye-slim`, `22.19.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.20-bullseye-slim`, `22.20.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bullseye-slim/Dockerfile) -- [`22-trixie`, `22.19-trixie`, `22.19.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/trixie/Dockerfile) +- [`22-trixie`, `22.20-trixie`, `22.20.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/trixie/Dockerfile) -- [`22-trixie-slim`, `22.19-trixie-slim`, `22.19.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/8a6ee0d86da85db74f5bcf99c9dc6ef87203592f/22/trixie-slim/Dockerfile) +- [`22-trixie-slim`, `22.20-trixie-slim`, `22.20.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/trixie-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/alpine3.21/Dockerfile) From 58804d02e9ac089399752c507ae8048bc1649036 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Sep 2025 14:11:22 -0700 Subject: [PATCH 2544/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- influxdb/README.md | 32 ++++++++++++++++---------------- redmine/README.md | 26 +++++++++++++++++++------- 3 files changed, 37 insertions(+), 25 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 8011203226df..1eacc0234c03 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.8.20250908.0`](https://github.com/amazonlinux/container-images/blob/31bea68f5849c5dd4d4d26a069c2c8cbe55e7c8c/Dockerfile) +- [`2023`, `latest`, `2023.8.20250915.0`](https://github.com/amazonlinux/container-images/blob/517030564458f4df68cfc6fc11b044c06498bed9/Dockerfile) -- [`2`, `2.0.20250902.3`](https://github.com/amazonlinux/container-images/blob/81757e0aa88c134de580b4e8847288e0ab819b77/Dockerfile) +- [`2`, `2.0.20250915.0`](https://github.com/amazonlinux/container-images/blob/257eeb1b8d2e285c625853acfc2405e2e8fdb33c/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/influxdb/README.md b/influxdb/README.md index 25827e91ebcd..74d1f517e293 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/Dockerfile) +- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/Dockerfile) -- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/alpine/Dockerfile) +- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/alpine/Dockerfile) -- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/data/Dockerfile) +- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/data/Dockerfile) -- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/data/alpine/Dockerfile) +- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/data/alpine/Dockerfile) -- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/meta/Dockerfile) +- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/meta/Dockerfile) -- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.12/meta/alpine/Dockerfile) +- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/meta/alpine/Dockerfile) -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/alpine/Dockerfile) -- [`1.11-data`, `1.11.8-data`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.8-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.8-meta`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.8-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/3.4-core/Dockerfile) +- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/3.4-core/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/a062f7bfcba3bffb3e4dec8cf2ab1f3cace43a4b/influxdb/3.4-enterprise/Dockerfile) +- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/redmine/README.md b/redmine/README.md index 0ced36d65692..f96ae1b5c1bc 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,17 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.7`, `6.0`, `6`, `latest`, `6.0.7-bookworm`, `6.0-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/bookworm/Dockerfile) +- [`6.1.0`, `6.1`, `6`, `latest`, `6.1.0-trixie`, `6.1-trixie`, `6-trixie`, `trixie`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/trixie/Dockerfile) -- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.0.7-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/alpine3.22/Dockerfile) +- [`6.1.0-bookworm`, `6.1-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/bookworm/Dockerfile) -- [`6.0.7-alpine3.21`, `6.0-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/6.0/alpine3.21/Dockerfile) +- [`6.1.0-alpine3.22`, `6.1-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/alpine3.22/Dockerfile) -- [`5.1.10`, `5.1`, `5`, `5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/bookworm/Dockerfile) +- [`6.1.0-alpine3.21`, `6.1-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/alpine3.21/Dockerfile) -- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/alpine3.22/Dockerfile) +- [`6.0.7`, `6.0`, `6.0.7-trixie`, `6.0-trixie`](https://github.com/docker-library/redmine/blob/a5559e1b8e4ff20203b73604dd91c3eb184899f1/6.0/trixie/Dockerfile) -- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/6152a3d65bd13ebc6a507ab2717abe96c501d44f/5.1/alpine3.21/Dockerfile) +- [`6.0.7-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/bookworm/Dockerfile) + +- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6.0.7-alpine`, `6.0-alpine`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/alpine3.22/Dockerfile) + +- [`6.0.7-alpine3.21`, `6.0-alpine3.21`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/alpine3.21/Dockerfile) + +- [`5.1.10`, `5.1`, `5`, `5.1.10-trixie`, `5.1-trixie`, `5-trixie`](https://github.com/docker-library/redmine/blob/b5192c29c3c06bafb09b57eec4fa7f2f1a64ec03/5.1/trixie/Dockerfile) + +- [`5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/bookworm/Dockerfile) + +- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/alpine3.22/Dockerfile) + +- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) @@ -220,7 +232,7 @@ The `redmine` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `redmine:-alpine` From d5f88fcbfdb16b0660c24c6f2d08be13d7031b35 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 10:10:51 -0700 Subject: [PATCH 2545/2686] Run update.sh --- bonita/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bonita/README.md b/bonita/README.md index 4e09d8d33979..c8e19d5d5181 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -30,7 +30,9 @@ WARNING: - [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`](https://github.com/bonitasoft/bonita-distrib/blob/397824cf4f302c37f3534908728a2b8321a31565/docker/Dockerfile) -- [`2024.3-u0`, `2024.3`, `10.2.0`, `10.2`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/634a6e462dbcc7da8ec7ed47adf419b9a24bf744/docker/Dockerfile) +- [`2024.3-u0`, `2024.3`, `10.2.0`, `10.2`](https://github.com/bonitasoft/bonita-distrib/blob/634a6e462dbcc7da8ec7ed47adf419b9a24bf744/docker/Dockerfile) + +- [`2025.1-u0`, `2025.1`, `10.3.0`, `10.3`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/adca7d9251091cd02f3cde7c0a9cee0e1538c7a1/docker/Dockerfile) # Quick reference (cont.) From 64aa16dd39983316c1857cc0562b4ab784cfc094 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 11:10:59 -0700 Subject: [PATCH 2546/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- convertigo/README.md | 2 +- rabbitmq/README.md | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 1170b9d98508..86667e827d64 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.4`, `25.8.4-jammy`, `25.8.4.13`, `25.8.4.13-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.8.4.13/Dockerfile.ubuntu) +- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.7`, `25.8.7-jammy`, `25.8.7.3`, `25.8.7.3-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.8.7.3/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.6`, `25.7.6-jammy`, `25.7.6.21`, `25.7.6.21-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.7.6.21/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.7.7.68/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.12`, `25.6.12-jammy`, `25.6.12.10`, `25.6.12.10-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.6.12.10/Dockerfile.ubuntu) +- [`25.6`, `25.6-jammy`, `25.6.12`, `25.6.12-jammy`, `25.6.12.10`, `25.6.12.10-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.6.12.10/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/5b5cac326c2b18286c737c206cd7948d69448885/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/convertigo/README.md b/convertigo/README.md index d8f36b749de9..142a29b8d2cd 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.8`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/bc71ce4b622dd2994adb03730375d0c744b0d004/docker/default/Dockerfile) +- [`8.3.9`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/a22b2bd68b46e4e0872aa3bf5ecf28d71ebdb342/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 29f2dc365f6c..6fb6dc314833 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.3`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/32e64e501148ddd350f89047589da9c175238262/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-beta.4`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/8de40987d186b08c73a6d6edb40d825c01fca590/4.2-rc/ubuntu/Dockerfile) -- [`4.2.0-beta.3-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) +- [`4.2.0-beta.4-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.3-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/32e64e501148ddd350f89047589da9c175238262/4.2-rc/alpine/Dockerfile) +- [`4.2.0-beta.4-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/8de40987d186b08c73a6d6edb40d825c01fca590/4.2-rc/alpine/Dockerfile) -- [`4.2.0-beta.3-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) +- [`4.2.0-beta.4-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) - [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/ubuntu/Dockerfile) From 21bc583989456783a67f64147d659d9ac6e9e61c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 12:12:22 -0700 Subject: [PATCH 2547/2686] Run update.sh --- influxdb/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/influxdb/README.md b/influxdb/README.md index 74d1f517e293..f0d1394e76a4 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -48,6 +48,14 @@ WARNING: - [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.10-data`, `1.10.9-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/data/Dockerfile) + +- [`1.10-data-alpine`, `1.10.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/data/alpine/Dockerfile) + +- [`1.10-meta`, `1.10.9-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/meta/Dockerfile) + +- [`1.10-meta-alpine`, `1.10.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/meta/alpine/Dockerfile) + - [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/Dockerfile) - [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/alpine/Dockerfile) From bb746c82f722d30ad226c8c4c460918fd3d7f7e6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 14:10:33 -0700 Subject: [PATCH 2548/2686] Run update.sh --- docker/README.md | 25 +++++++++--- eclipse-temurin/README.md | 82 ++++++++++++++++++--------------------- 2 files changed, 57 insertions(+), 50 deletions(-) diff --git a/docker/README.md b/docker/README.md index 8acef129a421..954f9d788c54 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,37 @@ WARNING: ## Simple Tags -- [`28.4.0-cli`, `28.4-cli`, `28-cli`, `cli`, `28.4.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/cli/Dockerfile) +- [`28.5.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.5.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/cli/Dockerfile) + +- [`28.5.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.5.0-rc.1-dind-alpine3.22`, `28.5.0-rc.1`, `28-rc`, `rc`, `28.5.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/dind/Dockerfile) + +- [`28.5.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/dind-rootless/Dockerfile) + +- [`28.5.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`28.5.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`28.4.0-cli`, `28.4-cli`, `28-cli`, `cli`, `28.4.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/cli/Dockerfile) - [`28.4.0-dind`, `28.4-dind`, `28-dind`, `dind`, `28.4.0-dind-alpine3.22`, `28.4.0`, `28.4`, `28`, `latest`, `28.4.0-alpine3.22`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind/Dockerfile) - [`28.4.0-dind-rootless`, `28.4-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind-rootless/Dockerfile) -- [`28.4.0-windowsservercore-ltsc2025`, `28.4-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.4.0-windowsservercore-ltsc2025`, `28.4-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.4.0-windowsservercore-ltsc2022`, `28.4-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.4.0-windowsservercore-ltsc2022`, `28.4-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags +- `28.5.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: + + - [`28.5.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.5.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `28.4.0-windowsservercore`, `28.4-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.4.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/14501013a18c57ec6961114d38753c5152c2cfc0/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.4.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 4c5d31fc4b5a..e5674e47d608 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -204,45 +204,37 @@ WARNING: - [`21.0.8_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`24.0.2_12-jdk-alpine-3.20`, `24-jdk-alpine-3.20`, `24-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.20/Dockerfile) +- [`25_36-jdk-alpine-3.21`, `25-jdk-alpine-3.21`, `25-alpine-3.21`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/alpine/3.21/Dockerfile) -- [`24.0.2_12-jdk-alpine-3.21`, `24-jdk-alpine-3.21`, `24-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.21/Dockerfile) +- [`25_36-jdk-alpine-3.22`, `25-jdk-alpine-3.22`, `25-alpine-3.22`, `25_36-jdk-alpine`, `25-jdk-alpine`, `25-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/alpine/3.22/Dockerfile) -- [`24.0.2_12-jdk-alpine-3.22`, `24-jdk-alpine-3.22`, `24-alpine-3.22`, `24.0.2_12-jdk-alpine`, `24-jdk-alpine`, `24-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/alpine/3.22/Dockerfile) +- [`25_36-jdk-noble`, `25-jdk-noble`, `25-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubuntu/noble/Dockerfile) -- [`24.0.2_12-jdk-noble`, `24-jdk-noble`, `24-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubuntu/noble/Dockerfile) +- [`25_36-jdk-ubi10-minimal`, `25-jdk-ubi10-minimal`, `25-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubi/ubi10-minimal/Dockerfile) -- [`24.0.2_12-jdk-ubi10-minimal`, `24-jdk-ubi10-minimal`, `24-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubi/ubi10-minimal/Dockerfile) +- [`25_36-jdk-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24.0.2_12-jdk-ubi9-minimal`, `24-jdk-ubi9-minimal`, `24-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubi/ubi9-minimal/Dockerfile) +- [`25_36-jdk-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`24.0.2_12-jdk-windowsservercore-ltsc2025`, `24-jdk-windowsservercore-ltsc2025`, `24-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25_36-jdk-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2_12-jdk-nanoserver-ltsc2025`, `24-jdk-nanoserver-ltsc2025`, `24-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25_36-jdk-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`24.0.2_12-jdk-windowsservercore-ltsc2022`, `24-jdk-windowsservercore-ltsc2022`, `24-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25_36-jre-alpine-3.21`, `25-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/alpine/3.21/Dockerfile) -- [`24.0.2_12-jdk-nanoserver-ltsc2022`, `24-jdk-nanoserver-ltsc2022`, `24-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25_36-jre-alpine-3.22`, `25-jre-alpine-3.22`, `25_36-jre-alpine`, `25-jre-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/alpine/3.22/Dockerfile) -- [`24.0.2_12-jre-alpine-3.20`, `24-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.20/Dockerfile) +- [`25_36-jre-noble`, `25-jre-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubuntu/noble/Dockerfile) -- [`24.0.2_12-jre-alpine-3.21`, `24-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.21/Dockerfile) +- [`25_36-jre-ubi10-minimal`, `25-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubi/ubi10-minimal/Dockerfile) -- [`24.0.2_12-jre-alpine-3.22`, `24-jre-alpine-3.22`, `24.0.2_12-jre-alpine`, `24-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/alpine/3.22/Dockerfile) +- [`25_36-jre-windowsservercore-ltsc2025`, `25-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`24.0.2_12-jre-noble`, `24-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubuntu/noble/Dockerfile) +- [`25_36-jre-nanoserver-ltsc2025`, `25-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`24.0.2_12-jre-ubi10-minimal`, `24-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubi/ubi10-minimal/Dockerfile) +- [`25_36-jre-windowsservercore-ltsc2022`, `25-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`24.0.2_12-jre-ubi9-minimal`, `24-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubi/ubi9-minimal/Dockerfile) - -- [`24.0.2_12-jre-windowsservercore-ltsc2025`, `24-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`24.0.2_12-jre-nanoserver-ltsc2025`, `24-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2025/Dockerfile) - -- [`24.0.2_12-jre-windowsservercore-ltsc2022`, `24-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`24.0.2_12-jre-nanoserver-ltsc2022`, `24-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`25_36-jre-nanoserver-ltsc2022`, `25-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags @@ -342,7 +334,7 @@ WARNING: - [`17.0.16_8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`17.0.16_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.8_9-jdk`, `21-jdk`, `21`, `latest`: +- `21.0.8_9-jdk`, `21-jdk`, `21`: - [`21.0.8_9-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/noble/Dockerfile) - [`21.0.8_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) @@ -374,37 +366,37 @@ WARNING: - [`21.0.8_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - [`21.0.8_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `24.0.2_12-jdk`, `24-jdk`, `24`: +- `25_36-jdk`, `25-jdk`, `25`, `latest`: - - [`24.0.2_12-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/ubuntu/noble/Dockerfile) - - [`24.0.2_12-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.2_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25_36-jdk-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubuntu/noble/Dockerfile) + - [`25_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.2_12-jdk-windowsservercore`, `24-jdk-windowsservercore`, `24-windowsservercore`: +- `25_36-jdk-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`24.0.2_12-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.2_12-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.2_12-jdk-nanoserver`, `24-jdk-nanoserver`, `24-nanoserver`: +- `25_36-jdk-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`24.0.2_12-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`24.0.2_12-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25_36-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `24.0.2_12-jre`, `24-jre`: +- `25_36-jre`, `25-jre`: - - [`24.0.2_12-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/ubuntu/noble/Dockerfile) - - [`24.0.2_12-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.2_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25_36-jre-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubuntu/noble/Dockerfile) + - [`25_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.2_12-jre-windowsservercore`, `24-jre-windowsservercore`: +- `25_36-jre-windowsservercore`, `25-jre-windowsservercore`: - - [`24.0.2_12-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`24.0.2_12-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `24.0.2_12-jre-nanoserver`, `24-jre-nanoserver`: +- `25_36-jre-nanoserver`, `25-jre-nanoserver`: - - [`24.0.2_12-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`24.0.2_12-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/24/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`25_36-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`25_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 4b8460356aa2dafadad6f1fc63965a6be7132c94 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 15:11:23 -0700 Subject: [PATCH 2549/2686] Run update.sh --- php/README.md | 56 +++++++++++++-------------------------------------- 1 file changed, 14 insertions(+), 42 deletions(-) diff --git a/php/README.md b/php/README.md index aefb60fec288..fd7c7db96f7e 100644 --- a/php/README.md +++ b/php/README.md @@ -52,61 +52,33 @@ WARNING: - [`8.5.0beta3-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/zts/Dockerfile) -- [`8.4.13RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.13RC1-trixie`, `8.4-rc-trixie`, `8.4.13RC1-cli`, `8.4-rc-cli`, `8.4.13RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/cli/Dockerfile) +- [`8.4.13-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.13-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.13-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.13`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/cli/Dockerfile) -- [`8.4.13RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.13RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/apache/Dockerfile) +- [`8.4.13-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.13-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/apache/Dockerfile) -- [`8.4.13RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.13RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/fpm/Dockerfile) +- [`8.4.13-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.13-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/fpm/Dockerfile) -- [`8.4.13RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.13RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/trixie/zts/Dockerfile) +- [`8.4.13-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.13-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/zts/Dockerfile) -- [`8.4.13RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.13RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.13-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.13-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/cli/Dockerfile) -- [`8.4.13RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.13-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/apache/Dockerfile) -- [`8.4.13RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.13-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/fpm/Dockerfile) -- [`8.4.13RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.13-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/zts/Dockerfile) -- [`8.4.13RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.13RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.13RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.13RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.13-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.13-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.13-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.13-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.13RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.13RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.13-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.13-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.13RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.13RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.13-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.13-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.13RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.13RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.13-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.13-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.13RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.13-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.13RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/4cc68c9e4aad217da9879befc36d4d707130649c/8.4-rc/alpine3.21/zts/Dockerfile) - -- [`8.4.12-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.12-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.12-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.12`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/cli/Dockerfile) - -- [`8.4.12-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.12-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/apache/Dockerfile) - -- [`8.4.12-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.12-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/fpm/Dockerfile) - -- [`8.4.12-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.12-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/trixie/zts/Dockerfile) - -- [`8.4.12-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.12-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/cli/Dockerfile) - -- [`8.4.12-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/apache/Dockerfile) - -- [`8.4.12-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/fpm/Dockerfile) - -- [`8.4.12-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/bookworm/zts/Dockerfile) - -- [`8.4.12-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.12-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.12-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.12-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/cli/Dockerfile) - -- [`8.4.12-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.12-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/fpm/Dockerfile) - -- [`8.4.12-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.12-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.22/zts/Dockerfile) - -- [`8.4.12-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.12-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/cli/Dockerfile) - -- [`8.4.12-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/fpm/Dockerfile) - -- [`8.4.12-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/7f411e688b84f4d696fa869c0743035e715ef467/8.4/alpine3.21/zts/Dockerfile) +- [`8.4.13-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/zts/Dockerfile) - [`8.3.26RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.26RC1-trixie`, `8.3-rc-trixie`, `8.3.26RC1-cli`, `8.3-rc-cli`, `8.3.26RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/cli/Dockerfile) From a5b12488e6dbb00a138da0c50bdc39f6ef0140c9 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 25 Sep 2025 16:42:27 -0700 Subject: [PATCH 2550/2686] Update PostgreSQL documentation now that 18 is GA This adjusts some examples to use `/var/lib/postgresql` as appropriate, and dials in some other language to be more focused on the 18+ reality. --- postgres/content.md | 29 ++++++++--------------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/postgres/content.md b/postgres/content.md index 87cd0c59305b..9e2e30f89bb8 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -102,20 +102,7 @@ Users who wish to opt-in to this change on older releases can do so by setting ` > **Important Note:** (for PostgreSQL 17 and below) Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. -This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. - -For example: - -```console -$ docker run -d \ - --name some-postgres \ - -e POSTGRES_PASSWORD=mysecretpassword \ - -e PGDATA=/var/lib/postgresql/data/pgdata \ - -v /custom/mount:/var/lib/postgresql/data \ - %%IMAGE%% -``` - -This is an environment variable that is not Docker specific. Because the variable is used by the `postgres` server binary (see the [PostgreSQL docs](https://www.postgresql.org/docs/14/app-postgres.html#id-1.9.5.14.7)), the entrypoint script takes it into account. +This (`PGDATA`) is an environment variable that is not Docker specific. Because the variable is used by the `postgres` server binary (see the [PostgreSQL docs](https://www.postgresql.org/docs/14/app-postgres.html#id-1.9.5.14.7)), the entrypoint script takes it into account. ## Docker Secrets @@ -204,7 +191,7 @@ When using the Alpine variants, any postgres extension not listed in [postgres-c As of [docker-library/postgres#253](https://github.com/docker-library/postgres/pull/253), this image supports running as a (mostly) arbitrary user via `--user` on `docker run`. As of [docker-library/postgres#1018](https://github.com/docker-library/postgres/pull/1018), this is also the case for the Alpine variants. -The main caveat to note is that `postgres` doesn't care what UID it runs as (as long as the owner of `/var/lib/postgresql/data` matches), but `initdb` *does* care (and needs the user to exist in `/etc/passwd`): +The main caveat to note is that `postgres` doesn't care what UID it runs as (as long as the owner of `PGDATA` matches), but `initdb` *does* care (and needs the user to exist in `/etc/passwd`): ```console $ docker run -it --rm --user www-data -e POSTGRES_PASSWORD=mysecretpassword %%IMAGE%% @@ -230,13 +217,13 @@ The three easiest ways to get around this: 3. initialize the target directory separately from the final runtime (with a `chown` in between): ```console - $ docker volume create pgdata - $ docker run -it --rm -v pgdata:/var/lib/postgresql/data -e POSTGRES_PASSWORD=mysecretpassword %%IMAGE%% + $ docker volume create pg + $ docker run -it --rm -v pg:/var/lib/postgresql -e POSTGRES_PASSWORD=mysecretpassword %%IMAGE%% The files belonging to this database system will be owned by user "postgres". ... ( once it's finished initializing successfully and is waiting for connections, stop it ) - $ docker run -it --rm -v pgdata:/var/lib/postgresql/data bash chown -R 1000:1000 /var/lib/postgresql/data - $ docker run -it --rm --user 1000:1000 -v pgdata:/var/lib/postgresql/data %%IMAGE%% + $ docker run -it --rm -v pg:/var/lib/postgresql bash chown -R 1000:1000 /var/lib/postgresql + $ docker run -it --rm --user 1000:1000 -v pg:/var/lib/postgresql %%IMAGE%% LOG: database system was shut down at 2017-01-20 00:03:23 UTC LOG: MultiXact member wraparound protections are now enabled LOG: autovacuum launcher started @@ -262,7 +249,7 @@ The Docker documentation is a good starting point for understanding the differen 2. Start your `%%IMAGE%%` container like this: ```console - $ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/postgresql/data -e POSTGRES_PASSWORD=mysecretpassword -d %%IMAGE%%:tag + $ docker run --name some-%%REPO%% -v /my/own/datadir:/var/lib/postgresql -e POSTGRES_PASSWORD=mysecretpassword -d %%IMAGE%%:tag ``` -The `-v /my/own/datadir:/var/lib/postgresql/data` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/postgresql/data` inside the container, where PostgreSQL by default will write its data files. +The `-v /my/own/datadir:/var/lib/postgresql` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/postgresql` inside the container, where PostgreSQL by default will write its data files. From 32d9b69b45782775c40699fa8fac4347c1db2aa8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 25 Sep 2025 17:10:46 -0700 Subject: [PATCH 2551/2686] Run update.sh --- postgres/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 73311f1c325e..8e4cdb756fb7 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18rc1`, `18rc1-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/trixie/Dockerfile) +- [`18.0`, `18`, `latest`, `18.0-trixie`, `18-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/trixie/Dockerfile) -- [`18rc1-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/bookworm/Dockerfile) +- [`18.0-bookworm`, `18-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/bookworm/Dockerfile) -- [`18rc1-alpine3.22`, `18rc1-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/alpine3.22/Dockerfile) +- [`18.0-alpine3.22`, `18-alpine3.22`, `alpine3.22`, `18.0-alpine`, `18-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/alpine3.22/Dockerfile) -- [`18rc1-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/18/alpine3.21/Dockerfile) +- [`18.0-alpine3.21`, `18-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/alpine3.21/Dockerfile) -- [`17.6`, `17`, `latest`, `17.6-trixie`, `17-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/trixie/Dockerfile) +- [`17.6`, `17`, `17.6-trixie`, `17-trixie`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/trixie/Dockerfile) -- [`17.6-bookworm`, `17-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/bookworm/Dockerfile) -- [`17.6-alpine3.22`, `17-alpine3.22`, `alpine3.22`, `17.6-alpine`, `17-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `17.6-alpine`, `17-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.22/Dockerfile) -- [`17.6-alpine3.21`, `17-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.21/Dockerfile) - [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/trixie/Dockerfile) From f56871baf887d944b6ddf95cc4718afae621f9b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Sep 2025 09:11:10 -0700 Subject: [PATCH 2552/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index 929a4c3e6426..d44d345eb158 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.8-alpine3.21`, `24.8.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.9-alpine3.21`, `24.9.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.8-alpine`, `24.8-alpine3.22`, `24.8.0-alpine`, `24.8.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.9-alpine`, `24.9-alpine3.22`, `24.9.0-alpine`, `24.9.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.8`, `24.8-bookworm`, `24.8.0`, `24.8.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.9`, `24.9-bookworm`, `24.9.0`, `24.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.8-bookworm-slim`, `24.8-slim`, `24.8.0-bookworm-slim`, `24.8.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.9-bookworm-slim`, `24.9-slim`, `24.9.0-bookworm-slim`, `24.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.8-bullseye`, `24.8.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.9-bullseye`, `24.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.8-bullseye-slim`, `24.8.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.9-bullseye-slim`, `24.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.8-trixie`, `24.8.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/trixie/Dockerfile) +- [`24-trixie`, `24.9-trixie`, `24.9.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.8-trixie-slim`, `24.8.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/bee7dac041d0c0f2fb34e84236a7a72ccc9827b0/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.9-trixie-slim`, `24.9.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.20-alpine3.21`, `22.20.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.21/Dockerfile) From 763145c82beb0f129cc5e528766fd3db76ff3963 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Sep 2025 10:10:59 -0700 Subject: [PATCH 2553/2686] Run update.sh --- bonita/README.md | 10 +--------- crate/README.md | 2 +- eclipse-temurin/README.md | 4 ++++ nextcloud/README.md | 12 ++++++------ traefik/README.md | 6 +++--- 5 files changed, 15 insertions(+), 19 deletions(-) diff --git a/bonita/README.md b/bonita/README.md index c8e19d5d5181..af60b7665fff 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -24,14 +24,6 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2022.2-u0`, `2022.2`, `7.15.0`, `7.15`](https://github.com/bonitasoft/bonita-distrib/blob/0fbc47d8fcb6629b943b4c1e00052ca14c3d1e1b/docker/Dockerfile) - -- [`2023.1-u0`, `2023.1`, `8.0.0`, `8.0`](https://github.com/bonitasoft/bonita-distrib/blob/31dcebbf22ebcce11f8e3a9b9444802136c36c03/docker/Dockerfile) - -- [`2023.2-u0`, `2023.2`, `9.0.0`, `9.0`](https://github.com/bonitasoft/bonita-distrib/blob/397824cf4f302c37f3534908728a2b8321a31565/docker/Dockerfile) - -- [`2024.3-u0`, `2024.3`, `10.2.0`, `10.2`](https://github.com/bonitasoft/bonita-distrib/blob/634a6e462dbcc7da8ec7ed47adf419b9a24bf744/docker/Dockerfile) - - [`2025.1-u0`, `2025.1`, `10.3.0`, `10.3`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/adca7d9251091cd02f3cde7c0a9cee0e1538c7a1/docker/Dockerfile) # Quick reference (cont.) @@ -40,7 +32,7 @@ WARNING: [Jira](https://bonita.atlassian.net/jira/software/c/projects/BBPMC/issues) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/bonita/), [`arm64v8`](https://hub.docker.com/r/arm64v8/bonita/), [`ppc64le`](https://hub.docker.com/r/ppc64le/bonita/) + [`amd64`](https://hub.docker.com/r/amd64/bonita/) - **Published image artifact details**: [repo-info repo's `repos/bonita/` directory](https://github.com/docker-library/repo-info/blob/master/repos/bonita) ([history](https://github.com/docker-library/repo-info/commits/master/repos/bonita)) diff --git a/crate/README.md b/crate/README.md index b6051f1c3c20..5c4d02168e69 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.11`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/274bcc033592b7503602cc7850de662313a3b858/Dockerfile) +- [`5.10.12`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/677b92fce1c9ffe8e9d60e6c083c583b02ffe082/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index e5674e47d608..28c325e6d2e9 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -208,6 +208,8 @@ WARNING: - [`25_36-jdk-alpine-3.22`, `25-jdk-alpine-3.22`, `25-alpine-3.22`, `25_36-jdk-alpine`, `25-jdk-alpine`, `25-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/alpine/3.22/Dockerfile) +- [`25_36-jdk-jammy`, `25-jdk-jammy`, `25-jammy`](https://github.com/adoptium/containers/blob/7dc6a92c80c1f371f3d416e8357efe18796016a5/25/jdk/ubuntu/jammy/Dockerfile) + - [`25_36-jdk-noble`, `25-jdk-noble`, `25-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubuntu/noble/Dockerfile) - [`25_36-jdk-ubi10-minimal`, `25-jdk-ubi10-minimal`, `25-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubi/ubi10-minimal/Dockerfile) @@ -224,6 +226,8 @@ WARNING: - [`25_36-jre-alpine-3.22`, `25-jre-alpine-3.22`, `25_36-jre-alpine`, `25-jre-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/alpine/3.22/Dockerfile) +- [`25_36-jre-jammy`, `25-jre-jammy`](https://github.com/adoptium/containers/blob/7dc6a92c80c1f371f3d416e8357efe18796016a5/25/jre/ubuntu/jammy/Dockerfile) + - [`25_36-jre-noble`, `25-jre-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubuntu/noble/Dockerfile) - [`25_36-jre-ubi10-minimal`, `25-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubi/ubi10-minimal/Dockerfile) diff --git a/nextcloud/README.md b/nextcloud/README.md index c6a2d079a6aa..cf0128e893d6 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,17 +28,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.15-apache`, `30.0-apache`, `30-apache`, `30.0.15`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/apache/Dockerfile) +- [`30.0.16-apache`, `30.0-apache`, `30-apache`, `30.0.16`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/apache/Dockerfile) -- [`30.0.15-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/fpm/Dockerfile) +- [`30.0.16-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/fpm/Dockerfile) -- [`30.0.15-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/30/fpm-alpine/Dockerfile) +- [`30.0.16-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/fpm-alpine/Dockerfile) -- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/apache/Dockerfile) +- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/apache/Dockerfile) -- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/fpm/Dockerfile) +- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm/Dockerfile) -- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/2ac1f1346ce19ca34193c8b72b87fee4e8d377e7/31/fpm-alpine/Dockerfile) +- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/traefik/README.md b/traefik/README.md index 411406ef2c37..4dfb4e12ab5b 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.2-windowsservercore-ltsc2022`, `3.5.2-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.3-windowsservercore-ltsc2022`, `3.5.3-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.2-nanoserver-ltsc2022`, `3.5.2-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.3-nanoserver-ltsc2022`, `3.5.3-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.2`, `3.5.2`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/f9585618309c08b77540c0207590df9986be9733/v3.5/alpine/Dockerfile) +- [`v3.5.3`, `3.5.3`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/alpine/Dockerfile) - [`v2.11.29-windowsservercore-ltsc2022`, `2.11.29-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/servercore-ltsc2022/Dockerfile) From 9a157408da49f3c1fe08651be9a52fc09e0f7e9d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Sep 2025 11:10:57 -0700 Subject: [PATCH 2554/2686] Run update.sh --- clojure/README.md | 178 ++++++++++++++++++++++----------------------- influxdb/README.md | 40 +++++----- 2 files changed, 109 insertions(+), 109 deletions(-) diff --git a/clojure/README.md b/clojure/README.md index 668e94e36c0d..1ed86e3302ce 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -24,183 +24,183 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/latest/Dockerfile) +- [`latest`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-25/latest/Dockerfile) -- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-alpine`, `temurin-8-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-alpine/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm`, `temurin-8-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bookworm-slim`, `temurin-8-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye`, `temurin-8-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-bullseye-slim`, `temurin-8-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-jammy`, `temurin-8-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-jammy/lein/Dockerfile) -- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) +- [`temurin-8-lein`, `temurin-8-lein-2.12.0`, `temurin-8-lein-2.12.0-noble`, `temurin-8-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-noble/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie`, `temurin-8-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-8/lein/Dockerfile) -- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-8/lein/Dockerfile) +- [`temurin-8-lein-2.12.0-trixie-slim`, `temurin-8-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-8/lein/Dockerfile) -- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.2.1571-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-8-alpine`, `temurin-8-tools-deps-1.12.3.1577-alpine`, `temurin-8-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.2.1571-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm`, `temurin-8-tools-deps-1.12.3.1577-bookworm`, `temurin-8-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-8/tools-deps/Dockerfile) -- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bookworm-slim`, `temurin-8-tools-deps-1.12.3.1577-bookworm-slim`, `temurin-8-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.2.1571-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye`, `temurin-8-tools-deps-1.12.3.1577-bullseye`, `temurin-8-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-8/tools-deps/Dockerfile) -- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-8/tools-deps/Dockerfile) +- [`temurin-8-bullseye-slim`, `temurin-8-tools-deps-1.12.3.1577-bullseye-slim`, `temurin-8-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-8/tools-deps/Dockerfile) -- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.2.1571-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-8-jammy`, `temurin-8-tools-deps-1.12.3.1577-jammy`, `temurin-8-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.2.1571`, `temurin-8-tools-deps-1.12.2.1571-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) +- [`temurin-8-noble`, `temurin-8-tools-deps`, `temurin-8-tools-deps-1.12.3.1577`, `temurin-8-tools-deps-1.12.3.1577-noble`, `temurin-8-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-8-jdk-noble/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1571-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.3.1577-trixie`, `temurin-8-tools-deps-trixie`, `temurin-8-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-8/tools-deps/Dockerfile) -- [`temurin-8-tools-deps-1.12.2.1571-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-8/tools-deps/Dockerfile) +- [`temurin-8-tools-deps-1.12.3.1577-trixie-slim`, `temurin-8-tools-deps-trixie-slim`, `temurin-8-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-8/tools-deps/Dockerfile) -- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-alpine`, `temurin-11-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-alpine/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm`, `temurin-11-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bookworm-slim`, `temurin-11-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye`, `temurin-11-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-bullseye-slim`, `temurin-11-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-jammy`, `temurin-11-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-jammy/lein/Dockerfile) -- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) +- [`temurin-11-lein`, `temurin-11-lein-2.12.0`, `temurin-11-lein-2.12.0-noble`, `temurin-11-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-noble/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie`, `temurin-11-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-11/lein/Dockerfile) -- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-11/lein/Dockerfile) +- [`temurin-11-lein-2.12.0-trixie-slim`, `temurin-11-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-11/lein/Dockerfile) -- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.2.1571-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-11-alpine`, `temurin-11-tools-deps-1.12.3.1577-alpine`, `temurin-11-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.2.1571-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm`, `temurin-11-tools-deps-1.12.3.1577-bookworm`, `temurin-11-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-11/tools-deps/Dockerfile) -- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bookworm-slim`, `temurin-11-tools-deps-1.12.3.1577-bookworm-slim`, `temurin-11-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.2.1571-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye`, `temurin-11-tools-deps-1.12.3.1577-bullseye`, `temurin-11-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-11/tools-deps/Dockerfile) -- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-11/tools-deps/Dockerfile) +- [`temurin-11-bullseye-slim`, `temurin-11-tools-deps-1.12.3.1577-bullseye-slim`, `temurin-11-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-11/tools-deps/Dockerfile) -- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.2.1571-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-11-jammy`, `temurin-11-tools-deps-1.12.3.1577-jammy`, `temurin-11-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.2.1571`, `temurin-11-tools-deps-1.12.2.1571-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) +- [`temurin-11-noble`, `temurin-11-tools-deps`, `temurin-11-tools-deps-1.12.3.1577`, `temurin-11-tools-deps-1.12.3.1577-noble`, `temurin-11-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-11-jdk-noble/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1571-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.3.1577-trixie`, `temurin-11-tools-deps-trixie`, `temurin-11-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-11/tools-deps/Dockerfile) -- [`temurin-11-tools-deps-1.12.2.1571-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-11/tools-deps/Dockerfile) +- [`temurin-11-tools-deps-1.12.3.1577-trixie-slim`, `temurin-11-tools-deps-trixie-slim`, `temurin-11-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-11/tools-deps/Dockerfile) -- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-alpine`, `temurin-17-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-alpine/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm`, `temurin-17-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bookworm-slim`, `temurin-17-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye`, `temurin-17-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-bullseye-slim`, `temurin-17-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-jammy`, `temurin-17-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-jammy/lein/Dockerfile) -- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) +- [`temurin-17-lein`, `temurin-17-lein-2.12.0`, `temurin-17-lein-2.12.0-noble`, `temurin-17-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-noble/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie`, `temurin-17-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-17/lein/Dockerfile) -- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-17/lein/Dockerfile) +- [`temurin-17-lein-2.12.0-trixie-slim`, `temurin-17-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-17/lein/Dockerfile) -- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.2.1571-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-17-alpine`, `temurin-17-tools-deps-1.12.3.1577-alpine`, `temurin-17-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.2.1571-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm`, `temurin-17-tools-deps-1.12.3.1577-bookworm`, `temurin-17-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-17/tools-deps/Dockerfile) -- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bookworm-slim`, `temurin-17-tools-deps-1.12.3.1577-bookworm-slim`, `temurin-17-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.2.1571-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye`, `temurin-17-tools-deps-1.12.3.1577-bullseye`, `temurin-17-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-17/tools-deps/Dockerfile) -- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-17/tools-deps/Dockerfile) +- [`temurin-17-bullseye-slim`, `temurin-17-tools-deps-1.12.3.1577-bullseye-slim`, `temurin-17-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-17/tools-deps/Dockerfile) -- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.2.1571-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-17-jammy`, `temurin-17-tools-deps-1.12.3.1577-jammy`, `temurin-17-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.2.1571`, `temurin-17-tools-deps-1.12.2.1571-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) +- [`temurin-17-noble`, `temurin-17-tools-deps`, `temurin-17-tools-deps-1.12.3.1577`, `temurin-17-tools-deps-1.12.3.1577-noble`, `temurin-17-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-17-jdk-noble/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1571-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.3.1577-trixie`, `temurin-17-tools-deps-trixie`, `temurin-17-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-17/tools-deps/Dockerfile) -- [`temurin-17-tools-deps-1.12.2.1571-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-17/tools-deps/Dockerfile) +- [`temurin-17-tools-deps-1.12.3.1577-trixie-slim`, `temurin-17-tools-deps-trixie-slim`, `temurin-17-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-17/tools-deps/Dockerfile) -- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-alpine`, `temurin-21-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-alpine/lein/Dockerfile) -- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/lein/Dockerfile) +- [`temurin-21-lein`, `temurin-21-lein-2.12.0`, `temurin-21-lein-2.12.0-bookworm`, `temurin-21-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-21/lein/Dockerfile) -- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-bookworm-slim`, `temurin-21-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-21/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-bullseye`, `temurin-21-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-21/lein/Dockerfile) -- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-bullseye-slim`, `temurin-21-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-21/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-jammy`, `temurin-21-lein-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-jammy/lein/Dockerfile) -- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-noble`, `temurin-21-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-noble/lein/Dockerfile) -- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-21/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-trixie`, `temurin-21-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-21/lein/Dockerfile) -- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-21/lein/Dockerfile) +- [`temurin-21-lein-2.12.0-trixie-slim`, `temurin-21-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-21/lein/Dockerfile) -- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.2.1571-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-21-alpine`, `temurin-21-tools-deps-1.12.3.1577-alpine`, `temurin-21-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.2.1571`, `temurin-21-tools-deps-1.12.2.1571-bookworm`, `temurin-21-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.2.1571`, `tools-deps-1.12.2.1571-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm`, `temurin-21-tools-deps`, `temurin-21-tools-deps-1.12.3.1577`, `temurin-21-tools-deps-1.12.3.1577-bookworm`, `temurin-21-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-21/tools-deps/Dockerfile) -- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`, `tools-deps-1.12.2.1571-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bookworm-slim`, `temurin-21-tools-deps-1.12.3.1577-bookworm-slim`, `temurin-21-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.2.1571-bullseye`, `temurin-21-tools-deps-bullseye`, `tools-deps-1.12.2.1571-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye`, `temurin-21-tools-deps-1.12.3.1577-bullseye`, `temurin-21-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-21/tools-deps/Dockerfile) -- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`, `tools-deps-1.12.2.1571-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-21/tools-deps/Dockerfile) +- [`temurin-21-bullseye-slim`, `temurin-21-tools-deps-1.12.3.1577-bullseye-slim`, `temurin-21-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-21/tools-deps/Dockerfile) -- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.2.1571-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) +- [`temurin-21-jammy`, `temurin-21-tools-deps-1.12.3.1577-jammy`, `temurin-21-tools-deps-jammy`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-jammy/tools-deps/Dockerfile) -- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.2.1571-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) +- [`temurin-21-noble`, `temurin-21-tools-deps-1.12.3.1577-noble`, `temurin-21-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-21-jdk-noble/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1571-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`, `tools-deps-1.12.2.1571-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.3.1577-trixie`, `temurin-21-tools-deps-trixie`, `temurin-21-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-21/tools-deps/Dockerfile) -- [`temurin-21-tools-deps-1.12.2.1571-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`, `tools-deps-1.12.2.1571-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-21/tools-deps/Dockerfile) +- [`temurin-21-tools-deps-1.12.3.1577-trixie-slim`, `temurin-21-tools-deps-trixie-slim`, `temurin-21-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-21/tools-deps/Dockerfile) -- [`temurin-24-lein-2.12.0-alpine`, `temurin-24-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-alpine/lein/Dockerfile) +- [`temurin-25-lein-2.12.0-alpine`, `temurin-25-lein-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-25-jdk-alpine/lein/Dockerfile) -- [`temurin-24-lein`, `temurin-24-lein-2.12.0`, `temurin-24-lein-2.12.0-bookworm`, `temurin-24-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-24/lein/Dockerfile) +- [`lein`, `lein-2.12.0`, `lein-2.12.0-bookworm`, `lein-bookworm`, `temurin-25-lein`, `temurin-25-lein-2.12.0`, `temurin-25-lein-2.12.0-bookworm`, `temurin-25-lein-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-25/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bookworm-slim`, `temurin-24-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-24/lein/Dockerfile) +- [`lein-2.12.0-bookworm-slim`, `lein-bookworm-slim`, `temurin-25-lein-2.12.0-bookworm-slim`, `temurin-25-lein-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-25/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye`, `temurin-24-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-24/lein/Dockerfile) +- [`lein-2.12.0-bullseye`, `lein-bullseye`, `temurin-25-lein-2.12.0-bullseye`, `temurin-25-lein-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-25/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-bullseye-slim`, `temurin-24-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-24/lein/Dockerfile) +- [`lein-2.12.0-bullseye-slim`, `lein-bullseye-slim`, `temurin-25-lein-2.12.0-bullseye-slim`, `temurin-25-lein-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-25/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-noble`, `temurin-24-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-noble/lein/Dockerfile) +- [`temurin-25-lein-2.12.0-noble`, `temurin-25-lein-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-25-jdk-noble/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie`, `temurin-24-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-24/lein/Dockerfile) +- [`lein-2.12.0-trixie`, `lein-trixie`, `temurin-25-lein-2.12.0-trixie`, `temurin-25-lein-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-25/lein/Dockerfile) -- [`temurin-24-lein-2.12.0-trixie-slim`, `temurin-24-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-24/lein/Dockerfile) +- [`lein-2.12.0-trixie-slim`, `lein-trixie-slim`, `temurin-25-lein-2.12.0-trixie-slim`, `temurin-25-lein-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-25/lein/Dockerfile) -- [`temurin-24-alpine`, `temurin-24-tools-deps-1.12.2.1571-alpine`, `temurin-24-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile) +- [`temurin-25-alpine`, `temurin-25-tools-deps-1.12.3.1577-alpine`, `temurin-25-tools-deps-alpine`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-25-jdk-alpine/tools-deps/Dockerfile) -- [`temurin-24-bookworm`, `temurin-24-tools-deps`, `temurin-24-tools-deps-1.12.2.1571`, `temurin-24-tools-deps-1.12.2.1571-bookworm`, `temurin-24-tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-24/tools-deps/Dockerfile) +- [`temurin-25-bookworm`, `temurin-25-tools-deps`, `temurin-25-tools-deps-1.12.3.1577`, `temurin-25-tools-deps-1.12.3.1577-bookworm`, `temurin-25-tools-deps-bookworm`, `tools-deps`, `tools-deps-1.12.3.1577`, `tools-deps-1.12.3.1577-bookworm`, `tools-deps-bookworm`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-25/tools-deps/Dockerfile) -- [`temurin-24-bookworm-slim`, `temurin-24-tools-deps-1.12.2.1571-bookworm-slim`, `temurin-24-tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bookworm-slim-24/tools-deps/Dockerfile) +- [`temurin-25-bookworm-slim`, `temurin-25-tools-deps-1.12.3.1577-bookworm-slim`, `temurin-25-tools-deps-bookworm-slim`, `tools-deps-1.12.3.1577-bookworm-slim`, `tools-deps-bookworm-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bookworm-slim-25/tools-deps/Dockerfile) -- [`temurin-24-bullseye`, `temurin-24-tools-deps-1.12.2.1571-bullseye`, `temurin-24-tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-24/tools-deps/Dockerfile) +- [`temurin-25-bullseye`, `temurin-25-tools-deps-1.12.3.1577-bullseye`, `temurin-25-tools-deps-bullseye`, `tools-deps-1.12.3.1577-bullseye`, `tools-deps-bullseye`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-25/tools-deps/Dockerfile) -- [`temurin-24-bullseye-slim`, `temurin-24-tools-deps-1.12.2.1571-bullseye-slim`, `temurin-24-tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-bullseye-slim-24/tools-deps/Dockerfile) +- [`temurin-25-bullseye-slim`, `temurin-25-tools-deps-1.12.3.1577-bullseye-slim`, `temurin-25-tools-deps-bullseye-slim`, `tools-deps-1.12.3.1577-bullseye-slim`, `tools-deps-bullseye-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-bullseye-slim-25/tools-deps/Dockerfile) -- [`temurin-24-noble`, `temurin-24-tools-deps-1.12.2.1571-noble`, `temurin-24-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/eclipse-temurin-24-jdk-noble/tools-deps/Dockerfile) +- [`temurin-25-noble`, `temurin-25-tools-deps-1.12.3.1577-noble`, `temurin-25-tools-deps-noble`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/eclipse-temurin-25-jdk-noble/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1571-trixie`, `temurin-24-tools-deps-trixie`, `temurin-24-trixie`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-24/tools-deps/Dockerfile) +- [`temurin-25-tools-deps-1.12.3.1577-trixie`, `temurin-25-tools-deps-trixie`, `temurin-25-trixie`, `tools-deps-1.12.3.1577-trixie`, `tools-deps-trixie`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-25/tools-deps/Dockerfile) -- [`temurin-24-tools-deps-1.12.2.1571-trixie-slim`, `temurin-24-tools-deps-trixie-slim`, `temurin-24-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/392116653c0e95aa47169c4dd171729f79ebc283/target/debian-trixie-slim-24/tools-deps/Dockerfile) +- [`temurin-25-tools-deps-1.12.3.1577-trixie-slim`, `temurin-25-tools-deps-trixie-slim`, `temurin-25-trixie-slim`, `tools-deps-1.12.3.1577-trixie-slim`, `tools-deps-trixie-slim`](https://github.com/Quantisan/docker-clojure/blob/6938e39125e2607ccc427065e6dfd11adf6e7527/target/debian-trixie-slim-25/tools-deps/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index f0d1394e76a4..4b02865bda7e 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,45 +24,45 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/Dockerfile) +- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/Dockerfile) -- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/alpine/Dockerfile) +- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/alpine/Dockerfile) -- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/data/Dockerfile) +- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/data/Dockerfile) -- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/data/alpine/Dockerfile) +- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/data/alpine/Dockerfile) -- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/meta/Dockerfile) +- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/meta/Dockerfile) -- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.12/meta/alpine/Dockerfile) +- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/meta/alpine/Dockerfile) -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/alpine/Dockerfile) -- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.9-data`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/data/Dockerfile) +- [`1.10-data`, `1.10.9-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/data/Dockerfile) -- [`1.10-data-alpine`, `1.10.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/data/alpine/Dockerfile) +- [`1.10-data-alpine`, `1.10.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/data/alpine/Dockerfile) -- [`1.10-meta`, `1.10.9-meta`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/meta/Dockerfile) +- [`1.10-meta`, `1.10.9-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/meta/Dockerfile) -- [`1.10-meta-alpine`, `1.10.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/1.10/meta/alpine/Dockerfile) +- [`1.10-meta-alpine`, `1.10.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/3.4-core/Dockerfile) +- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/3.4-core/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/587f06976afee685fc5dc9533b577b13efbf3fd1/influxdb/3.4-enterprise/Dockerfile) +- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/3.4-enterprise/Dockerfile) # Quick reference (cont.) From e0565a795b3173b8419e2343b53e543918220dfb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Sep 2025 15:10:34 -0700 Subject: [PATCH 2555/2686] Run update.sh --- bonita/README.md | 10 +++--- maven/README.md | 30 ++++++++--------- openjdk/README.md | 40 +++++++++++----------- php/README.md | 84 ++++++++++++++++------------------------------ postgres/README.md | 29 +++++----------- 5 files changed, 76 insertions(+), 117 deletions(-) diff --git a/bonita/README.md b/bonita/README.md index af60b7665fff..20be242b7c2a 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -75,7 +75,7 @@ As PostgreSQL is the recommended database for qualification and production envir From Bonita 2022.1 onwards, the Bonita docker image does not include configuration scripts to automatically create databases and users anymore. -Therefore the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: +Therefore, the PostgreSQL container needs to be configured to work with Bonita before starting the Bonita container. The configuration of a PostgreSQL database to work with Bonita is described in details in the [database configuration page](https://documentation.bonitasoft.com/bonita/latest/runtime/database-configuration#postgres_setup). + Alternatively, Bonita provides a preconfigured [PostgreSQL image](https://hub.docker.com/r/bonitasoft/bonita-postgres) on docker-hub. + You can run the image with the following command: ```bash docker run --name mydbpostgres -h -d bonitasoft/bonita-postgres:16.4 @@ -273,7 +273,7 @@ These variables are used in conjunction to define how Bonita should access the [ The logger can be configured by mounting a volume on folder `/opt/bonita/conf/logs` containing the configuration files. -the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.2.0/docker/files/log4j2/log4j2-appenders.xml) +the volume must contain the 2 files [log4j2-loggers.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.3.0/tomcat-resources/tomcat-distrib-for-bonita/src/main/resources/tomcat/server/conf/log4j2-loggers.xml) and [log4j2-appenders.xml](https://raw.githubusercontent.com/bonitasoft/bonita-distrib/10.3.0/docker/files/log4j2/log4j2-appenders.xml) Any change made to one of this 2 files is automatically hot-reloaded and taken into account immediately. @@ -332,13 +332,13 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Retrieve the last update tool archive from https://www.bonitasoft.com/downloads ```console - unzip bonita-update-tool-3.6.0.zip + unzip bonita-update-tool-3.7.0.zip ``` - Configure the update tool ```console - $ cd bonita-update-tool-3.6.0 + $ cd bonita-update-tool-3.7.0 ``` edit the update tool configuration file `Config.properties` to point towards the database. @@ -367,7 +367,7 @@ For updating from a version before 7.10.0, please refer to the [documentation](h - Launch the new container pointing towards the copy of the database. ```console - $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2024.3-u0 + $ docker run --name=bonita --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:2025.1-u0 ``` For more details regarding Bonita update and for version before 7.10.0, see the [documentation](https://documentation.bonitasoft.com/bonita/latest/version-update/migrate-from-an-earlier-version-of-bonita). diff --git a/maven/README.md b/maven/README.md index cee6139f0fb9..e6fb636eb09b 100644 --- a/maven/README.md +++ b/maven/README.md @@ -40,17 +40,17 @@ WARNING: - [`4.0.0-rc-4-eclipse-temurin-21-alpine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-21-alpine-maven-4/Dockerfile) -- [`3.9.11-eclipse-temurin-21-noble`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9.11-eclipse-temurin-21`, `3.9-eclipse-temurin-21-noble`, `3.9`, `3.9-eclipse-temurin`, `3.9-eclipse-temurin-21`, `3-eclipse-temurin-21-noble`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`, `3-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-21-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-21-noble`, `3.9.11-eclipse-temurin-21`, `3.9-eclipse-temurin-21-noble`, `3.9-eclipse-temurin-21`, `3-eclipse-temurin-21-noble`, `3-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-21-noble/Dockerfile) -- [`4.0.0-rc-4-eclipse-temurin-21-noble`, `4.0.0-rc-4`, `4.0.0-rc-4-eclipse-temurin`, `4.0.0-rc-4-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-21-noble-maven-4/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-21-noble`, `4.0.0-rc-4-eclipse-temurin-21`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-21-noble-maven-4/Dockerfile) -- [`3.9.11-eclipse-temurin-24-alpine`, `3.9-eclipse-temurin-24-alpine`, `3-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-24-alpine/Dockerfile) +- [`3.9.11-eclipse-temurin-25-alpine`, `3.9-eclipse-temurin-25-alpine`, `3-eclipse-temurin-25-alpine`](https://github.com/carlossg/docker-maven/blob/c774f7740e38fa4e4f4cec7153e4819cd9afd635/eclipse-temurin-25-alpine/Dockerfile) -- [`4.0.0-rc-4-eclipse-temurin-24-alpine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-24-alpine-maven-4/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-25-alpine`](https://github.com/carlossg/docker-maven/blob/c774f7740e38fa4e4f4cec7153e4819cd9afd635/eclipse-temurin-25-alpine-maven-4/Dockerfile) -- [`3.9.11-eclipse-temurin-24-noble`, `3.9.11-eclipse-temurin-24`, `3.9-eclipse-temurin-24-noble`, `3.9-eclipse-temurin-24`, `3-eclipse-temurin-24-noble`, `3-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/64ef35f1a6ef3538a0c7e846647d33ffa6232390/eclipse-temurin-24-noble/Dockerfile) +- [`3.9.11-eclipse-temurin-25-noble`, `3.9.11`, `3.9.11-eclipse-temurin`, `3.9.11-eclipse-temurin-25`, `3.9-eclipse-temurin-25-noble`, `3.9`, `3.9-eclipse-temurin`, `3.9-eclipse-temurin-25`, `3-eclipse-temurin-25-noble`, `3`, `latest`, `3-eclipse-temurin`, `eclipse-temurin`, `3-eclipse-temurin-25`](https://github.com/carlossg/docker-maven/blob/c774f7740e38fa4e4f4cec7153e4819cd9afd635/eclipse-temurin-25-noble/Dockerfile) -- [`4.0.0-rc-4-eclipse-temurin-24-noble`, `4.0.0-rc-4-eclipse-temurin-24`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/eclipse-temurin-24-noble-maven-4/Dockerfile) +- [`4.0.0-rc-4-eclipse-temurin-25-noble`, `4.0.0-rc-4`, `4.0.0-rc-4-eclipse-temurin`, `4.0.0-rc-4-eclipse-temurin-25`](https://github.com/carlossg/docker-maven/blob/c774f7740e38fa4e4f4cec7153e4819cd9afd635/eclipse-temurin-25-noble-maven-4/Dockerfile) - [`3.9.11-eclipse-temurin-8-alpine`, `3.9-eclipse-temurin-8-alpine`, `3-eclipse-temurin-8-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/eclipse-temurin-8-alpine/Dockerfile) @@ -76,7 +76,7 @@ WARNING: - [`3.9.11-amazoncorretto-11-debian`, `3.9.11-amazoncorretto-11-debian-trixie`, `3.9-amazoncorretto-11-debian`, `3.9-amazoncorretto-11-debian-trixie`, `3-amazoncorretto-11-debian`, `3-amazoncorretto-11-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-11-debian/Dockerfile) -- [`3.9.11-amazoncorretto-17`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-17`, `3.9-amazoncorretto`, `3-amazoncorretto-17`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17/Dockerfile) +- [`3.9.11-amazoncorretto-17`, `3.9-amazoncorretto-17`, `3-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17/Dockerfile) - [`3.9.11-amazoncorretto-17-al2023`, `3.9-amazoncorretto-17-al2023`, `3-amazoncorretto-17-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-17-al2023/Dockerfile) @@ -88,9 +88,9 @@ WARNING: - [`4.0.0-rc-4-amazoncorretto-17-debian`, `4.0.0-rc-4-amazoncorretto-17-debian-trixie`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-debian-maven-4/Dockerfile) -- [`4.0.0-rc-4-amazoncorretto-17`, `4.0.0-rc-4-amazoncorretto`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-maven-4/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-17`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-17-maven-4/Dockerfile) -- [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21/Dockerfile) +- [`3.9.11-amazoncorretto-21`, `3.9-amazoncorretto-21`, `3-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-21/Dockerfile) - [`3.9.11-amazoncorretto-21-al2023`, `3.9-amazoncorretto-21-al2023`, `3-amazoncorretto-21-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-21-al2023/Dockerfile) @@ -118,7 +118,7 @@ WARNING: - [`4.0.0-rc-4-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-24-maven-4/Dockerfile) -- [`3.9.11-amazoncorretto-25`, `3.9-amazoncorretto-25`, `3-amazoncorretto-25`](https://github.com/carlossg/docker-maven/blob/ea19ceba8f7f27dfca5db9a557c2c7104b9bbcf0/amazoncorretto-25/Dockerfile) +- [`3.9.11-amazoncorretto-25`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-25`, `3.9-amazoncorretto`, `3-amazoncorretto-25`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ea19ceba8f7f27dfca5db9a557c2c7104b9bbcf0/amazoncorretto-25/Dockerfile) - [`3.9.11-amazoncorretto-25-al2023`, `3.9-amazoncorretto-25-al2023`, `3-amazoncorretto-25-al2023`](https://github.com/carlossg/docker-maven/blob/8e4c2c5d8d70b078a60c23f1dea90edcde4bf0d2/amazoncorretto-25-al2023/Dockerfile) @@ -130,7 +130,7 @@ WARNING: - [`4.0.0-rc-4-amazoncorretto-25-debian`, `4.0.0-rc-4-amazoncorretto-25-debian-trixie`](https://github.com/carlossg/docker-maven/blob/911dda48cffcacf6dffb543157e37a7628f0e6e7/amazoncorretto-25-debian-maven-4/Dockerfile) -- [`4.0.0-rc-4-amazoncorretto-25`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-25-maven-4/Dockerfile) +- [`4.0.0-rc-4-amazoncorretto-25`, `4.0.0-rc-4-amazoncorretto`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-25-maven-4/Dockerfile) - [`3.9.11-amazoncorretto-8`, `3.9-amazoncorretto-8`, `3-amazoncorretto-8`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-8/Dockerfile) @@ -146,13 +146,13 @@ WARNING: - [`4.0.0-rc-4-sapmachine-17`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/sapmachine-17-maven-4/Dockerfile) -- [`3.9.11-sapmachine-21`, `3.9.11-sapmachine`, `3.9-sapmachine-21`, `3.9-sapmachine`, `3-sapmachine-21`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-21/Dockerfile) +- [`3.9.11-sapmachine-21`, `3.9-sapmachine-21`, `3-sapmachine-21`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/sapmachine-21/Dockerfile) -- [`4.0.0-rc-4-sapmachine-21`, `4.0.0-rc-4-sapmachine`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/sapmachine-21-maven-4/Dockerfile) +- [`4.0.0-rc-4-sapmachine-21`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/sapmachine-21-maven-4/Dockerfile) -- [`3.9.11-sapmachine-25`, `3.9-sapmachine-25`, `3-sapmachine-25`](https://github.com/carlossg/docker-maven/blob/31123f677b641c82496f8935f5f3c3e3885fa3f5/sapmachine-25/Dockerfile) +- [`3.9.11-sapmachine-25`, `3.9.11-sapmachine`, `3.9-sapmachine-25`, `3.9-sapmachine`, `3-sapmachine-25`, `3-sapmachine`, `sapmachine`](https://github.com/carlossg/docker-maven/blob/31123f677b641c82496f8935f5f3c3e3885fa3f5/sapmachine-25/Dockerfile) -- [`4.0.0-rc-4-sapmachine-25`](https://github.com/carlossg/docker-maven/blob/2f044045740088673c3a00388056cbbd747f2fea/sapmachine-25-maven-4/Dockerfile) +- [`4.0.0-rc-4-sapmachine-25`, `4.0.0-rc-4-sapmachine`](https://github.com/carlossg/docker-maven/blob/2f044045740088673c3a00388056cbbd747f2fea/sapmachine-25-maven-4/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 700cb86243e2..995559d4d1e8 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-16-jdk-oraclelinux9`, `26-ea-16-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-16-jdk-oracle`, `26-ea-16-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-17-jdk-oraclelinux9`, `26-ea-17-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-17-jdk-oracle`, `26-ea-17-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-16-jdk-oraclelinux8`, `26-ea-16-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-17-jdk-oraclelinux8`, `26-ea-17-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-16-jdk-trixie`, `26-ea-16-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/trixie/Dockerfile) +- [`26-ea-17-jdk-trixie`, `26-ea-17-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/trixie/Dockerfile) -- [`26-ea-16-jdk-slim-trixie`, `26-ea-16-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-16-jdk-slim`, `26-ea-16-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-17-jdk-slim-trixie`, `26-ea-17-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-17-jdk-slim`, `26-ea-17-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-16-jdk-bookworm`, `26-ea-16-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/bookworm/Dockerfile) +- [`26-ea-17-jdk-bookworm`, `26-ea-17-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/bookworm/Dockerfile) -- [`26-ea-16-jdk-slim-bookworm`, `26-ea-16-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-17-jdk-slim-bookworm`, `26-ea-17-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-16-jdk-windowsservercore-ltsc2025`, `26-ea-16-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-17-jdk-windowsservercore-ltsc2025`, `26-ea-17-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-16-jdk-windowsservercore-ltsc2022`, `26-ea-16-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-17-jdk-windowsservercore-ltsc2022`, `26-ea-17-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-16-jdk-nanoserver-ltsc2025`, `26-ea-16-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-17-jdk-nanoserver-ltsc2025`, `26-ea-17-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-16-jdk-nanoserver-ltsc2022`, `26-ea-16-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-17-jdk-nanoserver-ltsc2022`, `26-ea-17-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-16-jdk`, `26-ea-16`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-17-jdk`, `26-ea-17`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-16-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-16-jdk-windowsservercore`, `26-ea-16-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-17-jdk-windowsservercore`, `26-ea-17-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-16-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-16-jdk-nanoserver`, `26-ea-16-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-17-jdk-nanoserver`, `26-ea-17-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-16-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-16-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/93829cab56868eec605f6eda309de2c7a8de30c5/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-17-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-17-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index fd7c7db96f7e..2479044b8856 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0beta3-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0beta3-trixie`, `8.5-rc-trixie`, `8.5.0beta3-cli`, `8.5-rc-cli`, `8.5.0beta3`, `8.5-rc`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0RC1-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC1-trixie`, `8.5-rc-trixie`, `8.5.0RC1-cli`, `8.5-rc-cli`, `8.5.0RC1`, `8.5-rc`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0beta3-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0beta3-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0RC1-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0beta3-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0beta3-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0RC1-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0beta3-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0beta3-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0RC1-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0beta3-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0beta3-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0RC1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC1-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0beta3-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0RC1-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0beta3-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0RC1-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0beta3-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0RC1-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0beta3-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0beta3-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0beta3-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0beta3-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0RC1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0beta3-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0beta3-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0RC1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0beta3-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0beta3-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0RC1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0beta3-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0beta3-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0RC1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0beta3-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0RC1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0beta3-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/14f8b0c45ce12c0b8b1018ac906df94d459111ec/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0RC1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/zts/Dockerfile) - [`8.4.13-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.13-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.13-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.13`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/cli/Dockerfile) @@ -80,61 +80,33 @@ WARNING: - [`8.4.13-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/zts/Dockerfile) -- [`8.3.26RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.26RC1-trixie`, `8.3-rc-trixie`, `8.3.26RC1-cli`, `8.3-rc-cli`, `8.3.26RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/cli/Dockerfile) +- [`8.3.26-cli-trixie`, `8.3-cli-trixie`, `8.3.26-trixie`, `8.3-trixie`, `8.3.26-cli`, `8.3-cli`, `8.3.26`, `8.3`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/cli/Dockerfile) -- [`8.3.26RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.26RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/apache/Dockerfile) +- [`8.3.26-apache-trixie`, `8.3-apache-trixie`, `8.3.26-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/apache/Dockerfile) -- [`8.3.26RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.26RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/fpm/Dockerfile) +- [`8.3.26-fpm-trixie`, `8.3-fpm-trixie`, `8.3.26-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/fpm/Dockerfile) -- [`8.3.26RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.26RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/trixie/zts/Dockerfile) +- [`8.3.26-zts-trixie`, `8.3-zts-trixie`, `8.3.26-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/zts/Dockerfile) -- [`8.3.26RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.26RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/cli/Dockerfile) +- [`8.3.26-cli-bookworm`, `8.3-cli-bookworm`, `8.3.26-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/cli/Dockerfile) -- [`8.3.26RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/apache/Dockerfile) +- [`8.3.26-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/apache/Dockerfile) -- [`8.3.26RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/fpm/Dockerfile) +- [`8.3.26-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/fpm/Dockerfile) -- [`8.3.26RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/bookworm/zts/Dockerfile) +- [`8.3.26-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/zts/Dockerfile) -- [`8.3.26RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.26RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.26RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.26RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/cli/Dockerfile) +- [`8.3.26-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.26-alpine3.22`, `8.3-alpine3.22`, `8.3.26-cli-alpine`, `8.3-cli-alpine`, `8.3.26-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/cli/Dockerfile) -- [`8.3.26RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.26RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/fpm/Dockerfile) +- [`8.3.26-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.26-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/fpm/Dockerfile) -- [`8.3.26RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.26RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.22/zts/Dockerfile) +- [`8.3.26-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.26-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/zts/Dockerfile) -- [`8.3.26RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.26RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/cli/Dockerfile) +- [`8.3.26-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.26-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/cli/Dockerfile) -- [`8.3.26RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/fpm/Dockerfile) +- [`8.3.26-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/fpm/Dockerfile) -- [`8.3.26RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/3e31d6d88dded986d5acba73fc6903402ce48213/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.25-cli-trixie`, `8.3-cli-trixie`, `8.3.25-trixie`, `8.3-trixie`, `8.3.25-cli`, `8.3-cli`, `8.3.25`, `8.3`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/cli/Dockerfile) - -- [`8.3.25-apache-trixie`, `8.3-apache-trixie`, `8.3.25-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/apache/Dockerfile) - -- [`8.3.25-fpm-trixie`, `8.3-fpm-trixie`, `8.3.25-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/fpm/Dockerfile) - -- [`8.3.25-zts-trixie`, `8.3-zts-trixie`, `8.3.25-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/trixie/zts/Dockerfile) - -- [`8.3.25-cli-bookworm`, `8.3-cli-bookworm`, `8.3.25-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/cli/Dockerfile) - -- [`8.3.25-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/apache/Dockerfile) - -- [`8.3.25-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.25-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/bookworm/zts/Dockerfile) - -- [`8.3.25-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.25-alpine3.22`, `8.3-alpine3.22`, `8.3.25-cli-alpine`, `8.3-cli-alpine`, `8.3.25-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/cli/Dockerfile) - -- [`8.3.25-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.25-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/fpm/Dockerfile) - -- [`8.3.25-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.25-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.22/zts/Dockerfile) - -- [`8.3.25-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.25-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.25-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.25-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/83e66be94e42088ffa69ad76f41bd1cc9276923b/8.3/alpine3.21/zts/Dockerfile) +- [`8.3.26-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/zts/Dockerfile) - [`8.2.29-cli-trixie`, `8.2-cli-trixie`, `8.2.29-trixie`, `8.2-trixie`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/cli/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 8e4cdb756fb7..16ff880e1966 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -223,20 +223,7 @@ Users who wish to opt-in to this change on older releases can do so by setting ` > **Important Note:** (for PostgreSQL 17 and below) Mount the data volume at `/var/lib/postgresql/data` and not at `/var/lib/postgresql` because mounts at the latter path WILL NOT PERSIST database data when the container is re-created. The Dockerfile that builds the image declares a volume at `/var/lib/postgresql/data` and if no data volume is mounted at that path then the container runtime will automatically create an [anonymous volume](https://docs.docker.com/engine/storage/#volumes) that is not reused across container re-creations. Data will be written to the anonymous volume rather than your intended data volume and won't persist when the container is deleted and re-created. -This optional variable can be used to define another location - like a subdirectory - for the database files. The default is `/var/lib/postgresql/data`. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks), or remote folder that cannot be chowned to the `postgres` user (like some NFS mounts), or contains folders/files (e.g. `lost+found`), Postgres `initdb` requires a subdirectory to be created within the mountpoint to contain the data. - -For example: - -```console -$ docker run -d \ - --name some-postgres \ - -e POSTGRES_PASSWORD=mysecretpassword \ - -e PGDATA=/var/lib/postgresql/data/pgdata \ - -v /custom/mount:/var/lib/postgresql/data \ - postgres -``` - -This is an environment variable that is not Docker specific. Because the variable is used by the `postgres` server binary (see the [PostgreSQL docs](https://www.postgresql.org/docs/14/app-postgres.html#id-1.9.5.14.7)), the entrypoint script takes it into account. +This (`PGDATA`) is an environment variable that is not Docker specific. Because the variable is used by the `postgres` server binary (see the [PostgreSQL docs](https://www.postgresql.org/docs/14/app-postgres.html#id-1.9.5.14.7)), the entrypoint script takes it into account. ## Docker Secrets @@ -325,7 +312,7 @@ When using the Alpine variants, any postgres extension not listed in [postgres-c As of [docker-library/postgres#253](https://github.com/docker-library/postgres/pull/253), this image supports running as a (mostly) arbitrary user via `--user` on `docker run`. As of [docker-library/postgres#1018](https://github.com/docker-library/postgres/pull/1018), this is also the case for the Alpine variants. -The main caveat to note is that `postgres` doesn't care what UID it runs as (as long as the owner of `/var/lib/postgresql/data` matches), but `initdb` *does* care (and needs the user to exist in `/etc/passwd`): +The main caveat to note is that `postgres` doesn't care what UID it runs as (as long as the owner of `PGDATA` matches), but `initdb` *does* care (and needs the user to exist in `/etc/passwd`): ```console $ docker run -it --rm --user www-data -e POSTGRES_PASSWORD=mysecretpassword postgres @@ -351,13 +338,13 @@ The three easiest ways to get around this: 3. initialize the target directory separately from the final runtime (with a `chown` in between): ```console - $ docker volume create pgdata - $ docker run -it --rm -v pgdata:/var/lib/postgresql/data -e POSTGRES_PASSWORD=mysecretpassword postgres + $ docker volume create pg + $ docker run -it --rm -v pg:/var/lib/postgresql -e POSTGRES_PASSWORD=mysecretpassword postgres The files belonging to this database system will be owned by user "postgres". ... ( once it's finished initializing successfully and is waiting for connections, stop it ) - $ docker run -it --rm -v pgdata:/var/lib/postgresql/data bash chown -R 1000:1000 /var/lib/postgresql/data - $ docker run -it --rm --user 1000:1000 -v pgdata:/var/lib/postgresql/data postgres + $ docker run -it --rm -v pg:/var/lib/postgresql bash chown -R 1000:1000 /var/lib/postgresql + $ docker run -it --rm --user 1000:1000 -v pg:/var/lib/postgresql postgres LOG: database system was shut down at 2017-01-20 00:03:23 UTC LOG: MultiXact member wraparound protections are now enabled LOG: autovacuum launcher started @@ -383,10 +370,10 @@ The Docker documentation is a good starting point for understanding the differen 2. Start your `postgres` container like this: ```console - $ docker run --name some-postgres -v /my/own/datadir:/var/lib/postgresql/data -e POSTGRES_PASSWORD=mysecretpassword -d postgres:tag + $ docker run --name some-postgres -v /my/own/datadir:/var/lib/postgresql -e POSTGRES_PASSWORD=mysecretpassword -d postgres:tag ``` -The `-v /my/own/datadir:/var/lib/postgresql/data` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/postgresql/data` inside the container, where PostgreSQL by default will write its data files. +The `-v /my/own/datadir:/var/lib/postgresql` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/postgresql` inside the container, where PostgreSQL by default will write its data files. # Image Variants From b776ae220c26ee24dca4694ca7c4b3c781db95d0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 26 Sep 2025 16:10:29 -0700 Subject: [PATCH 2556/2686] Run update.sh --- tomcat/README.md | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/tomcat/README.md b/tomcat/README.md index da7c3bea74ef..5e483b6ba528 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,7 +24,15 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.11-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.11-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.11-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`, `11.0.11`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.11-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.11-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.11-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.11`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jdk25/temurin-noble/Dockerfile) + +- [`11.0.11-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.11-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.11-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jre25/temurin-noble/Dockerfile) + +- [`11.0.11-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jdk25/temurin-jammy/Dockerfile) + +- [`11.0.11-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jre25/temurin-jammy/Dockerfile) + +- [`11.0.11-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.11-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.11-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-noble/Dockerfile) - [`11.0.11-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.11-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.11-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre21/temurin-noble/Dockerfile) @@ -40,7 +48,15 @@ WARNING: - [`11.0.11-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.46-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.46-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.46-jdk21`, `10.1-jdk21`, `10-jdk21`, `10.1.46`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.46-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.46-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.46-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.46`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jdk25/temurin-noble/Dockerfile) + +- [`10.1.46-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.46-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.46-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jre25/temurin-noble/Dockerfile) + +- [`10.1.46-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jdk25/temurin-jammy/Dockerfile) + +- [`10.1.46-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jre25/temurin-jammy/Dockerfile) + +- [`10.1.46-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.46-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.46-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-noble/Dockerfile) - [`10.1.46-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.46-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.46-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre21/temurin-noble/Dockerfile) @@ -64,7 +80,15 @@ WARNING: - [`10.1.46-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.109-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.109-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.109-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jdk25/temurin-noble/Dockerfile) + +- [`9.0.109-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.109-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.109-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jre25/temurin-noble/Dockerfile) + +- [`9.0.109-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jdk25/temurin-jammy/Dockerfile) + +- [`9.0.109-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jre25/temurin-jammy/Dockerfile) + +- [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) - [`9.0.109-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.109-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.109-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre21/temurin-noble/Dockerfile) From 9dfc77eae81b65b42c8a1a9f806289efbf367d73 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Sep 2025 11:11:02 -0700 Subject: [PATCH 2557/2686] Run update.sh --- archlinux/README.md | 6 +++--- crate/README.md | 4 +++- ghost/README.md | 4 ++-- golang/README.md | 12 ++++++------ influxdb/README.md | 8 -------- julia/README.md | 22 +++++++++++----------- neo4j/README.md | 8 ++++---- redmine/README.md | 8 ++++---- 8 files changed, 33 insertions(+), 39 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 4036db56df5c..91c526a79bb1 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.base) +- [`latest`, `base`, `base-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.base) -- [`base-devel`, `base-devel-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250921.0.423275`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bbd87e8bcfb68bdee826aa3ccd5dd907e35dbc69/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/crate/README.md b/crate/README.md index 5c4d02168e69..0012179f350a 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.10.12`, `5.10`, `latest`](https://github.com/crate/docker-crate/blob/677b92fce1c9ffe8e9d60e6c083c583b02ffe082/Dockerfile) +- [`6.0.2`, `6.0`, `latest`](https://github.com/crate/docker-crate/blob/a1cbe321622a14325f07abaff8a861d0ab32ede3/Dockerfile) + +- [`5.10.12`, `5.10`](https://github.com/crate/docker-crate/blob/677b92fce1c9ffe8e9d60e6c083c583b02ffe082/Dockerfile) - [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 07d6343ccfd9..5680c5ccd585 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.10`, `6.0`, `6`, `latest`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/6/debian/Dockerfile) +- [`6.1.0`, `6.1`, `6`, `latest`](https://github.com/docker-library/ghost/blob/24e19176900aa84b60e8a13c80d8b1bcef929581/6/debian/Dockerfile) -- [`6.0.10-alpine`, `6.0-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/6/alpine/Dockerfile) +- [`6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/24e19176900aa84b60e8a13c80d8b1bcef929581/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) diff --git a/golang/README.md b/golang/README.md index a2b2eb22c502..d87947af2fcd 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250919-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/trixie/Dockerfile) +- [`tip-20250927-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/trixie/Dockerfile) -- [`tip-20250919-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/bookworm/Dockerfile) +- [`tip-20250927-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/bookworm/Dockerfile) -- [`tip-20250919-alpine3.22`, `tip-alpine3.22`, `tip-20250919-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/alpine3.22/Dockerfile) +- [`tip-20250927-alpine3.22`, `tip-alpine3.22`, `tip-20250927-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/alpine3.22/Dockerfile) -- [`tip-20250919-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/alpine3.21/Dockerfile) +- [`tip-20250927-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250919`, `tip`: +- `tip-20250927`, `tip`: - - [`tip-20250919-trixie`](https://github.com/docker-library/golang/blob/54a6d9c5210e8b33a64ea0a94afa4b0fd94fbb39/tip/trixie/Dockerfile) + - [`tip-20250927-trixie`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 4b02865bda7e..da7c69a9eb28 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -48,14 +48,6 @@ WARNING: - [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/meta/alpine/Dockerfile) -- [`1.10-data`, `1.10.9-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/data/Dockerfile) - -- [`1.10-data-alpine`, `1.10.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/data/alpine/Dockerfile) - -- [`1.10-meta`, `1.10.9-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/meta/Dockerfile) - -- [`1.10-meta-alpine`, `1.10.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.10/meta/alpine/Dockerfile) - - [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/Dockerfile) - [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/alpine/Dockerfile) diff --git a/julia/README.md b/julia/README.md index 7ce7aa78dad7..7aaeffaa76ea 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`1.12.0-rc2-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/trixie/Dockerfile) +- [`1.12.0-rc3-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/trixie/Dockerfile) -- [`1.12.0-rc2-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-rc3-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/bookworm/Dockerfile) -- [`1.12.0-rc2-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-rc3-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-rc2-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-rc3-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.7-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) @@ -58,16 +58,16 @@ WARNING: ## Shared Tags -- `1.12.0-rc2`, `1.12-rc`, `rc`: +- `1.12.0-rc3`, `1.12-rc`, `rc`: - - [`1.12.0-rc2-trixie`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/trixie/Dockerfile) - - [`1.12.0-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc3-trixie`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/trixie/Dockerfile) + - [`1.12.0-rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-rc2-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-rc3-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: - - [`1.12.0-rc2-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/fb289f3839d56d64fa120b1d733fc684e44c31c9/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `1.11.7`, `1.11`, `1`, `latest`: diff --git a/neo4j/README.md b/neo4j/README.md index 48fcef753326..836a75e8e385 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.08.0-community-bullseye`, `2025.08-community-bullseye`, `2025-community-bullseye`, `2025.08.0-community`, `2025.08-community`, `2025-community`, `2025.08.0-bullseye`, `2025.08-bullseye`, `2025-bullseye`, `2025.08.0`, `2025.08`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/bullseye/community/Dockerfile) +- [`2025.09.0-community-bullseye`, `2025.09-community-bullseye`, `2025-community-bullseye`, `2025.09.0-community`, `2025.09-community`, `2025-community`, `2025.09.0-bullseye`, `2025.09-bullseye`, `2025-bullseye`, `2025.09.0`, `2025.09`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/bullseye/community/Dockerfile) -- [`2025.08.0-enterprise-bullseye`, `2025.08-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.08.0-enterprise`, `2025.08-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/bullseye/enterprise/Dockerfile) +- [`2025.09.0-enterprise-bullseye`, `2025.09-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.09.0-enterprise`, `2025.09-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/bullseye/enterprise/Dockerfile) -- [`2025.08.0-community-ubi9`, `2025.08-community-ubi9`, `2025-community-ubi9`, `2025.08.0-ubi9`, `2025.08-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/ubi9/community/Dockerfile) +- [`2025.09.0-community-ubi9`, `2025.09-community-ubi9`, `2025-community-ubi9`, `2025.09.0-ubi9`, `2025.09-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/ubi9/community/Dockerfile) -- [`2025.08.0-enterprise-ubi9`, `2025.08-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/2f82a0e5580ff8b044d4835a79fb384e90f77e4f/2025.08.0/ubi9/enterprise/Dockerfile) +- [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/ubi9/enterprise/Dockerfile) - [`5.26.12-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.12-community`, `5.26-community`, `5-community`, `5.26.12-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.12`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/community/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index f96ae1b5c1bc..85f00196e277 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.0`, `6.1`, `6`, `latest`, `6.1.0-trixie`, `6.1-trixie`, `6-trixie`, `trixie`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/trixie/Dockerfile) +- [`6.1.0`, `6.1`, `6`, `latest`, `6.1.0-trixie`, `6.1-trixie`, `6-trixie`, `trixie`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/trixie/Dockerfile) -- [`6.1.0-bookworm`, `6.1-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/bookworm/Dockerfile) +- [`6.1.0-bookworm`, `6.1-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f0741776f38b451da162138348628b8cf44b5a23/6.1/bookworm/Dockerfile) -- [`6.1.0-alpine3.22`, `6.1-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/alpine3.22/Dockerfile) +- [`6.1.0-alpine3.22`, `6.1-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/alpine3.22/Dockerfile) -- [`6.1.0-alpine3.21`, `6.1-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/83dc5187580910a8f5b9578d6fe453db2d6f4811/6.1/alpine3.21/Dockerfile) +- [`6.1.0-alpine3.21`, `6.1-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/alpine3.21/Dockerfile) - [`6.0.7`, `6.0`, `6.0.7-trixie`, `6.0-trixie`](https://github.com/docker-library/redmine/blob/a5559e1b8e4ff20203b73604dd91c3eb184899f1/6.0/trixie/Dockerfile) From efa9e2912048f60f9f118cef57d9eff01889edbd Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Sep 2025 13:10:22 -0700 Subject: [PATCH 2558/2686] Run update.sh --- telegraf/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telegraf/README.md b/telegraf/README.md index c46d6c9a2c85..564b887576af 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.35/alpine/Dockerfile) -- [`1.36`, `1.36.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.36/Dockerfile) +- [`1.36`, `1.36.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.36/Dockerfile) -- [`1.36-alpine`, `1.36.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8a177d2a18e85b0f3e4638661b4031d0c76c62f7/telegraf/1.36/alpine/Dockerfile) +- [`1.36-alpine`, `1.36.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.36/alpine/Dockerfile) # Quick reference (cont.) From 94324261267e019c8e58e4bc7673ee463b3ffcf3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Sep 2025 16:11:02 -0700 Subject: [PATCH 2559/2686] Run update.sh --- nextcloud/README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index cf0128e893d6..4f7913bd4363 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -34,11 +34,17 @@ WARNING: - [`30.0.16-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/fpm-alpine/Dockerfile) -- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `latest`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/apache/Dockerfile) +- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/apache/Dockerfile) -- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm/Dockerfile) +- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm/Dockerfile) -- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm-alpine/Dockerfile) +- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm-alpine/Dockerfile) + +- [`32.0.0-apache`, `32.0-apache`, `32-apache`, `apache`, `32.0.0`, `32.0`, `32`, `latest`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/apache/Dockerfile) + +- [`32.0.0-fpm`, `32.0-fpm`, `32-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/fpm/Dockerfile) + +- [`32.0.0-fpm-alpine`, `32.0-fpm-alpine`, `32-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/fpm-alpine/Dockerfile) # Quick reference (cont.) From 9b0f01aabbb60dca28b6ad2a8a5d1e3a7e58d8ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 29 Sep 2025 17:10:15 -0700 Subject: [PATCH 2560/2686] Run update.sh --- debian/README.md | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/debian/README.md b/debian/README.md index e6c0c0ffb174..f41d1bbef65c 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250908`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20250929`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250908-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20250929-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250908`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20250929`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bullseye/oci/index.json) -- [`bullseye-slim`, `bullseye-20250908-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20250929-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/experimental/Dockerfile) +- [`experimental`, `experimental-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/experimental/Dockerfile) -- [`forky`, `forky-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/oci/index.json) +- [`forky`, `forky-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/oci/index.json) -- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/backports/Dockerfile) +- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/backports/Dockerfile) -- [`forky-slim`, `forky-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/forky/slim/oci/index.json) +- [`forky-slim`, `forky-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/slim/oci/index.json) -- [`oldoldstable`, `oldoldstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldoldstable/oci/index.json) +- [`oldoldstable`, `oldoldstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldoldstable/oci/index.json) -- [`oldoldstable-slim`, `oldoldstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldoldstable/slim/oci/index.json) +- [`oldoldstable-slim`, `oldoldstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldoldstable/slim/oci/index.json) -- [`oldstable`, `oldstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/rc-buggy/Dockerfile) -- [`sid`, `sid-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/sid/oci/index.json) +- [`sid`, `sid-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/sid/oci/index.json) -- [`sid-slim`, `sid-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/sid/slim/oci/index.json) -- [`stable`, `stable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/oci/index.json) +- [`stable`, `stable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/slim/oci/index.json) -- [`testing`, `testing-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/oci/index.json) +- [`testing`, `testing-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250908`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/oci/index.json) +- [`trixie`, `trixie-20250929`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250908-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20250929-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250908`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/unstable/oci/index.json) +- [`unstable`, `unstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250908-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/875d8cd35082521d449942a5fc0769ea216a1b87/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/unstable/slim/oci/index.json) # Quick reference (cont.) From f9203c39ec622f970dc50553e3d99e1dcc1cec27 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Sep 2025 10:11:49 -0700 Subject: [PATCH 2561/2686] Run update.sh --- gradle/README.md | 148 +++++++++++++++------------------- ibm-semeru-runtimes/README.md | 76 ++++++++++------- influxdb/README.md | 32 ++++---- nats/README.md | 54 ++++++------- neo4j/README.md | 4 +- odoo/README.md | 6 +- 6 files changed, 161 insertions(+), 159 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 8cf8d0be64f8..8cd5c1a6e4a7 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,153 +24,139 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.0-jdk21`, `9.1-jdk21`, `9-jdk21`, `jdk21`, `9.1.0-jdk21-noble`, `9.1-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`, `latest`, `9.1.0-jdk`, `9.1-jdk`, `9-jdk`, `jdk`, `9.1.0`, `9.1`, `9`, `9.1.0-jdk-noble`, `9.1-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.1.0-noble`, `9.1-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-noble/Dockerfile) +- [`9.1.0-jdk25`, `9.1-jdk25`, `9-jdk25`, `jdk25`, `9.1.0-jdk25-noble`, `9.1-jdk25-noble`, `9-jdk25-noble`, `jdk25-noble`, `latest`, `9.1.0-jdk`, `9.1-jdk`, `9-jdk`, `jdk`, `9.1.0`, `9.1`, `9`, `9.1.0-jdk-noble`, `9.1-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.1.0-noble`, `9.1-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-noble/Dockerfile) -- [`9.1.0-jdk21-jammy`, `9.1-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.1.0-jdk-jammy`, `9.1-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.1.0-jammy`, `9.1-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-jammy/Dockerfile) +- [`9.1.0-jdk25-alpine`, `9.1-jdk25-alpine`, `9-jdk25-alpine`, `jdk25-alpine`, `9.1.0-jdk-alpine`, `9.1-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.1.0-alpine`, `9.1-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-alpine/Dockerfile) -- [`9.1.0-jdk21-alpine`, `9.1-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`, `9.1.0-jdk-alpine`, `9.1-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.1.0-alpine`, `9.1-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-alpine/Dockerfile) +- [`9.1.0-jdk25-corretto`, `9.1-jdk25-corretto`, `9-jdk25-corretto`, `jdk25-corretto`, `corretto`, `9.1.0-jdk25-corretto-al2023`, `9.1-jdk25-corretto-al2023`, `9-jdk25-corretto-al2023`, `jdk25-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-corretto/Dockerfile) -- [`9.1.0-jdk21-corretto`, `9.1-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `corretto`, `9.1.0-jdk21-corretto-al2023`, `9.1-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-corretto/Dockerfile) +- [`9.1.0-jdk25-ubi`, `9.1-jdk25-ubi`, `9-jdk25-ubi`, `jdk25-ubi`, `ubi`, `9.1.0-jdk25-ubi-minimal`, `9.1-jdk25-ubi-minimal`, `9-jdk25-ubi-minimal`, `jdk25-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-ubi10/Dockerfile) -- [`9.1.0-jdk21-ubi`, `9.1-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `ubi`, `9.1.0-jdk21-ubi-minimal`, `9.1-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-ubi9/Dockerfile) +- [`9.1.0-jdk25-graal`, `9.1-jdk25-graal`, `9-jdk25-graal`, `jdk25-graal`, `9.1.0-jdk-graal`, `9.1-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.1.0-graal`, `9.1-graal`, `9-graal`, `graal`, `9.1.0-jdk25-graal-noble`, `9.1-jdk25-graal-noble`, `9-jdk25-graal-noble`, `jdk25-graal-noble`, `9.1.0-jdk-graal-noble`, `9.1-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.1.0-graal-noble`, `9.1-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-noble-graal/Dockerfile) -- [`9.1.0-jdk21-graal`, `9.1-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.1.0-jdk-graal`, `9.1-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.1.0-graal`, `9.1-graal`, `9-graal`, `graal`, `9.1.0-jdk21-graal-noble`, `9.1-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`, `9.1.0-jdk-graal-noble`, `9.1-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.1.0-graal-noble`, `9.1-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-noble-graal/Dockerfile) +- [`9.1.0-jdk21`, `9.1-jdk21`, `9-jdk21`, `jdk21`, `9.1.0-jdk21-noble`, `9.1-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-noble/Dockerfile) -- [`9.1.0-jdk21-graal-jammy`, `9.1-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.1.0-jdk-graal-jammy`, `9.1-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.1.0-graal-jammy`, `9.1-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk21-jammy-graal/Dockerfile) +- [`9.1.0-jdk21-jammy`, `9.1-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.1.0-jdk-jammy`, `9.1-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.1.0-jammy`, `9.1-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-jammy/Dockerfile) -- [`9.1.0-jdk17`, `9.1-jdk17`, `9-jdk17`, `jdk17`, `9.1.0-jdk17-noble`, `9.1-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-noble/Dockerfile) +- [`9.1.0-jdk21-alpine`, `9.1-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-alpine/Dockerfile) -- [`9.1.0-jdk17-jammy`, `9.1-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-jammy/Dockerfile) +- [`9.1.0-jdk21-corretto`, `9.1-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `9.1.0-jdk21-corretto-al2023`, `9.1-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-corretto/Dockerfile) -- [`9.1.0-jdk17-alpine`, `9.1-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-alpine/Dockerfile) +- [`9.1.0-jdk21-ubi`, `9.1-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `9.1.0-jdk21-ubi-minimal`, `9.1-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-ubi9/Dockerfile) -- [`9.1.0-jdk17-corretto`, `9.1-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.1.0-jdk17-corretto-al2023`, `9.1-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-corretto/Dockerfile) +- [`9.1.0-jdk21-graal`, `9.1-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.1.0-jdk21-graal-noble`, `9.1-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-noble-graal/Dockerfile) -- [`9.1.0-jdk17-ubi`, `9.1-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.1.0-jdk17-ubi-minimal`, `9.1-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-ubi9/Dockerfile) +- [`9.1.0-jdk21-graal-jammy`, `9.1-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.1.0-jdk-graal-jammy`, `9.1-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.1.0-graal-jammy`, `9.1-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-jammy-graal/Dockerfile) -- [`9.1.0-jdk17-graal`, `9.1-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.1.0-jdk17-graal-noble`, `9.1-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-noble-graal/Dockerfile) +- [`9.1.0-jdk17`, `9.1-jdk17`, `9-jdk17`, `jdk17`, `9.1.0-jdk17-noble`, `9.1-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-noble/Dockerfile) -- [`9.1.0-jdk17-graal-jammy`, `9.1-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk17-jammy-graal/Dockerfile) +- [`9.1.0-jdk17-jammy`, `9.1-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-jammy/Dockerfile) -- [`9.1.0-jdk24`, `9.1-jdk24`, `9-jdk24`, `jdk24`, `9.1.0-jdk24-noble`, `9.1-jdk24-noble`, `9-jdk24-noble`, `jdk24-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-noble/Dockerfile) +- [`9.1.0-jdk17-alpine`, `9.1-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-alpine/Dockerfile) -- [`9.1.0-jdk24-alpine`, `9.1-jdk24-alpine`, `9-jdk24-alpine`, `jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-alpine/Dockerfile) +- [`9.1.0-jdk17-corretto`, `9.1-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.1.0-jdk17-corretto-al2023`, `9.1-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-corretto/Dockerfile) -- [`9.1.0-jdk24-corretto`, `9.1-jdk24-corretto`, `9-jdk24-corretto`, `jdk24-corretto`, `9.1.0-jdk24-corretto-al2023`, `9.1-jdk24-corretto-al2023`, `9-jdk24-corretto-al2023`, `jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-corretto/Dockerfile) +- [`9.1.0-jdk17-ubi`, `9.1-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.1.0-jdk17-ubi-minimal`, `9.1-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-ubi9/Dockerfile) -- [`9.1.0-jdk24-ubi`, `9.1-jdk24-ubi`, `9-jdk24-ubi`, `jdk24-ubi`, `9.1.0-jdk24-ubi-minimal`, `9.1-jdk24-ubi-minimal`, `9-jdk24-ubi-minimal`, `jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-ubi9/Dockerfile) +- [`9.1.0-jdk17-graal`, `9.1-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.1.0-jdk17-graal-noble`, `9.1-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-noble-graal/Dockerfile) -- [`9.1.0-jdk24-graal`, `9.1-jdk24-graal`, `9-jdk24-graal`, `jdk24-graal`, `9.1.0-jdk24-graal-noble`, `9.1-jdk24-graal-noble`, `9-jdk24-graal-noble`, `jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk24-noble-graal/Dockerfile) +- [`9.1.0-jdk17-graal-jammy`, `9.1-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-jammy-graal/Dockerfile) -- [`9.1.0-jdk-lts-and-current`, `9.1-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.1.0-jdk-lts-and-current-noble`, `9.1-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.1.0-jdk-21-and-24`, `9.1-jdk-21-and-24`, `9-jdk-21-and-24`, `jdk-21-and-24`, `9.1.0-jdk-21-and-24-noble`, `9.1-jdk-21-and-24-noble`, `9-jdk-21-and-24-noble`, `jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current/Dockerfile) +- [`9.1.0-jdk-lts-and-current`, `9.1-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.1.0-jdk-lts-and-current-noble`, `9.1-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.1.0-jdk-25-and-25`, `9.1-jdk-25-and-25`, `9-jdk-25-and-25`, `jdk-25-and-25`, `9.1.0-jdk-25-and-25-noble`, `9.1-jdk-25-and-25-noble`, `9-jdk-25-and-25-noble`, `jdk-25-and-25-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current/Dockerfile) -- [`9.1.0-jdk-lts-and-current-alpine`, `9.1-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.1.0-jdk-21-and-24-alpine`, `9.1-jdk-21-and-24-alpine`, `9-jdk-21-and-24-alpine`, `jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-alpine/Dockerfile) +- [`9.1.0-jdk-lts-and-current-alpine`, `9.1-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.1.0-jdk-25-and-25-alpine`, `9.1-jdk-25-and-25-alpine`, `9-jdk-25-and-25-alpine`, `jdk-25-and-25-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-alpine/Dockerfile) -- [`9.1.0-jdk-lts-and-current-corretto`, `9.1-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.1.0-jdk-lts-and-current-corretto-al2023`, `9.1-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.1.0-jdk-21-and-24-corretto`, `9.1-jdk-21-and-24-corretto`, `9-jdk-21-and-24-corretto`, `jdk-21-and-24-corretto`, `9.1.0-jdk-21-and-24-corretto-al2023`, `9.1-jdk-21-and-24-corretto-al2023`, `9-jdk-21-and-24-corretto-al2023`, `jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-corretto/Dockerfile) +- [`9.1.0-jdk-lts-and-current-corretto`, `9.1-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.1.0-jdk-lts-and-current-corretto-al2023`, `9.1-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.1.0-jdk-25-and-25-corretto`, `9.1-jdk-25-and-25-corretto`, `9-jdk-25-and-25-corretto`, `jdk-25-and-25-corretto`, `9.1.0-jdk-25-and-25-corretto-al2023`, `9.1-jdk-25-and-25-corretto-al2023`, `9-jdk-25-and-25-corretto-al2023`, `jdk-25-and-25-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-corretto/Dockerfile) -- [`9.1.0-jdk-lts-and-current-graal`, `9.1-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.1.0-jdk-lts-and-current-graal-noble`, `9.1-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.1.0-jdk-21-and-24-graal`, `9.1-jdk-21-and-24-graal`, `9-jdk-21-and-24-graal`, `jdk-21-and-24-graal`, `9.1.0-jdk-21-and-24-graal-noble`, `9.1-jdk-21-and-24-graal-noble`, `9-jdk-21-and-24-graal-noble`, `jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/6110e752da885f3aa002c6a474d85dd82c608717/jdk-lts-and-current-graal/Dockerfile) +- [`9.1.0-jdk-lts-and-current-graal`, `9.1-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.1.0-jdk-lts-and-current-graal-noble`, `9.1-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.1.0-jdk-25-and-25-graal`, `9.1-jdk-25-and-25-graal`, `9-jdk-25-and-25-graal`, `jdk-25-and-25-graal`, `9.1.0-jdk-25-and-25-graal-noble`, `9.1-jdk-25-and-25-graal-noble`, `9-jdk-25-and-25-graal-noble`, `jdk-25-and-25-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-graal/Dockerfile) -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-jammy-graal/Dockerfile) -- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-jammy/Dockerfile) -- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-alpine/Dockerfile) -- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-corretto/Dockerfile) -- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-ubi9/Dockerfile) -- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-jammy/Dockerfile) -- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-corretto/Dockerfile) -- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24`, `8.14-jdk24`, `8-jdk24`, `8.14.3-jdk24-noble`, `8.14-jdk24-noble`, `8-jdk24-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-noble/Dockerfile) +- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk24-corretto/Dockerfile) -- [`8.14.3-jdk24-alpine`, `8.14-jdk24-alpine`, `8-jdk24-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-alpine/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk24-noble-graal/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-corretto/Dockerfile) +- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-noble/Dockerfile) -- [`8.14.3-jdk24-ubi`, `8.14-jdk24-ubi`, `8-jdk24-ubi`, `8.14.3-jdk24-ubi-minimal`, `8.14-jdk24-ubi-minimal`, `8-jdk24-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-ubi9/Dockerfile) +- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk24-noble-graal/Dockerfile) +- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk-lts-and-current`, `8.14-jdk-lts-and-current`, `8-jdk-lts-and-current`, `8.14.3-jdk-lts-and-current-noble`, `8.14-jdk-lts-and-current-noble`, `8-jdk-lts-and-current-noble`, `8.14.3-jdk-21-and-24`, `8.14-jdk-21-and-24`, `8-jdk-21-and-24`, `8.14.3-jdk-21-and-24-noble`, `8.14-jdk-21-and-24-noble`, `8-jdk-21-and-24-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current/Dockerfile) +- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk-lts-and-current-alpine`, `8.14-jdk-lts-and-current-alpine`, `8-jdk-lts-and-current-alpine`, `8.14.3-jdk-21-and-24-alpine`, `8.14-jdk-21-and-24-alpine`, `8-jdk-21-and-24-alpine`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-alpine/Dockerfile) +- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk-lts-and-current-corretto`, `8.14-jdk-lts-and-current-corretto`, `8-jdk-lts-and-current-corretto`, `8.14.3-jdk-lts-and-current-corretto-al2023`, `8.14-jdk-lts-and-current-corretto-al2023`, `8-jdk-lts-and-current-corretto-al2023`, `8.14.3-jdk-21-and-24-corretto`, `8.14-jdk-21-and-24-corretto`, `8-jdk-21-and-24-corretto`, `8.14.3-jdk-21-and-24-corretto-al2023`, `8.14-jdk-21-and-24-corretto-al2023`, `8-jdk-21-and-24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-corretto/Dockerfile) +- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk-lts-and-current-graal`, `8.14-jdk-lts-and-current-graal`, `8-jdk-lts-and-current-graal`, `8.14.3-jdk-lts-and-current-graal-noble`, `8.14-jdk-lts-and-current-graal-noble`, `8-jdk-lts-and-current-graal-noble`, `8.14.3-jdk-21-and-24-graal`, `8.14-jdk-21-and-24-graal`, `8-jdk-21-and-24-graal`, `8.14.3-jdk-21-and-24-graal-noble`, `8.14-jdk-21-and-24-graal-noble`, `8-jdk-21-and-24-graal-noble`](https://github.com/gradle/docker-gradle/blob/2b15ee6f83372b5bffe508cca515d41e31351ca8/jdk-lts-and-current-graal/Dockerfile) +- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-jammy-graal/Dockerfile) -- [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-noble/Dockerfile) +- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk11-jammy/Dockerfile) -- [`7.6.6-jdk17-jammy`, `7.6-jdk17-jammy`, `7-jdk17-jammy`, `7.6.6-jdk-jammy`, `7.6-jdk-jammy`, `7-jdk-jammy`, `7.6.6-jammy`, `7.6-jammy`, `7-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-jammy/Dockerfile) +- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk11-alpine/Dockerfile) -- [`7.6.6-jdk17-alpine`, `7.6-jdk17-alpine`, `7-jdk17-alpine`, `7.6.6-jdk-alpine`, `7.6-jdk-alpine`, `7-jdk-alpine`, `7.6.6-alpine`, `7.6-alpine`, `7-alpine`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-alpine/Dockerfile) +- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk11-corretto/Dockerfile) -- [`7.6.6-jdk17-corretto`, `7.6-jdk17-corretto`, `7-jdk17-corretto`, `7.6.6-jdk17-corretto-al2023`, `7.6-jdk17-corretto-al2023`, `7-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-corretto/Dockerfile) +- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk11-ubi9/Dockerfile) -- [`7.6.6-jdk17-ubi`, `7.6-jdk17-ubi`, `7-jdk17-ubi`, `7.6.6-jdk17-ubi-minimal`, `7.6-jdk17-ubi-minimal`, `7-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-ubi9/Dockerfile) +- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk8-jammy/Dockerfile) -- [`7.6.6-jdk17-graal`, `7.6-jdk17-graal`, `7-jdk17-graal`, `7.6.6-jdk-graal`, `7.6-jdk-graal`, `7-jdk-graal`, `7.6.6-graal`, `7.6-graal`, `7-graal`, `7.6.6-jdk17-graal-noble`, `7.6-jdk17-graal-noble`, `7-jdk17-graal-noble`, `7.6.6-jdk-graal-noble`, `7.6-jdk-graal-noble`, `7-jdk-graal-noble`, `7.6.6-graal-noble`, `7.6-graal-noble`, `7-graal-noble`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-noble-graal/Dockerfile) +- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk8-corretto/Dockerfile) -- [`7.6.6-jdk17-graal-jammy`, `7.6-jdk17-graal-jammy`, `7-jdk17-graal-jammy`, `7.6.6-jdk-graal-jammy`, `7.6-jdk-graal-jammy`, `7-jdk-graal-jammy`, `7.6.6-graal-jammy`, `7.6-graal-jammy`, `7-graal-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk17-jammy-graal/Dockerfile) +- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk8-ubi9/Dockerfile) -- [`7.6.6-jdk11`, `7.6-jdk11`, `7-jdk11`, `7.6.6-jdk11-jammy`, `7.6-jdk11-jammy`, `7-jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-jammy/Dockerfile) +- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk11-jammy/Dockerfile) -- [`7.6.6-jdk11-alpine`, `7.6-jdk11-alpine`, `7-jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-alpine/Dockerfile) +- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk11-alpine/Dockerfile) -- [`7.6.6-jdk11-corretto`, `7.6-jdk11-corretto`, `7-jdk11-corretto`, `7.6.6-jdk11-corretto-al2023`, `7.6-jdk11-corretto-al2023`, `7-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-corretto/Dockerfile) +- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk11-corretto/Dockerfile) -- [`7.6.6-jdk11-ubi`, `7.6-jdk11-ubi`, `7-jdk11-ubi`, `7.6.6-jdk11-ubi-minimal`, `7.6-jdk11-ubi-minimal`, `7-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk11-ubi9/Dockerfile) +- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk11-ubi9/Dockerfile) -- [`7.6.6-jdk8`, `7.6-jdk8`, `7-jdk8`, `7.6.6-jdk8-jammy`, `7.6-jdk8-jammy`, `7-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-jammy/Dockerfile) +- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk8-jammy/Dockerfile) -- [`7.6.6-jdk8-corretto`, `7.6-jdk8-corretto`, `7-jdk8-corretto`, `7.6.6-jdk8-corretto-al2023`, `7.6-jdk8-corretto-al2023`, `7-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-corretto/Dockerfile) +- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk8-corretto/Dockerfile) -- [`7.6.6-jdk8-ubi`, `7.6-jdk8-ubi`, `7-jdk8-ubi`, `7.6.6-jdk8-ubi-minimal`, `7.6-jdk8-ubi-minimal`, `7-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/b5a613a05a7b71eaf2e60ba6dfaf16b7355f0ae1/jdk8-ubi9/Dockerfile) - -- [`6.9.4-jdk11`, `6.9-jdk11`, `6-jdk11`, `6.9.4-jdk11-jammy`, `6.9-jdk11-jammy`, `6-jdk11-jammy`, `6.9.4-jdk`, `6.9-jdk`, `6-jdk`, `6.9.4`, `6.9`, `6`, `6.9.4-jdk-jammy`, `6.9-jdk-jammy`, `6-jdk-jammy`, `6.9.4-jammy`, `6.9-jammy`, `6-jammy`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-jammy/Dockerfile) - -- [`6.9.4-jdk11-alpine`, `6.9-jdk11-alpine`, `6-jdk11-alpine`, `6.9.4-jdk-alpine`, `6.9-jdk-alpine`, `6-jdk-alpine`, `6.9.4-alpine`, `6.9-alpine`, `6-alpine`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-alpine/Dockerfile) - -- [`6.9.4-jdk11-corretto`, `6.9-jdk11-corretto`, `6-jdk11-corretto`, `6.9.4-jdk11-corretto-al2023`, `6.9-jdk11-corretto-al2023`, `6-jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-corretto/Dockerfile) - -- [`6.9.4-jdk11-ubi`, `6.9-jdk11-ubi`, `6-jdk11-ubi`, `6.9.4-jdk11-ubi-minimal`, `6.9-jdk11-ubi-minimal`, `6-jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk11-ubi9/Dockerfile) - -- [`6.9.4-jdk8`, `6.9-jdk8`, `6-jdk8`, `6.9.4-jdk8-jammy`, `6.9-jdk8-jammy`, `6-jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-jammy/Dockerfile) - -- [`6.9.4-jdk8-corretto`, `6.9-jdk8-corretto`, `6-jdk8-corretto`, `6.9.4-jdk8-corretto-al2023`, `6.9-jdk8-corretto-al2023`, `6-jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-corretto/Dockerfile) - -- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/312f71be6aee0839daaddc2c4a65b192b20efa6c/jdk8-ubi9/Dockerfile) +- [`6.9.4-jdk8-ubi`, `6.9-jdk8-ubi`, `6-jdk8-ubi`, `6.9.4-jdk8-ubi-minimal`, `6.9-jdk8-ubi-minimal`, `6-jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/89adc634c8c98e9c132935942ed75ffce1d862f1/jdk8-ubi9/Dockerfile) # Quick reference (cont.) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 6b125168a772..bfe6ca64045e 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,87 +28,103 @@ WARNING: ## Simple Tags -- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-jdk-25.0.0_36-jdk-jammy`, `open-25-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-jdk-25.0.0_36-jdk-noble`, `open-25-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- [`open-jdk-25.0.0_36-jre-jammy`, `open-25-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/jammy/Dockerfile.open.releases.full) + +- [`open-jdk-25.0.0_36-jre-noble`, `open-25-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags - `open-8u462-b08-jdk`, `open-8-jdk`: - - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-8u462-b08-jre`, `open-8-jre`: - - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.28_6-jdk`, `open-11-jdk`: - - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.28_6-jre`, `open-11-jre`: - - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.16_8-jdk`, `open-17-jdk`: - - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.16_8-jre`, `open-17-jre`: - - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.8_9-jdk`, `open-21-jdk`: - - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.8_9-jre`, `open-21-jre`: - - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-24.0.2_12-jdk`, `open-24-jdk`: - - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-24.0.2_12-jre`, `open-24-jre`: - - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/83964d915d8a08ba4964d1b1997b3611a0961c34/24/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-jdk-25.0.0_36-jdk`, `open-25-jdk`: + + - [`open-jdk-25.0.0_36-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) + +- `open-jdk-25.0.0_36-jre`, `open-25-jre`: + + - [`open-jdk-25.0.0_36-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index da7c69a9eb28..d4992f12697c 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/Dockerfile) +- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/Dockerfile) -- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/alpine/Dockerfile) +- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/alpine/Dockerfile) -- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/data/Dockerfile) +- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/data/Dockerfile) -- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/data/alpine/Dockerfile) +- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/data/alpine/Dockerfile) -- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/meta/Dockerfile) +- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/meta/Dockerfile) -- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.12/meta/alpine/Dockerfile) +- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/meta/alpine/Dockerfile) -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/alpine/Dockerfile) -- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.4-core`, `3.4.2-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/3.4-core/Dockerfile) +- [`3-core`, `3.5-core`, `3.5.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/3.5-core/Dockerfile) -- [`3-enterprise`, `3.4-enterprise`, `3.4.2-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/08aac043b46f3a4ad958cb33d095e1526e0ce05f/influxdb/3.4-enterprise/Dockerfile) +- [`3-enterprise`, `3.5-enterprise`, `3.5.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/3.5-enterprise/Dockerfile) # Quick reference (cont.) diff --git a/nats/README.md b/nats/README.md index b36289303ed4..fde2b9f7a0ad 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,70 +28,70 @@ WARNING: ## Simple Tags -- [`2.12.0-alpine3.22`, `2.12-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.12.0-alpine`, `2.12-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/alpine3.22/Dockerfile) +- [`2.12.0-alpine3.22`, `2.12-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.12.0-alpine`, `2.12-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/alpine3.22/Dockerfile) -- [`2.12.0-scratch`, `2.12-scratch`, `2-scratch`, `scratch`, `2.12.0-linux`, `2.12-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/scratch/Dockerfile) +- [`2.12.0-scratch`, `2.12-scratch`, `2-scratch`, `scratch`, `2.12.0-linux`, `2.12-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/scratch/Dockerfile) -- [`2.12.0-windowsservercore-ltsc2022`, `2.12-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.12.0-windowsservercore-ltsc2022`, `2.12-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.12.0-nanoserver-ltsc2022`, `2.12-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) +- [`2.12.0-nanoserver-ltsc2022`, `2.12-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) -- [`2.11.9-alpine3.22`, `2.11-alpine3.22`, `2.11.9-alpine`, `2.11-alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/alpine3.22/Dockerfile) +- [`2.11.10-alpine3.22`, `2.11-alpine3.22`, `2.11.10-alpine`, `2.11-alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/alpine3.22/Dockerfile) -- [`2.11.9-scratch`, `2.11-scratch`, `2.11.9-linux`, `2.11-linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/scratch/Dockerfile) +- [`2.11.10-scratch`, `2.11-scratch`, `2.11.10-linux`, `2.11-linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/scratch/Dockerfile) -- [`2.11.9-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.10-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.9-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.10-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags - `2.12.0`, `2.12`, `2`, `latest`: - - [`2.12.0-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/scratch/Dockerfile) - - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) + - [`2.12.0-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/scratch/Dockerfile) + - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) - `2.12.0-windowsservercore`, `2.12-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.12.0-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.12.0-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/windowsservercore-ltsc2022/Dockerfile) - `2.12.0-nanoserver`, `2.12-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.12.x/nanoserver-ltsc2022/Dockerfile) + - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.9`, `2.11`: +- `2.11.10`, `2.11`: - - [`2.11.9-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/scratch/Dockerfile) - - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.10-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/scratch/Dockerfile) + - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) -- `2.11.9-windowsservercore`, `2.11-windowsservercore`: +- `2.11.10-windowsservercore`, `2.11-windowsservercore`: - - [`2.11.9-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- `2.11.9-nanoserver`, `2.11-nanoserver`: +- `2.11.10-nanoserver`, `2.11-nanoserver`: - - [`2.11.9-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/73e42c1d77ec6e1981a0128de878759f6c960bc2/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index 836a75e8e385..d8848b6e86c8 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -40,9 +40,9 @@ WARNING: - [`5.26.12-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/ubi9/enterprise/Dockerfile) -- [`4.4.45`, `4.4.45-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/ad97122c1c0883832851bf30d1cddc51ee5bafb3/4.4.45/bullseye/community/Dockerfile) +- [`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile) -- [`4.4.45-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/ad97122c1c0883832851bf30d1cddc51ee5bafb3/4.4.45/bullseye/enterprise/Dockerfile) +- [`4.4.46-enterprise`, `4.4-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/enterprise/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 9e1feee4bea5..ce12ee180ca8 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19.0-20250918`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/19.0/Dockerfile) +- [`19.0-20250930`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/19.0/Dockerfile) -- [`18.0-20250918`, `18.0`, `18`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/18.0/Dockerfile) +- [`18.0-20250930`, `18.0`, `18`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/18.0/Dockerfile) -- [`17.0-20250918`, `17.0`, `17`](https://github.com/odoo/docker/blob/9404592737f4a58dade648ba2c9c35de1feb2fb4/17.0/Dockerfile) +- [`17.0-20250930`, `17.0`, `17`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/17.0/Dockerfile) # Quick reference (cont.) From 9bf24fc532aa9aa4d74f528d5f054d3d25267138 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Sep 2025 12:11:12 -0700 Subject: [PATCH 2562/2686] Run update.sh --- rabbitmq/README.md | 12 ++++++------ wordpress/README.md | 48 +++++++++++++++++++++++++++++++++------------ 2 files changed, 42 insertions(+), 18 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 6fb6dc314833..edb3bc1a7bde 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.4`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/8de40987d186b08c73a6d6edb40d825c01fca590/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-beta.4`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/e963688c182bf362170635dc550e16e4d7b002b8/4.2-rc/ubuntu/Dockerfile) - [`4.2.0-beta.4-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.4-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/8de40987d186b08c73a6d6edb40d825c01fca590/4.2-rc/alpine/Dockerfile) +- [`4.2.0-beta.4-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e963688c182bf362170635dc550e16e4d7b002b8/4.2-rc/alpine/Dockerfile) - [`4.2.0-beta.4-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) -- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/ubuntu/Dockerfile) +- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/afa514ae410f3f21127291c2a827c7ed8deda515/4.1/ubuntu/Dockerfile) - [`4.1.4-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/795da0e715c8c6c5cfef7a08d7917fd43f425bc4/4.1/alpine/Dockerfile) +- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/afa514ae410f3f21127291c2a827c7ed8deda515/4.1/alpine/Dockerfile) - [`4.1.4-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/3b417e35b15f8e491b0ab4dcded09dd13366b50c/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/472c590ec4dddf4494c8ed6576d6d78588e3cd35/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/3b417e35b15f8e491b0ab4dcded09dd13366b50c/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/472c590ec4dddf4494c8ed6576d6d78588e3cd35/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) diff --git a/wordpress/README.md b/wordpress/README.md index 73cc26aa8a1d..5d588be15de8 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/apache/Dockerfile) +- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/apache/Dockerfile) -- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/fpm/Dockerfile) +- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/fpm/Dockerfile) -- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/apache/Dockerfile) +- [`6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/apache/Dockerfile) -- [`6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm/Dockerfile) +- [`6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/fpm/Dockerfile) -- [`6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/apache/Dockerfile) +- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/apache/Dockerfile) -- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm/Dockerfile) +- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/fpm/Dockerfile) -- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/apache/Dockerfile) +- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/apache/Dockerfile) -- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/fpm/Dockerfile) +- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/fpm/Dockerfile) -- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/cb4dee629a6dbc942cb218f3d8516e71eb13b27e/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) @@ -56,6 +56,30 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) +- [`beta-6.8.3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/apache/Dockerfile) + +- [`beta-6.8.3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.8.3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.8.3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/apache/Dockerfile) + +- [`beta-6.8.3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.8.3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.8.3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/apache/Dockerfile) + +- [`beta-6.8.3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.8.3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/fpm-alpine/Dockerfile) + +- [`beta-6.8.3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/apache/Dockerfile) + +- [`beta-6.8.3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/fpm/Dockerfile) + +- [`beta-6.8.3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From 53c537668695d791be23207eb5e2926708712596 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Sep 2025 13:10:33 -0700 Subject: [PATCH 2563/2686] Run update.sh --- joomla/README.md | 50 ++++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/joomla/README.md b/joomla/README.md index 6cc904b2e9c3..2aa8b51c75c6 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,41 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-beta3`, `6.0`, `6.0.beta`, `6.0.0-beta`, `6.0.0-beta3-apache`, `6.0-apache`, `6.0.beta-apache`, `6.0.0-beta-apache`, `6.0.0-beta3-php8.3`, `6.0-php8.3`, `6.0.beta-php8.3`, `6.0.0-beta-php8.3`, `6.0.0-beta3-php8.3-apache`, `6.0-php8.3-apache`, `6.0.beta-php8.3-apache`, `6.0.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/apache/Dockerfile) +- [`6.0.0-rc1`, `6.0`, `6.0.rc`, `6.0.0-rc`, `6.0.0-rc1-apache`, `6.0-apache`, `6.0.rc-apache`, `6.0.0-rc-apache`, `6.0.0-rc1-php8.3`, `6.0-php8.3`, `6.0.rc-php8.3`, `6.0.0-rc-php8.3`, `6.0.0-rc1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.rc-php8.3-apache`, `6.0.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/apache/Dockerfile) -- [`6.0.0-beta3-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.beta-php8.3-fpm-alpine`, `6.0.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-rc1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.rc-php8.3-fpm-alpine`, `6.0.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-beta3-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.beta-php8.3-fpm`, `6.0.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/6.0.beta/php8.3/fpm/Dockerfile) +- [`6.0.0-rc1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.rc-php8.3-fpm`, `6.0.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/fpm/Dockerfile) -- [`5.4.0-beta3-php8.2-apache`, `5.4-php8.2-apache`, `5.4.beta-php8.2-apache`, `5.4.0-beta-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/apache/Dockerfile) +- [`5.4.0-rc1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.rc-php8.2-apache`, `5.4.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/apache/Dockerfile) -- [`5.4.0-beta3-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.beta-php8.2-fpm-alpine`, `5.4.0-beta-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-rc1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.rc-php8.2-fpm-alpine`, `5.4.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-beta3-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.beta-php8.2-fpm`, `5.4.0-beta-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.2/fpm/Dockerfile) +- [`5.4.0-rc1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.rc-php8.2-fpm`, `5.4.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/fpm/Dockerfile) -- [`5.4.0-beta3`, `5.4`, `5.4.beta`, `5.4.0-beta`, `5.4.0-beta3-apache`, `5.4-apache`, `5.4.beta-apache`, `5.4.0-beta-apache`, `5.4.0-beta3-php8.3`, `5.4-php8.3`, `5.4.beta-php8.3`, `5.4.0-beta-php8.3`, `5.4.0-beta3-php8.3-apache`, `5.4-php8.3-apache`, `5.4.beta-php8.3-apache`, `5.4.0-beta-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/apache/Dockerfile) +- [`5.4.0-rc1`, `5.4`, `5.4.rc`, `5.4.0-rc`, `5.4.0-rc1-apache`, `5.4-apache`, `5.4.rc-apache`, `5.4.0-rc-apache`, `5.4.0-rc1-php8.3`, `5.4-php8.3`, `5.4.rc-php8.3`, `5.4.0-rc-php8.3`, `5.4.0-rc1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.rc-php8.3-apache`, `5.4.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/apache/Dockerfile) -- [`5.4.0-beta3-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.beta-php8.3-fpm-alpine`, `5.4.0-beta-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-rc1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.rc-php8.3-fpm-alpine`, `5.4.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-beta3-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.beta-php8.3-fpm`, `5.4.0-beta-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/a935f5b3ee82e646fb4c7826b80703828aa6cc42/5.4.beta/php8.3/fpm/Dockerfile) +- [`5.4.0-rc1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.rc-php8.3-fpm`, `5.4.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/fpm/Dockerfile) -- [`5.3.3-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/apache/Dockerfile) +- [`5.3.4-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/apache/Dockerfile) -- [`5.3.3-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/fpm-alpine/Dockerfile) +- [`5.3.4-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/fpm-alpine/Dockerfile) -- [`5.3.3-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.1/fpm/Dockerfile) +- [`5.3.4-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/fpm/Dockerfile) -- [`5.3.3-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/apache/Dockerfile) +- [`5.3.4-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/apache/Dockerfile) -- [`5.3.3-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/fpm-alpine/Dockerfile) +- [`5.3.4-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/fpm-alpine/Dockerfile) -- [`5.3.3-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.2/fpm/Dockerfile) +- [`5.3.4-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/fpm/Dockerfile) -- [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.3-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.3-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/apache/Dockerfile) +- [`5.3.4`, `5.3`, `5`, `latest`, `5.3.4-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.4-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.4-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/apache/Dockerfile) -- [`5.3.3-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/fpm-alpine/Dockerfile) +- [`5.3.4-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/fpm-alpine/Dockerfile) -- [`5.3.3-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/6fec384fc4c6079b429ca7dbb5799e45cab66220/5.3/php8.3/fpm/Dockerfile) +- [`5.3.4-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/fpm/Dockerfile) + +- [`4.4.14-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/apache/Dockerfile) + +- [`4.4.14-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/fpm-alpine/Dockerfile) + +- [`4.4.14-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/fpm/Dockerfile) + +- [`4.4.14`, `4.4`, `4`, `4.4.14-apache`, `4.4-apache`, `4-apache`, `4.4.14-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.14-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/apache/Dockerfile) + +- [`4.4.14-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/fpm-alpine/Dockerfile) + +- [`4.4.14-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/fpm/Dockerfile) # Quick reference (cont.) @@ -66,7 +78,7 @@ WARNING: [https://github.com/joomla-docker/docker-joomla/issues](https://github.com/joomla-docker/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) + [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) - **Published image artifact details**: [repo-info repo's `repos/joomla/` directory](https://github.com/docker-library/repo-info/blob/master/repos/joomla) ([history](https://github.com/docker-library/repo-info/commits/master/repos/joomla)) From 7c3ecd3cd80415af23d89ab37becb657675880fe Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 30 Sep 2025 16:10:47 -0700 Subject: [PATCH 2564/2686] Run update.sh --- postgres/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 16ff880e1966..f2323a60a974 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -28,49 +28,49 @@ WARNING: - [`18.0-bookworm`, `18-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/bookworm/Dockerfile) -- [`18.0-alpine3.22`, `18-alpine3.22`, `alpine3.22`, `18.0-alpine`, `18-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/alpine3.22/Dockerfile) +- [`18.0-alpine3.22`, `18-alpine3.22`, `alpine3.22`, `18.0-alpine`, `18-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/18/alpine3.22/Dockerfile) -- [`18.0-alpine3.21`, `18-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/alpine3.21/Dockerfile) +- [`18.0-alpine3.21`, `18-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/18/alpine3.21/Dockerfile) - [`17.6`, `17`, `17.6-trixie`, `17-trixie`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/trixie/Dockerfile) - [`17.6-bookworm`, `17-bookworm`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/bookworm/Dockerfile) -- [`17.6-alpine3.22`, `17-alpine3.22`, `17.6-alpine`, `17-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `17.6-alpine`, `17-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/17/alpine3.22/Dockerfile) -- [`17.6-alpine3.21`, `17-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/17/alpine3.21/Dockerfile) - [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/trixie/Dockerfile) - [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/bookworm/Dockerfile) -- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/alpine3.22/Dockerfile) +- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/16/alpine3.22/Dockerfile) -- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/alpine3.21/Dockerfile) +- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/16/alpine3.21/Dockerfile) - [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/trixie/Dockerfile) - [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/bookworm/Dockerfile) -- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/alpine3.22/Dockerfile) +- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/15/alpine3.22/Dockerfile) -- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/alpine3.21/Dockerfile) +- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/15/alpine3.21/Dockerfile) - [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/trixie/Dockerfile) - [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/bookworm/Dockerfile) -- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/alpine3.22/Dockerfile) +- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/14/alpine3.22/Dockerfile) -- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/alpine3.21/Dockerfile) +- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/14/alpine3.21/Dockerfile) - [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/trixie/Dockerfile) - [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/bookworm/Dockerfile) -- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/alpine3.22/Dockerfile) +- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/13/alpine3.22/Dockerfile) -- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/alpine3.21/Dockerfile) +- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/13/alpine3.21/Dockerfile) # Quick reference (cont.) From 54e6f4d9cdfedc268bef990973683e0ea18f41ff Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Oct 2025 10:10:56 -0700 Subject: [PATCH 2565/2686] Run update.sh --- neo4j/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index d8848b6e86c8..08602f9f720a 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.09.0-community-bullseye`, `2025.09-community-bullseye`, `2025-community-bullseye`, `2025.09.0-community`, `2025.09-community`, `2025-community`, `2025.09.0-bullseye`, `2025.09-bullseye`, `2025-bullseye`, `2025.09.0`, `2025.09`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/bullseye/community/Dockerfile) +- [`2025.09.0-community-bullseye`, `2025.09-community-bullseye`, `2025-community-bullseye`, `2025.09.0-community`, `2025.09-community`, `2025-community`, `2025.09.0-bullseye`, `2025.09-bullseye`, `2025-bullseye`, `2025.09.0`, `2025.09`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/bullseye/community/Dockerfile) -- [`2025.09.0-enterprise-bullseye`, `2025.09-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.09.0-enterprise`, `2025.09-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/bullseye/enterprise/Dockerfile) +- [`2025.09.0-enterprise-bullseye`, `2025.09-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.09.0-enterprise`, `2025.09-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/bullseye/enterprise/Dockerfile) -- [`2025.09.0-community-ubi9`, `2025.09-community-ubi9`, `2025-community-ubi9`, `2025.09.0-ubi9`, `2025.09-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/ubi9/community/Dockerfile) +- [`2025.09.0-community-ubi9`, `2025.09-community-ubi9`, `2025-community-ubi9`, `2025.09.0-ubi9`, `2025.09-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/community/Dockerfile) -- [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/31cca81e274ab0d5785a97d72b712ef563ab5b2d/2025.09.0/ubi9/enterprise/Dockerfile) +- [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/enterprise/Dockerfile) - [`5.26.12-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.12-community`, `5.26-community`, `5-community`, `5.26.12-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.12`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/community/Dockerfile) From fcf970f9f86f578951b1e63974d156c4aff34bc7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Oct 2025 11:12:46 -0700 Subject: [PATCH 2566/2686] Run update.sh --- dart/README.md | 4 ++-- kapacitor/README.md | 8 ++++---- wordpress/README.md | 48 ++++++++++++--------------------------------- 3 files changed, 18 insertions(+), 42 deletions(-) diff --git a/dart/README.md b/dart/README.md index 0e8412a20d6c..a2d61b165213 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.3-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.3`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/1dfd9d9d5edd76682443355ca989acb8f9508e69/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b2bc5989a535e4c1fc8205ee102e2f32ca79e5e6/stable/trixie/Dockerfile) -- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/1dfd9d9d5edd76682443355ca989acb8f9508e69/beta/trixie/Dockerfile) +- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b2bc5989a535e4c1fc8205ee102e2f32ca79e5e6/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/kapacitor/README.md b/kapacitor/README.md index 5bb2fe42f913..2c423d8cbbce 100644 --- a/kapacitor/README.md +++ b/kapacitor/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.7`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.7/Dockerfile) +- [`1.7`, `1.7.7`](https://github.com/influxdata/influxdata-docker/blob/add887456e0d1657ae822e422bc5cbb2b9b723bc/kapacitor/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.7/alpine/Dockerfile) +- [`1.7-alpine`, `1.7.7-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/add887456e0d1657ae822e422bc5cbb2b9b723bc/kapacitor/1.7/alpine/Dockerfile) -- [`1.8`, `1.8.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.8/Dockerfile) +- [`1.8`, `1.8.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/add887456e0d1657ae822e422bc5cbb2b9b723bc/kapacitor/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.1-alpine`](https://github.com/influxdata/influxdata-docker/blob/9cb0ff12b0bc21addb924704e1d1f63221cc1bc1/kapacitor/1.8/alpine/Dockerfile) +- [`1.8-alpine`, `1.8.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/add887456e0d1657ae822e422bc5cbb2b9b723bc/kapacitor/1.8/alpine/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 5d588be15de8..4f17ac905739 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.8.2-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.2-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/apache/Dockerfile) +- [`6.8.3-php8.1-apache`, `6.8-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.8.3-php8.1`, `6.8-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.1/apache/Dockerfile) -- [`6.8.2-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/fpm/Dockerfile) +- [`6.8.3-php8.1-fpm`, `6.8-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.1/fpm/Dockerfile) -- [`6.8.2-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.1/fpm-alpine/Dockerfile) +- [`6.8.3-php8.1-fpm-alpine`, `6.8-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.1/fpm-alpine/Dockerfile) -- [`6.8.2-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.2-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/apache/Dockerfile) +- [`6.8.3-php8.2-apache`, `6.8-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.8.3-php8.2`, `6.8-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.2/apache/Dockerfile) -- [`6.8.2-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/fpm/Dockerfile) +- [`6.8.3-php8.2-fpm`, `6.8-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.2/fpm/Dockerfile) -- [`6.8.2-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.2/fpm-alpine/Dockerfile) +- [`6.8.3-php8.2-fpm-alpine`, `6.8-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.2/fpm-alpine/Dockerfile) -- [`6.8.2-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.2`, `6.8`, `6`, `latest`, `6.8.2-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.2-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/apache/Dockerfile) +- [`6.8.3-apache`, `6.8-apache`, `6-apache`, `apache`, `6.8.3`, `6.8`, `6`, `latest`, `6.8.3-php8.3-apache`, `6.8-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`, `6.8.3-php8.3`, `6.8-php8.3`, `6-php8.3`, `php8.3`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.3/apache/Dockerfile) -- [`6.8.2-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.2-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/fpm/Dockerfile) +- [`6.8.3-fpm`, `6.8-fpm`, `6-fpm`, `fpm`, `6.8.3-php8.3-fpm`, `6.8-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.3/fpm/Dockerfile) -- [`6.8.2-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.2-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.3/fpm-alpine/Dockerfile) +- [`6.8.3-fpm-alpine`, `6.8-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.8.3-php8.3-fpm-alpine`, `6.8-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.3/fpm-alpine/Dockerfile) -- [`6.8.2-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.2-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/apache/Dockerfile) +- [`6.8.3-php8.4-apache`, `6.8-php8.4-apache`, `6-php8.4-apache`, `php8.4-apache`, `6.8.3-php8.4`, `6.8-php8.4`, `6-php8.4`, `php8.4`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.4/apache/Dockerfile) -- [`6.8.2-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/fpm/Dockerfile) +- [`6.8.3-php8.4-fpm`, `6.8-php8.4-fpm`, `6-php8.4-fpm`, `php8.4-fpm`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.4/fpm/Dockerfile) -- [`6.8.2-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ce303ebfe1bd994b8ad54c8ce34686579ffdce41/latest/php8.4/fpm-alpine/Dockerfile) +- [`6.8.3-php8.4-fpm-alpine`, `6.8-php8.4-fpm-alpine`, `6-php8.4-fpm-alpine`, `php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f143dd4b24dcefc3b633e4a10ed3534d92b91c23/latest/php8.4/fpm-alpine/Dockerfile) - [`cli-2.12.0-php8.1`, `cli-2.12-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.1/alpine/Dockerfile) @@ -56,30 +56,6 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) -- [`beta-6.8.3-php8.1-apache`, `beta-6.8-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.8.3-php8.1`, `beta-6.8-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/apache/Dockerfile) - -- [`beta-6.8.3-php8.1-fpm`, `beta-6.8-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/fpm/Dockerfile) - -- [`beta-6.8.3-php8.1-fpm-alpine`, `beta-6.8-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.1/fpm-alpine/Dockerfile) - -- [`beta-6.8.3-php8.2-apache`, `beta-6.8-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.8.3-php8.2`, `beta-6.8-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/apache/Dockerfile) - -- [`beta-6.8.3-php8.2-fpm`, `beta-6.8-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/fpm/Dockerfile) - -- [`beta-6.8.3-php8.2-fpm-alpine`, `beta-6.8-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.2/fpm-alpine/Dockerfile) - -- [`beta-6.8.3-apache`, `beta-6.8-apache`, `beta-6-apache`, `beta-apache`, `beta-6.8.3`, `beta-6.8`, `beta-6`, `beta`, `beta-6.8.3-php8.3-apache`, `beta-6.8-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.8.3-php8.3`, `beta-6.8-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/apache/Dockerfile) - -- [`beta-6.8.3-fpm`, `beta-6.8-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.8.3-php8.3-fpm`, `beta-6.8-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/fpm/Dockerfile) - -- [`beta-6.8.3-fpm-alpine`, `beta-6.8-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.8.3-php8.3-fpm-alpine`, `beta-6.8-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.3/fpm-alpine/Dockerfile) - -- [`beta-6.8.3-php8.4-apache`, `beta-6.8-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.8.3-php8.4`, `beta-6.8-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/apache/Dockerfile) - -- [`beta-6.8.3-php8.4-fpm`, `beta-6.8-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/fpm/Dockerfile) - -- [`beta-6.8.3-php8.4-fpm-alpine`, `beta-6.8-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/13393cbd5cc7539a26ddefab00e48a5bdbfa260b/beta/php8.4/fpm-alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From a2697495b56c4c3805becc4662b903a3b5e62455 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 1 Oct 2025 17:10:24 -0700 Subject: [PATCH 2567/2686] Run update.sh --- ubuntu/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index a667105d18ff..f54886b2084c 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.04`, `jammy-20250819`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20250819-3f1e6c43&id=3f1e6c43e88f6d1d68c1393c04b3733060952321) +- [`22.04`, `jammy-20251001`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20251001-1758709c&id=1758709c0ef8b678abab7ba1c66546f8c1e8229f) -- [`24.04`, `noble-20250910`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250910-0677e77f&id=0677e77f911c0f4af2e4cc2aad1c331804f1f08f) +- [`24.04`, `noble-20250925`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250925-1d2c5dde&id=1d2c5dde2e888ba830256d63063f029474b18672) -- [`25.04`, `plucky-20250910`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250910-53e52ebb&id=53e52ebbe5b75ff498faa31777d68374e27fd65a) +- [`25.04`, `plucky-20250925.1`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250925.1-aa4f50d8&id=aa4f50d80f2f4aedf77435655a04949bde2a264c) - [`25.10`, `questing-20250830`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250830-c245f382&id=c245f3826f2631032e862a48f183fb528158d08a) From 2afbd54b878dee3e429c52f013102dc8e2bc4209 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Oct 2025 11:10:28 -0700 Subject: [PATCH 2568/2686] Run update.sh --- mongo/README.md | 52 ++++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/mongo/README.md b/mongo/README.md index d04ced40c507..97b50287d012 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`8.0.14-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/8.0/Dockerfile) +- [`8.0.15-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/Dockerfile) -- [`8.0.14-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.0.15-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.14-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.0.15-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.14-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.0.15-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.24-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/7.0/Dockerfile) +- [`7.0.25-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/Dockerfile) -- [`7.0.24-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`7.0.25-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2025/Dockerfile) -- [`7.0.24-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`7.0.25-windowsservercore-ltsc2022`, `7.0-windowsservercore-ltsc2022`, `7-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- [`7.0.24-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`7.0.25-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/nanoserver-ltsc2022/Dockerfile) - [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/6.0/Dockerfile) @@ -54,35 +54,35 @@ WARNING: ## Shared Tags -- `8.0.14`, `8.0`, `8`, `latest`: +- `8.0.15`, `8.0`, `8`, `latest`: - - [`8.0.14-noble`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/8.0/Dockerfile) - - [`8.0.14-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.15-noble`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/Dockerfile) + - [`8.0.15-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.14-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.15-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: - - [`8.0.14-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8.0.14-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.0.15-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.14-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.15-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: - - [`8.0.14-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/f8a4f4fb99895f9ef5c0ae24c3d2cd79b3262c02/8.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`8.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- `7.0.24`, `7.0`, `7`: +- `7.0.25`, `7.0`, `7`: - - [`7.0.24-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/7.0/Dockerfile) - - [`7.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.25-jammy`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/Dockerfile) + - [`7.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.24-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: +- `7.0.25-windowsservercore`, `7.0-windowsservercore`, `7-windowsservercore`: - - [`7.0.24-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`7.0.24-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`7.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `7.0.24-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: +- `7.0.25-nanoserver`, `7.0-nanoserver`, `7-nanoserver`: - - [`7.0.24-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/e2991cb4357621bcd867a1eb260b345af3a65759/7.0/windows/nanoserver-ltsc2022/Dockerfile) + - [`7.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/nanoserver-ltsc2022/Dockerfile) - `6.0.26`, `6.0`, `6`: From b9b4c22e41de2b794afc46e50e7220ff31d97a73 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Oct 2025 13:10:34 -0700 Subject: [PATCH 2569/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 86667e827d64..3c05f5bccc1d 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.7`, `25.8.7-jammy`, `25.8.7.3`, `25.8.7.3-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.8.7.3/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.2`, `25.9.2-jammy`, `25.9.2.1`, `25.9.2.1-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.9.2.1/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.7.7.68/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.8`, `25.8.8-jammy`, `25.8.8.26`, `25.8.8.26-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.8.8.26/Dockerfile.ubuntu) -- [`25.6`, `25.6-jammy`, `25.6.12`, `25.6.12-jammy`, `25.6.12.10`, `25.6.12.10-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.6.12.10/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.7.7.68/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/fb26a0ea07b3d482d83c943c943ec4f5f021e633/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) From 81bf9b5d9554de22a504ff1f55f62b2874a62746 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Oct 2025 14:10:44 -0700 Subject: [PATCH 2570/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++---------------- fedora/README.md | 8 +++--- jruby/README.md | 72 +++++++++++++++++++++++++++--------------------- 3 files changed, 68 insertions(+), 60 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 6677f3ded650..2a6d4b970a5e 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.4-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.4-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.4-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.4-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.4-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.4`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/apache-trixie/Dockerfile) +- [`11.2.5-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.5-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.5-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.5-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.5-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.5`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/apache-trixie/Dockerfile) -- [`11.2.4-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.4-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.4-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.4-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-trixie/Dockerfile) +- [`11.2.5-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.5-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.5-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.5-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-trixie/Dockerfile) -- [`11.2.4-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.4-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.5-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.5-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.4-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.4-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.5-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.5-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.4-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.4-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.4-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.4-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.5-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.5-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.5-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.5-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.4-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.4-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.5-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.5-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.4-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.4-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.4-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/apache-trixie/Dockerfile) +- [`11.2.5-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.5-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.5-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/apache-trixie/Dockerfile) -- [`11.2.4-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.4-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-trixie/Dockerfile) +- [`11.2.5-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.5-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-trixie/Dockerfile) -- [`11.2.4-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.5-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.4-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.5-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.4-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.4-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.5-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.5-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.4-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/3ead1df7bcca74028622d253e386049f3622d6d7/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.5-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-trixie`, `11.1-php8.4-apache-trixie`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-trixie/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.3-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.3-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.3-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.3-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.3-apache`, `10.5-apache`, `10-apache`, `10.5.3`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/apache-trixie/Dockerfile) +- [`10.5.4-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.4-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.4-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.4-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.4-apache`, `10.5-apache`, `10-apache`, `10.5.4`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/apache-trixie/Dockerfile) -- [`10.5.3-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.3-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.3-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.3-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-trixie/Dockerfile) +- [`10.5.4-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.4-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.4-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.4-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-trixie/Dockerfile) -- [`10.5.3-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.3-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.4-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.4-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.3-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.3-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.4-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.4-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.3-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.3-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.3-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.3-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.4-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.4-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.4-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.4-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.3-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.3-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.4-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.4-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.3-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.3-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.3-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/apache-trixie/Dockerfile) +- [`10.5.4-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.4-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.4-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/apache-trixie/Dockerfile) -- [`10.5.3-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.3-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-trixie/Dockerfile) +- [`10.5.4-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.4-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-trixie/Dockerfile) -- [`10.5.3-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.4-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.3-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.4-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.3-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.3-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.4-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.4-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.3-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/7b852237a0e3da3b04f60ca33342ac3f1a4a54aa/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.4-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-alpine3.21/Dockerfile) - [`10.4.8-php8.4-apache-trixie`, `10.4-php8.4-apache-trixie`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/apache-trixie/Dockerfile) diff --git a/fedora/README.md b/fedora/README.md index bc34f1029d95..9c9149a5b42f 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/329bfefe2076a68058a801d302d52c6bd8ff82a9/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1815a7988ca6c8151261a04e364538a7f8f2dd32/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/83a2c0273cd8d9547c49ccfe78962cef90661081/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/24478869ab3e2f39982ffc33a58a46c021ef32cd/x86_64/Dockerfile) -- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/af71a777fb06af9e191633ed37aaf1bda48fd844/x86_64/Dockerfile) +- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/204a6150a0c26fb1a6148fd2d6565c04ea64e3d7/x86_64/Dockerfile) -- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/bf6e259070945891640c927fcbcdb98b56ec711d/x86_64/Dockerfile) +- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/39a60f713c82c7d8d3fa03777a304f680a6050cb/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index d7edc4617e9a..f87684d05f9d 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -24,69 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `10`, `10.0`, `10.0.2`, `10.0-jre`, `10.0-jre21`, `10.0.2-jre`, `10.0.2-jre21`, `10.0.2.0`, `10.0.2.0-jre`, `10.0.2.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jre21/Dockerfile) +- [`latest`, `10`, `10.0`, `10.0.2`, `10.0-jre`, `10.0-jre21`, `10.0.2-jre`, `10.0.2-jre21`, `10.0.2.0`, `10.0.2.0-jre`, `10.0.2.0-jre21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0/jre21/Dockerfile) -- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.2-jdk`, `10.0.2-jdk21`, `10.0.2.0-jdk`, `10.0.2.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jdk21/Dockerfile) +- [`10-jdk`, `10-jdk21`, `10.0-jdk`, `10.0-jdk21`, `10.0.2-jdk`, `10.0.2-jdk21`, `10.0.2.0-jdk`, `10.0.2.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0/jdk21/Dockerfile) -- [`10.0-jre24`, `10.0.2-jre24`, `10.0.2.0-jre24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jre24/Dockerfile) +- [`10.0-jre25`, `10.0.2-jre25`, `10.0.2.0-jre25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0/jre25/Dockerfile) -- [`10.0-jdk24`, `10.0.2-jdk24`, `10.0.2.0-jdk24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0/jdk24/Dockerfile) +- [`10.0-jdk25`, `10.0.2-jdk25`, `10.0.2.0-jdk25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0/jdk25/Dockerfile) -- [`9`, `9.4`, `9.4.14`, `9.4-jre`, `9.4-jre8`, `9.4.14-jre`, `9.4.14-jre8`, `9.4.14.0`, `9.4.14.0-jre`, `9.4.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre8/Dockerfile) +- [`9`, `9.4`, `9.4.14`, `9.4-jre`, `9.4-jre8`, `9.4.14-jre`, `9.4.14-jre8`, `9.4.14.0`, `9.4.14.0-jre`, `9.4.14.0-jre8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jre8/Dockerfile) -- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.14-jdk`, `9.4.14-jdk8`, `9.4.14.0-jdk`, `9.4.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk8/Dockerfile) +- [`9-jdk`, `9-jdk8`, `9.4-jdk`, `9.4-jdk8`, `9.4.14-jdk`, `9.4.14-jdk8`, `9.4.14.0-jdk`, `9.4.14.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jdk8/Dockerfile) -- [`9.4-jre11`, `9.4.14-jre11`, `9.4.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre11/Dockerfile) +- [`9.4-jre11`, `9.4.14-jre11`, `9.4.14.0-jre11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jre11/Dockerfile) -- [`9.4-jdk11`, `9.4.14-jdk11`, `9.4.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk11/Dockerfile) +- [`9.4-jdk11`, `9.4.14-jdk11`, `9.4.14.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jdk11/Dockerfile) -- [`9.4-jdk17`, `9.4.14-jdk17`, `9.4.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk17/Dockerfile) +- [`9.4-jdk17`, `9.4.14-jdk17`, `9.4.14.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jdk17/Dockerfile) -- [`9.4-jre17`, `9.4.14-jre17`, `9.4.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre17/Dockerfile) +- [`9.4-jre17`, `9.4.14-jre17`, `9.4.14.0-jre17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jre17/Dockerfile) -- [`9.4-jdk21`, `9.4.14-jdk21`, `9.4.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jdk21/Dockerfile) +- [`9.4-jdk21`, `9.4.14-jdk21`, `9.4.14.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jdk21/Dockerfile) -- [`9.4-jre21`, `9.4.14-jre21`, `9.4.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4/jre21/Dockerfile) +- [`9.4-jre21`, `9.4.14-jre21`, `9.4.14.0-jre21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jre21/Dockerfile) -- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre8/Dockerfile) +- [`9.4-jdk25`, `9.4.14-jdk25`, `9.4.14.0-jdk25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jdk25/Dockerfile) -- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk8/Dockerfile) +- [`9.4-jre25`, `9.4.14-jre25`, `9.4.14.0-jre25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4/jre25/Dockerfile) -- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre11/Dockerfile) +- [`9.3`, `9.3.15`, `9.3-jre`, `9.3-jre8`, `9.3.15-jre`, `9.3.15-jre8`, `9.3.15.0`, `9.3.15.0-jre`, `9.3.15.0-jre8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jre8/Dockerfile) -- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk11/Dockerfile) +- [`9.3-jdk`, `9.3-jdk8`, `9.3.15-jdk`, `9.3.15-jdk8`, `9.3.15.0-jdk`, `9.3.15.0-jdk8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jdk8/Dockerfile) -- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk17/Dockerfile) +- [`9.3-jre11`, `9.3.15-jre11`, `9.3.15.0-jre11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jre11/Dockerfile) -- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre17/Dockerfile) +- [`9.3-jdk11`, `9.3.15-jdk11`, `9.3.15.0-jdk11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jdk11/Dockerfile) -- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jdk21/Dockerfile) +- [`9.3-jdk17`, `9.3.15-jdk17`, `9.3.15.0-jdk17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jdk17/Dockerfile) -- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.3/jre21/Dockerfile) +- [`9.3-jre17`, `9.3.15-jre17`, `9.3.15.0-jre17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jre17/Dockerfile) -- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jre21/Dockerfile) +- [`9.3-jdk21`, `9.3.15-jdk21`, `9.3.15.0-jdk21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jdk21/Dockerfile) -- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jdk21/Dockerfile) +- [`9.3-jre21`, `9.3.15-jre21`, `9.3.15.0-jre21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.3/jre21/Dockerfile) -- [`10.0-dev-jre24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jre24/Dockerfile) +- [`10.0-dev-jre21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0-dev/jre21/Dockerfile) -- [`10.0-dev-jdk24`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/10.0-dev/jdk24/Dockerfile) +- [`10.0-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0-dev/jdk21/Dockerfile) -- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre8/Dockerfile) +- [`10.0-dev-jre25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0-dev/jre25/Dockerfile) -- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk8/Dockerfile) +- [`10.0-dev-jdk25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/10.0-dev/jdk25/Dockerfile) -- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre11/Dockerfile) +- [`9.4-dev-jre8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jre8/Dockerfile) -- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk11/Dockerfile) +- [`9.4-dev-jdk8`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jdk8/Dockerfile) -- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk17/Dockerfile) +- [`9.4-dev-jre11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jre11/Dockerfile) -- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre17/Dockerfile) +- [`9.4-dev-jdk11`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jdk11/Dockerfile) -- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jdk21/Dockerfile) +- [`9.4-dev-jdk17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jdk17/Dockerfile) -- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/73b84171f2eefb713ff4c4420a9cd46b19f7df42/9.4-dev/jre21/Dockerfile) +- [`9.4-dev-jre17`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jre17/Dockerfile) + +- [`9.4-dev-jdk21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jdk21/Dockerfile) + +- [`9.4-dev-jre21`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jre21/Dockerfile) + +- [`9.4-dev-jdk25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jdk25/Dockerfile) + +- [`9.4-dev-jre25`](https://github.com/jruby/docker-jruby/blob/a8ffc83b6e262b7171f26a07284053dc3de9af6b/9.4-dev/jre25/Dockerfile) # Quick reference (cont.) From 36c350660247dbc0ff377752341631e4855fc348 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 2 Oct 2025 15:11:02 -0700 Subject: [PATCH 2571/2686] Run update.sh --- liquibase/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 0051cde75a52..9ec6ec313de6 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.33`, `4.33.0`, `latest`](https://github.com/liquibase/docker/blob/e54a7dd42e0afd00fa3a85d3ef3d90a3b583c613/Dockerfile) +- [`5.0`, `5.0.0`, `latest`](https://github.com/liquibase/docker/blob/aa1c6cc8fda7a42fde405d21030f99d1d5397f6a/Dockerfile) -- [`4.33-alpine`, `4.33.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/e54a7dd42e0afd00fa3a85d3ef3d90a3b583c613/Dockerfile.alpine) +- [`5.0-alpine`, `5.0.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/aa1c6cc8fda7a42fde405d21030f99d1d5397f6a/Dockerfile.alpine) # Quick reference (cont.) From d6b9abd4b6db5e0653843752137158a3250ecb0b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Oct 2025 09:11:06 -0700 Subject: [PATCH 2572/2686] Run update.sh --- docker/README.md | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/docker/README.md b/docker/README.md index 954f9d788c54..269a169f12bf 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`28.5.0-rc.1-cli`, `28-rc-cli`, `rc-cli`, `28.5.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/cli/Dockerfile) +- [`28.5.0-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/cli/Dockerfile) -- [`28.5.0-rc.1-dind`, `28-rc-dind`, `rc-dind`, `28.5.0-rc.1-dind-alpine3.22`, `28.5.0-rc.1`, `28-rc`, `rc`, `28.5.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/dind/Dockerfile) +- [`28.5.0-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.0-dind-alpine3.22`, `28.5.0`, `28.5`, `28`, `latest`, `28.5.0-alpine3.22`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/dind/Dockerfile) -- [`28.5.0-rc.1-dind-rootless`, `28-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/dind-rootless/Dockerfile) +- [`28.5.0-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/dind-rootless/Dockerfile) -- [`28.5.0-rc.1-windowsservercore-ltsc2025`, `28-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.5.0-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.5.0-rc.1-windowsservercore-ltsc2022`, `28-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.4.0-cli`, `28.4-cli`, `28-cli`, `cli`, `28.4.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/cli/Dockerfile) - -- [`28.4.0-dind`, `28.4-dind`, `28-dind`, `dind`, `28.4.0-dind-alpine3.22`, `28.4.0`, `28.4`, `28`, `latest`, `28.4.0-alpine3.22`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind/Dockerfile) - -- [`28.4.0-dind-rootless`, `28.4-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/1c159972e22aa2ebda6c851742be43e67778d13b/28/dind-rootless/Dockerfile) - -- [`28.4.0-windowsservercore-ltsc2025`, `28.4-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.4.0-windowsservercore-ltsc2022`, `28.4-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.5.0-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.5.0-rc.1-windowsservercore`, `28-rc-windowsservercore`, `rc-windowsservercore`: - - - [`28.5.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.5.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/393b1f9a22b5084cf1ea3aa897ecc45f15d6b200/28-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `28.4.0-windowsservercore`, `28.4-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.5.0-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.4.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.4.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b2bffb1e479e614f1a65ffdf8e9120200b76d08b/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.5.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) From a61730a501ffb1301670672582ca217f61701dd3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Oct 2025 10:11:24 -0700 Subject: [PATCH 2573/2686] Run update.sh --- redis/README.md | 20 ++++++++++---------- xwiki/README.md | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/redis/README.md b/redis/README.md index 027681c3e348..40ec1357c218 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.1`, `8.2`, `8`, `8.2.1-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/a13b78815d980881e57f15b9cf13cd2f26f3fab6/debian/Dockerfile) +- [`8.2.2`, `8.2`, `8`, `8.2.2-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/c5846c13383c8b284897ff171e0c946868ed4c8c/debian/Dockerfile) -- [`8.2.1-alpine`, `8.2-alpine`, `8-alpine`, `8.2.1-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/a13b78815d980881e57f15b9cf13cd2f26f3fab6/alpine/Dockerfile) +- [`8.2.2-alpine`, `8.2-alpine`, `8-alpine`, `8.2.2-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/c5846c13383c8b284897ff171e0c946868ed4c8c/alpine/Dockerfile) -- [`8.0.3`, `8.0`, `8.0.3-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/debian/Dockerfile) +- [`8.0.4`, `8.0`, `8.0.4-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/2277e5ead99f0caacbd90e0d04693adb27ebfaa6/debian/Dockerfile) -- [`8.0.3-alpine`, `8.0-alpine`, `8.0.3-alpine3.21`, `8.0-alpine3.21`](https://github.com/redis/docker-library-redis/blob/101262a8cf05b98137d88bc17e77db90c24cc783/alpine/Dockerfile) +- [`8.0.4-alpine`, `8.0-alpine`, `8.0.4-alpine3.21`, `8.0-alpine3.21`](https://github.com/redis/docker-library-redis/blob/2277e5ead99f0caacbd90e0d04693adb27ebfaa6/alpine/Dockerfile) -- [`7.4.5`, `7.4`, `7`, `7.4.5-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.4/debian/Dockerfile) +- [`7.4.6`, `7.4`, `7`, `7.4.6-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.4/debian/Dockerfile) -- [`7.4.5-alpine`, `7.4-alpine`, `7-alpine`, `7.4.5-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.4/alpine/Dockerfile) +- [`7.4.6-alpine`, `7.4-alpine`, `7-alpine`, `7.4.6-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.4/alpine/Dockerfile) -- [`7.2.10`, `7.2`, `7.2.10-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.2/debian/Dockerfile) +- [`7.2.11`, `7.2`, `7.2.11-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.2/debian/Dockerfile) -- [`7.2.10-alpine`, `7.2-alpine`, `7.2.10-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/7.2/alpine/Dockerfile) +- [`7.2.11-alpine`, `7.2-alpine`, `7.2.11-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.2/alpine/Dockerfile) -- [`6.2.19`, `6.2`, `6`, `6.2.19-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/6.2/debian/Dockerfile) +- [`6.2.20`, `6.2`, `6`, `6.2.20-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/6.2/debian/Dockerfile) -- [`6.2.19-alpine`, `6.2-alpine`, `6-alpine`, `6.2.19-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/732a2608af90db97efa8ddd993fcbb63f5d2883b/6.2/alpine/Dockerfile) +- [`6.2.20-alpine`, `6.2-alpine`, `6-alpine`, `6.2.20-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/6.2/alpine/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 3b99d1fb2bd0..2dbb9b6b467a 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.7`, `17.7.0`, `17-mysql-tomcat`, `17.7-mysql-tomcat`, `17.7.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/mysql-tomcat/Dockerfile) +- [`17`, `17.8`, `17.8.0`, `17-mysql-tomcat`, `17.8-mysql-tomcat`, `17.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.7-postgres-tomcat`, `17.7.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.8-postgres-tomcat`, `17.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.7-mariadb-tomcat`, `17.7.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.8-mariadb-tomcat`, `17.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mariadb-tomcat/Dockerfile) - [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mysql-tomcat/Dockerfile) @@ -36,11 +36,11 @@ WARNING: - [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.11`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.11-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.12`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.11-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.11-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From 9642a6c873b9e17f2434e9b62b2abbd8054e3638 Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Fri, 3 Oct 2025 13:18:15 -0500 Subject: [PATCH 2574/2686] Update JRuby examples to use version 10 --- jruby/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jruby/content.md b/jruby/content.md index 5893b218b7e6..9c7b5dfe7baa 100644 --- a/jruby/content.md +++ b/jruby/content.md @@ -15,7 +15,7 @@ JRuby leverages the robustness and speed of the JVM while providing the same Rub ## Create a `Dockerfile` in your Ruby app project ```dockerfile -FROM %%IMAGE%%:9 +FROM %%IMAGE%%:10 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 @@ -44,7 +44,7 @@ $ docker run -it --name my-running-script my-ruby-app The above example `Dockerfile` expects a `Gemfile.lock` in your app directory. This `docker run` will help you generate one. Run it in the root of your app, next to the `Gemfile`: ```console -$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:9 bundle install --system +$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:10 bundle install --system ``` ## Run a single Ruby script @@ -52,5 +52,5 @@ $ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app %%IMAGE%%:9 bundle inst For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a Ruby script by using the Ruby Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:9 jruby your-daemon-or-script.rb +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:10 jruby your-daemon-or-script.rb ``` From fc3b6e6de076dd3e926778933fee2f0eceb14712 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Oct 2025 12:10:38 -0700 Subject: [PATCH 2575/2686] Run update.sh --- haproxy/README.md | 28 ++++++++++++++-------------- jruby/README.md | 6 +++--- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index ee861535df32..71d84a59857d 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev8`, `3.3-dev`, `3.3-dev8-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/4c74fa19391cdc46521acb0dcb7c9e61dbf4db3e/3.3/Dockerfile) +- [`3.3-dev9`, `3.3-dev`, `3.3-dev9-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/4cd7a3775e0995919e129289cfa2e314e37fb15e/3.3/Dockerfile) -- [`3.3-dev8-alpine`, `3.3-dev-alpine`, `3.3-dev8-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/4c74fa19391cdc46521acb0dcb7c9e61dbf4db3e/3.3/alpine/Dockerfile) +- [`3.3-dev9-alpine`, `3.3-dev-alpine`, `3.3-dev9-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/4cd7a3775e0995919e129289cfa2e314e37fb15e/3.3/alpine/Dockerfile) -- [`3.2.5`, `3.2`, `latest`, `lts`, `3.2.5-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/e9703bec7c7ba6ef31d7d152604d1f6b7135f861/3.2/Dockerfile) +- [`3.2.6`, `3.2`, `latest`, `lts`, `3.2.6-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/04b2168ff76f90727c02f01cb719f655e768f6fd/3.2/Dockerfile) -- [`3.2.5-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.5-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e9703bec7c7ba6ef31d7d152604d1f6b7135f861/3.2/alpine/Dockerfile) +- [`3.2.6-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.6-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/04b2168ff76f90727c02f01cb719f655e768f6fd/3.2/alpine/Dockerfile) -- [`3.1.8`, `3.1`, `3.1.8-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.1/Dockerfile) +- [`3.1.9`, `3.1`, `3.1.9-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/0d89f493da93a6e40d26926929cf12bf95fbec5b/3.1/Dockerfile) -- [`3.1.8-alpine`, `3.1-alpine`, `3.1.8-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/d9460179b64eac94bd181a488a74d8e6df7bdbf5/3.1/alpine/Dockerfile) +- [`3.1.9-alpine`, `3.1-alpine`, `3.1.9-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/0d89f493da93a6e40d26926929cf12bf95fbec5b/3.1/alpine/Dockerfile) -- [`3.0.11`, `3.0`, `3.0.11-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/3.0/Dockerfile) +- [`3.0.12`, `3.0`, `3.0.12-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/0390f3e72676323955e3a7d230393c7b5478f0b0/3.0/Dockerfile) -- [`3.0.11-alpine`, `3.0-alpine`, `3.0.11-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/6fa540dd7d9d82634605e727a8e1c726a23d8b0d/3.0/alpine/Dockerfile) +- [`3.0.12-alpine`, `3.0-alpine`, `3.0.12-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/0390f3e72676323955e3a7d230393c7b5478f0b0/3.0/alpine/Dockerfile) -- [`2.8.15`, `2.8`, `2.8.15-trixie`, `2.8-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.8/Dockerfile) +- [`2.8.16`, `2.8`, `2.8.16-trixie`, `2.8-trixie`](https://github.com/docker-library/haproxy/blob/97dd996d667932ef9359dcb8f2b3242eb54b253e/2.8/Dockerfile) -- [`2.8.15-alpine`, `2.8-alpine`, `2.8.15-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.8/alpine/Dockerfile) +- [`2.8.16-alpine`, `2.8-alpine`, `2.8.16-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/97dd996d667932ef9359dcb8f2b3242eb54b253e/2.8/alpine/Dockerfile) -- [`2.6.22`, `2.6`, `2.6.22-trixie`, `2.6-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.6/Dockerfile) +- [`2.6.23`, `2.6`, `2.6.23-trixie`, `2.6-trixie`](https://github.com/docker-library/haproxy/blob/926111706a0ffd8b815e1edfd317aae52d06d083/2.6/Dockerfile) -- [`2.6.22-alpine`, `2.6-alpine`, `2.6.22-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.6/alpine/Dockerfile) +- [`2.6.23-alpine`, `2.6-alpine`, `2.6.23-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/926111706a0ffd8b815e1edfd317aae52d06d083/2.6/alpine/Dockerfile) -- [`2.4.29`, `2.4`, `2.4.29-trixie`, `2.4-trixie`](https://github.com/docker-library/haproxy/blob/2ff3f8bcd0304645bd56e5c6118fa8989f8bba00/2.4/Dockerfile) +- [`2.4.30`, `2.4`, `2.4.30-trixie`, `2.4-trixie`](https://github.com/docker-library/haproxy/blob/c55eb01d1a1866a421e20e21bace391080fc58ba/2.4/Dockerfile) -- [`2.4.29-alpine`, `2.4-alpine`, `2.4.29-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/3117d2496500d354bb79eff90b6ba247fb456276/2.4/alpine/Dockerfile) +- [`2.4.30-alpine`, `2.4-alpine`, `2.4.30-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/c55eb01d1a1866a421e20e21bace391080fc58ba/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/jruby/README.md b/jruby/README.md index f87684d05f9d..c3fa22ce86f0 100644 --- a/jruby/README.md +++ b/jruby/README.md @@ -132,7 +132,7 @@ JRuby leverages the robustness and speed of the JVM while providing the same Rub ## Create a `Dockerfile` in your Ruby app project ```dockerfile -FROM jruby:9 +FROM jruby:10 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 @@ -161,7 +161,7 @@ $ docker run -it --name my-running-script my-ruby-app The above example `Dockerfile` expects a `Gemfile.lock` in your app directory. This `docker run` will help you generate one. Run it in the root of your app, next to the `Gemfile`: ```console -$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app jruby:9 bundle install --system +$ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app jruby:10 bundle install --system ``` ## Run a single Ruby script @@ -169,7 +169,7 @@ $ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app jruby:9 bundle install For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a Ruby script by using the Ruby Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp jruby:9 jruby your-daemon-or-script.rb +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp jruby:10 jruby your-daemon-or-script.rb ``` # License From 4ed71ec2f541ef608ad0b792bae3eb1af0fcdc88 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Oct 2025 16:10:27 -0700 Subject: [PATCH 2576/2686] Run update.sh --- rakudo-star/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 284c8ad2cce6..80815bfca1be 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,9 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `2025.08.1`, `bookworm`](https://github.com/rakudo/docker/blob/8c213b2fb89d60eb631068eecba27dab9a0989bc/2025.08.1/bookworm/Dockerfile) +- [`trixie`, `2025.08.1-trixie`, `latest`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/trixie/Dockerfile) -- [`alpine`, `2025.08.1-alpine`](https://github.com/rakudo/docker/blob/8c213b2fb89d60eb631068eecba27dab9a0989bc/2025.08.1/alpine/Dockerfile) +- [`bookworm`, `2025.08.1-bookworm`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/bookworm/Dockerfile) + +- [`alpine`, `2025.08.1-alpine`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/alpine/Dockerfile) # Quick reference (cont.) @@ -89,7 +91,7 @@ The `rakudo-star` images come in many flavors, each designed for a specific use This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `rakudo-star:-alpine` From 34e63d4b1f380152f9c7a462169678c485664810 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 3 Oct 2025 17:10:39 -0700 Subject: [PATCH 2577/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 5680c5ccd585..ae3b725ce137 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.0`, `6.1`, `6`, `latest`](https://github.com/docker-library/ghost/blob/24e19176900aa84b60e8a13c80d8b1bcef929581/6/debian/Dockerfile) +- [`6.2.0`, `6.2`, `6`, `latest`](https://github.com/docker-library/ghost/blob/d2feb10e3b16dbb44fe0e2d85a48d55d0bc9a39d/6/debian/Dockerfile) -- [`6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/24e19176900aa84b60e8a13c80d8b1bcef929581/6/alpine/Dockerfile) +- [`6.2.0-alpine`, `6.2-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d2feb10e3b16dbb44fe0e2d85a48d55d0bc9a39d/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) From 50abd1359cab9a5f88b7e81f98da5b96ac99d9c6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Oct 2025 11:10:40 -0700 Subject: [PATCH 2578/2686] Run update.sh --- archlinux/README.md | 6 +++--- mediawiki/README.md | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index 91c526a79bb1..e4dc531a19b7 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.base) +- [`latest`, `base`, `base-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.base) -- [`base-devel`, `base-devel-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20250928.0.426921`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/90eb341f00a3bb9401fe599087757c60920c8485/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/mediawiki/README.md b/mediawiki/README.md index 9b2f60277add..9132eac468cc 100644 --- a/mediawiki/README.md +++ b/mediawiki/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.44.0`, `1.44`, `latest`, `stable`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/apache/Dockerfile) +- [`1.44.2`, `1.44`, `latest`, `stable`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.44/apache/Dockerfile) -- [`1.44.0-fpm`, `1.44-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/fpm/Dockerfile) +- [`1.44.2-fpm`, `1.44-fpm`, `stable-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.44/fpm/Dockerfile) -- [`1.44.0-fpm-alpine`, `1.44-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.44/fpm-alpine/Dockerfile) +- [`1.44.2-fpm-alpine`, `1.44-fpm-alpine`, `stable-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.44/fpm-alpine/Dockerfile) -- [`1.43.3`, `1.43`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/apache/Dockerfile) +- [`1.43.5`, `1.43`, `lts`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.43/apache/Dockerfile) -- [`1.43.3-fpm`, `1.43-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/fpm/Dockerfile) +- [`1.43.5-fpm`, `1.43-fpm`, `lts-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.43/fpm/Dockerfile) -- [`1.43.3-fpm-alpine`, `1.43-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.43/fpm-alpine/Dockerfile) +- [`1.43.5-fpm-alpine`, `1.43-fpm-alpine`, `lts-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.43/fpm-alpine/Dockerfile) -- [`1.39.13`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/apache/Dockerfile) +- [`1.39.15`, `1.39`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.39/apache/Dockerfile) -- [`1.39.13-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/fpm/Dockerfile) +- [`1.39.15-fpm`, `1.39-fpm`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.39/fpm/Dockerfile) -- [`1.39.13-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/8d5915f6b11612e3eed4f7e00ddc8288e4c5e267/1.39/fpm-alpine/Dockerfile) +- [`1.39.15-fpm-alpine`, `1.39-fpm-alpine`](https://github.com/wikimedia/mediawiki-docker/blob/22e0f2939d36bfc61d1572e4e1a2afd66d84e6f5/1.39/fpm-alpine/Dockerfile) # Quick reference (cont.) From 35573bf2cfcb923871ebb8aed74a31cf856b5fc4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Oct 2025 13:10:49 -0700 Subject: [PATCH 2579/2686] Run update.sh --- neo4j/README.md | 8 ++--- sonarqube/README.md | 2 +- tomee/README.md | 72 ++++++++++++++++++++++++++++++--------------- xwiki/README.md | 6 ++-- 4 files changed, 56 insertions(+), 32 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 08602f9f720a..43b9c314ffd3 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/enterprise/Dockerfile) -- [`5.26.12-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.12-community`, `5.26-community`, `5-community`, `5.26.12-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.12`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/community/Dockerfile) +- [`5.26.13-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.13-community`, `5.26-community`, `5-community`, `5.26.13-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.13`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/bullseye/community/Dockerfile) -- [`5.26.12-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.12-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/bullseye/enterprise/Dockerfile) +- [`5.26.13-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.13-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/bullseye/enterprise/Dockerfile) -- [`5.26.12-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.12-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/ubi9/community/Dockerfile) +- [`5.26.13-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.13-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/ubi9/community/Dockerfile) -- [`5.26.12-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/8f0870e5f119fd84d53978ddf9c70aa442b74db8/5.26.12/ubi9/enterprise/Dockerfile) +- [`5.26.13-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/ubi9/enterprise/Dockerfile) - [`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile) diff --git a/sonarqube/README.md b/sonarqube/README.md index 06c2baeae9dd..4ae2c04b3ea4 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -48,7 +48,7 @@ WARNING: - [`2025.1.4-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/datacenter/search/Dockerfile) -- [`25.9.0.112764-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/community-build/Dockerfile) +- [`25.10.0.114319-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/a5d28439b45d0a6002290fd28bf1b481c0182bb6/community-build/Dockerfile) # Quick reference (cont.) diff --git a/tomee/README.md b/tomee/README.md index 1921e35b21ab..f1ab1f575516 100644 --- a/tomee/README.md +++ b/tomee/README.md @@ -24,53 +24,77 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10.1.2-jre21-Temurin-ubuntu-microprofile`, `10.1.2-Temurin-ubuntu-microprofile`, `10.1.2-jre21-ubuntu-microprofile`, `10.1.2-ubuntu-microprofile`, `10.1.2-jre21-Temurin-microprofile`, `10.1.2-Temurin-microprofile`, `10.1.2-jre21-microprofile`, `10.1.2-microprofile`, `10.1.2-jre21-Temurin-ubuntu`, `10.1.2-Temurin-ubuntu`, `10.1.2-jre21-ubuntu`, `10.1.2-ubuntu`, `10.1.2-jre21-Temurin`, `10.1.2-Temurin`, `10.1.2-jre21`, `10.1.2`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-ubuntu`, `10.1-jre21-Temurin`, `10.1-Temurin`, `10.1-jre21`, `10.1`, `10-jre21-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre21-microprofile`, `10-microprofile`, `10-jre21-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-ubuntu`, `10-jre21-Temurin`, `10-Temurin`, `10-jre21`, `10`, `jre21-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `ubuntu-microprofile`, `jre21-Temurin-microprofile`, `Temurin-microprofile`, `jre21-microprofile`, `microprofile`, `jre21-Temurin-ubuntu`, `Temurin-ubuntu`, `jre21-ubuntu`, `ubuntu`, `jre21-Temurin`, `Temurin`, `jre21`, `latest`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre25-Temurin-ubuntu-microprofile`, `10.1.2-Temurin-ubuntu-microprofile`, `10.1.2-jre25-ubuntu-microprofile`, `10.1.2-ubuntu-microprofile`, `10.1.2-jre25-Temurin-microprofile`, `10.1.2-Temurin-microprofile`, `10.1.2-jre25-microprofile`, `10.1.2-microprofile`, `10.1.2-jre25-Temurin-ubuntu`, `10.1.2-Temurin-ubuntu`, `10.1.2-jre25-ubuntu`, `10.1.2-ubuntu`, `10.1.2-jre25-Temurin`, `10.1.2-Temurin`, `10.1.2-jre25`, `10.1.2`, `10.1-jre25-Temurin-ubuntu-microprofile`, `10.1-Temurin-ubuntu-microprofile`, `10.1-jre25-ubuntu-microprofile`, `10.1-ubuntu-microprofile`, `10.1-jre25-Temurin-microprofile`, `10.1-Temurin-microprofile`, `10.1-jre25-microprofile`, `10.1-microprofile`, `10.1-jre25-Temurin-ubuntu`, `10.1-Temurin-ubuntu`, `10.1-jre25-ubuntu`, `10.1-ubuntu`, `10.1-jre25-Temurin`, `10.1-Temurin`, `10.1-jre25`, `10.1`, `10-jre25-Temurin-ubuntu-microprofile`, `10-Temurin-ubuntu-microprofile`, `10-jre25-ubuntu-microprofile`, `10-ubuntu-microprofile`, `10-jre25-Temurin-microprofile`, `10-Temurin-microprofile`, `10-jre25-microprofile`, `10-microprofile`, `10-jre25-Temurin-ubuntu`, `10-Temurin-ubuntu`, `10-jre25-ubuntu`, `10-ubuntu`, `10-jre25-Temurin`, `10-Temurin`, `10-jre25`, `10`, `jre25-Temurin-ubuntu-microprofile`, `Temurin-ubuntu-microprofile`, `jre25-ubuntu-microprofile`, `ubuntu-microprofile`, `jre25-Temurin-microprofile`, `Temurin-microprofile`, `jre25-microprofile`, `microprofile`, `jre25-Temurin-ubuntu`, `Temurin-ubuntu`, `jre25-ubuntu`, `ubuntu`, `jre25-Temurin`, `Temurin`, `jre25`, `latest`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.2-jre21-Temurin-ubuntu-plume`, `10.1.2-Temurin-ubuntu-plume`, `10.1.2-jre21-ubuntu-plume`, `10.1.2-ubuntu-plume`, `10.1.2-jre21-Temurin-plume`, `10.1.2-Temurin-plume`, `10.1.2-jre21-plume`, `10.1.2-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre21-plume`, `10.1-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-Temurin-plume`, `10-jre21-plume`, `10-plume`, `jre21-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `ubuntu-plume`, `jre21-Temurin-plume`, `Temurin-plume`, `jre21-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.2-jre25-Temurin-ubuntu-plume`, `10.1.2-Temurin-ubuntu-plume`, `10.1.2-jre25-ubuntu-plume`, `10.1.2-ubuntu-plume`, `10.1.2-jre25-Temurin-plume`, `10.1.2-Temurin-plume`, `10.1.2-jre25-plume`, `10.1.2-plume`, `10.1-jre25-Temurin-ubuntu-plume`, `10.1-Temurin-ubuntu-plume`, `10.1-jre25-ubuntu-plume`, `10.1-ubuntu-plume`, `10.1-jre25-Temurin-plume`, `10.1-Temurin-plume`, `10.1-jre25-plume`, `10.1-plume`, `10-jre25-Temurin-ubuntu-plume`, `10-Temurin-ubuntu-plume`, `10-jre25-ubuntu-plume`, `10-ubuntu-plume`, `10-jre25-Temurin-plume`, `10-Temurin-plume`, `10-jre25-plume`, `10-plume`, `jre25-Temurin-ubuntu-plume`, `Temurin-ubuntu-plume`, `jre25-ubuntu-plume`, `ubuntu-plume`, `jre25-Temurin-plume`, `Temurin-plume`, `jre25-plume`, `plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.2-jre21-Temurin-ubuntu-plus`, `10.1.2-Temurin-ubuntu-plus`, `10.1.2-jre21-ubuntu-plus`, `10.1.2-ubuntu-plus`, `10.1.2-jre21-Temurin-plus`, `10.1.2-Temurin-plus`, `10.1.2-jre21-plus`, `10.1.2-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre21-plus`, `10.1-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-Temurin-plus`, `10-jre21-plus`, `10-plus`, `jre21-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `ubuntu-plus`, `jre21-Temurin-plus`, `Temurin-plus`, `jre21-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.2-jre25-Temurin-ubuntu-plus`, `10.1.2-Temurin-ubuntu-plus`, `10.1.2-jre25-ubuntu-plus`, `10.1.2-ubuntu-plus`, `10.1.2-jre25-Temurin-plus`, `10.1.2-Temurin-plus`, `10.1.2-jre25-plus`, `10.1.2-plus`, `10.1-jre25-Temurin-ubuntu-plus`, `10.1-Temurin-ubuntu-plus`, `10.1-jre25-ubuntu-plus`, `10.1-ubuntu-plus`, `10.1-jre25-Temurin-plus`, `10.1-Temurin-plus`, `10.1-jre25-plus`, `10.1-plus`, `10-jre25-Temurin-ubuntu-plus`, `10-Temurin-ubuntu-plus`, `10-jre25-ubuntu-plus`, `10-ubuntu-plus`, `10-jre25-Temurin-plus`, `10-Temurin-plus`, `10-jre25-plus`, `10-plus`, `jre25-Temurin-ubuntu-plus`, `Temurin-ubuntu-plus`, `jre25-ubuntu-plus`, `ubuntu-plus`, `jre25-Temurin-plus`, `Temurin-plus`, `jre25-plus`, `plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.2-jre21-Temurin-ubuntu-webprofile`, `10.1.2-Temurin-ubuntu-webprofile`, `10.1.2-jre21-ubuntu-webprofile`, `10.1.2-ubuntu-webprofile`, `10.1.2-jre21-Temurin-webprofile`, `10.1.2-Temurin-webprofile`, `10.1.2-jre21-webprofile`, `10.1.2-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre21-webprofile`, `10.1-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre21-webprofile`, `10-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `ubuntu-webprofile`, `jre21-Temurin-webprofile`, `Temurin-webprofile`, `jre21-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre25-Temurin-ubuntu-webprofile`, `10.1.2-Temurin-ubuntu-webprofile`, `10.1.2-jre25-ubuntu-webprofile`, `10.1.2-ubuntu-webprofile`, `10.1.2-jre25-Temurin-webprofile`, `10.1.2-Temurin-webprofile`, `10.1.2-jre25-webprofile`, `10.1.2-webprofile`, `10.1-jre25-Temurin-ubuntu-webprofile`, `10.1-Temurin-ubuntu-webprofile`, `10.1-jre25-ubuntu-webprofile`, `10.1-ubuntu-webprofile`, `10.1-jre25-Temurin-webprofile`, `10.1-Temurin-webprofile`, `10.1-jre25-webprofile`, `10.1-webprofile`, `10-jre25-Temurin-ubuntu-webprofile`, `10-Temurin-ubuntu-webprofile`, `10-jre25-ubuntu-webprofile`, `10-ubuntu-webprofile`, `10-jre25-Temurin-webprofile`, `10-Temurin-webprofile`, `10-jre25-webprofile`, `10-webprofile`, `jre25-Temurin-ubuntu-webprofile`, `Temurin-ubuntu-webprofile`, `jre25-ubuntu-webprofile`, `ubuntu-webprofile`, `jre25-Temurin-webprofile`, `Temurin-webprofile`, `jre25-webprofile`, `webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.2-jre21-Temurin-alpine-microprofile`, `10.1.2-Temurin-alpine-microprofile`, `10.1.2-jre21-alpine-microprofile`, `10.1.2-alpine-microprofile`, `10.1.2-jre21-Temurin-alpine`, `10.1.2-Temurin-alpine`, `10.1.2-jre21-alpine`, `10.1.2-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre21-alpine`, `10.1-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-Temurin-alpine`, `10-jre21-alpine`, `10-alpine`, `jre21-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `alpine-microprofile`, `jre21-Temurin-alpine`, `Temurin-alpine`, `jre21-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.2-jre25-Temurin-alpine-microprofile`, `10.1.2-Temurin-alpine-microprofile`, `10.1.2-jre25-alpine-microprofile`, `10.1.2-alpine-microprofile`, `10.1.2-jre25-Temurin-alpine`, `10.1.2-Temurin-alpine`, `10.1.2-jre25-alpine`, `10.1.2-alpine`, `10.1-jre25-Temurin-alpine-microprofile`, `10.1-Temurin-alpine-microprofile`, `10.1-jre25-alpine-microprofile`, `10.1-alpine-microprofile`, `10.1-jre25-Temurin-alpine`, `10.1-Temurin-alpine`, `10.1-jre25-alpine`, `10.1-alpine`, `10-jre25-Temurin-alpine-microprofile`, `10-Temurin-alpine-microprofile`, `10-jre25-alpine-microprofile`, `10-alpine-microprofile`, `10-jre25-Temurin-alpine`, `10-Temurin-alpine`, `10-jre25-alpine`, `10-alpine`, `jre25-Temurin-alpine-microprofile`, `Temurin-alpine-microprofile`, `jre25-alpine-microprofile`, `alpine-microprofile`, `jre25-Temurin-alpine`, `Temurin-alpine`, `jre25-alpine`, `alpine`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.2-jre21-Temurin-alpine-plume`, `10.1.2-Temurin-alpine-plume`, `10.1.2-jre21-alpine-plume`, `10.1.2-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10.1-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `10-alpine-plume`, `jre21-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre21-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) +- [`10.1.2-jre25-Temurin-alpine-plume`, `10.1.2-Temurin-alpine-plume`, `10.1.2-jre25-alpine-plume`, `10.1.2-alpine-plume`, `10.1-jre25-Temurin-alpine-plume`, `10.1-Temurin-alpine-plume`, `10.1-jre25-alpine-plume`, `10.1-alpine-plume`, `10-jre25-Temurin-alpine-plume`, `10-Temurin-alpine-plume`, `10-jre25-alpine-plume`, `10-alpine-plume`, `jre25-Temurin-alpine-plume`, `Temurin-alpine-plume`, `jre25-alpine-plume`, `alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/alpine/plume/Dockerfile) -- [`10.1.2-jre21-Temurin-alpine-plus`, `10.1.2-Temurin-alpine-plus`, `10.1.2-jre21-alpine-plus`, `10.1.2-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10.1-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `10-alpine-plus`, `jre21-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre21-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) +- [`10.1.2-jre25-Temurin-alpine-plus`, `10.1.2-Temurin-alpine-plus`, `10.1.2-jre25-alpine-plus`, `10.1.2-alpine-plus`, `10.1-jre25-Temurin-alpine-plus`, `10.1-Temurin-alpine-plus`, `10.1-jre25-alpine-plus`, `10.1-alpine-plus`, `10-jre25-Temurin-alpine-plus`, `10-Temurin-alpine-plus`, `10-jre25-alpine-plus`, `10-alpine-plus`, `jre25-Temurin-alpine-plus`, `Temurin-alpine-plus`, `jre25-alpine-plus`, `alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/alpine/plus/Dockerfile) -- [`10.1.2-jre21-Temurin-alpine-webprofile`, `10.1.2-Temurin-alpine-webprofile`, `10.1.2-jre21-alpine-webprofile`, `10.1.2-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `10-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre21-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.2-jre25-Temurin-alpine-webprofile`, `10.1.2-Temurin-alpine-webprofile`, `10.1.2-jre25-alpine-webprofile`, `10.1.2-alpine-webprofile`, `10.1-jre25-Temurin-alpine-webprofile`, `10.1-Temurin-alpine-webprofile`, `10.1-jre25-alpine-webprofile`, `10.1-alpine-webprofile`, `10-jre25-Temurin-alpine-webprofile`, `10-Temurin-alpine-webprofile`, `10-jre25-alpine-webprofile`, `10-alpine-webprofile`, `jre25-Temurin-alpine-webprofile`, `Temurin-alpine-webprofile`, `jre25-alpine-webprofile`, `alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.2-jre21-Semeru-ubuntu-microprofile`, `10.1.2-Semeru-ubuntu-microprofile`, `10.1.2-jre21-Semeru-microprofile`, `10.1.2-Semeru-microprofile`, `10.1.2-jre21-Semeru-ubuntu`, `10.1.2-Semeru-ubuntu`, `10.1.2-jre21-Semeru`, `10.1.2-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10.1-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre21-Semeru`, `10-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `Semeru-microprofile`, `jre21-Semeru-ubuntu`, `Semeru-ubuntu`, `jre21-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre25-Semeru-ubuntu-microprofile`, `10.1.2-Semeru-ubuntu-microprofile`, `10.1.2-jre25-Semeru-microprofile`, `10.1.2-Semeru-microprofile`, `10.1.2-jre25-Semeru-ubuntu`, `10.1.2-Semeru-ubuntu`, `10.1.2-jre25-Semeru`, `10.1.2-Semeru`, `10.1-jre25-Semeru-ubuntu-microprofile`, `10.1-Semeru-ubuntu-microprofile`, `10.1-jre25-Semeru-microprofile`, `10.1-Semeru-microprofile`, `10.1-jre25-Semeru-ubuntu`, `10.1-Semeru-ubuntu`, `10.1-jre25-Semeru`, `10.1-Semeru`, `10-jre25-Semeru-ubuntu-microprofile`, `10-Semeru-ubuntu-microprofile`, `10-jre25-Semeru-microprofile`, `10-Semeru-microprofile`, `10-jre25-Semeru-ubuntu`, `10-Semeru-ubuntu`, `10-jre25-Semeru`, `10-Semeru`, `jre25-Semeru-ubuntu-microprofile`, `Semeru-ubuntu-microprofile`, `jre25-Semeru-microprofile`, `Semeru-microprofile`, `jre25-Semeru-ubuntu`, `Semeru-ubuntu`, `jre25-Semeru`, `Semeru`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.2-jre21-Semeru-ubuntu-plume`, `10.1.2-Semeru-ubuntu-plume`, `10.1.2-jre21-Semeru-plume`, `10.1.2-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10.1-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `10-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre21-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.2-jre25-Semeru-ubuntu-plume`, `10.1.2-Semeru-ubuntu-plume`, `10.1.2-jre25-Semeru-plume`, `10.1.2-Semeru-plume`, `10.1-jre25-Semeru-ubuntu-plume`, `10.1-Semeru-ubuntu-plume`, `10.1-jre25-Semeru-plume`, `10.1-Semeru-plume`, `10-jre25-Semeru-ubuntu-plume`, `10-Semeru-ubuntu-plume`, `10-jre25-Semeru-plume`, `10-Semeru-plume`, `jre25-Semeru-ubuntu-plume`, `Semeru-ubuntu-plume`, `jre25-Semeru-plume`, `Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.2-jre21-Semeru-ubuntu-plus`, `10.1.2-Semeru-ubuntu-plus`, `10.1.2-jre21-Semeru-plus`, `10.1.2-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10.1-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `10-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre21-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.2-jre25-Semeru-ubuntu-plus`, `10.1.2-Semeru-ubuntu-plus`, `10.1.2-jre25-Semeru-plus`, `10.1.2-Semeru-plus`, `10.1-jre25-Semeru-ubuntu-plus`, `10.1-Semeru-ubuntu-plus`, `10.1-jre25-Semeru-plus`, `10.1-Semeru-plus`, `10-jre25-Semeru-ubuntu-plus`, `10-Semeru-ubuntu-plus`, `10-jre25-Semeru-plus`, `10-Semeru-plus`, `jre25-Semeru-ubuntu-plus`, `Semeru-ubuntu-plus`, `jre25-Semeru-plus`, `Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.2-jre21-Semeru-ubuntu-webprofile`, `10.1.2-Semeru-ubuntu-webprofile`, `10.1.2-jre21-Semeru-webprofile`, `10.1.2-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `10-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre25-Semeru-ubuntu-webprofile`, `10.1.2-Semeru-ubuntu-webprofile`, `10.1.2-jre25-Semeru-webprofile`, `10.1.2-Semeru-webprofile`, `10.1-jre25-Semeru-ubuntu-webprofile`, `10.1-Semeru-ubuntu-webprofile`, `10.1-jre25-Semeru-webprofile`, `10.1-Semeru-webprofile`, `10-jre25-Semeru-ubuntu-webprofile`, `10-Semeru-ubuntu-webprofile`, `10-jre25-Semeru-webprofile`, `10-Semeru-webprofile`, `jre25-Semeru-ubuntu-webprofile`, `Semeru-ubuntu-webprofile`, `jre25-Semeru-webprofile`, `Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre25/Semeru/ubuntu/webprofile/Dockerfile) -- [`10.1.2-jre17-Temurin-ubuntu-microprofile`, `10.1.2-jre17-ubuntu-microprofile`, `10.1.2-jre17-Temurin-microprofile`, `10.1.2-jre17-microprofile`, `10.1.2-jre17-Temurin-ubuntu`, `10.1.2-jre17-ubuntu`, `10.1.2-jre17-Temurin`, `10.1.2-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-microprofile`, `10.1.2-jre21-ubuntu-microprofile`, `10.1.2-jre21-Temurin-microprofile`, `10.1.2-jre21-microprofile`, `10.1.2-jre21-Temurin-ubuntu`, `10.1.2-jre21-ubuntu`, `10.1.2-jre21-Temurin`, `10.1.2-jre21`, `10.1-jre21-Temurin-ubuntu-microprofile`, `10.1-jre21-ubuntu-microprofile`, `10.1-jre21-Temurin-microprofile`, `10.1-jre21-microprofile`, `10.1-jre21-Temurin-ubuntu`, `10.1-jre21-ubuntu`, `10.1-jre21-Temurin`, `10.1-jre21`, `10-jre21-Temurin-ubuntu-microprofile`, `10-jre21-ubuntu-microprofile`, `10-jre21-Temurin-microprofile`, `10-jre21-microprofile`, `10-jre21-Temurin-ubuntu`, `10-jre21-ubuntu`, `10-jre21-Temurin`, `10-jre21`, `jre21-Temurin-ubuntu-microprofile`, `jre21-ubuntu-microprofile`, `jre21-Temurin-microprofile`, `jre21-microprofile`, `jre21-Temurin-ubuntu`, `jre21-ubuntu`, `jre21-Temurin`, `jre21`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/ubuntu/microprofile/Dockerfile) -- [`10.1.2-jre17-Temurin-ubuntu-plume`, `10.1.2-jre17-ubuntu-plume`, `10.1.2-jre17-Temurin-plume`, `10.1.2-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-plume`, `10.1.2-jre21-ubuntu-plume`, `10.1.2-jre21-Temurin-plume`, `10.1.2-jre21-plume`, `10.1-jre21-Temurin-ubuntu-plume`, `10.1-jre21-ubuntu-plume`, `10.1-jre21-Temurin-plume`, `10.1-jre21-plume`, `10-jre21-Temurin-ubuntu-plume`, `10-jre21-ubuntu-plume`, `10-jre21-Temurin-plume`, `10-jre21-plume`, `jre21-Temurin-ubuntu-plume`, `jre21-ubuntu-plume`, `jre21-Temurin-plume`, `jre21-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/ubuntu/plume/Dockerfile) -- [`10.1.2-jre17-Temurin-ubuntu-plus`, `10.1.2-jre17-ubuntu-plus`, `10.1.2-jre17-Temurin-plus`, `10.1.2-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-plus`, `10.1.2-jre21-ubuntu-plus`, `10.1.2-jre21-Temurin-plus`, `10.1.2-jre21-plus`, `10.1-jre21-Temurin-ubuntu-plus`, `10.1-jre21-ubuntu-plus`, `10.1-jre21-Temurin-plus`, `10.1-jre21-plus`, `10-jre21-Temurin-ubuntu-plus`, `10-jre21-ubuntu-plus`, `10-jre21-Temurin-plus`, `10-jre21-plus`, `jre21-Temurin-ubuntu-plus`, `jre21-ubuntu-plus`, `jre21-Temurin-plus`, `jre21-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/ubuntu/plus/Dockerfile) -- [`10.1.2-jre17-Temurin-ubuntu-webprofile`, `10.1.2-jre17-ubuntu-webprofile`, `10.1.2-jre17-Temurin-webprofile`, `10.1.2-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-ubuntu-webprofile`, `10.1.2-jre21-ubuntu-webprofile`, `10.1.2-jre21-Temurin-webprofile`, `10.1.2-jre21-webprofile`, `10.1-jre21-Temurin-ubuntu-webprofile`, `10.1-jre21-ubuntu-webprofile`, `10.1-jre21-Temurin-webprofile`, `10.1-jre21-webprofile`, `10-jre21-Temurin-ubuntu-webprofile`, `10-jre21-ubuntu-webprofile`, `10-jre21-Temurin-webprofile`, `10-jre21-webprofile`, `jre21-Temurin-ubuntu-webprofile`, `jre21-ubuntu-webprofile`, `jre21-Temurin-webprofile`, `jre21-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/ubuntu/webprofile/Dockerfile) -- [`10.1.2-jre17-Temurin-alpine-microprofile`, `10.1.2-jre17-alpine-microprofile`, `10.1.2-jre17-Temurin-alpine`, `10.1.2-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-microprofile`, `10.1.2-jre21-alpine-microprofile`, `10.1.2-jre21-Temurin-alpine`, `10.1.2-jre21-alpine`, `10.1-jre21-Temurin-alpine-microprofile`, `10.1-jre21-alpine-microprofile`, `10.1-jre21-Temurin-alpine`, `10.1-jre21-alpine`, `10-jre21-Temurin-alpine-microprofile`, `10-jre21-alpine-microprofile`, `10-jre21-Temurin-alpine`, `10-jre21-alpine`, `jre21-Temurin-alpine-microprofile`, `jre21-alpine-microprofile`, `jre21-Temurin-alpine`, `jre21-alpine`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/alpine/microprofile/Dockerfile) -- [`10.1.2-jre17-Temurin-alpine-plume`, `10.1.2-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-plume`, `10.1.2-jre21-alpine-plume`, `10.1-jre21-Temurin-alpine-plume`, `10.1-jre21-alpine-plume`, `10-jre21-Temurin-alpine-plume`, `10-jre21-alpine-plume`, `jre21-Temurin-alpine-plume`, `jre21-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/alpine/plume/Dockerfile) -- [`10.1.2-jre17-Temurin-alpine-plus`, `10.1.2-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-plus`, `10.1.2-jre21-alpine-plus`, `10.1-jre21-Temurin-alpine-plus`, `10.1-jre21-alpine-plus`, `10-jre21-Temurin-alpine-plus`, `10-jre21-alpine-plus`, `jre21-Temurin-alpine-plus`, `jre21-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/alpine/plus/Dockerfile) -- [`10.1.2-jre17-Temurin-alpine-webprofile`, `10.1.2-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) +- [`10.1.2-jre21-Temurin-alpine-webprofile`, `10.1.2-jre21-alpine-webprofile`, `10.1-jre21-Temurin-alpine-webprofile`, `10.1-jre21-alpine-webprofile`, `10-jre21-Temurin-alpine-webprofile`, `10-jre21-alpine-webprofile`, `jre21-Temurin-alpine-webprofile`, `jre21-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Temurin/alpine/webprofile/Dockerfile) -- [`10.1.2-jre17-Semeru-ubuntu-microprofile`, `10.1.2-jre17-Semeru-microprofile`, `10.1.2-jre17-Semeru-ubuntu`, `10.1.2-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-microprofile`, `10.1.2-jre21-Semeru-microprofile`, `10.1.2-jre21-Semeru-ubuntu`, `10.1.2-jre21-Semeru`, `10.1-jre21-Semeru-ubuntu-microprofile`, `10.1-jre21-Semeru-microprofile`, `10.1-jre21-Semeru-ubuntu`, `10.1-jre21-Semeru`, `10-jre21-Semeru-ubuntu-microprofile`, `10-jre21-Semeru-microprofile`, `10-jre21-Semeru-ubuntu`, `10-jre21-Semeru`, `jre21-Semeru-ubuntu-microprofile`, `jre21-Semeru-microprofile`, `jre21-Semeru-ubuntu`, `jre21-Semeru`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Semeru/ubuntu/microprofile/Dockerfile) -- [`10.1.2-jre17-Semeru-ubuntu-plume`, `10.1.2-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-plume`, `10.1.2-jre21-Semeru-plume`, `10.1-jre21-Semeru-ubuntu-plume`, `10.1-jre21-Semeru-plume`, `10-jre21-Semeru-ubuntu-plume`, `10-jre21-Semeru-plume`, `jre21-Semeru-ubuntu-plume`, `jre21-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Semeru/ubuntu/plume/Dockerfile) -- [`10.1.2-jre17-Semeru-ubuntu-plus`, `10.1.2-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-plus`, `10.1.2-jre21-Semeru-plus`, `10.1-jre21-Semeru-ubuntu-plus`, `10.1-jre21-Semeru-plus`, `10-jre21-Semeru-ubuntu-plus`, `10-jre21-Semeru-plus`, `jre21-Semeru-ubuntu-plus`, `jre21-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Semeru/ubuntu/plus/Dockerfile) -- [`10.1.2-jre17-Semeru-ubuntu-webprofile`, `10.1.2-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/a413d6e6c081efad3874eecea6b93dd0a174ad92/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) +- [`10.1.2-jre21-Semeru-ubuntu-webprofile`, `10.1.2-jre21-Semeru-webprofile`, `10.1-jre21-Semeru-ubuntu-webprofile`, `10.1-jre21-Semeru-webprofile`, `10-jre21-Semeru-ubuntu-webprofile`, `10-jre21-Semeru-webprofile`, `jre21-Semeru-ubuntu-webprofile`, `jre21-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre21/Semeru/ubuntu/webprofile/Dockerfile) + +- [`10.1.2-jre17-Temurin-ubuntu-microprofile`, `10.1.2-jre17-ubuntu-microprofile`, `10.1.2-jre17-Temurin-microprofile`, `10.1.2-jre17-microprofile`, `10.1.2-jre17-Temurin-ubuntu`, `10.1.2-jre17-ubuntu`, `10.1.2-jre17-Temurin`, `10.1.2-jre17`, `10.1-jre17-Temurin-ubuntu-microprofile`, `10.1-jre17-ubuntu-microprofile`, `10.1-jre17-Temurin-microprofile`, `10.1-jre17-microprofile`, `10.1-jre17-Temurin-ubuntu`, `10.1-jre17-ubuntu`, `10.1-jre17-Temurin`, `10.1-jre17`, `10-jre17-Temurin-ubuntu-microprofile`, `10-jre17-ubuntu-microprofile`, `10-jre17-Temurin-microprofile`, `10-jre17-microprofile`, `10-jre17-Temurin-ubuntu`, `10-jre17-ubuntu`, `10-jre17-Temurin`, `10-jre17`, `jre17-Temurin-ubuntu-microprofile`, `jre17-ubuntu-microprofile`, `jre17-Temurin-microprofile`, `jre17-microprofile`, `jre17-Temurin-ubuntu`, `jre17-ubuntu`, `jre17-Temurin`, `jre17`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/ubuntu/microprofile/Dockerfile) + +- [`10.1.2-jre17-Temurin-ubuntu-plume`, `10.1.2-jre17-ubuntu-plume`, `10.1.2-jre17-Temurin-plume`, `10.1.2-jre17-plume`, `10.1-jre17-Temurin-ubuntu-plume`, `10.1-jre17-ubuntu-plume`, `10.1-jre17-Temurin-plume`, `10.1-jre17-plume`, `10-jre17-Temurin-ubuntu-plume`, `10-jre17-ubuntu-plume`, `10-jre17-Temurin-plume`, `10-jre17-plume`, `jre17-Temurin-ubuntu-plume`, `jre17-ubuntu-plume`, `jre17-Temurin-plume`, `jre17-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/ubuntu/plume/Dockerfile) + +- [`10.1.2-jre17-Temurin-ubuntu-plus`, `10.1.2-jre17-ubuntu-plus`, `10.1.2-jre17-Temurin-plus`, `10.1.2-jre17-plus`, `10.1-jre17-Temurin-ubuntu-plus`, `10.1-jre17-ubuntu-plus`, `10.1-jre17-Temurin-plus`, `10.1-jre17-plus`, `10-jre17-Temurin-ubuntu-plus`, `10-jre17-ubuntu-plus`, `10-jre17-Temurin-plus`, `10-jre17-plus`, `jre17-Temurin-ubuntu-plus`, `jre17-ubuntu-plus`, `jre17-Temurin-plus`, `jre17-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/ubuntu/plus/Dockerfile) + +- [`10.1.2-jre17-Temurin-ubuntu-webprofile`, `10.1.2-jre17-ubuntu-webprofile`, `10.1.2-jre17-Temurin-webprofile`, `10.1.2-jre17-webprofile`, `10.1-jre17-Temurin-ubuntu-webprofile`, `10.1-jre17-ubuntu-webprofile`, `10.1-jre17-Temurin-webprofile`, `10.1-jre17-webprofile`, `10-jre17-Temurin-ubuntu-webprofile`, `10-jre17-ubuntu-webprofile`, `10-jre17-Temurin-webprofile`, `10-jre17-webprofile`, `jre17-Temurin-ubuntu-webprofile`, `jre17-ubuntu-webprofile`, `jre17-Temurin-webprofile`, `jre17-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/ubuntu/webprofile/Dockerfile) + +- [`10.1.2-jre17-Temurin-alpine-microprofile`, `10.1.2-jre17-alpine-microprofile`, `10.1.2-jre17-Temurin-alpine`, `10.1.2-jre17-alpine`, `10.1-jre17-Temurin-alpine-microprofile`, `10.1-jre17-alpine-microprofile`, `10.1-jre17-Temurin-alpine`, `10.1-jre17-alpine`, `10-jre17-Temurin-alpine-microprofile`, `10-jre17-alpine-microprofile`, `10-jre17-Temurin-alpine`, `10-jre17-alpine`, `jre17-Temurin-alpine-microprofile`, `jre17-alpine-microprofile`, `jre17-Temurin-alpine`, `jre17-alpine`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/alpine/microprofile/Dockerfile) + +- [`10.1.2-jre17-Temurin-alpine-plume`, `10.1.2-jre17-alpine-plume`, `10.1-jre17-Temurin-alpine-plume`, `10.1-jre17-alpine-plume`, `10-jre17-Temurin-alpine-plume`, `10-jre17-alpine-plume`, `jre17-Temurin-alpine-plume`, `jre17-alpine-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/alpine/plume/Dockerfile) + +- [`10.1.2-jre17-Temurin-alpine-plus`, `10.1.2-jre17-alpine-plus`, `10.1-jre17-Temurin-alpine-plus`, `10.1-jre17-alpine-plus`, `10-jre17-Temurin-alpine-plus`, `10-jre17-alpine-plus`, `jre17-Temurin-alpine-plus`, `jre17-alpine-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/alpine/plus/Dockerfile) + +- [`10.1.2-jre17-Temurin-alpine-webprofile`, `10.1.2-jre17-alpine-webprofile`, `10.1-jre17-Temurin-alpine-webprofile`, `10.1-jre17-alpine-webprofile`, `10-jre17-Temurin-alpine-webprofile`, `10-jre17-alpine-webprofile`, `jre17-Temurin-alpine-webprofile`, `jre17-alpine-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Temurin/alpine/webprofile/Dockerfile) + +- [`10.1.2-jre17-Semeru-ubuntu-microprofile`, `10.1.2-jre17-Semeru-microprofile`, `10.1.2-jre17-Semeru-ubuntu`, `10.1.2-jre17-Semeru`, `10.1-jre17-Semeru-ubuntu-microprofile`, `10.1-jre17-Semeru-microprofile`, `10.1-jre17-Semeru-ubuntu`, `10.1-jre17-Semeru`, `10-jre17-Semeru-ubuntu-microprofile`, `10-jre17-Semeru-microprofile`, `10-jre17-Semeru-ubuntu`, `10-jre17-Semeru`, `jre17-Semeru-ubuntu-microprofile`, `jre17-Semeru-microprofile`, `jre17-Semeru-ubuntu`, `jre17-Semeru`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Semeru/ubuntu/microprofile/Dockerfile) + +- [`10.1.2-jre17-Semeru-ubuntu-plume`, `10.1.2-jre17-Semeru-plume`, `10.1-jre17-Semeru-ubuntu-plume`, `10.1-jre17-Semeru-plume`, `10-jre17-Semeru-ubuntu-plume`, `10-jre17-Semeru-plume`, `jre17-Semeru-ubuntu-plume`, `jre17-Semeru-plume`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Semeru/ubuntu/plume/Dockerfile) + +- [`10.1.2-jre17-Semeru-ubuntu-plus`, `10.1.2-jre17-Semeru-plus`, `10.1-jre17-Semeru-ubuntu-plus`, `10.1-jre17-Semeru-plus`, `10-jre17-Semeru-ubuntu-plus`, `10-jre17-Semeru-plus`, `jre17-Semeru-ubuntu-plus`, `jre17-Semeru-plus`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Semeru/ubuntu/plus/Dockerfile) + +- [`10.1.2-jre17-Semeru-ubuntu-webprofile`, `10.1.2-jre17-Semeru-webprofile`, `10.1-jre17-Semeru-ubuntu-webprofile`, `10.1-jre17-Semeru-webprofile`, `10-jre17-Semeru-ubuntu-webprofile`, `10-jre17-Semeru-webprofile`, `jre17-Semeru-ubuntu-webprofile`, `jre17-Semeru-webprofile`](https://github.com/tomitribe/docker-tomee/blob/b0ef61b6732f6634f75dfae62b0f9eaec0d6918b/TomEE-10.1/jre17/Semeru/ubuntu/webprofile/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 2dbb9b6b467a..6030f5a5f789 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.8-mariadb-tomcat`, `17.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.4`, `17.4-mysql-tomcat`, `17.4.4-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.5`, `17.4-mysql-tomcat`, `17.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.4-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.4-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/389255b066150c314db18921de98742b1ccc496d/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.12`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mysql-tomcat/Dockerfile) From 62537afb25c2371079dd583f5f3470a7aa682a19 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Oct 2025 14:10:48 -0700 Subject: [PATCH 2580/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- elasticsearch/README.md | 8 ++++---- golang/README.md | 12 ++++++------ kibana/README.md | 8 ++++---- logstash/README.md | 8 ++++---- openjdk/README.md | 40 ++++++++++++++++++++-------------------- oraclelinux/README.md | 22 +++++++++++----------- 7 files changed, 51 insertions(+), 51 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 1eacc0234c03..5fd3c85061ed 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.8.20250915.0`](https://github.com/amazonlinux/container-images/blob/517030564458f4df68cfc6fc11b044c06498bed9/Dockerfile) +- [`2023`, `latest`, `2023.9.20250929.0`](https://github.com/amazonlinux/container-images/blob/929de1dd8d1747a34701660136a6654d5ef312cc/Dockerfile) -- [`2`, `2.0.20250915.0`](https://github.com/amazonlinux/container-images/blob/257eeb1b8d2e285c625853acfc2405e2e8fdb33c/Dockerfile) +- [`2`, `2.0.20250929.2`](https://github.com/amazonlinux/container-images/blob/bd6f28b0f4dac5ef4dadc1e141d005d65ef60be1/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index 6ab6cec8f24a..fe564bfb6eee 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -26,13 +26,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/elasticsearch/Dockerfile) -- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/elasticsearch/Dockerfile) +- [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/elasticsearch/Dockerfile) -- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/elasticsearch/Dockerfile) +- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/elasticsearch/Dockerfile) -- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/elasticsearch/Dockerfile) +- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/elasticsearch/Dockerfile) -- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/elasticsearch/Dockerfile) +- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/golang/README.md b/golang/README.md index d87947af2fcd..030e24f298e3 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20250927-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/trixie/Dockerfile) +- [`tip-20251003-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/trixie/Dockerfile) -- [`tip-20250927-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/bookworm/Dockerfile) +- [`tip-20251003-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/bookworm/Dockerfile) -- [`tip-20250927-alpine3.22`, `tip-alpine3.22`, `tip-20250927-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/alpine3.22/Dockerfile) +- [`tip-20251003-alpine3.22`, `tip-alpine3.22`, `tip-20251003-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/alpine3.22/Dockerfile) -- [`tip-20250927-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/alpine3.21/Dockerfile) +- [`tip-20251003-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20250927`, `tip`: +- `tip-20251003`, `tip`: - - [`tip-20250927-trixie`](https://github.com/docker-library/golang/blob/cc6071549e9e801a742200b1f63494c4a4c64c76/tip/trixie/Dockerfile) + - [`tip-20251003-trixie`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 384ae21f0340..98ce6ed8578a 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -28,13 +28,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) -- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/kibana/Dockerfile) +- [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/kibana/Dockerfile) -- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/kibana/Dockerfile) +- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/kibana/Dockerfile) -- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/kibana/Dockerfile) +- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/kibana/Dockerfile) -- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/kibana/Dockerfile) +- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 5525217521ab..28c1194f6bfa 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -26,13 +26,13 @@ WARNING: - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/logstash/Dockerfile) -- [`8.18.7`](https://github.com/elastic/dockerfiles/blob/ce7db65871f3bbcb091c536150e0bd6848a5af00/logstash/Dockerfile) +- [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/logstash/Dockerfile) -- [`8.19.4`](https://github.com/elastic/dockerfiles/blob/f99392291c86cb616dc6b16a1ef40985c89475c4/logstash/Dockerfile) +- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/logstash/Dockerfile) -- [`9.0.7`](https://github.com/elastic/dockerfiles/blob/037d379705fb3b963b11b6a32c0aa58fb731f3d3/logstash/Dockerfile) +- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/logstash/Dockerfile) -- [`9.1.4`](https://github.com/elastic/dockerfiles/blob/661aa810065c3723595090c63c63b56344b7d81b/logstash/Dockerfile) +- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/logstash/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 995559d4d1e8..03f021cc1029 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-17-jdk-oraclelinux9`, `26-ea-17-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-17-jdk-oracle`, `26-ea-17-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-18-jdk-oraclelinux9`, `26-ea-18-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-18-jdk-oracle`, `26-ea-18-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-17-jdk-oraclelinux8`, `26-ea-17-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-18-jdk-oraclelinux8`, `26-ea-18-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-17-jdk-trixie`, `26-ea-17-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/trixie/Dockerfile) +- [`26-ea-18-jdk-trixie`, `26-ea-18-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/trixie/Dockerfile) -- [`26-ea-17-jdk-slim-trixie`, `26-ea-17-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-17-jdk-slim`, `26-ea-17-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-18-jdk-slim-trixie`, `26-ea-18-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-18-jdk-slim`, `26-ea-18-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-17-jdk-bookworm`, `26-ea-17-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/bookworm/Dockerfile) +- [`26-ea-18-jdk-bookworm`, `26-ea-18-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/bookworm/Dockerfile) -- [`26-ea-17-jdk-slim-bookworm`, `26-ea-17-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-18-jdk-slim-bookworm`, `26-ea-18-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-17-jdk-windowsservercore-ltsc2025`, `26-ea-17-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-18-jdk-windowsservercore-ltsc2025`, `26-ea-18-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-17-jdk-windowsservercore-ltsc2022`, `26-ea-17-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-18-jdk-windowsservercore-ltsc2022`, `26-ea-18-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-17-jdk-nanoserver-ltsc2025`, `26-ea-17-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-18-jdk-nanoserver-ltsc2025`, `26-ea-18-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-17-jdk-nanoserver-ltsc2022`, `26-ea-17-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-18-jdk-nanoserver-ltsc2022`, `26-ea-18-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-17-jdk`, `26-ea-17`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-18-jdk`, `26-ea-18`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-17-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-17-jdk-windowsservercore`, `26-ea-17-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-18-jdk-windowsservercore`, `26-ea-18-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-17-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-17-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-17-jdk-nanoserver`, `26-ea-17-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-18-jdk-nanoserver`, `26-ea-18-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-17-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-17-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/f31036fafc166fcb53b974b480323cd4da7f3033/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-18-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-18-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 5e9bf47ff4e5..f6ba3c1991b4 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b598dbcf38e3c1f75ba8807ab5e8099c8f8bb01a/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7-slim-fips/Dockerfile) # Quick reference (cont.) From a1d8a24cc16bec4d6e8aa2874ee4a1c291a25b86 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 6 Oct 2025 16:11:23 -0700 Subject: [PATCH 2581/2686] Run update.sh --- liquibase/README.md | 4 ++-- tomcat/README.md | 48 ++++++++++++++++++++++----------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/liquibase/README.md b/liquibase/README.md index 9ec6ec313de6..3d5516619b91 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0.0`, `latest`](https://github.com/liquibase/docker/blob/aa1c6cc8fda7a42fde405d21030f99d1d5397f6a/Dockerfile) +- [`5.0`, `5.0.1`, `latest`](https://github.com/liquibase/docker/blob/c67a0359179ab8f862f202e313461452294f944f/Dockerfile) -- [`5.0-alpine`, `5.0.0-alpine`, `alpine`](https://github.com/liquibase/docker/blob/aa1c6cc8fda7a42fde405d21030f99d1d5397f6a/Dockerfile.alpine) +- [`5.0-alpine`, `5.0.1-alpine`, `alpine`](https://github.com/liquibase/docker/blob/c67a0359179ab8f862f202e313461452294f944f/Dockerfile.alpine) # Quick reference (cont.) diff --git a/tomcat/README.md b/tomcat/README.md index 5e483b6ba528..54a374192aa5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -80,53 +80,53 @@ WARNING: - [`10.1.46-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.109-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.109-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.109-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.109`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jdk25/temurin-noble/Dockerfile) +- [`9.0.110-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.110-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.110-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.110`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk25/temurin-noble/Dockerfile) -- [`9.0.109-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.109-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.109-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jre25/temurin-noble/Dockerfile) +- [`9.0.110-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.110-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.110-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre25/temurin-noble/Dockerfile) -- [`9.0.109-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jdk25/temurin-jammy/Dockerfile) +- [`9.0.110-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk25/temurin-jammy/Dockerfile) -- [`9.0.109-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/9.0/jre25/temurin-jammy/Dockerfile) +- [`9.0.110-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre25/temurin-jammy/Dockerfile) -- [`9.0.109-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.109-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.109-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.110-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.110-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.110-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.109-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.109-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.109-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.110-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.110-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.110-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.109-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.110-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.109-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.110-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.109-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.109-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.110-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.110-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.109-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.109-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.109-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.110-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.110-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.110-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.109-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.109-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.109-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.110-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.110-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.110-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.109-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.110-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.109-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.110-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.109-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.109-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.110-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.110-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.109-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.109-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.109-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.110-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.110-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.110-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.109-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.109-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.109-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.110-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.110-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.110-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.109-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.110-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.109-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.110-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.109-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.109-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.110-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.110-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.109-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.109-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.109-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.110-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.110-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.110-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.109-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.109-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.109-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.110-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.110-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.110-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.109-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.110-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.109-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.110-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.109-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.109-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/94c77e8566af1da3e5642b17cde61870e09073d5/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.110-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.110-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From bca6ed1818cee3c21b6b565d60b791f08c998c91 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Oct 2025 11:10:59 -0700 Subject: [PATCH 2582/2686] Run update.sh --- dart/README.md | 4 ++-- percona/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index a2d61b165213..5607884272e6 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/b2bc5989a535e4c1fc8205ee102e2f32ca79e5e6/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/81a1cf7cc3f0dee1bebfe1d38b9c4e549e5700e7/stable/trixie/Dockerfile) -- [`3.10.0-162.1.beta-sdk`, `beta-sdk`, `3.10.0-162.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/b2bc5989a535e4c1fc8205ee102e2f32ca79e5e6/beta/trixie/Dockerfile) +- [`3.10.0-290.1.beta-sdk`, `beta-sdk`, `3.10.0-290.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/81a1cf7cc3f0dee1bebfe1d38b9c4e549e5700e7/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/percona/README.md b/percona/README.md index 7c11683252d3..ea1a17558df3 100644 --- a/percona/README.md +++ b/percona/README.md @@ -26,9 +26,9 @@ WARNING: - [`8.0.43-34-centos`, `8.0-centos`, `8-centos`, `8.0.43-34`, `8.0`, `8`, `ps-8.0.43-34`, `ps-8.0`, `ps-8`](https://github.com/percona/percona-docker/blob/1a5a6f51cda0ad561e5afcbd9b1ec9e2dd3564d1/percona-server-8.0/Dockerfile-dockerhub) -- [`psmdb-8.0.8`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/00f5c9f0a32e4e4efbc589153f3b5412098572b9/percona-server-mongodb-8.0/Dockerfile-dockerhub) +- [`psmdb-8.0.12`, `psmdb-8.0`](https://github.com/percona/percona-docker/blob/725e757d51b83f0a0a9c3b5242f6be02066e0a9b/percona-server-mongodb-8.0/Dockerfile-dockerhub) -- [`psmdb-7.0.22`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/c37d7c35b5d3ddeacdf8b6c837e7735c14ace89b/percona-server-mongodb-7.0/Dockerfile-dockerhub) +- [`psmdb-7.0.24`, `psmdb-7.0`](https://github.com/percona/percona-docker/blob/725e757d51b83f0a0a9c3b5242f6be02066e0a9b/percona-server-mongodb-7.0/Dockerfile-dockerhub) - [`psmdb-6.0.25`, `psmdb-6.0`](https://github.com/percona/percona-docker/blob/c37d7c35b5d3ddeacdf8b6c837e7735c14ace89b/percona-server-mongodb-6.0/Dockerfile-dockerhub) From b4d46ff9349de7b92c2cbe0ede86c62389220439 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Oct 2025 12:10:50 -0700 Subject: [PATCH 2583/2686] Run update.sh --- spark/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spark/README.md b/spark/README.md index 82128227f444..6c7949b7e4e0 100644 --- a/spark/README.md +++ b/spark/README.md @@ -40,21 +40,21 @@ WARNING: - [`4.0.0-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java17-python3-ubuntu`, `3.5.6-java17-python3`, `3.5.6-java17`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-python3-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java17-python3-ubuntu`, `3.5.7-java17-python3`, `3.5.7-java17`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java17-python3-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java17-r-ubuntu`, `3.5.6-java17-r`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-r-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java17-r-ubuntu`, `3.5.7-java17-r`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java17-r-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java17-ubuntu`, `3.5.6-java17-scala`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java17-ubuntu`, `3.5.7-java17-scala`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java17-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java17-python3-r-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java17-python3-r-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java11-python3-ubuntu`, `3.5.6-python3`, `3.5.6`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-python3-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java11-python3-ubuntu`, `3.5.7-python3`, `3.5.7`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java11-python3-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java11-r-ubuntu`, `3.5.6-r`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-r-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java11-r-ubuntu`, `3.5.7-r`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java11-r-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java11-ubuntu`, `3.5.6-scala`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java11-ubuntu`, `3.5.7-scala`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java11-ubuntu/Dockerfile) -- [`3.5.6-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/c264d48dc510018095700ed33e700ccc34268bf2/3.5.6/scala2.12-java11-python3-r-ubuntu/Dockerfile) +- [`3.5.7-scala2.12-java11-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java11-python3-r-ubuntu/Dockerfile) # Quick reference (cont.) From d0ff69636b3b28a1860c6e756a6ab8ef5ef11a87 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Oct 2025 13:11:15 -0700 Subject: [PATCH 2584/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 030e24f298e3..3a73c660f527 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`1.25.1-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/trixie/Dockerfile) +- [`1.25.2-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/trixie/Dockerfile) -- [`1.25.1-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/bookworm/Dockerfile) +- [`1.25.2-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/bookworm/Dockerfile) -- [`1.25.1-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.1-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/alpine3.22/Dockerfile) +- [`1.25.2-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.2-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/alpine3.22/Dockerfile) -- [`1.25.1-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/alpine3.21/Dockerfile) +- [`1.25.2-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/alpine3.21/Dockerfile) -- [`1.25.1-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25.2-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25.1-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25.2-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25.1-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25.2-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25.1-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25.2-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.7-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/trixie/Dockerfile) +- [`1.24.8-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/trixie/Dockerfile) -- [`1.24.7-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/bookworm/Dockerfile) +- [`1.24.8-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/bookworm/Dockerfile) -- [`1.24.7-alpine3.22`, `1.24-alpine3.22`, `1.24.7-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/alpine3.22/Dockerfile) +- [`1.24.8-alpine3.22`, `1.24-alpine3.22`, `1.24.8-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/alpine3.22/Dockerfile) -- [`1.24.7-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/alpine3.21/Dockerfile) +- [`1.24.8-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/alpine3.21/Dockerfile) -- [`1.24.7-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.8-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.7-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.8-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.7-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.8-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.7-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.8-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20251003-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/trixie/Dockerfile) @@ -70,37 +70,37 @@ WARNING: ## Shared Tags -- `1.25.1`, `1.25`, `1`, `latest`: +- `1.25.2`, `1.25`, `1`, `latest`: - - [`1.25.1-trixie`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/trixie/Dockerfile) - - [`1.25.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.2-trixie`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/trixie/Dockerfile) + - [`1.25.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.1-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.25.2-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.25.1-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.1-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.1-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.25.2-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.25.1-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25.1-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/be5c27da377afdeebf0c5747560bedd7f96ccb1c/1.25/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25.2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.7`, `1.24`: +- `1.24.8`, `1.24`: - - [`1.24.7-trixie`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/trixie/Dockerfile) - - [`1.24.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.8-trixie`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/trixie/Dockerfile) + - [`1.24.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.7-windowsservercore`, `1.24-windowsservercore`: +- `1.24.8-windowsservercore`, `1.24-windowsservercore`: - - [`1.24.7-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.7-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.7-nanoserver`, `1.24-nanoserver`: +- `1.24.8-nanoserver`, `1.24-nanoserver`: - - [`1.24.7-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.7-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/266d88a19c1eec1e84266bef042ba832e32cf149/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.8-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20251003`, `tip`: From f872d373524e0a4f46517dc32f8422aa66169e6c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Oct 2025 14:10:49 -0700 Subject: [PATCH 2585/2686] Run update.sh --- python/README.md | 60 ++++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/python/README.md b/python/README.md index bd097288b814..7616c655d322 100644 --- a/python/README.md +++ b/python/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`3.14.0rc3-trixie`, `3.14-rc-trixie`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/trixie/Dockerfile) +- [`3.14.0-trixie`, `3.14-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/trixie/Dockerfile) -- [`3.14.0rc3-slim-trixie`, `3.14-rc-slim-trixie`, `3.14.0rc3-slim`, `3.14-rc-slim`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/slim-trixie/Dockerfile) +- [`3.14.0-slim-trixie`, `3.14-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.14.0-slim`, `3.14-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/slim-trixie/Dockerfile) -- [`3.14.0rc3-bookworm`, `3.14-rc-bookworm`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/bookworm/Dockerfile) +- [`3.14.0-bookworm`, `3.14-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/bookworm/Dockerfile) -- [`3.14.0rc3-slim-bookworm`, `3.14-rc-slim-bookworm`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/slim-bookworm/Dockerfile) +- [`3.14.0-slim-bookworm`, `3.14-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/slim-bookworm/Dockerfile) -- [`3.14.0rc3-alpine3.22`, `3.14-rc-alpine3.22`, `3.14.0rc3-alpine`, `3.14-rc-alpine`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/alpine3.22/Dockerfile) +- [`3.14.0-alpine3.22`, `3.14-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.14.0-alpine`, `3.14-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/alpine3.22/Dockerfile) -- [`3.14.0rc3-alpine3.21`, `3.14-rc-alpine3.21`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/alpine3.21/Dockerfile) +- [`3.14.0-alpine3.21`, `3.14-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/alpine3.21/Dockerfile) -- [`3.14.0rc3-windowsservercore-ltsc2025`, `3.14-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.14.0-windowsservercore-ltsc2025`, `3.14-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.14.0rc3-windowsservercore-ltsc2022`, `3.14-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.14.0-windowsservercore-ltsc2022`, `3.14-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.7-trixie`, `3.13-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/trixie/Dockerfile) +- [`3.13.8-trixie`, `3.13-trixie`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/trixie/Dockerfile) -- [`3.13.7-slim-trixie`, `3.13-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.13.7-slim`, `3.13-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/slim-trixie/Dockerfile) +- [`3.13.8-slim-trixie`, `3.13-slim-trixie`, `3.13.8-slim`, `3.13-slim`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/slim-trixie/Dockerfile) -- [`3.13.7-bookworm`, `3.13-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/bookworm/Dockerfile) +- [`3.13.8-bookworm`, `3.13-bookworm`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/bookworm/Dockerfile) -- [`3.13.7-slim-bookworm`, `3.13-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/slim-bookworm/Dockerfile) +- [`3.13.8-slim-bookworm`, `3.13-slim-bookworm`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/slim-bookworm/Dockerfile) -- [`3.13.7-alpine3.22`, `3.13-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.13.7-alpine`, `3.13-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/alpine3.22/Dockerfile) +- [`3.13.8-alpine3.22`, `3.13-alpine3.22`, `3.13.8-alpine`, `3.13-alpine`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/alpine3.22/Dockerfile) -- [`3.13.7-alpine3.21`, `3.13-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/alpine3.21/Dockerfile) +- [`3.13.8-alpine3.21`, `3.13-alpine3.21`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/alpine3.21/Dockerfile) -- [`3.13.7-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.8-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.7-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.8-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.11-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) @@ -110,27 +110,27 @@ WARNING: ## Shared Tags -- `3.14.0rc3`, `3.14-rc`: +- `3.14.0`, `3.14`, `3`, `latest`: - - [`3.14.0rc3-trixie`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/trixie/Dockerfile) - - [`3.14.0rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0-trixie`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/trixie/Dockerfile) + - [`3.14.0-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.14.0rc3-windowsservercore`, `3.14-rc-windowsservercore`: +- `3.14.0-windowsservercore`, `3.14-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.14.0rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.14.0rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/cd33ad0a1c0ed2e0d6a6a3a8eb7330e9cd1cf05b/3.14-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.14.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.7`, `3.13`, `3`, `latest`: +- `3.13.8`, `3.13`: - - [`3.13.7-trixie`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/trixie/Dockerfile) - - [`3.13.7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.8-trixie`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/trixie/Dockerfile) + - [`3.13.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.7-windowsservercore`, `3.13-windowsservercore`, `3-windowsservercore`, `windowsservercore`: +- `3.13.8-windowsservercore`, `3.13-windowsservercore`: - - [`3.13.7-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/935e3081dbf0734d724482b987dd6ba6b8608329/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - `3.12.11`, `3.12`: From cdf8acb2b39a8cc2b21725a03598ec62544feb38 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 7 Oct 2025 17:11:20 -0700 Subject: [PATCH 2586/2686] Run update.sh --- bash/README.md | 6 +++--- mongo/README.md | 12 +++++------ nginx/README.md | 16 +++++++------- tomcat/README.md | 56 ++++++++++++++++++++++++------------------------ 4 files changed, 45 insertions(+), 45 deletions(-) diff --git a/bash/README.md b/bash/README.md index fbd8bef79f65..171be83d356a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20250918`, `devel`, `devel-20250918-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/4692ca63168aa1f5af2bea3e4c6857851e81f51c/devel/Dockerfile) +- [`devel-20251006`, `devel`, `devel-20251006-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/33dd5c2ee28bf8f5a2429d538e2dbb3a00cd52a5/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) @@ -38,7 +38,7 @@ WARNING: - [`4.3.48`, `4.3`, `4.3.48-alpine3.22`, `4.3-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.3/Dockerfile) -- [`4.2.53`, `4.2`, `4.2.53-alpine3.22`, `4.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.2/Dockerfile) +- [`4.2.53`, `4.2`, `4.2.53-alpine3.22`, `4.2-alpine3.22`](https://github.com/tianon/docker-bash/blob/8556e37dc74a044cfd6e8255acfd116a5bdb8588/4.2/Dockerfile) - [`4.1.17`, `4.1`, `4.1.17-alpine3.22`, `4.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/4.1/Dockerfile) @@ -48,7 +48,7 @@ WARNING: - [`3.1.23`, `3.1`, `3.1.23-alpine3.22`, `3.1-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/3.1/Dockerfile) -- [`3.0.22`, `3.0`, `3.0.22-alpine3.22`, `3.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/099d6114cbdb9b016fb8c4beb653187df002f66f/3.0/Dockerfile) +- [`3.0.22`, `3.0`, `3.0.22-alpine3.22`, `3.0-alpine3.22`](https://github.com/tianon/docker-bash/blob/5ffa8349006e790fe3534d0a6c3100fd6d725407/3.0/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index 97b50287d012..a0c197c48d1a 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,7 +28,7 @@ WARNING: ## Simple Tags -- [`8.0.15-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/Dockerfile) +- [`8.0.15-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/8.0/Dockerfile) - [`8.0.15-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -36,7 +36,7 @@ WARNING: - [`8.0.15-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`7.0.25-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/Dockerfile) +- [`7.0.25-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/7.0/Dockerfile) - [`7.0.25-windowsservercore-ltsc2025`, `7.0-windowsservercore-ltsc2025`, `7-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -44,7 +44,7 @@ WARNING: - [`7.0.25-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/6.0/Dockerfile) +- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/d9efcb7f46c4a17da2fdc9dbb4ef644f4f92053d/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) @@ -56,7 +56,7 @@ WARNING: - `8.0.15`, `8.0`, `8`, `latest`: - - [`8.0.15-noble`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/Dockerfile) + - [`8.0.15-noble`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/8.0/Dockerfile) - [`8.0.15-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -71,7 +71,7 @@ WARNING: - `7.0.25`, `7.0`, `7`: - - [`7.0.25-jammy`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/Dockerfile) + - [`7.0.25-jammy`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/7.0/Dockerfile) - [`7.0.25-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`7.0.25-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/windowsservercore-ltsc2022/Dockerfile) @@ -86,7 +86,7 @@ WARNING: - `6.0.26`, `6.0`, `6`: - - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/f249c7930d98b78407a9e095482f779a2261f4f2/6.0/Dockerfile) + - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/d9efcb7f46c4a17da2fdc9dbb4ef644f4f92053d/6.0/Dockerfile) - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/nginx/README.md b/nginx/README.md index d1d91c0b735e..ee261a89708b 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.1`, `mainline`, `1`, `1.29`, `latest`, `1.29.1-bookworm`, `mainline-bookworm`, `1-bookworm`, `1.29-bookworm`, `bookworm`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian/Dockerfile) +- [`1.29.2`, `mainline`, `1`, `1.29`, `latest`, `1.29.2-trixie`, `mainline-trixie`, `1-trixie`, `1.29-trixie`, `trixie`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian/Dockerfile) -- [`1.29.1-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.1-bookworm-perl`, `mainline-bookworm-perl`, `1-bookworm-perl`, `1.29-bookworm-perl`, `bookworm-perl`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian-perl/Dockerfile) +- [`1.29.2-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.2-trixie-perl`, `mainline-trixie-perl`, `1-trixie-perl`, `1.29-trixie-perl`, `trixie-perl`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian-perl/Dockerfile) -- [`1.29.1-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.1-bookworm-otel`, `mainline-bookworm-otel`, `1-bookworm-otel`, `1.29-bookworm-otel`, `bookworm-otel`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/debian-otel/Dockerfile) +- [`1.29.2-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.2-trixie-otel`, `mainline-trixie-otel`, `1-trixie-otel`, `1.29-trixie-otel`, `trixie-otel`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian-otel/Dockerfile) -- [`1.29.1-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.1-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine/Dockerfile) +- [`1.29.2-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.2-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine/Dockerfile) -- [`1.29.1-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.1-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-perl/Dockerfile) +- [`1.29.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.2-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-perl/Dockerfile) -- [`1.29.1-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.1-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-slim/Dockerfile) +- [`1.29.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.2-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-slim/Dockerfile) -- [`1.29.1-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.1-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/5a4ad48c733b365d69a4d1c9946a9d8480469c7f/mainline/alpine-otel/Dockerfile) +- [`1.29.2-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.2-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-otel/Dockerfile) - [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/9b549fdf936778810dbe95a4813899c60444ef1c/stable/debian/Dockerfile) @@ -268,7 +268,7 @@ The `nginx` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. -Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. +Some of these tags may have names like bookworm or trixie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. ## `nginx:-perl` / `nginx:-alpine-perl` diff --git a/tomcat/README.md b/tomcat/README.md index 54a374192aa5..69c45ba7d087 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.11-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.11-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.11-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.11`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jdk25/temurin-noble/Dockerfile) +- [`11.0.12-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.12-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.12-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.12`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk25/temurin-noble/Dockerfile) -- [`11.0.11-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.11-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.11-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jre25/temurin-noble/Dockerfile) +- [`11.0.12-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.12-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.12-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre25/temurin-noble/Dockerfile) -- [`11.0.11-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jdk25/temurin-jammy/Dockerfile) +- [`11.0.12-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk25/temurin-jammy/Dockerfile) -- [`11.0.11-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/11.0/jre25/temurin-jammy/Dockerfile) +- [`11.0.12-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre25/temurin-jammy/Dockerfile) -- [`11.0.11-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.11-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.11-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.12-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.12-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.12-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.11-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.11-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.11-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.12-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.12-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.12-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.11-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.12-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.11-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.12-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.11-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.11-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.11-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.12-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.12-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.12-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.11-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.11-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.11-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.12-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.12-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.12-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.11-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.12-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.11-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/99b7e90b0a58c8cf2990958971c8adac3c6a4f57/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.12-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.46-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.46-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.46-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.46`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jdk25/temurin-noble/Dockerfile) +- [`10.1.47-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.47-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.47-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.47`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk25/temurin-noble/Dockerfile) -- [`10.1.46-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.46-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.46-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jre25/temurin-noble/Dockerfile) +- [`10.1.47-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.47-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.47-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre25/temurin-noble/Dockerfile) -- [`10.1.46-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jdk25/temurin-jammy/Dockerfile) +- [`10.1.47-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk25/temurin-jammy/Dockerfile) -- [`10.1.46-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/27f42750d33f1a4093b04883c7c25072b8b8426e/10.1/jre25/temurin-jammy/Dockerfile) +- [`10.1.47-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre25/temurin-jammy/Dockerfile) -- [`10.1.46-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.46-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.46-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.47-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.47-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.47-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.46-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.46-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.46-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.47-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.47-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.47-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.46-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.47-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.46-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.47-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.46-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.46-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.46-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.47-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.47-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.47-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.46-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.46-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.46-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.47-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.47-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.47-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.46-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.47-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.46-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.47-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.46-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.46-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.46-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.47-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.47-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.47-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.46-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.46-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.46-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.47-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.47-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.47-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.46-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.47-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.46-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/0f20df9a05f0ab5e61bcd6c7d85e0f8a2695afc9/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.47-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.110-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.110-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.110-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.110`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk25/temurin-noble/Dockerfile) From d2cae768ae6259e911ed42d0392e07aae7454afb Mon Sep 17 00:00:00 2001 From: Justus Leiner Date: Wed, 8 Oct 2025 20:01:52 +0200 Subject: [PATCH 2587/2686] MySQL: update readme; complete initializing a fresh instance paragraph (#2627) Co-authored-by: Tianon Gravi --- mysql/content.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mysql/content.md b/mysql/content.md index 9b21973bd9ca..bb01851051bd 100644 --- a/mysql/content.md +++ b/mysql/content.md @@ -134,7 +134,9 @@ Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.bz2`, `.sql.xz`, and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. When parsing `.sh` files without the execute bit set, they are `source`d rather than executed. + +You can easily populate your `%%IMAGE%%` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats From 5a49ecf23662af877ce1c2ee714cacb56400060e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Oct 2025 11:10:35 -0700 Subject: [PATCH 2588/2686] Run update.sh --- alt/README.md | 6 +++--- geonetwork/README.md | 4 ++-- kibana/README.md | 2 +- krakend/README.md | 2 +- mysql/README.md | 4 +++- odoo/README.md | 6 +++--- ruby/README.md | 12 ++++++------ 7 files changed, 19 insertions(+), 17 deletions(-) diff --git a/alt/README.md b/alt/README.md index c2f4952359d3..d422eda05d8c 100644 --- a/alt/README.md +++ b/alt/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`p10`](https://github.com/alt-cloud/docker-brew-alt/blob/4e761a7c575be581c7c1a18d10e30324858ae086/x86_64/Dockerfile) +- [`p10`](https://github.com/alt-cloud/docker-brew-alt/blob/ef522411b7245d758aa8c8a24a0575c742fac1a2/x86_64/Dockerfile) -- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/e5a536d9aed224ac6603ed7d721e08da20b48105/x86_64/Dockerfile) +- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/f6fcb549885ee57d7bbb53a22484ee16cb9413b0/x86_64/Dockerfile) -- [`p11`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/6a48028d28b5fdfe83421ff08af1945ad97fcba2/x86_64/Dockerfile) +- [`p11`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/068702e0e800b291f7853380450a5557e56900c3/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/geonetwork/README.md b/geonetwork/README.md index 07b1c7b0fd47..c63487b60480 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.12.12-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/17278beab34080c90454c0b7059bd6b49701f979/3.12.12/postgres/Dockerfile) -- [`4.2.13`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/ca0637409ff44e32b5138a3ef76a48533ba1d595/4.2.13/Dockerfile) +- [`4.2.14`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/6848a28591a23af0e326b56cd9dde0bf34bc1fe9/4.2.14/Dockerfile) -- [`4.4.8`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/ca0637409ff44e32b5138a3ef76a48533ba1d595/4.4.8/Dockerfile) +- [`4.4.9`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/8ad0acd56ed97a67ae07f8099b7ee255465946e4/4.4.9/Dockerfile) # Quick reference (cont.) diff --git a/kibana/README.md b/kibana/README.md index 98ce6ed8578a..4d1ee44ba69c 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.17.28`](https://github.com/elastic/dockerfiles/blob/28b876f2aaba7bc27d76a1acd55cbc8ada9b5dea/kibana/Dockerfile) +- [`7.17.29`](https://github.com/elastic/dockerfiles/blob/28b876f2aaba7bc27d76a1acd55cbc8ada9b5dea/kibana/Dockerfile) - [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) diff --git a/krakend/README.md b/krakend/README.md index 54ec7122e732..907e6ade1e1d 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.11.0`, `2.11`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/f7b7d2505b87be94f8aaab83bc1049a515e2dbf1/2.11.0/Dockerfile) +- [`2.11.1`, `2.11`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/c465023494ef14bc33e1dbf68a5108595c46f027/2.11.1/Dockerfile) # Quick reference (cont.) diff --git a/mysql/README.md b/mysql/README.md index bf9c0cbb56d5..3698f10de017 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -202,7 +202,9 @@ Currently, this is only supported for `MYSQL_ROOT_PASSWORD`, `MYSQL_ROOT_HOST`, # Initializing a fresh instance -When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your `mysql` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. +When a container is started for the first time, a new database with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql`, `.sql.gz`, `.sql.bz2`, `.sql.xz`, and `.sql.zst` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. When parsing `.sh` files without the execute bit set, they are `source`d rather than executed. + +You can easily populate your `mysql` services by [mounting a SQL dump into that directory](https://docs.docker.com/storage/bind-mounts/) and provide [custom images](https://docs.docker.com/reference/dockerfile/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable. # Caveats diff --git a/odoo/README.md b/odoo/README.md index ce12ee180ca8..5e93200148ce 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19.0-20250930`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/19.0/Dockerfile) +- [`19.0-20251008`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/19.0/Dockerfile) -- [`18.0-20250930`, `18.0`, `18`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/18.0/Dockerfile) +- [`18.0-20251008`, `18.0`, `18`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/18.0/Dockerfile) -- [`17.0-20250930`, `17.0`, `17`](https://github.com/odoo/docker/blob/529a49c8b7da4201fc461434f9ec8ad170ef3202/17.0/Dockerfile) +- [`17.0-20251008`, `17.0`, `17`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/17.0/Dockerfile) # Quick reference (cont.) diff --git a/ruby/README.md b/ruby/README.md index 4ec81edc0a91..ede79db2881c 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -36,17 +36,17 @@ WARNING: - [`3.5.0-preview1-alpine3.21`, `3.5-rc-alpine3.21`](https://github.com/docker-library/ruby/blob/f0bf5f365387703579af740f915b6f32c4ee4c28/3.5-rc/alpine3.21/Dockerfile) -- [`3.4.6-trixie`, `3.4-trixie`, `3-trixie`, `trixie`, `3.4.6`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/trixie/Dockerfile) +- [`3.4.7-trixie`, `3.4-trixie`, `3-trixie`, `trixie`, `3.4.7`, `3.4`, `3`, `latest`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/trixie/Dockerfile) -- [`3.4.6-slim-trixie`, `3.4-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.4.6-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/slim-trixie/Dockerfile) +- [`3.4.7-slim-trixie`, `3.4-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.4.7-slim`, `3.4-slim`, `3-slim`, `slim`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/slim-trixie/Dockerfile) -- [`3.4.6-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/bookworm/Dockerfile) +- [`3.4.7-bookworm`, `3.4-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/bookworm/Dockerfile) -- [`3.4.6-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/slim-bookworm/Dockerfile) +- [`3.4.7-slim-bookworm`, `3.4-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/slim-bookworm/Dockerfile) -- [`3.4.6-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.6-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/alpine3.22/Dockerfile) +- [`3.4.7-alpine3.22`, `3.4-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.4.7-alpine`, `3.4-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/alpine3.22/Dockerfile) -- [`3.4.6-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/333f3821ba0612b148789456fe30af82fa4fa690/3.4/alpine3.21/Dockerfile) +- [`3.4.7-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/alpine3.21/Dockerfile) - [`3.3.9-trixie`, `3.3-trixie`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/trixie/Dockerfile) From e59396ae46b11a8cbcced93bd7d8ab8743f1c6a6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Oct 2025 14:11:12 -0700 Subject: [PATCH 2589/2686] Run update.sh --- alpine/README.md | 8 ++-- backdrop/README.md | 4 +- docker/README.md | 16 ++++---- hylang/README.md | 98 +++++++++++++++++++++++----------------------- julia/README.md | 34 ++++++++-------- matomo/README.md | 6 +-- 6 files changed, 83 insertions(+), 83 deletions(-) diff --git a/alpine/README.md b/alpine/README.md index 5341eb982e78..060652d57ea3 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -26,13 +26,13 @@ WARNING: - [`20250108`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/c1f1de232c970df2285c03050ab3747b8563164f/x86_64/Dockerfile) -- [`3.22.1`, `3.22`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/01dd5fbd09e25f6c040627eedf18bbfccfa9ad6e/x86_64/Dockerfile) +- [`3.22.2`, `3.22`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/4dc13cbc7caffe03c98aa99f28e27c2fb6f7e74d/x86_64/Dockerfile) -- [`3.21.4`, `3.21`](https://github.com/alpinelinux/docker-alpine/blob/dd258ea6660042cdf5aef42ef7745640ce27bf8e/x86_64/Dockerfile) +- [`3.21.5`, `3.21`](https://github.com/alpinelinux/docker-alpine/blob/2c30d5daeebb5090b1b6363a9e97dd88bf08a642/x86_64/Dockerfile) -- [`3.20.7`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/62f727c549aafddfe09929209215e68eb222f0b2/x86_64/Dockerfile) +- [`3.20.8`, `3.20`](https://github.com/alpinelinux/docker-alpine/blob/f5ce8f036ef8a57481ae6f3f1cf7f2300cff8d29/x86_64/Dockerfile) -- [`3.19.8`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/f2420d7551c86c2cd3fab04159b57b9bcc533647/x86_64/Dockerfile) +- [`3.19.9`, `3.19`](https://github.com/alpinelinux/docker-alpine/blob/ee939d52345248420cf62d4606ccc7152bc5a107/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/backdrop/README.md b/backdrop/README.md index 3bed76afd3cb..c66f756ccb9d 100644 --- a/backdrop/README.md +++ b/backdrop/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.32.0`, `1.32`, `1`, `1.32.0-apache`, `1.32-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/c7b2ec4e51f6cd53fce2d04198130959b67cd0ec/1/apache/Dockerfile) +- [`1.32.1`, `1.32`, `1`, `1.32.1-apache`, `1.32-apache`, `1-apache`, `apache`, `latest`](https://github.com/backdrop-ops/backdrop-docker/blob/b9eadec6b29d93b6db5c08136ac98411831b3610/1/apache/Dockerfile) -- [`1.32.0-fpm`, `1.32-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/c7b2ec4e51f6cd53fce2d04198130959b67cd0ec/1/fpm/Dockerfile) +- [`1.32.1-fpm`, `1.32-fpm`, `1-fpm`, `fpm`](https://github.com/backdrop-ops/backdrop-docker/blob/b9eadec6b29d93b6db5c08136ac98411831b3610/1/fpm/Dockerfile) # Quick reference (cont.) diff --git a/docker/README.md b/docker/README.md index 269a169f12bf..3a0dbadd2167 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,22 +28,22 @@ WARNING: ## Simple Tags -- [`28.5.0-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/cli/Dockerfile) +- [`28.5.1-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/cli/Dockerfile) -- [`28.5.0-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.0-dind-alpine3.22`, `28.5.0`, `28.5`, `28`, `latest`, `28.5.0-alpine3.22`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/dind/Dockerfile) +- [`28.5.1-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.1-dind-alpine3.22`, `28.5.1`, `28.5`, `28`, `latest`, `28.5.1-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind/Dockerfile) -- [`28.5.0-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/dind-rootless/Dockerfile) +- [`28.5.1-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind-rootless/Dockerfile) -- [`28.5.0-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.5.1-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.5.0-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.5.1-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `28.5.0-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.5.1-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.5.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.5.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/43bf4f4776f6fa4c32fd52b2719c9099a92bde2c/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/hylang/README.md b/hylang/README.md index 912aa24adaf1..76f1ab6054a6 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,105 +28,105 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-trixie) +- [`1.1.0-python3.14-trixie`, `1.1-python3.14-trixie`, `1-python3.14-trixie`, `python3.14-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-trixie) -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.14-bookworm`, `1.1-python3.14-bookworm`, `1-python3.14-bookworm`, `python3.14-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-bookworm) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) +- [`1.1.0-python3.14-alpine3.22`, `1.1-python3.14-alpine3.22`, `1-python3.14-alpine3.22`, `python3.14-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.14-alpine`, `1.1-python3.14-alpine`, `1-python3.14-alpine`, `python3.14-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-alpine3.22) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.14-alpine3.21`, `1.1-python3.14-alpine3.21`, `1-python3.14-alpine3.21`, `python3.14-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-alpine3.21) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-windowsservercore-ltsc2025`, `1.1-python3.14-windowsservercore-ltsc2025`, `1-python3.14-windowsservercore-ltsc2025`, `python3.14-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2025) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-windowsservercore-ltsc2022`, `1.1-python3.14-windowsservercore-ltsc2022`, `1-python3.14-windowsservercore-ltsc2022`, `python3.14-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2022) -- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-trixie) +- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-trixie) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-bookworm) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) -- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-trixie) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) +- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-trixie) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-bookworm) -- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-trixie) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) +- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-trixie) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-bookworm) -- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-trixie) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) +- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-trixie) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-bookworm) -- [`1.1.0-python3.14-rc-trixie`, `1.1-python3.14-rc-trixie`, `1-python3.14-rc-trixie`, `python3.14-rc-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-trixie) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) -- [`1.1.0-python3.14-rc-bookworm`, `1.1-python3.14-rc-bookworm`, `1-python3.14-rc-bookworm`, `python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) -- [`1.1.0-python3.14-rc-alpine3.22`, `1.1-python3.14-rc-alpine3.22`, `1-python3.14-rc-alpine3.22`, `python3.14-rc-alpine3.22`, `1.1.0-python3.14-rc-alpine`, `1.1-python3.14-rc-alpine`, `1-python3.14-rc-alpine`, `python3.14-rc-alpine`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.22) +- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-trixie) -- [`1.1.0-python3.14-rc-alpine3.21`, `1.1-python3.14-rc-alpine3.21`, `1-python3.14-rc-alpine3.21`, `python3.14-rc-alpine3.21`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-alpine3.21) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-bookworm) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`, `1.1-python3.14-rc-windowsservercore-ltsc2025`, `1-python3.14-rc-windowsservercore-ltsc2025`, `python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) -- [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`, `1.1-python3.14-rc-windowsservercore-ltsc2022`, `1-python3.14-rc-windowsservercore-ltsc2022`, `python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) -- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-trixie) +- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-trixie) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) ## Shared Tags -- `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`, `1.1.0`, `1.1`, `1`, `latest`: +- `1.1.0-python3.14`, `1.1-python3.14`, `1-python3.14`, `python3.14`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-bookworm) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-trixie) + - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2025) + - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2022) + +- `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`: + + - [`1.1.0-python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-trixie) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.12-bookworm) + - [`1.1.0-python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-trixie) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.11-bookworm) + - [`1.1.0-python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-trixie) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.10-bookworm) + - [`1.1.0-python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-trixie) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.9-bookworm) - -- `1.1.0-python3.14-rc`, `1.1-python3.14-rc`, `1-python3.14-rc`, `python3.14-rc`: - - - [`1.1.0-python3.14-rc-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-bookworm) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-rc-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.python3.14-rc-windowsservercore-ltsc2022) + - [`1.1.0-python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-trixie) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/acbc9ad737da6849d27f6017d2e6ca926b58d582/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-trixie) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 7aaeffaa76ea..95dacc91de78 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,21 +28,21 @@ WARNING: ## Simple Tags -- [`1.12.0-rc3-trixie`, `1.12-rc-trixie`, `rc-trixie`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/trixie/Dockerfile) +- [`1.12.0-trixie`, `1.12-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/trixie/Dockerfile) -- [`1.12.0-rc3-bookworm`, `1.12-rc-bookworm`, `rc-bookworm`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/bookworm/Dockerfile) +- [`1.12.0-bookworm`, `1.12-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/bookworm/Dockerfile) -- [`1.12.0-rc3-windowsservercore-ltsc2025`, `1.12-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.0-windowsservercore-ltsc2025`, `1.12-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-rc3-windowsservercore-ltsc2022`, `1.12-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.0-windowsservercore-ltsc2022`, `1.12-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.11.7-trixie`, `1.11-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) +- [`1.11.7-trixie`, `1.11-trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) -- [`1.11.7-bookworm`, `1.11-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/bookworm/Dockerfile) +- [`1.11.7-bookworm`, `1.11-bookworm`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/bookworm/Dockerfile) -- [`1.11.7-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.11.7-windowsservercore-ltsc2025`, `1.11-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.11.7-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.11.7-windowsservercore-ltsc2022`, `1.11-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.10.10-trixie`, `1.10-trixie`](https://github.com/docker-library/julia/blob/25081b47fd632d8a7140a3fede2da1db2d96aee5/1.10/trixie/Dockerfile) @@ -58,24 +58,24 @@ WARNING: ## Shared Tags -- `1.12.0-rc3`, `1.12-rc`, `rc`: +- `1.12.0`, `1.12`, `1`, `latest`: - - [`1.12.0-rc3-trixie`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/trixie/Dockerfile) - - [`1.12.0-rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-trixie`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/trixie/Dockerfile) + - [`1.12.0-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-rc3-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`: +- `1.12.0-windowsservercore`, `1.12-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.12.0-rc3-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-rc3-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/9a4d40691868bcf3e0917dd9c75c6994fc9ddd58/1.12-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.0-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.7`, `1.11`, `1`, `latest`: +- `1.11.7`, `1.11`: - [`1.11.7-trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) - [`1.11.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.11.7-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.11.7-windowsservercore`, `1.11-windowsservercore`: - [`1.11.7-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2025/Dockerfile) - [`1.11.7-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/b490d5cf6af9a5f1d001d1a093c4313e8fbe3333/1.11/windows/windowsservercore-ltsc2022/Dockerfile) diff --git a/matomo/README.md b/matomo/README.md index 82dcee7ab9e9..3c8fa059ef33 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0-apache`, `5.4-apache`, `5-apache`, `apache`, `5.4.0`, `5.4`, `5`, `latest`](https://github.com/matomo-org/docker/blob/46b01bfa1022b82747b1dabe83ecf2d559fb9829/apache/Dockerfile) +- [`5.5.0-apache`, `5.5-apache`, `5-apache`, `apache`, `5.5.0`, `5.5`, `5`, `latest`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/apache/Dockerfile) -- [`5.4.0-fpm`, `5.4-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/46b01bfa1022b82747b1dabe83ecf2d559fb9829/fpm/Dockerfile) +- [`5.5.0-fpm`, `5.5-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/fpm/Dockerfile) -- [`5.4.0-fpm-alpine`, `5.4-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1a3faf94ab6b22ca27b3dcce0026744dbb9969f3/fpm-alpine/Dockerfile) +- [`5.5.0-fpm-alpine`, `5.5-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/fpm-alpine/Dockerfile) # Quick reference (cont.) From 825ad87c4c52dafdb4557c0e2b0b98372149c199 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Oct 2025 15:12:32 -0700 Subject: [PATCH 2590/2686] Run update.sh --- phpmyadmin/README.md | 6 +++--- python/README.md | 34 +++++++++++++++++----------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md index 5ac1a4e652e1..a6c10e8811bd 100644 --- a/phpmyadmin/README.md +++ b/phpmyadmin/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.2.2-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.2`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/apache/Dockerfile) +- [`5.2.3-apache`, `5.2-apache`, `5-apache`, `apache`, `5.2.3`, `5.2`, `5`, `latest`](https://github.com/phpmyadmin/docker/blob/452a995fe6c90b96473fc17c3d704786c33d42bc/apache/Dockerfile) -- [`5.2.2-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/fpm/Dockerfile) +- [`5.2.3-fpm`, `5.2-fpm`, `5-fpm`, `fpm`](https://github.com/phpmyadmin/docker/blob/452a995fe6c90b96473fc17c3d704786c33d42bc/fpm/Dockerfile) -- [`5.2.2-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/24c2f1f855bfa93c9c2640261f601620bf312f17/fpm-alpine/Dockerfile) +- [`5.2.3-fpm-alpine`, `5.2-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/phpmyadmin/docker/blob/452a995fe6c90b96473fc17c3d704786c33d42bc/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 7616c655d322..ee538b9cb2b7 100644 --- a/python/README.md +++ b/python/README.md @@ -28,17 +28,17 @@ WARNING: ## Simple Tags -- [`3.14.0-trixie`, `3.14-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/trixie/Dockerfile) +- [`3.14.0-trixie`, `3.14-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/trixie/Dockerfile) -- [`3.14.0-slim-trixie`, `3.14-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.14.0-slim`, `3.14-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/slim-trixie/Dockerfile) +- [`3.14.0-slim-trixie`, `3.14-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.14.0-slim`, `3.14-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/slim-trixie/Dockerfile) -- [`3.14.0-bookworm`, `3.14-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/bookworm/Dockerfile) +- [`3.14.0-bookworm`, `3.14-bookworm`, `3-bookworm`, `bookworm`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/bookworm/Dockerfile) -- [`3.14.0-slim-bookworm`, `3.14-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/slim-bookworm/Dockerfile) +- [`3.14.0-slim-bookworm`, `3.14-slim-bookworm`, `3-slim-bookworm`, `slim-bookworm`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/slim-bookworm/Dockerfile) -- [`3.14.0-alpine3.22`, `3.14-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.14.0-alpine`, `3.14-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/alpine3.22/Dockerfile) +- [`3.14.0-alpine3.22`, `3.14-alpine3.22`, `3-alpine3.22`, `alpine3.22`, `3.14.0-alpine`, `3.14-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/alpine3.22/Dockerfile) -- [`3.14.0-alpine3.21`, `3.14-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/alpine3.21/Dockerfile) +- [`3.14.0-alpine3.21`, `3.14-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/alpine3.21/Dockerfile) - [`3.14.0-windowsservercore-ltsc2025`, `3.14-windowsservercore-ltsc2025`, `3-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) @@ -52,9 +52,9 @@ WARNING: - [`3.13.8-slim-bookworm`, `3.13-slim-bookworm`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/slim-bookworm/Dockerfile) -- [`3.13.8-alpine3.22`, `3.13-alpine3.22`, `3.13.8-alpine`, `3.13-alpine`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/alpine3.22/Dockerfile) +- [`3.13.8-alpine3.22`, `3.13-alpine3.22`, `3.13.8-alpine`, `3.13-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.13/alpine3.22/Dockerfile) -- [`3.13.8-alpine3.21`, `3.13-alpine3.21`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/alpine3.21/Dockerfile) +- [`3.13.8-alpine3.21`, `3.13-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.13/alpine3.21/Dockerfile) - [`3.13.8-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) @@ -68,9 +68,9 @@ WARNING: - [`3.12.11-slim-bookworm`, `3.12-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/slim-bookworm/Dockerfile) -- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/alpine3.22/Dockerfile) +- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.12/alpine3.22/Dockerfile) -- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/alpine3.21/Dockerfile) +- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.12/alpine3.21/Dockerfile) - [`3.11.13-trixie`, `3.11-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/trixie/Dockerfile) @@ -80,9 +80,9 @@ WARNING: - [`3.11.13-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/slim-bookworm/Dockerfile) -- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/alpine3.22/Dockerfile) +- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.11/alpine3.22/Dockerfile) -- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/alpine3.21/Dockerfile) +- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.11/alpine3.21/Dockerfile) - [`3.10.18-trixie`, `3.10-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/trixie/Dockerfile) @@ -92,9 +92,9 @@ WARNING: - [`3.10.18-slim-bookworm`, `3.10-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/slim-bookworm/Dockerfile) -- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/alpine3.22/Dockerfile) +- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.10/alpine3.22/Dockerfile) -- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/alpine3.21/Dockerfile) +- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.10/alpine3.21/Dockerfile) - [`3.9.23-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/trixie/Dockerfile) @@ -104,15 +104,15 @@ WARNING: - [`3.9.23-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/slim-bookworm/Dockerfile) -- [`3.9.23-alpine3.22`, `3.9-alpine3.22`, `3.9.23-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/alpine3.22/Dockerfile) +- [`3.9.23-alpine3.22`, `3.9-alpine3.22`, `3.9.23-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.9/alpine3.22/Dockerfile) -- [`3.9.23-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/alpine3.21/Dockerfile) +- [`3.9.23-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.9/alpine3.21/Dockerfile) ## Shared Tags - `3.14.0`, `3.14`, `3`, `latest`: - - [`3.14.0-trixie`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/trixie/Dockerfile) + - [`3.14.0-trixie`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/trixie/Dockerfile) - [`3.14.0-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) From 9e34d1f12699d2616aed21be763770933f915cad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 8 Oct 2025 17:10:31 -0700 Subject: [PATCH 2591/2686] Run update.sh --- rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index edb3bc1a7bde..59eddcc92d41 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-beta.4`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/e963688c182bf362170635dc550e16e4d7b002b8/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0-rc.1`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/421249429d60a199a8e63eae8914bf19f7aba49b/4.2-rc/ubuntu/Dockerfile) -- [`4.2.0-beta.4-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) +- [`4.2.0-rc.1-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) -- [`4.2.0-beta.4-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/e963688c182bf362170635dc550e16e4d7b002b8/4.2-rc/alpine/Dockerfile) +- [`4.2.0-rc.1-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/421249429d60a199a8e63eae8914bf19f7aba49b/4.2-rc/alpine/Dockerfile) -- [`4.2.0-beta.4-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) +- [`4.2.0-rc.1-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) - [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/afa514ae410f3f21127291c2a827c7ed8deda515/4.1/ubuntu/Dockerfile) From 9e743c246c40ba9aee1033362666ab35c76304b1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 09:10:48 -0700 Subject: [PATCH 2592/2686] Run update.sh --- node/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index d44d345eb158..ee6c10bf51d6 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.9-alpine3.21`, `24.9.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.9-alpine`, `24.9-alpine3.22`, `24.9.0-alpine`, `24.9.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.9`, `24.9-bookworm`, `24.9.0`, `24.9.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.9-bookworm-slim`, `24.9-slim`, `24.9.0-bookworm-slim`, `24.9.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.9-bullseye`, `24.9.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.9-bullseye-slim`, `24.9.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.9-trixie`, `24.9.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/trixie/Dockerfile) +- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.9-trixie-slim`, `24.9.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/212028f3d223af165e090e0318ca9dee35dc2210/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.20-alpine3.21`, `22.20.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.21/Dockerfile) From 3ad3c2ebb093ec2a5ef326f848048d99014c434e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 11:10:48 -0700 Subject: [PATCH 2593/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- flink/README.md | 6 +++--- ghost/README.md | 4 ++-- redmine/README.md | 24 ++++++++++++------------ 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 3c05f5bccc1d..ace69f787ff7 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.2`, `25.9.2-jammy`, `25.9.2.1`, `25.9.2.1-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.9.2.1/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.3`, `25.9.3-jammy`, `25.9.3.48`, `25.9.3.48-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.9.3.48/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.8`, `25.8.8-jammy`, `25.8.8.26`, `25.8.8.26-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.8.8.26/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.8.10.7/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.7.7.68/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.7.7.68/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/8865f784000ae24d6bdbcda0fa4b4e2f27ef9966/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.3.6.56/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 18f0f506d452..75d989e19187 100644 --- a/flink/README.md +++ b/flink/README.md @@ -36,11 +36,11 @@ WARNING: - [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.2-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java8-ubuntu/Dockerfile) +- [`1.20.3-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.3-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/ea62362ddccca2556c9856bf6e435c1d38f90b2b/1.20/scala_2.12-java8-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.2-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java17-ubuntu/Dockerfile) +- [`1.20.3-scala_2.12-java17`, `1.20-scala_2.12-java17`, `1.20.3-java17`, `1.20-java17`](https://github.com/apache/flink-docker/blob/ea62362ddccca2556c9856bf6e435c1d38f90b2b/1.20/scala_2.12-java17-ubuntu/Dockerfile) -- [`1.20.2-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.2-scala_2.12`, `1.20-scala_2.12`, `1.20.2-java11`, `1.20-java11`, `1.20.2`, `1.20`](https://github.com/apache/flink-docker/blob/3679d8deb790720fa63d4682c1fc928c252e7d9f/1.20/scala_2.12-java11-ubuntu/Dockerfile) +- [`1.20.3-scala_2.12-java11`, `1.20-scala_2.12-java11`, `1.20.3-scala_2.12`, `1.20-scala_2.12`, `1.20.3-java11`, `1.20-java11`, `1.20.3`, `1.20`](https://github.com/apache/flink-docker/blob/ea62362ddccca2556c9856bf6e435c1d38f90b2b/1.20/scala_2.12-java11-ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/ghost/README.md b/ghost/README.md index ae3b725ce137..2b1c41ec4536 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.0`, `6.2`, `6`, `latest`](https://github.com/docker-library/ghost/blob/d2feb10e3b16dbb44fe0e2d85a48d55d0bc9a39d/6/debian/Dockerfile) +- [`6.3.0`, `6.3`, `6`, `latest`](https://github.com/docker-library/ghost/blob/2f3e896dfc7110d63a154e249b51ad64d39db2ba/6/debian/Dockerfile) -- [`6.2.0-alpine`, `6.2-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d2feb10e3b16dbb44fe0e2d85a48d55d0bc9a39d/6/alpine/Dockerfile) +- [`6.3.0-alpine`, `6.3-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2f3e896dfc7110d63a154e249b51ad64d39db2ba/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) diff --git a/redmine/README.md b/redmine/README.md index 85f00196e277..ab7c4d4f23be 100644 --- a/redmine/README.md +++ b/redmine/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.1.0`, `6.1`, `6`, `latest`, `6.1.0-trixie`, `6.1-trixie`, `6-trixie`, `trixie`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/trixie/Dockerfile) +- [`6.1.0`, `6.1`, `6`, `latest`, `6.1.0-trixie`, `6.1-trixie`, `6-trixie`, `trixie`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.1/trixie/Dockerfile) -- [`6.1.0-bookworm`, `6.1-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/f0741776f38b451da162138348628b8cf44b5a23/6.1/bookworm/Dockerfile) +- [`6.1.0-bookworm`, `6.1-bookworm`, `6-bookworm`, `bookworm`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.1/bookworm/Dockerfile) -- [`6.1.0-alpine3.22`, `6.1-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/alpine3.22/Dockerfile) +- [`6.1.0-alpine3.22`, `6.1-alpine3.22`, `6-alpine3.22`, `alpine3.22`, `6.1.0-alpine`, `6.1-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.1/alpine3.22/Dockerfile) -- [`6.1.0-alpine3.21`, `6.1-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/782887eb82bfea15a4a6ea05569b81b323dd25cc/6.1/alpine3.21/Dockerfile) +- [`6.1.0-alpine3.21`, `6.1-alpine3.21`, `6-alpine3.21`, `alpine3.21`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.1/alpine3.21/Dockerfile) -- [`6.0.7`, `6.0`, `6.0.7-trixie`, `6.0-trixie`](https://github.com/docker-library/redmine/blob/a5559e1b8e4ff20203b73604dd91c3eb184899f1/6.0/trixie/Dockerfile) +- [`6.0.7`, `6.0`, `6.0.7-trixie`, `6.0-trixie`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.0/trixie/Dockerfile) -- [`6.0.7-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/bookworm/Dockerfile) +- [`6.0.7-bookworm`, `6.0-bookworm`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.0/bookworm/Dockerfile) -- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6.0.7-alpine`, `6.0-alpine`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/alpine3.22/Dockerfile) +- [`6.0.7-alpine3.22`, `6.0-alpine3.22`, `6.0.7-alpine`, `6.0-alpine`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.0/alpine3.22/Dockerfile) -- [`6.0.7-alpine3.21`, `6.0-alpine3.21`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/6.0/alpine3.21/Dockerfile) +- [`6.0.7-alpine3.21`, `6.0-alpine3.21`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/6.0/alpine3.21/Dockerfile) -- [`5.1.10`, `5.1`, `5`, `5.1.10-trixie`, `5.1-trixie`, `5-trixie`](https://github.com/docker-library/redmine/blob/b5192c29c3c06bafb09b57eec4fa7f2f1a64ec03/5.1/trixie/Dockerfile) +- [`5.1.10`, `5.1`, `5`, `5.1.10-trixie`, `5.1-trixie`, `5-trixie`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/5.1/trixie/Dockerfile) -- [`5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/bookworm/Dockerfile) +- [`5.1.10-bookworm`, `5.1-bookworm`, `5-bookworm`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/5.1/bookworm/Dockerfile) -- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/alpine3.22/Dockerfile) +- [`5.1.10-alpine3.22`, `5.1-alpine3.22`, `5-alpine3.22`, `5.1.10-alpine`, `5.1-alpine`, `5-alpine`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/5.1/alpine3.22/Dockerfile) -- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/912d5e834802a5b3901bbc8bc642f8aff3ce91b8/5.1/alpine3.21/Dockerfile) +- [`5.1.10-alpine3.21`, `5.1-alpine3.21`, `5-alpine3.21`](https://github.com/docker-library/redmine/blob/01d5e42cea07875240d7a6f4f6b3a1e13fdcf411/5.1/alpine3.21/Dockerfile) # Quick reference (cont.) From 2788dbc9b23d8a335568dad3791874aab69a44e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 12:12:46 -0700 Subject: [PATCH 2594/2686] Run update.sh --- plone/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plone/README.md b/plone/README.md index b58959f0dbb1..e91a9ad6af52 100644 --- a/plone/README.md +++ b/plone/README.md @@ -38,7 +38,7 @@ For Docker image usage, see [Plone 6 Documentation](https://6.docs.plone.org/ins # Supported tags and respective `Dockerfile` links -- [`5.2.14-python38`, `5.2-python38`, `5-python38`, `python38`, `5.2.14`, `5.2`, `5`, `latest`](https://github.com/plone/plone.docker/blob/a3a9c7e0c5ca324f488fe7354f00a997398195f7/5.2/5.2.14/debian/Dockerfile) +**No supported tags** # Quick reference (cont.) @@ -46,7 +46,7 @@ For Docker image usage, see [Plone 6 Documentation](https://6.docs.plone.org/ins [https://github.com/plone/plone.docker/issues](https://github.com/plone/plone.docker/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/plone/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/plone/` directory](https://github.com/docker-library/repo-info/blob/master/repos/plone) ([history](https://github.com/docker-library/repo-info/commits/master/repos/plone)) From faeb11b536a00b8ceb5cfdf2649f640b4c2cac77 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 14:12:40 -0700 Subject: [PATCH 2595/2686] Run update.sh --- ubuntu/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ubuntu/README.md b/ubuntu/README.md index f54886b2084c..521d9b475ba7 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -26,11 +26,11 @@ WARNING: - [`22.04`, `jammy-20251001`, `jammy`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-jammy-amd64-20251001-1758709c&id=1758709c0ef8b678abab7ba1c66546f8c1e8229f) -- [`24.04`, `noble-20250925`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20250925-1d2c5dde&id=1d2c5dde2e888ba830256d63063f029474b18672) +- [`24.04`, `noble-20251001`, `noble`, `latest`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-noble-amd64-20251001-f5b85bb8&id=f5b85bb809ca07067994b7b0ec661a31718d6c75) -- [`25.04`, `plucky-20250925.1`, `plucky`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20250925.1-aa4f50d8&id=aa4f50d80f2f4aedf77435655a04949bde2a264c) +- [`25.04`, `plucky-20251001`, `plucky`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-plucky-amd64-20251001-547c400a&id=547c400a291828191316040f3e41e24b971efb8e) -- [`25.10`, `questing-20250830`, `questing`, `devel`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20250830-c245f382&id=c245f3826f2631032e862a48f183fb528158d08a) +- [`25.10`, `questing-20251007`, `questing`, `rolling`](https://git.launchpad.net/cloud-images/+oci/ubuntu-base/tree/oci/index.json?h=refs/tags/dist-questing-amd64-20251007-2012176a&id=2012176ad7653cd1c95d622cbcb2744f24237be3) # Quick reference (cont.) From 40962e8f2d0e3e908ecdb7cee6af3d38936ba736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20=C3=85gren?= Date: Thu, 9 Oct 2025 23:21:27 +0200 Subject: [PATCH 2596/2686] mariadb: fix formatting in content.md (#2629) --- mariadb/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mariadb/content.md b/mariadb/content.md index c66738c9692d..6575e45bf967 100644 --- a/mariadb/content.md +++ b/mariadb/content.md @@ -147,8 +147,8 @@ Custom configuration files should end in `.cnf` and be mounted read only at the The `%%IMAGE%%` image configuration contains the Ubuntu MariaDB variables with two custom changes for the container: - [host-cache-size=0](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) - [skip-name-resolve](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) +- [`host-cache-size=0`](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) +- [`skip-name-resolve`](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or argument. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `%%IMAGE%%`. From ff1b0429355e79e9634e28dac9e379e6d865a0e3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 15:12:57 -0700 Subject: [PATCH 2597/2686] Run update.sh --- mariadb/README.md | 4 ++-- oraclelinux/README.md | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index c5b97a7da7aa..55c147215b0f 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -238,8 +238,8 @@ Custom configuration files should end in `.cnf` and be mounted read only at the The `mariadb` image configuration contains the Ubuntu MariaDB variables with two custom changes for the container: - [host-cache-size=0](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) - [skip-name-resolve](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) +- [`host-cache-size=0`](https://mariadb.com/kb/en/server-system-variables/#host_cache_size) +- [`skip-name-resolve`](https://mariadb.com/kb/en/server-system-variables/#skip_name_resolve) These disable the authentication of `user@hostname` users. To re-enable the `skip-name-resolve` use `disable-skip-name-resolve` as variable or argument. When enabled, the `host-cache-size` should be sufficient for the number of containers connecting to the `mariadb`. diff --git a/oraclelinux/README.md b/oraclelinux/README.md index f6ba3c1991b4..c9a7aeb26ff5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/775d28963fab701f956994defdf245e59251fba3/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7-slim-fips/Dockerfile) # Quick reference (cont.) From 0ba577ecfd2f706fef98a6eb1c888bd05f8a119b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 16:11:12 -0700 Subject: [PATCH 2598/2686] Run update.sh --- python/README.md | 64 ++++++++++++++++++++++++------------------------ 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/python/README.md b/python/README.md index ee538b9cb2b7..581df7330104 100644 --- a/python/README.md +++ b/python/README.md @@ -60,53 +60,53 @@ WARNING: - [`3.13.8-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.12.11-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) +- [`3.12.12-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/trixie/Dockerfile) -- [`3.12.11-slim-trixie`, `3.12-slim-trixie`, `3.12.11-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/slim-trixie/Dockerfile) +- [`3.12.12-slim-trixie`, `3.12-slim-trixie`, `3.12.12-slim`, `3.12-slim`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/slim-trixie/Dockerfile) -- [`3.12.11-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/bookworm/Dockerfile) +- [`3.12.12-bookworm`, `3.12-bookworm`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/bookworm/Dockerfile) -- [`3.12.11-slim-bookworm`, `3.12-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/slim-bookworm/Dockerfile) +- [`3.12.12-slim-bookworm`, `3.12-slim-bookworm`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/slim-bookworm/Dockerfile) -- [`3.12.11-alpine3.22`, `3.12-alpine3.22`, `3.12.11-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.12/alpine3.22/Dockerfile) +- [`3.12.12-alpine3.22`, `3.12-alpine3.22`, `3.12.12-alpine`, `3.12-alpine`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/alpine3.22/Dockerfile) -- [`3.12.11-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.12/alpine3.21/Dockerfile) +- [`3.12.12-alpine3.21`, `3.12-alpine3.21`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/alpine3.21/Dockerfile) -- [`3.11.13-trixie`, `3.11-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/trixie/Dockerfile) +- [`3.11.14-trixie`, `3.11-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/trixie/Dockerfile) -- [`3.11.13-slim-trixie`, `3.11-slim-trixie`, `3.11.13-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/slim-trixie/Dockerfile) +- [`3.11.14-slim-trixie`, `3.11-slim-trixie`, `3.11.14-slim`, `3.11-slim`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/slim-trixie/Dockerfile) -- [`3.11.13-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/bookworm/Dockerfile) +- [`3.11.14-bookworm`, `3.11-bookworm`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/bookworm/Dockerfile) -- [`3.11.13-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/slim-bookworm/Dockerfile) +- [`3.11.14-slim-bookworm`, `3.11-slim-bookworm`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/slim-bookworm/Dockerfile) -- [`3.11.13-alpine3.22`, `3.11-alpine3.22`, `3.11.13-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.11/alpine3.22/Dockerfile) +- [`3.11.14-alpine3.22`, `3.11-alpine3.22`, `3.11.14-alpine`, `3.11-alpine`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/alpine3.22/Dockerfile) -- [`3.11.13-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.11/alpine3.21/Dockerfile) +- [`3.11.14-alpine3.21`, `3.11-alpine3.21`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/alpine3.21/Dockerfile) -- [`3.10.18-trixie`, `3.10-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/trixie/Dockerfile) +- [`3.10.19-trixie`, `3.10-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/trixie/Dockerfile) -- [`3.10.18-slim-trixie`, `3.10-slim-trixie`, `3.10.18-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/slim-trixie/Dockerfile) +- [`3.10.19-slim-trixie`, `3.10-slim-trixie`, `3.10.19-slim`, `3.10-slim`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/slim-trixie/Dockerfile) -- [`3.10.18-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/bookworm/Dockerfile) +- [`3.10.19-bookworm`, `3.10-bookworm`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/bookworm/Dockerfile) -- [`3.10.18-slim-bookworm`, `3.10-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/slim-bookworm/Dockerfile) +- [`3.10.19-slim-bookworm`, `3.10-slim-bookworm`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/slim-bookworm/Dockerfile) -- [`3.10.18-alpine3.22`, `3.10-alpine3.22`, `3.10.18-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.10/alpine3.22/Dockerfile) +- [`3.10.19-alpine3.22`, `3.10-alpine3.22`, `3.10.19-alpine`, `3.10-alpine`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/alpine3.22/Dockerfile) -- [`3.10.18-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.10/alpine3.21/Dockerfile) +- [`3.10.19-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/alpine3.21/Dockerfile) -- [`3.9.23-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/trixie/Dockerfile) +- [`3.9.24-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/trixie/Dockerfile) -- [`3.9.23-slim-trixie`, `3.9-slim-trixie`, `3.9.23-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/slim-trixie/Dockerfile) +- [`3.9.24-slim-trixie`, `3.9-slim-trixie`, `3.9.24-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/slim-trixie/Dockerfile) -- [`3.9.23-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/059df87446003f462a05aed0cff9b884da0b6874/3.9/bookworm/Dockerfile) +- [`3.9.24-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/bookworm/Dockerfile) -- [`3.9.23-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/slim-bookworm/Dockerfile) +- [`3.9.24-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/slim-bookworm/Dockerfile) -- [`3.9.23-alpine3.22`, `3.9-alpine3.22`, `3.9.23-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.9/alpine3.22/Dockerfile) +- [`3.9.24-alpine3.22`, `3.9-alpine3.22`, `3.9.24-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/alpine3.22/Dockerfile) -- [`3.9.23-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.9/alpine3.21/Dockerfile) +- [`3.9.24-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/alpine3.21/Dockerfile) ## Shared Tags @@ -132,21 +132,21 @@ WARNING: - [`3.13.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.13.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.12.11`, `3.12`: +- `3.12.12`, `3.12`: - - [`3.12.11-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.12/trixie/Dockerfile) + - [`3.12.12-trixie`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/trixie/Dockerfile) -- `3.11.13`, `3.11`: +- `3.11.14`, `3.11`: - - [`3.11.13-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.11/trixie/Dockerfile) + - [`3.11.14-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.11/trixie/Dockerfile) -- `3.10.18`, `3.10`: +- `3.10.19`, `3.10`: - - [`3.10.18-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.10/trixie/Dockerfile) + - [`3.10.19-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/trixie/Dockerfile) -- `3.9.23`, `3.9`: +- `3.9.24`, `3.9`: - - [`3.9.23-trixie`](https://github.com/docker-library/python/blob/093598a0190ba9074b899d6a0a21a00c859aac56/3.9/trixie/Dockerfile) + - [`3.9.24-trixie`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/trixie/Dockerfile) # Quick reference (cont.) From d3ac55a24215d39b10bb531202075a3f7e8e2a20 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Oct 2025 17:10:45 -0700 Subject: [PATCH 2599/2686] Run update.sh --- php/README.md | 56 ++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 42 insertions(+), 14 deletions(-) diff --git a/php/README.md b/php/README.md index 2479044b8856..460f40e439b4 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0RC1-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC1-trixie`, `8.5-rc-trixie`, `8.5.0RC1-cli`, `8.5-rc-cli`, `8.5.0RC1`, `8.5-rc`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0RC2-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC2-trixie`, `8.5-rc-trixie`, `8.5.0RC2-cli`, `8.5-rc-cli`, `8.5.0RC2`, `8.5-rc`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0RC1-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC1-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0RC2-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0RC1-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC1-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0RC2-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0RC1-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC1-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0RC2-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0RC1-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC1-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0RC2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC2-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0RC1-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0RC2-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0RC1-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0RC2-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0RC1-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0RC2-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0RC1-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC1-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC1-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC1-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0RC2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0RC1-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC1-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0RC2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0RC1-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC1-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0RC2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0RC1-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC1-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0RC2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0RC1-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0RC2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0RC1-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/a80c2f9204ed2e3ca0a13b13cc0cae780d9d700d/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0RC2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.14RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.14RC1-trixie`, `8.4-rc-trixie`, `8.4.14RC1-cli`, `8.4-rc-cli`, `8.4.14RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/cli/Dockerfile) + +- [`8.4.14RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.14RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/apache/Dockerfile) + +- [`8.4.14RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.14RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/fpm/Dockerfile) + +- [`8.4.14RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.14RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/zts/Dockerfile) + +- [`8.4.14RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.14RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.14RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.14RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.14RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.14RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.14RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.14RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.14RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.14RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.14RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.14RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.14RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.14RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.14RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.14RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.14RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/zts/Dockerfile) - [`8.4.13-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.13-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.13-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.13`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/cli/Dockerfile) From db0396845d7683cdab3b8baace8a989bd215827b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Oct 2025 13:10:53 -0700 Subject: [PATCH 2600/2686] Run update.sh --- friendica/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/friendica/README.md b/friendica/README.md index f04cf76595c2..9e5cae005a6b 100644 --- a/friendica/README.md +++ b/friendica/README.md @@ -36,11 +36,11 @@ WARNING: - [`2025.02-dev-fpm-alpine`, `dev-fpm-alpine`](https://github.com/friendica/docker/blob/e56ad74382f7d3f3fcfb5942bb39d2e7d5b27343/2025.02-dev/fpm-alpine/Dockerfile) -- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/apache/Dockerfile) +- [`2025.07-rc-apache`, `rc-apache`, `2025.07-rc`, `rc`](https://github.com/friendica/docker/blob/567780fda826aeaf8ec328fd48225f5d6a48e4e8/2025.07-rc/apache/Dockerfile) -- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/fpm/Dockerfile) +- [`2025.07-rc-fpm`, `rc-fpm`](https://github.com/friendica/docker/blob/567780fda826aeaf8ec328fd48225f5d6a48e4e8/2025.07-rc/fpm/Dockerfile) -- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/fe4374468345b2ddaedbb075f80b2b810e3ef6af/2025.07-rc/fpm-alpine/Dockerfile) +- [`2025.07-rc-fpm-alpine`, `rc-fpm-alpine`](https://github.com/friendica/docker/blob/567780fda826aeaf8ec328fd48225f5d6a48e4e8/2025.07-rc/fpm-alpine/Dockerfile) # Quick reference (cont.) From e54d7a815f9eef22742c1fe6592fbf4df8de599f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Oct 2025 16:10:58 -0700 Subject: [PATCH 2601/2686] Run update.sh --- php/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/php/README.md b/php/README.md index 460f40e439b4..839c1b5c2ec3 100644 --- a/php/README.md +++ b/php/README.md @@ -108,6 +108,34 @@ WARNING: - [`8.4.13-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.27RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.27RC1-trixie`, `8.3-rc-trixie`, `8.3.27RC1-cli`, `8.3-rc-cli`, `8.3.27RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/cli/Dockerfile) + +- [`8.3.27RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.27RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/apache/Dockerfile) + +- [`8.3.27RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.27RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/fpm/Dockerfile) + +- [`8.3.27RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.27RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/zts/Dockerfile) + +- [`8.3.27RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.27RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.27RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.27RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.27RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.27RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.27RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.27RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.27RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.27RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.27RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.27RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.27RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.27RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.27RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.27RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.27RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.26-cli-trixie`, `8.3-cli-trixie`, `8.3.26-trixie`, `8.3-trixie`, `8.3.26-cli`, `8.3-cli`, `8.3.26`, `8.3`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/cli/Dockerfile) - [`8.3.26-apache-trixie`, `8.3-apache-trixie`, `8.3.26-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/apache/Dockerfile) From 144086c65ef2d3444a020c740b1691d3c8023e1e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 10 Oct 2025 18:11:14 -0700 Subject: [PATCH 2602/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 2b1c41ec4536..b4ba4545ac95 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.0`, `6.3`, `6`, `latest`](https://github.com/docker-library/ghost/blob/2f3e896dfc7110d63a154e249b51ad64d39db2ba/6/debian/Dockerfile) +- [`6.3.1`, `6.3`, `6`, `latest`](https://github.com/docker-library/ghost/blob/d9131c1c24594d782e0ddac3a98daae9237a1202/6/debian/Dockerfile) -- [`6.3.0-alpine`, `6.3-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/2f3e896dfc7110d63a154e249b51ad64d39db2ba/6/alpine/Dockerfile) +- [`6.3.1-alpine`, `6.3-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9131c1c24594d782e0ddac3a98daae9237a1202/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) From ad1a95d69a8494e903cc6f303873fbc155e10ed3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Oct 2025 11:12:41 -0700 Subject: [PATCH 2603/2686] Run update.sh --- archlinux/README.md | 6 +++--- fedora/README.md | 8 ++++---- oraclelinux/README.md | 22 +++++++++++----------- photon/README.md | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index e4dc531a19b7..f2873a02613e 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.base) +- [`latest`, `base`, `base-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.base) -- [`base-devel`, `base-devel-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20251005.0.430597`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/bab15f2a96c4dab1c0e0bbc6620900f5ba79d171/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.multilib-devel) # Quick reference (cont.) diff --git a/fedora/README.md b/fedora/README.md index 9c9149a5b42f..1bddd86d51d8 100644 --- a/fedora/README.md +++ b/fedora/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/1815a7988ca6c8151261a04e364538a7f8f2dd32/x86_64/Dockerfile) +- [`41`](https://github.com/fedora-cloud/docker-brew-fedora/blob/fba75f9783b458ac342cc675892688169f6d5f9c/x86_64/Dockerfile) -- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/24478869ab3e2f39982ffc33a58a46c021ef32cd/x86_64/Dockerfile) +- [`42`, `latest`](https://github.com/fedora-cloud/docker-brew-fedora/blob/b13b13dd4561da14a4de975c2ec754cb3fda5a27/x86_64/Dockerfile) -- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/204a6150a0c26fb1a6148fd2d6565c04ea64e3d7/x86_64/Dockerfile) +- [`43`](https://github.com/fedora-cloud/docker-brew-fedora/blob/d256792f0edba99d8c16d059c56709bff135a26b/x86_64/Dockerfile) -- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/39a60f713c82c7d8d3fa03777a304f680a6050cb/x86_64/Dockerfile) +- [`44`, `rawhide`](https://github.com/fedora-cloud/docker-brew-fedora/blob/7c36ff8d21c058cce31ee9e25f0c9c0537369c2f/x86_64/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c9a7aeb26ff5..2f6b74ac56f0 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/a5c2a9eb92c73cbb5e5b402521c6c565b44b3cfb/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index e128def01c8b..89d39adb1466 100644 --- a/photon/README.md +++ b/photon/README.md @@ -26,7 +26,7 @@ WARNING: - [`5.0`, `5.0-20250920`, `latest`](https://github.com/vmware/photon-docker-image/blob/561412a9759919b9fb52b1852369de116d210f2b/docker/Dockerfile) -- [`4.0`, `4.0-20250923`](https://github.com/vmware/photon-docker-image/blob/da6495f4a071346b5f8af706f99a80eba540bb14/docker/Dockerfile) +- [`4.0`, `4.0-20251012`](https://github.com/vmware/photon-docker-image/blob/75d6173bc370ace82b24de6e7319483fd8e54869/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile) From f17d3d835bb925beff18b63dcdb5bebc9f661323 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Oct 2025 12:10:45 -0700 Subject: [PATCH 2604/2686] Run update.sh --- golang/README.md | 12 ++++++------ openjdk/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/golang/README.md b/golang/README.md index 3a73c660f527..594ba341a80a 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.8-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20251003-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/trixie/Dockerfile) +- [`tip-20251011-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/trixie/Dockerfile) -- [`tip-20251003-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/bookworm/Dockerfile) +- [`tip-20251011-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/bookworm/Dockerfile) -- [`tip-20251003-alpine3.22`, `tip-alpine3.22`, `tip-20251003-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/alpine3.22/Dockerfile) +- [`tip-20251011-alpine3.22`, `tip-alpine3.22`, `tip-20251011-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/alpine3.22/Dockerfile) -- [`tip-20251003-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/alpine3.21/Dockerfile) +- [`tip-20251011-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.8-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20251003`, `tip`: +- `tip-20251011`, `tip`: - - [`tip-20251003-trixie`](https://github.com/docker-library/golang/blob/80da664306bd5e80d17fbe09ea76f50f74fb87f9/tip/trixie/Dockerfile) + - [`tip-20251011-trixie`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/openjdk/README.md b/openjdk/README.md index 03f021cc1029..c69304fe0ee6 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-18-jdk-oraclelinux9`, `26-ea-18-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-18-jdk-oracle`, `26-ea-18-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-19-jdk-oraclelinux9`, `26-ea-19-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-19-jdk-oracle`, `26-ea-19-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-18-jdk-oraclelinux8`, `26-ea-18-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-19-jdk-oraclelinux8`, `26-ea-19-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-18-jdk-trixie`, `26-ea-18-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/trixie/Dockerfile) +- [`26-ea-19-jdk-trixie`, `26-ea-19-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/trixie/Dockerfile) -- [`26-ea-18-jdk-slim-trixie`, `26-ea-18-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-18-jdk-slim`, `26-ea-18-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-19-jdk-slim-trixie`, `26-ea-19-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-19-jdk-slim`, `26-ea-19-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-18-jdk-bookworm`, `26-ea-18-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/bookworm/Dockerfile) +- [`26-ea-19-jdk-bookworm`, `26-ea-19-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/bookworm/Dockerfile) -- [`26-ea-18-jdk-slim-bookworm`, `26-ea-18-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-19-jdk-slim-bookworm`, `26-ea-19-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-18-jdk-windowsservercore-ltsc2025`, `26-ea-18-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-19-jdk-windowsservercore-ltsc2025`, `26-ea-19-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-18-jdk-windowsservercore-ltsc2022`, `26-ea-18-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-19-jdk-windowsservercore-ltsc2022`, `26-ea-19-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-18-jdk-nanoserver-ltsc2025`, `26-ea-18-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-19-jdk-nanoserver-ltsc2025`, `26-ea-19-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-18-jdk-nanoserver-ltsc2022`, `26-ea-18-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-19-jdk-nanoserver-ltsc2022`, `26-ea-19-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-18-jdk`, `26-ea-18`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-19-jdk`, `26-ea-19`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-18-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-18-jdk-windowsservercore`, `26-ea-18-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-19-jdk-windowsservercore`, `26-ea-19-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-18-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-18-jdk-nanoserver`, `26-ea-18-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-19-jdk-nanoserver`, `26-ea-19-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-18-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-18-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/b3dbb5ab0eea09b8f4887544cc4be3efd6f03678/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-19-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-19-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From fabdbbb5141fda85a0f485c263848dcf553a217b Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Mon, 13 Oct 2025 15:23:42 -0700 Subject: [PATCH 2605/2686] Retire Unit. (#2630) Refs: https://github.com/docker-library/official-images/issues/20039 --- unit/README-short.txt | 2 +- unit/deprecated.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 unit/deprecated.md diff --git a/unit/README-short.txt b/unit/README-short.txt index ba3ab5549e80..2a770bfc5270 100644 --- a/unit/README-short.txt +++ b/unit/README-short.txt @@ -1 +1 @@ -Official build of NGINX Unit: Universal Web App Server +DEPRECATED; Official build of NGINX Unit: Universal Web App Server diff --git a/unit/deprecated.md b/unit/deprecated.md new file mode 100644 index 000000000000..2acd8bfd6833 --- /dev/null +++ b/unit/deprecated.md @@ -0,0 +1,3 @@ +As of October 2025, NGINX Unit is archived and unmaintained. The images will not receive release or security updates. + +https://github.com/nginx/unit?tab=readme-ov-file#note-this-repository-has-been-archived-there-will-likely-be-no-further-development-at-this-repo-and-security-vulnerabilities-may-be-unaddressed From b4d7a745185a80c8fe3638045d77700c995e7f28 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 13 Oct 2025 16:11:32 -0700 Subject: [PATCH 2606/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ tomcat/README.md | 72 ++++++++++++++++++++++++------------------------ unit/README.md | 54 ++++++------------------------------ 3 files changed, 80 insertions(+), 118 deletions(-) diff --git a/golang/README.md b/golang/README.md index 594ba341a80a..fb95269d0b6f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`1.25.2-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/trixie/Dockerfile) +- [`1.25.3-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/trixie/Dockerfile) -- [`1.25.2-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/bookworm/Dockerfile) +- [`1.25.3-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/bookworm/Dockerfile) -- [`1.25.2-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.2-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/alpine3.22/Dockerfile) +- [`1.25.3-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.3-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/alpine3.22/Dockerfile) -- [`1.25.2-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/alpine3.21/Dockerfile) +- [`1.25.3-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/alpine3.21/Dockerfile) -- [`1.25.2-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25.3-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25.2-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25.3-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25.2-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25.3-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25.2-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25.3-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.8-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/trixie/Dockerfile) +- [`1.24.9-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/trixie/Dockerfile) -- [`1.24.8-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/bookworm/Dockerfile) +- [`1.24.9-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/bookworm/Dockerfile) -- [`1.24.8-alpine3.22`, `1.24-alpine3.22`, `1.24.8-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/alpine3.22/Dockerfile) +- [`1.24.9-alpine3.22`, `1.24-alpine3.22`, `1.24.9-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/alpine3.22/Dockerfile) -- [`1.24.8-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/alpine3.21/Dockerfile) +- [`1.24.9-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/alpine3.21/Dockerfile) -- [`1.24.8-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.9-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.8-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.9-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.8-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.9-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.8-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.9-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20251011-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/trixie/Dockerfile) @@ -70,37 +70,37 @@ WARNING: ## Shared Tags -- `1.25.2`, `1.25`, `1`, `latest`: +- `1.25.3`, `1.25`, `1`, `latest`: - - [`1.25.2-trixie`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/trixie/Dockerfile) - - [`1.25.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.3-trixie`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/trixie/Dockerfile) + - [`1.25.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.2-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.25.3-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.25.2-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.2-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.2-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.25.3-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.25.2-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25.2-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/65a36abba8dba306c230eaa5fa2d822e62febbe0/1.25/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25.3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.8`, `1.24`: +- `1.24.9`, `1.24`: - - [`1.24.8-trixie`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/trixie/Dockerfile) - - [`1.24.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.9-trixie`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/trixie/Dockerfile) + - [`1.24.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.8-windowsservercore`, `1.24-windowsservercore`: +- `1.24.9-windowsservercore`, `1.24-windowsservercore`: - - [`1.24.8-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.8-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.8-nanoserver`, `1.24-nanoserver`: +- `1.24.9-nanoserver`, `1.24-nanoserver`: - - [`1.24.8-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.8-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/1538c1993363659087125a7f2a18f5136ba12de2/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20251011`, `tip`: diff --git a/tomcat/README.md b/tomcat/README.md index 69c45ba7d087..af9e70b0c7b5 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.12-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.12-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.12-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.12`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk25/temurin-noble/Dockerfile) +- [`11.0.13-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.13-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.13-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.13`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk25/temurin-noble/Dockerfile) -- [`11.0.12-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.12-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.12-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre25/temurin-noble/Dockerfile) +- [`11.0.13-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.13-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.13-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre25/temurin-noble/Dockerfile) -- [`11.0.12-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk25/temurin-jammy/Dockerfile) +- [`11.0.13-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk25/temurin-jammy/Dockerfile) -- [`11.0.12-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre25/temurin-jammy/Dockerfile) +- [`11.0.13-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre25/temurin-jammy/Dockerfile) -- [`11.0.12-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.12-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.12-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.13-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.13-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.13-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.12-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.12-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.12-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.13-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.13-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.13-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.12-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.13-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.12-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.13-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.12-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.12-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.12-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.13-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.13-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.13-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.12-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.12-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.12-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.13-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.13-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.13-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.12-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.13-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.12-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/3deca0638cb525a77bb96e678902697486d16d3e/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.13-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre17/temurin-jammy/Dockerfile) - [`10.1.47-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.47-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.47-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.47`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk25/temurin-noble/Dockerfile) @@ -80,53 +80,53 @@ WARNING: - [`10.1.47-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.110-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.110-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.110-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.110`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk25/temurin-noble/Dockerfile) +- [`9.0.111-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.111-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.111-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.111`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk25/temurin-noble/Dockerfile) -- [`9.0.110-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.110-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.110-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre25/temurin-noble/Dockerfile) +- [`9.0.111-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.111-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.111-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre25/temurin-noble/Dockerfile) -- [`9.0.110-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk25/temurin-jammy/Dockerfile) +- [`9.0.111-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk25/temurin-jammy/Dockerfile) -- [`9.0.110-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre25/temurin-jammy/Dockerfile) +- [`9.0.111-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre25/temurin-jammy/Dockerfile) -- [`9.0.110-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.110-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.110-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.111-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.111-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.111-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.110-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.110-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.110-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.111-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.111-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.111-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.110-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.111-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.110-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.111-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.110-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.110-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.111-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.111-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.110-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.110-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.110-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.111-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.111-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.111-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.110-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.110-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.110-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.111-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.111-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.111-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.110-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.111-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.110-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.111-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.110-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.110-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.111-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.111-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.110-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.110-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.110-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.111-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.111-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.111-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.110-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.110-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.110-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.111-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.111-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.111-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.110-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.111-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.110-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.111-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.110-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.110-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.111-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.111-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.110-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.110-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.110-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.111-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.111-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.111-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.110-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.110-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.110-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.111-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.111-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.111-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.110-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.111-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.110-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.111-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.110-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.110-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/d60af5e192ce557d3fd70e11e355d2c1195fa884/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.111-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.111-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) diff --git a/unit/README.md b/unit/README.md index 78904cfb3483..735a50c9919b 100644 --- a/unit/README.md +++ b/unit/README.md @@ -14,6 +14,12 @@ WARNING: --> +# **DEPRECATION NOTICE** + +As of October 2025, NGINX Unit is archived and unmaintained. The images will not receive release or security updates. + +https://github.com/nginx/unit?tab=readme-ov-file#note-this-repository-has-been-archived-there-will-likely-be-no-further-development-at-this-repo-and-security-vulnerabilities-may-be-unaddressed + # Quick reference - **Maintained by**: @@ -24,39 +30,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34.2-go1.25`, `go1.25`, `go1`, `go`](https://github.com/nginx/unit/blob/e89c9e743ec1585fa64206f8757e077e7dd5dbc9/pkg/docker/Dockerfile.go1.25) - -- [`1.34.2-go1.24`, `go1.24`](https://github.com/nginx/unit/blob/e89c9e743ec1585fa64206f8757e077e7dd5dbc9/pkg/docker/Dockerfile.go1.24) - -- [`1.34.2-jsc11`, `jsc11`, `jsc`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.jsc11) - -- [`1.34.2-node22`, `node22`, `node`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.node22) - -- [`1.34.2-node20`, `node20`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.node20) - -- [`1.34.2-perl5.40`, `perl5.40`, `perl5`, `perl`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.perl5.40) - -- [`1.34.2-perl5.38`, `perl5.38`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.perl5.38) - -- [`1.34.2-php8.4`, `php8.4`, `php8`, `php`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.php8.4) - -- [`1.34.2-php8.3`, `php8.3`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.php8.3) - -- [`1.34.2-python3.13`, `python3.13`, `python3`, `python`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.13) - -- [`1.34.2-python3.12`, `python3.12`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.12) - -- [`1.34.2-ruby3.3`, `ruby3.3`, `ruby3`, `ruby`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.ruby3.3) - -- [`1.34.2-ruby3.2`, `ruby3.2`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.ruby3.2) - -- [`1.34.2-python3.13-slim`, `python-slim`, `python3-slim`, `python3.13-slim`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.13-slim) - -- [`1.34.2-python3.12-slim`, `python3.12-slim`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.python3.12-slim) - -- [`1.34.2-wasm`, `wasm`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.wasm) - -- [`1.34.2-minimal`, `minimal`, `latest`](https://github.com/nginx/unit/blob/bda6a949b8a9f3f5ebe0e961ae52756ceb9dbb68/pkg/docker/Dockerfile.minimal) +**No supported tags** # Quick reference (cont.) @@ -64,7 +38,7 @@ WARNING: [https://github.com/nginx/unit/issues](https://github.com/nginx/unit/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/unit/), [`arm64v8`](https://hub.docker.com/r/arm64v8/unit/) + **No supported architectures** - **Published image artifact details**: [repo-info repo's `repos/unit/` directory](https://github.com/docker-library/repo-info/blob/master/repos/unit) ([history](https://github.com/docker-library/repo-info/commits/master/repos/unit)) @@ -93,18 +67,6 @@ Please see [Unit's website](https://unit.nginx.org/installation/#docker-images) Please check the [Initial Configuration](https://unit.nginx.org/installation/#initial-configuration) section on Unit's website. Additionally, our [Docker howto](https://unit.nginx.org/howto/docker/) can be of help. -# Image Variants - -The `unit` images come in many flavors, each designed for a specific use case. - -## `unit:` - -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. - -## `unit:-slim` - -This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `unit`. Unless you are working in an environment where *only* the `unit` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. - # License View [license information](https://raw.githubusercontent.com/nginx/unit/master/LICENSE) for the software contained in this image. From 0ede7480b7cf3fefa085b6da44eecbdb250abe23 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Oct 2025 10:11:05 -0700 Subject: [PATCH 2607/2686] Run update.sh --- nats/README.md | 54 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 +++++++++--------- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/nats/README.md b/nats/README.md index fde2b9f7a0ad..37d1646c2168 100644 --- a/nats/README.md +++ b/nats/README.md @@ -28,70 +28,70 @@ WARNING: ## Simple Tags -- [`2.12.0-alpine3.22`, `2.12-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.12.0-alpine`, `2.12-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/alpine3.22/Dockerfile) +- [`2.12.1-alpine3.22`, `2.12-alpine3.22`, `2-alpine3.22`, `alpine3.22`, `2.12.1-alpine`, `2.12-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/alpine3.22/Dockerfile) -- [`2.12.0-scratch`, `2.12-scratch`, `2-scratch`, `scratch`, `2.12.0-linux`, `2.12-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/scratch/Dockerfile) +- [`2.12.1-scratch`, `2.12-scratch`, `2-scratch`, `scratch`, `2.12.1-linux`, `2.12-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/scratch/Dockerfile) -- [`2.12.0-windowsservercore-ltsc2022`, `2.12-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.12.1-windowsservercore-ltsc2022`, `2.12-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.12.0-nanoserver-ltsc2022`, `2.12-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) +- [`2.12.1-nanoserver-ltsc2022`, `2.12-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/nanoserver-ltsc2022/Dockerfile) -- [`2.11.10-alpine3.22`, `2.11-alpine3.22`, `2.11.10-alpine`, `2.11-alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/alpine3.22/Dockerfile) +- [`2.11.10-alpine3.22`, `2.11-alpine3.22`, `2.11.10-alpine`, `2.11-alpine`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/alpine3.22/Dockerfile) -- [`2.11.10-scratch`, `2.11-scratch`, `2.11.10-linux`, `2.11-linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/scratch/Dockerfile) +- [`2.11.10-scratch`, `2.11-scratch`, `2.11.10-linux`, `2.11-linux`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/scratch/Dockerfile) -- [`2.11.10-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.11.10-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.11.10-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) +- [`2.11.10-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/nanoserver-ltsc2022/Dockerfile) -- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/alpine3.22/Dockerfile) +- [`2.10.29-alpine3.22`, `2.10-alpine3.22`, `2.10.29-alpine`, `2.10-alpine`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/alpine3.22/Dockerfile) -- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/scratch/Dockerfile) +- [`2.10.29-scratch`, `2.10-scratch`, `2.10.29-linux`, `2.10-linux`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/scratch/Dockerfile) -- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/windowsservercore-ltsc2022/Dockerfile) +- [`2.10.29-windowsservercore-ltsc2022`, `2.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/windowsservercore-ltsc2022/Dockerfile) -- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) +- [`2.10.29-nanoserver-ltsc2022`, `2.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `2.12.0`, `2.12`, `2`, `latest`: +- `2.12.1`, `2.12`, `2`, `latest`: - - [`2.12.0-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/scratch/Dockerfile) - - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) + - [`2.12.1-scratch`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/scratch/Dockerfile) + - [`2.12.1-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/nanoserver-ltsc2022/Dockerfile) -- `2.12.0-windowsservercore`, `2.12-windowsservercore`, `2-windowsservercore`, `windowsservercore`: +- `2.12.1-windowsservercore`, `2.12-windowsservercore`, `2-windowsservercore`, `windowsservercore`: - - [`2.12.0-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.12.1-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/windowsservercore-ltsc2022/Dockerfile) -- `2.12.0-nanoserver`, `2.12-nanoserver`, `2-nanoserver`, `nanoserver`: +- `2.12.1-nanoserver`, `2.12-nanoserver`, `2-nanoserver`, `nanoserver`: - - [`2.12.0-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.12.x/nanoserver-ltsc2022/Dockerfile) + - [`2.12.1-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.12.x/nanoserver-ltsc2022/Dockerfile) - `2.11.10`, `2.11`: - - [`2.11.10-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/scratch/Dockerfile) - - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.10-scratch`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/scratch/Dockerfile) + - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.11.10-windowsservercore`, `2.11-windowsservercore`: - - [`2.11.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.11.10-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/windowsservercore-ltsc2022/Dockerfile) - `2.11.10-nanoserver`, `2.11-nanoserver`: - - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.11.x/nanoserver-ltsc2022/Dockerfile) + - [`2.11.10-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.11.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29`, `2.10`: - - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/scratch/Dockerfile) - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-scratch`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/scratch/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/nanoserver-ltsc2022/Dockerfile) - `2.10.29-windowsservercore`, `2.10-windowsservercore`: - - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/windowsservercore-ltsc2022/Dockerfile) + - [`2.10.29-windowsservercore-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/windowsservercore-ltsc2022/Dockerfile) - `2.10.29-nanoserver`, `2.10-nanoserver`: - - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/4c5b10892eacec0b4d2eec9dfaccff3798a23eca/2.10.x/nanoserver-ltsc2022/Dockerfile) + - [`2.10.29-nanoserver-ltsc2022`](https://github.com/nats-io/nats-docker/blob/5b46acd148b1b7d13a084cca7fc1a50e75412360/2.10.x/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 2f6b74ac56f0..606b6b46b695 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fa75806c1ac54ec4e937b364811231ef8eb5e5c6/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7-slim-fips/Dockerfile) # Quick reference (cont.) From f6c8b890f150af83784be2ffdd9b584382810ee9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Oct 2025 11:11:03 -0700 Subject: [PATCH 2608/2686] Run update.sh --- busybox/README.md | 16 +++++++-------- joomla/README.md | 50 ++++++++++------------------------------------- tomcat/README.md | 32 +++++++++++++++--------------- 3 files changed, 34 insertions(+), 64 deletions(-) diff --git a/busybox/README.md b/busybox/README.md index 2ac00dffaed4..323b5585fbb9 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/9c2d0c6fbaaf2ca1b4c19027fa515d9e797e7199/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/joomla/README.md b/joomla/README.md index 2aa8b51c75c6..87a75f86377a 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -24,53 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.0-rc1`, `6.0`, `6.0.rc`, `6.0.0-rc`, `6.0.0-rc1-apache`, `6.0-apache`, `6.0.rc-apache`, `6.0.0-rc-apache`, `6.0.0-rc1-php8.3`, `6.0-php8.3`, `6.0.rc-php8.3`, `6.0.0-rc-php8.3`, `6.0.0-rc1-php8.3-apache`, `6.0-php8.3-apache`, `6.0.rc-php8.3-apache`, `6.0.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/apache/Dockerfile) +- [`6.0.0`, `6.0`, `6`, `latest`, `6.0.0-apache`, `6.0-apache`, `6-apache`, `apache`, `6.0.0-php8.3`, `6.0-php8.3`, `6-php8.3`, `php8.3`, `6.0.0-php8.3-apache`, `6.0-php8.3-apache`, `6-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/6.0/php8.3/apache/Dockerfile) -- [`6.0.0-rc1-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6.0.rc-php8.3-fpm-alpine`, `6.0.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/fpm-alpine/Dockerfile) +- [`6.0.0-php8.3-fpm-alpine`, `6.0-php8.3-fpm-alpine`, `6-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/6.0/php8.3/fpm-alpine/Dockerfile) -- [`6.0.0-rc1-php8.3-fpm`, `6.0-php8.3-fpm`, `6.0.rc-php8.3-fpm`, `6.0.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/6.0.rc/php8.3/fpm/Dockerfile) +- [`6.0.0-php8.3-fpm`, `6.0-php8.3-fpm`, `6-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/6.0/php8.3/fpm/Dockerfile) -- [`5.4.0-rc1-php8.2-apache`, `5.4-php8.2-apache`, `5.4.rc-php8.2-apache`, `5.4.0-rc-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/apache/Dockerfile) +- [`5.4.0-php8.2-apache`, `5.4-php8.2-apache`, `5-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.2/apache/Dockerfile) -- [`5.4.0-rc1-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5.4.rc-php8.2-fpm-alpine`, `5.4.0-rc-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/fpm-alpine/Dockerfile) +- [`5.4.0-php8.2-fpm-alpine`, `5.4-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.2/fpm-alpine/Dockerfile) -- [`5.4.0-rc1-php8.2-fpm`, `5.4-php8.2-fpm`, `5.4.rc-php8.2-fpm`, `5.4.0-rc-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.2/fpm/Dockerfile) +- [`5.4.0-php8.2-fpm`, `5.4-php8.2-fpm`, `5-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.2/fpm/Dockerfile) -- [`5.4.0-rc1`, `5.4`, `5.4.rc`, `5.4.0-rc`, `5.4.0-rc1-apache`, `5.4-apache`, `5.4.rc-apache`, `5.4.0-rc-apache`, `5.4.0-rc1-php8.3`, `5.4-php8.3`, `5.4.rc-php8.3`, `5.4.0-rc-php8.3`, `5.4.0-rc1-php8.3-apache`, `5.4-php8.3-apache`, `5.4.rc-php8.3-apache`, `5.4.0-rc-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/apache/Dockerfile) +- [`5.4.0`, `5.4`, `5`, `5.4.0-apache`, `5.4-apache`, `5-apache`, `5.4.0-php8.3`, `5.4-php8.3`, `5-php8.3`, `5.4.0-php8.3-apache`, `5.4-php8.3-apache`, `5-php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.3/apache/Dockerfile) -- [`5.4.0-rc1-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5.4.rc-php8.3-fpm-alpine`, `5.4.0-rc-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/fpm-alpine/Dockerfile) +- [`5.4.0-php8.3-fpm-alpine`, `5.4-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.3/fpm-alpine/Dockerfile) -- [`5.4.0-rc1-php8.3-fpm`, `5.4-php8.3-fpm`, `5.4.rc-php8.3-fpm`, `5.4.0-rc-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/aef82542b636262efcb9ecd636b53a2fb0b87eaf/5.4.rc/php8.3/fpm/Dockerfile) - -- [`5.3.4-php8.1-apache`, `5.3-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/apache/Dockerfile) - -- [`5.3.4-php8.1-fpm-alpine`, `5.3-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/fpm-alpine/Dockerfile) - -- [`5.3.4-php8.1-fpm`, `5.3-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.1/fpm/Dockerfile) - -- [`5.3.4-php8.2-apache`, `5.3-php8.2-apache`, `5-php8.2-apache`, `php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/apache/Dockerfile) - -- [`5.3.4-php8.2-fpm-alpine`, `5.3-php8.2-fpm-alpine`, `5-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/fpm-alpine/Dockerfile) - -- [`5.3.4-php8.2-fpm`, `5.3-php8.2-fpm`, `5-php8.2-fpm`, `php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.2/fpm/Dockerfile) - -- [`5.3.4`, `5.3`, `5`, `latest`, `5.3.4-apache`, `5.3-apache`, `5-apache`, `apache`, `5.3.4-php8.3`, `5.3-php8.3`, `5-php8.3`, `php8.3`, `5.3.4-php8.3-apache`, `5.3-php8.3-apache`, `5-php8.3-apache`, `php8.3-apache`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/apache/Dockerfile) - -- [`5.3.4-php8.3-fpm-alpine`, `5.3-php8.3-fpm-alpine`, `5-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/fpm-alpine/Dockerfile) - -- [`5.3.4-php8.3-fpm`, `5.3-php8.3-fpm`, `5-php8.3-fpm`, `php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/648ca79e48e868150bc346a315233f09770bc565/5.3/php8.3/fpm/Dockerfile) - -- [`4.4.14-php8.1-apache`, `4.4-php8.1-apache`, `4-php8.1-apache`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/apache/Dockerfile) - -- [`4.4.14-php8.1-fpm-alpine`, `4.4-php8.1-fpm-alpine`, `4-php8.1-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/fpm-alpine/Dockerfile) - -- [`4.4.14-php8.1-fpm`, `4.4-php8.1-fpm`, `4-php8.1-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.1/fpm/Dockerfile) - -- [`4.4.14`, `4.4`, `4`, `4.4.14-apache`, `4.4-apache`, `4-apache`, `4.4.14-php8.2`, `4.4-php8.2`, `4-php8.2`, `4.4.14-php8.2-apache`, `4.4-php8.2-apache`, `4-php8.2-apache`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/apache/Dockerfile) - -- [`4.4.14-php8.2-fpm-alpine`, `4.4-php8.2-fpm-alpine`, `4-php8.2-fpm-alpine`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/fpm-alpine/Dockerfile) - -- [`4.4.14-php8.2-fpm`, `4.4-php8.2-fpm`, `4-php8.2-fpm`](https://github.com/joomla-docker/docker-joomla/blob/c46c028c70bdd37a5526d72566cf6c52449b7fad/4.4/php8.2/fpm/Dockerfile) +- [`5.4.0-php8.3-fpm`, `5.4-php8.3-fpm`, `5-php8.3-fpm`](https://github.com/joomla-docker/docker-joomla/blob/e59b7df4c07b205c5e3f9df912cf2af0fec9e383/5.4/php8.3/fpm/Dockerfile) # Quick reference (cont.) @@ -78,7 +48,7 @@ WARNING: [https://github.com/joomla-docker/docker-joomla/issues](https://github.com/joomla-docker/docker-joomla/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`mips64le`](https://hub.docker.com/r/mips64le/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) + [`amd64`](https://hub.docker.com/r/amd64/joomla/), [`arm32v5`](https://hub.docker.com/r/arm32v5/joomla/), [`arm32v6`](https://hub.docker.com/r/arm32v6/joomla/), [`arm32v7`](https://hub.docker.com/r/arm32v7/joomla/), [`arm64v8`](https://hub.docker.com/r/arm64v8/joomla/), [`i386`](https://hub.docker.com/r/i386/joomla/), [`ppc64le`](https://hub.docker.com/r/ppc64le/joomla/), [`riscv64`](https://hub.docker.com/r/riscv64/joomla/), [`s390x`](https://hub.docker.com/r/s390x/joomla/) - **Published image artifact details**: [repo-info repo's `repos/joomla/` directory](https://github.com/docker-library/repo-info/blob/master/repos/joomla) ([history](https://github.com/docker-library/repo-info/commits/master/repos/joomla)) diff --git a/tomcat/README.md b/tomcat/README.md index af9e70b0c7b5..a958629835b4 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -48,37 +48,37 @@ WARNING: - [`11.0.13-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.47-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.47-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.47-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.47`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk25/temurin-noble/Dockerfile) +- [`10.1.48-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.48-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.48-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.48`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk25/temurin-noble/Dockerfile) -- [`10.1.47-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.47-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.47-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre25/temurin-noble/Dockerfile) +- [`10.1.48-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.48-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.48-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre25/temurin-noble/Dockerfile) -- [`10.1.47-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk25/temurin-jammy/Dockerfile) +- [`10.1.48-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk25/temurin-jammy/Dockerfile) -- [`10.1.47-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre25/temurin-jammy/Dockerfile) +- [`10.1.48-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre25/temurin-jammy/Dockerfile) -- [`10.1.47-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.47-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.47-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.48-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.48-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.48-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.47-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.47-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.47-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.48-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.48-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.48-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.47-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.48-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.47-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.48-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.47-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.47-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.47-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.48-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.48-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.48-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.47-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.47-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.47-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.48-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.48-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.48-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.47-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.48-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.47-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.48-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.47-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.47-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.47-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.48-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.48-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.48-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.47-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.47-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.47-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.48-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.48-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.48-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.47-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.48-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.47-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/f4498d3f44a01eee502da7adbacc89a0eecc7727/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.48-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre11/temurin-jammy/Dockerfile) - [`9.0.111-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.111-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.111-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.111`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk25/temurin-noble/Dockerfile) From 8171b20093ab3c3ec87d8b727310a2b8a5c9dd64 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Oct 2025 12:10:47 -0700 Subject: [PATCH 2609/2686] Run update.sh --- docker/README.md | 15 +++++++++++++++ python/README.md | 27 +++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/docker/README.md b/docker/README.md index 3a0dbadd2167..56efe4f9e2f8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,6 +28,16 @@ WARNING: ## Simple Tags +- [`29.0.0-rc.1-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/cli/Dockerfile) + +- [`29.0.0-rc.1-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.1-dind-alpine3.22`, `29.0.0-rc.1`, `29-rc`, `rc`, `29.0.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/dind/Dockerfile) + +- [`29.0.0-rc.1-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/dind-rootless/Dockerfile) + +- [`29.0.0-rc.1-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`29.0.0-rc.1-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.5.1-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/cli/Dockerfile) - [`28.5.1-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.1-dind-alpine3.22`, `28.5.1`, `28.5`, `28`, `latest`, `28.5.1-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind/Dockerfile) @@ -40,6 +50,11 @@ WARNING: ## Shared Tags +- `29.0.0-rc.1-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: + + - [`29.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`29.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `28.5.1-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - [`28.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2025/Dockerfile) diff --git a/python/README.md b/python/README.md index 581df7330104..defc5a2d001a 100644 --- a/python/README.md +++ b/python/README.md @@ -28,6 +28,22 @@ WARNING: ## Simple Tags +- [`3.15.0a1-trixie`, `3.15-rc-trixie`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/trixie/Dockerfile) + +- [`3.15.0a1-slim-trixie`, `3.15-rc-slim-trixie`, `3.15.0a1-slim`, `3.15-rc-slim`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/slim-trixie/Dockerfile) + +- [`3.15.0a1-bookworm`, `3.15-rc-bookworm`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/bookworm/Dockerfile) + +- [`3.15.0a1-slim-bookworm`, `3.15-rc-slim-bookworm`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/slim-bookworm/Dockerfile) + +- [`3.15.0a1-alpine3.22`, `3.15-rc-alpine3.22`, `3.15.0a1-alpine`, `3.15-rc-alpine`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/alpine3.22/Dockerfile) + +- [`3.15.0a1-alpine3.21`, `3.15-rc-alpine3.21`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/alpine3.21/Dockerfile) + +- [`3.15.0a1-windowsservercore-ltsc2025`, `3.15-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`3.15.0a1-windowsservercore-ltsc2022`, `3.15-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.14.0-trixie`, `3.14-trixie`, `3-trixie`, `trixie`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/trixie/Dockerfile) - [`3.14.0-slim-trixie`, `3.14-slim-trixie`, `3-slim-trixie`, `slim-trixie`, `3.14.0-slim`, `3.14-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/slim-trixie/Dockerfile) @@ -110,6 +126,17 @@ WARNING: ## Shared Tags +- `3.15.0a1`, `3.15-rc`: + + - [`3.15.0a1-trixie`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/trixie/Dockerfile) + - [`3.15.0a1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.15.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `3.15.0a1-windowsservercore`, `3.15-rc-windowsservercore`: + + - [`3.15.0a1-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.15.0a1-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/303456576fd52b3e000639d5cfdf384442e730d7/3.15-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - `3.14.0`, `3.14`, `3`, `latest`: - [`3.14.0-trixie`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.14/trixie/Dockerfile) From f7f16748ae1e8984dc811d784181706b66779c9b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 14 Oct 2025 14:11:08 -0700 Subject: [PATCH 2610/2686] Run update.sh --- dart/README.md | 4 ++-- swipl/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dart/README.md b/dart/README.md index 5607884272e6..b2d230ceb849 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/81a1cf7cc3f0dee1bebfe1d38b9c4e549e5700e7/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2d3d170c5d17234f7ccc7e47a3bae77d81ff696c/stable/trixie/Dockerfile) -- [`3.10.0-290.1.beta-sdk`, `beta-sdk`, `3.10.0-290.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/81a1cf7cc3f0dee1bebfe1d38b9c4e549e5700e7/beta/trixie/Dockerfile) +- [`3.10.0-290.2.beta-sdk`, `beta-sdk`, `3.10.0-290.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2d3d170c5d17234f7ccc7e47a3bae77d81ff696c/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/swipl/README.md b/swipl/README.md index 9cff4aea9fa7..fe9e996d618f 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.31`](https://github.com/SWI-Prolog/docker-swipl/blob/51e839d7ea84489bbbcfb48c51e13ee9d5621340/9.3.31/bookworm/Dockerfile) +- [`latest`, `9.3.32`](https://github.com/SWI-Prolog/docker-swipl/blob/d4411aa88faba036ab47f95f744f77b4fec6749d/9.3.32/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/51e839d7ea84489bbbcfb48c51e13ee9d5621340/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/d4411aa88faba036ab47f95f744f77b4fec6749d/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From 575e3ad59efc5554ff72aead467eec10e63cb6d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Oct 2025 10:10:55 -0700 Subject: [PATCH 2611/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- python/README.md | 30 +++++++++++++++--------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 606b6b46b695..bd34dcd67d5b 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/b2829f9d0fc61580befc8cb4eec461d14bacca37/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index defc5a2d001a..cb68b4d63acb 100644 --- a/python/README.md +++ b/python/README.md @@ -60,21 +60,21 @@ WARNING: - [`3.14.0-windowsservercore-ltsc2022`, `3.14-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) -- [`3.13.8-trixie`, `3.13-trixie`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/trixie/Dockerfile) +- [`3.13.9-trixie`, `3.13-trixie`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/trixie/Dockerfile) -- [`3.13.8-slim-trixie`, `3.13-slim-trixie`, `3.13.8-slim`, `3.13-slim`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/slim-trixie/Dockerfile) +- [`3.13.9-slim-trixie`, `3.13-slim-trixie`, `3.13.9-slim`, `3.13-slim`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/slim-trixie/Dockerfile) -- [`3.13.8-bookworm`, `3.13-bookworm`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/bookworm/Dockerfile) +- [`3.13.9-bookworm`, `3.13-bookworm`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/bookworm/Dockerfile) -- [`3.13.8-slim-bookworm`, `3.13-slim-bookworm`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/slim-bookworm/Dockerfile) +- [`3.13.9-slim-bookworm`, `3.13-slim-bookworm`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/slim-bookworm/Dockerfile) -- [`3.13.8-alpine3.22`, `3.13-alpine3.22`, `3.13.8-alpine`, `3.13-alpine`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.13/alpine3.22/Dockerfile) +- [`3.13.9-alpine3.22`, `3.13-alpine3.22`, `3.13.9-alpine`, `3.13-alpine`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/alpine3.22/Dockerfile) -- [`3.13.8-alpine3.21`, `3.13-alpine3.21`](https://github.com/docker-library/python/blob/a83345bce8e75b407f283511dc3128b2062d8c1e/3.13/alpine3.21/Dockerfile) +- [`3.13.9-alpine3.21`, `3.13-alpine3.21`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/alpine3.21/Dockerfile) -- [`3.13.8-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) +- [`3.13.9-windowsservercore-ltsc2025`, `3.13-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) -- [`3.13.8-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) +- [`3.13.9-windowsservercore-ltsc2022`, `3.13-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - [`3.12.12-trixie`, `3.12-trixie`](https://github.com/docker-library/python/blob/e4ab0fe5ef4df797ed09883becf983a56ab97eca/3.12/trixie/Dockerfile) @@ -148,16 +148,16 @@ WARNING: - [`3.14.0-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2025/Dockerfile) - [`3.14.0-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e7f6a1c7956a24dc1746d4580ed5961547016a01/3.14/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.8`, `3.13`: +- `3.13.9`, `3.13`: - - [`3.13.8-trixie`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/trixie/Dockerfile) - - [`3.13.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.9-trixie`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/trixie/Dockerfile) + - [`3.13.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) -- `3.13.8-windowsservercore`, `3.13-windowsservercore`: +- `3.13.9-windowsservercore`, `3.13-windowsservercore`: - - [`3.13.8-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2025/Dockerfile) - - [`3.13.8-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/668691664771c99b228c9acc107e9fec60b9bd96/3.13/windows/windowsservercore-ltsc2022/Dockerfile) + - [`3.13.9-windowsservercore-ltsc2025`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2025/Dockerfile) + - [`3.13.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/3f2d7e4c339ab883455b81a873519f1d0f2cd80a/3.13/windows/windowsservercore-ltsc2022/Dockerfile) - `3.12.12`, `3.12`: From 8ce7386add0a978d12b2988198e72f03cb82c736 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Oct 2025 11:10:53 -0700 Subject: [PATCH 2612/2686] Run update.sh --- adminer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminer/README.md b/adminer/README.md index 9e4c278674da..88ac9ea02b08 100644 --- a/adminer/README.md +++ b/adminer/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.4.0`, `5`, `latest`, `5.4.0-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/46293bca9216a1d392c9a6c62371d1548cd922cc/5/Dockerfile) +- [`5.4.1`, `5`, `latest`, `5.4.1-standalone`, `5-standalone`, `standalone`](https://github.com/TimWolla/docker-adminer/blob/bf3ab5cb29e2c46cb5ecabe89b650c72af431b57/5/Dockerfile) -- [`5.4.0-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/46293bca9216a1d392c9a6c62371d1548cd922cc/5/fastcgi/Dockerfile) +- [`5.4.1-fastcgi`, `5-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/bf3ab5cb29e2c46cb5ecabe89b650c72af431b57/5/fastcgi/Dockerfile) - [`4.17.1`, `4`, `4.17.1-standalone`, `4-standalone`](https://github.com/TimWolla/docker-adminer/blob/0c0fd187e8646ad61fe592a80d66abec2c1dc951/4/Dockerfile) From 2bf1210f0c23607205324fb5c08c6272371a0509 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 15 Oct 2025 18:10:51 -0700 Subject: [PATCH 2613/2686] Run update.sh --- open-liberty/README.md | 54 ++++++++++++++++++------------------- websphere-liberty/README.md | 48 ++++++++++++++++----------------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/open-liberty/README.md b/open-liberty/README.md index 94753155c472..7fc1f944b0bb 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,59 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/df1008db2a5d520f005f134e94438cf7940fc537/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index fe49c28a82d9..a9216bb5b78d 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/607823a671a48dc60ed9d287b50898c38df6fd92/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 113129657158378746028b0a0891d4ab3b71d290 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Oct 2025 10:10:57 -0700 Subject: [PATCH 2614/2686] Run update.sh --- node/README.md | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/node/README.md b/node/README.md index ee6c10bf51d6..debc34805cbb 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.21/Dockerfile) +- [`25-alpine3.21`, `25.0-alpine3.21`, `25.0.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.22/Dockerfile) +- [`25-alpine`, `25-alpine3.22`, `25.0-alpine`, `25.0-alpine3.22`, `25.0.0-alpine`, `25.0.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm/Dockerfile) +- [`25`, `25-bookworm`, `25.0`, `25.0-bookworm`, `25.0.0`, `25.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm-slim/Dockerfile) +- [`25-bookworm-slim`, `25-slim`, `25.0-bookworm-slim`, `25.0-slim`, `25.0.0-bookworm-slim`, `25.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye/Dockerfile) +- [`25-bullseye`, `25.0-bullseye`, `25.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye-slim/Dockerfile) +- [`25-bullseye-slim`, `25.0-bullseye-slim`, `25.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie/Dockerfile) +- [`25-trixie`, `25.0-trixie`, `25.0.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/trixie/Dockerfile) -- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie-slim/Dockerfile) +- [`25-trixie-slim`, `25.0-trixie-slim`, `25.0.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/trixie-slim/Dockerfile) + +- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.21/Dockerfile) + +- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.22/Dockerfile) + +- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm/Dockerfile) + +- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm-slim/Dockerfile) + +- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye/Dockerfile) + +- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye-slim/Dockerfile) + +- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie/Dockerfile) + +- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie-slim/Dockerfile) - [`22-alpine3.21`, `22.20-alpine3.21`, `22.20.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.21/Dockerfile) From b5165b2fe203872fdf4657b62b21d680f29cba28 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Oct 2025 11:10:58 -0700 Subject: [PATCH 2615/2686] Run update.sh --- crate/README.md | 6 ++---- krakend/README.md | 2 +- maven/README.md | 4 ++++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/crate/README.md b/crate/README.md index 0012179f350a..cfc5d2149718 100644 --- a/crate/README.md +++ b/crate/README.md @@ -24,11 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.0.2`, `6.0`, `latest`](https://github.com/crate/docker-crate/blob/a1cbe321622a14325f07abaff8a861d0ab32ede3/Dockerfile) +- [`6.0.3`, `6.0`, `latest`](https://github.com/crate/docker-crate/blob/3b12723f798d4a57003c05ab50c938ca40b25f40/Dockerfile) -- [`5.10.12`, `5.10`](https://github.com/crate/docker-crate/blob/677b92fce1c9ffe8e9d60e6c083c583b02ffe082/Dockerfile) - -- [`5.9.13`, `5.9`](https://github.com/crate/docker-crate/blob/316dbebc6a55792c706d5ea492c41b860ccbcb9c/Dockerfile) +- [`5.10.13`, `5.10`](https://github.com/crate/docker-crate/blob/be70f78b138fffd05e80b7ac1b140690ec33584d/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index 907e6ade1e1d..bb8c88574801 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.11.1`, `2.11`, `2`, `latest`](https://github.com/krakendio/docker-library/blob/c465023494ef14bc33e1dbf68a5108595c46f027/2.11.1/Dockerfile) +- [`2.11.2`, `2.11`, `2`, `latest`](https://github.com/krakend/docker-library/blob/8f838ce2eaf9e375a0106b7d3e29fe211aea1314/2.11.2/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index e6fb636eb09b..9174b3cea8b1 100644 --- a/maven/README.md +++ b/maven/README.md @@ -68,6 +68,10 @@ WARNING: - [`4.0.0-rc-4-ibm-semeru-21-noble`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/ibm-semeru-21-noble-maven-4/Dockerfile) +- [`3.9.11-ibm-semeru-25-noble`, `3.9-ibm-semeru-25-noble`, `3-ibm-semeru-25-noble`](https://github.com/carlossg/docker-maven/blob/7df425991666b4cf7ce7130aa348aa940c15d9c4/ibm-semeru-25-noble/Dockerfile) + +- [`4.0.0-rc-4-ibm-semeru-25-noble`](https://github.com/carlossg/docker-maven/blob/7df425991666b4cf7ce7130aa348aa940c15d9c4/ibm-semeru-25-noble-maven-4/Dockerfile) + - [`3.9.11-amazoncorretto-11`, `3.9-amazoncorretto-11`, `3-amazoncorretto-11`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11/Dockerfile) - [`3.9.11-amazoncorretto-11-al2023`, `3.9-amazoncorretto-11-al2023`, `3-amazoncorretto-11-al2023`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-11-al2023/Dockerfile) From 326dce23a8fb67370f543867fa50330bfd29c6c1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Oct 2025 12:10:52 -0700 Subject: [PATCH 2616/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index ace69f787ff7..7ac402e1da0b 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.3`, `25.9.3-jammy`, `25.9.3.48`, `25.9.3.48-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.9.3.48/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.3`, `25.9.3-jammy`, `25.9.3.48`, `25.9.3.48-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.9.3.48/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.8.10.7/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.8.10.7/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.7`, `25.7.7-jammy`, `25.7.7.68`, `25.7.7.68-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.7.7.68/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.7.8.71/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.6`, `25.3.6-jammy`, `25.3.6.56`, `25.3.6.56-jammy`](https://github.com/ClickHouse/docker-library/blob/5bcf327dd400bf7fae9118ca210574e4981940d4/server/25.3.6.56/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.7`, `25.3.7-jammy`, `25.3.7.194`, `25.3.7.194-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.3.7.194/Dockerfile.ubuntu) # Quick reference (cont.) From c2526adf1620db8a45149d00c52ebd174361d2be Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 16 Oct 2025 18:10:49 -0700 Subject: [PATCH 2617/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index bd34dcd67d5b..aed4ee905928 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/6edef91130aebdd540d741c6244a3a3c35147d0e/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7-slim-fips/Dockerfile) # Quick reference (cont.) From b3fdc6b01762cac829db264688d92a65c1d79afb Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Oct 2025 17:11:17 -0700 Subject: [PATCH 2618/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index aed4ee905928..963c3ce5540a 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/50c32162f09085d53a06aa91a2031826d5a3a623/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7-slim-fips/Dockerfile) # Quick reference (cont.) From bd4a2ddeb344981666f81df39265c5a160fa86b0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 17 Oct 2025 18:11:43 -0700 Subject: [PATCH 2619/2686] Run update.sh --- ghost/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b4ba4545ac95..8c2d7bb82bba 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.3.1`, `6.3`, `6`, `latest`](https://github.com/docker-library/ghost/blob/d9131c1c24594d782e0ddac3a98daae9237a1202/6/debian/Dockerfile) +- [`6.4.0`, `6.4`, `6`, `latest`](https://github.com/docker-library/ghost/blob/e092f980a4b38a19303f42b7eceb7b80d441e202/6/debian/Dockerfile) -- [`6.3.1-alpine`, `6.3-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/d9131c1c24594d782e0ddac3a98daae9237a1202/6/alpine/Dockerfile) +- [`6.4.0-alpine`, `6.4-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e092f980a4b38a19303f42b7eceb7b80d441e202/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) From 2abeecf169b8a32dc240ba2d920d9f98f9b6eeba Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Oct 2025 14:10:59 -0700 Subject: [PATCH 2620/2686] Run update.sh --- archlinux/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/README.md b/archlinux/README.md index f2873a02613e..5502cf7ffb63 100644 --- a/archlinux/README.md +++ b/archlinux/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `base`, `base-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.base) +- [`latest`, `base`, `base-20251019.0.436919`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3d3996ec400b3b9ef1c04fa5b4b6b81725a8eaac/Dockerfile.base) -- [`base-devel`, `base-devel-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.base-devel) +- [`base-devel`, `base-devel-20251019.0.436919`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3d3996ec400b3b9ef1c04fa5b4b6b81725a8eaac/Dockerfile.base-devel) -- [`multilib-devel`, `multilib-devel-20251012.0.434149`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/1ad524c13b57eb60b01a2d576c65dd4ed2140fd0/Dockerfile.multilib-devel) +- [`multilib-devel`, `multilib-devel-20251019.0.436919`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3d3996ec400b3b9ef1c04fa5b4b6b81725a8eaac/Dockerfile.multilib-devel) # Quick reference (cont.) From 1cccf5a2a0e0483e28c1f35575cff9c26f766b95 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Oct 2025 15:11:35 -0700 Subject: [PATCH 2621/2686] Run update.sh --- neo4j/README.md | 8 ++++---- photon/README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 43b9c314ffd3..8e6f3ffd7d99 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/enterprise/Dockerfile) -- [`5.26.13-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.13-community`, `5.26-community`, `5-community`, `5.26.13-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.13`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/bullseye/community/Dockerfile) +- [`5.26.14-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.14-community`, `5.26-community`, `5-community`, `5.26.14-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.14`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/bullseye/community/Dockerfile) -- [`5.26.13-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.13-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/bullseye/enterprise/Dockerfile) +- [`5.26.14-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.14-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/bullseye/enterprise/Dockerfile) -- [`5.26.13-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.13-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/ubi9/community/Dockerfile) +- [`5.26.14-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.14-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/ubi9/community/Dockerfile) -- [`5.26.13-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d44444984815d59a51beeb9bf70a660d92cd6be8/5.26.13/ubi9/enterprise/Dockerfile) +- [`5.26.14-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/ubi9/enterprise/Dockerfile) - [`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile) diff --git a/photon/README.md b/photon/README.md index 89d39adb1466..9f9675e4a9f2 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20250920`, `latest`](https://github.com/vmware/photon-docker-image/blob/561412a9759919b9fb52b1852369de116d210f2b/docker/Dockerfile) +- [`5.0`, `5.0-20251011`, `latest`](https://github.com/vmware/photon-docker-image/blob/8921fff02b3b2ce4bbc6116b4c6b4c708562aa96/docker/Dockerfile) - [`4.0`, `4.0-20251012`](https://github.com/vmware/photon-docker-image/blob/75d6173bc370ace82b24de6e7319483fd8e54869/docker/Dockerfile) From 24b1ff953496782ec498f962b820c4860e83aca1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Oct 2025 17:10:45 -0700 Subject: [PATCH 2622/2686] Run update.sh --- couchbase/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 94c1649092e4..1f78fca05dfb 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -24,7 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.6.7`, `enterprise`, `enterprise-7.6.7`, `latest`](https://github.com/couchbase/docker/blob/a322cc7110124b2581339f52d88bab80fb50016d/enterprise/couchbase-server/7.6.7/Dockerfile) +- [`8.0.0`, `enterprise`, `enterprise-8.0.0`, `latest`](https://github.com/couchbase/docker/blob/c11b8eac06fe26a16b2e2b17020a965d45d7f329/enterprise/couchbase-server/8.0.0/Dockerfile) + +- [`community`, `community-8.0.0`](https://github.com/couchbase/docker/blob/e2600d59a2b84984adeccbe1c0f8b5d926d4b529/community/couchbase-server/8.0.0/Dockerfile) + +- [`7.6.7`, `enterprise-7.6.7`](https://github.com/couchbase/docker/blob/a322cc7110124b2581339f52d88bab80fb50016d/enterprise/couchbase-server/7.6.7/Dockerfile) - [`7.6.6`, `enterprise-7.6.6`](https://github.com/couchbase/docker/blob/9ce3cbc835dd4e072943ac7878aa7f87d6b95178/enterprise/couchbase-server/7.6.6/Dockerfile) @@ -36,7 +40,7 @@ WARNING: - [`7.6.2`, `enterprise-7.6.2`](https://github.com/couchbase/docker/blob/ce13f602d2c95f76835c67a8855d5e73480973a6/enterprise/couchbase-server/7.6.2/Dockerfile) -- [`community`, `community-7.6.2`](https://github.com/couchbase/docker/blob/3f81af158b7f307e42f8c42ceaf7657b2690bfca/community/couchbase-server/7.6.2/Dockerfile) +- [`community-7.6.2`](https://github.com/couchbase/docker/blob/3f81af158b7f307e42f8c42ceaf7657b2690bfca/community/couchbase-server/7.6.2/Dockerfile) - [`7.6.1`, `enterprise-7.6.1`](https://github.com/couchbase/docker/blob/966143f937bfe6979b7c09b86684004fdd21e5b8/enterprise/couchbase-server/7.6.1/Dockerfile) @@ -46,6 +50,8 @@ WARNING: - [`community-7.6.0`](https://github.com/couchbase/docker/blob/6d669d0e34e6990b43c1b91ea74720235c96c4ac/community/couchbase-server/7.6.0/Dockerfile) +- [`7.2.8`, `enterprise-7.2.8`](https://github.com/couchbase/docker/blob/5023e9104d765a15cde8e978be5266a6f1889fb0/enterprise/couchbase-server/7.2.8/Dockerfile) + - [`7.2.7`, `enterprise-7.2.7`](https://github.com/couchbase/docker/blob/23887cae4fd6ce054f383d524a7975d2e3a6b72e/enterprise/couchbase-server/7.2.7/Dockerfile) - [`7.2.6`, `enterprise-7.2.6`](https://github.com/couchbase/docker/blob/181af64dcbedc1abf6e0916d9f5373cf1c18cb6e/enterprise/couchbase-server/7.2.6/Dockerfile) From ad2146051173192761ae7b5756f6be52fb8384d3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 20 Oct 2025 18:10:24 -0700 Subject: [PATCH 2623/2686] Run update.sh --- debian/README.md | 56 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 ++++++++--------- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/debian/README.md b/debian/README.md index f41d1bbef65c..be74f2fe6c09 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20250929`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20251020`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20250929-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20251020-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20250929`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20251020`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bullseye/oci/index.json) -- [`bullseye-slim`, `bullseye-20250929-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20251020-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/experimental/Dockerfile) +- [`experimental`, `experimental-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/experimental/Dockerfile) -- [`forky`, `forky-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/oci/index.json) +- [`forky`, `forky-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/oci/index.json) -- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/backports/Dockerfile) +- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/backports/Dockerfile) -- [`forky-slim`, `forky-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/forky/slim/oci/index.json) +- [`forky-slim`, `forky-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/slim/oci/index.json) -- [`oldoldstable`, `oldoldstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldoldstable/oci/index.json) +- [`oldoldstable`, `oldoldstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldoldstable/oci/index.json) -- [`oldoldstable-slim`, `oldoldstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldoldstable/slim/oci/index.json) +- [`oldoldstable-slim`, `oldoldstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldoldstable/slim/oci/index.json) -- [`oldstable`, `oldstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/rc-buggy/Dockerfile) -- [`sid`, `sid-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/sid/oci/index.json) +- [`sid`, `sid-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/sid/oci/index.json) -- [`sid-slim`, `sid-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/sid/slim/oci/index.json) -- [`stable`, `stable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/oci/index.json) +- [`stable`, `stable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/slim/oci/index.json) -- [`testing`, `testing-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/oci/index.json) +- [`testing`, `testing-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/slim/oci/index.json) -- [`trixie`, `trixie-20250929`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/oci/index.json) +- [`trixie`, `trixie-20251020`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20250929-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20251020-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20250929`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/unstable/oci/index.json) +- [`unstable`, `unstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20250929-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/f79b97e304b3069b812f310bbf03562eac1a132e/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/unstable/slim/oci/index.json) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 963c3ce5540a..c12ef3b05cae 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/e0e3b68e819337a954b2d56ce76f311bb59c6bd8/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7-slim-fips/Dockerfile) # Quick reference (cont.) From 74865a42e701401377813690542ac78acedd8b19 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Oct 2025 11:11:14 -0700 Subject: [PATCH 2624/2686] Run update.sh --- cassandra/README.md | 2 +- golang/README.md | 12 ++++++------ julia/README.md | 22 +++++++++++----------- openjdk/README.md | 40 ++++++++++++++++++++-------------------- 4 files changed, 38 insertions(+), 38 deletions(-) diff --git a/cassandra/README.md b/cassandra/README.md index 93b5996641f0..6113ec02e0a5 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -28,7 +28,7 @@ WARNING: - [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.1/Dockerfile) -- [`4.0.18`, `4.0`, `4.0.18-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.0/Dockerfile) +- [`4.0.19`, `4.0`, `4.0.19-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/23531063a5aefaa47cbd5166c7d02ae75c44c262/4.0/Dockerfile) - [`3.11.19`, `3.11`, `3`, `3.11.19-jammy`, `3.11-jammy`, `3-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/3.11/Dockerfile) diff --git a/golang/README.md b/golang/README.md index fb95269d0b6f..f66926096f5f 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.9-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20251011-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/trixie/Dockerfile) +- [`tip-20251017-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/trixie/Dockerfile) -- [`tip-20251011-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/bookworm/Dockerfile) +- [`tip-20251017-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/bookworm/Dockerfile) -- [`tip-20251011-alpine3.22`, `tip-alpine3.22`, `tip-20251011-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/alpine3.22/Dockerfile) +- [`tip-20251017-alpine3.22`, `tip-alpine3.22`, `tip-20251017-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/alpine3.22/Dockerfile) -- [`tip-20251011-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/alpine3.21/Dockerfile) +- [`tip-20251017-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20251011`, `tip`: +- `tip-20251017`, `tip`: - - [`tip-20251011-trixie`](https://github.com/docker-library/golang/blob/048aed45b0fab735c8157c9449d32a17ee88cf62/tip/trixie/Dockerfile) + - [`tip-20251017-trixie`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/julia/README.md b/julia/README.md index 95dacc91de78..4086299347ac 100644 --- a/julia/README.md +++ b/julia/README.md @@ -28,13 +28,13 @@ WARNING: ## Simple Tags -- [`1.12.0-trixie`, `1.12-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/trixie/Dockerfile) +- [`1.12.1-trixie`, `1.12-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/trixie/Dockerfile) -- [`1.12.0-bookworm`, `1.12-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/bookworm/Dockerfile) +- [`1.12.1-bookworm`, `1.12-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/bookworm/Dockerfile) -- [`1.12.0-windowsservercore-ltsc2025`, `1.12-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.12.1-windowsservercore-ltsc2025`, `1.12-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.12.0-windowsservercore-ltsc2022`, `1.12-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.12.1-windowsservercore-ltsc2022`, `1.12-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2022/Dockerfile) - [`1.11.7-trixie`, `1.11-trixie`](https://github.com/docker-library/julia/blob/fa7463443f367283c168038f5fe7d5f40a960b66/1.11/trixie/Dockerfile) @@ -58,16 +58,16 @@ WARNING: ## Shared Tags -- `1.12.0`, `1.12`, `1`, `latest`: +- `1.12.1`, `1.12`, `1`, `latest`: - - [`1.12.0-trixie`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/trixie/Dockerfile) - - [`1.12.0-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.1-trixie`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/trixie/Dockerfile) + - [`1.12.1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.12.0-windowsservercore`, `1.12-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.12.1-windowsservercore`, `1.12-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.12.0-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.12.0-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/30e953f8abfa024651984120929c403b7cdf5a9a/1.12/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.12.1-windowsservercore-ltsc2025`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.12.1-windowsservercore-ltsc2022`](https://github.com/docker-library/julia/blob/0de44097e4e0a152abdf2091b9e397ff116d23f5/1.12/windows/windowsservercore-ltsc2022/Dockerfile) - `1.11.7`, `1.11`: diff --git a/openjdk/README.md b/openjdk/README.md index c69304fe0ee6..102ed0e45cd3 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-19-jdk-oraclelinux9`, `26-ea-19-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-19-jdk-oracle`, `26-ea-19-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-20-jdk-oraclelinux9`, `26-ea-20-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-20-jdk-oracle`, `26-ea-20-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-19-jdk-oraclelinux8`, `26-ea-19-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-20-jdk-oraclelinux8`, `26-ea-20-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-19-jdk-trixie`, `26-ea-19-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/trixie/Dockerfile) +- [`26-ea-20-jdk-trixie`, `26-ea-20-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/trixie/Dockerfile) -- [`26-ea-19-jdk-slim-trixie`, `26-ea-19-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-19-jdk-slim`, `26-ea-19-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-20-jdk-slim-trixie`, `26-ea-20-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-20-jdk-slim`, `26-ea-20-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-19-jdk-bookworm`, `26-ea-19-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/bookworm/Dockerfile) +- [`26-ea-20-jdk-bookworm`, `26-ea-20-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/bookworm/Dockerfile) -- [`26-ea-19-jdk-slim-bookworm`, `26-ea-19-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-20-jdk-slim-bookworm`, `26-ea-20-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-19-jdk-windowsservercore-ltsc2025`, `26-ea-19-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-20-jdk-windowsservercore-ltsc2025`, `26-ea-20-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-19-jdk-windowsservercore-ltsc2022`, `26-ea-19-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-20-jdk-windowsservercore-ltsc2022`, `26-ea-20-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-19-jdk-nanoserver-ltsc2025`, `26-ea-19-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-20-jdk-nanoserver-ltsc2025`, `26-ea-20-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-19-jdk-nanoserver-ltsc2022`, `26-ea-19-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-20-jdk-nanoserver-ltsc2022`, `26-ea-20-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-19-jdk`, `26-ea-19`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-20-jdk`, `26-ea-20`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-19-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-19-jdk-windowsservercore`, `26-ea-19-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-20-jdk-windowsservercore`, `26-ea-20-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-19-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-19-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-19-jdk-nanoserver`, `26-ea-19-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-20-jdk-nanoserver`, `26-ea-20-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-19-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-19-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/5f4ebde04e807b32991436ccdaa4b06e9b200875/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-20-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-20-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From c5ec312f8a6812e569eea942ecf8a69dd5ee52d1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Oct 2025 12:11:23 -0700 Subject: [PATCH 2625/2686] Run update.sh --- elixir/README.md | 78 ++++++++++++++++++---------------------------- node/README.md | 64 ++++++++++++++++++------------------- odoo/README.md | 6 ++-- orientdb/README.md | 4 +-- telegraf/README.md | 12 +++---- 5 files changed, 73 insertions(+), 91 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index b3e9efeb448c..b5524cdfb36b 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,29 +24,47 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.18.4`, `1.18`, `latest`, `1.18.4-otp-28`, `1.18-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/Dockerfile) +- [`1.19.0`, `1.19`, `latest`, `1.19.0-otp-28`, `1.19-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/Dockerfile) -- [`1.18.4-slim`, `1.18-slim`, `slim`, `1.18.4-otp-28-slim`, `1.18-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/slim/Dockerfile) +- [`1.19.0-slim`, `1.19-slim`, `slim`, `1.19.0-otp-28-slim`, `1.19-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/slim/Dockerfile) -- [`1.18.4-alpine`, `1.18-alpine`, `alpine`, `1.18.4-otp-28-alpine`, `1.18-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/alpine/Dockerfile) +- [`1.19.0-alpine`, `1.19-alpine`, `alpine`, `1.19.0-otp-28-alpine`, `1.19-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/alpine/Dockerfile) -- [`1.18.4-otp-25`, `1.18-otp-25`, `otp-25`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25/Dockerfile) +- [`1.19.0-otp-26`, `1.19-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26/Dockerfile) -- [`1.18.4-otp-25-alpine`, `1.18-otp-25-alpine`, `otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-alpine/Dockerfile) +- [`1.19.0-otp-26-alpine`, `1.19-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26-alpine/Dockerfile) -- [`1.18.4-otp-25-slim`, `1.18-otp-25-slim`, `otp-25-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-slim/Dockerfile) +- [`1.19.0-otp-26-slim`, `1.19-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26-slim/Dockerfile) -- [`1.18.4-otp-26`, `1.18-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26/Dockerfile) +- [`1.19.0-otp-27`, `1.19-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27/Dockerfile) -- [`1.18.4-otp-26-alpine`, `1.18-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-alpine/Dockerfile) +- [`1.19.0-otp-27-alpine`, `1.19-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27-alpine/Dockerfile) -- [`1.18.4-otp-26-slim`, `1.18-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-slim/Dockerfile) +- [`1.19.0-otp-27-slim`, `1.19-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27-slim/Dockerfile) -- [`1.18.4-otp-27`, `1.18-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27/Dockerfile) +- [`1.18.4`, `1.18`, `1.18.4-otp-28`, `1.18-otp-28`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/Dockerfile) -- [`1.18.4-otp-27-alpine`, `1.18-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-alpine/Dockerfile) +- [`1.18.4-slim`, `1.18-slim`, `1.18.4-otp-28-slim`, `1.18-otp-28-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/slim/Dockerfile) -- [`1.18.4-otp-27-slim`, `1.18-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-slim/Dockerfile) +- [`1.18.4-alpine`, `1.18-alpine`, `1.18.4-otp-28-alpine`, `1.18-otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/alpine/Dockerfile) + +- [`1.18.4-otp-25`, `1.18-otp-25`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25/Dockerfile) + +- [`1.18.4-otp-25-alpine`, `1.18-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-alpine/Dockerfile) + +- [`1.18.4-otp-25-slim`, `1.18-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-25-slim/Dockerfile) + +- [`1.18.4-otp-26`, `1.18-otp-26`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26/Dockerfile) + +- [`1.18.4-otp-26-alpine`, `1.18-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-alpine/Dockerfile) + +- [`1.18.4-otp-26-slim`, `1.18-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/d3c21f12232230e6d199446ccfc4fc34e02fc060/1.18/otp-26-slim/Dockerfile) + +- [`1.18.4-otp-27`, `1.18-otp-27`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27/Dockerfile) + +- [`1.18.4-otp-27-alpine`, `1.18-otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-alpine/Dockerfile) + +- [`1.18.4-otp-27-slim`, `1.18-otp-27-slim`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/otp-27-slim/Dockerfile) - [`1.17.3`, `1.17`, `1.17.3-otp-27`, `1.17-otp-27`](https://github.com/erlef/docker-elixir/blob/70cad0543fc1781daa678c2a8c44bc87a1c38767/1.17/Dockerfile) @@ -102,42 +120,6 @@ WARNING: - [`1.15.8-otp-25-slim`, `1.15-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/f749dfb8a5b1e6945b2369e143107b9ad3b16664/1.15/otp-25-slim/Dockerfile) -- [`1.14.5`, `1.14`, `1.14.5-otp-26`, `1.14-otp-26`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/Dockerfile) - -- [`1.14.5-slim`, `1.14-slim`, `1.14.5-otp-26-slim`, `1.14-otp-26-slim`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/slim/Dockerfile) - -- [`1.14.5-alpine`, `1.14-alpine`, `1.14.5-otp-26-alpine`, `1.14-otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/b8a45e284e0032a25e993ff60a8c6ea733848ad1/1.14/alpine/Dockerfile) - -- [`1.14.5-otp-24`, `1.14-otp-24`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24/Dockerfile) - -- [`1.14.5-otp-24-alpine`, `1.14-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-alpine/Dockerfile) - -- [`1.14.5-otp-24-slim`, `1.14-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-24-slim/Dockerfile) - -- [`1.14.5-otp-25`, `1.14-otp-25`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25/Dockerfile) - -- [`1.14.5-otp-25-alpine`, `1.14-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-alpine/Dockerfile) - -- [`1.14.5-otp-25-slim`, `1.14-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/af8772135e126d906a96b347d83af796c55bd181/1.14/otp-25-slim/Dockerfile) - -- [`1.13.4`, `1.13`, `1.13.4-otp-24`, `1.13-otp-24`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/Dockerfile) - -- [`1.13.4-slim`, `1.13-slim`, `1.13.4-otp-24-slim`, `1.13-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/slim/Dockerfile) - -- [`1.13.4-alpine`, `1.13-alpine`, `1.13.4-otp-24-alpine`, `1.13-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/328f4c09d39b06502a90fa0c5bb30d6972593fac/1.13/alpine/Dockerfile) - -- [`1.13.4-otp-25`, `1.13-otp-25`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25/Dockerfile) - -- [`1.13.4-otp-25-alpine`, `1.13-otp-25-alpine`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-alpine/Dockerfile) - -- [`1.13.4-otp-25-slim`, `1.13-otp-25-slim`](https://github.com/erlef/docker-elixir/blob/253f56764ed34d41e4279cb741d84dcb4b284a55/1.13/otp-25-slim/Dockerfile) - -- [`1.12.3`, `1.12`, `1.12.3-otp-24`, `1.12-otp-24`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/Dockerfile) - -- [`1.12.3-slim`, `1.12-slim`, `1.12.3-otp-24-slim`, `1.12-otp-24-slim`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/slim/Dockerfile) - -- [`1.12.3-alpine`, `1.12-alpine`, `1.12.3-otp-24-alpine`, `1.12-otp-24-alpine`](https://github.com/erlef/docker-elixir/blob/a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a/1.12/alpine/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/node/README.md b/node/README.md index debc34805cbb..e04609fad247 100644 --- a/node/README.md +++ b/node/README.md @@ -24,69 +24,69 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25-alpine3.21`, `25.0-alpine3.21`, `25.0.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/alpine3.21/Dockerfile) +- [`25-alpine3.21`, `25.0-alpine3.21`, `25.0.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/alpine3.21/Dockerfile) -- [`25-alpine`, `25-alpine3.22`, `25.0-alpine`, `25.0-alpine3.22`, `25.0.0-alpine`, `25.0.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/alpine3.22/Dockerfile) +- [`25-alpine`, `25-alpine3.22`, `25.0-alpine`, `25.0-alpine3.22`, `25.0.0-alpine`, `25.0.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/alpine3.22/Dockerfile) -- [`25`, `25-bookworm`, `25.0`, `25.0-bookworm`, `25.0.0`, `25.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bookworm/Dockerfile) +- [`25`, `25-bookworm`, `25.0`, `25.0-bookworm`, `25.0.0`, `25.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bookworm/Dockerfile) -- [`25-bookworm-slim`, `25-slim`, `25.0-bookworm-slim`, `25.0-slim`, `25.0.0-bookworm-slim`, `25.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bookworm-slim/Dockerfile) +- [`25-bookworm-slim`, `25-slim`, `25.0-bookworm-slim`, `25.0-slim`, `25.0.0-bookworm-slim`, `25.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bookworm-slim/Dockerfile) -- [`25-bullseye`, `25.0-bullseye`, `25.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bullseye/Dockerfile) +- [`25-bullseye`, `25.0-bullseye`, `25.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bullseye/Dockerfile) -- [`25-bullseye-slim`, `25.0-bullseye-slim`, `25.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/bullseye-slim/Dockerfile) +- [`25-bullseye-slim`, `25.0-bullseye-slim`, `25.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bullseye-slim/Dockerfile) -- [`25-trixie`, `25.0-trixie`, `25.0.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/trixie/Dockerfile) +- [`25-trixie`, `25.0-trixie`, `25.0.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/trixie/Dockerfile) -- [`25-trixie-slim`, `25.0-trixie-slim`, `25.0.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/eda40f3c41d33cb595232cb7000ab31af1ce2f02/25/trixie-slim/Dockerfile) +- [`25-trixie-slim`, `25.0-trixie-slim`, `25.0.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/trixie-slim/Dockerfile) -- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie/Dockerfile) +- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`](https://github.com/nodejs/docker-node/blob/199ce7af0ac3726aed4552f3c420b83726c8696c/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/trixie-slim/Dockerfile) -- [`22-alpine3.21`, `22.20-alpine3.21`, `22.20.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.21-alpine3.21`, `22.21.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.20-alpine`, `22.20-alpine3.22`, `22.20.0-alpine`, `22.20.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.21-alpine`, `22.21-alpine3.22`, `22.21.0-alpine`, `22.21.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.20`, `22.20-bookworm`, `22.20.0`, `22.20.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.21`, `22.21-bookworm`, `22.21.0`, `22.21.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.20-bookworm-slim`, `22.20-slim`, `22.20.0-bookworm-slim`, `22.20.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.21-bookworm-slim`, `22.21-slim`, `22.21.0-bookworm-slim`, `22.21.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.20-bullseye`, `22.20.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.21-bullseye`, `22.21.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.20-bullseye-slim`, `22.20.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.21-bullseye-slim`, `22.21.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye-slim/Dockerfile) -- [`22-trixie`, `22.20-trixie`, `22.20.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/trixie/Dockerfile) +- [`22-trixie`, `22.21-trixie`, `22.21.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie/Dockerfile) -- [`22-trixie-slim`, `22.20-trixie-slim`, `22.20.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/693bac3a72a7138805c4c2791bc81f21291ae273/22/trixie-slim/Dockerfile) +- [`22-trixie-slim`, `22.21-trixie-slim`, `22.21.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie-slim/Dockerfile) -- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/alpine3.21/Dockerfile) +- [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/alpine3.21/Dockerfile) -- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.5-alpine`, `20.19.5-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/alpine3.22/Dockerfile) +- [`20-alpine`, `20-alpine3.22`, `20.19-alpine`, `20.19-alpine3.22`, `20.19.5-alpine`, `20.19.5-alpine3.22`, `iron-alpine`, `iron-alpine3.22`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/alpine3.22/Dockerfile) -- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.5`, `20.19.5-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bookworm/Dockerfile) +- [`20`, `20-bookworm`, `20.19`, `20.19-bookworm`, `20.19.5`, `20.19.5-bookworm`, `iron`, `iron-bookworm`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/bookworm/Dockerfile) -- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.5-bookworm-slim`, `20.19.5-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bookworm-slim/Dockerfile) +- [`20-bookworm-slim`, `20-slim`, `20.19-bookworm-slim`, `20.19-slim`, `20.19.5-bookworm-slim`, `20.19.5-slim`, `iron-bookworm-slim`, `iron-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/bookworm-slim/Dockerfile) -- [`20-bullseye`, `20.19-bullseye`, `20.19.5-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bullseye/Dockerfile) +- [`20-bullseye`, `20.19-bullseye`, `20.19.5-bullseye`, `iron-bullseye`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/bullseye/Dockerfile) -- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.5-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/bullseye-slim/Dockerfile) +- [`20-bullseye-slim`, `20.19-bullseye-slim`, `20.19.5-bullseye-slim`, `iron-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/bullseye-slim/Dockerfile) -- [`20-trixie`, `20.19-trixie`, `20.19.5-trixie`, `iron-trixie`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/trixie/Dockerfile) +- [`20-trixie`, `20.19-trixie`, `20.19.5-trixie`, `iron-trixie`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/trixie/Dockerfile) -- [`20-trixie-slim`, `20.19-trixie-slim`, `20.19.5-trixie-slim`, `iron-trixie-slim`](https://github.com/nodejs/docker-node/blob/16ff3548d60b86d2bb9fd0e51fa9153df69ef3cd/20/trixie-slim/Dockerfile) +- [`20-trixie-slim`, `20.19-trixie-slim`, `20.19.5-trixie-slim`, `iron-trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/trixie-slim/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index 5e93200148ce..e5edd493a514 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19.0-20251008`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/19.0/Dockerfile) +- [`19.0-20251021`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/19.0/Dockerfile) -- [`18.0-20251008`, `18.0`, `18`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/18.0/Dockerfile) +- [`18.0-20251021`, `18.0`, `18`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/18.0/Dockerfile) -- [`17.0-20251008`, `17.0`, `17`](https://github.com/odoo/docker/blob/f24d0401287edf563bacf60de5f08f8edee8cf19/17.0/Dockerfile) +- [`17.0-20251021`, `17.0`, `17`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/17.0/Dockerfile) # Quick reference (cont.) diff --git a/orientdb/README.md b/orientdb/README.md index 7832e0772597..28665e2576c1 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.2.44`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/0bb558c4efb3735b31003bd90fc094dc17b7ef5b/release/3.2.x/3.2.44/Dockerfile) +- [`3.2.45`, `3.2`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/9bfd68a64234423574e38a7a1f5e6a2098191f6a/release/3.2.x/3.2.45/Dockerfile) -- [`3.2.44-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/0bb558c4efb3735b31003bd90fc094dc17b7ef5b/release/3.2.x/3.2.44-tp3/Dockerfile) +- [`3.2.45-tp3`, `3.2-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/9bfd68a64234423574e38a7a1f5e6a2098191f6a/release/3.2.x/3.2.45-tp3/Dockerfile) - [`3.1.20`, `3.1`](https://github.com/orientechnologies/orientdb-docker/blob/a8a42acbe19dad60a051afe08ed625e66587dd37/release/3.1.x/3.1.20/Dockerfile) diff --git a/telegraf/README.md b/telegraf/README.md index 564b887576af..cf3c260fbd92 100644 --- a/telegraf/README.md +++ b/telegraf/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.34/Dockerfile) +- [`1.34`, `1.34.4`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.34/Dockerfile) -- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.34/alpine/Dockerfile) +- [`1.34-alpine`, `1.34.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.34/alpine/Dockerfile) -- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.35/Dockerfile) +- [`1.35`, `1.35.4`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.35/Dockerfile) -- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.35/alpine/Dockerfile) +- [`1.35-alpine`, `1.35.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.35/alpine/Dockerfile) -- [`1.36`, `1.36.2`, `latest`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.36/Dockerfile) +- [`1.36`, `1.36.3`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.36/Dockerfile) -- [`1.36-alpine`, `1.36.2-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/045df18324070d29fcdd716644bf908ed4fedf48/telegraf/1.36/alpine/Dockerfile) +- [`1.36-alpine`, `1.36.3-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9214a8a246e3cd00adb808098ea2191032f6fe8d/telegraf/1.36/alpine/Dockerfile) # Quick reference (cont.) From 34e02e4054337bf8d2a7bfd24517e278d4065ee6 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Oct 2025 13:11:15 -0700 Subject: [PATCH 2626/2686] Run update.sh --- haproxy/README.md | 4 ++-- jetty/README.md | 50 +++++++++++++++++++++++------------------------ 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 71d84a59857d..ce4d57e5db14 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev9`, `3.3-dev`, `3.3-dev9-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/4cd7a3775e0995919e129289cfa2e314e37fb15e/3.3/Dockerfile) +- [`3.3-dev10`, `3.3-dev`, `3.3-dev10-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/be4757e151254dc143f8dfb7cc25b39df8a01543/3.3/Dockerfile) -- [`3.3-dev9-alpine`, `3.3-dev-alpine`, `3.3-dev9-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/4cd7a3775e0995919e129289cfa2e314e37fb15e/3.3/alpine/Dockerfile) +- [`3.3-dev10-alpine`, `3.3-dev-alpine`, `3.3-dev10-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/be4757e151254dc143f8dfb7cc25b39df8a01543/3.3/alpine/Dockerfile) - [`3.2.6`, `3.2`, `latest`, `lts`, `3.2.6-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/04b2168ff76f90727c02f01cb719f655e768f6fd/3.2/Dockerfile) diff --git a/jetty/README.md b/jetty/README.md index 2e36e075662a..92c2e6b1ec73 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,33 +54,33 @@ WARNING: - [`9.4.58-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.58-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.1.1-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.1-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) +- [`12.1.2-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.2-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) -- [`12.1.1`, `12.1`, `12`, `12.1.1-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.1-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.1-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk21/Dockerfile) +- [`12.1.2`, `12.1`, `12`, `12.1.2-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.2-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.2-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk21/Dockerfile) -- [`12.1.1-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.1-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) +- [`12.1.2-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.2-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) -- [`12.1.1-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.1-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/eclipse-temurin/12.1/jdk17/Dockerfile) +- [`12.1.2-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.2-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk17/Dockerfile) -- [`12.0.27-jre21-alpine`, `12.0-jre21-alpine`, `12.0.27-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.28-jre21-alpine`, `12.0-jre21-alpine`, `12.0.28-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.27-jre21`, `12.0-jre21`, `12.0.27-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.28-jre21`, `12.0-jre21`, `12.0.28-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.27-jre17-alpine`, `12.0-jre17-alpine`, `12.0.27-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.28-jre17-alpine`, `12.0-jre17-alpine`, `12.0.28-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.27-jre17`, `12.0-jre17`, `12.0.27-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.28-jre17`, `12.0-jre17`, `12.0.28-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.27-jdk24-alpine`, `12.0-jdk24-alpine`, `12.0.27-jdk24-alpine-eclipse-temurin`, `12.0-jdk24-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk24-alpine/Dockerfile) +- [`12.0.28-jdk25-alpine`, `12.0-jdk25-alpine`, `12.0.28-jdk25-alpine-eclipse-temurin`, `12.0-jdk25-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/eclipse-temurin/12.0/jdk25-alpine/Dockerfile) -- [`12.0.27-jdk24`, `12.0-jdk24`, `12.0.27-jdk24-eclipse-temurin`, `12.0-jdk24-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk24/Dockerfile) +- [`12.0.28-jdk25`, `12.0-jdk25`, `12.0.28-jdk25-eclipse-temurin`, `12.0-jdk25-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/eclipse-temurin/12.0/jdk25/Dockerfile) -- [`12.0.27-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.27-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.28-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.28-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.27`, `12.0`, `12.0.27-jdk21`, `12.0-jdk21`, `12.0.27-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.27-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.28`, `12.0`, `12.0.28-jdk21`, `12.0-jdk21`, `12.0.28-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.28-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.27-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.27-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.28-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.28-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.27-jdk17`, `12.0-jdk17`, `12.0.27-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.28-jdk17`, `12.0-jdk17`, `12.0.28-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.26-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.26-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -146,27 +146,27 @@ WARNING: - [`9.4.58-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.1.1-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk21-alpine/Dockerfile) +- [`12.1.2-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk21-alpine/Dockerfile) -- [`12.1.1-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.1-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk21/Dockerfile) +- [`12.1.2-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.2-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk21/Dockerfile) -- [`12.1.1-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk17-alpine/Dockerfile) +- [`12.1.2-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk17-alpine/Dockerfile) -- [`12.1.1-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/7b96e36d06c0c483e7febbb975b398d546fdd7e3/amazoncorretto/12.1/jdk17/Dockerfile) +- [`12.1.2-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk17/Dockerfile) -- [`12.0.27-jdk24-al2023-amazoncorretto`, `12.0-jdk24-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk24-al2023/Dockerfile) +- [`12.0.28-jdk25-al2023-amazoncorretto`, `12.0-jdk25-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/amazoncorretto/12.0/jdk25-al2023/Dockerfile) -- [`12.0.27-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.28-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.27-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.28-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.27-amazoncorretto`, `12.0-amazoncorretto`, `12.0.27-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.28-amazoncorretto`, `12.0-amazoncorretto`, `12.0.28-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.27-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.28-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.27-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.28-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.27-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1f3921ec1c01e622d6ddb0f64f02fbf266e68312/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.28-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.26-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21-alpine/Dockerfile) From 17adef4a7869dc127f204d63edb8eecf8c8daf71 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Oct 2025 15:10:50 -0700 Subject: [PATCH 2627/2686] Run update.sh --- amazoncorretto/README.md | 110 +++++++++++++++++---------------------- 1 file changed, 48 insertions(+), 62 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 971cc8efe54e..75824ad92d2f 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,115 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u462`, `8u462-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u462-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u472`, `8u472-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u472-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u462-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u462-al2023-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u472-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u472-al2023-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u462-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u472-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u462-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u472-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u462-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u472-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u462-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u472-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u462-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u472-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u462-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u472-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u462-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u472-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u462-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u472-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.21/Dockerfile) -- [`8-alpine3.22`, `8u462-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u462-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jdk/alpine/3.22/Dockerfile) +- [`8-alpine3.22`, `8u472-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u472-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.22/Dockerfile) -- [`8-alpine3.22-jre`, `8u462-alpine3.22-jre`, `8-alpine-jre`, `8u462-alpine-jre`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/8/jre/alpine/3.22/Dockerfile) +- [`8-alpine3.22-jre`, `8u472-alpine3.22-jre`, `8-alpine-jre`, `8u472-alpine-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.22/Dockerfile) -- [`11`, `11.0.28`, `11.0.28-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.28-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.29`, `11.0.29-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.29-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.28-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.29-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.28-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.29-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.28-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.29-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.28-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.29-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.28-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.29-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2/Dockerfile) -- [`11-alpine3.19`, `11.0.28-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.29-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.28-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.29-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.28-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.29-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.21/Dockerfile) -- [`11-alpine3.22`, `11.0.28-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.28-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/11/jdk/alpine/3.22/Dockerfile) +- [`11-alpine3.22`, `11.0.29-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.29-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.22/Dockerfile) -- [`17`, `17.0.16`, `17.0.16-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.16-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.17`, `17.0.17-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.17-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.16-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.17-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.16-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.17-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.16-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.17-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.16-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.17-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.16-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.17-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.16-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.17-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2/Dockerfile) -- [`17-alpine3.19`, `17.0.16-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.17-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.16-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.17-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.16-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.17-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.21/Dockerfile) -- [`17-alpine3.22`, `17.0.16-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.16-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/17/jdk/alpine/3.22/Dockerfile) +- [`17-alpine3.22`, `17.0.17-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.17-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.22/Dockerfile) -- [`21`, `21.0.8`, `21.0.8-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.8-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.9`, `21.0.9-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.9-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.8-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.9-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.8-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.8-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/headful/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.8-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.9-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.8-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.9-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.8-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.9-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.21/Dockerfile) -- [`21-alpine3.22`, `21.0.8-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.8-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/21/jdk/alpine/3.22/Dockerfile) +- [`21-alpine3.22`, `21.0.9-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.9-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.22/Dockerfile) -- [`24-al2023`, `24.0.2-al2023`, `24-al2023-jdk`, `24`, `24-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/al2023/Dockerfile) +- [`25-al2023`, `25.0.1-al2023`, `25-al2023-jdk`, `25`, `25-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/al2023/Dockerfile) -- [`24-al2023-headless`, `24.0.2-al2023-headless`, `24-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/headless/al2023/Dockerfile) +- [`25-al2023-headless`, `25.0.1-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/headless/al2023/Dockerfile) -- [`24-al2023-headful`, `24.0.2-al2023-headful`, `24-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/headful/al2023/Dockerfile) +- [`25-al2023-headful`, `25.0.1-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/headful/al2023/Dockerfile) -- [`24-alpine3.19`, `24.0.2-alpine3.19`, `24-alpine3.19-full`, `24-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.19/Dockerfile) +- [`25-alpine3.19`, `25.0.1-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.19/Dockerfile) -- [`24-alpine3.20`, `24.0.2-alpine3.20`, `24-alpine3.20-full`, `24-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.20/Dockerfile) +- [`25-alpine3.20`, `25.0.1-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.20/Dockerfile) -- [`24-alpine3.21`, `24.0.2-alpine3.21`, `24-alpine3.21-full`, `24-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.21/Dockerfile) +- [`25-alpine3.21`, `25.0.1-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.21/Dockerfile) -- [`24-alpine3.22`, `24.0.2-alpine3.22`, `24-alpine3.22-full`, `24-alpine3.22-jdk`, `24-alpine`, `24.0.2-alpine`, `24-alpine-full`, `24-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/24/jdk/alpine/3.22/Dockerfile) - -- [`25-al2023`, `25.0.0-al2023`, `25-al2023-jdk`, `25`, `25-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/al2023/Dockerfile) - -- [`25-al2023-headless`, `25.0.0-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/headless/al2023/Dockerfile) - -- [`25-al2023-headful`, `25.0.0-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/headful/al2023/Dockerfile) - -- [`25-alpine3.19`, `25.0.0-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.19/Dockerfile) - -- [`25-alpine3.20`, `25.0.0-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.20/Dockerfile) - -- [`25-alpine3.21`, `25.0.0-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.21/Dockerfile) - -- [`25-alpine3.22`, `25.0.0-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.0-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da3b725e5c2e6dd6732320efc68288938486b3cd/25/jdk/alpine/3.22/Dockerfile) +- [`25-alpine3.22`, `25.0.1-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.1-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.22/Dockerfile) # Quick reference (cont.) From f0dd435bc93ee37bb84e649ed61d024b356d602b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 21 Oct 2025 17:11:21 -0700 Subject: [PATCH 2628/2686] Run update.sh --- bash/README.md | 2 +- mysql/README.md | 8 ++-- sapmachine/README.md | 88 ++++++++++++++++++++++---------------------- wordpress/README.md | 24 ++++++++++++ 4 files changed, 73 insertions(+), 49 deletions(-) diff --git a/bash/README.md b/bash/README.md index 171be83d356a..053e091249fa 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20251006`, `devel`, `devel-20251006-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/33dd5c2ee28bf8f5a2429d538e2dbb3a00cd52a5/devel/Dockerfile) +- [`devel-20251017`, `devel`, `devel-20251017-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/476ec467526ad9b13b328f2037a92db6dcaa1777/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/mysql/README.md b/mysql/README.md index 3698f10de017..65faffd1b567 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.4.0`, `9.4`, `9`, `innovation`, `latest`, `9.4.0-oraclelinux9`, `9.4-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.4.0-oracle`, `9.4-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/innovation/Dockerfile.oracle) +- [`9.5.0`, `9.5`, `9`, `innovation`, `latest`, `9.5.0-oraclelinux9`, `9.5-oraclelinux9`, `9-oraclelinux9`, `innovation-oraclelinux9`, `oraclelinux9`, `9.5.0-oracle`, `9.5-oracle`, `9-oracle`, `innovation-oracle`, `oracle`](https://github.com/docker-library/mysql/blob/70c7d9777ced9f553109306404fe3c8700b3e9f7/innovation/Dockerfile.oracle) -- [`8.4.6`, `8.4`, `8`, `lts`, `8.4.6-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.6-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.4/Dockerfile.oracle) +- [`8.4.7`, `8.4`, `8`, `lts`, `8.4.7-oraclelinux9`, `8.4-oraclelinux9`, `8-oraclelinux9`, `lts-oraclelinux9`, `8.4.7-oracle`, `8.4-oracle`, `8-oracle`, `lts-oracle`](https://github.com/docker-library/mysql/blob/ddb031e406121b1a298563775d521c044452a508/8.4/Dockerfile.oracle) -- [`8.0.43`, `8.0`, `8.0.43-oraclelinux9`, `8.0-oraclelinux9`, `8.0.43-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.0/Dockerfile.oracle) +- [`8.0.44`, `8.0`, `8.0.44-oraclelinux9`, `8.0-oraclelinux9`, `8.0.44-oracle`, `8.0-oracle`](https://github.com/docker-library/mysql/blob/ca7d66e7cb817097f7b3aec9497ba1ffcce230e7/8.0/Dockerfile.oracle) -- [`8.0.43-bookworm`, `8.0-bookworm`, `8.0.43-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/7a5e9fbb739c7d423437b8687dfd400ea84fdb20/8.0/Dockerfile.debian) +- [`8.0.44-bookworm`, `8.0-bookworm`, `8.0.44-debian`, `8.0-debian`](https://github.com/docker-library/mysql/blob/ca7d66e7cb817097f7b3aec9497ba1ffcce230e7/8.0/Dockerfile.debian) # Quick reference (cont.) diff --git a/sapmachine/README.md b/sapmachine/README.md index 7e9285a621d6..2df7e94f7439 100644 --- a/sapmachine/README.md +++ b/sapmachine/README.md @@ -24,93 +24,93 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `lts`, `lts-ubuntu`, `25`, `25-ubuntu`, `25-jdk`, `25-jdk-ubuntu`, `lts-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `25-ubuntu-noble`, `25-ubuntu-24.04`, `25-jdk-ubuntu-noble`, `25-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jdk/Dockerfile) +- [`latest`, `ubuntu`, `jdk`, `jdk-ubuntu`, `lts`, `lts-ubuntu`, `25`, `25-ubuntu`, `25.0.1`, `25.0.1-ubuntu`, `25-jdk`, `25-jdk-ubuntu`, `25.0.1-jdk`, `25.0.1-jdk-ubuntu`, `lts-jdk-ubuntu`, `ubuntu-noble`, `ubuntu-24.04`, `jdk-ubuntu-noble`, `jdk-ubuntu-24.04`, `lts-ubuntu-noble`, `lts-ubuntu-24.04`, `lts-jdk-ubuntu-noble`, `lts-jdk-ubuntu-24.04`, `25-ubuntu-noble`, `25-ubuntu-24.04`, `25-jdk-ubuntu-noble`, `25-jdk-ubuntu-24.04`, `25.0.1-ubuntu-noble`, `25.0.1-ubuntu-24.04`, `25.0.1-jdk-ubuntu-noble`, `25.0.1-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/24_04/jdk/Dockerfile) -- [`jdk-headless`, `jdk-headless-ubuntu`, `25-jdk-headless`, `25-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `25-jdk-headless-ubuntu-noble`, `25-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jdk-headless/Dockerfile) +- [`jdk-headless`, `jdk-headless-ubuntu`, `25-jdk-headless`, `25-jdk-headless-ubuntu`, `25.0.1-jdk-headless`, `25.0.1-jdk-headless-ubuntu`, `lts-jdk-headless-ubuntu`, `jdk-headless-ubuntu-noble`, `jdk-headless-ubuntu-24.04`, `lts-jdk-headless-ubuntu-noble`, `lts-jdk-headless-ubuntu-24.04`, `25-jdk-headless-ubuntu-noble`, `25-jdk-headless-ubuntu-24.04`, `25.0.1-jdk-headless-ubuntu-noble`, `25.0.1-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/24_04/jdk-headless/Dockerfile) -- [`jre`, `jre-ubuntu`, `25-jre`, `25-jre-ubuntu`, `lts-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `25-jre-ubuntu-noble`, `25-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jre/Dockerfile) +- [`jre`, `jre-ubuntu`, `25-jre`, `25-jre-ubuntu`, `25.0.1-jre`, `25.0.1-jre-ubuntu`, `lts-jre-ubuntu`, `jre-ubuntu-noble`, `jre-ubuntu-24.04`, `lts-jre-ubuntu-noble`, `lts-jre-ubuntu-24.04`, `25-jre-ubuntu-noble`, `25-jre-ubuntu-24.04`, `25.0.1-jre-ubuntu-noble`, `25.0.1-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/24_04/jre/Dockerfile) -- [`jre-headless`, `jre-headless-ubuntu`, `25-jre-headless`, `25-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `25-jre-headless-ubuntu-noble`, `25-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/24_04/jre-headless/Dockerfile) +- [`jre-headless`, `jre-headless-ubuntu`, `25-jre-headless`, `25-jre-headless-ubuntu`, `25.0.1-jre-headless`, `25.0.1-jre-headless-ubuntu`, `lts-jre-headless-ubuntu`, `jre-headless-ubuntu-noble`, `jre-headless-ubuntu-24.04`, `lts-jre-headless-ubuntu-noble`, `lts-jre-headless-ubuntu-24.04`, `25-jre-headless-ubuntu-noble`, `25-jre-headless-ubuntu-24.04`, `25.0.1-jre-headless-ubuntu-noble`, `25.0.1-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/24_04/jre-headless/Dockerfile) -- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `25-ubuntu-jammy`, `25-ubuntu-22.04`, `25-jdk-ubuntu-jammy`, `25-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jdk/Dockerfile) +- [`ubuntu-jammy`, `ubuntu-22.04`, `jdk-ubuntu-jammy`, `jdk-ubuntu-22.04`, `lts-ubuntu-jammy`, `lts-ubuntu-22.04`, `lts-jdk-ubuntu-jammy`, `lts-jdk-ubuntu-22.04`, `25-ubuntu-jammy`, `25-ubuntu-22.04`, `25-jdk-ubuntu-jammy`, `25-jdk-ubuntu-22.04`, `25.0.1-ubuntu-jammy`, `25.0.1-ubuntu-22.04`, `25.0.1-jdk-ubuntu-jammy`, `25.0.1-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/22_04/jdk/Dockerfile) -- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `25-jdk-headless-ubuntu-jammy`, `25-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jdk-headless/Dockerfile) +- [`jdk-headless-ubuntu-jammy`, `jdk-headless-ubuntu-22.04`, `lts-jdk-headless-ubuntu-jammy`, `lts-jdk-headless-ubuntu-22.04`, `25-jdk-headless-ubuntu-jammy`, `25-jdk-headless-ubuntu-22.04`, `25.0.1-jdk-headless-ubuntu-jammy`, `25.0.1-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/22_04/jdk-headless/Dockerfile) -- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `25-jre-ubuntu-jammy`, `25-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jre/Dockerfile) +- [`jre-ubuntu-jammy`, `jre-ubuntu-22.04`, `lts-jre-ubuntu-jammy`, `lts-jre-ubuntu-22.04`, `25-jre-ubuntu-jammy`, `25-jre-ubuntu-22.04`, `25.0.1-jre-ubuntu-jammy`, `25.0.1-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/22_04/jre/Dockerfile) -- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `25-jre-headless-ubuntu-jammy`, `25-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/ubuntu/22_04/jre-headless/Dockerfile) +- [`jre-headless-ubuntu-jammy`, `jre-headless-ubuntu-22.04`, `lts-jre-headless-ubuntu-jammy`, `lts-jre-headless-ubuntu-22.04`, `25-jre-headless-ubuntu-jammy`, `25-jre-headless-ubuntu-22.04`, `25.0.1-jre-headless-ubuntu-jammy`, `25.0.1-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/ubuntu/22_04/jre-headless/Dockerfile) -- [`alpine`, `jdk-alpine`, `lts-alpine`, `25-alpine`, `lts-jdk-alpine`, `25-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `25-alpine-3.22`, `25-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_22/jdk/Dockerfile) +- [`alpine`, `jdk-alpine`, `lts-alpine`, `25-alpine`, `25.0.1-alpine`, `lts-jdk-alpine`, `25-jdk-alpine`, `25.0.1-jdk-alpine`, `alpine-3.22`, `jdk-alpine-3.22`, `lts-alpine-3.22`, `lts-jdk-alpine-3.22`, `25-alpine-3.22`, `25-jdk-alpine-3.22`, `25.0.1-alpine-3.22`, `25.0.1-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/alpine/3_22/jdk/Dockerfile) -- [`jre-alpine`, `lts-jre-alpine`, `25-jre-alpine`, `jre-alpine-3.22`, `lts-jre-alpine-3.22`, `25-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_22/jre/Dockerfile) +- [`jre-alpine`, `lts-jre-alpine`, `25-jre-alpine`, `25.0.1-jre-alpine`, `jre-alpine-3.22`, `lts-jre-alpine-3.22`, `25-jre-alpine-3.22`, `25.0.1-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/alpine/3_22/jre/Dockerfile) -- [`alpine-3.21`, `jdk-alpine-3.21`, `lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `25-alpine-3.21`, `25-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_21/jdk/Dockerfile) +- [`alpine-3.21`, `jdk-alpine-3.21`, `lts-alpine-3.21`, `lts-jdk-alpine-3.21`, `25-alpine-3.21`, `25-jdk-alpine-3.21`, `25.0.1-alpine-3.21`, `25.0.1-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/alpine/3_21/jdk/Dockerfile) -- [`jre-alpine-3.21`, `lts-jre-alpine-3.21`, `25-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/3dc09e5d7564bdb25db41c94741c69adf2e83853/dockerfiles/25/alpine/3_21/jre/Dockerfile) +- [`jre-alpine-3.21`, `lts-jre-alpine-3.21`, `25-jre-alpine-3.21`, `25.0.1-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/eecb8129379011a0a9eef9cc51095447e36c4fe7/dockerfiles/25/alpine/3_21/jre/Dockerfile) -- [`21`, `21-ubuntu`, `21.0.8`, `21.0.8-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.8-jdk`, `21.0.8-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.8-ubuntu-noble`, `21.0.8-ubuntu-24.04`, `21.0.8-jdk-ubuntu-noble`, `21.0.8-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) +- [`21`, `21-ubuntu`, `21.0.9`, `21.0.9-ubuntu`, `21-jdk`, `21-jdk-ubuntu`, `21.0.9-jdk`, `21.0.9-jdk-ubuntu`, `21-ubuntu-noble`, `21-ubuntu-24.04`, `21-jdk-ubuntu-noble`, `21-jdk-ubuntu-24.04`, `21.0.9-ubuntu-noble`, `21.0.9-ubuntu-24.04`, `21.0.9-jdk-ubuntu-noble`, `21.0.9-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/24_04/jdk/Dockerfile) -- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.8-jdk-headless`, `21.0.8-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.8-jdk-headless-ubuntu-noble`, `21.0.8-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) +- [`21-jdk-headless`, `21-jdk-headless-ubuntu`, `21.0.9-jdk-headless`, `21.0.9-jdk-headless-ubuntu`, `21-jdk-headless-ubuntu-noble`, `21-jdk-headless-ubuntu-24.04`, `21.0.9-jdk-headless-ubuntu-noble`, `21.0.9-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/24_04/jdk-headless/Dockerfile) -- [`21-jre`, `21-jre-ubuntu`, `21.0.8-jre`, `21.0.8-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.8-jre-ubuntu-noble`, `21.0.8-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) +- [`21-jre`, `21-jre-ubuntu`, `21.0.9-jre`, `21.0.9-jre-ubuntu`, `21-jre-ubuntu-noble`, `21-jre-ubuntu-24.04`, `21.0.9-jre-ubuntu-noble`, `21.0.9-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/24_04/jre/Dockerfile) -- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.8-jre-headless`, `21.0.8-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.8-jre-headless-ubuntu-noble`, `21.0.8-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) +- [`21-jre-headless`, `21-jre-headless-ubuntu`, `21.0.9-jre-headless`, `21.0.9-jre-headless-ubuntu`, `21-jre-headless-ubuntu-noble`, `21-jre-headless-ubuntu-24.04`, `21.0.9-jre-headless-ubuntu-noble`, `21.0.9-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/24_04/jre-headless/Dockerfile) -- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.8-ubuntu-jammy`, `21.0.8-ubuntu-22.04`, `21.0.8-jdk-ubuntu-jammy`, `21.0.8-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) +- [`21-ubuntu-jammy`, `21-ubuntu-22.04`, `21-jdk-ubuntu-jammy`, `21-jdk-ubuntu-22.04`, `21.0.9-ubuntu-jammy`, `21.0.9-ubuntu-22.04`, `21.0.9-jdk-ubuntu-jammy`, `21.0.9-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/22_04/jdk/Dockerfile) -- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.8-jdk-headless-ubuntu-jammy`, `21.0.8-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/91e51ca6dbafe13fd8779addc7bd182899f48c4d/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) +- [`21-jdk-headless-ubuntu-jammy`, `21-jdk-headless-ubuntu-22.04`, `21.0.9-jdk-headless-ubuntu-jammy`, `21.0.9-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/22_04/jdk-headless/Dockerfile) -- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.8-jre-ubuntu-jammy`, `21.0.8-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) +- [`21-jre-ubuntu-jammy`, `21-jre-ubuntu-22.04`, `21.0.9-jre-ubuntu-jammy`, `21.0.9-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/22_04/jre/Dockerfile) -- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.8-jre-headless-ubuntu-jammy`, `21.0.8-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) +- [`21-jre-headless-ubuntu-jammy`, `21-jre-headless-ubuntu-22.04`, `21.0.9-jre-headless-ubuntu-jammy`, `21.0.9-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/ubuntu/22_04/jre-headless/Dockerfile) -- [`21-alpine`, `21.0.8-alpine`, `21-jdk-alpine`, `21.0.8-jdk-alpine`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.8-alpine-3.22`, `21.0.8-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_22/jdk/Dockerfile) +- [`21-alpine`, `21.0.9-alpine`, `21-jdk-alpine`, `21.0.9-jdk-alpine`, `21-alpine-3.22`, `21-jdk-alpine-3.22`, `21.0.9-alpine-3.22`, `21.0.9-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/alpine/3_22/jdk/Dockerfile) -- [`21-jre-alpine`, `21.0.8-jre-alpine`, `21-jre-alpine-3.22`, `21.0.8-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_22/jre/Dockerfile) +- [`21-jre-alpine`, `21.0.9-jre-alpine`, `21-jre-alpine-3.22`, `21.0.9-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/alpine/3_22/jre/Dockerfile) -- [`21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.8-alpine-3.21`, `21.0.8-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_21/jdk/Dockerfile) +- [`21-alpine-3.21`, `21-jdk-alpine-3.21`, `21.0.9-alpine-3.21`, `21.0.9-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/alpine/3_21/jdk/Dockerfile) -- [`21-jre-alpine-3.21`, `21.0.8-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/989c1beedf97fc313bd38094ba546c58edd44f74/dockerfiles/21/alpine/3_21/jre/Dockerfile) +- [`21-jre-alpine-3.21`, `21.0.9-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/2604e69a438d534e1837e9407354f9a87a4a60e8/dockerfiles/21/alpine/3_21/jre/Dockerfile) -- [`17`, `17-ubuntu`, `17.0.16`, `17.0.16-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.16-jdk`, `17.0.16-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.16-ubuntu-noble`, `17.0.16-ubuntu-24.04`, `17.0.16-jdk-ubuntu-noble`, `17.0.16-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) +- [`17`, `17-ubuntu`, `17.0.17`, `17.0.17-ubuntu`, `17-jdk`, `17-jdk-ubuntu`, `17.0.17-jdk`, `17.0.17-jdk-ubuntu`, `17-ubuntu-noble`, `17-ubuntu-24.04`, `17-jdk-ubuntu-noble`, `17-jdk-ubuntu-24.04`, `17.0.17-ubuntu-noble`, `17.0.17-ubuntu-24.04`, `17.0.17-jdk-ubuntu-noble`, `17.0.17-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/24_04/jdk/Dockerfile) -- [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.16-jdk-headless`, `17.0.16-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.16-jdk-headless-ubuntu-noble`, `17.0.16-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) +- [`17-jdk-headless`, `17-jdk-headless-ubuntu`, `17.0.17-jdk-headless`, `17.0.17-jdk-headless-ubuntu`, `17-jdk-headless-ubuntu-noble`, `17-jdk-headless-ubuntu-24.04`, `17.0.17-jdk-headless-ubuntu-noble`, `17.0.17-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/24_04/jdk-headless/Dockerfile) -- [`17-jre`, `17-jre-ubuntu`, `17.0.16-jre`, `17.0.16-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.16-jre-ubuntu-noble`, `17.0.16-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) +- [`17-jre`, `17-jre-ubuntu`, `17.0.17-jre`, `17.0.17-jre-ubuntu`, `17-jre-ubuntu-noble`, `17-jre-ubuntu-24.04`, `17.0.17-jre-ubuntu-noble`, `17.0.17-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/24_04/jre/Dockerfile) -- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.16-jre-headless`, `17.0.16-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.16-jre-headless-ubuntu-noble`, `17.0.16-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) +- [`17-jre-headless`, `17-jre-headless-ubuntu`, `17.0.17-jre-headless`, `17.0.17-jre-headless-ubuntu`, `17-jre-headless-ubuntu-noble`, `17-jre-headless-ubuntu-24.04`, `17.0.17-jre-headless-ubuntu-noble`, `17.0.17-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/24_04/jre-headless/Dockerfile) -- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.16-ubuntu-jammy`, `17.0.16-ubuntu-22.04`, `17.0.16-jdk-ubuntu-jammy`, `17.0.16-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) +- [`17-ubuntu-jammy`, `17-ubuntu-22.04`, `17-jdk-ubuntu-jammy`, `17-jdk-ubuntu-22.04`, `17.0.17-ubuntu-jammy`, `17.0.17-ubuntu-22.04`, `17.0.17-jdk-ubuntu-jammy`, `17.0.17-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/22_04/jdk/Dockerfile) -- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.16-jdk-headless-ubuntu-jammy`, `17.0.16-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/81ccc83d83e0714d37e84c84ee487f390cb2d4ce/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) +- [`17-jdk-headless-ubuntu-jammy`, `17-jdk-headless-ubuntu-22.04`, `17.0.17-jdk-headless-ubuntu-jammy`, `17.0.17-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/22_04/jdk-headless/Dockerfile) -- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.16-jre-ubuntu-jammy`, `17.0.16-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) +- [`17-jre-ubuntu-jammy`, `17-jre-ubuntu-22.04`, `17.0.17-jre-ubuntu-jammy`, `17.0.17-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/22_04/jre/Dockerfile) -- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.16-jre-headless-ubuntu-jammy`, `17.0.16-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) +- [`17-jre-headless-ubuntu-jammy`, `17-jre-headless-ubuntu-22.04`, `17.0.17-jre-headless-ubuntu-jammy`, `17.0.17-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/ubuntu/22_04/jre-headless/Dockerfile) -- [`17-alpine`, `17.0.16-alpine`, `17-jdk-alpine`, `17.0.16-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.16-alpine-3.22`, `17.0.16-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_22/jdk/Dockerfile) +- [`17-alpine`, `17.0.17-alpine`, `17-jdk-alpine`, `17.0.17-jdk-alpine`, `17-alpine-3.22`, `17-jdk-alpine-3.22`, `17.0.17-alpine-3.22`, `17.0.17-jdk-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/alpine/3_22/jdk/Dockerfile) -- [`17-jre-alpine`, `17.0.16-jre-alpine`, `17-jre-alpine-3.22`, `17.0.16-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_22/jre/Dockerfile) +- [`17-jre-alpine`, `17.0.17-jre-alpine`, `17-jre-alpine-3.22`, `17.0.17-jre-alpine-3.22`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/alpine/3_22/jre/Dockerfile) -- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.16-alpine-3.21`, `17.0.16-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_21/jdk/Dockerfile) +- [`17-alpine-3.21`, `17-jdk-alpine-3.21`, `17.0.17-alpine-3.21`, `17.0.17-jdk-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/alpine/3_21/jdk/Dockerfile) -- [`17-jre-alpine-3.21`, `17.0.16-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/874b80982a0c001fd11cb6638e5fcb6fe4cfb21f/dockerfiles/17/alpine/3_21/jre/Dockerfile) +- [`17-jre-alpine-3.21`, `17.0.17-jre-alpine-3.21`](https://github.com/SAP/SapMachine-infrastructure/blob/c4644bb93c3d247b15c8193ed6c998e9355fbcde/dockerfiles/17/alpine/3_21/jre/Dockerfile) -- [`11`, `11-ubuntu`, `11.0.28`, `11.0.28-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.28-jdk`, `11.0.28-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.28-ubuntu-noble`, `11.0.28-ubuntu-24.04`, `11.0.28-jdk-ubuntu-noble`, `11.0.28-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) +- [`11`, `11-ubuntu`, `11.0.29`, `11.0.29-ubuntu`, `11-jdk`, `11-jdk-ubuntu`, `11.0.29-jdk`, `11.0.29-jdk-ubuntu`, `11-ubuntu-noble`, `11-ubuntu-24.04`, `11-jdk-ubuntu-noble`, `11-jdk-ubuntu-24.04`, `11.0.29-ubuntu-noble`, `11.0.29-ubuntu-24.04`, `11.0.29-jdk-ubuntu-noble`, `11.0.29-jdk-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/24_04/jdk/Dockerfile) -- [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.28-jdk-headless`, `11.0.28-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.28-jdk-headless-ubuntu-noble`, `11.0.28-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) +- [`11-jdk-headless`, `11-jdk-headless-ubuntu`, `11.0.29-jdk-headless`, `11.0.29-jdk-headless-ubuntu`, `11-jdk-headless-ubuntu-noble`, `11-jdk-headless-ubuntu-24.04`, `11.0.29-jdk-headless-ubuntu-noble`, `11.0.29-jdk-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/24_04/jdk-headless/Dockerfile) -- [`11-jre`, `11-jre-ubuntu`, `11.0.28-jre`, `11.0.28-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.28-jre-ubuntu-noble`, `11.0.28-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) +- [`11-jre`, `11-jre-ubuntu`, `11.0.29-jre`, `11.0.29-jre-ubuntu`, `11-jre-ubuntu-noble`, `11-jre-ubuntu-24.04`, `11.0.29-jre-ubuntu-noble`, `11.0.29-jre-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/24_04/jre/Dockerfile) -- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.28-jre-headless`, `11.0.28-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.28-jre-headless-ubuntu-noble`, `11.0.28-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) +- [`11-jre-headless`, `11-jre-headless-ubuntu`, `11.0.29-jre-headless`, `11.0.29-jre-headless-ubuntu`, `11-jre-headless-ubuntu-noble`, `11-jre-headless-ubuntu-24.04`, `11.0.29-jre-headless-ubuntu-noble`, `11.0.29-jre-headless-ubuntu-24.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/24_04/jre-headless/Dockerfile) -- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.28-ubuntu-jammy`, `11.0.28-ubuntu-22.04`, `11.0.28-jdk-ubuntu-jammy`, `11.0.28-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) +- [`11-ubuntu-jammy`, `11-ubuntu-22.04`, `11-jdk-ubuntu-jammy`, `11-jdk-ubuntu-22.04`, `11.0.29-ubuntu-jammy`, `11.0.29-ubuntu-22.04`, `11.0.29-jdk-ubuntu-jammy`, `11.0.29-jdk-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/22_04/jdk/Dockerfile) -- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.28-jdk-headless-ubuntu-jammy`, `11.0.28-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/8d84d8ee2e839d8f5f923978ff4446704318120f/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) +- [`11-jdk-headless-ubuntu-jammy`, `11-jdk-headless-ubuntu-22.04`, `11.0.29-jdk-headless-ubuntu-jammy`, `11.0.29-jdk-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/22_04/jdk-headless/Dockerfile) -- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.28-jre-ubuntu-jammy`, `11.0.28-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) +- [`11-jre-ubuntu-jammy`, `11-jre-ubuntu-22.04`, `11.0.29-jre-ubuntu-jammy`, `11.0.29-jre-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/22_04/jre/Dockerfile) -- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.28-jre-headless-ubuntu-jammy`, `11.0.28-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/fe73fbcedcbaed0232d7276f2901aebe33e347fc/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) +- [`11-jre-headless-ubuntu-jammy`, `11-jre-headless-ubuntu-22.04`, `11.0.29-jre-headless-ubuntu-jammy`, `11.0.29-jre-headless-ubuntu-22.04`](https://github.com/SAP/SapMachine-infrastructure/blob/e4d018e5f421f7de356040c75eba68a3de98a175/dockerfiles/11/ubuntu/22_04/jre-headless/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 4f17ac905739..661c2f6f0650 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,6 +56,30 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) +- [`beta-6.9-beta1-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta1-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/apache/Dockerfile) + +- [`beta-6.9-beta1-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/fpm/Dockerfile) + +- [`beta-6.9-beta1-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/fpm-alpine/Dockerfile) + +- [`beta-6.9-beta1-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta1-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/apache/Dockerfile) + +- [`beta-6.9-beta1-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/fpm/Dockerfile) + +- [`beta-6.9-beta1-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/fpm-alpine/Dockerfile) + +- [`beta-6.9-beta1-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta1`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta1-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta1-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/apache/Dockerfile) + +- [`beta-6.9-beta1-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta1-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/fpm/Dockerfile) + +- [`beta-6.9-beta1-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta1-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/fpm-alpine/Dockerfile) + +- [`beta-6.9-beta1-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta1-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/apache/Dockerfile) + +- [`beta-6.9-beta1-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/fpm/Dockerfile) + +- [`beta-6.9-beta1-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/fpm-alpine/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: From dee1fe5b5eaa3ea4118cb84a33e9f38e56232640 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Oct 2025 11:10:57 -0700 Subject: [PATCH 2629/2686] Run update.sh --- elixir/README.md | 18 ++++++++--------- ghost/README.md | 4 ++-- jetty/README.md | 50 +++++++++++++++++++++++----------------------- postgres/README.md | 48 ++++++++++++++++++++++---------------------- 4 files changed, 60 insertions(+), 60 deletions(-) diff --git a/elixir/README.md b/elixir/README.md index b5524cdfb36b..d7751f7ee28f 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.19.0`, `1.19`, `latest`, `1.19.0-otp-28`, `1.19-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/Dockerfile) +- [`1.19.1`, `1.19`, `latest`, `1.19.1-otp-28`, `1.19-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/Dockerfile) -- [`1.19.0-slim`, `1.19-slim`, `slim`, `1.19.0-otp-28-slim`, `1.19-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/slim/Dockerfile) +- [`1.19.1-slim`, `1.19-slim`, `slim`, `1.19.1-otp-28-slim`, `1.19-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/slim/Dockerfile) -- [`1.19.0-alpine`, `1.19-alpine`, `alpine`, `1.19.0-otp-28-alpine`, `1.19-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/alpine/Dockerfile) +- [`1.19.1-alpine`, `1.19-alpine`, `alpine`, `1.19.1-otp-28-alpine`, `1.19-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/alpine/Dockerfile) -- [`1.19.0-otp-26`, `1.19-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26/Dockerfile) +- [`1.19.1-otp-26`, `1.19-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26/Dockerfile) -- [`1.19.0-otp-26-alpine`, `1.19-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26-alpine/Dockerfile) +- [`1.19.1-otp-26-alpine`, `1.19-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26-alpine/Dockerfile) -- [`1.19.0-otp-26-slim`, `1.19-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-26-slim/Dockerfile) +- [`1.19.1-otp-26-slim`, `1.19-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26-slim/Dockerfile) -- [`1.19.0-otp-27`, `1.19-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27/Dockerfile) +- [`1.19.1-otp-27`, `1.19-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27/Dockerfile) -- [`1.19.0-otp-27-alpine`, `1.19-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27-alpine/Dockerfile) +- [`1.19.1-otp-27-alpine`, `1.19-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27-alpine/Dockerfile) -- [`1.19.0-otp-27-slim`, `1.19-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/8fac2ddba9508801bf2a03bac7edbd1d7e9c135b/1.19/otp-27-slim/Dockerfile) +- [`1.19.1-otp-27-slim`, `1.19-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27-slim/Dockerfile) - [`1.18.4`, `1.18`, `1.18.4-otp-28`, `1.18-otp-28`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/Dockerfile) diff --git a/ghost/README.md b/ghost/README.md index 8c2d7bb82bba..4102ca3598bd 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.4.0`, `6.4`, `6`, `latest`](https://github.com/docker-library/ghost/blob/e092f980a4b38a19303f42b7eceb7b80d441e202/6/debian/Dockerfile) +- [`6.5.0`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/f952f7615274894d6efb0fbc765f5368580fb39a/6/debian/Dockerfile) -- [`6.4.0-alpine`, `6.4-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/e092f980a4b38a19303f42b7eceb7b80d441e202/6/alpine/Dockerfile) +- [`6.5.0-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f952f7615274894d6efb0fbc765f5368580fb39a/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) diff --git a/jetty/README.md b/jetty/README.md index 92c2e6b1ec73..3978cb2da1f7 100644 --- a/jetty/README.md +++ b/jetty/README.md @@ -54,33 +54,33 @@ WARNING: - [`9.4.58-jdk11`, `9.4-jdk11`, `9-jdk11`, `9.4.58-jdk11-eclipse-temurin`, `9.4-jdk11-eclipse-temurin`, `9-jdk11-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/eclipse-temurin/9.4/jdk11/Dockerfile) -- [`12.1.2-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.2-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) +- [`12.1.3-jdk21-alpine`, `12.1-jdk21-alpine`, `12-jdk21-alpine`, `12.1.3-jdk21-alpine-eclipse-temurin`, `12.1-jdk21-alpine-eclipse-temurin`, `12-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.1/jdk21-alpine/Dockerfile) -- [`12.1.2`, `12.1`, `12`, `12.1.2-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.2-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.2-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk21/Dockerfile) +- [`12.1.3`, `12.1`, `12`, `12.1.3-jdk21`, `12.1-jdk21`, `12-jdk21`, `12.1.3-eclipse-temurin`, `12.1-eclipse-temurin`, `12-eclipse-temurin`, `12.1.3-jdk21-eclipse-temurin`, `12.1-jdk21-eclipse-temurin`, `12-jdk21-eclipse-temurin`, `latest`, `jdk21`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.1/jdk21/Dockerfile) -- [`12.1.2-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.2-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) +- [`12.1.3-jdk17-alpine`, `12.1-jdk17-alpine`, `12-jdk17-alpine`, `12.1.3-jdk17-alpine-eclipse-temurin`, `12.1-jdk17-alpine-eclipse-temurin`, `12-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.1/jdk17-alpine/Dockerfile) -- [`12.1.2-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.2-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.1/jdk17/Dockerfile) +- [`12.1.3-jdk17`, `12.1-jdk17`, `12-jdk17`, `12.1.3-jdk17-eclipse-temurin`, `12.1-jdk17-eclipse-temurin`, `12-jdk17-eclipse-temurin`, `jdk17`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.1/jdk17/Dockerfile) -- [`12.0.28-jre21-alpine`, `12.0-jre21-alpine`, `12.0.28-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre21-alpine/Dockerfile) +- [`12.0.29-jre21-alpine`, `12.0-jre21-alpine`, `12.0.29-jre21-alpine-eclipse-temurin`, `12.0-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jre21-alpine/Dockerfile) -- [`12.0.28-jre21`, `12.0-jre21`, `12.0.28-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre21/Dockerfile) +- [`12.0.29-jre21`, `12.0-jre21`, `12.0.29-jre21-eclipse-temurin`, `12.0-jre21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jre21/Dockerfile) -- [`12.0.28-jre17-alpine`, `12.0-jre17-alpine`, `12.0.28-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre17-alpine/Dockerfile) +- [`12.0.29-jre17-alpine`, `12.0-jre17-alpine`, `12.0.29-jre17-alpine-eclipse-temurin`, `12.0-jre17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jre17-alpine/Dockerfile) -- [`12.0.28-jre17`, `12.0-jre17`, `12.0.28-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jre17/Dockerfile) +- [`12.0.29-jre17`, `12.0-jre17`, `12.0.29-jre17-eclipse-temurin`, `12.0-jre17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jre17/Dockerfile) -- [`12.0.28-jdk25-alpine`, `12.0-jdk25-alpine`, `12.0.28-jdk25-alpine-eclipse-temurin`, `12.0-jdk25-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/eclipse-temurin/12.0/jdk25-alpine/Dockerfile) +- [`12.0.29-jdk25-alpine`, `12.0-jdk25-alpine`, `12.0.29-jdk25-alpine-eclipse-temurin`, `12.0-jdk25-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk25-alpine/Dockerfile) -- [`12.0.28-jdk25`, `12.0-jdk25`, `12.0.28-jdk25-eclipse-temurin`, `12.0-jdk25-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/eclipse-temurin/12.0/jdk25/Dockerfile) +- [`12.0.29-jdk25`, `12.0-jdk25`, `12.0.29-jdk25-eclipse-temurin`, `12.0-jdk25-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk25/Dockerfile) -- [`12.0.28-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.28-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) +- [`12.0.29-jdk21-alpine`, `12.0-jdk21-alpine`, `12.0.29-jdk21-alpine-eclipse-temurin`, `12.0-jdk21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk21-alpine/Dockerfile) -- [`12.0.28`, `12.0`, `12.0.28-jdk21`, `12.0-jdk21`, `12.0.28-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.28-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk21/Dockerfile) +- [`12.0.29`, `12.0`, `12.0.29-jdk21`, `12.0-jdk21`, `12.0.29-eclipse-temurin`, `12.0-eclipse-temurin`, `12.0.29-jdk21-eclipse-temurin`, `12.0-jdk21-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk21/Dockerfile) -- [`12.0.28-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.28-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) +- [`12.0.29-jdk17-alpine`, `12.0-jdk17-alpine`, `12.0.29-jdk17-alpine-eclipse-temurin`, `12.0-jdk17-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk17-alpine/Dockerfile) -- [`12.0.28-jdk17`, `12.0-jdk17`, `12.0.28-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/eclipse-temurin/12.0/jdk17/Dockerfile) +- [`12.0.29-jdk17`, `12.0-jdk17`, `12.0.29-jdk17-eclipse-temurin`, `12.0-jdk17-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/eclipse-temurin/12.0/jdk17/Dockerfile) - [`11.0.26-jre21-alpine`, `11.0-jre21-alpine`, `11-jre21-alpine`, `11.0.26-jre21-alpine-eclipse-temurin`, `11.0-jre21-alpine-eclipse-temurin`, `11-jre21-alpine-eclipse-temurin`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/eclipse-temurin/11.0/jre21-alpine/Dockerfile) @@ -146,27 +146,27 @@ WARNING: - [`9.4.58-jdk11-amazoncorretto`, `9.4-jdk11-amazoncorretto`, `9-jdk11-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/eb7150579b055f3094f50e70f67678b9209baaf7/amazoncorretto/9.4/jdk11/Dockerfile) -- [`12.1.2-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk21-alpine/Dockerfile) +- [`12.1.3-jdk21-alpine-amazoncorretto`, `12.1-jdk21-alpine-amazoncorretto`, `12-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.1/jdk21-alpine/Dockerfile) -- [`12.1.2-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.2-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk21/Dockerfile) +- [`12.1.3-amazoncorretto`, `12.1-amazoncorretto`, `12-amazoncorretto`, `12.1.3-jdk21-amazoncorretto`, `12.1-jdk21-amazoncorretto`, `12-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.1/jdk21/Dockerfile) -- [`12.1.2-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk17-alpine/Dockerfile) +- [`12.1.3-jdk17-alpine-amazoncorretto`, `12.1-jdk17-alpine-amazoncorretto`, `12-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.1/jdk17-alpine/Dockerfile) -- [`12.1.2-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.1/jdk17/Dockerfile) +- [`12.1.3-jdk17-amazoncorretto`, `12.1-jdk17-amazoncorretto`, `12-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.1/jdk17/Dockerfile) -- [`12.0.28-jdk25-al2023-amazoncorretto`, `12.0-jdk25-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5aaedc67275a1a013fdff517d86fc1383af70e1e/amazoncorretto/12.0/jdk25-al2023/Dockerfile) +- [`12.0.29-jdk25-al2023-amazoncorretto`, `12.0-jdk25-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk25-al2023/Dockerfile) -- [`12.0.28-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21-alpine/Dockerfile) +- [`12.0.29-jdk21-alpine-amazoncorretto`, `12.0-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk21-alpine/Dockerfile) -- [`12.0.28-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21-al2023/Dockerfile) +- [`12.0.29-jdk21-al2023-amazoncorretto`, `12.0-jdk21-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk21-al2023/Dockerfile) -- [`12.0.28-amazoncorretto`, `12.0-amazoncorretto`, `12.0.28-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk21/Dockerfile) +- [`12.0.29-amazoncorretto`, `12.0-amazoncorretto`, `12.0.29-jdk21-amazoncorretto`, `12.0-jdk21-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk21/Dockerfile) -- [`12.0.28-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17-alpine/Dockerfile) +- [`12.0.29-jdk17-alpine-amazoncorretto`, `12.0-jdk17-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk17-alpine/Dockerfile) -- [`12.0.28-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17-al2023/Dockerfile) +- [`12.0.29-jdk17-al2023-amazoncorretto`, `12.0-jdk17-al2023-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk17-al2023/Dockerfile) -- [`12.0.28-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/d809b5668ca6c063cd913153dd0f5935f1276a4b/amazoncorretto/12.0/jdk17/Dockerfile) +- [`12.0.29-jdk17-amazoncorretto`, `12.0-jdk17-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/1a8792e3fac436b76b13f1d622927a7a440de299/amazoncorretto/12.0/jdk17/Dockerfile) - [`11.0.26-jdk21-alpine-amazoncorretto`, `11.0-jdk21-alpine-amazoncorretto`, `11-jdk21-alpine-amazoncorretto`](https://github.com/eclipse/jetty.docker/blob/5a8d565c6959453cf11c2906059be01adc848004/amazoncorretto/11.0/jdk21-alpine/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index f2323a60a974..e956b6bf293d 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -24,53 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.0`, `18`, `latest`, `18.0-trixie`, `18-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/trixie/Dockerfile) +- [`18.0`, `18`, `latest`, `18.0-trixie`, `18-trixie`, `trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/18/trixie/Dockerfile) -- [`18.0-bookworm`, `18-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/22ca5c8d8e4b37bece4d38dbce1a060583b5308a/18/bookworm/Dockerfile) +- [`18.0-bookworm`, `18-bookworm`, `bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/18/bookworm/Dockerfile) -- [`18.0-alpine3.22`, `18-alpine3.22`, `alpine3.22`, `18.0-alpine`, `18-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/18/alpine3.22/Dockerfile) +- [`18.0-alpine3.22`, `18-alpine3.22`, `alpine3.22`, `18.0-alpine`, `18-alpine`, `alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/18/alpine3.22/Dockerfile) -- [`18.0-alpine3.21`, `18-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/18/alpine3.21/Dockerfile) +- [`18.0-alpine3.21`, `18-alpine3.21`, `alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/18/alpine3.21/Dockerfile) -- [`17.6`, `17`, `17.6-trixie`, `17-trixie`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/trixie/Dockerfile) +- [`17.6`, `17`, `17.6-trixie`, `17-trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/17/trixie/Dockerfile) -- [`17.6-bookworm`, `17-bookworm`](https://github.com/docker-library/postgres/blob/87e6f65859a53d10c5170a587def1bfc882d3830/17/bookworm/Dockerfile) +- [`17.6-bookworm`, `17-bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/17/bookworm/Dockerfile) -- [`17.6-alpine3.22`, `17-alpine3.22`, `17.6-alpine`, `17-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/17/alpine3.22/Dockerfile) +- [`17.6-alpine3.22`, `17-alpine3.22`, `17.6-alpine`, `17-alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/17/alpine3.22/Dockerfile) -- [`17.6-alpine3.21`, `17-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/17/alpine3.21/Dockerfile) +- [`17.6-alpine3.21`, `17-alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/17/alpine3.21/Dockerfile) -- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/trixie/Dockerfile) +- [`16.10`, `16`, `16.10-trixie`, `16-trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/16/trixie/Dockerfile) -- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/16/bookworm/Dockerfile) +- [`16.10-bookworm`, `16-bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/16/bookworm/Dockerfile) -- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/16/alpine3.22/Dockerfile) +- [`16.10-alpine3.22`, `16-alpine3.22`, `16.10-alpine`, `16-alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/16/alpine3.22/Dockerfile) -- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/16/alpine3.21/Dockerfile) +- [`16.10-alpine3.21`, `16-alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/16/alpine3.21/Dockerfile) -- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/trixie/Dockerfile) +- [`15.14`, `15`, `15.14-trixie`, `15-trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/15/trixie/Dockerfile) -- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/15/bookworm/Dockerfile) +- [`15.14-bookworm`, `15-bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/15/bookworm/Dockerfile) -- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/15/alpine3.22/Dockerfile) +- [`15.14-alpine3.22`, `15-alpine3.22`, `15.14-alpine`, `15-alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/15/alpine3.22/Dockerfile) -- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/15/alpine3.21/Dockerfile) +- [`15.14-alpine3.21`, `15-alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/15/alpine3.21/Dockerfile) -- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/trixie/Dockerfile) +- [`14.19`, `14`, `14.19-trixie`, `14-trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/14/trixie/Dockerfile) -- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/14/bookworm/Dockerfile) +- [`14.19-bookworm`, `14-bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/14/bookworm/Dockerfile) -- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/14/alpine3.22/Dockerfile) +- [`14.19-alpine3.22`, `14-alpine3.22`, `14.19-alpine`, `14-alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/14/alpine3.22/Dockerfile) -- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/14/alpine3.21/Dockerfile) +- [`14.19-alpine3.21`, `14-alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/14/alpine3.21/Dockerfile) -- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/trixie/Dockerfile) +- [`13.22`, `13`, `13.22-trixie`, `13-trixie`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/13/trixie/Dockerfile) -- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/a2433755c76d294477c85945d68944f8cdb7cf4b/13/bookworm/Dockerfile) +- [`13.22-bookworm`, `13-bookworm`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/13/bookworm/Dockerfile) -- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/13/alpine3.22/Dockerfile) +- [`13.22-alpine3.22`, `13-alpine3.22`, `13.22-alpine`, `13-alpine`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/13/alpine3.22/Dockerfile) -- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/2c751341b6454412f2048de021a1f185212939de/13/alpine3.21/Dockerfile) +- [`13.22-alpine3.21`, `13-alpine3.21`](https://github.com/docker-library/postgres/blob/5ec89312491bdaa2c42377a65ec0af2ecb774480/13/alpine3.21/Dockerfile) # Quick reference (cont.) From 3cf5bdb7eae094d9b895126bc01bfb84c07bb590 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 22 Oct 2025 17:10:50 -0700 Subject: [PATCH 2630/2686] Run update.sh --- mageia/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mageia/README.md b/mageia/README.md index c54157a7e12e..6560c4b8a35d 100644 --- a/mageia/README.md +++ b/mageia/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/56f63e76f2588a3ad69ee13bacedb979bcfc2542/dist/9/x86_64/Dockerfile) +- [`9`, `latest`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/486e1b969f0d9789a9202020c4ade189da80aa03/dist/9/x86_64/Dockerfile) -- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/56f63e76f2588a3ad69ee13bacedb979bcfc2542/dist/cauldron/x86_64/Dockerfile) +- [`cauldron`](https://github.com/juanluisbaptiste/docker-brew-mageia/blob/486e1b969f0d9789a9202020c4ade189da80aa03/dist/cauldron/x86_64/Dockerfile) # Quick reference (cont.) From ea73b7248e8bf56d3dfc282056f54fb2a49d7561 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Oct 2025 11:11:12 -0700 Subject: [PATCH 2631/2686] Run update.sh --- xwiki/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwiki/README.md b/xwiki/README.md index 6030f5a5f789..feeb2fd87847 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.8-mariadb-tomcat`, `17.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.5`, `17.4-mysql-tomcat`, `17.4.5-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.6`, `17.4-mysql-tomcat`, `17.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.5-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.6-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.5-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/159c502280027ed5edebd0c96b5888b387b466ca/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.12`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mysql-tomcat/Dockerfile) From 667889297122b0af3764f7ef00d5f4827511724d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Oct 2025 14:13:53 -0700 Subject: [PATCH 2632/2686] Run update.sh --- elasticsearch/README.md | 6 ++---- logstash/README.md | 6 ++---- maven/README.md | 14 -------------- xwiki/README.md | 6 +++--- 4 files changed, 7 insertions(+), 25 deletions(-) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index fe564bfb6eee..d64bd91a15af 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -24,15 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/elasticsearch/Dockerfile) - - [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/elasticsearch/Dockerfile) -- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/elasticsearch/Dockerfile) +- [`8.19.6`](https://github.com/elastic/dockerfiles/blob/f45f0456d48e4f10e9088dad6a7b7e82d16d5bb6/elasticsearch/Dockerfile) - [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/elasticsearch/Dockerfile) -- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/elasticsearch/Dockerfile) +- [`9.1.6`](https://github.com/elastic/dockerfiles/blob/c42265d6748c905466afb341fc5455ab8525fae6/elasticsearch/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 28c1194f6bfa..05cfbc1716c8 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -24,15 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/logstash/Dockerfile) - - [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/logstash/Dockerfile) -- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/logstash/Dockerfile) +- [`8.19.6`](https://github.com/elastic/dockerfiles/blob/f45f0456d48e4f10e9088dad6a7b7e82d16d5bb6/logstash/Dockerfile) - [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/logstash/Dockerfile) -- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/logstash/Dockerfile) +- [`9.1.6`](https://github.com/elastic/dockerfiles/blob/c42265d6748c905466afb341fc5455ab8525fae6/logstash/Dockerfile) # Quick reference (cont.) diff --git a/maven/README.md b/maven/README.md index 9174b3cea8b1..3b7f0ecacfbb 100644 --- a/maven/README.md +++ b/maven/README.md @@ -108,20 +108,6 @@ WARNING: - [`4.0.0-rc-4-amazoncorretto-21`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-21-maven-4/Dockerfile) -- [`3.9.11-amazoncorretto-24`, `3.9-amazoncorretto-24`, `3-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24/Dockerfile) - -- [`3.9.11-amazoncorretto-24-al2023`, `3.9-amazoncorretto-24-al2023`, `3-amazoncorretto-24-al2023`](https://github.com/carlossg/docker-maven/blob/91a4014542b7460b411512805153b5876783fc70/amazoncorretto-24-al2023/Dockerfile) - -- [`4.0.0-rc-4-amazoncorretto-24-al2023`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-24-al2023-maven-4/Dockerfile) - -- [`3.9.11-amazoncorretto-24-alpine`, `3.9-amazoncorretto-24-alpine`, `3-amazoncorretto-24-alpine`](https://github.com/carlossg/docker-maven/blob/6bd15f0c704bad9806b4bbedea6f1faff5194c71/amazoncorretto-24-alpine/Dockerfile) - -- [`3.9.11-amazoncorretto-24-debian`, `3.9.11-amazoncorretto-24-debian-trixie`, `3.9-amazoncorretto-24-debian`, `3.9-amazoncorretto-24-debian-trixie`, `3-amazoncorretto-24-debian`, `3-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/5557ed7695b311b7880b5094dbedcb759dddd86a/amazoncorretto-24-debian/Dockerfile) - -- [`4.0.0-rc-4-amazoncorretto-24-debian`, `4.0.0-rc-4-amazoncorretto-24-debian-trixie`](https://github.com/carlossg/docker-maven/blob/3e68954f87f8b9be35921fdd538c4d769362f3bf/amazoncorretto-24-debian-maven-4/Dockerfile) - -- [`4.0.0-rc-4-amazoncorretto-24`](https://github.com/carlossg/docker-maven/blob/953489ab1a34d6a78158ed34b7432e19f119c466/amazoncorretto-24-maven-4/Dockerfile) - - [`3.9.11-amazoncorretto-25`, `3.9.11-amazoncorretto`, `3.9-amazoncorretto-25`, `3.9-amazoncorretto`, `3-amazoncorretto-25`, `3-amazoncorretto`, `amazoncorretto`](https://github.com/carlossg/docker-maven/blob/ea19ceba8f7f27dfca5db9a557c2c7104b9bbcf0/amazoncorretto-25/Dockerfile) - [`3.9.11-amazoncorretto-25-al2023`, `3.9-amazoncorretto-25-al2023`, `3-amazoncorretto-25-al2023`](https://github.com/carlossg/docker-maven/blob/8e4c2c5d8d70b078a60c23f1dea90edcde4bf0d2/amazoncorretto-25-al2023/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index feeb2fd87847..32e68fb84dd6 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`17.4-mariadb-tomcat`, `17.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.12`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.12-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.13`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.12-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.12-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/78748121cc2e917aa96dd18c45aeb20bc7181d7c/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From bf26d0313168b35b8fb5b8d131412ddc04e24f9e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Oct 2025 15:11:52 -0700 Subject: [PATCH 2633/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- elasticsearch/README.md | 4 ++-- ghost/README.md | 4 ++-- kibana/README.md | 8 +++----- logstash/README.md | 4 ++-- rakudo-star/README.md | 6 +++--- 6 files changed, 16 insertions(+), 18 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 7ac402e1da0b..dab58a6bb774 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.3`, `25.9.3-jammy`, `25.9.3.48`, `25.9.3.48-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.9.3.48/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.4`, `25.9.4-jammy`, `25.9.4.58`, `25.9.4.58-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.9.4.58/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.8.10.7/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.8.10.7/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.7.8.71/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.7.8.71/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.7`, `25.3.7-jammy`, `25.3.7.194`, `25.3.7.194-jammy`](https://github.com/ClickHouse/docker-library/blob/7e4dd66c8f12c767dc39cf90ec8917906604af87/server/25.3.7.194/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.7`, `25.3.7-jammy`, `25.3.7.194`, `25.3.7.194-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.3.7.194/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/elasticsearch/README.md b/elasticsearch/README.md index d64bd91a15af..221862945e55 100644 --- a/elasticsearch/README.md +++ b/elasticsearch/README.md @@ -28,10 +28,10 @@ WARNING: - [`8.19.6`](https://github.com/elastic/dockerfiles/blob/f45f0456d48e4f10e9088dad6a7b7e82d16d5bb6/elasticsearch/Dockerfile) -- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/elasticsearch/Dockerfile) - - [`9.1.6`](https://github.com/elastic/dockerfiles/blob/c42265d6748c905466afb341fc5455ab8525fae6/elasticsearch/Dockerfile) +- [`9.2.0`](https://github.com/elastic/dockerfiles/blob/a7d4b91a8cad17faf28659ceba071e92e03991d3/elasticsearch/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/ghost/README.md b/ghost/README.md index 4102ca3598bd..46db9c179e66 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.0`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/f952f7615274894d6efb0fbc765f5368580fb39a/6/debian/Dockerfile) +- [`6.5.1`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/179922f823264f1d318bf54247a845dbabf12b07/6/debian/Dockerfile) -- [`6.5.0-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/f952f7615274894d6efb0fbc765f5368580fb39a/6/alpine/Dockerfile) +- [`6.5.1-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/179922f823264f1d318bf54247a845dbabf12b07/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) diff --git a/kibana/README.md b/kibana/README.md index 4d1ee44ba69c..594fead6551f 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -26,15 +26,13 @@ WARNING: - [`7.17.29`](https://github.com/elastic/dockerfiles/blob/28b876f2aaba7bc27d76a1acd55cbc8ada9b5dea/kibana/Dockerfile) -- [`8.17.10`](https://github.com/elastic/dockerfiles/blob/3861498adce22926e852b1bbec340f159147a47f/kibana/Dockerfile) - - [`8.18.8`](https://github.com/elastic/dockerfiles/blob/6a7937aa369e0368020bcff78884c2b3645c50dd/kibana/Dockerfile) -- [`8.19.5`](https://github.com/elastic/dockerfiles/blob/eadd67c326b8c6c63acff9d8e9fced4cb29b92ed/kibana/Dockerfile) +- [`8.19.6`](https://github.com/elastic/dockerfiles/blob/f45f0456d48e4f10e9088dad6a7b7e82d16d5bb6/kibana/Dockerfile) -- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/kibana/Dockerfile) +- [`9.1.6`](https://github.com/elastic/dockerfiles/blob/c42265d6748c905466afb341fc5455ab8525fae6/kibana/Dockerfile) -- [`9.1.5`](https://github.com/elastic/dockerfiles/blob/b73ebec6aca17cdb8504bfcfddd954f772905a74/kibana/Dockerfile) +- [`9.2.0`](https://github.com/elastic/dockerfiles/blob/a7d4b91a8cad17faf28659ceba071e92e03991d3/kibana/Dockerfile) # Quick reference (cont.) diff --git a/logstash/README.md b/logstash/README.md index 05cfbc1716c8..78ef59e421d1 100644 --- a/logstash/README.md +++ b/logstash/README.md @@ -28,10 +28,10 @@ WARNING: - [`8.19.6`](https://github.com/elastic/dockerfiles/blob/f45f0456d48e4f10e9088dad6a7b7e82d16d5bb6/logstash/Dockerfile) -- [`9.0.8`](https://github.com/elastic/dockerfiles/blob/dd7bdb10765be40ea5cab6c64054df56b65860eb/logstash/Dockerfile) - - [`9.1.6`](https://github.com/elastic/dockerfiles/blob/c42265d6748c905466afb341fc5455ab8525fae6/logstash/Dockerfile) +- [`9.2.0`](https://github.com/elastic/dockerfiles/blob/a7d4b91a8cad17faf28659ceba071e92e03991d3/logstash/Dockerfile) + # Quick reference (cont.) - **Where to file issues**: diff --git a/rakudo-star/README.md b/rakudo-star/README.md index 80815bfca1be..69446e03e95d 100644 --- a/rakudo-star/README.md +++ b/rakudo-star/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`trixie`, `2025.08.1-trixie`, `latest`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/trixie/Dockerfile) +- [`trixie`, `2025.10-trixie`, `latest`](https://github.com/rakudo/docker/blob/2d29409b26ad70c7f3e6fbf8391ff82cc62920f2/2025.10/trixie/Dockerfile) -- [`bookworm`, `2025.08.1-bookworm`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/bookworm/Dockerfile) +- [`bookworm`, `2025.10-bookworm`](https://github.com/rakudo/docker/blob/2d29409b26ad70c7f3e6fbf8391ff82cc62920f2/2025.10/bookworm/Dockerfile) -- [`alpine`, `2025.08.1-alpine`](https://github.com/rakudo/docker/blob/c40c9a549916b02b0c6c8d5cda7dbd444c094278/2025.08.1/alpine/Dockerfile) +- [`alpine`, `2025.10-alpine`](https://github.com/rakudo/docker/blob/2d29409b26ad70c7f3e6fbf8391ff82cc62920f2/2025.10/alpine/Dockerfile) # Quick reference (cont.) From 809c16e6b8ffd88bd2d8d13a5600ee5ec7632619 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Oct 2025 10:10:47 -0700 Subject: [PATCH 2634/2686] Run update.sh --- matomo/README.md | 6 +++--- nextcloud/README.md | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/matomo/README.md b/matomo/README.md index 3c8fa059ef33..168c94b84120 100644 --- a/matomo/README.md +++ b/matomo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.5.0-apache`, `5.5-apache`, `5-apache`, `apache`, `5.5.0`, `5.5`, `5`, `latest`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/apache/Dockerfile) +- [`5.5.1-apache`, `5.5-apache`, `5-apache`, `apache`, `5.5.1`, `5.5`, `5`, `latest`](https://github.com/matomo-org/docker/blob/def9160593ae41ab7fed003821bbf977e5222313/apache/Dockerfile) -- [`5.5.0-fpm`, `5.5-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/fpm/Dockerfile) +- [`5.5.1-fpm`, `5.5-fpm`, `5-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/def9160593ae41ab7fed003821bbf977e5222313/fpm/Dockerfile) -- [`5.5.0-fpm-alpine`, `5.5-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/1fc01016cc35b664740c2d4deec3218acc004511/fpm-alpine/Dockerfile) +- [`5.5.1-fpm-alpine`, `5.5-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/def9160593ae41ab7fed003821bbf977e5222313/fpm-alpine/Dockerfile) # Quick reference (cont.) diff --git a/nextcloud/README.md b/nextcloud/README.md index 4f7913bd4363..9100eb45d770 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -28,23 +28,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`30.0.16-apache`, `30.0-apache`, `30-apache`, `30.0.16`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/apache/Dockerfile) +- [`30.0.17-apache`, `30.0-apache`, `30-apache`, `30.0.17`, `30.0`, `30`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/30/apache/Dockerfile) -- [`30.0.16-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/fpm/Dockerfile) +- [`30.0.17-fpm`, `30.0-fpm`, `30-fpm`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/30/fpm/Dockerfile) -- [`30.0.16-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/30/fpm-alpine/Dockerfile) +- [`30.0.17-fpm-alpine`, `30.0-fpm-alpine`, `30-fpm-alpine`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/30/fpm-alpine/Dockerfile) -- [`31.0.9-apache`, `31.0-apache`, `31-apache`, `stable-apache`, `production-apache`, `31.0.9`, `31.0`, `31`, `stable`, `production`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/apache/Dockerfile) +- [`31.0.10-apache`, `31.0-apache`, `31-apache`, `stable-apache`, `production-apache`, `31.0.10`, `31.0`, `31`, `stable`, `production`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/31/apache/Dockerfile) -- [`31.0.9-fpm`, `31.0-fpm`, `31-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm/Dockerfile) +- [`31.0.10-fpm`, `31.0-fpm`, `31-fpm`, `stable-fpm`, `production-fpm`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/31/fpm/Dockerfile) -- [`31.0.9-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/f5b7b40808604dd61411d0f7a775ac5ff29a974b/31/fpm-alpine/Dockerfile) +- [`31.0.10-fpm-alpine`, `31.0-fpm-alpine`, `31-fpm-alpine`, `stable-fpm-alpine`, `production-fpm-alpine`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/31/fpm-alpine/Dockerfile) -- [`32.0.0-apache`, `32.0-apache`, `32-apache`, `apache`, `32.0.0`, `32.0`, `32`, `latest`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/apache/Dockerfile) +- [`32.0.1-apache`, `32.0-apache`, `32-apache`, `apache`, `32.0.1`, `32.0`, `32`, `latest`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/32/apache/Dockerfile) -- [`32.0.0-fpm`, `32.0-fpm`, `32-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/fpm/Dockerfile) +- [`32.0.1-fpm`, `32.0-fpm`, `32-fpm`, `fpm`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/32/fpm/Dockerfile) -- [`32.0.0-fpm-alpine`, `32.0-fpm-alpine`, `32-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/1f87830fd6f478c993248475979472aab1787a75/32/fpm-alpine/Dockerfile) +- [`32.0.1-fpm-alpine`, `32.0-fpm-alpine`, `32-fpm-alpine`, `fpm-alpine`](https://github.com/nextcloud/docker/blob/50bf6dc8f95729b95d6313edff8fb104639474ce/32/fpm-alpine/Dockerfile) # Quick reference (cont.) From c312b82d0b0853e8afbf7d5c6f455483526023f3 Mon Sep 17 00:00:00 2001 From: Alejandro Alvarez Date: Fri, 24 Oct 2025 19:44:38 +0200 Subject: [PATCH 2635/2686] Update content.md to reflect Liquibase 5.0 changes (#2632) * Update content.md to reflect Liquibase 5.0 changes, including separation of OSS and Secure editions, and removal of default database drivers and extensions. Co-authored-by: Tianon Gravi --- liquibase/README-short.txt | 2 +- liquibase/deprecated.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 liquibase/deprecated.md diff --git a/liquibase/README-short.txt b/liquibase/README-short.txt index fb08a9ad6f19..bfdfdbcb28fb 100644 --- a/liquibase/README-short.txt +++ b/liquibase/README-short.txt @@ -1 +1 @@ -Liquibase is DevOps for your database. \ No newline at end of file +DEPRECATED; Liquibase is DevOps for your database. \ No newline at end of file diff --git a/liquibase/deprecated.md b/liquibase/deprecated.md new file mode 100644 index 000000000000..6dd03c6cdc7d --- /dev/null +++ b/liquibase/deprecated.md @@ -0,0 +1,8 @@ +With the release of Liquibase 5.0, this repository is officially deprecated and will not receive any further releases beyond patch updates. + +Users are encouraged to switch to one of the following alternatives, depending on your needs: + +- `liquibase/liquibase` -- Community Edition under Functional Source License (if you have a valid Liquibase License Key, you should use `liquibase/liquibase-secure` instead) +- `liquibase/liquibase-secure` -- Commercial version with enterprise features + +As of Liquibase 5.0, the Community edition and the official Docker Community liquibase image no longer include database drivers or extensions by default. You must now explicitly add database drivers using the Liquibase Package Manager (LPM), or manually install/mount extensions into the container. See [the Liquibase 5.0 Release Announcement](https://www.liquibase.com/blog/liquibase-5-0-release) for more details. From 6c8644c0eb33653c80302fbe06cded8c7ddc7f59 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Oct 2025 11:10:57 -0700 Subject: [PATCH 2636/2686] Run update.sh --- haproxy/README.md | 4 +- liquibase/README.md | 11 ++++ perl/README.md | 96 +++++++++++++++--------------- php/README.md | 140 +++++++++++++------------------------------- ruby/README.md | 12 ++-- swipl/README.md | 4 +- 6 files changed, 111 insertions(+), 156 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index ce4d57e5db14..9025534f5d28 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -28,9 +28,9 @@ WARNING: - [`3.3-dev10-alpine`, `3.3-dev-alpine`, `3.3-dev10-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/be4757e151254dc143f8dfb7cc25b39df8a01543/3.3/alpine/Dockerfile) -- [`3.2.6`, `3.2`, `latest`, `lts`, `3.2.6-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/04b2168ff76f90727c02f01cb719f655e768f6fd/3.2/Dockerfile) +- [`3.2.7`, `3.2`, `latest`, `lts`, `3.2.7-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/e4c0de0b54fc42dd87f22cfb61aad93562dad787/3.2/Dockerfile) -- [`3.2.6-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.6-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/04b2168ff76f90727c02f01cb719f655e768f6fd/3.2/alpine/Dockerfile) +- [`3.2.7-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.7-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e4c0de0b54fc42dd87f22cfb61aad93562dad787/3.2/alpine/Dockerfile) - [`3.1.9`, `3.1`, `3.1.9-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/0d89f493da93a6e40d26926929cf12bf95fbec5b/3.1/Dockerfile) diff --git a/liquibase/README.md b/liquibase/README.md index 3d5516619b91..0580d89e7a8b 100644 --- a/liquibase/README.md +++ b/liquibase/README.md @@ -14,6 +14,17 @@ WARNING: --> +# **DEPRECATION NOTICE** + +With the release of Liquibase 5.0, this repository is officially deprecated and will not receive any further releases beyond patch updates. + +Users are encouraged to switch to one of the following alternatives, depending on your needs: + +- `liquibase/liquibase` -- Community Edition under Functional Source License (if you have a valid Liquibase License Key, you should use `liquibase/liquibase-secure` instead) +- `liquibase/liquibase-secure` -- Commercial version with enterprise features + +As of Liquibase 5.0, the Community edition and the official Docker Community liquibase image no longer include database drivers or extensions by default. You must now explicitly add database drivers using the Liquibase Package Manager (LPM), or manually install/mount extensions into the container. See [the Liquibase 5.0 Release Announcement](https://www.liquibase.com/blog/liquibase-5-0-release) for more details. + # Quick reference - **Maintained by**: diff --git a/perl/README.md b/perl/README.md index 421a71e2c694..809d978ab161 100644 --- a/perl/README.md +++ b/perl/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-trixie`, `5.42-trixie`, `5-trixie`, `trixie`, `stable-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-trixie/Dockerfile) +- [`5.42.0`, `5.42`, `5`, `latest`, `stable`, `5.42.0-trixie`, `5.42-trixie`, `5-trixie`, `trixie`, `stable-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main-trixie/Dockerfile) -- [`5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-bookworm/Dockerfile) +- [`5.42.0-bookworm`, `5.42-bookworm`, `5-bookworm`, `bookworm`, `stable-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main-bookworm/Dockerfile) -- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main-bullseye/Dockerfile) +- [`5.42.0-bullseye`, `5.42-bullseye`, `5-bullseye`, `bullseye`, `stable-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main-bullseye/Dockerfile) -- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-trixie`, `5.42-slim-trixie`, `5-slim-trixie`, `slim-trixie`, `stable-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-trixie/Dockerfile) +- [`5.42.0-slim`, `5.42-slim`, `5-slim`, `slim`, `stable-slim`, `5.42.0-slim-trixie`, `5.42-slim-trixie`, `5-slim-trixie`, `slim-trixie`, `stable-slim-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim-trixie/Dockerfile) -- [`5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-bookworm/Dockerfile) +- [`5.42.0-slim-bookworm`, `5.42-slim-bookworm`, `5-slim-bookworm`, `slim-bookworm`, `stable-slim-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim-bookworm/Dockerfile) -- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim-bullseye/Dockerfile) +- [`5.42.0-slim-bullseye`, `5.42-slim-bullseye`, `5-slim-bullseye`, `slim-bullseye`, `stable-slim-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim-bullseye/Dockerfile) -- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-trixie`, `5.42-threaded-trixie`, `5-threaded-trixie`, `threaded-trixie`, `stable-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-trixie/Dockerfile) +- [`5.42.0-threaded`, `5.42-threaded`, `5-threaded`, `threaded`, `stable-threaded`, `5.42.0-threaded-trixie`, `5.42-threaded-trixie`, `5-threaded-trixie`, `threaded-trixie`, `stable-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main,threaded-trixie/Dockerfile) -- [`5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-bookworm/Dockerfile) +- [`5.42.0-threaded-bookworm`, `5.42-threaded-bookworm`, `5-threaded-bookworm`, `threaded-bookworm`, `stable-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main,threaded-bookworm/Dockerfile) -- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-main,threaded-bullseye/Dockerfile) +- [`5.42.0-threaded-bullseye`, `5.42-threaded-bullseye`, `5-threaded-bullseye`, `threaded-bullseye`, `stable-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-main,threaded-bullseye/Dockerfile) -- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-trixie`, `5.42-slim-threaded-trixie`, `5-slim-threaded-trixie`, `slim-threaded-trixie`, `stable-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-trixie/Dockerfile) +- [`5.42.0-slim-threaded`, `5.42-slim-threaded`, `5-slim-threaded`, `slim-threaded`, `stable-slim-threaded`, `5.42.0-slim-threaded-trixie`, `5.42-slim-threaded-trixie`, `5-slim-threaded-trixie`, `slim-threaded-trixie`, `stable-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim,threaded-trixie/Dockerfile) -- [`5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-bookworm/Dockerfile) +- [`5.42.0-slim-threaded-bookworm`, `5.42-slim-threaded-bookworm`, `5-slim-threaded-bookworm`, `slim-threaded-bookworm`, `stable-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim,threaded-bookworm/Dockerfile) -- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.042.000-slim,threaded-bullseye/Dockerfile) +- [`5.42.0-slim-threaded-bullseye`, `5.42-slim-threaded-bullseye`, `5-slim-threaded-bullseye`, `slim-threaded-bullseye`, `stable-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.042.000-slim,threaded-bullseye/Dockerfile) -- [`5.40.3`, `5.40`, `5.40.3-trixie`, `5.40-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-trixie/Dockerfile) +- [`5.40.3`, `5.40`, `5.40.3-trixie`, `5.40-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main-trixie/Dockerfile) -- [`5.40.3-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-bookworm/Dockerfile) +- [`5.40.3-bookworm`, `5.40-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main-bookworm/Dockerfile) -- [`5.40.3-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main-bullseye/Dockerfile) +- [`5.40.3-bullseye`, `5.40-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main-bullseye/Dockerfile) -- [`5.40.3-slim`, `5.40-slim`, `5.40.3-slim-trixie`, `5.40-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-trixie/Dockerfile) +- [`5.40.3-slim`, `5.40-slim`, `5.40.3-slim-trixie`, `5.40-slim-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim-trixie/Dockerfile) -- [`5.40.3-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-bookworm/Dockerfile) +- [`5.40.3-slim-bookworm`, `5.40-slim-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim-bookworm/Dockerfile) -- [`5.40.3-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim-bullseye/Dockerfile) +- [`5.40.3-slim-bullseye`, `5.40-slim-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim-bullseye/Dockerfile) -- [`5.40.3-threaded`, `5.40-threaded`, `5.40.3-threaded-trixie`, `5.40-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-trixie/Dockerfile) +- [`5.40.3-threaded`, `5.40-threaded`, `5.40.3-threaded-trixie`, `5.40-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main,threaded-trixie/Dockerfile) -- [`5.40.3-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-bookworm/Dockerfile) +- [`5.40.3-threaded-bookworm`, `5.40-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main,threaded-bookworm/Dockerfile) -- [`5.40.3-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-main,threaded-bullseye/Dockerfile) +- [`5.40.3-threaded-bullseye`, `5.40-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-main,threaded-bullseye/Dockerfile) -- [`5.40.3-slim-threaded`, `5.40-slim-threaded`, `5.40.3-slim-threaded-trixie`, `5.40-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-trixie/Dockerfile) +- [`5.40.3-slim-threaded`, `5.40-slim-threaded`, `5.40.3-slim-threaded-trixie`, `5.40-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim,threaded-trixie/Dockerfile) -- [`5.40.3-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-bookworm/Dockerfile) +- [`5.40.3-slim-threaded-bookworm`, `5.40-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim,threaded-bookworm/Dockerfile) -- [`5.40.3-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.040.003-slim,threaded-bullseye/Dockerfile) +- [`5.40.3-slim-threaded-bullseye`, `5.40-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.040.003-slim,threaded-bullseye/Dockerfile) -- [`5.38.5`, `5.38`, `5.38.5-trixie`, `5.38-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-trixie/Dockerfile) +- [`5.38.5`, `5.38`, `5.38.5-trixie`, `5.38-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main-trixie/Dockerfile) -- [`5.38.5-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-bookworm/Dockerfile) +- [`5.38.5-bookworm`, `5.38-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main-bookworm/Dockerfile) -- [`5.38.5-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main-bullseye/Dockerfile) +- [`5.38.5-bullseye`, `5.38-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main-bullseye/Dockerfile) -- [`5.38.5-slim`, `5.38-slim`, `5.38.5-slim-trixie`, `5.38-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-trixie/Dockerfile) +- [`5.38.5-slim`, `5.38-slim`, `5.38.5-slim-trixie`, `5.38-slim-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim-trixie/Dockerfile) -- [`5.38.5-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-bookworm/Dockerfile) +- [`5.38.5-slim-bookworm`, `5.38-slim-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim-bookworm/Dockerfile) -- [`5.38.5-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim-bullseye/Dockerfile) +- [`5.38.5-slim-bullseye`, `5.38-slim-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim-bullseye/Dockerfile) -- [`5.38.5-threaded`, `5.38-threaded`, `5.38.5-threaded-trixie`, `5.38-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-trixie/Dockerfile) +- [`5.38.5-threaded`, `5.38-threaded`, `5.38.5-threaded-trixie`, `5.38-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main,threaded-trixie/Dockerfile) -- [`5.38.5-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-bookworm/Dockerfile) +- [`5.38.5-threaded-bookworm`, `5.38-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main,threaded-bookworm/Dockerfile) -- [`5.38.5-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-main,threaded-bullseye/Dockerfile) +- [`5.38.5-threaded-bullseye`, `5.38-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-main,threaded-bullseye/Dockerfile) -- [`5.38.5-slim-threaded`, `5.38-slim-threaded`, `5.38.5-slim-threaded-trixie`, `5.38-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-trixie/Dockerfile) +- [`5.38.5-slim-threaded`, `5.38-slim-threaded`, `5.38.5-slim-threaded-trixie`, `5.38-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim,threaded-trixie/Dockerfile) -- [`5.38.5-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-bookworm/Dockerfile) +- [`5.38.5-slim-threaded-bookworm`, `5.38-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim,threaded-bookworm/Dockerfile) -- [`5.38.5-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.038.005-slim,threaded-bullseye/Dockerfile) +- [`5.38.5-slim-threaded-bullseye`, `5.38-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.038.005-slim,threaded-bullseye/Dockerfile) -- [`5.43.2`, `5.43`, `devel`, `5.43.2-trixie`, `5.43-trixie`, `devel-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-trixie/Dockerfile) +- [`5.43.4`, `5.43`, `devel`, `5.43.4-trixie`, `5.43-trixie`, `devel-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main-trixie/Dockerfile) -- [`5.43.2-bookworm`, `5.43-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-bookworm/Dockerfile) +- [`5.43.4-bookworm`, `5.43-bookworm`, `devel-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main-bookworm/Dockerfile) -- [`5.43.2-bullseye`, `5.43-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main-bullseye/Dockerfile) +- [`5.43.4-bullseye`, `5.43-bullseye`, `devel-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main-bullseye/Dockerfile) -- [`5.43.2-slim`, `5.43-slim`, `devel-slim`, `5.43.2-slim-trixie`, `5.43-slim-trixie`, `devel-slim-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-trixie/Dockerfile) +- [`5.43.4-slim`, `5.43-slim`, `devel-slim`, `5.43.4-slim-trixie`, `5.43-slim-trixie`, `devel-slim-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim-trixie/Dockerfile) -- [`5.43.2-slim-bookworm`, `5.43-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-bookworm/Dockerfile) +- [`5.43.4-slim-bookworm`, `5.43-slim-bookworm`, `devel-slim-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim-bookworm/Dockerfile) -- [`5.43.2-slim-bullseye`, `5.43-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim-bullseye/Dockerfile) +- [`5.43.4-slim-bullseye`, `5.43-slim-bullseye`, `devel-slim-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim-bullseye/Dockerfile) -- [`5.43.2-threaded`, `5.43-threaded`, `devel-threaded`, `5.43.2-threaded-trixie`, `5.43-threaded-trixie`, `devel-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-trixie/Dockerfile) +- [`5.43.4-threaded`, `5.43-threaded`, `devel-threaded`, `5.43.4-threaded-trixie`, `5.43-threaded-trixie`, `devel-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main,threaded-trixie/Dockerfile) -- [`5.43.2-threaded-bookworm`, `5.43-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-bookworm/Dockerfile) +- [`5.43.4-threaded-bookworm`, `5.43-threaded-bookworm`, `devel-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main,threaded-bookworm/Dockerfile) -- [`5.43.2-threaded-bullseye`, `5.43-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-main,threaded-bullseye/Dockerfile) +- [`5.43.4-threaded-bullseye`, `5.43-threaded-bullseye`, `devel-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-main,threaded-bullseye/Dockerfile) -- [`5.43.2-slim-threaded`, `5.43-slim-threaded`, `devel-slim-threaded`, `5.43.2-slim-threaded-trixie`, `5.43-slim-threaded-trixie`, `devel-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-trixie/Dockerfile) +- [`5.43.4-slim-threaded`, `5.43-slim-threaded`, `devel-slim-threaded`, `5.43.4-slim-threaded-trixie`, `5.43-slim-threaded-trixie`, `devel-slim-threaded-trixie`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim,threaded-trixie/Dockerfile) -- [`5.43.2-slim-threaded-bookworm`, `5.43-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-bookworm/Dockerfile) +- [`5.43.4-slim-threaded-bookworm`, `5.43-slim-threaded-bookworm`, `devel-slim-threaded-bookworm`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim,threaded-bookworm/Dockerfile) -- [`5.43.2-slim-threaded-bullseye`, `5.43-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/9a593371b5b762c4e6247a4b14141dfaa0ccaeb8/5.043.002-slim,threaded-bullseye/Dockerfile) +- [`5.43.4-slim-threaded-bullseye`, `5.43-slim-threaded-bullseye`, `devel-slim-threaded-bullseye`](https://github.com/perl/docker-perl/blob/79fd7c9ca29f9852e8ce5b4029a8d60ecc350bcf/5.043.004-slim,threaded-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index 839c1b5c2ec3..c9cd7eafa063 100644 --- a/php/README.md +++ b/php/README.md @@ -24,145 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0RC2-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC2-trixie`, `8.5-rc-trixie`, `8.5.0RC2-cli`, `8.5-rc-cli`, `8.5.0RC2`, `8.5-rc`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0RC3-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC3-trixie`, `8.5-rc-trixie`, `8.5.0RC3-cli`, `8.5-rc-cli`, `8.5.0RC3`, `8.5-rc`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0RC2-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC2-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0RC3-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC3-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0RC2-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC2-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0RC3-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC3-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0RC2-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC2-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0RC3-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC3-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0RC2-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC2-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0RC3-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC3-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0RC2-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0RC3-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0RC2-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0RC3-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0RC2-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0RC3-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0RC2-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC2-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC2-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC2-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0RC3-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC3-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC3-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC3-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0RC2-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC2-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0RC3-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC3-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0RC2-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC2-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0RC3-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC3-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0RC2-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC2-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0RC3-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC3-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0RC2-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0RC3-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0RC2-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/43c597e15ca9657fa238677e78d2e14c8b443bc4/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0RC3-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/zts/Dockerfile) -- [`8.4.14RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.14RC1-trixie`, `8.4-rc-trixie`, `8.4.14RC1-cli`, `8.4-rc-cli`, `8.4.14RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/cli/Dockerfile) +- [`8.4.14-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.14-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.14-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.14`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/trixie/cli/Dockerfile) -- [`8.4.14RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.14RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/apache/Dockerfile) +- [`8.4.14-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.14-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/trixie/apache/Dockerfile) -- [`8.4.14RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.14RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/fpm/Dockerfile) +- [`8.4.14-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.14-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/trixie/fpm/Dockerfile) -- [`8.4.14RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.14RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/trixie/zts/Dockerfile) +- [`8.4.14-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.14-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/trixie/zts/Dockerfile) -- [`8.4.14RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.14RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/cli/Dockerfile) +- [`8.4.14-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.14-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/bookworm/cli/Dockerfile) -- [`8.4.14RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/apache/Dockerfile) +- [`8.4.14-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/bookworm/apache/Dockerfile) -- [`8.4.14RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/fpm/Dockerfile) +- [`8.4.14-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/bookworm/fpm/Dockerfile) -- [`8.4.14RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/bookworm/zts/Dockerfile) +- [`8.4.14-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/bookworm/zts/Dockerfile) -- [`8.4.14RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.14RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.14RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.14RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/cli/Dockerfile) +- [`8.4.14-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.14-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.14-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.14-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.22/cli/Dockerfile) -- [`8.4.14RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.14RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/fpm/Dockerfile) +- [`8.4.14-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.14-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.22/fpm/Dockerfile) -- [`8.4.14RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.14RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.22/zts/Dockerfile) +- [`8.4.14-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.14-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.22/zts/Dockerfile) -- [`8.4.14RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.14RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/cli/Dockerfile) +- [`8.4.14-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.14-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.21/cli/Dockerfile) -- [`8.4.14RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/fpm/Dockerfile) +- [`8.4.14-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.21/fpm/Dockerfile) -- [`8.4.14RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/3879cf9397d3b02b55b21dccacf890d95e3f9b75/8.4-rc/alpine3.21/zts/Dockerfile) +- [`8.4.14-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.21/zts/Dockerfile) -- [`8.4.13-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.13-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.13-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.13`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/cli/Dockerfile) +- [`8.3.27-cli-trixie`, `8.3-cli-trixie`, `8.3.27-trixie`, `8.3-trixie`, `8.3.27-cli`, `8.3-cli`, `8.3.27`, `8.3`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/cli/Dockerfile) -- [`8.4.13-apache-trixie`, `8.4-apache-trixie`, `8-apache-trixie`, `apache-trixie`, `8.4.13-apache`, `8.4-apache`, `8-apache`, `apache`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/apache/Dockerfile) +- [`8.3.27-apache-trixie`, `8.3-apache-trixie`, `8.3.27-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/apache/Dockerfile) -- [`8.4.13-fpm-trixie`, `8.4-fpm-trixie`, `8-fpm-trixie`, `fpm-trixie`, `8.4.13-fpm`, `8.4-fpm`, `8-fpm`, `fpm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/fpm/Dockerfile) +- [`8.3.27-fpm-trixie`, `8.3-fpm-trixie`, `8.3.27-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/fpm/Dockerfile) -- [`8.4.13-zts-trixie`, `8.4-zts-trixie`, `8-zts-trixie`, `zts-trixie`, `8.4.13-zts`, `8.4-zts`, `8-zts`, `zts`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/trixie/zts/Dockerfile) +- [`8.3.27-zts-trixie`, `8.3-zts-trixie`, `8.3.27-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/zts/Dockerfile) -- [`8.4.13-cli-bookworm`, `8.4-cli-bookworm`, `8-cli-bookworm`, `cli-bookworm`, `8.4.13-bookworm`, `8.4-bookworm`, `8-bookworm`, `bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/cli/Dockerfile) +- [`8.3.27-cli-bookworm`, `8.3-cli-bookworm`, `8.3.27-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/bookworm/cli/Dockerfile) -- [`8.4.13-apache-bookworm`, `8.4-apache-bookworm`, `8-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/apache/Dockerfile) +- [`8.3.27-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/bookworm/apache/Dockerfile) -- [`8.4.13-fpm-bookworm`, `8.4-fpm-bookworm`, `8-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/fpm/Dockerfile) +- [`8.3.27-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/bookworm/fpm/Dockerfile) -- [`8.4.13-zts-bookworm`, `8.4-zts-bookworm`, `8-zts-bookworm`, `zts-bookworm`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/bookworm/zts/Dockerfile) +- [`8.3.27-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/bookworm/zts/Dockerfile) -- [`8.4.13-cli-alpine3.22`, `8.4-cli-alpine3.22`, `8-cli-alpine3.22`, `cli-alpine3.22`, `8.4.13-alpine3.22`, `8.4-alpine3.22`, `8-alpine3.22`, `alpine3.22`, `8.4.13-cli-alpine`, `8.4-cli-alpine`, `8-cli-alpine`, `cli-alpine`, `8.4.13-alpine`, `8.4-alpine`, `8-alpine`, `alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/cli/Dockerfile) +- [`8.3.27-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.27-alpine3.22`, `8.3-alpine3.22`, `8.3.27-cli-alpine`, `8.3-cli-alpine`, `8.3.27-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.22/cli/Dockerfile) -- [`8.4.13-fpm-alpine3.22`, `8.4-fpm-alpine3.22`, `8-fpm-alpine3.22`, `fpm-alpine3.22`, `8.4.13-fpm-alpine`, `8.4-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/fpm/Dockerfile) +- [`8.3.27-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.27-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.22/fpm/Dockerfile) -- [`8.4.13-zts-alpine3.22`, `8.4-zts-alpine3.22`, `8-zts-alpine3.22`, `zts-alpine3.22`, `8.4.13-zts-alpine`, `8.4-zts-alpine`, `8-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.22/zts/Dockerfile) +- [`8.3.27-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.27-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.22/zts/Dockerfile) -- [`8.4.13-cli-alpine3.21`, `8.4-cli-alpine3.21`, `8-cli-alpine3.21`, `cli-alpine3.21`, `8.4.13-alpine3.21`, `8.4-alpine3.21`, `8-alpine3.21`, `alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/cli/Dockerfile) +- [`8.3.27-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.27-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.21/cli/Dockerfile) -- [`8.4.13-fpm-alpine3.21`, `8.4-fpm-alpine3.21`, `8-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/fpm/Dockerfile) +- [`8.3.27-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.21/fpm/Dockerfile) -- [`8.4.13-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/5adf010c3d8ec46c24e5c0b09ef19bef11010eef/8.4/alpine3.21/zts/Dockerfile) - -- [`8.3.27RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.27RC1-trixie`, `8.3-rc-trixie`, `8.3.27RC1-cli`, `8.3-rc-cli`, `8.3.27RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/cli/Dockerfile) - -- [`8.3.27RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.27RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/apache/Dockerfile) - -- [`8.3.27RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.27RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/fpm/Dockerfile) - -- [`8.3.27RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.27RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/trixie/zts/Dockerfile) - -- [`8.3.27RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.27RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/cli/Dockerfile) - -- [`8.3.27RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/apache/Dockerfile) - -- [`8.3.27RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/fpm/Dockerfile) - -- [`8.3.27RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/bookworm/zts/Dockerfile) - -- [`8.3.27RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.27RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.27RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.27RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/cli/Dockerfile) - -- [`8.3.27RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.27RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/fpm/Dockerfile) - -- [`8.3.27RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.27RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.22/zts/Dockerfile) - -- [`8.3.27RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.27RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/cli/Dockerfile) - -- [`8.3.27RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/fpm/Dockerfile) - -- [`8.3.27RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/405703c62b8bd300cb4714c1c4edbc30da85cfc0/8.3-rc/alpine3.21/zts/Dockerfile) - -- [`8.3.26-cli-trixie`, `8.3-cli-trixie`, `8.3.26-trixie`, `8.3-trixie`, `8.3.26-cli`, `8.3-cli`, `8.3.26`, `8.3`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/cli/Dockerfile) - -- [`8.3.26-apache-trixie`, `8.3-apache-trixie`, `8.3.26-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/apache/Dockerfile) - -- [`8.3.26-fpm-trixie`, `8.3-fpm-trixie`, `8.3.26-fpm`, `8.3-fpm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/fpm/Dockerfile) - -- [`8.3.26-zts-trixie`, `8.3-zts-trixie`, `8.3.26-zts`, `8.3-zts`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/trixie/zts/Dockerfile) - -- [`8.3.26-cli-bookworm`, `8.3-cli-bookworm`, `8.3.26-bookworm`, `8.3-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/cli/Dockerfile) - -- [`8.3.26-apache-bookworm`, `8.3-apache-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/apache/Dockerfile) - -- [`8.3.26-fpm-bookworm`, `8.3-fpm-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/fpm/Dockerfile) - -- [`8.3.26-zts-bookworm`, `8.3-zts-bookworm`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/bookworm/zts/Dockerfile) - -- [`8.3.26-cli-alpine3.22`, `8.3-cli-alpine3.22`, `8.3.26-alpine3.22`, `8.3-alpine3.22`, `8.3.26-cli-alpine`, `8.3-cli-alpine`, `8.3.26-alpine`, `8.3-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/cli/Dockerfile) - -- [`8.3.26-fpm-alpine3.22`, `8.3-fpm-alpine3.22`, `8.3.26-fpm-alpine`, `8.3-fpm-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/fpm/Dockerfile) - -- [`8.3.26-zts-alpine3.22`, `8.3-zts-alpine3.22`, `8.3.26-zts-alpine`, `8.3-zts-alpine`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.22/zts/Dockerfile) - -- [`8.3.26-cli-alpine3.21`, `8.3-cli-alpine3.21`, `8.3.26-alpine3.21`, `8.3-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/cli/Dockerfile) - -- [`8.3.26-fpm-alpine3.21`, `8.3-fpm-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/fpm/Dockerfile) - -- [`8.3.26-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/26be3b1e73b760db9feb3398af30091f948e805d/8.3/alpine3.21/zts/Dockerfile) +- [`8.3.27-zts-alpine3.21`, `8.3-zts-alpine3.21`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/alpine3.21/zts/Dockerfile) - [`8.2.29-cli-trixie`, `8.2-cli-trixie`, `8.2.29-trixie`, `8.2-trixie`, `8.2.29-cli`, `8.2-cli`, `8.2.29`, `8.2`](https://github.com/docker-library/php/blob/686f9529f8659f929509a2c3ec2df34a14a4594a/8.2/trixie/cli/Dockerfile) diff --git a/ruby/README.md b/ruby/README.md index ede79db2881c..7a2d0babd01b 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -48,17 +48,17 @@ WARNING: - [`3.4.7-alpine3.21`, `3.4-alpine3.21`, `3-alpine3.21`, `alpine3.21`](https://github.com/docker-library/ruby/blob/7b7c8319337974e0df7e809c2360027d873ab259/3.4/alpine3.21/Dockerfile) -- [`3.3.9-trixie`, `3.3-trixie`, `3.3.9`, `3.3`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/trixie/Dockerfile) +- [`3.3.10-trixie`, `3.3-trixie`, `3.3.10`, `3.3`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/trixie/Dockerfile) -- [`3.3.9-slim-trixie`, `3.3-slim-trixie`, `3.3.9-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/slim-trixie/Dockerfile) +- [`3.3.10-slim-trixie`, `3.3-slim-trixie`, `3.3.10-slim`, `3.3-slim`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/slim-trixie/Dockerfile) -- [`3.3.9-bookworm`, `3.3-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/bookworm/Dockerfile) +- [`3.3.10-bookworm`, `3.3-bookworm`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/bookworm/Dockerfile) -- [`3.3.9-slim-bookworm`, `3.3-slim-bookworm`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.3/slim-bookworm/Dockerfile) +- [`3.3.10-slim-bookworm`, `3.3-slim-bookworm`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/slim-bookworm/Dockerfile) -- [`3.3.9-alpine3.22`, `3.3-alpine3.22`, `3.3.9-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.22/Dockerfile) +- [`3.3.10-alpine3.22`, `3.3-alpine3.22`, `3.3.10-alpine`, `3.3-alpine`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/alpine3.22/Dockerfile) -- [`3.3.9-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/7381a0d50ab2347b8e3fe4ea3068ee18b0b60115/3.3/alpine3.21/Dockerfile) +- [`3.3.10-alpine3.21`, `3.3-alpine3.21`](https://github.com/docker-library/ruby/blob/54c82927da7b67b0cb60a1bcd300d702ef565b7d/3.3/alpine3.21/Dockerfile) - [`3.2.9-trixie`, `3.2-trixie`, `3.2.9`, `3.2`](https://github.com/docker-library/ruby/blob/26c507eea2fc314ad774636f40acac38233bf942/3.2/trixie/Dockerfile) diff --git a/swipl/README.md b/swipl/README.md index fe9e996d618f..918161af1b6c 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.32`](https://github.com/SWI-Prolog/docker-swipl/blob/d4411aa88faba036ab47f95f744f77b4fec6749d/9.3.32/bookworm/Dockerfile) +- [`latest`, `9.3.33`](https://github.com/SWI-Prolog/docker-swipl/blob/05d5a4d995c42d06e6cd362621eb44c5cdaef9cf/9.3.33/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/d4411aa88faba036ab47f95f744f77b4fec6749d/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/05d5a4d995c42d06e6cd362621eb44c5cdaef9cf/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From f0c2e312af4d494bc6f1334f71162911bf3fadd1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 24 Oct 2025 17:11:01 -0700 Subject: [PATCH 2637/2686] Run update.sh --- ghost/README.md | 4 ++-- openjdk/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index 46db9c179e66..e7a12c059914 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.1`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/179922f823264f1d318bf54247a845dbabf12b07/6/debian/Dockerfile) +- [`6.5.3`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/3a0fff73dd94321a446873efbb465b58893d4241/6/debian/Dockerfile) -- [`6.5.1-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/179922f823264f1d318bf54247a845dbabf12b07/6/alpine/Dockerfile) +- [`6.5.3-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3a0fff73dd94321a446873efbb465b58893d4241/6/alpine/Dockerfile) - [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 102ed0e45cd3..eafd5d3a2214 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-20-jdk-oraclelinux9`, `26-ea-20-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-20-jdk-oracle`, `26-ea-20-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-21-jdk-oraclelinux9`, `26-ea-21-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-21-jdk-oracle`, `26-ea-21-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-20-jdk-oraclelinux8`, `26-ea-20-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-21-jdk-oraclelinux8`, `26-ea-21-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-20-jdk-trixie`, `26-ea-20-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/trixie/Dockerfile) +- [`26-ea-21-jdk-trixie`, `26-ea-21-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/trixie/Dockerfile) -- [`26-ea-20-jdk-slim-trixie`, `26-ea-20-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-20-jdk-slim`, `26-ea-20-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-21-jdk-slim-trixie`, `26-ea-21-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-21-jdk-slim`, `26-ea-21-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-20-jdk-bookworm`, `26-ea-20-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/bookworm/Dockerfile) +- [`26-ea-21-jdk-bookworm`, `26-ea-21-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/bookworm/Dockerfile) -- [`26-ea-20-jdk-slim-bookworm`, `26-ea-20-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-21-jdk-slim-bookworm`, `26-ea-21-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-20-jdk-windowsservercore-ltsc2025`, `26-ea-20-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-21-jdk-windowsservercore-ltsc2025`, `26-ea-21-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-20-jdk-windowsservercore-ltsc2022`, `26-ea-20-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-21-jdk-windowsservercore-ltsc2022`, `26-ea-21-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-20-jdk-nanoserver-ltsc2025`, `26-ea-20-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-21-jdk-nanoserver-ltsc2025`, `26-ea-21-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-20-jdk-nanoserver-ltsc2022`, `26-ea-20-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-21-jdk-nanoserver-ltsc2022`, `26-ea-21-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-20-jdk`, `26-ea-20`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-21-jdk`, `26-ea-21`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-20-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-20-jdk-windowsservercore`, `26-ea-20-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-21-jdk-windowsservercore`, `26-ea-21-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-20-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-20-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-20-jdk-nanoserver`, `26-ea-20-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-21-jdk-nanoserver`, `26-ea-21-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-20-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-20-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/7569595ba971c52e5674e60027095f3e3e4c7040/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-21-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-21-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 4999bca92e6b98746fabb4fd5ecad65ae9031b76 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Oct 2025 11:10:26 -0700 Subject: [PATCH 2638/2686] Run update.sh --- arangodb/README.md | 2 +- krakend/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 633236a19203..78df241fb3ea 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12`, `3.12.5.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/0584d0d3a17f0d4b13cd549b0f4f36a1f6cc65cc/alpine/3.12.5.2/Dockerfile) +- [`3.12`, `3.12.6`, `latest`](https://github.com/arangodb/arangodb-docker/blob/40964db5669220f47a2168249f2f24bc38499df5/alpine/3.12.6/Dockerfile) # Quick reference (cont.) diff --git a/krakend/README.md b/krakend/README.md index bb8c88574801..98841809d491 100644 --- a/krakend/README.md +++ b/krakend/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.11.2`, `2.11`, `2`, `latest`](https://github.com/krakend/docker-library/blob/8f838ce2eaf9e375a0106b7d3e29fe211aea1314/2.11.2/Dockerfile) +- [`2.12.0`, `2.12`, `2`, `latest`](https://github.com/krakend/docker-library/blob/30d1716507fbe8fb80c3b19542240ce21ca5a5b2/2.12.0/Dockerfile) # Quick reference (cont.) From dd6900b27c01155832ec383fa41f167082f5d11f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 27 Oct 2025 14:13:34 -0700 Subject: [PATCH 2639/2686] Run update.sh --- golang/README.md | 12 ++++++------ rabbitmq/README.md | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/golang/README.md b/golang/README.md index f66926096f5f..89053b192829 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.9-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20251017-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/trixie/Dockerfile) +- [`tip-20251026-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/trixie/Dockerfile) -- [`tip-20251017-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/bookworm/Dockerfile) +- [`tip-20251026-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/bookworm/Dockerfile) -- [`tip-20251017-alpine3.22`, `tip-alpine3.22`, `tip-20251017-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/alpine3.22/Dockerfile) +- [`tip-20251026-alpine3.22`, `tip-alpine3.22`, `tip-20251026-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/alpine3.22/Dockerfile) -- [`tip-20251017-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/alpine3.21/Dockerfile) +- [`tip-20251026-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20251017`, `tip`: +- `tip-20251026`, `tip`: - - [`tip-20251017-trixie`](https://github.com/docker-library/golang/blob/a2c7bd4dead271ecf010ec1149d4a871fe7313b9/tip/trixie/Dockerfile) + - [`tip-20251026-trixie`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 59eddcc92d41..424700f8f97c 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0-rc.1`, `4.2-rc`](https://github.com/docker-library/rabbitmq/blob/421249429d60a199a8e63eae8914bf19f7aba49b/4.2-rc/ubuntu/Dockerfile) +- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/Dockerfile) -- [`4.2.0-rc.1-management`, `4.2-rc-management`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/ubuntu/management/Dockerfile) +- [`4.2.0-management`, `4.2-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/management/Dockerfile) -- [`4.2.0-rc.1-alpine`, `4.2-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/421249429d60a199a8e63eae8914bf19f7aba49b/4.2-rc/alpine/Dockerfile) +- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/Dockerfile) -- [`4.2.0-rc.1-management-alpine`, `4.2-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/aaf82bfff4fd5ee6c98ec4ce7815e7e580066892/4.2-rc/alpine/management/Dockerfile) +- [`4.2.0-management-alpine`, `4.2-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/management/Dockerfile) -- [`4.1.4`, `4.1`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/afa514ae410f3f21127291c2a827c7ed8deda515/4.1/ubuntu/Dockerfile) +- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/71277d816e892d5d4cc7f34c0573364cfa8425d5/4.1/ubuntu/Dockerfile) -- [`4.1.4-management`, `4.1-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) +- [`4.1.5-management`, `4.1-management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.4-alpine`, `4.1-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/afa514ae410f3f21127291c2a827c7ed8deda515/4.1/alpine/Dockerfile) +- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/71277d816e892d5d4cc7f34c0573364cfa8425d5/4.1/alpine/Dockerfile) -- [`4.1.4-management-alpine`, `4.1-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) +- [`4.1.5-management-alpine`, `4.1-management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/472c590ec4dddf4494c8ed6576d6d78588e3cd35/4.0/ubuntu/Dockerfile) From 41ae14dcd60c6061ee2727c4f5c6d26862d0aa3d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 10:10:47 -0700 Subject: [PATCH 2640/2686] Run update.sh --- rocket.chat/README.md | 14 +++++++------- xwiki/README.md | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 84db6b9de6df..85ff253d7348 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.10.0`, `7.10`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/9006d708f0185bafdae764924be1f553ec55bfed/7.10/Dockerfile) +- [`7.11.0`, `7.11`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.11/Dockerfile) -- [`7.9.3`, `7.9`](https://github.com/RocketChat/Docker.Official.Image/blob/75c516a89b6e98d44085fa9cd33f9bc5f2b5986c/7.9/Dockerfile) +- [`7.10.3`, `7.10`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.10/Dockerfile) -- [`7.8.4`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.8/Dockerfile) +- [`7.9.5`, `7.9`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.9/Dockerfile) -- [`7.7.8`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.7/Dockerfile) +- [`7.8.4`, `7.8`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.8/Dockerfile) -- [`7.6.5`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.6/Dockerfile) +- [`7.7.9`, `7.7`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.7/Dockerfile) -- [`7.5.4`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.5/Dockerfile) +- [`7.6.6`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.6/Dockerfile) -- [`7.4.5`, `7.4`](https://github.com/RocketChat/Docker.Official.Image/blob/dddaa7c23275b8514d1d994bdfabaafd510f0ebf/7.4/Dockerfile) +- [`7.5.5`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.5/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 32e68fb84dd6..997c4a5d60d3 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`17`, `17.8`, `17.8.0`, `17-mysql-tomcat`, `17.8-mysql-tomcat`, `17.8.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mysql-tomcat/Dockerfile) +- [`17`, `17.9`, `17.9.0`, `17-mysql-tomcat`, `17.9-mysql-tomcat`, `17.9.0-mysql-tomcat`, `mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e8c29920c8f4853e4cb8152f9a3d04e0b164abb/17/mysql-tomcat/Dockerfile) -- [`17-postgres-tomcat`, `17.8-postgres-tomcat`, `17.8.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/postgres-tomcat/Dockerfile) +- [`17-postgres-tomcat`, `17.9-postgres-tomcat`, `17.9.0-postgres-tomcat`, `postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e8c29920c8f4853e4cb8152f9a3d04e0b164abb/17/postgres-tomcat/Dockerfile) -- [`17-mariadb-tomcat`, `17.8-mariadb-tomcat`, `17.8.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/2ce93543fbe0ae91515d65b66754ee08d2ed0ebb/17/mariadb-tomcat/Dockerfile) +- [`17-mariadb-tomcat`, `17.9-mariadb-tomcat`, `17.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e8c29920c8f4853e4cb8152f9a3d04e0b164abb/17/mariadb-tomcat/Dockerfile) - [`17.4`, `17.4.6`, `17.4-mysql-tomcat`, `17.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mysql-tomcat/Dockerfile) From db519bf464d958b89cabdc06ab2ce2f7f564b824 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 11:10:52 -0700 Subject: [PATCH 2641/2686] Run update.sh --- traefik/README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/traefik/README.md b/traefik/README.md index 4dfb4e12ab5b..2f9774a8d1c3 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,17 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.5.3-windowsservercore-ltsc2022`, `3.5.3-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.6.0-rc1-windowsservercore-ltsc2022`, `3.6.0-rc1-windowsservercore-ltsc2022`, `ramequin-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.3-nanoserver-ltsc2022`, `3.5.3-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.6.0-rc1-nanoserver-ltsc2022`, `3.6.0-rc1-nanoserver-ltsc2022`, `ramequin-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.3`, `3.5.3`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/d670ca0784dab782d512d5a38ad1cf164b2cdb4a/v3.5/alpine/Dockerfile) +- [`v3.6.0-rc1`, `3.6.0-rc1`, `ramequin`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/alpine/Dockerfile) -- [`v2.11.29-windowsservercore-ltsc2022`, `2.11.29-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.4-windowsservercore-ltsc2022`, `3.5.4-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v2.11.29-nanoserver-ltsc2022`, `2.11.29-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.4-nanoserver-ltsc2022`, `3.5.4-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v2.11.29`, `2.11.29`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/ad4563c38375d0cc39f9016241b69518398a5b2b/v2.11/alpine/Dockerfile) +- [`v3.5.4`, `3.5.4`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/alpine/Dockerfile) + +- [`v2.11.30-windowsservercore-ltsc2022`, `2.11.30-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b40158af0e38f89c8ab9203591f6b8b1894cf6aa/v2.11/windows/servercore-ltsc2022/Dockerfile) + +- [`v2.11.30-nanoserver-ltsc2022`, `2.11.30-nanoserver-ltsc2022`, `v2.11-nanoserver-ltsc2022`, `2.11-nanoserver-ltsc2022`, `v2-nanoserver-ltsc2022`, `2-nanoserver-ltsc2022`, `mimolette-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b40158af0e38f89c8ab9203591f6b8b1894cf6aa/v2.11/windows/nanoserver-ltsc2022/Dockerfile) + +- [`v2.11.30`, `2.11.30`, `v2.11`, `2.11`, `v2`, `2`, `mimolette`](https://github.com/traefik/traefik-library-image/blob/b40158af0e38f89c8ab9203591f6b8b1894cf6aa/v2.11/alpine/Dockerfile) # Quick reference (cont.) From c663da8f05e0eebe46c10e4905830c576eb16d09 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 12:10:50 -0700 Subject: [PATCH 2642/2686] Run update.sh --- hylang/README.md | 105 +++++++++++++++++++++----------------- mongo/README.md | 123 +++++++++++++++++++++++++++++++++++---------- rabbitmq/README.md | 12 ++--- 3 files changed, 162 insertions(+), 78 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index 76f1ab6054a6..b5c8d220502b 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,105 +28,120 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.14-trixie`, `1.1-python3.14-trixie`, `1-python3.14-trixie`, `python3.14-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-trixie) +- [`1.1.0-python3.14-trixie`, `1.1-python3.14-trixie`, `1-python3.14-trixie`, `python3.14-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-trixie/Dockerfile) -- [`1.1.0-python3.14-bookworm`, `1.1-python3.14-bookworm`, `1-python3.14-bookworm`, `python3.14-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-bookworm) +- [`1.1.0-python3.14-bookworm`, `1.1-python3.14-bookworm`, `1-python3.14-bookworm`, `python3.14-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-bookworm/Dockerfile) -- [`1.1.0-python3.14-alpine3.22`, `1.1-python3.14-alpine3.22`, `1-python3.14-alpine3.22`, `python3.14-alpine3.22`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-python3.14-alpine`, `1.1-python3.14-alpine`, `1-python3.14-alpine`, `python3.14-alpine`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-alpine3.22) +- [`1.1.0-python3.14-alpine3.22`, `1.1-python3.14-alpine3.22`, `1-python3.14-alpine3.22`, `python3.14-alpine3.22`, `1.1.0-python3.14-alpine`, `1.1-python3.14-alpine`, `1-python3.14-alpine`, `python3.14-alpine`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-alpine3.22/Dockerfile) -- [`1.1.0-python3.14-alpine3.21`, `1.1-python3.14-alpine3.21`, `1-python3.14-alpine3.21`, `python3.14-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-alpine3.21) +- [`1.1.0-python3.14-alpine3.21`, `1.1-python3.14-alpine3.21`, `1-python3.14-alpine3.21`, `python3.14-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-alpine3.21/Dockerfile) -- [`1.1.0-python3.14-windowsservercore-ltsc2025`, `1.1-python3.14-windowsservercore-ltsc2025`, `1-python3.14-windowsservercore-ltsc2025`, `python3.14-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2025) +- [`1.1.0-python3.14-windowsservercore-ltsc2025`, `1.1-python3.14-windowsservercore-ltsc2025`, `1-python3.14-windowsservercore-ltsc2025`, `python3.14-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-python3.14-windowsservercore-ltsc2022`, `1.1-python3.14-windowsservercore-ltsc2022`, `1-python3.14-windowsservercore-ltsc2022`, `python3.14-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2022) +- [`1.1.0-python3.14-windowsservercore-ltsc2022`, `1.1-python3.14-windowsservercore-ltsc2022`, `1-python3.14-windowsservercore-ltsc2022`, `python3.14-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) -- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-trixie) +- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-trixie/Dockerfile) -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-bookworm) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-bookworm/Dockerfile) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-alpine3.22) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-alpine3.22/Dockerfile) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-alpine3.21) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-alpine3.21/Dockerfile) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) -- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-trixie) +- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-trixie/Dockerfile) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-bookworm) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-bookworm/Dockerfile) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-alpine3.22) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-alpine3.22/Dockerfile) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-alpine3.21) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-alpine3.21/Dockerfile) -- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-trixie) +- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-trixie/Dockerfile) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-bookworm) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-bookworm/Dockerfile) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-alpine3.22) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-alpine3.22/Dockerfile) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-alpine3.21) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-alpine3.21/Dockerfile) -- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-trixie) +- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-trixie/Dockerfile) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-bookworm) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-bookworm/Dockerfile) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-alpine3.22) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-alpine3.22/Dockerfile) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-alpine3.21) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-alpine3.21/Dockerfile) -- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-trixie) +- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-trixie/Dockerfile) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-bookworm) +- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-bookworm/Dockerfile) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-alpine3.22) +- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-alpine3.22/Dockerfile) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-alpine3.21) +- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-alpine3.21/Dockerfile) -- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-trixie) +- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-trixie/Dockerfile) -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-bookworm) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-bookworm/Dockerfile) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `1.1.0-python3.14`, `1.1-python3.14`, `1-python3.14`, `python3.14`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.14-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-trixie) - - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2025) - - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-windowsservercore-ltsc2022) + - [`1.1.0-python3.14-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-trixie/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) + +- `1.1.0-python3.14-windowsservercore`, `1.1-python3.14-windowsservercore`, `1-python3.14-windowsservercore`, `python3.14-windowsservercore`, `1.1.0-windowsservercore`, `1.1-windowsservercore`, `1-windowsservercore`, `windowsservercore`: + + - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`: - - [`1.1.0-python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-trixie) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2025) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-windowsservercore-ltsc2022) + - [`1.1.0-python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-trixie/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) + +- `1.1.0-python3.13-windowsservercore`, `1.1-python3.13-windowsservercore`, `1-python3.13-windowsservercore`, `python3.13-windowsservercore`: + + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-trixie) + - [`1.1.0-python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-trixie/Dockerfile) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-trixie) + - [`1.1.0-python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-trixie/Dockerfile) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-trixie) + - [`1.1.0-python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-trixie/Dockerfile) - `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - [`1.1.0-python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-trixie) + - [`1.1.0-python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-trixie/Dockerfile) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-trixie) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2025) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.pypy3.11-windowsservercore-ltsc2022) + - [`1.1.0-pypy3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-trixie/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) + +- `1.1.0-pypy3.11-windowsservercore`, `1.1-pypy3.11-windowsservercore`, `1-pypy3.11-windowsservercore`, `pypy3.11-windowsservercore`: + + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/mongo/README.md b/mongo/README.md index a0c197c48d1a..cc3232bbf0dc 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -28,13 +28,45 @@ WARNING: ## Simple Tags -- [`8.0.15-noble`, `8.0-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/8.0/Dockerfile) +- [`8.2.2-rc0-noble`, `8.2-rc-noble`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/Dockerfile) -- [`8.0.15-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8.2.2-rc0-windowsservercore-ltsc2025`, `8.2-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8.0.15-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8.2.2-rc0-windowsservercore-ltsc2022`, `8.2-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8.0.15-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- [`8.2.2-rc0-nanoserver-ltsc2022`, `8.2-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.2.1-noble`, `8.2-noble`, `8-noble`, `noble`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/Dockerfile) + +- [`8.2.1-windowsservercore-ltsc2025`, `8.2-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.2.1-windowsservercore-ltsc2022`, `8.2-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.2.1-nanoserver-ltsc2022`, `8.2-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.16-rc1-noble`, `8.0-rc-noble`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/Dockerfile) + +- [`8.0.16-rc1-windowsservercore-ltsc2025`, `8.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.16-rc1-windowsservercore-ltsc2022`, `8.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.16-rc1-nanoserver-ltsc2022`, `8.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- [`8.0.15-noble`, `8.0-noble`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/8.0/Dockerfile) + +- [`8.0.15-windowsservercore-ltsc2025`, `8.0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`8.0.15-windowsservercore-ltsc2022`, `8.0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`8.0.15-nanoserver-ltsc2022`, `8.0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) + +- [`7.0.26-rc0-jammy`, `7.0-rc-jammy`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/Dockerfile) + +- [`7.0.26-rc0-windowsservercore-ltsc2025`, `7.0-rc-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + +- [`7.0.26-rc0-windowsservercore-ltsc2022`, `7.0-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- [`7.0.26-rc0-nanoserver-ltsc2022`, `7.0-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) - [`7.0.25-jammy`, `7.0-jammy`, `7-jammy`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/7.0/Dockerfile) @@ -44,31 +76,83 @@ WARNING: - [`7.0.25-nanoserver-ltsc2022`, `7.0-nanoserver-ltsc2022`, `7-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- [`6.0.26-jammy`, `6.0-jammy`, `6-jammy`](https://github.com/docker-library/mongo/blob/d9efcb7f46c4a17da2fdc9dbb4ef644f4f92053d/6.0/Dockerfile) +## Shared Tags -- [`6.0.26-windowsservercore-ltsc2025`, `6.0-windowsservercore-ltsc2025`, `6-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) +- `8.2.2-rc0`, `8.2-rc`: -- [`6.0.26-windowsservercore-ltsc2022`, `6.0-windowsservercore-ltsc2022`, `6-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8.2.2-rc0-noble`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/Dockerfile) + - [`8.2.2-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.2.2-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`6.0.26-nanoserver-ltsc2022`, `6.0-nanoserver-ltsc2022`, `6-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/nanoserver-ltsc2022/Dockerfile) +- `8.2.2-rc0-windowsservercore`, `8.2-rc-windowsservercore`: -## Shared Tags + - [`8.2.2-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.2.2-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.2.2-rc0-nanoserver`, `8.2-rc-nanoserver`: + + - [`8.2.2-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/24e1e676f633788faf66ff5a539e608ee33d75ac/8.2-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- `8.2.1`, `8.2`, `8`, `latest`: + + - [`8.2.1-noble`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/Dockerfile) + - [`8.2.1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.15`, `8.0`, `8`, `latest`: +- `8.2.1-windowsservercore`, `8.2-windowsservercore`, `8-windowsservercore`, `windowsservercore`: + + - [`8.2.1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.2.1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.2.1-nanoserver`, `8.2-nanoserver`, `8-nanoserver`, `nanoserver`: + + - [`8.2.1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/930645872a8eb6651cb1a27bfda9e0500c58fbfd/8.2/windows/nanoserver-ltsc2022/Dockerfile) + +- `8.0.16-rc1`, `8.0-rc`: + + - [`8.0.16-rc1-noble`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/Dockerfile) + - [`8.0.16-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.16-rc1-windowsservercore`, `8.0-rc-windowsservercore`: + + - [`8.0.16-rc1-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8.0.16-rc1-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `8.0.16-rc1-nanoserver`, `8.0-rc-nanoserver`: + + - [`8.0.16-rc1-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/dda0354f39517b3a275a8c5d77ae48379a7fb3f4/8.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + +- `8.0.15`, `8.0`: - [`8.0.15-noble`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/8.0/Dockerfile) - [`8.0.15-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.15-windowsservercore`, `8.0-windowsservercore`, `8-windowsservercore`, `windowsservercore`: +- `8.0.15-windowsservercore`, `8.0-windowsservercore`: - [`8.0.15-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2025/Dockerfile) - [`8.0.15-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/windowsservercore-ltsc2022/Dockerfile) -- `8.0.15-nanoserver`, `8.0-nanoserver`, `8-nanoserver`, `nanoserver`: +- `8.0.15-nanoserver`, `8.0-nanoserver`: - [`8.0.15-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/c7ea10a79db9577890466804058872f34f21b3ab/8.0/windows/nanoserver-ltsc2022/Dockerfile) +- `7.0.26-rc0`, `7.0-rc`: + + - [`7.0.26-rc0-jammy`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/Dockerfile) + - [`7.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.26-rc0-windowsservercore`, `7.0-rc-windowsservercore`: + + - [`7.0.26-rc0-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`7.0.26-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile) + +- `7.0.26-rc0-nanoserver`, `7.0-rc-nanoserver`: + + - [`7.0.26-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/bf7e9f267d083920987d5b3f8da1cfe89f378486/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile) + - `7.0.25`, `7.0`, `7`: - [`7.0.25-jammy`](https://github.com/docker-library/mongo/blob/12330e190aa0ba8cfd07004a7a74791b270a3206/7.0/Dockerfile) @@ -84,21 +168,6 @@ WARNING: - [`7.0.25-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/d828bd4b9677891b7b4a5a2259d939f7a5cb3377/7.0/windows/nanoserver-ltsc2022/Dockerfile) -- `6.0.26`, `6.0`, `6`: - - - [`6.0.26-jammy`](https://github.com/docker-library/mongo/blob/d9efcb7f46c4a17da2fdc9dbb4ef644f4f92053d/6.0/Dockerfile) - - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `6.0.26-windowsservercore`, `6.0-windowsservercore`, `6-windowsservercore`: - - - [`6.0.26-windowsservercore-ltsc2025`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2025/Dockerfile) - - [`6.0.26-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/windowsservercore-ltsc2022/Dockerfile) - -- `6.0.26-nanoserver`, `6.0-nanoserver`, `6-nanoserver`: - - - [`6.0.26-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/0bd4b9bbe4bb9b85a56b851516a6c36a4629743b/6.0/windows/nanoserver-ltsc2022/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 424700f8f97c..abba6724fc94 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/Dockerfile) +- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b867c0176b97e73bc2f19f94ed626ac5e3e27e5b/4.2/ubuntu/Dockerfile) - [`4.2.0-management`, `4.2-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/management/Dockerfile) -- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/Dockerfile) +- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b867c0176b97e73bc2f19f94ed626ac5e3e27e5b/4.2/alpine/Dockerfile) - [`4.2.0-management-alpine`, `4.2-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/management/Dockerfile) -- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/71277d816e892d5d4cc7f34c0573364cfa8425d5/4.1/ubuntu/Dockerfile) +- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/f015b4366e633217e58b0dbfb2c8744d616a011c/4.1/ubuntu/Dockerfile) - [`4.1.5-management`, `4.1-management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/71277d816e892d5d4cc7f34c0573364cfa8425d5/4.1/alpine/Dockerfile) +- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/f015b4366e633217e58b0dbfb2c8744d616a011c/4.1/alpine/Dockerfile) - [`4.1.5-management-alpine`, `4.1-management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/472c590ec4dddf4494c8ed6576d6d78588e3cd35/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/a26bfebe8bce460c89b7b5e00655687766b24ddd/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/472c590ec4dddf4494c8ed6576d6d78588e3cd35/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/a26bfebe8bce460c89b7b5e00655687766b24ddd/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) From ff641907d4dfb42f32cd47584647ad595c6dcd86 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 14:10:53 -0700 Subject: [PATCH 2643/2686] Run update.sh --- bash/README.md | 2 +- busybox/README.md | 16 ++++++++-------- wordpress/README.md | 24 ++++++++++++------------ 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/bash/README.md b/bash/README.md index 053e091249fa..196072afc782 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20251017`, `devel`, `devel-20251017-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/476ec467526ad9b13b328f2037a92db6dcaa1777/devel/Dockerfile) +- [`devel-20251027`, `devel`, `devel-20251027-alpine3.22`, `devel-alpine3.22`](https://github.com/tianon/docker-bash/blob/811e57fc3ad50ed25c2194e00ea69042310f125a/devel/Dockerfile) - [`5.3.3`, `5.3`, `5`, `latest`, `5.3.3-alpine3.22`, `5.3-alpine3.22`, `5-alpine3.22`, `alpine3.22`](https://github.com/tianon/docker-bash/blob/3b56c1c4a4e381f8b53decf0917fddd2cd15c8d4/5.3/Dockerfile) diff --git a/busybox/README.md b/busybox/README.md index 323b5585fbb9..0f2de87a97e9 100644 --- a/busybox/README.md +++ b/busybox/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/glibc/amd64/index.json) +- [`1.37.0-glibc`, `1.37-glibc`, `1-glibc`, `unstable-glibc`, `glibc`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest/glibc/amd64/index.json) -- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/uclibc/amd64/index.json) +- [`1.37.0-uclibc`, `1.37-uclibc`, `1-uclibc`, `unstable-uclibc`, `uclibc`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest/uclibc/amd64/index.json) -- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/musl/amd64/index.json) +- [`1.37.0-musl`, `1.37-musl`, `1-musl`, `unstable-musl`, `musl`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest/musl/amd64/index.json) -- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest/glibc/amd64/index.json) +- [`1.37.0`, `1.37`, `1`, `unstable`, `latest`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest/glibc/amd64/index.json) -- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/glibc/amd64/index.json) +- [`1.36.1-glibc`, `1.36-glibc`, `stable-glibc`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest-1/glibc/amd64/index.json) -- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/uclibc/amd64/index.json) +- [`1.36.1-uclibc`, `1.36-uclibc`, `stable-uclibc`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest-1/uclibc/amd64/index.json) -- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/musl/amd64/index.json) +- [`1.36.1-musl`, `1.36-musl`, `stable-musl`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest-1/musl/amd64/index.json) -- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/e5b5178110ca0332364a77d5eb4fff87b0e2ba3f/latest-1/glibc/amd64/index.json) +- [`1.36.1`, `1.36`, `stable`](https://github.com/docker-library/busybox/blob/3c91bcd92b2cd6c113a87c39bcada57fbccf00b0/latest-1/glibc/amd64/index.json) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 661c2f6f0650..61ebf44891fc 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) -- [`beta-6.9-beta1-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta1-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/apache/Dockerfile) +- [`beta-6.9-beta2-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta2-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/apache/Dockerfile) -- [`beta-6.9-beta1-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/fpm/Dockerfile) +- [`beta-6.9-beta2-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/fpm/Dockerfile) -- [`beta-6.9-beta1-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.9-beta2-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.9-beta1-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta1-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/apache/Dockerfile) +- [`beta-6.9-beta2-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta2-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/apache/Dockerfile) -- [`beta-6.9-beta1-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/fpm/Dockerfile) +- [`beta-6.9-beta2-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/fpm/Dockerfile) -- [`beta-6.9-beta1-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.9-beta2-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.9-beta1-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta1`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta1-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta1-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/apache/Dockerfile) +- [`beta-6.9-beta2-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta2`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta2-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta2-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/apache/Dockerfile) -- [`beta-6.9-beta1-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta1-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/fpm/Dockerfile) +- [`beta-6.9-beta2-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta2-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/fpm/Dockerfile) -- [`beta-6.9-beta1-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta1-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.9-beta2-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta2-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.9-beta1-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta1-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/apache/Dockerfile) +- [`beta-6.9-beta2-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta2-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/apache/Dockerfile) -- [`beta-6.9-beta1-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/fpm/Dockerfile) +- [`beta-6.9-beta2-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/fpm/Dockerfile) -- [`beta-6.9-beta1-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/1d61a531c8a1d30d5e2ab6b2905a2c1eff896415/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.9-beta2-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 7260048162c78a25106ef89fa89eafcf216c4027 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 15:10:43 -0700 Subject: [PATCH 2644/2686] Run update.sh --- nginx/README.md | 14 +++++++------- node/README.md | 32 ++++++++++++++++---------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/nginx/README.md b/nginx/README.md index ee261a89708b..1e80cf3fd6e4 100644 --- a/nginx/README.md +++ b/nginx/README.md @@ -24,19 +24,19 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.29.2`, `mainline`, `1`, `1.29`, `latest`, `1.29.2-trixie`, `mainline-trixie`, `1-trixie`, `1.29-trixie`, `trixie`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian/Dockerfile) +- [`1.29.3`, `mainline`, `1`, `1.29`, `latest`, `1.29.3-trixie`, `mainline-trixie`, `1-trixie`, `1.29-trixie`, `trixie`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/debian/Dockerfile) -- [`1.29.2-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.2-trixie-perl`, `mainline-trixie-perl`, `1-trixie-perl`, `1.29-trixie-perl`, `trixie-perl`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian-perl/Dockerfile) +- [`1.29.3-perl`, `mainline-perl`, `1-perl`, `1.29-perl`, `perl`, `1.29.3-trixie-perl`, `mainline-trixie-perl`, `1-trixie-perl`, `1.29-trixie-perl`, `trixie-perl`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/debian-perl/Dockerfile) -- [`1.29.2-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.2-trixie-otel`, `mainline-trixie-otel`, `1-trixie-otel`, `1.29-trixie-otel`, `trixie-otel`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/debian-otel/Dockerfile) +- [`1.29.3-otel`, `mainline-otel`, `1-otel`, `1.29-otel`, `otel`, `1.29.3-trixie-otel`, `mainline-trixie-otel`, `1-trixie-otel`, `1.29-trixie-otel`, `trixie-otel`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/debian-otel/Dockerfile) -- [`1.29.2-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.2-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine/Dockerfile) +- [`1.29.3-alpine`, `mainline-alpine`, `1-alpine`, `1.29-alpine`, `alpine`, `1.29.3-alpine3.22`, `mainline-alpine3.22`, `1-alpine3.22`, `1.29-alpine3.22`, `alpine3.22`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/alpine/Dockerfile) -- [`1.29.2-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.2-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-perl/Dockerfile) +- [`1.29.3-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.29-alpine-perl`, `alpine-perl`, `1.29.3-alpine3.22-perl`, `mainline-alpine3.22-perl`, `1-alpine3.22-perl`, `1.29-alpine3.22-perl`, `alpine3.22-perl`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/alpine-perl/Dockerfile) -- [`1.29.2-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.2-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-slim/Dockerfile) +- [`1.29.3-alpine-slim`, `mainline-alpine-slim`, `1-alpine-slim`, `1.29-alpine-slim`, `alpine-slim`, `1.29.3-alpine3.22-slim`, `mainline-alpine3.22-slim`, `1-alpine3.22-slim`, `1.29-alpine3.22-slim`, `alpine3.22-slim`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/alpine-slim/Dockerfile) -- [`1.29.2-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.2-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/c3785f2653008f9354c3d29a54d8c5459c53fa60/mainline/alpine-otel/Dockerfile) +- [`1.29.3-alpine-otel`, `mainline-alpine-otel`, `1-alpine-otel`, `1.29-alpine-otel`, `alpine-otel`, `1.29.3-alpine3.22-otel`, `mainline-alpine3.22-otel`, `1-alpine3.22-otel`, `1.29-alpine3.22-otel`, `alpine3.22-otel`](https://github.com/nginx/docker-nginx/blob/e4d5453581d9d3618f77c4aeccf2e6171a1cd6ff/mainline/alpine-otel/Dockerfile) - [`1.28.0`, `stable`, `1.28`, `1.28.0-bookworm`, `stable-bookworm`, `1.28-bookworm`](https://github.com/nginx/docker-nginx/blob/9b549fdf936778810dbe95a4813899c60444ef1c/stable/debian/Dockerfile) diff --git a/node/README.md b/node/README.md index e04609fad247..69091c5aa158 100644 --- a/node/README.md +++ b/node/README.md @@ -40,37 +40,37 @@ WARNING: - [`25-trixie-slim`, `25.0-trixie-slim`, `25.0.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/trixie-slim/Dockerfile) -- [`24-alpine3.21`, `24.10-alpine3.21`, `24.10.0-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/alpine3.21/Dockerfile) +- [`24-alpine3.21`, `24.11-alpine3.21`, `24.11.0-alpine3.21`, `krypton-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/alpine3.21/Dockerfile) -- [`24-alpine`, `24-alpine3.22`, `24.10-alpine`, `24.10-alpine3.22`, `24.10.0-alpine`, `24.10.0-alpine3.22`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/alpine3.22/Dockerfile) +- [`24-alpine`, `24-alpine3.22`, `24.11-alpine`, `24.11-alpine3.22`, `24.11.0-alpine`, `24.11.0-alpine3.22`, `krypton-alpine`, `krypton-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/alpine3.22/Dockerfile) -- [`24`, `24-bookworm`, `24.10`, `24.10-bookworm`, `24.10.0`, `24.10.0-bookworm`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bookworm/Dockerfile) +- [`24`, `24-bookworm`, `24.11`, `24.11-bookworm`, `24.11.0`, `24.11.0-bookworm`, `krypton`, `krypton-bookworm`, `lts`, `lts-bookworm`, `lts-krypton`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/bookworm/Dockerfile) -- [`24-bookworm-slim`, `24-slim`, `24.10-bookworm-slim`, `24.10-slim`, `24.10.0-bookworm-slim`, `24.10.0-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bookworm-slim/Dockerfile) +- [`24-bookworm-slim`, `24-slim`, `24.11-bookworm-slim`, `24.11-slim`, `24.11.0-bookworm-slim`, `24.11.0-slim`, `krypton-bookworm-slim`, `krypton-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/bookworm-slim/Dockerfile) -- [`24-bullseye`, `24.10-bullseye`, `24.10.0-bullseye`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bullseye/Dockerfile) +- [`24-bullseye`, `24.11-bullseye`, `24.11.0-bullseye`, `krypton-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/bullseye/Dockerfile) -- [`24-bullseye-slim`, `24.10-bullseye-slim`, `24.10.0-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/bullseye-slim/Dockerfile) +- [`24-bullseye-slim`, `24.11-bullseye-slim`, `24.11.0-bullseye-slim`, `krypton-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/bullseye-slim/Dockerfile) -- [`24-trixie`, `24.10-trixie`, `24.10.0-trixie`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/trixie/Dockerfile) +- [`24-trixie`, `24.11-trixie`, `24.11.0-trixie`, `krypton-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/trixie/Dockerfile) -- [`24-trixie-slim`, `24.10-trixie-slim`, `24.10.0-trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/24/trixie-slim/Dockerfile) +- [`24-trixie-slim`, `24.11-trixie-slim`, `24.11.0-trixie-slim`, `krypton-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/trixie-slim/Dockerfile) -- [`22-alpine3.21`, `22.21-alpine3.21`, `22.21.0-alpine3.21`, `jod-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.21-alpine3.21`, `22.21.0-alpine3.21`, `jod-alpine3.21`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.21-alpine`, `22.21-alpine3.22`, `22.21.0-alpine`, `22.21.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`, `lts-alpine`, `lts-alpine3.22`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.21-alpine`, `22.21-alpine3.22`, `22.21.0-alpine`, `22.21.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.21`, `22.21-bookworm`, `22.21.0`, `22.21.0-bookworm`, `jod`, `jod-bookworm`, `lts`, `lts-bookworm`, `lts-jod`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.21`, `22.21-bookworm`, `22.21.0`, `22.21.0-bookworm`, `jod`, `jod-bookworm`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.21-bookworm-slim`, `22.21-slim`, `22.21.0-bookworm-slim`, `22.21.0-slim`, `jod-bookworm-slim`, `jod-slim`, `lts-bookworm-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.21-bookworm-slim`, `22.21-slim`, `22.21.0-bookworm-slim`, `22.21.0-slim`, `jod-bookworm-slim`, `jod-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.21-bullseye`, `22.21.0-bullseye`, `jod-bullseye`, `lts-bullseye`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.21-bullseye`, `22.21.0-bullseye`, `jod-bullseye`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.21-bullseye-slim`, `22.21.0-bullseye-slim`, `jod-bullseye-slim`, `lts-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.21-bullseye-slim`, `22.21.0-bullseye-slim`, `jod-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye-slim/Dockerfile) -- [`22-trixie`, `22.21-trixie`, `22.21.0-trixie`, `jod-trixie`, `lts-trixie`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie/Dockerfile) +- [`22-trixie`, `22.21-trixie`, `22.21.0-trixie`, `jod-trixie`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie/Dockerfile) -- [`22-trixie-slim`, `22.21-trixie-slim`, `22.21.0-trixie-slim`, `jod-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie-slim/Dockerfile) +- [`22-trixie-slim`, `22.21-trixie-slim`, `22.21.0-trixie-slim`, `jod-trixie-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/alpine3.21/Dockerfile) From fedd8726361efd032bd092ca61ba88e8b922e33a Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 28 Oct 2025 16:10:54 -0700 Subject: [PATCH 2645/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index b2d230ceb849..fe2d560a819c 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2d3d170c5d17234f7ccc7e47a3bae77d81ff696c/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3a7d1c94a783900e8bb70a26b2e3642cc549b7fc/stable/trixie/Dockerfile) -- [`3.10.0-290.2.beta-sdk`, `beta-sdk`, `3.10.0-290.2.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2d3d170c5d17234f7ccc7e47a3bae77d81ff696c/beta/trixie/Dockerfile) +- [`3.10.0-290.3.beta-sdk`, `beta-sdk`, `3.10.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3a7d1c94a783900e8bb70a26b2e3642cc549b7fc/beta/trixie/Dockerfile) # Quick reference (cont.) From e1d83f4493e96769900bbc30f897325ca66a9a64 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Oct 2025 08:10:40 -0700 Subject: [PATCH 2646/2686] Run update.sh --- node/README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/node/README.md b/node/README.md index 69091c5aa158..a73e4b7f9ca0 100644 --- a/node/README.md +++ b/node/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`25-alpine3.21`, `25.0-alpine3.21`, `25.0.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/alpine3.21/Dockerfile) +- [`25-alpine3.21`, `25.1-alpine3.21`, `25.1.0-alpine3.21`, `alpine3.21`, `current-alpine3.21`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/alpine3.21/Dockerfile) -- [`25-alpine`, `25-alpine3.22`, `25.0-alpine`, `25.0-alpine3.22`, `25.0.0-alpine`, `25.0.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/alpine3.22/Dockerfile) +- [`25-alpine`, `25-alpine3.22`, `25.1-alpine`, `25.1-alpine3.22`, `25.1.0-alpine`, `25.1.0-alpine3.22`, `alpine`, `alpine3.22`, `current-alpine`, `current-alpine3.22`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/alpine3.22/Dockerfile) -- [`25`, `25-bookworm`, `25.0`, `25.0-bookworm`, `25.0.0`, `25.0.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bookworm/Dockerfile) +- [`25`, `25-bookworm`, `25.1`, `25.1-bookworm`, `25.1.0`, `25.1.0-bookworm`, `bookworm`, `current`, `current-bookworm`, `latest`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/bookworm/Dockerfile) -- [`25-bookworm-slim`, `25-slim`, `25.0-bookworm-slim`, `25.0-slim`, `25.0.0-bookworm-slim`, `25.0.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bookworm-slim/Dockerfile) +- [`25-bookworm-slim`, `25-slim`, `25.1-bookworm-slim`, `25.1-slim`, `25.1.0-bookworm-slim`, `25.1.0-slim`, `bookworm-slim`, `current-bookworm-slim`, `current-slim`, `slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/bookworm-slim/Dockerfile) -- [`25-bullseye`, `25.0-bullseye`, `25.0.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bullseye/Dockerfile) +- [`25-bullseye`, `25.1-bullseye`, `25.1.0-bullseye`, `bullseye`, `current-bullseye`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/bullseye/Dockerfile) -- [`25-bullseye-slim`, `25.0-bullseye-slim`, `25.0.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/bullseye-slim/Dockerfile) +- [`25-bullseye-slim`, `25.1-bullseye-slim`, `25.1.0-bullseye-slim`, `bullseye-slim`, `current-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/bullseye-slim/Dockerfile) -- [`25-trixie`, `25.0-trixie`, `25.0.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/trixie/Dockerfile) +- [`25-trixie`, `25.1-trixie`, `25.1.0-trixie`, `current-trixie`, `trixie`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/trixie/Dockerfile) -- [`25-trixie-slim`, `25.0-trixie-slim`, `25.0.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/25/trixie-slim/Dockerfile) +- [`25-trixie-slim`, `25.1-trixie-slim`, `25.1.0-trixie-slim`, `current-trixie-slim`, `trixie-slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/25/trixie-slim/Dockerfile) - [`24-alpine3.21`, `24.11-alpine3.21`, `24.11.0-alpine3.21`, `krypton-alpine3.21`, `lts-alpine3.21`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/alpine3.21/Dockerfile) @@ -56,21 +56,21 @@ WARNING: - [`24-trixie-slim`, `24.11-trixie-slim`, `24.11.0-trixie-slim`, `krypton-trixie-slim`, `lts-trixie-slim`](https://github.com/nodejs/docker-node/blob/27dd50d60e181b3da84a17d9c5037dcfeb94b781/24/trixie-slim/Dockerfile) -- [`22-alpine3.21`, `22.21-alpine3.21`, `22.21.0-alpine3.21`, `jod-alpine3.21`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.21/Dockerfile) +- [`22-alpine3.21`, `22.21-alpine3.21`, `22.21.1-alpine3.21`, `jod-alpine3.21`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/alpine3.21/Dockerfile) -- [`22-alpine`, `22-alpine3.22`, `22.21-alpine`, `22.21-alpine3.22`, `22.21.0-alpine`, `22.21.0-alpine3.22`, `jod-alpine`, `jod-alpine3.22`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/alpine3.22/Dockerfile) +- [`22-alpine`, `22-alpine3.22`, `22.21-alpine`, `22.21-alpine3.22`, `22.21.1-alpine`, `22.21.1-alpine3.22`, `jod-alpine`, `jod-alpine3.22`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/alpine3.22/Dockerfile) -- [`22`, `22-bookworm`, `22.21`, `22.21-bookworm`, `22.21.0`, `22.21.0-bookworm`, `jod`, `jod-bookworm`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm/Dockerfile) +- [`22`, `22-bookworm`, `22.21`, `22.21-bookworm`, `22.21.1`, `22.21.1-bookworm`, `jod`, `jod-bookworm`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/bookworm/Dockerfile) -- [`22-bookworm-slim`, `22-slim`, `22.21-bookworm-slim`, `22.21-slim`, `22.21.0-bookworm-slim`, `22.21.0-slim`, `jod-bookworm-slim`, `jod-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bookworm-slim/Dockerfile) +- [`22-bookworm-slim`, `22-slim`, `22.21-bookworm-slim`, `22.21-slim`, `22.21.1-bookworm-slim`, `22.21.1-slim`, `jod-bookworm-slim`, `jod-slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/bookworm-slim/Dockerfile) -- [`22-bullseye`, `22.21-bullseye`, `22.21.0-bullseye`, `jod-bullseye`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye/Dockerfile) +- [`22-bullseye`, `22.21-bullseye`, `22.21.1-bullseye`, `jod-bullseye`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/bullseye/Dockerfile) -- [`22-bullseye-slim`, `22.21-bullseye-slim`, `22.21.0-bullseye-slim`, `jod-bullseye-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/bullseye-slim/Dockerfile) +- [`22-bullseye-slim`, `22.21-bullseye-slim`, `22.21.1-bullseye-slim`, `jod-bullseye-slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/bullseye-slim/Dockerfile) -- [`22-trixie`, `22.21-trixie`, `22.21.0-trixie`, `jod-trixie`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie/Dockerfile) +- [`22-trixie`, `22.21-trixie`, `22.21.1-trixie`, `jod-trixie`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/trixie/Dockerfile) -- [`22-trixie-slim`, `22.21-trixie-slim`, `22.21.0-trixie-slim`, `jod-trixie-slim`](https://github.com/nodejs/docker-node/blob/e9e4b6b157dcdb430b10e4c49baf7fae3abf1262/22/trixie-slim/Dockerfile) +- [`22-trixie-slim`, `22.21-trixie-slim`, `22.21.1-trixie-slim`, `jod-trixie-slim`](https://github.com/nodejs/docker-node/blob/bf78d7603fbea92cd3652edb3b2edadd6f5a3fe8/22/trixie-slim/Dockerfile) - [`20-alpine3.21`, `20.19-alpine3.21`, `20.19.5-alpine3.21`, `iron-alpine3.21`](https://github.com/nodejs/docker-node/blob/3e2f6d57af464dc2ecd21b0a295d294ec4f52640/20/alpine3.21/Dockerfile) From 4f3ed6259b812184ab4d1d797177e6d995980f39 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Oct 2025 11:10:41 -0700 Subject: [PATCH 2647/2686] Run update.sh --- gradle/README.md | 92 +++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 47 deletions(-) diff --git a/gradle/README.md b/gradle/README.md index 8cd5c1a6e4a7..9d12547d4bcd 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,97 +24,95 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.1.0-jdk25`, `9.1-jdk25`, `9-jdk25`, `jdk25`, `9.1.0-jdk25-noble`, `9.1-jdk25-noble`, `9-jdk25-noble`, `jdk25-noble`, `latest`, `9.1.0-jdk`, `9.1-jdk`, `9-jdk`, `jdk`, `9.1.0`, `9.1`, `9`, `9.1.0-jdk-noble`, `9.1-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.1.0-noble`, `9.1-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-noble/Dockerfile) +- [`9.2.0-jdk25`, `9.2-jdk25`, `9-jdk25`, `jdk25`, `9.2.0-jdk25-noble`, `9.2-jdk25-noble`, `9-jdk25-noble`, `jdk25-noble`, `latest`, `9.2.0-jdk`, `9.2-jdk`, `9-jdk`, `jdk`, `9.2.0`, `9.2`, `9`, `9.2.0-jdk-noble`, `9.2-jdk-noble`, `9-jdk-noble`, `jdk-noble`, `9.2.0-noble`, `9.2-noble`, `9-noble`, `noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk25-noble/Dockerfile) -- [`9.1.0-jdk25-alpine`, `9.1-jdk25-alpine`, `9-jdk25-alpine`, `jdk25-alpine`, `9.1.0-jdk-alpine`, `9.1-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.1.0-alpine`, `9.1-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-alpine/Dockerfile) +- [`9.2.0-jdk25-alpine`, `9.2-jdk25-alpine`, `9-jdk25-alpine`, `jdk25-alpine`, `9.2.0-jdk-alpine`, `9.2-jdk-alpine`, `9-jdk-alpine`, `jdk-alpine`, `9.2.0-alpine`, `9.2-alpine`, `9-alpine`, `alpine`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk25-alpine/Dockerfile) -- [`9.1.0-jdk25-corretto`, `9.1-jdk25-corretto`, `9-jdk25-corretto`, `jdk25-corretto`, `corretto`, `9.1.0-jdk25-corretto-al2023`, `9.1-jdk25-corretto-al2023`, `9-jdk25-corretto-al2023`, `jdk25-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-corretto/Dockerfile) +- [`9.2.0-jdk25-corretto`, `9.2-jdk25-corretto`, `9-jdk25-corretto`, `jdk25-corretto`, `corretto`, `9.2.0-jdk25-corretto-al2023`, `9.2-jdk25-corretto-al2023`, `9-jdk25-corretto-al2023`, `jdk25-corretto-al2023`, `corretto-al2023`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk25-corretto/Dockerfile) -- [`9.1.0-jdk25-ubi`, `9.1-jdk25-ubi`, `9-jdk25-ubi`, `jdk25-ubi`, `ubi`, `9.1.0-jdk25-ubi-minimal`, `9.1-jdk25-ubi-minimal`, `9-jdk25-ubi-minimal`, `jdk25-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-ubi10/Dockerfile) +- [`9.2.0-jdk25-ubi`, `9.2-jdk25-ubi`, `9-jdk25-ubi`, `jdk25-ubi`, `ubi`, `9.2.0-jdk25-ubi-minimal`, `9.2-jdk25-ubi-minimal`, `9-jdk25-ubi-minimal`, `jdk25-ubi-minimal`, `ubi-minimal`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk25-ubi10/Dockerfile) -- [`9.1.0-jdk25-graal`, `9.1-jdk25-graal`, `9-jdk25-graal`, `jdk25-graal`, `9.1.0-jdk-graal`, `9.1-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.1.0-graal`, `9.1-graal`, `9-graal`, `graal`, `9.1.0-jdk25-graal-noble`, `9.1-jdk25-graal-noble`, `9-jdk25-graal-noble`, `jdk25-graal-noble`, `9.1.0-jdk-graal-noble`, `9.1-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.1.0-graal-noble`, `9.1-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk25-noble-graal/Dockerfile) +- [`9.2.0-jdk25-graal`, `9.2-jdk25-graal`, `9-jdk25-graal`, `jdk25-graal`, `9.2.0-jdk-graal`, `9.2-jdk-graal`, `9-jdk-graal`, `jdk-graal`, `9.2.0-graal`, `9.2-graal`, `9-graal`, `graal`, `9.2.0-jdk25-graal-noble`, `9.2-jdk25-graal-noble`, `9-jdk25-graal-noble`, `jdk25-graal-noble`, `9.2.0-jdk-graal-noble`, `9.2-jdk-graal-noble`, `9-jdk-graal-noble`, `jdk-graal-noble`, `9.2.0-graal-noble`, `9.2-graal-noble`, `9-graal-noble`, `graal-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk25-noble-graal/Dockerfile) -- [`9.1.0-jdk21`, `9.1-jdk21`, `9-jdk21`, `jdk21`, `9.1.0-jdk21-noble`, `9.1-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-noble/Dockerfile) +- [`9.2.0-jdk21`, `9.2-jdk21`, `9-jdk21`, `jdk21`, `9.2.0-jdk21-noble`, `9.2-jdk21-noble`, `9-jdk21-noble`, `jdk21-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-noble/Dockerfile) -- [`9.1.0-jdk21-jammy`, `9.1-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.1.0-jdk-jammy`, `9.1-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.1.0-jammy`, `9.1-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-jammy/Dockerfile) +- [`9.2.0-jdk21-jammy`, `9.2-jdk21-jammy`, `9-jdk21-jammy`, `jdk21-jammy`, `9.2.0-jdk-jammy`, `9.2-jdk-jammy`, `9-jdk-jammy`, `jdk-jammy`, `9.2.0-jammy`, `9.2-jammy`, `9-jammy`, `jammy`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-jammy/Dockerfile) -- [`9.1.0-jdk21-alpine`, `9.1-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-alpine/Dockerfile) +- [`9.2.0-jdk21-alpine`, `9.2-jdk21-alpine`, `9-jdk21-alpine`, `jdk21-alpine`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-alpine/Dockerfile) -- [`9.1.0-jdk21-corretto`, `9.1-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `9.1.0-jdk21-corretto-al2023`, `9.1-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-corretto/Dockerfile) +- [`9.2.0-jdk21-corretto`, `9.2-jdk21-corretto`, `9-jdk21-corretto`, `jdk21-corretto`, `9.2.0-jdk21-corretto-al2023`, `9.2-jdk21-corretto-al2023`, `9-jdk21-corretto-al2023`, `jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-corretto/Dockerfile) -- [`9.1.0-jdk21-ubi`, `9.1-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `9.1.0-jdk21-ubi-minimal`, `9.1-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-ubi9/Dockerfile) +- [`9.2.0-jdk21-ubi`, `9.2-jdk21-ubi`, `9-jdk21-ubi`, `jdk21-ubi`, `9.2.0-jdk21-ubi-minimal`, `9.2-jdk21-ubi-minimal`, `9-jdk21-ubi-minimal`, `jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-ubi9/Dockerfile) -- [`9.1.0-jdk21-graal`, `9.1-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.1.0-jdk21-graal-noble`, `9.1-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-noble-graal/Dockerfile) +- [`9.2.0-jdk21-graal`, `9.2-jdk21-graal`, `9-jdk21-graal`, `jdk21-graal`, `9.2.0-jdk21-graal-noble`, `9.2-jdk21-graal-noble`, `9-jdk21-graal-noble`, `jdk21-graal-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-noble-graal/Dockerfile) -- [`9.1.0-jdk21-graal-jammy`, `9.1-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.1.0-jdk-graal-jammy`, `9.1-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.1.0-graal-jammy`, `9.1-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk21-jammy-graal/Dockerfile) +- [`9.2.0-jdk21-graal-jammy`, `9.2-jdk21-graal-jammy`, `9-jdk21-graal-jammy`, `jdk21-graal-jammy`, `9.2.0-jdk-graal-jammy`, `9.2-jdk-graal-jammy`, `9-jdk-graal-jammy`, `jdk-graal-jammy`, `9.2.0-graal-jammy`, `9.2-graal-jammy`, `9-graal-jammy`, `graal-jammy`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk21-jammy-graal/Dockerfile) -- [`9.1.0-jdk17`, `9.1-jdk17`, `9-jdk17`, `jdk17`, `9.1.0-jdk17-noble`, `9.1-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-noble/Dockerfile) +- [`9.2.0-jdk17`, `9.2-jdk17`, `9-jdk17`, `jdk17`, `9.2.0-jdk17-noble`, `9.2-jdk17-noble`, `9-jdk17-noble`, `jdk17-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-noble/Dockerfile) -- [`9.1.0-jdk17-jammy`, `9.1-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-jammy/Dockerfile) +- [`9.2.0-jdk17-jammy`, `9.2-jdk17-jammy`, `9-jdk17-jammy`, `jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-jammy/Dockerfile) -- [`9.1.0-jdk17-alpine`, `9.1-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-alpine/Dockerfile) +- [`9.2.0-jdk17-alpine`, `9.2-jdk17-alpine`, `9-jdk17-alpine`, `jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-alpine/Dockerfile) -- [`9.1.0-jdk17-corretto`, `9.1-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.1.0-jdk17-corretto-al2023`, `9.1-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-corretto/Dockerfile) +- [`9.2.0-jdk17-corretto`, `9.2-jdk17-corretto`, `9-jdk17-corretto`, `jdk17-corretto`, `9.2.0-jdk17-corretto-al2023`, `9.2-jdk17-corretto-al2023`, `9-jdk17-corretto-al2023`, `jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-corretto/Dockerfile) -- [`9.1.0-jdk17-ubi`, `9.1-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.1.0-jdk17-ubi-minimal`, `9.1-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-ubi9/Dockerfile) +- [`9.2.0-jdk17-ubi`, `9.2-jdk17-ubi`, `9-jdk17-ubi`, `jdk17-ubi`, `9.2.0-jdk17-ubi-minimal`, `9.2-jdk17-ubi-minimal`, `9-jdk17-ubi-minimal`, `jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-ubi9/Dockerfile) -- [`9.1.0-jdk17-graal`, `9.1-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.1.0-jdk17-graal-noble`, `9.1-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-noble-graal/Dockerfile) +- [`9.2.0-jdk17-graal`, `9.2-jdk17-graal`, `9-jdk17-graal`, `jdk17-graal`, `9.2.0-jdk17-graal-noble`, `9.2-jdk17-graal-noble`, `9-jdk17-graal-noble`, `jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-noble-graal/Dockerfile) -- [`9.1.0-jdk17-graal-jammy`, `9.1-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk17-jammy-graal/Dockerfile) +- [`9.2.0-jdk17-graal-jammy`, `9.2-jdk17-graal-jammy`, `9-jdk17-graal-jammy`, `jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk17-jammy-graal/Dockerfile) -- [`9.1.0-jdk-lts-and-current`, `9.1-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.1.0-jdk-lts-and-current-noble`, `9.1-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.1.0-jdk-25-and-25`, `9.1-jdk-25-and-25`, `9-jdk-25-and-25`, `jdk-25-and-25`, `9.1.0-jdk-25-and-25-noble`, `9.1-jdk-25-and-25-noble`, `9-jdk-25-and-25-noble`, `jdk-25-and-25-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current/Dockerfile) +- [`9.2.0-jdk-lts-and-current`, `9.2-jdk-lts-and-current`, `9-jdk-lts-and-current`, `jdk-lts-and-current`, `9.2.0-jdk-lts-and-current-noble`, `9.2-jdk-lts-and-current-noble`, `9-jdk-lts-and-current-noble`, `jdk-lts-and-current-noble`, `9.2.0-jdk-25-and-25`, `9.2-jdk-25-and-25`, `9-jdk-25-and-25`, `jdk-25-and-25`, `9.2.0-jdk-25-and-25-noble`, `9.2-jdk-25-and-25-noble`, `9-jdk-25-and-25-noble`, `jdk-25-and-25-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk-lts-and-current/Dockerfile) -- [`9.1.0-jdk-lts-and-current-alpine`, `9.1-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.1.0-jdk-25-and-25-alpine`, `9.1-jdk-25-and-25-alpine`, `9-jdk-25-and-25-alpine`, `jdk-25-and-25-alpine`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-alpine/Dockerfile) +- [`9.2.0-jdk-lts-and-current-alpine`, `9.2-jdk-lts-and-current-alpine`, `9-jdk-lts-and-current-alpine`, `jdk-lts-and-current-alpine`, `9.2.0-jdk-25-and-25-alpine`, `9.2-jdk-25-and-25-alpine`, `9-jdk-25-and-25-alpine`, `jdk-25-and-25-alpine`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk-lts-and-current-alpine/Dockerfile) -- [`9.1.0-jdk-lts-and-current-corretto`, `9.1-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.1.0-jdk-lts-and-current-corretto-al2023`, `9.1-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.1.0-jdk-25-and-25-corretto`, `9.1-jdk-25-and-25-corretto`, `9-jdk-25-and-25-corretto`, `jdk-25-and-25-corretto`, `9.1.0-jdk-25-and-25-corretto-al2023`, `9.1-jdk-25-and-25-corretto-al2023`, `9-jdk-25-and-25-corretto-al2023`, `jdk-25-and-25-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-corretto/Dockerfile) +- [`9.2.0-jdk-lts-and-current-corretto`, `9.2-jdk-lts-and-current-corretto`, `9-jdk-lts-and-current-corretto`, `jdk-lts-and-current-corretto`, `9.2.0-jdk-lts-and-current-corretto-al2023`, `9.2-jdk-lts-and-current-corretto-al2023`, `9-jdk-lts-and-current-corretto-al2023`, `jdk-lts-and-current-corretto-al2023`, `9.2.0-jdk-25-and-25-corretto`, `9.2-jdk-25-and-25-corretto`, `9-jdk-25-and-25-corretto`, `jdk-25-and-25-corretto`, `9.2.0-jdk-25-and-25-corretto-al2023`, `9.2-jdk-25-and-25-corretto-al2023`, `9-jdk-25-and-25-corretto-al2023`, `jdk-25-and-25-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk-lts-and-current-corretto/Dockerfile) -- [`9.1.0-jdk-lts-and-current-graal`, `9.1-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.1.0-jdk-lts-and-current-graal-noble`, `9.1-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.1.0-jdk-25-and-25-graal`, `9.1-jdk-25-and-25-graal`, `9-jdk-25-and-25-graal`, `jdk-25-and-25-graal`, `9.1.0-jdk-25-and-25-graal-noble`, `9.1-jdk-25-and-25-graal-noble`, `9-jdk-25-and-25-graal-noble`, `jdk-25-and-25-graal-noble`](https://github.com/gradle/docker-gradle/blob/557df3e9d316f5069672935faff5a4fe532e63a6/jdk-lts-and-current-graal/Dockerfile) +- [`9.2.0-jdk-lts-and-current-graal`, `9.2-jdk-lts-and-current-graal`, `9-jdk-lts-and-current-graal`, `jdk-lts-and-current-graal`, `9.2.0-jdk-lts-and-current-graal-noble`, `9.2-jdk-lts-and-current-graal-noble`, `9-jdk-lts-and-current-graal-noble`, `jdk-lts-and-current-graal-noble`, `9.2.0-jdk-25-and-25-graal`, `9.2-jdk-25-and-25-graal`, `9-jdk-25-and-25-graal`, `jdk-25-and-25-graal`, `9.2.0-jdk-25-and-25-graal-noble`, `9.2-jdk-25-and-25-graal-noble`, `9-jdk-25-and-25-graal-noble`, `jdk-25-and-25-graal-noble`](https://github.com/gradle/docker-gradle/blob/303e802cc2c5aa008b6ec225820c932bf2336d5f/jdk-lts-and-current-graal/Dockerfile) -- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-noble/Dockerfile) +- [`8.14.3-jdk21`, `8.14-jdk21`, `8-jdk21`, `8.14.3-jdk21-noble`, `8.14-jdk21-noble`, `8-jdk21-noble`, `8.14.3-jdk`, `8.14-jdk`, `8-jdk`, `8.14.3`, `8.14`, `8`, `8.14.3-jdk-noble`, `8.14-jdk-noble`, `8-jdk-noble`, `8.14.3-noble`, `8.14-noble`, `8-noble`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-noble/Dockerfile) -- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-jammy/Dockerfile) +- [`8.14.3-jdk21-jammy`, `8.14-jdk21-jammy`, `8-jdk21-jammy`, `8.14.3-jdk-jammy`, `8.14-jdk-jammy`, `8-jdk-jammy`, `8.14.3-jammy`, `8.14-jammy`, `8-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-jammy/Dockerfile) -- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-alpine/Dockerfile) +- [`8.14.3-jdk21-alpine`, `8.14-jdk21-alpine`, `8-jdk21-alpine`, `8.14.3-jdk-alpine`, `8.14-jdk-alpine`, `8-jdk-alpine`, `8.14.3-alpine`, `8.14-alpine`, `8-alpine`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-alpine/Dockerfile) -- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-corretto/Dockerfile) +- [`8.14.3-jdk21-corretto`, `8.14-jdk21-corretto`, `8-jdk21-corretto`, `8.14.3-jdk21-corretto-al2023`, `8.14-jdk21-corretto-al2023`, `8-jdk21-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-corretto/Dockerfile) -- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-ubi9/Dockerfile) +- [`8.14.3-jdk21-ubi`, `8.14-jdk21-ubi`, `8-jdk21-ubi`, `8.14.3-jdk21-ubi-minimal`, `8.14-jdk21-ubi-minimal`, `8-jdk21-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-ubi9/Dockerfile) -- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-noble-graal/Dockerfile) +- [`8.14.3-jdk21-graal`, `8.14-jdk21-graal`, `8-jdk21-graal`, `8.14.3-jdk-graal`, `8.14-jdk-graal`, `8-jdk-graal`, `8.14.3-graal`, `8.14-graal`, `8-graal`, `8.14.3-jdk21-graal-noble`, `8.14-jdk21-graal-noble`, `8-jdk21-graal-noble`, `8.14.3-jdk-graal-noble`, `8.14-jdk-graal-noble`, `8-jdk-graal-noble`, `8.14.3-graal-noble`, `8.14-graal-noble`, `8-graal-noble`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-noble-graal/Dockerfile) -- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk21-jammy-graal/Dockerfile) +- [`8.14.3-jdk21-graal-jammy`, `8.14-jdk21-graal-jammy`, `8-jdk21-graal-jammy`, `8.14.3-jdk-graal-jammy`, `8.14-jdk-graal-jammy`, `8-jdk-graal-jammy`, `8.14.3-graal-jammy`, `8.14-graal-jammy`, `8-graal-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk21-jammy-graal/Dockerfile) -- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-noble/Dockerfile) +- [`8.14.3-jdk17`, `8.14-jdk17`, `8-jdk17`, `8.14.3-jdk17-noble`, `8.14-jdk17-noble`, `8-jdk17-noble`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-noble/Dockerfile) -- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-jammy/Dockerfile) +- [`8.14.3-jdk17-jammy`, `8.14-jdk17-jammy`, `8-jdk17-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-jammy/Dockerfile) -- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-alpine/Dockerfile) +- [`8.14.3-jdk17-alpine`, `8.14-jdk17-alpine`, `8-jdk17-alpine`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-alpine/Dockerfile) -- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-corretto/Dockerfile) +- [`8.14.3-jdk17-corretto`, `8.14-jdk17-corretto`, `8-jdk17-corretto`, `8.14.3-jdk17-corretto-al2023`, `8.14-jdk17-corretto-al2023`, `8-jdk17-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-corretto/Dockerfile) -- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-ubi9/Dockerfile) +- [`8.14.3-jdk17-ubi`, `8.14-jdk17-ubi`, `8-jdk17-ubi`, `8.14.3-jdk17-ubi-minimal`, `8.14-jdk17-ubi-minimal`, `8-jdk17-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-ubi9/Dockerfile) -- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-noble-graal/Dockerfile) +- [`8.14.3-jdk17-graal`, `8.14-jdk17-graal`, `8-jdk17-graal`, `8.14.3-jdk17-graal-noble`, `8.14-jdk17-graal-noble`, `8-jdk17-graal-noble`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-noble-graal/Dockerfile) -- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk17-jammy-graal/Dockerfile) +- [`8.14.3-jdk17-graal-jammy`, `8.14-jdk17-graal-jammy`, `8-jdk17-graal-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk17-jammy-graal/Dockerfile) -- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-jammy/Dockerfile) +- [`8.14.3-jdk11`, `8.14-jdk11`, `8-jdk11`, `jdk11`, `8.14.3-jdk11-jammy`, `8.14-jdk11-jammy`, `8-jdk11-jammy`, `jdk11-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk11-jammy/Dockerfile) -- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-alpine/Dockerfile) +- [`8.14.3-jdk11-alpine`, `8.14-jdk11-alpine`, `8-jdk11-alpine`, `jdk11-alpine`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk11-alpine/Dockerfile) -- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-corretto/Dockerfile) +- [`8.14.3-jdk11-corretto`, `8.14-jdk11-corretto`, `8-jdk11-corretto`, `jdk11-corretto`, `8.14.3-jdk11-corretto-al2023`, `8.14-jdk11-corretto-al2023`, `8-jdk11-corretto-al2023`, `jdk11-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk11-corretto/Dockerfile) -- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk11-ubi9/Dockerfile) +- [`8.14.3-jdk11-ubi`, `8.14-jdk11-ubi`, `8-jdk11-ubi`, `jdk11-ubi`, `8.14.3-jdk11-ubi-minimal`, `8.14-jdk11-ubi-minimal`, `8-jdk11-ubi-minimal`, `jdk11-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk11-ubi9/Dockerfile) -- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-jammy/Dockerfile) +- [`8.14.3-jdk8`, `8.14-jdk8`, `8-jdk8`, `jdk8`, `8.14.3-jdk8-jammy`, `8.14-jdk8-jammy`, `8-jdk8-jammy`, `jdk8-jammy`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk8-jammy/Dockerfile) -- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-corretto/Dockerfile) +- [`8.14.3-jdk8-corretto`, `8.14-jdk8-corretto`, `8-jdk8-corretto`, `jdk8-corretto`, `8.14.3-jdk8-corretto-al2023`, `8.14-jdk8-corretto-al2023`, `8-jdk8-corretto-al2023`, `jdk8-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk8-corretto/Dockerfile) -- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk8-ubi9/Dockerfile) +- [`8.14.3-jdk8-ubi`, `8.14-jdk8-ubi`, `8-jdk8-ubi`, `jdk8-ubi`, `8.14.3-jdk8-ubi-minimal`, `8.14-jdk8-ubi-minimal`, `8-jdk8-ubi-minimal`, `jdk8-ubi-minimal`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk8-ubi9/Dockerfile) -- [`8.14.3-jdk24-corretto`, `8.14-jdk24-corretto`, `8-jdk24-corretto`, `jdk24-corretto`, `8.14.3-jdk24-corretto-al2023`, `8.14-jdk24-corretto-al2023`, `8-jdk24-corretto-al2023`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk24-corretto/Dockerfile) - -- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/23cd8c04ce29ecafdbb26fc064e5db3da663b5d8/jdk24-noble-graal/Dockerfile) +- [`8.14.3-jdk24-graal`, `8.14-jdk24-graal`, `8-jdk24-graal`, `jdk24-graal`, `8.14.3-jdk24-graal-noble`, `8.14-jdk24-graal-noble`, `8-jdk24-graal-noble`](https://github.com/gradle/docker-gradle/blob/fba2d36b492eab91f3eb95610354df7b8d12d46f/jdk24-noble-graal/Dockerfile) - [`7.6.6-jdk17`, `7.6-jdk17`, `7-jdk17`, `7.6.6-jdk17-noble`, `7.6-jdk17-noble`, `7-jdk17-noble`, `7.6.6-jdk`, `7.6-jdk`, `7-jdk`, `7.6.6`, `7.6`, `7`, `7.6.6-jdk-noble`, `7.6-jdk-noble`, `7-jdk-noble`, `7.6.6-noble`, `7.6-noble`, `7-noble`](https://github.com/gradle/docker-gradle/blob/692045c708bc589ff8fa26fb083bdf1b23c0f8a5/jdk17-noble/Dockerfile) From c24aa4c31ea6c02dd3702b4e2fa71ae2ee02e7f8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 29 Oct 2025 17:10:43 -0700 Subject: [PATCH 2648/2686] Run update.sh --- cassandra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/README.md b/cassandra/README.md index 6113ec02e0a5..ec60e43f9bf3 100644 --- a/cassandra/README.md +++ b/cassandra/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0.5`, `5.0`, `5`, `latest`, `5.0.5-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/5.0/Dockerfile) +- [`5.0.6`, `5.0`, `5`, `latest`, `5.0.6-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/6d75217eb8c69b8d9dd94766b781d829a56fbd2d/5.0/Dockerfile) - [`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.1/Dockerfile) From 73fcad93e0792c3d191f37bdea52812bc06dff6f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Oct 2025 10:10:47 -0700 Subject: [PATCH 2649/2686] Run update.sh --- spark/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spark/README.md b/spark/README.md index 6c7949b7e4e0..3eff6baafa37 100644 --- a/spark/README.md +++ b/spark/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.0.0-scala2.13-java21-python3-ubuntu`, `4.0.0-java21-python3`, `4.0.0-java21`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-python3-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java21-python3-ubuntu`, `4.0.1-java21-python3`, `4.0.1-java21`, `python3`, `latest`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java21-python3-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java21-r-ubuntu`, `4.0.0-java21-r`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-r-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java21-r-ubuntu`, `4.0.1-java21-r`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java21-r-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java21-ubuntu`, `4.0.0-java21-scala`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java21-ubuntu`, `4.0.1-java21-scala`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java21-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java21-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java21-python3-r-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java21-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java21-python3-r-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java17-python3-ubuntu`, `4.0.0-python3`, `4.0.0`, `python3-java17`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java17-python3-ubuntu`, `4.0.1-python3`, `4.0.1`, `python3-java17`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java17-python3-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java17-r-ubuntu`, `4.0.0-r`, `r`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-r-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java17-r-ubuntu`, `4.0.1-r`, `r`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java17-r-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java17-ubuntu`, `4.0.0-scala`, `scala`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java17-ubuntu`, `4.0.1-scala`, `scala`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java17-ubuntu/Dockerfile) -- [`4.0.0-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/4bd1dbce94797b5b387b784db6b378069a8b6328/4.0.0/scala2.13-java17-python3-r-ubuntu/Dockerfile) +- [`4.0.1-scala2.13-java17-python3-r-ubuntu`](https://github.com/apache/spark-docker/blob/a5edefc5f796902d5cc15f7d840bb6335f283797/4.0.1/scala2.13-java17-python3-r-ubuntu/Dockerfile) - [`3.5.7-scala2.12-java17-python3-ubuntu`, `3.5.7-java17-python3`, `3.5.7-java17`](https://github.com/apache/spark-docker/blob/2ebf694ad45fee6f4beeeb4204bcdb01d73c988f/3.5.7/scala2.12-java17-python3-ubuntu/Dockerfile) From 4de5e37988e6667a921bbc183d2a28d95f92dc2c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Oct 2025 12:10:42 -0700 Subject: [PATCH 2650/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 88 +++++++++++++++++------------------ influxdb/README.md | 32 ++++++------- 2 files changed, 60 insertions(+), 60 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index bfe6ca64045e..83412c8e3d34 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,103 +28,103 @@ WARNING: ## Simple Tags -- [`open-8u462-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u472-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u472-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u472-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u462-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u472-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.28_6-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.16_8-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.8_9-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-25.0.0_36-jdk-jammy`, `open-25-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-25.0.0_36-jdk-jammy`, `open-25-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-25.0.0_36-jdk-noble`, `open-25-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-25.0.0_36-jdk-noble`, `open-25-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-25.0.0_36-jre-jammy`, `open-25-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-25.0.0_36-jre-jammy`, `open-25-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-25.0.0_36-jre-noble`, `open-25-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-25.0.0_36-jre-noble`, `open-25-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags -- `open-8u462-b08-jdk`, `open-8-jdk`: +- `open-8u472-b08-jdk`, `open-8-jdk`: - - [`open-8u462-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u472-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-8u462-b08-jre`, `open-8-jre`: +- `open-8u472-b08-jre`, `open-8-jre`: - - [`open-8u462-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u472-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.28_6-jdk`, `open-11-jdk`: +- `open-11.0.29_7-jdk`, `open-11-jdk`: - - [`open-11.0.28_6-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.29_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-11.0.28_6-jre`, `open-11-jre`: +- `open-11.0.29_7-jre`, `open-11-jre`: - - [`open-11.0.28_6-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.29_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.16_8-jdk`, `open-17-jdk`: +- `open-17.0.17_9-jdk`, `open-17-jdk`: - - [`open-17.0.16_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.17_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-17.0.16_8-jre`, `open-17-jre`: +- `open-17.0.17_9-jre`, `open-17-jre`: - - [`open-17.0.16_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.17_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.8_9-jdk`, `open-21-jdk`: +- `open-21.0.9_10-jdk`, `open-21-jdk`: - - [`open-21.0.8_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.9_10-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-21.0.8_9-jre`, `open-21-jre`: +- `open-21.0.9_10-jre`, `open-21-jre`: - - [`open-21.0.8_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/21/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.9_10-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-24.0.2_12-jdk`, `open-24-jdk`: - - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-24.0.2_12-jre`, `open-24-jre`: - - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/24/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-25.0.0_36-jdk`, `open-25-jdk`: - - [`open-jdk-25.0.0_36-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-25.0.0_36-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-jdk-25.0.0_36-jre`, `open-25-jre`: - - [`open-jdk-25.0.0_36-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/02443937799a97adc1302dfa5f930047e9fd0953/25/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-25.0.0_36-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index d4992f12697c..8508d517baad 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,37 +24,37 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/Dockerfile) +- [`1.12`, `1.12.2`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/Dockerfile) -- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/alpine/Dockerfile) +- [`1.12-alpine`, `1.12.2-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/alpine/Dockerfile) -- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/data/Dockerfile) +- [`1.12-data`, `1.12.2-data`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/data/Dockerfile) -- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/data/alpine/Dockerfile) +- [`1.12-data-alpine`, `1.12.2-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/data/alpine/Dockerfile) -- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/meta/Dockerfile) +- [`1.12-meta`, `1.12.2-meta`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/meta/Dockerfile) -- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.12/meta/alpine/Dockerfile) +- [`1.12-meta-alpine`, `1.12.2-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.12/meta/alpine/Dockerfile) -- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/Dockerfile) +- [`1.11`, `1.11.8`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/Dockerfile) -- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/alpine/Dockerfile) +- [`1.11-alpine`, `1.11.8-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/alpine/Dockerfile) -- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/data/Dockerfile) +- [`1.11-data`, `1.11.9-data`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/data/Dockerfile) -- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/data/alpine/Dockerfile) +- [`1.11-data-alpine`, `1.11.9-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/data/alpine/Dockerfile) -- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/meta/Dockerfile) +- [`1.11-meta`, `1.11.9-meta`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/meta/Dockerfile) -- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/1.11/meta/alpine/Dockerfile) +- [`1.11-meta-alpine`, `1.11.9-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/1.11/meta/alpine/Dockerfile) -- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/2.7/Dockerfile) +- [`2`, `2.7`, `2.7.12`, `latest`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/2.7/Dockerfile) -- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/2.7/alpine/Dockerfile) +- [`2-alpine`, `2.7-alpine`, `2.7.12-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/2.7/alpine/Dockerfile) -- [`3-core`, `3.5-core`, `3.5.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/3.5-core/Dockerfile) +- [`3-core`, `3.6-core`, `3.6.0-core`, `core`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/3.6-core/Dockerfile) -- [`3-enterprise`, `3.5-enterprise`, `3.5.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/8b7d5a121e4a60e18c1ccb064ca9b6e4617c97aa/influxdb/3.5-enterprise/Dockerfile) +- [`3-enterprise`, `3.6-enterprise`, `3.6.0-enterprise`, `enterprise`](https://github.com/influxdata/influxdata-docker/blob/90a822e13f120254eff09740f8b16a2b2b275cc8/influxdb/3.6-enterprise/Dockerfile) # Quick reference (cont.) From 7ba0335ec480317a18edd8e4007a4b5c6eafb1e1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Oct 2025 14:10:52 -0700 Subject: [PATCH 2651/2686] Run update.sh --- neo4j/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/neo4j/README.md b/neo4j/README.md index 8e6f3ffd7d99..e10b3895ac34 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -24,21 +24,21 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.09.0-community-bullseye`, `2025.09-community-bullseye`, `2025-community-bullseye`, `2025.09.0-community`, `2025.09-community`, `2025-community`, `2025.09.0-bullseye`, `2025.09-bullseye`, `2025-bullseye`, `2025.09.0`, `2025.09`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/bullseye/community/Dockerfile) +- [`2025.10.1-community-bullseye`, `2025.10-community-bullseye`, `2025-community-bullseye`, `2025.10.1-community`, `2025.10-community`, `2025-community`, `2025.10.1-bullseye`, `2025.10-bullseye`, `2025-bullseye`, `2025.10.1`, `2025.10`, `2025`, `community-bullseye`, `community`, `bullseye`, `latest`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/2025.10.1/bullseye/community/Dockerfile) -- [`2025.09.0-enterprise-bullseye`, `2025.09-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.09.0-enterprise`, `2025.09-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/bullseye/enterprise/Dockerfile) +- [`2025.10.1-enterprise-bullseye`, `2025.10-enterprise-bullseye`, `2025-enterprise-bullseye`, `2025.10.1-enterprise`, `2025.10-enterprise`, `2025-enterprise`, `enterprise-bullseye`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/2025.10.1/bullseye/enterprise/Dockerfile) -- [`2025.09.0-community-ubi9`, `2025.09-community-ubi9`, `2025-community-ubi9`, `2025.09.0-ubi9`, `2025.09-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/community/Dockerfile) +- [`2025.10.1-community-ubi9`, `2025.10-community-ubi9`, `2025-community-ubi9`, `2025.10.1-ubi9`, `2025.10-ubi9`, `2025-ubi9`, `community-ubi9`, `ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/2025.10.1/ubi9/community/Dockerfile) -- [`2025.09.0-enterprise-ubi9`, `2025.09-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/2025.09.0/ubi9/enterprise/Dockerfile) +- [`2025.10.1-enterprise-ubi9`, `2025.10-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/2025.10.1/ubi9/enterprise/Dockerfile) -- [`5.26.14-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.14-community`, `5.26-community`, `5-community`, `5.26.14-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.14`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/bullseye/community/Dockerfile) +- [`5.26.15-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.15-community`, `5.26-community`, `5-community`, `5.26.15-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.15`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/bullseye/community/Dockerfile) -- [`5.26.14-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.14-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/bullseye/enterprise/Dockerfile) +- [`5.26.15-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.15-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/bullseye/enterprise/Dockerfile) -- [`5.26.14-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.14-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/ubi9/community/Dockerfile) +- [`5.26.15-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.15-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/ubi9/community/Dockerfile) -- [`5.26.14-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/c081eabc9848ff21f89d0bc301300074c4c0e3e7/5.26.14/ubi9/enterprise/Dockerfile) +- [`5.26.15-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/ubi9/enterprise/Dockerfile) - [`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile) From f1ac7e66c79fb97c0ce2cec8a72e3d350dc0f504 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Oct 2025 15:11:20 -0700 Subject: [PATCH 2652/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- dart/README.md | 4 ++-- ibmjava/README.md | 6 +++--- rust/README.md | 18 +++++++++--------- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index dab58a6bb774..294ac22a4807 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.4`, `25.9.4-jammy`, `25.9.4.58`, `25.9.4.58-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.9.4.58/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.5`, `25.9.5-jammy`, `25.9.5.21`, `25.9.5.21-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.9.5.21/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.10`, `25.8.10-jammy`, `25.8.10.7`, `25.8.10.7-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.8.10.7/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.11`, `25.8.11-jammy`, `25.8.11.66`, `25.8.11.66-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.8.11.66/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.7.8.71/Dockerfile.ubuntu) +- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.7.8.71/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.7`, `25.3.7-jammy`, `25.3.7.194`, `25.3.7.194-jammy`](https://github.com/ClickHouse/docker-library/blob/6fc329d5c3b2f258912918a2e4ada0e6a15e5a97/server/25.3.7.194/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.8`, `25.3.8-jammy`, `25.3.8.23`, `25.3.8.23-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.3.8.23/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/dart/README.md b/dart/README.md index fe2d560a819c..ac7cbe5514f6 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/3a7d1c94a783900e8bb70a26b2e3642cc549b7fc/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6010d02510f9e3aa92fcdbdebe400cb25f2e6f2e/stable/trixie/Dockerfile) -- [`3.10.0-290.3.beta-sdk`, `beta-sdk`, `3.10.0-290.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/3a7d1c94a783900e8bb70a26b2e3642cc549b7fc/beta/trixie/Dockerfile) +- [`3.10.0-290.4.beta-sdk`, `beta-sdk`, `3.10.0-290.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6010d02510f9e3aa92fcdbdebe400cb25f2e6f2e/beta/trixie/Dockerfile) # Quick reference (cont.) diff --git a/ibmjava/README.md b/ibmjava/README.md index ef230f86f145..ce1e3303fc0a 100644 --- a/ibmjava/README.md +++ b/ibmjava/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/jre/ubuntu/Dockerfile) +- [`8-jre`, `jre`, `8`, `latest`](https://github.com/ibmruntimes/ci.docker/blob/a26553d44dfb1e694fd18b22bf7dba13fc164424/ibmjava/8/jre/ubuntu/Dockerfile) -- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/sfj/ubuntu/Dockerfile) +- [`8-sfj`, `sfj`](https://github.com/ibmruntimes/ci.docker/blob/a26553d44dfb1e694fd18b22bf7dba13fc164424/ibmjava/8/sfj/ubuntu/Dockerfile) -- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/c02f788be741734c7c5aa45832f63a700bae3707/ibmjava/8/sdk/ubuntu/Dockerfile) +- [`8-sdk`, `sdk`](https://github.com/ibmruntimes/ci.docker/blob/a26553d44dfb1e694fd18b22bf7dba13fc164424/ibmjava/8/sdk/ubuntu/Dockerfile) # Quick reference (cont.) diff --git a/rust/README.md b/rust/README.md index d80a7269b59f..ca3d3c0a7b23 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.90-bullseye`, `1.90.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.91-bullseye`, `1.91.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.90-slim-bullseye`, `1.90.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.91-slim-bullseye`, `1.91.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.90-bookworm`, `1.90.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.91-bookworm`, `1.91.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.90-slim-bookworm`, `1.90.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.91-slim-bookworm`, `1.91.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.90-trixie`, `1.90.0-trixie`, `trixie`, `1`, `1.90`, `1.90.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/trixie/Dockerfile) +- [`1-trixie`, `1.91-trixie`, `1.91.0-trixie`, `trixie`, `1`, `1.91`, `1.91.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.90-slim-trixie`, `1.90.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.90-slim`, `1.90.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.91-slim-trixie`, `1.91.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.91-slim`, `1.91.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/trixie/slim/Dockerfile) -- [`1-alpine3.20`, `1.90-alpine3.20`, `1.90.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.91-alpine3.20`, `1.91.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.90-alpine3.21`, `1.90.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.91-alpine3.21`, `1.91.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.90-alpine3.22`, `1.90.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.90-alpine`, `1.90.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/3aad80112be66bf796c202713029d7ba93dff7fa/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.91-alpine3.22`, `1.91.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.91-alpine`, `1.91.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.22/Dockerfile) # Quick reference (cont.) From 3d992107059ace92888f364c5f1744abf66b5096 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Oct 2025 17:10:43 -0700 Subject: [PATCH 2653/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index 5fd3c85061ed..d9851bf2fbfa 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.9.20250929.0`](https://github.com/amazonlinux/container-images/blob/929de1dd8d1747a34701660136a6654d5ef312cc/Dockerfile) +- [`2023`, `latest`, `2023.9.20251027.0`](https://github.com/amazonlinux/container-images/blob/c666d32da5468884cfa42ccd80455bc856e07785/Dockerfile) -- [`2`, `2.0.20250929.2`](https://github.com/amazonlinux/container-images/blob/bd6f28b0f4dac5ef4dadc1e141d005d65ef60be1/Dockerfile) +- [`2`, `2.0.20251027.1`](https://github.com/amazonlinux/container-images/blob/ed40df28f69622fa062061566027d2c798d8baf8/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From d4acd3b4b139972a6c4fb01571696803d747731b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Oct 2025 11:10:50 -0700 Subject: [PATCH 2654/2686] Run update.sh --- convertigo/README.md | 2 +- oraclelinux/README.md | 22 +++++++++++----------- xwiki/README.md | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/convertigo/README.md b/convertigo/README.md index 142a29b8d2cd..8b66af13c99c 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.3.9`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/a22b2bd68b46e4e0872aa3bf5ecf28d71ebdb342/docker/default/Dockerfile) +- [`8.3.10`, `8.3`, `latest`](https://github.com/convertigo/convertigo/blob/627b70f12e7af2b84bbdb9004c7e338802ee6567/docker/default/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c12ef3b05cae..119ac5d40698 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/fe3cfb9b6b7834daf2033b97256a4387b2c6dcf8/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/xwiki/README.md b/xwiki/README.md index 997c4a5d60d3..426d396c9345 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -36,11 +36,11 @@ WARNING: - [`17.4-mariadb-tomcat`, `17.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mariadb-tomcat/Dockerfile) -- [`16`, `16.10`, `16.10.13`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.13-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/mysql-tomcat/Dockerfile) +- [`16`, `16.10`, `16.10.14`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/62a954917dc052a551a79ffb0cc2b5397fa0c4ea/16/mysql-tomcat/Dockerfile) -- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.13-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/postgres-tomcat/Dockerfile) +- [`16-postgres-tomcat`, `16.10-postgres-tomcat`, `16.10.14-postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/62a954917dc052a551a79ffb0cc2b5397fa0c4ea/16/postgres-tomcat/Dockerfile) -- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.13-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/158215689a72b6b055f40bf1e0fb79c013d893b5/16/mariadb-tomcat/Dockerfile) +- [`16-mariadb-tomcat`, `16.10-mariadb-tomcat`, `16.10.14-mariadb-tomcat`, `lts-mariadb-tomcat`, `lts-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/62a954917dc052a551a79ffb0cc2b5397fa0c4ea/16/mariadb-tomcat/Dockerfile) # Quick reference (cont.) From bd364c804961569739abc04bd31f5d42362ec255 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Oct 2025 13:11:15 -0700 Subject: [PATCH 2655/2686] Run update.sh --- haproxy/README.md | 4 ++-- openjdk/README.md | 40 ++++++++++++++++++++-------------------- rabbitmq/README.md | 12 ++++++------ xwiki/README.md | 6 +++--- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index 9025534f5d28..d761251fddcd 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev10`, `3.3-dev`, `3.3-dev10-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/be4757e151254dc143f8dfb7cc25b39df8a01543/3.3/Dockerfile) +- [`3.3-dev11`, `3.3-dev`, `3.3-dev11-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/531c0c0d9c002e8f43ab020ff9e529c6168b287c/3.3/Dockerfile) -- [`3.3-dev10-alpine`, `3.3-dev-alpine`, `3.3-dev10-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/be4757e151254dc143f8dfb7cc25b39df8a01543/3.3/alpine/Dockerfile) +- [`3.3-dev11-alpine`, `3.3-dev-alpine`, `3.3-dev11-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/531c0c0d9c002e8f43ab020ff9e529c6168b287c/3.3/alpine/Dockerfile) - [`3.2.7`, `3.2`, `latest`, `lts`, `3.2.7-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/e4c0de0b54fc42dd87f22cfb61aad93562dad787/3.2/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index eafd5d3a2214..d0c808b5998c 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-21-jdk-oraclelinux9`, `26-ea-21-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-21-jdk-oracle`, `26-ea-21-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-22-jdk-oraclelinux9`, `26-ea-22-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-22-jdk-oracle`, `26-ea-22-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux9/Dockerfile) -- [`26-ea-21-jdk-oraclelinux8`, `26-ea-21-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-22-jdk-oraclelinux8`, `26-ea-22-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux8/Dockerfile) -- [`26-ea-21-jdk-trixie`, `26-ea-21-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/trixie/Dockerfile) +- [`26-ea-22-jdk-trixie`, `26-ea-22-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/trixie/Dockerfile) -- [`26-ea-21-jdk-slim-trixie`, `26-ea-21-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-21-jdk-slim`, `26-ea-21-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-22-jdk-slim-trixie`, `26-ea-22-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-22-jdk-slim`, `26-ea-22-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/slim-trixie/Dockerfile) -- [`26-ea-21-jdk-bookworm`, `26-ea-21-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/bookworm/Dockerfile) +- [`26-ea-22-jdk-bookworm`, `26-ea-22-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/bookworm/Dockerfile) -- [`26-ea-21-jdk-slim-bookworm`, `26-ea-21-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-22-jdk-slim-bookworm`, `26-ea-22-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/slim-bookworm/Dockerfile) -- [`26-ea-21-jdk-windowsservercore-ltsc2025`, `26-ea-21-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-22-jdk-windowsservercore-ltsc2025`, `26-ea-22-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-21-jdk-windowsservercore-ltsc2022`, `26-ea-21-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-22-jdk-windowsservercore-ltsc2022`, `26-ea-22-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-21-jdk-nanoserver-ltsc2025`, `26-ea-21-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-22-jdk-nanoserver-ltsc2025`, `26-ea-22-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-21-jdk-nanoserver-ltsc2022`, `26-ea-21-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-22-jdk-nanoserver-ltsc2022`, `26-ea-22-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-21-jdk`, `26-ea-21`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-22-jdk`, `26-ea-22`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: - - [`26-ea-21-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux9/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-21-jdk-windowsservercore`, `26-ea-21-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-22-jdk-windowsservercore`, `26-ea-22-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: - - [`26-ea-21-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-21-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-21-jdk-nanoserver`, `26-ea-21-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-22-jdk-nanoserver`, `26-ea-22-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: - - [`26-ea-21-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-21-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/bc40b49b6cb762567031d550f42cc3af7842e9f1/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index abba6724fc94..0fb09990a13d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/b867c0176b97e73bc2f19f94ed626ac5e3e27e5b/4.2/ubuntu/Dockerfile) +- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.2/ubuntu/Dockerfile) - [`4.2.0-management`, `4.2-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/management/Dockerfile) -- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/b867c0176b97e73bc2f19f94ed626ac5e3e27e5b/4.2/alpine/Dockerfile) +- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.2/alpine/Dockerfile) - [`4.2.0-management-alpine`, `4.2-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/management/Dockerfile) -- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/f015b4366e633217e58b0dbfb2c8744d616a011c/4.1/ubuntu/Dockerfile) +- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.1/ubuntu/Dockerfile) - [`4.1.5-management`, `4.1-management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/f015b4366e633217e58b0dbfb2c8744d616a011c/4.1/alpine/Dockerfile) +- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.1/alpine/Dockerfile) - [`4.1.5-management-alpine`, `4.1-management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/a26bfebe8bce460c89b7b5e00655687766b24ddd/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/a26bfebe8bce460c89b7b5e00655687766b24ddd/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) diff --git a/xwiki/README.md b/xwiki/README.md index 426d396c9345..062dbd9b21db 100644 --- a/xwiki/README.md +++ b/xwiki/README.md @@ -30,11 +30,11 @@ WARNING: - [`17-mariadb-tomcat`, `17.9-mariadb-tomcat`, `17.9.0-mariadb-tomcat`, `mariadb-tomcat`, `stable-mariadb-tomcat`, `stable-mariadb`](https://github.com/xwiki-contrib/docker-xwiki/blob/0e8c29920c8f4853e4cb8152f9a3d04e0b164abb/17/mariadb-tomcat/Dockerfile) -- [`17.4`, `17.4.6`, `17.4-mysql-tomcat`, `17.4.6-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mysql-tomcat/Dockerfile) +- [`17.4`, `17.4.7`, `17.4-mysql-tomcat`, `17.4.7-mysql-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/f5b8a93c46ec436d3540c59f64ad0b7488cdc413/17.4/mysql-tomcat/Dockerfile) -- [`17.4-postgres-tomcat`, `17.4.6-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/postgres-tomcat/Dockerfile) +- [`17.4-postgres-tomcat`, `17.4.7-postgres-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/f5b8a93c46ec436d3540c59f64ad0b7488cdc413/17.4/postgres-tomcat/Dockerfile) -- [`17.4-mariadb-tomcat`, `17.4.6-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/c2b009e58724adc8395a81f1c22bf3d86ffbc2be/17.4/mariadb-tomcat/Dockerfile) +- [`17.4-mariadb-tomcat`, `17.4.7-mariadb-tomcat`](https://github.com/xwiki-contrib/docker-xwiki/blob/f5b8a93c46ec436d3540c59f64ad0b7488cdc413/17.4/mariadb-tomcat/Dockerfile) - [`16`, `16.10`, `16.10.14`, `16-mysql-tomcat`, `16.10-mysql-tomcat`, `16.10.14-mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/62a954917dc052a551a79ffb0cc2b5397fa0c4ea/16/mysql-tomcat/Dockerfile) From 389cbcafa0339f71af8f8312eb25f4269989beb1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Oct 2025 16:10:50 -0700 Subject: [PATCH 2656/2686] Run update.sh --- r-base/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r-base/README.md b/r-base/README.md index f6a6947c1247..0824fd4adba7 100644 --- a/r-base/README.md +++ b/r-base/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.5.1`, `latest`](https://github.com/rocker-org/rocker/blob/6971f6286e907991a3b78e9d261ede20f9c31f49/r-base/4.5.1/Dockerfile) +- [`4.5.2`, `latest`](https://github.com/rocker-org/rocker/blob/446076ee8e7dc3a18bad99b84737af9dd28f0231/r-base/4.5.2/Dockerfile) # Quick reference (cont.) From ebe920a7dd09736b430d24b79243b8ab8c398ce2 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 31 Oct 2025 17:11:05 -0700 Subject: [PATCH 2657/2686] Run update.sh --- docker/README.md | 26 +++++++++++++------------- python/README.md | 16 ++++++++-------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docker/README.md b/docker/README.md index 56efe4f9e2f8..da72fed4a4e6 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`29.0.0-rc.1-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/cli/Dockerfile) +- [`29.0.0-rc.2-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/cli/Dockerfile) -- [`29.0.0-rc.1-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.1-dind-alpine3.22`, `29.0.0-rc.1`, `29-rc`, `rc`, `29.0.0-rc.1-alpine3.22`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/dind/Dockerfile) +- [`29.0.0-rc.2-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.2-dind-alpine3.22`, `29.0.0-rc.2`, `29-rc`, `rc`, `29.0.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/dind/Dockerfile) -- [`29.0.0-rc.1-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/dind-rootless/Dockerfile) +- [`29.0.0-rc.2-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/dind-rootless/Dockerfile) -- [`29.0.0-rc.1-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`29.0.0-rc.2-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`29.0.0-rc.1-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`29.0.0-rc.2-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.5.1-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/cli/Dockerfile) +- [`28.5.1-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/cli/Dockerfile) - [`28.5.1-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.1-dind-alpine3.22`, `28.5.1`, `28.5`, `28`, `latest`, `28.5.1-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind/Dockerfile) - [`28.5.1-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind-rootless/Dockerfile) -- [`28.5.1-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.5.1-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.5.1-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.5.1-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `29.0.0-rc.1-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: +- `29.0.0-rc.2-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: - - [`29.0.0-rc.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`29.0.0-rc.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/3cb6ed40f1274ee9041835533bb625cf55f63e91/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`29.0.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`29.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.5.1-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index cb68b4d63acb..203fc5b12e38 100644 --- a/python/README.md +++ b/python/README.md @@ -112,17 +112,17 @@ WARNING: - [`3.10.19-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/alpine3.21/Dockerfile) -- [`3.9.24-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/trixie/Dockerfile) +- [`3.9.25-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/trixie/Dockerfile) -- [`3.9.24-slim-trixie`, `3.9-slim-trixie`, `3.9.24-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/slim-trixie/Dockerfile) +- [`3.9.25-slim-trixie`, `3.9-slim-trixie`, `3.9.25-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/slim-trixie/Dockerfile) -- [`3.9.24-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/bookworm/Dockerfile) +- [`3.9.25-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/bookworm/Dockerfile) -- [`3.9.24-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/slim-bookworm/Dockerfile) +- [`3.9.25-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/slim-bookworm/Dockerfile) -- [`3.9.24-alpine3.22`, `3.9-alpine3.22`, `3.9.24-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/alpine3.22/Dockerfile) +- [`3.9.25-alpine3.22`, `3.9-alpine3.22`, `3.9.25-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/alpine3.22/Dockerfile) -- [`3.9.24-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/alpine3.21/Dockerfile) +- [`3.9.25-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/alpine3.21/Dockerfile) ## Shared Tags @@ -171,9 +171,9 @@ WARNING: - [`3.10.19-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/trixie/Dockerfile) -- `3.9.24`, `3.9`: +- `3.9.25`, `3.9`: - - [`3.9.24-trixie`](https://github.com/docker-library/python/blob/00c4cce6b91488475bfaf85921bae12604a56d4a/3.9/trixie/Dockerfile) + - [`3.9.25-trixie`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/trixie/Dockerfile) # Quick reference (cont.) From e0f4181ce3c95603e67dd240cf9515e8abb321bf Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Nov 2025 10:10:38 -0800 Subject: [PATCH 2658/2686] Run update.sh --- golang/README.md | 12 ++++++------ python/README.md | 18 +----------------- redis/README.md | 20 ++++++++++---------- rocket.chat/README.md | 6 +++--- 4 files changed, 20 insertions(+), 36 deletions(-) diff --git a/golang/README.md b/golang/README.md index 89053b192829..f3d226323aa2 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.9-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20251026-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/trixie/Dockerfile) +- [`tip-20251102-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/trixie/Dockerfile) -- [`tip-20251026-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/bookworm/Dockerfile) +- [`tip-20251102-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/bookworm/Dockerfile) -- [`tip-20251026-alpine3.22`, `tip-alpine3.22`, `tip-20251026-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/alpine3.22/Dockerfile) +- [`tip-20251102-alpine3.22`, `tip-alpine3.22`, `tip-20251102-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/alpine3.22/Dockerfile) -- [`tip-20251026-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/alpine3.21/Dockerfile) +- [`tip-20251102-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20251026`, `tip`: +- `tip-20251102`, `tip`: - - [`tip-20251026-trixie`](https://github.com/docker-library/golang/blob/24849f5e551b991d9c82c6e2c55975267bd9d2e5/tip/trixie/Dockerfile) + - [`tip-20251102-trixie`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/trixie/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index 203fc5b12e38..1b4c4fbe02ce 100644 --- a/python/README.md +++ b/python/README.md @@ -112,18 +112,6 @@ WARNING: - [`3.10.19-alpine3.21`, `3.10-alpine3.21`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/alpine3.21/Dockerfile) -- [`3.9.25-trixie`, `3.9-trixie`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/trixie/Dockerfile) - -- [`3.9.25-slim-trixie`, `3.9-slim-trixie`, `3.9.25-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/slim-trixie/Dockerfile) - -- [`3.9.25-bookworm`, `3.9-bookworm`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/bookworm/Dockerfile) - -- [`3.9.25-slim-bookworm`, `3.9-slim-bookworm`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/slim-bookworm/Dockerfile) - -- [`3.9.25-alpine3.22`, `3.9-alpine3.22`, `3.9.25-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/alpine3.22/Dockerfile) - -- [`3.9.25-alpine3.21`, `3.9-alpine3.21`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/alpine3.21/Dockerfile) - ## Shared Tags - `3.15.0a1`, `3.15-rc`: @@ -171,17 +159,13 @@ WARNING: - [`3.10.19-trixie`](https://github.com/docker-library/python/blob/54a65f4ff531391810946ee17b0806accbda0fae/3.10/trixie/Dockerfile) -- `3.9.25`, `3.9`: - - - [`3.9.25-trixie`](https://github.com/docker-library/python/blob/38aab6a1ab1db813a35d91953eb03283dc5bf0c6/3.9/trixie/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: [https://github.com/docker-library/python/issues](https://github.com/docker-library/python/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`mips64le`](https://hub.docker.com/r/mips64le/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`riscv64`](https://hub.docker.com/r/riscv64/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/) + [`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`riscv64`](https://hub.docker.com/r/riscv64/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/) - **Published image artifact details**: [repo-info repo's `repos/python/` directory](https://github.com/docker-library/repo-info/blob/master/repos/python) ([history](https://github.com/docker-library/repo-info/commits/master/repos/python)) diff --git a/redis/README.md b/redis/README.md index 40ec1357c218..0b51f21321ff 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,25 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.2`, `8.2`, `8`, `8.2.2-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/c5846c13383c8b284897ff171e0c946868ed4c8c/debian/Dockerfile) +- [`8.2.3`, `8.2`, `8`, `8.2.3-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/bcbc692165ce2241e194035041c5b5e01d2e1a5f/debian/Dockerfile) -- [`8.2.2-alpine`, `8.2-alpine`, `8-alpine`, `8.2.2-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/c5846c13383c8b284897ff171e0c946868ed4c8c/alpine/Dockerfile) +- [`8.2.3-alpine`, `8.2-alpine`, `8-alpine`, `8.2.3-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/bcbc692165ce2241e194035041c5b5e01d2e1a5f/alpine/Dockerfile) -- [`8.0.4`, `8.0`, `8.0.4-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/2277e5ead99f0caacbd90e0d04693adb27ebfaa6/debian/Dockerfile) +- [`8.0.5`, `8.0`, `8.0.5-bookworm`, `8.0-bookworm`](https://github.com/redis/docker-library-redis/blob/32adf916e545602f05e0bf031e789ab72012cf38/debian/Dockerfile) -- [`8.0.4-alpine`, `8.0-alpine`, `8.0.4-alpine3.21`, `8.0-alpine3.21`](https://github.com/redis/docker-library-redis/blob/2277e5ead99f0caacbd90e0d04693adb27ebfaa6/alpine/Dockerfile) +- [`8.0.5-alpine`, `8.0-alpine`, `8.0.5-alpine3.21`, `8.0-alpine3.21`](https://github.com/redis/docker-library-redis/blob/32adf916e545602f05e0bf031e789ab72012cf38/alpine/Dockerfile) -- [`7.4.6`, `7.4`, `7`, `7.4.6-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.4/debian/Dockerfile) +- [`7.4.7`, `7.4`, `7`, `7.4.7-bookworm`, `7.4-bookworm`, `7-bookworm`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/7.4/debian/Dockerfile) -- [`7.4.6-alpine`, `7.4-alpine`, `7-alpine`, `7.4.6-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.4/alpine/Dockerfile) +- [`7.4.7-alpine`, `7.4-alpine`, `7-alpine`, `7.4.7-alpine3.21`, `7.4-alpine3.21`, `7-alpine3.21`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/7.4/alpine/Dockerfile) -- [`7.2.11`, `7.2`, `7.2.11-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.2/debian/Dockerfile) +- [`7.2.12`, `7.2`, `7.2.12-bookworm`, `7.2-bookworm`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/7.2/debian/Dockerfile) -- [`7.2.11-alpine`, `7.2-alpine`, `7.2.11-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/7.2/alpine/Dockerfile) +- [`7.2.12-alpine`, `7.2-alpine`, `7.2.12-alpine3.21`, `7.2-alpine3.21`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/7.2/alpine/Dockerfile) -- [`6.2.20`, `6.2`, `6`, `6.2.20-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/6.2/debian/Dockerfile) +- [`6.2.21`, `6.2`, `6`, `6.2.21-bookworm`, `6.2-bookworm`, `6-bookworm`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/6.2/debian/Dockerfile) -- [`6.2.20-alpine`, `6.2-alpine`, `6-alpine`, `6.2.20-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/7d9ee3a9c8e9b5085cf0e354100a5aaf9be6a744/6.2/alpine/Dockerfile) +- [`6.2.21-alpine`, `6.2-alpine`, `6-alpine`, `6.2.21-alpine3.21`, `6.2-alpine3.21`, `6-alpine3.21`](https://github.com/redis/docker-library-redis/blob/d42d7aec93b1c54dd46f37a66a92f62478456039/6.2/alpine/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 85ff253d7348..c0256752711f 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,7 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.11.0`, `7.11`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.11/Dockerfile) +- [`7.12.0`, `7.12`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/129d590b56996d514da7a824c2d894b238ec4ed1/7.12/Dockerfile) + +- [`7.11.0`, `7.11`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.11/Dockerfile) - [`7.10.3`, `7.10`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.10/Dockerfile) @@ -36,8 +38,6 @@ WARNING: - [`7.6.6`, `7.6`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.6/Dockerfile) -- [`7.5.5`, `7.5`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.5/Dockerfile) - # Quick reference (cont.) - **Where to file issues**: From 341c1aa04cca88a7aa073dc91cadca58e08837c5 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Nov 2025 11:10:40 -0800 Subject: [PATCH 2659/2686] Run update.sh --- hylang/README.md | 106 +++++++++++++++++++++-------------------------- 1 file changed, 47 insertions(+), 59 deletions(-) diff --git a/hylang/README.md b/hylang/README.md index b5c8d220502b..668d46247553 100644 --- a/hylang/README.md +++ b/hylang/README.md @@ -28,120 +28,108 @@ WARNING: ## Simple Tags -- [`1.1.0-python3.14-trixie`, `1.1-python3.14-trixie`, `1-python3.14-trixie`, `python3.14-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-trixie/Dockerfile) +- [`1.1.0-python3.14-trixie`, `1.1-python3.14-trixie`, `1-python3.14-trixie`, `python3.14-trixie`, `1.1.0-trixie`, `1.1-trixie`, `1-trixie`, `trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-trixie/Dockerfile) -- [`1.1.0-python3.14-bookworm`, `1.1-python3.14-bookworm`, `1-python3.14-bookworm`, `python3.14-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-bookworm/Dockerfile) +- [`1.1.0-python3.14-bookworm`, `1.1-python3.14-bookworm`, `1-python3.14-bookworm`, `python3.14-bookworm`, `1.1.0-bookworm`, `1.1-bookworm`, `1-bookworm`, `bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-bookworm/Dockerfile) -- [`1.1.0-python3.14-alpine3.22`, `1.1-python3.14-alpine3.22`, `1-python3.14-alpine3.22`, `python3.14-alpine3.22`, `1.1.0-python3.14-alpine`, `1.1-python3.14-alpine`, `1-python3.14-alpine`, `python3.14-alpine`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-alpine3.22/Dockerfile) +- [`1.1.0-python3.14-alpine3.22`, `1.1-python3.14-alpine3.22`, `1-python3.14-alpine3.22`, `python3.14-alpine3.22`, `1.1.0-python3.14-alpine`, `1.1-python3.14-alpine`, `1-python3.14-alpine`, `python3.14-alpine`, `1.1.0-alpine3.22`, `1.1-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.1.0-alpine`, `1.1-alpine`, `1-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-alpine3.22/Dockerfile) -- [`1.1.0-python3.14-alpine3.21`, `1.1-python3.14-alpine3.21`, `1-python3.14-alpine3.21`, `python3.14-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-alpine3.21/Dockerfile) +- [`1.1.0-python3.14-alpine3.21`, `1.1-python3.14-alpine3.21`, `1-python3.14-alpine3.21`, `python3.14-alpine3.21`, `1.1.0-alpine3.21`, `1.1-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-alpine3.21/Dockerfile) -- [`1.1.0-python3.14-windowsservercore-ltsc2025`, `1.1-python3.14-windowsservercore-ltsc2025`, `1-python3.14-windowsservercore-ltsc2025`, `python3.14-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) +- [`1.1.0-python3.14-windowsservercore-ltsc2025`, `1.1-python3.14-windowsservercore-ltsc2025`, `1-python3.14-windowsservercore-ltsc2025`, `python3.14-windowsservercore-ltsc2025`, `1.1.0-windowsservercore-ltsc2025`, `1.1-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-python3.14-windowsservercore-ltsc2022`, `1.1-python3.14-windowsservercore-ltsc2022`, `1-python3.14-windowsservercore-ltsc2022`, `python3.14-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) +- [`1.1.0-python3.14-windowsservercore-ltsc2022`, `1.1-python3.14-windowsservercore-ltsc2022`, `1-python3.14-windowsservercore-ltsc2022`, `python3.14-windowsservercore-ltsc2022`, `1.1.0-windowsservercore-ltsc2022`, `1.1-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) -- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-trixie/Dockerfile) +- [`1.1.0-python3.13-trixie`, `1.1-python3.13-trixie`, `1-python3.13-trixie`, `python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-trixie/Dockerfile) -- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-bookworm/Dockerfile) +- [`1.1.0-python3.13-bookworm`, `1.1-python3.13-bookworm`, `1-python3.13-bookworm`, `python3.13-bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-bookworm/Dockerfile) -- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-alpine3.22/Dockerfile) +- [`1.1.0-python3.13-alpine3.22`, `1.1-python3.13-alpine3.22`, `1-python3.13-alpine3.22`, `python3.13-alpine3.22`, `1.1.0-python3.13-alpine`, `1.1-python3.13-alpine`, `1-python3.13-alpine`, `python3.13-alpine`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-alpine3.22/Dockerfile) -- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-alpine3.21/Dockerfile) +- [`1.1.0-python3.13-alpine3.21`, `1.1-python3.13-alpine3.21`, `1-python3.13-alpine3.21`, `python3.13-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-alpine3.21/Dockerfile) -- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) +- [`1.1.0-python3.13-windowsservercore-ltsc2025`, `1.1-python3.13-windowsservercore-ltsc2025`, `1-python3.13-windowsservercore-ltsc2025`, `python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) +- [`1.1.0-python3.13-windowsservercore-ltsc2022`, `1.1-python3.13-windowsservercore-ltsc2022`, `1-python3.13-windowsservercore-ltsc2022`, `python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) -- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-trixie/Dockerfile) +- [`1.1.0-python3.12-trixie`, `1.1-python3.12-trixie`, `1-python3.12-trixie`, `python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.12-trixie/Dockerfile) -- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-bookworm/Dockerfile) +- [`1.1.0-python3.12-bookworm`, `1.1-python3.12-bookworm`, `1-python3.12-bookworm`, `python3.12-bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.12-bookworm/Dockerfile) -- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-alpine3.22/Dockerfile) +- [`1.1.0-python3.12-alpine3.22`, `1.1-python3.12-alpine3.22`, `1-python3.12-alpine3.22`, `python3.12-alpine3.22`, `1.1.0-python3.12-alpine`, `1.1-python3.12-alpine`, `1-python3.12-alpine`, `python3.12-alpine`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.12-alpine3.22/Dockerfile) -- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-alpine3.21/Dockerfile) +- [`1.1.0-python3.12-alpine3.21`, `1.1-python3.12-alpine3.21`, `1-python3.12-alpine3.21`, `python3.12-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.12-alpine3.21/Dockerfile) -- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-trixie/Dockerfile) +- [`1.1.0-python3.11-trixie`, `1.1-python3.11-trixie`, `1-python3.11-trixie`, `python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.11-trixie/Dockerfile) -- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-bookworm/Dockerfile) +- [`1.1.0-python3.11-bookworm`, `1.1-python3.11-bookworm`, `1-python3.11-bookworm`, `python3.11-bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.11-bookworm/Dockerfile) -- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-alpine3.22/Dockerfile) +- [`1.1.0-python3.11-alpine3.22`, `1.1-python3.11-alpine3.22`, `1-python3.11-alpine3.22`, `python3.11-alpine3.22`, `1.1.0-python3.11-alpine`, `1.1-python3.11-alpine`, `1-python3.11-alpine`, `python3.11-alpine`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.11-alpine3.22/Dockerfile) -- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-alpine3.21/Dockerfile) +- [`1.1.0-python3.11-alpine3.21`, `1.1-python3.11-alpine3.21`, `1-python3.11-alpine3.21`, `python3.11-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.11-alpine3.21/Dockerfile) -- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-trixie/Dockerfile) +- [`1.1.0-python3.10-trixie`, `1.1-python3.10-trixie`, `1-python3.10-trixie`, `python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.10-trixie/Dockerfile) -- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-bookworm/Dockerfile) +- [`1.1.0-python3.10-bookworm`, `1.1-python3.10-bookworm`, `1-python3.10-bookworm`, `python3.10-bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.10-bookworm/Dockerfile) -- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-alpine3.22/Dockerfile) +- [`1.1.0-python3.10-alpine3.22`, `1.1-python3.10-alpine3.22`, `1-python3.10-alpine3.22`, `python3.10-alpine3.22`, `1.1.0-python3.10-alpine`, `1.1-python3.10-alpine`, `1-python3.10-alpine`, `python3.10-alpine`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.10-alpine3.22/Dockerfile) -- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-alpine3.21/Dockerfile) +- [`1.1.0-python3.10-alpine3.21`, `1.1-python3.10-alpine3.21`, `1-python3.10-alpine3.21`, `python3.10-alpine3.21`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.10-alpine3.21/Dockerfile) -- [`1.1.0-python3.9-trixie`, `1.1-python3.9-trixie`, `1-python3.9-trixie`, `python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-trixie/Dockerfile) +- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-trixie/Dockerfile) -- [`1.1.0-python3.9-bookworm`, `1.1-python3.9-bookworm`, `1-python3.9-bookworm`, `python3.9-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-bookworm/Dockerfile) +- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-bookworm/Dockerfile) -- [`1.1.0-python3.9-alpine3.22`, `1.1-python3.9-alpine3.22`, `1-python3.9-alpine3.22`, `python3.9-alpine3.22`, `1.1.0-python3.9-alpine`, `1.1-python3.9-alpine`, `1-python3.9-alpine`, `python3.9-alpine`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-alpine3.22/Dockerfile) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) -- [`1.1.0-python3.9-alpine3.21`, `1.1-python3.9-alpine3.21`, `1-python3.9-alpine3.21`, `python3.9-alpine3.21`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-alpine3.21/Dockerfile) - -- [`1.1.0-pypy3.11-trixie`, `1.1-pypy3.11-trixie`, `1-pypy3.11-trixie`, `pypy3.11-trixie`, `1.1.0-pypy-trixie`, `1.1-pypy-trixie`, `1-pypy-trixie`, `pypy-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-trixie/Dockerfile) - -- [`1.1.0-pypy3.11-bookworm`, `1.1-pypy3.11-bookworm`, `1-pypy3.11-bookworm`, `pypy3.11-bookworm`, `1.1.0-pypy-bookworm`, `1.1-pypy-bookworm`, `1-pypy-bookworm`, `pypy-bookworm`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-bookworm/Dockerfile) - -- [`1.1.0-pypy3.11-windowsservercore-ltsc2025`, `1.1-pypy3.11-windowsservercore-ltsc2025`, `1-pypy3.11-windowsservercore-ltsc2025`, `pypy3.11-windowsservercore-ltsc2025`, `1.1.0-pypy-windowsservercore-ltsc2025`, `1.1-pypy-windowsservercore-ltsc2025`, `1-pypy-windowsservercore-ltsc2025`, `pypy-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) - -- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) +- [`1.1.0-pypy3.11-windowsservercore-ltsc2022`, `1.1-pypy3.11-windowsservercore-ltsc2022`, `1-pypy3.11-windowsservercore-ltsc2022`, `pypy3.11-windowsservercore-ltsc2022`, `1.1.0-pypy-windowsservercore-ltsc2022`, `1.1-pypy-windowsservercore-ltsc2022`, `1-pypy-windowsservercore-ltsc2022`, `pypy-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) ## Shared Tags - `1.1.0-python3.14`, `1.1-python3.14`, `1-python3.14`, `python3.14`, `1.1.0`, `1.1`, `1`, `latest`: - - [`1.1.0-python3.14-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-trixie/Dockerfile) - - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-python3.14-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-trixie/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.14-windowsservercore`, `1.1-python3.14-windowsservercore`, `1-python3.14-windowsservercore`, `python3.14-windowsservercore`, `1.1.0-windowsservercore`, `1.1-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.14-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.14-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.13`, `1.1-python3.13`, `1-python3.13`, `python3.13`: - - [`1.1.0-python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-trixie/Dockerfile) - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-python3.13-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-trixie/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.13-windowsservercore`, `1.1-python3.13-windowsservercore`, `1-python3.13-windowsservercore`, `python3.13-windowsservercore`: - - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-python3.13-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.13-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-python3.12`, `1.1-python3.12`, `1-python3.12`, `python3.12`: - - [`1.1.0-python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.12-trixie/Dockerfile) + - [`1.1.0-python3.12-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.12-trixie/Dockerfile) - `1.1.0-python3.11`, `1.1-python3.11`, `1-python3.11`, `python3.11`: - - [`1.1.0-python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.11-trixie/Dockerfile) + - [`1.1.0-python3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.11-trixie/Dockerfile) - `1.1.0-python3.10`, `1.1-python3.10`, `1-python3.10`, `python3.10`: - - [`1.1.0-python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.10-trixie/Dockerfile) - -- `1.1.0-python3.9`, `1.1-python3.9`, `1-python3.9`, `python3.9`: - - - [`1.1.0-python3.9-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/python3.9-trixie/Dockerfile) + - [`1.1.0-python3.10-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/python3.10-trixie/Dockerfile) - `1.1.0-pypy3.11`, `1.1-pypy3.11`, `1-pypy3.11`, `pypy3.11`, `1.1.0-pypy`, `1.1-pypy`, `1-pypy`, `pypy`: - - [`1.1.0-pypy3.11-trixie`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-trixie/Dockerfile) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-pypy3.11-trixie`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-trixie/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) - `1.1.0-pypy3.11-windowsservercore`, `1.1-pypy3.11-windowsservercore`, `1-pypy3.11-windowsservercore`, `pypy3.11-windowsservercore`: - - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) - - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/d0d26a7ca41e5b168d3af6b6a578ddb81b84a8df/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2025`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2025/Dockerfile) + - [`1.1.0-pypy3.11-windowsservercore-ltsc2022`](https://github.com/hylang/docker-hylang/blob/fbe7fe82f03ec30b2aab666af623405f45357626/latest/pypy3.11-windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) @@ -149,7 +137,7 @@ WARNING: [https://github.com/hylang/hy/issues](https://github.com/hylang/hy/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/hylang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hylang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hylang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hylang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hylang/), [`i386`](https://hub.docker.com/r/i386/hylang/), [`mips64le`](https://hub.docker.com/r/mips64le/hylang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hylang/), [`riscv64`](https://hub.docker.com/r/riscv64/hylang/), [`s390x`](https://hub.docker.com/r/s390x/hylang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hylang/) + [`amd64`](https://hub.docker.com/r/amd64/hylang/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hylang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/hylang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hylang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hylang/), [`i386`](https://hub.docker.com/r/i386/hylang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hylang/), [`riscv64`](https://hub.docker.com/r/riscv64/hylang/), [`s390x`](https://hub.docker.com/r/s390x/hylang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hylang/) - **Published image artifact details**: [repo-info repo's `repos/hylang/` directory](https://github.com/docker-library/repo-info/blob/master/repos/hylang) ([history](https://github.com/docker-library/repo-info/commits/master/repos/hylang)) From 2ad00312ad06199132c7f4ad5c4b5b3b44888a00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Nov 2025 13:10:27 -0800 Subject: [PATCH 2660/2686] Run update.sh --- oraclelinux/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 119ac5d40698..c7874536e54e 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/5c7b7cb78b5ab05da7d1f85bb9fff297de5cf54d/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7-slim-fips/Dockerfile) # Quick reference (cont.) From 64b128f59c1dd8fa75cc4c3547a4498e8aa4d98e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Nov 2025 15:11:25 -0800 Subject: [PATCH 2661/2686] Run update.sh --- ghost/README.md | 12 +++++++----- openjdk/README.md | 40 ++++++++++++++++++++-------------------- 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index e7a12c059914..b9fa9dcd054a 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.5.3`, `6.5`, `6`, `latest`](https://github.com/docker-library/ghost/blob/3a0fff73dd94321a446873efbb465b58893d4241/6/debian/Dockerfile) +- [`6.6.0-bookworm`, `6.6.0`, `6.6-bookworm`, `6.6`, `6-bookworm`, `6`, `bookworm`, `latest`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/6/bookworm/Dockerfile) -- [`6.5.3-alpine`, `6.5-alpine`, `6-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/3a0fff73dd94321a446873efbb465b58893d4241/6/alpine/Dockerfile) +- [`6.6.0-alpine3.22`, `6.6.0-alpine`, `6.6-alpine3.22`, `6.6-alpine`, `6-alpine3.22`, `6-alpine`, `alpine3.22`, `alpine`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/6/alpine3.22/Dockerfile) -- [`5.130.5`, `5.130`, `5`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/debian/Dockerfile) +- [`5.130.5-bookworm`, `5.130.5`, `5.130-bookworm`, `5.130`, `5-bookworm`, `5`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/5/bookworm/Dockerfile) -- [`5.130.5-alpine`, `5.130-alpine`, `5-alpine`](https://github.com/docker-library/ghost/blob/fdba3d80f50da610007165f5fe46f9b8af69764b/5/alpine/Dockerfile) +- [`5.130.5-alpine3.22`, `5.130.5-alpine`, `5.130-alpine3.22`, `5.130-alpine`, `5-alpine3.22`, `5-alpine`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/5/alpine3.22/Dockerfile) # Quick reference (cont.) @@ -38,7 +38,7 @@ WARNING: [https://github.com/docker-library/ghost/issues](https://github.com/docker-library/ghost/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - [`amd64`](https://hub.docker.com/r/amd64/ghost/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ghost/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ghost/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ghost/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ghost/), [`s390x`](https://hub.docker.com/r/s390x/ghost/) + [`amd64`](https://hub.docker.com/r/amd64/ghost/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ghost/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ghost/), [`s390x`](https://hub.docker.com/r/s390x/ghost/) - **Published image artifact details**: [repo-info repo's `repos/ghost/` directory](https://github.com/docker-library/repo-info/blob/master/repos/ghost) ([history](https://github.com/docker-library/repo-info/commits/master/repos/ghost)) @@ -191,6 +191,8 @@ The `ghost` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like bookworm in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. + ## `ghost:-alpine` This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/openjdk/README.md b/openjdk/README.md index d0c808b5998c..18b981866f4b 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-22-jdk-oraclelinux9`, `26-ea-22-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-jdk-oraclelinux9`, `26-oraclelinux9`, `26-ea-22-jdk-oracle`, `26-ea-22-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`, `26-jdk-oracle`, `26-oracle`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux9/Dockerfile) +- [`26-ea-22-jdk-oraclelinux9`, `26-ea-22-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-ea-22-jdk-oracle`, `26-ea-22-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux9/Dockerfile) -- [`26-ea-22-jdk-oraclelinux8`, `26-ea-22-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`, `26-jdk-oraclelinux8`, `26-oraclelinux8`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux8/Dockerfile) +- [`26-ea-22-jdk-oraclelinux8`, `26-ea-22-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux8/Dockerfile) -- [`26-ea-22-jdk-trixie`, `26-ea-22-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`, `26-jdk-trixie`, `26-trixie`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/trixie/Dockerfile) +- [`26-ea-22-jdk-trixie`, `26-ea-22-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/trixie/Dockerfile) -- [`26-ea-22-jdk-slim-trixie`, `26-ea-22-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-jdk-slim-trixie`, `26-slim-trixie`, `26-ea-22-jdk-slim`, `26-ea-22-slim`, `26-ea-jdk-slim`, `26-ea-slim`, `26-jdk-slim`, `26-slim`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/slim-trixie/Dockerfile) +- [`26-ea-22-jdk-slim-trixie`, `26-ea-22-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-ea-22-jdk-slim`, `26-ea-22-slim`, `26-ea-jdk-slim`, `26-ea-slim`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/slim-trixie/Dockerfile) -- [`26-ea-22-jdk-bookworm`, `26-ea-22-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`, `26-jdk-bookworm`, `26-bookworm`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/bookworm/Dockerfile) +- [`26-ea-22-jdk-bookworm`, `26-ea-22-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/bookworm/Dockerfile) -- [`26-ea-22-jdk-slim-bookworm`, `26-ea-22-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`, `26-jdk-slim-bookworm`, `26-slim-bookworm`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/slim-bookworm/Dockerfile) +- [`26-ea-22-jdk-slim-bookworm`, `26-ea-22-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/slim-bookworm/Dockerfile) -- [`26-ea-22-jdk-windowsservercore-ltsc2025`, `26-ea-22-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`, `26-jdk-windowsservercore-ltsc2025`, `26-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-22-jdk-windowsservercore-ltsc2025`, `26-ea-22-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-22-jdk-windowsservercore-ltsc2022`, `26-ea-22-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`, `26-jdk-windowsservercore-ltsc2022`, `26-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-22-jdk-windowsservercore-ltsc2022`, `26-ea-22-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-22-jdk-nanoserver-ltsc2025`, `26-ea-22-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`, `26-jdk-nanoserver-ltsc2025`, `26-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-22-jdk-nanoserver-ltsc2025`, `26-ea-22-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-22-jdk-nanoserver-ltsc2022`, `26-ea-22-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`, `26-jdk-nanoserver-ltsc2022`, `26-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-22-jdk-nanoserver-ltsc2022`, `26-ea-22-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-22-jdk`, `26-ea-22`, `26-ea-jdk`, `26-ea`, `26-jdk`, `26`: +- `26-ea-22-jdk`, `26-ea-22`, `26-ea-jdk`, `26-ea`: - - [`26-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/oraclelinux9/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux9/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-22-jdk-windowsservercore`, `26-ea-22-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`, `26-jdk-windowsservercore`, `26-windowsservercore`: +- `26-ea-22-jdk-windowsservercore`, `26-ea-22-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`: - - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-22-jdk-nanoserver`, `26-ea-22-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`, `26-jdk-nanoserver`, `26-nanoserver`: +- `26-ea-22-jdk-nanoserver`, `26-ea-22-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`: - - [`26-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/50e86803b7cb8ddb7ca4510da7099d5de14f3fa2/26/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) From 526c1b377eed2e2688af7aef02870045892c8949 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 3 Nov 2025 16:11:35 -0800 Subject: [PATCH 2662/2686] Run update.sh --- debian/README.md | 56 ++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/debian/README.md b/debian/README.md index be74f2fe6c09..39e15a7f60b9 100644 --- a/debian/README.md +++ b/debian/README.md @@ -24,61 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`bookworm`, `bookworm-20251020`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/oci/index.json) +- [`bookworm`, `bookworm-20251103`, `12.12`, `12`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/bookworm/oci/index.json) -- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/backports/Dockerfile) +- [`bookworm-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/bookworm/backports/Dockerfile) -- [`bookworm-slim`, `bookworm-20251020-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bookworm/slim/oci/index.json) +- [`bookworm-slim`, `bookworm-20251103-slim`, `12.12-slim`, `12-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/bookworm/slim/oci/index.json) -- [`bullseye`, `bullseye-20251020`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bullseye/oci/index.json) +- [`bullseye`, `bullseye-20251103`, `11.11`, `11`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/bullseye/oci/index.json) -- [`bullseye-slim`, `bullseye-20251020-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/bullseye/slim/oci/index.json) +- [`bullseye-slim`, `bullseye-20251103-slim`, `11.11-slim`, `11-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/bullseye/slim/oci/index.json) -- [`experimental`, `experimental-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/experimental/Dockerfile) +- [`experimental`, `experimental-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/experimental/Dockerfile) -- [`forky`, `forky-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/oci/index.json) +- [`forky`, `forky-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/forky/oci/index.json) -- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/backports/Dockerfile) +- [`forky-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/forky/backports/Dockerfile) -- [`forky-slim`, `forky-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/forky/slim/oci/index.json) +- [`forky-slim`, `forky-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/forky/slim/oci/index.json) -- [`oldoldstable`, `oldoldstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldoldstable/oci/index.json) +- [`oldoldstable`, `oldoldstable-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/oldoldstable/oci/index.json) -- [`oldoldstable-slim`, `oldoldstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldoldstable/slim/oci/index.json) +- [`oldoldstable-slim`, `oldoldstable-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/oldoldstable/slim/oci/index.json) -- [`oldstable`, `oldstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/oci/index.json) +- [`oldstable`, `oldstable-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/oldstable/oci/index.json) -- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/backports/Dockerfile) +- [`oldstable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/oldstable/backports/Dockerfile) -- [`oldstable-slim`, `oldstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/oldstable/slim/oci/index.json) +- [`oldstable-slim`, `oldstable-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/oldstable/slim/oci/index.json) -- [`rc-buggy`, `rc-buggy-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/rc-buggy/Dockerfile) +- [`rc-buggy`, `rc-buggy-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/rc-buggy/Dockerfile) -- [`sid`, `sid-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/sid/oci/index.json) +- [`sid`, `sid-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/sid/oci/index.json) -- [`sid-slim`, `sid-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/sid/slim/oci/index.json) +- [`sid-slim`, `sid-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/sid/slim/oci/index.json) -- [`stable`, `stable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/oci/index.json) +- [`stable`, `stable-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/stable/oci/index.json) -- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/backports/Dockerfile) +- [`stable-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/stable/backports/Dockerfile) -- [`stable-slim`, `stable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/stable/slim/oci/index.json) +- [`stable-slim`, `stable-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/stable/slim/oci/index.json) -- [`testing`, `testing-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/oci/index.json) +- [`testing`, `testing-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/testing/oci/index.json) -- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/backports/Dockerfile) +- [`testing-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/testing/backports/Dockerfile) -- [`testing-slim`, `testing-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/testing/slim/oci/index.json) +- [`testing-slim`, `testing-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/testing/slim/oci/index.json) -- [`trixie`, `trixie-20251020`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/oci/index.json) +- [`trixie`, `trixie-20251103`, `13.1`, `13`, `latest`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/trixie/oci/index.json) -- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/backports/Dockerfile) +- [`trixie-backports`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/trixie/backports/Dockerfile) -- [`trixie-slim`, `trixie-20251020-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/trixie/slim/oci/index.json) +- [`trixie-slim`, `trixie-20251103-slim`, `13.1-slim`, `13-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/trixie/slim/oci/index.json) -- [`unstable`, `unstable-20251020`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/unstable/oci/index.json) +- [`unstable`, `unstable-20251103`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/unstable/oci/index.json) -- [`unstable-slim`, `unstable-20251020-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/3b7829b548d4836ed5eb59d065d5f47d50a27edb/unstable/slim/oci/index.json) +- [`unstable-slim`, `unstable-20251103-slim`](https://github.com/debuerreotype/docker-debian-artifacts/blob/06a7b511b90f4cc6c8b41d2f01a57702556fe63e/unstable/slim/oci/index.json) # Quick reference (cont.) From 8828858eb2ed5d5216357b0ff3aae97c9400bf8b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Nov 2025 11:11:01 -0800 Subject: [PATCH 2663/2686] Run update.sh --- ibm-semeru-runtimes/README.md | 80 ++++++++++++++--------------------- 1 file changed, 32 insertions(+), 48 deletions(-) diff --git a/ibm-semeru-runtimes/README.md b/ibm-semeru-runtimes/README.md index 83412c8e3d34..35c09526a01a 100644 --- a/ibm-semeru-runtimes/README.md +++ b/ibm-semeru-runtimes/README.md @@ -28,103 +28,87 @@ WARNING: ## Simple Tags -- [`open-8u472-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u472-b08-jdk-jammy`, `open-8-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u472-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u472-b08-jdk-noble`, `open-8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-8u472-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-8u472-b08-jre-jammy`, `open-8-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-8u472-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-8u472-b08-jre-noble`, `open-8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.29_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jdk-jammy`, `open-11-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.29_7-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jdk-noble`, `open-11-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-11.0.29_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jre-jammy`, `open-11-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-11.0.29_7-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-11.0.29_7-jre-noble`, `open-11-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.17_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jdk-jammy`, `open-17-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.17_9-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jdk-noble`, `open-17-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-17.0.17_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jre-jammy`, `open-17-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-17.0.17_9-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-17.0.17_9-jre-noble`, `open-17-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.9_10-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jdk-jammy`, `open-21-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.9_10-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jdk-noble`, `open-21-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-21.0.9_10-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jre-jammy`, `open-21-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-21.0.9_10-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-21.0.9_10-jre-noble`, `open-21-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-jammy`, `open-24-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-25.0.1_8-jdk-jammy`, `open-25-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jdk/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jdk-noble`, `open-24-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-25.0.1_8-jdk-noble`, `open-25-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-jammy`, `open-24-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/jammy/Dockerfile.open.releases.full) +- [`open-jdk-25.0.1_8-jre-jammy`, `open-25-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jre/ubuntu/jammy/Dockerfile.open.releases.full) -- [`open-jdk-24.0.2_12-jre-noble`, `open-24-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-jdk-25.0.0_36-jdk-jammy`, `open-25-jdk-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-jdk-25.0.0_36-jdk-noble`, `open-25-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- [`open-jdk-25.0.0_36-jre-jammy`, `open-25-jre-jammy`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/jammy/Dockerfile.open.releases.full) - -- [`open-jdk-25.0.0_36-jre-noble`, `open-25-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/noble/Dockerfile.open.releases.full) +- [`open-jdk-25.0.1_8-jre-noble`, `open-25-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jre/ubuntu/noble/Dockerfile.open.releases.full) ## Shared Tags - `open-8u472-b08-jdk`, `open-8-jdk`: - - [`open-8u472-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u472-b08-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-8u472-b08-jre`, `open-8-jre`: - - [`open-8u472-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/8/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-8u472-b08-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/8/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.29_7-jdk`, `open-11-jdk`: - - [`open-11.0.29_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.29_7-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-11.0.29_7-jre`, `open-11-jre`: - - [`open-11.0.29_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/11/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-11.0.29_7-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/11/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.17_9-jdk`, `open-17-jdk`: - - [`open-17.0.17_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.17_9-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-17.0.17_9-jre`, `open-17-jre`: - - [`open-17.0.17_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/17/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-17.0.17_9-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/17/jre/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.9_10-jdk`, `open-21-jdk`: - - [`open-21.0.9_10-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.9_10-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jdk/ubuntu/noble/Dockerfile.open.releases.full) - `open-21.0.9_10-jre`, `open-21-jre`: - - [`open-21.0.9_10-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/21/jre/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-jdk-24.0.2_12-jdk`, `open-24-jdk`: - - - [`open-jdk-24.0.2_12-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jdk/ubuntu/noble/Dockerfile.open.releases.full) - -- `open-jdk-24.0.2_12-jre`, `open-24-jre`: - - - [`open-jdk-24.0.2_12-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/24/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-21.0.9_10-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/21/jre/ubuntu/noble/Dockerfile.open.releases.full) -- `open-jdk-25.0.0_36-jdk`, `open-25-jdk`: +- `open-jdk-25.0.1_8-jdk`, `open-25-jdk`: - - [`open-jdk-25.0.0_36-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-25.0.1_8-jdk-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jdk/ubuntu/noble/Dockerfile.open.releases.full) -- `open-jdk-25.0.0_36-jre`, `open-25-jre`: +- `open-jdk-25.0.1_8-jre`, `open-25-jre`: - - [`open-jdk-25.0.0_36-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/723e64f39acf29f90b240c1fb50a09bc58bbc8a6/25/jre/ubuntu/noble/Dockerfile.open.releases.full) + - [`open-jdk-25.0.1_8-jre-noble`](https://github.com/ibmruntimes/semeru-containers/blob/b0eeb07aebffd81808ad6cf221f5ad6bdd233881/25/jre/ubuntu/noble/Dockerfile.open.releases.full) # Quick reference (cont.) From d157d391c1bcc8727bec5b529355f5ea2a6f7ab7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Nov 2025 12:11:21 -0800 Subject: [PATCH 2664/2686] Run update.sh --- storm/README.md | 4 ++-- swift/README.md | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/storm/README.md b/storm/README.md index 7913ba9ad31f..d073a39c3150 100644 --- a/storm/README.md +++ b/storm/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.8.2-jre17`, `2.8-jre17`, `2.8.2`, `2.8`, `latest`](https://github.com/apache/storm-docker/blob/8f90c62992f17324add5537a121c0f60636e8171/2.8.2/Dockerfile) +- [`2.8.3-jre17`, `2.8-jre17`, `2.8.3`, `2.8`, `latest`](https://github.com/apache/storm-docker/blob/78e73fe01431a2b3fe35071fcaaaa1726a0e3736/2.8.3/Dockerfile) -- [`2.8.2-jre21`, `2.8-jre21`](https://github.com/apache/storm-docker/blob/8f90c62992f17324add5537a121c0f60636e8171/2.8.2-jre21/Dockerfile) +- [`2.8.3-jre21`, `2.8-jre21`](https://github.com/apache/storm-docker/blob/78e73fe01431a2b3fe35071fcaaaa1726a0e3736/2.8.3-jre21/Dockerfile) # Quick reference (cont.) diff --git a/swift/README.md b/swift/README.md index a0a89838485d..4bb0ccdd84e5 100644 --- a/swift/README.md +++ b/swift/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.2.0`, `6.2`, `6.2.0-noble`, `6.2-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/24.04/Dockerfile) +- [`6.2.1`, `6.2`, `6.2.1-noble`, `6.2-noble`, `noble`, `latest`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/ubuntu/24.04/Dockerfile) -- [`6.2.0-slim`, `6.2-slim`, `6.2.0-noble-slim`, `6.2-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/24.04/slim/Dockerfile) +- [`6.2.1-slim`, `6.2-slim`, `6.2.1-noble-slim`, `6.2-noble-slim`, `noble-slim`, `slim`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/ubuntu/24.04/slim/Dockerfile) -- [`6.2.0-jammy`, `6.2-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/22.04/Dockerfile) +- [`6.2.1-jammy`, `6.2-jammy`, `jammy`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/ubuntu/22.04/Dockerfile) -- [`6.2.0-jammy-slim`, `6.2-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/ubuntu/22.04/slim/Dockerfile) +- [`6.2.1-jammy-slim`, `6.2-jammy-slim`, `jammy-slim`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/ubuntu/22.04/slim/Dockerfile) -- [`6.2.0-bookworm`, `6.2-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/debian/12/Dockerfile) +- [`6.2.1-bookworm`, `6.2-bookworm`, `bookworm`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/debian/12/Dockerfile) -- [`6.2.0-bookworm-slim`, `6.2-bookworm-slim`, `bookworm-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/debian/12/slim/Dockerfile) +- [`6.2.1-bookworm-slim`, `6.2-bookworm-slim`, `bookworm-slim`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/debian/12/slim/Dockerfile) -- [`6.2.0-amazonlinux2`, `6.2-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/amazonlinux/2/Dockerfile) +- [`6.2.1-amazonlinux2`, `6.2-amazonlinux2`, `amazonlinux2`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/amazonlinux/2/Dockerfile) -- [`6.2.0-amazonlinux2-slim`, `6.2-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/amazonlinux/2/slim/Dockerfile) +- [`6.2.1-amazonlinux2-slim`, `6.2-amazonlinux2-slim`, `amazonlinux2-slim`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/amazonlinux/2/slim/Dockerfile) -- [`6.2.0-rhel-ubi9`, `6.2-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/rhel-ubi/9/Dockerfile) +- [`6.2.1-rhel-ubi9`, `6.2-rhel-ubi9`, `rhel-ubi9`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/rhel-ubi/9/Dockerfile) -- [`6.2.0-rhel-ubi9-slim`, `6.2-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/rhel-ubi/9/slim/Dockerfile) +- [`6.2.1-rhel-ubi9-slim`, `6.2-rhel-ubi9-slim`, `rhel-ubi9-slim`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/rhel-ubi/9/slim/Dockerfile) -- [`6.2.0-windowsservercore-ltsc2022`, `6.2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/a2edace54d7f529917ec0c67a226655da7147586/6.2/windows/LTSC2022/Dockerfile) +- [`6.2.1-windowsservercore-ltsc2022`, `6.2-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/apple/swift-docker/blob/fbd3db5e85aef93ac0dc7adec266bf22b8f4d705/6.2/windows/LTSC2022/Dockerfile) - [`6.1.3`, `6.1`, `6.1.3-noble`, `6.1-noble`](https://github.com/apple/swift-docker/blob/5750fff0ede55c8223a8cb52e4f8da105b8b3d07/6.1/ubuntu/24.04/Dockerfile) From 6ea26af743757c7cc9dedc7f278c7edcb5b17df1 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Nov 2025 14:11:04 -0800 Subject: [PATCH 2665/2686] Run update.sh --- redis/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redis/README.md b/redis/README.md index 0b51f21321ff..b88587a408bc 100644 --- a/redis/README.md +++ b/redis/README.md @@ -24,6 +24,10 @@ WARNING: # Supported tags and respective `Dockerfile` links +- [`8.4-rc1`, `8.4-rc1-bookworm`](https://github.com/redis/docker-library-redis/blob/47386b7d1129abbe0f2ccc745903da1613977c79/debian/Dockerfile) + +- [`8.4-rc1-alpine`, `8.4-rc1-alpine3.22`](https://github.com/redis/docker-library-redis/blob/47386b7d1129abbe0f2ccc745903da1613977c79/alpine/Dockerfile) + - [`8.2.3`, `8.2`, `8`, `8.2.3-bookworm`, `8.2-bookworm`, `8-bookworm`, `latest`, `bookworm`](https://github.com/redis/docker-library-redis/blob/bcbc692165ce2241e194035041c5b5e01d2e1a5f/debian/Dockerfile) - [`8.2.3-alpine`, `8.2-alpine`, `8-alpine`, `8.2.3-alpine3.22`, `8.2-alpine3.22`, `8-alpine3.22`, `alpine`, `alpine3.22`](https://github.com/redis/docker-library-redis/blob/bcbc692165ce2241e194035041c5b5e01d2e1a5f/alpine/Dockerfile) From dd5dbe4c65064ee046251d7512d9281361dff6ad Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Nov 2025 16:10:47 -0800 Subject: [PATCH 2666/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++++++++++++++++++-------------------- haskell/README.md | 20 +++++---- wordpress/README.md | 24 +++++----- 3 files changed, 72 insertions(+), 68 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 75824ad92d2f..54988b882af1 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,101 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u472`, `8u472-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u472-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u472`, `8u472-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u472-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u472-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u472-al2023-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u472-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u472-al2023-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u472-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u472-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u472-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u472-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u472-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.19`, `8u472-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.19/Dockerfile) -- [`8-alpine3.19-jre`, `8u472-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.19-jre`, `8u472-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.19/Dockerfile) -- [`8-alpine3.20`, `8u472-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.20`, `8u472-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.20-jre`, `8u472-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.20-jre`, `8u472-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.21`, `8u472-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.21`, `8u472-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.21-jre`, `8u472-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.21-jre`, `8u472-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.21/Dockerfile) -- [`8-alpine3.22`, `8u472-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u472-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jdk/alpine/3.22/Dockerfile) +- [`8-alpine3.22`, `8u472-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u472-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.22/Dockerfile) -- [`8-alpine3.22-jre`, `8u472-alpine3.22-jre`, `8-alpine-jre`, `8u472-alpine-jre`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/8/jre/alpine/3.22/Dockerfile) +- [`8-alpine3.22-jre`, `8u472-alpine3.22-jre`, `8-alpine-jre`, `8u472-alpine-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.22/Dockerfile) -- [`11`, `11.0.29`, `11.0.29-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.29-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2-generic/Dockerfile) +- [`11`, `11.0.29`, `11.0.29-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.29-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2-generic/Dockerfile) -- [`11-al2023`, `11.0.29-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2023/Dockerfile) +- [`11-al2023`, `11.0.29-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.29-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headless/al2023/Dockerfile) +- [`11-al2023-headless`, `11.0.29-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headless/al2023/Dockerfile) -- [`11-al2023-headful`, `11.0.29-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headful/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.29-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headful/al2023/Dockerfile) -- [`11-al2-native-headless`, `11.0.29-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/headless/al2/Dockerfile) +- [`11-al2-native-headless`, `11.0.29-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headless/al2/Dockerfile) -- [`11-al2-native-jdk`, `11.0.29-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/al2/Dockerfile) +- [`11-al2-native-jdk`, `11.0.29-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2/Dockerfile) -- [`11-alpine3.19`, `11.0.29-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.19`, `11.0.29-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.19/Dockerfile) -- [`11-alpine3.20`, `11.0.29-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.20/Dockerfile) +- [`11-alpine3.20`, `11.0.29-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.20/Dockerfile) -- [`11-alpine3.21`, `11.0.29-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.21/Dockerfile) +- [`11-alpine3.21`, `11.0.29-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.21/Dockerfile) -- [`11-alpine3.22`, `11.0.29-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.29-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/11/jdk/alpine/3.22/Dockerfile) +- [`11-alpine3.22`, `11.0.29-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.29-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.22/Dockerfile) -- [`17`, `17.0.17`, `17.0.17-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.17-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2-generic/Dockerfile) +- [`17`, `17.0.17`, `17.0.17-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.17-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2-generic/Dockerfile) -- [`17-al2023`, `17.0.17-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2023/Dockerfile) +- [`17-al2023`, `17.0.17-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2023/Dockerfile) -- [`17-al2023-headless`, `17.0.17-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headless/al2023/Dockerfile) +- [`17-al2023-headless`, `17.0.17-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headless/al2023/Dockerfile) -- [`17-al2023-headful`, `17.0.17-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headful/al2023/Dockerfile) +- [`17-al2023-headful`, `17.0.17-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headful/al2023/Dockerfile) -- [`17-al2-native-headless`, `17.0.17-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headless/al2/Dockerfile) +- [`17-al2-native-headless`, `17.0.17-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headless/al2/Dockerfile) -- [`17-al2-native-headful`, `17.0.17-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/headful/al2/Dockerfile) +- [`17-al2-native-headful`, `17.0.17-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headful/al2/Dockerfile) -- [`17-al2-native-jdk`, `17.0.17-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/al2/Dockerfile) +- [`17-al2-native-jdk`, `17.0.17-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2/Dockerfile) -- [`17-alpine3.19`, `17.0.17-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.19/Dockerfile) +- [`17-alpine3.19`, `17.0.17-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.19/Dockerfile) -- [`17-alpine3.20`, `17.0.17-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.20/Dockerfile) +- [`17-alpine3.20`, `17.0.17-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.20/Dockerfile) -- [`17-alpine3.21`, `17.0.17-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.21/Dockerfile) +- [`17-alpine3.21`, `17.0.17-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.21/Dockerfile) -- [`17-alpine3.22`, `17.0.17-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.17-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/17/jdk/alpine/3.22/Dockerfile) +- [`17-alpine3.22`, `17.0.17-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.17-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.22/Dockerfile) -- [`21`, `21.0.9`, `21.0.9-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.9-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/al2-generic/Dockerfile) +- [`21`, `21.0.9`, `21.0.9-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.9-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/al2-generic/Dockerfile) -- [`21-al2023`, `21.0.9-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/al2023/Dockerfile) +- [`21-al2023`, `21.0.9-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/al2023/Dockerfile) -- [`21-al2023-headless`, `21.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/headless/al2023/Dockerfile) +- [`21-al2023-headless`, `21.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/headless/al2023/Dockerfile) -- [`21-al2023-headful`, `21.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/headful/al2023/Dockerfile) +- [`21-al2023-headful`, `21.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/headful/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.9-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.19/Dockerfile) +- [`21-alpine3.19`, `21.0.9-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.19/Dockerfile) -- [`21-alpine3.20`, `21.0.9-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.20/Dockerfile) +- [`21-alpine3.20`, `21.0.9-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.21`, `21.0.9-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.21/Dockerfile) +- [`21-alpine3.21`, `21.0.9-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.21/Dockerfile) -- [`21-alpine3.22`, `21.0.9-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.9-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/21/jdk/alpine/3.22/Dockerfile) +- [`21-alpine3.22`, `21.0.9-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.9-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.22/Dockerfile) -- [`25-al2023`, `25.0.1-al2023`, `25-al2023-jdk`, `25`, `25-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/al2023/Dockerfile) +- [`25-al2023`, `25.0.1-al2023`, `25-al2023-jdk`, `25`, `25-jdk`, `25.0.1`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/al2023/Dockerfile) -- [`25-al2023-headless`, `25.0.1-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/headless/al2023/Dockerfile) +- [`25-al2023-headless`, `25.0.1-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/headless/al2023/Dockerfile) -- [`25-al2023-headful`, `25.0.1-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/headful/al2023/Dockerfile) +- [`25-al2023-headful`, `25.0.1-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/headful/al2023/Dockerfile) -- [`25-alpine3.19`, `25.0.1-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.19/Dockerfile) +- [`25-alpine3.19`, `25.0.1-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.19/Dockerfile) -- [`25-alpine3.20`, `25.0.1-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.20/Dockerfile) +- [`25-alpine3.20`, `25.0.1-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.20/Dockerfile) -- [`25-alpine3.21`, `25.0.1-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.21/Dockerfile) +- [`25-alpine3.21`, `25.0.1-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.21/Dockerfile) -- [`25-alpine3.22`, `25.0.1-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.1-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/da9c78f521c6ae2e0d63eaf6827a9d27168ff6d8/25/jdk/alpine/3.22/Dockerfile) +- [`25-alpine3.22`, `25.0.1-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.1-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.22/Dockerfile) # Quick reference (cont.) diff --git a/haskell/README.md b/haskell/README.md index c0f740880ed7..81ad3391e24f 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -24,21 +24,25 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.12/bookworm/Dockerfile) +- [`9.12.2-bookworm`, `9.12-bookworm`, `9-bookworm`, `bookworm`, `9.12.2`, `9.12`, `9`, `latest`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.12/bookworm/Dockerfile) -- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.12/slim-bookworm/Dockerfile) +- [`9.12.2-slim-bookworm`, `9.12-slim-bookworm`, `9-slim-bookworm`, `slim-bookworm`, `9-slim`, `slim`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.12/slim-bookworm/Dockerfile) -- [`9.10.2-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.2`, `9.10`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.10/bullseye/Dockerfile) +- [`9.10.3-bookworm`, `9.10-bookworm`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.10/bookworm/Dockerfile) -- [`9.10.2-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.10/slim-bullseye/Dockerfile) +- [`9.10.3-slim-bookworm`, `9.10-slim-bookworm`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.10/slim-bookworm/Dockerfile) -- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.8/bullseye/Dockerfile) +- [`9.10.3-bullseye`, `9.10-bullseye`, `9-bullseye`, `bullseye`, `9.10.3`, `9.10`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.10/bullseye/Dockerfile) -- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.8/slim-bullseye/Dockerfile) +- [`9.10.3-slim-bullseye`, `9.10-slim-bullseye`, `9-slim-bullseye`, `slim-bullseye`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.10/slim-bullseye/Dockerfile) -- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.6/bullseye/Dockerfile) +- [`9.8.4-bullseye`, `9.8-bullseye`, `9.8.4`, `9.8`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.8/bullseye/Dockerfile) -- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/c34f97738d08a138ef07878a4a1402b10670f87b/9.6/slim-bullseye/Dockerfile) +- [`9.8.4-slim-bullseye`, `9.8-slim-bullseye`, `9.8.4-slim`, `9.8-slim`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.8/slim-bullseye/Dockerfile) + +- [`9.6.7-bullseye`, `9.6-bullseye`, `9.6.7`, `9.6`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.6/bullseye/Dockerfile) + +- [`9.6.7-slim-bullseye`, `9.6-slim-bullseye`, `9.6.7-slim`, `9.6-slim`](https://github.com/haskell/docker-haskell/blob/d478ceb8ff33f6208db87008e48cd084fd9747a1/9.6/slim-bullseye/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 61ebf44891fc..5653b775031c 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) -- [`beta-6.9-beta2-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta2-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/apache/Dockerfile) +- [`beta-6.9-beta3-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta3-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/apache/Dockerfile) -- [`beta-6.9-beta2-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/fpm/Dockerfile) +- [`beta-6.9-beta3-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/fpm/Dockerfile) -- [`beta-6.9-beta2-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.9-beta3-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.9-beta2-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta2-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/apache/Dockerfile) +- [`beta-6.9-beta3-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta3-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/apache/Dockerfile) -- [`beta-6.9-beta2-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/fpm/Dockerfile) +- [`beta-6.9-beta3-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/fpm/Dockerfile) -- [`beta-6.9-beta2-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.9-beta3-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.9-beta2-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta2`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta2-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta2-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/apache/Dockerfile) +- [`beta-6.9-beta3-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta3`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta3-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta3-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/apache/Dockerfile) -- [`beta-6.9-beta2-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta2-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/fpm/Dockerfile) +- [`beta-6.9-beta3-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta3-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/fpm/Dockerfile) -- [`beta-6.9-beta2-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta2-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.9-beta3-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta3-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.9-beta2-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta2-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/apache/Dockerfile) +- [`beta-6.9-beta3-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta3-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/apache/Dockerfile) -- [`beta-6.9-beta2-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/fpm/Dockerfile) +- [`beta-6.9-beta3-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/fpm/Dockerfile) -- [`beta-6.9-beta2-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/756e22f12412733b2b7e7b3cfa91dc1bae3c086f/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.9-beta3-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 4006b9ef16379efd55be2655abe69c972db5b4ec Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 4 Nov 2025 17:11:09 -0800 Subject: [PATCH 2667/2686] Run update.sh --- couchbase/README.md | 2 ++ open-liberty/README.md | 66 ++++++++++++++++++++++--------------- websphere-liberty/README.md | 60 +++++++++++++++++++-------------- 3 files changed, 77 insertions(+), 51 deletions(-) diff --git a/couchbase/README.md b/couchbase/README.md index 1f78fca05dfb..1cfc787c014b 100644 --- a/couchbase/README.md +++ b/couchbase/README.md @@ -28,6 +28,8 @@ WARNING: - [`community`, `community-8.0.0`](https://github.com/couchbase/docker/blob/e2600d59a2b84984adeccbe1c0f8b5d926d4b529/community/couchbase-server/8.0.0/Dockerfile) +- [`7.6.8`, `enterprise-7.6.8`](https://github.com/couchbase/docker/blob/79e990af7621fa397c0dc12fd08bad6db4f49476/enterprise/couchbase-server/7.6.8/Dockerfile) + - [`7.6.7`, `enterprise-7.6.7`](https://github.com/couchbase/docker/blob/a322cc7110124b2581339f52d88bab80fb50016d/enterprise/couchbase-server/7.6.7/Dockerfile) - [`7.6.6`, `enterprise-7.6.6`](https://github.com/couchbase/docker/blob/9ce3cbc835dd4e072943ac7878aa7f87d6b95178/enterprise/couchbase-server/7.6.6/Dockerfile) diff --git a/open-liberty/README.md b/open-liberty/README.md index 7fc1f944b0bb..b9ebd938be6e 100644 --- a/open-liberty/README.md +++ b/open-liberty/README.md @@ -24,59 +24,71 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk8) +- [`beta`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/beta/Dockerfile.ubuntu.openjdk8) -- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk11) +- [`beta-java11`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/beta/Dockerfile.ubuntu.openjdk11) -- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/beta/Dockerfile.ubuntu.openjdk17) +- [`beta-java17`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/beta/Dockerfile.ubuntu.openjdk17) -- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`kernel-slim`, `kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk8) +- [`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/full/Dockerfile.ubuntu.openjdk8) -- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.3-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.6-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.10-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.10-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.10-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/kernel-slim/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/kernel-slim/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.10-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk8) +- [`25.0.0.9-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk8) -- [`25.0.0.10-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.10-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/95b408ba6272ada9708d6bf6b1ddffc5dbbbdb7d/releases/25.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.11-kernel-slim-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.11-kernel-slim-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.11-kernel-slim-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/kernel-slim/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.11-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/full/Dockerfile.ubuntu.openjdk8) + +- [`25.0.0.11-full-java11-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.11-full-java17-openj9`](https://github.com/OpenLiberty/ci.docker/blob/7e898c31468055f564c290761b72794c50e57c74/releases/25.0.0.11/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) diff --git a/websphere-liberty/README.md b/websphere-liberty/README.md index a9216bb5b78d..bedba5aef66d 100644 --- a/websphere-liberty/README.md +++ b/websphere-liberty/README.md @@ -24,53 +24,65 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) +- [`kernel`, `kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8) -- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) +- [`kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/kernel/Dockerfile.ubuntu.openjdk11) -- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) +- [`kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/kernel/Dockerfile.ubuntu.openjdk17) -- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.ibmjava8) +- [`full`, `latest`, `full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/full/Dockerfile.ubuntu.ibmjava8) -- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.openjdk11) +- [`full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/full/Dockerfile.ubuntu.openjdk11) -- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/latest/full/Dockerfile.ubuntu.openjdk17) +- [`full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/latest/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.3-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.3-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.3-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.3/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.6-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.6-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.6-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.6/full/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.10-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.10-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.10-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/kernel/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/kernel/Dockerfile.ubuntu.openjdk17) -- [`25.0.0.10-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.ibmjava8) +- [`25.0.0.9-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/full/Dockerfile.ubuntu.ibmjava8) -- [`25.0.0.10-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.openjdk11) +- [`25.0.0.9-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk11) -- [`25.0.0.10-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/2cec7543350cb079a15d3a9cc09f4025a8512add/ga/25.0.0.10/full/Dockerfile.ubuntu.openjdk17) +- [`25.0.0.9-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.9/full/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.11-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/kernel/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.11-kernel-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/kernel/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.11-kernel-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/kernel/Dockerfile.ubuntu.openjdk17) + +- [`25.0.0.11-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/full/Dockerfile.ubuntu.ibmjava8) + +- [`25.0.0.11-full-java11-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/full/Dockerfile.ubuntu.openjdk11) + +- [`25.0.0.11-full-java17-openj9`](https://github.com/WASdev/ci.docker/blob/f4ab95228698fe71240dea3c8d91a4e46372fc0c/ga/25.0.0.11/full/Dockerfile.ubuntu.openjdk17) # Quick reference (cont.) From 799a4160e750b31bdfd5dbd1238e89cbce420d84 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 09:10:46 -0800 Subject: [PATCH 2668/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/README.md b/docker/README.md index da72fed4a4e6..1227c4a4d63b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -38,15 +38,15 @@ WARNING: - [`29.0.0-rc.2-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- [`28.5.1-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.1-cli-alpine3.22`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/cli/Dockerfile) +- [`28.5.2-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/cli/Dockerfile) -- [`28.5.1-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.1-dind-alpine3.22`, `28.5.1`, `28.5`, `28`, `latest`, `28.5.1-alpine3.22`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind/Dockerfile) +- [`28.5.2-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.2-dind-alpine3.22`, `28.5.2`, `28.5`, `28`, `latest`, `28.5.2-alpine3.22`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/dind/Dockerfile) -- [`28.5.1-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/b510c2bbe64b878dee6480992ab5d8cd9c02027d/28/dind-rootless/Dockerfile) +- [`28.5.2-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/dind-rootless/Dockerfile) -- [`28.5.1-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2025/Dockerfile) +- [`28.5.2-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2025/Dockerfile) -- [`28.5.1-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`28.5.2-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags @@ -55,10 +55,10 @@ WARNING: - [`29.0.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) - [`29.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) -- `28.5.1-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `28.5.2-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: - - [`28.5.1-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.5.1-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/1b231c4016afe59156bb992c5baab0f05d49dc77/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`28.5.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2025/Dockerfile) + - [`28.5.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) From 4d3228849c7a7b527a2b8dfb64bb3984e4c25e00 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 11:10:49 -0800 Subject: [PATCH 2669/2686] Run update.sh --- dart/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/README.md b/dart/README.md index ac7cbe5514f6..c4127414bdfc 100644 --- a/dart/README.md +++ b/dart/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/6010d02510f9e3aa92fcdbdebe400cb25f2e6f2e/stable/trixie/Dockerfile) +- [`3.9.4-sdk`, `3.9-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.9.4`, `3.9`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/cd75c0dd3da3a1f57064ae7b7f53af98cc5ec72a/stable/trixie/Dockerfile) -- [`3.10.0-290.4.beta-sdk`, `beta-sdk`, `3.10.0-290.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/6010d02510f9e3aa92fcdbdebe400cb25f2e6f2e/beta/trixie/Dockerfile) +- [`3.11.0-93.1.beta-sdk`, `beta-sdk`, `3.11.0-93.1.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/cd75c0dd3da3a1f57064ae7b7f53af98cc5ec72a/beta/trixie/Dockerfile) # Quick reference (cont.) From 84dbe5ab63a8129641214f5cc147f0d924e369ed Mon Sep 17 00:00:00 2001 From: Carmine Vassallo Date: Wed, 5 Nov 2025 20:20:07 +0100 Subject: [PATCH 2670/2686] Mention 2025.4 as the preferred SonarQube LTA (#2634) --- sonarqube/content.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index 6c6f71b05a5d..ba3ca31cef8f 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -29,13 +29,15 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http ## Installation -> **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). +> **Multi-platform support**: Starting from SonarQube `9.9`, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-sonarqube-from-docker/) page. To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server-as-a-cluster/) page. -> The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. +### Long-Term Active (LTA) versions + +[LTA](https://www.sonarsource.com/products/sonarqube/downloads/lta/) refers to the version of SonarQube Server that will stay active for a longer period of time. Currently, `2025.4` is the latest LTA version and should be used when LTA version is preferred. To install the latest LTA, you can pull one of the `2025.4-lta-` tags. ## Configuration From e754b0b4297fb3ddd63b753756f01b3429da0a21 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 12:10:52 -0800 Subject: [PATCH 2671/2686] Run update.sh --- sonarqube/README.md | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 4ae2c04b3ea4..985bda0378ce 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -24,31 +24,31 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2025.5.0-developer`, `2025.5-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/developer/Dockerfile) +- [`2025.5.0-developer`, `2025.5-developer`, `developer`](https://github.com/SonarSource/docker-sonarqube/blob/2d77476619099afc3df0129af7ebbf372fb72336/commercial-editions/developer/Dockerfile) -- [`2025.5.0-enterprise`, `2025.5-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/enterprise/Dockerfile) +- [`2025.5.0-enterprise`, `2025.5-enterprise`, `enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/2d77476619099afc3df0129af7ebbf372fb72336/commercial-editions/enterprise/Dockerfile) -- [`2025.5.0-datacenter-app`, `2025.5-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/datacenter/app/Dockerfile) +- [`2025.5.0-datacenter-app`, `2025.5-datacenter-app`, `datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/2d77476619099afc3df0129af7ebbf372fb72336/commercial-editions/datacenter/app/Dockerfile) -- [`2025.5.0-datacenter-search`, `2025.5-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/4f77dc7067a3ed7761c56361e40ad7dda3cd9d6c/commercial-editions/datacenter/search/Dockerfile) +- [`2025.5.0-datacenter-search`, `2025.5-datacenter-search`, `datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/2d77476619099afc3df0129af7ebbf372fb72336/commercial-editions/datacenter/search/Dockerfile) -- [`2025.4.3-developer`, `2025.4-developer`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/developer/Dockerfile) +- [`2025.4.3-developer`, `2025.4-developer`, `2025.4-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/ef0050f30ef75089692a0808b6a002359083fb5a/commercial-editions/developer/Dockerfile) -- [`2025.4.3-enterprise`, `2025.4-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/enterprise/Dockerfile) +- [`2025.4.3-enterprise`, `2025.4-enterprise`, `2025.4-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/ef0050f30ef75089692a0808b6a002359083fb5a/commercial-editions/enterprise/Dockerfile) -- [`2025.4.3-datacenter-app`, `2025.4-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/datacenter/app/Dockerfile) +- [`2025.4.3-datacenter-app`, `2025.4-datacenter-app`, `2025.4-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/ef0050f30ef75089692a0808b6a002359083fb5a/commercial-editions/datacenter/app/Dockerfile) -- [`2025.4.3-datacenter-search`, `2025.4-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/52f6f8a3a79daf2f4ed53b9f6313df16dcbb710a/commercial-editions/datacenter/search/Dockerfile) +- [`2025.4.3-datacenter-search`, `2025.4-datacenter-search`, `2025.4-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/ef0050f30ef75089692a0808b6a002359083fb5a/commercial-editions/datacenter/search/Dockerfile) -- [`2025.1.4-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/developer/Dockerfile) +- [`2025.1.4-developer`, `2025.1-developer`, `2025-lta-developer`](https://github.com/SonarSource/docker-sonarqube/blob/5e2621e56095f67b6a28edd3016ef2f10bca2947/commercial-editions/developer/Dockerfile) -- [`2025.1.4-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/enterprise/Dockerfile) +- [`2025.1.4-enterprise`, `2025.1-enterprise`, `2025-lta-enterprise`](https://github.com/SonarSource/docker-sonarqube/blob/5e2621e56095f67b6a28edd3016ef2f10bca2947/commercial-editions/enterprise/Dockerfile) -- [`2025.1.4-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/datacenter/app/Dockerfile) +- [`2025.1.4-datacenter-app`, `2025.1-datacenter-app`, `2025-lta-datacenter-app`](https://github.com/SonarSource/docker-sonarqube/blob/5e2621e56095f67b6a28edd3016ef2f10bca2947/commercial-editions/datacenter/app/Dockerfile) -- [`2025.1.4-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/175609a6b668d26878ea8d063d66677247272f38/commercial-editions/datacenter/search/Dockerfile) +- [`2025.1.4-datacenter-search`, `2025.1-datacenter-search`, `2025-lta-datacenter-search`](https://github.com/SonarSource/docker-sonarqube/blob/5e2621e56095f67b6a28edd3016ef2f10bca2947/commercial-editions/datacenter/search/Dockerfile) -- [`25.10.0.114319-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/a5d28439b45d0a6002290fd28bf1b481c0182bb6/community-build/Dockerfile) +- [`25.11.0.114957-community`, `community`, `latest`](https://github.com/SonarSource/docker-sonarqube/blob/2d77476619099afc3df0129af7ebbf372fb72336/community-build/Dockerfile) # Quick reference (cont.) @@ -100,13 +100,15 @@ To quickly run a demo instance, see Using Docker on the [Try Out SonarQube](http ## Installation -> **Multi-platform support**: Starting from SonarQube `9.9` LTS, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). +> **Multi-platform support**: Starting from SonarQube `9.9`, the docker images support running both on `amd64` architecture and `arm64`-based Apple Silicon (M1). For installation instructions, see Installing the Server from the Docker Image on the [Install the Server](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server/installing-sonarqube-from-docker/) page. To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the [Install the Server as a Cluster](https://docs.sonarsource.com/sonarqube-server/latest/setup-and-upgrade/install-the-server-as-a-cluster/) page. -> The `lts` tag on Docker images is replaced with every new LTS release. If you want to avoid any automatic major upgrades, we recommend using the corresponding `9.9-` tag instead of `lts-`. +### Long-Term Active (LTA) versions + +[LTA](https://www.sonarsource.com/products/sonarqube/downloads/lta/) refers to the version of SonarQube Server that will stay active for a longer period of time. Currently, `2025.4` is the latest LTA version and should be used when LTA version is preferred. To install the latest LTA, you can pull one of the `2025.4-lta-` tags. ## Configuration From 7cf20fc5fb94b9764e5c067ce44efcf04a83cad8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 13:10:50 -0800 Subject: [PATCH 2672/2686] Run update.sh --- golang/README.md | 72 ++++++++++++++++++++++++------------------------ swipl/README.md | 4 +-- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/golang/README.md b/golang/README.md index f3d226323aa2..be7f599db2e8 100644 --- a/golang/README.md +++ b/golang/README.md @@ -28,37 +28,37 @@ WARNING: ## Simple Tags -- [`1.25.3-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/trixie/Dockerfile) +- [`1.25.4-trixie`, `1.25-trixie`, `1-trixie`, `trixie`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/trixie/Dockerfile) -- [`1.25.3-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/bookworm/Dockerfile) +- [`1.25.4-bookworm`, `1.25-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/bookworm/Dockerfile) -- [`1.25.3-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.3-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/alpine3.22/Dockerfile) +- [`1.25.4-alpine3.22`, `1.25-alpine3.22`, `1-alpine3.22`, `alpine3.22`, `1.25.4-alpine`, `1.25-alpine`, `1-alpine`, `alpine`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/alpine3.22/Dockerfile) -- [`1.25.3-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/alpine3.21/Dockerfile) +- [`1.25.4-alpine3.21`, `1.25-alpine3.21`, `1-alpine3.21`, `alpine3.21`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/alpine3.21/Dockerfile) -- [`1.25.3-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.25.4-windowsservercore-ltsc2025`, `1.25-windowsservercore-ltsc2025`, `1-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.25.3-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.25.4-windowsservercore-ltsc2022`, `1.25-windowsservercore-ltsc2022`, `1-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.25.3-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.25.4-nanoserver-ltsc2025`, `1.25-nanoserver-ltsc2025`, `1-nanoserver-ltsc2025`, `nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.25.3-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.25.4-nanoserver-ltsc2022`, `1.25-nanoserver-ltsc2022`, `1-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- [`1.24.9-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/trixie/Dockerfile) +- [`1.24.10-trixie`, `1.24-trixie`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/trixie/Dockerfile) -- [`1.24.9-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/bookworm/Dockerfile) +- [`1.24.10-bookworm`, `1.24-bookworm`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/bookworm/Dockerfile) -- [`1.24.9-alpine3.22`, `1.24-alpine3.22`, `1.24.9-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/alpine3.22/Dockerfile) +- [`1.24.10-alpine3.22`, `1.24-alpine3.22`, `1.24.10-alpine`, `1.24-alpine`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/alpine3.22/Dockerfile) -- [`1.24.9-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/alpine3.21/Dockerfile) +- [`1.24.10-alpine3.21`, `1.24-alpine3.21`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/alpine3.21/Dockerfile) -- [`1.24.9-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) +- [`1.24.10-windowsservercore-ltsc2025`, `1.24-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2025/Dockerfile) -- [`1.24.9-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) +- [`1.24.10-windowsservercore-ltsc2022`, `1.24-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- [`1.24.9-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) +- [`1.24.10-nanoserver-ltsc2025`, `1.24-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2025/Dockerfile) -- [`1.24.9-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) +- [`1.24.10-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2022/Dockerfile) - [`tip-20251102-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/trixie/Dockerfile) @@ -70,37 +70,37 @@ WARNING: ## Shared Tags -- `1.25.3`, `1.25`, `1`, `latest`: +- `1.25.4`, `1.25`, `1`, `latest`: - - [`1.25.3-trixie`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/trixie/Dockerfile) - - [`1.25.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.4-trixie`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/trixie/Dockerfile) + - [`1.25.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.3-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: +- `1.25.4-windowsservercore`, `1.25-windowsservercore`, `1-windowsservercore`, `windowsservercore`: - - [`1.25.3-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.25.3-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.25.4-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.25.4-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.25.3-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: +- `1.25.4-nanoserver`, `1.25-nanoserver`, `1-nanoserver`, `nanoserver`: - - [`1.25.3-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.25.3-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/fca8040176e4e0c3d409c87d58fd8a81b16f2429/1.25/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.25.4-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.25.4-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/63f58b7160c9e82a88a7befcda362794b7d21750/1.25/windows/nanoserver-ltsc2022/Dockerfile) -- `1.24.9`, `1.24`: +- `1.24.10`, `1.24`: - - [`1.24.9-trixie`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/trixie/Dockerfile) - - [`1.24.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.10-trixie`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/trixie/Dockerfile) + - [`1.24.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.9-windowsservercore`, `1.24-windowsservercore`: +- `1.24.10-windowsservercore`, `1.24-windowsservercore`: - - [`1.24.9-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2025/Dockerfile) - - [`1.24.9-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/windowsservercore-ltsc2022/Dockerfile) + - [`1.24.10-windowsservercore-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2025/Dockerfile) + - [`1.24.10-windowsservercore-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/windowsservercore-ltsc2022/Dockerfile) -- `1.24.9-nanoserver`, `1.24-nanoserver`: +- `1.24.10-nanoserver`, `1.24-nanoserver`: - - [`1.24.9-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2025/Dockerfile) - - [`1.24.9-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/411dd143e04f39d9664f81d5284d7dd55949dbde/1.24/windows/nanoserver-ltsc2022/Dockerfile) + - [`1.24.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2025/Dockerfile) + - [`1.24.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2022/Dockerfile) - `tip-20251102`, `tip`: diff --git a/swipl/README.md b/swipl/README.md index 918161af1b6c..dbb513519ae3 100644 --- a/swipl/README.md +++ b/swipl/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `9.3.33`](https://github.com/SWI-Prolog/docker-swipl/blob/05d5a4d995c42d06e6cd362621eb44c5cdaef9cf/9.3.33/bookworm/Dockerfile) +- [`latest`, `9.3.34`](https://github.com/SWI-Prolog/docker-swipl/blob/d3fa517447ac842ec77670b917ebfb578ebe6e28/9.3.34/bookworm/Dockerfile) -- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/05d5a4d995c42d06e6cd362621eb44c5cdaef9cf/9.2.9/bookworm/Dockerfile) +- [`stable`, `9.2.9`](https://github.com/SWI-Prolog/docker-swipl/blob/d3fa517447ac842ec77670b917ebfb578ebe6e28/9.2.9/bookworm/Dockerfile) # Quick reference (cont.) From bc3cc5e6ea5eaf08401b39b3040ef8a755d5650d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 14:12:18 -0800 Subject: [PATCH 2673/2686] Run update.sh --- ghost/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghost/README.md b/ghost/README.md index b9fa9dcd054a..bce882246c45 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.0-bookworm`, `6.6.0`, `6.6-bookworm`, `6.6`, `6-bookworm`, `6`, `bookworm`, `latest`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/6/bookworm/Dockerfile) +- [`6.6.1-bookworm`, `6.6.1`, `6.6-bookworm`, `6.6`, `6-bookworm`, `6`, `bookworm`, `latest`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/6/bookworm/Dockerfile) -- [`6.6.0-alpine3.22`, `6.6.0-alpine`, `6.6-alpine3.22`, `6.6-alpine`, `6-alpine3.22`, `6-alpine`, `alpine3.22`, `alpine`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/6/alpine3.22/Dockerfile) +- [`6.6.1-alpine3.22`, `6.6.1-alpine`, `6.6-alpine3.22`, `6.6-alpine`, `6-alpine3.22`, `6-alpine`, `alpine3.22`, `alpine`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/6/alpine3.22/Dockerfile) -- [`5.130.5-bookworm`, `5.130.5`, `5.130-bookworm`, `5.130`, `5-bookworm`, `5`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/5/bookworm/Dockerfile) +- [`5.130.5-bookworm`, `5.130.5`, `5.130-bookworm`, `5.130`, `5-bookworm`, `5`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/5/bookworm/Dockerfile) -- [`5.130.5-alpine3.22`, `5.130.5-alpine`, `5.130-alpine3.22`, `5.130-alpine`, `5-alpine3.22`, `5-alpine`](https://github.com/docker-library/ghost/blob/98ead58b730477b94884db445c67f3251408cdc4/5/alpine3.22/Dockerfile) +- [`5.130.5-alpine3.22`, `5.130.5-alpine`, `5.130-alpine3.22`, `5.130-alpine`, `5-alpine3.22`, `5-alpine`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/5/alpine3.22/Dockerfile) # Quick reference (cont.) From af830443ad9bf94792771bc00cf6a48425c0978d Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 5 Nov 2025 16:10:34 -0800 Subject: [PATCH 2674/2686] Run update.sh --- haproxy/README.md | 28 ++++++++++++++-------------- neo4j/README.md | 8 ++++---- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/haproxy/README.md b/haproxy/README.md index d761251fddcd..4ddf7e39920f 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,33 +24,33 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev11`, `3.3-dev`, `3.3-dev11-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/531c0c0d9c002e8f43ab020ff9e529c6168b287c/3.3/Dockerfile) +- [`3.3-dev11`, `3.3-dev`, `3.3-dev11-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.3/Dockerfile) -- [`3.3-dev11-alpine`, `3.3-dev-alpine`, `3.3-dev11-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/531c0c0d9c002e8f43ab020ff9e529c6168b287c/3.3/alpine/Dockerfile) +- [`3.3-dev11-alpine`, `3.3-dev-alpine`, `3.3-dev11-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.3/alpine/Dockerfile) -- [`3.2.7`, `3.2`, `latest`, `lts`, `3.2.7-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/e4c0de0b54fc42dd87f22cfb61aad93562dad787/3.2/Dockerfile) +- [`3.2.7`, `3.2`, `latest`, `lts`, `3.2.7-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.2/Dockerfile) -- [`3.2.7-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.7-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/e4c0de0b54fc42dd87f22cfb61aad93562dad787/3.2/alpine/Dockerfile) +- [`3.2.7-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.7-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.2/alpine/Dockerfile) -- [`3.1.9`, `3.1`, `3.1.9-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/0d89f493da93a6e40d26926929cf12bf95fbec5b/3.1/Dockerfile) +- [`3.1.9`, `3.1`, `3.1.9-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.1/Dockerfile) -- [`3.1.9-alpine`, `3.1-alpine`, `3.1.9-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/0d89f493da93a6e40d26926929cf12bf95fbec5b/3.1/alpine/Dockerfile) +- [`3.1.9-alpine`, `3.1-alpine`, `3.1.9-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.1/alpine/Dockerfile) -- [`3.0.12`, `3.0`, `3.0.12-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/0390f3e72676323955e3a7d230393c7b5478f0b0/3.0/Dockerfile) +- [`3.0.12`, `3.0`, `3.0.12-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.0/Dockerfile) -- [`3.0.12-alpine`, `3.0-alpine`, `3.0.12-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/0390f3e72676323955e3a7d230393c7b5478f0b0/3.0/alpine/Dockerfile) +- [`3.0.12-alpine`, `3.0-alpine`, `3.0.12-alpine3.22`, `3.0-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.0/alpine/Dockerfile) -- [`2.8.16`, `2.8`, `2.8.16-trixie`, `2.8-trixie`](https://github.com/docker-library/haproxy/blob/97dd996d667932ef9359dcb8f2b3242eb54b253e/2.8/Dockerfile) +- [`2.8.16`, `2.8`, `2.8.16-trixie`, `2.8-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.8/Dockerfile) -- [`2.8.16-alpine`, `2.8-alpine`, `2.8.16-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/97dd996d667932ef9359dcb8f2b3242eb54b253e/2.8/alpine/Dockerfile) +- [`2.8.16-alpine`, `2.8-alpine`, `2.8.16-alpine3.22`, `2.8-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.8/alpine/Dockerfile) -- [`2.6.23`, `2.6`, `2.6.23-trixie`, `2.6-trixie`](https://github.com/docker-library/haproxy/blob/926111706a0ffd8b815e1edfd317aae52d06d083/2.6/Dockerfile) +- [`2.6.23`, `2.6`, `2.6.23-trixie`, `2.6-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.6/Dockerfile) -- [`2.6.23-alpine`, `2.6-alpine`, `2.6.23-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/926111706a0ffd8b815e1edfd317aae52d06d083/2.6/alpine/Dockerfile) +- [`2.6.23-alpine`, `2.6-alpine`, `2.6.23-alpine3.22`, `2.6-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.6/alpine/Dockerfile) -- [`2.4.30`, `2.4`, `2.4.30-trixie`, `2.4-trixie`](https://github.com/docker-library/haproxy/blob/c55eb01d1a1866a421e20e21bace391080fc58ba/2.4/Dockerfile) +- [`2.4.30`, `2.4`, `2.4.30-trixie`, `2.4-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.4/Dockerfile) -- [`2.4.30-alpine`, `2.4-alpine`, `2.4.30-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/c55eb01d1a1866a421e20e21bace391080fc58ba/2.4/alpine/Dockerfile) +- [`2.4.30-alpine`, `2.4-alpine`, `2.4.30-alpine3.22`, `2.4-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/2.4/alpine/Dockerfile) # Quick reference (cont.) diff --git a/neo4j/README.md b/neo4j/README.md index e10b3895ac34..21c9d712eeb1 100644 --- a/neo4j/README.md +++ b/neo4j/README.md @@ -32,13 +32,13 @@ WARNING: - [`2025.10.1-enterprise-ubi9`, `2025.10-enterprise-ubi9`, `2025-enterprise-ubi9`, `enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/2025.10.1/ubi9/enterprise/Dockerfile) -- [`5.26.15-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.15-community`, `5.26-community`, `5-community`, `5.26.15-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.15`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/bullseye/community/Dockerfile) +- [`5.26.16-community-bullseye`, `5.26-community-bullseye`, `5-community-bullseye`, `5.26.16-community`, `5.26-community`, `5-community`, `5.26.16-bullseye`, `5.26-bullseye`, `5-bullseye`, `5.26.16`, `5.26`, `5`](https://github.com/neo4j/docker-neo4j-publish/blob/d6fef47d8a1732f2b0b0975ef07c436850825910/5.26.16/bullseye/community/Dockerfile) -- [`5.26.15-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.15-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/bullseye/enterprise/Dockerfile) +- [`5.26.16-enterprise-bullseye`, `5.26-enterprise-bullseye`, `5-enterprise-bullseye`, `5.26.16-enterprise`, `5.26-enterprise`, `5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/d6fef47d8a1732f2b0b0975ef07c436850825910/5.26.16/bullseye/enterprise/Dockerfile) -- [`5.26.15-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.15-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/ubi9/community/Dockerfile) +- [`5.26.16-community-ubi9`, `5.26-community-ubi9`, `5-community-ubi9`, `5.26.16-ubi9`, `5.26-ubi9`, `5-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d6fef47d8a1732f2b0b0975ef07c436850825910/5.26.16/ubi9/community/Dockerfile) -- [`5.26.15-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/630ee784d1c1d65a6643c81887f6543a70816edf/5.26.15/ubi9/enterprise/Dockerfile) +- [`5.26.16-enterprise-ubi9`, `5.26-enterprise-ubi9`, `5-enterprise-ubi9`](https://github.com/neo4j/docker-neo4j-publish/blob/d6fef47d8a1732f2b0b0975ef07c436850825910/5.26.16/ubi9/enterprise/Dockerfile) - [`4.4.46`, `4.4.46-community`, `4.4`, `4.4-community`](https://github.com/neo4j/docker-neo4j-publish/blob/439722772cf16662310df3e1d8f898272454f85a/4.4.46/bullseye/community/Dockerfile) From ca359f6dcd4f4406bd35833a8d0b5087b9513fd7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Nov 2025 10:10:53 -0800 Subject: [PATCH 2675/2686] Run update.sh --- crate/README.md | 2 +- odoo/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crate/README.md b/crate/README.md index cfc5d2149718..6236ba8d9099 100644 --- a/crate/README.md +++ b/crate/README.md @@ -26,7 +26,7 @@ WARNING: - [`6.0.3`, `6.0`, `latest`](https://github.com/crate/docker-crate/blob/3b12723f798d4a57003c05ab50c938ca40b25f40/Dockerfile) -- [`5.10.13`, `5.10`](https://github.com/crate/docker-crate/blob/be70f78b138fffd05e80b7ac1b140690ec33584d/Dockerfile) +- [`5.10.14`, `5.10`](https://github.com/crate/docker-crate/blob/b48f566bfa1ad79918bd396900f9768b9430a846/Dockerfile) # Quick reference (cont.) diff --git a/odoo/README.md b/odoo/README.md index e5edd493a514..aa5077818fbc 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`19.0-20251021`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/19.0/Dockerfile) +- [`19.0-20251106`, `19.0`, `19`, `latest`](https://github.com/odoo/docker/blob/3ca54f4a7f7325b3b58fdb586143dd406a4863fa/19.0/Dockerfile) -- [`18.0-20251021`, `18.0`, `18`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/18.0/Dockerfile) +- [`18.0-20251106`, `18.0`, `18`](https://github.com/odoo/docker/blob/3ca54f4a7f7325b3b58fdb586143dd406a4863fa/18.0/Dockerfile) -- [`17.0-20251021`, `17.0`, `17`](https://github.com/odoo/docker/blob/0ee804078811d2bc209b5fac3060f5f66de7747b/17.0/Dockerfile) +- [`17.0-20251106`, `17.0`, `17`](https://github.com/odoo/docker/blob/3ca54f4a7f7325b3b58fdb586143dd406a4863fa/17.0/Dockerfile) # Quick reference (cont.) From c66972a53df8611b9e1b32e3dfa21cf917e6323c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Nov 2025 11:10:52 -0800 Subject: [PATCH 2676/2686] Run update.sh --- clickhouse/README.md | 8 ++++---- flink/README.md | 12 ++++++------ solr/README.md | 8 ++++++-- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/clickhouse/README.md b/clickhouse/README.md index 294ac22a4807..81a8615ebe66 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `jammy`, `25.9`, `25.9-jammy`, `25.9.5`, `25.9.5-jammy`, `25.9.5.21`, `25.9.5.21-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.9.5.21/Dockerfile.ubuntu) +- [`latest`, `jammy`, `25.10`, `25.10-jammy`, `25.10.1`, `25.10.1-jammy`, `25.10.1.3832`, `25.10.1.3832-jammy`](https://github.com/ClickHouse/docker-library/blob/b254f18990635545f939c8c6bd542c2d31878427/server/25.10.1.3832/Dockerfile.ubuntu) -- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.11`, `25.8.11-jammy`, `25.8.11.66`, `25.8.11.66-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.8.11.66/Dockerfile.ubuntu) +- [`25.9`, `25.9-jammy`, `25.9.5`, `25.9.5-jammy`, `25.9.5.21`, `25.9.5.21-jammy`](https://github.com/ClickHouse/docker-library/blob/b254f18990635545f939c8c6bd542c2d31878427/server/25.9.5.21/Dockerfile.ubuntu) -- [`25.7`, `25.7-jammy`, `25.7.8`, `25.7.8-jammy`, `25.7.8.71`, `25.7.8.71-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.7.8.71/Dockerfile.ubuntu) +- [`lts`, `lts-jammy`, `25.8`, `25.8-jammy`, `25.8.11`, `25.8.11-jammy`, `25.8.11.66`, `25.8.11.66-jammy`](https://github.com/ClickHouse/docker-library/blob/b254f18990635545f939c8c6bd542c2d31878427/server/25.8.11.66/Dockerfile.ubuntu) -- [`25.3`, `25.3-jammy`, `25.3.8`, `25.3.8-jammy`, `25.3.8.23`, `25.3.8.23-jammy`](https://github.com/ClickHouse/docker-library/blob/abbd0886f63c147c396d5913eaf401879b1c2ed5/server/25.3.8.23/Dockerfile.ubuntu) +- [`25.3`, `25.3-jammy`, `25.3.8`, `25.3.8-jammy`, `25.3.8.23`, `25.3.8.23-jammy`](https://github.com/ClickHouse/docker-library/blob/b254f18990635545f939c8c6bd542c2d31878427/server/25.3.8.23/Dockerfile.ubuntu) # Quick reference (cont.) diff --git a/flink/README.md b/flink/README.md index 75d989e19187..833fa98c51e4 100644 --- a/flink/README.md +++ b/flink/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.1.0-scala_2.12-java21`, `2.1-scala_2.12-java21`, `scala_2.12-java21`, `2.1.0-java21`, `2.1-java21`, `java21`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java21-ubuntu/Dockerfile) +- [`2.1.1-scala_2.12-java21`, `2.1-scala_2.12-java21`, `scala_2.12-java21`, `2.1.1-java21`, `2.1-java21`, `java21`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.1/scala_2.12-java21-ubuntu/Dockerfile) -- [`2.1.0-scala_2.12-java17`, `2.1-scala_2.12-java17`, `scala_2.12-java17`, `2.1.0-scala_2.12`, `2.1-scala_2.12`, `scala_2.12`, `2.1.0-java17`, `2.1-java17`, `java17`, `2.1.0`, `2.1`, `latest`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java17-ubuntu/Dockerfile) +- [`2.1.1-scala_2.12-java17`, `2.1-scala_2.12-java17`, `scala_2.12-java17`, `2.1.1-scala_2.12`, `2.1-scala_2.12`, `scala_2.12`, `2.1.1-java17`, `2.1-java17`, `java17`, `2.1.1`, `2.1`, `latest`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.1/scala_2.12-java17-ubuntu/Dockerfile) -- [`2.1.0-scala_2.12-java11`, `2.1-scala_2.12-java11`, `scala_2.12-java11`, `2.1.0-java11`, `2.1-java11`, `java11`](https://github.com/apache/flink-docker/blob/398bafb626b7ee940cbd0d5026005d8d6f8d1786/2.1/scala_2.12-java11-ubuntu/Dockerfile) +- [`2.1.1-scala_2.12-java11`, `2.1-scala_2.12-java11`, `scala_2.12-java11`, `2.1.1-java11`, `2.1-java11`, `java11`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.1/scala_2.12-java11-ubuntu/Dockerfile) -- [`2.0.0-scala_2.12-java21`, `2.0-scala_2.12-java21`, `2.0.0-java21`, `2.0-java21`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java21-ubuntu/Dockerfile) +- [`2.0.1-scala_2.12-java21`, `2.0-scala_2.12-java21`, `2.0.1-java21`, `2.0-java21`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.0/scala_2.12-java21-ubuntu/Dockerfile) -- [`2.0.0-scala_2.12-java17`, `2.0-scala_2.12-java17`, `2.0.0-scala_2.12`, `2.0-scala_2.12`, `2.0.0-java17`, `2.0-java17`, `2.0.0`, `2.0`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java17-ubuntu/Dockerfile) +- [`2.0.1-scala_2.12-java17`, `2.0-scala_2.12-java17`, `2.0.1-scala_2.12`, `2.0-scala_2.12`, `2.0.1-java17`, `2.0-java17`, `2.0.1`, `2.0`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.0/scala_2.12-java17-ubuntu/Dockerfile) -- [`2.0.0-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0.0-java11`, `2.0-java11`](https://github.com/apache/flink-docker/blob/d32c85bcf93b430d56685b54ab5732a20e472e2e/2.0/scala_2.12-java11-ubuntu/Dockerfile) +- [`2.0.1-scala_2.12-java11`, `2.0-scala_2.12-java11`, `2.0.1-java11`, `2.0-java11`](https://github.com/apache/flink-docker/blob/cfeea17390958606ec56ffd7caaf24dd44263743/2.0/scala_2.12-java11-ubuntu/Dockerfile) - [`1.20.3-scala_2.12-java8`, `1.20-scala_2.12-java8`, `1.20.3-java8`, `1.20-java8`](https://github.com/apache/flink-docker/blob/ea62362ddccca2556c9856bf6e435c1d38f90b2b/1.20/scala_2.12-java8-ubuntu/Dockerfile) diff --git a/solr/README.md b/solr/README.md index 793ae0e13c56..d8673a2577b2 100644 --- a/solr/README.md +++ b/solr/README.md @@ -24,9 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`9.9.0`, `9.9`, `9`, `latest`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9/Dockerfile) +- [`9.10.0`, `9.10`, `9`, `latest`](https://github.com/apache/solr-docker/blob/566a79e9212bc9eb117bffb338b6200b102962a7/9.10/Dockerfile) -- [`9.9.0-slim`, `9.9-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9-slim/Dockerfile) +- [`9.10.0-slim`, `9.10-slim`, `9-slim`, `slim`](https://github.com/apache/solr-docker/blob/566a79e9212bc9eb117bffb338b6200b102962a7/9.10-slim/Dockerfile) + +- [`9.9.0`, `9.9`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9/Dockerfile) + +- [`9.9.0-slim`, `9.9-slim`](https://github.com/apache/solr-docker/blob/aa51c522c3e74cd1b2886209ea249358a34d324a/9.9-slim/Dockerfile) # Quick reference (cont.) From 392f55409b86ef9fb900c8dfc47d5c41970a88ed Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Nov 2025 12:12:42 -0800 Subject: [PATCH 2677/2686] Run update.sh --- drupal/README.md | 48 +++++++++++++++++++++---------------------- oraclelinux/README.md | 22 ++++++++++---------- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 2a6d4b970a5e..50a6844085d3 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,29 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.5-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.5-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.5-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.5-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.5-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.5`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/apache-trixie/Dockerfile) +- [`11.2.6-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.6-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.6-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.6-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.6-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.6`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/apache-trixie/Dockerfile) -- [`11.2.5-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.5-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.5-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.5-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-trixie/Dockerfile) +- [`11.2.6-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.6-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.6-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.6-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-trixie/Dockerfile) -- [`11.2.5-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.5-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.2.6-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.6-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/apache-bookworm/Dockerfile) -- [`11.2.5-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.5-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.2.6-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.6-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.5-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.5-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.5-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.5-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.2.6-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.6-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.6-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.6-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.5-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.5-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.2.6-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.6-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.5-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.5-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.5-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/apache-trixie/Dockerfile) +- [`11.2.6-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.6-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.6-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/apache-trixie/Dockerfile) -- [`11.2.5-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.5-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-trixie/Dockerfile) +- [`11.2.6-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.6-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-trixie/Dockerfile) -- [`11.2.5-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.2.6-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/apache-bookworm/Dockerfile) -- [`11.2.5-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.2.6-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.5-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.5-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.2.6-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.6-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.5-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/bfc3b834626579c9f979148bbe42b9ea64690a0a/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.2.6-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-trixie`, `11.1-php8.4-apache-trixie`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-trixie/Dockerfile) @@ -72,29 +72,29 @@ WARNING: - [`11.1.8-php8.3-fpm-alpine3.21`, `11.1-php8.3-fpm-alpine3.21`, `11.1.8-fpm-alpine3.21`, `11.1-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.3/fpm-alpine3.21/Dockerfile) -- [`10.5.4-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.4-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.4-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.4-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.4-apache`, `10.5-apache`, `10-apache`, `10.5.4`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/apache-trixie/Dockerfile) +- [`10.5.5-php8.4-apache-trixie`, `10.5-php8.4-apache-trixie`, `10-php8.4-apache-trixie`, `10.5.5-php8.4-apache`, `10.5-php8.4-apache`, `10-php8.4-apache`, `10.5.5-php8.4`, `10.5-php8.4`, `10-php8.4`, `10.5.5-apache-trixie`, `10.5-apache-trixie`, `10-apache-trixie`, `10.5.5-apache`, `10.5-apache`, `10-apache`, `10.5.5`, `10.5`, `10`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/apache-trixie/Dockerfile) -- [`10.5.4-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.4-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.4-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.4-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-trixie/Dockerfile) +- [`10.5.5-php8.4-fpm-trixie`, `10.5-php8.4-fpm-trixie`, `10-php8.4-fpm-trixie`, `10.5.5-php8.4-fpm`, `10.5-php8.4-fpm`, `10-php8.4-fpm`, `10.5.5-fpm-trixie`, `10.5-fpm-trixie`, `10-fpm-trixie`, `10.5.5-fpm`, `10.5-fpm`, `10-fpm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/fpm-trixie/Dockerfile) -- [`10.5.4-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.4-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/apache-bookworm/Dockerfile) +- [`10.5.5-php8.4-apache-bookworm`, `10.5-php8.4-apache-bookworm`, `10-php8.4-apache-bookworm`, `10.5.5-apache-bookworm`, `10.5-apache-bookworm`, `10-apache-bookworm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/apache-bookworm/Dockerfile) -- [`10.5.4-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.4-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-bookworm/Dockerfile) +- [`10.5.5-php8.4-fpm-bookworm`, `10.5-php8.4-fpm-bookworm`, `10-php8.4-fpm-bookworm`, `10.5.5-fpm-bookworm`, `10.5-fpm-bookworm`, `10-fpm-bookworm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/fpm-bookworm/Dockerfile) -- [`10.5.4-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.4-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.4-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.4-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-alpine3.22/Dockerfile) +- [`10.5.5-php8.4-fpm-alpine3.22`, `10.5-php8.4-fpm-alpine3.22`, `10-php8.4-fpm-alpine3.22`, `10.5.5-php8.4-fpm-alpine`, `10.5-php8.4-fpm-alpine`, `10-php8.4-fpm-alpine`, `10.5.5-fpm-alpine3.22`, `10.5-fpm-alpine3.22`, `10-fpm-alpine3.22`, `10.5.5-fpm-alpine`, `10.5-fpm-alpine`, `10-fpm-alpine`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/fpm-alpine3.22/Dockerfile) -- [`10.5.4-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.4-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.4/fpm-alpine3.21/Dockerfile) +- [`10.5.5-php8.4-fpm-alpine3.21`, `10.5-php8.4-fpm-alpine3.21`, `10-php8.4-fpm-alpine3.21`, `10.5.5-fpm-alpine3.21`, `10.5-fpm-alpine3.21`, `10-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.4/fpm-alpine3.21/Dockerfile) -- [`10.5.4-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.4-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.4-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/apache-trixie/Dockerfile) +- [`10.5.5-php8.3-apache-trixie`, `10.5-php8.3-apache-trixie`, `10-php8.3-apache-trixie`, `10.5.5-php8.3-apache`, `10.5-php8.3-apache`, `10-php8.3-apache`, `10.5.5-php8.3`, `10.5-php8.3`, `10-php8.3`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/apache-trixie/Dockerfile) -- [`10.5.4-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.4-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-trixie/Dockerfile) +- [`10.5.5-php8.3-fpm-trixie`, `10.5-php8.3-fpm-trixie`, `10-php8.3-fpm-trixie`, `10.5.5-php8.3-fpm`, `10.5-php8.3-fpm`, `10-php8.3-fpm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/fpm-trixie/Dockerfile) -- [`10.5.4-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/apache-bookworm/Dockerfile) +- [`10.5.5-php8.3-apache-bookworm`, `10.5-php8.3-apache-bookworm`, `10-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/apache-bookworm/Dockerfile) -- [`10.5.4-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-bookworm/Dockerfile) +- [`10.5.5-php8.3-fpm-bookworm`, `10.5-php8.3-fpm-bookworm`, `10-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/fpm-bookworm/Dockerfile) -- [`10.5.4-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.4-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-alpine3.22/Dockerfile) +- [`10.5.5-php8.3-fpm-alpine3.22`, `10.5-php8.3-fpm-alpine3.22`, `10-php8.3-fpm-alpine3.22`, `10.5.5-php8.3-fpm-alpine`, `10.5-php8.3-fpm-alpine`, `10-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/fpm-alpine3.22/Dockerfile) -- [`10.5.4-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/88cc7e881e0cafb54f39190cb1ba96f828e50672/10.5/php8.3/fpm-alpine3.21/Dockerfile) +- [`10.5.5-php8.3-fpm-alpine3.21`, `10.5-php8.3-fpm-alpine3.21`, `10-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/316935627f1efd0a9dc93b0b8406b96bb7c20301/10.5/php8.3/fpm-alpine3.21/Dockerfile) - [`10.4.8-php8.4-apache-trixie`, `10.4-php8.4-apache-trixie`, `10.4.8-php8.4-apache`, `10.4-php8.4-apache`, `10.4.8-php8.4`, `10.4-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/10.4/php8.4/apache-trixie/Dockerfile) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index c7874536e54e..94e269f1f4e5 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/316f6a1d2d219c9a181fb95d8f9e7058272d99d0/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7-slim-fips/Dockerfile) # Quick reference (cont.) From 41dfe5764e6ed8ac54bd841604ff4b0eccd24f79 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Nov 2025 14:11:32 -0800 Subject: [PATCH 2678/2686] Run update.sh --- amazonlinux/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amazonlinux/README.md b/amazonlinux/README.md index d9851bf2fbfa..a0ad3364a981 100644 --- a/amazonlinux/README.md +++ b/amazonlinux/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2023`, `latest`, `2023.9.20251027.0`](https://github.com/amazonlinux/container-images/blob/c666d32da5468884cfa42ccd80455bc856e07785/Dockerfile) +- [`2023`, `latest`, `2023.9.20251105.0`](https://github.com/amazonlinux/container-images/blob/0e77474a0e8d55c669a94347ca7bf24268ea5a53/Dockerfile) -- [`2`, `2.0.20251027.1`](https://github.com/amazonlinux/container-images/blob/ed40df28f69622fa062061566027d2c798d8baf8/Dockerfile) +- [`2`, `2.0.20251105.0`](https://github.com/amazonlinux/container-images/blob/636f080212730dfc2e8a2e5f5811039e1406fe27/Dockerfile) - [`1`, `2018.03`, `2018.03.0.20231218.0`](https://github.com/amazonlinux/container-images/blob/cfb41ad1c7624786ea10f60c15ce9c117c4da3b6/Dockerfile) From 921a3e83e04589bd1b95550d4bbdcfd4f269f5c0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 6 Nov 2025 17:11:14 -0800 Subject: [PATCH 2679/2686] Run update.sh --- drupal/README.md | 48 ++++++++++++++++++++++++++++++----------- php/README.md | 56 ++++++++++++++++++++++++++++++++++++------------ 2 files changed, 78 insertions(+), 26 deletions(-) diff --git a/drupal/README.md b/drupal/README.md index 50a6844085d3..34030a148069 100644 --- a/drupal/README.md +++ b/drupal/README.md @@ -24,29 +24,53 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.2.6-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.6-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.6-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.6-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.6-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.6`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/apache-trixie/Dockerfile) +- [`11.3.0-alpha1-php8.4-apache-trixie`, `11.3-rc-php8.4-apache-trixie`, `11.3.0-alpha1-php8.4-apache`, `11.3-rc-php8.4-apache`, `11.3.0-alpha1-php8.4`, `11.3-rc-php8.4`, `11.3.0-alpha1-apache-trixie`, `11.3-rc-apache-trixie`, `11.3.0-alpha1-apache`, `11.3-rc-apache`, `11.3.0-alpha1`, `11.3-rc`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/apache-trixie/Dockerfile) -- [`11.2.6-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.6-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.6-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.6-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-trixie/Dockerfile) +- [`11.3.0-alpha1-php8.4-fpm-trixie`, `11.3-rc-php8.4-fpm-trixie`, `11.3.0-alpha1-php8.4-fpm`, `11.3-rc-php8.4-fpm`, `11.3.0-alpha1-fpm-trixie`, `11.3-rc-fpm-trixie`, `11.3.0-alpha1-fpm`, `11.3-rc-fpm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/fpm-trixie/Dockerfile) -- [`11.2.6-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.6-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/apache-bookworm/Dockerfile) +- [`11.3.0-alpha1-php8.4-apache-bookworm`, `11.3-rc-php8.4-apache-bookworm`, `11.3.0-alpha1-apache-bookworm`, `11.3-rc-apache-bookworm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/apache-bookworm/Dockerfile) -- [`11.2.6-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.6-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-bookworm/Dockerfile) +- [`11.3.0-alpha1-php8.4-fpm-bookworm`, `11.3-rc-php8.4-fpm-bookworm`, `11.3.0-alpha1-fpm-bookworm`, `11.3-rc-fpm-bookworm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/fpm-bookworm/Dockerfile) -- [`11.2.6-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.6-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.6-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.6-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-alpine3.22/Dockerfile) +- [`11.3.0-alpha1-php8.4-fpm-alpine3.22`, `11.3-rc-php8.4-fpm-alpine3.22`, `11.3.0-alpha1-php8.4-fpm-alpine`, `11.3-rc-php8.4-fpm-alpine`, `11.3.0-alpha1-fpm-alpine3.22`, `11.3-rc-fpm-alpine3.22`, `11.3.0-alpha1-fpm-alpine`, `11.3-rc-fpm-alpine`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/fpm-alpine3.22/Dockerfile) -- [`11.2.6-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.6-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.4/fpm-alpine3.21/Dockerfile) +- [`11.3.0-alpha1-php8.4-fpm-alpine3.21`, `11.3-rc-php8.4-fpm-alpine3.21`, `11.3.0-alpha1-fpm-alpine3.21`, `11.3-rc-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.4/fpm-alpine3.21/Dockerfile) -- [`11.2.6-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.6-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.6-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/apache-trixie/Dockerfile) +- [`11.3.0-alpha1-php8.3-apache-trixie`, `11.3-rc-php8.3-apache-trixie`, `11.3.0-alpha1-php8.3-apache`, `11.3-rc-php8.3-apache`, `11.3.0-alpha1-php8.3`, `11.3-rc-php8.3`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/apache-trixie/Dockerfile) -- [`11.2.6-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.6-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-trixie/Dockerfile) +- [`11.3.0-alpha1-php8.3-fpm-trixie`, `11.3-rc-php8.3-fpm-trixie`, `11.3.0-alpha1-php8.3-fpm`, `11.3-rc-php8.3-fpm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/fpm-trixie/Dockerfile) -- [`11.2.6-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/apache-bookworm/Dockerfile) +- [`11.3.0-alpha1-php8.3-apache-bookworm`, `11.3-rc-php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/apache-bookworm/Dockerfile) -- [`11.2.6-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-bookworm/Dockerfile) +- [`11.3.0-alpha1-php8.3-fpm-bookworm`, `11.3-rc-php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/fpm-bookworm/Dockerfile) -- [`11.2.6-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.6-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-alpine3.22/Dockerfile) +- [`11.3.0-alpha1-php8.3-fpm-alpine3.22`, `11.3-rc-php8.3-fpm-alpine3.22`, `11.3.0-alpha1-php8.3-fpm-alpine`, `11.3-rc-php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/fpm-alpine3.22/Dockerfile) -- [`11.2.6-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/a2888cabb226dc0c3cff978121f15a164d0124f9/11.2/php8.3/fpm-alpine3.21/Dockerfile) +- [`11.3.0-alpha1-php8.3-fpm-alpine3.21`, `11.3-rc-php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/971780db5272f996fa221cd7641d162390b759a5/11.3-rc/php8.3/fpm-alpine3.21/Dockerfile) + +- [`11.2.7-php8.4-apache-trixie`, `11.2-php8.4-apache-trixie`, `11-php8.4-apache-trixie`, `php8.4-apache-trixie`, `11.2.7-php8.4-apache`, `11.2-php8.4-apache`, `11-php8.4-apache`, `php8.4-apache`, `11.2.7-php8.4`, `11.2-php8.4`, `11-php8.4`, `php8.4`, `11.2.7-apache-trixie`, `11.2-apache-trixie`, `11-apache-trixie`, `apache-trixie`, `11.2.7-apache`, `11.2-apache`, `11-apache`, `apache`, `11.2.7`, `11.2`, `11`, `latest`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/apache-trixie/Dockerfile) + +- [`11.2.7-php8.4-fpm-trixie`, `11.2-php8.4-fpm-trixie`, `11-php8.4-fpm-trixie`, `php8.4-fpm-trixie`, `11.2.7-php8.4-fpm`, `11.2-php8.4-fpm`, `11-php8.4-fpm`, `php8.4-fpm`, `11.2.7-fpm-trixie`, `11.2-fpm-trixie`, `11-fpm-trixie`, `fpm-trixie`, `11.2.7-fpm`, `11.2-fpm`, `11-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/fpm-trixie/Dockerfile) + +- [`11.2.7-php8.4-apache-bookworm`, `11.2-php8.4-apache-bookworm`, `11-php8.4-apache-bookworm`, `php8.4-apache-bookworm`, `11.2.7-apache-bookworm`, `11.2-apache-bookworm`, `11-apache-bookworm`, `apache-bookworm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/apache-bookworm/Dockerfile) + +- [`11.2.7-php8.4-fpm-bookworm`, `11.2-php8.4-fpm-bookworm`, `11-php8.4-fpm-bookworm`, `php8.4-fpm-bookworm`, `11.2.7-fpm-bookworm`, `11.2-fpm-bookworm`, `11-fpm-bookworm`, `fpm-bookworm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/fpm-bookworm/Dockerfile) + +- [`11.2.7-php8.4-fpm-alpine3.22`, `11.2-php8.4-fpm-alpine3.22`, `11-php8.4-fpm-alpine3.22`, `php8.4-fpm-alpine3.22`, `11.2.7-php8.4-fpm-alpine`, `11.2-php8.4-fpm-alpine`, `11-php8.4-fpm-alpine`, `php8.4-fpm-alpine`, `11.2.7-fpm-alpine3.22`, `11.2-fpm-alpine3.22`, `11-fpm-alpine3.22`, `fpm-alpine3.22`, `11.2.7-fpm-alpine`, `11.2-fpm-alpine`, `11-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/fpm-alpine3.22/Dockerfile) + +- [`11.2.7-php8.4-fpm-alpine3.21`, `11.2-php8.4-fpm-alpine3.21`, `11-php8.4-fpm-alpine3.21`, `php8.4-fpm-alpine3.21`, `11.2.7-fpm-alpine3.21`, `11.2-fpm-alpine3.21`, `11-fpm-alpine3.21`, `fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.4/fpm-alpine3.21/Dockerfile) + +- [`11.2.7-php8.3-apache-trixie`, `11.2-php8.3-apache-trixie`, `11-php8.3-apache-trixie`, `php8.3-apache-trixie`, `11.2.7-php8.3-apache`, `11.2-php8.3-apache`, `11-php8.3-apache`, `php8.3-apache`, `11.2.7-php8.3`, `11.2-php8.3`, `11-php8.3`, `php8.3`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/apache-trixie/Dockerfile) + +- [`11.2.7-php8.3-fpm-trixie`, `11.2-php8.3-fpm-trixie`, `11-php8.3-fpm-trixie`, `php8.3-fpm-trixie`, `11.2.7-php8.3-fpm`, `11.2-php8.3-fpm`, `11-php8.3-fpm`, `php8.3-fpm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/fpm-trixie/Dockerfile) + +- [`11.2.7-php8.3-apache-bookworm`, `11.2-php8.3-apache-bookworm`, `11-php8.3-apache-bookworm`, `php8.3-apache-bookworm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/apache-bookworm/Dockerfile) + +- [`11.2.7-php8.3-fpm-bookworm`, `11.2-php8.3-fpm-bookworm`, `11-php8.3-fpm-bookworm`, `php8.3-fpm-bookworm`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/fpm-bookworm/Dockerfile) + +- [`11.2.7-php8.3-fpm-alpine3.22`, `11.2-php8.3-fpm-alpine3.22`, `11-php8.3-fpm-alpine3.22`, `php8.3-fpm-alpine3.22`, `11.2.7-php8.3-fpm-alpine`, `11.2-php8.3-fpm-alpine`, `11-php8.3-fpm-alpine`, `php8.3-fpm-alpine`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/fpm-alpine3.22/Dockerfile) + +- [`11.2.7-php8.3-fpm-alpine3.21`, `11.2-php8.3-fpm-alpine3.21`, `11-php8.3-fpm-alpine3.21`, `php8.3-fpm-alpine3.21`](https://github.com/docker-library/drupal/blob/cf1310ae9962fe677f6896054f0ffa043e726bd1/11.2/php8.3/fpm-alpine3.21/Dockerfile) - [`11.1.8-php8.4-apache-trixie`, `11.1-php8.4-apache-trixie`, `11.1.8-php8.4-apache`, `11.1-php8.4-apache`, `11.1.8-php8.4`, `11.1-php8.4`](https://github.com/docker-library/drupal/blob/705493dbabad3fcd0e416e4bf25de571eee658aa/11.1/php8.4/apache-trixie/Dockerfile) diff --git a/php/README.md b/php/README.md index c9cd7eafa063..b66f4d95403f 100644 --- a/php/README.md +++ b/php/README.md @@ -24,33 +24,61 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.5.0RC3-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC3-trixie`, `8.5-rc-trixie`, `8.5.0RC3-cli`, `8.5-rc-cli`, `8.5.0RC3`, `8.5-rc`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/cli/Dockerfile) +- [`8.5.0RC4-cli-trixie`, `8.5-rc-cli-trixie`, `8.5.0RC4-trixie`, `8.5-rc-trixie`, `8.5.0RC4-cli`, `8.5-rc-cli`, `8.5.0RC4`, `8.5-rc`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/trixie/cli/Dockerfile) -- [`8.5.0RC3-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC3-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/apache/Dockerfile) +- [`8.5.0RC4-apache-trixie`, `8.5-rc-apache-trixie`, `8.5.0RC4-apache`, `8.5-rc-apache`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/trixie/apache/Dockerfile) -- [`8.5.0RC3-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC3-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/fpm/Dockerfile) +- [`8.5.0RC4-fpm-trixie`, `8.5-rc-fpm-trixie`, `8.5.0RC4-fpm`, `8.5-rc-fpm`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/trixie/fpm/Dockerfile) -- [`8.5.0RC3-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC3-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/trixie/zts/Dockerfile) +- [`8.5.0RC4-zts-trixie`, `8.5-rc-zts-trixie`, `8.5.0RC4-zts`, `8.5-rc-zts`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/trixie/zts/Dockerfile) -- [`8.5.0RC3-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC3-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/cli/Dockerfile) +- [`8.5.0RC4-cli-bookworm`, `8.5-rc-cli-bookworm`, `8.5.0RC4-bookworm`, `8.5-rc-bookworm`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/bookworm/cli/Dockerfile) -- [`8.5.0RC3-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/apache/Dockerfile) +- [`8.5.0RC4-apache-bookworm`, `8.5-rc-apache-bookworm`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/bookworm/apache/Dockerfile) -- [`8.5.0RC3-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/fpm/Dockerfile) +- [`8.5.0RC4-fpm-bookworm`, `8.5-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/bookworm/fpm/Dockerfile) -- [`8.5.0RC3-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/bookworm/zts/Dockerfile) +- [`8.5.0RC4-zts-bookworm`, `8.5-rc-zts-bookworm`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/bookworm/zts/Dockerfile) -- [`8.5.0RC3-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC3-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC3-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC3-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/cli/Dockerfile) +- [`8.5.0RC4-cli-alpine3.22`, `8.5-rc-cli-alpine3.22`, `8.5.0RC4-alpine3.22`, `8.5-rc-alpine3.22`, `8.5.0RC4-cli-alpine`, `8.5-rc-cli-alpine`, `8.5.0RC4-alpine`, `8.5-rc-alpine`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.22/cli/Dockerfile) -- [`8.5.0RC3-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC3-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/fpm/Dockerfile) +- [`8.5.0RC4-fpm-alpine3.22`, `8.5-rc-fpm-alpine3.22`, `8.5.0RC4-fpm-alpine`, `8.5-rc-fpm-alpine`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.22/fpm/Dockerfile) -- [`8.5.0RC3-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC3-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.22/zts/Dockerfile) +- [`8.5.0RC4-zts-alpine3.22`, `8.5-rc-zts-alpine3.22`, `8.5.0RC4-zts-alpine`, `8.5-rc-zts-alpine`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.22/zts/Dockerfile) -- [`8.5.0RC3-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC3-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/cli/Dockerfile) +- [`8.5.0RC4-cli-alpine3.21`, `8.5-rc-cli-alpine3.21`, `8.5.0RC4-alpine3.21`, `8.5-rc-alpine3.21`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.21/cli/Dockerfile) -- [`8.5.0RC3-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/fpm/Dockerfile) +- [`8.5.0RC4-fpm-alpine3.21`, `8.5-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.21/fpm/Dockerfile) -- [`8.5.0RC3-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/ca458afd1bd09e726150c33fe4b32ac808a131eb/8.5-rc/alpine3.21/zts/Dockerfile) +- [`8.5.0RC4-zts-alpine3.21`, `8.5-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/245728507253f480f2e1c8997982b41963cb549e/8.5-rc/alpine3.21/zts/Dockerfile) + +- [`8.4.15RC1-cli-trixie`, `8.4-rc-cli-trixie`, `8.4.15RC1-trixie`, `8.4-rc-trixie`, `8.4.15RC1-cli`, `8.4-rc-cli`, `8.4.15RC1`, `8.4-rc`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/trixie/cli/Dockerfile) + +- [`8.4.15RC1-apache-trixie`, `8.4-rc-apache-trixie`, `8.4.15RC1-apache`, `8.4-rc-apache`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/trixie/apache/Dockerfile) + +- [`8.4.15RC1-fpm-trixie`, `8.4-rc-fpm-trixie`, `8.4.15RC1-fpm`, `8.4-rc-fpm`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/trixie/fpm/Dockerfile) + +- [`8.4.15RC1-zts-trixie`, `8.4-rc-zts-trixie`, `8.4.15RC1-zts`, `8.4-rc-zts`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/trixie/zts/Dockerfile) + +- [`8.4.15RC1-cli-bookworm`, `8.4-rc-cli-bookworm`, `8.4.15RC1-bookworm`, `8.4-rc-bookworm`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/bookworm/cli/Dockerfile) + +- [`8.4.15RC1-apache-bookworm`, `8.4-rc-apache-bookworm`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/bookworm/apache/Dockerfile) + +- [`8.4.15RC1-fpm-bookworm`, `8.4-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/bookworm/fpm/Dockerfile) + +- [`8.4.15RC1-zts-bookworm`, `8.4-rc-zts-bookworm`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/bookworm/zts/Dockerfile) + +- [`8.4.15RC1-cli-alpine3.22`, `8.4-rc-cli-alpine3.22`, `8.4.15RC1-alpine3.22`, `8.4-rc-alpine3.22`, `8.4.15RC1-cli-alpine`, `8.4-rc-cli-alpine`, `8.4.15RC1-alpine`, `8.4-rc-alpine`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.22/cli/Dockerfile) + +- [`8.4.15RC1-fpm-alpine3.22`, `8.4-rc-fpm-alpine3.22`, `8.4.15RC1-fpm-alpine`, `8.4-rc-fpm-alpine`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.22/fpm/Dockerfile) + +- [`8.4.15RC1-zts-alpine3.22`, `8.4-rc-zts-alpine3.22`, `8.4.15RC1-zts-alpine`, `8.4-rc-zts-alpine`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.22/zts/Dockerfile) + +- [`8.4.15RC1-cli-alpine3.21`, `8.4-rc-cli-alpine3.21`, `8.4.15RC1-alpine3.21`, `8.4-rc-alpine3.21`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.21/cli/Dockerfile) + +- [`8.4.15RC1-fpm-alpine3.21`, `8.4-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.21/fpm/Dockerfile) + +- [`8.4.15RC1-zts-alpine3.21`, `8.4-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/cc62281af8a607681805f1c0f82175f9e65bd9d4/8.4-rc/alpine3.21/zts/Dockerfile) - [`8.4.14-cli-trixie`, `8.4-cli-trixie`, `8-cli-trixie`, `cli-trixie`, `8.4.14-trixie`, `8.4-trixie`, `8-trixie`, `trixie`, `8.4.14-cli`, `8.4-cli`, `8-cli`, `cli`, `8.4.14`, `8.4`, `8`, `latest`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/trixie/cli/Dockerfile) From 1fe577b26abee55b96650f2c63bdf01174e60ae0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Sat, 8 Nov 2025 10:10:36 -0800 Subject: [PATCH 2680/2686] Run update.sh --- amazoncorretto/README.md | 96 ++++----- eclipse-temurin/README.md | 412 +++++++++++++++++++------------------- elixir/README.md | 18 +- traefik/README.md | 12 +- 4 files changed, 263 insertions(+), 275 deletions(-) diff --git a/amazoncorretto/README.md b/amazoncorretto/README.md index 54988b882af1..3b1c448737a4 100644 --- a/amazoncorretto/README.md +++ b/amazoncorretto/README.md @@ -24,101 +24,89 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8`, `8u472`, `8u472-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u472-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2-generic/Dockerfile) +- [`8`, `8u472`, `8u472-al2`, `8-al2-full`, `8-al2-jdk`, `8-al2-generic`, `8u472-al2-generic`, `8-al2-generic-jdk`, `latest`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/al2-generic/Dockerfile) -- [`8-al2023`, `8u472-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u472-al2023-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2023/Dockerfile) +- [`8-al2023`, `8u472-al2023`, `8-al2023-jdk`, `8-al2023-jre`, `8u472-al2023-jre`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/al2023/Dockerfile) -- [`8-al2-native-jre`, `8u472-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/al2/Dockerfile) +- [`8-al2-native-jre`, `8u472-al2-native-jre`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jre/al2/Dockerfile) -- [`8-al2-native-jdk`, `8u472-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/al2/Dockerfile) +- [`8-al2-native-jdk`, `8u472-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/al2/Dockerfile) -- [`8-alpine3.19`, `8u472-alpine3.19`, `8-alpine3.19-full`, `8-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.19/Dockerfile) +- [`8-alpine3.20`, `8u472-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/alpine/3.20/Dockerfile) -- [`8-alpine3.19-jre`, `8u472-alpine3.19-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.19/Dockerfile) +- [`8-alpine3.20-jre`, `8u472-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jre/alpine/3.20/Dockerfile) -- [`8-alpine3.20`, `8u472-alpine3.20`, `8-alpine3.20-full`, `8-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.20/Dockerfile) +- [`8-alpine3.21`, `8u472-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/alpine/3.21/Dockerfile) -- [`8-alpine3.20-jre`, `8u472-alpine3.20-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.20/Dockerfile) +- [`8-alpine3.21-jre`, `8u472-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jre/alpine/3.21/Dockerfile) -- [`8-alpine3.21`, `8u472-alpine3.21`, `8-alpine3.21-full`, `8-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.21/Dockerfile) +- [`8-alpine3.22`, `8u472-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u472-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jdk/alpine/3.22/Dockerfile) -- [`8-alpine3.21-jre`, `8u472-alpine3.21-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.21/Dockerfile) +- [`8-alpine3.22-jre`, `8u472-alpine3.22-jre`, `8-alpine-jre`, `8u472-alpine-jre`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/8/jre/alpine/3.22/Dockerfile) -- [`8-alpine3.22`, `8u472-alpine3.22`, `8-alpine3.22-full`, `8-alpine3.22-jdk`, `8-alpine`, `8u472-alpine`, `8-alpine-full`, `8-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jdk/alpine/3.22/Dockerfile) +- [`11`, `11.0.29`, `11.0.29-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.29-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/al2-generic/Dockerfile) -- [`8-alpine3.22-jre`, `8u472-alpine3.22-jre`, `8-alpine-jre`, `8u472-alpine-jre`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/8/jre/alpine/3.22/Dockerfile) +- [`11-al2023`, `11.0.29-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/al2023/Dockerfile) -- [`11`, `11.0.29`, `11.0.29-al2`, `11-al2-full`, `11-al2-jdk`, `11-al2-generic`, `11.0.29-al2-generic`, `11-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2-generic/Dockerfile) +- [`11-al2023-headless`, `11.0.29-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/headless/al2023/Dockerfile) -- [`11-al2023`, `11.0.29-al2023`, `11-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2023/Dockerfile) +- [`11-al2023-headful`, `11.0.29-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/headful/al2023/Dockerfile) -- [`11-al2023-headless`, `11.0.29-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headless/al2023/Dockerfile) +- [`11-al2-native-headless`, `11.0.29-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/headless/al2/Dockerfile) -- [`11-al2023-headful`, `11.0.29-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headful/al2023/Dockerfile) +- [`11-al2-native-jdk`, `11.0.29-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/al2/Dockerfile) -- [`11-al2-native-headless`, `11.0.29-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/headless/al2/Dockerfile) +- [`11-alpine3.20`, `11.0.29-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/alpine/3.20/Dockerfile) -- [`11-al2-native-jdk`, `11.0.29-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/al2/Dockerfile) +- [`11-alpine3.21`, `11.0.29-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/alpine/3.21/Dockerfile) -- [`11-alpine3.19`, `11.0.29-alpine3.19`, `11-alpine3.19-full`, `11-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.19/Dockerfile) +- [`11-alpine3.22`, `11.0.29-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.29-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/11/jdk/alpine/3.22/Dockerfile) -- [`11-alpine3.20`, `11.0.29-alpine3.20`, `11-alpine3.20-full`, `11-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.20/Dockerfile) +- [`17`, `17.0.17`, `17.0.17-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.17-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/al2-generic/Dockerfile) -- [`11-alpine3.21`, `11.0.29-alpine3.21`, `11-alpine3.21-full`, `11-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.21/Dockerfile) +- [`17-al2023`, `17.0.17-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/al2023/Dockerfile) -- [`11-alpine3.22`, `11.0.29-alpine3.22`, `11-alpine3.22-full`, `11-alpine3.22-jdk`, `11-alpine`, `11.0.29-alpine`, `11-alpine-full`, `11-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/11/jdk/alpine/3.22/Dockerfile) +- [`17-al2023-headless`, `17.0.17-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/headless/al2023/Dockerfile) -- [`17`, `17.0.17`, `17.0.17-al2`, `17-al2-full`, `17-al2-jdk`, `17-al2-generic`, `17.0.17-al2-generic`, `17-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2-generic/Dockerfile) +- [`17-al2023-headful`, `17.0.17-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/headful/al2023/Dockerfile) -- [`17-al2023`, `17.0.17-al2023`, `17-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2023/Dockerfile) +- [`17-al2-native-headless`, `17.0.17-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/headless/al2/Dockerfile) -- [`17-al2023-headless`, `17.0.17-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headless/al2023/Dockerfile) +- [`17-al2-native-headful`, `17.0.17-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/headful/al2/Dockerfile) -- [`17-al2023-headful`, `17.0.17-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headful/al2023/Dockerfile) +- [`17-al2-native-jdk`, `17.0.17-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/al2/Dockerfile) -- [`17-al2-native-headless`, `17.0.17-al2-native-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headless/al2/Dockerfile) +- [`17-alpine3.20`, `17.0.17-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/alpine/3.20/Dockerfile) -- [`17-al2-native-headful`, `17.0.17-al2-native-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/headful/al2/Dockerfile) +- [`17-alpine3.21`, `17.0.17-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/alpine/3.21/Dockerfile) -- [`17-al2-native-jdk`, `17.0.17-al2-native-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/al2/Dockerfile) +- [`17-alpine3.22`, `17.0.17-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.17-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/17/jdk/alpine/3.22/Dockerfile) -- [`17-alpine3.19`, `17.0.17-alpine3.19`, `17-alpine3.19-full`, `17-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.19/Dockerfile) +- [`21`, `21.0.9`, `21.0.9-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.9-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/jdk/al2-generic/Dockerfile) -- [`17-alpine3.20`, `17.0.17-alpine3.20`, `17-alpine3.20-full`, `17-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.20/Dockerfile) +- [`21-al2023`, `21.0.9-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/jdk/al2023/Dockerfile) -- [`17-alpine3.21`, `17.0.17-alpine3.21`, `17-alpine3.21-full`, `17-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.21/Dockerfile) +- [`21-al2023-headless`, `21.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/headless/al2023/Dockerfile) -- [`17-alpine3.22`, `17.0.17-alpine3.22`, `17-alpine3.22-full`, `17-alpine3.22-jdk`, `17-alpine`, `17.0.17-alpine`, `17-alpine-full`, `17-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/17/jdk/alpine/3.22/Dockerfile) +- [`21-al2023-headful`, `21.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/headful/al2023/Dockerfile) -- [`21`, `21.0.9`, `21.0.9-al2`, `21-al2-full`, `21-al2-jdk`, `21-al2-generic`, `21.0.9-al2-generic`, `21-al2-generic-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/al2-generic/Dockerfile) +- [`21-alpine3.20`, `21.0.9-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/jdk/alpine/3.20/Dockerfile) -- [`21-al2023`, `21.0.9-al2023`, `21-al2023-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/al2023/Dockerfile) +- [`21-alpine3.21`, `21.0.9-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/jdk/alpine/3.21/Dockerfile) -- [`21-al2023-headless`, `21.0.9-al2023-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/headless/al2023/Dockerfile) +- [`21-alpine3.22`, `21.0.9-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.9-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/21/jdk/alpine/3.22/Dockerfile) -- [`21-al2023-headful`, `21.0.9-al2023-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/headful/al2023/Dockerfile) +- [`25-al2023`, `25.0.1-al2023`, `25-al2023-jdk`, `25`, `25-jdk`, `25.0.1`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/jdk/al2023/Dockerfile) -- [`21-alpine3.19`, `21.0.9-alpine3.19`, `21-alpine3.19-full`, `21-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.19/Dockerfile) +- [`25-al2023-headless`, `25.0.1-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/headless/al2023/Dockerfile) -- [`21-alpine3.20`, `21.0.9-alpine3.20`, `21-alpine3.20-full`, `21-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.20/Dockerfile) +- [`25-al2023-headful`, `25.0.1-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/headful/al2023/Dockerfile) -- [`21-alpine3.21`, `21.0.9-alpine3.21`, `21-alpine3.21-full`, `21-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.21/Dockerfile) +- [`25-alpine3.20`, `25.0.1-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/jdk/alpine/3.20/Dockerfile) -- [`21-alpine3.22`, `21.0.9-alpine3.22`, `21-alpine3.22-full`, `21-alpine3.22-jdk`, `21-alpine`, `21.0.9-alpine`, `21-alpine-full`, `21-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/21/jdk/alpine/3.22/Dockerfile) +- [`25-alpine3.21`, `25.0.1-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/jdk/alpine/3.21/Dockerfile) -- [`25-al2023`, `25.0.1-al2023`, `25-al2023-jdk`, `25`, `25-jdk`, `25.0.1`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/al2023/Dockerfile) - -- [`25-al2023-headless`, `25.0.1-al2023-headless`, `25-headless`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/headless/al2023/Dockerfile) - -- [`25-al2023-headful`, `25.0.1-al2023-headful`, `25-headful`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/headful/al2023/Dockerfile) - -- [`25-alpine3.19`, `25.0.1-alpine3.19`, `25-alpine3.19-full`, `25-alpine3.19-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.19/Dockerfile) - -- [`25-alpine3.20`, `25.0.1-alpine3.20`, `25-alpine3.20-full`, `25-alpine3.20-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.20/Dockerfile) - -- [`25-alpine3.21`, `25.0.1-alpine3.21`, `25-alpine3.21-full`, `25-alpine3.21-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.21/Dockerfile) - -- [`25-alpine3.22`, `25.0.1-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.1-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/e9ad70888805b5c2d0b98e9523f20ea790d2880d/25/jdk/alpine/3.22/Dockerfile) +- [`25-alpine3.22`, `25.0.1-alpine3.22`, `25-alpine3.22-full`, `25-alpine3.22-jdk`, `25-alpine`, `25.0.1-alpine`, `25-alpine-full`, `25-alpine-jdk`](https://github.com/corretto/corretto-docker/blob/5cf76cde46d4c2293a5d709e1e8630a334cb61c5/25/jdk/alpine/3.22/Dockerfile) # Quick reference (cont.) diff --git a/eclipse-temurin/README.md b/eclipse-temurin/README.md index 28c325e6d2e9..58efa65b05e5 100644 --- a/eclipse-temurin/README.md +++ b/eclipse-temurin/README.md @@ -28,379 +28,379 @@ WARNING: ## Simple Tags -- [`8u462-b08-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.20/Dockerfile) +- [`8u472-b08-jdk-alpine-3.20`, `8-jdk-alpine-3.20`, `8-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/alpine/3.20/Dockerfile) -- [`8u462-b08-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.21/Dockerfile) +- [`8u472-b08-jdk-alpine-3.21`, `8-jdk-alpine-3.21`, `8-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/alpine/3.21/Dockerfile) -- [`8u462-b08-jdk-alpine-3.22`, `8-jdk-alpine-3.22`, `8-alpine-3.22`, `8u462-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/alpine/3.22/Dockerfile) +- [`8u472-b08-jdk-alpine-3.22`, `8-jdk-alpine-3.22`, `8-alpine-3.22`, `8u472-b08-jdk-alpine`, `8-jdk-alpine`, `8-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/alpine/3.22/Dockerfile) -- [`8u462-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/jammy/Dockerfile) +- [`8u472-b08-jdk-jammy`, `8-jdk-jammy`, `8-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/ubuntu/jammy/Dockerfile) -- [`8u462-b08-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/noble/Dockerfile) +- [`8u472-b08-jdk-noble`, `8-jdk-noble`, `8-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/ubuntu/noble/Dockerfile) -- [`8u462-b08-jdk-ubi10-minimal`, `8-jdk-ubi10-minimal`, `8-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubi/ubi10-minimal/Dockerfile) +- [`8u472-b08-jdk-ubi10-minimal`, `8-jdk-ubi10-minimal`, `8-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/ubi/ubi10-minimal/Dockerfile) -- [`8u462-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubi/ubi9-minimal/Dockerfile) +- [`8u472-b08-jdk-ubi9-minimal`, `8-jdk-ubi9-minimal`, `8-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/ubi/ubi9-minimal/Dockerfile) -- [`8u462-b08-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u472-b08-jdk-windowsservercore-ltsc2025`, `8-jdk-windowsservercore-ltsc2025`, `8-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u462-b08-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u472-b08-jdk-nanoserver-ltsc2025`, `8-jdk-nanoserver-ltsc2025`, `8-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u462-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u472-b08-jdk-windowsservercore-ltsc2022`, `8-jdk-windowsservercore-ltsc2022`, `8-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u462-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u472-b08-jdk-nanoserver-ltsc2022`, `8-jdk-nanoserver-ltsc2022`, `8-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`8u462-b08-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.20/Dockerfile) +- [`8u472-b08-jre-alpine-3.20`, `8-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/alpine/3.20/Dockerfile) -- [`8u462-b08-jre-alpine-3.21`, `8-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.21/Dockerfile) +- [`8u472-b08-jre-alpine-3.21`, `8-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/alpine/3.21/Dockerfile) -- [`8u462-b08-jre-alpine-3.22`, `8-jre-alpine-3.22`, `8u462-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/alpine/3.22/Dockerfile) +- [`8u472-b08-jre-alpine-3.22`, `8-jre-alpine-3.22`, `8u472-b08-jre-alpine`, `8-jre-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/alpine/3.22/Dockerfile) -- [`8u462-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/jammy/Dockerfile) +- [`8u472-b08-jre-jammy`, `8-jre-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/ubuntu/jammy/Dockerfile) -- [`8u462-b08-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/noble/Dockerfile) +- [`8u472-b08-jre-noble`, `8-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/ubuntu/noble/Dockerfile) -- [`8u462-b08-jre-ubi10-minimal`, `8-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubi/ubi10-minimal/Dockerfile) +- [`8u472-b08-jre-ubi10-minimal`, `8-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/ubi/ubi10-minimal/Dockerfile) -- [`8u462-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubi/ubi9-minimal/Dockerfile) +- [`8u472-b08-jre-ubi9-minimal`, `8-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/ubi/ubi9-minimal/Dockerfile) -- [`8u462-b08-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`8u472-b08-jre-windowsservercore-ltsc2025`, `8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`8u462-b08-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`8u472-b08-jre-nanoserver-ltsc2025`, `8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`8u462-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`8u472-b08-jre-windowsservercore-ltsc2022`, `8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`8u462-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`8u472-b08-jre-nanoserver-ltsc2022`, `8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.28_6-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.20/Dockerfile) +- [`11.0.29_7-jdk-alpine-3.20`, `11-jdk-alpine-3.20`, `11-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/alpine/3.20/Dockerfile) -- [`11.0.28_6-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.21/Dockerfile) +- [`11.0.29_7-jdk-alpine-3.21`, `11-jdk-alpine-3.21`, `11-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/alpine/3.21/Dockerfile) -- [`11.0.28_6-jdk-alpine-3.22`, `11-jdk-alpine-3.22`, `11-alpine-3.22`, `11.0.28_6-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/alpine/3.22/Dockerfile) +- [`11.0.29_7-jdk-alpine-3.22`, `11-jdk-alpine-3.22`, `11-alpine-3.22`, `11.0.29_7-jdk-alpine`, `11-jdk-alpine`, `11-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/alpine/3.22/Dockerfile) -- [`11.0.28_6-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/jammy/Dockerfile) +- [`11.0.29_7-jdk-jammy`, `11-jdk-jammy`, `11-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/ubuntu/jammy/Dockerfile) -- [`11.0.28_6-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/noble/Dockerfile) +- [`11.0.29_7-jdk-noble`, `11-jdk-noble`, `11-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/ubuntu/noble/Dockerfile) -- [`11.0.28_6-jdk-ubi10-minimal`, `11-jdk-ubi10-minimal`, `11-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubi/ubi10-minimal/Dockerfile) +- [`11.0.29_7-jdk-ubi10-minimal`, `11-jdk-ubi10-minimal`, `11-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/ubi/ubi10-minimal/Dockerfile) -- [`11.0.28_6-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubi/ubi9-minimal/Dockerfile) +- [`11.0.29_7-jdk-ubi9-minimal`, `11-jdk-ubi9-minimal`, `11-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/ubi/ubi9-minimal/Dockerfile) -- [`11.0.28_6-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.29_7-jdk-windowsservercore-ltsc2025`, `11-jdk-windowsservercore-ltsc2025`, `11-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.28_6-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.29_7-jdk-nanoserver-ltsc2025`, `11-jdk-nanoserver-ltsc2025`, `11-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.28_6-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.29_7-jdk-windowsservercore-ltsc2022`, `11-jdk-windowsservercore-ltsc2022`, `11-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.28_6-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.29_7-jdk-nanoserver-ltsc2022`, `11-jdk-nanoserver-ltsc2022`, `11-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`11.0.28_6-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.20/Dockerfile) +- [`11.0.29_7-jre-alpine-3.20`, `11-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/alpine/3.20/Dockerfile) -- [`11.0.28_6-jre-alpine-3.21`, `11-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.21/Dockerfile) +- [`11.0.29_7-jre-alpine-3.21`, `11-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/alpine/3.21/Dockerfile) -- [`11.0.28_6-jre-alpine-3.22`, `11-jre-alpine-3.22`, `11.0.28_6-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/alpine/3.22/Dockerfile) +- [`11.0.29_7-jre-alpine-3.22`, `11-jre-alpine-3.22`, `11.0.29_7-jre-alpine`, `11-jre-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/alpine/3.22/Dockerfile) -- [`11.0.28_6-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/jammy/Dockerfile) +- [`11.0.29_7-jre-jammy`, `11-jre-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/ubuntu/jammy/Dockerfile) -- [`11.0.28_6-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/noble/Dockerfile) +- [`11.0.29_7-jre-noble`, `11-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/ubuntu/noble/Dockerfile) -- [`11.0.28_6-jre-ubi10-minimal`, `11-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubi/ubi10-minimal/Dockerfile) +- [`11.0.29_7-jre-ubi10-minimal`, `11-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/ubi/ubi10-minimal/Dockerfile) -- [`11.0.28_6-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubi/ubi9-minimal/Dockerfile) +- [`11.0.29_7-jre-ubi9-minimal`, `11-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/ubi/ubi9-minimal/Dockerfile) -- [`11.0.28_6-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`11.0.29_7-jre-windowsservercore-ltsc2025`, `11-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`11.0.28_6-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`11.0.29_7-jre-nanoserver-ltsc2025`, `11-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`11.0.28_6-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`11.0.29_7-jre-windowsservercore-ltsc2022`, `11-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`11.0.28_6-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`11.0.29_7-jre-nanoserver-ltsc2022`, `11-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.16_8-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.20/Dockerfile) +- [`17.0.17_10-jdk-alpine-3.20`, `17-jdk-alpine-3.20`, `17-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/alpine/3.20/Dockerfile) -- [`17.0.16_8-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.21/Dockerfile) +- [`17.0.17_10-jdk-alpine-3.21`, `17-jdk-alpine-3.21`, `17-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/alpine/3.21/Dockerfile) -- [`17.0.16_8-jdk-alpine-3.22`, `17-jdk-alpine-3.22`, `17-alpine-3.22`, `17.0.16_8-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/alpine/3.22/Dockerfile) +- [`17.0.17_10-jdk-alpine-3.22`, `17-jdk-alpine-3.22`, `17-alpine-3.22`, `17.0.17_10-jdk-alpine`, `17-jdk-alpine`, `17-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/alpine/3.22/Dockerfile) -- [`17.0.16_8-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/jammy/Dockerfile) +- [`17.0.17_10-jdk-jammy`, `17-jdk-jammy`, `17-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/ubuntu/jammy/Dockerfile) -- [`17.0.16_8-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/noble/Dockerfile) +- [`17.0.17_10-jdk-noble`, `17-jdk-noble`, `17-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/ubuntu/noble/Dockerfile) -- [`17.0.16_8-jdk-ubi10-minimal`, `17-jdk-ubi10-minimal`, `17-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubi/ubi10-minimal/Dockerfile) +- [`17.0.17_10-jdk-ubi10-minimal`, `17-jdk-ubi10-minimal`, `17-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/ubi/ubi10-minimal/Dockerfile) -- [`17.0.16_8-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubi/ubi9-minimal/Dockerfile) +- [`17.0.17_10-jdk-ubi9-minimal`, `17-jdk-ubi9-minimal`, `17-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/ubi/ubi9-minimal/Dockerfile) -- [`17.0.16_8-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.17_10-jdk-windowsservercore-ltsc2025`, `17-jdk-windowsservercore-ltsc2025`, `17-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.16_8-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.17_10-jdk-nanoserver-ltsc2025`, `17-jdk-nanoserver-ltsc2025`, `17-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.16_8-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.17_10-jdk-windowsservercore-ltsc2022`, `17-jdk-windowsservercore-ltsc2022`, `17-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.16_8-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.17_10-jdk-nanoserver-ltsc2022`, `17-jdk-nanoserver-ltsc2022`, `17-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`17.0.16_8-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.20/Dockerfile) +- [`17.0.17_10-jre-alpine-3.20`, `17-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/alpine/3.20/Dockerfile) -- [`17.0.16_8-jre-alpine-3.21`, `17-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.21/Dockerfile) +- [`17.0.17_10-jre-alpine-3.21`, `17-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/alpine/3.21/Dockerfile) -- [`17.0.16_8-jre-alpine-3.22`, `17-jre-alpine-3.22`, `17.0.16_8-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/alpine/3.22/Dockerfile) +- [`17.0.17_10-jre-alpine-3.22`, `17-jre-alpine-3.22`, `17.0.17_10-jre-alpine`, `17-jre-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/alpine/3.22/Dockerfile) -- [`17.0.16_8-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/jammy/Dockerfile) +- [`17.0.17_10-jre-jammy`, `17-jre-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/ubuntu/jammy/Dockerfile) -- [`17.0.16_8-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/noble/Dockerfile) +- [`17.0.17_10-jre-noble`, `17-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/ubuntu/noble/Dockerfile) -- [`17.0.16_8-jre-ubi10-minimal`, `17-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubi/ubi10-minimal/Dockerfile) +- [`17.0.17_10-jre-ubi10-minimal`, `17-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/ubi/ubi10-minimal/Dockerfile) -- [`17.0.16_8-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubi/ubi9-minimal/Dockerfile) +- [`17.0.17_10-jre-ubi9-minimal`, `17-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/ubi/ubi9-minimal/Dockerfile) -- [`17.0.16_8-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`17.0.17_10-jre-windowsservercore-ltsc2025`, `17-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`17.0.16_8-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`17.0.17_10-jre-nanoserver-ltsc2025`, `17-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`17.0.16_8-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`17.0.17_10-jre-windowsservercore-ltsc2022`, `17-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`17.0.16_8-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`17.0.17_10-jre-nanoserver-ltsc2022`, `17-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.8_9-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.20/Dockerfile) +- [`21.0.9_10-jdk-alpine-3.20`, `21-jdk-alpine-3.20`, `21-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/alpine/3.20/Dockerfile) -- [`21.0.8_9-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.21/Dockerfile) +- [`21.0.9_10-jdk-alpine-3.21`, `21-jdk-alpine-3.21`, `21-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/alpine/3.21/Dockerfile) -- [`21.0.8_9-jdk-alpine-3.22`, `21-jdk-alpine-3.22`, `21-alpine-3.22`, `21.0.8_9-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/alpine/3.22/Dockerfile) +- [`21.0.9_10-jdk-alpine-3.22`, `21-jdk-alpine-3.22`, `21-alpine-3.22`, `21.0.9_10-jdk-alpine`, `21-jdk-alpine`, `21-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/alpine/3.22/Dockerfile) -- [`21.0.8_9-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/jammy/Dockerfile) +- [`21.0.9_10-jdk-jammy`, `21-jdk-jammy`, `21-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/ubuntu/jammy/Dockerfile) -- [`21.0.8_9-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/noble/Dockerfile) +- [`21.0.9_10-jdk-noble`, `21-jdk-noble`, `21-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/ubuntu/noble/Dockerfile) -- [`21.0.8_9-jdk-ubi10-minimal`, `21-jdk-ubi10-minimal`, `21-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubi/ubi10-minimal/Dockerfile) +- [`21.0.9_10-jdk-ubi10-minimal`, `21-jdk-ubi10-minimal`, `21-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/ubi/ubi10-minimal/Dockerfile) -- [`21.0.8_9-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubi/ubi9-minimal/Dockerfile) +- [`21.0.9_10-jdk-ubi9-minimal`, `21-jdk-ubi9-minimal`, `21-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/ubi/ubi9-minimal/Dockerfile) -- [`21.0.8_9-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.9_10-jdk-windowsservercore-ltsc2025`, `21-jdk-windowsservercore-ltsc2025`, `21-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.8_9-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.9_10-jdk-nanoserver-ltsc2025`, `21-jdk-nanoserver-ltsc2025`, `21-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.8_9-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.9_10-jdk-windowsservercore-ltsc2022`, `21-jdk-windowsservercore-ltsc2022`, `21-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.8_9-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.9_10-jdk-nanoserver-ltsc2022`, `21-jdk-nanoserver-ltsc2022`, `21-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`21.0.8_9-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.20/Dockerfile) +- [`21.0.9_10-jre-alpine-3.20`, `21-jre-alpine-3.20`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/alpine/3.20/Dockerfile) -- [`21.0.8_9-jre-alpine-3.21`, `21-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.21/Dockerfile) +- [`21.0.9_10-jre-alpine-3.21`, `21-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/alpine/3.21/Dockerfile) -- [`21.0.8_9-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.8_9-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/alpine/3.22/Dockerfile) +- [`21.0.9_10-jre-alpine-3.22`, `21-jre-alpine-3.22`, `21.0.9_10-jre-alpine`, `21-jre-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/alpine/3.22/Dockerfile) -- [`21.0.8_9-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/jammy/Dockerfile) +- [`21.0.9_10-jre-jammy`, `21-jre-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/ubuntu/jammy/Dockerfile) -- [`21.0.8_9-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/noble/Dockerfile) +- [`21.0.9_10-jre-noble`, `21-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/ubuntu/noble/Dockerfile) -- [`21.0.8_9-jre-ubi10-minimal`, `21-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubi/ubi10-minimal/Dockerfile) +- [`21.0.9_10-jre-ubi10-minimal`, `21-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/ubi/ubi10-minimal/Dockerfile) -- [`21.0.8_9-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubi/ubi9-minimal/Dockerfile) +- [`21.0.9_10-jre-ubi9-minimal`, `21-jre-ubi9-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/ubi/ubi9-minimal/Dockerfile) -- [`21.0.8_9-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`21.0.9_10-jre-windowsservercore-ltsc2025`, `21-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`21.0.8_9-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`21.0.9_10-jre-nanoserver-ltsc2025`, `21-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`21.0.8_9-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`21.0.9_10-jre-windowsservercore-ltsc2022`, `21-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`21.0.8_9-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`21.0.9_10-jre-nanoserver-ltsc2022`, `21-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- [`25_36-jdk-alpine-3.21`, `25-jdk-alpine-3.21`, `25-alpine-3.21`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/alpine/3.21/Dockerfile) +- [`25.0.1_8-jdk-alpine-3.21`, `25-jdk-alpine-3.21`, `25-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/alpine/3.21/Dockerfile) -- [`25_36-jdk-alpine-3.22`, `25-jdk-alpine-3.22`, `25-alpine-3.22`, `25_36-jdk-alpine`, `25-jdk-alpine`, `25-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/alpine/3.22/Dockerfile) +- [`25.0.1_8-jdk-alpine-3.22`, `25-jdk-alpine-3.22`, `25-alpine-3.22`, `25.0.1_8-jdk-alpine`, `25-jdk-alpine`, `25-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/alpine/3.22/Dockerfile) -- [`25_36-jdk-jammy`, `25-jdk-jammy`, `25-jammy`](https://github.com/adoptium/containers/blob/7dc6a92c80c1f371f3d416e8357efe18796016a5/25/jdk/ubuntu/jammy/Dockerfile) +- [`25.0.1_8-jdk-jammy`, `25-jdk-jammy`, `25-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/ubuntu/jammy/Dockerfile) -- [`25_36-jdk-noble`, `25-jdk-noble`, `25-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubuntu/noble/Dockerfile) +- [`25.0.1_8-jdk-noble`, `25-jdk-noble`, `25-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/ubuntu/noble/Dockerfile) -- [`25_36-jdk-ubi10-minimal`, `25-jdk-ubi10-minimal`, `25-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubi/ubi10-minimal/Dockerfile) +- [`25.0.1_8-jdk-ubi10-minimal`, `25-jdk-ubi10-minimal`, `25-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/ubi/ubi10-minimal/Dockerfile) -- [`25_36-jdk-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25.0.1_8-jdk-windowsservercore-ltsc2025`, `25-jdk-windowsservercore-ltsc2025`, `25-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25_36-jdk-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) +- [`25.0.1_8-jdk-nanoserver-ltsc2025`, `25-jdk-nanoserver-ltsc2025`, `25-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) -- [`25_36-jdk-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.1_8-jdk-windowsservercore-ltsc2022`, `25-jdk-windowsservercore-ltsc2022`, `25-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25_36-jdk-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) +- [`25.0.1_8-jdk-nanoserver-ltsc2022`, `25-jdk-nanoserver-ltsc2022`, `25-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- [`25_36-jre-alpine-3.21`, `25-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/alpine/3.21/Dockerfile) +- [`25.0.1_8-jre-alpine-3.21`, `25-jre-alpine-3.21`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/alpine/3.21/Dockerfile) -- [`25_36-jre-alpine-3.22`, `25-jre-alpine-3.22`, `25_36-jre-alpine`, `25-jre-alpine`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/alpine/3.22/Dockerfile) +- [`25.0.1_8-jre-alpine-3.22`, `25-jre-alpine-3.22`, `25.0.1_8-jre-alpine`, `25-jre-alpine`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/alpine/3.22/Dockerfile) -- [`25_36-jre-jammy`, `25-jre-jammy`](https://github.com/adoptium/containers/blob/7dc6a92c80c1f371f3d416e8357efe18796016a5/25/jre/ubuntu/jammy/Dockerfile) +- [`25.0.1_8-jre-jammy`, `25-jre-jammy`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/ubuntu/jammy/Dockerfile) -- [`25_36-jre-noble`, `25-jre-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubuntu/noble/Dockerfile) +- [`25.0.1_8-jre-noble`, `25-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/ubuntu/noble/Dockerfile) -- [`25_36-jre-ubi10-minimal`, `25-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubi/ubi10-minimal/Dockerfile) +- [`25.0.1_8-jre-ubi10-minimal`, `25-jre-ubi10-minimal`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/ubi/ubi10-minimal/Dockerfile) -- [`25_36-jre-windowsservercore-ltsc2025`, `25-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) +- [`25.0.1_8-jre-windowsservercore-ltsc2025`, `25-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) -- [`25_36-jre-nanoserver-ltsc2025`, `25-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2025/Dockerfile) +- [`25.0.1_8-jre-nanoserver-ltsc2025`, `25-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/nanoserver-ltsc2025/Dockerfile) -- [`25_36-jre-windowsservercore-ltsc2022`, `25-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) +- [`25.0.1_8-jre-windowsservercore-ltsc2022`, `25-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- [`25_36-jre-nanoserver-ltsc2022`, `25-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2022/Dockerfile) +- [`25.0.1_8-jre-nanoserver-ltsc2022`, `25-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `8u462-b08-jdk`, `8-jdk`, `8`: +- `8u472-b08-jdk`, `8-jdk`, `8`: - - [`8u462-b08-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/ubuntu/noble/Dockerfile) - - [`8u462-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u462-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u472-b08-jdk-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/ubuntu/noble/Dockerfile) + - [`8u472-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u472-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u462-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: +- `8u472-b08-jdk-windowsservercore`, `8-jdk-windowsservercore`, `8-windowsservercore`: - - [`8u462-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u462-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u472-b08-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u472-b08-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u462-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: +- `8u472-b08-jdk-nanoserver`, `8-jdk-nanoserver`, `8-nanoserver`: - - [`8u462-b08-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u462-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u472-b08-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u472-b08-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `8u462-b08-jre`, `8-jre`: +- `8u472-b08-jre`, `8-jre`: - - [`8u462-b08-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/ubuntu/noble/Dockerfile) - - [`8u462-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u462-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u472-b08-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/ubuntu/noble/Dockerfile) + - [`8u472-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u472-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u462-b08-jre-windowsservercore`, `8-jre-windowsservercore`: +- `8u472-b08-jre-windowsservercore`, `8-jre-windowsservercore`: - - [`8u462-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`8u462-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`8u472-b08-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`8u472-b08-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `8u462-b08-jre-nanoserver`, `8-jre-nanoserver`: +- `8u472-b08-jre-nanoserver`, `8-jre-nanoserver`: - - [`8u462-b08-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`8u462-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/8/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`8u472-b08-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`8u472-b08-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/8/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `11.0.28_6-jdk`, `11-jdk`, `11`: +- `11.0.29_7-jdk`, `11-jdk`, `11`: - - [`11.0.28_6-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/ubuntu/noble/Dockerfile) - - [`11.0.28_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.28_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.29_7-jdk-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/ubuntu/noble/Dockerfile) + - [`11.0.29_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.29_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.28_6-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: +- `11.0.29_7-jdk-windowsservercore`, `11-jdk-windowsservercore`, `11-windowsservercore`: - - [`11.0.28_6-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.28_6-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.29_7-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.29_7-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.28_6-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: +- `11.0.29_7-jdk-nanoserver`, `11-jdk-nanoserver`, `11-nanoserver`: - - [`11.0.28_6-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.28_6-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.29_7-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.29_7-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `11.0.28_6-jre`, `11-jre`: +- `11.0.29_7-jre`, `11-jre`: - - [`11.0.28_6-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/ubuntu/noble/Dockerfile) - - [`11.0.28_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.28_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.29_7-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/ubuntu/noble/Dockerfile) + - [`11.0.29_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.29_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.28_6-jre-windowsservercore`, `11-jre-windowsservercore`: +- `11.0.29_7-jre-windowsservercore`, `11-jre-windowsservercore`: - - [`11.0.28_6-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`11.0.28_6-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`11.0.29_7-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`11.0.29_7-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `11.0.28_6-jre-nanoserver`, `11-jre-nanoserver`: +- `11.0.29_7-jre-nanoserver`, `11-jre-nanoserver`: - - [`11.0.28_6-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`11.0.28_6-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/11/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`11.0.29_7-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`11.0.29_7-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/11/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.16_8-jdk`, `17-jdk`, `17`: +- `17.0.17_10-jdk`, `17-jdk`, `17`: - - [`17.0.16_8-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/ubuntu/noble/Dockerfile) - - [`17.0.16_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.16_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.17_10-jdk-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/ubuntu/noble/Dockerfile) + - [`17.0.17_10-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.17_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.16_8-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: +- `17.0.17_10-jdk-windowsservercore`, `17-jdk-windowsservercore`, `17-windowsservercore`: - - [`17.0.16_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.16_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.17_10-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.17_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.16_8-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: +- `17.0.17_10-jdk-nanoserver`, `17-jdk-nanoserver`, `17-nanoserver`: - - [`17.0.16_8-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.16_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.17_10-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.17_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `17.0.16_8-jre`, `17-jre`: +- `17.0.17_10-jre`, `17-jre`: - - [`17.0.16_8-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/ubuntu/noble/Dockerfile) - - [`17.0.16_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.16_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.17_10-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/ubuntu/noble/Dockerfile) + - [`17.0.17_10-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.17_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.16_8-jre-windowsservercore`, `17-jre-windowsservercore`: +- `17.0.17_10-jre-windowsservercore`, `17-jre-windowsservercore`: - - [`17.0.16_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`17.0.16_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`17.0.17_10-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`17.0.17_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `17.0.16_8-jre-nanoserver`, `17-jre-nanoserver`: +- `17.0.17_10-jre-nanoserver`, `17-jre-nanoserver`: - - [`17.0.16_8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`17.0.16_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/17/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`17.0.17_10-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`17.0.17_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/17/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.8_9-jdk`, `21-jdk`, `21`: +- `21.0.9_10-jdk`, `21-jdk`, `21`: - - [`21.0.8_9-jdk-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/ubuntu/noble/Dockerfile) - - [`21.0.8_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.8_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.9_10-jdk-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/ubuntu/noble/Dockerfile) + - [`21.0.9_10-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.9_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.8_9-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: +- `21.0.9_10-jdk-windowsservercore`, `21-jdk-windowsservercore`, `21-windowsservercore`: - - [`21.0.8_9-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.8_9-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.9_10-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.9_10-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.8_9-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: +- `21.0.9_10-jdk-nanoserver`, `21-jdk-nanoserver`, `21-nanoserver`: - - [`21.0.8_9-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.8_9-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.9_10-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.9_10-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `21.0.8_9-jre`, `21-jre`: +- `21.0.9_10-jre`, `21-jre`: - - [`21.0.8_9-jre-noble`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/ubuntu/noble/Dockerfile) - - [`21.0.8_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.8_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.9_10-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/ubuntu/noble/Dockerfile) + - [`21.0.9_10-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.9_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.8_9-jre-windowsservercore`, `21-jre-windowsservercore`: +- `21.0.9_10-jre-windowsservercore`, `21-jre-windowsservercore`: - - [`21.0.8_9-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`21.0.8_9-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`21.0.9_10-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`21.0.9_10-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `21.0.8_9-jre-nanoserver`, `21-jre-nanoserver`: +- `21.0.9_10-jre-nanoserver`, `21-jre-nanoserver`: - - [`21.0.8_9-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`21.0.8_9-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/fc54f27893bb7c1ffb1d7eb82f2d22d7605e57bc/21/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`21.0.9_10-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`21.0.9_10-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/21/jre/windows/nanoserver-ltsc2022/Dockerfile) -- `25_36-jdk`, `25-jdk`, `25`, `latest`: +- `25.0.1_8-jdk`, `25-jdk`, `25`, `latest`: - - [`25_36-jdk-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/ubuntu/noble/Dockerfile) - - [`25_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1_8-jdk-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/ubuntu/noble/Dockerfile) + - [`25.0.1_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25_36-jdk-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: +- `25.0.1_8-jdk-windowsservercore`, `25-jdk-windowsservercore`, `25-windowsservercore`: - - [`25_36-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25_36-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1_8-jdk-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25.0.1_8-jdk-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/windowsservercore-ltsc2022/Dockerfile) -- `25_36-jdk-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: +- `25.0.1_8-jdk-nanoserver`, `25-jdk-nanoserver`, `25-nanoserver`: - - [`25_36-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) - - [`25_36-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) + - [`25.0.1_8-jdk-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/nanoserver-ltsc2025/Dockerfile) + - [`25.0.1_8-jdk-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jdk/windows/nanoserver-ltsc2022/Dockerfile) -- `25_36-jre`, `25-jre`: +- `25.0.1_8-jre`, `25-jre`: - - [`25_36-jre-noble`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/ubuntu/noble/Dockerfile) - - [`25_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1_8-jre-noble`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/ubuntu/noble/Dockerfile) + - [`25.0.1_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `25_36-jre-windowsservercore`, `25-jre-windowsservercore`: +- `25.0.1_8-jre-windowsservercore`, `25-jre-windowsservercore`: - - [`25_36-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) - - [`25_36-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) + - [`25.0.1_8-jre-windowsservercore-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2025/Dockerfile) + - [`25.0.1_8-jre-windowsservercore-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/windowsservercore-ltsc2022/Dockerfile) -- `25_36-jre-nanoserver`, `25-jre-nanoserver`: +- `25.0.1_8-jre-nanoserver`, `25-jre-nanoserver`: - - [`25_36-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2025/Dockerfile) - - [`25_36-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/7fd47fcdc91108218327496869ec8d2f441eebb7/25/jre/windows/nanoserver-ltsc2022/Dockerfile) + - [`25.0.1_8-jre-nanoserver-ltsc2025`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/nanoserver-ltsc2025/Dockerfile) + - [`25.0.1_8-jre-nanoserver-ltsc2022`](https://github.com/adoptium/containers/blob/38127871aaedc393f8bd5abbc0b910b2a7569824/25/jre/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/elixir/README.md b/elixir/README.md index d7751f7ee28f..48579a82e0b2 100644 --- a/elixir/README.md +++ b/elixir/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.19.1`, `1.19`, `latest`, `1.19.1-otp-28`, `1.19-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/Dockerfile) +- [`1.19.2`, `1.19`, `latest`, `1.19.2-otp-28`, `1.19-otp-28`, `otp-28`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/Dockerfile) -- [`1.19.1-slim`, `1.19-slim`, `slim`, `1.19.1-otp-28-slim`, `1.19-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/slim/Dockerfile) +- [`1.19.2-slim`, `1.19-slim`, `slim`, `1.19.2-otp-28-slim`, `1.19-otp-28-slim`, `otp-28-slim`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/slim/Dockerfile) -- [`1.19.1-alpine`, `1.19-alpine`, `alpine`, `1.19.1-otp-28-alpine`, `1.19-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/alpine/Dockerfile) +- [`1.19.2-alpine`, `1.19-alpine`, `alpine`, `1.19.2-otp-28-alpine`, `1.19-otp-28-alpine`, `otp-28-alpine`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/alpine/Dockerfile) -- [`1.19.1-otp-26`, `1.19-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26/Dockerfile) +- [`1.19.2-otp-26`, `1.19-otp-26`, `otp-26`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-26/Dockerfile) -- [`1.19.1-otp-26-alpine`, `1.19-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26-alpine/Dockerfile) +- [`1.19.2-otp-26-alpine`, `1.19-otp-26-alpine`, `otp-26-alpine`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-26-alpine/Dockerfile) -- [`1.19.1-otp-26-slim`, `1.19-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-26-slim/Dockerfile) +- [`1.19.2-otp-26-slim`, `1.19-otp-26-slim`, `otp-26-slim`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-26-slim/Dockerfile) -- [`1.19.1-otp-27`, `1.19-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27/Dockerfile) +- [`1.19.2-otp-27`, `1.19-otp-27`, `otp-27`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-27/Dockerfile) -- [`1.19.1-otp-27-alpine`, `1.19-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27-alpine/Dockerfile) +- [`1.19.2-otp-27-alpine`, `1.19-otp-27-alpine`, `otp-27-alpine`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-27-alpine/Dockerfile) -- [`1.19.1-otp-27-slim`, `1.19-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/5d947a06489ef4f4a2b6c2fb6b476009d52509ab/1.19/otp-27-slim/Dockerfile) +- [`1.19.2-otp-27-slim`, `1.19-otp-27-slim`, `otp-27-slim`](https://github.com/erlef/docker-elixir/blob/8174a78c4792a9c546674222b86d807d83d6e17b/1.19/otp-27-slim/Dockerfile) - [`1.18.4`, `1.18`, `1.18.4-otp-28`, `1.18-otp-28`](https://github.com/erlef/docker-elixir/blob/1e80f1b239228598d4d086882e92a9cfe585c1b2/1.18/Dockerfile) diff --git a/traefik/README.md b/traefik/README.md index 2f9774a8d1c3..dcbc6789c1bf 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`v3.6.0-rc1-windowsservercore-ltsc2022`, `3.6.0-rc1-windowsservercore-ltsc2022`, `ramequin-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/windows/servercore-ltsc2022/Dockerfile) +- [`v3.6.0-windowsservercore-ltsc2022`, `3.6.0-windowsservercore-ltsc2022`, `v3.6-windowsservercore-ltsc2022`, `3.6-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `ramequin-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fc7224b7002a6a4df194014ab818103b4495d003/v3.6/windows/servercore-ltsc2022/Dockerfile) -- [`v3.6.0-rc1-nanoserver-ltsc2022`, `3.6.0-rc1-nanoserver-ltsc2022`, `ramequin-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.6.0-nanoserver-ltsc2022`, `3.6.0-nanoserver-ltsc2022`, `v3.6-nanoserver-ltsc2022`, `3.6-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `ramequin-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/fc7224b7002a6a4df194014ab818103b4495d003/v3.6/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.6.0-rc1`, `3.6.0-rc1`, `ramequin`](https://github.com/traefik/traefik-library-image/blob/d7be81e1248be9c8fba7c3036c185a6574c562a7/v3.6/alpine/Dockerfile) +- [`v3.6.0`, `3.6.0`, `v3.6`, `3.6`, `v3`, `3`, `ramequin`, `latest`](https://github.com/traefik/traefik-library-image/blob/fc7224b7002a6a4df194014ab818103b4495d003/v3.6/alpine/Dockerfile) -- [`v3.5.4-windowsservercore-ltsc2022`, `3.5.4-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `v3-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/windows/servercore-ltsc2022/Dockerfile) +- [`v3.5.6-windowsservercore-ltsc2022`, `3.5.6-windowsservercore-ltsc2022`, `v3.5-windowsservercore-ltsc2022`, `3.5-windowsservercore-ltsc2022`, `chabichou-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f6417863a02885a4a85b6b973dcfc218a9a54626/v3.5/windows/servercore-ltsc2022/Dockerfile) -- [`v3.5.4-nanoserver-ltsc2022`, `3.5.4-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `v3-nanoserver-ltsc2022`, `3-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`, `nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/windows/nanoserver-ltsc2022/Dockerfile) +- [`v3.5.6-nanoserver-ltsc2022`, `3.5.6-nanoserver-ltsc2022`, `v3.5-nanoserver-ltsc2022`, `3.5-nanoserver-ltsc2022`, `chabichou-nanoserver-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/f6417863a02885a4a85b6b973dcfc218a9a54626/v3.5/windows/nanoserver-ltsc2022/Dockerfile) -- [`v3.5.4`, `3.5.4`, `v3.5`, `3.5`, `v3`, `3`, `chabichou`, `latest`](https://github.com/traefik/traefik-library-image/blob/598439a1070b095b274ee21f58722c21d04704a1/v3.5/alpine/Dockerfile) +- [`v3.5.6`, `3.5.6`, `v3.5`, `3.5`, `chabichou`](https://github.com/traefik/traefik-library-image/blob/f6417863a02885a4a85b6b973dcfc218a9a54626/v3.5/alpine/Dockerfile) - [`v2.11.30-windowsservercore-ltsc2022`, `2.11.30-windowsservercore-ltsc2022`, `v2.11-windowsservercore-ltsc2022`, `2.11-windowsservercore-ltsc2022`, `v2-windowsservercore-ltsc2022`, `2-windowsservercore-ltsc2022`, `mimolette-windowsservercore-ltsc2022`](https://github.com/traefik/traefik-library-image/blob/b40158af0e38f89c8ab9203591f6b8b1894cf6aa/v2.11/windows/servercore-ltsc2022/Dockerfile) From f54ba1cde9e91c574f469c1e2f24965a6e519640 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 10 Nov 2025 10:01:15 -0800 Subject: [PATCH 2681/2686] Update User-Agent --- push.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.pl b/push.pl index d8895772b030..ef7eee98e099 100755 --- a/push.pl +++ b/push.pl @@ -36,7 +36,7 @@ die 'no repos specified' unless @ARGV; my $ua = Mojo::UserAgent->new->max_redirects(10); -$ua->transactor->name('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36'); +$ua->transactor->name($ENV{DOCS_PUSH_USER_AGENT} || 'https://github.com/docker-library/docs/tree/HEAD/push.pl'); my $term = Term::ReadLine->new('docker-library-docs-push'); unless (defined $username) { From f8999215b83f629fbaa2a562384d78f07919d935 Mon Sep 17 00:00:00 2001 From: Brandon Pfeifer Date: Mon, 10 Nov 2025 13:32:44 -0500 Subject: [PATCH 2682/2686] chore(influxdb): include notice for tag switch-over (#2635) --- influxdb/content.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/influxdb/content.md b/influxdb/content.md index 1b5eb1e559bb..53d4594e2442 100644 --- a/influxdb/content.md +++ b/influxdb/content.md @@ -1,3 +1,7 @@ +# Notice + +On February 3, 2026, the latest tag for InfluxDB will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your deployments. + # What is InfluxDB? %%LOGO%% From 18455066afd55d30e51534f79f9e9d765eb00f33 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Nov 2025 11:11:11 -0800 Subject: [PATCH 2683/2686] Run update.sh --- composer/README.md | 4 +- influxdb/README.md | 4 ++ mariadb/README.md | 24 +++++----- rocket.chat/README.md | 6 +-- tomcat/README.md | 104 +++++++++++++++++++++--------------------- 5 files changed, 73 insertions(+), 69 deletions(-) diff --git a/composer/README.md b/composer/README.md index 4697b2b96ba1..3a74d43a69ce 100644 --- a/composer/README.md +++ b/composer/README.md @@ -26,9 +26,9 @@ WARNING: - [`2.8.12`, `2.8`, `2`, `latest`](https://github.com/composer/docker/blob/517441df1032e9914b7b7ab43e8ad0ce0d05a14e/latest/Dockerfile) -- [`2.2.25`, `2.2`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/2.2/Dockerfile) +- [`2.9.0-RC1`, `2.9`](https://github.com/composer/docker/blob/1e5d03ca1b13409821f5562358e1a17f5e4debc9/2.9/Dockerfile) -- [`1.10.27`, `1.10`, `1`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/1.10/Dockerfile) +- [`2.2.25`, `2.2`](https://github.com/composer/docker/blob/a037fe423a4fef8030b2a8c3131da0934a6295dd/2.2/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 8508d517baad..9bfd4cd59f68 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -75,6 +75,10 @@ WARNING: - **Source of this description**: [docs repo's `influxdb/` directory](https://github.com/docker-library/docs/tree/master/influxdb) ([history](https://github.com/docker-library/docs/commits/master/influxdb)) +# Notice + +On February 3, 2026, the latest tag for InfluxDB will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your deployments. + # What is InfluxDB? ![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png) diff --git a/mariadb/README.md b/mariadb/README.md index 55c147215b0f..d978ce13b459 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -26,29 +26,29 @@ Also see the ["Getting Help with MariaDB" article on the MariaDB Knowledge Base] # Supported tags and respective `Dockerfile` links -- [`12.1.1-ubi10-rc`, `12.1-ubi10-rc`, `12.1.1-ubi-rc`, `12.1-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/12.1-ubi/Dockerfile) +- [`12.1.1-ubi10-rc`, `12.1-ubi10-rc`, `12.1.1-ubi-rc`, `12.1-ubi-rc`](https://github.com/MariaDB/mariadb-docker/blob/46c443c353dea7d232536a03df3b8a5b998cc78d/12.1-ubi/Dockerfile) -- [`12.1.1-noble-rc`, `12.1-noble-rc`, `12.1.1-rc`, `12.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/12.1/Dockerfile) +- [`12.1.1-noble-rc`, `12.1-noble-rc`, `12.1.1-rc`, `12.1-rc`](https://github.com/MariaDB/mariadb-docker/blob/46c443c353dea7d232536a03df3b8a5b998cc78d/12.1/Dockerfile) -- [`12.0.2-ubi10`, `12.0-ubi10`, `12-ubi10`, `12.0.2-ubi`, `12.0-ubi`, `12-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/12.0-ubi/Dockerfile) +- [`12.0.2-ubi10`, `12.0-ubi10`, `12-ubi10`, `12.0.2-ubi`, `12.0-ubi`, `12-ubi`](https://github.com/MariaDB/mariadb-docker/blob/46c443c353dea7d232536a03df3b8a5b998cc78d/12.0-ubi/Dockerfile) -- [`12.0.2-noble`, `12.0-noble`, `12-noble`, `noble`, `12.0.2`, `12.0`, `12`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/6a5611cd9dd70a8dcb24195cc8dd2147dd6471e3/12.0/Dockerfile) +- [`12.0.2-noble`, `12.0-noble`, `12-noble`, `noble`, `12.0.2`, `12.0`, `12`, `latest`](https://github.com/MariaDB/mariadb-docker/blob/46c443c353dea7d232536a03df3b8a5b998cc78d/12.0/Dockerfile) -- [`11.8.3-ubi9`, `11.8-ubi9`, `11-ubi9`, `lts-ubi9`, `11.8.3-ubi`, `11.8-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/11.8-ubi/Dockerfile) +- [`11.8.4-ubi9`, `11.8-ubi9`, `11-ubi9`, `lts-ubi9`, `11.8.4-ubi`, `11.8-ubi`, `11-ubi`, `lts-ubi`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/11.8-ubi/Dockerfile) -- [`11.8.3-noble`, `11.8-noble`, `11-noble`, `lts-noble`, `11.8.3`, `11.8`, `11`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/11.8/Dockerfile) +- [`11.8.4-noble`, `11.8-noble`, `11-noble`, `lts-noble`, `11.8.4`, `11.8`, `11`, `lts`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/11.8/Dockerfile) -- [`11.4.8-ubi9`, `11.4-ubi9`, `11.4.8-ubi`, `11.4-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/11.4-ubi/Dockerfile) +- [`11.4.9-ubi9`, `11.4-ubi9`, `11.4.9-ubi`, `11.4-ubi`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/11.4-ubi/Dockerfile) -- [`11.4.8-noble`, `11.4-noble`, `11.4.8`, `11.4`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/11.4/Dockerfile) +- [`11.4.9-noble`, `11.4-noble`, `11.4.9`, `11.4`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/11.4/Dockerfile) -- [`10.11.14-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.14-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/10.11-ubi/Dockerfile) +- [`10.11.15-ubi9`, `10.11-ubi9`, `10-ubi9`, `10.11.15-ubi`, `10.11-ubi`, `10-ubi`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/10.11-ubi/Dockerfile) -- [`10.11.14-jammy`, `10.11-jammy`, `10-jammy`, `10.11.14`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/10.11/Dockerfile) +- [`10.11.15-jammy`, `10.11-jammy`, `10-jammy`, `10.11.15`, `10.11`, `10`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/10.11/Dockerfile) -- [`10.6.23-ubi9`, `10.6-ubi9`, `10.6.23-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/dd7e1e1e35422011e9dbfa46f22c9e24f49e9fba/10.6-ubi/Dockerfile) +- [`10.6.24-ubi9`, `10.6-ubi9`, `10.6.24-ubi`, `10.6-ubi`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/10.6-ubi/Dockerfile) -- [`10.6.23-jammy`, `10.6-jammy`, `10.6.23`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/cdffb7d2fd712249f3f386497117825be6442afa/10.6/Dockerfile) +- [`10.6.24-jammy`, `10.6-jammy`, `10.6.24`, `10.6`](https://github.com/MariaDB/mariadb-docker/blob/5ad00a82b5bb2705825c7afb670f6547b1bed316/10.6/Dockerfile) # Quick reference (cont.) diff --git a/rocket.chat/README.md b/rocket.chat/README.md index c0256752711f..9e1d07f61f59 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -24,11 +24,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.12.0`, `7.12`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/129d590b56996d514da7a824c2d894b238ec4ed1/7.12/Dockerfile) +- [`7.12.1`, `7.12`, `7`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/c673436d5d242050c176d666e62a9e6fe3ec2aa9/7.12/Dockerfile) -- [`7.11.0`, `7.11`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.11/Dockerfile) +- [`7.11.1`, `7.11`](https://github.com/RocketChat/Docker.Official.Image/blob/c673436d5d242050c176d666e62a9e6fe3ec2aa9/7.11/Dockerfile) -- [`7.10.3`, `7.10`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.10/Dockerfile) +- [`7.10.4`, `7.10`](https://github.com/RocketChat/Docker.Official.Image/blob/c673436d5d242050c176d666e62a9e6fe3ec2aa9/7.10/Dockerfile) - [`7.9.5`, `7.9`](https://github.com/RocketChat/Docker.Official.Image/blob/962b38b0911a42f671939098c7983897f1601521/7.9/Dockerfile) diff --git a/tomcat/README.md b/tomcat/README.md index a958629835b4..7231b931262c 100644 --- a/tomcat/README.md +++ b/tomcat/README.md @@ -24,109 +24,109 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11.0.13-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.13-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.13-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.13`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk25/temurin-noble/Dockerfile) +- [`11.0.14-jdk25-temurin-noble`, `11.0-jdk25-temurin-noble`, `11-jdk25-temurin-noble`, `jdk25-temurin-noble`, `11.0.14-jdk25-temurin`, `11.0-jdk25-temurin`, `11-jdk25-temurin`, `jdk25-temurin`, `11.0.14-jdk25`, `11.0-jdk25`, `11-jdk25`, `jdk25`, `11.0.14`, `11.0`, `11`, `latest`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk25/temurin-noble/Dockerfile) -- [`11.0.13-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.13-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.13-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre25/temurin-noble/Dockerfile) +- [`11.0.14-jre25-temurin-noble`, `11.0-jre25-temurin-noble`, `11-jre25-temurin-noble`, `jre25-temurin-noble`, `11.0.14-jre25-temurin`, `11.0-jre25-temurin`, `11-jre25-temurin`, `jre25-temurin`, `11.0.14-jre25`, `11.0-jre25`, `11-jre25`, `jre25`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre25/temurin-noble/Dockerfile) -- [`11.0.13-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk25/temurin-jammy/Dockerfile) +- [`11.0.14-jdk25-temurin-jammy`, `11.0-jdk25-temurin-jammy`, `11-jdk25-temurin-jammy`, `jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk25/temurin-jammy/Dockerfile) -- [`11.0.13-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre25/temurin-jammy/Dockerfile) +- [`11.0.14-jre25-temurin-jammy`, `11.0-jre25-temurin-jammy`, `11-jre25-temurin-jammy`, `jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre25/temurin-jammy/Dockerfile) -- [`11.0.13-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.13-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.13-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk21/temurin-noble/Dockerfile) +- [`11.0.14-jdk21-temurin-noble`, `11.0-jdk21-temurin-noble`, `11-jdk21-temurin-noble`, `jdk21-temurin-noble`, `11.0.14-jdk21-temurin`, `11.0-jdk21-temurin`, `11-jdk21-temurin`, `jdk21-temurin`, `11.0.14-jdk21`, `11.0-jdk21`, `11-jdk21`, `jdk21`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk21/temurin-noble/Dockerfile) -- [`11.0.13-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.13-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.13-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre21/temurin-noble/Dockerfile) +- [`11.0.14-jre21-temurin-noble`, `11.0-jre21-temurin-noble`, `11-jre21-temurin-noble`, `jre21-temurin-noble`, `11.0.14-jre21-temurin`, `11.0-jre21-temurin`, `11-jre21-temurin`, `jre21-temurin`, `11.0.14-jre21`, `11.0-jre21`, `11-jre21`, `jre21`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre21/temurin-noble/Dockerfile) -- [`11.0.13-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk21/temurin-jammy/Dockerfile) +- [`11.0.14-jdk21-temurin-jammy`, `11.0-jdk21-temurin-jammy`, `11-jdk21-temurin-jammy`, `jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk21/temurin-jammy/Dockerfile) -- [`11.0.13-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre21/temurin-jammy/Dockerfile) +- [`11.0.14-jre21-temurin-jammy`, `11.0-jre21-temurin-jammy`, `11-jre21-temurin-jammy`, `jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre21/temurin-jammy/Dockerfile) -- [`11.0.13-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.13-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.13-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk17/temurin-noble/Dockerfile) +- [`11.0.14-jdk17-temurin-noble`, `11.0-jdk17-temurin-noble`, `11-jdk17-temurin-noble`, `jdk17-temurin-noble`, `11.0.14-jdk17-temurin`, `11.0-jdk17-temurin`, `11-jdk17-temurin`, `jdk17-temurin`, `11.0.14-jdk17`, `11.0-jdk17`, `11-jdk17`, `jdk17`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk17/temurin-noble/Dockerfile) -- [`11.0.13-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.13-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.13-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre17/temurin-noble/Dockerfile) +- [`11.0.14-jre17-temurin-noble`, `11.0-jre17-temurin-noble`, `11-jre17-temurin-noble`, `jre17-temurin-noble`, `11.0.14-jre17-temurin`, `11.0-jre17-temurin`, `11-jre17-temurin`, `jre17-temurin`, `11.0.14-jre17`, `11.0-jre17`, `11-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre17/temurin-noble/Dockerfile) -- [`11.0.13-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jdk17/temurin-jammy/Dockerfile) +- [`11.0.14-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11-jdk17-temurin-jammy`, `jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jdk17/temurin-jammy/Dockerfile) -- [`11.0.13-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/1ecfffb225b58096cf8b93aed73fa25c2320d99c/11.0/jre17/temurin-jammy/Dockerfile) +- [`11.0.14-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11-jre17-temurin-jammy`, `jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/9d4b3677fa27c45855813375487d531591202deb/11.0/jre17/temurin-jammy/Dockerfile) -- [`10.1.48-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.48-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.48-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.48`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk25/temurin-noble/Dockerfile) +- [`10.1.49-jdk25-temurin-noble`, `10.1-jdk25-temurin-noble`, `10-jdk25-temurin-noble`, `10.1.49-jdk25-temurin`, `10.1-jdk25-temurin`, `10-jdk25-temurin`, `10.1.49-jdk25`, `10.1-jdk25`, `10-jdk25`, `10.1.49`, `10.1`, `10`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk25/temurin-noble/Dockerfile) -- [`10.1.48-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.48-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.48-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre25/temurin-noble/Dockerfile) +- [`10.1.49-jre25-temurin-noble`, `10.1-jre25-temurin-noble`, `10-jre25-temurin-noble`, `10.1.49-jre25-temurin`, `10.1-jre25-temurin`, `10-jre25-temurin`, `10.1.49-jre25`, `10.1-jre25`, `10-jre25`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre25/temurin-noble/Dockerfile) -- [`10.1.48-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk25/temurin-jammy/Dockerfile) +- [`10.1.49-jdk25-temurin-jammy`, `10.1-jdk25-temurin-jammy`, `10-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk25/temurin-jammy/Dockerfile) -- [`10.1.48-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre25/temurin-jammy/Dockerfile) +- [`10.1.49-jre25-temurin-jammy`, `10.1-jre25-temurin-jammy`, `10-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre25/temurin-jammy/Dockerfile) -- [`10.1.48-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.48-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.48-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk21/temurin-noble/Dockerfile) +- [`10.1.49-jdk21-temurin-noble`, `10.1-jdk21-temurin-noble`, `10-jdk21-temurin-noble`, `10.1.49-jdk21-temurin`, `10.1-jdk21-temurin`, `10-jdk21-temurin`, `10.1.49-jdk21`, `10.1-jdk21`, `10-jdk21`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk21/temurin-noble/Dockerfile) -- [`10.1.48-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.48-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.48-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre21/temurin-noble/Dockerfile) +- [`10.1.49-jre21-temurin-noble`, `10.1-jre21-temurin-noble`, `10-jre21-temurin-noble`, `10.1.49-jre21-temurin`, `10.1-jre21-temurin`, `10-jre21-temurin`, `10.1.49-jre21`, `10.1-jre21`, `10-jre21`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre21/temurin-noble/Dockerfile) -- [`10.1.48-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk21/temurin-jammy/Dockerfile) +- [`10.1.49-jdk21-temurin-jammy`, `10.1-jdk21-temurin-jammy`, `10-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk21/temurin-jammy/Dockerfile) -- [`10.1.48-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre21/temurin-jammy/Dockerfile) +- [`10.1.49-jre21-temurin-jammy`, `10.1-jre21-temurin-jammy`, `10-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre21/temurin-jammy/Dockerfile) -- [`10.1.48-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.48-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.48-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk17/temurin-noble/Dockerfile) +- [`10.1.49-jdk17-temurin-noble`, `10.1-jdk17-temurin-noble`, `10-jdk17-temurin-noble`, `10.1.49-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `10.1.49-jdk17`, `10.1-jdk17`, `10-jdk17`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk17/temurin-noble/Dockerfile) -- [`10.1.48-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.48-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.48-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre17/temurin-noble/Dockerfile) +- [`10.1.49-jre17-temurin-noble`, `10.1-jre17-temurin-noble`, `10-jre17-temurin-noble`, `10.1.49-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `10.1.49-jre17`, `10.1-jre17`, `10-jre17`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre17/temurin-noble/Dockerfile) -- [`10.1.48-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk17/temurin-jammy/Dockerfile) +- [`10.1.49-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk17/temurin-jammy/Dockerfile) -- [`10.1.48-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre17/temurin-jammy/Dockerfile) +- [`10.1.49-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre17/temurin-jammy/Dockerfile) -- [`10.1.48-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.48-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.48-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk11/temurin-noble/Dockerfile) +- [`10.1.49-jdk11-temurin-noble`, `10.1-jdk11-temurin-noble`, `10-jdk11-temurin-noble`, `10.1.49-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `10.1.49-jdk11`, `10.1-jdk11`, `10-jdk11`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk11/temurin-noble/Dockerfile) -- [`10.1.48-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.48-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.48-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre11/temurin-noble/Dockerfile) +- [`10.1.49-jre11-temurin-noble`, `10.1-jre11-temurin-noble`, `10-jre11-temurin-noble`, `10.1.49-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `10.1.49-jre11`, `10.1-jre11`, `10-jre11`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre11/temurin-noble/Dockerfile) -- [`10.1.48-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jdk11/temurin-jammy/Dockerfile) +- [`10.1.49-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jdk11/temurin-jammy/Dockerfile) -- [`10.1.48-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/480e55f6c958e717cc9aa8923cffa4fa3d362133/10.1/jre11/temurin-jammy/Dockerfile) +- [`10.1.49-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/c792d903e012130436884197adcdfb8018c5f426/10.1/jre11/temurin-jammy/Dockerfile) -- [`9.0.111-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.111-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.111-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.111`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk25/temurin-noble/Dockerfile) +- [`9.0.112-jdk25-temurin-noble`, `9.0-jdk25-temurin-noble`, `9-jdk25-temurin-noble`, `9.0.112-jdk25-temurin`, `9.0-jdk25-temurin`, `9-jdk25-temurin`, `9.0.112-jdk25`, `9.0-jdk25`, `9-jdk25`, `9.0.112`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk25/temurin-noble/Dockerfile) -- [`9.0.111-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.111-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.111-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre25/temurin-noble/Dockerfile) +- [`9.0.112-jre25-temurin-noble`, `9.0-jre25-temurin-noble`, `9-jre25-temurin-noble`, `9.0.112-jre25-temurin`, `9.0-jre25-temurin`, `9-jre25-temurin`, `9.0.112-jre25`, `9.0-jre25`, `9-jre25`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre25/temurin-noble/Dockerfile) -- [`9.0.111-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk25/temurin-jammy/Dockerfile) +- [`9.0.112-jdk25-temurin-jammy`, `9.0-jdk25-temurin-jammy`, `9-jdk25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk25/temurin-jammy/Dockerfile) -- [`9.0.111-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre25/temurin-jammy/Dockerfile) +- [`9.0.112-jre25-temurin-jammy`, `9.0-jre25-temurin-jammy`, `9-jre25-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre25/temurin-jammy/Dockerfile) -- [`9.0.111-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.111-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.111-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/temurin-noble/Dockerfile) +- [`9.0.112-jdk21-temurin-noble`, `9.0-jdk21-temurin-noble`, `9-jdk21-temurin-noble`, `9.0.112-jdk21-temurin`, `9.0-jdk21-temurin`, `9-jdk21-temurin`, `9.0.112-jdk21`, `9.0-jdk21`, `9-jdk21`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk21/temurin-noble/Dockerfile) -- [`9.0.111-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.111-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.111-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre21/temurin-noble/Dockerfile) +- [`9.0.112-jre21-temurin-noble`, `9.0-jre21-temurin-noble`, `9-jre21-temurin-noble`, `9.0.112-jre21-temurin`, `9.0-jre21-temurin`, `9-jre21-temurin`, `9.0.112-jre21`, `9.0-jre21`, `9-jre21`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre21/temurin-noble/Dockerfile) -- [`9.0.111-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/temurin-jammy/Dockerfile) +- [`9.0.112-jdk21-temurin-jammy`, `9.0-jdk21-temurin-jammy`, `9-jdk21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk21/temurin-jammy/Dockerfile) -- [`9.0.111-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre21/temurin-jammy/Dockerfile) +- [`9.0.112-jre21-temurin-jammy`, `9.0-jre21-temurin-jammy`, `9-jre21-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre21/temurin-jammy/Dockerfile) -- [`9.0.111-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.111-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk21/corretto-al2/Dockerfile) +- [`9.0.112-jdk21-corretto-al2`, `9.0-jdk21-corretto-al2`, `9-jdk21-corretto-al2`, `9.0.112-jdk21-corretto`, `9.0-jdk21-corretto`, `9-jdk21-corretto`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk21/corretto-al2/Dockerfile) -- [`9.0.111-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.111-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.111-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/temurin-noble/Dockerfile) +- [`9.0.112-jdk17-temurin-noble`, `9.0-jdk17-temurin-noble`, `9-jdk17-temurin-noble`, `9.0.112-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.112-jdk17`, `9.0-jdk17`, `9-jdk17`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk17/temurin-noble/Dockerfile) -- [`9.0.111-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.111-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.111-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre17/temurin-noble/Dockerfile) +- [`9.0.112-jre17-temurin-noble`, `9.0-jre17-temurin-noble`, `9-jre17-temurin-noble`, `9.0.112-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.112-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre17/temurin-noble/Dockerfile) -- [`9.0.111-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/temurin-jammy/Dockerfile) +- [`9.0.112-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk17/temurin-jammy/Dockerfile) -- [`9.0.111-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre17/temurin-jammy/Dockerfile) +- [`9.0.112-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre17/temurin-jammy/Dockerfile) -- [`9.0.111-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.111-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk17/corretto-al2/Dockerfile) +- [`9.0.112-jdk17-corretto-al2`, `9.0-jdk17-corretto-al2`, `9-jdk17-corretto-al2`, `9.0.112-jdk17-corretto`, `9.0-jdk17-corretto`, `9-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk17/corretto-al2/Dockerfile) -- [`9.0.111-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.111-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.111-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/temurin-noble/Dockerfile) +- [`9.0.112-jdk11-temurin-noble`, `9.0-jdk11-temurin-noble`, `9-jdk11-temurin-noble`, `9.0.112-jdk11-temurin`, `9.0-jdk11-temurin`, `9-jdk11-temurin`, `9.0.112-jdk11`, `9.0-jdk11`, `9-jdk11`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk11/temurin-noble/Dockerfile) -- [`9.0.111-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.111-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.111-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre11/temurin-noble/Dockerfile) +- [`9.0.112-jre11-temurin-noble`, `9.0-jre11-temurin-noble`, `9-jre11-temurin-noble`, `9.0.112-jre11-temurin`, `9.0-jre11-temurin`, `9-jre11-temurin`, `9.0.112-jre11`, `9.0-jre11`, `9-jre11`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre11/temurin-noble/Dockerfile) -- [`9.0.111-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/temurin-jammy/Dockerfile) +- [`9.0.112-jdk11-temurin-jammy`, `9.0-jdk11-temurin-jammy`, `9-jdk11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk11/temurin-jammy/Dockerfile) -- [`9.0.111-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre11/temurin-jammy/Dockerfile) +- [`9.0.112-jre11-temurin-jammy`, `9.0-jre11-temurin-jammy`, `9-jre11-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre11/temurin-jammy/Dockerfile) -- [`9.0.111-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.111-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk11/corretto-al2/Dockerfile) +- [`9.0.112-jdk11-corretto-al2`, `9.0-jdk11-corretto-al2`, `9-jdk11-corretto-al2`, `9.0.112-jdk11-corretto`, `9.0-jdk11-corretto`, `9-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk11/corretto-al2/Dockerfile) -- [`9.0.111-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.111-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.111-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/temurin-noble/Dockerfile) +- [`9.0.112-jdk8-temurin-noble`, `9.0-jdk8-temurin-noble`, `9-jdk8-temurin-noble`, `9.0.112-jdk8-temurin`, `9.0-jdk8-temurin`, `9-jdk8-temurin`, `9.0.112-jdk8`, `9.0-jdk8`, `9-jdk8`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk8/temurin-noble/Dockerfile) -- [`9.0.111-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.111-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.111-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre8/temurin-noble/Dockerfile) +- [`9.0.112-jre8-temurin-noble`, `9.0-jre8-temurin-noble`, `9-jre8-temurin-noble`, `9.0.112-jre8-temurin`, `9.0-jre8-temurin`, `9-jre8-temurin`, `9.0.112-jre8`, `9.0-jre8`, `9-jre8`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre8/temurin-noble/Dockerfile) -- [`9.0.111-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/temurin-jammy/Dockerfile) +- [`9.0.112-jdk8-temurin-jammy`, `9.0-jdk8-temurin-jammy`, `9-jdk8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk8/temurin-jammy/Dockerfile) -- [`9.0.111-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jre8/temurin-jammy/Dockerfile) +- [`9.0.112-jre8-temurin-jammy`, `9.0-jre8-temurin-jammy`, `9-jre8-temurin-jammy`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jre8/temurin-jammy/Dockerfile) -- [`9.0.111-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.111-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/64514e960376b7e889c705ce48f6a57af1cff0de/9.0/jdk8/corretto-al2/Dockerfile) +- [`9.0.112-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.112-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/a8e9ad4c755bcfe2d72e9a1a01dd1ef8d3495e2e/9.0/jdk8/corretto-al2/Dockerfile) # Quick reference (cont.) From 2ca68d55129fa7295813dc1a10a6f71f59338ae3 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Nov 2025 12:10:47 -0800 Subject: [PATCH 2684/2686] Run update.sh --- docker/README.md | 16 ++++++++-------- ghost/README.md | 8 ++++---- haproxy/README.md | 12 ++++++------ openjdk/README.md | 40 ++++++++++++++++++++-------------------- oraclelinux/README.md | 22 +++++++++++----------- php/README.md | 28 ++++++++++++++++++++++++++++ rabbitmq/README.md | 16 ++++++++-------- rust/README.md | 18 +++++++++--------- wordpress/README.md | 24 ++++++++++++------------ 9 files changed, 106 insertions(+), 78 deletions(-) diff --git a/docker/README.md b/docker/README.md index 1227c4a4d63b..54a248069e50 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,15 +28,15 @@ WARNING: ## Simple Tags -- [`29.0.0-rc.2-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/cli/Dockerfile) +- [`29.0.0-rc.3-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/cli/Dockerfile) -- [`29.0.0-rc.2-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.2-dind-alpine3.22`, `29.0.0-rc.2`, `29-rc`, `rc`, `29.0.0-rc.2-alpine3.22`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/dind/Dockerfile) +- [`29.0.0-rc.3-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.3-dind-alpine3.22`, `29.0.0-rc.3`, `29-rc`, `rc`, `29.0.0-rc.3-alpine3.22`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/dind/Dockerfile) -- [`29.0.0-rc.2-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/dind-rootless/Dockerfile) +- [`29.0.0-rc.3-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/dind-rootless/Dockerfile) -- [`29.0.0-rc.2-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`29.0.0-rc.3-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) -- [`29.0.0-rc.2-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) +- [`29.0.0-rc.3-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) - [`28.5.2-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/cli/Dockerfile) @@ -50,10 +50,10 @@ WARNING: ## Shared Tags -- `29.0.0-rc.2-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: +- `29.0.0-rc.3-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: - - [`29.0.0-rc.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`29.0.0-rc.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/30aaaecb3e69c151fd7af0e9f590c97c6196d4d3/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) + - [`29.0.0-rc.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) + - [`29.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) - `28.5.2-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: diff --git a/ghost/README.md b/ghost/README.md index bce882246c45..1c20ada1e2cb 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`6.6.1-bookworm`, `6.6.1`, `6.6-bookworm`, `6.6`, `6-bookworm`, `6`, `bookworm`, `latest`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/6/bookworm/Dockerfile) +- [`6.7.0-bookworm`, `6.7.0`, `6.7-bookworm`, `6.7`, `6-bookworm`, `6`, `bookworm`, `latest`](https://github.com/docker-library/ghost/blob/eb0a79afcffa7ccb73293d2d12b628339034027a/6/bookworm/Dockerfile) -- [`6.6.1-alpine3.22`, `6.6.1-alpine`, `6.6-alpine3.22`, `6.6-alpine`, `6-alpine3.22`, `6-alpine`, `alpine3.22`, `alpine`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/6/alpine3.22/Dockerfile) +- [`6.7.0-alpine3.22`, `6.7.0-alpine`, `6.7-alpine3.22`, `6.7-alpine`, `6-alpine3.22`, `6-alpine`, `alpine3.22`, `alpine`](https://github.com/docker-library/ghost/blob/eb0a79afcffa7ccb73293d2d12b628339034027a/6/alpine3.22/Dockerfile) -- [`5.130.5-bookworm`, `5.130.5`, `5.130-bookworm`, `5.130`, `5-bookworm`, `5`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/5/bookworm/Dockerfile) +- [`5.130.5-bookworm`, `5.130.5`, `5.130-bookworm`, `5.130`, `5-bookworm`, `5`](https://github.com/docker-library/ghost/blob/eb0a79afcffa7ccb73293d2d12b628339034027a/5/bookworm/Dockerfile) -- [`5.130.5-alpine3.22`, `5.130.5-alpine`, `5.130-alpine3.22`, `5.130-alpine`, `5-alpine3.22`, `5-alpine`](https://github.com/docker-library/ghost/blob/2e4fb066fa751fd847156d90eca7ad6ca79d3466/5/alpine3.22/Dockerfile) +- [`5.130.5-alpine3.22`, `5.130.5-alpine`, `5.130-alpine3.22`, `5.130-alpine`, `5-alpine3.22`, `5-alpine`](https://github.com/docker-library/ghost/blob/eb0a79afcffa7ccb73293d2d12b628339034027a/5/alpine3.22/Dockerfile) # Quick reference (cont.) diff --git a/haproxy/README.md b/haproxy/README.md index 4ddf7e39920f..bdda02b5ee30 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -24,17 +24,17 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.3-dev11`, `3.3-dev`, `3.3-dev11-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.3/Dockerfile) +- [`3.3-dev12`, `3.3-dev`, `3.3-dev12-trixie`, `3.3-dev-trixie`](https://github.com/docker-library/haproxy/blob/9728348c87cd7a64e12d34b07a4d34eeb5d0a299/3.3/Dockerfile) -- [`3.3-dev11-alpine`, `3.3-dev-alpine`, `3.3-dev11-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.3/alpine/Dockerfile) +- [`3.3-dev12-alpine`, `3.3-dev-alpine`, `3.3-dev12-alpine3.22`, `3.3-dev-alpine3.22`](https://github.com/docker-library/haproxy/blob/9728348c87cd7a64e12d34b07a4d34eeb5d0a299/3.3/alpine/Dockerfile) -- [`3.2.7`, `3.2`, `latest`, `lts`, `3.2.7-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.2/Dockerfile) +- [`3.2.8`, `3.2`, `latest`, `lts`, `3.2.8-trixie`, `3.2-trixie`, `trixie`, `lts-trixie`](https://github.com/docker-library/haproxy/blob/4fd3078f4197405d08018930e1e0f386d7399be1/3.2/Dockerfile) -- [`3.2.7-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.7-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.2/alpine/Dockerfile) +- [`3.2.8-alpine`, `3.2-alpine`, `alpine`, `lts-alpine`, `3.2.8-alpine3.22`, `3.2-alpine3.22`, `alpine3.22`, `lts-alpine3.22`](https://github.com/docker-library/haproxy/blob/4fd3078f4197405d08018930e1e0f386d7399be1/3.2/alpine/Dockerfile) -- [`3.1.9`, `3.1`, `3.1.9-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.1/Dockerfile) +- [`3.1.10`, `3.1`, `3.1.10-trixie`, `3.1-trixie`](https://github.com/docker-library/haproxy/blob/b1e0ccb02df9fc432364fe391f9b094c1bc8688c/3.1/Dockerfile) -- [`3.1.9-alpine`, `3.1-alpine`, `3.1.9-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.1/alpine/Dockerfile) +- [`3.1.10-alpine`, `3.1-alpine`, `3.1.10-alpine3.22`, `3.1-alpine3.22`](https://github.com/docker-library/haproxy/blob/b1e0ccb02df9fc432364fe391f9b094c1bc8688c/3.1/alpine/Dockerfile) - [`3.0.12`, `3.0`, `3.0.12-trixie`, `3.0-trixie`](https://github.com/docker-library/haproxy/blob/3fc33290bfe9f17d101aa25f22fac86f4a71e571/3.0/Dockerfile) diff --git a/openjdk/README.md b/openjdk/README.md index 18b981866f4b..40d60fe5b2eb 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -42,43 +42,43 @@ The only tags which will continue to receive updates beyond July 2022 will be Ea ## Simple Tags -- [`26-ea-22-jdk-oraclelinux9`, `26-ea-22-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-ea-22-jdk-oracle`, `26-ea-22-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux9/Dockerfile) +- [`26-ea-23-jdk-oraclelinux9`, `26-ea-23-oraclelinux9`, `26-ea-jdk-oraclelinux9`, `26-ea-oraclelinux9`, `26-ea-23-jdk-oracle`, `26-ea-23-oracle`, `26-ea-jdk-oracle`, `26-ea-oracle`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/oraclelinux9/Dockerfile) -- [`26-ea-22-jdk-oraclelinux8`, `26-ea-22-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux8/Dockerfile) +- [`26-ea-23-jdk-oraclelinux8`, `26-ea-23-oraclelinux8`, `26-ea-jdk-oraclelinux8`, `26-ea-oraclelinux8`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/oraclelinux8/Dockerfile) -- [`26-ea-22-jdk-trixie`, `26-ea-22-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/trixie/Dockerfile) +- [`26-ea-23-jdk-trixie`, `26-ea-23-trixie`, `26-ea-jdk-trixie`, `26-ea-trixie`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/trixie/Dockerfile) -- [`26-ea-22-jdk-slim-trixie`, `26-ea-22-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-ea-22-jdk-slim`, `26-ea-22-slim`, `26-ea-jdk-slim`, `26-ea-slim`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/slim-trixie/Dockerfile) +- [`26-ea-23-jdk-slim-trixie`, `26-ea-23-slim-trixie`, `26-ea-jdk-slim-trixie`, `26-ea-slim-trixie`, `26-ea-23-jdk-slim`, `26-ea-23-slim`, `26-ea-jdk-slim`, `26-ea-slim`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/slim-trixie/Dockerfile) -- [`26-ea-22-jdk-bookworm`, `26-ea-22-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/bookworm/Dockerfile) +- [`26-ea-23-jdk-bookworm`, `26-ea-23-bookworm`, `26-ea-jdk-bookworm`, `26-ea-bookworm`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/bookworm/Dockerfile) -- [`26-ea-22-jdk-slim-bookworm`, `26-ea-22-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/slim-bookworm/Dockerfile) +- [`26-ea-23-jdk-slim-bookworm`, `26-ea-23-slim-bookworm`, `26-ea-jdk-slim-bookworm`, `26-ea-slim-bookworm`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/slim-bookworm/Dockerfile) -- [`26-ea-22-jdk-windowsservercore-ltsc2025`, `26-ea-22-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) +- [`26-ea-23-jdk-windowsservercore-ltsc2025`, `26-ea-23-windowsservercore-ltsc2025`, `26-ea-jdk-windowsservercore-ltsc2025`, `26-ea-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2025/Dockerfile) -- [`26-ea-22-jdk-windowsservercore-ltsc2022`, `26-ea-22-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) +- [`26-ea-23-jdk-windowsservercore-ltsc2022`, `26-ea-23-windowsservercore-ltsc2022`, `26-ea-jdk-windowsservercore-ltsc2022`, `26-ea-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2022/Dockerfile) -- [`26-ea-22-jdk-nanoserver-ltsc2025`, `26-ea-22-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2025/Dockerfile) +- [`26-ea-23-jdk-nanoserver-ltsc2025`, `26-ea-23-nanoserver-ltsc2025`, `26-ea-jdk-nanoserver-ltsc2025`, `26-ea-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/nanoserver-ltsc2025/Dockerfile) -- [`26-ea-22-jdk-nanoserver-ltsc2022`, `26-ea-22-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2022/Dockerfile) +- [`26-ea-23-jdk-nanoserver-ltsc2022`, `26-ea-23-nanoserver-ltsc2022`, `26-ea-jdk-nanoserver-ltsc2022`, `26-ea-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/nanoserver-ltsc2022/Dockerfile) ## Shared Tags -- `26-ea-22-jdk`, `26-ea-22`, `26-ea-jdk`, `26-ea`: +- `26-ea-23-jdk`, `26-ea-23`, `26-ea-jdk`, `26-ea`: - - [`26-ea-22-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/oraclelinux9/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-23-jdk-oraclelinux9`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/oraclelinux9/Dockerfile) + - [`26-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-22-jdk-windowsservercore`, `26-ea-22-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`: +- `26-ea-23-jdk-windowsservercore`, `26-ea-23-windowsservercore`, `26-ea-jdk-windowsservercore`, `26-ea-windowsservercore`: - - [`26-ea-22-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/windowsservercore-ltsc2022/Dockerfile) + - [`26-ea-23-jdk-windowsservercore-ltsc2025`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2025/Dockerfile) + - [`26-ea-23-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/windowsservercore-ltsc2022/Dockerfile) -- `26-ea-22-jdk-nanoserver`, `26-ea-22-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`: +- `26-ea-23-jdk-nanoserver`, `26-ea-23-nanoserver`, `26-ea-jdk-nanoserver`, `26-ea-nanoserver`: - - [`26-ea-22-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2025/Dockerfile) - - [`26-ea-22-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/82ebf1fc0e888b0319007852b65899fa32c58f1e/26/windows/nanoserver-ltsc2022/Dockerfile) + - [`26-ea-23-jdk-nanoserver-ltsc2025`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/nanoserver-ltsc2025/Dockerfile) + - [`26-ea-23-jdk-nanoserver-ltsc2022`](https://github.com/docker-library/openjdk/blob/36063514b1948018de81a29ab00975d4285a1214/26/windows/nanoserver-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/oraclelinux/README.md b/oraclelinux/README.md index 94e269f1f4e5..2916fbf09e89 100644 --- a/oraclelinux/README.md +++ b/oraclelinux/README.md @@ -24,27 +24,27 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`10`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/10/Dockerfile) +- [`10`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/10/Dockerfile) -- [`10-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/10-slim/Dockerfile) +- [`10-slim`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/10-slim/Dockerfile) -- [`9`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9/Dockerfile) +- [`9`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/9/Dockerfile) -- [`9-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9-slim/Dockerfile) +- [`9-slim`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/9-slim/Dockerfile) -- [`9-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/9-slim-fips/Dockerfile) +- [`9-slim-fips`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/9-slim-fips/Dockerfile) -- [`8.10`, `8`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8/Dockerfile) +- [`8.10`, `8`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/8/Dockerfile) -- [`8-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8-slim/Dockerfile) +- [`8-slim`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/8-slim/Dockerfile) -- [`8-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/8-slim-fips/Dockerfile) +- [`8-slim-fips`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/8-slim-fips/Dockerfile) -- [`7.9`, `7`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7/Dockerfile) +- [`7.9`, `7`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/7/Dockerfile) -- [`7-slim`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7-slim/Dockerfile) +- [`7-slim`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/7-slim/Dockerfile) -- [`7-slim-fips`](https://github.com/oracle/container-images/blob/118641f6d73577ff4989026ec184174304e49a5f/7-slim-fips/Dockerfile) +- [`7-slim-fips`](https://github.com/oracle/container-images/blob/d5ecb8b13a55dfeaa7b60279ba07b139f6581a34/7-slim-fips/Dockerfile) # Quick reference (cont.) diff --git a/php/README.md b/php/README.md index b66f4d95403f..ff586dddcde1 100644 --- a/php/README.md +++ b/php/README.md @@ -108,6 +108,34 @@ WARNING: - [`8.4.14-zts-alpine3.21`, `8.4-zts-alpine3.21`, `8-zts-alpine3.21`, `zts-alpine3.21`](https://github.com/docker-library/php/blob/d8ae43743e4c314e4363d8865818de4e7b619d63/8.4/alpine3.21/zts/Dockerfile) +- [`8.3.28RC1-cli-trixie`, `8.3-rc-cli-trixie`, `8.3.28RC1-trixie`, `8.3-rc-trixie`, `8.3.28RC1-cli`, `8.3-rc-cli`, `8.3.28RC1`, `8.3-rc`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/trixie/cli/Dockerfile) + +- [`8.3.28RC1-apache-trixie`, `8.3-rc-apache-trixie`, `8.3.28RC1-apache`, `8.3-rc-apache`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/trixie/apache/Dockerfile) + +- [`8.3.28RC1-fpm-trixie`, `8.3-rc-fpm-trixie`, `8.3.28RC1-fpm`, `8.3-rc-fpm`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/trixie/fpm/Dockerfile) + +- [`8.3.28RC1-zts-trixie`, `8.3-rc-zts-trixie`, `8.3.28RC1-zts`, `8.3-rc-zts`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/trixie/zts/Dockerfile) + +- [`8.3.28RC1-cli-bookworm`, `8.3-rc-cli-bookworm`, `8.3.28RC1-bookworm`, `8.3-rc-bookworm`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/bookworm/cli/Dockerfile) + +- [`8.3.28RC1-apache-bookworm`, `8.3-rc-apache-bookworm`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/bookworm/apache/Dockerfile) + +- [`8.3.28RC1-fpm-bookworm`, `8.3-rc-fpm-bookworm`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/bookworm/fpm/Dockerfile) + +- [`8.3.28RC1-zts-bookworm`, `8.3-rc-zts-bookworm`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/bookworm/zts/Dockerfile) + +- [`8.3.28RC1-cli-alpine3.22`, `8.3-rc-cli-alpine3.22`, `8.3.28RC1-alpine3.22`, `8.3-rc-alpine3.22`, `8.3.28RC1-cli-alpine`, `8.3-rc-cli-alpine`, `8.3.28RC1-alpine`, `8.3-rc-alpine`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.22/cli/Dockerfile) + +- [`8.3.28RC1-fpm-alpine3.22`, `8.3-rc-fpm-alpine3.22`, `8.3.28RC1-fpm-alpine`, `8.3-rc-fpm-alpine`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.22/fpm/Dockerfile) + +- [`8.3.28RC1-zts-alpine3.22`, `8.3-rc-zts-alpine3.22`, `8.3.28RC1-zts-alpine`, `8.3-rc-zts-alpine`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.22/zts/Dockerfile) + +- [`8.3.28RC1-cli-alpine3.21`, `8.3-rc-cli-alpine3.21`, `8.3.28RC1-alpine3.21`, `8.3-rc-alpine3.21`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.21/cli/Dockerfile) + +- [`8.3.28RC1-fpm-alpine3.21`, `8.3-rc-fpm-alpine3.21`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.21/fpm/Dockerfile) + +- [`8.3.28RC1-zts-alpine3.21`, `8.3-rc-zts-alpine3.21`](https://github.com/docker-library/php/blob/80245dacccf5ba76d4daed9b3dfc86a57652ca3f/8.3-rc/alpine3.21/zts/Dockerfile) + - [`8.3.27-cli-trixie`, `8.3-cli-trixie`, `8.3.27-trixie`, `8.3-trixie`, `8.3.27-cli`, `8.3-cli`, `8.3.27`, `8.3`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/cli/Dockerfile) - [`8.3.27-apache-trixie`, `8.3-apache-trixie`, `8.3.27-apache`, `8.3-apache`](https://github.com/docker-library/php/blob/8e01ffe94ed4ccca7c0a37be6dcb45995cf5d93b/8.3/trixie/apache/Dockerfile) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 0fb09990a13d..b545499838ac 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,35 +24,35 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.2/ubuntu/Dockerfile) +- [`4.2.0`, `4.2`, `4`, `latest`](https://github.com/docker-library/rabbitmq/blob/5e785dad37976803c407baeaa6bae8c8ed50948e/4.2/ubuntu/Dockerfile) - [`4.2.0-management`, `4.2-management`, `4-management`, `management`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/ubuntu/management/Dockerfile) -- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.2/alpine/Dockerfile) +- [`4.2.0-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/5e785dad37976803c407baeaa6bae8c8ed50948e/4.2/alpine/Dockerfile) - [`4.2.0-management-alpine`, `4.2-management-alpine`, `4-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/6b8d927a4f6a170d0cf962a2dd796815b19c05c3/4.2/alpine/management/Dockerfile) -- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.1/ubuntu/Dockerfile) +- [`4.1.5`, `4.1`](https://github.com/docker-library/rabbitmq/blob/cb95ca681ae9c58b04bb945b2aa58700594ef61d/4.1/ubuntu/Dockerfile) - [`4.1.5-management`, `4.1-management`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/ubuntu/management/Dockerfile) -- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.1/alpine/Dockerfile) +- [`4.1.5-alpine`, `4.1-alpine`](https://github.com/docker-library/rabbitmq/blob/cb95ca681ae9c58b04bb945b2aa58700594ef61d/4.1/alpine/Dockerfile) - [`4.1.5-management-alpine`, `4.1-management-alpine`](https://github.com/docker-library/rabbitmq/blob/01055a3ed6f0a7a40d4ff1d17d3f0758039e431f/4.1/alpine/management/Dockerfile) -- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.0/ubuntu/Dockerfile) +- [`4.0.9`, `4.0`](https://github.com/docker-library/rabbitmq/blob/88c2192dc539a05d94a4a262041651a939d08bee/4.0/ubuntu/Dockerfile) - [`4.0.9-management`, `4.0-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/ubuntu/management/Dockerfile) -- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/94509ec91539dcc753817c3e791abaf11bb61978/4.0/alpine/Dockerfile) +- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/rabbitmq/blob/88c2192dc539a05d94a4a262041651a939d08bee/4.0/alpine/Dockerfile) - [`4.0.9-management-alpine`, `4.0-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/4.0/alpine/management/Dockerfile) -- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/f60bd8e290f826c6021cbd66e89de6a7ba3a9174/3.13/ubuntu/Dockerfile) +- [`3.13.7`, `3.13`, `3`](https://github.com/docker-library/rabbitmq/blob/ba1e99fb4717867192f14e283fa40c893c501275/3.13/ubuntu/Dockerfile) - [`3.13.7-management`, `3.13-management`, `3-management`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/ubuntu/management/Dockerfile) -- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/f60bd8e290f826c6021cbd66e89de6a7ba3a9174/3.13/alpine/Dockerfile) +- [`3.13.7-alpine`, `3.13-alpine`, `3-alpine`](https://github.com/docker-library/rabbitmq/blob/ba1e99fb4717867192f14e283fa40c893c501275/3.13/alpine/Dockerfile) - [`3.13.7-management-alpine`, `3.13-management-alpine`, `3-management-alpine`](https://github.com/docker-library/rabbitmq/blob/36e4d246e934a96b1c3a920e398f96434f3fc34c/3.13/alpine/management/Dockerfile) diff --git a/rust/README.md b/rust/README.md index ca3d3c0a7b23..9b6132f96699 100644 --- a/rust/README.md +++ b/rust/README.md @@ -24,23 +24,23 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1-bullseye`, `1.91-bullseye`, `1.91.0-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bullseye/Dockerfile) +- [`1-bullseye`, `1.91-bullseye`, `1.91.1-bullseye`, `bullseye`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/bullseye/Dockerfile) -- [`1-slim-bullseye`, `1.91-slim-bullseye`, `1.91.0-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bullseye/slim/Dockerfile) +- [`1-slim-bullseye`, `1.91-slim-bullseye`, `1.91.1-slim-bullseye`, `slim-bullseye`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/bullseye/slim/Dockerfile) -- [`1-bookworm`, `1.91-bookworm`, `1.91.0-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bookworm/Dockerfile) +- [`1-bookworm`, `1.91-bookworm`, `1.91.1-bookworm`, `bookworm`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/bookworm/Dockerfile) -- [`1-slim-bookworm`, `1.91-slim-bookworm`, `1.91.0-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/bookworm/slim/Dockerfile) +- [`1-slim-bookworm`, `1.91-slim-bookworm`, `1.91.1-slim-bookworm`, `slim-bookworm`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/bookworm/slim/Dockerfile) -- [`1-trixie`, `1.91-trixie`, `1.91.0-trixie`, `trixie`, `1`, `1.91`, `1.91.0`, `latest`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/trixie/Dockerfile) +- [`1-trixie`, `1.91-trixie`, `1.91.1-trixie`, `trixie`, `1`, `1.91`, `1.91.1`, `latest`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/trixie/Dockerfile) -- [`1-slim-trixie`, `1.91-slim-trixie`, `1.91.0-slim-trixie`, `slim-trixie`, `1-slim`, `1.91-slim`, `1.91.0-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/trixie/slim/Dockerfile) +- [`1-slim-trixie`, `1.91-slim-trixie`, `1.91.1-slim-trixie`, `slim-trixie`, `1-slim`, `1.91-slim`, `1.91.1-slim`, `slim`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/trixie/slim/Dockerfile) -- [`1-alpine3.20`, `1.91-alpine3.20`, `1.91.0-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.20/Dockerfile) +- [`1-alpine3.20`, `1.91-alpine3.20`, `1.91.1-alpine3.20`, `alpine3.20`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/alpine3.20/Dockerfile) -- [`1-alpine3.21`, `1.91-alpine3.21`, `1.91.0-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.21/Dockerfile) +- [`1-alpine3.21`, `1.91-alpine3.21`, `1.91.1-alpine3.21`, `alpine3.21`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/alpine3.21/Dockerfile) -- [`1-alpine3.22`, `1.91-alpine3.22`, `1.91.0-alpine3.22`, `alpine3.22`, `1-alpine`, `1.91-alpine`, `1.91.0-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/d244703b2150d3d586867aab0a02e24cdd688821/stable/alpine3.22/Dockerfile) +- [`1-alpine3.22`, `1.91-alpine3.22`, `1.91.1-alpine3.22`, `alpine3.22`, `1-alpine`, `1.91-alpine`, `1.91.1-alpine`, `alpine`](https://github.com/rust-lang/docker-rust/blob/0ad6d349fa1a5d6cc64e3bd9a27e5f6762df9abc/stable/alpine3.22/Dockerfile) # Quick reference (cont.) diff --git a/wordpress/README.md b/wordpress/README.md index 5653b775031c..f39fd7eae5b2 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -56,29 +56,29 @@ WARNING: - [`cli-2.12.0-php8.4`, `cli-2.12-php8.4`, `cli-2-php8.4`, `cli-php8.4`](https://github.com/docker-library/wordpress/blob/50da133eabc137fa07c620c77788c1237cf55c8b/cli/php8.4/alpine/Dockerfile) -- [`beta-6.9-beta3-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta3-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/apache/Dockerfile) +- [`beta-6.9-beta4-php8.1-apache`, `beta-6.9-php8.1-apache`, `beta-6-php8.1-apache`, `beta-php8.1-apache`, `beta-6.9-beta4-php8.1`, `beta-6.9-php8.1`, `beta-6-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.1/apache/Dockerfile) -- [`beta-6.9-beta3-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/fpm/Dockerfile) +- [`beta-6.9-beta4-php8.1-fpm`, `beta-6.9-php8.1-fpm`, `beta-6-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.1/fpm/Dockerfile) -- [`beta-6.9-beta3-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.1/fpm-alpine/Dockerfile) +- [`beta-6.9-beta4-php8.1-fpm-alpine`, `beta-6.9-php8.1-fpm-alpine`, `beta-6-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.1/fpm-alpine/Dockerfile) -- [`beta-6.9-beta3-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta3-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/apache/Dockerfile) +- [`beta-6.9-beta4-php8.2-apache`, `beta-6.9-php8.2-apache`, `beta-6-php8.2-apache`, `beta-php8.2-apache`, `beta-6.9-beta4-php8.2`, `beta-6.9-php8.2`, `beta-6-php8.2`, `beta-php8.2`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.2/apache/Dockerfile) -- [`beta-6.9-beta3-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/fpm/Dockerfile) +- [`beta-6.9-beta4-php8.2-fpm`, `beta-6.9-php8.2-fpm`, `beta-6-php8.2-fpm`, `beta-php8.2-fpm`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.2/fpm/Dockerfile) -- [`beta-6.9-beta3-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.2/fpm-alpine/Dockerfile) +- [`beta-6.9-beta4-php8.2-fpm-alpine`, `beta-6.9-php8.2-fpm-alpine`, `beta-6-php8.2-fpm-alpine`, `beta-php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.2/fpm-alpine/Dockerfile) -- [`beta-6.9-beta3-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta3`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta3-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta3-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/apache/Dockerfile) +- [`beta-6.9-beta4-apache`, `beta-6.9-apache`, `beta-6-apache`, `beta-apache`, `beta-6.9-beta4`, `beta-6.9`, `beta-6`, `beta`, `beta-6.9-beta4-php8.3-apache`, `beta-6.9-php8.3-apache`, `beta-6-php8.3-apache`, `beta-php8.3-apache`, `beta-6.9-beta4-php8.3`, `beta-6.9-php8.3`, `beta-6-php8.3`, `beta-php8.3`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.3/apache/Dockerfile) -- [`beta-6.9-beta3-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta3-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/fpm/Dockerfile) +- [`beta-6.9-beta4-fpm`, `beta-6.9-fpm`, `beta-6-fpm`, `beta-fpm`, `beta-6.9-beta4-php8.3-fpm`, `beta-6.9-php8.3-fpm`, `beta-6-php8.3-fpm`, `beta-php8.3-fpm`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.3/fpm/Dockerfile) -- [`beta-6.9-beta3-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta3-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.3/fpm-alpine/Dockerfile) +- [`beta-6.9-beta4-fpm-alpine`, `beta-6.9-fpm-alpine`, `beta-6-fpm-alpine`, `beta-fpm-alpine`, `beta-6.9-beta4-php8.3-fpm-alpine`, `beta-6.9-php8.3-fpm-alpine`, `beta-6-php8.3-fpm-alpine`, `beta-php8.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.3/fpm-alpine/Dockerfile) -- [`beta-6.9-beta3-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta3-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/apache/Dockerfile) +- [`beta-6.9-beta4-php8.4-apache`, `beta-6.9-php8.4-apache`, `beta-6-php8.4-apache`, `beta-php8.4-apache`, `beta-6.9-beta4-php8.4`, `beta-6.9-php8.4`, `beta-6-php8.4`, `beta-php8.4`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.4/apache/Dockerfile) -- [`beta-6.9-beta3-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/fpm/Dockerfile) +- [`beta-6.9-beta4-php8.4-fpm`, `beta-6.9-php8.4-fpm`, `beta-6-php8.4-fpm`, `beta-php8.4-fpm`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.4/fpm/Dockerfile) -- [`beta-6.9-beta3-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/f28809e143aed4530fd9bead5a47a418f3cdf6a4/beta/php8.4/fpm-alpine/Dockerfile) +- [`beta-6.9-beta4-php8.4-fpm-alpine`, `beta-6.9-php8.4-fpm-alpine`, `beta-6-php8.4-fpm-alpine`, `beta-php8.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/bf9cbb21ced353d9bce72203cb46d4fbe9be8d95/beta/php8.4/fpm-alpine/Dockerfile) # Quick reference (cont.) From 62e2577e97318761cb314db403dbd477dfb73bc7 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Nov 2025 14:11:08 -0800 Subject: [PATCH 2685/2686] Run update.sh --- golang/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/golang/README.md b/golang/README.md index be7f599db2e8..1042c68295c6 100644 --- a/golang/README.md +++ b/golang/README.md @@ -60,13 +60,13 @@ WARNING: - [`1.24.10-nanoserver-ltsc2022`, `1.24-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- [`tip-20251102-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/trixie/Dockerfile) +- [`tip-20251108-trixie`, `tip-trixie`](https://github.com/docker-library/golang/blob/905b1a5a29638e639c2cbea3b1c1d9625483fdda/tip/trixie/Dockerfile) -- [`tip-20251102-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/bookworm/Dockerfile) +- [`tip-20251108-bookworm`, `tip-bookworm`](https://github.com/docker-library/golang/blob/905b1a5a29638e639c2cbea3b1c1d9625483fdda/tip/bookworm/Dockerfile) -- [`tip-20251102-alpine3.22`, `tip-alpine3.22`, `tip-20251102-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/alpine3.22/Dockerfile) +- [`tip-20251108-alpine3.22`, `tip-alpine3.22`, `tip-20251108-alpine`, `tip-alpine`](https://github.com/docker-library/golang/blob/905b1a5a29638e639c2cbea3b1c1d9625483fdda/tip/alpine3.22/Dockerfile) -- [`tip-20251102-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/alpine3.21/Dockerfile) +- [`tip-20251108-alpine3.21`, `tip-alpine3.21`](https://github.com/docker-library/golang/blob/905b1a5a29638e639c2cbea3b1c1d9625483fdda/tip/alpine3.21/Dockerfile) ## Shared Tags @@ -102,9 +102,9 @@ WARNING: - [`1.24.10-nanoserver-ltsc2025`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2025/Dockerfile) - [`1.24.10-nanoserver-ltsc2022`](https://github.com/docker-library/golang/blob/6302d466bdcf34f867e69179bddf77bfe701f0c9/1.24/windows/nanoserver-ltsc2022/Dockerfile) -- `tip-20251102`, `tip`: +- `tip-20251108`, `tip`: - - [`tip-20251102-trixie`](https://github.com/docker-library/golang/blob/daa7d63e82d0193790f023875771a8b285f3702b/tip/trixie/Dockerfile) + - [`tip-20251108-trixie`](https://github.com/docker-library/golang/blob/905b1a5a29638e639c2cbea3b1c1d9625483fdda/tip/trixie/Dockerfile) # Quick reference (cont.) From fed09044c76696a99093d8342796d5a156e96f9c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 10 Nov 2025 17:10:43 -0800 Subject: [PATCH 2686/2686] Run update.sh --- docker/README.md | 31 ++++++++----------------------- photon/README.md | 4 ++-- 2 files changed, 10 insertions(+), 25 deletions(-) diff --git a/docker/README.md b/docker/README.md index 54a248069e50..6bc5126622fa 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,37 +28,22 @@ WARNING: ## Simple Tags -- [`29.0.0-rc.3-cli`, `29-rc-cli`, `rc-cli`, `29.0.0-rc.3-cli-alpine3.22`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/cli/Dockerfile) +- [`29.0.0-cli`, `29.0-cli`, `29-cli`, `cli`, `29.0.0-cli-alpine3.22`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/cli/Dockerfile) -- [`29.0.0-rc.3-dind`, `29-rc-dind`, `rc-dind`, `29.0.0-rc.3-dind-alpine3.22`, `29.0.0-rc.3`, `29-rc`, `rc`, `29.0.0-rc.3-alpine3.22`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/dind/Dockerfile) +- [`29.0.0-dind`, `29.0-dind`, `29-dind`, `dind`, `29.0.0-dind-alpine3.22`, `29.0.0`, `29.0`, `29`, `latest`, `29.0.0-alpine3.22`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/dind/Dockerfile) -- [`29.0.0-rc.3-dind-rootless`, `29-rc-dind-rootless`, `rc-dind-rootless`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/dind-rootless/Dockerfile) +- [`29.0.0-dind-rootless`, `29.0-dind-rootless`, `29-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/dind-rootless/Dockerfile) -- [`29.0.0-rc.3-windowsservercore-ltsc2025`, `29-rc-windowsservercore-ltsc2025`, `rc-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) +- [`29.0.0-windowsservercore-ltsc2025`, `29.0-windowsservercore-ltsc2025`, `29-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/windows/windowsservercore-ltsc2025/Dockerfile) -- [`29.0.0-rc.3-windowsservercore-ltsc2022`, `29-rc-windowsservercore-ltsc2022`, `rc-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- [`28.5.2-cli`, `28.5-cli`, `28-cli`, `cli`, `28.5.2-cli-alpine3.22`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/cli/Dockerfile) - -- [`28.5.2-dind`, `28.5-dind`, `28-dind`, `dind`, `28.5.2-dind-alpine3.22`, `28.5.2`, `28.5`, `28`, `latest`, `28.5.2-alpine3.22`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/dind/Dockerfile) - -- [`28.5.2-dind-rootless`, `28.5-dind-rootless`, `28-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/dind-rootless/Dockerfile) - -- [`28.5.2-windowsservercore-ltsc2025`, `28.5-windowsservercore-ltsc2025`, `28-windowsservercore-ltsc2025`, `windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2025/Dockerfile) - -- [`28.5.2-windowsservercore-ltsc2022`, `28.5-windowsservercore-ltsc2022`, `28-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2022/Dockerfile) +- [`29.0.0-windowsservercore-ltsc2022`, `29.0-windowsservercore-ltsc2022`, `29-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/windows/windowsservercore-ltsc2022/Dockerfile) ## Shared Tags -- `29.0.0-rc.3-windowsservercore`, `29-rc-windowsservercore`, `rc-windowsservercore`: - - - [`29.0.0-rc.3-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2025/Dockerfile) - - [`29.0.0-rc.3-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/2ce33b8e582a4c379ca3af54ab2ef393eba0e7d9/29-rc/windows/windowsservercore-ltsc2022/Dockerfile) - -- `28.5.2-windowsservercore`, `28.5-windowsservercore`, `28-windowsservercore`, `windowsservercore`: +- `29.0.0-windowsservercore`, `29.0-windowsservercore`, `29-windowsservercore`, `windowsservercore`: - - [`28.5.2-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2025/Dockerfile) - - [`28.5.2-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/8a57d8bada227253c19dc0b2f0943bd63fc791e5/28/windows/windowsservercore-ltsc2022/Dockerfile) + - [`29.0.0-windowsservercore-ltsc2025`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/windows/windowsservercore-ltsc2025/Dockerfile) + - [`29.0.0-windowsservercore-ltsc2022`](https://github.com/docker-library/docker/blob/319e58aa0299128924649f0745054a1b8732545a/29/windows/windowsservercore-ltsc2022/Dockerfile) # Quick reference (cont.) diff --git a/photon/README.md b/photon/README.md index 9f9675e4a9f2..637d59e6c0ce 100644 --- a/photon/README.md +++ b/photon/README.md @@ -24,9 +24,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0`, `5.0-20251011`, `latest`](https://github.com/vmware/photon-docker-image/blob/8921fff02b3b2ce4bbc6116b4c6b4c708562aa96/docker/Dockerfile) +- [`5.0`, `5.0-20251104`, `latest`](https://github.com/vmware/photon-docker-image/blob/b414885b1cdc464b3969a0b507623d631d430b78/docker/Dockerfile) -- [`4.0`, `4.0-20251012`](https://github.com/vmware/photon-docker-image/blob/75d6173bc370ace82b24de6e7319483fd8e54869/docker/Dockerfile) +- [`4.0`, `4.0-20251102`](https://github.com/vmware/photon-docker-image/blob/6ca925ba487203dc07c55039ebd4f8d68c094cfa/docker/Dockerfile) - [`3.0`, `3.0-20250316`](https://github.com/vmware/photon-docker-image/blob/f848d5df815c0afe76b42a608d49df0e87af51c2/docker/Dockerfile)